diff --git a/.gitignore b/.gitignore index ed1c6b423..3061b6b51 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ */out/* */*/out/* **/_wildcard* +**/.tool-versions \ No newline at end of file diff --git a/.semaphore/daily-builds.yml b/.semaphore/daily-builds.yml index aa418446e..416bf77b3 100644 --- a/.semaphore/daily-builds.yml +++ b/.semaphore/daily-builds.yml @@ -725,11 +725,11 @@ blocks: jobs: - name: JS - dependencies commands: - - make check.js.deps APP_DIRECTORY=assets + - make check.js.deps APP_DIRECTORY=assets SCAN_RESULT_DIR=../out - name: JS - code commands: - export PATH=$PATH:/home/semaphore/.local/bin - - make check.js.code APP_DIRECTORY=assets + - make check.js.code APP_DIRECTORY=assets SCAN_RESULT_DIR=../out - name: Elixir - dependencies commands: - make check.ex.deps CHECK_DEPS_OPTS='--ignore-packages phoenix' @@ -1993,6 +1993,9 @@ blocks: - name: "Test" commands: - make test + - name: "E2E Test" + commands: + - make test.e2e - name: "Lint" commands: - make lint diff --git a/.semaphore/semaphore.yml b/.semaphore/semaphore.yml index 44f623116..061741618 100644 --- a/.semaphore/semaphore.yml +++ b/.semaphore/semaphore.yml @@ -789,11 +789,11 @@ blocks: jobs: - name: JS - dependencies commands: - - make check.js.deps APP_DIRECTORY=assets + - make check.js.deps APP_DIRECTORY=assets SCAN_RESULT_DIR=../out - name: JS - code commands: - export PATH=$PATH:/home/semaphore/.local/bin - - make check.js.code APP_DIRECTORY=assets + - make check.js.code APP_DIRECTORY=assets SCAN_RESULT_DIR=../out - name: Elixir - dependencies commands: - make check.ex.deps CHECK_DEPS_OPTS='--ignore-packages phoenix' @@ -2191,6 +2191,9 @@ blocks: - name: "Test" commands: - make test + - name: "E2E Test" + commands: + - make test.e2e - name: "Lint" commands: - make lint diff --git a/GOVERNANCE.md b/GOVERNANCE.md index 19a4f157b..1b85e3c2c 100644 --- a/GOVERNANCE.md +++ b/GOVERNANCE.md @@ -93,7 +93,7 @@ Semaphore follows a governance model that balances commercial stewardship with c ### Decision Visibility - Technical decisions documented in issues/PRs -- Architecture decisions documented in [RFCs](../rfcs/README.md) +- Architecture decisions documented in [RFCs](rfcs/README.md) - Roadmap publicly available ## Code of Conduct diff --git a/LOCAL-DEVELOPMENT.md b/LOCAL-DEVELOPMENT.md index 0061f65eb..0b3cb5a33 100644 --- a/LOCAL-DEVELOPMENT.md +++ b/LOCAL-DEVELOPMENT.md @@ -61,9 +61,9 @@ For development and testing, you can run Semaphore locally using Minikube: ```bash # Get credentials - kubectl get secret root-user -n default -o jsonpath='{.data.email}' | base64 -d - kubectl get secret root-user -n default -o jsonpath='{.data.password}' | base64 -d - kubectl get secret root-user -n default -o jsonpath='{.data.token}' | base64 -d + kubectl get secret semaphore-authentication -n default -o jsonpath='{.data.ROOT_USER_EMAIL}' | base64 -d + kubectl get secret semaphore-authentication -n default -o jsonpath='{.data.ROOT_USER_PASSWORD}' | base64 -d + kubectl get secret semaphore-authentication -n default -o jsonpath='{.data.ROOT_USER_TOKEN}' | base64 -d ``` Open `https://id.semaphore.localhost` and log in! diff --git a/Makefile b/Makefile index 537da4501..53def513d 100644 --- a/Makefile +++ b/Makefile @@ -76,6 +76,7 @@ DOCKER_BUILD_PATH=. EX_CATCH_WARRNINGS_FLAG=--warnings-as-errors CHECK_DEPS_EXTRA_OPTS?=-w feature_provider,grpc_health_check,tentacat,util,watchman,fun_registry,sentry_grpc,traceman,cacheman,log_tee,spec,proto,sys2app,looper,job_matrix,definition_validator,gofer_client,open_api_spex,when,uuid,esaml,openid_connect,block ROOT_MAKEFILE_PATH := $(shell dirname $(abspath $(lastword $(MAKEFILE_LIST)))) +SCAN_RESULT_DIR?=out # # Security checks @@ -111,10 +112,10 @@ ifeq ($(CI),) -v $$(pwd):/app \ -v $(ROOT_MAKEFILE_PATH)/security-toolbox:$(SECURITY_TOOLBOX_TMP_DIR) \ registry.semaphoreci.com/ruby:3 \ - bash -c 'cd $(APP_DIRECTORY) && $(SECURITY_TOOLBOX_TMP_DIR)/dependencies --language $(LANGUAGE) -d $(CHECK_DEPS_OPTS)' + bash -c 'cd $(APP_DIRECTORY) && $(SECURITY_TOOLBOX_TMP_DIR)/dependencies --language $(LANGUAGE) -d --output-dir $(SCAN_RESULT_DIR) $(CHECK_DEPS_OPTS)' else # ruby version is set in prologue - cd $(APP_DIRECTORY) && $(ROOT_MAKEFILE_PATH)/security-toolbox/dependencies --language $(LANGUAGE) -d $(CHECK_DEPS_OPTS) + cd $(APP_DIRECTORY) && $(ROOT_MAKEFILE_PATH)/security-toolbox/dependencies --language $(LANGUAGE) -d --output-dir $(SCAN_RESULT_DIR) $(CHECK_DEPS_OPTS) endif check.ex.deps: diff --git a/artifacthub/Makefile b/artifacthub/Makefile index e4a172c78..09766a98c 100644 --- a/artifacthub/Makefile +++ b/artifacthub/Makefile @@ -4,7 +4,7 @@ include ../Makefile APP_NAME=artifacthub APP_ENV=prod -INTERNAL_API_BRANCH=master +INTERNAL_API_BRANCH?=master pb.gen: rm -rf tmp && mkdir -p tmp diff --git a/artifacthub/pkg/api/descriptors/artifacthub/artifacthub.pb.go b/artifacthub/pkg/api/descriptors/artifacthub/artifacthub.pb.go index 61aafb65f..990a7d6d9 100644 --- a/artifacthub/pkg/api/descriptors/artifacthub/artifacthub.pb.go +++ b/artifacthub/pkg/api/descriptors/artifacthub/artifacthub.pb.go @@ -1,6 +1,6 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.36.6 +// protoc-gen-go v1.36.7 // protoc v3.20.0 // source: artifacthub.proto @@ -1356,6 +1356,7 @@ type ListItem struct { state protoimpl.MessageState `protogen:"open.v1"` Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` IsDirectory bool `protobuf:"varint,2,opt,name=is_directory,json=isDirectory,proto3" json:"is_directory,omitempty"` + Size int64 `protobuf:"varint,3,opt,name=size,proto3" json:"size,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } @@ -1404,6 +1405,13 @@ func (x *ListItem) GetIsDirectory() bool { return false } +func (x *ListItem) GetSize() int64 { + if x != nil { + return x.Size + } + return 0 +} + type Artifact struct { state protoimpl.MessageState `protogen:"open.v1"` Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"` @@ -1740,10 +1748,11 @@ const file_artifacthub_proto_rawDesc = "" + "\vbucket_name\x18\x01 \x01(\tR\n" + "bucketName\">\n" + "\x12UpdateCORSResponse\x12(\n" + - "\x10next_bucket_name\x18\x01 \x01(\tR\x0enextBucketName\"A\n" + + "\x10next_bucket_name\x18\x01 \x01(\tR\x0enextBucketName\"U\n" + "\bListItem\x12\x12\n" + "\x04name\x18\x01 \x01(\tR\x04name\x12!\n" + - "\fis_directory\x18\x02 \x01(\bR\visDirectory\"b\n" + + "\fis_directory\x18\x02 \x01(\bR\visDirectory\x12\x12\n" + + "\x04size\x18\x03 \x01(\x03R\x04size\"b\n" + "\bArtifact\x12\x0e\n" + "\x02id\x18\x01 \x01(\tR\x02id\x12\x1f\n" + "\vbucket_name\x18\x02 \x01(\tR\n" + diff --git a/artifacthub/pkg/api/descriptors/artifacts/artifacts.v1.pb.go b/artifacthub/pkg/api/descriptors/artifacts/artifacts.v1.pb.go index e134ae9df..0a200ac06 100644 --- a/artifacthub/pkg/api/descriptors/artifacts/artifacts.v1.pb.go +++ b/artifacthub/pkg/api/descriptors/artifacts/artifacts.v1.pb.go @@ -1,6 +1,6 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.36.6 +// protoc-gen-go v1.36.7 // protoc v3.20.0 // source: artifacts.v1.proto diff --git a/artifacthub/pkg/api/private/privateapi.go b/artifacthub/pkg/api/private/privateapi.go index 050cd660b..9f661eab7 100644 --- a/artifacthub/pkg/api/private/privateapi.go +++ b/artifacthub/pkg/api/private/privateapi.go @@ -121,7 +121,7 @@ func ListTransferPath(ctx context.Context, client storage.Client, artifact *mode return err } - result = append(result, &artifacthub.ListItem{Name: item.Path, IsDirectory: item.IsDirectory}) + result = append(result, &artifacthub.ListItem{Name: item.Path, IsDirectory: item.IsDirectory, Size: item.Size}) } return nil diff --git a/artifacthub/pkg/server/private/privateserver_test.go b/artifacthub/pkg/server/private/privateserver_test.go index 306ca821c..0563ddaf6 100644 --- a/artifacthub/pkg/server/private/privateserver_test.go +++ b/artifacthub/pkg/server/private/privateserver_test.go @@ -303,8 +303,8 @@ func Test__ListPath(t *testing.T) { response, err := server.ListPath(context.TODO(), request) assert.Nil(t, err) assert.Equal(t, []*artifacthub.ListItem{ - {Name: "artifacts/projects/first/file1.txt", IsDirectory: false}, - {Name: "artifacts/projects/first/dir/", IsDirectory: true}, + {Name: "artifacts/projects/first/file1.txt", IsDirectory: false, Size: 5}, + {Name: "artifacts/projects/first/dir/", IsDirectory: true, Size: 0}, }, response.Items) }) @@ -318,9 +318,9 @@ func Test__ListPath(t *testing.T) { response, err := server.ListPath(context.TODO(), request) assert.Nil(t, err) assert.Equal(t, []*artifacthub.ListItem{ - {Name: "artifacts/projects/first/dir/subfile1.txt", IsDirectory: false}, - {Name: "artifacts/projects/first/dir/subfile2.txt", IsDirectory: false}, - {Name: "artifacts/projects/first/file1.txt", IsDirectory: false}, + {Name: "artifacts/projects/first/dir/subfile1.txt", IsDirectory: false, Size: 5}, + {Name: "artifacts/projects/first/dir/subfile2.txt", IsDirectory: false, Size: 5}, + {Name: "artifacts/projects/first/file1.txt", IsDirectory: false, Size: 5}, }, response.Items) }) }) diff --git a/artifacthub/pkg/server/public/publicserver.go b/artifacthub/pkg/server/public/publicserver.go index c3d8bef52..20e474345 100644 --- a/artifacthub/pkg/server/public/publicserver.go +++ b/artifacthub/pkg/server/public/publicserver.go @@ -78,8 +78,6 @@ func getAuthTokenFromContext(ctx context.Context) (string, error) { // artifact storage, and deleting as well. func (s *Server) GenerateSignedURLs(ctx context.Context, q *artifacts.GenerateSignedURLsRequest) (*artifacts.GenerateSignedURLsResponse, error) { - log.Info("[GenerateSignedURLs] Received", zap.Reflect("request", q)) - response := &artifacts.GenerateSignedURLsResponse{} token, err := getAuthTokenFromContext(ctx) if err != nil { @@ -93,12 +91,22 @@ func (s *Server) GenerateSignedURLs(ctx context.Context, return response, nil } - artifact, err := s.authenticate(token, q.Paths) + artifact, claims, err := s.authenticateAndGetClaims(token, q.Paths) if err != nil { log.Error("Error authenticating request", zap.Error(err)) return nil, err } + log.Info("[GenerateSignedURLs] Authenticated request", + zap.String("type", q.Type.String()), + zap.Int("paths_count", len(q.Paths)), + zap.Strings("paths", q.Paths), + zap.String("artifact", claims.ArtifactID), + zap.String("project", claims.Project), + zap.String("job", claims.Job), + zap.String("workflow", claims.Workflow), + ) + var us []*artifacts.SignedURL switch q.Type { case artifacts.GenerateSignedURLsRequest_PUSH: @@ -177,26 +185,23 @@ func getMaxReceiveMessageSize() int { return maxReceiveMsgSize } -func (s *Server) authenticate(token string, paths []string) (*models.Artifact, error) { +func (s *Server) authenticateAndGetClaims(token string, paths []string) (*models.Artifact, *jwt.Claims, error) { resourceType, resourceID, err := s.findAndValidateResource(paths) if err != nil { - return nil, err + return nil, nil, err } claims, err := s.validateJWT(resourceType, resourceID, token) if err != nil { - return nil, status.Error(codes.PermissionDenied, err.Error()) + return nil, nil, status.Error(codes.PermissionDenied, err.Error()) } - log.Info( - "Granted access to artifact storage through JWT", - zap.String("artifact", claims.ArtifactID), - zap.String("project", claims.Project), - zap.String("job", claims.Job), - zap.String("workflow", claims.Workflow), - ) + artifacts, err := models.FindArtifactByID(claims.ArtifactID) + if err != nil { + return nil, nil, err + } - return models.FindArtifactByID(claims.ArtifactID) + return artifacts, claims, nil } func (s *Server) validateJWT(resourceType, resourceID, token string) (*jwt.Claims, error) { diff --git a/artifacthub/pkg/storage/client.go b/artifacthub/pkg/storage/client.go index f26f76e6f..ba260d5c6 100644 --- a/artifacthub/pkg/storage/client.go +++ b/artifacthub/pkg/storage/client.go @@ -55,6 +55,7 @@ type PathItem struct { Path string IsDirectory bool Age *time.Duration + Size int64 } type PathIterator interface { diff --git a/artifacthub/pkg/storage/gcs_bucket.go b/artifacthub/pkg/storage/gcs_bucket.go index f01401ca5..c04ee6990 100644 --- a/artifacthub/pkg/storage/gcs_bucket.go +++ b/artifacthub/pkg/storage/gcs_bucket.go @@ -207,7 +207,7 @@ func (b *GcsBucket) DeleteObjects(paths []string) error { func (b *GcsBucket) ListPath(options ListOptions) (PathIterator, error) { query := gcsstorage.Query{Prefix: pathutil.EndsInSlash(options.Path)} - err := query.SetAttrSelection([]string{"Name", "Created"}) + err := query.SetAttrSelection([]string{"Name", "Created", "Size"}) if err != nil { return nil, err } @@ -226,7 +226,7 @@ func (b *GcsBucket) ListPath(options ListOptions) (PathIterator, error) { func (b *GcsBucket) ListObjectsWithPagination(options ListOptions) (ObjectPager, error) { query := gcsstorage.Query{Prefix: pathutil.EndsInSlash(options.Path)} - err := query.SetAttrSelection([]string{"Name", "Created"}) + err := query.SetAttrSelection([]string{"Name", "Created", "Size"}) if err != nil { return nil, err } diff --git a/artifacthub/pkg/storage/gcs_object_iterator.go b/artifacthub/pkg/storage/gcs_object_iterator.go index 2eee66fbe..0a28b64c6 100644 --- a/artifacthub/pkg/storage/gcs_object_iterator.go +++ b/artifacthub/pkg/storage/gcs_object_iterator.go @@ -33,6 +33,7 @@ func (i *GcsPathIterator) Next() (*PathItem, error) { Path: attrs.Prefix, IsDirectory: true, Age: nil, + Size: 0, // Directories don't have a size }, nil } @@ -41,6 +42,7 @@ func (i *GcsPathIterator) Next() (*PathItem, error) { Path: attrs.Name, IsDirectory: false, Age: &age, + Size: attrs.Size, }, nil } diff --git a/artifacthub/pkg/storage/inmemstorage.go b/artifacthub/pkg/storage/inmemstorage.go index 8982b8fad..8b317ad83 100644 --- a/artifacthub/pkg/storage/inmemstorage.go +++ b/artifacthub/pkg/storage/inmemstorage.go @@ -60,7 +60,7 @@ func (b *InMemoryBucket) Size() int { func (b *InMemoryBucket) Add(path string, age time.Time) error { newAge := time.Since(age) - b.Objects = append(b.Objects, &PathItem{Path: "artifacts" + path, Age: &newAge}) + b.Objects = append(b.Objects, &PathItem{Path: "artifacts" + path, Age: &newAge, Size: 1024}) // Default size for testing return nil } @@ -191,5 +191,11 @@ func (b *InMemoryBucket) SetCORS(ctx context.Context) error { } func (b *InMemoryBucket) CreateObject(ctx context.Context, name string, content []byte) error { + b.Objects = append(b.Objects, &PathItem{ + Path: name, + IsDirectory: false, + Age: nil, + Size: int64(len(content)), + }) return nil } diff --git a/artifacthub/pkg/storage/s3_object_iterator.go b/artifacthub/pkg/storage/s3_object_iterator.go index 30400d282..180929738 100644 --- a/artifacthub/pkg/storage/s3_object_iterator.go +++ b/artifacthub/pkg/storage/s3_object_iterator.go @@ -82,6 +82,7 @@ func (i *S3PathIterator) nextAndIncrement() *PathItem { Path: i.removePathPrefix(*next.Key), IsDirectory: false, Age: &age, + Size: *next.Size, } } @@ -92,6 +93,7 @@ func (i *S3PathIterator) nextAndIncrement() *PathItem { Path: i.removePathPrefix(*nextPrefix.Prefix), IsDirectory: true, Age: nil, + Size: 0, // Directories don't have a size } } diff --git a/artifacthub/pkg/workers/bucketcleaner/README.md b/artifacthub/pkg/workers/bucketcleaner/README.md index c6efba8c4..38c300bc3 100644 --- a/artifacthub/pkg/workers/bucketcleaner/README.md +++ b/artifacthub/pkg/workers/bucketcleaner/README.md @@ -22,10 +22,10 @@ The bucket cleaner is a distributed system based on supervisor/worker pattern. In this system, we have: - A supervisor called "Scheduler" that schedules which buckets need to be cleaned up -- A worker called "Worker" which listens to the suprvisor and executes the cleanup +- A worker called "Worker" which listens to the supervisor and executes the cleanup Communication between the supervisor and the worker is done via AMQP. -The recomended setup for the system is to have one instance (in kubernetes a pod) +The recommended setup for the system is to have one instance (in kubernetes a pod) that runs the scheduler, and multiple instances that listen and do the work. Diagram of communication: diff --git a/auth/lib/auth.ex b/auth/lib/auth.ex index b58bb3d9f..c8ec9dac4 100644 --- a/auth/lib/auth.ex +++ b/auth/lib/auth.ex @@ -115,7 +115,7 @@ defmodule Auth do !org -> send_resp(conn, 401, "Unauthorized") - Auth.IpFilter.block?(conn, org) -> + Auth.IpFilter.block?(conn.remote_ip, org) -> send_resp(conn, 404, blocked_ip_response(conn)) true -> @@ -326,7 +326,7 @@ defmodule Auth do !org -> {:error, :missing_organization, conn} - Auth.IpFilter.block?(conn, org) -> + Auth.IpFilter.block?(conn.remote_ip, org) -> {:error, :unauthorized_ip, conn} true -> @@ -387,7 +387,7 @@ defmodule Auth do !org -> {:error, :missing_organization, conn} - Auth.IpFilter.block?(conn, org) -> + Auth.IpFilter.block?(conn.remote_ip, org) -> {:error, :unauthorized_ip, conn} true -> @@ -416,7 +416,7 @@ defmodule Auth do !org -> {:error, :missing_organization, conn} - Auth.IpFilter.block?(conn, org) -> + Auth.IpFilter.block?(conn.remote_ip, org) -> {:error, :unauthorized_ip, conn} true -> @@ -680,7 +680,7 @@ defmodule Auth do end defp blocked_ip_response(conn) do - ip = Auth.IpFilter.client_ip(conn) |> Tuple.to_list() |> Enum.join(".") + ip = conn.remote_ip |> :inet.ntoa() """ You cannot access this organization from your current IP address (#{ip}) due to the security settings enabled by the organization administrator. diff --git a/auth/lib/auth/ip_filter.ex b/auth/lib/auth/ip_filter.ex index 69c21d2be..88437eab6 100644 --- a/auth/lib/auth/ip_filter.ex +++ b/auth/lib/auth/ip_filter.ex @@ -1,31 +1,14 @@ defmodule Auth.IpFilter do require Logger - def block?(conn, org) do + def block?(client_ip, org) do if Enum.empty?(org.ip_allow_list) do false else - _block?(client_ip(conn), org.ip_allow_list) + _block?(client_ip, org.ip_allow_list) end end - def client_ip(conn) do - Plug.Conn.get_req_header(conn, "x-forwarded-for") - |> List.last() - |> String.split(", ") - |> List.first() - |> InetCidr.parse_address!() - rescue - e -> - Watchman.increment("auth.ip_filter.error") - Logger.error("Error parsing client IP: #{inspect(e)}") - Logger.error("Headers: #{inspect(conn.req_headers)}") - - # If something goes wrong here, it means Ingress/Ambassador are sending us - # a bad X-Forwarded-For header, which is very unlikely, so we fail open - nil - end - defp _block?(nil, _), do: false defp _block?(client_ip, ip_allow_list) do diff --git a/auth/mix.lock b/auth/mix.lock index 838cc7e64..a9db62b2a 100644 --- a/auth/mix.lock +++ b/auth/mix.lock @@ -21,19 +21,19 @@ "jumper": {:hex, :jumper, "1.0.1", "3c00542ef1a83532b72269fab9f0f0c82bf23a35e27d278bfd9ed0865cecabff", [:mix], [], "hexpm", "318c59078ac220e966d27af3646026db9b5a5e6703cb2aa3e26bcfaba65b7433"}, "junit_formatter": {:hex, :junit_formatter, "3.3.1", "c729befb848f1b9571f317d2fefa648e9d4869befc4b2980daca7c1edc468e40", [:mix], [], "hexpm", "761fc5be4b4c15d8ba91a6dafde0b2c2ae6db9da7b8832a55b5a1deb524da72b"}, "metrics": {:hex, :metrics, "1.0.1", "25f094dea2cda98213cecc3aeff09e940299d950904393b2a29d191c346a8486", [:rebar3], [], "hexpm", "69b09adddc4f74a40716ae54d140f93beb0fb8978d8636eaded0c31b6f099f16"}, - "mime": {:hex, :mime, "2.0.5", "dc34c8efd439abe6ae0343edbb8556f4d63f178594894720607772a041b04b02", [:mix], [], "hexpm", "da0d64a365c45bc9935cc5c8a7fc5e49a0e0f9932a761c55d6c52b142780a05c"}, + "mime": {:hex, :mime, "2.0.7", "b8d739037be7cd402aee1ba0306edfdef982687ee7e9859bee6198c1e7e2f128", [:mix], [], "hexpm", "6171188e399ee16023ffc5b76ce445eb6d9672e2e241d2df6050f3c771e80ccd"}, "mimerl": {:hex, :mimerl, "1.3.0", "d0cd9fc04b9061f82490f6581e0128379830e78535e017f7780f37fea7545726", [:rebar3], [], "hexpm", "a1e15a50d1887217de95f0b9b0793e32853f7c258a5cd227650889b38839fe9d"}, "parse_trans": {:hex, :parse_trans, "3.4.1", "6e6aa8167cb44cc8f39441d05193be6e6f4e7c2946cb2759f015f8c56b76e5ff", [:rebar3], [], "hexpm", "620a406ce75dada827b82e453c19cf06776be266f5a67cff34e1ef2cbb60e49a"}, - "plug": {:hex, :plug, "1.14.2", "cff7d4ec45b4ae176a227acd94a7ab536d9b37b942c8e8fa6dfc0fff98ff4d80", [:mix], [{:mime, "~> 1.0 or ~> 2.0", [hex: :mime, repo: "hexpm", optional: false]}, {:plug_crypto, "~> 1.1.1 or ~> 1.2", [hex: :plug_crypto, repo: "hexpm", optional: false]}, {:telemetry, "~> 0.4.3 or ~> 1.0", [hex: :telemetry, repo: "hexpm", optional: false]}], "hexpm", "842fc50187e13cf4ac3b253d47d9474ed6c296a8732752835ce4a86acdf68d13"}, + "plug": {:hex, :plug, "1.18.1", "5067f26f7745b7e31bc3368bc1a2b818b9779faa959b49c934c17730efc911cf", [:mix], [{:mime, "~> 1.0 or ~> 2.0", [hex: :mime, repo: "hexpm", optional: false]}, {:plug_crypto, "~> 1.1.1 or ~> 1.2 or ~> 2.0", [hex: :plug_crypto, repo: "hexpm", optional: false]}, {:telemetry, "~> 0.4.3 or ~> 1.0", [hex: :telemetry, repo: "hexpm", optional: false]}], "hexpm", "57a57db70df2b422b564437d2d33cf8d33cd16339c1edb190cd11b1a3a546cc2"}, "plug_cowboy": {:hex, :plug_cowboy, "2.5.2", "62894ccd601cf9597e2c23911ff12798a8a18d237e9739f58a6b04e4988899fe", [:mix], [{:cowboy, "~> 2.7", [hex: :cowboy, repo: "hexpm", optional: false]}, {:cowboy_telemetry, "~> 0.3", [hex: :cowboy_telemetry, repo: "hexpm", optional: false]}, {:plug, "~> 1.7", [hex: :plug, repo: "hexpm", optional: false]}], "hexpm", "ea6e87f774c8608d60c8d34022a7d073bd7680a0a013f049fc62bf35efea1044"}, - "plug_crypto": {:hex, :plug_crypto, "1.2.5", "918772575e48e81e455818229bf719d4ab4181fcbf7f85b68a35620f78d89ced", [:mix], [], "hexpm", "26549a1d6345e2172eb1c233866756ae44a9609bd33ee6f99147ab3fd87fd842"}, + "plug_crypto": {:hex, :plug_crypto, "2.1.1", "19bda8184399cb24afa10be734f84a16ea0a2bc65054e23a62bb10f06bc89491", [:mix], [], "hexpm", "6470bce6ffe41c8bd497612ffde1a7e4af67f36a15eea5f921af71cf3e11247c"}, "poison": {:hex, :poison, "3.1.0", "d9eb636610e096f86f25d9a46f35a9facac35609a7591b3be3326e99a0484665", [:mix], [], "hexpm"}, "protobuf": {:hex, :protobuf, "0.7.1", "7d1b9f7d9ecb32eccd96b0c58572de4d1c09e9e3bc414e4cb15c2dce7013f195", [:mix], [], "hexpm", "6eff7a5287963719521c82e5d5b4583fd1d7cdd89ad129f0ea7d503a50a4d13f"}, "ranch": {:hex, :ranch, "1.8.0", "8c7a100a139fd57f17327b6413e4167ac559fbc04ca7448e9be9057311597a1d", [:make, :rebar3], [], "hexpm", "49fbcfd3682fab1f5d109351b61257676da1a2fdbe295904176d5e521a2ddfe5"}, - "remote_ip": {:hex, :remote_ip, "1.1.0", "cb308841595d15df3f9073b7c39243a1dd6ca56e5020295cb012c76fbec50f2d", [:mix], [{:combine, "~> 0.10", [hex: :combine, repo: "hexpm", optional: false]}, {:plug, "~> 1.14", [hex: :plug, repo: "hexpm", optional: false]}], "hexpm", "616ffdf66aaad6a72fc546dabf42eed87e2a99e97b09cbd92b10cc180d02ed74"}, + "remote_ip": {:hex, :remote_ip, "1.2.0", "fb078e12a44414f4cef5a75963c33008fe169b806572ccd17257c208a7bc760f", [:mix], [{:combine, "~> 0.10", [hex: :combine, repo: "hexpm", optional: false]}, {:plug, "~> 1.14", [hex: :plug, repo: "hexpm", optional: false]}], "hexpm", "2ff91de19c48149ce19ed230a81d377186e4412552a597d6a5137373e5877cb7"}, "sentry": {:hex, :sentry, "8.0.6", "c8de1bf0523bc120ec37d596c55260901029ecb0994e7075b0973328779ceef7", [:mix], [{:hackney, "~> 1.8", [hex: :hackney, repo: "hexpm", optional: true]}, {:jason, "~> 1.1", [hex: :jason, repo: "hexpm", optional: true]}, {:plug, "~> 1.6", [hex: :plug, repo: "hexpm", optional: true]}, {:plug_cowboy, "~> 2.3", [hex: :plug_cowboy, repo: "hexpm", optional: true]}], "hexpm", "051a2d0472162f3137787c7c9d6e6e4ef239de9329c8c45b1f1bf1e9379e1883"}, "ssl_verify_fun": {:hex, :ssl_verify_fun, "1.1.7", "354c321cf377240c7b8716899e182ce4890c5938111a1296add3ec74cf1715df", [:make, :mix, :rebar3], [], "hexpm", "fe4c190e8f37401d30167c8c405eda19469f34577987c76dde613e838bbc67f8"}, - "telemetry": {:hex, :telemetry, "1.1.0", "a589817034a27eab11144ad24d5c0f9fab1f58173274b1e9bae7074af9cbee51", [:rebar3], [], "hexpm", "b727b2a1f75614774cff2d7565b64d0dfa5bd52ba517f16543e6fc7efcc0df48"}, + "telemetry": {:hex, :telemetry, "1.3.0", "fedebbae410d715cf8e7062c96a1ef32ec22e764197f70cda73d82778d61e7a2", [:rebar3], [], "hexpm", "7015fc8919dbe63764f4b4b87a95b7c0996bd539e0d499be6ec9d7f3875b79e6"}, "unicode_util_compat": {:hex, :unicode_util_compat, "0.7.0", "bc84380c9ab48177092f43ac89e4dfa2c6d62b40b8bd132b1059ecc7232f9a78", [:rebar3], [], "hexpm", "25eee6d67df61960cf6a794239566599b09e17e668d3700247bc498638152521"}, "unsafe": {:hex, :unsafe, "1.0.1", "a27e1874f72ee49312e0a9ec2e0b27924214a05e3ddac90e91727bc76f8613d8", [:mix], [], "hexpm", "6c7729a2d214806450d29766abc2afaa7a2cbecf415be64f36a6691afebb50e5"}, "uuid": {:hex, :uuid, "1.1.8", "e22fc04499de0de3ed1116b770c7737779f226ceefa0badb3592e64d5cfb4eb9", [:mix], [], "hexpm", "c790593b4c3b601f5dc2378baae7efaf5b3d73c4c6456ba85759905be792f2ac"}, diff --git a/auth/test/auth/cache_test.exs b/auth/test/auth/cache_test.exs index 05d6a3dc8..188a4e91d 100644 --- a/auth/test/auth/cache_test.exs +++ b/auth/test/auth/cache_test.exs @@ -1,6 +1,6 @@ defmodule Auth.CacheTest do use ExUnit.Case - use Plug.Test + doctest Auth test "it caches values" do diff --git a/auth/test/auth/cli_test.exs b/auth/test/auth/cli_test.exs index 84e36d46f..03cfdfa23 100644 --- a/auth/test/auth/cli_test.exs +++ b/auth/test/auth/cli_test.exs @@ -1,6 +1,8 @@ defmodule Auth.CliTest do use ExUnit.Case - use Plug.Test + + import Plug.Test + import Plug.Conn describe ".is_call_from_deprecated_cli?" do test "no user agent => returns false" do @@ -9,7 +11,7 @@ defmodule Auth.CliTest do refute Auth.Cli.is_call_from_deprecated_cli?(conn) end - test "SempahoreCLI user agent with a fresh version => returns false" do + test "SemaphoreCLI user agent with a fresh version => returns false" do conn = conn(:get, "https://org1.semaphoretest.test/exauth/api/v1alpha/jobs") conn = conn |> put_req_header("user-agent", "SemaphoreCLI/v0.30.0 (...)") diff --git a/auth/test/auth/ip_filter_test.exs b/auth/test/auth/ip_filter_test.exs index 901ff1d11..d5a3dc60d 100644 --- a/auth/test/auth/ip_filter_test.exs +++ b/auth/test/auth/ip_filter_test.exs @@ -1,72 +1,19 @@ defmodule Auth.IpFilterTest do use ExUnit.Case - use Plug.Test @org_id UUID.uuid4() describe "#block?" do test "empty ip_allow_list => returns false" do - conn = conn(:get, "https://org1.semaphoretest.test/exauth/api/v1alpha/jobs") - - refute Auth.IpFilter.block?(conn, %{ + refute Auth.IpFilter.block?({172, 14, 101, 99}, %{ id: @org_id, name: "semaphore", ip_allow_list: [] }) end - test "no X-Forwarded-For header => returns false" do - conn = conn(:get, "https://org1.semaphoretest.test/exauth/api/v1alpha/jobs") - - refute Auth.IpFilter.block?(conn, %{ - id: @org_id, - name: "semaphore", - ip_allow_list: ["172.14.101.99"] - }) - end - - test "bad X-Forwarded-For header => returns false" do - conn = - Plug.Adapters.Test.Conn.conn( - %Plug.Conn{req_headers: [{"x-forwarded-for", "999.999.999.999"}]}, - :get, - "https://org1.semaphoretest.test/exauth/api/v1alpha/jobs", - nil - ) - - refute Auth.IpFilter.block?(conn, %{ - id: @org_id, - name: "semaphore", - ip_allow_list: ["172.14.101.99"] - }) - end - - test "single bad IP => returns false" do - conn = - Plug.Adapters.Test.Conn.conn( - %Plug.Conn{req_headers: [{"x-forwarded-for", "172.14.101.99"}]}, - :get, - "https://org1.semaphoretest.test/exauth/api/v1alpha/jobs", - nil - ) - - refute Auth.IpFilter.block?(conn, %{ - id: @org_id, - name: "semaphore", - ip_allow_list: ["999.999.999.999"] - }) - end - test "single IP => returns false if request comes from the same IP" do - conn = - Plug.Adapters.Test.Conn.conn( - %Plug.Conn{req_headers: [{"x-forwarded-for", "172.14.101.99"}]}, - :get, - "https://org1.semaphoretest.test/exauth/api/v1alpha/jobs", - nil - ) - - refute Auth.IpFilter.block?(conn, %{ + refute Auth.IpFilter.block?({172, 14, 101, 99}, %{ id: @org_id, name: "semaphore", ip_allow_list: ["172.14.101.99"] @@ -74,15 +21,7 @@ defmodule Auth.IpFilterTest do end test "single IP => returns true if request does not come from the same IP" do - conn = - Plug.Adapters.Test.Conn.conn( - %Plug.Conn{req_headers: [{"x-forwarded-for", "211.191.11.4"}]}, - :get, - "https://org1.semaphoretest.test/exauth/api/v1alpha/jobs", - nil - ) - - assert Auth.IpFilter.block?(conn, %{ + assert Auth.IpFilter.block?({211, 191, 11, 4}, %{ id: @org_id, name: "semaphore", ip_allow_list: ["172.14.101.99"] @@ -90,15 +29,7 @@ defmodule Auth.IpFilterTest do end test "multiple IPs => returns false if request comes from one of the IPs allowed" do - conn = - Plug.Adapters.Test.Conn.conn( - %Plug.Conn{req_headers: [{"x-forwarded-for", "172.14.101.99"}]}, - :get, - "https://org1.semaphoretest.test/exauth/api/v1alpha/jobs", - nil - ) - - refute Auth.IpFilter.block?(conn, %{ + refute Auth.IpFilter.block?({172, 14, 101, 99}, %{ id: @org_id, name: "semaphore", ip_allow_list: ["32.109.221.12", "172.14.101.99"] @@ -106,15 +37,7 @@ defmodule Auth.IpFilterTest do end test "multiple IPs => returns true if request comes from none of the IPs allowed" do - conn = - Plug.Adapters.Test.Conn.conn( - %Plug.Conn{req_headers: [{"x-forwarded-for", "211.191.11.4"}]}, - :get, - "https://org1.semaphoretest.test/exauth/api/v1alpha/jobs", - nil - ) - - assert Auth.IpFilter.block?(conn, %{ + assert Auth.IpFilter.block?({211, 191, 11, 4}, %{ id: @org_id, name: "semaphore", ip_allow_list: ["32.109.221.12", "172.14.101.99"] @@ -122,15 +45,7 @@ defmodule Auth.IpFilterTest do end test "single bad CIDR => returns false" do - conn = - Plug.Adapters.Test.Conn.conn( - %Plug.Conn{req_headers: [{"x-forwarded-for", "172.14.101.99"}]}, - :get, - "https://org1.semaphoretest.test/exauth/api/v1alpha/jobs", - nil - ) - - refute Auth.IpFilter.block?(conn, %{ + refute Auth.IpFilter.block?({172, 14, 101, 99}, %{ id: @org_id, name: "semaphore", ip_allow_list: ["32.109.221.12/999"] @@ -138,15 +53,7 @@ defmodule Auth.IpFilterTest do end test "single CIDR => returns false if request comes from IP inside CIDR" do - conn = - Plug.Adapters.Test.Conn.conn( - %Plug.Conn{req_headers: [{"x-forwarded-for", "32.109.221.1"}]}, - :get, - "https://org1.semaphoretest.test/exauth/api/v1alpha/jobs", - nil - ) - - refute Auth.IpFilter.block?(conn, %{ + refute Auth.IpFilter.block?({32, 109, 221, 1}, %{ id: @org_id, name: "semaphore", ip_allow_list: ["32.109.221.12/28"] @@ -154,15 +61,7 @@ defmodule Auth.IpFilterTest do end test "single CIDR => returns true if request comes from IP outside the CIDR" do - conn = - Plug.Adapters.Test.Conn.conn( - %Plug.Conn{req_headers: [{"x-forwarded-for", "32.109.222.1"}]}, - :get, - "https://org1.semaphoretest.test/exauth/api/v1alpha/jobs", - nil - ) - - assert Auth.IpFilter.block?(conn, %{ + assert Auth.IpFilter.block?({32, 109, 222, 1}, %{ id: @org_id, name: "semaphore", ip_allow_list: ["32.109.221.12/28"] @@ -170,15 +69,7 @@ defmodule Auth.IpFilterTest do end test "multiple CIDRs => returns false if request comes from IP inside one of the CIDRs" do - conn = - Plug.Adapters.Test.Conn.conn( - %Plug.Conn{req_headers: [{"x-forwarded-for", "32.109.221.1"}]}, - :get, - "https://org1.semaphoretest.test/exauth/api/v1alpha/jobs", - nil - ) - - refute Auth.IpFilter.block?(conn, %{ + refute Auth.IpFilter.block?({32, 109, 221, 1}, %{ id: @org_id, name: "semaphore", ip_allow_list: ["113.51.211.0/16", "32.109.221.12/28"] @@ -186,15 +77,7 @@ defmodule Auth.IpFilterTest do end test "multiple CIDRs => returns true if request comes from IP outside all CIDRs" do - conn = - Plug.Adapters.Test.Conn.conn( - %Plug.Conn{req_headers: [{"x-forwarded-for", "45.111.201.7"}]}, - :get, - "https://org1.semaphoretest.test/exauth/api/v1alpha/jobs", - nil - ) - - assert Auth.IpFilter.block?(conn, %{ + assert Auth.IpFilter.block?({45, 111, 201, 7}, %{ id: @org_id, name: "semaphore", ip_allow_list: ["113.51.211.0/16", "32.109.221.12/28"] @@ -202,15 +85,7 @@ defmodule Auth.IpFilterTest do end test "IP + CIDR => returns false if request comes from IP inside CIDR" do - conn = - Plug.Adapters.Test.Conn.conn( - %Plug.Conn{req_headers: [{"x-forwarded-for", "32.109.221.1"}]}, - :get, - "https://org1.semaphoretest.test/exauth/api/v1alpha/jobs", - nil - ) - - refute Auth.IpFilter.block?(conn, %{ + refute Auth.IpFilter.block?({32, 109, 221, 1}, %{ id: @org_id, name: "semaphore", ip_allow_list: ["113.51.211.12", "32.109.221.12/28"] @@ -218,15 +93,7 @@ defmodule Auth.IpFilterTest do end test "IP + CIDR => returns false if request comes from one of the allowed IPs" do - conn = - Plug.Adapters.Test.Conn.conn( - %Plug.Conn{req_headers: [{"x-forwarded-for", "113.51.211.12"}]}, - :get, - "https://org1.semaphoretest.test/exauth/api/v1alpha/jobs", - nil - ) - - refute Auth.IpFilter.block?(conn, %{ + refute Auth.IpFilter.block?({113, 51, 211, 12}, %{ id: @org_id, name: "semaphore", ip_allow_list: ["113.51.211.12", "32.109.221.12/28"] @@ -234,15 +101,7 @@ defmodule Auth.IpFilterTest do end test "IP + CIDR => returns true if request comes from IP not in CIDRs and not in allowed IPs" do - conn = - Plug.Adapters.Test.Conn.conn( - %Plug.Conn{req_headers: [{"x-forwarded-for", "35.121.222.37"}]}, - :get, - "https://org1.semaphoretest.test/exauth/api/v1alpha/jobs", - nil - ) - - assert Auth.IpFilter.block?(conn, %{ + assert Auth.IpFilter.block?({35, 121, 222, 37}, %{ id: @org_id, name: "semaphore", ip_allow_list: ["113.51.211.12", "32.109.221.12/28"] diff --git a/auth/test/auth/refuse_x_semaphore_headers_test.exs b/auth/test/auth/refuse_x_semaphore_headers_test.exs index 1018162ab..c88c96508 100644 --- a/auth/test/auth/refuse_x_semaphore_headers_test.exs +++ b/auth/test/auth/refuse_x_semaphore_headers_test.exs @@ -1,6 +1,8 @@ defmodule Auth.RefuseXSemaphoreHeadersTest do use ExUnit.Case - use Plug.Test + + import Plug.Test + import Plug.Conn test "the caller passed an x-semaphore-* header, we respond with 404" do assert {404, _, "Not Found"} = call_with_header("x-semaphore-user-id", "some-value") diff --git a/auth/test/auth_test.exs b/auth/test/auth_test.exs index c6ab32f1c..1c036bb7a 100644 --- a/auth/test/auth_test.exs +++ b/auth/test/auth_test.exs @@ -1,6 +1,9 @@ defmodule AuthTest do use ExUnit.Case - use Plug.Test + + import Plug.Test + import Plug.Conn + doctest Auth alias InternalApi.Auth.AuthenticateResponse diff --git a/badge/lib/internal_api/include/google/protobuf/timestamp.pb.ex b/badge/lib/internal_api/include/google/protobuf/timestamp.pb.ex index ee7e4c0a5..8720315dd 100644 --- a/badge/lib/internal_api/include/google/protobuf/timestamp.pb.ex +++ b/badge/lib/internal_api/include/google/protobuf/timestamp.pb.ex @@ -6,6 +6,7 @@ defmodule Google.Protobuf.Timestamp do seconds: integer, nanos: integer } + defstruct [:seconds, :nanos] field(:seconds, 1, type: :int64) diff --git a/badge/lib/internal_api/include/google/rpc/code.pb.ex b/badge/lib/internal_api/include/google/rpc/code.pb.ex index 227b27a8e..3ef0b01dc 100644 --- a/badge/lib/internal_api/include/google/rpc/code.pb.ex +++ b/badge/lib/internal_api/include/google/rpc/code.pb.ex @@ -2,21 +2,57 @@ defmodule Google.Rpc.Code do @moduledoc false use Protobuf, enum: true, syntax: :proto3 + @type t :: + integer + | :OK + | :CANCELLED + | :UNKNOWN + | :INVALID_ARGUMENT + | :DEADLINE_EXCEEDED + | :NOT_FOUND + | :ALREADY_EXISTS + | :PERMISSION_DENIED + | :UNAUTHENTICATED + | :RESOURCE_EXHAUSTED + | :FAILED_PRECONDITION + | :ABORTED + | :OUT_OF_RANGE + | :UNIMPLEMENTED + | :INTERNAL + | :UNAVAILABLE + | :DATA_LOSS + field(:OK, 0) + field(:CANCELLED, 1) + field(:UNKNOWN, 2) + field(:INVALID_ARGUMENT, 3) + field(:DEADLINE_EXCEEDED, 4) + field(:NOT_FOUND, 5) + field(:ALREADY_EXISTS, 6) + field(:PERMISSION_DENIED, 7) + field(:UNAUTHENTICATED, 16) + field(:RESOURCE_EXHAUSTED, 8) + field(:FAILED_PRECONDITION, 9) + field(:ABORTED, 10) + field(:OUT_OF_RANGE, 11) + field(:UNIMPLEMENTED, 12) + field(:INTERNAL, 13) + field(:UNAVAILABLE, 14) + field(:DATA_LOSS, 15) end diff --git a/badge/lib/internal_api/include/google/rpc/status.pb.ex b/badge/lib/internal_api/include/google/rpc/status.pb.ex index 24523dc63..7b912ac57 100644 --- a/badge/lib/internal_api/include/google/rpc/status.pb.ex +++ b/badge/lib/internal_api/include/google/rpc/status.pb.ex @@ -7,6 +7,7 @@ defmodule Google.Rpc.Status do message: String.t(), details: [Google.Protobuf.Any.t()] } + defstruct [:code, :message, :details] field(:code, 1, type: :int32) diff --git a/badge/lib/internal_api/include/internal_api/response_status.pb.ex b/badge/lib/internal_api/include/internal_api/response_status.pb.ex index ac10ea64e..1ccd37ee5 100644 --- a/badge/lib/internal_api/include/internal_api/response_status.pb.ex +++ b/badge/lib/internal_api/include/internal_api/response_status.pb.ex @@ -1,21 +1,24 @@ +defmodule InternalApi.ResponseStatus.Code do + @moduledoc false + use Protobuf, enum: true, syntax: :proto3 + @type t :: integer | :OK | :BAD_PARAM + + field(:OK, 0) + + field(:BAD_PARAM, 1) +end + defmodule InternalApi.ResponseStatus do @moduledoc false use Protobuf, syntax: :proto3 @type t :: %__MODULE__{ - code: integer, + code: InternalApi.ResponseStatus.Code.t(), message: String.t() } + defstruct [:code, :message] field(:code, 1, type: InternalApi.ResponseStatus.Code, enum: true) field(:message, 2, type: :string) end - -defmodule InternalApi.ResponseStatus.Code do - @moduledoc false - use Protobuf, enum: true, syntax: :proto3 - - field(:OK, 0) - field(:BAD_PARAM, 1) -end diff --git a/badge/lib/internal_api/include/internal_api/status.pb.ex b/badge/lib/internal_api/include/internal_api/status.pb.ex index 2897c7cd1..3434f7690 100644 --- a/badge/lib/internal_api/include/internal_api/status.pb.ex +++ b/badge/lib/internal_api/include/internal_api/status.pb.ex @@ -3,9 +3,10 @@ defmodule InternalApi.Status do use Protobuf, syntax: :proto3 @type t :: %__MODULE__{ - code: integer, + code: Google.Rpc.Code.t(), message: String.t() } + defstruct [:code, :message] field(:code, 1, type: Google.Rpc.Code, enum: true) diff --git a/badge/lib/internal_api/plumber.pipeline.pb.ex b/badge/lib/internal_api/plumber.pipeline.pb.ex index 5faac12f1..160474bc5 100644 --- a/badge/lib/internal_api/plumber.pipeline.pb.ex +++ b/badge/lib/internal_api/plumber.pipeline.pb.ex @@ -1,39 +1,282 @@ -defmodule InternalApi.Plumber.ScheduleRequest do +defmodule InternalApi.Plumber.QueueType do @moduledoc false - use Protobuf, syntax: :proto3 + use Protobuf, enum: true, syntax: :proto3 + @type t :: integer | :IMPLICIT | :USER_GENERATED - @type t :: %__MODULE__{ - service: integer, - repo: InternalApi.Plumber.ScheduleRequest.Repo.t(), - auth: InternalApi.Plumber.ScheduleRequest.Auth.t(), - project_id: String.t(), - branch_id: String.t(), - hook_id: String.t(), - request_token: String.t(), - snapshot_id: String.t(), - definition_file: String.t() - } - defstruct [ - :service, - :repo, - :auth, - :project_id, - :branch_id, - :hook_id, - :request_token, - :snapshot_id, - :definition_file - ] + field(:IMPLICIT, 0) - field(:service, 2, type: InternalApi.Plumber.ScheduleRequest.ServiceType, enum: true) - field(:repo, 3, type: InternalApi.Plumber.ScheduleRequest.Repo) - field(:auth, 4, type: InternalApi.Plumber.ScheduleRequest.Auth) - field(:project_id, 6, type: :string) - field(:branch_id, 7, type: :string) - field(:hook_id, 8, type: :string) - field(:request_token, 9, type: :string) - field(:snapshot_id, 10, type: :string) - field(:definition_file, 11, type: :string) + field(:USER_GENERATED, 1) +end + +defmodule InternalApi.Plumber.GitRefType do + @moduledoc false + use Protobuf, enum: true, syntax: :proto3 + @type t :: integer | :BRANCH | :TAG | :PR + + field(:BRANCH, 0) + + field(:TAG, 1) + + field(:PR, 2) +end + +defmodule InternalApi.Plumber.TriggeredBy do + @moduledoc false + use Protobuf, enum: true, syntax: :proto3 + @type t :: integer | :WORKFLOW | :PROMOTION | :AUTO_PROMOTION | :PARTIAL_RE_RUN + + field(:WORKFLOW, 0) + + field(:PROMOTION, 1) + + field(:AUTO_PROMOTION, 2) + + field(:PARTIAL_RE_RUN, 3) +end + +defmodule InternalApi.Plumber.ScheduleRequest.ServiceType do + @moduledoc false + use Protobuf, enum: true, syntax: :proto3 + @type t :: integer | :GIT_HUB | :LOCAL | :SNAPSHOT + + field(:GIT_HUB, 0) + + field(:LOCAL, 1) + + field(:SNAPSHOT, 2) +end + +defmodule InternalApi.Plumber.Block.State do + @moduledoc false + use Protobuf, enum: true, syntax: :proto3 + @type t :: integer | :WAITING | :RUNNING | :STOPPING | :DONE | :INITIALIZING + + field(:WAITING, 0) + + field(:RUNNING, 1) + + field(:STOPPING, 2) + + field(:DONE, 3) + + field(:INITIALIZING, 4) +end + +defmodule InternalApi.Plumber.Block.Result do + @moduledoc false + use Protobuf, enum: true, syntax: :proto3 + @type t :: integer | :PASSED | :STOPPED | :CANCELED | :FAILED + + field(:PASSED, 0) + + field(:STOPPED, 1) + + field(:CANCELED, 2) + + field(:FAILED, 3) +end + +defmodule InternalApi.Plumber.Block.ResultReason do + @moduledoc false + use Protobuf, enum: true, syntax: :proto3 + + @type t :: + integer + | :TEST + | :MALFORMED + | :STUCK + | :USER + | :INTERNAL + | :STRATEGY + | :FAST_FAILING + | :DELETED + | :TIMEOUT + | :SKIPPED + + field(:TEST, 0) + + field(:MALFORMED, 1) + + field(:STUCK, 2) + + field(:USER, 3) + + field(:INTERNAL, 4) + + field(:STRATEGY, 5) + + field(:FAST_FAILING, 6) + + field(:DELETED, 7) + + field(:TIMEOUT, 8) + + field(:SKIPPED, 9) +end + +defmodule InternalApi.Plumber.ListKeysetRequest.Order do + @moduledoc false + use Protobuf, enum: true, syntax: :proto3 + @type t :: integer | :BY_CREATION_TIME_DESC + + field(:BY_CREATION_TIME_DESC, 0) +end + +defmodule InternalApi.Plumber.ListKeysetRequest.Direction do + @moduledoc false + use Protobuf, enum: true, syntax: :proto3 + @type t :: integer | :NEXT | :PREVIOUS + + field(:NEXT, 0) + + field(:PREVIOUS, 1) +end + +defmodule InternalApi.Plumber.Pipeline.State do + @moduledoc false + use Protobuf, enum: true, syntax: :proto3 + @type t :: integer | :INITIALIZING | :PENDING | :QUEUING | :RUNNING | :STOPPING | :DONE + + field(:INITIALIZING, 0) + + field(:PENDING, 1) + + field(:QUEUING, 2) + + field(:RUNNING, 3) + + field(:STOPPING, 4) + + field(:DONE, 5) +end + +defmodule InternalApi.Plumber.Pipeline.Result do + @moduledoc false + use Protobuf, enum: true, syntax: :proto3 + @type t :: integer | :PASSED | :STOPPED | :CANCELED | :FAILED + + field(:PASSED, 0) + + field(:STOPPED, 1) + + field(:CANCELED, 2) + + field(:FAILED, 3) +end + +defmodule InternalApi.Plumber.Pipeline.ResultReason do + @moduledoc false + use Protobuf, enum: true, syntax: :proto3 + + @type t :: + integer + | :TEST + | :MALFORMED + | :STUCK + | :USER + | :INTERNAL + | :STRATEGY + | :FAST_FAILING + | :DELETED + | :TIMEOUT + + field(:TEST, 0) + + field(:MALFORMED, 1) + + field(:STUCK, 2) + + field(:USER, 3) + + field(:INTERNAL, 4) + + field(:STRATEGY, 5) + + field(:FAST_FAILING, 6) + + field(:DELETED, 7) + + field(:TIMEOUT, 8) +end + +defmodule InternalApi.Plumber.ListActivityRequest.Order do + @moduledoc false + use Protobuf, enum: true, syntax: :proto3 + @type t :: integer | :BY_CREATION_TIME_DESC + + field(:BY_CREATION_TIME_DESC, 0) +end + +defmodule InternalApi.Plumber.ListActivityRequest.Direction do + @moduledoc false + use Protobuf, enum: true, syntax: :proto3 + @type t :: integer | :NEXT | :PREVIOUS + + field(:NEXT, 0) + + field(:PREVIOUS, 1) +end + +defmodule InternalApi.Plumber.RunNowRequest.Type do + @moduledoc false + use Protobuf, enum: true, syntax: :proto3 + @type t :: integer | :PIPELINE | :BLOCK | :JOB + + field(:PIPELINE, 0) + + field(:BLOCK, 1) + + field(:JOB, 2) +end + +defmodule InternalApi.Plumber.ResponseStatus.ResponseCode do + @moduledoc false + use Protobuf, enum: true, syntax: :proto3 + @type t :: integer | :OK | :BAD_PARAM | :LIMIT_EXCEEDED | :REFUSED + + field(:OK, 0) + + field(:BAD_PARAM, 1) + + field(:LIMIT_EXCEEDED, 2) + + field(:REFUSED, 3) +end + +defmodule InternalApi.Plumber.AfterPipeline.State do + @moduledoc false + use Protobuf, enum: true, syntax: :proto3 + @type t :: integer | :WAITING | :PENDING | :RUNNING | :DONE + + field(:WAITING, 0) + + field(:PENDING, 1) + + field(:RUNNING, 2) + + field(:DONE, 3) +end + +defmodule InternalApi.Plumber.AfterPipeline.Result do + @moduledoc false + use Protobuf, enum: true, syntax: :proto3 + @type t :: integer | :PASSED | :STOPPED | :FAILED + + field(:PASSED, 0) + + field(:STOPPED, 1) + + field(:FAILED, 2) +end + +defmodule InternalApi.Plumber.AfterPipeline.ResultReason do + @moduledoc false + use Protobuf, enum: true, syntax: :proto3 + @type t :: integer | :TEST | :STUCK + + field(:TEST, 0) + + field(:STUCK, 1) end defmodule InternalApi.Plumber.ScheduleRequest.Repo do @@ -46,6 +289,7 @@ defmodule InternalApi.Plumber.ScheduleRequest.Repo do branch_name: String.t(), commit_sha: String.t() } + defstruct [:owner, :repo_name, :branch_name, :commit_sha] field(:owner, 1, type: :string) @@ -63,6 +307,7 @@ defmodule InternalApi.Plumber.ScheduleRequest.Auth do client_secret: String.t(), access_token: String.t() } + defstruct [:client_id, :client_secret, :access_token] field(:client_id, 1, type: :string) @@ -70,13 +315,43 @@ defmodule InternalApi.Plumber.ScheduleRequest.Auth do field(:access_token, 3, type: :string) end -defmodule InternalApi.Plumber.ScheduleRequest.ServiceType do +defmodule InternalApi.Plumber.ScheduleRequest do @moduledoc false - use Protobuf, enum: true, syntax: :proto3 + use Protobuf, syntax: :proto3 - field(:GIT_HUB, 0) - field(:LOCAL, 1) - field(:SNAPSHOT, 2) + @type t :: %__MODULE__{ + service: InternalApi.Plumber.ScheduleRequest.ServiceType.t(), + repo: InternalApi.Plumber.ScheduleRequest.Repo.t() | nil, + auth: InternalApi.Plumber.ScheduleRequest.Auth.t() | nil, + project_id: String.t(), + branch_id: String.t(), + hook_id: String.t(), + request_token: String.t(), + snapshot_id: String.t(), + definition_file: String.t() + } + + defstruct [ + :service, + :repo, + :auth, + :project_id, + :branch_id, + :hook_id, + :request_token, + :snapshot_id, + :definition_file + ] + + field(:service, 2, type: InternalApi.Plumber.ScheduleRequest.ServiceType, enum: true) + field(:repo, 3, type: InternalApi.Plumber.ScheduleRequest.Repo) + field(:auth, 4, type: InternalApi.Plumber.ScheduleRequest.Auth) + field(:project_id, 6, type: :string) + field(:branch_id, 7, type: :string) + field(:hook_id, 8, type: :string) + field(:request_token, 9, type: :string) + field(:snapshot_id, 10, type: :string) + field(:definition_file, 11, type: :string) end defmodule InternalApi.Plumber.ScheduleResponse do @@ -84,9 +359,10 @@ defmodule InternalApi.Plumber.ScheduleResponse do use Protobuf, syntax: :proto3 @type t :: %__MODULE__{ - response_status: InternalApi.Plumber.ResponseStatus.t(), + response_status: InternalApi.Plumber.ResponseStatus.t() | nil, ppl_id: String.t() } + defstruct [:response_status, :ppl_id] field(:response_status, 1, type: InternalApi.Plumber.ResponseStatus) @@ -101,6 +377,7 @@ defmodule InternalApi.Plumber.DescribeRequest do ppl_id: String.t(), detailed: boolean } + defstruct [:ppl_id, :detailed] field(:ppl_id, 1, type: :string) @@ -112,10 +389,11 @@ defmodule InternalApi.Plumber.DescribeResponse do use Protobuf, syntax: :proto3 @type t :: %__MODULE__{ - response_status: InternalApi.Plumber.ResponseStatus.t(), - pipeline: InternalApi.Plumber.Pipeline.t(), + response_status: InternalApi.Plumber.ResponseStatus.t() | nil, + pipeline: InternalApi.Plumber.Pipeline.t() | nil, blocks: [InternalApi.Plumber.Block.t()] } + defstruct [:response_status, :pipeline, :blocks] field(:response_status, 1, type: InternalApi.Plumber.ResponseStatus) @@ -123,6 +401,27 @@ defmodule InternalApi.Plumber.DescribeResponse do field(:blocks, 4, repeated: true, type: InternalApi.Plumber.Block) end +defmodule InternalApi.Plumber.Block.Job do + @moduledoc false + use Protobuf, syntax: :proto3 + + @type t :: %__MODULE__{ + name: String.t(), + index: non_neg_integer, + job_id: String.t(), + status: String.t(), + result: String.t() + } + + defstruct [:name, :index, :job_id, :status, :result] + + field(:name, 1, type: :string) + field(:index, 2, type: :uint32) + field(:job_id, 3, type: :string) + field(:status, 4, type: :string) + field(:result, 5, type: :string) +end + defmodule InternalApi.Plumber.Block do @moduledoc false use Protobuf, syntax: :proto3 @@ -131,12 +430,13 @@ defmodule InternalApi.Plumber.Block do block_id: String.t(), name: String.t(), build_req_id: String.t(), - state: integer, - result: integer, - result_reason: integer, + state: InternalApi.Plumber.Block.State.t(), + result: InternalApi.Plumber.Block.Result.t(), + result_reason: InternalApi.Plumber.Block.ResultReason.t(), error_description: String.t(), jobs: [InternalApi.Plumber.Block.Job.t()] } + defstruct [ :block_id, :name, @@ -158,99 +458,75 @@ defmodule InternalApi.Plumber.Block do field(:jobs, 8, repeated: true, type: InternalApi.Plumber.Block.Job) end -defmodule InternalApi.Plumber.Block.Job do +defmodule InternalApi.Plumber.DescribeManyRequest do @moduledoc false use Protobuf, syntax: :proto3 @type t :: %__MODULE__{ - name: String.t(), - index: non_neg_integer, - job_id: String.t(), - status: String.t(), - result: String.t() + ppl_ids: [String.t()] } - defstruct [:name, :index, :job_id, :status, :result] - - field(:name, 1, type: :string) - field(:index, 2, type: :uint32) - field(:job_id, 3, type: :string) - field(:status, 4, type: :string) - field(:result, 5, type: :string) -end -defmodule InternalApi.Plumber.Block.State do - @moduledoc false - use Protobuf, enum: true, syntax: :proto3 + defstruct [:ppl_ids] - field(:WAITING, 0) - field(:RUNNING, 1) - field(:STOPPING, 2) - field(:DONE, 3) - field(:INITIALIZING, 4) + field(:ppl_ids, 1, repeated: true, type: :string) end -defmodule InternalApi.Plumber.Block.Result do +defmodule InternalApi.Plumber.DescribeManyResponse do @moduledoc false - use Protobuf, enum: true, syntax: :proto3 + use Protobuf, syntax: :proto3 - field(:PASSED, 0) - field(:STOPPED, 1) - field(:CANCELED, 2) - field(:FAILED, 3) -end + @type t :: %__MODULE__{ + response_status: InternalApi.Plumber.ResponseStatus.t() | nil, + pipelines: [InternalApi.Plumber.Pipeline.t()] + } -defmodule InternalApi.Plumber.Block.ResultReason do - @moduledoc false - use Protobuf, enum: true, syntax: :proto3 + defstruct [:response_status, :pipelines] - field(:TEST, 0) - field(:MALFORMED, 1) - field(:STUCK, 2) - field(:USER, 3) - field(:INTERNAL, 4) - field(:STRATEGY, 5) - field(:FAST_FAILING, 6) - field(:DELETED, 7) - field(:TIMEOUT, 8) - field(:SKIPPED, 9) + field(:response_status, 1, type: InternalApi.Plumber.ResponseStatus) + field(:pipelines, 2, repeated: true, type: InternalApi.Plumber.Pipeline) end -defmodule InternalApi.Plumber.DescribeManyRequest do +defmodule InternalApi.Plumber.DescribeTopologyRequest do @moduledoc false use Protobuf, syntax: :proto3 @type t :: %__MODULE__{ - ppl_ids: [String.t()] + ppl_id: String.t() } - defstruct [:ppl_ids] - field(:ppl_ids, 1, repeated: true, type: :string) + defstruct [:ppl_id] + + field(:ppl_id, 1, type: :string) end -defmodule InternalApi.Plumber.DescribeManyResponse do +defmodule InternalApi.Plumber.DescribeTopologyResponse.Block do @moduledoc false use Protobuf, syntax: :proto3 @type t :: %__MODULE__{ - response_status: InternalApi.Plumber.ResponseStatus.t(), - pipelines: [InternalApi.Plumber.Pipeline.t()] + name: String.t(), + jobs: [String.t()], + dependencies: [String.t()] } - defstruct [:response_status, :pipelines] - field(:response_status, 1, type: InternalApi.Plumber.ResponseStatus) - field(:pipelines, 2, repeated: true, type: InternalApi.Plumber.Pipeline) + defstruct [:name, :jobs, :dependencies] + + field(:name, 1, type: :string) + field(:jobs, 2, repeated: true, type: :string) + field(:dependencies, 3, repeated: true, type: :string) end -defmodule InternalApi.Plumber.DescribeTopologyRequest do +defmodule InternalApi.Plumber.DescribeTopologyResponse.AfterPipeline do @moduledoc false use Protobuf, syntax: :proto3 @type t :: %__MODULE__{ - ppl_id: String.t() + jobs: [String.t()] } - defstruct [:ppl_id] - field(:ppl_id, 1, type: :string) + defstruct [:jobs] + + field(:jobs, 1, repeated: true, type: :string) end defmodule InternalApi.Plumber.DescribeTopologyResponse do @@ -258,29 +534,16 @@ defmodule InternalApi.Plumber.DescribeTopologyResponse do use Protobuf, syntax: :proto3 @type t :: %__MODULE__{ - status: InternalApi.Plumber.ResponseStatus.t(), - blocks: [InternalApi.Plumber.DescribeTopologyResponse.Block.t()] + status: InternalApi.Plumber.ResponseStatus.t() | nil, + blocks: [InternalApi.Plumber.DescribeTopologyResponse.Block.t()], + after_pipeline: InternalApi.Plumber.DescribeTopologyResponse.AfterPipeline.t() | nil } - defstruct [:status, :blocks] + + defstruct [:status, :blocks, :after_pipeline] field(:status, 1, type: InternalApi.Plumber.ResponseStatus) field(:blocks, 2, repeated: true, type: InternalApi.Plumber.DescribeTopologyResponse.Block) -end - -defmodule InternalApi.Plumber.DescribeTopologyResponse.Block do - @moduledoc false - use Protobuf, syntax: :proto3 - - @type t :: %__MODULE__{ - name: String.t(), - jobs: [String.t()], - dependencies: [String.t()] - } - defstruct [:name, :jobs, :dependencies] - - field(:name, 1, type: :string) - field(:jobs, 2, repeated: true, type: :string) - field(:dependencies, 3, repeated: true, type: :string) + field(:after_pipeline, 3, type: InternalApi.Plumber.DescribeTopologyResponse.AfterPipeline) end defmodule InternalApi.Plumber.TerminateRequest do @@ -291,6 +554,7 @@ defmodule InternalApi.Plumber.TerminateRequest do ppl_id: String.t(), requester_id: String.t() } + defstruct [:ppl_id, :requester_id] field(:ppl_id, 1, type: :string) @@ -302,8 +566,9 @@ defmodule InternalApi.Plumber.TerminateResponse do use Protobuf, syntax: :proto3 @type t :: %__MODULE__{ - response_status: InternalApi.Plumber.ResponseStatus.t() + response_status: InternalApi.Plumber.ResponseStatus.t() | nil } + defstruct [:response_status] field(:response_status, 1, type: InternalApi.Plumber.ResponseStatus) @@ -318,8 +583,9 @@ defmodule InternalApi.Plumber.ListQueuesRequest do page_size: integer, project_id: String.t(), organization_id: String.t(), - queue_types: [integer] + queue_types: [[InternalApi.Plumber.QueueType.t()]] } + defstruct [:page, :page_size, :project_id, :organization_id, :queue_types] field(:page, 1, type: :int32) @@ -334,13 +600,14 @@ defmodule InternalApi.Plumber.ListQueuesResponse do use Protobuf, syntax: :proto3 @type t :: %__MODULE__{ - response_status: InternalApi.Plumber.ResponseStatus.t(), + response_status: InternalApi.Plumber.ResponseStatus.t() | nil, queues: [InternalApi.Plumber.Queue.t()], page_number: integer, page_size: integer, total_entries: integer, total_pages: integer } + defstruct [:response_status, :queues, :page_number, :page_size, :total_entries, :total_pages] field(:response_status, 1, type: InternalApi.Plumber.ResponseStatus) @@ -360,8 +627,9 @@ defmodule InternalApi.Plumber.ListGroupedRequest do page_size: integer, project_id: String.t(), organization_id: String.t(), - queue_type: [integer] + queue_type: [[InternalApi.Plumber.QueueType.t()]] } + defstruct [:page, :page_size, :project_id, :organization_id, :queue_type] field(:page, 1, type: :int32) @@ -376,13 +644,14 @@ defmodule InternalApi.Plumber.ListGroupedResponse do use Protobuf, syntax: :proto3 @type t :: %__MODULE__{ - response_status: InternalApi.Plumber.ResponseStatus.t(), + response_status: InternalApi.Plumber.ResponseStatus.t() | nil, pipelines: [InternalApi.Plumber.Pipeline.t()], page_number: integer, page_size: integer, total_entries: integer, total_pages: integer } + defstruct [:response_status, :pipelines, :page_number, :page_size, :total_entries, :total_pages] field(:response_status, 1, type: InternalApi.Plumber.ResponseStatus) @@ -400,19 +669,22 @@ defmodule InternalApi.Plumber.ListKeysetRequest do @type t :: %__MODULE__{ page_size: integer, page_token: String.t(), - order: integer, - direction: integer, + order: InternalApi.Plumber.ListKeysetRequest.Order.t(), + direction: InternalApi.Plumber.ListKeysetRequest.Direction.t(), project_id: String.t(), yml_file_path: String.t(), wf_id: String.t(), - created_before: Google.Protobuf.Timestamp.t(), - created_after: Google.Protobuf.Timestamp.t(), - done_before: Google.Protobuf.Timestamp.t(), - done_after: Google.Protobuf.Timestamp.t(), + created_before: Google.Protobuf.Timestamp.t() | nil, + created_after: Google.Protobuf.Timestamp.t() | nil, + done_before: Google.Protobuf.Timestamp.t() | nil, + done_after: Google.Protobuf.Timestamp.t() | nil, label: String.t(), - git_ref_types: [integer], - queue_id: String.t() + git_ref_types: [[InternalApi.Plumber.GitRefType.t()]], + queue_id: String.t(), + pr_head_branch: String.t(), + pr_target_branch: String.t() } + defstruct [ :page_size, :page_token, @@ -427,7 +699,9 @@ defmodule InternalApi.Plumber.ListKeysetRequest do :done_after, :label, :git_ref_types, - :queue_id + :queue_id, + :pr_head_branch, + :pr_target_branch ] field(:page_size, 1, type: :int32) @@ -444,21 +718,8 @@ defmodule InternalApi.Plumber.ListKeysetRequest do field(:label, 12, type: :string) field(:git_ref_types, 13, repeated: true, type: InternalApi.Plumber.GitRefType, enum: true) field(:queue_id, 14, type: :string) -end - -defmodule InternalApi.Plumber.ListKeysetRequest.Order do - @moduledoc false - use Protobuf, enum: true, syntax: :proto3 - - field(:BY_CREATION_TIME_DESC, 0) -end - -defmodule InternalApi.Plumber.ListKeysetRequest.Direction do - @moduledoc false - use Protobuf, enum: true, syntax: :proto3 - - field(:NEXT, 0) - field(:PREVIOUS, 1) + field(:pr_head_branch, 15, type: :string) + field(:pr_target_branch, 16, type: :string) end defmodule InternalApi.Plumber.ListKeysetResponse do @@ -470,6 +731,7 @@ defmodule InternalApi.Plumber.ListKeysetResponse do next_page_token: String.t(), previous_page_token: String.t() } + defstruct [:pipelines, :next_page_token, :previous_page_token] field(:pipelines, 1, repeated: true, type: InternalApi.Plumber.Pipeline) @@ -488,14 +750,17 @@ defmodule InternalApi.Plumber.ListRequest do page_size: integer, yml_file_path: String.t(), wf_id: String.t(), - created_before: Google.Protobuf.Timestamp.t(), - created_after: Google.Protobuf.Timestamp.t(), - done_before: Google.Protobuf.Timestamp.t(), - done_after: Google.Protobuf.Timestamp.t(), + created_before: Google.Protobuf.Timestamp.t() | nil, + created_after: Google.Protobuf.Timestamp.t() | nil, + done_before: Google.Protobuf.Timestamp.t() | nil, + done_after: Google.Protobuf.Timestamp.t() | nil, label: String.t(), - git_ref_types: [integer], - queue_id: String.t() + git_ref_types: [[InternalApi.Plumber.GitRefType.t()]], + queue_id: String.t(), + pr_head_branch: String.t(), + pr_target_branch: String.t() } + defstruct [ :project_id, :branch_name, @@ -509,7 +774,9 @@ defmodule InternalApi.Plumber.ListRequest do :done_after, :label, :git_ref_types, - :queue_id + :queue_id, + :pr_head_branch, + :pr_target_branch ] field(:project_id, 1, type: :string) @@ -525,6 +792,8 @@ defmodule InternalApi.Plumber.ListRequest do field(:label, 11, type: :string) field(:git_ref_types, 12, repeated: true, type: InternalApi.Plumber.GitRefType, enum: true) field(:queue_id, 13, type: :string) + field(:pr_head_branch, 14, type: :string) + field(:pr_target_branch, 15, type: :string) end defmodule InternalApi.Plumber.ListResponse do @@ -532,13 +801,14 @@ defmodule InternalApi.Plumber.ListResponse do use Protobuf, syntax: :proto3 @type t :: %__MODULE__{ - response_status: InternalApi.Plumber.ResponseStatus.t(), + response_status: InternalApi.Plumber.ResponseStatus.t() | nil, pipelines: [InternalApi.Plumber.Pipeline.t()], page_number: integer, page_size: integer, total_entries: integer, total_pages: integer } + defstruct [:response_status, :pipelines, :page_number, :page_size, :total_entries, :total_pages] field(:response_status, 1, type: InternalApi.Plumber.ResponseStatus) @@ -559,8 +829,9 @@ defmodule InternalApi.Plumber.Queue do scope: String.t(), project_id: String.t(), organization_id: String.t(), - type: integer + type: InternalApi.Plumber.QueueType.t() } + defstruct [:queue_id, :name, :scope, :project_id, :organization_id, :type] field(:queue_id, 1, type: :string) @@ -581,15 +852,15 @@ defmodule InternalApi.Plumber.Pipeline do project_id: String.t(), branch_name: String.t(), commit_sha: String.t(), - created_at: Google.Protobuf.Timestamp.t(), - pending_at: Google.Protobuf.Timestamp.t(), - queuing_at: Google.Protobuf.Timestamp.t(), - running_at: Google.Protobuf.Timestamp.t(), - stopping_at: Google.Protobuf.Timestamp.t(), - done_at: Google.Protobuf.Timestamp.t(), - state: integer, - result: integer, - result_reason: integer, + created_at: Google.Protobuf.Timestamp.t() | nil, + pending_at: Google.Protobuf.Timestamp.t() | nil, + queuing_at: Google.Protobuf.Timestamp.t() | nil, + running_at: Google.Protobuf.Timestamp.t() | nil, + stopping_at: Google.Protobuf.Timestamp.t() | nil, + done_at: Google.Protobuf.Timestamp.t() | nil, + state: InternalApi.Plumber.Pipeline.State.t(), + result: InternalApi.Plumber.Pipeline.Result.t(), + result_reason: InternalApi.Plumber.Pipeline.ResultReason.t(), terminate_request: String.t(), hook_id: String.t(), branch_id: String.t(), @@ -600,13 +871,20 @@ defmodule InternalApi.Plumber.Pipeline do terminated_by: String.t(), wf_id: String.t(), snapshot_id: String.t(), - queue: InternalApi.Plumber.Queue.t(), + queue: InternalApi.Plumber.Queue.t() | nil, promotion_of: String.t(), partial_rerun_of: String.t(), commit_message: String.t(), partially_rerun_by: String.t(), - compile_task_id: String.t() + compile_task_id: String.t(), + with_after_task: boolean, + after_task_id: String.t(), + repository_id: String.t(), + env_vars: [InternalApi.Plumber.EnvVariable.t()], + triggerer: InternalApi.Plumber.Triggerer.t() | nil, + organization_id: String.t() } + defstruct [ :ppl_id, :name, @@ -637,7 +915,13 @@ defmodule InternalApi.Plumber.Pipeline do :partial_rerun_of, :commit_message, :partially_rerun_by, - :compile_task_id + :compile_task_id, + :with_after_task, + :after_task_id, + :repository_id, + :env_vars, + :triggerer, + :organization_id ] field(:ppl_id, 1, type: :string) @@ -670,43 +954,54 @@ defmodule InternalApi.Plumber.Pipeline do field(:commit_message, 28, type: :string) field(:partially_rerun_by, 29, type: :string) field(:compile_task_id, 30, type: :string) + field(:with_after_task, 31, type: :bool) + field(:after_task_id, 32, type: :string) + field(:repository_id, 33, type: :string) + field(:env_vars, 34, repeated: true, type: InternalApi.Plumber.EnvVariable) + field(:triggerer, 35, type: InternalApi.Plumber.Triggerer) + field(:organization_id, 36, type: :string) end -defmodule InternalApi.Plumber.Pipeline.State do - @moduledoc false - use Protobuf, enum: true, syntax: :proto3 - - field(:INITIALIZING, 0) - field(:PENDING, 1) - field(:QUEUING, 2) - field(:RUNNING, 3) - field(:STOPPING, 4) - field(:DONE, 5) -end - -defmodule InternalApi.Plumber.Pipeline.Result do +defmodule InternalApi.Plumber.Triggerer do @moduledoc false - use Protobuf, enum: true, syntax: :proto3 + use Protobuf, syntax: :proto3 - field(:PASSED, 0) - field(:STOPPED, 1) - field(:CANCELED, 2) - field(:FAILED, 3) -end + @type t :: %__MODULE__{ + wf_triggered_by: InternalApi.PlumberWF.TriggeredBy.t(), + wf_triggerer_id: String.t(), + wf_triggerer_user_id: String.t(), + wf_triggerer_provider_login: String.t(), + wf_triggerer_provider_uid: String.t(), + wf_triggerer_provider_avatar: String.t(), + ppl_triggered_by: InternalApi.Plumber.TriggeredBy.t(), + ppl_triggerer_id: String.t(), + ppl_triggerer_user_id: String.t(), + workflow_rerun_of: String.t() + } -defmodule InternalApi.Plumber.Pipeline.ResultReason do - @moduledoc false - use Protobuf, enum: true, syntax: :proto3 + defstruct [ + :wf_triggered_by, + :wf_triggerer_id, + :wf_triggerer_user_id, + :wf_triggerer_provider_login, + :wf_triggerer_provider_uid, + :wf_triggerer_provider_avatar, + :ppl_triggered_by, + :ppl_triggerer_id, + :ppl_triggerer_user_id, + :workflow_rerun_of + ] - field(:TEST, 0) - field(:MALFORMED, 1) - field(:STUCK, 2) - field(:USER, 3) - field(:INTERNAL, 4) - field(:STRATEGY, 5) - field(:FAST_FAILING, 6) - field(:DELETED, 7) - field(:TIMEOUT, 8) + field(:wf_triggered_by, 1, type: InternalApi.PlumberWF.TriggeredBy, enum: true) + field(:wf_triggerer_id, 2, type: :string) + field(:wf_triggerer_user_id, 3, type: :string) + field(:wf_triggerer_provider_login, 4, type: :string) + field(:wf_triggerer_provider_uid, 5, type: :string) + field(:wf_triggerer_provider_avatar, 6, type: :string) + field(:ppl_triggered_by, 7, type: InternalApi.Plumber.TriggeredBy, enum: true) + field(:ppl_triggerer_id, 8, type: :string) + field(:ppl_triggerer_user_id, 9, type: :string) + field(:workflow_rerun_of, 10, type: :string) end defmodule InternalApi.Plumber.ListActivityRequest do @@ -716,10 +1011,11 @@ defmodule InternalApi.Plumber.ListActivityRequest do @type t :: %__MODULE__{ page_size: integer, page_token: String.t(), - order: integer, + order: InternalApi.Plumber.ListActivityRequest.Order.t(), organization_id: String.t(), - direction: integer + direction: InternalApi.Plumber.ListActivityRequest.Direction.t() } + defstruct [:page_size, :page_token, :order, :organization_id, :direction] field(:page_size, 1, type: :int32) @@ -729,21 +1025,6 @@ defmodule InternalApi.Plumber.ListActivityRequest do field(:direction, 5, type: InternalApi.Plumber.ListActivityRequest.Direction, enum: true) end -defmodule InternalApi.Plumber.ListActivityRequest.Order do - @moduledoc false - use Protobuf, enum: true, syntax: :proto3 - - field(:BY_CREATION_TIME_DESC, 0) -end - -defmodule InternalApi.Plumber.ListActivityRequest.Direction do - @moduledoc false - use Protobuf, enum: true, syntax: :proto3 - - field(:NEXT, 0) - field(:PREVIOUS, 1) -end - defmodule InternalApi.Plumber.ListActivityResponse do @moduledoc false use Protobuf, syntax: :proto3 @@ -753,6 +1034,7 @@ defmodule InternalApi.Plumber.ListActivityResponse do previous_page_token: String.t(), pipelines: [InternalApi.Plumber.ActivePipeline.t()] } + defstruct [:next_page_token, :previous_page_token, :pipelines] field(:next_page_token, 1, type: :string) @@ -760,6 +1042,81 @@ defmodule InternalApi.Plumber.ListActivityResponse do field(:pipelines, 3, repeated: true, type: InternalApi.Plumber.ActivePipeline) end +defmodule InternalApi.Plumber.ListRequestersRequest do + @moduledoc false + use Protobuf, syntax: :proto3 + + @type t :: %__MODULE__{ + organization_id: String.t(), + page_token: String.t(), + page_size: integer, + requested_at_gt: Google.Protobuf.Timestamp.t() | nil, + requested_at_lte: Google.Protobuf.Timestamp.t() | nil + } + + defstruct [:organization_id, :page_token, :page_size, :requested_at_gt, :requested_at_lte] + + field(:organization_id, 1, type: :string) + field(:page_token, 2, type: :string) + field(:page_size, 3, type: :int32) + field(:requested_at_gt, 4, type: Google.Protobuf.Timestamp) + field(:requested_at_lte, 5, type: Google.Protobuf.Timestamp) +end + +defmodule InternalApi.Plumber.ListRequestersResponse do + @moduledoc false + use Protobuf, syntax: :proto3 + + @type t :: %__MODULE__{ + requesters: [InternalApi.Plumber.Requester.t()], + next_page_token: String.t() + } + + defstruct [:requesters, :next_page_token] + + field(:requesters, 1, repeated: true, type: InternalApi.Plumber.Requester) + field(:next_page_token, 2, type: :string) +end + +defmodule InternalApi.Plumber.Requester do + @moduledoc false + use Protobuf, syntax: :proto3 + + @type t :: %__MODULE__{ + organization_id: String.t(), + project_id: String.t(), + ppl_id: String.t(), + user_id: String.t(), + provider_login: String.t(), + provider_uid: String.t(), + provider: InternalApi.User.RepositoryProvider.Type.t(), + triggerer: InternalApi.PlumberWF.TriggeredBy.t(), + requested_at: Google.Protobuf.Timestamp.t() | nil + } + + defstruct [ + :organization_id, + :project_id, + :ppl_id, + :user_id, + :provider_login, + :provider_uid, + :provider, + :triggerer, + :requested_at + ] + + field(:organization_id, 1, type: :string) + field(:project_id, 2, type: :string) + field(:ppl_id, 3, type: :string) + field(:user_id, 4, type: :string) + field(:provider_login, 5, type: :string) + field(:provider_uid, 6, type: :string) + field(:provider, 7, type: InternalApi.User.RepositoryProvider.Type, enum: true) + field(:triggerer, 8, type: InternalApi.PlumberWF.TriggeredBy, enum: true) + field(:requested_at, 9, type: Google.Protobuf.Timestamp) +end + defmodule InternalApi.Plumber.ActivePipeline do @moduledoc false use Protobuf, syntax: :proto3 @@ -775,7 +1132,7 @@ defmodule InternalApi.Plumber.ActivePipeline do switch_id: String.t(), definition_file: String.t(), priority: non_neg_integer, - wf_triggered_by: integer, + wf_triggered_by: InternalApi.PlumberWF.TriggeredBy.t(), requester_id: String.t(), partial_rerun_of: String.t(), promotion_of: String.t(), @@ -784,18 +1141,20 @@ defmodule InternalApi.Plumber.ActivePipeline do git_ref: String.t(), commit_sha: String.t(), branch_id: String.t(), - created_at: Google.Protobuf.Timestamp.t(), - pending_at: Google.Protobuf.Timestamp.t(), - queuing_at: Google.Protobuf.Timestamp.t(), - running_at: Google.Protobuf.Timestamp.t(), - queue: InternalApi.Plumber.Queue.t(), + created_at: Google.Protobuf.Timestamp.t() | nil, + pending_at: Google.Protobuf.Timestamp.t() | nil, + queuing_at: Google.Protobuf.Timestamp.t() | nil, + running_at: Google.Protobuf.Timestamp.t() | nil, + queue: InternalApi.Plumber.Queue.t() | nil, blocks: [InternalApi.Plumber.BlockDetails.t()], - state: integer, - git_ref_type: integer, + state: InternalApi.Plumber.Pipeline.State.t(), + git_ref_type: InternalApi.Plumber.GitRefType.t(), commit_message: String.t(), commiter_username: String.t(), - commiter_avatar_url: String.t() + commiter_avatar_url: String.t(), + triggerer: InternalApi.Plumber.Triggerer.t() | nil } + defstruct [ :organization_id, :project_id, @@ -826,7 +1185,8 @@ defmodule InternalApi.Plumber.ActivePipeline do :git_ref_type, :commit_message, :commiter_username, - :commiter_avatar_url + :commiter_avatar_url, + :triggerer ] field(:organization_id, 1, type: :string) @@ -859,6 +1219,24 @@ defmodule InternalApi.Plumber.ActivePipeline do field(:commit_message, 28, type: :string) field(:commiter_username, 29, type: :string) field(:commiter_avatar_url, 30, type: :string) + field(:triggerer, 31, type: InternalApi.Plumber.Triggerer) +end + +defmodule InternalApi.Plumber.BlockDetails.JobDetails do + @moduledoc false + use Protobuf, syntax: :proto3 + + @type t :: %__MODULE__{ + name: String.t(), + index: non_neg_integer, + status: String.t() + } + + defstruct [:name, :index, :status] + + field(:name, 1, type: :string) + field(:index, 2, type: :uint32) + field(:status, 3, type: :string) end defmodule InternalApi.Plumber.BlockDetails do @@ -870,12 +1248,13 @@ defmodule InternalApi.Plumber.BlockDetails do name: String.t(), priority: non_neg_integer, dependencies: [String.t()], - state: integer, - result: integer, - result_reason: integer, + state: InternalApi.Plumber.Block.State.t(), + result: InternalApi.Plumber.Block.Result.t(), + result_reason: InternalApi.Plumber.Block.ResultReason.t(), error_description: String.t(), jobs: [InternalApi.Plumber.BlockDetails.JobDetails.t()] } + defstruct [ :block_id, :name, @@ -899,33 +1278,18 @@ defmodule InternalApi.Plumber.BlockDetails do field(:jobs, 9, repeated: true, type: InternalApi.Plumber.BlockDetails.JobDetails) end -defmodule InternalApi.Plumber.BlockDetails.JobDetails do - @moduledoc false - use Protobuf, syntax: :proto3 - - @type t :: %__MODULE__{ - name: String.t(), - index: non_neg_integer, - status: String.t() - } - defstruct [:name, :index, :status] - - field(:name, 1, type: :string) - field(:index, 2, type: :uint32) - field(:status, 3, type: :string) -end - defmodule InternalApi.Plumber.RunNowRequest do @moduledoc false use Protobuf, syntax: :proto3 @type t :: %__MODULE__{ requester_id: String.t(), - type: integer, + type: InternalApi.Plumber.RunNowRequest.Type.t(), ppl_id: String.t(), block_id: String.t(), job_id: String.t() } + defstruct [:requester_id, :type, :ppl_id, :block_id, :job_id] field(:requester_id, 1, type: :string) @@ -935,18 +1299,10 @@ defmodule InternalApi.Plumber.RunNowRequest do field(:job_id, 5, type: :string) end -defmodule InternalApi.Plumber.RunNowRequest.Type do - @moduledoc false - use Protobuf, enum: true, syntax: :proto3 - - field(:PIPELINE, 0) - field(:BLOCK, 1) - field(:JOB, 2) -end - defmodule InternalApi.Plumber.RunNowResponse do @moduledoc false use Protobuf, syntax: :proto3 + @type t :: %__MODULE__{} defstruct [] end @@ -958,6 +1314,7 @@ defmodule InternalApi.Plumber.GetProjectIdRequest do @type t :: %__MODULE__{ ppl_id: String.t() } + defstruct [:ppl_id] field(:ppl_id, 1, type: :string) @@ -968,9 +1325,10 @@ defmodule InternalApi.Plumber.GetProjectIdResponse do use Protobuf, syntax: :proto3 @type t :: %__MODULE__{ - response_status: InternalApi.Plumber.ResponseStatus.t(), + response_status: InternalApi.Plumber.ResponseStatus.t() | nil, project_id: String.t() } + defstruct [:response_status, :project_id] field(:response_status, 1, type: InternalApi.Plumber.ResponseStatus) @@ -985,6 +1343,7 @@ defmodule InternalApi.Plumber.ValidateYamlRequest do yaml_definition: String.t(), ppl_id: String.t() } + defstruct [:yaml_definition, :ppl_id] field(:yaml_definition, 1, type: :string) @@ -996,9 +1355,10 @@ defmodule InternalApi.Plumber.ValidateYamlResponse do use Protobuf, syntax: :proto3 @type t :: %__MODULE__{ - response_status: InternalApi.Plumber.ResponseStatus.t(), + response_status: InternalApi.Plumber.ResponseStatus.t() | nil, ppl_id: String.t() } + defstruct [:response_status, :ppl_id] field(:response_status, 1, type: InternalApi.Plumber.ResponseStatus) @@ -1016,8 +1376,11 @@ defmodule InternalApi.Plumber.ScheduleExtensionRequest do env_variables: [InternalApi.Plumber.EnvVariable.t()], prev_ppl_artefact_ids: [String.t()], promoted_by: String.t(), - auto_promoted: boolean + auto_promoted: boolean, + secret_names: [String.t()], + deployment_target_id: String.t() } + defstruct [ :file_path, :ppl_id, @@ -1025,7 +1388,9 @@ defmodule InternalApi.Plumber.ScheduleExtensionRequest do :env_variables, :prev_ppl_artefact_ids, :promoted_by, - :auto_promoted + :auto_promoted, + :secret_names, + :deployment_target_id ] field(:file_path, 1, type: :string) @@ -1035,6 +1400,8 @@ defmodule InternalApi.Plumber.ScheduleExtensionRequest do field(:prev_ppl_artefact_ids, 6, repeated: true, type: :string) field(:promoted_by, 7, type: :string) field(:auto_promoted, 8, type: :bool) + field(:secret_names, 9, repeated: true, type: :string) + field(:deployment_target_id, 10, type: :string) end defmodule InternalApi.Plumber.EnvVariable do @@ -1045,6 +1412,7 @@ defmodule InternalApi.Plumber.EnvVariable do name: String.t(), value: String.t() } + defstruct [:name, :value] field(:name, 1, type: :string) @@ -1056,9 +1424,10 @@ defmodule InternalApi.Plumber.ScheduleExtensionResponse do use Protobuf, syntax: :proto3 @type t :: %__MODULE__{ - response_status: InternalApi.Plumber.ResponseStatus.t(), + response_status: InternalApi.Plumber.ResponseStatus.t() | nil, ppl_id: String.t() } + defstruct [:response_status, :ppl_id] field(:response_status, 1, type: InternalApi.Plumber.ResponseStatus) @@ -1073,6 +1442,7 @@ defmodule InternalApi.Plumber.DeleteRequest do project_id: String.t(), requester: String.t() } + defstruct [:project_id, :requester] field(:project_id, 1, type: :string) @@ -1084,8 +1454,9 @@ defmodule InternalApi.Plumber.DeleteResponse do use Protobuf, syntax: :proto3 @type t :: %__MODULE__{ - status: InternalApi.Plumber.ResponseStatus.t() + status: InternalApi.Plumber.ResponseStatus.t() | nil } + defstruct [:status] field(:status, 1, type: InternalApi.Plumber.ResponseStatus) @@ -1100,6 +1471,7 @@ defmodule InternalApi.Plumber.PartialRebuildRequest do request_token: String.t(), user_id: String.t() } + defstruct [:ppl_id, :request_token, :user_id] field(:ppl_id, 1, type: :string) @@ -1112,9 +1484,10 @@ defmodule InternalApi.Plumber.PartialRebuildResponse do use Protobuf, syntax: :proto3 @type t :: %__MODULE__{ - response_status: InternalApi.Plumber.ResponseStatus.t(), + response_status: InternalApi.Plumber.ResponseStatus.t() | nil, ppl_id: String.t() } + defstruct [:response_status, :ppl_id] field(:response_status, 1, type: InternalApi.Plumber.ResponseStatus) @@ -1124,6 +1497,7 @@ end defmodule InternalApi.Plumber.VersionRequest do @moduledoc false use Protobuf, syntax: :proto3 + @type t :: %__MODULE__{} defstruct [] end @@ -1135,6 +1509,7 @@ defmodule InternalApi.Plumber.VersionResponse do @type t :: %__MODULE__{ version: String.t() } + defstruct [:version] field(:version, 1, type: :string) @@ -1145,34 +1520,26 @@ defmodule InternalApi.Plumber.ResponseStatus do use Protobuf, syntax: :proto3 @type t :: %__MODULE__{ - code: integer, + code: InternalApi.Plumber.ResponseStatus.ResponseCode.t(), message: String.t() } + defstruct [:code, :message] field(:code, 1, type: InternalApi.Plumber.ResponseStatus.ResponseCode, enum: true) field(:message, 2, type: :string) end -defmodule InternalApi.Plumber.ResponseStatus.ResponseCode do - @moduledoc false - use Protobuf, enum: true, syntax: :proto3 - - field(:OK, 0) - field(:BAD_PARAM, 1) - field(:LIMIT_EXCEEDED, 2) - field(:REFUSED, 3) -end - defmodule InternalApi.Plumber.PipelineEvent do @moduledoc false use Protobuf, syntax: :proto3 @type t :: %__MODULE__{ pipeline_id: String.t(), - state: integer, - timestamp: Google.Protobuf.Timestamp.t() + state: InternalApi.Plumber.Pipeline.State.t(), + timestamp: Google.Protobuf.Timestamp.t() | nil } + defstruct [:pipeline_id, :state, :timestamp] field(:pipeline_id, 1, type: :string) @@ -1187,9 +1554,10 @@ defmodule InternalApi.Plumber.PipelineBlockEvent do @type t :: %__MODULE__{ pipeline_id: String.t(), block_id: String.t(), - state: integer, - timestamp: Google.Protobuf.Timestamp.t() + state: InternalApi.Plumber.Block.State.t(), + timestamp: Google.Protobuf.Timestamp.t() | nil } + defstruct [:pipeline_id, :block_id, :state, :timestamp] field(:pipeline_id, 1, type: :string) @@ -1198,21 +1566,42 @@ defmodule InternalApi.Plumber.PipelineBlockEvent do field(:timestamp, 4, type: Google.Protobuf.Timestamp) end -defmodule InternalApi.Plumber.QueueType do +defmodule InternalApi.Plumber.AfterPipeline do @moduledoc false - use Protobuf, enum: true, syntax: :proto3 + use Protobuf, syntax: :proto3 - field(:IMPLICIT, 0) - field(:USER_GENERATED, 1) + @type t :: %__MODULE__{ + pipeline_id: String.t(), + state: InternalApi.Plumber.AfterPipeline.State.t(), + result: InternalApi.Plumber.AfterPipeline.Result.t(), + result_reason: InternalApi.Plumber.AfterPipeline.ResultReason.t(), + created_at: Google.Protobuf.Timestamp.t() | nil + } + + defstruct [:pipeline_id, :state, :result, :result_reason, :created_at] + + field(:pipeline_id, 1, type: :string) + field(:state, 2, type: InternalApi.Plumber.AfterPipeline.State, enum: true) + field(:result, 3, type: InternalApi.Plumber.AfterPipeline.Result, enum: true) + field(:result_reason, 4, type: InternalApi.Plumber.AfterPipeline.ResultReason, enum: true) + field(:created_at, 5, type: Google.Protobuf.Timestamp) end -defmodule InternalApi.Plumber.GitRefType do +defmodule InternalApi.Plumber.AfterPipelineEvent do @moduledoc false - use Protobuf, enum: true, syntax: :proto3 + use Protobuf, syntax: :proto3 - field(:BRANCH, 0) - field(:TAG, 1) - field(:PR, 2) + @type t :: %__MODULE__{ + pipeline_id: String.t(), + state: InternalApi.Plumber.AfterPipeline.State.t(), + timestamp: Google.Protobuf.Timestamp.t() | nil + } + + defstruct [:pipeline_id, :state, :timestamp] + + field(:pipeline_id, 1, type: :string) + field(:state, 2, type: InternalApi.Plumber.AfterPipeline.State, enum: true) + field(:timestamp, 3, type: Google.Protobuf.Timestamp) end defmodule InternalApi.Plumber.PipelineService.Service do @@ -1220,6 +1609,7 @@ defmodule InternalApi.Plumber.PipelineService.Service do use GRPC.Service, name: "InternalApi.Plumber.PipelineService" rpc(:Schedule, InternalApi.Plumber.ScheduleRequest, InternalApi.Plumber.ScheduleResponse) + rpc(:Describe, InternalApi.Plumber.DescribeRequest, InternalApi.Plumber.DescribeResponse) rpc( @@ -1235,7 +1625,9 @@ defmodule InternalApi.Plumber.PipelineService.Service do ) rpc(:Terminate, InternalApi.Plumber.TerminateRequest, InternalApi.Plumber.TerminateResponse) + rpc(:ListKeyset, InternalApi.Plumber.ListKeysetRequest, InternalApi.Plumber.ListKeysetResponse) + rpc(:List, InternalApi.Plumber.ListRequest, InternalApi.Plumber.ListResponse) rpc( @@ -1252,6 +1644,12 @@ defmodule InternalApi.Plumber.PipelineService.Service do InternalApi.Plumber.ListActivityResponse ) + rpc( + :ListRequesters, + InternalApi.Plumber.ListRequestersRequest, + InternalApi.Plumber.ListRequestersResponse + ) + rpc(:RunNow, InternalApi.Plumber.RunNowRequest, InternalApi.Plumber.RunNowResponse) rpc( diff --git a/badge/lib/internal_api/plumber_w_f.workflow.pb.ex b/badge/lib/internal_api/plumber_w_f.workflow.pb.ex index ff336f6e0..296456974 100644 --- a/badge/lib/internal_api/plumber_w_f.workflow.pb.ex +++ b/badge/lib/internal_api/plumber_w_f.workflow.pb.ex @@ -1,11 +1,156 @@ +defmodule InternalApi.PlumberWF.TriggeredBy do + @moduledoc false + use Protobuf, enum: true, syntax: :proto3 + @type t :: integer | :HOOK | :SCHEDULE | :API | :MANUAL_RUN + + field(:HOOK, 0) + + field(:SCHEDULE, 1) + + field(:API, 2) + + field(:MANUAL_RUN, 3) +end + +defmodule InternalApi.PlumberWF.GitRefType do + @moduledoc false + use Protobuf, enum: true, syntax: :proto3 + @type t :: integer | :BRANCH | :TAG | :PR + + field(:BRANCH, 0) + + field(:TAG, 1) + + field(:PR, 2) +end + +defmodule InternalApi.PlumberWF.ScheduleRequest.ServiceType do + @moduledoc false + use Protobuf, enum: true, syntax: :proto3 + @type t :: integer | :GIT_HUB | :LOCAL | :SNAPSHOT | :BITBUCKET | :GITLAB | :GIT + + field(:GIT_HUB, 0) + + field(:LOCAL, 1) + + field(:SNAPSHOT, 2) + + field(:BITBUCKET, 3) + + field(:GITLAB, 4) + + field(:GIT, 5) +end + +defmodule InternalApi.PlumberWF.ListLatestWorkflowsRequest.Order do + @moduledoc false + use Protobuf, enum: true, syntax: :proto3 + @type t :: integer | :BY_CREATION_TIME_DESC + + field(:BY_CREATION_TIME_DESC, 0) +end + +defmodule InternalApi.PlumberWF.ListLatestWorkflowsRequest.Direction do + @moduledoc false + use Protobuf, enum: true, syntax: :proto3 + @type t :: integer | :NEXT | :PREVIOUS + + field(:NEXT, 0) + + field(:PREVIOUS, 1) +end + +defmodule InternalApi.PlumberWF.ListGroupedKSRequest.Order do + @moduledoc false + use Protobuf, enum: true, syntax: :proto3 + @type t :: integer | :BY_CREATION_TIME_DESC + + field(:BY_CREATION_TIME_DESC, 0) +end + +defmodule InternalApi.PlumberWF.ListGroupedKSRequest.Direction do + @moduledoc false + use Protobuf, enum: true, syntax: :proto3 + @type t :: integer | :NEXT | :PREVIOUS + + field(:NEXT, 0) + + field(:PREVIOUS, 1) +end + +defmodule InternalApi.PlumberWF.ListGroupedRequest.SourceType do + @moduledoc false + use Protobuf, enum: true, syntax: :proto3 + @type t :: integer | :BRANCH | :TAG | :PULL_REQUEST + + field(:BRANCH, 0) + + field(:TAG, 1) + + field(:PULL_REQUEST, 2) +end + +defmodule InternalApi.PlumberWF.ListKeysetRequest.Order do + @moduledoc false + use Protobuf, enum: true, syntax: :proto3 + @type t :: integer | :BY_CREATION_TIME_DESC + + field(:BY_CREATION_TIME_DESC, 0) +end + +defmodule InternalApi.PlumberWF.ListKeysetRequest.Direction do + @moduledoc false + use Protobuf, enum: true, syntax: :proto3 + @type t :: integer | :NEXT | :PREVIOUS + + field(:NEXT, 0) + + field(:PREVIOUS, 1) +end + +defmodule InternalApi.PlumberWF.ScheduleRequest.Repo do + @moduledoc false + use Protobuf, syntax: :proto3 + + @type t :: %__MODULE__{ + owner: String.t(), + repo_name: String.t(), + branch_name: String.t(), + commit_sha: String.t(), + repository_id: String.t() + } + + defstruct [:owner, :repo_name, :branch_name, :commit_sha, :repository_id] + + field(:owner, 1, type: :string) + field(:repo_name, 2, type: :string) + field(:branch_name, 4, type: :string) + field(:commit_sha, 5, type: :string) + field(:repository_id, 6, type: :string) +end + +defmodule InternalApi.PlumberWF.ScheduleRequest.EnvVar do + @moduledoc false + use Protobuf, syntax: :proto3 + + @type t :: %__MODULE__{ + name: String.t(), + value: String.t() + } + + defstruct [:name, :value] + + field(:name, 1, type: :string) + field(:value, 2, type: :string) +end + defmodule InternalApi.PlumberWF.ScheduleRequest do @moduledoc false use Protobuf, syntax: :proto3 @type t :: %__MODULE__{ - service: integer, - repo: InternalApi.PlumberWF.ScheduleRequest.Repo.t(), - auth: InternalApi.PlumberWF.ScheduleRequest.Auth.t(), + service: InternalApi.PlumberWF.ScheduleRequest.ServiceType.t(), + repo: InternalApi.PlumberWF.ScheduleRequest.Repo.t() | nil, project_id: String.t(), branch_id: String.t(), hook_id: String.t(), @@ -15,12 +160,14 @@ defmodule InternalApi.PlumberWF.ScheduleRequest do requester_id: String.t(), organization_id: String.t(), label: String.t(), - triggered_by: integer + triggered_by: InternalApi.PlumberWF.TriggeredBy.t(), + scheduler_task_id: String.t(), + env_vars: [InternalApi.PlumberWF.ScheduleRequest.EnvVar.t()] } + defstruct [ :service, :repo, - :auth, :project_id, :branch_id, :hook_id, @@ -30,12 +177,13 @@ defmodule InternalApi.PlumberWF.ScheduleRequest do :requester_id, :organization_id, :label, - :triggered_by + :triggered_by, + :scheduler_task_id, + :env_vars ] field(:service, 2, type: InternalApi.PlumberWF.ScheduleRequest.ServiceType, enum: true) field(:repo, 3, type: InternalApi.PlumberWF.ScheduleRequest.Repo) - field(:auth, 4, type: InternalApi.PlumberWF.ScheduleRequest.Auth) field(:project_id, 6, type: :string) field(:branch_id, 7, type: :string) field(:hook_id, 8, type: :string) @@ -46,49 +194,8 @@ defmodule InternalApi.PlumberWF.ScheduleRequest do field(:organization_id, 13, type: :string) field(:label, 14, type: :string) field(:triggered_by, 15, type: InternalApi.PlumberWF.TriggeredBy, enum: true) -end - -defmodule InternalApi.PlumberWF.ScheduleRequest.Repo do - @moduledoc false - use Protobuf, syntax: :proto3 - - @type t :: %__MODULE__{ - owner: String.t(), - repo_name: String.t(), - branch_name: String.t(), - commit_sha: String.t() - } - defstruct [:owner, :repo_name, :branch_name, :commit_sha] - - field(:owner, 1, type: :string) - field(:repo_name, 2, type: :string) - field(:branch_name, 4, type: :string) - field(:commit_sha, 5, type: :string) -end - -defmodule InternalApi.PlumberWF.ScheduleRequest.Auth do - @moduledoc false - use Protobuf, syntax: :proto3 - - @type t :: %__MODULE__{ - client_id: String.t(), - client_secret: String.t(), - access_token: String.t() - } - defstruct [:client_id, :client_secret, :access_token] - - field(:client_id, 1, type: :string) - field(:client_secret, 2, type: :string) - field(:access_token, 3, type: :string) -end - -defmodule InternalApi.PlumberWF.ScheduleRequest.ServiceType do - @moduledoc false - use Protobuf, enum: true, syntax: :proto3 - - field(:GIT_HUB, 0) - field(:LOCAL, 1) - field(:SNAPSHOT, 2) + field(:scheduler_task_id, 16, type: :string) + field(:env_vars, 17, repeated: true, type: InternalApi.PlumberWF.ScheduleRequest.EnvVar) end defmodule InternalApi.PlumberWF.ScheduleResponse do @@ -97,9 +204,10 @@ defmodule InternalApi.PlumberWF.ScheduleResponse do @type t :: %__MODULE__{ wf_id: String.t(), - status: InternalApi.Status.t(), + status: InternalApi.Status.t() | nil, ppl_id: String.t() } + defstruct [:wf_id, :status, :ppl_id] field(:wf_id, 2, type: :string) @@ -116,6 +224,7 @@ defmodule InternalApi.PlumberWF.GetPathRequest do first_ppl_id: String.t(), last_ppl_id: String.t() } + defstruct [:wf_id, :first_ppl_id, :last_ppl_id] field(:wf_id, 1, type: :string) @@ -123,24 +232,6 @@ defmodule InternalApi.PlumberWF.GetPathRequest do field(:last_ppl_id, 3, type: :string) end -defmodule InternalApi.PlumberWF.GetPathResponse do - @moduledoc false - use Protobuf, syntax: :proto3 - - @type t :: %__MODULE__{ - wf_id: String.t(), - wf_created_at: Google.Protobuf.Timestamp.t(), - path: [InternalApi.PlumberWF.GetPathResponse.PathElement.t()], - status: InternalApi.Status.t() - } - defstruct [:wf_id, :wf_created_at, :path, :status] - - field(:wf_id, 2, type: :string) - field(:wf_created_at, 3, type: Google.Protobuf.Timestamp) - field(:path, 4, repeated: true, type: InternalApi.PlumberWF.GetPathResponse.PathElement) - field(:status, 5, type: InternalApi.Status) -end - defmodule InternalApi.PlumberWF.GetPathResponse.PathElement do @moduledoc false use Protobuf, syntax: :proto3 @@ -150,6 +241,7 @@ defmodule InternalApi.PlumberWF.GetPathResponse.PathElement do switch_id: String.t(), rebuild_partition: [String.t()] } + defstruct [:ppl_id, :switch_id, :rebuild_partition] field(:ppl_id, 1, type: :string) @@ -157,19 +249,39 @@ defmodule InternalApi.PlumberWF.GetPathResponse.PathElement do field(:rebuild_partition, 3, repeated: true, type: :string) end +defmodule InternalApi.PlumberWF.GetPathResponse do + @moduledoc false + use Protobuf, syntax: :proto3 + + @type t :: %__MODULE__{ + wf_id: String.t(), + wf_created_at: Google.Protobuf.Timestamp.t() | nil, + path: [InternalApi.PlumberWF.GetPathResponse.PathElement.t()], + status: InternalApi.Status.t() | nil + } + + defstruct [:wf_id, :wf_created_at, :path, :status] + + field(:wf_id, 2, type: :string) + field(:wf_created_at, 3, type: Google.Protobuf.Timestamp) + field(:path, 4, repeated: true, type: InternalApi.PlumberWF.GetPathResponse.PathElement) + field(:status, 5, type: InternalApi.Status) +end + defmodule InternalApi.PlumberWF.ListLatestWorkflowsRequest do @moduledoc false use Protobuf, syntax: :proto3 @type t :: %__MODULE__{ - order: integer, + order: InternalApi.PlumberWF.ListLatestWorkflowsRequest.Order.t(), page_size: integer, page_token: String.t(), - direction: integer, + direction: InternalApi.PlumberWF.ListLatestWorkflowsRequest.Direction.t(), project_id: String.t(), requester_id: String.t(), - git_ref_types: [integer] + git_ref_types: [[InternalApi.PlumberWF.GitRefType.t()]] } + defstruct [ :order, :page_size, @@ -194,21 +306,6 @@ defmodule InternalApi.PlumberWF.ListLatestWorkflowsRequest do field(:git_ref_types, 7, repeated: true, type: InternalApi.PlumberWF.GitRefType, enum: true) end -defmodule InternalApi.PlumberWF.ListLatestWorkflowsRequest.Order do - @moduledoc false - use Protobuf, enum: true, syntax: :proto3 - - field(:BY_CREATION_TIME_DESC, 0) -end - -defmodule InternalApi.PlumberWF.ListLatestWorkflowsRequest.Direction do - @moduledoc false - use Protobuf, enum: true, syntax: :proto3 - - field(:NEXT, 0) - field(:PREVIOUS, 1) -end - defmodule InternalApi.PlumberWF.ListLatestWorkflowsResponse do @moduledoc false use Protobuf, syntax: :proto3 @@ -218,6 +315,7 @@ defmodule InternalApi.PlumberWF.ListLatestWorkflowsResponse do next_page_token: String.t(), previous_page_token: String.t() } + defstruct [:workflows, :next_page_token, :previous_page_token] field(:workflows, 1, repeated: true, type: InternalApi.PlumberWF.WorkflowDetails) @@ -230,14 +328,15 @@ defmodule InternalApi.PlumberWF.ListGroupedKSRequest do use Protobuf, syntax: :proto3 @type t :: %__MODULE__{ - order: integer, + order: InternalApi.PlumberWF.ListGroupedKSRequest.Order.t(), page_size: integer, page_token: String.t(), - direction: integer, + direction: InternalApi.PlumberWF.ListGroupedKSRequest.Direction.t(), project_id: String.t(), requester_id: String.t(), - git_ref_types: [integer] + git_ref_types: [[InternalApi.PlumberWF.GitRefType.t()]] } + defstruct [ :order, :page_size, @@ -257,21 +356,6 @@ defmodule InternalApi.PlumberWF.ListGroupedKSRequest do field(:git_ref_types, 7, repeated: true, type: InternalApi.PlumberWF.GitRefType, enum: true) end -defmodule InternalApi.PlumberWF.ListGroupedKSRequest.Order do - @moduledoc false - use Protobuf, enum: true, syntax: :proto3 - - field(:BY_CREATION_TIME_DESC, 0) -end - -defmodule InternalApi.PlumberWF.ListGroupedKSRequest.Direction do - @moduledoc false - use Protobuf, enum: true, syntax: :proto3 - - field(:NEXT, 0) - field(:PREVIOUS, 1) -end - defmodule InternalApi.PlumberWF.ListGroupedKSResponse do @moduledoc false use Protobuf, syntax: :proto3 @@ -281,6 +365,7 @@ defmodule InternalApi.PlumberWF.ListGroupedKSResponse do next_page_token: String.t(), previous_page_token: String.t() } + defstruct [:workflows, :next_page_token, :previous_page_token] field(:workflows, 1, repeated: true, type: InternalApi.PlumberWF.WorkflowDetails) @@ -296,9 +381,10 @@ defmodule InternalApi.PlumberWF.ListGroupedRequest do page: integer, page_size: integer, project_id: String.t(), - grouped_by: integer, - git_ref_types: [integer] + grouped_by: InternalApi.PlumberWF.ListGroupedRequest.SourceType.t(), + git_ref_types: [[InternalApi.PlumberWF.GitRefType.t()]] } + defstruct [:page, :page_size, :project_id, :grouped_by, :git_ref_types] field(:page, 1, type: :int32) @@ -308,27 +394,19 @@ defmodule InternalApi.PlumberWF.ListGroupedRequest do field(:git_ref_types, 5, repeated: true, type: InternalApi.PlumberWF.GitRefType, enum: true) end -defmodule InternalApi.PlumberWF.ListGroupedRequest.SourceType do - @moduledoc false - use Protobuf, enum: true, syntax: :proto3 - - field(:BRANCH, 0) - field(:TAG, 1) - field(:PULL_REQUEST, 2) -end - defmodule InternalApi.PlumberWF.ListGroupedResponse do @moduledoc false use Protobuf, syntax: :proto3 @type t :: %__MODULE__{ - status: InternalApi.Status.t(), + status: InternalApi.Status.t() | nil, workflows: [InternalApi.PlumberWF.WorkflowDetails.t()], page_number: integer, page_size: integer, total_entries: integer, total_pages: integer } + defstruct [:status, :workflows, :page_number, :page_size, :total_entries, :total_pages] field(:status, 1, type: InternalApi.Status) @@ -351,11 +429,12 @@ defmodule InternalApi.PlumberWF.ListRequest do requester_id: String.t(), organization_id: String.t(), project_ids: [String.t()], - created_before: Google.Protobuf.Timestamp.t(), - created_after: Google.Protobuf.Timestamp.t(), + created_before: Google.Protobuf.Timestamp.t() | nil, + created_after: Google.Protobuf.Timestamp.t() | nil, label: String.t(), - git_ref_types: [integer] + git_ref_types: [[InternalApi.PlumberWF.GitRefType.t()]] } + defstruct [ :page, :page_size, @@ -388,13 +467,14 @@ defmodule InternalApi.PlumberWF.ListResponse do use Protobuf, syntax: :proto3 @type t :: %__MODULE__{ - status: InternalApi.Status.t(), + status: InternalApi.Status.t() | nil, workflows: [InternalApi.PlumberWF.WorkflowDetails.t()], page_number: integer, page_size: integer, total_entries: integer, total_pages: integer } + defstruct [:status, :workflows, :page_number, :page_size, :total_entries, :total_pages] field(:status, 1, type: InternalApi.Status) @@ -412,20 +492,21 @@ defmodule InternalApi.PlumberWF.ListKeysetRequest do @type t :: %__MODULE__{ page_size: integer, page_token: String.t(), - order: integer, + order: InternalApi.PlumberWF.ListKeysetRequest.Order.t(), organization_id: String.t(), project_id: String.t(), requester_id: String.t(), project_ids: [String.t()], - created_before: Google.Protobuf.Timestamp.t(), - created_after: Google.Protobuf.Timestamp.t(), + created_before: Google.Protobuf.Timestamp.t() | nil, + created_after: Google.Protobuf.Timestamp.t() | nil, label: String.t(), - git_ref_types: [integer], - direction: integer, - triggerers: [integer], + git_ref_types: [[InternalApi.PlumberWF.GitRefType.t()]], + direction: InternalApi.PlumberWF.ListKeysetRequest.Direction.t(), + triggerers: [[InternalApi.PlumberWF.TriggeredBy.t()]], branch_name: String.t(), requester_ids: [String.t()] } + defstruct [ :page_size, :page_token, @@ -461,31 +542,17 @@ defmodule InternalApi.PlumberWF.ListKeysetRequest do field(:requester_ids, 15, repeated: true, type: :string) end -defmodule InternalApi.PlumberWF.ListKeysetRequest.Order do - @moduledoc false - use Protobuf, enum: true, syntax: :proto3 - - field(:BY_CREATION_TIME_DESC, 0) -end - -defmodule InternalApi.PlumberWF.ListKeysetRequest.Direction do - @moduledoc false - use Protobuf, enum: true, syntax: :proto3 - - field(:NEXT, 0) - field(:PREVIOUS, 1) -end - defmodule InternalApi.PlumberWF.ListKeysetResponse do @moduledoc false use Protobuf, syntax: :proto3 @type t :: %__MODULE__{ - status: InternalApi.Status.t(), + status: InternalApi.Status.t() | nil, workflows: [InternalApi.PlumberWF.WorkflowDetails.t()], next_page_token: String.t(), previous_page_token: String.t() } + defstruct [:status, :workflows, :next_page_token, :previous_page_token] field(:status, 1, type: InternalApi.Status) @@ -507,10 +574,13 @@ defmodule InternalApi.PlumberWF.WorkflowDetails do branch_id: String.t(), branch_name: String.t(), commit_sha: String.t(), - created_at: Google.Protobuf.Timestamp.t(), - triggered_by: integer, - rerun_of: String.t() + created_at: Google.Protobuf.Timestamp.t() | nil, + triggered_by: InternalApi.PlumberWF.TriggeredBy.t(), + rerun_of: String.t(), + repository_id: String.t(), + organization_id: String.t() } + defstruct [ :wf_id, :initial_ppl_id, @@ -522,7 +592,9 @@ defmodule InternalApi.PlumberWF.WorkflowDetails do :commit_sha, :created_at, :triggered_by, - :rerun_of + :rerun_of, + :repository_id, + :organization_id ] field(:wf_id, 1, type: :string) @@ -536,6 +608,8 @@ defmodule InternalApi.PlumberWF.WorkflowDetails do field(:created_at, 9, type: Google.Protobuf.Timestamp) field(:triggered_by, 10, type: InternalApi.PlumberWF.TriggeredBy, enum: true) field(:rerun_of, 11, type: :string) + field(:repository_id, 12, type: :string) + field(:organization_id, 13, type: :string) end defmodule InternalApi.PlumberWF.DescribeRequest do @@ -545,6 +619,7 @@ defmodule InternalApi.PlumberWF.DescribeRequest do @type t :: %__MODULE__{ wf_id: String.t() } + defstruct [:wf_id] field(:wf_id, 1, type: :string) @@ -555,15 +630,44 @@ defmodule InternalApi.PlumberWF.DescribeResponse do use Protobuf, syntax: :proto3 @type t :: %__MODULE__{ - status: InternalApi.Status.t(), - workflow: InternalApi.PlumberWF.WorkflowDetails.t() + status: InternalApi.Status.t() | nil, + workflow: InternalApi.PlumberWF.WorkflowDetails.t() | nil } + defstruct [:status, :workflow] field(:status, 1, type: InternalApi.Status) field(:workflow, 2, type: InternalApi.PlumberWF.WorkflowDetails) end +defmodule InternalApi.PlumberWF.DescribeManyRequest do + @moduledoc false + use Protobuf, syntax: :proto3 + + @type t :: %__MODULE__{ + wf_ids: [String.t()] + } + + defstruct [:wf_ids] + + field(:wf_ids, 1, repeated: true, type: :string) +end + +defmodule InternalApi.PlumberWF.DescribeManyResponse do + @moduledoc false + use Protobuf, syntax: :proto3 + + @type t :: %__MODULE__{ + status: InternalApi.Status.t() | nil, + workflows: [InternalApi.PlumberWF.WorkflowDetails.t()] + } + + defstruct [:status, :workflows] + + field(:status, 1, type: InternalApi.Status) + field(:workflows, 2, repeated: true, type: InternalApi.PlumberWF.WorkflowDetails) +end + defmodule InternalApi.PlumberWF.TerminateRequest do @moduledoc false use Protobuf, syntax: :proto3 @@ -572,6 +676,7 @@ defmodule InternalApi.PlumberWF.TerminateRequest do requester_id: String.t(), wf_id: String.t() } + defstruct [:requester_id, :wf_id] field(:requester_id, 2, type: :string) @@ -583,8 +688,9 @@ defmodule InternalApi.PlumberWF.TerminateResponse do use Protobuf, syntax: :proto3 @type t :: %__MODULE__{ - status: InternalApi.Status.t() + status: InternalApi.Status.t() | nil } + defstruct [:status] field(:status, 2, type: InternalApi.Status) @@ -599,6 +705,7 @@ defmodule InternalApi.PlumberWF.ListLabelsRequest do page_size: integer, project_id: String.t() } + defstruct [:page, :page_size, :project_id] field(:page, 1, type: :int32) @@ -611,13 +718,14 @@ defmodule InternalApi.PlumberWF.ListLabelsResponse do use Protobuf, syntax: :proto3 @type t :: %__MODULE__{ - status: InternalApi.Status.t(), + status: InternalApi.Status.t() | nil, labels: [String.t()], page_number: integer, page_size: integer, total_entries: integer, total_pages: integer } + defstruct [:status, :labels, :page_number, :page_size, :total_entries, :total_pages] field(:status, 1, type: InternalApi.Status) @@ -637,6 +745,7 @@ defmodule InternalApi.PlumberWF.RescheduleRequest do requester_id: String.t(), request_token: String.t() } + defstruct [:wf_id, :requester_id, :request_token] field(:wf_id, 1, type: :string) @@ -651,6 +760,7 @@ defmodule InternalApi.PlumberWF.GetProjectIdRequest do @type t :: %__MODULE__{ wf_id: String.t() } + defstruct [:wf_id] field(:wf_id, 1, type: :string) @@ -661,9 +771,10 @@ defmodule InternalApi.PlumberWF.GetProjectIdResponse do use Protobuf, syntax: :proto3 @type t :: %__MODULE__{ - status: InternalApi.Status.t(), + status: InternalApi.Status.t() | nil, project_id: String.t() } + defstruct [:status, :project_id] field(:status, 1, type: InternalApi.Status) @@ -682,6 +793,7 @@ defmodule InternalApi.PlumberWF.CreateRequest do definition_file: String.t(), requester_id: String.t() } + defstruct [:project_id, :label, :hook_id, :request_token, :definition_file, :requester_id] field(:project_id, 1, type: :string) @@ -698,9 +810,10 @@ defmodule InternalApi.PlumberWF.CreateResponse do @type t :: %__MODULE__{ wf_id: String.t(), - status: InternalApi.Status.t(), + status: InternalApi.Status.t() | nil, ppl_id: String.t() } + defstruct [:wf_id, :status, :ppl_id] field(:wf_id, 1, type: :string) @@ -708,30 +821,14 @@ defmodule InternalApi.PlumberWF.CreateResponse do field(:ppl_id, 3, type: :string) end -defmodule InternalApi.PlumberWF.TriggeredBy do - @moduledoc false - use Protobuf, enum: true, syntax: :proto3 - - field(:HOOK, 0) - field(:SCHEDULE, 1) - field(:API, 2) -end - -defmodule InternalApi.PlumberWF.GitRefType do - @moduledoc false - use Protobuf, enum: true, syntax: :proto3 - - field(:BRANCH, 0) - field(:TAG, 1) - field(:PR, 2) -end - defmodule InternalApi.PlumberWF.WorkflowService.Service do @moduledoc false use GRPC.Service, name: "InternalApi.PlumberWF.WorkflowService" rpc(:Schedule, InternalApi.PlumberWF.ScheduleRequest, InternalApi.PlumberWF.ScheduleResponse) + rpc(:GetPath, InternalApi.PlumberWF.GetPathRequest, InternalApi.PlumberWF.GetPathResponse) + rpc(:List, InternalApi.PlumberWF.ListRequest, InternalApi.PlumberWF.ListResponse) rpc( @@ -759,6 +856,13 @@ defmodule InternalApi.PlumberWF.WorkflowService.Service do ) rpc(:Describe, InternalApi.PlumberWF.DescribeRequest, InternalApi.PlumberWF.DescribeResponse) + + rpc( + :DescribeMany, + InternalApi.PlumberWF.DescribeManyRequest, + InternalApi.PlumberWF.DescribeManyResponse + ) + rpc(:Terminate, InternalApi.PlumberWF.TerminateRequest, InternalApi.PlumberWF.TerminateResponse) rpc( diff --git a/badge/lib/internal_api/projecthub.pb.ex b/badge/lib/internal_api/projecthub.pb.ex index 138be35c2..1462fa04d 100644 --- a/badge/lib/internal_api/projecthub.pb.ex +++ b/badge/lib/internal_api/projecthub.pb.ex @@ -1,3 +1,132 @@ +defmodule InternalApi.Projecthub.ResponseMeta.Code do + @moduledoc false + use Protobuf, enum: true, syntax: :proto3 + @type t :: integer | :OK | :NOT_FOUND | :FAILED_PRECONDITION + + field(:OK, 0) + + field(:NOT_FOUND, 2) + + field(:FAILED_PRECONDITION, 3) +end + +defmodule InternalApi.Projecthub.Project.Spec.Visibility do + @moduledoc false + use Protobuf, enum: true, syntax: :proto3 + @type t :: integer | :PRIVATE | :PUBLIC + + field(:PRIVATE, 0) + + field(:PUBLIC, 1) +end + +defmodule InternalApi.Projecthub.Project.Spec.PermissionType do + @moduledoc false + use Protobuf, enum: true, syntax: :proto3 + + @type t :: + integer + | :EMPTY + | :DEFAULT_BRANCH + | :NON_DEFAULT_BRANCH + | :PULL_REQUEST + | :FORKED_PULL_REQUEST + | :TAG + + field(:EMPTY, 0) + + field(:DEFAULT_BRANCH, 1) + + field(:NON_DEFAULT_BRANCH, 2) + + field(:PULL_REQUEST, 3) + + field(:FORKED_PULL_REQUEST, 4) + + field(:TAG, 5) +end + +defmodule InternalApi.Projecthub.Project.Spec.Repository.RunType do + @moduledoc false + use Protobuf, enum: true, syntax: :proto3 + + @type t :: + integer + | :BRANCHES + | :TAGS + | :PULL_REQUESTS + | :FORKED_PULL_REQUESTS + | :DRAFT_PULL_REQUESTS + + field(:BRANCHES, 0) + + field(:TAGS, 1) + + field(:PULL_REQUESTS, 2) + + field(:FORKED_PULL_REQUESTS, 3) + + field(:DRAFT_PULL_REQUESTS, 4) +end + +defmodule InternalApi.Projecthub.Project.Spec.Repository.Status.PipelineFile.Level do + @moduledoc false + use Protobuf, enum: true, syntax: :proto3 + @type t :: integer | :BLOCK | :PIPELINE + + field(:BLOCK, 0) + + field(:PIPELINE, 1) +end + +defmodule InternalApi.Projecthub.Project.Spec.Scheduler.Status do + @moduledoc false + use Protobuf, enum: true, syntax: :proto3 + @type t :: integer | :STATUS_UNSPECIFIED | :STATUS_INACTIVE | :STATUS_ACTIVE + + field(:STATUS_UNSPECIFIED, 0) + + field(:STATUS_INACTIVE, 1) + + field(:STATUS_ACTIVE, 2) +end + +defmodule InternalApi.Projecthub.Project.Spec.Task.Status do + @moduledoc false + use Protobuf, enum: true, syntax: :proto3 + @type t :: integer | :STATUS_UNSPECIFIED | :STATUS_INACTIVE | :STATUS_ACTIVE + + field(:STATUS_UNSPECIFIED, 0) + + field(:STATUS_INACTIVE, 1) + + field(:STATUS_ACTIVE, 2) +end + +defmodule InternalApi.Projecthub.Project.Status.State do + @moduledoc false + use Protobuf, enum: true, syntax: :proto3 + @type t :: integer | :INITIALIZING | :READY | :ERROR | :ONBOARDING + + field(:INITIALIZING, 0) + + field(:READY, 1) + + field(:ERROR, 2) + + field(:ONBOARDING, 3) +end + +defmodule InternalApi.Projecthub.ListKeysetRequest.Direction do + @moduledoc false + use Protobuf, enum: true, syntax: :proto3 + @type t :: integer | :NEXT | :PREVIOUS + + field(:NEXT, 0) + + field(:PREVIOUS, 1) +end + defmodule InternalApi.Projecthub.RequestMeta do @moduledoc false use Protobuf, syntax: :proto3 @@ -9,6 +138,7 @@ defmodule InternalApi.Projecthub.RequestMeta do org_id: String.t(), user_id: String.t() } + defstruct [:api_version, :kind, :req_id, :org_id, :user_id] field(:api_version, 1, type: :string) @@ -18,6 +148,21 @@ defmodule InternalApi.Projecthub.RequestMeta do field(:user_id, 5, type: :string) end +defmodule InternalApi.Projecthub.ResponseMeta.Status do + @moduledoc false + use Protobuf, syntax: :proto3 + + @type t :: %__MODULE__{ + code: InternalApi.Projecthub.ResponseMeta.Code.t(), + message: String.t() + } + + defstruct [:code, :message] + + field(:code, 1, type: InternalApi.Projecthub.ResponseMeta.Code, enum: true) + field(:message, 2, type: :string) +end + defmodule InternalApi.Projecthub.ResponseMeta do @moduledoc false use Protobuf, syntax: :proto3 @@ -28,8 +173,9 @@ defmodule InternalApi.Projecthub.ResponseMeta do req_id: String.t(), org_id: String.t(), user_id: String.t(), - status: InternalApi.Projecthub.ResponseMeta.Status.t() + status: InternalApi.Projecthub.ResponseMeta.Status.t() | nil } + defstruct [:api_version, :kind, :req_id, :org_id, :user_id, :status] field(:api_version, 1, type: :string) @@ -40,29 +186,6 @@ defmodule InternalApi.Projecthub.ResponseMeta do field(:status, 6, type: InternalApi.Projecthub.ResponseMeta.Status) end -defmodule InternalApi.Projecthub.ResponseMeta.Status do - @moduledoc false - use Protobuf, syntax: :proto3 - - @type t :: %__MODULE__{ - code: integer, - message: String.t() - } - defstruct [:code, :message] - - field(:code, 1, type: InternalApi.Projecthub.ResponseMeta.Code, enum: true) - field(:message, 2, type: :string) -end - -defmodule InternalApi.Projecthub.ResponseMeta.Code do - @moduledoc false - use Protobuf, enum: true, syntax: :proto3 - - field(:OK, 0) - field(:NOT_FOUND, 2) - field(:FAILED_PRECONDITION, 3) -end - defmodule InternalApi.Projecthub.PaginationRequest do @moduledoc false use Protobuf, syntax: :proto3 @@ -71,6 +194,7 @@ defmodule InternalApi.Projecthub.PaginationRequest do page: integer, page_size: integer } + defstruct [:page, :page_size] field(:page, 1, type: :int32) @@ -87,6 +211,7 @@ defmodule InternalApi.Projecthub.PaginationResponse do total_entries: integer, total_pages: integer } + defstruct [:page_number, :page_size, :total_entries, :total_pages] field(:page_number, 1, type: :int32) @@ -95,22 +220,6 @@ defmodule InternalApi.Projecthub.PaginationResponse do field(:total_pages, 4, type: :int32) end -defmodule InternalApi.Projecthub.Project do - @moduledoc false - use Protobuf, syntax: :proto3 - - @type t :: %__MODULE__{ - metadata: InternalApi.Projecthub.Project.Metadata.t(), - spec: InternalApi.Projecthub.Project.Spec.t(), - status: InternalApi.Projecthub.Project.Status.t() - } - defstruct [:metadata, :spec, :status] - - field(:metadata, 1, type: InternalApi.Projecthub.Project.Metadata) - field(:spec, 2, type: InternalApi.Projecthub.Project.Spec) - field(:status, 3, type: InternalApi.Projecthub.Project.Status) -end - defmodule InternalApi.Projecthub.Project.Metadata do @moduledoc false use Protobuf, syntax: :proto3 @@ -121,8 +230,9 @@ defmodule InternalApi.Projecthub.Project.Metadata do owner_id: String.t(), org_id: String.t(), description: String.t(), - created_at: Google.Protobuf.Timestamp.t() + created_at: Google.Protobuf.Timestamp.t() | nil } + defstruct [:name, :id, :owner_id, :org_id, :description, :created_at] field(:name, 1, type: :string) @@ -133,48 +243,71 @@ defmodule InternalApi.Projecthub.Project.Metadata do field(:created_at, 6, type: Google.Protobuf.Timestamp) end -defmodule InternalApi.Projecthub.Project.Spec do +defmodule InternalApi.Projecthub.Project.Spec.Repository.ForkedPullRequests do @moduledoc false use Protobuf, syntax: :proto3 @type t :: %__MODULE__{ - repository: InternalApi.Projecthub.Project.Spec.Repository.t(), - schedulers: [InternalApi.Projecthub.Project.Spec.Scheduler.t()], - private: boolean, - public: boolean, - visibility: integer, - debug_permissions: [integer], - attach_permissions: [integer] + allowed_secrets: [String.t()], + allowed_contributors: [String.t()] } - defstruct [ - :repository, - :schedulers, - :private, - :public, - :visibility, - :debug_permissions, - :attach_permissions - ] - field(:repository, 1, type: InternalApi.Projecthub.Project.Spec.Repository) - field(:schedulers, 2, repeated: true, type: InternalApi.Projecthub.Project.Spec.Scheduler) - field(:private, 3, type: :bool) - field(:public, 4, type: :bool) - field(:visibility, 5, type: InternalApi.Projecthub.Project.Spec.Visibility, enum: true) + defstruct [:allowed_secrets, :allowed_contributors] - field(:debug_permissions, 6, - repeated: true, - type: InternalApi.Projecthub.Project.Spec.PermissionType, + field(:allowed_secrets, 1, repeated: true, type: :string) + field(:allowed_contributors, 2, repeated: true, type: :string) +end + +defmodule InternalApi.Projecthub.Project.Spec.Repository.Status.PipelineFile do + @moduledoc false + use Protobuf, syntax: :proto3 + + @type t :: %__MODULE__{ + path: String.t(), + level: InternalApi.Projecthub.Project.Spec.Repository.Status.PipelineFile.Level.t() + } + + defstruct [:path, :level] + + field(:path, 1, type: :string) + + field(:level, 2, + type: InternalApi.Projecthub.Project.Spec.Repository.Status.PipelineFile.Level, enum: true ) +end - field(:attach_permissions, 7, +defmodule InternalApi.Projecthub.Project.Spec.Repository.Status do + @moduledoc false + use Protobuf, syntax: :proto3 + + @type t :: %__MODULE__{ + pipeline_files: [InternalApi.Projecthub.Project.Spec.Repository.Status.PipelineFile.t()] + } + + defstruct [:pipeline_files] + + field(:pipeline_files, 1, repeated: true, - type: InternalApi.Projecthub.Project.Spec.PermissionType, - enum: true + type: InternalApi.Projecthub.Project.Spec.Repository.Status.PipelineFile ) end +defmodule InternalApi.Projecthub.Project.Spec.Repository.Whitelist do + @moduledoc false + use Protobuf, syntax: :proto3 + + @type t :: %__MODULE__{ + branches: [String.t()], + tags: [String.t()] + } + + defstruct [:branches, :tags] + + field(:branches, 1, repeated: true, type: :string) + field(:tags, 2, repeated: true, type: :string) +end + defmodule InternalApi.Projecthub.Project.Spec.Repository do @moduledoc false use Protobuf, syntax: :proto3 @@ -184,16 +317,19 @@ defmodule InternalApi.Projecthub.Project.Spec.Repository do url: String.t(), name: String.t(), owner: String.t(), - run_on: [integer], + run_on: [[InternalApi.Projecthub.Project.Spec.Repository.RunType.t()]], forked_pull_requests: - InternalApi.Projecthub.Project.Spec.Repository.ForkedPullRequests.t(), + InternalApi.Projecthub.Project.Spec.Repository.ForkedPullRequests.t() | nil, pipeline_file: String.t(), - status: InternalApi.Projecthub.Project.Spec.Repository.Status.t(), - whitelist: InternalApi.Projecthub.Project.Spec.Repository.Whitelist.t(), + status: InternalApi.Projecthub.Project.Spec.Repository.Status.t() | nil, + whitelist: InternalApi.Projecthub.Project.Spec.Repository.Whitelist.t() | nil, public: boolean, - integration_type: integer, - connected: boolean + integration_type: InternalApi.RepositoryIntegrator.IntegrationType.t(), + connected: boolean, + id: String.t(), + default_branch: String.t() } + defstruct [ :run_present, :url, @@ -206,7 +342,9 @@ defmodule InternalApi.Projecthub.Project.Spec.Repository do :whitelist, :public, :integration_type, - :connected + :connected, + :id, + :default_branch ] oneof(:run_present, 0) @@ -231,88 +369,55 @@ defmodule InternalApi.Projecthub.Project.Spec.Repository do field(:public, 10, type: :bool) field(:integration_type, 11, type: InternalApi.RepositoryIntegrator.IntegrationType, enum: true) field(:connected, 12, type: :bool) + field(:id, 13, type: :string) + field(:default_branch, 14, type: :string) end -defmodule InternalApi.Projecthub.Project.Spec.Repository.ForkedPullRequests do - @moduledoc false - use Protobuf, syntax: :proto3 - - @type t :: %__MODULE__{ - allowed_secrets: [String.t()], - allowed_contributors: [String.t()] - } - defstruct [:allowed_secrets, :allowed_contributors] - - field(:allowed_secrets, 1, repeated: true, type: :string) - field(:allowed_contributors, 2, repeated: true, type: :string) -end - -defmodule InternalApi.Projecthub.Project.Spec.Repository.Status do - @moduledoc false - use Protobuf, syntax: :proto3 - - @type t :: %__MODULE__{ - pipeline_files: [InternalApi.Projecthub.Project.Spec.Repository.Status.PipelineFile.t()] - } - defstruct [:pipeline_files] - - field(:pipeline_files, 1, - repeated: true, - type: InternalApi.Projecthub.Project.Spec.Repository.Status.PipelineFile - ) -end - -defmodule InternalApi.Projecthub.Project.Spec.Repository.Status.PipelineFile do +defmodule InternalApi.Projecthub.Project.Spec.Scheduler do @moduledoc false use Protobuf, syntax: :proto3 @type t :: %__MODULE__{ - path: String.t(), - level: integer + id: String.t(), + name: String.t(), + branch: String.t(), + at: String.t(), + pipeline_file: String.t(), + status: InternalApi.Projecthub.Project.Spec.Scheduler.Status.t() } - defstruct [:path, :level] - - field(:path, 1, type: :string) - - field(:level, 2, - type: InternalApi.Projecthub.Project.Spec.Repository.Status.PipelineFile.Level, - enum: true - ) -end -defmodule InternalApi.Projecthub.Project.Spec.Repository.Status.PipelineFile.Level do - @moduledoc false - use Protobuf, enum: true, syntax: :proto3 + defstruct [:id, :name, :branch, :at, :pipeline_file, :status] - field(:BLOCK, 0) - field(:PIPELINE, 1) + field(:id, 1, type: :string) + field(:name, 2, type: :string) + field(:branch, 3, type: :string) + field(:at, 4, type: :string) + field(:pipeline_file, 5, type: :string) + field(:status, 6, type: InternalApi.Projecthub.Project.Spec.Scheduler.Status, enum: true) end -defmodule InternalApi.Projecthub.Project.Spec.Repository.Whitelist do +defmodule InternalApi.Projecthub.Project.Spec.Task.Parameter do @moduledoc false use Protobuf, syntax: :proto3 @type t :: %__MODULE__{ - branches: [String.t()], - tags: [String.t()] + name: String.t(), + required: boolean, + description: String.t(), + default_value: String.t(), + options: [String.t()] } - defstruct [:branches, :tags] - field(:branches, 1, repeated: true, type: :string) - field(:tags, 2, repeated: true, type: :string) -end + defstruct [:name, :required, :description, :default_value, :options] -defmodule InternalApi.Projecthub.Project.Spec.Repository.RunType do - @moduledoc false - use Protobuf, enum: true, syntax: :proto3 - - field(:BRANCHES, 0) - field(:TAGS, 1) - field(:PULL_REQUESTS, 2) - field(:FORKED_PULL_REQUESTS, 3) + field(:name, 1, type: :string) + field(:required, 2, type: :bool) + field(:description, 3, type: :string) + field(:default_value, 4, type: :string) + field(:options, 5, repeated: true, type: :string) end -defmodule InternalApi.Projecthub.Project.Spec.Scheduler do +defmodule InternalApi.Projecthub.Project.Spec.Task do @moduledoc false use Protobuf, syntax: :proto3 @@ -321,114 +426,200 @@ defmodule InternalApi.Projecthub.Project.Spec.Scheduler do name: String.t(), branch: String.t(), at: String.t(), - pipeline_file: String.t() + pipeline_file: String.t(), + status: InternalApi.Projecthub.Project.Spec.Task.Status.t(), + recurring: boolean, + parameters: [InternalApi.Projecthub.Project.Spec.Task.Parameter.t()], + description: String.t() } - defstruct [:id, :name, :branch, :at, :pipeline_file] + + defstruct [ + :id, + :name, + :branch, + :at, + :pipeline_file, + :status, + :recurring, + :parameters, + :description + ] field(:id, 1, type: :string) field(:name, 2, type: :string) field(:branch, 3, type: :string) field(:at, 4, type: :string) field(:pipeline_file, 5, type: :string) + field(:status, 6, type: InternalApi.Projecthub.Project.Spec.Task.Status, enum: true) + field(:recurring, 7, type: :bool) + field(:parameters, 8, repeated: true, type: InternalApi.Projecthub.Project.Spec.Task.Parameter) + field(:description, 9, type: :string) end -defmodule InternalApi.Projecthub.Project.Spec.Visibility do +defmodule InternalApi.Projecthub.Project.Spec do @moduledoc false - use Protobuf, enum: true, syntax: :proto3 + use Protobuf, syntax: :proto3 - field(:PRIVATE, 0) - field(:PUBLIC, 1) + @type t :: %__MODULE__{ + repository: InternalApi.Projecthub.Project.Spec.Repository.t() | nil, + schedulers: [InternalApi.Projecthub.Project.Spec.Scheduler.t()], + private: boolean, + public: boolean, + visibility: InternalApi.Projecthub.Project.Spec.Visibility.t(), + debug_permissions: [[InternalApi.Projecthub.Project.Spec.PermissionType.t()]], + attach_permissions: [[InternalApi.Projecthub.Project.Spec.PermissionType.t()]], + custom_permissions: boolean, + artifact_store_id: String.t(), + cache_id: String.t(), + docker_registry_id: String.t(), + tasks: [InternalApi.Projecthub.Project.Spec.Task.t()] + } + + defstruct [ + :repository, + :schedulers, + :private, + :public, + :visibility, + :debug_permissions, + :attach_permissions, + :custom_permissions, + :artifact_store_id, + :cache_id, + :docker_registry_id, + :tasks + ] + + field(:repository, 1, type: InternalApi.Projecthub.Project.Spec.Repository) + field(:schedulers, 2, repeated: true, type: InternalApi.Projecthub.Project.Spec.Scheduler) + field(:private, 3, type: :bool) + field(:public, 4, type: :bool) + field(:visibility, 5, type: InternalApi.Projecthub.Project.Spec.Visibility, enum: true) + + field(:debug_permissions, 6, + repeated: true, + type: InternalApi.Projecthub.Project.Spec.PermissionType, + enum: true + ) + + field(:attach_permissions, 7, + repeated: true, + type: InternalApi.Projecthub.Project.Spec.PermissionType, + enum: true + ) + + field(:custom_permissions, 8, type: :bool) + field(:artifact_store_id, 9, type: :string) + field(:cache_id, 10, type: :string) + field(:docker_registry_id, 11, type: :string) + field(:tasks, 12, repeated: true, type: InternalApi.Projecthub.Project.Spec.Task) end -defmodule InternalApi.Projecthub.Project.Spec.PermissionType do +defmodule InternalApi.Projecthub.Project.Status.Cache do @moduledoc false - use Protobuf, enum: true, syntax: :proto3 + use Protobuf, syntax: :proto3 - field(:EMPTY, 0) - field(:DEFAULT_BRANCH, 1) - field(:NON_DEFAULT_BRANCH, 2) - field(:PULL_REQUEST, 3) - field(:FORKED_PULL_REQUEST, 4) - field(:TAG, 5) + @type t :: %__MODULE__{ + state: InternalApi.Projecthub.Project.Status.State.t() + } + + defstruct [:state] + + field(:state, 1, type: InternalApi.Projecthub.Project.Status.State, enum: true) end -defmodule InternalApi.Projecthub.Project.Status do +defmodule InternalApi.Projecthub.Project.Status.ArtifactStore do @moduledoc false use Protobuf, syntax: :proto3 @type t :: %__MODULE__{ - state: integer, - state_reason: String.t(), - cache: InternalApi.Projecthub.Project.Status.Cache.t(), - artifact_store: InternalApi.Projecthub.Project.Status.ArtifactStore.t(), - repository: InternalApi.Projecthub.Project.Status.Repository.t(), - analysis: InternalApi.Projecthub.Project.Status.Analysis.t() + state: InternalApi.Projecthub.Project.Status.State.t() } - defstruct [:state, :state_reason, :cache, :artifact_store, :repository, :analysis] + + defstruct [:state] field(:state, 1, type: InternalApi.Projecthub.Project.Status.State, enum: true) - field(:state_reason, 2, type: :string) - field(:cache, 3, type: InternalApi.Projecthub.Project.Status.Cache) - field(:artifact_store, 4, type: InternalApi.Projecthub.Project.Status.ArtifactStore) - field(:repository, 5, type: InternalApi.Projecthub.Project.Status.Repository) - field(:analysis, 6, type: InternalApi.Projecthub.Project.Status.Analysis) end -defmodule InternalApi.Projecthub.Project.Status.Cache do +defmodule InternalApi.Projecthub.Project.Status.Repository do @moduledoc false use Protobuf, syntax: :proto3 @type t :: %__MODULE__{ - state: integer + state: InternalApi.Projecthub.Project.Status.State.t() } + defstruct [:state] field(:state, 1, type: InternalApi.Projecthub.Project.Status.State, enum: true) end -defmodule InternalApi.Projecthub.Project.Status.ArtifactStore do +defmodule InternalApi.Projecthub.Project.Status.Analysis do @moduledoc false use Protobuf, syntax: :proto3 @type t :: %__MODULE__{ - state: integer + state: InternalApi.Projecthub.Project.Status.State.t() } + defstruct [:state] field(:state, 1, type: InternalApi.Projecthub.Project.Status.State, enum: true) end -defmodule InternalApi.Projecthub.Project.Status.Repository do +defmodule InternalApi.Projecthub.Project.Status.Permissions do @moduledoc false use Protobuf, syntax: :proto3 @type t :: %__MODULE__{ - state: integer + state: InternalApi.Projecthub.Project.Status.State.t() } + defstruct [:state] field(:state, 1, type: InternalApi.Projecthub.Project.Status.State, enum: true) end -defmodule InternalApi.Projecthub.Project.Status.Analysis do +defmodule InternalApi.Projecthub.Project.Status do @moduledoc false use Protobuf, syntax: :proto3 @type t :: %__MODULE__{ - state: integer + state: InternalApi.Projecthub.Project.Status.State.t(), + state_reason: String.t(), + cache: InternalApi.Projecthub.Project.Status.Cache.t() | nil, + artifact_store: InternalApi.Projecthub.Project.Status.ArtifactStore.t() | nil, + repository: InternalApi.Projecthub.Project.Status.Repository.t() | nil, + analysis: InternalApi.Projecthub.Project.Status.Analysis.t() | nil, + permissions: InternalApi.Projecthub.Project.Status.Permissions.t() | nil } - defstruct [:state] + + defstruct [:state, :state_reason, :cache, :artifact_store, :repository, :analysis, :permissions] field(:state, 1, type: InternalApi.Projecthub.Project.Status.State, enum: true) + field(:state_reason, 2, type: :string) + field(:cache, 3, type: InternalApi.Projecthub.Project.Status.Cache) + field(:artifact_store, 4, type: InternalApi.Projecthub.Project.Status.ArtifactStore) + field(:repository, 5, type: InternalApi.Projecthub.Project.Status.Repository) + field(:analysis, 6, type: InternalApi.Projecthub.Project.Status.Analysis) + field(:permissions, 7, type: InternalApi.Projecthub.Project.Status.Permissions) end -defmodule InternalApi.Projecthub.Project.Status.State do +defmodule InternalApi.Projecthub.Project do @moduledoc false - use Protobuf, enum: true, syntax: :proto3 + use Protobuf, syntax: :proto3 - field(:INITIALIZING, 0) - field(:READY, 1) - field(:ERROR, 2) + @type t :: %__MODULE__{ + metadata: InternalApi.Projecthub.Project.Metadata.t() | nil, + spec: InternalApi.Projecthub.Project.Spec.t() | nil, + status: InternalApi.Projecthub.Project.Status.t() | nil + } + + defstruct [:metadata, :spec, :status] + + field(:metadata, 1, type: InternalApi.Projecthub.Project.Metadata) + field(:spec, 2, type: InternalApi.Projecthub.Project.Spec) + field(:status, 3, type: InternalApi.Projecthub.Project.Status) end defmodule InternalApi.Projecthub.ListRequest do @@ -436,17 +627,20 @@ defmodule InternalApi.Projecthub.ListRequest do use Protobuf, syntax: :proto3 @type t :: %__MODULE__{ - metadata: InternalApi.Projecthub.RequestMeta.t(), - pagination: InternalApi.Projecthub.PaginationRequest.t(), + metadata: InternalApi.Projecthub.RequestMeta.t() | nil, + pagination: InternalApi.Projecthub.PaginationRequest.t() | nil, owner_id: String.t(), - repo_url: String.t() + repo_url: String.t(), + soft_deleted: boolean } - defstruct [:metadata, :pagination, :owner_id, :repo_url] + + defstruct [:metadata, :pagination, :owner_id, :repo_url, :soft_deleted] field(:metadata, 1, type: InternalApi.Projecthub.RequestMeta) field(:pagination, 2, type: InternalApi.Projecthub.PaginationRequest) field(:owner_id, 3, type: :string) field(:repo_url, 4, type: :string) + field(:soft_deleted, 5, type: :bool) end defmodule InternalApi.Projecthub.ListResponse do @@ -454,10 +648,11 @@ defmodule InternalApi.Projecthub.ListResponse do use Protobuf, syntax: :proto3 @type t :: %__MODULE__{ - metadata: InternalApi.Projecthub.ResponseMeta.t(), - pagination: InternalApi.Projecthub.PaginationResponse.t(), + metadata: InternalApi.Projecthub.ResponseMeta.t() | nil, + pagination: InternalApi.Projecthub.PaginationResponse.t() | nil, projects: [InternalApi.Projecthub.Project.t()] } + defstruct [:metadata, :pagination, :projects] field(:metadata, 1, type: InternalApi.Projecthub.ResponseMeta) @@ -465,22 +660,69 @@ defmodule InternalApi.Projecthub.ListResponse do field(:projects, 3, repeated: true, type: InternalApi.Projecthub.Project) end +defmodule InternalApi.Projecthub.ListKeysetRequest do + @moduledoc false + use Protobuf, syntax: :proto3 + + @type t :: %__MODULE__{ + metadata: InternalApi.Projecthub.RequestMeta.t() | nil, + page_size: integer, + page_token: String.t(), + direction: InternalApi.Projecthub.ListKeysetRequest.Direction.t(), + owner_id: String.t(), + repo_url: String.t(), + created_after: Google.Protobuf.Timestamp.t() | nil + } + + defstruct [:metadata, :page_size, :page_token, :direction, :owner_id, :repo_url, :created_after] + + field(:metadata, 1, type: InternalApi.Projecthub.RequestMeta) + field(:page_size, 2, type: :int32) + field(:page_token, 3, type: :string) + field(:direction, 4, type: InternalApi.Projecthub.ListKeysetRequest.Direction, enum: true) + field(:owner_id, 5, type: :string) + field(:repo_url, 6, type: :string) + field(:created_after, 7, type: Google.Protobuf.Timestamp) +end + +defmodule InternalApi.Projecthub.ListKeysetResponse do + @moduledoc false + use Protobuf, syntax: :proto3 + + @type t :: %__MODULE__{ + metadata: InternalApi.Projecthub.ResponseMeta.t() | nil, + projects: [InternalApi.Projecthub.Project.t()], + next_page_token: String.t(), + previous_page_token: String.t() + } + + defstruct [:metadata, :projects, :next_page_token, :previous_page_token] + + field(:metadata, 1, type: InternalApi.Projecthub.ResponseMeta) + field(:projects, 2, repeated: true, type: InternalApi.Projecthub.Project) + field(:next_page_token, 3, type: :string) + field(:previous_page_token, 4, type: :string) +end + defmodule InternalApi.Projecthub.DescribeRequest do @moduledoc false use Protobuf, syntax: :proto3 @type t :: %__MODULE__{ - metadata: InternalApi.Projecthub.RequestMeta.t(), + metadata: InternalApi.Projecthub.RequestMeta.t() | nil, id: String.t(), name: String.t(), - detailed: boolean + detailed: boolean, + soft_deleted: boolean } - defstruct [:metadata, :id, :name, :detailed] + + defstruct [:metadata, :id, :name, :detailed, :soft_deleted] field(:metadata, 1, type: InternalApi.Projecthub.RequestMeta) field(:id, 2, type: :string) field(:name, 3, type: :string) field(:detailed, 4, type: :bool) + field(:soft_deleted, 5, type: :bool) end defmodule InternalApi.Projecthub.DescribeResponse do @@ -488,9 +730,10 @@ defmodule InternalApi.Projecthub.DescribeResponse do use Protobuf, syntax: :proto3 @type t :: %__MODULE__{ - metadata: InternalApi.Projecthub.ResponseMeta.t(), - project: InternalApi.Projecthub.Project.t() + metadata: InternalApi.Projecthub.ResponseMeta.t() | nil, + project: InternalApi.Projecthub.Project.t() | nil } + defstruct [:metadata, :project] field(:metadata, 1, type: InternalApi.Projecthub.ResponseMeta) @@ -502,13 +745,16 @@ defmodule InternalApi.Projecthub.DescribeManyRequest do use Protobuf, syntax: :proto3 @type t :: %__MODULE__{ - metadata: InternalApi.Projecthub.RequestMeta.t(), - ids: [String.t()] + metadata: InternalApi.Projecthub.RequestMeta.t() | nil, + ids: [String.t()], + soft_deleted: boolean } - defstruct [:metadata, :ids] + + defstruct [:metadata, :ids, :soft_deleted] field(:metadata, 1, type: InternalApi.Projecthub.RequestMeta) field(:ids, 2, repeated: true, type: :string) + field(:soft_deleted, 3, type: :bool) end defmodule InternalApi.Projecthub.DescribeManyResponse do @@ -516,9 +762,10 @@ defmodule InternalApi.Projecthub.DescribeManyResponse do use Protobuf, syntax: :proto3 @type t :: %__MODULE__{ - metadata: InternalApi.Projecthub.ResponseMeta.t(), + metadata: InternalApi.Projecthub.ResponseMeta.t() | nil, projects: [InternalApi.Projecthub.Project.t()] } + defstruct [:metadata, :projects] field(:metadata, 1, type: InternalApi.Projecthub.ResponseMeta) @@ -530,13 +777,16 @@ defmodule InternalApi.Projecthub.CreateRequest do use Protobuf, syntax: :proto3 @type t :: %__MODULE__{ - metadata: InternalApi.Projecthub.RequestMeta.t(), - project: InternalApi.Projecthub.Project.t() + metadata: InternalApi.Projecthub.RequestMeta.t() | nil, + project: InternalApi.Projecthub.Project.t() | nil, + skip_onboarding: boolean } - defstruct [:metadata, :project] + + defstruct [:metadata, :project, :skip_onboarding] field(:metadata, 1, type: InternalApi.Projecthub.RequestMeta) field(:project, 2, type: InternalApi.Projecthub.Project) + field(:skip_onboarding, 3, type: :bool) end defmodule InternalApi.Projecthub.CreateResponse do @@ -544,9 +794,10 @@ defmodule InternalApi.Projecthub.CreateResponse do use Protobuf, syntax: :proto3 @type t :: %__MODULE__{ - metadata: InternalApi.Projecthub.ResponseMeta.t(), - project: InternalApi.Projecthub.Project.t() + metadata: InternalApi.Projecthub.ResponseMeta.t() | nil, + project: InternalApi.Projecthub.Project.t() | nil } + defstruct [:metadata, :project] field(:metadata, 1, type: InternalApi.Projecthub.ResponseMeta) @@ -558,13 +809,16 @@ defmodule InternalApi.Projecthub.UpdateRequest do use Protobuf, syntax: :proto3 @type t :: %__MODULE__{ - metadata: InternalApi.Projecthub.RequestMeta.t(), - project: InternalApi.Projecthub.Project.t() + metadata: InternalApi.Projecthub.RequestMeta.t() | nil, + project: InternalApi.Projecthub.Project.t() | nil, + omit_schedulers_and_tasks: boolean } - defstruct [:metadata, :project] + + defstruct [:metadata, :project, :omit_schedulers_and_tasks] field(:metadata, 1, type: InternalApi.Projecthub.RequestMeta) field(:project, 2, type: InternalApi.Projecthub.Project) + field(:omit_schedulers_and_tasks, 3, type: :bool) end defmodule InternalApi.Projecthub.UpdateResponse do @@ -572,9 +826,10 @@ defmodule InternalApi.Projecthub.UpdateResponse do use Protobuf, syntax: :proto3 @type t :: %__MODULE__{ - metadata: InternalApi.Projecthub.ResponseMeta.t(), - project: InternalApi.Projecthub.Project.t() + metadata: InternalApi.Projecthub.ResponseMeta.t() | nil, + project: InternalApi.Projecthub.Project.t() | nil } + defstruct [:metadata, :project] field(:metadata, 1, type: InternalApi.Projecthub.ResponseMeta) @@ -586,10 +841,11 @@ defmodule InternalApi.Projecthub.DestroyRequest do use Protobuf, syntax: :proto3 @type t :: %__MODULE__{ - metadata: InternalApi.Projecthub.RequestMeta.t(), + metadata: InternalApi.Projecthub.RequestMeta.t() | nil, id: String.t(), name: String.t() } + defstruct [:metadata, :id, :name] field(:metadata, 1, type: InternalApi.Projecthub.RequestMeta) @@ -602,67 +858,85 @@ defmodule InternalApi.Projecthub.DestroyResponse do use Protobuf, syntax: :proto3 @type t :: %__MODULE__{ - metadata: InternalApi.Projecthub.ResponseMeta.t() + metadata: InternalApi.Projecthub.ResponseMeta.t() | nil } + defstruct [:metadata] field(:metadata, 1, type: InternalApi.Projecthub.ResponseMeta) end -defmodule InternalApi.Projecthub.UsersRequest do +defmodule InternalApi.Projecthub.RestoreRequest do @moduledoc false use Protobuf, syntax: :proto3 @type t :: %__MODULE__{ - metadata: InternalApi.Projecthub.RequestMeta.t(), + metadata: InternalApi.Projecthub.RequestMeta.t() | nil, id: String.t() } + defstruct [:metadata, :id] field(:metadata, 1, type: InternalApi.Projecthub.RequestMeta) field(:id, 2, type: :string) end -defmodule InternalApi.Projecthub.UsersResponse do +defmodule InternalApi.Projecthub.RestoreResponse do @moduledoc false use Protobuf, syntax: :proto3 @type t :: %__MODULE__{ - metadata: InternalApi.Projecthub.ResponseMeta.t(), - users: [InternalApi.User.User.t()] + metadata: InternalApi.Projecthub.ResponseMeta.t() | nil } - defstruct [:metadata, :users] + + defstruct [:metadata] field(:metadata, 1, type: InternalApi.Projecthub.ResponseMeta) - field(:users, 2, repeated: true, type: InternalApi.User.User) end -defmodule InternalApi.Projecthub.CheckDeployKeyRequest do +defmodule InternalApi.Projecthub.UsersRequest do @moduledoc false use Protobuf, syntax: :proto3 @type t :: %__MODULE__{ - metadata: InternalApi.Projecthub.RequestMeta.t(), + metadata: InternalApi.Projecthub.RequestMeta.t() | nil, id: String.t() } + defstruct [:metadata, :id] field(:metadata, 1, type: InternalApi.Projecthub.RequestMeta) field(:id, 2, type: :string) end -defmodule InternalApi.Projecthub.CheckDeployKeyResponse do +defmodule InternalApi.Projecthub.UsersResponse do @moduledoc false use Protobuf, syntax: :proto3 @type t :: %__MODULE__{ - metadata: InternalApi.Projecthub.ResponseMeta.t(), - deploy_key: InternalApi.Projecthub.CheckDeployKeyResponse.DeployKey.t() + metadata: InternalApi.Projecthub.ResponseMeta.t() | nil, + users: [InternalApi.User.User.t()] } - defstruct [:metadata, :deploy_key] + + defstruct [:metadata, :users] field(:metadata, 1, type: InternalApi.Projecthub.ResponseMeta) - field(:deploy_key, 2, type: InternalApi.Projecthub.CheckDeployKeyResponse.DeployKey) + field(:users, 2, repeated: true, type: InternalApi.User.User) +end + +defmodule InternalApi.Projecthub.CheckDeployKeyRequest do + @moduledoc false + use Protobuf, syntax: :proto3 + + @type t :: %__MODULE__{ + metadata: InternalApi.Projecthub.RequestMeta.t() | nil, + id: String.t() + } + + defstruct [:metadata, :id] + + field(:metadata, 1, type: InternalApi.Projecthub.RequestMeta) + field(:id, 2, type: :string) end defmodule InternalApi.Projecthub.CheckDeployKeyResponse.DeployKey do @@ -672,41 +946,46 @@ defmodule InternalApi.Projecthub.CheckDeployKeyResponse.DeployKey do @type t :: %__MODULE__{ title: String.t(), fingerprint: String.t(), - created_at: Google.Protobuf.Timestamp.t() + created_at: Google.Protobuf.Timestamp.t() | nil, + public_key: String.t() } - defstruct [:title, :fingerprint, :created_at] + + defstruct [:title, :fingerprint, :created_at, :public_key] field(:title, 1, type: :string) field(:fingerprint, 2, type: :string) field(:created_at, 3, type: Google.Protobuf.Timestamp) + field(:public_key, 4, type: :string) end -defmodule InternalApi.Projecthub.RegenerateDeployKeyRequest do +defmodule InternalApi.Projecthub.CheckDeployKeyResponse do @moduledoc false use Protobuf, syntax: :proto3 @type t :: %__MODULE__{ - metadata: InternalApi.Projecthub.RequestMeta.t(), - id: String.t() + metadata: InternalApi.Projecthub.ResponseMeta.t() | nil, + deploy_key: InternalApi.Projecthub.CheckDeployKeyResponse.DeployKey.t() | nil } - defstruct [:metadata, :id] - field(:metadata, 1, type: InternalApi.Projecthub.RequestMeta) - field(:id, 2, type: :string) + defstruct [:metadata, :deploy_key] + + field(:metadata, 1, type: InternalApi.Projecthub.ResponseMeta) + field(:deploy_key, 2, type: InternalApi.Projecthub.CheckDeployKeyResponse.DeployKey) end -defmodule InternalApi.Projecthub.RegenerateDeployKeyResponse do +defmodule InternalApi.Projecthub.RegenerateDeployKeyRequest do @moduledoc false use Protobuf, syntax: :proto3 @type t :: %__MODULE__{ - metadata: InternalApi.Projecthub.ResponseMeta.t(), - deploy_key: InternalApi.Projecthub.RegenerateDeployKeyResponse.DeployKey.t() + metadata: InternalApi.Projecthub.RequestMeta.t() | nil, + id: String.t() } - defstruct [:metadata, :deploy_key] - field(:metadata, 1, type: InternalApi.Projecthub.ResponseMeta) - field(:deploy_key, 2, type: InternalApi.Projecthub.RegenerateDeployKeyResponse.DeployKey) + defstruct [:metadata, :id] + + field(:metadata, 1, type: InternalApi.Projecthub.RequestMeta) + field(:id, 2, type: :string) end defmodule InternalApi.Projecthub.RegenerateDeployKeyResponse.DeployKey do @@ -716,13 +995,31 @@ defmodule InternalApi.Projecthub.RegenerateDeployKeyResponse.DeployKey do @type t :: %__MODULE__{ title: String.t(), fingerprint: String.t(), - created_at: Google.Protobuf.Timestamp.t() + created_at: Google.Protobuf.Timestamp.t() | nil, + public_key: String.t() } - defstruct [:title, :fingerprint, :created_at] + + defstruct [:title, :fingerprint, :created_at, :public_key] field(:title, 1, type: :string) field(:fingerprint, 2, type: :string) field(:created_at, 3, type: Google.Protobuf.Timestamp) + field(:public_key, 4, type: :string) +end + +defmodule InternalApi.Projecthub.RegenerateDeployKeyResponse do + @moduledoc false + use Protobuf, syntax: :proto3 + + @type t :: %__MODULE__{ + metadata: InternalApi.Projecthub.ResponseMeta.t() | nil, + deploy_key: InternalApi.Projecthub.RegenerateDeployKeyResponse.DeployKey.t() | nil + } + + defstruct [:metadata, :deploy_key] + + field(:metadata, 1, type: InternalApi.Projecthub.ResponseMeta) + field(:deploy_key, 2, type: InternalApi.Projecthub.RegenerateDeployKeyResponse.DeployKey) end defmodule InternalApi.Projecthub.CheckWebhookRequest do @@ -730,9 +1027,10 @@ defmodule InternalApi.Projecthub.CheckWebhookRequest do use Protobuf, syntax: :proto3 @type t :: %__MODULE__{ - metadata: InternalApi.Projecthub.RequestMeta.t(), + metadata: InternalApi.Projecthub.RequestMeta.t() | nil, id: String.t() } + defstruct [:metadata, :id] field(:metadata, 1, type: InternalApi.Projecthub.RequestMeta) @@ -744,9 +1042,10 @@ defmodule InternalApi.Projecthub.CheckWebhookResponse do use Protobuf, syntax: :proto3 @type t :: %__MODULE__{ - metadata: InternalApi.Projecthub.ResponseMeta.t(), - webhook: InternalApi.Projecthub.Webhook.t() + metadata: InternalApi.Projecthub.ResponseMeta.t() | nil, + webhook: InternalApi.Projecthub.Webhook.t() | nil } + defstruct [:metadata, :webhook] field(:metadata, 1, type: InternalApi.Projecthub.ResponseMeta) @@ -758,9 +1057,10 @@ defmodule InternalApi.Projecthub.RegenerateWebhookRequest do use Protobuf, syntax: :proto3 @type t :: %__MODULE__{ - metadata: InternalApi.Projecthub.RequestMeta.t(), + metadata: InternalApi.Projecthub.RequestMeta.t() | nil, id: String.t() } + defstruct [:metadata, :id] field(:metadata, 1, type: InternalApi.Projecthub.RequestMeta) @@ -772,9 +1072,10 @@ defmodule InternalApi.Projecthub.RegenerateWebhookResponse do use Protobuf, syntax: :proto3 @type t :: %__MODULE__{ - metadata: InternalApi.Projecthub.ResponseMeta.t(), - webhook: InternalApi.Projecthub.Webhook.t() + metadata: InternalApi.Projecthub.ResponseMeta.t() | nil, + webhook: InternalApi.Projecthub.Webhook.t() | nil } + defstruct [:metadata, :webhook] field(:metadata, 1, type: InternalApi.Projecthub.ResponseMeta) @@ -788,6 +1089,7 @@ defmodule InternalApi.Projecthub.Webhook do @type t :: %__MODULE__{ url: String.t() } + defstruct [:url] field(:url, 1, type: :string) @@ -798,10 +1100,11 @@ defmodule InternalApi.Projecthub.ChangeProjectOwnerRequest do use Protobuf, syntax: :proto3 @type t :: %__MODULE__{ - metadata: InternalApi.Projecthub.RequestMeta.t(), + metadata: InternalApi.Projecthub.RequestMeta.t() | nil, id: String.t(), user_id: String.t() } + defstruct [:metadata, :id, :user_id] field(:metadata, 1, type: InternalApi.Projecthub.RequestMeta) @@ -814,8 +1117,9 @@ defmodule InternalApi.Projecthub.ChangeProjectOwnerResponse do use Protobuf, syntax: :proto3 @type t :: %__MODULE__{ - metadata: InternalApi.Projecthub.ResponseMeta.t() + metadata: InternalApi.Projecthub.ResponseMeta.t() | nil } + defstruct [:metadata] field(:metadata, 1, type: InternalApi.Projecthub.ResponseMeta) @@ -826,9 +1130,10 @@ defmodule InternalApi.Projecthub.ForkAndCreateRequest do use Protobuf, syntax: :proto3 @type t :: %__MODULE__{ - metadata: InternalApi.Projecthub.RequestMeta.t(), - project: InternalApi.Projecthub.Project.t() + metadata: InternalApi.Projecthub.RequestMeta.t() | nil, + project: InternalApi.Projecthub.Project.t() | nil } + defstruct [:metadata, :project] field(:metadata, 1, type: InternalApi.Projecthub.RequestMeta) @@ -840,9 +1145,10 @@ defmodule InternalApi.Projecthub.ForkAndCreateResponse do use Protobuf, syntax: :proto3 @type t :: %__MODULE__{ - metadata: InternalApi.Projecthub.ResponseMeta.t(), - project: InternalApi.Projecthub.Project.t() + metadata: InternalApi.Projecthub.ResponseMeta.t() | nil, + project: InternalApi.Projecthub.Project.t() | nil } + defstruct [:metadata, :project] field(:metadata, 1, type: InternalApi.Projecthub.ResponseMeta) @@ -854,9 +1160,10 @@ defmodule InternalApi.Projecthub.GithubAppSwitchRequest do use Protobuf, syntax: :proto3 @type t :: %__MODULE__{ - metadata: InternalApi.Projecthub.RequestMeta.t(), + metadata: InternalApi.Projecthub.RequestMeta.t() | nil, id: String.t() } + defstruct [:metadata, :id] field(:metadata, 1, type: InternalApi.Projecthub.RequestMeta) @@ -868,22 +1175,82 @@ defmodule InternalApi.Projecthub.GithubAppSwitchResponse do use Protobuf, syntax: :proto3 @type t :: %__MODULE__{ - metadata: InternalApi.Projecthub.ResponseMeta.t() + metadata: InternalApi.Projecthub.ResponseMeta.t() | nil + } + + defstruct [:metadata] + + field(:metadata, 1, type: InternalApi.Projecthub.ResponseMeta) +end + +defmodule InternalApi.Projecthub.FinishOnboardingRequest do + @moduledoc false + use Protobuf, syntax: :proto3 + + @type t :: %__MODULE__{ + metadata: InternalApi.Projecthub.RequestMeta.t() | nil, + id: String.t() + } + + defstruct [:metadata, :id] + + field(:metadata, 1, type: InternalApi.Projecthub.RequestMeta) + field(:id, 2, type: :string) +end + +defmodule InternalApi.Projecthub.FinishOnboardingResponse do + @moduledoc false + use Protobuf, syntax: :proto3 + + @type t :: %__MODULE__{ + metadata: InternalApi.Projecthub.ResponseMeta.t() | nil } + defstruct [:metadata] field(:metadata, 1, type: InternalApi.Projecthub.ResponseMeta) end +defmodule InternalApi.Projecthub.RegenerateWebhookSecretRequest do + @moduledoc false + use Protobuf, syntax: :proto3 + + @type t :: %__MODULE__{ + metadata: InternalApi.Projecthub.RequestMeta.t() | nil, + id: String.t() + } + + defstruct [:metadata, :id] + + field(:metadata, 1, type: InternalApi.Projecthub.RequestMeta) + field(:id, 2, type: :string) +end + +defmodule InternalApi.Projecthub.RegenerateWebhookSecretResponse do + @moduledoc false + use Protobuf, syntax: :proto3 + + @type t :: %__MODULE__{ + metadata: InternalApi.Projecthub.ResponseMeta.t() | nil, + secret: String.t() + } + + defstruct [:metadata, :secret] + + field(:metadata, 1, type: InternalApi.Projecthub.ResponseMeta) + field(:secret, 2, type: :string) +end + defmodule InternalApi.Projecthub.ProjectCreated do @moduledoc false use Protobuf, syntax: :proto3 @type t :: %__MODULE__{ project_id: String.t(), - timestamp: Google.Protobuf.Timestamp.t(), + timestamp: Google.Protobuf.Timestamp.t() | nil, org_id: String.t() } + defstruct [:project_id, :timestamp, :org_id] field(:project_id, 1, type: :string) @@ -897,9 +1264,27 @@ defmodule InternalApi.Projecthub.ProjectDeleted do @type t :: %__MODULE__{ project_id: String.t(), - timestamp: Google.Protobuf.Timestamp.t(), + timestamp: Google.Protobuf.Timestamp.t() | nil, org_id: String.t() } + + defstruct [:project_id, :timestamp, :org_id] + + field(:project_id, 1, type: :string) + field(:timestamp, 2, type: Google.Protobuf.Timestamp) + field(:org_id, 3, type: :string) +end + +defmodule InternalApi.Projecthub.ProjectRestored do + @moduledoc false + use Protobuf, syntax: :proto3 + + @type t :: %__MODULE__{ + project_id: String.t(), + timestamp: Google.Protobuf.Timestamp.t() | nil, + org_id: String.t() + } + defstruct [:project_id, :timestamp, :org_id] field(:project_id, 1, type: :string) @@ -914,8 +1299,9 @@ defmodule InternalApi.Projecthub.ProjectUpdated do @type t :: %__MODULE__{ project_id: String.t(), org_id: String.t(), - timestamp: Google.Protobuf.Timestamp.t() + timestamp: Google.Protobuf.Timestamp.t() | nil } + defstruct [:project_id, :org_id, :timestamp] field(:project_id, 1, type: :string) @@ -929,8 +1315,9 @@ defmodule InternalApi.Projecthub.CollaboratorsChanged do @type t :: %__MODULE__{ project_id: String.t(), - timestamp: Google.Protobuf.Timestamp.t() + timestamp: Google.Protobuf.Timestamp.t() | nil } + defstruct [:project_id, :timestamp] field(:project_id, 1, type: :string) @@ -942,6 +1329,13 @@ defmodule InternalApi.Projecthub.ProjectService.Service do use GRPC.Service, name: "InternalApi.Projecthub.ProjectService" rpc(:List, InternalApi.Projecthub.ListRequest, InternalApi.Projecthub.ListResponse) + + rpc( + :ListKeyset, + InternalApi.Projecthub.ListKeysetRequest, + InternalApi.Projecthub.ListKeysetResponse + ) + rpc(:Describe, InternalApi.Projecthub.DescribeRequest, InternalApi.Projecthub.DescribeResponse) rpc( @@ -951,8 +1345,13 @@ defmodule InternalApi.Projecthub.ProjectService.Service do ) rpc(:Create, InternalApi.Projecthub.CreateRequest, InternalApi.Projecthub.CreateResponse) + rpc(:Update, InternalApi.Projecthub.UpdateRequest, InternalApi.Projecthub.UpdateResponse) + rpc(:Destroy, InternalApi.Projecthub.DestroyRequest, InternalApi.Projecthub.DestroyResponse) + + rpc(:Restore, InternalApi.Projecthub.RestoreRequest, InternalApi.Projecthub.RestoreResponse) + rpc(:Users, InternalApi.Projecthub.UsersRequest, InternalApi.Projecthub.UsersResponse) rpc( @@ -979,6 +1378,12 @@ defmodule InternalApi.Projecthub.ProjectService.Service do InternalApi.Projecthub.RegenerateWebhookResponse ) + rpc( + :RegenerateWebhookSecret, + InternalApi.Projecthub.RegenerateWebhookSecretRequest, + InternalApi.Projecthub.RegenerateWebhookSecretResponse + ) + rpc( :ChangeProjectOwner, InternalApi.Projecthub.ChangeProjectOwnerRequest, @@ -996,6 +1401,12 @@ defmodule InternalApi.Projecthub.ProjectService.Service do InternalApi.Projecthub.GithubAppSwitchRequest, InternalApi.Projecthub.GithubAppSwitchResponse ) + + rpc( + :FinishOnboarding, + InternalApi.Projecthub.FinishOnboardingRequest, + InternalApi.Projecthub.FinishOnboardingResponse + ) end defmodule InternalApi.Projecthub.ProjectService.Stub do diff --git a/badge/lib/internal_api/repository_integrator.pb.ex b/badge/lib/internal_api/repository_integrator.pb.ex index 848755c16..d16dc51b9 100644 --- a/badge/lib/internal_api/repository_integrator.pb.ex +++ b/badge/lib/internal_api/repository_integrator.pb.ex @@ -1,3 +1,31 @@ +defmodule InternalApi.RepositoryIntegrator.IntegrationType do + @moduledoc false + use Protobuf, enum: true, syntax: :proto3 + @type t :: integer | :GITHUB_OAUTH_TOKEN | :GITHUB_APP | :BITBUCKET | :GITLAB | :GIT + + field(:GITHUB_OAUTH_TOKEN, 0) + + field(:GITHUB_APP, 1) + + field(:BITBUCKET, 2) + + field(:GITLAB, 3) + + field(:GIT, 4) +end + +defmodule InternalApi.RepositoryIntegrator.IntegrationScope do + @moduledoc false + use Protobuf, enum: true, syntax: :proto3 + @type t :: integer | :FULL_CONNECTION | :ONLY_PUBLIC | :NO_CONNECTION + + field(:FULL_CONNECTION, 0) + + field(:ONLY_PUBLIC, 1) + + field(:NO_CONNECTION, 2) +end + defmodule InternalApi.RepositoryIntegrator.GetTokenRequest do @moduledoc false use Protobuf, syntax: :proto3 @@ -5,9 +33,10 @@ defmodule InternalApi.RepositoryIntegrator.GetTokenRequest do @type t :: %__MODULE__{ user_id: String.t(), repository_slug: String.t(), - integration_type: integer, + integration_type: InternalApi.RepositoryIntegrator.IntegrationType.t(), project_id: String.t() } + defstruct [:user_id, :repository_slug, :integration_type, :project_id] field(:user_id, 1, type: :string) @@ -22,8 +51,9 @@ defmodule InternalApi.RepositoryIntegrator.GetTokenResponse do @type t :: %__MODULE__{ token: String.t(), - expires_at: Google.Protobuf.Timestamp.t() + expires_at: Google.Protobuf.Timestamp.t() | nil } + defstruct [:token, :expires_at] field(:token, 1, type: :string) @@ -37,6 +67,7 @@ defmodule InternalApi.RepositoryIntegrator.CheckTokenRequest do @type t :: %__MODULE__{ project_id: String.t() } + defstruct [:project_id] field(:project_id, 1, type: :string) @@ -48,16 +79,14 @@ defmodule InternalApi.RepositoryIntegrator.CheckTokenResponse do @type t :: %__MODULE__{ valid: boolean, - integration_scope: integer + integration_scope: InternalApi.RepositoryIntegrator.IntegrationScope.t() } + defstruct [:valid, :integration_scope] field(:valid, 1, type: :bool) - field(:integration_scope, 2, - type: InternalApi.RepositoryIntegrator.IntegrationScope, - enum: true - ) + field(:integration_scope, 2, type: InternalApi.RepositoryIntegrator.IntegrationScope, enum: true) end defmodule InternalApi.RepositoryIntegrator.PreheatFileCacheRequest do @@ -69,6 +98,7 @@ defmodule InternalApi.RepositoryIntegrator.PreheatFileCacheRequest do path: String.t(), ref: String.t() } + defstruct [:project_id, :path, :ref] field(:project_id, 1, type: :string) @@ -85,6 +115,7 @@ defmodule InternalApi.RepositoryIntegrator.GetFileRequest do path: String.t(), ref: String.t() } + defstruct [:project_id, :path, :ref] field(:project_id, 1, type: :string) @@ -99,6 +130,7 @@ defmodule InternalApi.RepositoryIntegrator.GetFileResponse do @type t :: %__MODULE__{ content: String.t() } + defstruct [:content] field(:content, 1, type: :string) @@ -111,6 +143,7 @@ defmodule InternalApi.RepositoryIntegrator.GithubInstallationInfoRequest do @type t :: %__MODULE__{ project_id: String.t() } + defstruct [:project_id] field(:project_id, 1, type: :string) @@ -125,6 +158,7 @@ defmodule InternalApi.RepositoryIntegrator.GithubInstallationInfoResponse do application_url: String.t(), installation_url: String.t() } + defstruct [:installation_id, :application_url, :installation_url] field(:installation_id, 1, type: :int64) @@ -132,14 +166,31 @@ defmodule InternalApi.RepositoryIntegrator.GithubInstallationInfoResponse do field(:installation_url, 3, type: :string) end +defmodule InternalApi.RepositoryIntegrator.InitGithubInstallationRequest do + @moduledoc false + use Protobuf, syntax: :proto3 + @type t :: %__MODULE__{} + + defstruct [] +end + +defmodule InternalApi.RepositoryIntegrator.InitGithubInstallationResponse do + @moduledoc false + use Protobuf, syntax: :proto3 + @type t :: %__MODULE__{} + + defstruct [] +end + defmodule InternalApi.RepositoryIntegrator.GetRepositoriesRequest do @moduledoc false use Protobuf, syntax: :proto3 @type t :: %__MODULE__{ user_id: String.t(), - integration_type: integer + integration_type: InternalApi.RepositoryIntegrator.IntegrationType.t() } + defstruct [:user_id, :integration_type] field(:user_id, 1, type: :string) @@ -153,6 +204,7 @@ defmodule InternalApi.RepositoryIntegrator.GetRepositoriesResponse do @type t :: %__MODULE__{ repositories: [InternalApi.RepositoryIntegrator.Repository.t()] } + defstruct [:repositories] field(:repositories, 1, repeated: true, type: InternalApi.RepositoryIntegrator.Repository) @@ -169,6 +221,7 @@ defmodule InternalApi.RepositoryIntegrator.Repository do url: String.t(), description: String.t() } + defstruct [:addable, :name, :full_name, :url, :description] field(:addable, 1, type: :bool) @@ -178,24 +231,6 @@ defmodule InternalApi.RepositoryIntegrator.Repository do field(:description, 5, type: :string) end -defmodule InternalApi.RepositoryIntegrator.IntegrationType do - @moduledoc false - use Protobuf, enum: true, syntax: :proto3 - - field(:GITHUB_OAUTH_TOKEN, 0) - field(:GITHUB_APP, 1) - field(:BITBUCKET, 2) -end - -defmodule InternalApi.RepositoryIntegrator.IntegrationScope do - @moduledoc false - use Protobuf, enum: true, syntax: :proto3 - - field(:FULL_CONNECTION, 0) - field(:ONLY_PUBLIC, 1) - field(:NO_CONNECTION, 2) -end - defmodule InternalApi.RepositoryIntegrator.RepositoryIntegratorService.Service do @moduledoc false use GRPC.Service, name: "InternalApi.RepositoryIntegrator.RepositoryIntegratorService" @@ -230,6 +265,12 @@ defmodule InternalApi.RepositoryIntegrator.RepositoryIntegratorService.Service d InternalApi.RepositoryIntegrator.GithubInstallationInfoResponse ) + rpc( + :InitGithubInstallation, + InternalApi.RepositoryIntegrator.InitGithubInstallationRequest, + InternalApi.RepositoryIntegrator.InitGithubInstallationResponse + ) + rpc( :GetRepositories, InternalApi.RepositoryIntegrator.GetRepositoriesRequest, diff --git a/badge/test/badges/api_test.exs b/badge/test/badges/api_test.exs index 13b8ed2bc..6495cb354 100644 --- a/badge/test/badges/api_test.exs +++ b/badge/test/badges/api_test.exs @@ -55,7 +55,7 @@ defmodule Badges.ApiTest do end describe "/badges/testproject.svg" do - test "when branch is ommited => look for master" do + test "when branch is omitted => look for master" do GrpcMock.stub(PipelineMock, :list_keyset, fn _, _ -> InternalApi.Plumber.ListKeysetResponse.new(pipelines: [Support.Factories.pipeline()]) end) @@ -127,7 +127,7 @@ defmodule Badges.ApiTest do assert conn.resp_body =~ "passed" end - test "private project wihout key => returns 404" do + test "private project without key => returns 404" do GrpcMock.stub(ProjectMock, :describe, fn _, _ -> InternalApi.Projecthub.DescribeResponse.new( metadata: Support.Factories.response_meta(:OK), diff --git a/bootstrapper/Dockerfile b/bootstrapper/Dockerfile index f8f9acb0f..c6c2e9948 100644 --- a/bootstrapper/Dockerfile +++ b/bootstrapper/Dockerfile @@ -1,4 +1,4 @@ -ARG GO_VERSION=1.22 +ARG GO_VERSION=1.23 ARG UBUNTU_VERSION=3.17.7 ARG ALPINE_VERSION=3.20.3 ARG BUILDER_IMAGE="golang:${GO_VERSION}" @@ -12,7 +12,7 @@ ENV APP_NAME=${APP_NAME} RUN echo "Build of $APP_NAME started" RUN apt-get update -y && apt-get install --no-install-recommends -y ca-certificates unzip curl libc-bin libc6 \ - && apt-get clean && rm -f /var/lib/apt/lists/*_* + && apt-get clean && rm -f /var/lib/apt/lists/*_* WORKDIR /app COPY pkg pkg @@ -63,4 +63,4 @@ COPY --from=builder --chown=nobody:root /app/build/${APP_NAME} /app/build/${APP_ USER nobody -CMD [ "/bin/sh", "-c", "/app/build/${APP_NAME}" ] \ No newline at end of file +CMD [ "/bin/sh", "-c", "/app/build/${APP_NAME}" ] diff --git a/bootstrapper/go.mod b/bootstrapper/go.mod index e9b2bb488..f8a3254cc 100644 --- a/bootstrapper/go.mod +++ b/bootstrapper/go.mod @@ -1,8 +1,8 @@ module github.com/semaphoreio/semaphore/bootstrapper -go 1.22.7 +go 1.23.0 -toolchain go1.22.9 +toolchain go1.24.3 require ( github.com/golang/protobuf v1.5.4 @@ -43,7 +43,7 @@ require ( github.com/stretchr/objx v0.5.2 // indirect github.com/x448/float16 v0.8.4 // indirect golang.org/x/net v0.33.0 // indirect - golang.org/x/oauth2 v0.23.0 // indirect + golang.org/x/oauth2 v0.27.0 // indirect golang.org/x/sys v0.28.0 // indirect golang.org/x/term v0.27.0 // indirect golang.org/x/text v0.21.0 // indirect diff --git a/bootstrapper/go.sum b/bootstrapper/go.sum index fca5c4e55..9ea308c9e 100644 --- a/bootstrapper/go.sum +++ b/bootstrapper/go.sum @@ -116,8 +116,8 @@ golang.org/x/net v0.0.0-20200226121028-0de0cce0169b/go.mod h1:z5CRVTTTmAJ677TzLL golang.org/x/net v0.0.0-20201021035429-f5854403a974/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= golang.org/x/net v0.33.0 h1:74SYHlV8BIgHIFC/LrYkOGIwL19eTYXQ5wc6TBuO36I= golang.org/x/net v0.33.0/go.mod h1:HXLR5J+9DxmrqMwG9qjGCxZ+zKXxBru04zlTvWlWuN4= -golang.org/x/oauth2 v0.23.0 h1:PbgcYx2W7i4LvjJWEbf0ngHV6qJYr86PkAV3bXdLEbs= -golang.org/x/oauth2 v0.23.0/go.mod h1:XYTD2NtWslqkgxebSiOHnXEap4TF09sJSc7H1sXbhtI= +golang.org/x/oauth2 v0.27.0 h1:da9Vo7/tDv5RH/7nZDz1eMGS/q1Vv1N/7FCrBhI9I3M= +golang.org/x/oauth2 v0.27.0/go.mod h1:onh5ek6nERTohokkhCD/y2cV4Do3fxFHFuAejCkRWT8= golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= diff --git a/branch_hub/.gitignore b/branch_hub/.gitignore index 6e0bf6c37..c322f1241 100644 --- a/branch_hub/.gitignore +++ b/branch_hub/.gitignore @@ -2,16 +2,16 @@ /_build/ /deps/ /db -/deps /log /*.ez *.swp +# The directory Mix downloads your dependencies sources to. +/deps + # If you run "mix test --cover", coverage assets end up here. /cover/ -# The directory Mix downloads your dependencies sources to. -/deps/ # Where third-party dependencies like ExDoc output generated docs. /doc/ diff --git a/branch_hub/lib/branch_hub/model/branches_queries.ex b/branch_hub/lib/branch_hub/model/branches_queries.ex index 7174ba7b8..1d2e5dbaa 100644 --- a/branch_hub/lib/branch_hub/model/branches_queries.ex +++ b/branch_hub/lib/branch_hub/model/branches_queries.ex @@ -28,7 +28,7 @@ defmodule BranchHub.Model.BranchesQueries do def get_or_insert(params) do on_conflict = {:replace_all_except, [:id, :inserted_at]} conflict_target = [:project_id, :name] - params = Map.merge(params, %{used_at: DateTime.utc_now()}) + params = Map.merge(params, %{used_at: DateTime.utc_now(), archived_at: nil}) %Branches{} |> Branches.changeset(params) @@ -79,6 +79,21 @@ defmodule BranchHub.Model.BranchesQueries do |> return_tuple("") end + @doc """ + Archives a branch by setting the archived_at timestamp + """ + def archive(branch_id, archived_at \\ DateTime.utc_now()) do + Branches + |> where(id: ^branch_id) + |> Repo.update_all(set: [archived_at: archived_at]) + |> case do + {1, _} -> get_by_id(branch_id) + {0, _} -> {:error, "Branch with id: '#{branch_id}' not found."} + end + rescue + e -> {:error, e} + end + # Utility defp filter_by_project_id(query, :skip, _), do: query diff --git a/branch_hub/lib/branch_hub/server.ex b/branch_hub/lib/branch_hub/server.ex index 131dcea18..5d96833c0 100644 --- a/branch_hub/lib/branch_hub/server.ex +++ b/branch_hub/lib/branch_hub/server.ex @@ -116,8 +116,23 @@ defmodule BranchHub.Server do end) end - def archive(_, _) do - InternalApi.Branch.ArchiveResponse.new() + def archive(req, _) do + Metrics.benchmark("Branch.archive", fn -> + with {:ok, branch_id} <- non_empty_value_or_default(req, :branch_id, :skip), + branch_id when branch_id != :skip <- branch_id, + true <- valid_uuid?(branch_id, "Branch with id: '#{branch_id}' not found."), + {:ok, _branch} <- BranchesQueries.archive(branch_id) do + InternalApi.Branch.ArchiveResponse.new(status: ok_status()) + else + :skip -> + InternalApi.Branch.ArchiveResponse.new( + status: error_status({:error, "Branch ID is required."}) + ) + + e = {:error, _message} -> + InternalApi.Branch.ArchiveResponse.new(status: error_status(e)) + end + end) end def filter(_, _) do @@ -168,7 +183,7 @@ defmodule BranchHub.Server do defp parse_types(:TAG), do: "tag" defp parse_types(:BRANCH), do: "branch" - defp map_timestamp(nil), do: map_timestamp(0) + defp map_timestamp(nil), do: nil defp map_timestamp(seconds) when is_integer(seconds), do: Google.Protobuf.Timestamp.new(seconds: seconds) diff --git a/branch_hub/test/branch_hub/model/branches_queries_test.exs b/branch_hub/test/branch_hub/model/branches_queries_test.exs index dd804146e..63d4763be 100644 --- a/branch_hub/test/branch_hub/model/branches_queries_test.exs +++ b/branch_hub/test/branch_hub/model/branches_queries_test.exs @@ -59,7 +59,7 @@ defmodule BranchHub.Model.BranchesQueries.Test do refute branch_1.used_at == branch_2.used_at end - test "insert new branch if diffrent name" do + test "insert new branch if different name" do params = [ name: "rw/branch", display_name: "rw/branch", @@ -247,6 +247,66 @@ defmodule BranchHub.Model.BranchesQueries.Test do assert_list_branches(params, expected_results) end + # Archive + + test "archive existing branch" do + assert {:ok, branch} = insert_branch() + assert branch.archived_at == nil + + assert {:ok, archived_branch} = BranchesQueries.archive(branch.id) + assert archived_branch.archived_at != nil + assert archived_branch.id == branch.id + end + + test "archive non-existing branch returns error" do + branch_id = UUID.uuid4() + assert {:error, msg} = BranchesQueries.archive(branch_id) + assert msg == "Branch with id: '#{branch_id}' not found." + end + + test "archive already archived branch updates archived_at" do + original_time = DateTime.utc_now() |> DateTime.add(-3600, :second) + assert {:ok, branch} = insert_branch(archived_at: original_time) + assert branch.archived_at != nil + + :timer.sleep(1000) + assert {:ok, re_archived_branch} = BranchesQueries.archive(branch.id) + assert re_archived_branch.archived_at != nil + assert DateTime.compare(re_archived_branch.archived_at, original_time) == :gt + end + + # Get or insert with archived_at behavior + + test "get_or_insert sets archived_at to nil for new branches" do + params = %{ + name: "new-branch", + display_name: "new-branch", + ref_type: "branch", + project_id: UUID.uuid4() + } + + assert {:ok, branch} = BranchesQueries.get_or_insert(params) + assert branch.archived_at == nil + end + + test "get_or_insert unarchives existing branch" do + # First create an archived branch + assert {:ok, archived_branch} = insert_branch(archived_at: DateTime.utc_now()) + assert archived_branch.archived_at != nil + + # Use get_or_insert with same name and project_id - should unarchive + params = %{ + name: archived_branch.name, + display_name: archived_branch.display_name, + ref_type: archived_branch.ref_type, + project_id: archived_branch.project_id + } + + assert {:ok, unarchived_branch} = BranchesQueries.get_or_insert(params) + assert unarchived_branch.archived_at == nil + assert unarchived_branch.id == archived_branch.id + end + defp assert_list_branches(params, expected_results, page \\ 1, size \\ 10) do assert {:ok, results} = BranchesQueries.list(params, page, size) assert Enum.sort(results.entries) == Enum.sort(expected_results.entries) diff --git a/branch_hub/test/branch_hub/server_test.exs b/branch_hub/test/branch_hub/server_test.exs index bcfc00eb0..ee109d31f 100644 --- a/branch_hub/test/branch_hub/server_test.exs +++ b/branch_hub/test/branch_hub/server_test.exs @@ -3,12 +3,14 @@ defmodule BranchHub.Server.Test do alias BranchHub.Repo alias BranchHub.Server + alias BranchHub.Model.BranchesQueries alias InternalApi.Branch.{ Branch, DescribeRequest, ListRequest, - FindOrCreateRequest + FindOrCreateRequest, + ArchiveRequest } setup do @@ -208,6 +210,103 @@ defmodule BranchHub.Server.Test do assert_create_status(params, :ok) end + + test "sets archived_at to nil when creating or updating branch" do + # First, create an archived branch + assert {:ok, branch} = insert_branch(archived_at: DateTime.utc_now()) + assert branch.archived_at != nil + + # Use find_or_create to "update" the branch - should unarchive it + params = %{ + project_id: branch.project_id, + repository_id: UUID.uuid4(), + name: branch.name, + display_name: branch.display_name, + ref_type: Branch.Type.value(:BRANCH) + } + + response = + params + |> FindOrCreateRequest.new() + |> find_or_create_branch(:ok) + + assert response.archived_at == nil + end + end + + describe ".archive" do + test "return error when branch_id is missing" do + params = %{} + assert_archive_status(params, :error) + end + + test "return error when branch_id is invalid UUID" do + params = %{branch_id: "invalid-uuid"} + assert_archive_status(params, :error) + end + + test "return error when branch doesn't exist" do + params = %{branch_id: UUID.uuid4()} + assert_archive_status(params, :error) + end + + test "return ok and set archived_at when branch exists" do + assert {:ok, branch} = insert_branch() + assert branch.archived_at == nil + + params = %{branch_id: branch.id} + assert_archive_status(params, :ok) + + # Verify the branch was actually archived by checking the database + assert {:ok, archived_branch} = BranchesQueries.get_by_id(branch.id) + assert archived_branch.archived_at != nil + assert archived_branch.id == branch.id + end + + test "describe shows archived_at timestamp after archiving" do + assert {:ok, branch} = insert_branch() + + # Archive the branch + params = %{branch_id: branch.id} + assert_archive_status(params, :ok) + + # Verify describe shows the archived_at timestamp + response = + %{branch_id: branch.id} + |> DescribeRequest.new() + |> describe_branch(:ok) + + assert response.archived_at != nil + assert response.archived_at.seconds > 0 + end + + test "list excludes archived branches by default" do + project_id = UUID.uuid4() + + # Create two branches in the same project + assert {:ok, active_branch} = insert_branch(project_id: project_id, display_name: "active") + + assert {:ok, branch_to_archive} = + insert_branch(project_id: project_id, display_name: "to_archive") + + # Archive one branch + params = %{branch_id: branch_to_archive.id} + assert_archive_status(params, :ok) + + # List should only show the active branch + list_params = %{project_id: project_id} + assert_list_values(list_params, [active_branch]) + + # List with archived=true should show both + list_params_with_archived = %{project_id: project_id, with_archived: true} + + results_with_archived = + list_params_with_archived + |> ListRequest.new() + |> list_branches(:ok) + + assert length(results_with_archived) == 2 + end end defp assert_create_status(params, expected_status) do @@ -228,6 +327,23 @@ defmodule BranchHub.Server.Test do branch end + defp assert_archive_status(params, expected_status) do + params + |> ArchiveRequest.new() + |> archive_branch(expected_status) + end + + defp archive_branch(request, expected_status) when is_map(request) do + response = Server.archive(request, nil) + + assert %{ + status: %{code: status_code} + } = response + + assert code(expected_status) == status_code + response + end + defp insert_branch(params \\ []) do alias BranchHub.Model.BranchesQueries diff --git a/docs/default.conf b/docs/default.conf index 75310df38..89d741382 100644 --- a/docs/default.conf +++ b/docs/default.conf @@ -49,6 +49,9 @@ server { application/vnd.ms-fontobject image/svg+xml; + location ~ ^/using-semaphore/optimization/cache?$ {return 301 /using-semaphore/cache;} + location ~ ^/using-semaphore/optimization/docker?$ {return 301 /using-semaphore/containers/docker;} + location ~ ^/using-semaphore/optimization/container-registry?$ {return 301 /using-semaphore/containers/container-registry;} location ~ ^/account-management/billing-faq/?$ {return 301 /getting-started/faq#billing;} location ~ ^/account-management/connecting-bitbucket-and-semaphore/?$ {return 301 /using-semaphore/connect-bitbucket;} location ~ ^/account-management/connecting-github-and-semaphore/?$ {return 301 /using-semaphore/connect-github;} @@ -56,13 +59,13 @@ server { location ~ ^/account-management/permission-levels/?$ {return 301 /using-semaphore/rbac;} location ~ ^/account-management/working-with-github-sso/?$ {return 301 /using-semaphore/github-sso;} location ~ ^/advanced-ci/flaky-tests/?$ {return 301 /using-semaphore/tests/flaky-tests;} - location ~ ^/ci-cd-environment/android-images/?$ {return 301 /using-semaphore/optimization/container-registry#android;} + location ~ ^/ci-cd-environment/android-images/?$ {return 301 /using-semaphore/containers/container-registry#android;} location ~ ^/ci-cd-environment/aws-support/?$ {return 301 /using-semaphore/self-hosted-aws;} location ~ ^/ci-cd-environment/choosing-between-a-vm-and-docker-based-environment/?$ {return 301 /using-semaphore/pipelines#docker-environments;} location ~ ^/ci-cd-environment/configure-self-hosted-agent/?$ {return 301 /using-semaphore/self-hosted;} location ~ ^/ci-cd-environment/custom-ci-cd-environment-with-docker/?$ {return 301 /using-semaphore/pipelines#docker-environments;} - location ~ ^/ci-cd-environment/docker-authentication/?$ {return 301 /using-semaphore/optimization/docker#auth;} - location ~ ^/ci-cd-environment/docker-layer-caching/?$ {return 301 /using-semaphore/optimization/docker#caching;} + location ~ ^/ci-cd-environment/docker-authentication/?$ {return 301 /using-semaphore/containers/docker#auth;} + location ~ ^/ci-cd-environment/docker-layer-caching/?$ {return 301 /using-semaphore/containers/docker#caching;} location ~ ^/ci-cd-environment/environment-variables/?$ {return 301 /reference/env-vars;} location ~ ^/ci-cd-environment/install-self-hosted-agent/?$ {return 301 /using-semaphore/self-hosted-install;} location ~ ^/ci-cd-environment/job-environment/?$ {return 301 /using-semaphore/jobs;} @@ -77,18 +80,19 @@ server { location ~ ^/ci-cd-environment/self-hosted-agents-overview/?$ {return 301 /using-semaphore/self-hosted;} location ~ ^/ci-cd-environment/sem-service-managing-databases-and-services-on-linux/?$ {return 301 /reference/toolbox#sem-service;} location ~ ^/ci-cd-environment/sem-version-managing-language-versions-on-linux/?$ {return 301 /reference/toolbox#sem-version;} - location ~ ^/ci-cd-environment/semaphore-registry-images/?$ {return 301 /using-semaphore/optimization/container-registry;} - location ~ ^/ci-cd-environment/set-up-caching-on-aws-s3/?$ {return 301 /using-semaphore/optimization/cache#aws;} + location ~ ^/ci-cd-environment/semaphore-registry-images/?$ {return 301 /using-semaphore/containers/container-registry;} + location ~ ^/ci-cd-environment/set-up-caching-on-aws-s3/?$ {return 301 /using-semaphore/containers/cache#aws;} location ~ ^/ci-cd-environment/ubuntu-18.04-image/?$ {return 301 /reference/os-ubuntu;} location ~ ^/ci-cd-environment/ubuntu-20.04-image/?$ {return 301 /reference/os-ubuntu#ubuntu2004;} location ~ ^/ci-cd-environment/ubuntu-22.04-arm-image/?$ {return 301 /reference/os-ubuntu#ubuntu2204-arm;} location ~ ^/ci-cd-environment/ubuntu-22.04-image/?$ {return 301 /reference/os-ubuntu#ubuntu2204-x86;} - location ~ ^/ci-cd-environment/working-with-docker/?$ {return 301 /using-semaphore/optimization/docker;} + location ~ ^/ci-cd-environment/working-with-docker/?$ {return 301 /using-semaphore/containers/docker;} + location ~ ^/article/75-debugging-with-ssh-access/?$ {return 301 /using-semaphore/jobs#ssh-into-agent;} location ~ ^/essentials/artifacts/?$ {return 301 /using-semaphore/artifacts;} location ~ ^/essentials/auto-cancel-previous-pipelines-on-a-new-push/?$ {return 301 /using-semaphore/pipelines#auto-cancel;} location ~ ^/essentials/build-matrix/?$ {return 301 /using-semaphore/jobs#matrix;} location ~ ^/essentials/building-monorepo-projects/?$ {return 301 /using-semaphore/monorepo;} - location ~ ^/essentials/caching-dependencies-and-directories/?$ {return 301 /using-semaphore/optimization/cache;} + location ~ ^/essentials/caching-dependencies-and-directories/?$ {return 301 /using-semaphore/cache;} location ~ ^/essentials/concepts/?$ {return 301 /using-semaphore/workflows;} location ~ ^/essentials/configuring-status-checks/?$ {return 301 /using-semaphore/projects#status-checks;} location ~ ^/essentials/debugging-with-ssh-access/?$ {return 301 /using-semaphore/jobs#debug-jobs;} @@ -203,14 +207,14 @@ server { location ~ ^/examples/laravel-php-continuous-integration/?$ {return 301 /using-semaphore/workflows;} location ~ ^/examples/netlify-continuous-deployment/?$ {return 301 /using-semaphore/workflows;} location ~ ^/examples/node-js-and-typescript-continuous-integration/?$ {return 301 /using-semaphore/workflows;} - location ~ ^/examples/publishing-docker-images-on-dockerhub/?$ {return 301 /using-semaphore/optimization/docker#auth;} - location ~ ^/examples/pushing-docker-images-to-aws-elastic-container-registry-ecr/?$ {return 301 /using-semaphore/optimization/docker#auth;} - location ~ ^/examples/pushing-docker-images-to-google-container-registry-gcr/?$ {return 301 /using-semaphore/optimization/docker#auth;} + location ~ ^/examples/publishing-docker-images-on-dockerhub/?$ {return 301 /using-semaphore/containers/docker#auth;} + location ~ ^/examples/pushing-docker-images-to-aws-elastic-container-registry-ecr/?$ {return 301 /using-semaphore/containers/docker#auth;} + location ~ ^/examples/pushing-docker-images-to-google-container-registry-gcr/?$ {return 301 /using-semaphore/containers/docker#auth;} location ~ ^/examples/rails-continuous-integration/?$ {return 301 /using-semaphore/workflows;} location ~ ^/examples/scala-play-continuous-integration/?$ {return 301 /using-semaphore/workflows;} location ~ ^/examples/testflight-ios-app-distribution/?$ {return 301 /using-semaphore/workflows;} location ~ ^/examples/tutorials-and-example-projects/?$ {return 301 /using-semaphore/workflows;} - location ~ ^/examples/using-docker-compose-in-ci/?$ {return 301 /using-semaphore/optimization/docker;} + location ~ ^/examples/using-docker-compose-in-ci/?$ {return 301 /using-semaphore/containers/docker;} location ~ ^/examples/using-terraform-with-google-cloud/?$ {return 301 /using-semaphore/workflows;} location ~ ^/examples/zeit-now-continuous-deployment/?$ {return 301 /using-semaphore/workflows;} location ~ ^/faq/migration-guide-for-semaphore-classic-users/?$ {return 301 /using-semaphore/workflows;} diff --git a/docs/docs-contributing/CONTRIBUTING.md b/docs/docs-contributing/CONTRIBUTING.md index 014da9aad..833114958 100644 --- a/docs/docs-contributing/CONTRIBUTING.md +++ b/docs/docs-contributing/CONTRIBUTING.md @@ -67,7 +67,7 @@ To set up a local environment for contributing to Semaphore documentation: 2. Clone or fork the repository - - **External Contributors** (no write access to upstream): navigate to [sempahoreci/semaphore](https://github.com/semaphoreci/semaphore), click **Fork**, then select **Create a new fork**. Run the following command to clone the repository: + - **External Contributors** (no write access to upstream): navigate to [semaphoreci/semaphore](https://github.com/semaphoreci/semaphore), click **Fork**, then select **Create a new fork**. Run the following command to clone the repository: ```bash git clone https://github.com//semaphore diff --git a/docs/docs-contributing/VERSIONING.md b/docs/docs-contributing/VERSIONING.md index c4580e279..3ca51b413 100644 --- a/docs/docs-contributing/VERSIONING.md +++ b/docs/docs-contributing/VERSIONING.md @@ -10,8 +10,8 @@ This page describes how to create a new version or release. We handle docs in two ways: - Cloud: the cloud edition is unversioned. The docs are located on `docs/` -- Community Edition: the open-source edition is versined. The docs are located on `versioned_docs/version-CE/` -- Enterprise Edition: the licensed on-premise is also versined. The docs are located on `versioned_docs/version-EE/` +- Community Edition: the open-source edition is versioned. The docs are located on `versioned_docs/version-CE/` +- Enterprise Edition: the licensed on-premise is also versioned. The docs are located on `versioned_docs/version-EE/` ## Naming conventions @@ -147,7 +147,7 @@ npm run build npm run serve ``` -Open a browser and check that the drowpdown works and the new version is working. +Open a browser and check that the dropdown works and the new version is working. ## How to remove versions @@ -167,7 +167,7 @@ There are two options to deal with unavailable versions: 1. Delete the content: delete the content from the version 2. Mark it as unavailable: keep the title or subheader but clearly mark it as unavailable. Add links to other editions where the feature is available -As a general rule, we shold make it clear when a feature is unavailable, especially for very prominent features such as Promotions, RBAC, or other enterprise-grade features. +As a general rule, we should make it clear when a feature is unavailable, especially for very prominent features such as Promotions, RBAC, or other enterprise-grade features. ### How to manage pages missing in editions diff --git a/docs/docs-drafts/gke_install.md b/docs/docs-drafts/gke_install.md index 706da36a6..2990c2310 100644 --- a/docs/docs-drafts/gke_install.md +++ b/docs/docs-drafts/gke_install.md @@ -33,7 +33,7 @@ export CERTS_DIR=$HOME/mycerts You only need to create the SSL certificate for your domain. -1. Execute the following command to create the certificates. Follow on-sreen instructions. You will be asked to create a DNS TXT record with a specific value. Press enter only after you have created the DNS Record. +1. Execute the following command to create the certificates. Follow on-screen instructions. You will be asked to create a DNS TXT record with a specific value. Press enter only after you have created the DNS Record. ```shell source .env @@ -178,7 +178,7 @@ kubectl wait --timeout=90s --for=condition=available deployment emissary-apiext ```shell ============================================================================================= -Congratulations, Semaphore has been installed succesfully! +Congratulations, Semaphore has been installed successfully! To start using the app, go to https://id./login diff --git a/docs/docs/getting-started/changelog.md b/docs/docs/getting-started/changelog.md index f5c933ea3..0160bf615 100644 --- a/docs/docs/getting-started/changelog.md +++ b/docs/docs/getting-started/changelog.md @@ -68,7 +68,7 @@ To learn more about this image, check our [macOS Xcode 16](https://docs.semaphor - nvm 0.40.1 -> 0.40.2 - pip3 24.2 -> 25.0 - postgres 14.13 -> 14.17 -- python3 3.12.6 -> 3.13.2 +- python3 3.12.6 -> 3.13.2 - ruby system 3.3.2 -> 3.4.2 - ruby rbenv 3.3.5 -> 3.2.8 - Simulator iOS 18.2 -> 18.4 @@ -541,14 +541,15 @@ To learn more about these images check our [Ubuntu 20.04](../reference/os-ubuntu **(Improved) macos-xcode15 (apple silicon) image update** -**(New)** Packages: +**(New)** Packages: + - Xcode 15.4 (default) **(Updated)** : - iOS 17.5 - watchOS 10.5 -- tvOS 17.5 +- tvOS 17.5 **(Improved) Ubuntu 20.04, Ubuntu 22.04 and Ubuntu 22.04 ARM image update** @@ -1045,7 +1046,7 @@ To learn more about this image, check our [Ubuntu 22.04 page](../reference/os-ub - Rust 1.70.0 -> 1.72.1 - Sbt 1.8.3 -> 1.9.6 - Terraform 1.4.6 -> 1.5.7 -- Vrtualenv 20.23.0 -> 20.24.5 +- Virtualenv 20.23.0 -> 20.24.5 To learn more about this image, check our [Ubuntu 22.04 ARM page](../reference/os-ubuntu-images/ubuntu-2204-arm-image) @@ -1301,7 +1302,6 @@ The Ubuntu 18.04 image has been deprecated. - Fastlane 2.211.0 -> 2.212.1 - Flutter 3.7.0 -> 3.7.10 - **(Improved) Ubuntu 20.04 image update** **(New)** Packages @@ -1432,7 +1432,6 @@ To learn more about this image, check our [ubuntu 20.04 page](../reference/os-ub - Java OpenJDK 17.0.5 -> 17.0.6 - Terraform 1.3.9 -> 1.4.2 - :::info The Ubuntu 18.04 image has been deprecated. @@ -1569,7 +1568,6 @@ To learn more about this image, check our [ubuntu 20.04 page](../reference/os-ub - Kubectl 1.26.0 -> 1.26.1 - Pip 22.3.1 -> 23.0 - :::info The Ubuntu 18.04 image has been deprecated. @@ -1588,7 +1586,6 @@ The Ubuntu 18.04 image has been deprecated. - Flutter 3.3.0 -> 3.7.0 - NodeJS 16 -> 18 - ## Week of January 16, 2023 **(Improved) Ubuntu 20.04 image update** @@ -1853,7 +1850,6 @@ The Ubuntu 18.04 image has been deprecated. ## Week of November 14, 2022 - :::info macOS Xcode 12 is deprecated. @@ -1936,11 +1932,11 @@ The Ubuntu 18.04 image has been deprecated. - Google Chrome 106 -> 107 - ChromeDriver 106 -> 107 - Helm 3.9.4 -> 3.10.1 -- Heroku 7.64.0 -> 7.65.0 +- Heroku 7.64.0 -> 7.65.0 - Kubectl 1.25.2 -> 1.25.3 - Sbt 1.7.2 -> 1.7.3 - Terraform 1.3.1 -> 1.3.3 -- Pip 22.2.2 -> 22.3 +- Pip 22.2.2 -> 22.3 :::info @@ -2026,7 +2022,7 @@ The Ubuntu 18.04 image has been deprecated. ## Week of September 26, 2022 -**(New) macos-xcode14 image released ** +**(New) macos-xcode14 image released** **(Updated)** Updated packages: @@ -2034,7 +2030,7 @@ The Ubuntu 18.04 image has been deprecated. - Kernel version: 21.6.0 - Fastlane: 2.210.0 - Cocoapods: 1.11.3 -- Nvm : 9.39.1 +- Nvm : 9.39.1 - Java: openjdk17 - Postgres: 14.5 - iOS SDK: 16.0 @@ -2136,6 +2132,7 @@ The Ubuntu 18.04 image has been deprecated. **(Changed)** packages: `sem-version firefox` versions available: + - Firefox 68.9.0esr: `68`, `esr-old` - Firefox 78.1.0esr: `78`, `default`, `esr` - Firefox 102.2.0esr: `102`, `esr-new`, `esr-latest` @@ -2177,6 +2174,7 @@ To learn more about this image, check our [ubuntu 20.04 page](../reference/os-ub **(Changed)** packages: `sem-version firefox` versions available: + - Firefox 68.9.0esr: `68`, `esr-old` - Firefox 78.1.0esr: `78`, `default`, `esr` - Firefox 102.2.0esr: `102`, `esr-new`, `esr-latest` @@ -2263,7 +2261,7 @@ The Ubuntu 18.04 image has been deprecated. - Kernel 5.13.0-52-generic -> 5.15.0.41-generic - Aws-cli 1.25.26 -> 1.25.34 - Aws-cli 2.7.14 -> 2.7.17 -- Erlang 23.3.4.15 -> 23.3.4.16 +- Erlang 23.3.4.15 -> 23.3.4.16 - Erlang 25.0.2 -> 25.0.3 - Github-cli 2.13.0 -> 2.14.2 - Git 2.37.0 -> 2.37.1 @@ -2411,9 +2409,11 @@ The Ubuntu 18.04 image has been deprecated. **(Improved) macOS Xcode 13 image update** **(New)** Packages: + - Xcode 13.4.1 **(Removed)** Packages: + - Xcode 13.1 - Xcode 13.4 @@ -2424,7 +2424,6 @@ The Ubuntu 18.04 image has been deprecated. - Homebrew 3 -> 3.5.1 - PostgreSQL 14.2 -> 14.3 - **(Improved) Ubuntu 20.04 image update** **(New)** Packages: @@ -2656,7 +2655,7 @@ The Ubuntu 18.04 image has been deprecated. - Gradle 7.3 -> 7.4.2 - Java OpenJDK 11.0.14 -> 11.0.15 - Java OpenJDK 17.0.2 -> 17.0.3 -- NodeJS 16.14.2 -> 16.15.0 +- NodeJS 16.14.2 -> 16.15.0 - Npm 8.5.0 -> 8.5.5 - Heroku 7.60.1 -> 7.60.2 - Terraform 1.1.8 -> 1.1.9 @@ -2679,7 +2678,7 @@ To learn more about this image, check our [ubuntu 20.04 page](../reference/os-ub - Gradle 7.3 -> 7.4.2 - Java OpenJDK 11.0.14 -> 11.0.15 - Java OpenJDK 17.0.2 -> 17.0.3 -- NodeJS 16.14.2 -> 16.15.0 +- NodeJS 16.14.2 -> 16.15.0 - Npm 8.5.0 -> 8.5.5 - Heroku 7.60.1 -> 7.60.2 - Terraform 1.1.8 -> 1.1.9 @@ -2735,11 +2734,11 @@ To learn more about this image, check our [ubuntu 20.04 page](../reference/os-ub - Aws-cli 1.22.86 -> 1.22.96 - Aws-cli 2.5.1 -> 2.5.5 - Azure-cli 2.34.1 -> 2.35.0 -- Github-cli 2.7.0 -> 2.8.0 +- Github-cli 2.7.0 -> 2.8.0 - Git 2.35.1 -> 2.35.3 - Bazel 5.1.0 -> 5.1.1 - Helm 3.8.1 -> 3.8.2 -- Pypy 7.3.8 -> 7.3.9 +- Pypy 7.3.8 -> 7.3.9 - Pypy3 7.3.8 -> 7.3.9 - Venv 20.13.0 -> 20.14.1 - Kerl 2.2.3 -> 2.3.0 @@ -2759,9 +2758,11 @@ The Ubuntu 18.04 image has been deprecated. **(Improved) macOS Xcode 13 image update** **(New)** Packages: + - Xcode 13.3 **(Removed)** Packages: + - Xcode 13.0 **(Updated)** Updated packages: @@ -2864,9 +2865,9 @@ To learn more about this image, check our [ubuntu 20.04 page](../reference/os-ub - Aws-cli 1.22.67 -> 1.22.77 - Aws-cli 2.4.23 -> 2.4.27 -- Github-cli 2.5.2 -> 2.6.0 +- Github-cli 2.5.2 -> 2.6.0 - Docker 20.10.12 -> 20.10.13 -- Helm 3.8.0 -> 3.8.1 +- Helm 3.8.0 -> 3.8.1 - Heroku 7.59.2 -> 7.59.4 - Java 11.0.13 -> 11.0.14 - Java 17.0.1 -> 17.0.2 @@ -2957,7 +2958,7 @@ To learn more about this image, check our [ubuntu 20.04 page](../reference/os-ub - Go 1.17.7 - Elixir 1.13.3 (default) -- Ruby 3.1.1 +- Ruby 3.1.1 - PHP - 7.4.28 (default) - 8.0.16 @@ -2970,7 +2971,7 @@ To learn more about this image, check our [ubuntu 20.04 page](../reference/os-ub - Github-cli 2.5.0 > 2.5.1 - Git-lfs 3.0.2 -> 3.1.2 - Nodejs 16.13.2 -> 16.14.0 -- Npm 8.1.2 -> 8.3.1 +- Npm 8.1.2 -> 8.3.1 - Pypy 7.3.6 -> 7.3.8 - Pypy3 7.3.7 > 7.3.8 @@ -2995,8 +2996,8 @@ The Ubuntu 18.04 image has been deprecated. - Helm 3.7.2 -> 3.8.0 - Virtualenv 16.0.0 -> 20.13.0 - Pip 21.3.1 -> 22.0.3 -- Erlang - - 23.3.4.10 -> 23.3.4.11 +- Erlang + - 23.3.4.10 -> 23.3.4.11 - 24.2 -> 24.2.1 To learn more about this image, check our [ubuntu 20.04 page](../reference/os-ubuntu-images/ubuntu-2004-image). @@ -3015,7 +3016,7 @@ To learn more about this image, check our [ubuntu 20.04 page](../reference/os-ub - Virtualenv 16.0.0 -> 20.13.0 - Pip (for Python 3.6) 20.3.4 -> 21.3.1 - Pip (for Python 3.7 and above) 20.3.4 -> 22.0.3 -- Erlang +- Erlang - 23.3.4.10 -> 23.3.4.11 - 24.2 -> 24.2.1 @@ -3103,8 +3104,8 @@ The Ubuntu 18.04 image has been deprecated. - Erlang 24.2 (default) - Elixir 1.13.1 (default) - Ruby 3.1.0 -- PHP - - 7.4.27 (default) +- PHP + - 7.4.27 (default) - 8.0.14 **(Updated)** Updated packages: @@ -3138,7 +3139,7 @@ To learn more about this image, check our [ubuntu 20.04 page](../reference/os-ub - Yarn 1.22.15 -> 1.22.17 - Java 8u292 -> 8u312 - Java 11.0.11 -> 11.0.13 -- Kerl 2.1.2 -> 2.2.3 +- Kerl 2.1.2 -> 2.2.3 - Rebar 3.15.2 -> 3.17.0 - Erlang - 22.3.4.23-> 22.3.4.24 @@ -3155,6 +3156,7 @@ The Ubuntu 18.04 image has been deprecated. **(Improved) macOS Xcode 13 image update** **(New)** Packages: + - Xcode 13.2.1 **(Updated)** Updated packages: @@ -3240,7 +3242,7 @@ To learn more about this image, check our [ubuntu 20.04 page](../reference/os-ub **(New)** Packages: - PHP 7.3.33, 7.4.26 (default), 8.0.13 -- Ruby 2.6.9, 2.7.5 (default), 3.0.3 +- Ruby 2.6.9, 2.7.5 (default), 3.0.3 - Github-cli 2.2.0 **(Updated)** Updated packages: @@ -3273,8 +3275,8 @@ The Ubuntu 18.04 image has been deprecated. - Aws-cli 1.21.7 -> 1.22.5 - Google Chrome 95 -> 96 - ChromeDriver 95 -> 96 -- Erlang - - 23.3.4.8 -> 23.3.4.9 +- Erlang + - 23.3.4.8 -> 23.3.4.9 - 24.1.3 -> 24.1.5 (default) Default Elixir version changed from 1.11.4 to 1.12.3 @@ -3288,9 +3290,9 @@ To learn more about this image, check our [ubuntu 20.04 page](../reference/os-ub - Azure-cli 2.29.2 -> 2.30.0 - Google Chrome 95 -> 96 - ChromeDriver 95 -> 96 -- Erlang - - 22.3.4.22 -> 22.3.4.23 - - 23.3.4.8 -> 23.3.4.9 +- Erlang + - 22.3.4.22 -> 22.3.4.23 + - 23.3.4.8 -> 23.3.4.9 - 24.1.3 -> 24.1.5 (default) :::info @@ -3360,6 +3362,7 @@ The Ubuntu 18.04 image has been deprecated. **(Improved) macOS Xcode 13 image update** **(New)** Packages: + - Xcode 13.1 - PostgreSQL 14 @@ -3371,7 +3374,6 @@ The Ubuntu 18.04 image has been deprecated. - Node v16.6.1 -> v17.0.1 - Yarn 1.22.11 -> 1.22.17 - ## Week of October 18, 2021 **(Improved) Ubuntu 20.04 image update** @@ -3409,10 +3411,11 @@ The Ubuntu 18.04 image has been deprecated. **(Improved) macOS Xcode 12 image update** **(New)** Packages: + - Xcode 12.5.1 Updated packages: - + - Flutter 2.5.1 -> 2.5.2 - Node 16.6.1 -> 16.10.0 @@ -3479,7 +3482,7 @@ The Ubuntu 18.04 image has been deprecated. **(Improved) macOS Xcode 12 image update** Updated packages: - + - Cocoapods 1.10.2 -> 1.11.2 - Fastlane 2.191.0 -> 2.195.0 - Flutter 2.0.6 -> 2.5.1 @@ -3494,6 +3497,7 @@ To learn more about this image, check our macOS Xcode 12 page. - Android:30-flutter image was updated, it now contains flutter version 2.2.3 and 2.5.1(default) **(Improved) Toolbox update** + - Toolbox/sem-version can switch between pre-installed flutter versions 2.5.1(default) and 2.2.3 when using semaphore's android:30-flutter image. Syntax: `sem-version flutter [2.2.3|2.5.1]` @@ -3539,7 +3543,6 @@ The Ubuntu 18.04 image has been deprecated. The macOS Xcode 11 image will be removed in one month. We advise all users to switch to the macOS Xcode 12 image. - **(Improved) Ubuntu 20.04 image update** **(Updated)** Updated packages: @@ -3608,7 +3611,7 @@ The Ubuntu 18.04 image has been deprecated. **(Updated)** **Big Sur** version 11.4 updated to 11.5.1 Updated packages: - + - Cocoapods 1.10.1 -> 1.10.2 - Fastlane 2.182.0 -> 2.191.0 - Xcode 12.5 -> 12.5.1 @@ -3616,7 +3619,6 @@ Updated packages: To learn more about this image, check our macOS Xcode 12 page. - **(Improved) Ubuntu 18.04 image update** - ~~**(Deprecated)** Python 2.7 has reached [End of Life](https://www.python.org/doc/sunset-python-2/) and is no longer maintained, it will be removed from the Bionic image at the beginning of September 2021.~~ @@ -3647,7 +3649,7 @@ The Ubuntu 18.04 image has been deprecated. - Fixed ligatures that are displayed in test output. - More generic test result sample files. -To learn how to set up a Test Summary check [our docummentation](../using-semaphore/tests/test-reports). +To learn how to set up a Test Summary check [our documentation](../using-semaphore/tests/test-reports). **(Improved) Ubuntu 20.04 image update** @@ -3727,13 +3729,13 @@ Take the advantage of this new feature now to: - Sort and filter the output of your tests however you see fit. - Search through big test suits to find what you're looking for. -To learn more about how to configure the Test Summary feature, check our [docummentation](../using-semaphore/tests/test-reports). +To learn more about how to configure the Test Summary feature, check our [documentation](../using-semaphore/tests/test-reports). **(New) Parameterized promotions (beta)** -With parameterized promotions, you can re-use a single promotion pipeline and use environment variables to achieve different results based on the variable values. +With parameterized promotions, you can re-use a single promotion pipeline and use environment variables to achieve different results based on the variable values. - Define the parameter name and description in YAML or Workflow Builder. -- Assign parameter values when manually promoting. +- Assign parameter values when manually promoting. - Use parameter values in promoted pipeline names, secret names, pipeline queues, or as environment variables. This feature is in **private beta**. If you would like to try it out, please [reach out to us](mailto:feedback@semaphoreci.com?subject=Parameterized%20promotions%20-%20beta%20request&body=I%20would%20like%20to%20join%20the%20private%20beta%20for%20parameterized%20promotions%20feature...). @@ -3793,7 +3795,7 @@ To learn more about this image, check our [ubuntu 20.04 page](../reference/os-ub - Kerl 1.8.4 -> 2.1.2 - Rebar3 3.12.0 > 3.15.2 -- Azure-cli 2.24.1 -> 2.24.2 +- Azure-cli 2.24.1 -> 2.24.2 - Aws-cli 1.19.89 -> 1.19.92 - Docker 20.10.5 -> 20.10.7 - Docker-compose 1.28.2 -> 1.29.2 @@ -3807,6 +3809,7 @@ The Ubuntu 18.04 image has been deprecated. ::: ## Week of June 7, 2021 + **(Improved) Ubuntu 18.04 image update** **(New)** Packages: @@ -3819,10 +3822,11 @@ The Ubuntu 18.04 image has been deprecated. - Chromedriver 90 -> 91 ## Week of May 31, 2021 + **(New) Granular repository access via GitHub App** Semaphore [GitHub App](https://docs.semaphoreci.com/account-management/connecting-github-and-semaphore/#connecting-a-repository-via-github-app) has been introduced as a new way of connecting GitHub repositories with Semaphore. -Users can now connect Semaphore through the GitHub App instead of via personal access token, and choose which repositories they want to grant access to. +Users can now connect Semaphore through the GitHub App instead of via personal access token, and choose which repositories they want to grant access to. Find out more about the difference(s) between GitHub App and personal access token in our [documentation](../using-semaphore/connect-github). @@ -3867,6 +3871,7 @@ The Ubuntu 18.04 image has been deprecated. ::: ## Week of May 24, 2021 + **(Improved) Ubuntu 18.04 image update** **(New)** Packages: @@ -3886,6 +3891,7 @@ The Ubuntu 18.04 image has been deprecated. ::: ## Week of May 17, 2021 + **(Improved) Ubuntu 18.04 image update** **(New)** Packages: @@ -3907,9 +3913,8 @@ The Ubuntu 18.04 image has been deprecated. - sem-version fails the job if the switch was unsuccessful - sem-version **beta** introduced for macOS-based agents, and ruby 2.5.9, 2.6.7, 2.7.3, 3.0.1 versions are also available. - - ## Week of May 10, 2021 + **(Improved) Ubuntu 18.04 image update** **(New)** Tools: @@ -3939,7 +3944,7 @@ The Ubuntu 18.04 image has been deprecated. **(Updated)** MacOS Catalina upgraded to **Big Sur** Updated packages: - + - Homebrew 3.1.4 -> 3.1.5 - Flutter 2.0.4 -> 2.0.6 - Fastlane 2.172.0 -> 2.182.0 @@ -3951,9 +3956,10 @@ Updated packages: To learn more about this image, check our macOS Xcode 12 page. ## Week of April 26, 2021 + **(Improved) macOS Xcode 12 image update** **(Updated)** Updated packages: - + - Homebrew 2.4.3 -> 3.1.4 - Rbenv can install ruby 2.6.7, 2.7.3, 3.0.1 @@ -3983,7 +3989,6 @@ The Ubuntu 18.04 image has been deprecated. ::: - ## Week of April 12, 2021 **(Improved) Ubuntu 18.04 image update** @@ -3999,7 +4004,7 @@ The Ubuntu 18.04 image has been deprecated. **(Improved) macOS Xcode 12 image update** **(Updated)** Updated packages: - + - Curl 7.64.1 -> 7.71.1 - Flutter 1.17 -> 2.0.4 @@ -4007,24 +4012,23 @@ To learn more about this image, check our macOS Xcode 12 page. **(Updated)** Docker image: -New convenience Docker images are available in the [Semaphore Container Registry](../using-semaphore/optimization/container-registry). +New convenience Docker images are available in the [Semaphore Container Registry](../using-semaphore/containers/container-registry). A detailed list can be found in the [Docker images changelog](https://github.com/semaphoreci/docker-images/blob/master/CHANGELOG_04-2021). - ## Week of April 5, 2021 **(Improved) Monorepo support shipped to GA** A new set of improvements focused on monorepo support were shipped: - **Initialization step** - Runs at the start of each monorepo pipeline and compiles the workflow, ensuring that misconfigurations are detected before any job starts. -- **UI indicator** - A new UI element shows the initialization log, making troubleshooting fast and easy. -- **Exclude parameter** - A new option in change_in adds the ability to define which folders or files to skip. +- **UI indicator** - A new UI element shows the initialization log, making troubleshooting fast and easy. +- **Exclude parameter** - A new option in change_in adds the ability to define which folders or files to skip. - **Glob pattern support** - change_in conditions have been further extended to allow the use of wildcards. - **Clearer error messages** - Improved error messages for the most common misconfiguration issues. -- **Improved stability** - All compilation errors arising from edge cases have been eliminated, making these features more reliable. +- **Improved stability** - All compilation errors arising from edge cases have been eliminated, making these features more reliable. -You can read more about this feature in this [blog post](https://semaphoreci.com/blog/monorepo-support-available). +You can read more about this feature in this [blog post](https://semaphoreci.com/blog/monorepo-support-available). Additional related reading: @@ -4032,7 +4036,6 @@ Additional related reading: - [Monorepo docs](../using-semaphore/monorepo) - [change_in docs](../reference/conditions-dsl#change-in) - ## Week of March 29, 2021 **(Improved) Ubuntu 18.04 image update** @@ -4041,7 +4044,7 @@ Additional related reading: - Erlang 23.3 **(Updated)** Updated packages: - + - Aws-cli 1.19.25 -> 1.19.39 - Azure-cli 2.20.0 -> 2.21.0 - Git 2.30 -> 2.31 @@ -4059,8 +4062,8 @@ The Ubuntu 18.04 image has been deprecated. **(Updated)** Sem-service addons: - elasticsearch (7.10.0, 7.11.2, 7.12.0) -- mysql (5.7.33, 8.0.23) -- mongo (4.2.13, 4.4.1, 4.4.4) +- mysql (5.7.33, 8.0.23) +- mongo (4.2.13, 4.4.1, 4.4.4) - postgres (10.16, 11.11, 12.6, 13.2) - rabbitmq (3.8.14) - redis (6.2.1) @@ -4072,22 +4075,24 @@ The Ubuntu 18.04 image has been deprecated. You can find out more about Semaphore toolbox by checking the [Toolbox Reference](../reference/toolbox). ## Week of March 22, 2021 + **(Improved) New UI updates** Based on user feedback, the UI was updated to make navigation even more intuitive. -Here are some of the changes that have been introduced: +Here are some of the changes that have been introduced: - Top right page menu links have been redesigned as tabs. - New breadcrumbs will always be present on the page. -- Several new visual queues have been introduced to draw attention to active elements. +- Several new visual queues have been introduced to draw attention to active elements. - Updated fonts and icons make it easier to find key information on the page. If you have any suggestions for further improvements to our UI, we encourage you to send them to [our feedback inbox](mailto:feedback@semaphoreci.com?subject=UI%20Feedback). ## Week of March 08, 2021 -**(Improved) Ubuntu 18.04 image update** + +**(Improved) Ubuntu 18.04 image update** **(Updated)** Updated packages: - + - Docker 20.10.04 -> 20.10.05 - Aws-cli 1.19.18 -> 1.19.25 - Chromedriver 88 -> 89 @@ -4101,10 +4106,11 @@ The Ubuntu 18.04 image has been deprecated. ::: ## Week of March 01, 2021 -**(Improved) Ubuntu 18.04 image update** + +**(Improved) Ubuntu 18.04 image update** **(Updated)** Updated packages: - + - Aws-cli 1.19.3 -> 1.19.18 - Azure-cli 2.18.0 -> 1.20.0 - Docker 20.10.03 -> 20.10.04 @@ -4119,24 +4125,26 @@ The Ubuntu 18.04 image has been deprecated. ::: ## Week of February 22, 2021 + **(Improved) Artifacts CLI fixes and improvements:** - `push` and `pull` commands now have an output on success. - Fixed the issue where the name of the file got changed to the parent directory name in some cases. -- Fixed the issue where the dot at the start of the directory name was not preserved. +- Fixed the issue where the dot at the start of the directory name was not preserved. - If the `SEMAPHORE_WORKFLOW_ID` variable is not set, `artifact push workflow` will now fail. - Added a new alias for `artifact yank`; from now on artifacts can also be deleted by running `artifact delete`. Check our [Artifact CLI](../reference/toolbox#artifact) documentation to learn more about artifacts. ## Week of February 15, 2021 + **(Improved) Ubuntu 18.04 image update** **(New)** New language version: - Python 3.9 **(Updated)** Updated packages: - + - Aws-cli 1.18.216 -> 1.19.3 - Azure-cli 2.17.1 -> 1.18.0 - Chrome 87 -> 88 @@ -4153,17 +4161,18 @@ The Ubuntu 18.04 image has been deprecated. ::: ## Week of February 1, 2021 + **(Improved) macOS Xcode 12 image update** **(New)** Xcode 12.4 has been installed and set as the default version. To switch to any other supported version simply use `xcversion select `. **(Updated)** Updated packages: - + - Fastlane 2.170.0 -> 2.172.0 - Cocoapods 1.10.0 -> 1.10.1 To learn more about this image, check our macOS Xcode 12 page. **(Updated)** Docker image: -New convenience Docker images are available in the [Semaphore Container Registry](../using-semaphore/optimization/container-registry). +New convenience Docker images are available in the [Semaphore Container Registry](../using-semaphore/containers/container-registry). A detailed list can be found in the [Docker images changelog](https://github.com/semaphoreci/docker-images/blob/master/CHANGELOG_02-2021#L237). **Minor improvements and fixes:** @@ -4172,6 +4181,7 @@ A detailed list can be found in the [Docker images changelog](https://github.com - **(Improved)** Rendering speed has been improved for some logs on the _job page_. ## Week of January 18, 2021 + **(Improved) Ubuntu 18.04 image update** **(Reverted)** Docker 20.10.1 -> 19.03.14 @@ -4202,6 +4212,7 @@ The Ubuntu 18.04 image has been deprecated. - **(Improved)** Artifacts will now open in-browser (depending on mime type) ## Week of January 11, 2021 + **(Improved) Ubuntu 18.04 image update** **(New)** Language versions: @@ -4224,30 +4235,30 @@ The Ubuntu 18.04 image has been deprecated. - Pypy 7.3.2 -> 7.3.3 - Pip 20.2 -> 20.3.3 - :::info The Ubuntu 18.04 image has been deprecated. ::: - ## Week of December 21, 2020 + **(Improved) macOS Xcode 12 image update** **(Removed)** Xcode 12.0 and Xcode 12.0.1 are no longer supported in the macOS Xcode 12 image. **(New)** Xcode 12.3 was added to the image. **(Updated)** Updated packages: - + - Fastlane 2.169.0 -> 2.170.0 Note that the default Xcode version was changed to 12.3 for the macOS Xcode 12 image. **Minor improvements and fixes:** -- **(Fixed)** Fixed the issue where email invites were not sent to some collaborators during the project creation phase. +- **(Fixed)** Fixed the issue where email invites were not sent to some collaborators during the project creation phase. - **(Fixed)** Fixed the issue where multiple instances of a project are created when a user clicks multiple times when choosing a repository. ## Week of December 14, 2020 + **(Improved) Ubuntu 18.04 image update** **(New)** Language versions: @@ -4267,17 +4278,17 @@ The Ubuntu 18.04 image has been deprecated. **(Improved) macOS Xcode 11 and 12 image update** **(Fix)** Fixed the missing Safari browser issue. **(Updated)** Updated packages: - + - Fastalne 2.167.0 -> 2.169.0 -To learn more about our image macOS images, check our macOS Xcode 12 and macOS Xcode 11 documentation. +To learn more about our image macOS images, check our macOS Xcode 12 and macOS Xcode 11 documentation. ## Week of November 23, 2020 **(Improved) Ubuntu 18.04 image update** **(New)** Language versions: -- Added elixir 1.11.2 +- Added elixir 1.11.2 **(Updated)** Language versions: @@ -4298,36 +4309,38 @@ The Ubuntu 18.04 image has been deprecated. ::: ## Week of November 16, 2020 + **(New) Added ability to overwrite branch whitelist rules** -On the project page, click on the three dot icon in the top right corner of the workflow list to build a branch that is otherwise blocked by the whitelist rule. - +On the project page, click on the three dot icon in the top right corner of the workflow list to build a branch that is otherwise blocked by the whitelist rule. + Read our [Workflow triggers](../using-semaphore/workflows#workflow-triggers) documentation to find out how the branch whitelist works. - + **(Improved) macOS Xcode 11 image update** **(Updated)** Updated packages: - + - Cocoapods 1.9.3 -> 1.10.0 - Fastlane 2.162.0 -> 2.167 - Flutter v1.22.1 -> 1.22.4 - + To learn more about this image, check our macOS Xcode 11 page. ## Week of November 9, 2020 + **(Updated) New UI available to everyone** The new UI is available to all users. Minor performance updates and fixes have been implemented: - -- **(Fixed)** fixed the issue with job logs auto-scrolling to top of the failed command output, instead of to the bottom. + +- **(Fixed)** fixed the issue with job logs auto-scrolling to top of the failed command output, instead of to the bottom. - **(Fixed)** fixed the issue with manual promotions being triggered based on promotion name. - + You can read more about the new UI in this [blog post](https://semaphoreci.com/blog/refreshed-new-ui-for-a-greater-experience). We appreciate your feedback and encourage you to send any suggestions to [our feedback inbox](mailto:feedback@semaphoreci.com?subject=Beta%20Feedback). - + **(Improved) macOS Xcode 12 image update** **(Updated)** Xcode 12.2 installed, to switch version simply use `xcversion select 12.2` **(Deprecated)** Xcode 12.0 will be removed from the images with the next release. **(Updated)** Updated packages: - + - Cocoapods 1.9.3 -> 1.10.0 To learn more about this image, check our macOS Xcode 12 page. @@ -4349,7 +4362,7 @@ We appreciate your feedback and encourage you to send any suggestions to [our fe **(New) Semaphore Container Registry** For your convenience, we have introduced the Semaphore Container Registry. Inside the Semaphore environment, you can pull these Docker images without any restrictions or limitations. -You can find the list of supported images in [our documentation](../using-semaphore/optimization/container-registry). +You can find the list of supported images in [our documentation](../using-semaphore/containers/container-registry). **(Improved) macOS Xcode 12 image update** **(Updated)** Xcode 12.1 installed. To switch version simply use `xcversion select 12.1` @@ -4379,6 +4392,7 @@ The Ubuntu 18.04 image has been deprecated. ::: ## Week of October 19, 2020 + **(Updated) New UI - Everyone's latest work page** We updated the behavior on the main page (Everyone's latest work) to exclude workflows that the current project user doesn't have access to. If a user doesn't have access to a project, or the project was deleted, that project's workflows won't appear in their workflow list. @@ -4405,12 +4419,14 @@ The Ubuntu 18.04 image has been deprecated. **(Updated)** Xcode 12.0.1 installed. To switch version simply use `xcversion select 12.0.1` **(Updated)** Updated packages: - - Fastlane 2.158.0 -> 2.162.0 - - Flutter v1.20.2 -> v1.22.1 + +- Fastlane 2.158.0 -> 2.162.0 +- Flutter v1.20.2 -> v1.22.1 To learn more about this image, check our macOS Xcode 12 page. ## Week of October 5, 2020 + **(Improved) Ubuntu 18.04 image update** **(New)** Language versions: @@ -4455,7 +4471,7 @@ You can access this feature by clicking on the **New project** button in the top ## Week of September 21, 2020 -**(New) Ubuntu 18.04 image additions** +**(New) Ubuntu 18.04 image additions** - Added the ability to change `kubectl` version with the sem-version tool: `sem-version kubectl [version]` - Added elixir versions: 1.10.0, 1.10.2, 1.10.3 @@ -4492,12 +4508,14 @@ If you want to try out the new UI, but it hasn't yet rolled out to your organiza **(Removed)** Xcode 11.2.1 removed from the images. **(Updated)** Updated packages: - - Fastlane 2.149.1 -> 2.158.0 - - Flutter v1.20.2 -> v1.20.3 + +- Fastlane 2.149.1 -> 2.158.0 +- Flutter v1.20.2 -> v1.20.3 To learn more about this image, check our macOS Xcode 11 page. -**(New) Ubuntu 18.04 image additions** +**(New) Ubuntu 18.04 image additions** + - Added Go 1.15 - Added azure-cli, version 2.11.1 @@ -4519,6 +4537,7 @@ The Ubuntu 18.04 image has been deprecated. ::: ## Week of August 31, 2020 + **(Improved) New Semaphore UI public beta release** After a successful private beta, the new Semaphore UI has been rolled out to a larger number of users. The new UI brings several improvements: @@ -4539,21 +4558,23 @@ If you want to try out the new UI, but it hasn't yet rolled out to your organiza To learn more about this image, check our macOS Xcode 11 page. ## Week of August 24, 2020 -**(New) Information on promoter is stored in related enviroment variable** + +**(New) Information on promoter is stored in related environment variable** + Inside a Semaphore job you can now see who initiated a promotion by checking the value of the `SEMAPHORE_PIPELINE_PROMOTED_BY` environment variable. -Information on all available enviroment variables can be found in our [documentation](../reference/env-vars). +Information on all available environment variables can be found in our [documentation](../reference/env-vars). **(Improved) Ubuntu 18.04 image update** **(Updated)** Language versions: - - Aws-cli 1.18.112 ->1.18.124 - - Elixir 1.10.4 now uses Erlang 23.0.3 - - Heroku 7.42.6 -> 7.42.8 - - Java 8u252 -> 8u265 - - PHP 7.3.20 -> 7.3.21 - - PHP 7.4.8 -> 7.4.9 - - Pypy 5.8.0 -> 7.3.1 +- Aws-cli 1.18.112 ->1.18.124 +- Elixir 1.10.4 now uses Erlang 23.0.3 +- Heroku 7.42.6 -> 7.42.8 +- Java 8u252 -> 8u265 +- PHP 7.3.20 -> 7.3.21 +- PHP 7.4.8 -> 7.4.9 +- Pypy 5.8.0 -> 7.3.1 :::info @@ -4564,16 +4585,18 @@ The Ubuntu 18.04 image has been deprecated. **(Improved) macOS Xcode11 image update** **(Updated)** Updated packages: - - Fastlane 2.149.1 -> 2.156.1 - - Flutter v1.17.3 -> v1.20.2 +- Fastlane 2.149.1 -> 2.156.1 +- Flutter v1.17.3 -> v1.20.2 To learn more about this image, check our macOS Xcode 11 page. **Minor improvements and fixes:** - - **(Fixed)** Fixed an issue where `[skip ci]` was ignored for pull request triggers. - - **(Improved)** Deleting a git branch will now stop any queued or running pipeline started on that branch. - + +- **(Fixed)** Fixed an issue where `[skip ci]` was ignored for pull request triggers. +- **(Improved)** Deleting a git branch will now stop any queued or running pipeline started on that branch. + ## Week of August 17, 2020 + **(New) Install-package command** "Toolbox" command line tools have been extended to include the `install-package` utility. The `install-package` command can help with package installations by automatically caching the desired packages and their dependencies. @@ -4581,6 +4604,7 @@ The `install-package` command can help with package installations by automatical To find out more, please check the [install-package](https://docs.semaphoreci.com/reference/toolbox-reference/#install-package) documentation page. ## Week of August 10, 2020 + **(New) Configurable pipeline queues** We added the option to override the default queue and create custom queues for pipelines. Pipelines can be configured to run sequentially or in parallel, based on various conditions. @@ -4591,14 +4615,14 @@ To learn how to use this feature, check the [pipeline queues](../using-semaphore **(Improved) Ubuntu 18.04 image update** -**(New)** Added Firefox version 78.1.0esr. +**(New)** Added Firefox version 78.1.0esr. Added ability to change firefox version with the `sem-version` tool: `sem-version firefox [52|68|78]` **(Updated)** Language versions: - - Aws-cli 1.18.104 ->1.18.112 - - Heroku 7.42.5 -> 7.42.6 - - Google-cloud-sdk downgraded 300 -> 297 +- Aws-cli 1.18.104 ->1.18.112 +- Heroku 7.42.5 -> 7.42.6 +- Google-cloud-sdk downgraded 300 -> 297 :::info @@ -4614,15 +4638,15 @@ The Ubuntu 18.04 image has been deprecated. **(Updated)** Language versions: - - Aws-cli 1.18.96 -> 1.18.104 - - Go 1.13.12 -> 1.13.14 - - Go 1.14.4 -> 1.14.6 - - Heroku 7.42.2 -> 7.42.5 - - OpenJDK 11.0.7 -> 11.0.8 - - PHP 7.2.31 -> 7.2.32 - - PHP 7.3.19 -> 7.3.20 - - PHP 7.4.7 -> 7.4.8 - - Chrome_driver 83 > 84 +- Aws-cli 1.18.96 -> 1.18.104 +- Go 1.13.12 -> 1.13.14 +- Go 1.14.4 -> 1.14.6 +- Heroku 7.42.2 -> 7.42.5 +- OpenJDK 11.0.7 -> 11.0.8 +- PHP 7.2.31 -> 7.2.32 +- PHP 7.3.19 -> 7.3.20 +- PHP 7.4.7 -> 7.4.8 +- Chrome_driver 83 > 84 :::info @@ -4653,84 +4677,86 @@ For getting started with an Android project on Semaphore please see this [guide] ## Week of July 13, 2020 - Updates to the ubuntu1804 image: - - Aws-cli 1.18.90 -> 1.18.96 - - Elixir 1.8.1 -> 1.8.2 - - Elixir 1.9.3 -> 1.9.4 - - Elixir 1.10.3 -> 1.10.4 - - Heroku 7.42.1 -> 7.42.2 - - PHP 7.3.18 -> 7.3.19 - - PHP 7.4.6 -> 7.4.7 + - Aws-cli 1.18.90 -> 1.18.96 + - Elixir 1.8.1 -> 1.8.2 + - Elixir 1.9.3 -> 1.9.4 + - Elixir 1.10.3 -> 1.10.4 + - Heroku 7.42.1 -> 7.42.2 + - PHP 7.3.18 -> 7.3.19 + - PHP 7.4.6 -> 7.4.7 ## Week of June 30, 2020 - Additions to the ubuntu1804 image - - Sysstat + - Sysstat - Updates to the ubuntu1804 image: - - Aws-cli 1.18.77 -> 1.18.90 - - Docker-compose 1.24.1 -> 1.26.0 + - Aws-cli 1.18.77 -> 1.18.90 + - Docker-compose 1.24.1 -> 1.26.0 - The macos-xcode11 image update. The following packages were updated: - - Fastlane 1.50.1 - - Flutter 1.17.5 + - Fastlane 1.50.1 + - Flutter 1.17.5 - A new convenience Docker image available in Semaphore's [dockerhub](https://hub.docker.com/u/semaphoreci). A detailed list can be found in the [Docker images changelog](https://github.com/semaphoreci/docker-images/blob/master/CHANGELOG#L2939). ## Week of June 15, 2020 - Updates to the macos-xcode11 image: - - flutter v1.17.3 - - cocoapods 1.9.3 - - nodejs v13.12.0 - - yarn v1.22.4 - - fastlane 2.149.1 + - flutter v1.17.3 + - cocoapods 1.9.3 + - nodejs v13.12.0 + - yarn v1.22.4 + - fastlane 2.149.1 - Updates to the ubuntu1804 image: - - Aws-cli 1.18.68 -> 1.18.77 - - Firefox 68.4esr -> 68.9.0esr - - Git 2.26 -> 2.27 - - Go 1.13.10 -> 1.13.12 - - Go 1.14.2 -> 1.14.4 - - Heroku 7.41.1 -> 7.42.1 - + - Aws-cli 1.18.68 -> 1.18.77 + - Firefox 68.4esr -> 68.9.0esr + - Git 2.26 -> 2.27 + - Go 1.13.10 -> 1.13.12 + - Go 1.14.2 -> 1.14.4 + - Heroku 7.41.1 -> 7.42.1 + ## Week of June 8, 2020 -- The macOS Mojave image (macOS-mojave-xcode11) has been deprecated. + +- The macOS Mojave image (macOS-mojave-xcode11) has been deprecated. ## Week of June 1, 2020 - Additions to the Ubuntu1804 image - - Erlang 23.0 + - Erlang 23.0 - Updates to the Ubuntu1804 image: - - Aws-cli 1.18.59 -> 1.18.68 - - Chromedriver 81 -> 83 - - Google Chrome 81 -> 83 - - PHP 7.2.29 -> 7.2.31 - - PHP 7.3.16 -> 7.3.18 - - PHP 7.4.4 -> 7.4.6 + - Aws-cli 1.18.59 -> 1.18.68 + - Chromedriver 81 -> 83 + - Google Chrome 81 -> 83 + - PHP 7.2.29 -> 7.2.31 + - PHP 7.3.16 -> 7.3.18 + - PHP 7.4.4 -> 7.4.6 ## Week of May 18, 2020 + - New convenience Docker images available in Semaphore's DockerHub Account. A detailed list can be found in the [Docker images changelog](https://github.com/semaphoreci/docker-images/blob/master/CHANGELOG#L2421) - Updates to the macOS Catalina Xcode11: - - Xcode 11.5 installed - - Flutter version update to 1.17.1 - - Fastlane gem version update to 2.148.1 + - Xcode 11.5 installed + - Flutter version update to 1.17.1 + - Fastlane gem version update to 2.148.1 - Additions to the Ubuntu1804 image: - - Doctl 1.43.0 + - Doctl 1.43.0 - Updates to the Ubuntu1804 image: - - Aws-cli 1.18.42 -> 1.18.59 - - Git-lfs 2.10.0 -> 2.11.0 - - Go 1.13.9 -> 1.13.10 - - Go 1.14.1 -> 1.14.2 - - Heroku 7.39.3 -> 7.41.1 - - PHP 7.2.28 -> 7.2.29 - - PHP 7.3.15 -> 7.3.16 - - PHP 7.4.3 -> 7.4.4 - - Sbt 0.13.17 -> 1.3.10 + - Aws-cli 1.18.42 -> 1.18.59 + - Git-lfs 2.10.0 -> 2.11.0 + - Go 1.13.9 -> 1.13.10 + - Go 1.14.1 -> 1.14.2 + - Heroku 7.39.3 -> 7.41.1 + - PHP 7.2.28 -> 7.2.29 + - PHP 7.3.15 -> 7.3.16 + - PHP 7.4.3 -> 7.4.4 + - Sbt 0.13.17 -> 1.3.10 ## Week of May 11, 2020 @@ -4743,88 +4769,89 @@ A detailed list can be found in the [Docker images changelog](https://github.com - Names of Semaphore Secrets are now restricted to alphanumeric characters, dashes, dots, and `@`. Regex: `^[@: -._a-zA-Z0-9]+$`). - Updates to the macOS image: - - Flutter version updated to 1.17.0, image spec macOS Catalina Xcode11 + - Flutter version updated to 1.17.0, image spec macOS Catalina Xcode11 - New convenience Docker images available in Semaphore's DockerHub Account. A detailed list can be found in the [Docker images changelog](https://github.com/semaphoreci/docker-images/blob/master/CHANGELOG#L2164). ## Week of April 27, 2020 + - New macOS image available - macOS Catalina Xcode11 - Updates to the Ubuntu1804 image: - - Aws-cli 1.18.39 -> 1.18.42 - - Jruby 9.1.17.0 -> 9.2.11.1 - - Heroku 7.39.1 -> 7.39.3 + - Aws-cli 1.18.39 -> 1.18.42 + - Jruby 9.1.17.0 -> 9.2.11.1 + - Heroku 7.39.1 -> 7.39.3 ## Week of April 20, 2020 - Updates to the macOS image: - - `macos-mojave-xcode11` Xcode 11.4.1 installed. To switch version use + - `macos-mojave-xcode11` Xcode 11.4.1 installed. To switch version use `xcversion select 11.4.1`, image spec macOS Mojave Xcode11 - - `macos-mojave-xcode11` Xcode 11.1 and Xcode 11.4 removed from the image. + - `macos-mojave-xcode11` Xcode 11.1 and Xcode 11.4 removed from the image. - Updates to the Ubuntu1804 image: - - TCP port 8000 is no longer occupied. + - TCP port 8000 is no longer occupied. ## Week of April 13, 2020 - Updates to the Ubuntu1804 image: - - Aws-cli 1.18.32 -> 1.18.39 - - Google Chrome 80 -> 81 - - Chromedriver 80 -> 81 - - Erlang 22.2 -> 22.3 - - Go 1.13.8 -> 1.13.9 - - Go 1.14.0 -> 1.14.1 - - Ruby 2.4.9 -> 2.4.10 - - Ruby 2.5.7 -> 2.5.8 - - Ruby 2.6.5 -> 2.6.6 - - Ruby 2.7.0 -> 2.7.1 + - Aws-cli 1.18.32 -> 1.18.39 + - Google Chrome 80 -> 81 + - Chromedriver 80 -> 81 + - Erlang 22.2 -> 22.3 + - Go 1.13.8 -> 1.13.9 + - Go 1.14.0 -> 1.14.1 + - Ruby 2.4.9 -> 2.4.10 + - Ruby 2.5.7 -> 2.5.8 + - Ruby 2.6.5 -> 2.6.6 + - Ruby 2.7.0 -> 2.7.1 ## Week of April 6, 2020 - Updates to the macOS image: - - `macos-mojave-xcode11` Xcode 11.4 installed. To switch version use + - `macos-mojave-xcode11` Xcode 11.4 installed. To switch version use `xcversion select 11.4`, image spec macOS Mojave Xcode11 - - `macos-mojave-xcode11` Xcode 11.0 removed from the image. - - installed packages: - - google-chrome - - firefox - - microsoft-edge + - `macos-mojave-xcode11` Xcode 11.0 removed from the image. + - installed packages: + - google-chrome + - firefox + - microsoft-edge - A new convenience Docker image is available in Semaphore's [dockerhub](https://hub.docker.com/u/semaphoreci). A detailed list can be found in the [Docker images changelog](https://github.com/semaphoreci/docker-images/blob/master/CHANGELOG#L1345). ## Week of March 30, 2020 - Updates to the the Ubuntu1804 image: - - Aws-cli 1.18.21 -> 1.18.28 - - Git 2.25 -> 2.26 - - Heroku 7.39.0 -> 7.39.1 + - Aws-cli 1.18.21 -> 1.18.28 + - Git 2.25 -> 2.26 + - Heroku 7.39.0 -> 7.39.1 - Semaphore Toolbox: - - [autocache](../using-semaphore/optimization/cache) support for Golang (>= 1.11) + - [autocache](../using-semaphore/cache) support for Golang (>= 1.11) ## Week of March 16, 2020 - Additions to the Ubuntu1804 image: - - Elixir 1.10.2 - - Go 1.14 + - Elixir 1.10.2 + - Go 1.14 - Updates to the Ubuntu1804 image: - - Aws-cli 1.18.7 -> 1.18.21 - - Heroku 7.38.2 -> 7.39.0 - - Yarn 1.21.1 -> 1.22.4 + - Aws-cli 1.18.7 -> 1.18.21 + - Heroku 7.38.2 -> 7.39.0 + - Yarn 1.21.1 -> 1.22.4 ## Week of March 02, 2020 - Additions to the Ubuntu1804 image: - - Elixir 1.10.1 - - PHP 7.4.3 + - Elixir 1.10.1 + - PHP 7.4.3 - Updates to the Ubuntu1804 image: - - Aws-cli 1.17.17 -> 1.18.7 - - Erlang 22.1 -> 22.2 - - Go 1.12.10 -> 1.12.17 - - Go 1.13.1 -> 1.13.8 - - Heroku 7.38.1 -> 7.38.2 - - Maven 3.5.4 -> 3.6.3 - - PHP 7.1.32 -> 7.1.33 - - PHP 7.2.27 -> 7.2.28 - - PHP 7.3.11 -> 7.3.15 - - Scala 2.12.7 -> 2.12.10 + - Aws-cli 1.17.17 -> 1.18.7 + - Erlang 22.1 -> 22.2 + - Go 1.12.10 -> 1.12.17 + - Go 1.13.1 -> 1.13.8 + - Heroku 7.38.1 -> 7.38.2 + - Maven 3.5.4 -> 3.6.3 + - PHP 7.1.32 -> 7.1.33 + - PHP 7.2.27 -> 7.2.28 + - PHP 7.3.11 -> 7.3.15 + - Scala 2.12.7 -> 2.12.10 ## Week of February 24, 2020 @@ -4836,14 +4863,14 @@ A detailed list can be found in the [Docker images changelog](https://github.com - Workflow page: clicking on the list of pipeline runs will open and focus on that part of the workflow. - Updates to the Ubuntu1804 image: - - Aws-cli 1.17.9 -> 1.17.17 - - Chrome 79 -> 80 - - Chromedriver 79 -> 80 - - Heroku 7.37.0 -> 7.38.1 - - Nvm 8.16.2 -> 8.17.0 - - Nvm 10.17.0 -> 10.19.0 - - Nvm 12.13.0 -> 12.16.0 - - Npm 6.4.1 -> 6.13.4 + - Aws-cli 1.17.9 -> 1.17.17 + - Chrome 79 -> 80 + - Chromedriver 79 -> 80 + - Heroku 7.37.0 -> 7.38.1 + - Nvm 8.16.2 -> 8.17.0 + - Nvm 10.17.0 -> 10.19.0 + - Nvm 12.13.0 -> 12.16.0 + - Npm 6.4.1 -> 6.13.4 ## Week of February 10, 2020 @@ -4856,37 +4883,38 @@ A detailed list can be found in the [Docker images changelog](https://github.com - Jobs export `SEMAPHORE_WORKFLOW_TRIGGERED_BY_HOOK`, `SEMAPHORE_WORKFLOW_TRIGGERED_BY_SCHEDULE`, and `SEMAPHORE_WORKFLOW_TRIGGERED_BY_API` [environment variables](../reference/env-vars). - Environment setup commands in jobs now have descriptive names. The new command names are: - - `Exporting environment variables` - - `Injecting Files` - - `Setting up the Semaphore Toolbox` - - `Starting an ssh-agent` - - `Connecting to cache` - - You can now override the default Docker command and entrypoint in attached containers. + - `Exporting environment variables` + - `Injecting Files` + - `Setting up the Semaphore Toolbox` + - `Starting an ssh-agent` + - `Connecting to cache` +- You can now override the default Docker command and entrypoint in attached containers. ## Week of February 3, 2020 - Additions to the Ubuntu1804 image: - - libmaxminddb0 - - libmaxminddb-dev + - libmaxminddb0 + - libmaxminddb-dev - Ubuntu1804 kernel settings changes: - - vm.max_map_count=262144 - - fs.inotify.max_user_instances=524288 - - fs.inotify.max_user_watches=524288 - - fs.inotify.max_queued_events=524288 + - vm.max_map_count=262144 + - fs.inotify.max_user_instances=524288 + - fs.inotify.max_user_watches=524288 + - fs.inotify.max_queued_events=524288 - Updates to the Ubuntu1804 image: - - Heroku 7.35.1 -> 7.37.0 - - Java8 u232 -> u242 - - Java11 11.0.5 -> 11.0.6 - - Git-lfs 2.9.2 -> 2.10.0 - - Aws-cli 1.17.2 -> 1.17.9 + - Heroku 7.35.1 -> 7.37.0 + - Java8 u232 -> u242 + - Java11 11.0.5 -> 11.0.6 + - Git-lfs 2.9.2 -> 2.10.0 + - Aws-cli 1.17.2 -> 1.17.9 ## Week of January 27, 2020 + - Updates to the macOS image: - - installed packages: - - `usbmuxd` - - `libimobiledevice` - - `ideviceinstaller` - - `ios-deploy` + - installed packages: + - `usbmuxd` + - `libimobiledevice` + - `ideviceinstaller` + - `ios-deploy` - A new convenience Docker image is available in Semaphore's DockerHub Account: android with `flutter` preinstalled. A detailed list can be found in the [Docker images changelog](https://github.com/semaphoreci/docker-images/blob/master/CHANGELOG#L792). @@ -4896,27 +4924,27 @@ A detailed list can be found in the [Docker images changelog](https://github.com - New: "Jump to a branch or pull request" quick search modal dialog is available on the project page. - Additions to the ubuntu1804 image: - - Python 3.8 - - Snapd + - Python 3.8 + - Snapd - Updates to the Ubuntu1804 image: - - Awc-cli 1.16 -> 1.17.1 - - Firefox esr 68.2.0 -> 68.4.1 - - Geckodriver 0.21.0 -> 0.26.0 - - Java 8 u201 -> u232 - - Java 11.0.2 -> 11.0.5 - - Heroku 7.35.0 -> 7.35.1 - - Git 2.24 -> 2.25 - - Git-LFS 2.9.1 -> 2.9.2 - - Phpunit 7.5.18 -> 7.5.20 + - Awc-cli 1.16 -> 1.17.1 + - Firefox esr 68.2.0 -> 68.4.1 + - Geckodriver 0.21.0 -> 0.26.0 + - Java 8 u201 -> u232 + - Java 11.0.2 -> 11.0.5 + - Heroku 7.35.0 -> 7.35.1 + - Git 2.24 -> 2.25 + - Git-LFS 2.9.1 -> 2.9.2 + - Phpunit 7.5.18 -> 7.5.20 - Updates to the macOS image: - - `macos-mojave-xcode11` Xcode 11.3.1 installed. To switch version use + - `macos-mojave-xcode11` Xcode 11.3.1 installed. To switch version use `xcversion select 11.3.1`, image spec macOS Mojave Xcode11 - - installed packages: - - carthage - - updated gems: - - fastlane (2.140.0) - - cocoapods (1.8.4) + - installed packages: + - carthage + - updated gems: + - fastlane (2.140.0) + - cocoapods (1.8.4) - New convenience Docker images are available in Semaphore's DockerHub Account. A detailed list can be found in the [Docker images changelog](https://github.com/semaphoreci/docker-images/blob/master/CHANGELOG#L528). - We have retroactively updated previous entries in the changelog to mention new features and improvements. @@ -4936,7 +4964,7 @@ A detailed list can be found in the [Docker images changelog](https://github.com rather than for every new line. Several bugs, e.g. related to dealing with very large lines and low baud rate, have been fixed. - Additions to ubuntu1804 image - - Ruby 2.7.0 + - Ruby 2.7.0 ## Week of December 16, 2019 @@ -4946,13 +4974,13 @@ A detailed list can be found in the [Docker images changelog](https://github.com project](https://github.com/semaphoreci-demos/semaphore-demo-react-native) is available. - Updates to the Ubuntu1804 image - - Git-lfs 2.9.1 -> 2.9.2 - - Yarn 1.19.2 -> 1.21.1 - - Chrome 78 -> 79 - - Chromedriver 78 -> 79 - - PhpUnit 7.5.17 -> 7.5.18 - - Phpbrew 1.23.1 -> 1.24.1 - - APT: removed ppa jonathonf/python-2.7 + - Git-lfs 2.9.1 -> 2.9.2 + - Yarn 1.19.2 -> 1.21.1 + - Chrome 78 -> 79 + - Chromedriver 78 -> 79 + - PhpUnit 7.5.17 -> 7.5.18 + - Phpbrew 1.23.1 -> 1.24.1 + - APT: removed ppa jonathonf/python-2.7 ## Week of December 9, 2019 @@ -4963,75 +4991,76 @@ A detailed list can be found in the [Docker images changelog](https://github.com - New: [Open source organizations are available](https://semaphoreci.com/blog/free-open-source-cicd). Each open source organization receives unlimited CI/CD minutes for building public repositories, including Linux, Docker, and macOS-based environments. - New: [Status badges](../using-semaphore/projects#badges). - Updates to the Ubuntu1804 image - - Git-lfs 2.9.0 -> 2.9.1 - - Yarn 1.19.1 -> 1.19.2 + - Git-lfs 2.9.0 -> 2.9.1 + - Yarn 1.19.1 -> 1.19.2 - Additions to the Ubuntu1804 image - - Elixir versions 1.9.2, 1.9.3, 1.9.4 + - Elixir versions 1.9.2, 1.9.3, 1.9.4 ## Week of November 18, 2019 - New: [Monorepo support](../using-semaphore/monorepo). - Updates to the Ubuntu1804 image - - Git 2.23 -> 2.24 - - Heroku 7.33 -> 7.35 + - Git 2.23 -> 2.24 + - Heroku 7.33 -> 7.35 - Additions to the Ubuntu1804 image - - ImageMagick 8:6.9.7.4 + - ImageMagick 8:6.9.7.4 ## Week of November 11, 2019 + - macOS image updates: - - `macos-mojave-xcode11` Xcode 11.2.1 installed. To switch version use + - `macos-mojave-xcode11` Xcode 11.2.1 installed. To switch version use `xcversion select 11.2.1`, image spec macOS Mojave Xcode11 - - nvm pre-installed in `macos-mojave-xcode11` and `macos-mojave-xcode10`, image spec: macOS Mojave Xcode10 - - packages: + - nvm pre-installed in `macos-mojave-xcode11` and `macos-mojave-xcode10`, image spec: macOS Mojave Xcode10 + - packages: - fastlane 2.135.2 - cocoapods 1.8.4 ## Week of November 4, 2019 - - [Status badges](../using-semaphore/projects#badges) are available. - - Semaphore toolbox: - - Fixed an issue with cache corruption during parallel uploads. - - New [environment variables available in Semaphore jobs](../reference/env-vars): - - `SEMAPHORE_AGENT_MACHINE_TYPE` - - `SEMAPHORE_AGENT_MACHINE_OS_IMAGE` - - `SEMAPHORE_AGENT_MACHINE_ENVIRONMENT_TYPE` - - When creating a project, you can select from a collection of ready-made +- [Status badges](../using-semaphore/projects#badges) are available. +- Semaphore toolbox: + - Fixed an issue with cache corruption during parallel uploads. +- New [environment variables available in Semaphore jobs](../reference/env-vars): + - `SEMAPHORE_AGENT_MACHINE_TYPE` + - `SEMAPHORE_AGENT_MACHINE_OS_IMAGE` + - `SEMAPHORE_AGENT_MACHINE_ENVIRONMENT_TYPE` +- When creating a project, you can select from a collection of ready-made configuration recipes. ## Week of October 21, 2019 - Updates to the Ubuntu1804 image - - Pip 19.2 -> 19.3.1 - - Nvm 8.11.3 -> 8.16.2 - - Npm 5.6.0 -> 6.4.1 - - Chrome 77 -> 78 - - Chromedriver 77 -> 78 - - Git-lfs 2.8.0 -> 2.9.0 - - Phpunit 7.15.6 -> 7.15.7 - - Firefox-esr 60 -> 68 - - Ruby 2.3.7 -> 2.3.8 - - Ruby 2.4.4 -> 2.4.9 - - Ruby 2.5.1 -> 2.5.7 - - Ruby 2.6.4 -> 2.6.5 + - Pip 19.2 -> 19.3.1 + - Nvm 8.11.3 -> 8.16.2 + - Npm 5.6.0 -> 6.4.1 + - Chrome 77 -> 78 + - Chromedriver 77 -> 78 + - Git-lfs 2.8.0 -> 2.9.0 + - Phpunit 7.15.6 -> 7.15.7 + - Firefox-esr 60 -> 68 + - Ruby 2.3.7 -> 2.3.8 + - Ruby 2.4.4 -> 2.4.9 + - Ruby 2.5.1 -> 2.5.7 + - Ruby 2.6.4 -> 2.6.5 - Additions - - Nvm 10.17 - - Nvm 12.3 + - Nvm 10.17 + - Nvm 12.3 ## Week of October 14, 2019 - Updates to the Ubuntu1804 image - - Heroku 7.30.0 -> 7.33.3 - - Elixir 1.8.1 -> 1.8.2 - - Elixir 1.9.0 -> 1.9.1 - - Erlang 22.0 -> 22.1 - - Yarn 1.17.3 -> 1.19.1 - - Kerl 1.3.4 -> 1.8.4 - - Rebar3 3.6.1 -> 3.12.0 + - Heroku 7.30.0 -> 7.33.3 + - Elixir 1.8.1 -> 1.8.2 + - Elixir 1.9.0 -> 1.9.1 + - Erlang 22.0 -> 22.1 + - Yarn 1.17.3 -> 1.19.1 + - Kerl 1.3.4 -> 1.8.4 + - Rebar3 3.6.1 -> 3.12.0 ## Week of October 7, 2019 - Updates to the macOS image: - - `macos-mojave-xcode11` Xcode 11.1 installed. To switch version use + - `macos-mojave-xcode11` Xcode 11.1 installed. To switch version use `xcversion select 11.1`, image spec macOS Mojave Xcode11 - You can change which blocks and pipelines send status checks to pull requests on GitHub. [See how here](../reference/semaphore-cli). @@ -5052,25 +5081,25 @@ A detailed list can be found in the [Docker images changelog](https://github.com ## Week of September 23, 2019 - New macOS `os_image` types: - - `macos-mojave-xcode10` with Xcode 10.3 and 10.2.1 installed, macOS Mojave Xcode10 image spec. - - `macos-mojave-xcode11` with Xcode 11.0 installed, macOS Mojave Xcode11 image spec. - - `macos-mojave` is no longer available. + - `macos-mojave-xcode10` with Xcode 10.3 and 10.2.1 installed, macOS Mojave Xcode10 image spec. + - `macos-mojave-xcode11` with Xcode 11.0 installed, macOS Mojave Xcode11 image spec. + - `macos-mojave` is no longer available. - Mojave system update: - - ProductVersion: 10.14.6 - - BuildVersion: 18G95 - - Kernel Version: Darwin 18.7.0 + - ProductVersion: 10.14.6 + - BuildVersion: 18G95 + - Kernel Version: Darwin 18.7.0 - You can now change the initial pipeline file of your project, from `.semaphore/semaphore.yml` to a custom path. This allows you to create multiple Semaphore projects based on the same GitHub repository. The new option is available on the project settings page, or [by editing pipeline_file property of a project](../reference/semaphore-cli#sem-edit) via the release v0.15.0 of the CLI. - Workflow Builder now supports setting [job parallelism](../reference/pipeline-yaml#parallelism-in-jobs). The new option is available by clicking on a block and expanding the advanced configuration section for the job you want to replicate with the parallelism feature. - A new version of CLI v0.16.0 has been released. - - You can change the initial pipeline file of your project. - - A fix for debug jobs from Pull Request/Tags has been released. This bug + - You can change the initial pipeline file of your project. + - A fix for debug jobs from Pull Request/Tags has been released. This bug caused differences in Environment Variables between job and debug sessions. - Visual Workflow Builder is now part of the project setup. ## Week of September 16, 2019 - New feature: Artifacts. Persistent storage of final CI/CD deliverables, intermediary assets, and files for debugging. Now in public beta. - - [Learn more about use cases](../using-semaphore/artifacts) and [how to use the artifacts CLI](../reference/toolbox#artifact). + - [Learn more about use cases](../using-semaphore/artifacts) and [how to use the artifacts CLI](../reference/toolbox#artifact). ## Week of September 9, 2019 @@ -5089,57 +5118,57 @@ A detailed list can be found in the [Docker images changelog](https://github.com ## Week of August 19, 2019 - New feature: the [`parallelism` property](../reference/pipeline-yaml#parallelism-in-jobs), used to easily generate parallel jobs. -- Docker-based agents can now [use private container images from any registry](../using-semaphore/optimization/docker#registries). +- Docker-based agents can now [use private container images from any registry](../using-semaphore/containers/docker#registries). ## Week of August 12, 2019 - Updates to the Ubuntu 18.04 VM image: - - Chrome and ChromeDriver updated to version 76 - - docker-ce updated to 19.03.1 - - git-lfs updated to 2.8.0 - - heroku updated to 7.27.1 - - java 8 updated to u222 - - java 11 updated to 11.0.4 - - phpunit updated to 7.5.14 - - pip updated to 19.2.1 - - yarn updated to 1.17.3 + - Chrome and ChromeDriver updated to version 76 + - docker-ce updated to 19.03.1 + - git-lfs updated to 2.8.0 + - heroku updated to 7.27.1 + - java 8 updated to u222 + - java 11 updated to 11.0.4 + - phpunit updated to 7.5.14 + - pip updated to 19.2.1 + - yarn updated to 1.17.3 ## Week of August 5, 2019 - New feature: [Global job configuration](../reference/pipeline-yaml#global-job-config). Used to define common configuration and apply it across all blocks in a pipeline. - You can now whitelist contributors who can run Semaphore workflows for your organization when they submit a pull request from a fork. You can also whitelist secrets to be exposed. See your project's Settings in the web UI to do this. -- Docker-based agents can now use [private container images](../using-semaphore/optimization/docker#registries) from Google Container Registry. -- [Dependency caching](../using-semaphore/optimization/cache) is now much simpler. Just write `cache restore` and `cache store` and Semaphore will configure for common language dependencies. +- Docker-based agents can now use [private container images](../using-semaphore/containers/docker#registries) from Google Container Registry. +- [Dependency caching](../using-semaphore/cache) is now much simpler. Just write `cache restore` and `cache store` and Semaphore will configure for common language dependencies. - macOS platform: - - Flutter version update to v1.8.3 - - New image spec - macOS Mojave + - Flutter version update to v1.8.3 + - New image spec - macOS Mojave ## Week of July 29, 2019 - New features: [Pull request and Git tag support](../using-semaphore/workflows#workflow-triggers). Have full control over which GitHub triggers new workflows. Choose from default branch only, any push to any branch, push to pull requests, and push to pull requests from forked repositories. - - As a bonus, you can turn off exposure of secrets in forked pull requests. - - The project page can now show activity from branches, pull requests, and + - As a bonus, you can turn off exposure of secrets in forked pull requests. + - The project page can now show activity from branches, pull requests, and tags separately. - New feature: [Auto-cancel pipeline strategies](../reference/pipeline-yaml#auto-cancel). You can stop running a pipelines when there are newer commits in the repo. To do this use the new `auto_cancel` property in your pipeline configuration. - macOS platform: - - Xcode 11 Beta version update 5 (11M382q). - - Xcode 10.3 with default simulators preinstalled on Mojave image. - - Flutter version updated to v1.7.8+hotfix.4. - - Fastlane version updated to 2.128.1. - - Cocoapods version updated to 1.7.5. - - New image spec - macOS Mojave + - Xcode 11 Beta version update 5 (11M382q). + - Xcode 10.3 with default simulators preinstalled on Mojave image. + - Flutter version updated to v1.7.8+hotfix.4. + - Fastlane version updated to 2.128.1. + - Cocoapods version updated to 1.7.5. + - New image spec - macOS Mojave - New [environment variables available in Semaphore jobs](../reference/env-vars): - - `SEMAPHORE_GIT_REPO_SLUG` - - `SEMAPHORE_GIT_REF_TYPE` - - `SEMAPHORE_GIT_REF` - - `SEMAPHORE_GIT_COMMIT_RANGE` - - `SEMAPHORE_GIT_TAG_NAME` - - `SEMAPHORE_GIT_PR_SLUG` - - `SEMAPHORE_GIT_PR_SHA` - - `SEMAPHORE_GIT_PR_NUMBER` - - `SEMAPHORE_GIT_PR_NAME` - - `SEMAPHORE_ORGANIZATION_URL` + - `SEMAPHORE_GIT_REPO_SLUG` + - `SEMAPHORE_GIT_REF_TYPE` + - `SEMAPHORE_GIT_REF` + - `SEMAPHORE_GIT_COMMIT_RANGE` + - `SEMAPHORE_GIT_TAG_NAME` + - `SEMAPHORE_GIT_PR_SLUG` + - `SEMAPHORE_GIT_PR_SHA` + - `SEMAPHORE_GIT_PR_NUMBER` + - `SEMAPHORE_GIT_PR_NAME` + - `SEMAPHORE_ORGANIZATION_URL` ## Week of July 22, 2019 @@ -5147,8 +5176,8 @@ A detailed list can be found in the [Docker images changelog](https://github.com - New feature: [fail-fast on the first failure](../using-semaphore/pipelines#fail-fast). Now you can stop everything in your pipeline as soon as a failure is detected, or stops only the jobs and blocks in your pipeline that haven't yet started. - A new global sidebar that uses less screen real estate, and lets you star projects and dashboards so they appear on top of the list. Also, it loads really fast. - A new version of CLI v0.14.1 has been released. - - You can now configure pull-request related settings by editing the project - - A fix for the race condition between toolbox installation and debug session + - You can now configure pull-request related settings by editing the project + - A fix for the race condition between toolbox installation and debug session initialization has been released. This bug manifested as "unknown command checkout" if the debug session entry happened before the toolbox installation finished in the machine. ## Week of July 15, 2019 @@ -5158,20 +5187,20 @@ A detailed list can be found in the [Docker images changelog](https://github.com ## Week of July 1, 2019 -- AWS ECR support for Docker-based environments: host your private Docker images on AWS and use them to define your [custom CI/CD environment](../using-semaphore/optimization/docker#registries) on Semaphore. +- AWS ECR support for Docker-based environments: host your private Docker images on AWS and use them to define your [custom CI/CD environment](../using-semaphore/containers/docker#registries) on Semaphore. - [Skip CI](../using-semaphore/workflows#skip): If you add `[skip ci]` or `[ci skip]` to your Git commit message, Semaphore will not trigger a new workflow. - The context of [Github Status checks](https://developer.github.com/v3/repos/statuses/) has been changed to include information about build source, which can be one of the following: - - `ci/semaphoreci/push` - - `ci/semaphoreci/pr` - - `ci/semaphoreci/tag` + - `ci/semaphoreci/push` + - `ci/semaphoreci/pr` + - `ci/semaphoreci/tag` [Please update your settings on GitHub](https://help.github.com/en/articles/enabling-required-status-checks) if you are using protected branches with required status checks. ## Week of June 24, 2019 - macOS platform: - - Xcode 11 Beta with default simulators preinstalled on Mojave image. - - macOS Mojave updated to 10.14.5. + - Xcode 11 Beta with default simulators preinstalled on Mojave image. + - macOS Mojave updated to 10.14.5. ## Week of June 10, 2019 @@ -5184,25 +5213,25 @@ A detailed list can be found in the [Docker images changelog](https://github.com - Launched support for skipping blocks based on conditions, e.g. `branch != 'master'`. Read more about [skipping blocks](../using-semaphore/jobs#skip-run) and the introduction of the [Conditions domain specific language](../reference/conditions-dsl) that allows the expression of complex conditional rules in your pipelines. - Owners and admins can now set [Budget Alerts](./faq#budget-alerts). - New Semaphore approved convenience Docker images have been released: - - [Alpine](https://hub.docker.com/r/semaphoreci/alpine) - - [Android](https://hub.docker.com/r/semaphoreci/android) - - [Clojure](https://hub.docker.com/r/semaphoreci/clojure) - - [Elixir](https://hub.docker.com/r/semaphoreci/elixir) - - [Golang](https://hub.docker.com/r/semaphoreci/golang) - - [Haskell](https://hub.docker.com/r/semaphoreci/haskell) - - [Node](https://hub.docker.com/r/semaphoreci/node) - - [Openjdk](https://hub.docker.com/r/semaphoreci/openjdk) - - [Php](https://hub.docker.com/r/semaphoreci/php) - - [Python](https://hub.docker.com/r/semaphoreci/python) - - [Ruby](https://hub.docker.com/r/semaphoreci/ruby) - - [Rust](https://hub.docker.com/r/semaphoreci/rust) - - [Ubuntu](https://hub.docker.com/r/semaphoreci/ubuntu) + - [Alpine](https://hub.docker.com/r/semaphoreci/alpine) + - [Android](https://hub.docker.com/r/semaphoreci/android) + - [Clojure](https://hub.docker.com/r/semaphoreci/clojure) + - [Elixir](https://hub.docker.com/r/semaphoreci/elixir) + - [Golang](https://hub.docker.com/r/semaphoreci/golang) + - [Haskell](https://hub.docker.com/r/semaphoreci/haskell) + - [Node](https://hub.docker.com/r/semaphoreci/node) + - [Openjdk](https://hub.docker.com/r/semaphoreci/openjdk) + - [Php](https://hub.docker.com/r/semaphoreci/php) + - [Python](https://hub.docker.com/r/semaphoreci/python) + - [Ruby](https://hub.docker.com/r/semaphoreci/ruby) + - [Rust](https://hub.docker.com/r/semaphoreci/rust) + - [Ubuntu](https://hub.docker.com/r/semaphoreci/ubuntu) - Version `v0.13.0` of the Semaphore CLI has been released. - - `sem debug job` works without configuring the CLI with an SSH key. Keys are now generated server side. - - `sem attach` can attach to any running job without the need to inject public SSH keys as part of your Pipeline configuration. - - Debugging and attaching to jobs works for Docker-based CI/CD environments - - Read the updated documentation rearding [Debugging with SSH Access](../using-semaphore/jobs#debug-jobs). + - `sem debug job` works without configuring the CLI with an SSH key. Keys are now generated server side. + - `sem attach` can attach to any running job without the need to inject public SSH keys as part of your Pipeline configuration. + - Debugging and attaching to jobs works for Docker-based CI/CD environments + - Read the updated documentation rearding [Debugging with SSH Access](../using-semaphore/jobs#debug-jobs). Upgrade to the latest CLI version: @@ -5214,19 +5243,19 @@ curl https://storage.googleapis.com/sem-cli-releases/get.sh | bash - [iOS support is in GA](https://semaphoreci.com/blog/introducing-ios-cicd): Semaphore now supports building, testing, and deploying applications for any Apple device. - macOS platform: - - Xcode upgraded to 10.2.1 + - Xcode upgraded to 10.2.1 - New feature: [schedule CI/CD workflows](../using-semaphore/tasks) using standard Cron syntax. ## Week of Apr 22, 2019 - [Fastlane plugin](https://github.com/semaphoreci/fastlane-plugin-semaphore) is now available. - Platform updates: - - Chrome 74, ChromeDriver 74 - - Heroku 7.24.1 - - Git-lfs 2.7.2 - - Pip 19.1 - - Phpunit 7.5.9 - - Removed Oracle Java 7,9,10; Java 8 and 11 are now based on OpenJDK. + - Chrome 74, ChromeDriver 74 + - Heroku 7.24.1 + - Git-lfs 2.7.2 + - Pip 19.1 + - Phpunit 7.5.9 + - Removed Oracle Java 7,9,10; Java 8 and 11 are now based on OpenJDK. ## Week of Apr 15, 2019 @@ -5237,7 +5266,6 @@ curl https://storage.googleapis.com/sem-cli-releases/get.sh | bash - Jobs now export `PAGER=cat`. This prevents some commands from waiting indefinitely for user input, such as `git log`. - Job logs are now fully UTF-8 compliant. - ## Week of Apr 8, 2019 - New feature: [Run jobs inside a custom Docker container](../using-semaphore/pipelines#docker-environments) (beta). @@ -5247,11 +5275,11 @@ curl https://storage.googleapis.com/sem-cli-releases/get.sh | bash ## Week of Mar 25, 2019 - Platform updates: - - Chrome 73 - - Elixir 1.8.1 - - Go 1.12.1 - - Ruby versions >=2.6.0 have bundler 2.0.1 and rubygems>3 preinstalled - - Scala 2.12.7 + - Chrome 73 + - Elixir 1.8.1 + - Go 1.12.1 + - Ruby versions >=2.6.0 have bundler 2.0.1 and rubygems>3 preinstalled + - Scala 2.12.7 ## Week of Mar 18, 2019 @@ -5260,8 +5288,8 @@ curl https://storage.googleapis.com/sem-cli-releases/get.sh | bash ## Week of Mar 12, 2019 - Platform updates: - - Heroku 7.22.4 - - Libvirt, qemu, virsh are now part of the Ubuntu VM image, with virtual network `192.168.123.0/24` + - Heroku 7.22.4 + - Libvirt, qemu, virsh are now part of the Ubuntu VM image, with virtual network `192.168.123.0/24` ## Week of Feb 25, 2019 @@ -5273,14 +5301,14 @@ curl https://storage.googleapis.com/sem-cli-releases/get.sh | bash a red box. - Fixed an issue with sliders on Linux/Chrome. - Platform additions: - - Go 1.12 - - libvirt-bin, qemu-kvm, and virtinst + - Go 1.12 + - libvirt-bin, qemu-kvm, and virtinst - Platform updates: - - git 2.21 - - git-lfs 2.7.1 - - gradle 5.2 - - heroku to 7.22.2 - - sbt 0.13.17 + - git 2.21 + - git-lfs 2.7.1 + - gradle 5.2 + - heroku to 7.22.2 + - sbt 0.13.17 a handy page of practical examples of CI/CD pipelines, with links to open source repositories that you can copy and use. ## Week of Feb 18, 2019 @@ -5298,16 +5326,16 @@ curl https://storage.googleapis.com/sem-cli-releases/get.sh | bash is now available in Semaphore 2.0! Using the command-line interface remains an option, of course. - Platform: - - Added new APT mirrors for faster apt-get installations in the Ubuntu1804 image. - - Chrome updated to 72. - - Heroku CLI updated to 7.21. + - Added new APT mirrors for faster apt-get installations in the Ubuntu1804 image. + - Chrome updated to 72. + - Heroku CLI updated to 7.21. ## Week of Feb 4, 2019 - Platform: - - ChromeDriver updated to 2.46. - - Added Ruby 2.6.0, 2.6.1. - - If a repository contains a `.ruby-version` file, Semaphore automatically fetches + - ChromeDriver updated to 2.46. + - Added Ruby 2.6.0, 2.6.1. + - If a repository contains a `.ruby-version` file, Semaphore automatically fetches a pre-built version of the specified Ruby. ## Week of Jan 28, 2019 diff --git a/docs/docs/getting-started/faq.md b/docs/docs/getting-started/faq.md index 30805c591..40f251aa2 100644 --- a/docs/docs/getting-started/faq.md +++ b/docs/docs/getting-started/faq.md @@ -96,7 +96,7 @@ In order to change your credit card or PayPal information, follow these steps: ### Can I change my billing information? -Yes. If you want to change the recipient name, company name, address, phone number, billing email, VAT ID, or country on the invoice, please get in touch with us at: support@semaphoreci.com +Yes. If you want to change the recipient name, company name, address, phone number, billing email, VAT ID, or country on the invoice, please get in touch with us at: `support@semaphoreci.com` :::note @@ -108,9 +108,9 @@ Billing change requests must originate from a user with Admin or Owner permissio Not directly from the Semaphore website. After a subscription has been purchased, users can't add or change a VAT number (VAT ID) from the UI. -If you wish to change the VAT number associated with your subscription, please get in touch with support@semaphoreci.com with the VAT number you want to add and we will gladly make it happen. +If you wish to change the VAT number associated with your subscription, please get in touch with `support@semaphoreci.com` with the VAT number you want to add and we will gladly make it happen. -For security reasons, these requests **must originate from an email** linked to a user with the [Owner role](../using-semaphore/rbac#org-owner), or from the current Billing contact associated with the organization’s FastSpring subscription. This ensuress that only authorized individuals can make changes to the billing information. +For security reasons, these requests **must originate from an email** linked to a user with the [Owner role](../using-semaphore/rbac#org-owner), or from the current Billing contact associated with the organization’s FastSpring subscription. This ensures that only authorized individuals can make changes to the billing information. ### Will I get an invoice? @@ -120,15 +120,15 @@ You can also find your invoices at the bottom of the **Plans & Billing** in your ### What is your refund policy? -Apart from cases of extended downtime (multiple hours in a day, or multiple days in a month), we do not offer refunds. +Apart from cases of extended downtime (multiple hours in a day, or multiple days in a month), we do not offer refunds. -We will, however, consider requests for refunds in extenuating circumstances. If you would like to request a refund, please email us at billing@semaphoreci.com and our team will do what we can to work out a solution. +We will, however, consider requests for refunds in extenuating circumstances. If you would like to request a refund, please email us at `billing@semaphoreci.com` and our team will do what we can to work out a solution. Please include the affected Workflow ID when contacting our Billing team regarding refunds. ### Why are you still charging my old credit card? -If you’ve added a new credit card to the subscription, but the old one is still being charged, it means that the new credit card wasn't properly marked for usage. +If you’ve added a new credit card to the subscription, but the old one is still being charged, it means that the new credit card wasn't properly marked for usage. Here’s how to do that: @@ -182,6 +182,7 @@ Yes. To do that, follow these steps: git submodule init git submodule update ``` + 2. Append the these commands in the [epilogue](../using-semaphore/jobs#epilogue) ```shell @@ -190,11 +191,11 @@ Yes. To do that, follow these steps: -Make sure that Semaphore has permissions to clone your submodules repository. +Make sure that Semaphore has permissions to clone your submodules repository. ### Can I redeliver webhooks from Github to Semaphore? -Yes. Rarely Semaphore does not receive a webhook from GitHub. This results in a workflow not being triggered. When this happens, you can redeliver the webhook to trigger the workflow. +Yes. Rarely Semaphore does not receive a webhook from GitHub. This results in a workflow not being triggered. When this happens, you can redeliver the webhook to trigger the workflow. These are the steps to redeliver webhooks from Github: @@ -207,7 +208,7 @@ These are the steps to redeliver webhooks from Github: ### Can I send a comment on a pull request on GitHub from a workflow? -Yes. You can use the [GitHub API](https://docs.github.com/en/rest/issues?apiVersion=2022-11-28#create-an-issue-comment) to comment on pull requests. +Yes. You can use the [GitHub API](https://docs.github.com/en/rest/issues?apiVersion=2022-11-28#create-an-issue-comment) to comment on pull requests. For example: @@ -288,7 +289,7 @@ Yes. Semaphore provides template support on [parameterized promotions](../using- ### Can I change the timezone? -The default timezone is UTC. The timezone can be changed in 2 ways in Linux agents: +The default timezone is UTC. The timezone can be changed in 2 ways in Linux agents: - Assign a different value to the TZ environment variable: @@ -365,15 +366,13 @@ While an issue is ongoing, you might consider using a shorter [execution_time_li ::: - ### Why is my job failing if all commands have passed? This can happen because of code coverage tools, e.g. simplecov, which can be set to fail the test suite if a [minimum coverage level is not achieved](https://github.com/simplecov-ruby/simplecov#minimum-coverage). - ### Why are tests passing locally but not on Semaphore? -The main reason for this behavior is differences in the stacks. As a first step, ensure that the same versions of languages, services, tools, and frameworks such as Selenium, browser drivers, Capybara, Cypress are used both locally and in the CI environment. +The main reason for this behavior is differences in the stacks. As a first step, ensure that the same versions of languages, services, tools, and frameworks such as Selenium, browser drivers, Capybara, Cypress are used both locally and in the CI environment. To achieve this, use [sem-service](../reference/toolbox#sem-service), [sem-version](../reference/toolbox#sem-version), and the OS package manager. Environment variables can also lead to unexpected behaviors, for instance, Semaphore will set `CI=true` by default. @@ -389,7 +388,7 @@ You might be hitting the quota limitation. To see your activity across the organ 2. Select Activity Monitor 3. Check your agent usage, jobs won't start until a suitable agent is free -You can also run [`sem get jobs`](../reference/semaphore-cli#sem-get-job) to display all running jobs to confirm how much of the quota is being used. +You can also run [`sem get jobs`](../reference/semaphore-cli#sem-get-job) to display all running jobs to confirm how much of the quota is being used. ### Why does my job fail when I specify "exit 0" in commands? @@ -411,7 +410,7 @@ Some commands like `bash -e` or `set -x otrace` may override this behavior and m This is commonly due to a rate-limit of third-party providers such as Docker Hub. These services limit how many unauthenticated pulls you can do in an hour, often based on IP. The machine you are running your jobs on may have been provisioned for another user, resulting in that particular IP being rate-limited. -You can bypass this issue by creating a free account on Docker Hub, and then [authenticating with Docker](../using-semaphore/optimization/docker#auth) within the job. This way, the [pulls are limited by your account (100 per hour)](https://docs.docker.com/docker-hub/usage/), and not by the IP of the machine. +You can bypass this issue by creating a free account on Docker Hub, and then [authenticating with Docker](../using-semaphore/containers/docker#auth) within the job. This way, the [pulls are limited by your account (100 per hour)](https://docs.docker.com/docker-hub/usage/), and not by the IP of the machine. :::tip @@ -423,7 +422,6 @@ If you cannot authenticate, you can use other third-party Docker registries such If you have a pull request stuck when using GitHub, check if you have renamed the pipeline recently. If you did, see how to [fix stuck PRs on GitHub](../using-semaphore/connect-github#stuck-pr) - ## Project ### Can I transfer ownership of a project? @@ -442,7 +440,7 @@ To change the project ownership: After project ownership has been transferred, you need to push a new commit. Old workflows cannot be re-run after transferring ownership. -If you come across any issues, please reach out to support@semaphoreci.com and include the name of the project and the GitHub/Bitbucket username of the new owner in your message. +If you come across any issues, please reach out to `support@semaphoreci.com` and include the name of the project and the GitHub/Bitbucket/GitLab username of the new owner in your message. ### Can I rename a project? @@ -474,7 +472,6 @@ Deleting a project cannot be reversed. ::: - ### Can I change the visibility of a project? Yes. To make the project visible or private follow these steps: @@ -484,7 +481,6 @@ Yes. To make the project visible or private follow these steps: 3. Click the link next to **Public** or **Private** to toggle the visibility 4. Press **Save Changes** - ### Why can't I make my project private? This might be a limitation related to the plan your organization is using. Open-source and free plans cannot create private projects. @@ -506,13 +502,12 @@ If you are using a [filter for contributors](../using-semaphore/workflows#projec Approving forked pull requests is limited to new comments only and is not possible for comment edits. Due to security concerns, `/sem-approve` will work only once. Subsequent pushes to the forked pull request must be approved again. - ### How do I fix the error "Revision: COMMIT_SHA not found. Exiting" This happens when the repository receives pushed while Semaphore is still processing the incoming webhook. For example, when someone modifies or removes with a `git rebase` or `git commit --amend` command followed by a `git push --force` shortly after. You can prevent this error by enabling the [auto-cancel](../using-semaphore/pipelines#auto-cancel) option in the pipeline. - + ### Why are my workflows not running in parallel? Git pushes to the same branch are [queued](../using-semaphore/pipelines#pipeline-queues) by default. Pushes to different branches do run in parallel. You can use [named queues in your pipelines](../using-semaphore/pipelines#named-queues) to better control how workflows are parallelized or activate [auto-cancel](../using-semaphore/pipelines#auto-cancel) to stop running pipelines when new pushes arrive to the queue. @@ -571,4 +566,3 @@ Enabling the `set -e` option in the Bash shell causes autocomplete to fail and e ### Why are my secrets empty? We have discontinued exposing secret content via the CLI, API, and web interface to ensure enhanced security measures. Retrieval of secret values is now exclusively available through the job mechanism. - diff --git a/docs/docs/getting-started/migration/bitbucket.md b/docs/docs/getting-started/migration/bitbucket.md index 1b732f186..63a0bfc38 100644 --- a/docs/docs/getting-started/migration/bitbucket.md +++ b/docs/docs/getting-started/migration/bitbucket.md @@ -33,10 +33,8 @@ Checkout is implicit in all Travis CI workflows by default. - Semaphore does not clone the repository by default. This is because there are certain scenarios in which you don't need the code or you want to customize the cloning process. - To clone the repository in Semaphore we only need to execute [`checkout`](../../reference/toolbox#checkout). ```shell @@ -46,7 +44,6 @@ checkout cat README.md ``` - @@ -92,7 +89,6 @@ pipelines: - In Semaphore, we use the [artifact](../../reference/toolbox#artifact) command to download and upload files to the artifact store. The following command stores `test.log` from any job: @@ -109,7 +105,6 @@ artifact pull workflow test.log See [artifacts](../../using-semaphore/artifacts) for more details. - @@ -153,7 +148,7 @@ bundle install cache store ``` -See [caching](../../using-semaphore/optimization/cache) for more details. +See [caching](../../using-semaphore/cache) for more details. @@ -161,7 +156,6 @@ See [caching](../../using-semaphore/optimization/cache) for more details. We often need to activate specific language or tool versions to ensure consistent builds. - @@ -261,14 +255,12 @@ pipelines: - -In Semaphore, we create the [secret](../../using-semaphore/secrets) at the organization or project level and activate it on a block. +In Semaphore, we create the [secret](../../using-semaphore/secrets) at the organization or project level and activate it on a block. The secret contents are automatically injected as environment variables in all jobs contained on that block. ![Using secrets on Semaphore](./img/secrets.jpg) - diff --git a/docs/docs/getting-started/migration/circle.md b/docs/docs/getting-started/migration/circle.md index 3e8c0ee03..1c141d2eb 100644 --- a/docs/docs/getting-started/migration/circle.md +++ b/docs/docs/getting-started/migration/circle.md @@ -75,15 +75,14 @@ global_job_config: - ### Language versions -Both CircleCI and Semaphore allow you to use specific language versions. +Both CircleCI and Semaphore allow you to use specific language versions. -CircleCI uses a language-specific setup orb. +CircleCI uses a language-specific setup orb. The following example sets the Ruby version to `3.3.4` @@ -101,10 +100,11 @@ jobs: version: '3.3.4' # highlight-end ``` + -Semaphore uses [sem-version](../../reference/toolbox#sem-version) to activate or switch language versions in the CI environment. +Semaphore uses [sem-version](../../reference/toolbox#sem-version) to activate or switch language versions in the CI environment. The following example activates Ruby v3.3.4, any commands after the example run on this Ruby version. @@ -124,7 +124,6 @@ jobs: - ### Caching Both CircleCI and Semaphore support manual file caching. @@ -167,7 +166,7 @@ The following commands, when added to a job downloads, cache, and install Gems i - cache store ``` -See [caching](../../using-semaphore/optimization/cache) for more details. +See [caching](../../using-semaphore/cache) for more details. @@ -177,7 +176,6 @@ See [caching](../../using-semaphore/optimization/cache) for more details. - ### Database and services Both CircleCI and Semaphore support starting databases and services via Docker containers. @@ -219,7 +217,7 @@ jobs: - sem-service start redis # highlight-end ``` - + @@ -291,7 +289,7 @@ Secrets inject sensitive data and credentials into the workflow securely. -CircleCI uses contexts instead of secrets. You must create the context and its value through the UI. +CircleCI uses contexts instead of secrets. You must create the context and its value through the UI. Then, you can use the `context` keyword to include it in your jobs. ```yaml @@ -308,7 +306,7 @@ workflows: -On Semaphore, we create the [secret](../../using-semaphore/secrets) at the organization or project level and activate it on a block. +On Semaphore, we create the [secret](../../using-semaphore/secrets) at the organization or project level and activate it on a block. The secret's contents are automatically injected as environment variables in all jobs in that block. @@ -335,13 +333,12 @@ global_job_config: -On Semaphore, we create the [secret](../../using-semaphore/secrets) at the organization or project level and activate it on a block. +On Semaphore, we create the [secret](../../using-semaphore/secrets) at the organization or project level and activate it on a block. The secret's contents are automatically injected as environment variables in all jobs in that block. ![Using secrets on Semaphore](./img/secrets.jpg) - @@ -543,7 +540,6 @@ blocks: - ## See also - [Migration guide for CircleCI](./circle) diff --git a/docs/docs/getting-started/migration/github-actions.md b/docs/docs/getting-started/migration/github-actions.md index e109ddf3a..2965f0c1f 100644 --- a/docs/docs/getting-started/migration/github-actions.md +++ b/docs/docs/getting-started/migration/github-actions.md @@ -74,15 +74,14 @@ global_job_config: - ### Language versions -Both Github Actions and Semaphore allow you to use specific language versions. +Both Github Actions and Semaphore allow you to use specific language versions. -GitHub Actions uses a language-specific setup action. +GitHub Actions uses a language-specific setup action. The following example sets the Ruby version to `3.3.4` @@ -94,10 +93,11 @@ jobs: with: ruby-version: '3.3.4' ``` + -Semaphore uses [sem-version](../../reference/toolbox#sem-version) to activate or switch language versions in the CI environment. +Semaphore uses [sem-version](../../reference/toolbox#sem-version) to activate or switch language versions in the CI environment. The following example activates Ruby v3.3.4, any commands after the example run on this Ruby version. @@ -116,7 +116,6 @@ jobs: - ### Caching Both GitHub Actions and Semaphore support manual file caching. @@ -150,7 +149,7 @@ The following commands, when added to a job downloads, cache, and install Gems i - cache store ``` -See [caching](../../using-semaphore/optimization/cache) for more details. +See [caching](../../using-semaphore/cache) for more details. @@ -160,7 +159,6 @@ See [caching](../../using-semaphore/optimization/cache) for more details. - ### Database and services Both Github Actions and Semaphore support starting databases and services via Docker containers. @@ -199,7 +197,7 @@ jobs: - sem-service start postgres - sem-service start redis ``` - + @@ -310,13 +308,12 @@ global_job_config: -On Semaphore, we create the [secret](../../using-semaphore/secrets) at the organization or project level and activate it on a block. +On Semaphore, we create the [secret](../../using-semaphore/secrets) at the organization or project level and activate it on a block. The secret's contents are automatically injected as environment variables in all jobs in that block. ![Using secrets on Semaphore](./img/secrets.jpg) - @@ -479,7 +476,6 @@ blocks: - ## See also - [Migration guide for CircleCI](./circle) diff --git a/docs/docs/getting-started/migration/overview.md b/docs/docs/getting-started/migration/overview.md index 2d531f126..19355086e 100644 --- a/docs/docs/getting-started/migration/overview.md +++ b/docs/docs/getting-started/migration/overview.md @@ -27,7 +27,7 @@ Here is the recommended plan to migrate from any CI provider to Semaphore. Write down your goals and reasons for migrating your CI to Semaphore. For example, you might wish to reduce costs or speed up your builds. Setting expectations from the get-go will make the whole migration process clearer and more straightforward. - If at any point in the process, you have doubts, contact us at support@semaphoreci.com. We want this process to be as smooth and painless as possible. + If at any point in the process, you have doubts, contact us at `support@semaphoreci.com`. We want this process to be as smooth and painless as possible. 2. Compare features @@ -36,7 +36,7 @@ Here is the recommended plan to migrate from any CI provider to Semaphore. - Must have - Nice to have - Optional - + Compare the list against [Semaphore Features](https://semaphoreci.com/pricing). Some of the requirements can be implemented in several ways by combining several features. 3. Create a proof of concept in Semaphore @@ -45,35 +45,33 @@ Here is the recommended plan to migrate from any CI provider to Semaphore. - [Connect your GitHub](../../using-semaphore/connect-github) or [connect your BitBucket](../../using-semaphore/connect-bitbucket) repository to Semaphore - Configure a CI pipeline, the objective is to reach a green build. See the [Guided Tour](../guided-tour) to get an overview of Semaphore - + The following pages describe key features you might need for the migration: - [How to create jobs](../../using-semaphore/jobs) - [Persist data with Artifacts](../../using-semaphore/artifacts) - [How to use Docker Environments](../../using-semaphore/pipelines#docker-environments) - - [How to use the Cache](../../using-semaphore/optimization/cache) + - [How to use the Cache](../../using-semaphore/cache) - [Using promotions for Continuous Delivery](../../using-semaphore/promotions) - [How to specify language versions](../../reference/toolbox#sem-version) - 4. Optimize performance Once your project is building on Semaphore, begin optimizing for performance. - Pick the best [machine type](../../reference/machine-types) for the CI pipeline - - Learn and implement the optimization strategies like [caching](../../using-semaphore/optimization/cache), [fail-fast](../../using-semaphore/pipelines#fail-fast), and [auto-cancel](../../using-semaphore/pipelines#auto-cancel) + - Learn and implement the optimization strategies like [caching](../../using-semaphore/cache), [fail-fast](../../using-semaphore/pipelines#fail-fast), and [auto-cancel](../../using-semaphore/pipelines#auto-cancel) 5. Optimize costs Once you have your project running, you can track your spending in the [Plans & Billing page](../../using-semaphore/billing). The figure to optimize is the cost-per-pipeline. In other words, you should balance the cost of running your CI pipeline against the expected performance. - + You want to focus on the CI pipeline because it accounts for the vast majority of your usage, so optimizing this value has the most impact on your costs. You can optimize your costs by trying different [machine types](../../reference/machine-types), using [skip conditions](../../using-semaphore/jobs#skip-run), testing different levels of [job parallelism](../../using-semaphore/jobs#job-parallelism) and exploring [pipeline queues](../../using-semaphore/pipelines#pipeline-queues) - 6. Onboard your team Once satisfied with your CI workflow it's time to onboard the rest of your team: diff --git a/docs/docs/getting-started/migration/travis.md b/docs/docs/getting-started/migration/travis.md index 135e0ff24..382150837 100644 --- a/docs/docs/getting-started/migration/travis.md +++ b/docs/docs/getting-started/migration/travis.md @@ -37,7 +37,6 @@ Checkout is implicit in all Travis CI workflows by default. Semaphore does not clone the repository by default. This is because there are certain scenarios in which you don't need the code or you want to customize the cloning process. - To clone the repository in Semaphore we only need to execute [`checkout`](../../reference/toolbox#checkout). ```shell @@ -68,7 +67,7 @@ addons: paths: - $HOME/project/test.log # highlight-end -``` +``` @@ -122,19 +121,19 @@ bundle install cache store ``` -See [caching](../../using-semaphore/optimization/cache) for more details. +See [caching](../../using-semaphore/cache) for more details. ### Language versions -Both Travis CI and Semaphore allow you to use specific language versions. +Both Travis CI and Semaphore allow you to use specific language versions. -Travis CI uses a language-specific setup keyword. +Travis CI uses a language-specific setup keyword. The following example sets the Ruby version to `3.3.4` @@ -147,7 +146,7 @@ rvm: -Semaphore uses [sem-version](../../reference/toolbox#sem-version) to activate or switch language versions in the CI environment. +Semaphore uses [sem-version](../../reference/toolbox#sem-version) to activate or switch language versions in the CI environment. The following example activates Ruby v3.3.4, any commands after the example run on this Ruby version. @@ -182,7 +181,7 @@ The following example starts Redis on the default port (6379) ```shell sem-service start redis ``` - + @@ -210,7 +209,7 @@ Using encrypted files uses a different system that's a bit more convoluted. In Semaphore, secrets are stored on the Semaphore organization or project. Encryption and decryption is automatically handled for environment variables and files. -First, we create a [secret](../../using-semaphore/secrets) at the organization or project level and activate it on a block. +First, we create a [secret](../../using-semaphore/secrets) at the organization or project level and activate it on a block. The secret contents are automatically injected as environment variables in all jobs contained on that block. diff --git a/docs/docs/reference/agent-aws-stack.md b/docs/docs/reference/agent-aws-stack.md index 77af843f5..af47a803b 100644 --- a/docs/docs/reference/agent-aws-stack.md +++ b/docs/docs/reference/agent-aws-stack.md @@ -14,7 +14,6 @@ import Steps from '@site/src/components/Steps'; This page describes all the settings available to configure [AWS Autoscaler Stack](../using-semaphore/self-hosted-aws). - ## Overview The AWS Autoscaler Stack accepts configuration settings in two ways: @@ -54,7 +53,6 @@ The AWS Autoscaler Stack accepts configuration settings in two ways: See [Autoscaling with AWS](../using-semaphore/self-hosted-aws) to learn more. - ## Required parameters ### Endpoint {#endpoint} @@ -65,12 +63,11 @@ The endpoint the agent uses for registration and sync with your Semaphore organi If this parameter is not set, you must configure [`SEMAPHORE_ORGANIZATION`](#organization). - ### Organization {#organization} - **Parameter name**: `SEMAPHORE_ORGANIZATION` -The name of your organization. +The name of your organization. If [`SEMAPHORE_ENDPOINT`] is not set, this parameter is used to generate the endpoint URL. In this case, the agent assumes the endpoint is `.semaphoreci.com`. @@ -80,14 +77,12 @@ If [`SEMAPHORE_ENDPOINT`] is not set, this parameter is used to generate the end The name of the stack. This is the stack name used in Cloudformation and as a prefix to name all the stack resources. When deploying multiple stacks for multiple agent types, different stack names are required. - ### Agent token {#agent-token} - **Parameter name**: `SEMAPHORE_AGENT_TOKEN_PARAMETER_NAME` The AWS SSM parameter name contains the Semaphore agent [registration token](../using-semaphore/self-hosted-install#register-agent). - ## Optional parameters Here's the converted markdown documentation based on the original table you provided: @@ -98,7 +93,6 @@ Here's the converted markdown documentation based on the original table you prov Path to a JSON file containing the parameters to use. This is an alternative to using environment variables for setting the stack's configuration parameters. - ### Agent instance type {#agent-instance-type} - **Parameter name**: `SEMAPHORE_AGENT_INSTANCE_TYPE` @@ -106,7 +100,6 @@ Path to a JSON file containing the parameters to use. This is an alternative to AWS instance type used for the agents. See the available instance type on [AWS docs](https://aws.amazon.com/ec2/instance-types/). - ### Auto-scaling group minimum size {#asg-min-size} - **Parameter name**: `SEMAPHORE_AGENT_ASG_MIN_SIZE` @@ -114,7 +107,6 @@ AWS instance type used for the agents. See the available instance type on [AWS d Minimum size for the auto-scaling group. - ### Auto-scaling group maximum size {#asg-max-size} - **Parameter name**: `SEMAPHORE_AGENT_ASG_MAX_SIZE` @@ -122,7 +114,6 @@ Minimum size for the auto-scaling group. Maximum size for the auto-scaling group. - ### Auto-scaling group desired capacity {#asg-desired} - **Parameter name**: `SEMAPHORE_AGENT_ASG_DESIRED` @@ -130,7 +121,6 @@ Maximum size for the auto-scaling group. Desired capacity for the auto-scaling group. - ### Use dynamic scaling {#use-dynamic-scaling} - **Parameter name**: `SEMAPHORE_AGENT_USE_DYNAMIC_SCALING` @@ -147,14 +137,12 @@ Security Group ID to use for agent instances. If not specified, a security group - an egress rule allowing all outbound traffic - an ingress rule for SSH if [`SEMAPHORE_AGENT_KEY_NAME`](#key-name) is specified - ### Key name {#key-name} - **Parameter name**: `SEMAPHORE_AGENT_KEY_NAME` Key name to access agents through SSH. If not specified, no SSH inbound access is allowed. - ### Disconnect after job {#disconnect-after-job} - **Parameter name**: `SEMAPHORE_AGENT_DISCONNECT_AFTER_JOB` @@ -162,23 +150,20 @@ Key name to access agents through SSH. If not specified, no SSH inbound access i If true, the agent disconnects after completing a job. - ### Disconnect after idle timeout {#disconnect-after-idle-timeout} - **Parameter name**: `SEMAPHORE_AGENT_DISCONNECT_AFTER_IDLE_TIMEOUT` - **default value**: `300` -Number of seconds of idleness after which the agent is shut down. +Number of seconds of idleness after which the agent is shut down. Setting this to 0 disables the scaling down behavior for the stack since the agents do not shutdown due to idleness. - ### Cache bucket name {#cache-bucket-name} - **Parameter name**: `SEMAPHORE_AGENT_CACHE_BUCKET_NAME` -Existing S3 bucket name to use for caching. If this is not set, [caching](../using-semaphore/optimization/cache) does not work. - +Existing S3 bucket name to use for caching. If this is not set, [caching](../using-semaphore/cache) does not work. ### Token KMS key {#token-kms-key} @@ -186,80 +171,70 @@ Existing S3 bucket name to use for caching. If this is not set, [caching](../usi KMS key id used to encrypt and decrypt `SEMAPHORE_AGENT_TOKEN_PARAMETER_NAME`. If nothing is given, the default `alias/aws/ssm` key is assumed. - ### VPC ID {#vpc-id} - **Parameter name**: `SEMAPHORE_AGENT_VPC_ID` The ID of an existing VPC to use when launching agent instances. By default, this is blank, and the default VPC on your AWS account is used. - ### Subnets {#subnets} - **Parameter name**: `SEMAPHORE_AGENT_SUBNETS` -Comma-separated list of existing VPC subnet IDs where EC2 instances are to run. This is required when using [`SEMAPHORE_AGENT_VPC_ID`](#vpc-id). +Comma-separated list of existing VPC subnet IDs where EC2 instances are to run. This is required when using [`SEMAPHORE_AGENT_VPC_ID`](#vpc-id). If `SEMAPHORE_AGENT_SUBNETS` is set and [`SEMAPHORE_AGENT_VPC_ID`](#vpc-id) is blank, the subnets are ignored, and the default VPC is used. This means that private and public subnets are possible, but isolated subnets cannot be used. - ### AMI {#ami} - **Parameter name**: `SEMAPHORE_AGENT_AMI` The AMI is used for all instances. If empty, the stack uses the default AMIs, looking them up by name. If the default AMI isn't sufficient, you can use your own AMIs, but they need to be based on the stack's default AMI. - ### OS type {#os-type} - **Parameter name**: `SEMAPHORE_AGENT_OS` -The OS type for agents. +The OS type for agents. -Possible values: +Possible values: -- `ubuntu-focal` +- `ubuntu-focal` - `windows` - ### Architecture type {#architecture-type} - **Parameter name**: `SEMAPHORE_AGENT_ARCH` The arch type for agents. Possible values: -- `x86_64` +- `x86_64` - `arm64` - ### Availability zones {#availability-zones} - **Parameter name**: `SEMAPHORE_AGENT_AZS` A comma-separated list of availability zones to use for the auto-scaling group. - ### Managed policy names {#managed-policy-names} - **Parameter name**: `SEMAPHORE_AGENT_MANAGED_POLICY_NAMES` A comma-separated list of custom IAM policy names to attach to the instance profile role. - ### ASG metrics {#asg-metrics} - **Parameter name**: `SEMAPHORE_AGENT_ASG_METRICS` A comma-separated list of ASG metrics to collect. Available metrics can be found on the [AWS CDK Documentation](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_autoscaling.CfnAutoScalingGroup.MetricsCollectionProperty.html). - ### Volume name {#volume-name} - **Parameter name**: `SEMAPHORE_AGENT_VOLUME_NAME` The EBS volume's device name to use for a custom volume. If this is not set, the EC2 instances are assigned the EBS volume based on the AMI. - ### Volume type {#volume-type} - **Parameter name**: `SEMAPHORE_AGENT_VOLUME_TYPE` @@ -267,7 +242,6 @@ The EBS volume's device name to use for a custom volume. If this is not set, the The EBS volume's type, when using [`SEMAPHORE_AGENT_VOLUME_NAME`](#volume-name). - ### Volume size {#volume-size} - **Parameter name**: `SEMAPHORE_AGENT_VOLUME_SIZE` @@ -275,47 +249,41 @@ The EBS volume's type, when using [`SEMAPHORE_AGENT_VOLUME_NAME`](#volume-name). The EBS volume's size, in GB, when using [`SEMAPHORE_AGENT_VOLUME_NAME`](#volume-name). - ### License configuration ARN {#license-configuration-arn} - **Parameter name**: `SEMAPHORE_AGENT_LICENSE_CONFIGURATION_ARN` The license configuration ARN is associated with the AMI used by the stack. - ### Mac family {#mac-family} - **Parameter name**: `SEMAPHORE_AGENT_MAC_FAMILY` The EC2 Mac instance family to use. Possible values: `mac1` and `mac2`. - ### Mac dedicated hosts {#mac-dedicated-hosts} - **Parameter name**: `SEMAPHORE_AGENT_MAC_DEDICATED_HOSTS` A comma-separated list of dedicated host IDs to include in the host resource group. - ### Tags {#tags} - **Parameter name**: `SEMAPHORE_AGENT_TAGS` -A comma-separated list of key-value pairs of tags to be added to all resources created for the stack. +A comma-separated list of key-value pairs of tags to be added to all resources created for the stack. For example: `Name:Something,Category:SomethingElse`. - ### Use pre-signed URL {#use-pre-signed-url} - **Parameter name**: `SEMAPHORE_AGENT_USE_PRE_SIGNED_URL` - **default value**: `false` -If true, use a pre-signed AWS STS GetCallerIdentity URL for agent registration. +If true, use a pre-signed AWS STS GetCallerIdentity URL for agent registration. See [agent type configuration](../using-semaphore/self-hosted-install#name-sts) to learn how to configure this security feature. - ## See also - [How to use self-hosted agents](../using-semaphore/self-hosted) diff --git a/docs/docs/reference/api.md b/docs/docs/reference/api.md index f9befb5ba..195897331 100644 --- a/docs/docs/reference/api.md +++ b/docs/docs/reference/api.md @@ -100,6 +100,7 @@ Parameters: - `reference` (**required**) - git reference for the desired branch, tag, or pull request--e.g. *refs/heads/master*, *refs/tags/v1.0*, or *refs/pull/123*. - `commit_sha` (*optional*) - Commit sha of the desired commit. - `pipeline_file` (*optional*) - The path within the repository to the YAML file that contains the pipeline definition. The default value is *.semaphore/semaphore.yml*. +- `parameters`: (key-values) specify parameter values that will be available in all jobs of the initial pipeline and can be used in the same way as the parameters from the [parameterized promotions](../using-semaphore/promotions#parameters). Response: @@ -108,17 +109,25 @@ HTTP status: 200 { "workflow_id": "32a689e0-9082-4c5b-a648-bb3dc645452d", - "pipeline_id": "2abeb1a9-eb4a-4834-84b8-cb7806aec063", - "hook_id": "ff7d57ef-92c5-4fcd-9c0c-6ae9e24bfcec" + "pipeline_id": "2abeb1a9-eb4a-4834-84b8-cb7806aec063" } ``` Example: ```shell -curl -i -H "Authorization: Token {api_token}" \ - -d "project_id={project_id}&reference={reference}" \ - -X POST "https://.semaphoreci.com/api/v1alpha/plumber-workflows" +curl -X POST --location "https://.semaphoreci.com/api/v1alpha/plumber-workflows" \ + -H "Authorization: Token {api_token}" \ + -H "Content-Type: application/json" \ + -d $'{ + "project_id": "my_project_id", + "reference": "refs/heads/master", + "pipeline_file": "/.semaphore/deploy.yml", + "parameters": { + "PARAM_NAME": "PARAM_VALUE", + "PARAM_NAME_2": "PARAM_VALUE_2" + } +}' ``` ### Describe a workflow @@ -571,6 +580,8 @@ curl -H "Authorization: Token {api_token}" \ ## Tasks {#tasks} +### Trigger a taks + [Tasks](../using-semaphore/tasks) can be triggered via the API. To trigger a task with its default parameters: @@ -726,9 +737,9 @@ curl -H "Authorization: Token {api_token}" \ -### Self-hosted agent types +## Self-hosted agent types -#### Listing agent types +### Listing agent types ```text GET .semaphoreci.com/api/v1alpha/self_hosted_agent_types @@ -791,7 +802,7 @@ curl -i \ -#### Create an agent type +### Create an agent type ```text POST .semaphoreci.com/api/v1alpha/self_hosted_agent_types @@ -846,7 +857,7 @@ curl -i \ -#### Update an agent type +### Update an agent type ```text PATCH .semaphoreci.com/api/v1alpha/self_hosted_agent_types/:agent_type_name @@ -899,7 +910,7 @@ curl -X PATCH -i \ ``` -#### Describe an agent type +### Describe an agent type ```text GET .semaphoreci.com/api/v1alpha/self_hosted_agent_types/:agent_type_name @@ -942,7 +953,7 @@ curl -i \ -#### Delete an agent type +### Delete an agent type ```text DELETE .semaphoreci.com/api/v1alpha/self_hosted_agent_types/:agent_type_name @@ -969,7 +980,7 @@ curl -i -X DELETE \ -#### Disable agents for an agent type +### Disable agents for an agent type ```text POST .semaphoreci.com/api/v1alpha/self_hosted_agent_types/:agent_type_name/disable_all @@ -996,9 +1007,9 @@ curl -i \ "https://.semaphoreci.com/api/v1alpha/self_hosted_agent_types/s1-aws-small/disable_all" ``` -### Self-hosted agents +## Self-hosted agents -#### List agents for an agent type +### List agents for an agent type ```text GET .semaphoreci.com/api/v1alpha/agents?agent_type=:agent_type&page_size=:page_size&cursor=:cursor diff --git a/docs/docs/reference/env-vars.md b/docs/docs/reference/env-vars.md index c6c555a24..ba55d6e2f 100644 --- a/docs/docs/reference/env-vars.md +++ b/docs/docs/reference/env-vars.md @@ -229,7 +229,6 @@ Holds `true` if the workflow was triggered using the [Semaphore API](../referenc - The variable is `false` if the workflow is triggered by a Git push, pull request, or via [Tasks](../using-semaphore/tasks). ### Workflow is triggered by hook {#workflow-triggered-by-hook} @@ -324,7 +323,6 @@ Used only when running [`checkout --use-cache`](./toolbox#cache-full-clone). It - **Environment variable**: `SEMAPHORE_GIT_CACHE_KEEP` - **Example**: `1` - Used only when running [`checkout --use-cache`](./toolbox#cache-full-clone). It how many copies of the repository should be maintained in the Semaphore Git Cache. Older copies are automatically deleted. The default value is 0, which means that Semaphore maintains only 1 copy of the repository. If you set it to 1, Semaphore will maintain 2 copies of the repository. @@ -404,7 +402,6 @@ Present only for builds where `SEMAPHORE_GIT_REF_TYPE=pull-request` The number of the Pull Request. - :::note Present only for builds where `SEMAPHORE_GIT_REF_TYPE=pull-request` @@ -446,7 +443,6 @@ Present only for builds where `SEMAPHORE_GIT_REF_TYPE=pull-request` The name of the directory that contains the files of the repository linked to the current Semaphore project. - ### Repository name {#git-repo-name} - **Environment variable**: `SEMAPHORE_GIT_REPO_NAME` @@ -543,7 +539,7 @@ The total duration of the pipeline including queuing time expressed in seconds. ## Cache variables {#cache-variables} -These variables are used to access the [cache](../using-semaphore/optimization/cache). +These variables are used to access the [cache](../using-semaphore/cache). ### Cache URL {#cache-url} @@ -568,7 +564,7 @@ The path in the server to the SSH key file to access the cache server. ## Semaphore Docker registry variables {#registry-variables} -These variables can be used to access the [Semaphore Docker registry](../using-semaphore/optimization/docker). +These variables can be used to access the [Semaphore Docker registry](../using-semaphore/containers/docker). ### Username {#registry-username} @@ -615,7 +611,7 @@ The path to the log file during the initialization job. ## See also -- [Docker optimization](../using-semaphore/optimization/docker) +- [Docker containers](../using-semaphore/containers/docker) - [How to configure jobs](../using-semaphore/jobs) - [Semaphore pipelines](../using-semaphore/pipelines) - [Pipeline YAML reference](./pipeline-yaml) diff --git a/docs/docs/reference/machine-types.md b/docs/docs/reference/machine-types.md index b0620a308..cdb96c285 100644 --- a/docs/docs/reference/machine-types.md +++ b/docs/docs/reference/machine-types.md @@ -112,7 +112,8 @@ The r1 generation is presented in the following types: | Type | Virtual CPUs | Memory (GB) | Disk (GB) | |--|--|--|--| -| `r1-standard-4` | 4 | 10 | 65 | +| `r1-standard-2` | 2 | 4 | 55 | +| `r1-standard-4` | 4 | 8 | 65 | R1 Generation machine types can only be paired with: diff --git a/docs/docs/reference/semaphore-cli.md b/docs/docs/reference/semaphore-cli.md index 68deadf62..d21e0e464 100644 --- a/docs/docs/reference/semaphore-cli.md +++ b/docs/docs/reference/semaphore-cli.md @@ -146,7 +146,7 @@ $ sem version The Semaphore CLI supports the following flags: - `--help` or `-h`: prints the help screen for the given command -- `--verbose` or `-v`: useful for debugging, prints vebose output. This flag shows the interactions between the tool and the [Semaphore API](./api) +- `--verbose` or `-v`: useful for debugging, prints verbose output. This flag shows the interactions between the tool and the [Semaphore API](./api) - `--file` or `-f`: specifies the path to a file. Can be used to specify YAML resource files in [sem create](#sem-create) and [sem apply](#sem-apply). It can also be used to upload secrets as files using [sem create secret](#sem-create) and [sem create dt](#sem-create-dt) - `--all`: used with [sem get job](#sem-get-job) to view running and recently-finished jobs diff --git a/docs/docs/reference/toolbox.md b/docs/docs/reference/toolbox.md index 09adc0871..65d13f052 100644 --- a/docs/docs/reference/toolbox.md +++ b/docs/docs/reference/toolbox.md @@ -41,11 +41,11 @@ The available namespaces are: See [artifact namespaces](../using-semaphore/artifacts#namespaces) for more details. The optional flags are: + - `--force` or `-f`: overwrite file or directory if already exists - `--destination` of `-d`: pull or yank the file into a different path - `--verbose` or `-v`: verbose logging - ### Examples ```shell title="Artifact usage examples" @@ -83,7 +83,7 @@ The uploaded files must meet the following requirements: - File names cannot contain non-URI-encodable characters like `{, }, |, \, ^, ~, [, ]` - Files cannot be named `.` or `...` -You can workaround these limitations by compressing the file with tar before pushing it to the artifact store. For example: +You can workaround these limitations by compressing the file with tar before pushing it to the artifact store. For example: ```shell title="Creating a tarball before storing the artifact" tar -czvf example.tar.gz ~/example @@ -99,7 +99,7 @@ tar -xzf example.tar.gz ## cache {#cache} -The cache tool lets you interact with your project's [Semaphore cache](../using-semaphore/optimization/cache). +The cache tool lets you interact with your project's [Semaphore cache](../using-semaphore/cache). The syntax is: @@ -160,7 +160,6 @@ The supported options for `--cleanup-by` are: - `STORE_TIME`: (default) delete oldest files first - `ACCESS_TIME`: delete oldest accessed files first - ### Environment variables {#cache-env-vars} The cache tool depends on the following environment variables: @@ -222,7 +221,7 @@ The checkout command uses the following environment variables. ## checksum {#checksum} -This tool takes a single argument which is the file to checksum. It outputs the MD5 checksum of the file's contents. This tool is useful for tagging [artifacts](../using-semaphore/artifacts) or generating [cache keys](../using-semaphore/optimization/cache). +This tool takes a single argument which is the file to checksum. It outputs the MD5 checksum of the file's contents. This tool is useful for tagging [artifacts](../using-semaphore/artifacts) or generating [cache keys](../using-semaphore/cache). The syntax is: @@ -241,7 +240,6 @@ $ checksum package-lock.json The `install-package` tool is used to manage Ubuntu packages you may need for your jobs. It downloads and caches packages in a way that can be quickly reinstalled over and over again in different jobs. This is a convenient tool, you can still use `sudo` to install packages using the system's package manager. - The syntax is: ```shell title="install-package syntax" @@ -254,8 +252,8 @@ Where command is one of the following: - `update`: Retrieve new lists of packages - `upgrade`: Perform an upgrade -- `install`: Install new packages -- `reinstall`: Reinstall packages +- `install`: Install new packages +- `reinstall`: Reinstall packages - `remove`: Remove packages - `purge`: Remove packages and config files - `autoremove`: Remove automatically all unused packages @@ -276,7 +274,7 @@ You can supply multiple packages with their versions in the same invocation: install-package install mongodb-clients=3.6.8 mysql-client=8.0.36-0ubuntu0.20.04.1 ``` -The tool integrates with the [Semaphore cache](../using-semaphore/optimization/cache) to save, retrieve, and update the Deb packages as needed. +The tool integrates with the [Semaphore cache](../using-semaphore/cache) to save, retrieve, and update the Deb packages as needed. You can reinstall the packages in a different job within the same project with: @@ -363,6 +361,7 @@ $ sem-context get ReleaseVersion ``` Exit status codes: + - 0: key retrieved successfully - 1: key not found - 2: connection to the artifacts server failed @@ -377,6 +376,7 @@ sem-context delete ReleaseVersion ``` Exit status codes: + - 0: key deleted successfully - 1: key not found - 2: connection to the artifacts server failed @@ -384,7 +384,7 @@ Exit status codes: ## sem-service {#sem-service} -The `sem-service` tool manages databases and other useful services in Ubuntu-based environments. +The `sem-service` tool manages databases and other useful services in Ubuntu-based environments. :::info @@ -436,10 +436,9 @@ When starting `mysql` or `postgres` services you can provide the following optio - On `postgres` defaults to a blank string - `--db=` database name to create and default to - ### Container registry images {#sem-service-container} -The `sem-service` tool pulls images from the [Semaphore Container Registry](../using-semaphore/optimization/container-registry). +The `sem-service` tool pulls images from the [Semaphore Container Registry](../using-semaphore/containers/container-registry). ## sem-version {#sem-version} @@ -529,7 +528,7 @@ The test-results CLI is open-sourced and available on [semaphoreci/test-results] ### Merging test results {#test-result-merge} -To use the test result feature you must add the following command at the end of every test job. +To use the test result feature you must add the following command at the end of every test job. The syntax is: @@ -593,5 +592,5 @@ kubectl apply -f deployment.yml ## See also - [Semaphore command line tool reference](./semaphore-cli) -- [Working with Docker](../using-semaphore/optimization/docker) +- [Working with Docker](../using-semaphore/containers/docker) - [Environment variable reference](./env-vars) diff --git a/docs/docs/using-semaphore/optimization/cache.md b/docs/docs/using-semaphore/cache.md similarity index 81% rename from docs/docs/using-semaphore/optimization/cache.md rename to docs/docs/using-semaphore/cache.md index 03c596e28..217c02394 100644 --- a/docs/docs/using-semaphore/optimization/cache.md +++ b/docs/docs/using-semaphore/cache.md @@ -17,18 +17,24 @@ The cache provides fast and convenient storage for your jobs. Use the cache to s ## Overview -Semaphore provides a [cache tool](../../reference/toolbox#cache) in all jobs to reuse files your project depends on but are not part of the repository. +Semaphore provides a [cache tool](../reference/toolbox#cache) in all jobs to reuse files your project depends on but are not part of the repository. Typical uses of the cache are: - to propagate a file from one block to the next - to reuse dependencies that are normally downloaded from the internet, like NPM modules -Semaphore creates a separate cache for every [project](../projects). For jobs running on Semaphore Cloud, the total cache size is 9.6GB. Older files are automatically deleted after 30 days or when the cache fills up. +Semaphore creates a separate cache for every [project](./projects). For jobs running on Semaphore Cloud, the total cache size is 9.6GB. Older files are automatically deleted after 30 days or when the cache fills up. :::note -Users running Semaphore On-Premise or [self-hosted agents](../self-hosted) need to [configure a custom backend](#custom-backends) to use the cache. +Users running Semaphore On-Premise or [self-hosted agents](./self-hosted) need to [configure a custom backend](#custom-backends) to use the cache. + +::: + +:::note + +For security reasons, the cache is not accessible from workflows started by Forked Pull Requests. ::: @@ -53,7 +59,6 @@ The cache tools recognize the following languages and dependency managers. See [ When using one of the supported dependency managers: - 1. Run `cache restore` to restore the latest files from the cache @@ -73,6 +78,7 @@ cache restore npm install cache store ``` + @@ -92,12 +98,13 @@ cache restore bundle install --path vendor/bundle cache store ``` + :::warning -Avoid using `cache store` in the [prologue](../pipelines#prologue) as this can cause file corruption due to multiple jobs trying to write the same key simultaneously. Instead, use `cache store` in the individual job commands. +Avoid using `cache store` in the [prologue](./pipelines#prologue) as this can cause file corruption due to multiple jobs trying to write the same key simultaneously. Instead, use `cache store` in the individual job commands. ::: @@ -121,7 +128,7 @@ cache restore Where keys are again a comma-separated lists of keys. Semaphore searches for the keys in the order provided and restores the first match to the working directory. -### Using multiple keys +### Using multiple keys It's recommended to use multiple keys to increase the chances of matching a key. The following example uses two keys: @@ -183,7 +190,7 @@ cache clear ## Custom backends {#custom-backends} -The cache storage is available for all Semaphore Cloud users. If you're running a different version such as On-Premise or [self-hosted agents](../self-hosted), the cache might not be available. +The cache storage is available for all Semaphore Cloud users. If you're running a different version such as On-Premise or [self-hosted agents](./self-hosted), the cache might not be available. For these cases, you need to provide storage. This section explains how to configure custom storage in other platforms. @@ -195,11 +202,11 @@ To provision the storage, follow these steps: -1. Create and configure an S3 bucket as explained in [How to set up caching on self-hosted agents](../self-hosted-configure#aws-cache) -2. Configure the following [environment variables](../jobs#environment-variables) in your job +1. Create and configure an S3 bucket as explained in [How to set up caching on self-hosted agents](./self-hosted-configure#aws-cache) +2. Configure the following [environment variables](./jobs#environment-variables) in your job - `SEMAPHORE_CACHE_BACKEND` set its value to "s3" - `SEMAPHORE_CACHE_S3_BUCKET` set its value to the S3 bucket name -3. Create a [secret](../secrets) with the following credentials +3. Create a [secret](./secrets) with the following credentials - `AWS_ACCESS_KEY_ID`: the key for an IAM account with access to the bucket - `AWS_SECRET_ACCESS_KEY`: the secret key for the account - `AWS_DEFAULT_REGION`: the region where the bucket is located @@ -215,7 +222,7 @@ To provision storage, follow these steps 1. [Create a Google Cloud Bucket](https://cloud.google.com/storage/docs/creating-buckets) -2. Configure the following [environment variables](../jobs#environment-variables) in your job +2. Configure the following [environment variables](./jobs#environment-variables) in your job - `SEMAPHORE_CACHE_BACKEND` set it to "gcs" - `SEMAPHORE_CACHE_GCS_BUCKET` set it to your Google Cloud bucket name 3. Provide the Google Cloud Application Default Credentials. See [How Application Default Credentials work](https://cloud.google.com/docs/authentication/application-default-credentials) to learn more @@ -226,16 +233,16 @@ To provision storage, follow these steps You can provide an SFTP server to provide custom storage for the cache. -To use SFTP, define the following [environment variables](../jobs#environment-variables) in your job: +To use SFTP, define the following [environment variables](./jobs#environment-variables) in your job: - `SEMAPHORE_CACHE_BACKEND`: set its value to "sftp" - `SEMAPHORE_CACHE_URL`: the IP address and port number of the SFTP server, e.g. "1.2.3.4:29920" - `SEMAPHORE_CACHE_USERNAME`: the username used to connect to the server - `SEMAPHORE_CACHE_PRIVATE_KEY_PATH`: the path of the private SSH key used to connect to the SFTP server -In addition, you must create a [secret](../secrets) to store the private SSH key and expose it inside the job. +In addition, you must create a [secret](./secrets) to store the private SSH key and expose it inside the job. ## See also -- [Using cache in jobs](../jobs#cache) -- [Cache toolbox reference](../../reference/toolbox#cache) +- [Using cache in jobs](./jobs#cache) +- [Cache toolbox reference](../reference/toolbox#cache) diff --git a/docs/docs/using-semaphore/optimization/_category_.json b/docs/docs/using-semaphore/containers/_category_.json similarity index 100% rename from docs/docs/using-semaphore/optimization/_category_.json rename to docs/docs/using-semaphore/containers/_category_.json diff --git a/docs/docs/using-semaphore/optimization/container-registry.md b/docs/docs/using-semaphore/containers/container-registry.md similarity index 99% rename from docs/docs/using-semaphore/optimization/container-registry.md rename to docs/docs/using-semaphore/containers/container-registry.md index 115d5124a..62ac0e9ff 100644 --- a/docs/docs/using-semaphore/optimization/container-registry.md +++ b/docs/docs/using-semaphore/containers/container-registry.md @@ -538,6 +538,20 @@ This is a PostgreSQL container extended with [PostGIS](https://postgis.net/). | redis:5.0 | `registry.semaphoreci.com/redis:5.0` | | redis:6.2 | `registry.semaphoreci.com/redis:6.2` | | redis:7.0 | `registry.semaphoreci.com/redis:7.0` | +| redis:8.0 | `registry.semaphoreci.com/redis:8.0` | + + + + +### Valkey + +
+Valkey images +
+ +| Image | Link | +|--------|--------| +| valkey:8.1 | `registry.semaphoreci.com/valkey:8.1` |
diff --git a/docs/docs/using-semaphore/optimization/docker.md b/docs/docs/using-semaphore/containers/docker.md similarity index 99% rename from docs/docs/using-semaphore/optimization/docker.md rename to docs/docs/using-semaphore/containers/docker.md index 6d779a7d9..ef1ce055b 100644 --- a/docs/docs/using-semaphore/optimization/docker.md +++ b/docs/docs/using-semaphore/containers/docker.md @@ -3,7 +3,7 @@ description: Build and deploy Docker containers sidebar_position: 5 --- -# Working with Docker +# Building Docker Images import Tabs from '@theme/Tabs'; import TabItem from '@theme/TabItem'; diff --git a/docs/docs/using-semaphore/optimization/img/add-metric.jpg b/docs/docs/using-semaphore/containers/img/add-metric.jpg similarity index 100% rename from docs/docs/using-semaphore/optimization/img/add-metric.jpg rename to docs/docs/using-semaphore/containers/img/add-metric.jpg diff --git a/docs/docs/using-semaphore/optimization/img/change-skip-vs-run.jpg b/docs/docs/using-semaphore/containers/img/change-skip-vs-run.jpg similarity index 100% rename from docs/docs/using-semaphore/optimization/img/change-skip-vs-run.jpg rename to docs/docs/using-semaphore/containers/img/change-skip-vs-run.jpg diff --git a/docs/docs/using-semaphore/optimization/img/custom-create.jpg b/docs/docs/using-semaphore/containers/img/custom-create.jpg similarity index 100% rename from docs/docs/using-semaphore/optimization/img/custom-create.jpg rename to docs/docs/using-semaphore/containers/img/custom-create.jpg diff --git a/docs/docs/using-semaphore/optimization/img/dockerhub-secret.jpg b/docs/docs/using-semaphore/containers/img/dockerhub-secret.jpg similarity index 100% rename from docs/docs/using-semaphore/optimization/img/dockerhub-secret.jpg rename to docs/docs/using-semaphore/containers/img/dockerhub-secret.jpg diff --git a/docs/docs/using-semaphore/optimization/img/freq-cd.jpg b/docs/docs/using-semaphore/containers/img/freq-cd.jpg similarity index 100% rename from docs/docs/using-semaphore/optimization/img/freq-cd.jpg rename to docs/docs/using-semaphore/containers/img/freq-cd.jpg diff --git a/docs/docs/using-semaphore/optimization/img/freq-ci.jpg b/docs/docs/using-semaphore/containers/img/freq-ci.jpg similarity index 100% rename from docs/docs/using-semaphore/optimization/img/freq-ci.jpg rename to docs/docs/using-semaphore/containers/img/freq-ci.jpg diff --git a/docs/docs/using-semaphore/optimization/img/insights-settings.jpg b/docs/docs/using-semaphore/containers/img/insights-settings.jpg similarity index 100% rename from docs/docs/using-semaphore/optimization/img/insights-settings.jpg rename to docs/docs/using-semaphore/containers/img/insights-settings.jpg diff --git a/docs/docs/using-semaphore/optimization/img/insights-tab.jpg b/docs/docs/using-semaphore/containers/img/insights-tab.jpg similarity index 100% rename from docs/docs/using-semaphore/optimization/img/insights-tab.jpg rename to docs/docs/using-semaphore/containers/img/insights-tab.jpg diff --git a/docs/docs/using-semaphore/optimization/img/new-metric.jpg b/docs/docs/using-semaphore/containers/img/new-metric.jpg similarity index 100% rename from docs/docs/using-semaphore/optimization/img/new-metric.jpg rename to docs/docs/using-semaphore/containers/img/new-metric.jpg diff --git a/docs/docs/using-semaphore/optimization/img/org-health-location.jpg b/docs/docs/using-semaphore/containers/img/org-health-location.jpg similarity index 100% rename from docs/docs/using-semaphore/optimization/img/org-health-location.jpg rename to docs/docs/using-semaphore/containers/img/org-health-location.jpg diff --git a/docs/docs/using-semaphore/optimization/img/org-health-overview.jpg b/docs/docs/using-semaphore/containers/img/org-health-overview.jpg similarity index 100% rename from docs/docs/using-semaphore/optimization/img/org-health-overview.jpg rename to docs/docs/using-semaphore/containers/img/org-health-overview.jpg diff --git a/docs/docs/using-semaphore/optimization/img/perf-cd.jpg b/docs/docs/using-semaphore/containers/img/perf-cd.jpg similarity index 100% rename from docs/docs/using-semaphore/optimization/img/perf-cd.jpg rename to docs/docs/using-semaphore/containers/img/perf-cd.jpg diff --git a/docs/docs/using-semaphore/optimization/img/perf-ci.jpg b/docs/docs/using-semaphore/containers/img/perf-ci.jpg similarity index 100% rename from docs/docs/using-semaphore/optimization/img/perf-ci.jpg rename to docs/docs/using-semaphore/containers/img/perf-ci.jpg diff --git a/docs/docs/using-semaphore/optimization/img/rel-cd.jpg b/docs/docs/using-semaphore/containers/img/rel-cd.jpg similarity index 100% rename from docs/docs/using-semaphore/optimization/img/rel-cd.jpg rename to docs/docs/using-semaphore/containers/img/rel-cd.jpg diff --git a/docs/docs/using-semaphore/optimization/img/rel-ci.jpg b/docs/docs/using-semaphore/containers/img/rel-ci.jpg similarity index 100% rename from docs/docs/using-semaphore/optimization/img/rel-ci.jpg rename to docs/docs/using-semaphore/containers/img/rel-ci.jpg diff --git a/docs/docs/using-semaphore/optimization/img/select-date-range.jpg b/docs/docs/using-semaphore/containers/img/select-date-range.jpg similarity index 100% rename from docs/docs/using-semaphore/optimization/img/select-date-range.jpg rename to docs/docs/using-semaphore/containers/img/select-date-range.jpg diff --git a/docs/docs/using-semaphore/optimization/img/workflow-monorepo.jpg b/docs/docs/using-semaphore/containers/img/workflow-monorepo.jpg similarity index 100% rename from docs/docs/using-semaphore/optimization/img/workflow-monorepo.jpg rename to docs/docs/using-semaphore/containers/img/workflow-monorepo.jpg diff --git a/docs/docs/using-semaphore/img/rerun-pipeline.jpg b/docs/docs/using-semaphore/img/rerun-pipeline.jpg new file mode 100644 index 000000000..c6c910239 Binary files /dev/null and b/docs/docs/using-semaphore/img/rerun-pipeline.jpg differ diff --git a/docs/docs/using-semaphore/img/trigger-draft-pull-request.jpg b/docs/docs/using-semaphore/img/trigger-draft-pull-request.jpg new file mode 100644 index 000000000..003dd1e63 Binary files /dev/null and b/docs/docs/using-semaphore/img/trigger-draft-pull-request.jpg differ diff --git a/docs/docs/using-semaphore/jobs.md b/docs/docs/using-semaphore/jobs.md index da38d7677..b00c6d44a 100644 --- a/docs/docs/using-semaphore/jobs.md +++ b/docs/docs/using-semaphore/jobs.md @@ -1144,7 +1144,7 @@ To use a job matrix, follow these steps:
-The following example runs a 2 x 3 matrix with variables `NODE_VER` and `PKG_MNGR`. Semaphore expands the job into 6 parametererized jobs: +The following example runs a 2 x 3 matrix with variables `NODE_VER` and `PKG_MNGR`. Semaphore expands the job into 6 parameterized jobs: ```yaml version: v1.0 diff --git a/docs/docs/using-semaphore/languages/android.md b/docs/docs/using-semaphore/languages/android.md index 7cea92bbe..cb772eff7 100644 --- a/docs/docs/using-semaphore/languages/android.md +++ b/docs/docs/using-semaphore/languages/android.md @@ -80,7 +80,6 @@ To configure your Android container using YAML, follow these steps:
- @@ -184,7 +183,7 @@ blocks: ## Building custom images {#custom-images} -You can find the pre-build Android images in the [Semaphore Container Registry](../optimization/container-registry). +You can find the pre-build Android images in the [Semaphore Container Registry](../containers/container-registry). The image definition and Dockerfiles for these images can be found in the repository [semaphoreci/docker-images](https://github.com/semaphoreci/docker-images). Clone this repository to build your own image variants. diff --git a/docs/docs/using-semaphore/languages/elixir-erlang.md b/docs/docs/using-semaphore/languages/elixir-erlang.md index 7229fe25b..2b6313e06 100644 --- a/docs/docs/using-semaphore/languages/elixir-erlang.md +++ b/docs/docs/using-semaphore/languages/elixir-erlang.md @@ -29,7 +29,7 @@ sem-version elixir 1.16 ### Using Docker containers {#containers} -Semaphore distributes the pre-built `semaphoreci:elixir` image on the [Semaphore Container Registry](../../using-semaphore/optimization/container-registry#elixir). Find Dockerfiles to build your custom images in the [semaphoreci/docker-images](https://github.com/semaphoreci/docker-images) repository. +Semaphore distributes the pre-built `semaphoreci:elixir` image on the [Semaphore Container Registry](../../using-semaphore/containers/container-registry#elixir). Find Dockerfiles to build your custom images in the [semaphoreci/docker-images](https://github.com/semaphoreci/docker-images) repository. ## How to cache Elixir dependencies {#cache} @@ -55,14 +55,13 @@ checkout cache restore ``` - ## How to set up test reports {#test-results1} This section explains how to set up [test reports](../../using-semaphore/tests/test-reports) (and flaky tests) for Elixir and mix. -1. Add junit-formatter to your `mix.exs` dependencies +1. Add junit-formatter to your `mix.exs` dependencies ```elixir defp deps do @@ -129,7 +128,6 @@ This section explains how to set up [test reports](../../using-semaphore/tests/t - ## How to change Erlang versions {#erlang-version} Elixir is available on Linux [Ubuntu](../../reference/os-ubuntu) machines and [Docker Environments](../../using-semaphore/pipelines#docker-environments). @@ -164,4 +162,3 @@ sem-version erlang 25 erlc hello.erl erl -noshell -s hello helloWorld -s init stop ``` - diff --git a/docs/docs/using-semaphore/languages/go.md b/docs/docs/using-semaphore/languages/go.md index efa1b10b7..e0655e561 100644 --- a/docs/docs/using-semaphore/languages/go.md +++ b/docs/docs/using-semaphore/languages/go.md @@ -42,7 +42,7 @@ go version The `sem-version` tool does not work on Docker containers. You must use a pre-built Docker image with the language versions you need and run the job using [Docker environments](../../using-semaphore/pipelines#docker-environments). -You can use the pre-build [Go images](../../using-semaphore/optimization/container-registry#go) or build your own. Find Dockerfiles to build your custom images in the [semaphoreci/docker-images](https://github.com/semaphoreci/docker-images) repository. +You can use the pre-build [Go images](../../using-semaphore/containers/container-registry#go) or build your own. Find Dockerfiles to build your custom images in the [semaphoreci/docker-images](https://github.com/semaphoreci/docker-images) repository. ## How to use GOPATH {#gopath} diff --git a/docs/docs/using-semaphore/languages/javascript.md b/docs/docs/using-semaphore/languages/javascript.md index 0d17ad0e4..41b64212c 100644 --- a/docs/docs/using-semaphore/languages/javascript.md +++ b/docs/docs/using-semaphore/languages/javascript.md @@ -19,7 +19,6 @@ Node.js is pre-installed in the Linux and macOS Semaphore environments. You can You may also use Docker images. - ## How to select Node versions {#switch} Change the active Node.js versions on Linux and macOS with [sem-version](../../reference/toolbox#sem-version). @@ -45,8 +44,7 @@ sem-version node --lts carbon The `sem-version` tool does not work on Docker containers. You must use a pre-built Docker image with the language versions you need and run the job using [Docker environments](../../using-semaphore/pipelines#docker-environments). -You can use the pre-built [Node images](../../using-semaphore/optimization/container-registry#node) or build your own. Find Dockerfiles to build your custom images in the [semaphoreci/docker-images](https://github.com/semaphoreci/docker-images) repository. - +You can use the pre-built [Node images](../../using-semaphore/containers/container-registry#node) or build your own. Find Dockerfiles to build your custom images in the [semaphoreci/docker-images](https://github.com/semaphoreci/docker-images) repository. ## How to cache Node dependencies {#cache} @@ -84,7 +82,7 @@ To perform semantic releases, follow these steps -1. Create a [Secret] with your GitHub Token. +1. Create a [Secret] with your GitHub Token. - The token should have write permissions on the repository - The secret name should be `semantic-release-credentials` @@ -153,6 +151,7 @@ This section explains how to set up [test reports](../../using-semaphore/tests/t ```shell test-results publish junit.xml ``` +
diff --git a/docs/docs/using-semaphore/languages/php.md b/docs/docs/using-semaphore/languages/php.md index b8999883b..56c92da95 100644 --- a/docs/docs/using-semaphore/languages/php.md +++ b/docs/docs/using-semaphore/languages/php.md @@ -35,7 +35,7 @@ phpbrew --no-progress install 8.2.20 The `sem-version` tool does not work on Docker containers. You must use a pre-built Docker image with the language versions you need and run the job using [Docker environments](../../using-semaphore/pipelines#docker-environments). -You can use the pre-build [PHP images](../../using-semaphore/optimization/container-registry#php) or build your own. Find Dockerfiles to build your custom images in the [semaphoreci/docker-images](https://github.com/semaphoreci/docker-images) repository. +You can use the pre-build [PHP images](../../using-semaphore/containers/container-registry#php) or build your own. Find Dockerfiles to build your custom images in the [semaphoreci/docker-images](https://github.com/semaphoreci/docker-images) repository. ## How to cache dependencies {#caching} @@ -108,7 +108,3 @@ This section explains how to set up [test reports](../../using-semaphore/tests/t
- - - - diff --git a/docs/docs/using-semaphore/languages/python.md b/docs/docs/using-semaphore/languages/python.md index 2edba5bd8..f7841e022 100644 --- a/docs/docs/using-semaphore/languages/python.md +++ b/docs/docs/using-semaphore/languages/python.md @@ -29,8 +29,7 @@ sem-version python 3.12 The `sem-version` tool does not work on Docker containers. You must use a pre-built Docker image with the language versions you need and run the job using [Docker environments](../../using-semaphore/pipelines#docker-environments). -You can use the pre-build [Python images](../../using-semaphore/optimization/container-registry#python) or build your own. Find Dockerfiles to build your custom images in the [semaphoreci/docker-images](https://github.com/semaphoreci/docker-images) repository. - +You can use the pre-build [Python images](../../using-semaphore/containers/container-registry#python) or build your own. Find Dockerfiles to build your custom images in the [semaphoreci/docker-images](https://github.com/semaphoreci/docker-images) repository. ## How to cache packages {#caching} @@ -103,4 +102,3 @@ This section explains how to set up [test reports](../../using-semaphore/tests/t - diff --git a/docs/docs/using-semaphore/languages/ruby.md b/docs/docs/using-semaphore/languages/ruby.md index 7606548bd..6d2c2d6cf 100644 --- a/docs/docs/using-semaphore/languages/ruby.md +++ b/docs/docs/using-semaphore/languages/ruby.md @@ -35,7 +35,7 @@ rbenv install --list The `sem-version` tool does not work on Docker containers. You must use a pre-built Docker image with the language versions you need and run the job using [Docker environments](../../using-semaphore/pipelines#docker-environments). -You can use the pre-build [Ruby images](../../using-semaphore/optimization/container-registry#ruby) or build your own. Find Dockerfiles to build your custom images in the [semaphoreci/docker-images](https://github.com/semaphoreci/docker-images) repository. +You can use the pre-build [Ruby images](../../using-semaphore/containers/container-registry#ruby) or build your own. Find Dockerfiles to build your custom images in the [semaphoreci/docker-images](https://github.com/semaphoreci/docker-images) repository. ## How to cache Gems {#caching} @@ -85,6 +85,7 @@ This section explains how to set up [test reports](../../using-semaphore/tests/t --out junit.xml --format documentation ``` + - Or, changing the `rspec` invocation ```shell @@ -134,7 +135,7 @@ This section explains how to set up [test reports](../../using-semaphore/tests/t ## How to parallelize tests -You can run RSpec and Cucumber tests in parallel automatically using [job parallelism](../../using-semaphore/jobs#job-parallelism). +You can run RSpec and Cucumber tests in parallel automatically using [job parallelism](../../using-semaphore/jobs#job-parallelism). For RSpec, follow these steps: @@ -163,5 +164,3 @@ On Cucumber, we use `cucumber_booster` instead: ```
- - diff --git a/docs/docs/using-semaphore/languages/rust.md b/docs/docs/using-semaphore/languages/rust.md index 50e62dcdb..aa86b78cc 100644 --- a/docs/docs/using-semaphore/languages/rust.md +++ b/docs/docs/using-semaphore/languages/rust.md @@ -19,7 +19,7 @@ Rust is not preinstalled on Linux Semaphore environments. You must use [Docker E ## How to compile Rust code {#compile} -You may use one of the pre-built [Rust images](../../using-semaphore/optimization/container-registry#rust) to run the jobs in a Docker-based environment. +You may use one of the pre-built [Rust images](../../using-semaphore/containers/container-registry#rust) to run the jobs in a Docker-based environment. @@ -27,7 +27,7 @@ You may use one of the pre-built [Rust images](../../using-semaphore/optimizatio 2. Select the pipeline 3. Select **Docker Containers** in the **Environment Type** 4. Select one of the available machines -5. Type the name of a [Rust image](../../using-semaphore/optimization/container-registry#rust), e.g. `semaphoreci/rust:1.75` +5. Type the name of a [Rust image](../../using-semaphore/containers/container-registry#rust), e.g. `semaphoreci/rust:1.75` ![Selecting a rust image](./img/rust-images.jpg) diff --git a/docs/docs/using-semaphore/monorepo.md b/docs/docs/using-semaphore/monorepo.md index ce28bb6b0..e78331a9c 100644 --- a/docs/docs/using-semaphore/monorepo.md +++ b/docs/docs/using-semaphore/monorepo.md @@ -21,7 +21,7 @@ A [monorepo](https://semaphoreci.com/blog/what-is-monorepo) is a repository that Semaphore can detect changes between commits, allowing you to set up fine-grained jobs that only run when the underlying code changes. Skipping jobs covering unchanged code can greatly speed testing and reduce costs on big codebases. -:::note +:::note The `change_in` expressions are evaluated in the [pipeline initialization job](./pipelines#init-job). @@ -129,7 +129,6 @@ To enable change detection, follow these steps. - 1. Open the **Workflow Editor** for your Semaphore project @@ -158,7 +157,7 @@ Conditions are ignored by default when you change the pipeline file. So, the ver 3. Add `run.when` under the block 4. Type the [change condition](#condition), e.g. `change_in('/frontend', {default_branch: 'main'})` 5. Repeat the process for the other blocks that need conditions -6. Push the pipeline file to the remote repository +6. Push the pipeline file to the remote repository @@ -228,7 +227,7 @@ All paths are relative to the root of the repository. You can use change detection in [promotions](./pipelines#connecting-pipelines). This is useful when you have continuous delivery or deployment pipelines that only need to run when certain folders or files in your project change. -With change detection, you can set up smarter deployment pipelines. Imagine you have web and mobile apps in the same repository. The process for deploying each component is different: for a web app you might use a [Docker container](./optimization/docker), the Android app is deployed to the Google Store, while the iOS version goes to Apple. +With change detection, you can set up smarter deployment pipelines. Imagine you have web and mobile apps in the same repository. The process for deploying each component is different: for a web app you might use a [Docker container](./containers/docker), the Android app is deployed to the Google Store, while the iOS version goes to Apple. With change detection on promotions, you can activate the correct deployment pipeline based on what component has changed in the last push. @@ -261,7 +260,7 @@ To use change detection, follow these steps: 3. Add `auto_promote.when` under the block 4. Type the [change condition](#condition), e.g. `change_in('/frontend', {default_branch: 'main'})` 5. Repeat the process for the other promotions that need conditions -6. Push the pipeline file to the remote repository +6. Push the pipeline file to the remote repository @@ -329,7 +328,6 @@ Conditions are ignored by default when you change the pipeline file. So, the ver ::: - ## Conditions options {#condition} This section describes the available options for change detection. Note that the conditions are not limited to `change_in`. See the [conditions DSL reference](../reference/conditions-dsl) to view all available conditions. @@ -431,6 +429,7 @@ The `options` is an optional hashmap to change the change detection behavior. Fo ```text title="Using main instead of master" change_in('/backend/', {default_branch: 'main'}) ``` + The most common options are: The supported options are: @@ -481,7 +480,7 @@ branch =~ '^hotfix/' and change_in('/backend/', {default_branch: 'main'}) ## Demo project {#demo} -This section showcases how to use `change_in` in a working demo project. +This section showcases how to use `change_in` in a working demo project. The project is a microservice application consisting of three components. Each component is located in a separate folder: @@ -594,10 +593,10 @@ blocks: commands: - go test ./... ``` + - ## See also - [How to create pipelines](./pipelines) diff --git a/docs/docs/using-semaphore/notifications.md b/docs/docs/using-semaphore/notifications.md index 8a08979d7..2c2efd32a 100644 --- a/docs/docs/using-semaphore/notifications.md +++ b/docs/docs/using-semaphore/notifications.md @@ -29,6 +29,12 @@ Always use [Incoming Webhooks app](https://semaphore.slack.com/apps/A0F7XDUAZ-in To create a notification, navigate to **Notifications** and press **New Notification** +:::note + +Notifications are only be sent to people with access to the project. If you are not receiving notifications, check if you have [access to the project](./rbac). + +::: + 1. Type the name of the notification @@ -103,6 +109,12 @@ At this point, you can create additional rules or save the changes by pressing * +:::note + +Notifications are only be sent to people with access to the project. If you are not receiving notifications, check if you have at least [member access to the project](./rbac). + +::: + To create a Slack notification, install and connect the [Semaphore command line](../reference/semaphore-cli) and execute: ```shell title="Creating an Slack Notification" @@ -323,4 +335,4 @@ Sample `tag` object: ## See also - [How to create notifications using YAML](../reference/semaphore-cli#notifications) -- [How to create notifications for flaky tests](./tests/flaky-tests#notifications) \ No newline at end of file +- [How to create notifications for flaky tests](./tests/flaky-tests#notifications) diff --git a/docs/docs/using-semaphore/okta.md b/docs/docs/using-semaphore/okta.md index f071fad31..11aa9438c 100644 --- a/docs/docs/using-semaphore/okta.md +++ b/docs/docs/using-semaphore/okta.md @@ -237,6 +237,12 @@ Semaphore asks new users logging in via SSO to [connect their GitHub](./connect- ![Connect Git](./img/connect-git.jpg) +:::info + +Once enforced, Okta is the **only login method allowed** for all users in the organization. Dual authentication methods like Okta + GitHub/BitBucket/GitLab are not supported. + +::: + ## Troubleshooting duplicated users {#troubleshooting} Semaphore tries to match new users provisioned via SCIM to existing Semaphore users by email address. If the email address associated with the SCIM request matches the email address of existing Semaphore users, the two accounts will be connected, and no new account will be provisioned. Email associated with Semaphore is the primary email from GitHub or BitBucket. diff --git a/docs/docs/using-semaphore/pipelines.md b/docs/docs/using-semaphore/pipelines.md index 43ab3d8d0..480340889 100644 --- a/docs/docs/using-semaphore/pipelines.md +++ b/docs/docs/using-semaphore/pipelines.md @@ -4,7 +4,6 @@ description: Connect blocks to get things done # Pipelines - import Tabs from '@theme/Tabs'; import TabItem from '@theme/TabItem'; import Available from '@site/src/components/Available'; @@ -17,7 +16,7 @@ A pipeline is a group of connected blocks. This page explains what pipelines are Pipelines are groups of blocks that can be connected via dependencies to define their execution order. -Pipelines are also the *unit of configuration*. Each pipeline is encoded as separate a YAML file in the `.semaphore` folder. +Pipelines are also the *unit of configuration*. Each pipeline is encoded as separate a YAML file in the `.semaphore` folder. For reference, here is an example pipeline with its respective YAML. @@ -151,6 +150,16 @@ Here you can see the how spc evaluated the pipeline and all the actions taken du ![Example init job log](./img/init-log-example.jpg) +## Pipeline rebuild {#rebuild} + +When a job in the pipeline fails, the default behavior is to stop the pipeline. You can attempt to re-run the pipeline in two ways: + +- Pressing **Rerun** restarts the whole pipeline from the beginning +- Pressing **Rebuild Pipeline** only re-runs the blocks with failed jobs + +![Location of rerun and rebuild buttons](./img/rerun-pipeline.jpg) + + ## Connecting pipelines with promotions {#connecting-pipelines} Your project can have multiple pipelines to perform different tasks such as build, release, or test. [Promotions](./promotions) connect pipelines. Multiple pipelines can be chained to create branching workflows to automate almost any task. @@ -163,7 +172,7 @@ For more information, see the [Promotions page](./promotions). ## Pipeline settings {#settings} -Pipeline settings are applied to all its blocks. You can change pipeline settings with the editor or directly in the YAML. +Pipeline settings are applied to all its blocks. You can change pipeline settings with the editor or directly in the YAML. ### Agents {#agents} @@ -174,7 +183,7 @@ Semaphore Cloud provides the following agent types in x86 and ARM architectures: - [Linux](../reference/machine-types#linux) Virtual Machines - [Docker containers](#docker-environments) running on Linux - [Apple macOS](../reference/machine-types#macos) Machines -- [Windows](./self-hosted-install) Virtual Machines (only for self-hosted agents) +- [Windows](./self-hosted-install) Virtual Machines (only for self-hosted agents) You can add your own machines by [installing self-hosted agents](./self-hosted). @@ -199,7 +208,6 @@ The available hardware changes depending on the type of environment you selected - 1. Add the `agent` and `machine` keys @@ -234,18 +242,17 @@ blocks: - ### Docker containers {#docker-environments} :::tip -If you want to build and run Docker images in your jobs, check the [working with Docker page](./optimization/docker). +If you want to build and run Docker images in your jobs, check the [working with Docker page](./containers/docker). ::: Jobs can run inside Docker containers. This allows you to define a custom-build environment with pre-installed tools and dependencies needed for your project. You can enable this setting in the pipeline agent or in the [block agent override](./jobs#agent-override). -You can run multiple containers at the same time. The job runs in the first container (called `main`) and attaches the other containers to the same network. This is similar to how containers inside a Kubernetes pod communicate. +You can run multiple containers at the same time. The job runs in the first container (called `main`) and attaches the other containers to the same network. This is similar to how containers inside a Kubernetes pod communicate. The network addresses of all containers are mapped to their names. Let's say you have two containers, "main" and "mysql", you can connect to the database from main with: @@ -319,7 +326,7 @@ To use images in private repositories see [Private Docker Registries](#docker-pr :::info -Semaphore provides a [public Docker registry](./optimization/container-registry) for popular images. +Semaphore provides a [public Docker registry](./containers/container-registry) for popular images. ::: @@ -419,6 +426,7 @@ blocks: commands: - npm run build ``` + @@ -462,6 +470,7 @@ blocks: commands: - npm run build ``` + @@ -575,10 +584,10 @@ blocks: commands: - npm run build ``` + - ### YAML file path {#yaml-path} This option overrides the location of the pipeline file. This option is not available for the default pipeline (located at `.semaphore/semaphore.yml`). @@ -678,7 +687,6 @@ after_pipeline: - ## Private Docker Registries {#docker-private} If the images you need for your [docker environment](#docker-environments) are not publicly available, you need to provide authentication credentials in your pipeline. This feature is only available by editing the pipeline YAML directly. @@ -746,7 +754,6 @@ To pull images from a private AWS Elastic Container Registry (ECR), follow these ### Images in Google GCR {#docker-gcr} - To pull images from a private Google Container Registry (GCR), follow these steps: @@ -841,14 +848,13 @@ To pull images from any arbitrary Docker registry, follow these steps: - ## Pipeline queues {#pipeline-queues} Queues allow you to control the order in which pipelines run. Semaphore pipelines can run sequentially or in parallel. For example, you can run CI pipelines in parallel on the main branch, while limiting deployment pipelines to run one at at time to prevent conflicts or race conditions. ### Default and named queues {#named-queues} -Semaphore creates a queue for each Git push or pull requests. All workflows sharing the same commit SHA belong in the same queue and run sequentially. +Semaphore creates a queue for each Git push or pull requests. All workflows sharing the same commit SHA belong in the same queue and run sequentially. In other words, every time you re-run a workflow, create a pull request, push a tag, or start a [promotion](./pipelines#connecting-pipelines), the pipeline is added to the end of the same-commit queue. @@ -964,7 +970,7 @@ blocks: ### Conditional queues {#conditional-queues} -You can use conditional statements to assign pipelines based on parameters like branch name or tag name. +You can use conditional statements to assign pipelines based on parameters like branch name or tag name. The following example uses three rules: @@ -1046,7 +1052,6 @@ To change the global time limit for all jobs in a pipeline, follow these steps: - 1. Open the pipeline YAML @@ -1090,13 +1095,13 @@ See [job time limit](./jobs#job-duration) to change the maximum duration for a s You can workaround the queue limit by assigning pipelines to [named queues](#named-queues). -If you have a use case in which this limit is too constraining, please contact us at support@semaphoreci.com and we will try to work out a solution. +If you have a use case in which this limit is too constraining, please contact us at `support@semaphoreci.com` and we will try to work out a solution. ### Max blocks per pipeline {#max-blocks} There is a hard limit of a 100 blocks per pipeline. -This limit is not adjustable. If you have a use case in which this limit is too constraining, please contact us at support@semaphoreci.com and we will try to work out a solution. +This limit is not adjustable. If you have a use case in which this limit is too constraining, please contact us at `support@semaphoreci.com` and we will try to work out a solution. ## See also diff --git a/docs/docs/using-semaphore/recipes/img/infracost-key-secret.jpg b/docs/docs/using-semaphore/recipes/img/infracost-key-secret.jpg new file mode 100644 index 000000000..f825c51b3 Binary files /dev/null and b/docs/docs/using-semaphore/recipes/img/infracost-key-secret.jpg differ diff --git a/docs/docs/using-semaphore/recipes/img/infracost-secret.jpg b/docs/docs/using-semaphore/recipes/img/infracost-secret.jpg new file mode 100644 index 000000000..38bdd2c80 Binary files /dev/null and b/docs/docs/using-semaphore/recipes/img/infracost-secret.jpg differ diff --git a/docs/docs/using-semaphore/recipes/infracost.md b/docs/docs/using-semaphore/recipes/infracost.md new file mode 100644 index 000000000..ed8c227ec --- /dev/null +++ b/docs/docs/using-semaphore/recipes/infracost.md @@ -0,0 +1,195 @@ +--- +description: Implement FinOps in your pipeline with Infracost +sidebar_position: 1 +--- + +# Infracost FinOps + +The Infracost CLI tool parses Terraform files and estimates costs for your infrastructure. + +## Overview + +This guide will show you how to: + +- Run the Infracost CLI in Semaphore +- Comment Git commits with cost deltas +- Comment pull requests with cost deltas +- Fail the CI pipeline if costs exceed a custom-defined policy + +## Prerequisites + +For this guide, you will need the following: + +- [A working Semaphore project](../projects) with a CI pipeline +- At least one [Terraform](https://developer.hashicorp.com/terraform) file in your project +- An [Infracost](https://www.infracost.io/) API key. You must sign up with a free account to obtain it +- A GitHub, Bitbucket, or GitLab API key with permission to write comments in the repository + +## Adding a baseline to the repository + +In order to estimate deviations from the expected cost, you must store a baseline file in your repository. The following command will generate `baseline.json` based on all the Terraform files found in your project folder: + +```shell +infracost breakdown --path . --format json --out-file baseline.json +``` + +Now you can push `baseline.json` into your repository. + +## Storing the API keys in secrets + +Follow the [Infracost getting started guide](https://www.infracost.io/docs/) to install the CLI tool on your machine and obtain an API key. Create a [secret](../secrets) in Semaphore to store it: + +![Infracost API key secret](./img/infracost-key-secret.jpg) + +Create a token for your Git provider: + +- **GitHub**: [create a token](https://github.com/settings/tokens) with write permissions on your repository +- **BitBucket**: [create an app password](https://support.atlassian.com/bitbucket-cloud/docs/app-passwords/) with write permissions +- **GitLab**: [create an access token](https://docs.gitlab.com/user/profile/personal_access_tokens/) with `write_repository` permissions + +Store the access token in Semaphore: + +![GitHub Token Secret](./img/infracost-secret.jpg) + +## Adding cost estimates to commits + +When Infracost runs in your CI/CD workflow, it can post comments in commits and pull requests with the estimated cost difference from the baseline or between branches. + +### Estimates on GitHub + +Before you can calculate cost differences in commits or peer reviews, you need to establish a baseline. If you have any usage-based resources such as serverless functions, you need to first create an [usage file](https://www.infracost.io/docs/features/usage_based_resources/). + +```shell +infracost breakdown --sync-usage-file --usage-file usage.yml --path . +``` + +Now, edit `usage.yml` to add your usage estimates for the moth. + +Next, you're ready to create a baseline file. Skip `--usage-file` if you're not using any usage-based cloud resources: + +```shell +infracost breakdown --path . --format json --usage-file usage.yml --out-file baseline.json +``` + +After checking in all the new files into the repository, edit the pipeline to run the cost analysis. Use the following commands in your CI job to post a comment on GitHub with the cost delta between the current commit and the baseline: + +```shell +curl -fsSL https://raw.githubusercontent.com/infracost/infracost/master/scripts/install.sh | sh +checkout +infracost diff --path . --format json --compare-to baseline.json --out-file /tmp/infracost-diff-commit.json +infracost comment github --path=/tmp/infracost-diff-commit.json --repo=$SEMAPHORE_GIT_REPO_SLUG --commit=$SEMAPHORE_GIT_SHA --github-token=$GITHUB_TOKEN --behavior=update +``` + +### Commenting on BitBucket + +Use the following command in a job to comment on BitBucket the difference in cost between the current commit and the baseline: + +```shell +curl -fsSL https://raw.githubusercontent.com/infracost/infracost/master/scripts/install.sh | sh +checkout +infracost diff --path . --format json --compare-to baseline.json --out-file /tmp/infracost-diff-commit.json +infracost comment bitbucket --path=/tmp/infracost-diff-commit.json --repo=$SEMAPHORE_GIT_REPO_SLUG --commit=$SEMAPHORE_GIT_SHA --bitbucket-token=$BITBUCKET_TOKEN --behavior=update +``` + +### Commenting on GitLab + +Use the following command in a job to comment on GitLab the difference in cost between the current commit and the baseline: + +```shell +curl -fsSL https://raw.githubusercontent.com/infracost/infracost/master/scripts/install.sh | sh +checkout +infracost diff --path . --format json --compare-to baseline.json --out-file /tmp/infracost-diff-commit.json +infracost comment gitlab --path=/tmp/infracost-diff-commit.json --repo=$SEMAPHORE_GIT_REPO_SLUG --commit=$SEMAPHORE_GIT_SHA --gitlab-token=$GITLAB_TOKEN --behavior=update +``` + +## Adding cost estimate to pull requests + +A separate job can also be created to post comment on pull requests. This allows the reviewer to quickly assess the cost changes between branches. + +### Estimates on GitHub + +The following example calculates the cost change between the master and the branch that triggered the workflow in GitHub: + +```shell +curl -fsSL https://raw.githubusercontent.com/infracost/infracost/master/scripts/install.sh | sh +checkout +git checkout master +infracost breakdown --path . --format json --out-file /tmp/infracost-master.json +git checkout FETCH_HEAD +infracost diff --path . --format json --compare-to /tmp/infracost-master.json --out-file /tmp/infracost-diff-master.json +infracost comment github --path=/tmp/infracost-diff-master.json --repo=$SEMAPHORE_GIT_REPO_SLUG --pull-request=$SEMAPHORE_GIT_PR_NUMBER --github-token=$GITHUB_TOKEN --behavior=update +``` + +### Estimates on BitBucket + +The following example calculates the cost change between the master and the branch that triggered the workflow in BitBucket: + +```shell +curl -fsSL https://raw.githubusercontent.com/infracost/infracost/master/scripts/install.sh | sh +checkout +git checkout master +infracost breakdown --path . --format json --out-file /tmp/infracost-master.json +git checkout FETCH_HEAD +infracost diff --path . --format json --compare-to /tmp/infracost-master.json --out-file /tmp/infracost-diff-master.json +infracost comment bitbucket --path=/tmp/infracost-diff-master.json --repo=$SEMAPHORE_GIT_REPO_SLUG --pull-request=$SEMAPHORE_GIT_PR_NUMBER --bitbucket-token=$BITBUCKET_TOKEN --behavior=update +``` + +### Estimates on GitLab + +The following example calculates the cost change between the master and the branch that triggered the workflow in GitLab: + +```shell +curl -fsSL https://raw.githubusercontent.com/infracost/infracost/master/scripts/install.sh | sh +checkout +git checkout master +infracost breakdown --path . --format json --out-file /tmp/infracost-master.json +git checkout FETCH_HEAD +infracost diff --path . --format json --compare-to /tmp/infracost-master.json --out-file /tmp/infracost-diff-master.json +infracost comment gitlab --path=/tmp/infracost-diff-master.json --repo=$SEMAPHORE_GIT_REPO_SLUG --pull-request=$SEMAPHORE_GIT_PR_NUMBER --gitlab-token=$GITLAB_TOKEN --behavior=update +``` + +## Enforcing policies + +Infracost can be used to enforce cost policies with continuous integration. When a policy is used, the Infracost CLI will return a non-zero exit status, stopping the pipeline and preventing a deployment that would run over the budget. + +First, we must create a policy file and push it into the repository. To learn about the policy syntax, read the [cost policies docs](https://www.infracost.io/docs/features/cost_policies/) on Infracost. + +The following example sets a maximum budget of USD 1000 per month: + +```rego +# policy.rego + +package infracost + +deny[out] { + + # define a variable + maxMonthlyCost = 1000.0 + + msg := sprintf( + "Total monthly cost must be less than $%.2f (actual cost is $%.2f)", + [maxMonthlyCost, to_number(input.totalMonthlyCost)], + ) + + out := { + "msg": msg, + "failed": to_number(input.totalMonthlyCost) >= maxMonthlyCost + } +} +``` + +To evaluate the policy file, you must add the `--policy-path POLICY_FILENAME` option to any of the comment commands. For example: + +```shell +# calculate difference between commit and baseline +infracost diff --path . --format json --compare-to baseline.json --out-file /tmp/infracost-diff-commit.json + +# enforce policy +infracost comment github --path=/tmp/infracost-diff-commit.json --repo=$SEMAPHORE_GIT_REPO_SLUG --commit=$SEMAPHORE_GIT_SHA --github-token=$GITHUB_API_KEY --behavior=update +``` + +## Tips for using Infracost + +- You can use [monorepo conditions](../monorepo) like `change_in('/**/*.tf')` or `change_in('/**/*.tfvars')` to run Infracost only when Terraform files change +- You can create a [config file](https://www.infracost.io/docs/features/config_file/) manage [monorepo workflows](../monorepo) provide utilization forecast for per-usage services such as AWS lambda +- You can add a [badge](https://www.infracost.io/docs/infracost_cloud/readme_badge/) to your repository with the estimated monthly cost diff --git a/docs/docs/using-semaphore/recipes/trivy.md b/docs/docs/using-semaphore/recipes/trivy.md new file mode 100644 index 000000000..af92c3bed --- /dev/null +++ b/docs/docs/using-semaphore/recipes/trivy.md @@ -0,0 +1,152 @@ +--- +description: Open source security scans in your CI pipelines +sidebar_position: 2 +--- + +# Trivy Vulnerability Scanning + +import Tabs from '@theme/Tabs'; +import TabItem from '@theme/TabItem'; +import Available from '@site/src/components/Available'; +import VideoTutorial from '@site/src/components/VideoTutorial'; +import Steps from '@site/src/components/Steps'; + +This page explains how to run the open source [Trivy security scanner](https://github.com/aquasecurity/trivy) in Semaphore. + +## Overview + +Trivy is a comprehensive security scanner that detects various security issues across different targets. + +It can scan: + +- container images +- software dependencies +- Git repositories +- VM images and OS packages +- Kubernetes environments +- Infrastructure-as-Code (IaC) files +- filesystems for misconfigurations, leaked secrets, and license check + +Trivy works with most programming languages and operating systems. You can check if your stack is supported in the [Trivy scanning coverage page](https://trivy.dev/latest/docs/coverage/). + +## Install Trivy in Semaphore {#install} + +You must install Trivy in the CI environment or use a Docker image with Trivy already installed. + +To install Trivy in your CI environment, follow these steps: + + + +1. Find the [latest Trivy release](https://github.com/aquasecurity/trivy/releases) +2. Install Trivy using the package manager (or build from source) + + ```shell + # replace with the latest release + wget https://github.com/aquasecurity/trivy/releases/download/v0.65.0/trivy_0.65.0_Linux-32bit.deb + sudo dpkg -i trivy_0.65.0_Linux-32bit.deb + ``` + +3. Run Trivy to scan your project. Use the `--exit-code 1` option to exit with error when the scan detects a problem + + For example: + + ```shell + checkout + trivy fs --exit-code 1 . + ``` + + + +You must repeat Step 2 in every job that uses Trivy. Use the [prologue](../pipelines#prologue) if multiple jobs require Trivy. + +## Enabling the cache {#cache} + +Trivy keeps the last scans and vulnerability database in a local folder in the CI environment. You can speed up scanning jobs by caching this directory. + +Trivy stores its database in `$HOME/.cache/trivy` by default, you can change it by specifing the [`--cache-dir`](https://trivy.dev/latest/docs/configuration/cache/) option. To persist this directory, use the [cache](../cache) command. + +The following example runs a [file scan](#files) using the cache: + +```shell +cache restore trivy-db +trivy fs --exit-code 1 . +cache store trivy-db $HOME/.cache/trivy +``` + +You can use this pattern with all types of scanning. + +## Scan Files {#files} + +Trivy filesystem scan finds problems in your local directories. In the CI environment, you must run [`checkout`](../../reference/toolbox#checkout) to clone the repository in the CI machine. + +To run filesystem scan use `trivy fs`. +Filesystem scan can find: + +- vulnerabilies +- misconfigurations +- leaked secrets +- license checks + +### Vulnerabilities and leaked secrets {#vulnerabilities} + +To find vulnerabilities or leaked secrets in your code or dependencies, execute `trivy fs` as follows: + +```shell +checkout +trivy fs --exit-code 1 path/to/src +``` + +### Misconfigurations {#misconfigurations} + +By default, Trivy doesn't try to find misconfigurations, to enable this option, follow this example: + +```shell +checkout +trivy --scanners misconfig --exit-code 1 path/to/src +``` + +### License {#license} + +To perform [license scanning](https://trivy.dev/latest/docs/scanner/license/) execute Trivy as follows: + +```shell +checkout +trivy fs --scanners license --exit-code 1 path/to/src +``` + +## Scan Container images + +To scan your container images, including OS packages, use the following command. You might need to [authenticate with the Docker registry](../containers/docker#auth) first. + +```shell +docker pull IMAGE_NAME:TAG +trivy image --exit-code 1 IMAGE_NAME:TAG +``` + +As with filesystem scans, you can enable [misconfigurations](#misconfigurations) and [license](#license) scans in the container image. + +## Generate SBOM + +Trivy can generate a [Software Bill of Materials (SBOM)](https://trivy.dev/latest/docs/supply-chain/sbom/). + +For example, these command generate the SBOM using the CycloneDX format: + +```shell +checkout +trivy fs --format cyclonedx --output sbom.json path/to/src +artifact push workflow sbom.json +``` + +You can also generate SBOMs for Docker images with: + +```shell +docker pull IMAGE_NAME:TAG +trivy image --format cyclonedx --output sbom.json IMAGE_NAME:TAG +artifact push workflow sbom.json +``` + +## See also + +- [Trivy repository](https://github.com/aquasecurity/trivy) +- [Trivy Documentation](https://trivy.dev/latest/docs/) +- [Continuous Container Vulnerability Testing with Trivy](https://semaphore.io/blog/continuous-container-vulnerability-testing-with-trivy#h-vulnerability-testing-for-dependencies) diff --git a/docs/docs/using-semaphore/self-hosted-aws.md b/docs/docs/using-semaphore/self-hosted-aws.md index 334a74a67..181c5e3b3 100644 --- a/docs/docs/using-semaphore/self-hosted-aws.md +++ b/docs/docs/using-semaphore/self-hosted-aws.md @@ -14,7 +14,6 @@ import Steps from '@site/src/components/Steps'; Semaphore provides the open-source [AWS agent stack](https://github.com/renderedtext/agent-aws-stack) to help you deploy an autoscaling fleet of self-hosted agents in AWS. - ## Overview The AWS agent stack lets you autoscale EC2 instances on demand. Running cloud instances only when they are needed can help you gracefully manage bursts of activity and save costs when there is no work being done. @@ -30,7 +29,6 @@ The AWS agent stack provides the following features: ![Self-hosted agent AWS stack](./img/self-hosted-aws-stack.jpg) - ## Prerequisites The AWS agent stack requires the following: @@ -46,7 +44,6 @@ The AWS agent stack requires the following: Follow these steps to deploy self-hosted agents in AWS. - 1. Install the [latest AWS stack](https://github.com/renderedtext/agent-aws-stack/releases) and dependencies @@ -92,7 +89,6 @@ Follow these steps to deploy self-hosted agents in AWS. -
macOS AMI
@@ -110,7 +106,6 @@ Follow these steps to deploy self-hosted agents in AWS.
- 3. Encrypt your registration token The registration token created when registering the agent must be encrypted on AWS using [SSM](https://docs.aws.amazon.com/systems-manager/latest/userguide/ssm-agent.html) @@ -129,7 +124,6 @@ Follow these steps to deploy self-hosted agents in AWS. - `` with the name for the secret, e.g. `semaphore-registration-token` - `` with the registration token obtained during [agent registration](./self-hosted-install#register-agent) - 4. Create an execution policy for Cloudformation Run the following command to create `execution-policy.json`. This instructs CDK to list the Cloudformation permissions it needs to deploy the self-hosted agents @@ -156,7 +150,7 @@ Follow these steps to deploy self-hosted agents in AWS. Linux
- ```json title="config.json for Linux" + ```json title="config.json for Linux" { "SEMAPHORE_AGENT_STACK_NAME": "", "SEMAPHORE_AGENT_TOKEN_PARAMETER_NAME": "", @@ -164,6 +158,7 @@ Follow these steps to deploy self-hosted agents in AWS. "SEMAPHORE_ENDPOINT": ".semaphoreci.com" } ``` +
@@ -171,7 +166,7 @@ Follow these steps to deploy self-hosted agents in AWS. Windows
- ```json title="config.json for Windows" + ```json title="config.json for Windows" { "SEMAPHORE_AGENT_STACK_NAME": "", "SEMAPHORE_AGENT_TOKEN_PARAMETER_NAME": "", @@ -180,6 +175,7 @@ Follow these steps to deploy self-hosted agents in AWS. "SEMAPHORE_AGENT_OS": "windows" } ``` +
@@ -187,7 +183,7 @@ Follow these steps to deploy self-hosted agents in AWS. macOS
- ```json title="config.json for macOS" + ```json title="config.json for macOS" { "SEMAPHORE_AGENT_STACK_NAME": "", "SEMAPHORE_AGENT_TOKEN_PARAMETER_NAME": "", @@ -204,7 +200,6 @@ Follow these steps to deploy self-hosted agents in AWS. :::info - When a macOS instance is terminated it may take a long time for new one to start in its place. This may affect the time to rotate agents. macOS dedicated hosts are allocated for a minimum of 24 hours. It is recommended to set [`SEMAPHORE_AGENT_DISCONNECT_AFTER_IDLE_TIMEOUT`](../reference/agent-aws-stack#disconnect-after-idle-timeout) to at least 24 hours for macOS-based agents. This means that new instances started up due to a burst of demand may continue running idle for a long time before being shutdown. @@ -218,7 +213,7 @@ Follow these steps to deploy self-hosted agents in AWS. 6. Bootstrap the CDK application - Open the file `execution-policy.json` created in Step 4 and copy the ARN value. + Open the file `execution-policy.json` created in Step 4 and copy the ARN value. ```shell title="Bootstrapping the CDK application" SEMAPHORE_AGENT_STACK_CONFIG=config.json \ @@ -282,7 +277,7 @@ See the [AWS stack parameters reference](../reference/agent-aws-stack) for all t ### Cache -See [setting up S3 cache](./optimization/cache#aws) to learn how to configure cache with AWS S3 buckets. +See [setting up S3 cache](./cache#aws) to learn how to configure cache with AWS S3 buckets. ### Autoscaling {#scale} @@ -319,7 +314,6 @@ Self-hosted agents in AWS connect to your [default AWS VPC](https://docs.aws.ama You can change this behavior by creating a new VPC and subnets and configuring the parameters `SEMAPHORE_AGENT_VPC_ID` and `SEMAPHORE_AGENT_SUBNETS` during setup. - ## Troubleshooting tips This section explains how to troubleshoot, view logs, and access the EC2 instances. @@ -330,7 +324,7 @@ Agents use [CloudWatch](https://docs.aws.amazon.com/AmazonCloudWatch/latest/moni You can find the logs in these locations: -- **Agent logs**: agent log belong to the `semaphore/agent` log group +- **Agent logs**: agent log belong to the `semaphore/agent` log group - **Linux logs**: located at `/tmp/agent_log` - **Windows logs**: located at `/tmp/agent_log` - **Linux cloud init logs**: pushed to the `/semaphore/cloud-init` and `/semaphore/cloud-init/output` log groups @@ -370,4 +364,3 @@ If you experience agent registration errors, follow these steps to troubleshoot: - [AWS autoscaler stack reference](../reference/agent-aws-stack) - [Self-hosted agents configuration reference](../reference/self-hosted-config) - [Docker environments](./pipelines#docker-environments) - diff --git a/docs/docs/using-semaphore/self-hosted.md b/docs/docs/using-semaphore/self-hosted.md index dd3f1da5f..ff14fce90 100644 --- a/docs/docs/using-semaphore/self-hosted.md +++ b/docs/docs/using-semaphore/self-hosted.md @@ -62,7 +62,6 @@ Self-hosted agents use one-way communication to connect with Semaphore. Requests When the agent boots up it sends a register request using a registration token. If the registration succeeds, the agent receives an access token to be used in all future communications and enters the *waiting for job* state. - ```mermaid sequenceDiagram Agent->>+Semaphore: GET /register(registrationToken) @@ -133,7 +132,7 @@ Not all of the [Semaphore toolbox](../reference/toolbox) commands are available | Feature | Available | Notes | |---------------------------------------------|-----------|-------------------------------------------------| -| Using the [cache](../reference/toolbox#cache) | Optional | Using [S3](./optimization/cache#aws), [GCP](./optimization/cache#gcp), or [SFTP](./optimization/cache#sftp) as a storage backend | +| Using the [cache](../reference/toolbox#cache) | Optional | Using [S3](./cache#aws), [GCP](./cache#gcp), or [SFTP](./cache#sftp) as a storage backend | | [Artifact](./artifacts) storage | Yes | | | [Test results](./tests/test-reports) and [flaky tests](./tests/flaky-tests) | Yes | | | Checking code with [checkout](../reference/toolbox#checkout) | Yes | | @@ -231,4 +230,3 @@ Keep in mind that: - [How to configure self-hosted agents](./self-hosted-configure) - [How to run an autoscaling fleet of agents in AWS](./self-hosted-aws) - [Self-hosted agents configuration reference](../reference/self-hosted-config) - diff --git a/docs/docusaurus.config.js b/docs/docusaurus.config.js index ba593d2fc..99521ba14 100644 --- a/docs/docusaurus.config.js +++ b/docs/docusaurus.config.js @@ -50,7 +50,7 @@ const config = { /** @type {import('@docusaurus/preset-classic').Options} */ ({ docs: { - sidebarCollapsible: false, + sidebarCollapsible: true, routeBasePath: '/', // move docs to the website root sidebarPath: './sidebars.js', docItemComponent: "@theme/ApiItem", // Derived from docusaurus-theme-openapi @@ -65,23 +65,23 @@ const config = { banner: "none", }, "CE": { - label: 'Community Edition v1.3', + label: 'Community Edition v1.4 (latest)', path: 'CE', banner: "none" }, - "CE-1.2": { - label: 'Community Edition v1.2', - path: 'CE-1.2', - }, - "CE-1.1": { - label: 'Community Edition v1.1', - path: 'CE-1.1', + "CE-1.3": { + label: 'Community Edition v1.3', + path: 'CE-1.3', }, "EE": { - label: 'Enterprise Edition v1.3', + label: 'Enterprise Edition v1.4 (latest)', path: 'EE', banner: "none" }, + "EE-1.3": { + label: 'Enterprise Edition v1.3', + path: 'EE-1.3', + }, }, }, @@ -195,12 +195,12 @@ const config = { }, // This is an optional announcement bar. It goes on the top of the page - announcementBar: { - id: `announcementBar-1`, - content: `Semaphore Enterprise Edition v1.3.0 is available! — ⭐️ If you like Semaphore, give it a star on GitHub`, - backgroundColor: '#49a26e', - textColor: '#f5f6f7' - }, + // announcementBar: { + // id: `announcementBar-1`, + // content: `Semaphore Enterprise Edition v1.3.0 is available! — ⭐️ If you like Semaphore, give it a star on GitHub`, + // backgroundColor: '#49a26e', + // textColor: '#f5f6f7' + // }, footer: { style: 'dark', links: [ diff --git a/docs/sidebars.js b/docs/sidebars.js index 950e65ae8..540eb080e 100644 --- a/docs/sidebars.js +++ b/docs/sidebars.js @@ -34,7 +34,7 @@ const sidebars = { { type: 'category', label: 'Migration Guides', - collapsed: true, + collapsed: false, items: [ { type: 'autogenerated', @@ -57,6 +57,7 @@ const sidebars = { items: [ 'using-semaphore/jobs', 'using-semaphore/pipelines', + 'using-semaphore/cache', 'using-semaphore/artifacts', 'using-semaphore/secrets', 'using-semaphore/promotions', @@ -82,7 +83,7 @@ const sidebars = { { type: 'category', label: 'Reports', - collapsed: false, + collapsed: true, items: [ { type: 'autogenerated', @@ -97,7 +98,7 @@ const sidebars = { type: 'doc', id: 'using-semaphore/organizations' }, - collapsed: false, + collapsed: true, items: [ 'using-semaphore/billing', 'using-semaphore/rbac', @@ -109,10 +110,21 @@ const sidebars = { 'using-semaphore/openid', ] }, + { + type: 'category', + label: 'Containers', + collapsed: true, + items: [ + { + type: 'autogenerated', + dirName: 'using-semaphore/containers', + }, + ], + }, { type: 'category', label: 'Languages and Databases', - collapsed: false, + collapsed: true, items: [ { type: 'autogenerated', @@ -127,7 +139,7 @@ const sidebars = { type: 'doc', id: 'using-semaphore/self-hosted' }, - collapsed: false, + collapsed: true, items: [ 'using-semaphore/self-hosted-install', 'using-semaphore/self-hosted-configure', @@ -136,12 +148,12 @@ const sidebars = { }, { type: 'category', - label: 'Optimization', - collapsed: false, + label: 'Recipes', + collapsed: true, items: [ { type: 'autogenerated', - dirName: 'using-semaphore/optimization', + dirName: 'using-semaphore/recipes', }, ], }, @@ -192,7 +204,7 @@ const sidebars = { type: 'doc', id: 'reference/os-ubuntu', }, - collapsed: false, + collapsed: true, items: [ 'reference/os-ubuntu-images/ubuntu-2004-image', 'reference/os-ubuntu-images/ubuntu-2204-image', @@ -207,7 +219,7 @@ const sidebars = { type: 'doc', id: 'reference/resources-yaml', }, - collapsed: false, + collapsed: true, items: [ 'reference/agent-yaml', 'reference/dashboard-yaml', diff --git a/docs/src/components/FeatureCards/index.jsx b/docs/src/components/FeatureCards/index.jsx index 70bdcb997..f710cd82e 100644 --- a/docs/src/components/FeatureCards/index.jsx +++ b/docs/src/components/FeatureCards/index.jsx @@ -179,7 +179,7 @@ const Features = [ ), image: require('@site/static/home/optimization-guide.png'), - url: 'using-semaphore/optimization/cache', + url: 'using-semaphore/cache', description: ( Learn how to speed up workflows using the cache and container registry. @@ -236,4 +236,4 @@ export function FeatureCardsRow() { ))}
); -} \ No newline at end of file +} diff --git a/docs/versioned_docs/version-CE-1.1/getting-started/features.md b/docs/versioned_docs/version-CE-1.1/getting-started/features.md deleted file mode 100644 index 9a1d78597..000000000 --- a/docs/versioned_docs/version-CE-1.1/getting-started/features.md +++ /dev/null @@ -1,86 +0,0 @@ ---- -description: Feature comparison between Semaphore editions ---- - -# Feature Comparison - -import Tabs from '@theme/Tabs'; -import TabItem from '@theme/TabItem'; -import Available from '@site/src/components/Available'; -import VideoTutorial from '@site/src/components/VideoTutorial'; -import Steps from '@site/src/components/Steps'; -import FeatureNotAvailable from '@site/src/components/FeatureNotAvailable'; - -This page compares the features available across all [Semaphore editions](./about-semaphore). - -## CI/CD Workflows - -| Feature | Semaphore Cloud | Semaphore CE | -|--|--|--| -| Visual editor | Yes | Yes | -| Artifacts | Yes | Yes | -| Tasks | Yes | Yes | -| SSH Debug | Yes | Yes | -| Cache | Yes | Yes | -| Monorepo support | Yes | Yes | -| Initialization jobs | Yes | Yes | -| Self-hosted agents | Yes | Yes | -| GitHub support | Yes | Yes | -| GitLab support | Yes | Yes | -| BitBucket support | Yes | Yes | -| Promotions | Yes | No | -| Parameterized promotions | Yes | No | -| Deployment targets | Yes | No | -| Pre-flight checks | Yes | No | -| sem-service & sem-version | Yes | No | - -## Dashboards - -| Feature | Semaphore Cloud | Semaphore CE | -|--|--|--| -| Test reports | Yes | Yes | -| Activity monitor | Yes | Yes | -| Custom Dashboards | Yes | No | -| Flaky tests | Yes | No | -| Project insights | Yes | No | -| Organization health | Yes | No | - -## Security and compliance - -| Feature | Semaphore Cloud | Semaphore CE | -|--|--|--| -| Project-level secrets | Yes | Yes | -| Organization secrets | Yes | Yes | -| Policies for accessing secrets | Yes | No | -| Audit logs | Yes | No | - -## User and permissions management - -| Feature | Semaphore Cloud | Semaphore CE | -|--|--|--| -| Multiple organizations | Yes | No | -| Invite users to your organization | Yes | Yes | -| Organization roles | Yes | Yes | -| Project roles | Yes | Yes (*) | -| User groups | Yes | No | -| Custom Roles | Yes | No | - -(*) Project roles exist but cannot be manually assigned to individual users. The role is assigned based on project membership and server roles. - -## Integrations - -| Feature | Semaphore Cloud | Semaphore CE | -|--|--|--| -| Repository status checks | Yes | Yes | -| Repository badges | Yes | Yes | -| Slack notifications | Yes | Yes | -| Webhook notifications | Yes | Yes | -| SAML/SCIM integrations | Yes | No | -| Okta integration | Yes | No | -| OpenID Connect | Yes | No | -| GitHub SSO | Yes | No | - -## See also - -- [Guided tour](./guided-tour) -- [Migration guides](./migration/overview) diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/agent-docker.jpg b/docs/versioned_docs/version-CE-1.1/using-semaphore/img/agent-docker.jpg deleted file mode 100644 index 14fc0bbb4..000000000 Binary files a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/agent-docker.jpg and /dev/null differ diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/agent-settings.jpg b/docs/versioned_docs/version-CE-1.1/using-semaphore/img/agent-settings.jpg deleted file mode 100644 index 4fd2198bb..000000000 Binary files a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/agent-settings.jpg and /dev/null differ diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/create-project-1.jpg b/docs/versioned_docs/version-CE-1.1/using-semaphore/img/create-project-1.jpg deleted file mode 100644 index 7fcde346e..000000000 Binary files a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/create-project-1.jpg and /dev/null differ diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/create-project-2.jpg b/docs/versioned_docs/version-CE-1.1/using-semaphore/img/create-project-2.jpg deleted file mode 100644 index 4899592be..000000000 Binary files a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/create-project-2.jpg and /dev/null differ diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/create-project-3.jpg b/docs/versioned_docs/version-CE-1.1/using-semaphore/img/create-project-3.jpg deleted file mode 100644 index 9e1867dba..000000000 Binary files a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/create-project-3.jpg and /dev/null differ diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/create-project-4.jpg b/docs/versioned_docs/version-CE-1.1/using-semaphore/img/create-project-4.jpg deleted file mode 100644 index 7ecb704af..000000000 Binary files a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/create-project-4.jpg and /dev/null differ diff --git a/docs/versioned_docs/version-CE-1.2/getting-started/tour/continuous-delivery.md b/docs/versioned_docs/version-CE-1.2/getting-started/tour/continuous-delivery.md deleted file mode 100644 index 6ccc879d1..000000000 --- a/docs/versioned_docs/version-CE-1.2/getting-started/tour/continuous-delivery.md +++ /dev/null @@ -1,100 +0,0 @@ ---- -description: Finish up with automated continuous delivery ---- - -# Continuous Delivery - -import Tabs from '@theme/Tabs'; -import TabItem from '@theme/TabItem'; -import Available from '@site/src/components/Available'; -import VideoTutorial from '@site/src/components/VideoTutorial'; -import Steps from '@site/src/components/Steps'; - -We succeeded into having a program built and tested using Continuous Integration. It's time to release it automatically using Continuous Delivery. - -In this section you will learn about: - -- Protecting sensitive data with Secrets -- Releasing your compiled application to GitHub - -## Prerequisites - -For this part of the tutorial you will need: - -- A [GitHub Access Token](https://github.com/settings/tokens) with read+write content permissions -- The `git` command line tool - -## Releasing to the world - -The goal is to automatically deploy the built binary to the GitHub repository so people can download and enjoy our program. Next, we're going to add a job that automatically uploads the binary to the repository every time we tag a release with `git tag` - -## Creating a Secret {#secret} - -In order to upload files from the Semaphore job we need to authenticate with your GitHub account. For that, we'll need an access token. - -Now, the problem with such tokens is that they should remain secret. This rules out using environment variables in our jobs to store the token, as these are visible to anyone with read access to the repository. - -We can protect sensitive data such as tokens with *secrets*. Secrets provide a secure way to store key-value pairs and files within your Semaphore instance. So, even if our repository is public, no one outside can access these secrets. - -To create a secret, follow these steps: - - - -1. Open the project in Semaphore and go to the **Settings** tab -2. Go to **Secrets** -3. Press **New Secret** -4. Type a name for the secret, e.g. `github-release` -5. Type the key-value pair required to authenticate with GitHub - - The variable name is `GH_TOKEN` and the value is your unique token generated in your GitHub account - - ![Creating a secret](./img/create-secret.jpg) - -6. Press **Save Secret** - - - -## Release job {#release} - -Now we're ready to add a release job. We can use the [gh command line tool](https://cli.github.com/) to automate the release from a Semaphore job. - - - -1. Open the workflow editor -2. Add a block -3. Type the following commands - - ```shell title="Release job" - checkout - artifact pull workflow hello-go - gh release create "$SEMAPHORE_WORKFLOW_ID" hello-go --latest -t "$SEMAPHORE_WORKFLOW_ID" -n "Continuous Delivery Release: $SEMAPHORE_WORKFLOW_ID" - ``` - - The job pulls the binary from the artifact repository and publishes it using a unique UUID generated by Semaphore - -4. Open the **Secrets** section on the block and enable `github-release` - - ![Release job](./img/release-job-ci.jpg) - -5. Start the workflow - - - -After the workflow finishes you should see a new release on your GitHub repository. - -![Released package](./img/release1.jpg) - -## What have we learned? - -- How to create and use Secrets -- How to release packages to GitHub - -## What's next? - -That's all for the guided tour. What you've learned here will serve you well to build complex workflows for a lot of scenarios. - -There is, of course, a lot more to learn. Semaphore is packed with features that do more with less work and optimizations to greatly speed up your workflows. - -We recommend going next to the [Using Semaphore](../../using-semaphore/workflows) page. Here you will find the complete handbook for all Semaphore operations. - -Thank you for trying out Semaphore and happy building! diff --git a/docs/versioned_docs/version-CE-1.2/reference/audit-events.md b/docs/versioned_docs/version-CE-1.2/reference/audit-events.md deleted file mode 100644 index 837adc953..000000000 --- a/docs/versioned_docs/version-CE-1.2/reference/audit-events.md +++ /dev/null @@ -1,15 +0,0 @@ ---- -description: Audit log events reference -displayed_sidebar: reference ---- - -# Audit Log Events Reference - -import Tabs from '@theme/Tabs'; -import TabItem from '@theme/TabItem'; -import Available from '@site/src/components/Available'; -import VideoTutorial from '@site/src/components/VideoTutorial'; -import Steps from '@site/src/components/Steps'; -import FeatureNotAvailable from '@site/src/components/FeatureNotAvailable'; - - diff --git a/docs/versioned_docs/version-CE-1.2/reference/dashboard-yaml.md b/docs/versioned_docs/version-CE-1.2/reference/dashboard-yaml.md deleted file mode 100644 index d8e673b5e..000000000 --- a/docs/versioned_docs/version-CE-1.2/reference/dashboard-yaml.md +++ /dev/null @@ -1,15 +0,0 @@ ---- -description: Dashboards YAML reference -displayed_sidebar: reference ---- - -# Dashboards YAML - -import Tabs from '@theme/Tabs'; -import TabItem from '@theme/TabItem'; -import Available from '@site/src/components/Available'; -import VideoTutorial from '@site/src/components/VideoTutorial'; -import Steps from '@site/src/components/Steps'; -import FeatureNotAvailable from '@site/src/components/FeatureNotAvailable'; - - diff --git a/docs/versioned_docs/version-CE-1.2/reference/deployment-target-yaml.md b/docs/versioned_docs/version-CE-1.2/reference/deployment-target-yaml.md deleted file mode 100644 index c1d10353b..000000000 --- a/docs/versioned_docs/version-CE-1.2/reference/deployment-target-yaml.md +++ /dev/null @@ -1,16 +0,0 @@ ---- -description: Deployment Targets YAML reference -displayed_sidebar: reference ---- - -# Deployment Targets YAML - -import Tabs from '@theme/Tabs'; -import TabItem from '@theme/TabItem'; -import Available from '@site/src/components/Available'; -import VideoTutorial from '@site/src/components/VideoTutorial'; -import Steps from '@site/src/components/Steps'; -import FeatureNotAvailable from '@site/src/components/FeatureNotAvailable'; - - - diff --git a/docs/versioned_docs/version-CE-1.2/reference/openid.md b/docs/versioned_docs/version-CE-1.2/reference/openid.md deleted file mode 100644 index cda24c19a..000000000 --- a/docs/versioned_docs/version-CE-1.2/reference/openid.md +++ /dev/null @@ -1,15 +0,0 @@ ---- -description: OpenID Connect (OIDC) token reference -display_sidebar: reference ---- - -# OIDC Tokens - -import Tabs from '@theme/Tabs'; -import TabItem from '@theme/TabItem'; -import Available from '@site/src/components/Available'; -import VideoTutorial from '@site/src/components/VideoTutorial'; -import Steps from '@site/src/components/Steps'; -import FeatureNotAvailable from '@site/src/components/FeatureNotAvailable'; - - diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/github-sso.md b/docs/versioned_docs/version-CE-1.2/using-semaphore/github-sso.md deleted file mode 100644 index 701132025..000000000 --- a/docs/versioned_docs/version-CE-1.2/using-semaphore/github-sso.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -description: Single Sign On with GitHub ---- - -# Single Sign On with GitHub - -import Tabs from '@theme/Tabs'; -import TabItem from '@theme/TabItem'; -import Available from '@site/src/components/Available'; -import VideoTutorial from '@site/src/components/VideoTutorial'; -import Steps from '@site/src/components/Steps'; -import FeatureNotAvailable from '@site/src/components/FeatureNotAvailable'; - - diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/insights.md b/docs/versioned_docs/version-CE-1.2/using-semaphore/insights.md deleted file mode 100644 index de5abb7c2..000000000 --- a/docs/versioned_docs/version-CE-1.2/using-semaphore/insights.md +++ /dev/null @@ -1,15 +0,0 @@ ---- -description: View your pipeline productivity -displayed_sidebar: usingSemaphore ---- - -# Project Insights - -import Tabs from '@theme/Tabs'; -import TabItem from '@theme/TabItem'; -import Available from '@site/src/components/Available'; -import VideoTutorial from '@site/src/components/VideoTutorial'; -import Steps from '@site/src/components/Steps'; -import FeatureNotAvailable from '@site/src/components/FeatureNotAvailable'; - - diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/okta.md b/docs/versioned_docs/version-CE-1.2/using-semaphore/okta.md deleted file mode 100644 index adf97b16d..000000000 --- a/docs/versioned_docs/version-CE-1.2/using-semaphore/okta.md +++ /dev/null @@ -1,15 +0,0 @@ ---- -description: SSO and user management automation -displayed_sidebar: usingSemaphore ---- - -# Okta Integration - -import Tabs from '@theme/Tabs'; -import TabItem from '@theme/TabItem'; -import Available from '@site/src/components/Available'; -import VideoTutorial from '@site/src/components/VideoTutorial'; -import Steps from '@site/src/components/Steps'; -import FeatureNotAvailable from '@site/src/components/FeatureNotAvailable'; - - diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/openid.md b/docs/versioned_docs/version-CE-1.2/using-semaphore/openid.md deleted file mode 100644 index 362050c11..000000000 --- a/docs/versioned_docs/version-CE-1.2/using-semaphore/openid.md +++ /dev/null @@ -1,15 +0,0 @@ ---- -description: OIDC secures access to cloud providers -displayed_sidebar: usingSemaphore ---- - -# OpenID Connect - -import Tabs from '@theme/Tabs'; -import TabItem from '@theme/TabItem'; -import Available from '@site/src/components/Available'; -import VideoTutorial from '@site/src/components/VideoTutorial'; -import Steps from '@site/src/components/Steps'; -import FeatureNotAvailable from '@site/src/components/FeatureNotAvailable'; - - diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/org-health.md b/docs/versioned_docs/version-CE-1.2/using-semaphore/org-health.md deleted file mode 100644 index 39302655a..000000000 --- a/docs/versioned_docs/version-CE-1.2/using-semaphore/org-health.md +++ /dev/null @@ -1,15 +0,0 @@ ---- -description: Overview of all your projects -displayed_sidebar: usingSemaphore ---- - -# Organization Health - -import Tabs from '@theme/Tabs'; -import TabItem from '@theme/TabItem'; -import Available from '@site/src/components/Available'; -import VideoTutorial from '@site/src/components/VideoTutorial'; -import Steps from '@site/src/components/Steps'; -import FeatureNotAvailable from '@site/src/components/FeatureNotAvailable'; - - diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/org-preflight.md b/docs/versioned_docs/version-CE-1.2/using-semaphore/org-preflight.md deleted file mode 100644 index f6dde6de8..000000000 --- a/docs/versioned_docs/version-CE-1.2/using-semaphore/org-preflight.md +++ /dev/null @@ -1,17 +0,0 @@ ---- -description: Run custom commands before pipelines start -title: Preflight Checks -displayed_sidebar: usingSemaphore ---- - -# Preflight Checks for Organizations - -import Tabs from '@theme/Tabs'; -import TabItem from '@theme/TabItem'; -import Available from '@site/src/components/Available'; -import VideoTutorial from '@site/src/components/VideoTutorial'; -import Steps from '@site/src/components/Steps'; -import FeatureNotAvailable from '@site/src/components/FeatureNotAvailable'; - - - diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/promotions.md b/docs/versioned_docs/version-CE-1.2/using-semaphore/promotions.md deleted file mode 100644 index c70011699..000000000 --- a/docs/versioned_docs/version-CE-1.2/using-semaphore/promotions.md +++ /dev/null @@ -1,15 +0,0 @@ ---- -description: Connect pipelines to create workflows -displayed_sidebar: usingSemaphore ---- - -# Promotions - -import Tabs from '@theme/Tabs'; -import TabItem from '@theme/TabItem'; -import Available from '@site/src/components/Available'; -import VideoTutorial from '@site/src/components/VideoTutorial'; -import Steps from '@site/src/components/Steps'; -import FeatureNotAvailable from '@site/src/components/FeatureNotAvailable'; - - diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/tests/flaky-tests.md b/docs/versioned_docs/version-CE-1.2/using-semaphore/tests/flaky-tests.md deleted file mode 100644 index bdc3d9db0..000000000 --- a/docs/versioned_docs/version-CE-1.2/using-semaphore/tests/flaky-tests.md +++ /dev/null @@ -1,17 +0,0 @@ ---- -description: Find unreliable tests -sidebar_position: 3 -sidebar_class_name: hidden -displayed_sidebar: usingSemaphore ---- - -# Flaky Tests - -import Tabs from '@theme/Tabs'; -import TabItem from '@theme/TabItem'; -import Available from '@site/src/components/Available'; -import VideoTutorial from '@site/src/components/VideoTutorial'; -import Steps from '@site/src/components/Steps'; -import FeatureNotAvailable from '@site/src/components/FeatureNotAvailable'; - - diff --git a/docs/versioned_docs/version-CE-1.1/getting-started/_category_.json b/docs/versioned_docs/version-CE-1.3/getting-started/_category_.json similarity index 100% rename from docs/versioned_docs/version-CE-1.1/getting-started/_category_.json rename to docs/versioned_docs/version-CE-1.3/getting-started/_category_.json diff --git a/docs/versioned_docs/version-CE-1.1/getting-started/about-semaphore.md b/docs/versioned_docs/version-CE-1.3/getting-started/about-semaphore.md similarity index 100% rename from docs/versioned_docs/version-CE-1.1/getting-started/about-semaphore.md rename to docs/versioned_docs/version-CE-1.3/getting-started/about-semaphore.md diff --git a/docs/versioned_docs/version-CE-1.1/getting-started/changelog.md b/docs/versioned_docs/version-CE-1.3/getting-started/changelog.md similarity index 100% rename from docs/versioned_docs/version-CE-1.1/getting-started/changelog.md rename to docs/versioned_docs/version-CE-1.3/getting-started/changelog.md diff --git a/docs/versioned_docs/version-CE-1.1/getting-started/experiments.md b/docs/versioned_docs/version-CE-1.3/getting-started/experiments.md similarity index 100% rename from docs/versioned_docs/version-CE-1.1/getting-started/experiments.md rename to docs/versioned_docs/version-CE-1.3/getting-started/experiments.md diff --git a/docs/versioned_docs/version-CE-1.2/getting-started/faq.md b/docs/versioned_docs/version-CE-1.3/getting-started/faq.md similarity index 96% rename from docs/versioned_docs/version-CE-1.2/getting-started/faq.md rename to docs/versioned_docs/version-CE-1.3/getting-started/faq.md index d3651aaf7..09b7190d5 100644 --- a/docs/versioned_docs/version-CE-1.2/getting-started/faq.md +++ b/docs/versioned_docs/version-CE-1.3/getting-started/faq.md @@ -33,7 +33,7 @@ If your machines meet the minimum requisites and your Semaphore Enterprise Editi This is commonly due to a rate-limit of third-party providers such as Docker Hub. These services limit how many unauthenticated pulls you can do in an hour, often based on IP. The machine or cluster running the jobs might have already tripped the IP rate limit. -You can bypass this issue by creating a free account on Docker Hub, and then [authenticating with Docker](../using-semaphore/optimization/docker#auth) within the job. This way, the [pulls are limited by your account (100 per hour)](https://docs.docker.com/docker-hub/usage/), and not by the IP of the machine. +You can bypass this issue by creating a free account on Docker Hub, and then [authenticating with Docker](../using-semaphore/containers/docker#auth) within the job. This way, the [pulls are limited by your account (100 per hour)](https://docs.docker.com/docker-hub/usage/), and not by the IP of the machine. :::tip @@ -68,6 +68,7 @@ Yes. To do that, follow these steps: git submodule init git submodule update ``` + 2. Append the these commands in the [epilogue](../using-semaphore/jobs#epilogue) ```shell @@ -76,11 +77,11 @@ Yes. To do that, follow these steps:
-Make sure that Semaphore has permissions to clone your submodules repository. +Make sure that Semaphore has permissions to clone your submodules repository. ### Can I redeliver webhooks from Github to Semaphore? -Yes. Rarely Semaphore does not receive a webhook from GitHub. This results in a workflow not being triggered. When this happens, you can redeliver the webhook to trigger the workflow. +Yes. Rarely Semaphore does not receive a webhook from GitHub. This results in a workflow not being triggered. When this happens, you can redeliver the webhook to trigger the workflow. These are the steps to redeliver webhooks from Github: @@ -93,7 +94,7 @@ These are the steps to redeliver webhooks from Github: ### Can I send a comment on a pull request on GitHub from a workflow? -Yes. You can use the [GitHub API](https://docs.github.com/en/rest/issues?apiVersion=2022-11-28#create-an-issue-comment) to comment on pull requests. +Yes. You can use the [GitHub API](https://docs.github.com/en/rest/issues?apiVersion=2022-11-28#create-an-issue-comment) to comment on pull requests. For example: @@ -170,7 +171,7 @@ blocks: ### Can I change the timezone? -The default timezone is UTC. The timezone can be changed in 2 ways in Linux agents: +The default timezone is UTC. The timezone can be changed in 2 ways in Linux agents: - Assign a different value to the TZ environment variable: @@ -217,15 +218,13 @@ While an issue is ongoing, you might consider using a shorter [execution_time_li ::: - ### Why is my job failing if all commands have passed? This can happen because of code coverage tools, e.g. simplecov, which can be set to fail the test suite if a [minimum coverage level is not achieved](https://github.com/simplecov-ruby/simplecov#minimum-coverage). - ### Why are tests passing locally but not on Semaphore? -The main reason for this behavior is differences in the stacks. As a first step, ensure that the same versions of languages, services, tools, and frameworks such as Selenium, browser drivers, Capybara, Cypress are used both locally and in the CI environment. +The main reason for this behavior is differences in the stacks. As a first step, ensure that the same versions of languages, services, tools, and frameworks such as Selenium, browser drivers, Capybara, Cypress are used both locally and in the CI environment. If you are using Docker containers when performing tests, it's possible that, while the command itself runs instantly, the process will not be completely started, leading to certain endpoints not being available. Using a minimum `sleep 10` can help in this scenario. Cypress has a [wait-on](https://docs.cypress.io/guides/continuous-integration/introduction.html#Boot-your-server) module that provides similar functionality. @@ -237,7 +236,7 @@ You might be hitting the quota limitation. To see your activity across the serve 2. Select Activity Monitor 3. Check your agent usage, jobs won't start until a suitable agent is free -You can also run [`sem get jobs`](../reference/semaphore-cli#sem-get-job) to display all running jobs to confirm how much of the quota is being used. +You can also run [`sem get jobs`](../reference/semaphore-cli#sem-get-job) to display all running jobs to confirm how much of the quota is being used. ### Why does my job fail when I specify "exit 0" in commands? @@ -255,7 +254,6 @@ Some commands like `bash -e` or `set -x otrace` may override this behavior and m ::: - ## Project ### Can I transfer ownership of a project? @@ -274,7 +272,7 @@ To change the project ownership: After project ownership has been transferred, you need to push a new commit. Old workflows cannot be re-run after transferring ownership. -If you come across any issues, please reach out to support@semaphoreci.com and include the name of the project and the GitHub/Bitbucket username of the new owner in your message. +If you come across any issues, please reach out to `support@semaphoreci.com` and include the name of the project and the GitHub/Bitbucket username of the new owner in your message. ### Can I rename a project? @@ -306,7 +304,6 @@ Deleting a project cannot be reversed. ::: - ### Can I change the visibility of a project? Yes. To make the project visible or private follow these steps: @@ -316,7 +313,6 @@ Yes. To make the project visible or private follow these steps: 3. Click the link next to **Public** or **Private** to toggle the visibility 4. Press **Save Changes** - ## Workflows ### How do I fix the error "Machine type and OS image for initialization job not available" @@ -334,13 +330,12 @@ If you are using a [filter for contributors](../using-semaphore/workflows#projec Approving forked pull requests is limited to new comments only and is not possible for comment edits. Due to security concerns, `/sem-approve` will work only once. Subsequent pushes to the forked pull request must be approved again. - ### How do I fix the error "Revision: COMMIT_SHA not found. Exiting" This happens when the repository receives pushed while Semaphore is still processing the incoming webhook. For example, when someone modifies or removes with a `git rebase` or `git commit --amend` command followed by a `git push --force` shortly after. You can prevent this error by enabling the [auto-cancel](../using-semaphore/pipelines#auto-cancel) option in the pipeline. - + ### Why are my workflows not running in parallel? Git pushes to the same branch are [queued](../using-semaphore/pipelines#pipeline-queues) by default. Pushes to different branches do run in parallel. You can use [named queues in your pipelines](../using-semaphore/pipelines#named-queues) to better control how workflows are parallelized or activate [auto-cancel](../using-semaphore/pipelines#auto-cancel) to stop running pipelines when new pushes arrive to the queue. @@ -399,4 +394,3 @@ Enabling the `set -e` option in the Bash shell causes autocomplete to fail and e ### Why are my secrets empty? We have discontinued exposing secret content via the CLI, API, and web interface to ensure enhanced security measures. Retrieval of secret values is now exclusively available through the job mechanism. - diff --git a/docs/versioned_docs/version-CE-1.2/getting-started/features.md b/docs/versioned_docs/version-CE-1.3/getting-started/features.md similarity index 100% rename from docs/versioned_docs/version-CE-1.2/getting-started/features.md rename to docs/versioned_docs/version-CE-1.3/getting-started/features.md diff --git a/docs/versioned_docs/version-CE-1.1/getting-started/guided-tour.md b/docs/versioned_docs/version-CE-1.3/getting-started/guided-tour.md similarity index 100% rename from docs/versioned_docs/version-CE-1.1/getting-started/guided-tour.md rename to docs/versioned_docs/version-CE-1.3/getting-started/guided-tour.md diff --git a/docs/versioned_docs/version-CE-1.1/getting-started/img/arch-semaphore.jpg b/docs/versioned_docs/version-CE-1.3/getting-started/img/arch-semaphore.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/getting-started/img/arch-semaphore.jpg rename to docs/versioned_docs/version-CE-1.3/getting-started/img/arch-semaphore.jpg diff --git a/docs/versioned_docs/version-CE-1.1/getting-started/img/first-login-organization.jpg b/docs/versioned_docs/version-CE-1.3/getting-started/img/first-login-organization.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/getting-started/img/first-login-organization.jpg rename to docs/versioned_docs/version-CE-1.3/getting-started/img/first-login-organization.jpg diff --git a/docs/versioned_docs/version-CE-1.1/getting-started/img/first-login.jpg b/docs/versioned_docs/version-CE-1.3/getting-started/img/first-login.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/getting-started/img/first-login.jpg rename to docs/versioned_docs/version-CE-1.3/getting-started/img/first-login.jpg diff --git a/docs/versioned_docs/version-CE-1.1/getting-started/img/flowchart.jpg b/docs/versioned_docs/version-CE-1.3/getting-started/img/flowchart.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/getting-started/img/flowchart.jpg rename to docs/versioned_docs/version-CE-1.3/getting-started/img/flowchart.jpg diff --git a/docs/versioned_docs/version-CE-1.1/getting-started/img/job-block-pipeline.jpg b/docs/versioned_docs/version-CE-1.3/getting-started/img/job-block-pipeline.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/getting-started/img/job-block-pipeline.jpg rename to docs/versioned_docs/version-CE-1.3/getting-started/img/job-block-pipeline.jpg diff --git a/docs/versioned_docs/version-CE-1.1/getting-started/img/on-boarding-guide.jpg b/docs/versioned_docs/version-CE-1.3/getting-started/img/on-boarding-guide.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/getting-started/img/on-boarding-guide.jpg rename to docs/versioned_docs/version-CE-1.3/getting-started/img/on-boarding-guide.jpg diff --git a/docs/versioned_docs/version-CE-1.1/getting-started/img/pipeline-execution-order.jpg b/docs/versioned_docs/version-CE-1.3/getting-started/img/pipeline-execution-order.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/getting-started/img/pipeline-execution-order.jpg rename to docs/versioned_docs/version-CE-1.3/getting-started/img/pipeline-execution-order.jpg diff --git a/docs/versioned_docs/version-CE-1.1/getting-started/img/spending-alert.jpg b/docs/versioned_docs/version-CE-1.3/getting-started/img/spending-alert.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/getting-started/img/spending-alert.jpg rename to docs/versioned_docs/version-CE-1.3/getting-started/img/spending-alert.jpg diff --git a/docs/versioned_docs/version-CE-1.1/getting-started/img/update-payment.jpg b/docs/versioned_docs/version-CE-1.3/getting-started/img/update-payment.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/getting-started/img/update-payment.jpg rename to docs/versioned_docs/version-CE-1.3/getting-started/img/update-payment.jpg diff --git a/docs/versioned_docs/version-CE-1.1/getting-started/img/workflows.jpg b/docs/versioned_docs/version-CE-1.3/getting-started/img/workflows.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/getting-started/img/workflows.jpg rename to docs/versioned_docs/version-CE-1.3/getting-started/img/workflows.jpg diff --git a/docs/versioned_docs/version-CE-1.2/getting-started/install-aws-ec2.md b/docs/versioned_docs/version-CE-1.3/getting-started/install-aws-ec2.md similarity index 94% rename from docs/versioned_docs/version-CE-1.2/getting-started/install-aws-ec2.md rename to docs/versioned_docs/version-CE-1.3/getting-started/install-aws-ec2.md index 9ae694460..fa45b24dd 100644 --- a/docs/versioned_docs/version-CE-1.2/getting-started/install-aws-ec2.md +++ b/docs/versioned_docs/version-CE-1.3/getting-started/install-aws-ec2.md @@ -331,8 +331,8 @@ Finally, install the Semaphore with Helm: ```shell helm upgrade --install semaphore oci://ghcr.io/semaphoreio/semaphore \ --debug \ - --version v1.2.0 \ - --timeout 20m \ + --version v1.4.0 \ + --timeout 30m \ --set global.domain.ip=${IP_ADDRESS} \ --set global.domain.name=${DOMAIN} \ --set ingress.enabled=true \ @@ -353,14 +353,15 @@ To start using the app, go to https://id.semaphore.example.com/login You can fetch credentials for the login by running this command: -echo "Email: $(kubectl get secret root-user -n default -o jsonpath='{.data.email}' | base64 -d)"; echo "Password: $(kubectl get secret root-user -n default -o jsonpath='{.data.password}' | base64 -d)"; echo "API Token: $(kubectl get secret root-user -n default -o jsonpath='{.data.token}' | base64 -d)" +echo "Email: $(kubectl get secret semaphore-authentication -n default -o jsonpath='{.data.ROOT_USER_EMAIL}' | base64 -d)"; echo "Password: $(kubectl get secret semaphore-authentication -n default -o jsonpath='{.data.ROOT_USER_PASSWORD}' | base64 -d)"; echo "API Token: $(kubectl get secret semaphore-authentication -n default -o jsonpath='{.data.ROOT_USER_TOKEN}' | base64 -d)" + ============================================================================================= ``` Execute the shown command to retrieve the login credentials. ```shell title="remote shell - get login credentials" -$ echo "Email: $(kubectl get secret root-user -n default -o jsonpath='{.data.email}' | base64 -d)"; echo "Password: $(kubectl get secret root-user -n default -o jsonpath='{.data.password}' | base64 -d)"; echo "API Token: $(kubectl get secret root-user -n default -o jsonpath='{.data.token}' | base64 -d)" +$ echo "Email: $(kubectl get secret semaphore-authentication -n default -o jsonpath='{.data.ROOT_USER_EMAIL}' | base64 -d)"; echo "Password: $(kubectl get secret semaphore-authentication -n default -o jsonpath='{.data.ROOT_USER_PASSWORD}' | base64 -d)"; echo "API Token: $(kubectl get secret semaphore-authentication -n default -o jsonpath='{.data.ROOT_USER_TOKEN}' | base64 -d)" Email: root@example.com Password: AhGg_2v6uHuy7hqvNmeLw0O4RqI= @@ -427,12 +428,12 @@ To upgrade Semaphore, follow these steps: openssl x509 -enddate -noout -in certs/live/${DOMAIN}/fullchain.pem ``` -5. Run the following command to upgrade to `v1.2.0` +5. Run the following command to upgrade to `v1.3.0` ```shell helm upgrade --install semaphore oci://ghcr.io/semaphoreio/semaphore \ --debug \ - --version v1.2.0 \ + --version v1.3.0 \ --timeout 20m \ --set global.domain.ip=${IP_ADDRESS} \ --set global.domain.name=${DOMAIN} \ diff --git a/docs/versioned_docs/version-CE-1.2/getting-started/install-eks.md b/docs/versioned_docs/version-CE-1.3/getting-started/install-eks.md similarity index 91% rename from docs/versioned_docs/version-CE-1.2/getting-started/install-eks.md rename to docs/versioned_docs/version-CE-1.3/getting-started/install-eks.md index 6fc7b6c06..cf32e3289 100644 --- a/docs/versioned_docs/version-CE-1.2/getting-started/install-eks.md +++ b/docs/versioned_docs/version-CE-1.3/getting-started/install-eks.md @@ -153,8 +153,8 @@ Install Semaphore with Helm: ```shell helm upgrade --install semaphore oci://ghcr.io/semaphoreio/semaphore \ --debug \ - --version v1.2.0 \ - --timeout 20m \ + --version v1.4.0 \ + --timeout 30m \ --set global.domain.name="${DOMAIN}" \ --set ingress.ssl.certName="${CERT_NAME}" \ --set ingress.className=alb \ @@ -171,7 +171,7 @@ To start using the app, go to https://id.semaphore.example.com/login You can fetch credentials for the login by running this command: -echo "Email: $(kubectl get secret root-user -n default -o jsonpath='{.data.email}' | base64 -d)"; echo "Password: $(kubectl get secret root-user -n default -o jsonpath='{.data.password}' | base64 -d)"; echo "API Token: $(kubectl get secret root-user -n default -o jsonpath='{.data.token}' | base64 -d)" +echo "Email: $(kubectl get secret semaphore-authentication -n default -o jsonpath='{.data.ROOT_USER_EMAIL}' | base64 -d)"; echo "Password: $(kubectl get secret semaphore-authentication -n default -o jsonpath='{.data.ROOT_USER_PASSWORD}' | base64 -d)"; echo "API Token: $(kubectl get secret semaphore-authentication -n default -o jsonpath='{.data.ROOT_USER_TOKEN}' | base64 -d)" ============================================================================================= ``` @@ -179,7 +179,7 @@ echo "Email: $(kubectl get secret root-user -n default -o jsonpath='{.data.email Execute the shown command to retrieve the login credentials. ```shell title="remote shell - get login credentials" -$ echo "Email: $(kubectl get secret root-user -n default -o jsonpath='{.data.email}' | base64 -d)"; echo "Password: $(kubectl get secret root-user -n default -o jsonpath='{.data.password}' | base64 -d)"; echo "API Token: $(kubectl get secret root-user -n default -o jsonpath='{.data.token}' | base64 -d)" +$ echo "Email: $(kubectl get secret semaphore-authentication -n default -o jsonpath='{.data.ROOT_USER_EMAIL}' | base64 -d)"; echo "Password: $(kubectl get secret semaphore-authentication -n default -o jsonpath='{.data.ROOT_USER_PASSWORD}' | base64 -d)"; echo "API Token: $(kubectl get secret semaphore-authentication -n default -o jsonpath='{.data.ROOT_USER_TOKEN}' | base64 -d)" Email: root@example.com Password: AhGg_2v6uHuy7hqvNmeLw0O4RqI= diff --git a/docs/versioned_docs/version-CE-1.2/getting-started/install-gcompute.md b/docs/versioned_docs/version-CE-1.3/getting-started/install-gcompute.md similarity index 95% rename from docs/versioned_docs/version-CE-1.2/getting-started/install-gcompute.md rename to docs/versioned_docs/version-CE-1.3/getting-started/install-gcompute.md index 6997634cc..ed429c9f1 100644 --- a/docs/versioned_docs/version-CE-1.2/getting-started/install-gcompute.md +++ b/docs/versioned_docs/version-CE-1.3/getting-started/install-gcompute.md @@ -323,7 +323,7 @@ Finally, install Semaphore with Helm: ```shell title="remote shell - install Semaphore" helm upgrade --install semaphore oci://ghcr.io/semaphoreio/semaphore \ --debug \ - --version v1.2.0 \ + --version v1.3.0 \ --timeout 20m \ --set global.domain.ip=${IP_ADDRESS} \ --set global.domain.name=${DOMAIN} \ @@ -345,7 +345,7 @@ To start using the app, go to https://id.semaphore.example.com/login You can fetch credentials for the login by running this command: -echo "Email: $(kubectl get secret root-user -n default -o jsonpath='{.data.email}' | base64 -d)"; echo "Password: $(kubectl get secret root-user -n default -o jsonpath='{.data.password}' | base64 -d)"; echo "API Token: $(kubectl get secret root-user -n default -o jsonpath='{.data.token}' | base64 -d)" +echo "Email: $(kubectl get secret semaphore-authentication -n default -o jsonpath='{.data.ROOT_USER_EMAIL}' | base64 -d)"; echo "Password: $(kubectl get secret semaphore-authentication -n default -o jsonpath='{.data.ROOT_USER_PASSWORD}' | base64 -d)"; echo "API Token: $(kubectl get secret semaphore-authentication -n default -o jsonpath='{.data.ROOT_USER_TOKEN}' | base64 -d)" ============================================================================================= ``` @@ -353,7 +353,7 @@ echo "Email: $(kubectl get secret root-user -n default -o jsonpath='{.data.email Execute the shown command to retrieve the login credentials. ```shell title="remote shell - get login credentials" -$ echo "Email: $(kubectl get secret root-user -n default -o jsonpath='{.data.email}' | base64 -d)"; echo "Password: $(kubectl get secret root-user -n default -o jsonpath='{.data.password}' | base64 -d)"; echo "API Token: $(kubectl get secret root-user -n default -o jsonpath='{.data.token}' | base64 -d)" +$ echo "Email: $(kubectl get secret semaphore-authentication -n default -o jsonpath='{.data.ROOT_USER_EMAIL}' | base64 -d)"; echo "Password: $(kubectl get secret semaphore-authentication -n default -o jsonpath='{.data.ROOT_USER_PASSWORD}' | base64 -d)"; echo "API Token: $(kubectl get secret semaphore-authentication -n default -o jsonpath='{.data.ROOT_USER_TOKEN}' | base64 -d)" Email: root@example.com Password: AhGg_2v6uHuy7hqvNmeLw0O4RqI= @@ -420,13 +420,13 @@ To upgrade Semaphore, follow these steps: openssl x509 -enddate -noout -in certs/live/${DOMAIN}/fullchain.pem ``` -5. Run the following command to upgrade to `v1.2.0` +5. Run the following command to upgrade to `v1.3.0` ```shell helm upgrade --install semaphore oci://ghcr.io/semaphoreio/semaphore \ --debug \ - --version v1.2.0 \ - --timeout 20m \ + --version v1.4.0 \ + --timeout 30m \ --set global.domain.ip=${IP_ADDRESS} \ --set global.domain.name=${DOMAIN} \ --set ingress.enabled=true \ diff --git a/docs/versioned_docs/version-CE-1.2/getting-started/install-gke.md b/docs/versioned_docs/version-CE-1.3/getting-started/install-gke.md similarity index 94% rename from docs/versioned_docs/version-CE-1.2/getting-started/install-gke.md rename to docs/versioned_docs/version-CE-1.3/getting-started/install-gke.md index d925a066e..1d00b5471 100644 --- a/docs/versioned_docs/version-CE-1.2/getting-started/install-gke.md +++ b/docs/versioned_docs/version-CE-1.3/getting-started/install-gke.md @@ -285,7 +285,7 @@ Run the following to install Semaphore: ```shell title="Install Semaphore" helm upgrade --install semaphore oci://ghcr.io/semaphoreio/semaphore \ --debug \ - --version v1.2.0 \ + --version v1.3.0 \ --timeout 20m \ --set global.domain.ip=${IP_ADDRESS} \ --set global.domain.name="${DOMAIN}" \ @@ -306,7 +306,7 @@ To start using the app, go to https://id.semaphore.example.com/login You can fetch credentials for the login by running this command: -echo "Email: $(kubectl get secret root-user -n default -o jsonpath='{.data.email}' | base64 -d)"; echo "Password: $(kubectl get secret root-user -n default -o jsonpath='{.data.password}' | base64 -d)"; echo "API Token: $(kubectl get secret root-user -n default -o jsonpath='{.data.token}' | base64 -d)" +echo "Email: $(kubectl get secret semaphore-authentication -n default -o jsonpath='{.data.ROOT_USER_EMAIL}' | base64 -d)"; echo "Password: $(kubectl get secret semaphore-authentication -n default -o jsonpath='{.data.ROOT_USER_PASSWORD}' | base64 -d)"; echo "API Token: $(kubectl get secret semaphore-authentication -n default -o jsonpath='{.data.ROOT_USER_TOKEN}' | base64 -d)" ============================================================================================= ``` @@ -314,7 +314,7 @@ echo "Email: $(kubectl get secret root-user -n default -o jsonpath='{.data.email Execute the shown command to retrieve the login credentials. ```shell title="remote shell - get login credentials" -$ echo "Email: $(kubectl get secret root-user -n default -o jsonpath='{.data.email}' | base64 -d)"; echo "Password: $(kubectl get secret root-user -n default -o jsonpath='{.data.password}' | base64 -d)"; echo "API Token: $(kubectl get secret root-user -n default -o jsonpath='{.data.token}' | base64 -d)" +$ echo "Email: $(kubectl get secret semaphore-authentication -n default -o jsonpath='{.data.ROOT_USER_EMAIL}' | base64 -d)"; echo "Password: $(kubectl get secret semaphore-authentication -n default -o jsonpath='{.data.ROOT_USER_PASSWORD}' | base64 -d)"; echo "API Token: $(kubectl get secret semaphore-authentication -n default -o jsonpath='{.data.ROOT_USER_TOKEN}' | base64 -d)" Email: root@example.com Password: AhGg_2v6uHuy7hqvNmeLw0O4RqI= @@ -405,13 +405,13 @@ To upgrade Semaphore, follow these steps: openssl x509 -enddate -noout -in certs/live/${DOMAIN}/fullchain.pem ``` -5. Run the following command to upgrade to `v1.2.0` +5. Run the following command to upgrade to `v1.3.0` ```shell helm upgrade --install semaphore oci://ghcr.io/semaphoreio/semaphore \ --debug \ - --version v1.2.0 \ - --timeout 20m \ + --version v1.4.0 \ + --timeout 30m \ --set global.domain.ip=${IP_ADDRESS} \ --set global.domain.name=${DOMAIN} \ --set ingress.enabled=true \ diff --git a/docs/versioned_docs/version-CE-1.2/getting-started/install-ubuntu.md b/docs/versioned_docs/version-CE-1.3/getting-started/install-ubuntu.md similarity index 92% rename from docs/versioned_docs/version-CE-1.2/getting-started/install-ubuntu.md rename to docs/versioned_docs/version-CE-1.3/getting-started/install-ubuntu.md index 9b2bc3a88..32e30db8b 100644 --- a/docs/versioned_docs/version-CE-1.2/getting-started/install-ubuntu.md +++ b/docs/versioned_docs/version-CE-1.3/getting-started/install-ubuntu.md @@ -198,8 +198,8 @@ Finally, install Semaphore with Helm: ```shell title="remote shell - install Semaphore" helm upgrade --install semaphore oci://ghcr.io/semaphoreio/semaphore \ --debug \ - --version v1.2.0 \ - --timeout 20m \ + --version v1.4.0 \ + --timeout 30m \ --set global.domain.ip=${IP_ADDRESS} \ --set global.domain.name=${DOMAIN} \ --set ingress.enabled=true \ @@ -220,7 +220,7 @@ To start using the app, go to https://id.semaphore.example.com/login You can fetch credentials for the login by running this command: -echo "Email: $(kubectl get secret root-user -n default -o jsonpath='{.data.email}' | base64 -d)"; echo "Password: $(kubectl get secret root-user -n default -o jsonpath='{.data.password}' | base64 -d)"; echo "API Token: $(kubectl get secret root-user -n default -o jsonpath='{.data.token}' | base64 -d)" +echo "Email: $(kubectl get secret semaphore-authentication -n default -o jsonpath='{.data.ROOT_USER_EMAIL}' | base64 -d)"; echo "Password: $(kubectl get secret semaphore-authentication -n default -o jsonpath='{.data.ROOT_USER_PASSWORD}' | base64 -d)"; echo "API Token: $(kubectl get secret semaphore-authentication -n default -o jsonpath='{.data.ROOT_USER_TOKEN}' | base64 -d)" ============================================================================================= ``` @@ -228,7 +228,7 @@ echo "Email: $(kubectl get secret root-user -n default -o jsonpath='{.data.email Execute the shown command to retrieve the login credentials. ```shell title="remote shell - get login credentials" -$ echo "Email: $(kubectl get secret root-user -n default -o jsonpath='{.data.email}' | base64 -d)"; echo "Password: $(kubectl get secret root-user -n default -o jsonpath='{.data.password}' | base64 -d)"; echo "API Token: $(kubectl get secret root-user -n default -o jsonpath='{.data.token}' | base64 -d)" +$ echo "Email: $(kubectl get secret semaphore-authentication -n default -o jsonpath='{.data.ROOT_USER_EMAIL}' | base64 -d)"; echo "Password: $(kubectl get secret semaphore-authentication -n default -o jsonpath='{.data.ROOT_USER_PASSWORD}' | base64 -d)"; echo "API Token: $(kubectl get secret semaphore-authentication -n default -o jsonpath='{.data.ROOT_USER_TOKEN}' | base64 -d)" Email: root@example.com Password: AhGg_2v6uHuy7hqvNmeLw0O4RqI= @@ -295,12 +295,12 @@ To upgrade Semaphore, follow these steps: openssl x509 -enddate -noout -in certs/live/${DOMAIN}/fullchain.pem ``` -5. Run the following command to upgrade to `v1.2.0` +5. Run the following command to upgrade to `v1.3.0` ```shell helm upgrade --install semaphore oci://ghcr.io/semaphoreio/semaphore \ --debug \ - --version v1.2.0 \ + --version v1.3.0 \ --timeout 20m \ --set global.domain.ip=${IP_ADDRESS} \ --set global.domain.name=${DOMAIN} \ diff --git a/docs/versioned_docs/version-CE-1.2/getting-started/install.md b/docs/versioned_docs/version-CE-1.3/getting-started/install.md similarity index 97% rename from docs/versioned_docs/version-CE-1.2/getting-started/install.md rename to docs/versioned_docs/version-CE-1.3/getting-started/install.md index af85fae01..a57963698 100644 --- a/docs/versioned_docs/version-CE-1.2/getting-started/install.md +++ b/docs/versioned_docs/version-CE-1.3/getting-started/install.md @@ -31,7 +31,7 @@ To install Semaphore, you need: - A DNS domain - The ability to create A, AAAA, or CNAME records for your domain - A Kubernetes cluster or a Ubuntu machine - - Minumum hardware: **16 GB of RAM and 8 CPUs** + - Minimum hardware: **16 GB of RAM and 8 CPUs** - Installation time - Ubuntu machine: 20 to 30 minutes - Kubernetes cluster: up to 1 hour @@ -51,7 +51,7 @@ Each platform presents trade-off. Use the following table as a guide: | Facility | Single-alone machine | Kubernetes cluster | |--|--|--| | Backup and restore | Simple | Complex | -| Infraststructure costs | Lower | Higher | +| Infrastructure costs | Lower | Higher | | Scalability of control plane | Low
Can only be scaled vertically with a more powerful machine.
| High
Can be scaled horizontally and vertically.
| | Scalability of job runner (agents) | High | High | | Redundancy | None | High | diff --git a/docs/versioned_docs/version-CE-1.2/getting-started/migration/bitbucket.md b/docs/versioned_docs/version-CE-1.3/getting-started/migration/bitbucket.md similarity index 98% rename from docs/versioned_docs/version-CE-1.2/getting-started/migration/bitbucket.md rename to docs/versioned_docs/version-CE-1.3/getting-started/migration/bitbucket.md index 0a66f3ad1..ccaf4a3d2 100644 --- a/docs/versioned_docs/version-CE-1.2/getting-started/migration/bitbucket.md +++ b/docs/versioned_docs/version-CE-1.3/getting-started/migration/bitbucket.md @@ -33,10 +33,8 @@ Checkout is implicit in all Travis CI workflows by default.
- Semaphore does not clone the repository by default. This is because there are certain scenarios in which you don't need the code or you want to customize the cloning process. - To clone the repository in Semaphore we only need to execute [`checkout`](../../reference/toolbox#checkout). ```shell @@ -46,7 +44,6 @@ checkout cat README.md ``` - @@ -92,7 +89,6 @@ pipelines: - In Semaphore, we use the [artifact](../../reference/toolbox#artifact) command to download and upload files to the artifact store. The following command stores `test.log` from any job: @@ -109,7 +105,6 @@ artifact pull workflow test.log See [artifacts](../../using-semaphore/artifacts) for more details. - @@ -153,7 +148,7 @@ bundle install cache store ``` -See [caching](../../using-semaphore/optimization/cache) for more details. +See [caching](../../using-semaphore/cache) for more details. @@ -161,7 +156,6 @@ See [caching](../../using-semaphore/optimization/cache) for more details. We often need to activate specific language or tool versions to ensure consistent builds. - @@ -208,13 +202,12 @@ pipelines: -In Semaphore, we create the [secret](../../using-semaphore/secrets) at the server or project level and activate it on a block. +In Semaphore, we create the [secret](../../using-semaphore/secrets) at the server or project level and activate it on a block. The secret contents are automatically injected as environment variables in all jobs contained on that block. ![Using secrets on Semaphore](./img/secrets.jpg) - diff --git a/docs/versioned_docs/version-CE-1.1/getting-started/migration/circle.md b/docs/versioned_docs/version-CE-1.3/getting-started/migration/circle.md similarity index 98% rename from docs/versioned_docs/version-CE-1.1/getting-started/migration/circle.md rename to docs/versioned_docs/version-CE-1.3/getting-started/migration/circle.md index 7d2efc0a1..80c245c16 100644 --- a/docs/versioned_docs/version-CE-1.1/getting-started/migration/circle.md +++ b/docs/versioned_docs/version-CE-1.3/getting-started/migration/circle.md @@ -75,15 +75,14 @@ global_job_config: - ### Language versions -Both CircleCI and Semaphore allow you to use specific language versions. +Both CircleCI and Semaphore allow you to use specific language versions. -CircleCI uses a language-specific setup orb. +CircleCI uses a language-specific setup orb. The following example sets the Ruby version to `3.3.4` @@ -101,6 +100,7 @@ jobs: version: '3.3.4' # highlight-end ``` + @@ -109,7 +109,6 @@ Semaphore provides the [Docker environments](../../using-semaphore/pipelines#doc - ### Caching Both CircleCI and Semaphore support manual file caching. @@ -152,7 +151,7 @@ The following commands, when added to a job downloads, cache, and install Gems i - cache store ``` -See [caching](../../using-semaphore/optimization/cache) for more details. +See [caching](../../using-semaphore/cache) for more details. @@ -162,7 +161,6 @@ See [caching](../../using-semaphore/optimization/cache) for more details. - ### Database and services Both CircleCI and Semaphore support starting databases and services via Docker containers. @@ -193,7 +191,6 @@ jobs: Semaphore provides the [Docker environments](../../using-semaphore/pipelines#docker-environments) to run your jobs in environments with all your build tools. You can connect multiple Docker images to provide database services for your end-to-end or smoke tests. - @@ -260,7 +257,7 @@ Secrets inject sensitive data and credentials into the workflow securely. -CircleCI uses contexts instead of secrets. You must create the context and its value through the UI. +CircleCI uses contexts instead of secrets. You must create the context and its value through the UI. Then, you can use the `context` keyword to include it in your jobs. ```yaml @@ -277,7 +274,7 @@ workflows: -On Semaphore, we create the [secret](../../using-semaphore/secrets) at the server (instance) or project level and activate it on a block. +On Semaphore, we create the [secret](../../using-semaphore/secrets) at the server (instance) or project level and activate it on a block. The secret's contents are automatically injected as environment variables in all jobs in that block. @@ -304,13 +301,12 @@ global_job_config: -On Semaphore, we create the [secret](../../using-semaphore/secrets) at the server (instance) or project level and activate it on a block. +On Semaphore, we create the [secret](../../using-semaphore/secrets) at the server (instance) or project level and activate it on a block. The secret's contents are automatically injected as environment variables in all jobs in that block. ![Using secrets on Semaphore](./img/secrets.jpg) - @@ -507,7 +503,6 @@ blocks: - ## See also - [Migration guide for CircleCI](./circle) diff --git a/docs/versioned_docs/version-CE-1.2/getting-started/migration/github-actions.md b/docs/versioned_docs/version-CE-1.3/getting-started/migration/github-actions.md similarity index 98% rename from docs/versioned_docs/version-CE-1.2/getting-started/migration/github-actions.md rename to docs/versioned_docs/version-CE-1.3/getting-started/migration/github-actions.md index bbb485722..47f30c69b 100644 --- a/docs/versioned_docs/version-CE-1.2/getting-started/migration/github-actions.md +++ b/docs/versioned_docs/version-CE-1.3/getting-started/migration/github-actions.md @@ -74,15 +74,14 @@ global_job_config: - ### Language versions -Both Github Actions and Semaphore allow you to use specific language versions. +Both Github Actions and Semaphore allow you to use specific language versions. -GitHub Actions uses a language-specific setup action. +GitHub Actions uses a language-specific setup action. The following example sets the Ruby version to `3.3.4` @@ -94,6 +93,7 @@ jobs: with: ruby-version: '3.3.4' ``` + @@ -102,7 +102,6 @@ Semaphore provides the [Docker environments](../../using-semaphore/pipelines#doc - ### Caching Both GitHub Actions and Semaphore support manual file caching. @@ -136,7 +135,7 @@ The following commands, when added to a job downloads, cache, and install Gems i - cache store ``` -See [caching](../../using-semaphore/optimization/cache) for more details. +See [caching](../../using-semaphore/cache) for more details. @@ -146,7 +145,6 @@ See [caching](../../using-semaphore/optimization/cache) for more details. - ### Database and services Both Github Actions and Semaphore support starting databases and services via Docker containers. @@ -175,7 +173,7 @@ jobs: Semaphore provides the [Docker environments](../../using-semaphore/pipelines#docker-environments) to run your jobs in environments with all your build tools. You can connect multiple Docker images to provide database services for your end-to-end or smoke tests. - + @@ -281,13 +279,12 @@ global_job_config: -On Semaphore, we create the [secret](../../using-semaphore/secrets) at the server or project level and activate it on a block. +On Semaphore, we create the [secret](../../using-semaphore/secrets) at the server or project level and activate it on a block. The secret's contents are automatically injected as environment variables in all jobs in that block. ![Using secrets on Semaphore](./img/secrets.jpg) - @@ -447,7 +444,6 @@ blocks: - ## See also - [Migration guide for CircleCI](./circle) diff --git a/docs/versioned_docs/version-CE-1.1/getting-started/migration/img/artifacts.jpg b/docs/versioned_docs/version-CE-1.3/getting-started/migration/img/artifacts.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/getting-started/migration/img/artifacts.jpg rename to docs/versioned_docs/version-CE-1.3/getting-started/migration/img/artifacts.jpg diff --git a/docs/versioned_docs/version-CE-1.1/getting-started/migration/img/caching.jpg b/docs/versioned_docs/version-CE-1.3/getting-started/migration/img/caching.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/getting-started/migration/img/caching.jpg rename to docs/versioned_docs/version-CE-1.3/getting-started/migration/img/caching.jpg diff --git a/docs/versioned_docs/version-CE-1.1/getting-started/migration/img/checkout.jpg b/docs/versioned_docs/version-CE-1.3/getting-started/migration/img/checkout.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/getting-started/migration/img/checkout.jpg rename to docs/versioned_docs/version-CE-1.3/getting-started/migration/img/checkout.jpg diff --git a/docs/versioned_docs/version-CE-1.1/getting-started/migration/img/example.jpg b/docs/versioned_docs/version-CE-1.3/getting-started/migration/img/example.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/getting-started/migration/img/example.jpg rename to docs/versioned_docs/version-CE-1.3/getting-started/migration/img/example.jpg diff --git a/docs/versioned_docs/version-CE-1.1/getting-started/migration/img/language.jpg b/docs/versioned_docs/version-CE-1.3/getting-started/migration/img/language.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/getting-started/migration/img/language.jpg rename to docs/versioned_docs/version-CE-1.3/getting-started/migration/img/language.jpg diff --git a/docs/versioned_docs/version-CE-1.1/getting-started/migration/img/secrets.jpg b/docs/versioned_docs/version-CE-1.3/getting-started/migration/img/secrets.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/getting-started/migration/img/secrets.jpg rename to docs/versioned_docs/version-CE-1.3/getting-started/migration/img/secrets.jpg diff --git a/docs/versioned_docs/version-CE-1.1/getting-started/migration/img/services.jpg b/docs/versioned_docs/version-CE-1.3/getting-started/migration/img/services.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/getting-started/migration/img/services.jpg rename to docs/versioned_docs/version-CE-1.3/getting-started/migration/img/services.jpg diff --git a/docs/versioned_docs/version-CE-1.1/getting-started/migration/jenkins.md b/docs/versioned_docs/version-CE-1.3/getting-started/migration/jenkins.md similarity index 100% rename from docs/versioned_docs/version-CE-1.1/getting-started/migration/jenkins.md rename to docs/versioned_docs/version-CE-1.3/getting-started/migration/jenkins.md diff --git a/docs/versioned_docs/version-CE-1.2/getting-started/migration/overview.md b/docs/versioned_docs/version-CE-1.3/getting-started/migration/overview.md similarity index 89% rename from docs/versioned_docs/version-CE-1.2/getting-started/migration/overview.md rename to docs/versioned_docs/version-CE-1.3/getting-started/migration/overview.md index 9dca73b7a..fe877a9c7 100644 --- a/docs/versioned_docs/version-CE-1.2/getting-started/migration/overview.md +++ b/docs/versioned_docs/version-CE-1.3/getting-started/migration/overview.md @@ -27,8 +27,6 @@ Here is the recommended plan to migrate from any CI provider to Semaphore. Write down your goals and reasons for migrating your CI to Semaphore. For example, you might wish to reduce costs or speed up your builds. Setting expectations from the get-go will make the whole migration process clearer and more straightforward. - If at any point in the process, you have doubts, contact us at support@semaphoreci.com. We want this process to be as smooth and painless as possible. - 2. Compare features We suggest breaking down the requirements for the new CI system into three categories: @@ -36,7 +34,7 @@ Here is the recommended plan to migrate from any CI provider to Semaphore. - Must have - Nice to have - Optional - + Use the [feature comparison page](../features) to select the best Semaphore edition for you. 3. [Install Semaphore](../install) @@ -47,21 +45,20 @@ Here is the recommended plan to migrate from any CI provider to Semaphore. - [Connect your GitHub](../../using-semaphore/connect-github) or [connect your BitBucket](../../using-semaphore/connect-bitbucket) repository to Semaphore - Configure a CI pipeline, the objective is to reach a green build. See the [Guided Tour](../guided-tour) to get an overview of Semaphore - + The following pages describe key features you might need for the migration: - [How to create jobs](../../using-semaphore/jobs) - [Persist data with Artifacts](../../using-semaphore/artifacts) - [How to use Docker Environments](../../using-semaphore/pipelines#docker-environments) - - [How to use the Cache](../../using-semaphore/optimization/cache) - + - [How to use the Cache](../../using-semaphore/cache) 5. Optimize performance Once your project is building on Semaphore, begin optimizing for performance. - Add more powerful [self-hosted agents](../../using-semaphore/self-hosted) - - Learn and implement the optimization strategies like [caching](../../using-semaphore/optimization/cache), [fail-fast](../../using-semaphore/pipelines#fail-fast), and [auto-cancel](../../using-semaphore/pipelines#auto-cancel) + - Learn and implement the optimization strategies like [caching](../../using-semaphore/cache), [fail-fast](../../using-semaphore/pipelines#fail-fast), and [auto-cancel](../../using-semaphore/pipelines#auto-cancel) 6. Onboard your team diff --git a/docs/versioned_docs/version-CE-1.1/getting-started/migration/travis.md b/docs/versioned_docs/version-CE-1.3/getting-started/migration/travis.md similarity index 97% rename from docs/versioned_docs/version-CE-1.1/getting-started/migration/travis.md rename to docs/versioned_docs/version-CE-1.3/getting-started/migration/travis.md index deb1d506b..0b6d7efb5 100644 --- a/docs/versioned_docs/version-CE-1.1/getting-started/migration/travis.md +++ b/docs/versioned_docs/version-CE-1.3/getting-started/migration/travis.md @@ -37,7 +37,6 @@ Checkout is implicit in all Travis CI workflows by default. Semaphore does not clone the repository by default. This is because there are certain scenarios in which you don't need the code or you want to customize the cloning process. - To clone the repository in Semaphore we only need to execute [`checkout`](../../reference/toolbox#checkout). ```shell @@ -68,7 +67,7 @@ addons: paths: - $HOME/project/test.log # highlight-end -``` +``` @@ -122,19 +121,19 @@ bundle install cache store ``` -See [caching](../../using-semaphore/optimization/cache) for more details. +See [caching](../../using-semaphore/cache) for more details. ### Language versions -Both Travis CI and Semaphore allow you to use specific language versions. +Both Travis CI and Semaphore allow you to use specific language versions. -Travis CI uses a language-specific setup keyword. +Travis CI uses a language-specific setup keyword. The following example sets the Ruby version to `3.3.4` @@ -170,7 +169,7 @@ services: Semaphore provides the [Docker environments](../../using-semaphore/pipelines#docker-environments) to run your jobs in environments with all your build tools. You can connect multiple Docker images to provide database services for your end-to-end or smoke tests. - + @@ -198,7 +197,7 @@ Using encrypted files uses a different system that's a bit more convoluted. In Semaphore, secrets are stored on the Semaphore server or project. Encryption and decryption is automatically handled for environment variables and files. -First, we create a [secret](../../using-semaphore/secrets) at the server or project level and activate it on a block. +First, we create a [secret](../../using-semaphore/secrets) at the server or project level and activate it on a block. The secret contents are automatically injected as environment variables in all jobs contained on that block. diff --git a/docs/versioned_docs/version-CE-1.1/getting-started/tour/continuous-delivery.md b/docs/versioned_docs/version-CE-1.3/getting-started/tour/continuous-delivery.md similarity index 100% rename from docs/versioned_docs/version-CE-1.1/getting-started/tour/continuous-delivery.md rename to docs/versioned_docs/version-CE-1.3/getting-started/tour/continuous-delivery.md diff --git a/docs/versioned_docs/version-CE-1.1/getting-started/tour/continuous-integration.md b/docs/versioned_docs/version-CE-1.3/getting-started/tour/continuous-integration.md similarity index 100% rename from docs/versioned_docs/version-CE-1.1/getting-started/tour/continuous-integration.md rename to docs/versioned_docs/version-CE-1.3/getting-started/tour/continuous-integration.md diff --git a/docs/versioned_docs/version-CE-1.1/getting-started/tour/first-steps.md b/docs/versioned_docs/version-CE-1.3/getting-started/tour/first-steps.md similarity index 100% rename from docs/versioned_docs/version-CE-1.1/getting-started/tour/first-steps.md rename to docs/versioned_docs/version-CE-1.3/getting-started/tour/first-steps.md diff --git a/docs/versioned_docs/version-CE-1.1/getting-started/tour/hello-world.md b/docs/versioned_docs/version-CE-1.3/getting-started/tour/hello-world.md similarity index 100% rename from docs/versioned_docs/version-CE-1.1/getting-started/tour/hello-world.md rename to docs/versioned_docs/version-CE-1.3/getting-started/tour/hello-world.md diff --git a/docs/versioned_docs/version-CE-1.1/getting-started/tour/img/add-job.jpg b/docs/versioned_docs/version-CE-1.3/getting-started/tour/img/add-job.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/getting-started/tour/img/add-job.jpg rename to docs/versioned_docs/version-CE-1.3/getting-started/tour/img/add-job.jpg diff --git a/docs/versioned_docs/version-CE-1.1/getting-started/tour/img/add-people-project.jpg b/docs/versioned_docs/version-CE-1.3/getting-started/tour/img/add-people-project.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/getting-started/tour/img/add-people-project.jpg rename to docs/versioned_docs/version-CE-1.3/getting-started/tour/img/add-people-project.jpg diff --git a/docs/versioned_docs/version-CE-1.1/getting-started/tour/img/add-to-project.jpg b/docs/versioned_docs/version-CE-1.3/getting-started/tour/img/add-to-project.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/getting-started/tour/img/add-to-project.jpg rename to docs/versioned_docs/version-CE-1.3/getting-started/tour/img/add-to-project.jpg diff --git a/docs/versioned_docs/version-CE-1.1/getting-started/tour/img/add-user.jpg b/docs/versioned_docs/version-CE-1.3/getting-started/tour/img/add-user.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/getting-started/tour/img/add-user.jpg rename to docs/versioned_docs/version-CE-1.3/getting-started/tour/img/add-user.jpg diff --git a/docs/versioned_docs/version-CE-1.1/getting-started/tour/img/artifacts1.jpg b/docs/versioned_docs/version-CE-1.3/getting-started/tour/img/artifacts1.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/getting-started/tour/img/artifacts1.jpg rename to docs/versioned_docs/version-CE-1.3/getting-started/tour/img/artifacts1.jpg diff --git a/docs/versioned_docs/version-CE-1.1/getting-started/tour/img/authorize-github-app.jpg b/docs/versioned_docs/version-CE-1.3/getting-started/tour/img/authorize-github-app.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/getting-started/tour/img/authorize-github-app.jpg rename to docs/versioned_docs/version-CE-1.3/getting-started/tour/img/authorize-github-app.jpg diff --git a/docs/versioned_docs/version-CE-1.1/getting-started/tour/img/authorize.jpg b/docs/versioned_docs/version-CE-1.3/getting-started/tour/img/authorize.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/getting-started/tour/img/authorize.jpg rename to docs/versioned_docs/version-CE-1.3/getting-started/tour/img/authorize.jpg diff --git a/docs/versioned_docs/version-CE-1.1/getting-started/tour/img/build-job1.jpg b/docs/versioned_docs/version-CE-1.3/getting-started/tour/img/build-job1.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/getting-started/tour/img/build-job1.jpg rename to docs/versioned_docs/version-CE-1.3/getting-started/tour/img/build-job1.jpg diff --git a/docs/versioned_docs/version-CE-1.1/getting-started/tour/img/cd-workflow.jpg b/docs/versioned_docs/version-CE-1.3/getting-started/tour/img/cd-workflow.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/getting-started/tour/img/cd-workflow.jpg rename to docs/versioned_docs/version-CE-1.3/getting-started/tour/img/cd-workflow.jpg diff --git a/docs/versioned_docs/version-CE-1.1/getting-started/tour/img/change-permissions.jpg b/docs/versioned_docs/version-CE-1.3/getting-started/tour/img/change-permissions.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/getting-started/tour/img/change-permissions.jpg rename to docs/versioned_docs/version-CE-1.3/getting-started/tour/img/change-permissions.jpg diff --git a/docs/versioned_docs/version-CE-1.1/getting-started/tour/img/choose-repo.jpg b/docs/versioned_docs/version-CE-1.3/getting-started/tour/img/choose-repo.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/getting-started/tour/img/choose-repo.jpg rename to docs/versioned_docs/version-CE-1.3/getting-started/tour/img/choose-repo.jpg diff --git a/docs/versioned_docs/version-CE-1.1/getting-started/tour/img/ci-workflow.jpg b/docs/versioned_docs/version-CE-1.3/getting-started/tour/img/ci-workflow.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/getting-started/tour/img/ci-workflow.jpg rename to docs/versioned_docs/version-CE-1.3/getting-started/tour/img/ci-workflow.jpg diff --git a/docs/versioned_docs/version-CE-1.1/getting-started/tour/img/create-new.jpg b/docs/versioned_docs/version-CE-1.3/getting-started/tour/img/create-new.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/getting-started/tour/img/create-new.jpg rename to docs/versioned_docs/version-CE-1.3/getting-started/tour/img/create-new.jpg diff --git a/docs/versioned_docs/version-CE-1.1/getting-started/tour/img/create-org.jpg b/docs/versioned_docs/version-CE-1.3/getting-started/tour/img/create-org.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/getting-started/tour/img/create-org.jpg rename to docs/versioned_docs/version-CE-1.3/getting-started/tour/img/create-org.jpg diff --git a/docs/versioned_docs/version-CE-1.1/getting-started/tour/img/create-secret.jpg b/docs/versioned_docs/version-CE-1.3/getting-started/tour/img/create-secret.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/getting-started/tour/img/create-secret.jpg rename to docs/versioned_docs/version-CE-1.3/getting-started/tour/img/create-secret.jpg diff --git a/docs/versioned_docs/version-CE-1.1/getting-started/tour/img/dependencies.jpg b/docs/versioned_docs/version-CE-1.3/getting-started/tour/img/dependencies.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/getting-started/tour/img/dependencies.jpg rename to docs/versioned_docs/version-CE-1.3/getting-started/tour/img/dependencies.jpg diff --git a/docs/versioned_docs/version-CE-1.1/getting-started/tour/img/env-vars-log.jpg b/docs/versioned_docs/version-CE-1.3/getting-started/tour/img/env-vars-log.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/getting-started/tour/img/env-vars-log.jpg rename to docs/versioned_docs/version-CE-1.3/getting-started/tour/img/env-vars-log.jpg diff --git a/docs/versioned_docs/version-CE-1.1/getting-started/tour/img/environment-variables1.jpg b/docs/versioned_docs/version-CE-1.3/getting-started/tour/img/environment-variables1.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/getting-started/tour/img/environment-variables1.jpg rename to docs/versioned_docs/version-CE-1.3/getting-started/tour/img/environment-variables1.jpg diff --git a/docs/versioned_docs/version-CE-1.1/getting-started/tour/img/first-workflow.jpg b/docs/versioned_docs/version-CE-1.3/getting-started/tour/img/first-workflow.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/getting-started/tour/img/first-workflow.jpg rename to docs/versioned_docs/version-CE-1.3/getting-started/tour/img/first-workflow.jpg diff --git a/docs/versioned_docs/version-CE-1.1/getting-started/tour/img/github-connect-button.jpg b/docs/versioned_docs/version-CE-1.3/getting-started/tour/img/github-connect-button.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/getting-started/tour/img/github-connect-button.jpg rename to docs/versioned_docs/version-CE-1.3/getting-started/tour/img/github-connect-button.jpg diff --git a/docs/versioned_docs/version-CE-1.1/getting-started/tour/img/give-access.jpg b/docs/versioned_docs/version-CE-1.3/getting-started/tour/img/give-access.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/getting-started/tour/img/give-access.jpg rename to docs/versioned_docs/version-CE-1.3/getting-started/tour/img/give-access.jpg diff --git a/docs/versioned_docs/version-CE-1.1/getting-started/tour/img/grant-access.jpg b/docs/versioned_docs/version-CE-1.3/getting-started/tour/img/grant-access.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/getting-started/tour/img/grant-access.jpg rename to docs/versioned_docs/version-CE-1.3/getting-started/tour/img/grant-access.jpg diff --git a/docs/versioned_docs/version-CE-1.1/getting-started/tour/img/hello-world-editor1.jpg b/docs/versioned_docs/version-CE-1.3/getting-started/tour/img/hello-world-editor1.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/getting-started/tour/img/hello-world-editor1.jpg rename to docs/versioned_docs/version-CE-1.3/getting-started/tour/img/hello-world-editor1.jpg diff --git a/docs/versioned_docs/version-CE-1.1/getting-started/tour/img/hello-world-output1.jpg b/docs/versioned_docs/version-CE-1.3/getting-started/tour/img/hello-world-output1.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/getting-started/tour/img/hello-world-output1.jpg rename to docs/versioned_docs/version-CE-1.3/getting-started/tour/img/hello-world-output1.jpg diff --git a/docs/versioned_docs/version-CE-1.1/getting-started/tour/img/homepage.jpg b/docs/versioned_docs/version-CE-1.3/getting-started/tour/img/homepage.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/getting-started/tour/img/homepage.jpg rename to docs/versioned_docs/version-CE-1.3/getting-started/tour/img/homepage.jpg diff --git a/docs/versioned_docs/version-CE-1.1/getting-started/tour/img/initial-workflow1.jpg b/docs/versioned_docs/version-CE-1.3/getting-started/tour/img/initial-workflow1.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/getting-started/tour/img/initial-workflow1.jpg rename to docs/versioned_docs/version-CE-1.3/getting-started/tour/img/initial-workflow1.jpg diff --git a/docs/versioned_docs/version-CE-1.1/getting-started/tour/img/invite-people.jpg b/docs/versioned_docs/version-CE-1.3/getting-started/tour/img/invite-people.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/getting-started/tour/img/invite-people.jpg rename to docs/versioned_docs/version-CE-1.3/getting-started/tour/img/invite-people.jpg diff --git a/docs/versioned_docs/version-CE-1.1/getting-started/tour/img/moar-tests.jpg b/docs/versioned_docs/version-CE-1.3/getting-started/tour/img/moar-tests.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/getting-started/tour/img/moar-tests.jpg rename to docs/versioned_docs/version-CE-1.3/getting-started/tour/img/moar-tests.jpg diff --git a/docs/versioned_docs/version-CE-1.1/getting-started/tour/img/onboarding-survery.jpg b/docs/versioned_docs/version-CE-1.3/getting-started/tour/img/onboarding-survery.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/getting-started/tour/img/onboarding-survery.jpg rename to docs/versioned_docs/version-CE-1.3/getting-started/tour/img/onboarding-survery.jpg diff --git a/docs/versioned_docs/version-CE-1.1/getting-started/tour/img/org-diagram.jpg b/docs/versioned_docs/version-CE-1.3/getting-started/tour/img/org-diagram.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/getting-started/tour/img/org-diagram.jpg rename to docs/versioned_docs/version-CE-1.3/getting-started/tour/img/org-diagram.jpg diff --git a/docs/versioned_docs/version-CE-1.1/getting-started/tour/img/parallel-jobs.jpg b/docs/versioned_docs/version-CE-1.3/getting-started/tour/img/parallel-jobs.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/getting-started/tour/img/parallel-jobs.jpg rename to docs/versioned_docs/version-CE-1.3/getting-started/tour/img/parallel-jobs.jpg diff --git a/docs/versioned_docs/version-CE-1.1/getting-started/tour/img/people-tab.jpg b/docs/versioned_docs/version-CE-1.3/getting-started/tour/img/people-tab.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/getting-started/tour/img/people-tab.jpg rename to docs/versioned_docs/version-CE-1.3/getting-started/tour/img/people-tab.jpg diff --git a/docs/versioned_docs/version-CE-1.1/getting-started/tour/img/pipeline-manual.jpg b/docs/versioned_docs/version-CE-1.3/getting-started/tour/img/pipeline-manual.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/getting-started/tour/img/pipeline-manual.jpg rename to docs/versioned_docs/version-CE-1.3/getting-started/tour/img/pipeline-manual.jpg diff --git a/docs/versioned_docs/version-CE-1.1/getting-started/tour/img/project-repo.jpg b/docs/versioned_docs/version-CE-1.3/getting-started/tour/img/project-repo.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/getting-started/tour/img/project-repo.jpg rename to docs/versioned_docs/version-CE-1.3/getting-started/tour/img/project-repo.jpg diff --git a/docs/versioned_docs/version-CE-1.1/getting-started/tour/img/promotion-button.jpg b/docs/versioned_docs/version-CE-1.3/getting-started/tour/img/promotion-button.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/getting-started/tour/img/promotion-button.jpg rename to docs/versioned_docs/version-CE-1.3/getting-started/tour/img/promotion-button.jpg diff --git a/docs/versioned_docs/version-CE-1.1/getting-started/tour/img/regen-api-token.jpg b/docs/versioned_docs/version-CE-1.3/getting-started/tour/img/regen-api-token.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/getting-started/tour/img/regen-api-token.jpg rename to docs/versioned_docs/version-CE-1.3/getting-started/tour/img/regen-api-token.jpg diff --git a/docs/versioned_docs/version-CE-1.1/getting-started/tour/img/release-job-ci.jpg b/docs/versioned_docs/version-CE-1.3/getting-started/tour/img/release-job-ci.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/getting-started/tour/img/release-job-ci.jpg rename to docs/versioned_docs/version-CE-1.3/getting-started/tour/img/release-job-ci.jpg diff --git a/docs/versioned_docs/version-CE-1.1/getting-started/tour/img/release1.jpg b/docs/versioned_docs/version-CE-1.3/getting-started/tour/img/release1.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/getting-started/tour/img/release1.jpg rename to docs/versioned_docs/version-CE-1.3/getting-started/tour/img/release1.jpg diff --git a/docs/versioned_docs/version-CE-1.1/getting-started/tour/img/release2.jpg b/docs/versioned_docs/version-CE-1.3/getting-started/tour/img/release2.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/getting-started/tour/img/release2.jpg rename to docs/versioned_docs/version-CE-1.3/getting-started/tour/img/release2.jpg diff --git a/docs/versioned_docs/version-CE-1.1/getting-started/tour/img/release3.jpg b/docs/versioned_docs/version-CE-1.3/getting-started/tour/img/release3.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/getting-started/tour/img/release3.jpg rename to docs/versioned_docs/version-CE-1.3/getting-started/tour/img/release3.jpg diff --git a/docs/versioned_docs/version-CE-1.1/getting-started/tour/img/select-people.jpg b/docs/versioned_docs/version-CE-1.3/getting-started/tour/img/select-people.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/getting-started/tour/img/select-people.jpg rename to docs/versioned_docs/version-CE-1.3/getting-started/tour/img/select-people.jpg diff --git a/docs/versioned_docs/version-CE-1.1/getting-started/tour/img/select-plan.jpg b/docs/versioned_docs/version-CE-1.3/getting-started/tour/img/select-plan.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/getting-started/tour/img/select-plan.jpg rename to docs/versioned_docs/version-CE-1.3/getting-started/tour/img/select-plan.jpg diff --git a/docs/versioned_docs/version-CE-1.1/getting-started/tour/img/server-menu.jpg b/docs/versioned_docs/version-CE-1.3/getting-started/tour/img/server-menu.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/getting-started/tour/img/server-menu.jpg rename to docs/versioned_docs/version-CE-1.3/getting-started/tour/img/server-menu.jpg diff --git a/docs/versioned_docs/version-CE-1.1/getting-started/tour/img/signup.jpg b/docs/versioned_docs/version-CE-1.3/getting-started/tour/img/signup.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/getting-started/tour/img/signup.jpg rename to docs/versioned_docs/version-CE-1.3/getting-started/tour/img/signup.jpg diff --git a/docs/versioned_docs/version-CE-1.1/getting-started/tour/img/ssh-debug-terminal.jpg b/docs/versioned_docs/version-CE-1.3/getting-started/tour/img/ssh-debug-terminal.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/getting-started/tour/img/ssh-debug-terminal.jpg rename to docs/versioned_docs/version-CE-1.3/getting-started/tour/img/ssh-debug-terminal.jpg diff --git a/docs/versioned_docs/version-CE-1.1/getting-started/tour/img/ssh-debug-terminal.png b/docs/versioned_docs/version-CE-1.3/getting-started/tour/img/ssh-debug-terminal.png similarity index 100% rename from docs/versioned_docs/version-CE-1.1/getting-started/tour/img/ssh-debug-terminal.png rename to docs/versioned_docs/version-CE-1.3/getting-started/tour/img/ssh-debug-terminal.png diff --git a/docs/versioned_docs/version-CE-1.1/getting-started/tour/img/ssh-debug.jpg b/docs/versioned_docs/version-CE-1.3/getting-started/tour/img/ssh-debug.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/getting-started/tour/img/ssh-debug.jpg rename to docs/versioned_docs/version-CE-1.3/getting-started/tour/img/ssh-debug.jpg diff --git a/docs/versioned_docs/version-CE-1.1/getting-started/tour/img/temp-password.jpg b/docs/versioned_docs/version-CE-1.3/getting-started/tour/img/temp-password.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/getting-started/tour/img/temp-password.jpg rename to docs/versioned_docs/version-CE-1.3/getting-started/tour/img/temp-password.jpg diff --git a/docs/versioned_docs/version-CE-1.1/getting-started/tour/img/test-1.jpg b/docs/versioned_docs/version-CE-1.3/getting-started/tour/img/test-1.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/getting-started/tour/img/test-1.jpg rename to docs/versioned_docs/version-CE-1.3/getting-started/tour/img/test-1.jpg diff --git a/docs/versioned_docs/version-CE-1.2/reference/agent-aws-stack.md b/docs/versioned_docs/version-CE-1.3/reference/agent-aws-stack.md similarity index 97% rename from docs/versioned_docs/version-CE-1.2/reference/agent-aws-stack.md rename to docs/versioned_docs/version-CE-1.3/reference/agent-aws-stack.md index d426b62de..cd5fd952d 100644 --- a/docs/versioned_docs/version-CE-1.2/reference/agent-aws-stack.md +++ b/docs/versioned_docs/version-CE-1.3/reference/agent-aws-stack.md @@ -51,7 +51,6 @@ The AWS Autoscaler Stack accepts configuration settings in two ways: See [Autoscaling with AWS](../using-semaphore/self-hosted-aws) to learn more. - ## Required parameters ### Endpoint {#endpoint} @@ -62,7 +61,6 @@ The endpoint the agent uses for registration and sync with your Semaphore server If this parameter is not set, you must configure [`SEMAPHORE_ORGANIZATION`](#organization). - ### Organization {#organization} - **Parameter name**: `SEMAPHORE_ORGANIZATION` @@ -77,14 +75,12 @@ If [`SEMAPHORE_ENDPOINT`] is not set, this parameter is used to generate the end The name of the stack. This is the stack name used in Cloudformation and as a prefix to name all the stack resources. When deploying multiple stacks for multiple agent types, different stack names are required. - ### Agent token {#agent-token} - **Parameter name**: `SEMAPHORE_AGENT_TOKEN_PARAMETER_NAME` The AWS SSM parameter name contains the Semaphore agent [registration token](../using-semaphore/self-hosted-install#register-agent). - ## Optional parameters Here's the converted markdown documentation based on the original table you provided: @@ -95,7 +91,6 @@ Here's the converted markdown documentation based on the original table you prov Path to a JSON file containing the parameters to use. This is an alternative to using environment variables for setting the stack's configuration parameters. - ### Agent instance type {#agent-instance-type} - **Parameter name**: `SEMAPHORE_AGENT_INSTANCE_TYPE` @@ -103,7 +98,6 @@ Path to a JSON file containing the parameters to use. This is an alternative to AWS instance type used for the agents. See the available instance type on [AWS docs](https://aws.amazon.com/ec2/instance-types/). - ### Auto-scaling group minimum size {#asg-min-size} - **Parameter name**: `SEMAPHORE_AGENT_ASG_MIN_SIZE` @@ -111,7 +105,6 @@ AWS instance type used for the agents. See the available instance type on [AWS d Minimum size for the auto-scaling group. - ### Auto-scaling group maximum size {#asg-max-size} - **Parameter name**: `SEMAPHORE_AGENT_ASG_MAX_SIZE` @@ -119,7 +112,6 @@ Minimum size for the auto-scaling group. Maximum size for the auto-scaling group. - ### Auto-scaling group desired capacity {#asg-desired} - **Parameter name**: `SEMAPHORE_AGENT_ASG_DESIRED` @@ -127,7 +119,6 @@ Maximum size for the auto-scaling group. Desired capacity for the auto-scaling group. - ### Use dynamic scaling {#use-dynamic-scaling} - **Parameter name**: `SEMAPHORE_AGENT_USE_DYNAMIC_SCALING` @@ -144,14 +135,12 @@ Security Group ID to use for agent instances. If not specified, a security group - an egress rule allowing all outbound traffic - an ingress rule for SSH if [`SEMAPHORE_AGENT_KEY_NAME`](#key-name) is specified - ### Key name {#key-name} - **Parameter name**: `SEMAPHORE_AGENT_KEY_NAME` Key name to access agents through SSH. If not specified, no SSH inbound access is allowed. - ### Disconnect after job {#disconnect-after-job} - **Parameter name**: `SEMAPHORE_AGENT_DISCONNECT_AFTER_JOB` @@ -159,23 +148,20 @@ Key name to access agents through SSH. If not specified, no SSH inbound access i If true, the agent disconnects after completing a job. - ### Disconnect after idle timeout {#disconnect-after-idle-timeout} - **Parameter name**: `SEMAPHORE_AGENT_DISCONNECT_AFTER_IDLE_TIMEOUT` - **default value**: `300` -Number of seconds of idleness after which the agent is shut down. +Number of seconds of idleness after which the agent is shut down. Setting this to 0 disables the scaling down behavior for the stack since the agents do not shutdown due to idleness. - ### Cache bucket name {#cache-bucket-name} - **Parameter name**: `SEMAPHORE_AGENT_CACHE_BUCKET_NAME` -Existing S3 bucket name to use for caching. If this is not set, [caching](../using-semaphore/optimization/cache) does not work. - +Existing S3 bucket name to use for caching. If this is not set, [caching](../using-semaphore/cache) does not work. ### Token KMS key {#token-kms-key} @@ -183,80 +169,70 @@ Existing S3 bucket name to use for caching. If this is not set, [caching](../usi KMS key id used to encrypt and decrypt `SEMAPHORE_AGENT_TOKEN_PARAMETER_NAME`. If nothing is given, the default `alias/aws/ssm` key is assumed. - ### VPC ID {#vpc-id} - **Parameter name**: `SEMAPHORE_AGENT_VPC_ID` The ID of an existing VPC to use when launching agent instances. By default, this is blank, and the default VPC on your AWS account is used. - ### Subnets {#subnets} - **Parameter name**: `SEMAPHORE_AGENT_SUBNETS` -Comma-separated list of existing VPC subnet IDs where EC2 instances are to run. This is required when using [`SEMAPHORE_AGENT_VPC_ID`](#vpc-id). +Comma-separated list of existing VPC subnet IDs where EC2 instances are to run. This is required when using [`SEMAPHORE_AGENT_VPC_ID`](#vpc-id). If `SEMAPHORE_AGENT_SUBNETS` is set and [`SEMAPHORE_AGENT_VPC_ID`](#vpc-id) is blank, the subnets are ignored, and the default VPC is used. This means that private and public subnets are possible, but isolated subnets cannot be used. - ### AMI {#ami} - **Parameter name**: `SEMAPHORE_AGENT_AMI` The AMI is used for all instances. If empty, the stack uses the default AMIs, looking them up by name. If the default AMI isn't sufficient, you can use your own AMIs, but they need to be based on the stack's default AMI. - ### OS type {#os-type} - **Parameter name**: `SEMAPHORE_AGENT_OS` -The OS type for agents. +The OS type for agents. -Possible values: +Possible values: -- `ubuntu-focal` +- `ubuntu-focal` - `windows` - ### Architecture type {#architecture-type} - **Parameter name**: `SEMAPHORE_AGENT_ARCH` The arch type for agents. Possible values: -- `x86_64` +- `x86_64` - `arm64` - ### Availability zones {#availability-zones} - **Parameter name**: `SEMAPHORE_AGENT_AZS` A comma-separated list of availability zones to use for the auto-scaling group. - ### Managed policy names {#managed-policy-names} - **Parameter name**: `SEMAPHORE_AGENT_MANAGED_POLICY_NAMES` A comma-separated list of custom IAM policy names to attach to the instance profile role. - ### ASG metrics {#asg-metrics} - **Parameter name**: `SEMAPHORE_AGENT_ASG_METRICS` A comma-separated list of ASG metrics to collect. Available metrics can be found on the [AWS CDK Documentation](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_autoscaling.CfnAutoScalingGroup.MetricsCollectionProperty.html). - ### Volume name {#volume-name} - **Parameter name**: `SEMAPHORE_AGENT_VOLUME_NAME` The EBS volume's device name to use for a custom volume. If this is not set, the EC2 instances are assigned the EBS volume based on the AMI. - ### Volume type {#volume-type} - **Parameter name**: `SEMAPHORE_AGENT_VOLUME_TYPE` @@ -264,7 +240,6 @@ The EBS volume's device name to use for a custom volume. If this is not set, the The EBS volume's type, when using [`SEMAPHORE_AGENT_VOLUME_NAME`](#volume-name). - ### Volume size {#volume-size} - **Parameter name**: `SEMAPHORE_AGENT_VOLUME_SIZE` @@ -272,47 +247,41 @@ The EBS volume's type, when using [`SEMAPHORE_AGENT_VOLUME_NAME`](#volume-name). The EBS volume's size, in GB, when using [`SEMAPHORE_AGENT_VOLUME_NAME`](#volume-name). - ### License configuration ARN {#license-configuration-arn} - **Parameter name**: `SEMAPHORE_AGENT_LICENSE_CONFIGURATION_ARN` The license configuration ARN is associated with the AMI used by the stack. - ### Mac family {#mac-family} - **Parameter name**: `SEMAPHORE_AGENT_MAC_FAMILY` The EC2 Mac instance family to use. Possible values: `mac1` and `mac2`. - ### Mac dedicated hosts {#mac-dedicated-hosts} - **Parameter name**: `SEMAPHORE_AGENT_MAC_DEDICATED_HOSTS` A comma-separated list of dedicated host IDs to include in the host resource group. - ### Tags {#tags} - **Parameter name**: `SEMAPHORE_AGENT_TAGS` -A comma-separated list of key-value pairs of tags to be added to all resources created for the stack. +A comma-separated list of key-value pairs of tags to be added to all resources created for the stack. For example: `Name:Something,Category:SomethingElse`. - ### Use pre-signed URL {#use-pre-signed-url} - **Parameter name**: `SEMAPHORE_AGENT_USE_PRE_SIGNED_URL` - **default value**: `false` -If true, use a pre-signed AWS STS GetCallerIdentity URL for agent registration. +If true, use a pre-signed AWS STS GetCallerIdentity URL for agent registration. See [agent type configuration](../using-semaphore/self-hosted-install#name-sts) to learn how to configure this security feature. - ## See also - [How to use self-hosted agents](../using-semaphore/self-hosted) diff --git a/docs/versioned_docs/version-CE-1.1/reference/agent-yaml.md b/docs/versioned_docs/version-CE-1.3/reference/agent-yaml.md similarity index 100% rename from docs/versioned_docs/version-CE-1.1/reference/agent-yaml.md rename to docs/versioned_docs/version-CE-1.3/reference/agent-yaml.md diff --git a/docs/versioned_docs/version-CE-1.1/reference/api.md b/docs/versioned_docs/version-CE-1.3/reference/api.md similarity index 99% rename from docs/versioned_docs/version-CE-1.1/reference/api.md rename to docs/versioned_docs/version-CE-1.3/reference/api.md index f082c978b..9e2c2f2d5 100644 --- a/docs/versioned_docs/version-CE-1.1/reference/api.md +++ b/docs/versioned_docs/version-CE-1.3/reference/api.md @@ -472,6 +472,8 @@ curl -i -X POST \ ## Tasks {#tasks} +### Trigger a taks + [Tasks](../using-semaphore/tasks) can be triggered via the API. To trigger a task with its default parameters: @@ -624,9 +626,9 @@ curl -H "Authorization: Token {api_token}" \ "https:///api/v1alpha/logs/:job_id" ``` -### Self-hosted agent types +## Self-hosted agent types -#### Listing agent types +### Listing agent types ```text GET /api/v1alpha/self_hosted_agent_types @@ -687,7 +689,7 @@ curl -i \ "https:///api/v1alpha/self_hosted_agent_types" ``` -#### Create an agent type +### Create an agent type ```text POST /api/v1alpha/self_hosted_agent_types @@ -740,7 +742,7 @@ curl -i \ "https:///api/v1alpha/self_hosted_agent_types" ``` -#### Update an agent type +### Update an agent type ```text PATCH /api/v1alpha/self_hosted_agent_types/:agent_type_name @@ -792,7 +794,7 @@ curl -X PATCH -i \ "https:///api/v1alpha/self_hosted_agent_types/s1-aws-small" ``` -#### Describe an agent type +### Describe an agent type ```text GET /api/v1alpha/self_hosted_agent_types/:agent_type_name @@ -833,7 +835,7 @@ curl -i \ "https:///api/v1alpha/self_hosted_agent_types/s1-aws-small" ``` -#### Delete an agent type +### Delete an agent type ```text DELETE /api/v1alpha/self_hosted_agent_types/:agent_type_name @@ -858,7 +860,7 @@ curl -i -X DELETE \ "https:///api/v1alpha/self_hosted_agent_types/s1-aws-small" ``` -#### Disable agents for an agent type +### Disable agents for an agent type ```text POST /api/v1alpha/self_hosted_agent_types/:agent_type_name/disable_all @@ -885,9 +887,9 @@ curl -i \ "https:///api/v1alpha/self_hosted_agent_types/s1-aws-small/disable_all" ``` -### Self-hosted agents +## Self-hosted agents -#### List agents for an agent type +### List agents for an agent type ```text GET /api/v1alpha/agents?agent_type=:agent_type&page_size=:page_size&cursor=:cursor diff --git a/docs/versioned_docs/version-CE-1.1/reference/audit-events.md b/docs/versioned_docs/version-CE-1.3/reference/audit-events.md similarity index 100% rename from docs/versioned_docs/version-CE-1.1/reference/audit-events.md rename to docs/versioned_docs/version-CE-1.3/reference/audit-events.md diff --git a/docs/versioned_docs/version-CE-1.1/reference/conditions-dsl.md b/docs/versioned_docs/version-CE-1.3/reference/conditions-dsl.md similarity index 100% rename from docs/versioned_docs/version-CE-1.1/reference/conditions-dsl.md rename to docs/versioned_docs/version-CE-1.3/reference/conditions-dsl.md diff --git a/docs/versioned_docs/version-CE-1.1/reference/dashboard-yaml.md b/docs/versioned_docs/version-CE-1.3/reference/dashboard-yaml.md similarity index 100% rename from docs/versioned_docs/version-CE-1.1/reference/dashboard-yaml.md rename to docs/versioned_docs/version-CE-1.3/reference/dashboard-yaml.md diff --git a/docs/versioned_docs/version-CE-1.1/reference/deployment-target-yaml.md b/docs/versioned_docs/version-CE-1.3/reference/deployment-target-yaml.md similarity index 100% rename from docs/versioned_docs/version-CE-1.1/reference/deployment-target-yaml.md rename to docs/versioned_docs/version-CE-1.3/reference/deployment-target-yaml.md diff --git a/docs/versioned_docs/version-CE-1.2/reference/env-vars.md b/docs/versioned_docs/version-CE-1.3/reference/env-vars.md similarity index 98% rename from docs/versioned_docs/version-CE-1.2/reference/env-vars.md rename to docs/versioned_docs/version-CE-1.3/reference/env-vars.md index c03731e07..1d2cbeff7 100644 --- a/docs/versioned_docs/version-CE-1.2/reference/env-vars.md +++ b/docs/versioned_docs/version-CE-1.3/reference/env-vars.md @@ -88,7 +88,7 @@ A string with a user-supplied name for the job. - **Environment variable**: `SEMAPHORE_JOB_COUNT` - **Example**: 4 -Only available when [job parallelism](../using-semaphore/jobs#job-parallelism) is enabled. This variable holds the total number of jobs configured in job parallelism. +Only available when [job parallelism](../using-semaphore/jobs#job-parallelism) is enabled. This variable holds the total number of jobs configured in job parallelism. It can be used to configure a test partitioning strategy using a 3rd party test runner. @@ -204,7 +204,6 @@ Holds `true` if the workflow was triggered using the [Semaphore API](../referenc - The variable is `false` if the workflow is triggered by a Git push, pull request, or via [Tasks](../using-semaphore/tasks). ### Workflow is triggered by hook {#workflow-triggered-by-hook} @@ -299,7 +298,6 @@ Used only when running [`checkout --use-cache`](./toolbox#cache-full-clone). It - **Environment variable**: `SEMAPHORE_GIT_CACHE_KEEP` - **Example**: `1` - Used only when running [`checkout --use-cache`](./toolbox#cache-full-clone). It how many copies of the repository should be maintained in the Semaphore Git Cache. Older copies are automatically deleted. The default value is 0, which means that Semaphore maintains only 1 copy of the repository. If you set it to 1, Semaphore will maintain 2 copies of the repository. @@ -379,7 +377,6 @@ Present only for builds where `SEMAPHORE_GIT_REF_TYPE=pull-request` The number of the Pull Request. - :::note Present only for builds where `SEMAPHORE_GIT_REF_TYPE=pull-request` @@ -421,7 +418,6 @@ Present only for builds where `SEMAPHORE_GIT_REF_TYPE=pull-request` The name of the directory that contains the files of the repository linked to the current Semaphore project. - ### Repository name {#git-repo-name} - **Environment variable**: `SEMAPHORE_GIT_REPO_NAME` @@ -486,7 +482,7 @@ The time that the pipeline spent in the queue is expressed in seconds. - **Environment variable**: `SEMAPHORE_PIPELINE_RESULT` - **Example**: `failed`, `passed`, `canceled`, `stopped` -Contains the result of the pipeline. Possible values are: `failed`, `passed`, `canceled`, `stopped` +Contains the result of the pipeline. Possible values are: `failed`, `passed`, `canceled`, `stopped` ### Pipeline result reason {#pipeline-result-reason} @@ -518,7 +514,7 @@ The total duration of the pipeline including queuing time expressed in seconds. ## Cache variables {#cache-variables} -These variables are used to access the [cache](../using-semaphore/optimization/cache). +These variables are used to access the [cache](../using-semaphore/cache). ### Cache URL {#cache-url} @@ -543,7 +539,7 @@ The path in the server to the SSH key file to access the cache server. ## Semaphore Docker registry variables {#registry-variables} -These variables can be used to access the [Semaphore Docker registry](../using-semaphore/optimization/docker). +These variables can be used to access the [Semaphore Docker registry](../using-semaphore/containers/docker). ### Username {#registry-username} @@ -590,7 +586,7 @@ The path to the log file during the initialization job. ## See also -- [Docker optimization](../using-semaphore/optimization/docker) +- [Docker optimization](../using-semaphore/containers/docker) - [How to configure jobs](../using-semaphore/jobs) - [Semaphore pipelines](../using-semaphore/pipelines) - [Pipeline YAML reference](./pipeline-yaml) diff --git a/docs/versioned_docs/version-CE-1.1/reference/img/ebnf.jpg b/docs/versioned_docs/version-CE-1.3/reference/img/ebnf.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/reference/img/ebnf.jpg rename to docs/versioned_docs/version-CE-1.3/reference/img/ebnf.jpg diff --git a/docs/versioned_docs/version-CE-1.1/reference/img/macos15-selector.jpg b/docs/versioned_docs/version-CE-1.3/reference/img/macos15-selector.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/reference/img/macos15-selector.jpg rename to docs/versioned_docs/version-CE-1.3/reference/img/macos15-selector.jpg diff --git a/docs/versioned_docs/version-CE-1.1/reference/img/macos16-selector.jpg b/docs/versioned_docs/version-CE-1.3/reference/img/macos16-selector.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/reference/img/macos16-selector.jpg rename to docs/versioned_docs/version-CE-1.3/reference/img/macos16-selector.jpg diff --git a/docs/versioned_docs/version-CE-1.1/reference/img/ubuntu2004-selector.jpg b/docs/versioned_docs/version-CE-1.3/reference/img/ubuntu2004-selector.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/reference/img/ubuntu2004-selector.jpg rename to docs/versioned_docs/version-CE-1.3/reference/img/ubuntu2004-selector.jpg diff --git a/docs/versioned_docs/version-CE-1.1/reference/img/ubuntu2204-selector.jpg b/docs/versioned_docs/version-CE-1.3/reference/img/ubuntu2204-selector.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/reference/img/ubuntu2204-selector.jpg rename to docs/versioned_docs/version-CE-1.3/reference/img/ubuntu2204-selector.jpg diff --git a/docs/versioned_docs/version-CE-1.1/reference/jobs-yaml.md b/docs/versioned_docs/version-CE-1.3/reference/jobs-yaml.md similarity index 100% rename from docs/versioned_docs/version-CE-1.1/reference/jobs-yaml.md rename to docs/versioned_docs/version-CE-1.3/reference/jobs-yaml.md diff --git a/docs/versioned_docs/version-CE-1.1/reference/machine-types.md b/docs/versioned_docs/version-CE-1.3/reference/machine-types.md similarity index 100% rename from docs/versioned_docs/version-CE-1.1/reference/machine-types.md rename to docs/versioned_docs/version-CE-1.3/reference/machine-types.md diff --git a/docs/versioned_docs/version-CE-1.1/reference/notifications-yaml.md b/docs/versioned_docs/version-CE-1.3/reference/notifications-yaml.md similarity index 100% rename from docs/versioned_docs/version-CE-1.1/reference/notifications-yaml.md rename to docs/versioned_docs/version-CE-1.3/reference/notifications-yaml.md diff --git a/docs/versioned_docs/version-CE-1.1/reference/openid.md b/docs/versioned_docs/version-CE-1.3/reference/openid.md similarity index 100% rename from docs/versioned_docs/version-CE-1.1/reference/openid.md rename to docs/versioned_docs/version-CE-1.3/reference/openid.md diff --git a/docs/versioned_docs/version-CE-1.1/reference/os-apple.md b/docs/versioned_docs/version-CE-1.3/reference/os-apple.md similarity index 100% rename from docs/versioned_docs/version-CE-1.1/reference/os-apple.md rename to docs/versioned_docs/version-CE-1.3/reference/os-apple.md diff --git a/docs/versioned_docs/version-CE-1.1/reference/os-ubuntu-images/img/ubuntu2004-selector.jpg b/docs/versioned_docs/version-CE-1.3/reference/os-ubuntu-images/img/ubuntu2004-selector.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/reference/os-ubuntu-images/img/ubuntu2004-selector.jpg rename to docs/versioned_docs/version-CE-1.3/reference/os-ubuntu-images/img/ubuntu2004-selector.jpg diff --git a/docs/versioned_docs/version-CE-1.1/reference/os-ubuntu-images/img/ubuntu2204-arm-selector.jpg b/docs/versioned_docs/version-CE-1.3/reference/os-ubuntu-images/img/ubuntu2204-arm-selector.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/reference/os-ubuntu-images/img/ubuntu2204-arm-selector.jpg rename to docs/versioned_docs/version-CE-1.3/reference/os-ubuntu-images/img/ubuntu2204-arm-selector.jpg diff --git a/docs/versioned_docs/version-CE-1.1/reference/os-ubuntu-images/img/ubuntu2204-selector.jpg b/docs/versioned_docs/version-CE-1.3/reference/os-ubuntu-images/img/ubuntu2204-selector.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/reference/os-ubuntu-images/img/ubuntu2204-selector.jpg rename to docs/versioned_docs/version-CE-1.3/reference/os-ubuntu-images/img/ubuntu2204-selector.jpg diff --git a/docs/versioned_docs/version-CE-1.1/reference/os-ubuntu-images/img/ubuntu2404-selector.jpg b/docs/versioned_docs/version-CE-1.3/reference/os-ubuntu-images/img/ubuntu2404-selector.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/reference/os-ubuntu-images/img/ubuntu2404-selector.jpg rename to docs/versioned_docs/version-CE-1.3/reference/os-ubuntu-images/img/ubuntu2404-selector.jpg diff --git a/docs/versioned_docs/version-CE-1.1/reference/os-ubuntu-images/ubuntu-2004-image.md b/docs/versioned_docs/version-CE-1.3/reference/os-ubuntu-images/ubuntu-2004-image.md similarity index 100% rename from docs/versioned_docs/version-CE-1.1/reference/os-ubuntu-images/ubuntu-2004-image.md rename to docs/versioned_docs/version-CE-1.3/reference/os-ubuntu-images/ubuntu-2004-image.md diff --git a/docs/versioned_docs/version-CE-1.1/reference/os-ubuntu-images/ubuntu-2204-arm-image.md b/docs/versioned_docs/version-CE-1.3/reference/os-ubuntu-images/ubuntu-2204-arm-image.md similarity index 100% rename from docs/versioned_docs/version-CE-1.1/reference/os-ubuntu-images/ubuntu-2204-arm-image.md rename to docs/versioned_docs/version-CE-1.3/reference/os-ubuntu-images/ubuntu-2204-arm-image.md diff --git a/docs/versioned_docs/version-CE-1.1/reference/os-ubuntu-images/ubuntu-2204-image.md b/docs/versioned_docs/version-CE-1.3/reference/os-ubuntu-images/ubuntu-2204-image.md similarity index 100% rename from docs/versioned_docs/version-CE-1.1/reference/os-ubuntu-images/ubuntu-2204-image.md rename to docs/versioned_docs/version-CE-1.3/reference/os-ubuntu-images/ubuntu-2204-image.md diff --git a/docs/versioned_docs/version-CE-1.1/reference/os-ubuntu-images/ubuntu-2404-image.md b/docs/versioned_docs/version-CE-1.3/reference/os-ubuntu-images/ubuntu-2404-image.md similarity index 100% rename from docs/versioned_docs/version-CE-1.1/reference/os-ubuntu-images/ubuntu-2404-image.md rename to docs/versioned_docs/version-CE-1.3/reference/os-ubuntu-images/ubuntu-2404-image.md diff --git a/docs/versioned_docs/version-CE-1.1/reference/os-ubuntu.md b/docs/versioned_docs/version-CE-1.3/reference/os-ubuntu.md similarity index 100% rename from docs/versioned_docs/version-CE-1.1/reference/os-ubuntu.md rename to docs/versioned_docs/version-CE-1.3/reference/os-ubuntu.md diff --git a/docs/versioned_docs/version-CE-1.1/reference/pipeline-yaml.md b/docs/versioned_docs/version-CE-1.3/reference/pipeline-yaml.md similarity index 100% rename from docs/versioned_docs/version-CE-1.1/reference/pipeline-yaml.md rename to docs/versioned_docs/version-CE-1.3/reference/pipeline-yaml.md diff --git a/docs/versioned_docs/version-CE-1.1/reference/project-yaml.md b/docs/versioned_docs/version-CE-1.3/reference/project-yaml.md similarity index 100% rename from docs/versioned_docs/version-CE-1.1/reference/project-yaml.md rename to docs/versioned_docs/version-CE-1.3/reference/project-yaml.md diff --git a/docs/versioned_docs/version-CE-1.1/reference/resources-yaml.md b/docs/versioned_docs/version-CE-1.3/reference/resources-yaml.md similarity index 100% rename from docs/versioned_docs/version-CE-1.1/reference/resources-yaml.md rename to docs/versioned_docs/version-CE-1.3/reference/resources-yaml.md diff --git a/docs/versioned_docs/version-CE-1.1/reference/secret-yaml.md b/docs/versioned_docs/version-CE-1.3/reference/secret-yaml.md similarity index 100% rename from docs/versioned_docs/version-CE-1.1/reference/secret-yaml.md rename to docs/versioned_docs/version-CE-1.3/reference/secret-yaml.md diff --git a/docs/versioned_docs/version-CE-1.2/reference/self-hosted-config.md b/docs/versioned_docs/version-CE-1.3/reference/self-hosted-config.md similarity index 100% rename from docs/versioned_docs/version-CE-1.2/reference/self-hosted-config.md rename to docs/versioned_docs/version-CE-1.3/reference/self-hosted-config.md diff --git a/docs/versioned_docs/version-CE-1.2/reference/semaphore-cli.md b/docs/versioned_docs/version-CE-1.3/reference/semaphore-cli.md similarity index 99% rename from docs/versioned_docs/version-CE-1.2/reference/semaphore-cli.md rename to docs/versioned_docs/version-CE-1.3/reference/semaphore-cli.md index 3d0d49e12..1986ecd47 100644 --- a/docs/versioned_docs/version-CE-1.2/reference/semaphore-cli.md +++ b/docs/versioned_docs/version-CE-1.3/reference/semaphore-cli.md @@ -145,7 +145,7 @@ $ sem version The Semaphore CLI supports the following flags: - `--help` or `-h`: prints the help screen for the given command -- `--verbose` or `-v`: useful for debugging, prints vebose output. This flag shows the interactions between the tool and the [Semaphore API](./api) +- `--verbose` or `-v`: useful for debugging, prints verbose output. This flag shows the interactions between the tool and the [Semaphore API](./api) - `--file` or `-f`: specifies the path to a file. Can be used to specify YAML resource files in [sem create](#sem-create) and [sem apply](#sem-apply). It can also be used to upload secrets as files using [sem create secret](#sem-create) - `--all`: used with [sem get job](#sem-get-job) to view running and recently-finished jobs diff --git a/docs/versioned_docs/version-CE-1.1/reference/toolbox.md b/docs/versioned_docs/version-CE-1.3/reference/toolbox.md similarity index 97% rename from docs/versioned_docs/version-CE-1.1/reference/toolbox.md rename to docs/versioned_docs/version-CE-1.3/reference/toolbox.md index 7d4b4105a..9c69f4b7d 100644 --- a/docs/versioned_docs/version-CE-1.1/reference/toolbox.md +++ b/docs/versioned_docs/version-CE-1.3/reference/toolbox.md @@ -41,11 +41,11 @@ The available namespaces are: See [artifact namespaces](../using-semaphore/artifacts#namespaces) for more details. The optional flags are: + - `--force` or `-f`: overwrite file or directory if already exists - `--destination` of `-d`: pull or yank the file into a different path - `--verbose` or `-v`: verbose logging - ### Examples ```shell title="Artifact usage examples" @@ -83,7 +83,7 @@ The uploaded files must meet the following requirements: - File names cannot contain non-URI-encodable characters like `{, }, |, \, ^, ~, [, ]` - Files cannot be named `.` or `...` -You can workaround these limitations by compressing the file with tar before pushing it to the artifact store. For example: +You can workaround these limitations by compressing the file with tar before pushing it to the artifact store. For example: ```shell title="Creating a tarball before storing the artifact" tar -czvf example.tar.gz ~/example @@ -99,7 +99,7 @@ tar -xzf example.tar.gz ## cache {#cache} -The cache tool lets you interact with your project's [Semaphore cache](../using-semaphore/optimization/cache). +The cache tool lets you interact with your project's [Semaphore cache](../using-semaphore/cache). The syntax is: @@ -160,7 +160,6 @@ The supported options for `--cleanup-by` are: - `STORE_TIME`: (default) delete oldest files first - `ACCESS_TIME`: delete oldest accessed files first - ### Environment variables {#cache-env-vars} The cache tool depends on the following environment variables: @@ -222,7 +221,7 @@ The checkout command uses the following environment variables. ## checksum {#checksum} -This tool takes a single argument which is the file to checksum. It outputs the MD5 checksum of the file's contents. This tool is useful for tagging [artifacts](../using-semaphore/artifacts) or generating [cache keys](../using-semaphore/optimization/cache). +This tool takes a single argument which is the file to checksum. It outputs the MD5 checksum of the file's contents. This tool is useful for tagging [artifacts](../using-semaphore/artifacts) or generating [cache keys](../using-semaphore/cache). The syntax is: @@ -241,7 +240,6 @@ $ checksum package-lock.json The `install-package` tool is used to manage Ubuntu packages you may need for your jobs. It downloads and caches packages in a way that can be quickly reinstalled over and over again in different jobs. This is a convenient tool, you can still use `sudo` to install packages using the system's package manager. - The syntax is: ```shell title="install-package syntax" @@ -254,8 +252,8 @@ Where command is one of the following: - `update`: Retrieve new lists of packages - `upgrade`: Perform an upgrade -- `install`: Install new packages -- `reinstall`: Reinstall packages +- `install`: Install new packages +- `reinstall`: Reinstall packages - `remove`: Remove packages - `purge`: Remove packages and config files - `autoremove`: Remove automatically all unused packages @@ -276,7 +274,7 @@ You can supply multiple packages with their versions in the same invocation: install-package install mongodb-clients=3.6.8 mysql-client=8.0.36-0ubuntu0.20.04.1 ``` -The tool integrates with the [Semaphore cache](../using-semaphore/optimization/cache) to save, retrieve, and update the Deb packages as needed. +The tool integrates with the [Semaphore cache](../using-semaphore/cache) to save, retrieve, and update the Deb packages as needed. You can reinstall the packages in a different job within the same project with: @@ -363,6 +361,7 @@ $ sem-context get ReleaseVersion ``` Exit status codes: + - 0: key retrieved successfully - 1: key not found - 2: connection to the artifacts server failed @@ -377,6 +376,7 @@ sem-context delete ReleaseVersion ``` Exit status codes: + - 0: key deleted successfully - 1: key not found - 2: connection to the artifacts server failed @@ -429,7 +429,7 @@ The test-results CLI is open-sourced and available on [semaphoreci/test-results] ### Merging test results {#test-result-merge} -To use the test result feature you must add the following command at the end of every test job. +To use the test result feature you must add the following command at the end of every test job. The syntax is: @@ -493,5 +493,5 @@ kubectl apply -f deployment.yml ## See also - [Semaphore command line tool reference](./semaphore-cli) -- [Working with Docker](../using-semaphore/optimization/docker) +- [Working with Docker](../using-semaphore/containers/docker) - [Environment variable reference](./env-vars) diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/_category_.json b/docs/versioned_docs/version-CE-1.3/using-semaphore/_category_.json similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/_category_.json rename to docs/versioned_docs/version-CE-1.3/using-semaphore/_category_.json diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/artifacts.md b/docs/versioned_docs/version-CE-1.3/using-semaphore/artifacts.md similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/artifacts.md rename to docs/versioned_docs/version-CE-1.3/using-semaphore/artifacts.md diff --git a/docs/versioned_docs/version-EE/using-semaphore/optimization/cache.md b/docs/versioned_docs/version-CE-1.3/using-semaphore/cache.md similarity index 83% rename from docs/versioned_docs/version-EE/using-semaphore/optimization/cache.md rename to docs/versioned_docs/version-CE-1.3/using-semaphore/cache.md index 5b10fb66c..1d51e5976 100644 --- a/docs/versioned_docs/version-EE/using-semaphore/optimization/cache.md +++ b/docs/versioned_docs/version-CE-1.3/using-semaphore/cache.md @@ -17,14 +17,14 @@ The cache provides fast and convenient storage for your jobs. Use the cache to s ## Overview -Semaphore provides a [cache tool](../../reference/toolbox#cache) in all jobs to reuse files your project depends on but are not part of the repository. +Semaphore provides a [cache tool](../reference/toolbox#cache) in all jobs to reuse files your project depends on but are not part of the repository. Typical uses of the cache are: - to propagate a file from one block to the next - to reuse dependencies that are normally downloaded from the internet, like NPM modules -Semaphore creates a separate cache for every [project](../projects). For jobs running on Semaphore Cloud, the total cache size is 9.6GB. Older files are automatically deleted after 30 days or when the cache fills up. +Semaphore creates a separate cache for every [project](./projects). For jobs running on Semaphore Cloud, the total cache size is 9.6GB. Older files are automatically deleted after 30 days or when the cache fills up. :::note @@ -53,7 +53,6 @@ The cache tools recognize the following languages and dependency managers. See [ When using one of the supported dependency managers: - 1. Run `cache restore` to restore the latest files from the cache @@ -73,6 +72,7 @@ cache restore npm install cache store ``` + @@ -92,12 +92,13 @@ cache restore bundle install --path vendor/bundle cache store ``` + :::warning -Avoid using `cache store` in the [prologue](../pipelines#prologue) as this can cause file corruption due to multiple jobs trying to write the same key simultaneously. Instead, use `cache store` in the individual job commands. +Avoid using `cache store` in the [prologue](./pipelines#prologue) as this can cause file corruption due to multiple jobs trying to write the same key simultaneously. Instead, use `cache store` in the individual job commands. ::: @@ -121,7 +122,7 @@ cache restore Where keys are again a comma-separated lists of keys. Semaphore searches for the keys in the order provided and restores the first match to the working directory. -### Using multiple keys +### Using multiple keys It's recommended to use multiple keys to increase the chances of matching a key. The following example uses two keys: @@ -183,7 +184,7 @@ cache clear ## Custom backends {#custom-backends} -The cache storage is available for all Semaphore Cloud users. If you're running a different version such as On-Premise or [self-hosted agents](../self-hosted), the cache might not be available. +The cache storage is available for all Semaphore Cloud users. If you're running a different version such as On-Premise or [self-hosted agents](./self-hosted), the cache might not be available. For these cases, you need to provide storage. This section explains how to configure custom storage in other platforms. @@ -195,11 +196,11 @@ To provision the storage, follow these steps: -1. Create and configure an S3 bucket as explained in [How to set up caching on self-hosted agents](../self-hosted-configure#aws-cache) -2. Configure the following [environment variables](../jobs#environment-variables) in your job +1. Create and configure an S3 bucket as explained in [How to set up caching on self-hosted agents](./self-hosted-configure#aws-cache) +2. Configure the following [environment variables](./jobs#environment-variables) in your job - `SEMAPHORE_CACHE_BACKEND` set its value to "s3" - `SEMAPHORE_CACHE_S3_BUCKET` set its value to the S3 bucket name -3. Create a [secret](../secrets) with the following credentials +3. Create a [secret](./secrets) with the following credentials - `AWS_ACCESS_KEY_ID`: the key for an IAM account with access to the bucket - `AWS_SECRET_ACCESS_KEY`: the secret key for the account - `AWS_DEFAULT_REGION`: the region where the bucket is located @@ -215,7 +216,7 @@ To provision storage, follow these steps 1. [Create a Google Cloud Bucket](https://cloud.google.com/storage/docs/creating-buckets) -2. Configure the following [environment variables](../jobs#environment-variables) in your job +2. Configure the following [environment variables](./jobs#environment-variables) in your job - `SEMAPHORE_CACHE_BACKEND` set it to "gcs" - `SEMAPHORE_CACHE_GCS_BUCKET` set it to your Google Cloud bucket name 3. Provide the Google Cloud Application Default Credentials. See [How Application Default Credentials work](https://cloud.google.com/docs/authentication/application-default-credentials) to learn more @@ -226,16 +227,16 @@ To provision storage, follow these steps You can provide an SFTP server to provide custom storage for the cache. -To use SFTP, define the following [environment variables](../jobs#environment-variables) in your job: +To use SFTP, define the following [environment variables](./jobs#environment-variables) in your job: - `SEMAPHORE_CACHE_BACKEND`: set its value to "sftp" - `SEMAPHORE_CACHE_URL`: the IP address and port number of the SFTP server, e.g. "1.2.3.4:29920" - `SEMAPHORE_CACHE_USERNAME`: the username used to connect to the server - `SEMAPHORE_CACHE_PRIVATE_KEY_PATH`: the path of the private SSH key used to connect to the SFTP server -In addition, you must create a [secret](../secrets) to store the private SSH key and expose it inside the job. +In addition, you must create a [secret](./secrets) to store the private SSH key and expose it inside the job. ## See also -- [Using cache in jobs](../jobs#cache) -- [Cache toolbox reference](../../reference/toolbox#cache) +- [Using cache in jobs](./jobs#cache) +- [Cache toolbox reference](../reference/toolbox#cache) diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/connect-bitbucket.md b/docs/versioned_docs/version-CE-1.3/using-semaphore/connect-bitbucket.md similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/connect-bitbucket.md rename to docs/versioned_docs/version-CE-1.3/using-semaphore/connect-bitbucket.md diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/connect-git-server.md b/docs/versioned_docs/version-CE-1.3/using-semaphore/connect-git-server.md similarity index 99% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/connect-git-server.md rename to docs/versioned_docs/version-CE-1.3/using-semaphore/connect-git-server.md index fc31d62ba..1bdaca63f 100644 --- a/docs/versioned_docs/version-CE-1.2/using-semaphore/connect-git-server.md +++ b/docs/versioned_docs/version-CE-1.3/using-semaphore/connect-git-server.md @@ -91,7 +91,7 @@ To connect with this method, press the **Create new** button. 5. SSH into the Git server add the SSH key copied in the previous step to `$HOME/.ssh/authorized_keys` (relative to the user that runs the Git service) and press **Continue** -6. Back in Sempahore, press the **Generate Script** button +6. Back in Semaphore, press the **Generate Script** button
Show me diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/connect-github-oauth.md b/docs/versioned_docs/version-CE-1.3/using-semaphore/connect-github-oauth.md similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/connect-github-oauth.md rename to docs/versioned_docs/version-CE-1.3/using-semaphore/connect-github-oauth.md diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/connect-github.md b/docs/versioned_docs/version-CE-1.3/using-semaphore/connect-github.md similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/connect-github.md rename to docs/versioned_docs/version-CE-1.3/using-semaphore/connect-github.md diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/connect-gitlab.md b/docs/versioned_docs/version-CE-1.3/using-semaphore/connect-gitlab.md similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/connect-gitlab.md rename to docs/versioned_docs/version-CE-1.3/using-semaphore/connect-gitlab.md diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/optimization/_category_.json b/docs/versioned_docs/version-CE-1.3/using-semaphore/containers/_category_.json similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/optimization/_category_.json rename to docs/versioned_docs/version-CE-1.3/using-semaphore/containers/_category_.json diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/optimization/container-registry.md b/docs/versioned_docs/version-CE-1.3/using-semaphore/containers/container-registry.md similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/optimization/container-registry.md rename to docs/versioned_docs/version-CE-1.3/using-semaphore/containers/container-registry.md diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/optimization/docker.md b/docs/versioned_docs/version-CE-1.3/using-semaphore/containers/docker.md similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/optimization/docker.md rename to docs/versioned_docs/version-CE-1.3/using-semaphore/containers/docker.md diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/add-metric.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/containers/img/add-metric.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/add-metric.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/containers/img/add-metric.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/change-skip-vs-run.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/containers/img/change-skip-vs-run.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/change-skip-vs-run.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/containers/img/change-skip-vs-run.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/custom-create.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/containers/img/custom-create.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/custom-create.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/containers/img/custom-create.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/optimization/img/dockerhub-secret.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/containers/img/dockerhub-secret.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/optimization/img/dockerhub-secret.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/containers/img/dockerhub-secret.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/freq-cd.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/containers/img/freq-cd.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/freq-cd.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/containers/img/freq-cd.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/freq-ci.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/containers/img/freq-ci.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/freq-ci.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/containers/img/freq-ci.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/insights-settings.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/containers/img/insights-settings.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/insights-settings.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/containers/img/insights-settings.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/insights-tab.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/containers/img/insights-tab.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/insights-tab.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/containers/img/insights-tab.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/new-metric.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/containers/img/new-metric.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/new-metric.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/containers/img/new-metric.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/org-health-location.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/containers/img/org-health-location.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/org-health-location.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/containers/img/org-health-location.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/org-health-overview.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/containers/img/org-health-overview.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/org-health-overview.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/containers/img/org-health-overview.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/perf-cd.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/containers/img/perf-cd.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/perf-cd.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/containers/img/perf-cd.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/perf-ci.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/containers/img/perf-ci.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/perf-ci.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/containers/img/perf-ci.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/rel-cd.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/containers/img/rel-cd.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/rel-cd.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/containers/img/rel-cd.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/rel-ci.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/containers/img/rel-ci.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/rel-ci.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/containers/img/rel-ci.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/select-date-range.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/containers/img/select-date-range.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/select-date-range.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/containers/img/select-date-range.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/optimization/img/workflow-monorepo.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/containers/img/workflow-monorepo.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/optimization/img/workflow-monorepo.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/containers/img/workflow-monorepo.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/github-sso.md b/docs/versioned_docs/version-CE-1.3/using-semaphore/github-sso.md similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/github-sso.md rename to docs/versioned_docs/version-CE-1.3/using-semaphore/github-sso.md diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/Docs v2@2x (1).jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/Docs v2@2x (1).jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/Docs v2@2x (1).jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/Docs v2@2x (1).jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/account-gh-bb-access.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/account-gh-bb-access.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/account-gh-bb-access.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/account-gh-bb-access.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/activity-monitor-location.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/activity-monitor-location.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/activity-monitor-location.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/activity-monitor-location.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/activity-monitor-quotas.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/activity-monitor-quotas.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/activity-monitor-quotas.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/activity-monitor-quotas.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/activity-monitor-workflows.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/activity-monitor-workflows.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/activity-monitor-workflows.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/activity-monitor-workflows.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/add-block.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/add-block.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/add-block.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/add-block.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/add-group-to-project.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/add-group-to-project.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/add-group-to-project.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/add-group-to-project.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/add-group.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/add-group.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/add-group.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/add-group.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/add-job-to-block.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/add-job-to-block.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/add-job-to-block.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/add-job-to-block.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/optimization/img/add-metric.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/add-metric.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/optimization/img/add-metric.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/add-metric.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/add-oidc-role.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/add-oidc-role.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/add-oidc-role.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/add-oidc-role.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/add-people-button.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/add-people-button.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/add-people-button.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/add-people-button.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/add-people.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/add-people.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/add-people.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/add-people.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/add-user-2.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/add-user-2.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/add-user-2.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/add-user-2.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/add-user.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/add-user.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/add-user.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/add-user.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/after-pipeline.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/after-pipeline.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/after-pipeline.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/after-pipeline.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/agent-docker.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/agent-docker.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/agent-docker.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/agent-docker.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/agent-settings.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/agent-settings.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/agent-settings.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/agent-settings.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/agent.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/agent.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/agent.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/agent.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/anygit-1.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/anygit-1.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/anygit-1.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/anygit-1.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/anygit-check-repository.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/anygit-check-repository.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/anygit-check-repository.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/anygit-check-repository.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/anygit2.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/anygit2.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/anygit2.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/anygit2.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/anygit3.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/anygit3.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/anygit3.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/anygit3.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/anygit4.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/anygit4.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/anygit4.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/anygit4.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/anygit5.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/anygit5.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/anygit5.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/anygit5.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/anygit6.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/anygit6.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/anygit6.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/anygit6.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/app-general-settings.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/app-general-settings.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/app-general-settings.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/app-general-settings.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/application-configured.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/application-configured.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/application-configured.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/application-configured.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/artifact-view.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/artifact-view.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/artifact-view.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/artifact-view.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/assign-button.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/assign-button.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/assign-button.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/assign-button.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/assign-people.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/assign-people.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/assign-people.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/assign-people.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/audit-export-csv.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/audit-export-csv.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/audit-export-csv.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/audit-export-csv.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/audit-log-location.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/audit-log-location.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/audit-log-location.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/audit-log-location.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/audit-log-streaming.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/audit-log-streaming.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/audit-log-streaming.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/audit-log-streaming.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/audit-logs-example.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/audit-logs-example.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/audit-logs-example.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/audit-logs-example.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/authorize-gh.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/authorize-gh.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/authorize-gh.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/authorize-gh.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/auto-cancel.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/auto-cancel.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/auto-cancel.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/auto-cancel.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/aws-identity-provider.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/aws-identity-provider.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/aws-identity-provider.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/aws-identity-provider.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/blocks-and-jobs.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/blocks-and-jobs.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/blocks-and-jobs.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/blocks-and-jobs.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/change-condition-promotion copy.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/change-condition-promotion copy.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/change-condition-promotion copy.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/change-condition-promotion copy.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/change-condition-promotion.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/change-condition-promotion.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/change-condition-promotion.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/change-condition-promotion.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/change-conditions-first copy.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/change-conditions-first copy.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/change-conditions-first copy.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/change-conditions-first copy.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/change-conditions-first.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/change-conditions-first.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/change-conditions-first.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/change-conditions-first.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/change-conditions.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/change-conditions.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/change-conditions.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/change-conditions.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/change-project-owner.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/change-project-owner.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/change-project-owner.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/change-project-owner.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/change-role.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/change-role.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/change-role.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/change-role.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/change-roles.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/change-roles.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/change-roles.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/change-roles.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/change-skip-vs-run copy.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/change-skip-vs-run copy.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/change-skip-vs-run copy.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/change-skip-vs-run copy.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/optimization/img/change-skip-vs-run.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/change-skip-vs-run.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/optimization/img/change-skip-vs-run.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/change-skip-vs-run.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/checkout.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/checkout.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/checkout.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/checkout.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/ci-failed1.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/ci-failed1.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/ci-failed1.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/ci-failed1.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/ci-passed1.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/ci-passed1.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/ci-passed1.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/ci-passed1.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/ci-running1.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/ci-running1.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/ci-running1.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/ci-running1.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/conditions.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/conditions.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/conditions.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/conditions.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/configure-saml.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/configure-saml.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/configure-saml.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/configure-saml.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/connect-gh-bb.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/connect-gh-bb.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/connect-gh-bb.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/connect-gh-bb.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/connect-git.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/connect-git.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/connect-git.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/connect-git.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/connect-github-app-project.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/connect-github-app-project.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/connect-github-app-project.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/connect-github-app-project.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/create-a-job-1.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/create-a-job-1.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/create-a-job-1.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/create-a-job-1.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/create-app-integration.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/create-app-integration.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/create-app-integration.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/create-app-integration.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/create-custom-project-role.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/create-custom-project-role.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/create-custom-project-role.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/create-custom-project-role.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/create-new-project-location.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/create-new-project-location.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/create-new-project-location.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/create-new-project-location.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/create-project-1.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/create-project-1.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/create-project-1.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/create-project-1.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/create-project-2.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/create-project-2.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/create-project-2.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/create-project-2.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/create-project-3.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/create-project-3.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/create-project-3.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/create-project-3.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/create-project-4.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/create-project-4.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/create-project-4.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/create-project-4.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/create-project-existing-configuration.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/create-project-existing-configuration.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/create-project-existing-configuration.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/create-project-existing-configuration.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/optimization/img/custom-create.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/custom-create.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/optimization/img/custom-create.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/custom-create.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/deactivate-task.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/deactivate-task.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/deactivate-task.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/deactivate-task.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/default-queues.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/default-queues.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/default-queues.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/default-queues.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/define-default-agent.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/define-default-agent.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/define-default-agent.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/define-default-agent.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/delete-block.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/delete-block.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/delete-block.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/delete-block.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/delete-job.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/delete-job.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/delete-job.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/delete-job.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/delete-task.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/delete-task.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/delete-task.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/delete-task.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/deploy-key-bb.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/deploy-key-bb.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/deploy-key-bb.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/deploy-key-bb.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/deploy-key.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/deploy-key.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/deploy-key.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/deploy-key.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/deployment-history-1.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/deployment-history-1.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/deployment-history-1.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/deployment-history-1.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/deployment-history-2.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/deployment-history-2.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/deployment-history-2.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/deployment-history-2.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/deployment-history-3.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/deployment-history-3.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/deployment-history-3.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/deployment-history-3.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/deployment-target-1.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/deployment-target-1.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/deployment-target-1.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/deployment-target-1.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/deployment-target-2.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/deployment-target-2.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/deployment-target-2.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/deployment-target-2.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/deployment-target-3.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/deployment-target-3.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/deployment-target-3.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/deployment-target-3.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/deployment-target-4.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/deployment-target-4.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/deployment-target-4.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/deployment-target-4.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/deployment-target-create.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/deployment-target-create.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/deployment-target-create.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/deployment-target-create.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/deployment-target-created.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/deployment-target-created.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/deployment-target-created.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/deployment-target-created.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/deployment-target-done.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/deployment-target-done.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/deployment-target-done.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/deployment-target-done.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/deployments-ready-targets.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/deployments-ready-targets.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/deployments-ready-targets.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/deployments-ready-targets.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/dockerhub-secret.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/dockerhub-secret.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/dockerhub-secret.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/dockerhub-secret.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/edit-button-people.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/edit-button-people.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/edit-button-people.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/edit-button-people.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/edit-workflow.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/edit-workflow.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/edit-workflow.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/edit-workflow.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/enable-provisioning.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/enable-provisioning.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/enable-provisioning.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/enable-provisioning.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/env-vars.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/env-vars.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/env-vars.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/env-vars.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/epilogue.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/epilogue.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/epilogue.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/epilogue.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/example-job.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/example-job.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/example-job.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/example-job.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/example-pipeline.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/example-pipeline.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/example-pipeline.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/example-pipeline.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/execution-limit.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/execution-limit.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/execution-limit.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/execution-limit.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/execution-time-limit.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/execution-time-limit.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/execution-time-limit.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/execution-time-limit.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/fail-fast.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/fail-fast.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/fail-fast.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/fail-fast.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/failed-job-log.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/failed-job-log.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/failed-job-log.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/failed-job-log.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/feedback.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/feedback.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/feedback.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/feedback.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/find-project.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/find-project.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/find-project.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/find-project.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/optimization/img/freq-cd.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/freq-cd.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/optimization/img/freq-cd.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/freq-cd.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/optimization/img/freq-ci.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/freq-ci.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/optimization/img/freq-ci.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/freq-ci.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/gcr-pull-secret.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/gcr-pull-secret.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/gcr-pull-secret.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/gcr-pull-secret.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/git-integrations.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/git-integrations.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/git-integrations.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/git-integrations.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/github-app-give-access.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/github-app-give-access.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/github-app-give-access.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/github-app-give-access.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/github-app.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/github-app.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/github-app.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/github-app.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/github-connect-button.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/github-connect-button.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/github-connect-button.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/github-connect-button.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/github-handle.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/github-handle.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/github-handle.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/github-handle.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/global-job-duration.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/global-job-duration.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/global-job-duration.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/global-job-duration.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/grant-bb.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/grant-bb.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/grant-bb.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/grant-bb.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/group-role.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/group-role.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/group-role.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/group-role.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/init-log-example.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/init-log-example.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/init-log-example.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/init-log-example.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/init-log.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/init-log.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/init-log.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/init-log.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/optimization/img/insights-settings.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/insights-settings.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/optimization/img/insights-settings.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/insights-settings.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/optimization/img/insights-tab.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/insights-tab.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/optimization/img/insights-tab.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/insights-tab.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/install-ghapp.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/install-ghapp.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/install-ghapp.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/install-ghapp.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/job-artifact-diagram.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/job-artifact-diagram.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/job-artifact-diagram.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/job-artifact-diagram.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/job-artifacts.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/job-artifacts.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/job-artifacts.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/job-artifacts.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/job-id-debug.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/job-id-debug.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/job-id-debug.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/job-id-debug.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/job-id-url.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/job-id-url.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/job-id-url.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/job-id-url.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/job-lifecycle.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/job-lifecycle.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/job-lifecycle.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/job-lifecycle.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/job-log.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/job-log.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/job-log.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/job-log.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/job-matrix.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/job-matrix.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/job-matrix.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/job-matrix.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/job-parallelism-4.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/job-parallelism-4.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/job-parallelism-4.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/job-parallelism-4.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/jobs-parallel.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/jobs-parallel.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/jobs-parallel.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/jobs-parallel.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/mermaid-get-job-requests.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/mermaid-get-job-requests.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/mermaid-get-job-requests.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/mermaid-get-job-requests.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/mermaid-register-agent.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/mermaid-register-agent.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/mermaid-register-agent.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/mermaid-register-agent.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/mermaid-self-hosted-state.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/mermaid-self-hosted-state.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/mermaid-self-hosted-state.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/mermaid-self-hosted-state.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/named-queues.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/named-queues.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/named-queues.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/named-queues.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/optimization/img/new-metric.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/new-metric.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/optimization/img/new-metric.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/new-metric.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/notifications-setup-1.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/notifications-setup-1.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/notifications-setup-1.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/notifications-setup-1.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/notifications-setup-2.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/notifications-setup-2.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/notifications-setup-2.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/notifications-setup-2.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/notifications-setup-3.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/notifications-setup-3.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/notifications-setup-3.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/notifications-setup-3.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/oauth-permissions.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/oauth-permissions.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/oauth-permissions.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/oauth-permissions.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/oauth-personal-token.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/oauth-personal-token.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/oauth-personal-token.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/oauth-personal-token.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/okta-application.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/okta-application.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/okta-application.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/okta-application.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/okta-application1.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/okta-application1.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/okta-application1.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/okta-application1.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/okta-edit-general-settings.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/okta-edit-general-settings.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/okta-edit-general-settings.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/okta-edit-general-settings.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/okta-edit-provisioning.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/okta-edit-provisioning.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/okta-edit-provisioning.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/okta-edit-provisioning.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/okta-users.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/okta-users.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/okta-users.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/okta-users.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/one-block.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/one-block.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/one-block.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/one-block.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/org-admin-roles.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/org-admin-roles.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/org-admin-roles.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/org-admin-roles.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/optimization/img/org-health-location.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/org-health-location.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/optimization/img/org-health-location.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/org-health-location.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/optimization/img/org-health-overview.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/org-health-overview.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/optimization/img/org-health-overview.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/org-health-overview.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/org-preflight-screen.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/org-preflight-screen.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/org-preflight-screen.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/org-preflight-screen.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/org-role-create-custom.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/org-role-create-custom.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/org-role-create-custom.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/org-role-create-custom.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/org-settings-location.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/org-settings-location.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/org-settings-location.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/org-settings-location.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/organization-menu-settings.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/organization-menu-settings.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/organization-menu-settings.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/organization-menu-settings.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/organization-menu.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/organization-menu.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/organization-menu.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/organization-menu.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/organization-secrets-menu.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/organization-secrets-menu.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/organization-secrets-menu.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/organization-secrets-menu.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/organization-settings-general.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/organization-settings-general.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/organization-settings-general.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/organization-settings-general.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/organization-settings-initialization.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/organization-settings-initialization.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/organization-settings-initialization.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/organization-settings-initialization.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/organization-settings-initialization.jpg.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/organization-settings-initialization.jpg.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/organization-settings-initialization.jpg.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/organization-settings-initialization.jpg.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/organization-settings-secrets.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/organization-settings-secrets.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/organization-settings-secrets.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/organization-settings-secrets.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/override-project-init-agent.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/override-project-init-agent.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/override-project-init-agent.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/override-project-init-agent.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/parameter-1.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/parameter-1.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/parameter-1.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/parameter-1.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/parameter-2.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/parameter-2.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/parameter-2.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/parameter-2.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/parameters-jobs.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/parameters-jobs.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/parameters-jobs.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/parameters-jobs.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/pause-project.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/pause-project.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/pause-project.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/pause-project.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/people-tab.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/people-tab.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/people-tab.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/people-tab.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/optimization/img/perf-cd.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/perf-cd.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/optimization/img/perf-cd.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/perf-cd.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/optimization/img/perf-ci.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/perf-ci.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/optimization/img/perf-ci.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/perf-ci.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/pipeline-block-job.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/pipeline-block-job.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/pipeline-block-job.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/pipeline-block-job.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/pipeline-blocks-promotions.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/pipeline-blocks-promotions.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/pipeline-blocks-promotions.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/pipeline-blocks-promotions.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/pipeline-epilogue.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/pipeline-epilogue.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/pipeline-epilogue.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/pipeline-epilogue.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/pipeline-execution-order.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/pipeline-execution-order.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/pipeline-execution-order.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/pipeline-execution-order.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/pipeline-parameter-expansion.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/pipeline-parameter-expansion.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/pipeline-parameter-expansion.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/pipeline-parameter-expansion.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/pipeline-prologue.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/pipeline-prologue.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/pipeline-prologue.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/pipeline-prologue.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/pipeline-settings.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/pipeline-settings.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/pipeline-settings.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/pipeline-settings.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/pr-passed.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/pr-passed.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/pr-passed.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/pr-passed.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/profile-git-connect.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/profile-git-connect.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/profile-git-connect.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/profile-git-connect.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/profile-settings.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/profile-settings.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/profile-settings.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/profile-settings.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/project-activity.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/project-activity.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/project-activity.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/project-activity.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/project-admin-roles.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/project-admin-roles.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/project-admin-roles.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/project-admin-roles.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/project-artifact-diagram.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/project-artifact-diagram.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/project-artifact-diagram.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/project-artifact-diagram.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/project-badges.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/project-badges.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/project-badges.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/project-badges.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/project-created.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/project-created.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/project-created.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/project-created.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/project-custom-roles1.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/project-custom-roles1.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/project-custom-roles1.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/project-custom-roles1.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/project-general-settings-1.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/project-general-settings-1.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/project-general-settings-1.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/project-general-settings-1.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/project-general-settings-2.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/project-general-settings-2.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/project-general-settings-2.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/project-general-settings-2.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/project-general-settings-3.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/project-general-settings-3.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/project-general-settings-3.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/project-general-settings-3.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/project-preflight.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/project-preflight.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/project-preflight.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/project-preflight.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/project-regenerate-deployment.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/project-regenerate-deployment.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/project-regenerate-deployment.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/project-regenerate-deployment.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/project-secrets-1.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/project-secrets-1.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/project-secrets-1.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/project-secrets-1.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/project-settings-reop.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/project-settings-reop.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/project-settings-reop.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/project-settings-reop.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/project-settings.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/project-settings.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/project-settings.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/project-settings.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/project-tabs.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/project-tabs.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/project-tabs.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/project-tabs.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/prologue.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/prologue.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/prologue.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/prologue.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/promote-on-tag.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/promote-on-tag.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/promote-on-tag.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/promote-on-tag.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/promotion-add-manual.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/promotion-add-manual.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/promotion-add-manual.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/promotion-add-manual.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/promotion-auto.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/promotion-auto.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/promotion-auto.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/promotion-auto.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/promotion-delete.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/promotion-delete.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/promotion-delete.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/promotion-delete.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/promotion-freeform.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/promotion-freeform.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/promotion-freeform.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/promotion-freeform.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/promotion-locked.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/promotion-locked.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/promotion-locked.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/promotion-locked.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/promotion-options.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/promotion-options.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/promotion-options.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/promotion-options.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/promotion-target.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/promotion-target.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/promotion-target.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/promotion-target.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/promotion-unlocked.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/promotion-unlocked.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/promotion-unlocked.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/promotion-unlocked.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/promotions-parameters.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/promotions-parameters.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/promotions-parameters.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/promotions-parameters.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/rbac-diagram.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/rbac-diagram.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/rbac-diagram.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/rbac-diagram.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/register-agent-type.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/register-agent-type.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/register-agent-type.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/register-agent-type.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/optimization/img/rel-cd.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/rel-cd.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/optimization/img/rel-cd.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/rel-cd.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/optimization/img/rel-ci.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/rel-ci.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/optimization/img/rel-ci.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/rel-ci.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/remove-user.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/remove-user.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/remove-user.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/remove-user.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/repository-url-bb.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/repository-url-bb.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/repository-url-bb.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/repository-url-bb.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/repository-url.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/repository-url.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/repository-url.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/repository-url.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/retention-job.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/retention-job.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/retention-job.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/retention-job.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/retention-project.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/retention-project.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/retention-project.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/retention-project.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/retention-workflow.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/retention-workflow.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/retention-workflow.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/retention-workflow.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/revoke-bb.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/revoke-bb.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/revoke-bb.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/revoke-bb.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/run-and-start.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/run-and-start.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/run-and-start.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/run-and-start.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/saml-values.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/saml-values.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/saml-values.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/saml-values.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/save-secret.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/save-secret.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/save-secret.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/save-secret.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/scim-enable.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/scim-enable.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/scim-enable.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/scim-enable.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/secret-add.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/secret-add.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/secret-add.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/secret-add.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/secret-projects-create.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/secret-projects-create.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/secret-projects-create.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/secret-projects-create.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/secret-settings-projects.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/secret-settings-projects.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/secret-settings-projects.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/secret-settings-projects.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/secrets-access-policy.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/secrets-access-policy.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/secrets-access-policy.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/secrets-access-policy.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/secrets.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/secrets.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/secrets.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/secrets.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/optimization/img/select-date-range.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/select-date-range.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/optimization/img/select-date-range.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/select-date-range.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/select-saml2.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/select-saml2.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/select-saml2.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/select-saml2.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/self-hosted-agent-connected.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/self-hosted-agent-connected.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/self-hosted-agent-connected.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/self-hosted-agent-connected.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/self-hosted-agent-install.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/self-hosted-agent-install.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/self-hosted-agent-install.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/self-hosted-agent-install.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/self-hosted-aws-stack.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/self-hosted-aws-stack.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/self-hosted-aws-stack.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/self-hosted-aws-stack.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/self-hosted-overview.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/self-hosted-overview.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/self-hosted-overview.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/self-hosted-overview.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/self-hosted-state-chart.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/self-hosted-state-chart.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/self-hosted-state-chart.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/self-hosted-state-chart.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/self-hosted-sts.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/self-hosted-sts.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/self-hosted-sts.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/self-hosted-sts.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/sem-debug.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/sem-debug.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/sem-debug.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/sem-debug.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/semaphore-logo.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/semaphore-logo.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/semaphore-logo.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/semaphore-logo.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/semaphore-okta-app.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/semaphore-okta-app.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/semaphore-okta-app.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/semaphore-okta-app.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/semaphore.svg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/semaphore.svg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/semaphore.svg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/semaphore.svg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/server-menu.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/server-menu.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/server-menu.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/server-menu.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/settings-menu-ce.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/settings-menu-ce.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/settings-menu-ce.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/settings-menu-ce.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/settings-roles.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/settings-roles.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/settings-roles.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/settings-roles.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/setup-instructions.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/setup-instructions.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/setup-instructions.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/setup-instructions.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/setup-okta-values.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/setup-okta-values.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/setup-okta-values.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/setup-okta-values.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/setup-okta.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/setup-okta.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/setup-okta.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/setup-okta.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/shields.svg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/shields.svg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/shields.svg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/shields.svg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/single-job-workflow.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/single-job-workflow.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/single-job-workflow.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/single-job-workflow.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/spending-overview.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/spending-overview.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/spending-overview.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/spending-overview.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/ssh-debug-session.png b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/ssh-debug-session.png similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/ssh-debug-session.png rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/ssh-debug-session.png diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/switch-ghapp.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/switch-ghapp.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/switch-ghapp.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/switch-ghapp.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/task-create-1.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/task-create-1.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/task-create-1.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/task-create-1.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/task-create-2.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/task-create-2.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/task-create-2.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/task-create-2.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/task-create-3.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/task-create-3.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/task-create-3.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/task-create-3.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/task-create-4.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/task-create-4.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/task-create-4.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/task-create-4.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/task-create.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/task-create.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/task-create.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/task-create.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/task-run.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/task-run.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/task-run.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/task-run.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/task-view.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/task-view.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/task-view.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/task-view.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/temp-password.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/temp-password.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/temp-password.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/temp-password.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/test-connection.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/test-connection.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/test-connection.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/test-connection.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/token.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/token.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/token.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/token.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/use-self-hosted-agent.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/use-self-hosted-agent.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/use-self-hosted-agent.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/use-self-hosted-agent.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/user-provisioning.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/user-provisioning.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/user-provisioning.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/user-provisioning.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/view-job-artifacts.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/view-job-artifacts.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/view-job-artifacts.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/view-job-artifacts.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/view-project-artifacts.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/view-project-artifacts.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/view-project-artifacts.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/view-project-artifacts.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/view-task.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/view-task.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/view-task.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/view-task.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/view-workflow-artifacts.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/view-workflow-artifacts.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/view-workflow-artifacts.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/view-workflow-artifacts.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/webhook-bb.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/webhook-bb.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/webhook-bb.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/webhook-bb.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/webhook.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/webhook.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/webhook.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/webhook.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/workflow-artifact-diagram.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/workflow-artifact-diagram.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/workflow-artifact-diagram.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/workflow-artifact-diagram.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/workflow-editor.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/workflow-editor.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/workflow-editor.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/workflow-editor.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/workflow-monorepo copy.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/workflow-monorepo copy.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/workflow-monorepo copy.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/workflow-monorepo copy.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/workflow-monorepo.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/workflow-monorepo.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/workflow-monorepo.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/workflow-monorepo.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/workflow-types.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/workflow-types.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/workflow-types.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/workflow-types.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/workflows.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/workflows.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/workflows.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/workflows.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/workflows1.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/workflows1.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/workflows1.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/workflows1.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/img/yaml-path.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/img/yaml-path.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/img/yaml-path.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/img/yaml-path.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/insights.md b/docs/versioned_docs/version-CE-1.3/using-semaphore/insights.md similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/insights.md rename to docs/versioned_docs/version-CE-1.3/using-semaphore/insights.md diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/jobs.md b/docs/versioned_docs/version-CE-1.3/using-semaphore/jobs.md similarity index 99% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/jobs.md rename to docs/versioned_docs/version-CE-1.3/using-semaphore/jobs.md index 6a18565cd..981abe274 100644 --- a/docs/versioned_docs/version-CE-1.1/using-semaphore/jobs.md +++ b/docs/versioned_docs/version-CE-1.3/using-semaphore/jobs.md @@ -1074,7 +1074,7 @@ To use a job matrix, follow these steps: -The following example runs a 2 x 3 matrix with variables `NODE_VER` and `PKG_MNGR`. Semaphore expands the job into 6 parametererized jobs: +The following example runs a 2 x 3 matrix with variables `NODE_VER` and `PKG_MNGR`. Semaphore expands the job into 6 parameterized jobs: ```yaml version: v1.0 diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/monorepo.md b/docs/versioned_docs/version-CE-1.3/using-semaphore/monorepo.md similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/monorepo.md rename to docs/versioned_docs/version-CE-1.3/using-semaphore/monorepo.md diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/notifications.md b/docs/versioned_docs/version-CE-1.3/using-semaphore/notifications.md similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/notifications.md rename to docs/versioned_docs/version-CE-1.3/using-semaphore/notifications.md diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/observability.md b/docs/versioned_docs/version-CE-1.3/using-semaphore/observability.md similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/observability.md rename to docs/versioned_docs/version-CE-1.3/using-semaphore/observability.md diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/okta.md b/docs/versioned_docs/version-CE-1.3/using-semaphore/okta.md similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/okta.md rename to docs/versioned_docs/version-CE-1.3/using-semaphore/okta.md diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/openid.md b/docs/versioned_docs/version-CE-1.3/using-semaphore/openid.md similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/openid.md rename to docs/versioned_docs/version-CE-1.3/using-semaphore/openid.md diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/org-health.md b/docs/versioned_docs/version-CE-1.3/using-semaphore/org-health.md similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/org-health.md rename to docs/versioned_docs/version-CE-1.3/using-semaphore/org-health.md diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/org-preflight.md b/docs/versioned_docs/version-CE-1.3/using-semaphore/org-preflight.md similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/org-preflight.md rename to docs/versioned_docs/version-CE-1.3/using-semaphore/org-preflight.md diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/organizations.md b/docs/versioned_docs/version-CE-1.3/using-semaphore/organizations.md similarity index 97% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/organizations.md rename to docs/versioned_docs/version-CE-1.3/using-semaphore/organizations.md index 5b3f7496a..0db670b9e 100644 --- a/docs/versioned_docs/version-CE-1.2/using-semaphore/organizations.md +++ b/docs/versioned_docs/version-CE-1.3/using-semaphore/organizations.md @@ -35,7 +35,7 @@ To manage users in your Semaphore instance, open the server menu and select **Pe ### How to create users {#add-people} -To create new accounts, go to the poeple option in the server menu and follow these steps: +To create new accounts, go to the people option in the server menu and follow these steps: @@ -59,7 +59,7 @@ To create new accounts, go to the poeple option in the server menu and follow th ### How to change a user role {#role-change} -To change user roles, go to the poeple option in the server menu and follow these steps: +To change user roles, go to the people option in the server menu and follow these steps: @@ -76,7 +76,7 @@ To change user roles, go to the poeple option in the server menu and follow thes ### How to reset a user password {#reset-password} -To reset a user password, go to the poeple option in the server menu and follow these steps: +To reset a user password, go to the people option in the server menu and follow these steps: diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/pipelines.md b/docs/versioned_docs/version-CE-1.3/using-semaphore/pipelines.md similarity index 98% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/pipelines.md rename to docs/versioned_docs/version-CE-1.3/using-semaphore/pipelines.md index c485b942a..e38ffc5da 100644 --- a/docs/versioned_docs/version-CE-1.2/using-semaphore/pipelines.md +++ b/docs/versioned_docs/version-CE-1.3/using-semaphore/pipelines.md @@ -4,7 +4,6 @@ description: Connect blocks to get things done # Pipelines - import Tabs from '@theme/Tabs'; import TabItem from '@theme/TabItem'; import Available from '@site/src/components/Available'; @@ -13,12 +12,11 @@ import Steps from '@site/src/components/Steps'; A pipeline is a group of connected blocks. This page explains what pipelines are, how they organize workflow execution order, and what settings are available. In this page, the terms organization, server, and instance are used interchangeably. - ## Overview {#overview} Pipelines are groups of blocks that can be connected via dependencies to define their execution order. -Pipelines are also the *unit of configuration*. Each pipeline is encoded as separate a YAML file in the `.semaphore` folder. +Pipelines are also the *unit of configuration*. Each pipeline is encoded as separate a YAML file in the `.semaphore` folder. For reference, here is an example pipeline with its respective YAML. @@ -143,7 +141,7 @@ Here you can see the how spc evaluated the pipeline and all the actions taken du ## Pipeline settings {#settings} -Pipeline settings are applied to all its blocks. You can change pipeline settings with the editor or directly in the YAML. +Pipeline settings are applied to all its blocks. You can change pipeline settings with the editor or directly in the YAML. ### Agents {#agents} @@ -168,13 +166,12 @@ To select the agent running your jobs in a pipeline: - 1. Add the `agent` and `machine` keys -2. Add the hardware `type`. The default is `s1-kubernetes`, which is the [self-hosted agent](./self-hosted) built-in in the Sempahore server +2. Add the hardware `type`. The default is `s1-kubernetes`, which is the [self-hosted agent](./self-hosted) built-in in the Semaphore server 3. Leave `os_image` empty -4. Add the `containers` key, this contains a list with keys `name` and `image`. The first container must have `name = main` and the image is the Docker image where the jobs run +4. Add the `containers` key, this contains a list with keys `name` and `image`. The first container must have `name = main` and the image is the Docker image where the jobs run @@ -207,13 +204,13 @@ blocks: :::tip -If you want to build and run Docker images in your jobs, check the [working with Docker page](./optimization/docker). +If you want to build and run Docker images in your jobs, check the [working with Docker page](./containers/docker). ::: Jobs can run inside Docker containers. This allows you to define a custom-build environment with pre-installed tools and dependencies needed for your project. You can enable this setting in the pipeline agent or in the [block agent override](./jobs#agent-override). -You can run multiple containers at the same time. The job runs in the first container (called `main`) and attaches the other containers to the same network. This is similar to how containers inside a Kubernetes pod communicate. +You can run multiple containers at the same time. The job runs in the first container (called `main`) and attaches the other containers to the same network. This is similar to how containers inside a Kubernetes pod communicate. The network addresses of all containers are mapped to their names. Let's say you have two containers, "main" and "mysql", you can connect to the database from main with: @@ -290,7 +287,7 @@ To use images in private repositories see [Private Docker Registries](#docker-pr :::info -Semaphore provides a [public Docker registry](./optimization/container-registry) for popular images. +Semaphore provides a [public Docker registry](./containers/container-registry) for popular images. ::: @@ -396,6 +393,7 @@ blocks: commands: - npm run build ``` + @@ -442,6 +440,7 @@ blocks: commands: - npm run build ``` + @@ -561,10 +560,10 @@ blocks: commands: - npm run build ``` + - ### YAML file path {#yaml-path} This option overrides the location of the pipeline file. This option is not available for the default pipeline (located at `.semaphore/semaphore.yml`). @@ -666,7 +665,6 @@ after_pipeline: - ## Private Docker Registries {#docker-private} If the images you need for your [docker environment](#docker-environments) are not publicly available, you need to provide authentication credentials in your pipeline. This feature is only available by editing the pipeline YAML directly. @@ -734,7 +732,6 @@ To pull images from a private AWS Elastic Container Registry (ECR), follow these ### Images in Google GCR {#docker-gcr} - To pull images from a private Google Container Registry (GCR), follow these steps: @@ -835,7 +832,7 @@ Queues allow you to control the order in which pipelines run. Semaphore pipeline ### Default and named queues {#named-queues} -Semaphore creates a queue for each Git push or pull requests. All workflows sharing the same commit SHA belong in the same queue and run sequentially. +Semaphore creates a queue for each Git push or pull requests. All workflows sharing the same commit SHA belong in the same queue and run sequentially. In other words, every time you re-run a workflow, create a pull request, push a tag, the pipeline is added to the end of the same-commit queue. @@ -960,7 +957,7 @@ blocks: ### Conditional queues {#conditional-queues} -You can use conditional statements to assign pipelines based on parameters like branch name or tag name. +You can use conditional statements to assign pipelines based on parameters like branch name or tag name. The following example uses three rules: @@ -1045,7 +1042,6 @@ To change the global time limit for all jobs in a pipeline, follow these steps: - 1. Open the pipeline YAML diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/projects.md b/docs/versioned_docs/version-CE-1.3/using-semaphore/projects.md similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/projects.md rename to docs/versioned_docs/version-CE-1.3/using-semaphore/projects.md diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/promotions.md b/docs/versioned_docs/version-CE-1.3/using-semaphore/promotions.md similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/promotions.md rename to docs/versioned_docs/version-CE-1.3/using-semaphore/promotions.md diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/rbac.md b/docs/versioned_docs/version-CE-1.3/using-semaphore/rbac.md similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/rbac.md rename to docs/versioned_docs/version-CE-1.3/using-semaphore/rbac.md diff --git a/docs/versioned_docs/version-CE-1.3/using-semaphore/recipes/img/infracost-key-secret.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/recipes/img/infracost-key-secret.jpg new file mode 100644 index 000000000..f825c51b3 Binary files /dev/null and b/docs/versioned_docs/version-CE-1.3/using-semaphore/recipes/img/infracost-key-secret.jpg differ diff --git a/docs/versioned_docs/version-CE-1.3/using-semaphore/recipes/img/infracost-secret.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/recipes/img/infracost-secret.jpg new file mode 100644 index 000000000..38bdd2c80 Binary files /dev/null and b/docs/versioned_docs/version-CE-1.3/using-semaphore/recipes/img/infracost-secret.jpg differ diff --git a/docs/versioned_docs/version-CE-1.3/using-semaphore/recipes/infracost.md b/docs/versioned_docs/version-CE-1.3/using-semaphore/recipes/infracost.md new file mode 100644 index 000000000..ed8c227ec --- /dev/null +++ b/docs/versioned_docs/version-CE-1.3/using-semaphore/recipes/infracost.md @@ -0,0 +1,195 @@ +--- +description: Implement FinOps in your pipeline with Infracost +sidebar_position: 1 +--- + +# Infracost FinOps + +The Infracost CLI tool parses Terraform files and estimates costs for your infrastructure. + +## Overview + +This guide will show you how to: + +- Run the Infracost CLI in Semaphore +- Comment Git commits with cost deltas +- Comment pull requests with cost deltas +- Fail the CI pipeline if costs exceed a custom-defined policy + +## Prerequisites + +For this guide, you will need the following: + +- [A working Semaphore project](../projects) with a CI pipeline +- At least one [Terraform](https://developer.hashicorp.com/terraform) file in your project +- An [Infracost](https://www.infracost.io/) API key. You must sign up with a free account to obtain it +- A GitHub, Bitbucket, or GitLab API key with permission to write comments in the repository + +## Adding a baseline to the repository + +In order to estimate deviations from the expected cost, you must store a baseline file in your repository. The following command will generate `baseline.json` based on all the Terraform files found in your project folder: + +```shell +infracost breakdown --path . --format json --out-file baseline.json +``` + +Now you can push `baseline.json` into your repository. + +## Storing the API keys in secrets + +Follow the [Infracost getting started guide](https://www.infracost.io/docs/) to install the CLI tool on your machine and obtain an API key. Create a [secret](../secrets) in Semaphore to store it: + +![Infracost API key secret](./img/infracost-key-secret.jpg) + +Create a token for your Git provider: + +- **GitHub**: [create a token](https://github.com/settings/tokens) with write permissions on your repository +- **BitBucket**: [create an app password](https://support.atlassian.com/bitbucket-cloud/docs/app-passwords/) with write permissions +- **GitLab**: [create an access token](https://docs.gitlab.com/user/profile/personal_access_tokens/) with `write_repository` permissions + +Store the access token in Semaphore: + +![GitHub Token Secret](./img/infracost-secret.jpg) + +## Adding cost estimates to commits + +When Infracost runs in your CI/CD workflow, it can post comments in commits and pull requests with the estimated cost difference from the baseline or between branches. + +### Estimates on GitHub + +Before you can calculate cost differences in commits or peer reviews, you need to establish a baseline. If you have any usage-based resources such as serverless functions, you need to first create an [usage file](https://www.infracost.io/docs/features/usage_based_resources/). + +```shell +infracost breakdown --sync-usage-file --usage-file usage.yml --path . +``` + +Now, edit `usage.yml` to add your usage estimates for the moth. + +Next, you're ready to create a baseline file. Skip `--usage-file` if you're not using any usage-based cloud resources: + +```shell +infracost breakdown --path . --format json --usage-file usage.yml --out-file baseline.json +``` + +After checking in all the new files into the repository, edit the pipeline to run the cost analysis. Use the following commands in your CI job to post a comment on GitHub with the cost delta between the current commit and the baseline: + +```shell +curl -fsSL https://raw.githubusercontent.com/infracost/infracost/master/scripts/install.sh | sh +checkout +infracost diff --path . --format json --compare-to baseline.json --out-file /tmp/infracost-diff-commit.json +infracost comment github --path=/tmp/infracost-diff-commit.json --repo=$SEMAPHORE_GIT_REPO_SLUG --commit=$SEMAPHORE_GIT_SHA --github-token=$GITHUB_TOKEN --behavior=update +``` + +### Commenting on BitBucket + +Use the following command in a job to comment on BitBucket the difference in cost between the current commit and the baseline: + +```shell +curl -fsSL https://raw.githubusercontent.com/infracost/infracost/master/scripts/install.sh | sh +checkout +infracost diff --path . --format json --compare-to baseline.json --out-file /tmp/infracost-diff-commit.json +infracost comment bitbucket --path=/tmp/infracost-diff-commit.json --repo=$SEMAPHORE_GIT_REPO_SLUG --commit=$SEMAPHORE_GIT_SHA --bitbucket-token=$BITBUCKET_TOKEN --behavior=update +``` + +### Commenting on GitLab + +Use the following command in a job to comment on GitLab the difference in cost between the current commit and the baseline: + +```shell +curl -fsSL https://raw.githubusercontent.com/infracost/infracost/master/scripts/install.sh | sh +checkout +infracost diff --path . --format json --compare-to baseline.json --out-file /tmp/infracost-diff-commit.json +infracost comment gitlab --path=/tmp/infracost-diff-commit.json --repo=$SEMAPHORE_GIT_REPO_SLUG --commit=$SEMAPHORE_GIT_SHA --gitlab-token=$GITLAB_TOKEN --behavior=update +``` + +## Adding cost estimate to pull requests + +A separate job can also be created to post comment on pull requests. This allows the reviewer to quickly assess the cost changes between branches. + +### Estimates on GitHub + +The following example calculates the cost change between the master and the branch that triggered the workflow in GitHub: + +```shell +curl -fsSL https://raw.githubusercontent.com/infracost/infracost/master/scripts/install.sh | sh +checkout +git checkout master +infracost breakdown --path . --format json --out-file /tmp/infracost-master.json +git checkout FETCH_HEAD +infracost diff --path . --format json --compare-to /tmp/infracost-master.json --out-file /tmp/infracost-diff-master.json +infracost comment github --path=/tmp/infracost-diff-master.json --repo=$SEMAPHORE_GIT_REPO_SLUG --pull-request=$SEMAPHORE_GIT_PR_NUMBER --github-token=$GITHUB_TOKEN --behavior=update +``` + +### Estimates on BitBucket + +The following example calculates the cost change between the master and the branch that triggered the workflow in BitBucket: + +```shell +curl -fsSL https://raw.githubusercontent.com/infracost/infracost/master/scripts/install.sh | sh +checkout +git checkout master +infracost breakdown --path . --format json --out-file /tmp/infracost-master.json +git checkout FETCH_HEAD +infracost diff --path . --format json --compare-to /tmp/infracost-master.json --out-file /tmp/infracost-diff-master.json +infracost comment bitbucket --path=/tmp/infracost-diff-master.json --repo=$SEMAPHORE_GIT_REPO_SLUG --pull-request=$SEMAPHORE_GIT_PR_NUMBER --bitbucket-token=$BITBUCKET_TOKEN --behavior=update +``` + +### Estimates on GitLab + +The following example calculates the cost change between the master and the branch that triggered the workflow in GitLab: + +```shell +curl -fsSL https://raw.githubusercontent.com/infracost/infracost/master/scripts/install.sh | sh +checkout +git checkout master +infracost breakdown --path . --format json --out-file /tmp/infracost-master.json +git checkout FETCH_HEAD +infracost diff --path . --format json --compare-to /tmp/infracost-master.json --out-file /tmp/infracost-diff-master.json +infracost comment gitlab --path=/tmp/infracost-diff-master.json --repo=$SEMAPHORE_GIT_REPO_SLUG --pull-request=$SEMAPHORE_GIT_PR_NUMBER --gitlab-token=$GITLAB_TOKEN --behavior=update +``` + +## Enforcing policies + +Infracost can be used to enforce cost policies with continuous integration. When a policy is used, the Infracost CLI will return a non-zero exit status, stopping the pipeline and preventing a deployment that would run over the budget. + +First, we must create a policy file and push it into the repository. To learn about the policy syntax, read the [cost policies docs](https://www.infracost.io/docs/features/cost_policies/) on Infracost. + +The following example sets a maximum budget of USD 1000 per month: + +```rego +# policy.rego + +package infracost + +deny[out] { + + # define a variable + maxMonthlyCost = 1000.0 + + msg := sprintf( + "Total monthly cost must be less than $%.2f (actual cost is $%.2f)", + [maxMonthlyCost, to_number(input.totalMonthlyCost)], + ) + + out := { + "msg": msg, + "failed": to_number(input.totalMonthlyCost) >= maxMonthlyCost + } +} +``` + +To evaluate the policy file, you must add the `--policy-path POLICY_FILENAME` option to any of the comment commands. For example: + +```shell +# calculate difference between commit and baseline +infracost diff --path . --format json --compare-to baseline.json --out-file /tmp/infracost-diff-commit.json + +# enforce policy +infracost comment github --path=/tmp/infracost-diff-commit.json --repo=$SEMAPHORE_GIT_REPO_SLUG --commit=$SEMAPHORE_GIT_SHA --github-token=$GITHUB_API_KEY --behavior=update +``` + +## Tips for using Infracost + +- You can use [monorepo conditions](../monorepo) like `change_in('/**/*.tf')` or `change_in('/**/*.tfvars')` to run Infracost only when Terraform files change +- You can create a [config file](https://www.infracost.io/docs/features/config_file/) manage [monorepo workflows](../monorepo) provide utilization forecast for per-usage services such as AWS lambda +- You can add a [badge](https://www.infracost.io/docs/infracost_cloud/readme_badge/) to your repository with the estimated monthly cost diff --git a/docs/versioned_docs/version-CE-1.3/using-semaphore/recipes/trivy.md b/docs/versioned_docs/version-CE-1.3/using-semaphore/recipes/trivy.md new file mode 100644 index 000000000..af92c3bed --- /dev/null +++ b/docs/versioned_docs/version-CE-1.3/using-semaphore/recipes/trivy.md @@ -0,0 +1,152 @@ +--- +description: Open source security scans in your CI pipelines +sidebar_position: 2 +--- + +# Trivy Vulnerability Scanning + +import Tabs from '@theme/Tabs'; +import TabItem from '@theme/TabItem'; +import Available from '@site/src/components/Available'; +import VideoTutorial from '@site/src/components/VideoTutorial'; +import Steps from '@site/src/components/Steps'; + +This page explains how to run the open source [Trivy security scanner](https://github.com/aquasecurity/trivy) in Semaphore. + +## Overview + +Trivy is a comprehensive security scanner that detects various security issues across different targets. + +It can scan: + +- container images +- software dependencies +- Git repositories +- VM images and OS packages +- Kubernetes environments +- Infrastructure-as-Code (IaC) files +- filesystems for misconfigurations, leaked secrets, and license check + +Trivy works with most programming languages and operating systems. You can check if your stack is supported in the [Trivy scanning coverage page](https://trivy.dev/latest/docs/coverage/). + +## Install Trivy in Semaphore {#install} + +You must install Trivy in the CI environment or use a Docker image with Trivy already installed. + +To install Trivy in your CI environment, follow these steps: + + + +1. Find the [latest Trivy release](https://github.com/aquasecurity/trivy/releases) +2. Install Trivy using the package manager (or build from source) + + ```shell + # replace with the latest release + wget https://github.com/aquasecurity/trivy/releases/download/v0.65.0/trivy_0.65.0_Linux-32bit.deb + sudo dpkg -i trivy_0.65.0_Linux-32bit.deb + ``` + +3. Run Trivy to scan your project. Use the `--exit-code 1` option to exit with error when the scan detects a problem + + For example: + + ```shell + checkout + trivy fs --exit-code 1 . + ``` + + + +You must repeat Step 2 in every job that uses Trivy. Use the [prologue](../pipelines#prologue) if multiple jobs require Trivy. + +## Enabling the cache {#cache} + +Trivy keeps the last scans and vulnerability database in a local folder in the CI environment. You can speed up scanning jobs by caching this directory. + +Trivy stores its database in `$HOME/.cache/trivy` by default, you can change it by specifing the [`--cache-dir`](https://trivy.dev/latest/docs/configuration/cache/) option. To persist this directory, use the [cache](../cache) command. + +The following example runs a [file scan](#files) using the cache: + +```shell +cache restore trivy-db +trivy fs --exit-code 1 . +cache store trivy-db $HOME/.cache/trivy +``` + +You can use this pattern with all types of scanning. + +## Scan Files {#files} + +Trivy filesystem scan finds problems in your local directories. In the CI environment, you must run [`checkout`](../../reference/toolbox#checkout) to clone the repository in the CI machine. + +To run filesystem scan use `trivy fs`. +Filesystem scan can find: + +- vulnerabilies +- misconfigurations +- leaked secrets +- license checks + +### Vulnerabilities and leaked secrets {#vulnerabilities} + +To find vulnerabilities or leaked secrets in your code or dependencies, execute `trivy fs` as follows: + +```shell +checkout +trivy fs --exit-code 1 path/to/src +``` + +### Misconfigurations {#misconfigurations} + +By default, Trivy doesn't try to find misconfigurations, to enable this option, follow this example: + +```shell +checkout +trivy --scanners misconfig --exit-code 1 path/to/src +``` + +### License {#license} + +To perform [license scanning](https://trivy.dev/latest/docs/scanner/license/) execute Trivy as follows: + +```shell +checkout +trivy fs --scanners license --exit-code 1 path/to/src +``` + +## Scan Container images + +To scan your container images, including OS packages, use the following command. You might need to [authenticate with the Docker registry](../containers/docker#auth) first. + +```shell +docker pull IMAGE_NAME:TAG +trivy image --exit-code 1 IMAGE_NAME:TAG +``` + +As with filesystem scans, you can enable [misconfigurations](#misconfigurations) and [license](#license) scans in the container image. + +## Generate SBOM + +Trivy can generate a [Software Bill of Materials (SBOM)](https://trivy.dev/latest/docs/supply-chain/sbom/). + +For example, these command generate the SBOM using the CycloneDX format: + +```shell +checkout +trivy fs --format cyclonedx --output sbom.json path/to/src +artifact push workflow sbom.json +``` + +You can also generate SBOMs for Docker images with: + +```shell +docker pull IMAGE_NAME:TAG +trivy image --format cyclonedx --output sbom.json IMAGE_NAME:TAG +artifact push workflow sbom.json +``` + +## See also + +- [Trivy repository](https://github.com/aquasecurity/trivy) +- [Trivy Documentation](https://trivy.dev/latest/docs/) +- [Continuous Container Vulnerability Testing with Trivy](https://semaphore.io/blog/continuous-container-vulnerability-testing-with-trivy#h-vulnerability-testing-for-dependencies) diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/secrets.md b/docs/versioned_docs/version-CE-1.3/using-semaphore/secrets.md similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/secrets.md rename to docs/versioned_docs/version-CE-1.3/using-semaphore/secrets.md diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/self-hosted-aws.md b/docs/versioned_docs/version-CE-1.3/using-semaphore/self-hosted-aws.md similarity index 99% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/self-hosted-aws.md rename to docs/versioned_docs/version-CE-1.3/using-semaphore/self-hosted-aws.md index 92b95b966..01b0db3f9 100644 --- a/docs/versioned_docs/version-CE-1.1/using-semaphore/self-hosted-aws.md +++ b/docs/versioned_docs/version-CE-1.3/using-semaphore/self-hosted-aws.md @@ -275,7 +275,7 @@ See the [AWS stack parameters reference](../reference/agent-aws-stack) for all t ### Cache -See [setting up S3 cache](./optimization/cache#aws) to learn how to configure cache with AWS S3 buckets. +See [setting up S3 cache](./cache#aws) to learn how to configure cache with AWS S3 buckets. ### Autoscaling {#scale} diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/self-hosted-configure.md b/docs/versioned_docs/version-CE-1.3/using-semaphore/self-hosted-configure.md similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/self-hosted-configure.md rename to docs/versioned_docs/version-CE-1.3/using-semaphore/self-hosted-configure.md diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/self-hosted-install.md b/docs/versioned_docs/version-CE-1.3/using-semaphore/self-hosted-install.md similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/self-hosted-install.md rename to docs/versioned_docs/version-CE-1.3/using-semaphore/self-hosted-install.md diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/self-hosted.md b/docs/versioned_docs/version-CE-1.3/using-semaphore/self-hosted.md similarity index 98% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/self-hosted.md rename to docs/versioned_docs/version-CE-1.3/using-semaphore/self-hosted.md index e8c451233..d30171ad6 100644 --- a/docs/versioned_docs/version-CE-1.2/using-semaphore/self-hosted.md +++ b/docs/versioned_docs/version-CE-1.3/using-semaphore/self-hosted.md @@ -59,7 +59,6 @@ Self-hosted agents use one-way communication to connect with Semaphore. Requests When the agent boots up it sends a register request using a registration token. If the registration succeeds, the agent receives an access token to be used in all future communications and enters the *waiting for job* state. - ```mermaid sequenceDiagram Agent->>+Semaphore: GET /register(registrationToken) @@ -130,7 +129,7 @@ Not all of the [Semaphore toolbox](../reference/toolbox) commands are available | Feature | Available | Notes | |---------------------------------------------|-----------|-------------------------------------------------| -| Using the [cache](../reference/toolbox#cache) | Optional | Using [S3](./optimization/cache#aws), [GCP](./optimization/cache#gcp), or [SFTP](./optimization/cache#sftp) as a storage backend | +| Using the [cache](../reference/toolbox#cache) | Optional | Using [S3](./cache#aws), [GCP](./cache#gcp), or [SFTP](./cache#sftp) as a storage backend | | [Artifact](./artifacts) storage | Yes | | | [Test results](./tests/test-reports) | Yes | | | Checking code with [checkout](../reference/toolbox#checkout) | Yes | | @@ -223,4 +222,3 @@ Keep in mind that: - [How to configure self-hosted agents](./self-hosted-configure) - [How to run an autoscaling fleet of agents in AWS](./self-hosted-aws) - [Self-hosted agents configuration reference](../reference/self-hosted-config) - diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/tasks.md b/docs/versioned_docs/version-CE-1.3/using-semaphore/tasks.md similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/tasks.md rename to docs/versioned_docs/version-CE-1.3/using-semaphore/tasks.md diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/tests/_category_.json b/docs/versioned_docs/version-CE-1.3/using-semaphore/tests/_category_.json similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/tests/_category_.json rename to docs/versioned_docs/version-CE-1.3/using-semaphore/tests/_category_.json diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/tests/flaky-tests.md b/docs/versioned_docs/version-CE-1.3/using-semaphore/tests/flaky-tests.md similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/tests/flaky-tests.md rename to docs/versioned_docs/version-CE-1.3/using-semaphore/tests/flaky-tests.md diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/tests/img/add-label.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/tests/img/add-label.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/tests/img/add-label.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/tests/img/add-label.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/tests/img/build-info.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/tests/img/build-info.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/tests/img/build-info.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/tests/img/build-info.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/tests/img/code-coverage-go.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/tests/img/code-coverage-go.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/tests/img/code-coverage-go.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/tests/img/code-coverage-go.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/tests/img/create-ticket.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/tests/img/create-ticket.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/tests/img/create-ticket.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/tests/img/create-ticket.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/tests/img/creating-filters.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/tests/img/creating-filters.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/tests/img/creating-filters.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/tests/img/creating-filters.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/tests/img/dependencies.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/tests/img/dependencies.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/tests/img/dependencies.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/tests/img/dependencies.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/tests/img/flaky-dashboard-elements.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/tests/img/flaky-dashboard-elements.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/tests/img/flaky-dashboard-elements.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/tests/img/flaky-dashboard-elements.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/tests/img/flaky-test-actions.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/tests/img/flaky-test-actions.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/tests/img/flaky-test-actions.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/tests/img/flaky-test-actions.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/tests/img/flaky-test-detailed-view.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/tests/img/flaky-test-detailed-view.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/tests/img/flaky-test-detailed-view.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/tests/img/flaky-test-detailed-view.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/tests/img/flaky-test-notifications.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/tests/img/flaky-test-notifications.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/tests/img/flaky-test-notifications.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/tests/img/flaky-test-notifications.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/tests/img/flaky-test-tab.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/tests/img/flaky-test-tab.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/tests/img/flaky-test-tab.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/tests/img/flaky-test-tab.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/tests/img/flaky-test-ui-overview.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/tests/img/flaky-test-ui-overview.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/tests/img/flaky-test-ui-overview.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/tests/img/flaky-test-ui-overview.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/tests/img/flaky-tests-charts.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/tests/img/flaky-tests-charts.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/tests/img/flaky-tests-charts.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/tests/img/flaky-tests-charts.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/tests/img/job-report.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/tests/img/job-report.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/tests/img/job-report.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/tests/img/job-report.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/tests/img/markdown-reports-dependencies-example.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/tests/img/markdown-reports-dependencies-example.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/tests/img/markdown-reports-dependencies-example.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/tests/img/markdown-reports-dependencies-example.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/tests/img/resource-metrics.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/tests/img/resource-metrics.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/tests/img/resource-metrics.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/tests/img/resource-metrics.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/tests/img/resource.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/tests/img/resource.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/tests/img/resource.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/tests/img/resource.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/tests/img/test-report-after-pipeline-job.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/tests/img/test-report-after-pipeline-job.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/tests/img/test-report-after-pipeline-job.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/tests/img/test-report-after-pipeline-job.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/tests/img/test-report-publish.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/tests/img/test-report-publish.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/tests/img/test-report-publish.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/tests/img/test-report-publish.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/tests/img/test-reports-display.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/tests/img/test-reports-display.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/tests/img/test-reports-display.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/tests/img/test-reports-display.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/tests/img/test-reports-failed.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/tests/img/test-reports-failed.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/tests/img/test-reports-failed.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/tests/img/test-reports-failed.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/tests/img/test-reports-sort.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/tests/img/test-reports-sort.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/tests/img/test-reports-sort.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/tests/img/test-reports-sort.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/tests/img/test-reports-steps.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/tests/img/test-reports-steps.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/tests/img/test-reports-steps.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/tests/img/test-reports-steps.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/tests/img/test-reports-tab-location.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/tests/img/test-reports-tab-location.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/tests/img/test-reports-tab-location.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/tests/img/test-reports-tab-location.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/tests/img/test-reports-tab.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/tests/img/test-reports-tab.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/tests/img/test-reports-tab.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/tests/img/test-reports-tab.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/tests/img/test-reports-tabs.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/tests/img/test-reports-tabs.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/tests/img/test-reports-tabs.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/tests/img/test-reports-tabs.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/tests/img/timeline.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/tests/img/timeline.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/tests/img/timeline.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/tests/img/timeline.jpg diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/tests/img/workflow-reports.jpg b/docs/versioned_docs/version-CE-1.3/using-semaphore/tests/img/workflow-reports.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/tests/img/workflow-reports.jpg rename to docs/versioned_docs/version-CE-1.3/using-semaphore/tests/img/workflow-reports.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/tests/markdown-reports.md b/docs/versioned_docs/version-CE-1.3/using-semaphore/tests/markdown-reports.md similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/tests/markdown-reports.md rename to docs/versioned_docs/version-CE-1.3/using-semaphore/tests/markdown-reports.md diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/tests/test-reports.md b/docs/versioned_docs/version-CE-1.3/using-semaphore/tests/test-reports.md similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/tests/test-reports.md rename to docs/versioned_docs/version-CE-1.3/using-semaphore/tests/test-reports.md diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/workflows.md b/docs/versioned_docs/version-CE-1.3/using-semaphore/workflows.md similarity index 100% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/workflows.md rename to docs/versioned_docs/version-CE-1.3/using-semaphore/workflows.md diff --git a/docs/versioned_docs/version-CE/getting-started/faq.md b/docs/versioned_docs/version-CE/getting-started/faq.md index d3651aaf7..09b7190d5 100644 --- a/docs/versioned_docs/version-CE/getting-started/faq.md +++ b/docs/versioned_docs/version-CE/getting-started/faq.md @@ -33,7 +33,7 @@ If your machines meet the minimum requisites and your Semaphore Enterprise Editi This is commonly due to a rate-limit of third-party providers such as Docker Hub. These services limit how many unauthenticated pulls you can do in an hour, often based on IP. The machine or cluster running the jobs might have already tripped the IP rate limit. -You can bypass this issue by creating a free account on Docker Hub, and then [authenticating with Docker](../using-semaphore/optimization/docker#auth) within the job. This way, the [pulls are limited by your account (100 per hour)](https://docs.docker.com/docker-hub/usage/), and not by the IP of the machine. +You can bypass this issue by creating a free account on Docker Hub, and then [authenticating with Docker](../using-semaphore/containers/docker#auth) within the job. This way, the [pulls are limited by your account (100 per hour)](https://docs.docker.com/docker-hub/usage/), and not by the IP of the machine. :::tip @@ -68,6 +68,7 @@ Yes. To do that, follow these steps: git submodule init git submodule update ``` + 2. Append the these commands in the [epilogue](../using-semaphore/jobs#epilogue) ```shell @@ -76,11 +77,11 @@ Yes. To do that, follow these steps: -Make sure that Semaphore has permissions to clone your submodules repository. +Make sure that Semaphore has permissions to clone your submodules repository. ### Can I redeliver webhooks from Github to Semaphore? -Yes. Rarely Semaphore does not receive a webhook from GitHub. This results in a workflow not being triggered. When this happens, you can redeliver the webhook to trigger the workflow. +Yes. Rarely Semaphore does not receive a webhook from GitHub. This results in a workflow not being triggered. When this happens, you can redeliver the webhook to trigger the workflow. These are the steps to redeliver webhooks from Github: @@ -93,7 +94,7 @@ These are the steps to redeliver webhooks from Github: ### Can I send a comment on a pull request on GitHub from a workflow? -Yes. You can use the [GitHub API](https://docs.github.com/en/rest/issues?apiVersion=2022-11-28#create-an-issue-comment) to comment on pull requests. +Yes. You can use the [GitHub API](https://docs.github.com/en/rest/issues?apiVersion=2022-11-28#create-an-issue-comment) to comment on pull requests. For example: @@ -170,7 +171,7 @@ blocks: ### Can I change the timezone? -The default timezone is UTC. The timezone can be changed in 2 ways in Linux agents: +The default timezone is UTC. The timezone can be changed in 2 ways in Linux agents: - Assign a different value to the TZ environment variable: @@ -217,15 +218,13 @@ While an issue is ongoing, you might consider using a shorter [execution_time_li ::: - ### Why is my job failing if all commands have passed? This can happen because of code coverage tools, e.g. simplecov, which can be set to fail the test suite if a [minimum coverage level is not achieved](https://github.com/simplecov-ruby/simplecov#minimum-coverage). - ### Why are tests passing locally but not on Semaphore? -The main reason for this behavior is differences in the stacks. As a first step, ensure that the same versions of languages, services, tools, and frameworks such as Selenium, browser drivers, Capybara, Cypress are used both locally and in the CI environment. +The main reason for this behavior is differences in the stacks. As a first step, ensure that the same versions of languages, services, tools, and frameworks such as Selenium, browser drivers, Capybara, Cypress are used both locally and in the CI environment. If you are using Docker containers when performing tests, it's possible that, while the command itself runs instantly, the process will not be completely started, leading to certain endpoints not being available. Using a minimum `sleep 10` can help in this scenario. Cypress has a [wait-on](https://docs.cypress.io/guides/continuous-integration/introduction.html#Boot-your-server) module that provides similar functionality. @@ -237,7 +236,7 @@ You might be hitting the quota limitation. To see your activity across the serve 2. Select Activity Monitor 3. Check your agent usage, jobs won't start until a suitable agent is free -You can also run [`sem get jobs`](../reference/semaphore-cli#sem-get-job) to display all running jobs to confirm how much of the quota is being used. +You can also run [`sem get jobs`](../reference/semaphore-cli#sem-get-job) to display all running jobs to confirm how much of the quota is being used. ### Why does my job fail when I specify "exit 0" in commands? @@ -255,7 +254,6 @@ Some commands like `bash -e` or `set -x otrace` may override this behavior and m ::: - ## Project ### Can I transfer ownership of a project? @@ -274,7 +272,7 @@ To change the project ownership: After project ownership has been transferred, you need to push a new commit. Old workflows cannot be re-run after transferring ownership. -If you come across any issues, please reach out to support@semaphoreci.com and include the name of the project and the GitHub/Bitbucket username of the new owner in your message. +If you come across any issues, please reach out to `support@semaphoreci.com` and include the name of the project and the GitHub/Bitbucket username of the new owner in your message. ### Can I rename a project? @@ -306,7 +304,6 @@ Deleting a project cannot be reversed. ::: - ### Can I change the visibility of a project? Yes. To make the project visible or private follow these steps: @@ -316,7 +313,6 @@ Yes. To make the project visible or private follow these steps: 3. Click the link next to **Public** or **Private** to toggle the visibility 4. Press **Save Changes** - ## Workflows ### How do I fix the error "Machine type and OS image for initialization job not available" @@ -334,13 +330,12 @@ If you are using a [filter for contributors](../using-semaphore/workflows#projec Approving forked pull requests is limited to new comments only and is not possible for comment edits. Due to security concerns, `/sem-approve` will work only once. Subsequent pushes to the forked pull request must be approved again. - ### How do I fix the error "Revision: COMMIT_SHA not found. Exiting" This happens when the repository receives pushed while Semaphore is still processing the incoming webhook. For example, when someone modifies or removes with a `git rebase` or `git commit --amend` command followed by a `git push --force` shortly after. You can prevent this error by enabling the [auto-cancel](../using-semaphore/pipelines#auto-cancel) option in the pipeline. - + ### Why are my workflows not running in parallel? Git pushes to the same branch are [queued](../using-semaphore/pipelines#pipeline-queues) by default. Pushes to different branches do run in parallel. You can use [named queues in your pipelines](../using-semaphore/pipelines#named-queues) to better control how workflows are parallelized or activate [auto-cancel](../using-semaphore/pipelines#auto-cancel) to stop running pipelines when new pushes arrive to the queue. @@ -399,4 +394,3 @@ Enabling the `set -e` option in the Bash shell causes autocomplete to fail and e ### Why are my secrets empty? We have discontinued exposing secret content via the CLI, API, and web interface to ensure enhanced security measures. Retrieval of secret values is now exclusively available through the job mechanism. - diff --git a/docs/versioned_docs/version-CE/getting-started/install-aws-ec2.md b/docs/versioned_docs/version-CE/getting-started/install-aws-ec2.md index 04ec51677..fa45b24dd 100644 --- a/docs/versioned_docs/version-CE/getting-started/install-aws-ec2.md +++ b/docs/versioned_docs/version-CE/getting-started/install-aws-ec2.md @@ -331,8 +331,8 @@ Finally, install the Semaphore with Helm: ```shell helm upgrade --install semaphore oci://ghcr.io/semaphoreio/semaphore \ --debug \ - --version v1.3.0 \ - --timeout 20m \ + --version v1.4.0 \ + --timeout 30m \ --set global.domain.ip=${IP_ADDRESS} \ --set global.domain.name=${DOMAIN} \ --set ingress.enabled=true \ diff --git a/docs/versioned_docs/version-CE/getting-started/install-eks.md b/docs/versioned_docs/version-CE/getting-started/install-eks.md index 49c44b0a4..cf32e3289 100644 --- a/docs/versioned_docs/version-CE/getting-started/install-eks.md +++ b/docs/versioned_docs/version-CE/getting-started/install-eks.md @@ -153,8 +153,8 @@ Install Semaphore with Helm: ```shell helm upgrade --install semaphore oci://ghcr.io/semaphoreio/semaphore \ --debug \ - --version v1.3.0 \ - --timeout 20m \ + --version v1.4.0 \ + --timeout 30m \ --set global.domain.name="${DOMAIN}" \ --set ingress.ssl.certName="${CERT_NAME}" \ --set ingress.className=alb \ diff --git a/docs/versioned_docs/version-CE/getting-started/install-gcompute.md b/docs/versioned_docs/version-CE/getting-started/install-gcompute.md index 931c14458..ed429c9f1 100644 --- a/docs/versioned_docs/version-CE/getting-started/install-gcompute.md +++ b/docs/versioned_docs/version-CE/getting-started/install-gcompute.md @@ -425,8 +425,8 @@ To upgrade Semaphore, follow these steps: ```shell helm upgrade --install semaphore oci://ghcr.io/semaphoreio/semaphore \ --debug \ - --version v1.3.0 \ - --timeout 20m \ + --version v1.4.0 \ + --timeout 30m \ --set global.domain.ip=${IP_ADDRESS} \ --set global.domain.name=${DOMAIN} \ --set ingress.enabled=true \ diff --git a/docs/versioned_docs/version-CE/getting-started/install-gke.md b/docs/versioned_docs/version-CE/getting-started/install-gke.md index c5faed587..1d00b5471 100644 --- a/docs/versioned_docs/version-CE/getting-started/install-gke.md +++ b/docs/versioned_docs/version-CE/getting-started/install-gke.md @@ -410,8 +410,8 @@ To upgrade Semaphore, follow these steps: ```shell helm upgrade --install semaphore oci://ghcr.io/semaphoreio/semaphore \ --debug \ - --version v1.3.0 \ - --timeout 20m \ + --version v1.4.0 \ + --timeout 30m \ --set global.domain.ip=${IP_ADDRESS} \ --set global.domain.name=${DOMAIN} \ --set ingress.enabled=true \ diff --git a/docs/versioned_docs/version-CE/getting-started/install-ubuntu.md b/docs/versioned_docs/version-CE/getting-started/install-ubuntu.md index 7b63af188..32e30db8b 100644 --- a/docs/versioned_docs/version-CE/getting-started/install-ubuntu.md +++ b/docs/versioned_docs/version-CE/getting-started/install-ubuntu.md @@ -198,8 +198,8 @@ Finally, install Semaphore with Helm: ```shell title="remote shell - install Semaphore" helm upgrade --install semaphore oci://ghcr.io/semaphoreio/semaphore \ --debug \ - --version v1.3.0 \ - --timeout 20m \ + --version v1.4.0 \ + --timeout 30m \ --set global.domain.ip=${IP_ADDRESS} \ --set global.domain.name=${DOMAIN} \ --set ingress.enabled=true \ diff --git a/docs/versioned_docs/version-CE/getting-started/install.md b/docs/versioned_docs/version-CE/getting-started/install.md index af85fae01..a57963698 100644 --- a/docs/versioned_docs/version-CE/getting-started/install.md +++ b/docs/versioned_docs/version-CE/getting-started/install.md @@ -31,7 +31,7 @@ To install Semaphore, you need: - A DNS domain - The ability to create A, AAAA, or CNAME records for your domain - A Kubernetes cluster or a Ubuntu machine - - Minumum hardware: **16 GB of RAM and 8 CPUs** + - Minimum hardware: **16 GB of RAM and 8 CPUs** - Installation time - Ubuntu machine: 20 to 30 minutes - Kubernetes cluster: up to 1 hour @@ -51,7 +51,7 @@ Each platform presents trade-off. Use the following table as a guide: | Facility | Single-alone machine | Kubernetes cluster | |--|--|--| | Backup and restore | Simple | Complex | -| Infraststructure costs | Lower | Higher | +| Infrastructure costs | Lower | Higher | | Scalability of control plane | Low
Can only be scaled vertically with a more powerful machine.
| High
Can be scaled horizontally and vertically.
| | Scalability of job runner (agents) | High | High | | Redundancy | None | High | diff --git a/docs/versioned_docs/version-CE/getting-started/migration/bitbucket.md b/docs/versioned_docs/version-CE/getting-started/migration/bitbucket.md index 0a66f3ad1..ccaf4a3d2 100644 --- a/docs/versioned_docs/version-CE/getting-started/migration/bitbucket.md +++ b/docs/versioned_docs/version-CE/getting-started/migration/bitbucket.md @@ -33,10 +33,8 @@ Checkout is implicit in all Travis CI workflows by default.
- Semaphore does not clone the repository by default. This is because there are certain scenarios in which you don't need the code or you want to customize the cloning process. - To clone the repository in Semaphore we only need to execute [`checkout`](../../reference/toolbox#checkout). ```shell @@ -46,7 +44,6 @@ checkout cat README.md ``` - @@ -92,7 +89,6 @@ pipelines: - In Semaphore, we use the [artifact](../../reference/toolbox#artifact) command to download and upload files to the artifact store. The following command stores `test.log` from any job: @@ -109,7 +105,6 @@ artifact pull workflow test.log See [artifacts](../../using-semaphore/artifacts) for more details. - @@ -153,7 +148,7 @@ bundle install cache store ``` -See [caching](../../using-semaphore/optimization/cache) for more details. +See [caching](../../using-semaphore/cache) for more details. @@ -161,7 +156,6 @@ See [caching](../../using-semaphore/optimization/cache) for more details. We often need to activate specific language or tool versions to ensure consistent builds. - @@ -208,13 +202,12 @@ pipelines: -In Semaphore, we create the [secret](../../using-semaphore/secrets) at the server or project level and activate it on a block. +In Semaphore, we create the [secret](../../using-semaphore/secrets) at the server or project level and activate it on a block. The secret contents are automatically injected as environment variables in all jobs contained on that block. ![Using secrets on Semaphore](./img/secrets.jpg) - diff --git a/docs/versioned_docs/version-CE/getting-started/migration/circle.md b/docs/versioned_docs/version-CE/getting-started/migration/circle.md index 7d2efc0a1..80c245c16 100644 --- a/docs/versioned_docs/version-CE/getting-started/migration/circle.md +++ b/docs/versioned_docs/version-CE/getting-started/migration/circle.md @@ -75,15 +75,14 @@ global_job_config: - ### Language versions -Both CircleCI and Semaphore allow you to use specific language versions. +Both CircleCI and Semaphore allow you to use specific language versions. -CircleCI uses a language-specific setup orb. +CircleCI uses a language-specific setup orb. The following example sets the Ruby version to `3.3.4` @@ -101,6 +100,7 @@ jobs: version: '3.3.4' # highlight-end ``` + @@ -109,7 +109,6 @@ Semaphore provides the [Docker environments](../../using-semaphore/pipelines#doc - ### Caching Both CircleCI and Semaphore support manual file caching. @@ -152,7 +151,7 @@ The following commands, when added to a job downloads, cache, and install Gems i - cache store ``` -See [caching](../../using-semaphore/optimization/cache) for more details. +See [caching](../../using-semaphore/cache) for more details. @@ -162,7 +161,6 @@ See [caching](../../using-semaphore/optimization/cache) for more details. - ### Database and services Both CircleCI and Semaphore support starting databases and services via Docker containers. @@ -193,7 +191,6 @@ jobs: Semaphore provides the [Docker environments](../../using-semaphore/pipelines#docker-environments) to run your jobs in environments with all your build tools. You can connect multiple Docker images to provide database services for your end-to-end or smoke tests. - @@ -260,7 +257,7 @@ Secrets inject sensitive data and credentials into the workflow securely. -CircleCI uses contexts instead of secrets. You must create the context and its value through the UI. +CircleCI uses contexts instead of secrets. You must create the context and its value through the UI. Then, you can use the `context` keyword to include it in your jobs. ```yaml @@ -277,7 +274,7 @@ workflows: -On Semaphore, we create the [secret](../../using-semaphore/secrets) at the server (instance) or project level and activate it on a block. +On Semaphore, we create the [secret](../../using-semaphore/secrets) at the server (instance) or project level and activate it on a block. The secret's contents are automatically injected as environment variables in all jobs in that block. @@ -304,13 +301,12 @@ global_job_config: -On Semaphore, we create the [secret](../../using-semaphore/secrets) at the server (instance) or project level and activate it on a block. +On Semaphore, we create the [secret](../../using-semaphore/secrets) at the server (instance) or project level and activate it on a block. The secret's contents are automatically injected as environment variables in all jobs in that block. ![Using secrets on Semaphore](./img/secrets.jpg) - @@ -507,7 +503,6 @@ blocks: - ## See also - [Migration guide for CircleCI](./circle) diff --git a/docs/versioned_docs/version-CE/getting-started/migration/github-actions.md b/docs/versioned_docs/version-CE/getting-started/migration/github-actions.md index bbb485722..47f30c69b 100644 --- a/docs/versioned_docs/version-CE/getting-started/migration/github-actions.md +++ b/docs/versioned_docs/version-CE/getting-started/migration/github-actions.md @@ -74,15 +74,14 @@ global_job_config: - ### Language versions -Both Github Actions and Semaphore allow you to use specific language versions. +Both Github Actions and Semaphore allow you to use specific language versions. -GitHub Actions uses a language-specific setup action. +GitHub Actions uses a language-specific setup action. The following example sets the Ruby version to `3.3.4` @@ -94,6 +93,7 @@ jobs: with: ruby-version: '3.3.4' ``` + @@ -102,7 +102,6 @@ Semaphore provides the [Docker environments](../../using-semaphore/pipelines#doc - ### Caching Both GitHub Actions and Semaphore support manual file caching. @@ -136,7 +135,7 @@ The following commands, when added to a job downloads, cache, and install Gems i - cache store ``` -See [caching](../../using-semaphore/optimization/cache) for more details. +See [caching](../../using-semaphore/cache) for more details. @@ -146,7 +145,6 @@ See [caching](../../using-semaphore/optimization/cache) for more details. - ### Database and services Both Github Actions and Semaphore support starting databases and services via Docker containers. @@ -175,7 +173,7 @@ jobs: Semaphore provides the [Docker environments](../../using-semaphore/pipelines#docker-environments) to run your jobs in environments with all your build tools. You can connect multiple Docker images to provide database services for your end-to-end or smoke tests. - + @@ -281,13 +279,12 @@ global_job_config: -On Semaphore, we create the [secret](../../using-semaphore/secrets) at the server or project level and activate it on a block. +On Semaphore, we create the [secret](../../using-semaphore/secrets) at the server or project level and activate it on a block. The secret's contents are automatically injected as environment variables in all jobs in that block. ![Using secrets on Semaphore](./img/secrets.jpg) - @@ -447,7 +444,6 @@ blocks: - ## See also - [Migration guide for CircleCI](./circle) diff --git a/docs/versioned_docs/version-CE/getting-started/migration/overview.md b/docs/versioned_docs/version-CE/getting-started/migration/overview.md index 9dca73b7a..fe877a9c7 100644 --- a/docs/versioned_docs/version-CE/getting-started/migration/overview.md +++ b/docs/versioned_docs/version-CE/getting-started/migration/overview.md @@ -27,8 +27,6 @@ Here is the recommended plan to migrate from any CI provider to Semaphore. Write down your goals and reasons for migrating your CI to Semaphore. For example, you might wish to reduce costs or speed up your builds. Setting expectations from the get-go will make the whole migration process clearer and more straightforward. - If at any point in the process, you have doubts, contact us at support@semaphoreci.com. We want this process to be as smooth and painless as possible. - 2. Compare features We suggest breaking down the requirements for the new CI system into three categories: @@ -36,7 +34,7 @@ Here is the recommended plan to migrate from any CI provider to Semaphore. - Must have - Nice to have - Optional - + Use the [feature comparison page](../features) to select the best Semaphore edition for you. 3. [Install Semaphore](../install) @@ -47,21 +45,20 @@ Here is the recommended plan to migrate from any CI provider to Semaphore. - [Connect your GitHub](../../using-semaphore/connect-github) or [connect your BitBucket](../../using-semaphore/connect-bitbucket) repository to Semaphore - Configure a CI pipeline, the objective is to reach a green build. See the [Guided Tour](../guided-tour) to get an overview of Semaphore - + The following pages describe key features you might need for the migration: - [How to create jobs](../../using-semaphore/jobs) - [Persist data with Artifacts](../../using-semaphore/artifacts) - [How to use Docker Environments](../../using-semaphore/pipelines#docker-environments) - - [How to use the Cache](../../using-semaphore/optimization/cache) - + - [How to use the Cache](../../using-semaphore/cache) 5. Optimize performance Once your project is building on Semaphore, begin optimizing for performance. - Add more powerful [self-hosted agents](../../using-semaphore/self-hosted) - - Learn and implement the optimization strategies like [caching](../../using-semaphore/optimization/cache), [fail-fast](../../using-semaphore/pipelines#fail-fast), and [auto-cancel](../../using-semaphore/pipelines#auto-cancel) + - Learn and implement the optimization strategies like [caching](../../using-semaphore/cache), [fail-fast](../../using-semaphore/pipelines#fail-fast), and [auto-cancel](../../using-semaphore/pipelines#auto-cancel) 6. Onboard your team diff --git a/docs/versioned_docs/version-CE/getting-started/migration/travis.md b/docs/versioned_docs/version-CE/getting-started/migration/travis.md index deb1d506b..0b6d7efb5 100644 --- a/docs/versioned_docs/version-CE/getting-started/migration/travis.md +++ b/docs/versioned_docs/version-CE/getting-started/migration/travis.md @@ -37,7 +37,6 @@ Checkout is implicit in all Travis CI workflows by default. Semaphore does not clone the repository by default. This is because there are certain scenarios in which you don't need the code or you want to customize the cloning process. - To clone the repository in Semaphore we only need to execute [`checkout`](../../reference/toolbox#checkout). ```shell @@ -68,7 +67,7 @@ addons: paths: - $HOME/project/test.log # highlight-end -``` +``` @@ -122,19 +121,19 @@ bundle install cache store ``` -See [caching](../../using-semaphore/optimization/cache) for more details. +See [caching](../../using-semaphore/cache) for more details. ### Language versions -Both Travis CI and Semaphore allow you to use specific language versions. +Both Travis CI and Semaphore allow you to use specific language versions. -Travis CI uses a language-specific setup keyword. +Travis CI uses a language-specific setup keyword. The following example sets the Ruby version to `3.3.4` @@ -170,7 +169,7 @@ services: Semaphore provides the [Docker environments](../../using-semaphore/pipelines#docker-environments) to run your jobs in environments with all your build tools. You can connect multiple Docker images to provide database services for your end-to-end or smoke tests. - + @@ -198,7 +197,7 @@ Using encrypted files uses a different system that's a bit more convoluted. In Semaphore, secrets are stored on the Semaphore server or project. Encryption and decryption is automatically handled for environment variables and files. -First, we create a [secret](../../using-semaphore/secrets) at the server or project level and activate it on a block. +First, we create a [secret](../../using-semaphore/secrets) at the server or project level and activate it on a block. The secret contents are automatically injected as environment variables in all jobs contained on that block. diff --git a/docs/versioned_docs/version-CE/reference/agent-aws-stack.md b/docs/versioned_docs/version-CE/reference/agent-aws-stack.md index d426b62de..cd5fd952d 100644 --- a/docs/versioned_docs/version-CE/reference/agent-aws-stack.md +++ b/docs/versioned_docs/version-CE/reference/agent-aws-stack.md @@ -51,7 +51,6 @@ The AWS Autoscaler Stack accepts configuration settings in two ways: See [Autoscaling with AWS](../using-semaphore/self-hosted-aws) to learn more. - ## Required parameters ### Endpoint {#endpoint} @@ -62,7 +61,6 @@ The endpoint the agent uses for registration and sync with your Semaphore server If this parameter is not set, you must configure [`SEMAPHORE_ORGANIZATION`](#organization). - ### Organization {#organization} - **Parameter name**: `SEMAPHORE_ORGANIZATION` @@ -77,14 +75,12 @@ If [`SEMAPHORE_ENDPOINT`] is not set, this parameter is used to generate the end The name of the stack. This is the stack name used in Cloudformation and as a prefix to name all the stack resources. When deploying multiple stacks for multiple agent types, different stack names are required. - ### Agent token {#agent-token} - **Parameter name**: `SEMAPHORE_AGENT_TOKEN_PARAMETER_NAME` The AWS SSM parameter name contains the Semaphore agent [registration token](../using-semaphore/self-hosted-install#register-agent). - ## Optional parameters Here's the converted markdown documentation based on the original table you provided: @@ -95,7 +91,6 @@ Here's the converted markdown documentation based on the original table you prov Path to a JSON file containing the parameters to use. This is an alternative to using environment variables for setting the stack's configuration parameters. - ### Agent instance type {#agent-instance-type} - **Parameter name**: `SEMAPHORE_AGENT_INSTANCE_TYPE` @@ -103,7 +98,6 @@ Path to a JSON file containing the parameters to use. This is an alternative to AWS instance type used for the agents. See the available instance type on [AWS docs](https://aws.amazon.com/ec2/instance-types/). - ### Auto-scaling group minimum size {#asg-min-size} - **Parameter name**: `SEMAPHORE_AGENT_ASG_MIN_SIZE` @@ -111,7 +105,6 @@ AWS instance type used for the agents. See the available instance type on [AWS d Minimum size for the auto-scaling group. - ### Auto-scaling group maximum size {#asg-max-size} - **Parameter name**: `SEMAPHORE_AGENT_ASG_MAX_SIZE` @@ -119,7 +112,6 @@ Minimum size for the auto-scaling group. Maximum size for the auto-scaling group. - ### Auto-scaling group desired capacity {#asg-desired} - **Parameter name**: `SEMAPHORE_AGENT_ASG_DESIRED` @@ -127,7 +119,6 @@ Maximum size for the auto-scaling group. Desired capacity for the auto-scaling group. - ### Use dynamic scaling {#use-dynamic-scaling} - **Parameter name**: `SEMAPHORE_AGENT_USE_DYNAMIC_SCALING` @@ -144,14 +135,12 @@ Security Group ID to use for agent instances. If not specified, a security group - an egress rule allowing all outbound traffic - an ingress rule for SSH if [`SEMAPHORE_AGENT_KEY_NAME`](#key-name) is specified - ### Key name {#key-name} - **Parameter name**: `SEMAPHORE_AGENT_KEY_NAME` Key name to access agents through SSH. If not specified, no SSH inbound access is allowed. - ### Disconnect after job {#disconnect-after-job} - **Parameter name**: `SEMAPHORE_AGENT_DISCONNECT_AFTER_JOB` @@ -159,23 +148,20 @@ Key name to access agents through SSH. If not specified, no SSH inbound access i If true, the agent disconnects after completing a job. - ### Disconnect after idle timeout {#disconnect-after-idle-timeout} - **Parameter name**: `SEMAPHORE_AGENT_DISCONNECT_AFTER_IDLE_TIMEOUT` - **default value**: `300` -Number of seconds of idleness after which the agent is shut down. +Number of seconds of idleness after which the agent is shut down. Setting this to 0 disables the scaling down behavior for the stack since the agents do not shutdown due to idleness. - ### Cache bucket name {#cache-bucket-name} - **Parameter name**: `SEMAPHORE_AGENT_CACHE_BUCKET_NAME` -Existing S3 bucket name to use for caching. If this is not set, [caching](../using-semaphore/optimization/cache) does not work. - +Existing S3 bucket name to use for caching. If this is not set, [caching](../using-semaphore/cache) does not work. ### Token KMS key {#token-kms-key} @@ -183,80 +169,70 @@ Existing S3 bucket name to use for caching. If this is not set, [caching](../usi KMS key id used to encrypt and decrypt `SEMAPHORE_AGENT_TOKEN_PARAMETER_NAME`. If nothing is given, the default `alias/aws/ssm` key is assumed. - ### VPC ID {#vpc-id} - **Parameter name**: `SEMAPHORE_AGENT_VPC_ID` The ID of an existing VPC to use when launching agent instances. By default, this is blank, and the default VPC on your AWS account is used. - ### Subnets {#subnets} - **Parameter name**: `SEMAPHORE_AGENT_SUBNETS` -Comma-separated list of existing VPC subnet IDs where EC2 instances are to run. This is required when using [`SEMAPHORE_AGENT_VPC_ID`](#vpc-id). +Comma-separated list of existing VPC subnet IDs where EC2 instances are to run. This is required when using [`SEMAPHORE_AGENT_VPC_ID`](#vpc-id). If `SEMAPHORE_AGENT_SUBNETS` is set and [`SEMAPHORE_AGENT_VPC_ID`](#vpc-id) is blank, the subnets are ignored, and the default VPC is used. This means that private and public subnets are possible, but isolated subnets cannot be used. - ### AMI {#ami} - **Parameter name**: `SEMAPHORE_AGENT_AMI` The AMI is used for all instances. If empty, the stack uses the default AMIs, looking them up by name. If the default AMI isn't sufficient, you can use your own AMIs, but they need to be based on the stack's default AMI. - ### OS type {#os-type} - **Parameter name**: `SEMAPHORE_AGENT_OS` -The OS type for agents. +The OS type for agents. -Possible values: +Possible values: -- `ubuntu-focal` +- `ubuntu-focal` - `windows` - ### Architecture type {#architecture-type} - **Parameter name**: `SEMAPHORE_AGENT_ARCH` The arch type for agents. Possible values: -- `x86_64` +- `x86_64` - `arm64` - ### Availability zones {#availability-zones} - **Parameter name**: `SEMAPHORE_AGENT_AZS` A comma-separated list of availability zones to use for the auto-scaling group. - ### Managed policy names {#managed-policy-names} - **Parameter name**: `SEMAPHORE_AGENT_MANAGED_POLICY_NAMES` A comma-separated list of custom IAM policy names to attach to the instance profile role. - ### ASG metrics {#asg-metrics} - **Parameter name**: `SEMAPHORE_AGENT_ASG_METRICS` A comma-separated list of ASG metrics to collect. Available metrics can be found on the [AWS CDK Documentation](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_autoscaling.CfnAutoScalingGroup.MetricsCollectionProperty.html). - ### Volume name {#volume-name} - **Parameter name**: `SEMAPHORE_AGENT_VOLUME_NAME` The EBS volume's device name to use for a custom volume. If this is not set, the EC2 instances are assigned the EBS volume based on the AMI. - ### Volume type {#volume-type} - **Parameter name**: `SEMAPHORE_AGENT_VOLUME_TYPE` @@ -264,7 +240,6 @@ The EBS volume's device name to use for a custom volume. If this is not set, the The EBS volume's type, when using [`SEMAPHORE_AGENT_VOLUME_NAME`](#volume-name). - ### Volume size {#volume-size} - **Parameter name**: `SEMAPHORE_AGENT_VOLUME_SIZE` @@ -272,47 +247,41 @@ The EBS volume's type, when using [`SEMAPHORE_AGENT_VOLUME_NAME`](#volume-name). The EBS volume's size, in GB, when using [`SEMAPHORE_AGENT_VOLUME_NAME`](#volume-name). - ### License configuration ARN {#license-configuration-arn} - **Parameter name**: `SEMAPHORE_AGENT_LICENSE_CONFIGURATION_ARN` The license configuration ARN is associated with the AMI used by the stack. - ### Mac family {#mac-family} - **Parameter name**: `SEMAPHORE_AGENT_MAC_FAMILY` The EC2 Mac instance family to use. Possible values: `mac1` and `mac2`. - ### Mac dedicated hosts {#mac-dedicated-hosts} - **Parameter name**: `SEMAPHORE_AGENT_MAC_DEDICATED_HOSTS` A comma-separated list of dedicated host IDs to include in the host resource group. - ### Tags {#tags} - **Parameter name**: `SEMAPHORE_AGENT_TAGS` -A comma-separated list of key-value pairs of tags to be added to all resources created for the stack. +A comma-separated list of key-value pairs of tags to be added to all resources created for the stack. For example: `Name:Something,Category:SomethingElse`. - ### Use pre-signed URL {#use-pre-signed-url} - **Parameter name**: `SEMAPHORE_AGENT_USE_PRE_SIGNED_URL` - **default value**: `false` -If true, use a pre-signed AWS STS GetCallerIdentity URL for agent registration. +If true, use a pre-signed AWS STS GetCallerIdentity URL for agent registration. See [agent type configuration](../using-semaphore/self-hosted-install#name-sts) to learn how to configure this security feature. - ## See also - [How to use self-hosted agents](../using-semaphore/self-hosted) diff --git a/docs/versioned_docs/version-CE/reference/api.md b/docs/versioned_docs/version-CE/reference/api.md index f082c978b..9e2c2f2d5 100644 --- a/docs/versioned_docs/version-CE/reference/api.md +++ b/docs/versioned_docs/version-CE/reference/api.md @@ -472,6 +472,8 @@ curl -i -X POST \ ## Tasks {#tasks} +### Trigger a taks + [Tasks](../using-semaphore/tasks) can be triggered via the API. To trigger a task with its default parameters: @@ -624,9 +626,9 @@ curl -H "Authorization: Token {api_token}" \ "https:///api/v1alpha/logs/:job_id" ``` -### Self-hosted agent types +## Self-hosted agent types -#### Listing agent types +### Listing agent types ```text GET /api/v1alpha/self_hosted_agent_types @@ -687,7 +689,7 @@ curl -i \ "https:///api/v1alpha/self_hosted_agent_types" ``` -#### Create an agent type +### Create an agent type ```text POST /api/v1alpha/self_hosted_agent_types @@ -740,7 +742,7 @@ curl -i \ "https:///api/v1alpha/self_hosted_agent_types" ``` -#### Update an agent type +### Update an agent type ```text PATCH /api/v1alpha/self_hosted_agent_types/:agent_type_name @@ -792,7 +794,7 @@ curl -X PATCH -i \ "https:///api/v1alpha/self_hosted_agent_types/s1-aws-small" ``` -#### Describe an agent type +### Describe an agent type ```text GET /api/v1alpha/self_hosted_agent_types/:agent_type_name @@ -833,7 +835,7 @@ curl -i \ "https:///api/v1alpha/self_hosted_agent_types/s1-aws-small" ``` -#### Delete an agent type +### Delete an agent type ```text DELETE /api/v1alpha/self_hosted_agent_types/:agent_type_name @@ -858,7 +860,7 @@ curl -i -X DELETE \ "https:///api/v1alpha/self_hosted_agent_types/s1-aws-small" ``` -#### Disable agents for an agent type +### Disable agents for an agent type ```text POST /api/v1alpha/self_hosted_agent_types/:agent_type_name/disable_all @@ -885,9 +887,9 @@ curl -i \ "https:///api/v1alpha/self_hosted_agent_types/s1-aws-small/disable_all" ``` -### Self-hosted agents +## Self-hosted agents -#### List agents for an agent type +### List agents for an agent type ```text GET /api/v1alpha/agents?agent_type=:agent_type&page_size=:page_size&cursor=:cursor diff --git a/docs/versioned_docs/version-CE/reference/env-vars.md b/docs/versioned_docs/version-CE/reference/env-vars.md index c03731e07..1d2cbeff7 100644 --- a/docs/versioned_docs/version-CE/reference/env-vars.md +++ b/docs/versioned_docs/version-CE/reference/env-vars.md @@ -88,7 +88,7 @@ A string with a user-supplied name for the job. - **Environment variable**: `SEMAPHORE_JOB_COUNT` - **Example**: 4 -Only available when [job parallelism](../using-semaphore/jobs#job-parallelism) is enabled. This variable holds the total number of jobs configured in job parallelism. +Only available when [job parallelism](../using-semaphore/jobs#job-parallelism) is enabled. This variable holds the total number of jobs configured in job parallelism. It can be used to configure a test partitioning strategy using a 3rd party test runner. @@ -204,7 +204,6 @@ Holds `true` if the workflow was triggered using the [Semaphore API](../referenc - The variable is `false` if the workflow is triggered by a Git push, pull request, or via [Tasks](../using-semaphore/tasks). ### Workflow is triggered by hook {#workflow-triggered-by-hook} @@ -299,7 +298,6 @@ Used only when running [`checkout --use-cache`](./toolbox#cache-full-clone). It - **Environment variable**: `SEMAPHORE_GIT_CACHE_KEEP` - **Example**: `1` - Used only when running [`checkout --use-cache`](./toolbox#cache-full-clone). It how many copies of the repository should be maintained in the Semaphore Git Cache. Older copies are automatically deleted. The default value is 0, which means that Semaphore maintains only 1 copy of the repository. If you set it to 1, Semaphore will maintain 2 copies of the repository. @@ -379,7 +377,6 @@ Present only for builds where `SEMAPHORE_GIT_REF_TYPE=pull-request` The number of the Pull Request. - :::note Present only for builds where `SEMAPHORE_GIT_REF_TYPE=pull-request` @@ -421,7 +418,6 @@ Present only for builds where `SEMAPHORE_GIT_REF_TYPE=pull-request` The name of the directory that contains the files of the repository linked to the current Semaphore project. - ### Repository name {#git-repo-name} - **Environment variable**: `SEMAPHORE_GIT_REPO_NAME` @@ -486,7 +482,7 @@ The time that the pipeline spent in the queue is expressed in seconds. - **Environment variable**: `SEMAPHORE_PIPELINE_RESULT` - **Example**: `failed`, `passed`, `canceled`, `stopped` -Contains the result of the pipeline. Possible values are: `failed`, `passed`, `canceled`, `stopped` +Contains the result of the pipeline. Possible values are: `failed`, `passed`, `canceled`, `stopped` ### Pipeline result reason {#pipeline-result-reason} @@ -518,7 +514,7 @@ The total duration of the pipeline including queuing time expressed in seconds. ## Cache variables {#cache-variables} -These variables are used to access the [cache](../using-semaphore/optimization/cache). +These variables are used to access the [cache](../using-semaphore/cache). ### Cache URL {#cache-url} @@ -543,7 +539,7 @@ The path in the server to the SSH key file to access the cache server. ## Semaphore Docker registry variables {#registry-variables} -These variables can be used to access the [Semaphore Docker registry](../using-semaphore/optimization/docker). +These variables can be used to access the [Semaphore Docker registry](../using-semaphore/containers/docker). ### Username {#registry-username} @@ -590,7 +586,7 @@ The path to the log file during the initialization job. ## See also -- [Docker optimization](../using-semaphore/optimization/docker) +- [Docker optimization](../using-semaphore/containers/docker) - [How to configure jobs](../using-semaphore/jobs) - [Semaphore pipelines](../using-semaphore/pipelines) - [Pipeline YAML reference](./pipeline-yaml) diff --git a/docs/versioned_docs/version-CE/reference/semaphore-cli.md b/docs/versioned_docs/version-CE/reference/semaphore-cli.md index 3d0d49e12..1986ecd47 100644 --- a/docs/versioned_docs/version-CE/reference/semaphore-cli.md +++ b/docs/versioned_docs/version-CE/reference/semaphore-cli.md @@ -145,7 +145,7 @@ $ sem version The Semaphore CLI supports the following flags: - `--help` or `-h`: prints the help screen for the given command -- `--verbose` or `-v`: useful for debugging, prints vebose output. This flag shows the interactions between the tool and the [Semaphore API](./api) +- `--verbose` or `-v`: useful for debugging, prints verbose output. This flag shows the interactions between the tool and the [Semaphore API](./api) - `--file` or `-f`: specifies the path to a file. Can be used to specify YAML resource files in [sem create](#sem-create) and [sem apply](#sem-apply). It can also be used to upload secrets as files using [sem create secret](#sem-create) - `--all`: used with [sem get job](#sem-get-job) to view running and recently-finished jobs diff --git a/docs/versioned_docs/version-CE/reference/toolbox.md b/docs/versioned_docs/version-CE/reference/toolbox.md index 7d4b4105a..9c69f4b7d 100644 --- a/docs/versioned_docs/version-CE/reference/toolbox.md +++ b/docs/versioned_docs/version-CE/reference/toolbox.md @@ -41,11 +41,11 @@ The available namespaces are: See [artifact namespaces](../using-semaphore/artifacts#namespaces) for more details. The optional flags are: + - `--force` or `-f`: overwrite file or directory if already exists - `--destination` of `-d`: pull or yank the file into a different path - `--verbose` or `-v`: verbose logging - ### Examples ```shell title="Artifact usage examples" @@ -83,7 +83,7 @@ The uploaded files must meet the following requirements: - File names cannot contain non-URI-encodable characters like `{, }, |, \, ^, ~, [, ]` - Files cannot be named `.` or `...` -You can workaround these limitations by compressing the file with tar before pushing it to the artifact store. For example: +You can workaround these limitations by compressing the file with tar before pushing it to the artifact store. For example: ```shell title="Creating a tarball before storing the artifact" tar -czvf example.tar.gz ~/example @@ -99,7 +99,7 @@ tar -xzf example.tar.gz ## cache {#cache} -The cache tool lets you interact with your project's [Semaphore cache](../using-semaphore/optimization/cache). +The cache tool lets you interact with your project's [Semaphore cache](../using-semaphore/cache). The syntax is: @@ -160,7 +160,6 @@ The supported options for `--cleanup-by` are: - `STORE_TIME`: (default) delete oldest files first - `ACCESS_TIME`: delete oldest accessed files first - ### Environment variables {#cache-env-vars} The cache tool depends on the following environment variables: @@ -222,7 +221,7 @@ The checkout command uses the following environment variables. ## checksum {#checksum} -This tool takes a single argument which is the file to checksum. It outputs the MD5 checksum of the file's contents. This tool is useful for tagging [artifacts](../using-semaphore/artifacts) or generating [cache keys](../using-semaphore/optimization/cache). +This tool takes a single argument which is the file to checksum. It outputs the MD5 checksum of the file's contents. This tool is useful for tagging [artifacts](../using-semaphore/artifacts) or generating [cache keys](../using-semaphore/cache). The syntax is: @@ -241,7 +240,6 @@ $ checksum package-lock.json The `install-package` tool is used to manage Ubuntu packages you may need for your jobs. It downloads and caches packages in a way that can be quickly reinstalled over and over again in different jobs. This is a convenient tool, you can still use `sudo` to install packages using the system's package manager. - The syntax is: ```shell title="install-package syntax" @@ -254,8 +252,8 @@ Where command is one of the following: - `update`: Retrieve new lists of packages - `upgrade`: Perform an upgrade -- `install`: Install new packages -- `reinstall`: Reinstall packages +- `install`: Install new packages +- `reinstall`: Reinstall packages - `remove`: Remove packages - `purge`: Remove packages and config files - `autoremove`: Remove automatically all unused packages @@ -276,7 +274,7 @@ You can supply multiple packages with their versions in the same invocation: install-package install mongodb-clients=3.6.8 mysql-client=8.0.36-0ubuntu0.20.04.1 ``` -The tool integrates with the [Semaphore cache](../using-semaphore/optimization/cache) to save, retrieve, and update the Deb packages as needed. +The tool integrates with the [Semaphore cache](../using-semaphore/cache) to save, retrieve, and update the Deb packages as needed. You can reinstall the packages in a different job within the same project with: @@ -363,6 +361,7 @@ $ sem-context get ReleaseVersion ``` Exit status codes: + - 0: key retrieved successfully - 1: key not found - 2: connection to the artifacts server failed @@ -377,6 +376,7 @@ sem-context delete ReleaseVersion ``` Exit status codes: + - 0: key deleted successfully - 1: key not found - 2: connection to the artifacts server failed @@ -429,7 +429,7 @@ The test-results CLI is open-sourced and available on [semaphoreci/test-results] ### Merging test results {#test-result-merge} -To use the test result feature you must add the following command at the end of every test job. +To use the test result feature you must add the following command at the end of every test job. The syntax is: @@ -493,5 +493,5 @@ kubectl apply -f deployment.yml ## See also - [Semaphore command line tool reference](./semaphore-cli) -- [Working with Docker](../using-semaphore/optimization/docker) +- [Working with Docker](../using-semaphore/containers/docker) - [Environment variable reference](./env-vars) diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/optimization/cache.md b/docs/versioned_docs/version-CE/using-semaphore/cache.md similarity index 83% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/optimization/cache.md rename to docs/versioned_docs/version-CE/using-semaphore/cache.md index 5b10fb66c..1d51e5976 100644 --- a/docs/versioned_docs/version-CE-1.1/using-semaphore/optimization/cache.md +++ b/docs/versioned_docs/version-CE/using-semaphore/cache.md @@ -17,14 +17,14 @@ The cache provides fast and convenient storage for your jobs. Use the cache to s ## Overview -Semaphore provides a [cache tool](../../reference/toolbox#cache) in all jobs to reuse files your project depends on but are not part of the repository. +Semaphore provides a [cache tool](../reference/toolbox#cache) in all jobs to reuse files your project depends on but are not part of the repository. Typical uses of the cache are: - to propagate a file from one block to the next - to reuse dependencies that are normally downloaded from the internet, like NPM modules -Semaphore creates a separate cache for every [project](../projects). For jobs running on Semaphore Cloud, the total cache size is 9.6GB. Older files are automatically deleted after 30 days or when the cache fills up. +Semaphore creates a separate cache for every [project](./projects). For jobs running on Semaphore Cloud, the total cache size is 9.6GB. Older files are automatically deleted after 30 days or when the cache fills up. :::note @@ -53,7 +53,6 @@ The cache tools recognize the following languages and dependency managers. See [ When using one of the supported dependency managers: - 1. Run `cache restore` to restore the latest files from the cache @@ -73,6 +72,7 @@ cache restore npm install cache store ``` + @@ -92,12 +92,13 @@ cache restore bundle install --path vendor/bundle cache store ``` + :::warning -Avoid using `cache store` in the [prologue](../pipelines#prologue) as this can cause file corruption due to multiple jobs trying to write the same key simultaneously. Instead, use `cache store` in the individual job commands. +Avoid using `cache store` in the [prologue](./pipelines#prologue) as this can cause file corruption due to multiple jobs trying to write the same key simultaneously. Instead, use `cache store` in the individual job commands. ::: @@ -121,7 +122,7 @@ cache restore Where keys are again a comma-separated lists of keys. Semaphore searches for the keys in the order provided and restores the first match to the working directory. -### Using multiple keys +### Using multiple keys It's recommended to use multiple keys to increase the chances of matching a key. The following example uses two keys: @@ -183,7 +184,7 @@ cache clear ## Custom backends {#custom-backends} -The cache storage is available for all Semaphore Cloud users. If you're running a different version such as On-Premise or [self-hosted agents](../self-hosted), the cache might not be available. +The cache storage is available for all Semaphore Cloud users. If you're running a different version such as On-Premise or [self-hosted agents](./self-hosted), the cache might not be available. For these cases, you need to provide storage. This section explains how to configure custom storage in other platforms. @@ -195,11 +196,11 @@ To provision the storage, follow these steps: -1. Create and configure an S3 bucket as explained in [How to set up caching on self-hosted agents](../self-hosted-configure#aws-cache) -2. Configure the following [environment variables](../jobs#environment-variables) in your job +1. Create and configure an S3 bucket as explained in [How to set up caching on self-hosted agents](./self-hosted-configure#aws-cache) +2. Configure the following [environment variables](./jobs#environment-variables) in your job - `SEMAPHORE_CACHE_BACKEND` set its value to "s3" - `SEMAPHORE_CACHE_S3_BUCKET` set its value to the S3 bucket name -3. Create a [secret](../secrets) with the following credentials +3. Create a [secret](./secrets) with the following credentials - `AWS_ACCESS_KEY_ID`: the key for an IAM account with access to the bucket - `AWS_SECRET_ACCESS_KEY`: the secret key for the account - `AWS_DEFAULT_REGION`: the region where the bucket is located @@ -215,7 +216,7 @@ To provision storage, follow these steps 1. [Create a Google Cloud Bucket](https://cloud.google.com/storage/docs/creating-buckets) -2. Configure the following [environment variables](../jobs#environment-variables) in your job +2. Configure the following [environment variables](./jobs#environment-variables) in your job - `SEMAPHORE_CACHE_BACKEND` set it to "gcs" - `SEMAPHORE_CACHE_GCS_BUCKET` set it to your Google Cloud bucket name 3. Provide the Google Cloud Application Default Credentials. See [How Application Default Credentials work](https://cloud.google.com/docs/authentication/application-default-credentials) to learn more @@ -226,16 +227,16 @@ To provision storage, follow these steps You can provide an SFTP server to provide custom storage for the cache. -To use SFTP, define the following [environment variables](../jobs#environment-variables) in your job: +To use SFTP, define the following [environment variables](./jobs#environment-variables) in your job: - `SEMAPHORE_CACHE_BACKEND`: set its value to "sftp" - `SEMAPHORE_CACHE_URL`: the IP address and port number of the SFTP server, e.g. "1.2.3.4:29920" - `SEMAPHORE_CACHE_USERNAME`: the username used to connect to the server - `SEMAPHORE_CACHE_PRIVATE_KEY_PATH`: the path of the private SSH key used to connect to the SFTP server -In addition, you must create a [secret](../secrets) to store the private SSH key and expose it inside the job. +In addition, you must create a [secret](./secrets) to store the private SSH key and expose it inside the job. ## See also -- [Using cache in jobs](../jobs#cache) -- [Cache toolbox reference](../../reference/toolbox#cache) +- [Using cache in jobs](./jobs#cache) +- [Cache toolbox reference](../reference/toolbox#cache) diff --git a/docs/versioned_docs/version-CE/using-semaphore/connect-git-server.md b/docs/versioned_docs/version-CE/using-semaphore/connect-git-server.md index fc31d62ba..1bdaca63f 100644 --- a/docs/versioned_docs/version-CE/using-semaphore/connect-git-server.md +++ b/docs/versioned_docs/version-CE/using-semaphore/connect-git-server.md @@ -91,7 +91,7 @@ To connect with this method, press the **Create new** button. 5. SSH into the Git server add the SSH key copied in the previous step to `$HOME/.ssh/authorized_keys` (relative to the user that runs the Git service) and press **Continue** -6. Back in Sempahore, press the **Generate Script** button +6. Back in Semaphore, press the **Generate Script** button
Show me diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/optimization/_category_.json b/docs/versioned_docs/version-CE/using-semaphore/containers/_category_.json similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/optimization/_category_.json rename to docs/versioned_docs/version-CE/using-semaphore/containers/_category_.json diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/optimization/container-registry.md b/docs/versioned_docs/version-CE/using-semaphore/containers/container-registry.md similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/optimization/container-registry.md rename to docs/versioned_docs/version-CE/using-semaphore/containers/container-registry.md diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/optimization/docker.md b/docs/versioned_docs/version-CE/using-semaphore/containers/docker.md similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/optimization/docker.md rename to docs/versioned_docs/version-CE/using-semaphore/containers/docker.md diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/add-metric.jpg b/docs/versioned_docs/version-CE/using-semaphore/containers/img/add-metric.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/add-metric.jpg rename to docs/versioned_docs/version-CE/using-semaphore/containers/img/add-metric.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/change-skip-vs-run.jpg b/docs/versioned_docs/version-CE/using-semaphore/containers/img/change-skip-vs-run.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/change-skip-vs-run.jpg rename to docs/versioned_docs/version-CE/using-semaphore/containers/img/change-skip-vs-run.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/custom-create.jpg b/docs/versioned_docs/version-CE/using-semaphore/containers/img/custom-create.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/custom-create.jpg rename to docs/versioned_docs/version-CE/using-semaphore/containers/img/custom-create.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/optimization/img/dockerhub-secret.jpg b/docs/versioned_docs/version-CE/using-semaphore/containers/img/dockerhub-secret.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/optimization/img/dockerhub-secret.jpg rename to docs/versioned_docs/version-CE/using-semaphore/containers/img/dockerhub-secret.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/freq-cd.jpg b/docs/versioned_docs/version-CE/using-semaphore/containers/img/freq-cd.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/freq-cd.jpg rename to docs/versioned_docs/version-CE/using-semaphore/containers/img/freq-cd.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/freq-ci.jpg b/docs/versioned_docs/version-CE/using-semaphore/containers/img/freq-ci.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/freq-ci.jpg rename to docs/versioned_docs/version-CE/using-semaphore/containers/img/freq-ci.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/insights-settings.jpg b/docs/versioned_docs/version-CE/using-semaphore/containers/img/insights-settings.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/insights-settings.jpg rename to docs/versioned_docs/version-CE/using-semaphore/containers/img/insights-settings.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/insights-tab.jpg b/docs/versioned_docs/version-CE/using-semaphore/containers/img/insights-tab.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/insights-tab.jpg rename to docs/versioned_docs/version-CE/using-semaphore/containers/img/insights-tab.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/new-metric.jpg b/docs/versioned_docs/version-CE/using-semaphore/containers/img/new-metric.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/new-metric.jpg rename to docs/versioned_docs/version-CE/using-semaphore/containers/img/new-metric.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/org-health-location.jpg b/docs/versioned_docs/version-CE/using-semaphore/containers/img/org-health-location.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/org-health-location.jpg rename to docs/versioned_docs/version-CE/using-semaphore/containers/img/org-health-location.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/org-health-overview.jpg b/docs/versioned_docs/version-CE/using-semaphore/containers/img/org-health-overview.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/org-health-overview.jpg rename to docs/versioned_docs/version-CE/using-semaphore/containers/img/org-health-overview.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/perf-cd.jpg b/docs/versioned_docs/version-CE/using-semaphore/containers/img/perf-cd.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/perf-cd.jpg rename to docs/versioned_docs/version-CE/using-semaphore/containers/img/perf-cd.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/perf-ci.jpg b/docs/versioned_docs/version-CE/using-semaphore/containers/img/perf-ci.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/perf-ci.jpg rename to docs/versioned_docs/version-CE/using-semaphore/containers/img/perf-ci.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/rel-cd.jpg b/docs/versioned_docs/version-CE/using-semaphore/containers/img/rel-cd.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/rel-cd.jpg rename to docs/versioned_docs/version-CE/using-semaphore/containers/img/rel-cd.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/rel-ci.jpg b/docs/versioned_docs/version-CE/using-semaphore/containers/img/rel-ci.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/rel-ci.jpg rename to docs/versioned_docs/version-CE/using-semaphore/containers/img/rel-ci.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/select-date-range.jpg b/docs/versioned_docs/version-CE/using-semaphore/containers/img/select-date-range.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/select-date-range.jpg rename to docs/versioned_docs/version-CE/using-semaphore/containers/img/select-date-range.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/optimization/img/workflow-monorepo.jpg b/docs/versioned_docs/version-CE/using-semaphore/containers/img/workflow-monorepo.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/optimization/img/workflow-monorepo.jpg rename to docs/versioned_docs/version-CE/using-semaphore/containers/img/workflow-monorepo.jpg diff --git a/docs/versioned_docs/version-CE/using-semaphore/img/rerun-pipeline.jpg b/docs/versioned_docs/version-CE/using-semaphore/img/rerun-pipeline.jpg new file mode 100644 index 000000000..c6c910239 Binary files /dev/null and b/docs/versioned_docs/version-CE/using-semaphore/img/rerun-pipeline.jpg differ diff --git a/docs/versioned_docs/version-CE/using-semaphore/img/trigger-draft-pull-request.jpg b/docs/versioned_docs/version-CE/using-semaphore/img/trigger-draft-pull-request.jpg new file mode 100644 index 000000000..003dd1e63 Binary files /dev/null and b/docs/versioned_docs/version-CE/using-semaphore/img/trigger-draft-pull-request.jpg differ diff --git a/docs/versioned_docs/version-CE/using-semaphore/jobs.md b/docs/versioned_docs/version-CE/using-semaphore/jobs.md index 6a18565cd..981abe274 100644 --- a/docs/versioned_docs/version-CE/using-semaphore/jobs.md +++ b/docs/versioned_docs/version-CE/using-semaphore/jobs.md @@ -1074,7 +1074,7 @@ To use a job matrix, follow these steps: -The following example runs a 2 x 3 matrix with variables `NODE_VER` and `PKG_MNGR`. Semaphore expands the job into 6 parametererized jobs: +The following example runs a 2 x 3 matrix with variables `NODE_VER` and `PKG_MNGR`. Semaphore expands the job into 6 parameterized jobs: ```yaml version: v1.0 diff --git a/docs/versioned_docs/version-CE/using-semaphore/organizations.md b/docs/versioned_docs/version-CE/using-semaphore/organizations.md index 5b3f7496a..0db670b9e 100644 --- a/docs/versioned_docs/version-CE/using-semaphore/organizations.md +++ b/docs/versioned_docs/version-CE/using-semaphore/organizations.md @@ -35,7 +35,7 @@ To manage users in your Semaphore instance, open the server menu and select **Pe ### How to create users {#add-people} -To create new accounts, go to the poeple option in the server menu and follow these steps: +To create new accounts, go to the people option in the server menu and follow these steps: @@ -59,7 +59,7 @@ To create new accounts, go to the poeple option in the server menu and follow th ### How to change a user role {#role-change} -To change user roles, go to the poeple option in the server menu and follow these steps: +To change user roles, go to the people option in the server menu and follow these steps: @@ -76,7 +76,7 @@ To change user roles, go to the poeple option in the server menu and follow thes ### How to reset a user password {#reset-password} -To reset a user password, go to the poeple option in the server menu and follow these steps: +To reset a user password, go to the people option in the server menu and follow these steps: diff --git a/docs/versioned_docs/version-CE/using-semaphore/pipelines.md b/docs/versioned_docs/version-CE/using-semaphore/pipelines.md index c485b942a..3dc8cc687 100644 --- a/docs/versioned_docs/version-CE/using-semaphore/pipelines.md +++ b/docs/versioned_docs/version-CE/using-semaphore/pipelines.md @@ -4,7 +4,6 @@ description: Connect blocks to get things done # Pipelines - import Tabs from '@theme/Tabs'; import TabItem from '@theme/TabItem'; import Available from '@site/src/components/Available'; @@ -13,12 +12,11 @@ import Steps from '@site/src/components/Steps'; A pipeline is a group of connected blocks. This page explains what pipelines are, how they organize workflow execution order, and what settings are available. In this page, the terms organization, server, and instance are used interchangeably. - ## Overview {#overview} Pipelines are groups of blocks that can be connected via dependencies to define their execution order. -Pipelines are also the *unit of configuration*. Each pipeline is encoded as separate a YAML file in the `.semaphore` folder. +Pipelines are also the *unit of configuration*. Each pipeline is encoded as separate a YAML file in the `.semaphore` folder. For reference, here is an example pipeline with its respective YAML. @@ -141,9 +139,18 @@ Here you can see the how spc evaluated the pipeline and all the actions taken du ![Example init job log](./img/init-log-example.jpg) +## Pipeline rebuild {#rebuild} + +When a job in the pipeline fails, the default behavior is to stop the pipeline. You can attempt to re-run the pipeline in two ways: + +- Pressing **Rerun** restarts the whole pipeline from the beginning +- Pressing **Rebuild Pipeline** only re-runs the blocks with failed jobs + +![Location of rerun and rebuild buttons](./img/rerun-pipeline.jpg) + ## Pipeline settings {#settings} -Pipeline settings are applied to all its blocks. You can change pipeline settings with the editor or directly in the YAML. +Pipeline settings are applied to all its blocks. You can change pipeline settings with the editor or directly in the YAML. ### Agents {#agents} @@ -168,13 +175,12 @@ To select the agent running your jobs in a pipeline: - 1. Add the `agent` and `machine` keys -2. Add the hardware `type`. The default is `s1-kubernetes`, which is the [self-hosted agent](./self-hosted) built-in in the Sempahore server +2. Add the hardware `type`. The default is `s1-kubernetes`, which is the [self-hosted agent](./self-hosted) built-in in the Semaphore server 3. Leave `os_image` empty -4. Add the `containers` key, this contains a list with keys `name` and `image`. The first container must have `name = main` and the image is the Docker image where the jobs run +4. Add the `containers` key, this contains a list with keys `name` and `image`. The first container must have `name = main` and the image is the Docker image where the jobs run @@ -207,13 +213,13 @@ blocks: :::tip -If you want to build and run Docker images in your jobs, check the [working with Docker page](./optimization/docker). +If you want to build and run Docker images in your jobs, check the [working with Docker page](./containers/docker). ::: Jobs can run inside Docker containers. This allows you to define a custom-build environment with pre-installed tools and dependencies needed for your project. You can enable this setting in the pipeline agent or in the [block agent override](./jobs#agent-override). -You can run multiple containers at the same time. The job runs in the first container (called `main`) and attaches the other containers to the same network. This is similar to how containers inside a Kubernetes pod communicate. +You can run multiple containers at the same time. The job runs in the first container (called `main`) and attaches the other containers to the same network. This is similar to how containers inside a Kubernetes pod communicate. The network addresses of all containers are mapped to their names. Let's say you have two containers, "main" and "mysql", you can connect to the database from main with: @@ -290,7 +296,7 @@ To use images in private repositories see [Private Docker Registries](#docker-pr :::info -Semaphore provides a [public Docker registry](./optimization/container-registry) for popular images. +Semaphore provides a [public Docker registry](./containers/container-registry) for popular images. ::: @@ -396,6 +402,7 @@ blocks: commands: - npm run build ``` + @@ -442,6 +449,7 @@ blocks: commands: - npm run build ``` + @@ -561,10 +569,10 @@ blocks: commands: - npm run build ``` + - ### YAML file path {#yaml-path} This option overrides the location of the pipeline file. This option is not available for the default pipeline (located at `.semaphore/semaphore.yml`). @@ -666,7 +674,6 @@ after_pipeline: - ## Private Docker Registries {#docker-private} If the images you need for your [docker environment](#docker-environments) are not publicly available, you need to provide authentication credentials in your pipeline. This feature is only available by editing the pipeline YAML directly. @@ -734,7 +741,6 @@ To pull images from a private AWS Elastic Container Registry (ECR), follow these ### Images in Google GCR {#docker-gcr} - To pull images from a private Google Container Registry (GCR), follow these steps: @@ -835,7 +841,7 @@ Queues allow you to control the order in which pipelines run. Semaphore pipeline ### Default and named queues {#named-queues} -Semaphore creates a queue for each Git push or pull requests. All workflows sharing the same commit SHA belong in the same queue and run sequentially. +Semaphore creates a queue for each Git push or pull requests. All workflows sharing the same commit SHA belong in the same queue and run sequentially. In other words, every time you re-run a workflow, create a pull request, push a tag, the pipeline is added to the end of the same-commit queue. @@ -960,7 +966,7 @@ blocks: ### Conditional queues {#conditional-queues} -You can use conditional statements to assign pipelines based on parameters like branch name or tag name. +You can use conditional statements to assign pipelines based on parameters like branch name or tag name. The following example uses three rules: @@ -1045,7 +1051,6 @@ To change the global time limit for all jobs in a pipeline, follow these steps: - 1. Open the pipeline YAML diff --git a/docs/versioned_docs/version-CE/using-semaphore/recipes/img/infracost-key-secret.jpg b/docs/versioned_docs/version-CE/using-semaphore/recipes/img/infracost-key-secret.jpg new file mode 100644 index 000000000..f825c51b3 Binary files /dev/null and b/docs/versioned_docs/version-CE/using-semaphore/recipes/img/infracost-key-secret.jpg differ diff --git a/docs/versioned_docs/version-CE/using-semaphore/recipes/img/infracost-secret.jpg b/docs/versioned_docs/version-CE/using-semaphore/recipes/img/infracost-secret.jpg new file mode 100644 index 000000000..38bdd2c80 Binary files /dev/null and b/docs/versioned_docs/version-CE/using-semaphore/recipes/img/infracost-secret.jpg differ diff --git a/docs/versioned_docs/version-CE/using-semaphore/recipes/infracost.md b/docs/versioned_docs/version-CE/using-semaphore/recipes/infracost.md new file mode 100644 index 000000000..ed8c227ec --- /dev/null +++ b/docs/versioned_docs/version-CE/using-semaphore/recipes/infracost.md @@ -0,0 +1,195 @@ +--- +description: Implement FinOps in your pipeline with Infracost +sidebar_position: 1 +--- + +# Infracost FinOps + +The Infracost CLI tool parses Terraform files and estimates costs for your infrastructure. + +## Overview + +This guide will show you how to: + +- Run the Infracost CLI in Semaphore +- Comment Git commits with cost deltas +- Comment pull requests with cost deltas +- Fail the CI pipeline if costs exceed a custom-defined policy + +## Prerequisites + +For this guide, you will need the following: + +- [A working Semaphore project](../projects) with a CI pipeline +- At least one [Terraform](https://developer.hashicorp.com/terraform) file in your project +- An [Infracost](https://www.infracost.io/) API key. You must sign up with a free account to obtain it +- A GitHub, Bitbucket, or GitLab API key with permission to write comments in the repository + +## Adding a baseline to the repository + +In order to estimate deviations from the expected cost, you must store a baseline file in your repository. The following command will generate `baseline.json` based on all the Terraform files found in your project folder: + +```shell +infracost breakdown --path . --format json --out-file baseline.json +``` + +Now you can push `baseline.json` into your repository. + +## Storing the API keys in secrets + +Follow the [Infracost getting started guide](https://www.infracost.io/docs/) to install the CLI tool on your machine and obtain an API key. Create a [secret](../secrets) in Semaphore to store it: + +![Infracost API key secret](./img/infracost-key-secret.jpg) + +Create a token for your Git provider: + +- **GitHub**: [create a token](https://github.com/settings/tokens) with write permissions on your repository +- **BitBucket**: [create an app password](https://support.atlassian.com/bitbucket-cloud/docs/app-passwords/) with write permissions +- **GitLab**: [create an access token](https://docs.gitlab.com/user/profile/personal_access_tokens/) with `write_repository` permissions + +Store the access token in Semaphore: + +![GitHub Token Secret](./img/infracost-secret.jpg) + +## Adding cost estimates to commits + +When Infracost runs in your CI/CD workflow, it can post comments in commits and pull requests with the estimated cost difference from the baseline or between branches. + +### Estimates on GitHub + +Before you can calculate cost differences in commits or peer reviews, you need to establish a baseline. If you have any usage-based resources such as serverless functions, you need to first create an [usage file](https://www.infracost.io/docs/features/usage_based_resources/). + +```shell +infracost breakdown --sync-usage-file --usage-file usage.yml --path . +``` + +Now, edit `usage.yml` to add your usage estimates for the moth. + +Next, you're ready to create a baseline file. Skip `--usage-file` if you're not using any usage-based cloud resources: + +```shell +infracost breakdown --path . --format json --usage-file usage.yml --out-file baseline.json +``` + +After checking in all the new files into the repository, edit the pipeline to run the cost analysis. Use the following commands in your CI job to post a comment on GitHub with the cost delta between the current commit and the baseline: + +```shell +curl -fsSL https://raw.githubusercontent.com/infracost/infracost/master/scripts/install.sh | sh +checkout +infracost diff --path . --format json --compare-to baseline.json --out-file /tmp/infracost-diff-commit.json +infracost comment github --path=/tmp/infracost-diff-commit.json --repo=$SEMAPHORE_GIT_REPO_SLUG --commit=$SEMAPHORE_GIT_SHA --github-token=$GITHUB_TOKEN --behavior=update +``` + +### Commenting on BitBucket + +Use the following command in a job to comment on BitBucket the difference in cost between the current commit and the baseline: + +```shell +curl -fsSL https://raw.githubusercontent.com/infracost/infracost/master/scripts/install.sh | sh +checkout +infracost diff --path . --format json --compare-to baseline.json --out-file /tmp/infracost-diff-commit.json +infracost comment bitbucket --path=/tmp/infracost-diff-commit.json --repo=$SEMAPHORE_GIT_REPO_SLUG --commit=$SEMAPHORE_GIT_SHA --bitbucket-token=$BITBUCKET_TOKEN --behavior=update +``` + +### Commenting on GitLab + +Use the following command in a job to comment on GitLab the difference in cost between the current commit and the baseline: + +```shell +curl -fsSL https://raw.githubusercontent.com/infracost/infracost/master/scripts/install.sh | sh +checkout +infracost diff --path . --format json --compare-to baseline.json --out-file /tmp/infracost-diff-commit.json +infracost comment gitlab --path=/tmp/infracost-diff-commit.json --repo=$SEMAPHORE_GIT_REPO_SLUG --commit=$SEMAPHORE_GIT_SHA --gitlab-token=$GITLAB_TOKEN --behavior=update +``` + +## Adding cost estimate to pull requests + +A separate job can also be created to post comment on pull requests. This allows the reviewer to quickly assess the cost changes between branches. + +### Estimates on GitHub + +The following example calculates the cost change between the master and the branch that triggered the workflow in GitHub: + +```shell +curl -fsSL https://raw.githubusercontent.com/infracost/infracost/master/scripts/install.sh | sh +checkout +git checkout master +infracost breakdown --path . --format json --out-file /tmp/infracost-master.json +git checkout FETCH_HEAD +infracost diff --path . --format json --compare-to /tmp/infracost-master.json --out-file /tmp/infracost-diff-master.json +infracost comment github --path=/tmp/infracost-diff-master.json --repo=$SEMAPHORE_GIT_REPO_SLUG --pull-request=$SEMAPHORE_GIT_PR_NUMBER --github-token=$GITHUB_TOKEN --behavior=update +``` + +### Estimates on BitBucket + +The following example calculates the cost change between the master and the branch that triggered the workflow in BitBucket: + +```shell +curl -fsSL https://raw.githubusercontent.com/infracost/infracost/master/scripts/install.sh | sh +checkout +git checkout master +infracost breakdown --path . --format json --out-file /tmp/infracost-master.json +git checkout FETCH_HEAD +infracost diff --path . --format json --compare-to /tmp/infracost-master.json --out-file /tmp/infracost-diff-master.json +infracost comment bitbucket --path=/tmp/infracost-diff-master.json --repo=$SEMAPHORE_GIT_REPO_SLUG --pull-request=$SEMAPHORE_GIT_PR_NUMBER --bitbucket-token=$BITBUCKET_TOKEN --behavior=update +``` + +### Estimates on GitLab + +The following example calculates the cost change between the master and the branch that triggered the workflow in GitLab: + +```shell +curl -fsSL https://raw.githubusercontent.com/infracost/infracost/master/scripts/install.sh | sh +checkout +git checkout master +infracost breakdown --path . --format json --out-file /tmp/infracost-master.json +git checkout FETCH_HEAD +infracost diff --path . --format json --compare-to /tmp/infracost-master.json --out-file /tmp/infracost-diff-master.json +infracost comment gitlab --path=/tmp/infracost-diff-master.json --repo=$SEMAPHORE_GIT_REPO_SLUG --pull-request=$SEMAPHORE_GIT_PR_NUMBER --gitlab-token=$GITLAB_TOKEN --behavior=update +``` + +## Enforcing policies + +Infracost can be used to enforce cost policies with continuous integration. When a policy is used, the Infracost CLI will return a non-zero exit status, stopping the pipeline and preventing a deployment that would run over the budget. + +First, we must create a policy file and push it into the repository. To learn about the policy syntax, read the [cost policies docs](https://www.infracost.io/docs/features/cost_policies/) on Infracost. + +The following example sets a maximum budget of USD 1000 per month: + +```rego +# policy.rego + +package infracost + +deny[out] { + + # define a variable + maxMonthlyCost = 1000.0 + + msg := sprintf( + "Total monthly cost must be less than $%.2f (actual cost is $%.2f)", + [maxMonthlyCost, to_number(input.totalMonthlyCost)], + ) + + out := { + "msg": msg, + "failed": to_number(input.totalMonthlyCost) >= maxMonthlyCost + } +} +``` + +To evaluate the policy file, you must add the `--policy-path POLICY_FILENAME` option to any of the comment commands. For example: + +```shell +# calculate difference between commit and baseline +infracost diff --path . --format json --compare-to baseline.json --out-file /tmp/infracost-diff-commit.json + +# enforce policy +infracost comment github --path=/tmp/infracost-diff-commit.json --repo=$SEMAPHORE_GIT_REPO_SLUG --commit=$SEMAPHORE_GIT_SHA --github-token=$GITHUB_API_KEY --behavior=update +``` + +## Tips for using Infracost + +- You can use [monorepo conditions](../monorepo) like `change_in('/**/*.tf')` or `change_in('/**/*.tfvars')` to run Infracost only when Terraform files change +- You can create a [config file](https://www.infracost.io/docs/features/config_file/) manage [monorepo workflows](../monorepo) provide utilization forecast for per-usage services such as AWS lambda +- You can add a [badge](https://www.infracost.io/docs/infracost_cloud/readme_badge/) to your repository with the estimated monthly cost diff --git a/docs/versioned_docs/version-CE/using-semaphore/recipes/trivy.md b/docs/versioned_docs/version-CE/using-semaphore/recipes/trivy.md new file mode 100644 index 000000000..af92c3bed --- /dev/null +++ b/docs/versioned_docs/version-CE/using-semaphore/recipes/trivy.md @@ -0,0 +1,152 @@ +--- +description: Open source security scans in your CI pipelines +sidebar_position: 2 +--- + +# Trivy Vulnerability Scanning + +import Tabs from '@theme/Tabs'; +import TabItem from '@theme/TabItem'; +import Available from '@site/src/components/Available'; +import VideoTutorial from '@site/src/components/VideoTutorial'; +import Steps from '@site/src/components/Steps'; + +This page explains how to run the open source [Trivy security scanner](https://github.com/aquasecurity/trivy) in Semaphore. + +## Overview + +Trivy is a comprehensive security scanner that detects various security issues across different targets. + +It can scan: + +- container images +- software dependencies +- Git repositories +- VM images and OS packages +- Kubernetes environments +- Infrastructure-as-Code (IaC) files +- filesystems for misconfigurations, leaked secrets, and license check + +Trivy works with most programming languages and operating systems. You can check if your stack is supported in the [Trivy scanning coverage page](https://trivy.dev/latest/docs/coverage/). + +## Install Trivy in Semaphore {#install} + +You must install Trivy in the CI environment or use a Docker image with Trivy already installed. + +To install Trivy in your CI environment, follow these steps: + + + +1. Find the [latest Trivy release](https://github.com/aquasecurity/trivy/releases) +2. Install Trivy using the package manager (or build from source) + + ```shell + # replace with the latest release + wget https://github.com/aquasecurity/trivy/releases/download/v0.65.0/trivy_0.65.0_Linux-32bit.deb + sudo dpkg -i trivy_0.65.0_Linux-32bit.deb + ``` + +3. Run Trivy to scan your project. Use the `--exit-code 1` option to exit with error when the scan detects a problem + + For example: + + ```shell + checkout + trivy fs --exit-code 1 . + ``` + + + +You must repeat Step 2 in every job that uses Trivy. Use the [prologue](../pipelines#prologue) if multiple jobs require Trivy. + +## Enabling the cache {#cache} + +Trivy keeps the last scans and vulnerability database in a local folder in the CI environment. You can speed up scanning jobs by caching this directory. + +Trivy stores its database in `$HOME/.cache/trivy` by default, you can change it by specifing the [`--cache-dir`](https://trivy.dev/latest/docs/configuration/cache/) option. To persist this directory, use the [cache](../cache) command. + +The following example runs a [file scan](#files) using the cache: + +```shell +cache restore trivy-db +trivy fs --exit-code 1 . +cache store trivy-db $HOME/.cache/trivy +``` + +You can use this pattern with all types of scanning. + +## Scan Files {#files} + +Trivy filesystem scan finds problems in your local directories. In the CI environment, you must run [`checkout`](../../reference/toolbox#checkout) to clone the repository in the CI machine. + +To run filesystem scan use `trivy fs`. +Filesystem scan can find: + +- vulnerabilies +- misconfigurations +- leaked secrets +- license checks + +### Vulnerabilities and leaked secrets {#vulnerabilities} + +To find vulnerabilities or leaked secrets in your code or dependencies, execute `trivy fs` as follows: + +```shell +checkout +trivy fs --exit-code 1 path/to/src +``` + +### Misconfigurations {#misconfigurations} + +By default, Trivy doesn't try to find misconfigurations, to enable this option, follow this example: + +```shell +checkout +trivy --scanners misconfig --exit-code 1 path/to/src +``` + +### License {#license} + +To perform [license scanning](https://trivy.dev/latest/docs/scanner/license/) execute Trivy as follows: + +```shell +checkout +trivy fs --scanners license --exit-code 1 path/to/src +``` + +## Scan Container images + +To scan your container images, including OS packages, use the following command. You might need to [authenticate with the Docker registry](../containers/docker#auth) first. + +```shell +docker pull IMAGE_NAME:TAG +trivy image --exit-code 1 IMAGE_NAME:TAG +``` + +As with filesystem scans, you can enable [misconfigurations](#misconfigurations) and [license](#license) scans in the container image. + +## Generate SBOM + +Trivy can generate a [Software Bill of Materials (SBOM)](https://trivy.dev/latest/docs/supply-chain/sbom/). + +For example, these command generate the SBOM using the CycloneDX format: + +```shell +checkout +trivy fs --format cyclonedx --output sbom.json path/to/src +artifact push workflow sbom.json +``` + +You can also generate SBOMs for Docker images with: + +```shell +docker pull IMAGE_NAME:TAG +trivy image --format cyclonedx --output sbom.json IMAGE_NAME:TAG +artifact push workflow sbom.json +``` + +## See also + +- [Trivy repository](https://github.com/aquasecurity/trivy) +- [Trivy Documentation](https://trivy.dev/latest/docs/) +- [Continuous Container Vulnerability Testing with Trivy](https://semaphore.io/blog/continuous-container-vulnerability-testing-with-trivy#h-vulnerability-testing-for-dependencies) diff --git a/docs/versioned_docs/version-CE/using-semaphore/self-hosted-aws.md b/docs/versioned_docs/version-CE/using-semaphore/self-hosted-aws.md index 92b95b966..01b0db3f9 100644 --- a/docs/versioned_docs/version-CE/using-semaphore/self-hosted-aws.md +++ b/docs/versioned_docs/version-CE/using-semaphore/self-hosted-aws.md @@ -275,7 +275,7 @@ See the [AWS stack parameters reference](../reference/agent-aws-stack) for all t ### Cache -See [setting up S3 cache](./optimization/cache#aws) to learn how to configure cache with AWS S3 buckets. +See [setting up S3 cache](./cache#aws) to learn how to configure cache with AWS S3 buckets. ### Autoscaling {#scale} diff --git a/docs/versioned_docs/version-CE/using-semaphore/self-hosted.md b/docs/versioned_docs/version-CE/using-semaphore/self-hosted.md index e8c451233..d30171ad6 100644 --- a/docs/versioned_docs/version-CE/using-semaphore/self-hosted.md +++ b/docs/versioned_docs/version-CE/using-semaphore/self-hosted.md @@ -59,7 +59,6 @@ Self-hosted agents use one-way communication to connect with Semaphore. Requests When the agent boots up it sends a register request using a registration token. If the registration succeeds, the agent receives an access token to be used in all future communications and enters the *waiting for job* state. - ```mermaid sequenceDiagram Agent->>+Semaphore: GET /register(registrationToken) @@ -130,7 +129,7 @@ Not all of the [Semaphore toolbox](../reference/toolbox) commands are available | Feature | Available | Notes | |---------------------------------------------|-----------|-------------------------------------------------| -| Using the [cache](../reference/toolbox#cache) | Optional | Using [S3](./optimization/cache#aws), [GCP](./optimization/cache#gcp), or [SFTP](./optimization/cache#sftp) as a storage backend | +| Using the [cache](../reference/toolbox#cache) | Optional | Using [S3](./cache#aws), [GCP](./cache#gcp), or [SFTP](./cache#sftp) as a storage backend | | [Artifact](./artifacts) storage | Yes | | | [Test results](./tests/test-reports) | Yes | | | Checking code with [checkout](../reference/toolbox#checkout) | Yes | | @@ -223,4 +222,3 @@ Keep in mind that: - [How to configure self-hosted agents](./self-hosted-configure) - [How to run an autoscaling fleet of agents in AWS](./self-hosted-aws) - [Self-hosted agents configuration reference](../reference/self-hosted-config) - diff --git a/docs/versioned_docs/version-CE/using-semaphore/workflows.md b/docs/versioned_docs/version-CE/using-semaphore/workflows.md index 6e9b91419..e6d3c5556 100644 --- a/docs/versioned_docs/version-CE/using-semaphore/workflows.md +++ b/docs/versioned_docs/version-CE/using-semaphore/workflows.md @@ -108,7 +108,10 @@ Selecting **Run on** allows you to configure what triggers are enabled for the p ::: -- Enabling **Pull requests** option allows Semaphore to run workflows on pull requests originating in the same repository +- Enabling **Pull requests** option allows Semaphore to run workflows on pull requests originating in the same repository. You can opt to disable triggering workflows on **draft pull requests** + +![Control how pull requests and draft pull requests are handled](./img/trigger-draft-pull-request.jpg) + - The **Forked pull request** works the same for pull requests originating from forked pull requests. [To prevent security leaks](#pr), you can configure a list of allowed secrets and GitHub/BitBucket usernames that can trigger workflows in this way ![Pull request triggers](./img/project-general-settings-3.jpg) diff --git a/docs/versioned_docs/version-CE-1.2/getting-started/_category_.json b/docs/versioned_docs/version-EE-1.3/getting-started/_category_.json similarity index 100% rename from docs/versioned_docs/version-CE-1.2/getting-started/_category_.json rename to docs/versioned_docs/version-EE-1.3/getting-started/_category_.json diff --git a/docs/versioned_docs/version-CE-1.2/getting-started/about-semaphore.md b/docs/versioned_docs/version-EE-1.3/getting-started/about-semaphore.md similarity index 78% rename from docs/versioned_docs/version-CE-1.2/getting-started/about-semaphore.md rename to docs/versioned_docs/version-EE-1.3/getting-started/about-semaphore.md index 831f3b97a..e70142098 100644 --- a/docs/versioned_docs/version-CE-1.2/getting-started/about-semaphore.md +++ b/docs/versioned_docs/version-EE-1.3/getting-started/about-semaphore.md @@ -12,7 +12,7 @@ Semaphore comes in two editions: - **[Semaphore Cloud](/getting-started/about-semaphore)**: is a cloud-based, fully-managed CI-as-a-Service platform. Meant for individuals and companies that don't wish to maintain a CI/CD system. Head to [semaphoreci.com](https://semaphore.io) to access Semaphore Cloud - **[Semaphore CE](/CE/getting-started/install)**: is the free and open-source Community Edition of Semaphore. Meant for anyone that wishes to host and manage their own CI/CD architecture. -- **On-premise (Enterprise Edition)**: fully-featured Semaphore that can run behind a firewall using your infrastructure +- [Semaphore EE](/EE/getting-started/install)): commercial, fully-featured Semaphore instance. Meant for companies who wishes to host and manage their own CI/CD architecture. See the [feature comparison](./features) to decide which edition of Semaphore is best for you. @@ -30,7 +30,9 @@ Continuous Delivery and Continuous Deployment extend this process by providing a ## Where to go next? -If you want to give Semaphore Cloud, head to the [Guided Tour](./guided-tour). If you prefer to self-host, see the [Community Edition installation guide](./install). +If you want to test Semaphore before installation, give [Semaphore Cloud](/getting-started/about-semaphore) a try for free. It has all the features and it does not require a credit card to sign up. + +To learn how to install, see the [Enterprise Edition installation guide](./install). Then, we recommend reading the [Guided Tour](./guided-tour) to get your bearings. You can find the complete Semaphore handbook in the [Using Semaphore](../using-semaphore/jobs) section. diff --git a/docs/versioned_docs/version-CE-1.2/getting-started/changelog.md b/docs/versioned_docs/version-EE-1.3/getting-started/changelog.md similarity index 100% rename from docs/versioned_docs/version-CE-1.2/getting-started/changelog.md rename to docs/versioned_docs/version-EE-1.3/getting-started/changelog.md diff --git a/docs/versioned_docs/version-CE-1.2/getting-started/experiments.md b/docs/versioned_docs/version-EE-1.3/getting-started/experiments.md similarity index 100% rename from docs/versioned_docs/version-CE-1.2/getting-started/experiments.md rename to docs/versioned_docs/version-EE-1.3/getting-started/experiments.md diff --git a/docs/versioned_docs/version-CE-1.1/getting-started/faq.md b/docs/versioned_docs/version-EE-1.3/getting-started/faq.md similarity index 92% rename from docs/versioned_docs/version-CE-1.1/getting-started/faq.md rename to docs/versioned_docs/version-EE-1.3/getting-started/faq.md index 1c17784b0..61dafb125 100644 --- a/docs/versioned_docs/version-CE-1.1/getting-started/faq.md +++ b/docs/versioned_docs/version-EE-1.3/getting-started/faq.md @@ -1,5 +1,5 @@ --- -description: Frequently Asked Questions +description: Frequently Asked Questions (EE) --- # FAQ @@ -14,20 +14,26 @@ This page contains Frequently Asked Questions. ## Architecture -### What's the difference between Semaphore Community Edition (CE) and Semaphore Cloud? +### What's the difference between Semaphore Enterprise Edition (EE) and Semaphore Cloud? - **Semaphore Cloud**: is a cloud-based, fully-managed CI-as-a-Service platform. Meant for individuals and companies that don't wish to maintain a CI/CD system. Head to semaphoreci.com to access Semaphore Cloud -- **Semaphore CE**: is the free and open-source Community Edition of Semaphore. Meant for anyone that wishes to host and manage their own CI/CD architecture. +- **Semaphore EE**: is a fully featured self-hostable version of Semaphore. Running Semaphore Enterprise Edition requires a [license](./license). -### Where can I run Semaphore CE? +### Where can I run Semaphore EE? -You can run Semaphore CE on any Linux machine or Kubernetes cluster. We provide detailed [installation instructions](./install.md) for popular cloud vendors and generic systems. +You can run Semaphore EE on any Linux machine or Kubernetes cluster. We provide detailed [installation instructions](./install.md) for popular cloud vendors and generic systems. + +### Help! My Semaphore installation is too slow + +First, check that your hardware meets the minimum requisites. See the [installation page](./install) to view what are the minimum hardware requisites. + +If your machines meet the minimum requisites and your Semaphore Enterprise Edition runs slowly or has timeout problems, ensure you have activated all hardware-virtualization features in your VM. Failure to activate the proper virtualization mode can result in a slow or unresponding service. ### Help! Docker fails with "toomanyrequests" This is commonly due to a rate-limit of third-party providers such as Docker Hub. These services limit how many unauthenticated pulls you can do in an hour, often based on IP. The machine or cluster running the jobs might have already tripped the IP rate limit. -You can bypass this issue by creating a free account on Docker Hub, and then [authenticating with Docker](../using-semaphore/optimization/docker#auth) within the job. This way, the [pulls are limited by your account (100 per hour)](https://docs.docker.com/docker-hub/usage/), and not by the IP of the machine. +You can bypass this issue by creating a free account on Docker Hub, and then [authenticating with Docker](../using-semaphore/containers/docker#auth) within the job. This way, the [pulls are limited by your account (100 per hour)](https://docs.docker.com/docker-hub/usage/), and not by the IP of the machine. :::tip @@ -48,7 +54,7 @@ Yes. To use a private Docker registry with a self-signed SSL certificate you mus This will allow a connection to a private remote registry using the provided certificate. -## Git, GitHub and BitBucket +## Git, GitHub, BitBucket, and GitLab ### Can I build a project with git submodules? @@ -62,6 +68,7 @@ Yes. To do that, follow these steps: git submodule init git submodule update ``` + 2. Append the these commands in the [epilogue](../using-semaphore/jobs#epilogue) ```shell @@ -70,11 +77,11 @@ Yes. To do that, follow these steps: -Make sure that Semaphore has permissions to clone your submodules repository. +Make sure that Semaphore has permissions to clone your submodules repository. ### Can I redeliver webhooks from Github to Semaphore? -Yes. Rarely Semaphore does not receive a webhook from GitHub. This results in a workflow not being triggered. When this happens, you can redeliver the webhook to trigger the workflow. +Yes. Rarely Semaphore does not receive a webhook from GitHub. This results in a workflow not being triggered. When this happens, you can redeliver the webhook to trigger the workflow. These are the steps to redeliver webhooks from Github: @@ -87,7 +94,7 @@ These are the steps to redeliver webhooks from Github: ### Can I send a comment on a pull request on GitHub from a workflow? -Yes. You can use the [GitHub API](https://docs.github.com/en/rest/issues?apiVersion=2022-11-28#create-an-issue-comment) to comment on pull requests. +Yes. You can use the [GitHub API](https://docs.github.com/en/rest/issues?apiVersion=2022-11-28#create-an-issue-comment) to comment on pull requests. For example: @@ -164,7 +171,7 @@ blocks: ### Can I change the timezone? -The default timezone is UTC. The timezone can be changed in 2 ways in Linux agents: +The default timezone is UTC. The timezone can be changed in 2 ways in Linux agents: - Assign a different value to the TZ environment variable: @@ -211,15 +218,13 @@ While an issue is ongoing, you might consider using a shorter [execution_time_li ::: - ### Why is my job failing if all commands have passed? This can happen because of code coverage tools, e.g. simplecov, which can be set to fail the test suite if a [minimum coverage level is not achieved](https://github.com/simplecov-ruby/simplecov#minimum-coverage). - ### Why are tests passing locally but not on Semaphore? -The main reason for this behavior is differences in the stacks. As a first step, ensure that the same versions of languages, services, tools, and frameworks such as Selenium, browser drivers, Capybara, Cypress are used both locally and in the CI environment. +The main reason for this behavior is differences in the stacks. As a first step, ensure that the same versions of languages, services, tools, and frameworks such as Selenium, browser drivers, Capybara, Cypress are used both locally and in the CI environment. If you are using Docker containers when performing tests, it's possible that, while the command itself runs instantly, the process will not be completely started, leading to certain endpoints not being available. Using a minimum `sleep 10` can help in this scenario. Cypress has a [wait-on](https://docs.cypress.io/guides/continuous-integration/introduction.html#Boot-your-server) module that provides similar functionality. @@ -231,7 +236,7 @@ You might be hitting the quota limitation. To see your activity across the serve 2. Select Activity Monitor 3. Check your agent usage, jobs won't start until a suitable agent is free -You can also run [`sem get jobs`](../reference/semaphore-cli#sem-get-job) to display all running jobs to confirm how much of the quota is being used. +You can also run [`sem get jobs`](../reference/semaphore-cli#sem-get-job) to display all running jobs to confirm how much of the quota is being used. ### Why does my job fail when I specify "exit 0" in commands? @@ -249,7 +254,6 @@ Some commands like `bash -e` or `set -x otrace` may override this behavior and m ::: - ## Project ### Can I transfer ownership of a project? @@ -268,8 +272,6 @@ To change the project ownership: After project ownership has been transferred, you need to push a new commit. Old workflows cannot be re-run after transferring ownership. -If you come across any issues, please reach out to support@semaphoreci.com and include the name of the project and the GitHub/Bitbucket username of the new owner in your message. - ### Can I rename a project? Yes. To do that, follow these steps: @@ -300,7 +302,6 @@ Deleting a project cannot be reversed. ::: - ### Can I change the visibility of a project? Yes. To make the project visible or private follow these steps: @@ -310,7 +311,6 @@ Yes. To make the project visible or private follow these steps: 3. Click the link next to **Public** or **Private** to toggle the visibility 4. Press **Save Changes** - ## Workflows ### How do I fix the error "Machine type and OS image for initialization job not available" @@ -328,13 +328,12 @@ If you are using a [filter for contributors](../using-semaphore/workflows#projec Approving forked pull requests is limited to new comments only and is not possible for comment edits. Due to security concerns, `/sem-approve` will work only once. Subsequent pushes to the forked pull request must be approved again. - ### How do I fix the error "Revision: COMMIT_SHA not found. Exiting" This happens when the repository receives pushed while Semaphore is still processing the incoming webhook. For example, when someone modifies or removes with a `git rebase` or `git commit --amend` command followed by a `git push --force` shortly after. You can prevent this error by enabling the [auto-cancel](../using-semaphore/pipelines#auto-cancel) option in the pipeline. - + ### Why are my workflows not running in parallel? Git pushes to the same branch are [queued](../using-semaphore/pipelines#pipeline-queues) by default. Pushes to different branches do run in parallel. You can use [named queues in your pipelines](../using-semaphore/pipelines#named-queues) to better control how workflows are parallelized or activate [auto-cancel](../using-semaphore/pipelines#auto-cancel) to stop running pipelines when new pushes arrive to the queue. @@ -393,4 +392,3 @@ Enabling the `set -e` option in the Bash shell causes autocomplete to fail and e ### Why are my secrets empty? We have discontinued exposing secret content via the CLI, API, and web interface to ensure enhanced security measures. Retrieval of secret values is now exclusively available through the job mechanism. - diff --git a/docs/versioned_docs/version-EE-1.3/getting-started/features.md b/docs/versioned_docs/version-EE-1.3/getting-started/features.md new file mode 100644 index 000000000..3b201b718 --- /dev/null +++ b/docs/versioned_docs/version-EE-1.3/getting-started/features.md @@ -0,0 +1,92 @@ +--- +description: Feature comparison between Semaphore editions +--- + +# Feature Comparison + +import Tabs from '@theme/Tabs'; +import TabItem from '@theme/TabItem'; +import Available from '@site/src/components/Available'; +import VideoTutorial from '@site/src/components/VideoTutorial'; +import Steps from '@site/src/components/Steps'; +import FeatureNotAvailable from '@site/src/components/FeatureNotAvailable'; + +This page compares the features available across all [Semaphore editions](./about-semaphore). + +## CI/CD Workflows + +| Feature | Semaphore Cloud | Semaphore CE | Semaphore EE | +|--|--|--|--| +| Visual editor | Yes | Yes | Yes | +| Artifacts | Yes | Yes | Yes | +| Tasks | Yes | Yes | Yes | +| SSH Debug | Yes | No | No | +| Cache | Yes | Yes | Yes | +| Monorepo support | Yes | Yes | Yes | +| Initialization jobs | Yes | Yes | Yes | +| Self-hosted agents | Yes | Yes | Yes | +| GitHub support | Yes | Yes | Yes | +| GitLab support | Yes | Yes | Yes | +| BitBucket support | Yes | Yes | Yes | +| Any Git Server support | No | Yes | Yes | +| Promotions | Yes | No | Yes | +| Parameterized promotions | Yes | No | Yes | +| Deployment targets | Yes | No | Yes | +| Pre-flight checks | Yes | No | Yes | +| sem-service & sem-version | Yes | No | No | + + +## Dashboards + +| Feature | Semaphore Cloud | Semaphore CE | Semaphore EE | +|--|--|--|--| +| Test reports | Yes | Yes | Yes | +| Markdown reports | Yes | Yes | Yes | +| Activity monitor | Yes | Yes | Yes | +| Custom Dashboards | Yes | No | Yes | +| Flaky tests | Yes | No | Yes | +| Project insights | Yes | No | Yes | +| Organization health | Yes | No | Yes | + + +## Security and compliance + +| Feature | Semaphore Cloud | Semaphore CE | Semaphore EE | +|--|--|--|--| +| Project-level secrets | Yes | Yes | Yes | +| Organization secrets | Yes | Yes | Yes | +| Policies for accessing secrets | Yes | No | Yes | +| Audit logs | Yes | No | Yes | + + +## User and permissions management + +| Feature | Semaphore Cloud | Semaphore CE | Semaphore EE | +|--|--|--|--| +| Multiple organizations | Yes | No | No | +| Invite users to your organization | Yes | Yes | Yes | +| Organization roles | Yes | Yes | Yes | +| Project roles | Yes | Yes (*) | Yes | +| User groups | Yes | No | Yes | +| Custom Roles | Yes | No | Yes | + +(*) Project roles exist but cannot be manually assigned to individual users. The role is assigned based on project membership and server roles. + +## Integrations + +| Feature | Semaphore Cloud | Semaphore CE | Semaphore EE | +|--|--|--|--| +| Repository status checks | Yes | Yes | Yes | +| Repository badges | Yes | Yes | Yes | +| Slack notifications | Yes | Yes | Yes | +| Webhook notifications | Yes | Yes | Yes | +| SAML/SCIM integrations | Yes | No | Yes | +| Okta integration | Yes | No | Yes | +| OpenID Connect | Yes | No | Yes | +| GitHub SSO | Yes | No | Yes | + +## See also + +- [Guided tour](./guided-tour) +- [Migration guides](./migration/overview) + diff --git a/docs/versioned_docs/version-CE-1.2/getting-started/guided-tour.md b/docs/versioned_docs/version-EE-1.3/getting-started/guided-tour.md similarity index 90% rename from docs/versioned_docs/version-CE-1.2/getting-started/guided-tour.md rename to docs/versioned_docs/version-EE-1.3/getting-started/guided-tour.md index ebfadf41c..a143e149f 100644 --- a/docs/versioned_docs/version-CE-1.2/getting-started/guided-tour.md +++ b/docs/versioned_docs/version-EE-1.3/getting-started/guided-tour.md @@ -12,7 +12,7 @@ import Steps from '@site/src/components/Steps'; Welcome 👋 Thank you for trying out Semaphore. -This 20-minute tutorial will give you 80% of the time needed to use Semaphore effectively. No strings attached. No credit card is required. This is our promise. +This 20-minute tutorial will give you 80% of the time needed to use Semaphore effectively. **What will you learn?** diff --git a/docs/versioned_docs/version-CE-1.2/getting-started/img/arch-semaphore.jpg b/docs/versioned_docs/version-EE-1.3/getting-started/img/arch-semaphore.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/getting-started/img/arch-semaphore.jpg rename to docs/versioned_docs/version-EE-1.3/getting-started/img/arch-semaphore.jpg diff --git a/docs/versioned_docs/version-CE-1.2/getting-started/img/first-login-organization.jpg b/docs/versioned_docs/version-EE-1.3/getting-started/img/first-login-organization.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/getting-started/img/first-login-organization.jpg rename to docs/versioned_docs/version-EE-1.3/getting-started/img/first-login-organization.jpg diff --git a/docs/versioned_docs/version-CE-1.2/getting-started/img/first-login.jpg b/docs/versioned_docs/version-EE-1.3/getting-started/img/first-login.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/getting-started/img/first-login.jpg rename to docs/versioned_docs/version-EE-1.3/getting-started/img/first-login.jpg diff --git a/docs/versioned_docs/version-CE-1.2/getting-started/img/flowchart.jpg b/docs/versioned_docs/version-EE-1.3/getting-started/img/flowchart.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/getting-started/img/flowchart.jpg rename to docs/versioned_docs/version-EE-1.3/getting-started/img/flowchart.jpg diff --git a/docs/versioned_docs/version-CE-1.2/getting-started/img/job-block-pipeline.jpg b/docs/versioned_docs/version-EE-1.3/getting-started/img/job-block-pipeline.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/getting-started/img/job-block-pipeline.jpg rename to docs/versioned_docs/version-EE-1.3/getting-started/img/job-block-pipeline.jpg diff --git a/docs/versioned_docs/version-CE-1.2/getting-started/img/on-boarding-guide.jpg b/docs/versioned_docs/version-EE-1.3/getting-started/img/on-boarding-guide.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/getting-started/img/on-boarding-guide.jpg rename to docs/versioned_docs/version-EE-1.3/getting-started/img/on-boarding-guide.jpg diff --git a/docs/versioned_docs/version-CE-1.2/getting-started/img/pipeline-execution-order.jpg b/docs/versioned_docs/version-EE-1.3/getting-started/img/pipeline-execution-order.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/getting-started/img/pipeline-execution-order.jpg rename to docs/versioned_docs/version-EE-1.3/getting-started/img/pipeline-execution-order.jpg diff --git a/docs/versioned_docs/version-CE-1.2/getting-started/img/spending-alert.jpg b/docs/versioned_docs/version-EE-1.3/getting-started/img/spending-alert.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/getting-started/img/spending-alert.jpg rename to docs/versioned_docs/version-EE-1.3/getting-started/img/spending-alert.jpg diff --git a/docs/versioned_docs/version-CE-1.2/getting-started/img/update-payment.jpg b/docs/versioned_docs/version-EE-1.3/getting-started/img/update-payment.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/getting-started/img/update-payment.jpg rename to docs/versioned_docs/version-EE-1.3/getting-started/img/update-payment.jpg diff --git a/docs/versioned_docs/version-CE-1.2/getting-started/img/workflows.jpg b/docs/versioned_docs/version-EE-1.3/getting-started/img/workflows.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/getting-started/img/workflows.jpg rename to docs/versioned_docs/version-EE-1.3/getting-started/img/workflows.jpg diff --git a/docs/versioned_docs/version-CE-1.1/getting-started/install-aws-ec2.md b/docs/versioned_docs/version-EE-1.3/getting-started/install-aws-ec2.md similarity index 90% rename from docs/versioned_docs/version-CE-1.1/getting-started/install-aws-ec2.md rename to docs/versioned_docs/version-EE-1.3/getting-started/install-aws-ec2.md index bd5ca4014..bcc159fec 100644 --- a/docs/versioned_docs/version-CE-1.1/getting-started/install-aws-ec2.md +++ b/docs/versioned_docs/version-EE-1.3/getting-started/install-aws-ec2.md @@ -21,6 +21,7 @@ The self-hosted installation is recommended for users and teams familiar with Se ## Prerequisites {#prerequisites} +- An Enterprise Edition [License](./license) - A DNS domain - An Amazon AWS account @@ -103,6 +104,7 @@ chmod 600 $AWS_SSH_KEY.pem You may skip this step if you already have a subnet configured for your EC2 instance. In that case, ensure the `aws-config` file is exporting the variable `SUBNET_ID`. + First, check what subnets you have configured: ```shell @@ -111,6 +113,7 @@ aws ec2 describe-subnets If required, create a subnet. The following example creates a subnet on the default CIDR block. Replace `vpc-8eb123f4` with your VPC ID, adjust the `--cidr-block as needed`, and choose an appropriate `--availability-zone` for your region. + ```shell aws ec2 create-subnet \ --vpc-id vpc-8eb123f4 \ @@ -118,6 +121,7 @@ aws ec2 create-subnet \ --availability-zone us-east-1a ``` + ## Step 4 - Create EC2 instance {#instance} Run the following commands to create your EC2 instance: @@ -232,6 +236,7 @@ You may skip this section if you already have wildcard certificates, e.g. `*.sem We can use [certbot](https://certbot.eff.org/) to create a free wildcard TLS certificate. Install certbot with the following command: + ```shell title="remote shell - install tools" sudo apt-get update sudo apt-get -y install certbot @@ -304,6 +309,7 @@ export KUBECONFIG=/etc/rancher/k3s/k3s.yaml ## Step 10 - Install Semaphore {#install} + We recommend running the following sanity checks to confirm you're ready for installation. The commands should not fail and return valid values. ```shell title="remote shell - check if ready to install" @@ -321,13 +327,15 @@ kubectl apply -f https://app.getambassador.io/yaml/emissary/3.9.1/emissary-crds. kubectl wait --timeout=90s --for=condition=available deployment emissary-apiext -n emissary-system ``` -Finally, install the Semaphore with Helm: +Finally, install Semaphore with Helm. This step assumes that you have copied your [license file](./license) into the machine. If you don't provide a license during installation, you can follow the [upgrade procedure] to install the license later and remove the missing license message. ```shell helm upgrade --install semaphore oci://ghcr.io/semaphoreio/semaphore \ --debug \ - --version v1.1.0 \ - --timeout 20m \ + --version v1.4.0 \ + --timeout 30m \ + --set global.edition=ee \ + --set global.license=$(cat path/to/license-file.txt) \ --set global.domain.ip=${IP_ADDRESS} \ --set global.domain.name=${DOMAIN} \ --set ingress.enabled=true \ @@ -348,14 +356,14 @@ To start using the app, go to https://id.semaphore.example.com/login You can fetch credentials for the login by running this command: -echo "Email: $(kubectl get secret root-user -n default -o jsonpath='{.data.email}' | base64 -d)"; echo "Password: $(kubectl get secret root-user -n default -o jsonpath='{.data.password}' | base64 -d)"; echo "API Token: $(kubectl get secret root-user -n default -o jsonpath='{.data.token}' | base64 -d)" +echo "Email: $(kubectl get secret semaphore-authentication -n default -o jsonpath='{.data.ROOT_USER_EMAIL}' | base64 -d)"; echo "Password: $(kubectl get secret semaphore-authentication -n default -o jsonpath='{.data.ROOT_USER_PASSWORD}' | base64 -d)"; echo "API Token: $(kubectl get secret semaphore-authentication -n default -o jsonpath='{.data.ROOT_USER_TOKEN}' | base64 -d)" ============================================================================================= ``` Execute the shown command to retrieve the login credentials. ```shell title="remote shell - get login credentials" -$ echo "Email: $(kubectl get secret root-user -n default -o jsonpath='{.data.email}' | base64 -d)"; echo "Password: $(kubectl get secret root-user -n default -o jsonpath='{.data.password}' | base64 -d)"; echo "API Token: $(kubectl get secret root-user -n default -o jsonpath='{.data.token}' | base64 -d)" +$ echo "Email: $(kubectl get secret semaphore-authentication -n default -o jsonpath='{.data.ROOT_USER_EMAIL}' | base64 -d)"; echo "Password: $(kubectl get secret semaphore-authentication -n default -o jsonpath='{.data.ROOT_USER_PASSWORD}' | base64 -d)"; echo "API Token: $(kubectl get secret semaphore-authentication -n default -o jsonpath='{.data.ROOT_USER_TOKEN}' | base64 -d)" Email: root@example.com Password: AhGg_2v6uHuy7hqvNmeLw0O4RqI= @@ -393,9 +401,9 @@ Once your have Semaphore up and running, check out the following pages to finish - [Invite users](../using-semaphore/organizations#people): invite users to your instance so they can start working on projects - [Add self-hosted agents](../using-semaphore/self-hosted): add more machines to scale up the capacity of your CI/CD platform -## How to Upgrade Semaphore {#upgrade} +## Upgrade Semaphore and renew license/certs {#upgrade} -To upgrade Semaphore from `v1.0.1`, follow these steps: +Follow these steps if you need to upgrade Semaphore, install a new [license](./license), or renew the TLS certificates. @@ -406,7 +414,6 @@ To upgrade Semaphore from `v1.0.1`, follow these steps: export KUBECONFIG=/etc/rancher/k3s/k3s.yaml kubectl get nodes ``` - 3. Load you configuration file and ensure the certificates are located in the right folder. See [Step 8](#certs) if you need to regenerate the certificates. ```shell @@ -415,6 +422,7 @@ To upgrade Semaphore from `v1.0.1`, follow these steps: echo "IP_ADDRESS=${IP_ADDRESS}" ls certs/live/${DOMAIN}/fullchain.pem ls certs/live/${DOMAIN}/privkey.pem + ls license*.txt ``` 4. Check the expiration date of the certificate. If it has expired, [regenerate the certificate](#certs) before upgrading @@ -423,13 +431,15 @@ To upgrade Semaphore from `v1.0.1`, follow these steps: openssl x509 -enddate -noout -in certs/live/${DOMAIN}/fullchain.pem ``` -5. Run the following command to upgrade to `v1.1.0` +5. Run the following command to upgrade to `v1.3.0`. This step assumes that you have copied your [license file](./license) into the machine ```shell helm upgrade --install semaphore oci://ghcr.io/semaphoreio/semaphore \ --debug \ - --version v1.1.0 \ + --version v1.3.0 \ --timeout 20m \ + --set global.edition=ee \ + --set global.license=$(cat path/to/license-file.txt) \ --set global.domain.ip=${IP_ADDRESS} \ --set global.domain.name=${DOMAIN} \ --set ingress.enabled=true \ @@ -490,3 +500,4 @@ aws ec2 terminate-instances --instance-ids $INSTANCE_ID - [Installation guide](./install.md) - [Getting started guide](./guided-tour) - [Migration guide](./migration/overview) + diff --git a/docs/versioned_docs/version-CE-1.1/getting-started/install-eks.md b/docs/versioned_docs/version-EE-1.3/getting-started/install-eks.md similarity index 81% rename from docs/versioned_docs/version-CE-1.1/getting-started/install-eks.md rename to docs/versioned_docs/version-EE-1.3/getting-started/install-eks.md index a1e18e50e..46b023e28 100644 --- a/docs/versioned_docs/version-CE-1.1/getting-started/install-eks.md +++ b/docs/versioned_docs/version-EE-1.3/getting-started/install-eks.md @@ -25,6 +25,12 @@ There is a known issue that blocks Docker on macOS. If you have trouble running ::: +## Prerequisites {#prerequisites} + +- An Enterprise Edition [License](./license) +- A DNS domain +- An Amazon AWS account + ## Step 1 - Install dependencies {#dependencies} Install the following tools before starting the installation: @@ -36,11 +42,12 @@ Install the following tools before starting the installation: In addition, you need to the domain where Semaphore will be installed to [Route53 DNS](https://aws.amazon.com/route53/). Take note of the **hosted Zone ID** for your domain within Route 53, for example, `Z05666441V6R4KFL4MJAA`, since it is used to create Semaphore infrastructure. + :::info Important We highly recommend **installing Semaphore on a subdomain**, e.g. `semaphore.example.com`. Installing Semaphore on your main domain is discouraged as its operation might interfere with other services running on the same domain. -For example, if your domain is `example.com`, consider using the domain `semaphore.example.com`. +For example, if your domain is `example.com`, consider using the domain `semaphore.example.com`. ::: @@ -74,6 +81,7 @@ export AWS_REGION="" export ZONE_ID="" ``` + Once you are done with the configuration, it should look like this: ```shell @@ -132,6 +140,7 @@ kubectl wait --timeout=90s --for=condition=available deployment emissary-apiext ## Step 6 - Install Semaphore {#install} + Sanity check that the environment is ready for the installation. The commands should not fail and return valid values: ```shell @@ -140,13 +149,15 @@ echo "DOMAIN=${DOMAIN}" echo "CERT_NAME=${CERT_NAME}" ``` -Install Semaphore with Helm: +Finally, install Semaphore with Helm. This step assumes that you have copied your [license file](./license) into the machine. If you don't provide a license during installation, you can follow the [upgrade procedure] to install the license later and remove the missing license message. ```shell helm upgrade --install semaphore oci://ghcr.io/semaphoreio/semaphore \ --debug \ - --version v1.1.0 \ - --timeout 20m \ + --version v1.4.0 \ + --timeout 30m \ + --set global.edition=ee \ + --set global.license=$(cat path/to/license-file.txt) \ --set global.domain.name="${DOMAIN}" \ --set ingress.ssl.certName="${CERT_NAME}" \ --set ingress.className=alb \ @@ -163,7 +174,7 @@ To start using the app, go to https://id.semaphore.example.com/login You can fetch credentials for the login by running this command: -echo "Email: $(kubectl get secret root-user -n default -o jsonpath='{.data.email}' | base64 -d)"; echo "Password: $(kubectl get secret root-user -n default -o jsonpath='{.data.password}' | base64 -d)"; echo "API Token: $(kubectl get secret root-user -n default -o jsonpath='{.data.token}' | base64 -d)" +echo "Email: $(kubectl get secret semaphore-authentication -n default -o jsonpath='{.data.ROOT_USER_EMAIL}' | base64 -d)"; echo "Password: $(kubectl get secret semaphore-authentication -n default -o jsonpath='{.data.ROOT_USER_PASSWORD}' | base64 -d)"; echo "API Token: $(kubectl get secret semaphore-authentication -n default -o jsonpath='{.data.ROOT_USER_TOKEN}' | base64 -d)" ============================================================================================= ``` @@ -171,7 +182,7 @@ echo "Email: $(kubectl get secret root-user -n default -o jsonpath='{.data.email Execute the shown command to retrieve the login credentials. ```shell title="remote shell - get login credentials" -$ echo "Email: $(kubectl get secret root-user -n default -o jsonpath='{.data.email}' | base64 -d)"; echo "Password: $(kubectl get secret root-user -n default -o jsonpath='{.data.password}' | base64 -d)"; echo "API Token: $(kubectl get secret root-user -n default -o jsonpath='{.data.token}' | base64 -d)" +$ echo "Email: $(kubectl get secret semaphore-authentication -n default -o jsonpath='{.data.ROOT_USER_EMAIL}' | base64 -d)"; echo "Password: $(kubectl get secret semaphore-authentication -n default -o jsonpath='{.data.ROOT_USER_PASSWORD}' | base64 -d)"; echo "API Token: $(kubectl get secret semaphore-authentication -n default -o jsonpath='{.data.ROOT_USER_TOKEN}' | base64 -d)" Email: root@example.com Password: AhGg_2v6uHuy7hqvNmeLw0O4RqI= @@ -209,9 +220,9 @@ Once your have Semaphore up and running, check out the following pages to finish - [Guided tour](./guided-tour): complete the guided tour to get familiarized with Semaphore Community Edition - [Add self-hosted agents](../using-semaphore/self-hosted): add more machines to scale up the capacity of your CI/CD platform -## How to Upgrade Semaphore {#upgrade} +## Upgrade Semaphore and renew license/certs {#upgrade} -To upgrade Semaphore from `v1.0.1`, follow these steps: +Follow these steps if you need to upgrade Semaphore, install a new [license](./license), or renew the TLS certificates. @@ -228,23 +239,22 @@ To upgrade Semaphore from `v1.0.1`, follow these steps: source aws-config echo "DOMAIN=${DOMAIN}" echo "CERT_NAME=${CERT_NAME}" + ls license*.txt ``` -4. Run the following command to upgrade to `v1.1.0` +4. Run the following command to upgrade to `v1.3.0`. This step assumes that you have obtained your [license file](./license) ```shell helm upgrade --install semaphore oci://ghcr.io/semaphoreio/semaphore \ --debug \ - --version v1.1.0 \ + --version v1.3.0 \ --timeout 20m \ - --set global.domain.ip=${IP_ADDRESS} \ - --set global.domain.name=${DOMAIN} \ - --set ingress.enabled=true \ - --set ingress.ssl.enabled=true \ - --set ingress.className=traefik \ - --set ingress.ssl.type=custom \ - --set ingress.ssl.crt=$(cat certs/live/${DOMAIN}/fullchain.pem | base64 -w 0) \ - --set ingress.ssl.key=$(cat certs/live/${DOMAIN}/privkey.pem | base64 -w 0) + --set global.edition=ee \ + --set global.license=$(cat path/to/license-file.txt) \ + --set global.domain.name="${DOMAIN}" \ + --set ingress.ssl.certName="${CERT_NAME}" \ + --set ingress.className=alb \ + --set ssl.type=alb ``` @@ -287,8 +297,11 @@ terraform destroy You will be prompted to confirm the deletion of the AWS resources. + ## See also - [Installation guide](./install.md) - [Getting started guide](./guided-tour) - [Migration guide](./migration/overview) + + diff --git a/docs/versioned_docs/version-CE-1.1/getting-started/install-gcompute.md b/docs/versioned_docs/version-EE-1.3/getting-started/install-gcompute.md similarity index 91% rename from docs/versioned_docs/version-CE-1.1/getting-started/install-gcompute.md rename to docs/versioned_docs/version-EE-1.3/getting-started/install-gcompute.md index 8c980a1d2..ed030aae7 100644 --- a/docs/versioned_docs/version-CE-1.1/getting-started/install-gcompute.md +++ b/docs/versioned_docs/version-EE-1.3/getting-started/install-gcompute.md @@ -21,6 +21,7 @@ The self-hosted installation is recommended for users and teams familiar with Se ## Prerequisites {#prerequisites} +- An Enterprise Edition [License](./license) - A DNS domain - A Google Cloud account @@ -38,7 +39,8 @@ You may skip this step if you already have an SSH key pair. ::: -To generate your SSH keys, run the following command. Follow the on-screen instructions. +To generate your SSH keys, run the following command. Follow the on-screen instructions. + ```shell ssh-keygen -t rsa @@ -55,6 +57,7 @@ We recommend creating a separate [Google Cloud Project](https://cloud.google.com Create a config file to store your Google Cloud parameters. We'll call it `google-config`. Adjust the values to match your Project ID and which zone the compute instance should run on. Ensure you the paths for the [SSH keypairs generated earlier](#ssh) are correct (warning: never switch the public with the private keys). + ```shell title="contents of google-config" export GOOGLE_CLOUD_PROJECT_ID="" export GOOGLE_INSTANCE_NAME="" @@ -217,6 +220,7 @@ export IP_ADDRESS=1.2.3.4 ::: + ## Step 9 - Create TLS certificates {#certs} :::note @@ -316,13 +320,15 @@ kubectl apply -f https://app.getambassador.io/yaml/emissary/3.9.1/emissary-crds. kubectl wait --timeout=90s --for=condition=available deployment emissary-apiext -n emissary-system ``` -Finally, install Semaphore with Helm: +Finally, install Semaphore with Helm. This step assumes that you have copied your [license file](./license) into the machine. If you don't provide a license during installation, you can follow the [upgrade procedure] to install the license later and remove the missing license message. ```shell title="remote shell - install Semaphore" helm upgrade --install semaphore oci://ghcr.io/semaphoreio/semaphore \ --debug \ - --version v1.1.0 \ - --timeout 20m \ + --version v1.4.0 \ + --timeout 30m \ + --set global.edition=ee \ + --set global.license=$(cat path/to/license-file.txt) \ --set global.domain.ip=${IP_ADDRESS} \ --set global.domain.name=${DOMAIN} \ --set ingress.enabled=true \ @@ -343,7 +349,7 @@ To start using the app, go to https://id.semaphore.example.com/login You can fetch credentials for the login by running this command: -echo "Email: $(kubectl get secret root-user -n default -o jsonpath='{.data.email}' | base64 -d)"; echo "Password: $(kubectl get secret root-user -n default -o jsonpath='{.data.password}' | base64 -d)"; echo "API Token: $(kubectl get secret root-user -n default -o jsonpath='{.data.token}' | base64 -d)" +echo "Email: $(kubectl get secret semaphore-authentication -n default -o jsonpath='{.data.ROOT_USER_EMAIL}' | base64 -d)"; echo "Password: $(kubectl get secret semaphore-authentication -n default -o jsonpath='{.data.ROOT_USER_PASSWORD}' | base64 -d)"; echo "API Token: $(kubectl get secret semaphore-authentication -n default -o jsonpath='{.data.ROOT_USER_TOKEN}' | base64 -d)" ============================================================================================= ``` @@ -351,7 +357,7 @@ echo "Email: $(kubectl get secret root-user -n default -o jsonpath='{.data.email Execute the shown command to retrieve the login credentials. ```shell title="remote shell - get login credentials" -$ echo "Email: $(kubectl get secret root-user -n default -o jsonpath='{.data.email}' | base64 -d)"; echo "Password: $(kubectl get secret root-user -n default -o jsonpath='{.data.password}' | base64 -d)"; echo "API Token: $(kubectl get secret root-user -n default -o jsonpath='{.data.token}' | base64 -d)" +$ echo "Email: $(kubectl get secret semaphore-authentication -n default -o jsonpath='{.data.ROOT_USER_EMAIL}' | base64 -d)"; echo "Password: $(kubectl get secret semaphore-authentication -n default -o jsonpath='{.data.ROOT_USER_PASSWORD}' | base64 -d)"; echo "API Token: $(kubectl get secret semaphore-authentication -n default -o jsonpath='{.data.ROOT_USER_TOKEN}' | base64 -d)" Email: root@example.com Password: AhGg_2v6uHuy7hqvNmeLw0O4RqI= @@ -389,10 +395,9 @@ Once you have Semaphore up and running, check out the following pages to finish - [Invite users](../using-semaphore/organizations#people): invite users to your instance so they can start working on projects - [Add self-hosted agents](../using-semaphore/self-hosted): add more machines to scale up the capacity of your CI/CD platform -## How to Upgrade Semaphore {#upgrade} - -To upgrade Semaphore from `v1.0.1`, follow these steps: +## Upgrade Semaphore and renew license/certs {#upgrade} +Follow these steps if you need to upgrade Semaphore, install a new [license](./license), or renew the TLS certificates. 1. Connect to your server running Semaphore (see [Step 8](#env)) @@ -402,7 +407,6 @@ To upgrade Semaphore from `v1.0.1`, follow these steps: export KUBECONFIG=/etc/rancher/k3s/k3s.yaml kubectl get nodes ``` - 3. Load the configuration file and ensure the certificates are located on the correct folders. See [Step 9](#certs) if you need to regenerate the certificates. ```shell @@ -411,6 +415,7 @@ To upgrade Semaphore from `v1.0.1`, follow these steps: echo "IP_ADDRESS=${IP_ADDRESS}" ls certs/live/${DOMAIN}/fullchain.pem ls certs/live/${DOMAIN}/privkey.pem + ls license*.txt ``` 4. Check the expiration date of the certificate. If it has expired, [regenerate the certificate](#certs) before upgrading @@ -419,13 +424,16 @@ To upgrade Semaphore from `v1.0.1`, follow these steps: openssl x509 -enddate -noout -in certs/live/${DOMAIN}/fullchain.pem ``` -5. Run the following command to upgrade to `v1.1.0` +5. Run the following command to upgrade to `v1.3.0` ```shell helm upgrade --install semaphore oci://ghcr.io/semaphoreio/semaphore \ --debug \ - --version v1.1.0 \ + --set global.edition=ee \ + --version v1.3.0 \ --timeout 20m \ + --set global.edition=ee \ + --set global.license=$(cat path/to/license-file.txt) \ --set global.domain.ip=${IP_ADDRESS} \ --set global.domain.name=${DOMAIN} \ --set ingress.enabled=true \ @@ -487,3 +495,4 @@ gcloud compute instances delete ${GOOGLE_INSTANCE_NAME} \ - [Installation guide](./install.md) - [Getting started guide](./guided-tour) - [Migration guide](./migration/overview) + diff --git a/docs/versioned_docs/version-CE-1.1/getting-started/install-gke.md b/docs/versioned_docs/version-EE-1.3/getting-started/install-gke.md similarity index 90% rename from docs/versioned_docs/version-CE-1.1/getting-started/install-gke.md rename to docs/versioned_docs/version-EE-1.3/getting-started/install-gke.md index 027775082..8d6ac1406 100644 --- a/docs/versioned_docs/version-CE-1.1/getting-started/install-gke.md +++ b/docs/versioned_docs/version-EE-1.3/getting-started/install-gke.md @@ -25,6 +25,12 @@ There is a known issue that blocks Docker on macOS. If you have trouble running ::: +## Prerequisites {#prerequisites} + +- An Enterprise Edition [License](./license) +- A DNS domain +- A Google Cloud account + ## Step 1 - Install dependencies {#dependencies} Install the following tools before starting the installation: @@ -176,6 +182,7 @@ Check the existence of the certificate files on the following paths. You will re You may delete the TXT record from your domain at this point. It's no longer needed. + ## Step 5 - Install TLS certificates Install the TLS certificates [created before](#certs) using the following command: @@ -274,13 +281,15 @@ echo "GOOGLE_STATIC_IP_NAME=${GOOGLE_STATIC_IP_NAME}" ls certs/live/${DOMAIN}/privkey.pem certs/live/${DOMAIN}/fullchain.pem ``` -Run the following to install Semaphore: +Finally, install Semaphore with Helm. This step assumes that you have copied your [license file](./license) into the machine. If you don't provide a license during installation, you can follow the [upgrade procedure] to install the license later and remove the missing license message. ```shell title="Install Semaphore" helm upgrade --install semaphore oci://ghcr.io/semaphoreio/semaphore \ --debug \ - --version v1.1.0 \ - --timeout 20m \ + --version v1.4.0 \ + --timeout 30m \ + --set global.edition=ee \ + --set global.license=$(cat path/to/license-file.txt) \ --set global.domain.ip=${IP_ADDRESS} \ --set global.domain.name="${DOMAIN}" \ --set ingress.staticIpName="${GOOGLE_STATIC_IP_NAME}" \ @@ -300,7 +309,7 @@ To start using the app, go to https://id.semaphore.example.com/login You can fetch credentials for the login by running this command: -echo "Email: $(kubectl get secret root-user -n default -o jsonpath='{.data.email}' | base64 -d)"; echo "Password: $(kubectl get secret root-user -n default -o jsonpath='{.data.password}' | base64 -d)"; echo "API Token: $(kubectl get secret root-user -n default -o jsonpath='{.data.token}' | base64 -d)" +echo "Email: $(kubectl get secret semaphore-authentication -n default -o jsonpath='{.data.ROOT_USER_EMAIL}' | base64 -d)"; echo "Password: $(kubectl get secret semaphore-authentication -n default -o jsonpath='{.data.ROOT_USER_PASSWORD}' | base64 -d)"; echo "API Token: $(kubectl get secret semaphore-authentication -n default -o jsonpath='{.data.ROOT_USER_TOKEN}' | base64 -d)" ============================================================================================= ``` @@ -308,7 +317,7 @@ echo "Email: $(kubectl get secret root-user -n default -o jsonpath='{.data.email Execute the shown command to retrieve the login credentials. ```shell title="remote shell - get login credentials" -$ echo "Email: $(kubectl get secret root-user -n default -o jsonpath='{.data.email}' | base64 -d)"; echo "Password: $(kubectl get secret root-user -n default -o jsonpath='{.data.password}' | base64 -d)"; echo "API Token: $(kubectl get secret root-user -n default -o jsonpath='{.data.token}' | base64 -d)" +$ echo "Email: $(kubectl get secret semaphore-authentication -n default -o jsonpath='{.data.ROOT_USER_EMAIL}' | base64 -d)"; echo "Password: $(kubectl get secret semaphore-authentication -n default -o jsonpath='{.data.ROOT_USER_PASSWORD}' | base64 -d)"; echo "API Token: $(kubectl get secret semaphore-authentication -n default -o jsonpath='{.data.ROOT_USER_TOKEN}' | base64 -d)" Email: root@example.com Password: AhGg_2v6uHuy7hqvNmeLw0O4RqI= @@ -371,9 +380,9 @@ Once your have Semaphore up and running, check out the following pages to finish - [Guided tour](./guided-tour): complete the guided tour to get familiarized with Semaphore Community Edition - [Add self-hosted agents](../using-semaphore/self-hosted): add more machines to scale up the capacity of your CI/CD platform -## How to Upgrade Semaphore {#upgrade} +## Upgrade Semaphore and renew license/certs {#upgrade} -To upgrade Semaphore from `v1.0.1`, follow these steps: +Follow these steps if you need to upgrade Semaphore, install a new [license](./license), or renew the TLS certificates. @@ -383,7 +392,6 @@ To upgrade Semaphore from `v1.0.1`, follow these steps: ```shell kubectl get nodes ``` - 3. Load the configuration file and ensure the certificates are in the correct folder. See [Step 4](#certs) if you need to recreate the certificates. ```shell @@ -393,21 +401,23 @@ To upgrade Semaphore from `v1.0.1`, follow these steps: echo "GOOGLE_CERTIFICATE_NAME=${GOOGLE_CERTIFICATE_NAME}" echo "GOOGLE_STATIC_IP_NAME=${GOOGLE_STATIC_IP_NAME}" ls certs/live/${DOMAIN}/privkey.pem certs/live/${DOMAIN}/fullchain.pem + ls license*.txt ``` - 4. Check the expiration date of the certificate. If it has expired, [regenerate the certificate](#certs) before upgrading ```shell openssl x509 -enddate -noout -in certs/live/${DOMAIN}/fullchain.pem ``` -5. Run the following command to upgrade to `v1.1.0` +5. Run the following command to upgrade to `v1.3.0` ```shell helm upgrade --install semaphore oci://ghcr.io/semaphoreio/semaphore \ --debug \ - --version v1.1.0 \ + --version v1.3.0 \ --timeout 20m \ + --set global.edition=ee \ + --set global.license=$(cat path/to/license-file.txt) \ --set global.domain.ip=${IP_ADDRESS} \ --set global.domain.name=${DOMAIN} \ --set ingress.enabled=true \ @@ -469,3 +479,4 @@ gcloud container clusters delete --zone "${GOOGLE_CLOUD_ZONE}" "${GOOGLE_CLOUD_C - [Installation guide](./install.md) - [Getting started guide](./guided-tour) - [Migration guide](./migration/overview) + diff --git a/docs/versioned_docs/version-CE-1.1/getting-started/install-ubuntu.md b/docs/versioned_docs/version-EE-1.3/getting-started/install-ubuntu.md similarity index 87% rename from docs/versioned_docs/version-CE-1.1/getting-started/install-ubuntu.md rename to docs/versioned_docs/version-EE-1.3/getting-started/install-ubuntu.md index 3da10ee6c..cc436a26e 100644 --- a/docs/versioned_docs/version-CE-1.1/getting-started/install-ubuntu.md +++ b/docs/versioned_docs/version-EE-1.3/getting-started/install-ubuntu.md @@ -21,6 +21,7 @@ The self-hosted installation is recommended for users and teams that are familia ## Prerequisites {#prerequisites} +- An Enterprise Edition [License](./license) - A DNS domain - A Linux machine running Ubuntu. Preferably Ubuntu 24.04 LTS - At least 8 CPUs and 16 GB of RAM @@ -60,6 +61,7 @@ Configure your DNS by creating two A records that point to the reserved IP: Open a terminal into your Linux machine, e.g. using SSH: + ```shell title="Connect to your machine" ssh @ ``` @@ -192,13 +194,15 @@ kubectl apply -f https://app.getambassador.io/yaml/emissary/3.9.1/emissary-crds. kubectl wait --timeout=90s --for=condition=available deployment emissary-apiext -n emissary-system ``` -Finally, install Semaphore with Helm: +Finally, install Semaphore with Helm. This step assumes that you have copied your [license file](./license) into the machine. If you don't provide a license during installation, you can follow the [upgrade procedure] to install the license later and remove the missing license message. ```shell title="remote shell - install Semaphore" helm upgrade --install semaphore oci://ghcr.io/semaphoreio/semaphore \ --debug \ - --version v1.1.0 \ - --timeout 20m \ + --version v1.4.0 \ + --timeout 30m \ + --set global.edition=ee \ + --set global.license=$(cat path/to/license-file.txt) \ --set global.domain.ip=${IP_ADDRESS} \ --set global.domain.name=${DOMAIN} \ --set ingress.enabled=true \ @@ -219,7 +223,7 @@ To start using the app, go to https://id.semaphore.example.com/login You can fetch credentials for the login by running this command: -echo "Email: $(kubectl get secret root-user -n default -o jsonpath='{.data.email}' | base64 -d)"; echo "Password: $(kubectl get secret root-user -n default -o jsonpath='{.data.password}' | base64 -d)"; echo "API Token: $(kubectl get secret root-user -n default -o jsonpath='{.data.token}' | base64 -d)" +echo "Email: $(kubectl get secret semaphore-authentication -n default -o jsonpath='{.data.ROOT_USER_EMAIL}' | base64 -d)"; echo "Password: $(kubectl get secret semaphore-authentication -n default -o jsonpath='{.data.ROOT_USER_PASSWORD}' | base64 -d)"; echo "API Token: $(kubectl get secret semaphore-authentication -n default -o jsonpath='{.data.ROOT_USER_TOKEN}' | base64 -d)" ============================================================================================= ``` @@ -227,7 +231,7 @@ echo "Email: $(kubectl get secret root-user -n default -o jsonpath='{.data.email Execute the shown command to retrieve the login credentials. ```shell title="remote shell - get login credentials" -$ echo "Email: $(kubectl get secret root-user -n default -o jsonpath='{.data.email}' | base64 -d)"; echo "Password: $(kubectl get secret root-user -n default -o jsonpath='{.data.password}' | base64 -d)"; echo "API Token: $(kubectl get secret root-user -n default -o jsonpath='{.data.token}' | base64 -d)" +$ echo "Email: $(kubectl get secret semaphore-authentication -n default -o jsonpath='{.data.ROOT_USER_EMAIL}' | base64 -d)"; echo "Password: $(kubectl get secret semaphore-authentication -n default -o jsonpath='{.data.ROOT_USER_PASSWORD}' | base64 -d)"; echo "API Token: $(kubectl get secret semaphore-authentication -n default -o jsonpath='{.data.ROOT_USER_TOKEN}' | base64 -d)" Email: root@example.com Password: AhGg_2v6uHuy7hqvNmeLw0O4RqI= @@ -265,9 +269,10 @@ Once you have Semaphore up and running, check out the following pages to finish - [Invite users](../using-semaphore/organizations#people): invite users to your instance so they can start working on projects - [Add self-hosted agents](../using-semaphore/self-hosted): add more machines to scale up the capacity of your CI/CD platform -## How to Upgrade Semaphore {#upgrade} -To upgrade Semaphore from `v1.0.1`, follow these steps: +## Upgrade Semaphore and renew license/certs {#upgrade} + +Follow these steps if you need to upgrade Semaphore, install a new [license](./license), or renew the TLS certificates. @@ -285,6 +290,7 @@ To upgrade Semaphore from `v1.0.1`, follow these steps: source semaphore-config ls certs/live/${DOMAIN}/fullchain.pem ls certs/live/${DOMAIN}/privkey.pem + ls license*.txt ``` 4. Check the expiration date of the certificate. If it has expired, [regenerate the certificate](#certs) before upgrading @@ -293,13 +299,15 @@ To upgrade Semaphore from `v1.0.1`, follow these steps: openssl x509 -enddate -noout -in certs/live/${DOMAIN}/fullchain.pem ``` -5. Run the following command to upgrade to `v1.1.0` +5. Run the following command to upgrade to `v1.3.0`. This step assumes that you have copied your [license file](./license) into the machine ```shell helm upgrade --install semaphore oci://ghcr.io/semaphoreio/semaphore \ --debug \ - --version v1.1.0 \ + --version v1.3.0 \ --timeout 20m \ + --set global.edition=ee \ + --set global.license=$(cat path/to/license-file.txt) \ --set global.domain.ip=${IP_ADDRESS} \ --set global.domain.name=${DOMAIN} \ --set ingress.enabled=true \ diff --git a/docs/versioned_docs/version-CE-1.1/getting-started/install.md b/docs/versioned_docs/version-EE-1.3/getting-started/install.md similarity index 79% rename from docs/versioned_docs/version-CE-1.1/getting-started/install.md rename to docs/versioned_docs/version-EE-1.3/getting-started/install.md index 95345bec6..44f82f394 100644 --- a/docs/versioned_docs/version-CE-1.1/getting-started/install.md +++ b/docs/versioned_docs/version-EE-1.3/getting-started/install.md @@ -1,5 +1,5 @@ --- -description: Semaphore installation overview +description: Semaphore installation overview for Semaphore EE --- # Install Prerequisites @@ -13,7 +13,12 @@ import FeatureNotAvailable from '@site/src/components/FeatureNotAvailable'; import { NiceButton, ButtonContainer } from '@site/src/components/NiceButton'; import { GKEIcon, EKSIcon, UbuntuIcon, GCPCompute, AWSEC2Icon } from '@site/src/components/CustomIcons'; -This page shows an overview of the prerequisites and different methods to install **Semaphore Community Edition** on your systems. If you have any questions or issues during installation, you can get help in the [official Semaphore Discord server](https://discord.gg/FBuUrV24NH). +This page shows an overview of the prerequisites and different methods to install **Semaphore Enterprise Edition** on your systems. + + +If you have any questions or issues during installation contact us: +- Users with a [paid license](./license) can contact support at `` +- Users without a support plan you can get help in the [official Semaphore Discord server](https://discord.gg/FBuUrV24NH). ## Overview @@ -28,14 +33,21 @@ A Semaphore CI/CD platform consists of two components: To install Semaphore, you need: +- An Enterprise Edition [License](./license), which might be free of cost if [you qualify as a small company or team](./license#free) - A DNS domain - The ability to create A, AAAA, or CNAME records for your domain - A Kubernetes cluster or a Ubuntu machine - - Minumum hardware: **16 GB of RAM and 8 CPUs** + - Minimum hardware: **16 GB of RAM and 8 CPUs** - Installation time - Ubuntu machine: 20 to 30 minutes - Kubernetes cluster: up to 1 hour +:::note + +Ensure that your VMs are running with hardware-supported virtualization mode enabled. Without virtualization feature enabled Semaphore might run slowly or not at all even if when the minimum hardware requirements are met. + +::: + ## Choose your platform {#install-method} You can install Semaphore on a single Linux/Ubuntu machine or in a Kubernetes cluster. @@ -45,7 +57,7 @@ Each platform presents trade-off. Use the following table as a guide: | Facility | Single-alone machine | Kubernetes cluster | |--|--|--| | Backup and restore | Simple | Complex | -| Infraststructure costs | Lower | Higher | +| Infrastructure costs | Lower | Higher | | Scalability of control plane | Low
Can only be scaled vertically with a more powerful machine.
| High
Can be scaled horizontally and vertically.
| | Scalability of job runner (agents) | High | High | | Redundancy | None | High | diff --git a/docs/versioned_docs/version-EE-1.3/getting-started/license.md b/docs/versioned_docs/version-EE-1.3/getting-started/license.md new file mode 100644 index 000000000..11ed2c3bc --- /dev/null +++ b/docs/versioned_docs/version-EE-1.3/getting-started/license.md @@ -0,0 +1,54 @@ +--- +description: Semaphore License +--- + +# Get a License + +import Tabs from '@theme/Tabs'; +import TabItem from '@theme/TabItem'; +import Available from '@site/src/components/Available'; +import VideoTutorial from '@site/src/components/VideoTutorial'; +import Steps from '@site/src/components/Steps'; +import FeatureNotAvailable from '@site/src/components/FeatureNotAvailable'; +import { NiceButton, ButtonContainer } from '@site/src/components/NiceButton'; +import { GKEIcon, EKSIcon, UbuntuIcon, GCPCompute, AWSEC2Icon } from '@site/src/components/CustomIcons'; + +This page explains how to obtain a Semaphore Enterprise Edition (EE) license and under which conditions you must pay to run your Semaphore EE instance. + +## Overview {#overview} + +Every Semaphore EE instance must have a valid and current license to run. The license is applied during installation and renewed yearly. + +## Free Enterprise Edition {#free} + +You might not need to pay for the license. If the following conditions apply, you can get a 100% free license and skip payment altogether: + +- You expect to have fewer than 50 users for the Semaphore instance +- Your company must have less than $ 5,000,000 US Dollars ARR (Annual Recurring Revenue) + +A free Enterprise Edition server license includes every feature in the paid license without any limitations. The only difference is that a free license does not include advanced support or any SLAs. Free support is provided on a best-effort basis via the [Discord server](https://discord.gg/FBuUrV24NH). + +## Get a quote {#quote} + +If you do not qualify for a [free Enterprise Edition license](#free) or require SLA and advanced support, please contact Semaphore support at: `support@semaphore.io` to obtain a quote for your installation. + +## Obtain a license {#obtain} + +Before installing Semaphore Enterprise Edition, check if you are [eligible for a free license](#free). Otherwise, [contact support](#quote) to get a quote. + +To obtain or renew a license, follow these steps: + +1. Go to the [Semaphore License Hub](https://licensing.semaphore.io/) +2. Fill in the required fields +3. Read and accept the [Terms of Service](https://github.com/semaphoreio/semaphore/blob/main/ee/LICENSE) +4. Fill in the verification code sent to the provided email +5. Find the link to download the license in your email +6. Download the license file +7. Continue the [Semaphore installation](./install) + +## See also + +- [Installation guide](./install) +- [Getting started guide](./guided-tour) +- [Migration guide](./migration/overview) + diff --git a/docs/versioned_docs/version-CE-1.1/getting-started/migration/bitbucket.md b/docs/versioned_docs/version-EE-1.3/getting-started/migration/bitbucket.md similarity index 98% rename from docs/versioned_docs/version-CE-1.1/getting-started/migration/bitbucket.md rename to docs/versioned_docs/version-EE-1.3/getting-started/migration/bitbucket.md index 0a66f3ad1..ccaf4a3d2 100644 --- a/docs/versioned_docs/version-CE-1.1/getting-started/migration/bitbucket.md +++ b/docs/versioned_docs/version-EE-1.3/getting-started/migration/bitbucket.md @@ -33,10 +33,8 @@ Checkout is implicit in all Travis CI workflows by default.
- Semaphore does not clone the repository by default. This is because there are certain scenarios in which you don't need the code or you want to customize the cloning process. - To clone the repository in Semaphore we only need to execute [`checkout`](../../reference/toolbox#checkout). ```shell @@ -46,7 +44,6 @@ checkout cat README.md ``` - @@ -92,7 +89,6 @@ pipelines: - In Semaphore, we use the [artifact](../../reference/toolbox#artifact) command to download and upload files to the artifact store. The following command stores `test.log` from any job: @@ -109,7 +105,6 @@ artifact pull workflow test.log See [artifacts](../../using-semaphore/artifacts) for more details. - @@ -153,7 +148,7 @@ bundle install cache store ``` -See [caching](../../using-semaphore/optimization/cache) for more details. +See [caching](../../using-semaphore/cache) for more details. @@ -161,7 +156,6 @@ See [caching](../../using-semaphore/optimization/cache) for more details. We often need to activate specific language or tool versions to ensure consistent builds. - @@ -208,13 +202,12 @@ pipelines: -In Semaphore, we create the [secret](../../using-semaphore/secrets) at the server or project level and activate it on a block. +In Semaphore, we create the [secret](../../using-semaphore/secrets) at the server or project level and activate it on a block. The secret contents are automatically injected as environment variables in all jobs contained on that block. ![Using secrets on Semaphore](./img/secrets.jpg) - diff --git a/docs/versioned_docs/version-CE-1.2/getting-started/migration/circle.md b/docs/versioned_docs/version-EE-1.3/getting-started/migration/circle.md similarity index 98% rename from docs/versioned_docs/version-CE-1.2/getting-started/migration/circle.md rename to docs/versioned_docs/version-EE-1.3/getting-started/migration/circle.md index 7d2efc0a1..80c245c16 100644 --- a/docs/versioned_docs/version-CE-1.2/getting-started/migration/circle.md +++ b/docs/versioned_docs/version-EE-1.3/getting-started/migration/circle.md @@ -75,15 +75,14 @@ global_job_config: - ### Language versions -Both CircleCI and Semaphore allow you to use specific language versions. +Both CircleCI and Semaphore allow you to use specific language versions. -CircleCI uses a language-specific setup orb. +CircleCI uses a language-specific setup orb. The following example sets the Ruby version to `3.3.4` @@ -101,6 +100,7 @@ jobs: version: '3.3.4' # highlight-end ``` + @@ -109,7 +109,6 @@ Semaphore provides the [Docker environments](../../using-semaphore/pipelines#doc - ### Caching Both CircleCI and Semaphore support manual file caching. @@ -152,7 +151,7 @@ The following commands, when added to a job downloads, cache, and install Gems i - cache store ``` -See [caching](../../using-semaphore/optimization/cache) for more details. +See [caching](../../using-semaphore/cache) for more details. @@ -162,7 +161,6 @@ See [caching](../../using-semaphore/optimization/cache) for more details. - ### Database and services Both CircleCI and Semaphore support starting databases and services via Docker containers. @@ -193,7 +191,6 @@ jobs: Semaphore provides the [Docker environments](../../using-semaphore/pipelines#docker-environments) to run your jobs in environments with all your build tools. You can connect multiple Docker images to provide database services for your end-to-end or smoke tests. - @@ -260,7 +257,7 @@ Secrets inject sensitive data and credentials into the workflow securely. -CircleCI uses contexts instead of secrets. You must create the context and its value through the UI. +CircleCI uses contexts instead of secrets. You must create the context and its value through the UI. Then, you can use the `context` keyword to include it in your jobs. ```yaml @@ -277,7 +274,7 @@ workflows: -On Semaphore, we create the [secret](../../using-semaphore/secrets) at the server (instance) or project level and activate it on a block. +On Semaphore, we create the [secret](../../using-semaphore/secrets) at the server (instance) or project level and activate it on a block. The secret's contents are automatically injected as environment variables in all jobs in that block. @@ -304,13 +301,12 @@ global_job_config: -On Semaphore, we create the [secret](../../using-semaphore/secrets) at the server (instance) or project level and activate it on a block. +On Semaphore, we create the [secret](../../using-semaphore/secrets) at the server (instance) or project level and activate it on a block. The secret's contents are automatically injected as environment variables in all jobs in that block. ![Using secrets on Semaphore](./img/secrets.jpg) - @@ -507,7 +503,6 @@ blocks: - ## See also - [Migration guide for CircleCI](./circle) diff --git a/docs/versioned_docs/version-CE-1.1/getting-started/migration/github-actions.md b/docs/versioned_docs/version-EE-1.3/getting-started/migration/github-actions.md similarity index 98% rename from docs/versioned_docs/version-CE-1.1/getting-started/migration/github-actions.md rename to docs/versioned_docs/version-EE-1.3/getting-started/migration/github-actions.md index bbb485722..47f30c69b 100644 --- a/docs/versioned_docs/version-CE-1.1/getting-started/migration/github-actions.md +++ b/docs/versioned_docs/version-EE-1.3/getting-started/migration/github-actions.md @@ -74,15 +74,14 @@ global_job_config: - ### Language versions -Both Github Actions and Semaphore allow you to use specific language versions. +Both Github Actions and Semaphore allow you to use specific language versions. -GitHub Actions uses a language-specific setup action. +GitHub Actions uses a language-specific setup action. The following example sets the Ruby version to `3.3.4` @@ -94,6 +93,7 @@ jobs: with: ruby-version: '3.3.4' ``` + @@ -102,7 +102,6 @@ Semaphore provides the [Docker environments](../../using-semaphore/pipelines#doc - ### Caching Both GitHub Actions and Semaphore support manual file caching. @@ -136,7 +135,7 @@ The following commands, when added to a job downloads, cache, and install Gems i - cache store ``` -See [caching](../../using-semaphore/optimization/cache) for more details. +See [caching](../../using-semaphore/cache) for more details. @@ -146,7 +145,6 @@ See [caching](../../using-semaphore/optimization/cache) for more details. - ### Database and services Both Github Actions and Semaphore support starting databases and services via Docker containers. @@ -175,7 +173,7 @@ jobs: Semaphore provides the [Docker environments](../../using-semaphore/pipelines#docker-environments) to run your jobs in environments with all your build tools. You can connect multiple Docker images to provide database services for your end-to-end or smoke tests. - + @@ -281,13 +279,12 @@ global_job_config: -On Semaphore, we create the [secret](../../using-semaphore/secrets) at the server or project level and activate it on a block. +On Semaphore, we create the [secret](../../using-semaphore/secrets) at the server or project level and activate it on a block. The secret's contents are automatically injected as environment variables in all jobs in that block. ![Using secrets on Semaphore](./img/secrets.jpg) - @@ -447,7 +444,6 @@ blocks: - ## See also - [Migration guide for CircleCI](./circle) diff --git a/docs/versioned_docs/version-CE-1.2/getting-started/migration/img/artifacts.jpg b/docs/versioned_docs/version-EE-1.3/getting-started/migration/img/artifacts.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/getting-started/migration/img/artifacts.jpg rename to docs/versioned_docs/version-EE-1.3/getting-started/migration/img/artifacts.jpg diff --git a/docs/versioned_docs/version-CE-1.2/getting-started/migration/img/caching.jpg b/docs/versioned_docs/version-EE-1.3/getting-started/migration/img/caching.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/getting-started/migration/img/caching.jpg rename to docs/versioned_docs/version-EE-1.3/getting-started/migration/img/caching.jpg diff --git a/docs/versioned_docs/version-CE-1.2/getting-started/migration/img/checkout.jpg b/docs/versioned_docs/version-EE-1.3/getting-started/migration/img/checkout.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/getting-started/migration/img/checkout.jpg rename to docs/versioned_docs/version-EE-1.3/getting-started/migration/img/checkout.jpg diff --git a/docs/versioned_docs/version-CE-1.2/getting-started/migration/img/example.jpg b/docs/versioned_docs/version-EE-1.3/getting-started/migration/img/example.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/getting-started/migration/img/example.jpg rename to docs/versioned_docs/version-EE-1.3/getting-started/migration/img/example.jpg diff --git a/docs/versioned_docs/version-CE-1.2/getting-started/migration/img/language.jpg b/docs/versioned_docs/version-EE-1.3/getting-started/migration/img/language.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/getting-started/migration/img/language.jpg rename to docs/versioned_docs/version-EE-1.3/getting-started/migration/img/language.jpg diff --git a/docs/versioned_docs/version-CE-1.2/getting-started/migration/img/secrets.jpg b/docs/versioned_docs/version-EE-1.3/getting-started/migration/img/secrets.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/getting-started/migration/img/secrets.jpg rename to docs/versioned_docs/version-EE-1.3/getting-started/migration/img/secrets.jpg diff --git a/docs/versioned_docs/version-CE-1.2/getting-started/migration/img/services.jpg b/docs/versioned_docs/version-EE-1.3/getting-started/migration/img/services.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/getting-started/migration/img/services.jpg rename to docs/versioned_docs/version-EE-1.3/getting-started/migration/img/services.jpg diff --git a/docs/versioned_docs/version-CE-1.2/getting-started/migration/jenkins.md b/docs/versioned_docs/version-EE-1.3/getting-started/migration/jenkins.md similarity index 100% rename from docs/versioned_docs/version-CE-1.2/getting-started/migration/jenkins.md rename to docs/versioned_docs/version-EE-1.3/getting-started/migration/jenkins.md diff --git a/docs/versioned_docs/version-CE-1.1/getting-started/migration/overview.md b/docs/versioned_docs/version-EE-1.3/getting-started/migration/overview.md similarity index 91% rename from docs/versioned_docs/version-CE-1.1/getting-started/migration/overview.md rename to docs/versioned_docs/version-EE-1.3/getting-started/migration/overview.md index 9dca73b7a..335326ffc 100644 --- a/docs/versioned_docs/version-CE-1.1/getting-started/migration/overview.md +++ b/docs/versioned_docs/version-EE-1.3/getting-started/migration/overview.md @@ -27,7 +27,7 @@ Here is the recommended plan to migrate from any CI provider to Semaphore. Write down your goals and reasons for migrating your CI to Semaphore. For example, you might wish to reduce costs or speed up your builds. Setting expectations from the get-go will make the whole migration process clearer and more straightforward. - If at any point in the process, you have doubts, contact us at support@semaphoreci.com. We want this process to be as smooth and painless as possible. + If at any point in the process, you have doubts, contact us at `support@semaphoreci.com`. We want this process to be as smooth and painless as possible. 2. Compare features @@ -36,7 +36,7 @@ Here is the recommended plan to migrate from any CI provider to Semaphore. - Must have - Nice to have - Optional - + Use the [feature comparison page](../features) to select the best Semaphore edition for you. 3. [Install Semaphore](../install) @@ -47,21 +47,20 @@ Here is the recommended plan to migrate from any CI provider to Semaphore. - [Connect your GitHub](../../using-semaphore/connect-github) or [connect your BitBucket](../../using-semaphore/connect-bitbucket) repository to Semaphore - Configure a CI pipeline, the objective is to reach a green build. See the [Guided Tour](../guided-tour) to get an overview of Semaphore - + The following pages describe key features you might need for the migration: - [How to create jobs](../../using-semaphore/jobs) - [Persist data with Artifacts](../../using-semaphore/artifacts) - [How to use Docker Environments](../../using-semaphore/pipelines#docker-environments) - - [How to use the Cache](../../using-semaphore/optimization/cache) - + - [How to use the Cache](../../using-semaphore/cache) 5. Optimize performance Once your project is building on Semaphore, begin optimizing for performance. - Add more powerful [self-hosted agents](../../using-semaphore/self-hosted) - - Learn and implement the optimization strategies like [caching](../../using-semaphore/optimization/cache), [fail-fast](../../using-semaphore/pipelines#fail-fast), and [auto-cancel](../../using-semaphore/pipelines#auto-cancel) + - Learn and implement the optimization strategies like [caching](../../using-semaphore/cache), [fail-fast](../../using-semaphore/pipelines#fail-fast), and [auto-cancel](../../using-semaphore/pipelines#auto-cancel) 6. Onboard your team diff --git a/docs/versioned_docs/version-CE-1.2/getting-started/migration/travis.md b/docs/versioned_docs/version-EE-1.3/getting-started/migration/travis.md similarity index 97% rename from docs/versioned_docs/version-CE-1.2/getting-started/migration/travis.md rename to docs/versioned_docs/version-EE-1.3/getting-started/migration/travis.md index deb1d506b..0b6d7efb5 100644 --- a/docs/versioned_docs/version-CE-1.2/getting-started/migration/travis.md +++ b/docs/versioned_docs/version-EE-1.3/getting-started/migration/travis.md @@ -37,7 +37,6 @@ Checkout is implicit in all Travis CI workflows by default. Semaphore does not clone the repository by default. This is because there are certain scenarios in which you don't need the code or you want to customize the cloning process. - To clone the repository in Semaphore we only need to execute [`checkout`](../../reference/toolbox#checkout). ```shell @@ -68,7 +67,7 @@ addons: paths: - $HOME/project/test.log # highlight-end -``` +``` @@ -122,19 +121,19 @@ bundle install cache store ``` -See [caching](../../using-semaphore/optimization/cache) for more details. +See [caching](../../using-semaphore/cache) for more details. ### Language versions -Both Travis CI and Semaphore allow you to use specific language versions. +Both Travis CI and Semaphore allow you to use specific language versions. -Travis CI uses a language-specific setup keyword. +Travis CI uses a language-specific setup keyword. The following example sets the Ruby version to `3.3.4` @@ -170,7 +169,7 @@ services: Semaphore provides the [Docker environments](../../using-semaphore/pipelines#docker-environments) to run your jobs in environments with all your build tools. You can connect multiple Docker images to provide database services for your end-to-end or smoke tests. - + @@ -198,7 +197,7 @@ Using encrypted files uses a different system that's a bit more convoluted. In Semaphore, secrets are stored on the Semaphore server or project. Encryption and decryption is automatically handled for environment variables and files. -First, we create a [secret](../../using-semaphore/secrets) at the server or project level and activate it on a block. +First, we create a [secret](../../using-semaphore/secrets) at the server or project level and activate it on a block. The secret contents are automatically injected as environment variables in all jobs contained on that block. diff --git a/docs/versioned_docs/version-EE-1.3/getting-started/tour/continuous-delivery.md b/docs/versioned_docs/version-EE-1.3/getting-started/tour/continuous-delivery.md new file mode 100644 index 000000000..f410eac29 --- /dev/null +++ b/docs/versioned_docs/version-EE-1.3/getting-started/tour/continuous-delivery.md @@ -0,0 +1,216 @@ +--- +description: Finish up with automated continuous delivery +--- + +# Continuous Delivery + +import Tabs from '@theme/Tabs'; +import TabItem from '@theme/TabItem'; +import Available from '@site/src/components/Available'; +import VideoTutorial from '@site/src/components/VideoTutorial'; +import Steps from '@site/src/components/Steps'; + +We succeeded into having a program built and tested using Continuous Integration. It's time to release it automatically using Continuous Delivery. + +In this section you will learn about: + +- Protecting sensitive data with Secrets +- Creating multiple pipelines +- Using automated promotions + +## Prerequisites + +For this part of the tutorial you will need: + +- A [GitHub Access Token](https://github.com/settings/tokens) with read+write content permissions +- The `git` command line tool + +## Releasing to the world + +The goal is to automatically deploy the built binary to the GitHub repository so people can download and enjoy our program. Next, we're going to add a job that automatically uploads the binary to the repository every time we tag a release with `git tag` + +## Creating a Secret {#secret} + +In order to upload files from the Semaphore job we need to authenticate with your GitHub account. For that, we'll need an access token. + +Now, the problem with such tokens is that they should remain secret. This rules out using environment variables in our jobs to store the token, as these are visible to anyone with read access to the repository. + +We can protect sensitive data such as tokens with *secrets*. Secrets provide a secure way to store key-value pairs and files within your organization. So, even if our repository is public, no one outside your organization can access these secrets. + +To create a secret, follow these steps: + + + +1. Open the project in Semaphore and go to the **Settings** tab +2. Go to **Secrets** +3. Press **New Secret** +4. Type a name for the secret, e.g. `github-release` +5. Type the key-value pair required to authenticate with GitHub + + The variable name is `GH_TOKEN` and the value is your unique token generated in your GitHub account + + ![Creating a secret](./img/create-secret.jpg) + +6. Press **Save Secret** + + + +## Release job {#release} + +Now we're ready to add a release job. We can use the [gh command line tool](https://cli.github.com/) to automate the release from a Semaphore job. + + + +1. Open the workflow editor +2. Add a block +3. Type the following commands + + ```shell title="Release job" + checkout + artifact pull workflow hello-go + gh release create "$SEMAPHORE_WORKFLOW_ID" hello-go --latest -t "$SEMAPHORE_WORKFLOW_ID" -n "Continuous Delivery Release: $SEMAPHORE_WORKFLOW_ID" + ``` + + The job pulls the binary from the artifact repository and publishes it using a unique UUID generated by Semaphore + +4. Open the **Secrets** section on the block and enable `github-release` + + ![Release job](./img/release-job-ci.jpg) + +5. Start the workflow + + + +After the workflow finishes you should see a new release on your GitHub repository. + +![Released package](./img/release1.jpg) + +This works, however, there are quite a few problems with this approach: + +- Releases are randomly named instead of using sensible version numbers +- Every update on every branch generates a release. This is too much, we usually only want to release on certain milestones +- Continuous Integration and Continuous Delivery should be logically separated tasks. Here, they are all smashed together + +What we need is to split the pipeline in two: Continuous Integration and Continuous Delivery. For that, we need to learn about *promotions*. + +## What are promotions? {#promotion} + +By now, you know what a pipeline is. But you might not know that a project can have multiple pipelines. Logically, every pipeline has one goal or fulfills one task: test, release, deploy, and so forth. + +In Semaphore, we use promotions to link pipelines. A promotion represents a pointer to one or more pipeline files in the project. + +Let's take the release block and put it on a separate pipeline. + + + +1. Delete the "Release" block in the first pipeline +2. Press **Add Promotion**. This creates and links a new pipeline. +3. Give descriptive names to the Promotion and the new pipeline +4. Select the first block on the new pipeline +5. Just like before, type the job commands + + ```shell title="Release job" + checkout + artifact pull workflow hello-go + gh release create "$SEMAPHORE_GIT_TAG_NAME" hello-go --latest -t "$SEMAPHORE_GIT_TAG_NAME" -n "Continuous Delivery Release: $SEMAPHORE_GIT_TAG_NAME" + ``` + + We've changed the release command to use the Git tag for the release name. This allows us to tag releases using sensible version numbers. + +6. As before, open the **Secrets** section on the block and enable `github-release` + + ![Release pipeline](./img/release2.jpg) + +7. Start the workflow + + + +Now the execution of the workflow will stop on the Continuous Integration pipeline. Release won't happen unless we press the "Release" button. + +![Manual release](./img/pipeline-manual.jpg) + +But before we can release we should create a tag for our build. Run these commands in the repository on your machine: + +```shell title="Creating a tag" +git pull origin setup-semaphore +echo "This is release v1.0.0" > release-notes.txt +git add release-notes.txt +git commit -m "release v1.0.0" +git tag -a v1.0.0 -m "Releasing version v1.0.0" +git push origin v1.0.0 +``` + +The push will initiate a new workflow related to the tag we just pushed. Check the progress of the CI pipeline and once done, press the **Release** button. + +![Releasing using CD pipeline](./img/release3.jpg) + +If you check your GitHub repository, you should now find a release correctly tagged as "v1.0.0" + +
+Semaphore environment variables +
+ +Semaphore provides several environment variables you can use in your scripts. In the examples we have used: + +- `$SEMAPHORE_WORKFLOW_ID` a unique ID for every workflow +- `$SEMAPHORE_GIT_TAG_NAME` contains the name for the pushed Git tag + +See [environment variables](../../reference/env-vars) for a list of all the variable available in the CI environment. + +
+
+ +## Automating releases {#autopromotion} + +Releasing packages by pressing a button is great. But you know what's even better? Doing it automatically. Especially if you have a very robust test suite that gives you confidence in the build. + +To automate the release we need to add a promotion condition. + + + +1. Go back to the main project and open the workflow editor +2. Semaphore may ask which branch to open: select `setup-semaphore` +3. Select the "Release" promotion + + ![Editing the promotion config](./img/promotion-button.jpg) + +4. Activate the checkbox **Enable automatic promotion** +5. Now we need to specify conditions to automatically start the promotion + + Let's use this condition: `result = 'passed' AND tag =~ '^v.*'` + + This will start the promotion when all tests have passed and the commit includes any tag starting with "v" (the syntax supports regular expressions) + +6. Start the workflow + + + +Let's make another release. Type these commands in the repository on your machine: + +```shell title="Creating a tag" +git pull origin setup-semaphore +echo "This is release v1.0.1" > release-notes.txt +git add release-notes.txt +git commit -m "release v1.0.1" +git tag -a v1.0.1 -m "Releasing version v1.0.1" +git push origin v1.0.1 +``` + +This time the Release pipeline should automatically start as soon as all jobs in the CI pipeline have passed. We should also find a new release on the GitHub repository when everything is finished. + +## What have we learned? + +- How to create and use Secrets +- How to release packages to GitHub +- How to use promotions to connect pipelines +- How to automate triggering promotions + +## What's next? + +That's all for the guided tour. What you've learned here will serve you well to build complex workflows for a lot of scenarios. + +There is, of course, a lot more to learn. Semaphore is packed with features that do more with less work and optimizations to greatly speed up your workflows. + +We recommend going next to the [Using Semaphore](../../using-semaphore/workflows) page. Here you will find the complete handbook for all Semaphore operations. + +Thank you for trying out Semaphore and happy building! diff --git a/docs/versioned_docs/version-CE-1.2/getting-started/tour/continuous-integration.md b/docs/versioned_docs/version-EE-1.3/getting-started/tour/continuous-integration.md similarity index 100% rename from docs/versioned_docs/version-CE-1.2/getting-started/tour/continuous-integration.md rename to docs/versioned_docs/version-EE-1.3/getting-started/tour/continuous-integration.md diff --git a/docs/versioned_docs/version-CE-1.2/getting-started/tour/first-steps.md b/docs/versioned_docs/version-EE-1.3/getting-started/tour/first-steps.md similarity index 100% rename from docs/versioned_docs/version-CE-1.2/getting-started/tour/first-steps.md rename to docs/versioned_docs/version-EE-1.3/getting-started/tour/first-steps.md diff --git a/docs/versioned_docs/version-CE-1.2/getting-started/tour/hello-world.md b/docs/versioned_docs/version-EE-1.3/getting-started/tour/hello-world.md similarity index 100% rename from docs/versioned_docs/version-CE-1.2/getting-started/tour/hello-world.md rename to docs/versioned_docs/version-EE-1.3/getting-started/tour/hello-world.md diff --git a/docs/versioned_docs/version-CE-1.2/getting-started/tour/img/add-job.jpg b/docs/versioned_docs/version-EE-1.3/getting-started/tour/img/add-job.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/getting-started/tour/img/add-job.jpg rename to docs/versioned_docs/version-EE-1.3/getting-started/tour/img/add-job.jpg diff --git a/docs/versioned_docs/version-CE-1.2/getting-started/tour/img/add-people-project.jpg b/docs/versioned_docs/version-EE-1.3/getting-started/tour/img/add-people-project.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/getting-started/tour/img/add-people-project.jpg rename to docs/versioned_docs/version-EE-1.3/getting-started/tour/img/add-people-project.jpg diff --git a/docs/versioned_docs/version-CE-1.2/getting-started/tour/img/add-to-project.jpg b/docs/versioned_docs/version-EE-1.3/getting-started/tour/img/add-to-project.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/getting-started/tour/img/add-to-project.jpg rename to docs/versioned_docs/version-EE-1.3/getting-started/tour/img/add-to-project.jpg diff --git a/docs/versioned_docs/version-CE-1.2/getting-started/tour/img/add-user.jpg b/docs/versioned_docs/version-EE-1.3/getting-started/tour/img/add-user.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/getting-started/tour/img/add-user.jpg rename to docs/versioned_docs/version-EE-1.3/getting-started/tour/img/add-user.jpg diff --git a/docs/versioned_docs/version-CE-1.2/getting-started/tour/img/artifacts1.jpg b/docs/versioned_docs/version-EE-1.3/getting-started/tour/img/artifacts1.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/getting-started/tour/img/artifacts1.jpg rename to docs/versioned_docs/version-EE-1.3/getting-started/tour/img/artifacts1.jpg diff --git a/docs/versioned_docs/version-CE-1.2/getting-started/tour/img/authorize-github-app.jpg b/docs/versioned_docs/version-EE-1.3/getting-started/tour/img/authorize-github-app.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/getting-started/tour/img/authorize-github-app.jpg rename to docs/versioned_docs/version-EE-1.3/getting-started/tour/img/authorize-github-app.jpg diff --git a/docs/versioned_docs/version-CE-1.2/getting-started/tour/img/authorize.jpg b/docs/versioned_docs/version-EE-1.3/getting-started/tour/img/authorize.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/getting-started/tour/img/authorize.jpg rename to docs/versioned_docs/version-EE-1.3/getting-started/tour/img/authorize.jpg diff --git a/docs/versioned_docs/version-CE-1.2/getting-started/tour/img/build-job1.jpg b/docs/versioned_docs/version-EE-1.3/getting-started/tour/img/build-job1.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/getting-started/tour/img/build-job1.jpg rename to docs/versioned_docs/version-EE-1.3/getting-started/tour/img/build-job1.jpg diff --git a/docs/versioned_docs/version-CE-1.2/getting-started/tour/img/cd-workflow.jpg b/docs/versioned_docs/version-EE-1.3/getting-started/tour/img/cd-workflow.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/getting-started/tour/img/cd-workflow.jpg rename to docs/versioned_docs/version-EE-1.3/getting-started/tour/img/cd-workflow.jpg diff --git a/docs/versioned_docs/version-CE-1.2/getting-started/tour/img/change-permissions.jpg b/docs/versioned_docs/version-EE-1.3/getting-started/tour/img/change-permissions.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/getting-started/tour/img/change-permissions.jpg rename to docs/versioned_docs/version-EE-1.3/getting-started/tour/img/change-permissions.jpg diff --git a/docs/versioned_docs/version-CE-1.2/getting-started/tour/img/choose-repo.jpg b/docs/versioned_docs/version-EE-1.3/getting-started/tour/img/choose-repo.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/getting-started/tour/img/choose-repo.jpg rename to docs/versioned_docs/version-EE-1.3/getting-started/tour/img/choose-repo.jpg diff --git a/docs/versioned_docs/version-CE-1.2/getting-started/tour/img/ci-workflow.jpg b/docs/versioned_docs/version-EE-1.3/getting-started/tour/img/ci-workflow.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/getting-started/tour/img/ci-workflow.jpg rename to docs/versioned_docs/version-EE-1.3/getting-started/tour/img/ci-workflow.jpg diff --git a/docs/versioned_docs/version-CE-1.2/getting-started/tour/img/create-new.jpg b/docs/versioned_docs/version-EE-1.3/getting-started/tour/img/create-new.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/getting-started/tour/img/create-new.jpg rename to docs/versioned_docs/version-EE-1.3/getting-started/tour/img/create-new.jpg diff --git a/docs/versioned_docs/version-CE-1.2/getting-started/tour/img/create-org.jpg b/docs/versioned_docs/version-EE-1.3/getting-started/tour/img/create-org.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/getting-started/tour/img/create-org.jpg rename to docs/versioned_docs/version-EE-1.3/getting-started/tour/img/create-org.jpg diff --git a/docs/versioned_docs/version-CE-1.2/getting-started/tour/img/create-secret.jpg b/docs/versioned_docs/version-EE-1.3/getting-started/tour/img/create-secret.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/getting-started/tour/img/create-secret.jpg rename to docs/versioned_docs/version-EE-1.3/getting-started/tour/img/create-secret.jpg diff --git a/docs/versioned_docs/version-CE-1.2/getting-started/tour/img/dependencies.jpg b/docs/versioned_docs/version-EE-1.3/getting-started/tour/img/dependencies.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/getting-started/tour/img/dependencies.jpg rename to docs/versioned_docs/version-EE-1.3/getting-started/tour/img/dependencies.jpg diff --git a/docs/versioned_docs/version-CE-1.2/getting-started/tour/img/env-vars-log.jpg b/docs/versioned_docs/version-EE-1.3/getting-started/tour/img/env-vars-log.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/getting-started/tour/img/env-vars-log.jpg rename to docs/versioned_docs/version-EE-1.3/getting-started/tour/img/env-vars-log.jpg diff --git a/docs/versioned_docs/version-CE-1.2/getting-started/tour/img/environment-variables1.jpg b/docs/versioned_docs/version-EE-1.3/getting-started/tour/img/environment-variables1.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/getting-started/tour/img/environment-variables1.jpg rename to docs/versioned_docs/version-EE-1.3/getting-started/tour/img/environment-variables1.jpg diff --git a/docs/versioned_docs/version-CE-1.2/getting-started/tour/img/first-workflow.jpg b/docs/versioned_docs/version-EE-1.3/getting-started/tour/img/first-workflow.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/getting-started/tour/img/first-workflow.jpg rename to docs/versioned_docs/version-EE-1.3/getting-started/tour/img/first-workflow.jpg diff --git a/docs/versioned_docs/version-CE-1.2/getting-started/tour/img/github-connect-button.jpg b/docs/versioned_docs/version-EE-1.3/getting-started/tour/img/github-connect-button.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/getting-started/tour/img/github-connect-button.jpg rename to docs/versioned_docs/version-EE-1.3/getting-started/tour/img/github-connect-button.jpg diff --git a/docs/versioned_docs/version-CE-1.2/getting-started/tour/img/give-access.jpg b/docs/versioned_docs/version-EE-1.3/getting-started/tour/img/give-access.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/getting-started/tour/img/give-access.jpg rename to docs/versioned_docs/version-EE-1.3/getting-started/tour/img/give-access.jpg diff --git a/docs/versioned_docs/version-CE-1.2/getting-started/tour/img/grant-access.jpg b/docs/versioned_docs/version-EE-1.3/getting-started/tour/img/grant-access.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/getting-started/tour/img/grant-access.jpg rename to docs/versioned_docs/version-EE-1.3/getting-started/tour/img/grant-access.jpg diff --git a/docs/versioned_docs/version-CE-1.2/getting-started/tour/img/hello-world-editor1.jpg b/docs/versioned_docs/version-EE-1.3/getting-started/tour/img/hello-world-editor1.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/getting-started/tour/img/hello-world-editor1.jpg rename to docs/versioned_docs/version-EE-1.3/getting-started/tour/img/hello-world-editor1.jpg diff --git a/docs/versioned_docs/version-CE-1.2/getting-started/tour/img/hello-world-output1.jpg b/docs/versioned_docs/version-EE-1.3/getting-started/tour/img/hello-world-output1.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/getting-started/tour/img/hello-world-output1.jpg rename to docs/versioned_docs/version-EE-1.3/getting-started/tour/img/hello-world-output1.jpg diff --git a/docs/versioned_docs/version-CE-1.2/getting-started/tour/img/homepage.jpg b/docs/versioned_docs/version-EE-1.3/getting-started/tour/img/homepage.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/getting-started/tour/img/homepage.jpg rename to docs/versioned_docs/version-EE-1.3/getting-started/tour/img/homepage.jpg diff --git a/docs/versioned_docs/version-CE-1.2/getting-started/tour/img/initial-workflow1.jpg b/docs/versioned_docs/version-EE-1.3/getting-started/tour/img/initial-workflow1.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/getting-started/tour/img/initial-workflow1.jpg rename to docs/versioned_docs/version-EE-1.3/getting-started/tour/img/initial-workflow1.jpg diff --git a/docs/versioned_docs/version-CE-1.2/getting-started/tour/img/invite-people.jpg b/docs/versioned_docs/version-EE-1.3/getting-started/tour/img/invite-people.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/getting-started/tour/img/invite-people.jpg rename to docs/versioned_docs/version-EE-1.3/getting-started/tour/img/invite-people.jpg diff --git a/docs/versioned_docs/version-CE-1.2/getting-started/tour/img/moar-tests.jpg b/docs/versioned_docs/version-EE-1.3/getting-started/tour/img/moar-tests.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/getting-started/tour/img/moar-tests.jpg rename to docs/versioned_docs/version-EE-1.3/getting-started/tour/img/moar-tests.jpg diff --git a/docs/versioned_docs/version-CE-1.2/getting-started/tour/img/onboarding-survery.jpg b/docs/versioned_docs/version-EE-1.3/getting-started/tour/img/onboarding-survery.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/getting-started/tour/img/onboarding-survery.jpg rename to docs/versioned_docs/version-EE-1.3/getting-started/tour/img/onboarding-survery.jpg diff --git a/docs/versioned_docs/version-CE-1.2/getting-started/tour/img/org-diagram.jpg b/docs/versioned_docs/version-EE-1.3/getting-started/tour/img/org-diagram.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/getting-started/tour/img/org-diagram.jpg rename to docs/versioned_docs/version-EE-1.3/getting-started/tour/img/org-diagram.jpg diff --git a/docs/versioned_docs/version-CE-1.2/getting-started/tour/img/parallel-jobs.jpg b/docs/versioned_docs/version-EE-1.3/getting-started/tour/img/parallel-jobs.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/getting-started/tour/img/parallel-jobs.jpg rename to docs/versioned_docs/version-EE-1.3/getting-started/tour/img/parallel-jobs.jpg diff --git a/docs/versioned_docs/version-CE-1.2/getting-started/tour/img/people-tab.jpg b/docs/versioned_docs/version-EE-1.3/getting-started/tour/img/people-tab.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/getting-started/tour/img/people-tab.jpg rename to docs/versioned_docs/version-EE-1.3/getting-started/tour/img/people-tab.jpg diff --git a/docs/versioned_docs/version-CE-1.2/getting-started/tour/img/pipeline-manual.jpg b/docs/versioned_docs/version-EE-1.3/getting-started/tour/img/pipeline-manual.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/getting-started/tour/img/pipeline-manual.jpg rename to docs/versioned_docs/version-EE-1.3/getting-started/tour/img/pipeline-manual.jpg diff --git a/docs/versioned_docs/version-CE-1.2/getting-started/tour/img/project-repo.jpg b/docs/versioned_docs/version-EE-1.3/getting-started/tour/img/project-repo.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/getting-started/tour/img/project-repo.jpg rename to docs/versioned_docs/version-EE-1.3/getting-started/tour/img/project-repo.jpg diff --git a/docs/versioned_docs/version-CE-1.2/getting-started/tour/img/promotion-button.jpg b/docs/versioned_docs/version-EE-1.3/getting-started/tour/img/promotion-button.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/getting-started/tour/img/promotion-button.jpg rename to docs/versioned_docs/version-EE-1.3/getting-started/tour/img/promotion-button.jpg diff --git a/docs/versioned_docs/version-CE-1.2/getting-started/tour/img/regen-api-token.jpg b/docs/versioned_docs/version-EE-1.3/getting-started/tour/img/regen-api-token.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/getting-started/tour/img/regen-api-token.jpg rename to docs/versioned_docs/version-EE-1.3/getting-started/tour/img/regen-api-token.jpg diff --git a/docs/versioned_docs/version-CE-1.2/getting-started/tour/img/release-job-ci.jpg b/docs/versioned_docs/version-EE-1.3/getting-started/tour/img/release-job-ci.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/getting-started/tour/img/release-job-ci.jpg rename to docs/versioned_docs/version-EE-1.3/getting-started/tour/img/release-job-ci.jpg diff --git a/docs/versioned_docs/version-CE-1.2/getting-started/tour/img/release1.jpg b/docs/versioned_docs/version-EE-1.3/getting-started/tour/img/release1.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/getting-started/tour/img/release1.jpg rename to docs/versioned_docs/version-EE-1.3/getting-started/tour/img/release1.jpg diff --git a/docs/versioned_docs/version-CE-1.2/getting-started/tour/img/release2.jpg b/docs/versioned_docs/version-EE-1.3/getting-started/tour/img/release2.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/getting-started/tour/img/release2.jpg rename to docs/versioned_docs/version-EE-1.3/getting-started/tour/img/release2.jpg diff --git a/docs/versioned_docs/version-CE-1.2/getting-started/tour/img/release3.jpg b/docs/versioned_docs/version-EE-1.3/getting-started/tour/img/release3.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/getting-started/tour/img/release3.jpg rename to docs/versioned_docs/version-EE-1.3/getting-started/tour/img/release3.jpg diff --git a/docs/versioned_docs/version-CE-1.2/getting-started/tour/img/select-people.jpg b/docs/versioned_docs/version-EE-1.3/getting-started/tour/img/select-people.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/getting-started/tour/img/select-people.jpg rename to docs/versioned_docs/version-EE-1.3/getting-started/tour/img/select-people.jpg diff --git a/docs/versioned_docs/version-CE-1.2/getting-started/tour/img/select-plan.jpg b/docs/versioned_docs/version-EE-1.3/getting-started/tour/img/select-plan.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/getting-started/tour/img/select-plan.jpg rename to docs/versioned_docs/version-EE-1.3/getting-started/tour/img/select-plan.jpg diff --git a/docs/versioned_docs/version-CE-1.2/getting-started/tour/img/server-menu.jpg b/docs/versioned_docs/version-EE-1.3/getting-started/tour/img/server-menu.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/getting-started/tour/img/server-menu.jpg rename to docs/versioned_docs/version-EE-1.3/getting-started/tour/img/server-menu.jpg diff --git a/docs/versioned_docs/version-CE-1.2/getting-started/tour/img/signup.jpg b/docs/versioned_docs/version-EE-1.3/getting-started/tour/img/signup.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/getting-started/tour/img/signup.jpg rename to docs/versioned_docs/version-EE-1.3/getting-started/tour/img/signup.jpg diff --git a/docs/versioned_docs/version-CE-1.2/getting-started/tour/img/ssh-debug-terminal.jpg b/docs/versioned_docs/version-EE-1.3/getting-started/tour/img/ssh-debug-terminal.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/getting-started/tour/img/ssh-debug-terminal.jpg rename to docs/versioned_docs/version-EE-1.3/getting-started/tour/img/ssh-debug-terminal.jpg diff --git a/docs/versioned_docs/version-CE-1.2/getting-started/tour/img/ssh-debug-terminal.png b/docs/versioned_docs/version-EE-1.3/getting-started/tour/img/ssh-debug-terminal.png similarity index 100% rename from docs/versioned_docs/version-CE-1.2/getting-started/tour/img/ssh-debug-terminal.png rename to docs/versioned_docs/version-EE-1.3/getting-started/tour/img/ssh-debug-terminal.png diff --git a/docs/versioned_docs/version-CE-1.2/getting-started/tour/img/ssh-debug.jpg b/docs/versioned_docs/version-EE-1.3/getting-started/tour/img/ssh-debug.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/getting-started/tour/img/ssh-debug.jpg rename to docs/versioned_docs/version-EE-1.3/getting-started/tour/img/ssh-debug.jpg diff --git a/docs/versioned_docs/version-CE-1.2/getting-started/tour/img/temp-password.jpg b/docs/versioned_docs/version-EE-1.3/getting-started/tour/img/temp-password.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/getting-started/tour/img/temp-password.jpg rename to docs/versioned_docs/version-EE-1.3/getting-started/tour/img/temp-password.jpg diff --git a/docs/versioned_docs/version-CE-1.2/getting-started/tour/img/test-1.jpg b/docs/versioned_docs/version-EE-1.3/getting-started/tour/img/test-1.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/getting-started/tour/img/test-1.jpg rename to docs/versioned_docs/version-EE-1.3/getting-started/tour/img/test-1.jpg diff --git a/docs/versioned_docs/version-CE-1.1/reference/agent-aws-stack.md b/docs/versioned_docs/version-EE-1.3/reference/agent-aws-stack.md similarity index 96% rename from docs/versioned_docs/version-CE-1.1/reference/agent-aws-stack.md rename to docs/versioned_docs/version-EE-1.3/reference/agent-aws-stack.md index 9e762eb12..cd5fd952d 100644 --- a/docs/versioned_docs/version-CE-1.1/reference/agent-aws-stack.md +++ b/docs/versioned_docs/version-EE-1.3/reference/agent-aws-stack.md @@ -10,11 +10,8 @@ import Available from '@site/src/components/Available'; import VideoTutorial from '@site/src/components/VideoTutorial'; import Steps from '@site/src/components/Steps'; - - This page describes all the settings available to configure [AWS Autoscaler Stack](../using-semaphore/self-hosted-aws). - ## Overview The AWS Autoscaler Stack accepts configuration settings in two ways: @@ -54,7 +51,6 @@ The AWS Autoscaler Stack accepts configuration settings in two ways: See [Autoscaling with AWS](../using-semaphore/self-hosted-aws) to learn more. - ## Required parameters ### Endpoint {#endpoint} @@ -65,7 +61,6 @@ The endpoint the agent uses for registration and sync with your Semaphore server If this parameter is not set, you must configure [`SEMAPHORE_ORGANIZATION`](#organization). - ### Organization {#organization} - **Parameter name**: `SEMAPHORE_ORGANIZATION` @@ -80,14 +75,12 @@ If [`SEMAPHORE_ENDPOINT`] is not set, this parameter is used to generate the end The name of the stack. This is the stack name used in Cloudformation and as a prefix to name all the stack resources. When deploying multiple stacks for multiple agent types, different stack names are required. - ### Agent token {#agent-token} - **Parameter name**: `SEMAPHORE_AGENT_TOKEN_PARAMETER_NAME` The AWS SSM parameter name contains the Semaphore agent [registration token](../using-semaphore/self-hosted-install#register-agent). - ## Optional parameters Here's the converted markdown documentation based on the original table you provided: @@ -98,7 +91,6 @@ Here's the converted markdown documentation based on the original table you prov Path to a JSON file containing the parameters to use. This is an alternative to using environment variables for setting the stack's configuration parameters. - ### Agent instance type {#agent-instance-type} - **Parameter name**: `SEMAPHORE_AGENT_INSTANCE_TYPE` @@ -106,7 +98,6 @@ Path to a JSON file containing the parameters to use. This is an alternative to AWS instance type used for the agents. See the available instance type on [AWS docs](https://aws.amazon.com/ec2/instance-types/). - ### Auto-scaling group minimum size {#asg-min-size} - **Parameter name**: `SEMAPHORE_AGENT_ASG_MIN_SIZE` @@ -114,7 +105,6 @@ AWS instance type used for the agents. See the available instance type on [AWS d Minimum size for the auto-scaling group. - ### Auto-scaling group maximum size {#asg-max-size} - **Parameter name**: `SEMAPHORE_AGENT_ASG_MAX_SIZE` @@ -122,7 +112,6 @@ Minimum size for the auto-scaling group. Maximum size for the auto-scaling group. - ### Auto-scaling group desired capacity {#asg-desired} - **Parameter name**: `SEMAPHORE_AGENT_ASG_DESIRED` @@ -130,7 +119,6 @@ Maximum size for the auto-scaling group. Desired capacity for the auto-scaling group. - ### Use dynamic scaling {#use-dynamic-scaling} - **Parameter name**: `SEMAPHORE_AGENT_USE_DYNAMIC_SCALING` @@ -147,14 +135,12 @@ Security Group ID to use for agent instances. If not specified, a security group - an egress rule allowing all outbound traffic - an ingress rule for SSH if [`SEMAPHORE_AGENT_KEY_NAME`](#key-name) is specified - ### Key name {#key-name} - **Parameter name**: `SEMAPHORE_AGENT_KEY_NAME` Key name to access agents through SSH. If not specified, no SSH inbound access is allowed. - ### Disconnect after job {#disconnect-after-job} - **Parameter name**: `SEMAPHORE_AGENT_DISCONNECT_AFTER_JOB` @@ -162,23 +148,20 @@ Key name to access agents through SSH. If not specified, no SSH inbound access i If true, the agent disconnects after completing a job. - ### Disconnect after idle timeout {#disconnect-after-idle-timeout} - **Parameter name**: `SEMAPHORE_AGENT_DISCONNECT_AFTER_IDLE_TIMEOUT` - **default value**: `300` -Number of seconds of idleness after which the agent is shut down. +Number of seconds of idleness after which the agent is shut down. Setting this to 0 disables the scaling down behavior for the stack since the agents do not shutdown due to idleness. - ### Cache bucket name {#cache-bucket-name} - **Parameter name**: `SEMAPHORE_AGENT_CACHE_BUCKET_NAME` -Existing S3 bucket name to use for caching. If this is not set, [caching](../using-semaphore/optimization/cache) does not work. - +Existing S3 bucket name to use for caching. If this is not set, [caching](../using-semaphore/cache) does not work. ### Token KMS key {#token-kms-key} @@ -186,80 +169,70 @@ Existing S3 bucket name to use for caching. If this is not set, [caching](../usi KMS key id used to encrypt and decrypt `SEMAPHORE_AGENT_TOKEN_PARAMETER_NAME`. If nothing is given, the default `alias/aws/ssm` key is assumed. - ### VPC ID {#vpc-id} - **Parameter name**: `SEMAPHORE_AGENT_VPC_ID` The ID of an existing VPC to use when launching agent instances. By default, this is blank, and the default VPC on your AWS account is used. - ### Subnets {#subnets} - **Parameter name**: `SEMAPHORE_AGENT_SUBNETS` -Comma-separated list of existing VPC subnet IDs where EC2 instances are to run. This is required when using [`SEMAPHORE_AGENT_VPC_ID`](#vpc-id). +Comma-separated list of existing VPC subnet IDs where EC2 instances are to run. This is required when using [`SEMAPHORE_AGENT_VPC_ID`](#vpc-id). If `SEMAPHORE_AGENT_SUBNETS` is set and [`SEMAPHORE_AGENT_VPC_ID`](#vpc-id) is blank, the subnets are ignored, and the default VPC is used. This means that private and public subnets are possible, but isolated subnets cannot be used. - ### AMI {#ami} - **Parameter name**: `SEMAPHORE_AGENT_AMI` The AMI is used for all instances. If empty, the stack uses the default AMIs, looking them up by name. If the default AMI isn't sufficient, you can use your own AMIs, but they need to be based on the stack's default AMI. - ### OS type {#os-type} - **Parameter name**: `SEMAPHORE_AGENT_OS` -The OS type for agents. +The OS type for agents. -Possible values: +Possible values: -- `ubuntu-focal` +- `ubuntu-focal` - `windows` - ### Architecture type {#architecture-type} - **Parameter name**: `SEMAPHORE_AGENT_ARCH` The arch type for agents. Possible values: -- `x86_64` +- `x86_64` - `arm64` - ### Availability zones {#availability-zones} - **Parameter name**: `SEMAPHORE_AGENT_AZS` A comma-separated list of availability zones to use for the auto-scaling group. - ### Managed policy names {#managed-policy-names} - **Parameter name**: `SEMAPHORE_AGENT_MANAGED_POLICY_NAMES` A comma-separated list of custom IAM policy names to attach to the instance profile role. - ### ASG metrics {#asg-metrics} - **Parameter name**: `SEMAPHORE_AGENT_ASG_METRICS` A comma-separated list of ASG metrics to collect. Available metrics can be found on the [AWS CDK Documentation](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_autoscaling.CfnAutoScalingGroup.MetricsCollectionProperty.html). - ### Volume name {#volume-name} - **Parameter name**: `SEMAPHORE_AGENT_VOLUME_NAME` The EBS volume's device name to use for a custom volume. If this is not set, the EC2 instances are assigned the EBS volume based on the AMI. - ### Volume type {#volume-type} - **Parameter name**: `SEMAPHORE_AGENT_VOLUME_TYPE` @@ -267,7 +240,6 @@ The EBS volume's device name to use for a custom volume. If this is not set, the The EBS volume's type, when using [`SEMAPHORE_AGENT_VOLUME_NAME`](#volume-name). - ### Volume size {#volume-size} - **Parameter name**: `SEMAPHORE_AGENT_VOLUME_SIZE` @@ -275,47 +247,41 @@ The EBS volume's type, when using [`SEMAPHORE_AGENT_VOLUME_NAME`](#volume-name). The EBS volume's size, in GB, when using [`SEMAPHORE_AGENT_VOLUME_NAME`](#volume-name). - ### License configuration ARN {#license-configuration-arn} - **Parameter name**: `SEMAPHORE_AGENT_LICENSE_CONFIGURATION_ARN` The license configuration ARN is associated with the AMI used by the stack. - ### Mac family {#mac-family} - **Parameter name**: `SEMAPHORE_AGENT_MAC_FAMILY` The EC2 Mac instance family to use. Possible values: `mac1` and `mac2`. - ### Mac dedicated hosts {#mac-dedicated-hosts} - **Parameter name**: `SEMAPHORE_AGENT_MAC_DEDICATED_HOSTS` A comma-separated list of dedicated host IDs to include in the host resource group. - ### Tags {#tags} - **Parameter name**: `SEMAPHORE_AGENT_TAGS` -A comma-separated list of key-value pairs of tags to be added to all resources created for the stack. +A comma-separated list of key-value pairs of tags to be added to all resources created for the stack. For example: `Name:Something,Category:SomethingElse`. - ### Use pre-signed URL {#use-pre-signed-url} - **Parameter name**: `SEMAPHORE_AGENT_USE_PRE_SIGNED_URL` - **default value**: `false` -If true, use a pre-signed AWS STS GetCallerIdentity URL for agent registration. +If true, use a pre-signed AWS STS GetCallerIdentity URL for agent registration. See [agent type configuration](../using-semaphore/self-hosted-install#name-sts) to learn how to configure this security feature. - ## See also - [How to use self-hosted agents](../using-semaphore/self-hosted) diff --git a/docs/versioned_docs/version-CE-1.2/reference/agent-yaml.md b/docs/versioned_docs/version-EE-1.3/reference/agent-yaml.md similarity index 100% rename from docs/versioned_docs/version-CE-1.2/reference/agent-yaml.md rename to docs/versioned_docs/version-EE-1.3/reference/agent-yaml.md diff --git a/docs/versioned_docs/version-CE-1.2/reference/api.md b/docs/versioned_docs/version-EE-1.3/reference/api.md similarity index 62% rename from docs/versioned_docs/version-CE-1.2/reference/api.md rename to docs/versioned_docs/version-EE-1.3/reference/api.md index f082c978b..620c43d74 100644 --- a/docs/versioned_docs/version-CE-1.2/reference/api.md +++ b/docs/versioned_docs/version-EE-1.3/reference/api.md @@ -468,10 +468,68 @@ curl -i -X POST \ ## Promotions - +### List promotions + +```text +GET .semaphoreci.com/api/v1alpha/promotions?pipeline_id=:pipeline_id +``` + +Parameters: + +- `pipeline_id` (**required**) - ID of a pipeline. + +Response: + +```json +HTTP status: 200 + +[ + { + "triggered_by": "Pipeline Done request", + "status": "passed", + "name": "production" + } +] +``` + +Example: + +```shell +curl -i -H "Authorization: Token {api_token}" \ + "https://.semaphoreci.com/api/v1alpha/promotions\?pipeline_id\=:pipeline_id" +``` + +### Trigger a promotion + +```text +POST .semaphoreci.com/api/v1alpha/promotions +``` + +Parameters: + +- `pipeline_id` (**required**) - ID of a pipeline. +- `name` (**required**) - Name of the promotion, e.g. `Production deployment`. +- `override` (*optional*) - Boolean safeguard flag that needs to be set to `true` if you want to trigger a promotion for a pipeline that has failed or is still running. +- *parameter_name* - (*optional*) - Name of the parameter used in the [parameterized promotion](../using-semaphore/promotions#parameters). + +Response: + +```text +HTTP status: 200 +``` + +Example: + +```shell +curl -H "Authorization: Token {api_token}" \ + -d "name=:promotion_name&pipeline_id=:pipeline_id" \ + -X POST "https://.semaphoreci.com/api/v1alpha/promotions" +``` ## Tasks {#tasks} +### Trigger a taks + [Tasks](../using-semaphore/tasks) can be triggered via the API. To trigger a task with its default parameters: @@ -624,9 +682,9 @@ curl -H "Authorization: Token {api_token}" \ "https:///api/v1alpha/logs/:job_id" ``` -### Self-hosted agent types +## Self-hosted agent types -#### Listing agent types +### Listing agent types ```text GET /api/v1alpha/self_hosted_agent_types @@ -687,7 +745,7 @@ curl -i \ "https:///api/v1alpha/self_hosted_agent_types" ``` -#### Create an agent type +### Create an agent type ```text POST /api/v1alpha/self_hosted_agent_types @@ -740,7 +798,7 @@ curl -i \ "https:///api/v1alpha/self_hosted_agent_types" ``` -#### Update an agent type +### Update an agent type ```text PATCH /api/v1alpha/self_hosted_agent_types/:agent_type_name @@ -792,7 +850,7 @@ curl -X PATCH -i \ "https:///api/v1alpha/self_hosted_agent_types/s1-aws-small" ``` -#### Describe an agent type +### Describe an agent type ```text GET /api/v1alpha/self_hosted_agent_types/:agent_type_name @@ -833,7 +891,7 @@ curl -i \ "https:///api/v1alpha/self_hosted_agent_types/s1-aws-small" ``` -#### Delete an agent type +### Delete an agent type ```text DELETE /api/v1alpha/self_hosted_agent_types/:agent_type_name @@ -858,7 +916,7 @@ curl -i -X DELETE \ "https:///api/v1alpha/self_hosted_agent_types/s1-aws-small" ``` -#### Disable agents for an agent type +### Disable agents for an agent type ```text POST /api/v1alpha/self_hosted_agent_types/:agent_type_name/disable_all @@ -885,9 +943,9 @@ curl -i \ "https:///api/v1alpha/self_hosted_agent_types/s1-aws-small/disable_all" ``` -### Self-hosted agents +## Self-hosted agents -#### List agents for an agent type +### List agents for an agent type ```text GET /api/v1alpha/agents?agent_type=:agent_type&page_size=:page_size&cursor=:cursor @@ -994,7 +1052,549 @@ curl -i \ ## Deployment targets - +### List targets + +This API endpoint provides a list of deployment targets linked to a given project. + +```text +GET .semaphoreci.com/api/v1alpha/deployment_targets?project_id=:project_id +``` + +Parameters: + +- `project_id` (**required**) - UUID of the project for which deployment targets are to be listed. + +Response: + +The response is a JSON object comprising an array of deployment target objects for the specified project ID. + +```json +HTTP status: 200 + +[ + { + "url": "project_1234.zyx", + "updated_by": "02984c87-efe8-4ea1-bcac-9511a34a3df3", + "updated_at": "2023-06-07T09:24:04.000000Z", + "subject_rules": [ + { + "type": "ANY", + "subject_id": "" + } + ], + "state_message": "", + "state": "USABLE", + "project_id": "a426b4db-1919-483d-926d-06ba1320b209", + "organization_id": "7304b7f9-7482-46d4-9b95-3cd5a6ef2e6f", + "object_rules": [ + { + "type": "BRANCH", + "pattern": "", + "match_mode": "ALL" + }, + { + "type": "TAG", + "pattern": "", + "match_mode": "ALL" + }, + { + "type": "PR", + "pattern": "", + "match_mode": "ALL" + } + ], + "name": "DTName123", + "last_deployment": null, + "id": "e79d3d1c-61cc-4e07-ba32-f86694f5e80d", + "description": "DT description", + "created_by": "02984c87-efe8-4ea1-bcac-9511a34a3df3", + "created_at": "2023-06-01T10:07:36.000000Z", + "bookmark_parameter3": "", + "bookmark_parameter2": "", + "bookmark_parameter1": "", + "active": true + } +] +``` + +Example: + +```shell +curl -i -H "Authorization: Token {api_token}" \ + "https://.semaphoreci.com/api/v1alpha/deployment_targets?project_id=:project_id" +``` + +### Describe a target + +This API endpoint retrieves the details about a deployment target specified by its UUID. + +```text +GET .semaphoreci.com/api/v1alpha/deployment_targets/:target_id +``` + +Parameters: + +- `target_id` (**required**) - The UUID of the deployment target. + +Response: + +```json +HTTP status: 200 + +{ + "url": "project_1234.zyx", + "updated_by": "02984c87-efe8-4ea1-bcac-9511a34a3df3", + "updated_at": "2023-06-07T09:24:04.000000Z", + "subject_rules": [ + { + "type": "ANY", + "subject_id": "" + } + ], + "state_message": "", + "state": "USABLE", + "project_id": "a426b4db-1919-483d-926d-06ba1320b209", + "organization_id": "7304b7f9-7482-46d4-9b95-3cd5a6ef2e6f", + "object_rules": [ + { + "type": "BRANCH", + "pattern": "", + "match_mode": "ALL" + }, + { + "type": "TAG", + "pattern": "", + "match_mode": "ALL" + }, + { + "type": "PR", + "pattern": "", + "match_mode": "ALL" + } + ], + "name": "DTName123", + "last_deployment": null, + "id": "e79d3d1c-61cc-4e07-ba32-f86694f5e80d", + "description": "DT description", + "created_by": "02984c87-efe8-4ea1-bcac-9511a34a3df3", + "created_at": "2023-06-01T10:07:36.000000Z", + "bookmark_parameter3": "", + "bookmark_parameter2": "", + "bookmark_parameter1": "", + "active": true +} +``` + +Example: + +```shell +curl -i -H "Authorization: Token {api_token}" \ + "https://.semaphoreci.com/api/v1alpha/deployment_targets/:target_id" +``` + +#### Describe by name and project UUID + +This API endpoint retrieves a deployment target based on its name and the UUID of the project it is linked to. + +```text +GET .semaphoreci.com/api/v1alpha/deployment_targets?project_id=:project_id&target_name=:target_name +``` + +Parameters: + +- `project_id` (**required**) - The UUID of the project to which the deployment target is linked. +- `target_name` (**required**) - The name of the deployment target. + +Response: + +```json +HTTP status: 200 + +[ + { + "url": "project_1234.zyx", + "updated_by": "02984c87-efe8-4ea1-bcac-9511a34a3df3", + "updated_at": "2023-06-07T09:24:04.000000Z", + "subject_rules": [ + { + "type": "ANY", + "subject_id": "" + } + ], + "state_message": "", + "state": "USABLE", + "project_id": "a426b4db-1919-483d-926d-06ba1320b209", + "organization_id": "7304b7f9-7482-46d4-9b95-3cd5a6ef2e6f", + "object_rules": [ + { + "type": "BRANCH", + "pattern": "", + "match_mode": "ALL" + }, + { + "type": "TAG", + "pattern": "", + "match_mode": "ALL" + }, + { + "type": "PR", + "pattern": "", + "match_mode": "ALL" + } + ], + "name": "DTName123", + "last_deployment": null, + "id": "e79d3d1c-61cc-4e07-ba32-f86694f5e80d", + "description": "DT description", + "created_by": "02984c87-efe8-4ea1-bcac-9511a34a3df3", + "created_at": "2023-06-01T10:07:36.000000Z", + "bookmark_parameter3": "", + "bookmark_parameter2": "", + "bookmark_parameter1": "", + "active": true + } +] +``` + +Example: + +```shell +curl -i -H "Authorization: Token {api_token}" \ + "https://.semaphoreci.com/api/v1alpha/deployment_targets?project_id=:project_id&target_name=:target_name" +``` + +### Create a target + +This API endpoint allows you to create a new deployment target and assign it to a specific project. + +```text +POST .semaphoreci.com/api/v1alpha/deployment_targets?project_id=:project_id +``` + +Request Body: + +The request body should be a JSON object, encapsulating details about the deployment target to be created. The available fields are as follows: + +- `name` (**required**) - Unique name for the target within the project. +- `project_id` (**required**) - UUID of the project. +- `unique_token` (**required**) - Idempotency UUID token. +- `description` (*optional*) - A description of the target. +- `url` (*optional*) - The URL of the target. +- `bookmark_parameter1`, `bookmark_parameter2`, `bookmark_parameter3` (*optional*) - Bookmark parameters for filtering deployments. +- `subject_rules` (*optional*) - Configures **who** can trigger a promotion of the given deployment target + +. +- `object_rules` (*optional*) - Configures **which git references** are allowed for a promotion of the given deployment target. +- `env_vars` (*optional*) - A list of environment variables. +- `files` (*optional*) - A list of files with paths and base64-encoded content. + +Response: + +```json +HTTP status: 200 + +{ + "url": "www.myurl.zyx", + "updated_by": "02984c87-efe8-4ea1-bcac-9511a34a3df3", + "updated_at": "2023-06-08T07:48:27.000000Z", + "subject_rules": [ + { + "type": "ANY", + "subject_id": "" + } + ], + "state_message": "", + "state": "SYNCING", + "project_id": "a426b4db-1919-483d-926d-06ba1320b209", + "organization_id": "7304b7f9-7482-46d4-9b95-3cd5a6ef2e6f", + "object_rules": [ + { + "type": "BRANCH", + "pattern": "", + "match_mode": "ALL" + }, + { + "type": "TAG", + "pattern": "", + "match_mode": "ALL" + }, + { + "type": "PR", + "pattern": "", + "match_mode": "ALL" + } + ], + "name": "testTarget", + "last_deployment": null, + "id": "ed25bfb6-7149-40c6-8334-4eaf11337569", + "description": "Target description", + "created_by": "02984c87-efe8-4ea1-bcac-9511a34a3df3", + "created_at": "2023-06-08T07:48:27.000000Z", + "bookmark_parameter3": "", + "bookmark_parameter2": "", + "bookmark_parameter1": "my book 1", + "active": true +} +``` + +Example request: + +```shell +curl -i -X POST -H "Authorization: Token {api_token}" \ + "https://.semaphoreci.com/api/v1alpha/deployment_targets?project_id=:project_id" \ + -H "Content-Type: application/json" \ + -d '' +``` + +```shell +curl -XPOST .semaphoreci.com/api/v1alpha/deployment_targets?project_id=a426b4db-1919-483d-926d-06ba1320b209 -H "Authorization: Token {api_token}" -H "Content-Type: application/json" --data '{ "name": "testTarget", "description": "Target description", "url": "www.myurl.zyx","bookmark_parameter1": "my book 1", "unique_token": "6063dd03-ecfb-11ed-b539-0045e2f582b7", "env_vars": [ {"name": "env1","value": "val1" } ], "files": [ {"path": "/etc/my.conf","content": "'"$(base64 -w 0 /home/pc/proj/someconf.conf)"'" } ]}' +``` + +### Update a target + +This API endpoint allows you to update an existing deployment target. + +```text +PATCH .semaphoreci.com/api/v1alpha/deployment_targets/:target_id +``` + +Parameters: + +- `target_id` (**required**) - UUID of the deployment target to be updated. + +Request Body: + +The request body should be a JSON object, encapsulating details about the deployment target to be updated. The available fields are the same as those for creating a target. The difference here is that all fields are optional. + +Response: + +```json +HTTP status: 200 + +{ + "url": "www.myurl2.zyx", + "updated_by": "02984c87-efe8-4ea1-bcac-9511a34a3df3", + "updated_at": "2023-06-08T08:47:53.000000Z", + "subject_rules": [ + { + "type": "ANY", + "subject_id": "" + } + ], + "state_message": "", + "state": "SYNCING", + "project_id": "a426b4db-1919-483d-926d-06ba1320b209", + "organization_id": "7304b7f9-7482-46d4-9b95-3cd5a6ef2e6f", + "object_rules": [ + { + "type": "BRANCH", + "pattern": "", + "match_mode": "ALL" + }, + { + "type": "TAG", + "pattern": "", + "match_mode": "ALL" + }, + { + "type": "PR", + "pattern": "", + "match_mode": "ALL" + } + ], + "name": "testTargetChanged", + "last_deployment": null, + "id": "ed25bfb6-7149-40c6-8334-4eaf11337569", + "description": "Target description changed", + "created_by": "02984c87-efe8-4ea1-bcac-9511a34a3df3", + "created_at": "2023-06-08T07:48:27.000000Z", + "bookmark_parameter3": "", + "bookmark_parameter2": "", + "bookmark_parameter1": "my book 1c", + "active": true +} +``` + +Example: + +```shell +curl -i -X PATCH -H "Authorization: Token {api_token}" \ + "https://.semaphoreci.com/api/v1alpha/deployment_targets/:target_id" \ + -H "Content-Type: application/json" \ + -d '' +``` + +```shell +curl -X PATCH https://.semaphoreci.com/deployment_targets/3a9196d7-f740-4451-b8f2-9d19b10a4520 \ + -H "Authorization: Token {api_token}" \ + -d'{"name": "testTargetChanged", "description": "Target description changed", "url": "www.myurl2.zyx","bookmark_parameter1": "my book 1c", "unique_token": "6063dd03-ecfb-11ed-b539-0045e2f582b8", "env_vars": [ {"name": "env1","value": "val2" } ], "files": [ {"path": "/etc/my.conf","content": "'"$(base64 -w 0 /home/pc/proje/updated.conf)"'" }]}' \ + -H "Content-Type: application/json" +``` + +### Delete a target + +This API endpoint allows you to delete a specific deployment target. + +```text +DELETE .semaphoreci.com/api/v1alpha/deployment_targets/:target_id?unique_token=:unique_token +``` + +Parameters: + +- `target_id` (**required**) - The UUID of the deployment target to be deleted. +- `unique_token` (**required**) - The idempotency UUID token. + +Response: + +```json +HTTP status: 200 + +{"target_id":"38572f07-15ec-459e-a122-eefa2bd19230"} +``` + +Example: + +```shell +curl -i -X DELETE -H "Authorization: Token {api_token}" \ + "https://.semaphoreci.com/api/v1alpha/deployment_targets/:target_id?unique_token=:unique_token" +``` + +### Deactivate a target + +This API endpoint allows you to deactivate a specific deployment target. + +```text +PATCH .semaphoreci.com/api/v1alpha/deployment_targets/:target_id/deactivate +``` + +Parameters: + +- `target_id` (**required**) - The UUID of the deployment target to be deactivated. + +Response: + +```json +HTTP status: 200 + +{ + "target_id": "a3db05c5-4345-493d-a038-6b5f2f2ba2b5", + "cordoned": true +} +``` + +Example: + +```shell +curl -i -X PATCH -H "Authorization: Token {api_token}" \ + "https://.semaphoreci.com/api/v1alpha/deployment_targets/:target_id/deactivate" +``` + +### Activate a target + +This API endpoint allows you to (re)activate a specific deployment target. + +```text +PATCH .semaphoreci.com/api/v1alpha/deployment_targets/:target_id/activate +``` + +Parameters: + +- `target_id` (**required**) - The UUID of the deployment target to be (re)activated. + +Response: + +```json +HTTP status: 200 + +{ + "target_id": "a3db05c5-4345-493d-a038-6b5f2f2ba2b5", + "cordoned": false +} +``` + +Example: + +```shell +curl -i -X PATCH -H "Authorization: Token {api_token}" \ + "https://.semaphoreci.com/api/v1alpha/deployment_targets/:target_id/activate" +``` + +### Retrieve deployment history + +This endpoint provides the deployment history for a specific deployment target. + +```text +GET .semaphoreci.com/api/v1alpha/deployment_targets/:target_id/history +``` + +Parameters: + +- `target_id` (**required**) - The UUID of the deployment target for which the deployment history is being retrieved. +- `cursor_type` (*optional*) - Specifies the starting point for data retrieval. Valid values include `"FIRST"`, `"AFTER"`, and `"BEFORE"`. If not specified, `FIRST` is used, which retrieves the latest deployments. +- `cursor_value` (*optional*) - Represents the timestamp, given in UNIX microseconds, at which the cursor is positioned to retrieve deployment history. If `cursor_type` is set to `AFTER`, it retrieves the oldest deployments triggered after the `cursor_value`. If `cursor_type` is set to `BEFORE`, it retrieves the latest deployments triggered before the `cursor_value`. For the `FIRST` cursor type, this value is not required. +- `git_ref_type` (*optional*) - Filters deployments based on the git reference that triggered them, such as `branch`, `tag`, or `pr` (for pull requests). +- `git_ref_label` (*optional*) - Filters deployments based on the label of the git reference, such as the name of the branch. +- `triggered_by` (*optional*) - Filters deployments based on the entity that triggered them. To filter by the user who triggered the deployments, provide the user ID. + +The response includes `cursor_before` and `cursor_after` values that allow you to navigate by moving backward or forward accordingly. The response contains at most `10` deployments. + +Response: + +```json +HTTP status: 200 + +{ + "deployments": [ + { + "triggered_by": "02984c87-efe8-4ea1-bcac-9511a34a3df3", + "triggered_at": "2023-05-26T10:35:00.000000Z", + "target_name": "Production 2 deploy", + "target_id": "410bf56b-b0dc-46d2-b939-87c88a21bb84", + "switch_id": "8b751422-1322-4a9c-b3ab-e97c451cfbdc", + "state_message": "", + "state": "STARTED", + "prev_pipeline_id": "f65a5c7a-6d69-4f3e-8251-adcae6c4d6d7", + "pipeline_id": "bf4dcb8b-fbf3-4aab-a67f-ffc1f53d6bc8", + "id": "4885f77e-30eb-49cb-b351-d5a637d09ed8", + "env_vars": [ + { + "value": "Passed message 2 as parameter", + "name": "MESSAGE" + } + ] + }, + { + "triggered_by": "Pipeline Done request", + "triggered_at": "2023-05-26T10:34:31.000000Z", + "target_name": "Production deploy", + "target_id": "410bf56b-b0dc-46d2-b939-87c88a21bb84", + "switch_id": "8b751422-1322-4a9c-b3ab-e97c451cfbdc", + "state_message": "", + "state": + + "STARTED", + "prev_pipeline_id": "f65a5c7a-6d69-4f3e-8251-adcae6c4d6d7", + "pipeline_id": "f4e1413b-2fac-4ba6-9625-921f66ef1802", + "id": "9ef2194e-d13d-432e-8c97-c8fda64c4aa1", + "env_vars": [ + { + "value": "Passed message as parameter", + "name": "MESSAGE" + } + ] + } + ], + "cursor_before": 1685096881121173, + "cursor_after": 0 +} +``` + +Example: + +```shell +curl -i -H "Authorization: Token {api_token}" \ + "https://.semaphoreci.com/api/v1alpha/deployment_targets/:target_id/history" +``` ## Artifact retention policies diff --git a/docs/versioned_docs/version-EE-1.3/reference/audit-events.md b/docs/versioned_docs/version-EE-1.3/reference/audit-events.md new file mode 100644 index 000000000..77bf931b4 --- /dev/null +++ b/docs/versioned_docs/version-EE-1.3/reference/audit-events.md @@ -0,0 +1,80 @@ +--- +description: Audit log events reference +--- + +# Audit Log Events Reference + +import Tabs from '@theme/Tabs'; +import TabItem from '@theme/TabItem'; +import Available from '@site/src/components/Available'; +import VideoTutorial from '@site/src/components/VideoTutorial'; + +Each audit log entry shows applicable information about an event, such as: + +- Action that was performed +- The user (actor) who performed the action +- Resource affected by the action +- Date and time of the action +- IP address and medium of the interface used to perform the action + +## Audit log entry fields + +All audited events contain the following fields: + +- [Resource](#resource-field) +- [Operation](#operation-field) +- User ID (The user who initiated this action.) +- [Medium](#medium-field) +- Timestamp + +Some events contain the following fields: + +- Resource ID +- Resource Name +- IP address +- Username +- Description +- Metadata (some metadata regarding the event, must be valid JSON) + +### Resource field {#resource-field} + +Possible values of **Resource** field: + +- Project +- User +- Workflow +- Pipeline +- DebugSession +- PeriodicScheduler +- Secret +- Notification +- Dashboard +- Job +- Artifact +- Organization + +### Operation field {#operation-field} + +Values of **Operation** field: + +- Added +- Removed +- Modified +- Started +- Stopped +- Promoted +- Demoted +- Rebuild +- Download + +### Medium field {#medium-field} + +Operation can be done from one of the following Mediums: + +- Web +- API +- CLI + +## See also + +- [Security audit log](../using-semaphore/organizations#audit-log) diff --git a/docs/versioned_docs/version-CE-1.2/reference/conditions-dsl.md b/docs/versioned_docs/version-EE-1.3/reference/conditions-dsl.md similarity index 100% rename from docs/versioned_docs/version-CE-1.2/reference/conditions-dsl.md rename to docs/versioned_docs/version-EE-1.3/reference/conditions-dsl.md diff --git a/docs/versioned_docs/version-EE-1.3/reference/dashboard-yaml.md b/docs/versioned_docs/version-EE-1.3/reference/dashboard-yaml.md new file mode 100644 index 000000000..98ae82279 --- /dev/null +++ b/docs/versioned_docs/version-EE-1.3/reference/dashboard-yaml.md @@ -0,0 +1,186 @@ +--- +description: Dashboards YAML reference +--- + +# Dashboards YAML + +import Tabs from '@theme/Tabs'; +import TabItem from '@theme/TabItem'; +import Available from '@site/src/components/Available'; +import VideoTutorial from '@site/src/components/VideoTutorial'; + +This page describes the YAML syntax used to define dashboards in Semaphore. + +## Overview + +A dashboard in an interface containing widgets. Widgets can give you an overview of events and operations that happen in your Semaphore organization. + +More specifically, widgets are used for viewing the activity of pipelines and workflows. You can use filters to modify the views. + +Each dashboard is associated with an organization. Therefore, in order to view a specific dashboard, you should be connected to the organization to which it belongs. + +## apiVersion {#apiVersion} + +The `apiVersion` property + +Specifies the API version of the Dashboard YAML syntax. + +The only possible value is: `v1alpha` + +## kind {#kind} + +Defines the type of resource to create. + +For dashboards use the value: `Dashboard` + +## metadata {#metadata} + +Defines metadata about the dashboard. + +It contains the following properties: + +- [`name`](#name-in-metadata) +- [`title`](#title-in-metadata) +- [`id`](#id-in-metadata) +- [`create_time`](#create-time-in-metadata) +- [`update_time`](#update-time-in-metadata) + +### name {#name-in-metadata} + +This property describes the name of the dashboard. The name of the dashboard is part of the URL and should be unique among an organization's dashboards. + +The value should only contain alphanumeric characters and dashes. + +### title {#title-in-metadata} + +This property describes the title of the dashboard as it appears on the Semaphore website. It can only contain Unicode characters. + +### id {#id-in-metadata} + +This is the unique ID for the dashboard and is automatically generated by Semaphore. + +### create_time {#create-time-in-metadata} + +The dashboard creation time in UNIX epoch format. + +### update_time {#update-time-in-metadata} + +The dashboard's last config update time is in UNIX epoch format. + +## spec {#spec} + +Specifies the dashboard elements. Contains only one property: [`widgets`](#widgets-in-spec). + +## widgets {#widgets-in-spec} + +This property is a list of widgets for the dashboard. + +Each item list contains the following elements: + +- [`name`](#name-in-widgets) +- [`type`](#type-in-widgets) +- [`filters`](#filters-in-widgets) + +### name {#name-in-widgets} + +This property describes the name of the widget to be shown in the dashboard on the Semaphore website. + +### type {#type-in-widgets} + +Defines the type of widget to display. The widget can show either pipelines or workflows. + +Possible values for this property are: + +- `list_workflow` +- `list_pipelines` + +## filters {#filters-in-widgets} + +Describes the criteria to filter elements shown in the widget. + +The properties contained in depend on the widget [`type`](#type-in-widgets). + +See the properties for each `type` below: + +- [`list_workflow`](#list-workflows-in-filters) +- [`list_pipelines`](#list-pipelines-in-filters) + +If you don't want to apply filters, use the following snippet: + +```yaml +filters: {} +``` + +### `list_workflows` {#list-workflows-in-filters} + +When `type: list_workflows` the widget shows the workflow activity. + +In this scenario, you may use the following properties inside `filters` to filter the activity shown in the widget: + +- `project_id` (optional): show only workflows for the specified project +- `branch` (optional): shows only workflows for the specified branch for a given project (exact string match supported only) + +```yaml title="Example for list_workflows" +apiVersion: v1alpha +kind: Dashboard +metadata: + name: my-dashboard + title: My Dashboard + id: eb0cc2c7-bbc9-41e4-9e3d-2eb622a673fb + create_time: "1537888191" + update_time: "1537889560" +spec: + widgets: + - name: Master branch from all projects + type: list_workflows + filters: + branch: master + - name: All projects on the current organization + type: list_workflows + filters: {} +``` + +### `list_pipelines` {#list-pipelines-in-filters} + +When `type: list_pipelines` the widget shows the pipeline activity. + +In this scenario, you may use the following properties inside `filters` to filter the activity shown in the widget: + +- `project_id` (required): select the project to show pipeline activity +- `branch` (optional): shows only workflows for the specified branch for a given project (exact string match supported only) +- `pipeline_file` (optional): filter pipelines by pipeline file name. Requires full path to the pipeline file. + +```yaml title="Example for list_pipelines" +apiVersion: v1alpha +kind: Dashboard +metadata: + name: my-dashboard + title: My Dashboard + id: eb0cc2c7-bbc9-41e4-9e3d-2eb622a673fb + create_time: "1537445699" + update_time: "1537445713" +spec: + widgets: + - name: Pipelines + type: list_pipelines + filters: + project_id: 7384612f-e22f-4710-9f0f-5dcce85ba44b + branch: demo + pipeline_file: .semaphore/p1.yml + - name: docs project pipelines + type: list_pipelines + filters: + project_id: 0dd982e8-32f5-4037-983e-4de01ac7fb1e +``` + +## See also + +- [Jobs YAML reference](./jobs-yaml) +- [Pipeline YAML reference](./pipeline-yaml) +- [Projects YAML reference](./project-yaml) +- [Secret YAML reference](./secret-yaml) +- [Deployment targets YAML reference](./deployment-target-yaml) +- [Agents YAML reference](./agent-yaml) +- [Notifications YAML reference](./notifications-yaml) +- [Semaphore Command Line](./semaphore-cli) + diff --git a/docs/versioned_docs/version-EE-1.3/reference/deployment-target-yaml.md b/docs/versioned_docs/version-EE-1.3/reference/deployment-target-yaml.md new file mode 100644 index 000000000..5147bdb59 --- /dev/null +++ b/docs/versioned_docs/version-EE-1.3/reference/deployment-target-yaml.md @@ -0,0 +1,314 @@ +--- +description: Deployment Targets YAML reference +--- + +# Deployment Targets YAML + +import Tabs from '@theme/Tabs'; +import TabItem from '@theme/TabItem'; +import Available from '@site/src/components/Available'; +import VideoTutorial from '@site/src/components/VideoTutorial'; + +This page describes the YAML syntax used to configure [deployment targets (environments)](../using-semaphore/promotions#deployment-targets). + +## Overview + +Deployment targets enable the enforcement of strict conditions for triggering pipeline promotions. + +You can restrict who and when a promotion can be triggered. By integrating promotions with Deployment Targets, you can establish secure Continuous Deployment pipelines that seamlessly align with your current setup. + +A deployment target is created within a project and exclusively employed for multiple promotions. + +## apiVersion {#apiVersion} + +Indicates the version of the syntax used. + +The only supported value is: `v1alpha` + +## kind {#kind} + +Determines the type of resource to create. + +For deployment targets, the value is: `DeploymentTarget` + +## metadata {#metadata} + +Defines metadata properties for the deployment target. + +Contains the following values: + +- [`id`](#id-in-metadata) +- [`name`](#name-in-metadata) +- [`project_id`](#project-id-in-metadata) +- [`organization_id`](#organization-id-in-metadata) +- [`created_by`](#created-by-in-metadata) +- [`created_at`](#created-at-in-metadata) +- [`updated_by`](#updated-by-in-metadata) +- [`updated_at`](#updated-at-in-metadata) +- [`description`](#description-in-metadata) +- [`url`](#url-in-metadata) + +### id {#id-in-metadata} + +This property is automatically generated. It is a unique identification for the deployment target. + +### name {#name-in-metadata} + +A descriptive name for the deployment target. + +The name should only include alphanumerical characters, dashes, underscores, and dots. + +### project_id {#project-id-in-metadata} + +This property identifies the project to attach this deployment target. The value must be a valid project ID. + +### organization_id {#organization-id-in-metadata} + +This property identifies the organization to which this deployment target belongs. The value must be a valid organization ID. + +### created_by {#created-by-in-metadata} + +The unique ID for the individual that created the deployment target. + +### created_at {#created-at-in-metadata} + +The UTC time when the deployment target was created. Automatically populated by Semaphore. + +### updated_by {#updated-by-in-metadata} + +The unique ID for the individual that last updated the deployment target. + +### updated_at {#updated-at-in-metadata} + +The UTC time when the deployment target was last updated. Automatically populated by Semaphore. + +### description {#description-in-metadata} + +A string to describe the deployment target. + +### url {#url-in-metadata} + +A URL string associated with the deployment target. + +## spec {#spec} + +The `spec` property contains a list of deployment target properties. + +- [`state`](#state-in-spec) +- [`state_message`](#state-message-in-spec) +- [`active`](#active-in-spec) +- [`env_vars`](#env-vars-in-spec) +- [`files`](#files-in-spec) +- [`bookmark_parameter1`](#bookmark-parameter1-in-spec) +- [`bookmark_parameter2`](#bookmark-parameter2-in-spec) +- [`bookmark_parameter3`](#bookmark-parameter3-in-spec) +- [`subject_rules`](#subject-rules-in-spec) +- [`object_rules`](#object-rules-in-spec) + +### state {#state-in-spec} + +Indicates the state of the deployment target. The value should not be modified. + +Possible values are: + +- `SYNCING` +- `USABLE` +- `UNUSABLE` +- `CORDONED` + +### state_message {#state-message-in-spec} + +Provides a string message associated with the deployment target [`state`](#state-in-spec). + +### active {#active-in-spec} + +A boolean value indicates if the deployment target is active. It should not be modified. + +### bookmark_parameter1 {#bookmark-parameter1-in-spec} + +This property can hold values to be used as filters for the deployment history. + +For instance, if you set the parameter value to `environment` and then create a parameterized promotion with `environment: ['staging', 'production']`, you can use the filtering function in the Semaphore website to view deployment history per environment. + +### bookmark_parameter2 {#bookmark-parameter2-in-spec} + +This property can hold values to be used to filter the deployment history. Works just like [`bookmark_parameter1`](#bookmark-parameter1-in-spec). + +### bookmark_parameter3 {#bookmark-parameter3-in-spec} + +This property can hold values to be used to filter the deployment history. Works just like [`bookmark_parameter1`](#bookmark-parameter1-in-spec). + +### env_vars {#env-vars-in-spec} + +A list of environment variables for the deployment target. + +Each item list consists of a pair of properties: + +- `name`: the name of the environment variable +- `value`: the value of the variable + +### files {#files-in-spec} + +This property consists of a list of files to be used in the deployment target. + +Each item in the list consists of these properties: + +- `path`: path to the file in the job environment +- `content`: base64 encoded content of the file. If the value includes the suffix `[md5]`, this indicates that a hashed value has been received for security reasons +- `source`: represents the path on your host machine of the file you want to assign to the deployment target. It is only used when creating or updating the file property + +## subject_rules {#subject-rules-in-spec} + +The `subject_rules` property holds a list of subject rules that determine who +can trigger promotions when the deployment target is associated with them. + +Each item in the list can contain these properties: + +- [`type`](#type-in-subject-rules) +- [`subject_id](#subject-id-in-subject-rules) +- [`git_login`](#git-login-in-subject-rules) + +### type {#type-in-subject-rules} + +Used to define subject rules in the deployment target. The contents of this property are a list with rules to allow deployment targets to be used. + +Semaphore processes the rules in the supplied order and allows the promotion when one rule is matched. + +The `type` property can take the following values: + +- `ANY`: all users can trigger the promotion +- `USER`: a [specific user](#subject-id-in-subject-rules) can trigger the promotion +- `ROLE`: the [role that can trigger the promotion](#subject-id-in-subject-rules). Users with this rule are allowed +- `AUTO`: allows auto-promotion conditions to trigger the promotion + +### subject_id {#subject-id-in-subject-rules} + +This property is used in combination with `type: USER` and `type: ROLE`. + +Allow users to add their user IDs. + +To allow roles, add their role name, e.g. `Admin` or `Contributor`. + +### git_login {#git-login-in-subject-rules} + +This property is used in combination with `type: USER`. + +It defines the Git username in GitHub or BitBucket that can trigger the promotion. + +This property can be used instead of [subject_id](#subject-id-in-subject-rules). + +## object_rules {#object-rules-in-spec} + +The `object_rules` property holds a list of object rules that determine when a promotion can be triggered. + +Each item in the list can contain these properties: + +- [`type`](#type-in-object-rules) +- [`match_mode](#match-mode-in-object-rules) +- [`pattern`](#pattern-in-object-rules) + + +### type {#type-in-object-rules} + +Used to define object rules in the deployment target. The contents of this property are a list with rules to allow deployment targets to be used. + +Semaphore processes the rules in the supplied order and allows the promotion when one rule is matched. + +The `type` property can take the following values: + +- `BRANCH`: evaluate Git branch names +- `TAG`: evaluate Git tag names +- `PR`: allow pull requests + +### match_mode {#match-mode-in-object-rules} + +Determines what type of matching is used in pattern matching the object rule. This property is used in conjunction with [`type`](#type-in-object-rules). + +The possible values for this property are: + +- `ALL`: do not perform pattern matching +- `EXACT`: matches string literals only +- `REGEX`: allows regular expression matches. + +:::note + +The regular expressions are Perl-compatible, and you can find more information about the syntax in the [the Erlang re module documentation](https://www.erlang.org/doc/man/re.html) + +::: + +### pattern {#pattern-in-object-rules} + +This property defines the string used to match the rule. It is only used when `match_mode: EXACT` or `match_mode: REGEX`. + +The value of `pattern` is evaluated according to the `match_mode` and if a match is found the rule passes. + +This property is used to define the Git branch and tag names. + +:::note + +When `type: PR` the `pattern` and `match_mode` are ignored. The rule passes for all pull requests + +::: + +## Examples {#examples} + +The following example provides the definition of a deployment target as returned by [`sem get dt `](./semaphore-cli#sem-get-dt). + +```yaml title="Example" +apiVersion: v1alpha +kind: DeploymentTarget +metadata: + id: 0d4d4184-c80a-4cbb-acdd-b75e3a03f795 + name: my-dt + project_id: a426b4db-1919-483d-926d-06ba1320b209 + organization_id: 7304b7f9-7482-46d4-9b95-3cd5a6ef2e6f + created_by: 02984c87-efe8-4ea1-bcac-9511a34a3df3 + updated_by: 02984c87-efe8-4ea1-bcac-9511a34a3df3 + created_at: 2023-06-09T05:46:23Z + updated_at: 2023-06-09T07:46:49Z + description: new description + url: newurl321.zyx +spec: + state: CORDONED + state_message: "" + subject_rules: + - type: ROLE + subject_id: Contributor + - type: USER + subject_id: 02984c87-efe8-03a2-bcac-9511a34a3df3 + git_login: example_login_24ac3 + object_rules: + - type: BRANCH + match_mode: EXACT + pattern: main + - type: TAG + match_mode: ALL + pattern: "" + - type: PR + match_mode: REGEX + pattern: .*[feat].* + active: false + bookmark_parameter1: b1 + bookmark_parameter2: "" + bookmark_parameter3: "" + env_vars: + - name: X + value: ef836f1a81645fd778adb189377aed1d [md5] + files: + - path: /home/dev/app/my.conf + content: 0c2606ba4ac1ee72b5cc6f91648bf28c [md5] + source: "" + +``` + +## See also + +- [Jobs YAML reference](./jobs-yaml) +- [Pipeline YAML reference](./pipeline-yaml) +- [Projects YAML reference](./project-yaml) +- [Secret YAML reference](./secret-yaml) +- [Deployment targets YAML reference](./deployment-target-yaml) +- [Agents YAML reference](./agent-yaml) +- [Notifications YAML reference](./notifications-yaml) +- [Semaphore Command Line](./semaphore-cli) + diff --git a/docs/versioned_docs/version-CE-1.1/reference/env-vars.md b/docs/versioned_docs/version-EE-1.3/reference/env-vars.md similarity index 93% rename from docs/versioned_docs/version-CE-1.1/reference/env-vars.md rename to docs/versioned_docs/version-EE-1.3/reference/env-vars.md index 6e37687ea..4726018f9 100644 --- a/docs/versioned_docs/version-CE-1.1/reference/env-vars.md +++ b/docs/versioned_docs/version-EE-1.3/reference/env-vars.md @@ -88,7 +88,7 @@ A string with a user-supplied name for the job. - **Environment variable**: `SEMAPHORE_JOB_COUNT` - **Example**: 4 -Only available when [job parallelism](../using-semaphore/jobs#job-parallelism) is enabled. This variable holds the total number of jobs configured in job parallelism. +Only available when [job parallelism](../using-semaphore/jobs#job-parallelism) is enabled. This variable holds the total number of jobs configured in job parallelism. It can be used to configure a test partitioning strategy using a 3rd party test runner. @@ -130,7 +130,14 @@ Describes why the current job was created. The possible values are: - `project_debug_job`: job created with [`sem debug project`](./semaphore-cli#sem-debug-project) - `debug_job`: job created with [`sem debug job`](./semaphore-cli#sem-debug) -### Organization URL {#organization-url} +### Block name {#block-name} + +- **Environment variable**: `SEMAPHORE_BLOCK_NAME` +- **Example**: `Security checks` + +A string with a user-supplied block name. + +### Server URL {#organization-url} - **Environment variable**: `SEMAPHORE_ORGANIZATION_URL` - **Example**: `https://semaphore.example.com` @@ -144,6 +151,24 @@ The URL for the server that owns the project running the current job. The unique identifier for the current workflow. All jobs that belong to the same pipeline share the same ID. +### Pipeline is promotion {#pipeline-promotion} + +- **Environment variable**: `SEMAPHORE_PIPELINE_PROMOTION` +- **Example**: `true` + +Holds `true` when the pipeline was started due to a [promotion](../using-semaphore/promotions). It is always `false` for the initial pipeline that starts the workflow. + +### Pipeline promoted by {#pipeline-promoted-by} + +- **Environment variable**: `SEMAPHORE_PIPELINE_PROMOTED_BY` +- **Example**: `torvalds` + +Determines the individual that promoted the pipeline. There are three possible cases: + +- **Initial pipelines**: the variable contains an empty string +- **Manual promotions**: the GitHub or BitBucket username that manually promoted the pipeline +- [Auto-promotions](../using-semaphore/promotions#automatic-promotions): the value is `auto-promotion` + ### Pipeline is rerun {#pipeline-rerun} - **Environment variable**: `SEMAPHORE_PIPELINE_RERUN` @@ -193,7 +218,7 @@ Holds `true` if the workflow is a rerun of a previously-ran workflow. - **Environment variable**: `SEMAPHORE_WORKFLOW_TRIGGERED_BY` - **Example**: `torvalds` -Determines the GitHub or BitBucket username for the individual who promoted the pipeline. +Determines the GitHub or BitBucket username for the individual who ran the workflow. ### Workflow is triggered by API {#workflow-triggered-by-api} @@ -204,7 +229,6 @@ Holds `true` if the workflow was triggered using the [Semaphore API](../referenc - The variable is `false` if the workflow is triggered by a Git push, pull request, or via [Tasks](../using-semaphore/tasks). ### Workflow is triggered by hook {#workflow-triggered-by-hook} @@ -299,7 +323,6 @@ Used only when running [`checkout --use-cache`](./toolbox#cache-full-clone). It - **Environment variable**: `SEMAPHORE_GIT_CACHE_KEEP` - **Example**: `1` - Used only when running [`checkout --use-cache`](./toolbox#cache-full-clone). It how many copies of the repository should be maintained in the Semaphore Git Cache. Older copies are automatically deleted. The default value is 0, which means that Semaphore maintains only 1 copy of the repository. If you set it to 1, Semaphore will maintain 2 copies of the repository. @@ -379,7 +402,6 @@ Present only for builds where `SEMAPHORE_GIT_REF_TYPE=pull-request` The number of the Pull Request. - :::note Present only for builds where `SEMAPHORE_GIT_REF_TYPE=pull-request` @@ -421,7 +443,6 @@ Present only for builds where `SEMAPHORE_GIT_REF_TYPE=pull-request` The name of the directory that contains the files of the repository linked to the current Semaphore project. - ### Repository name {#git-repo-name} - **Environment variable**: `SEMAPHORE_GIT_REPO_NAME` @@ -486,7 +507,7 @@ The time that the pipeline spent in the queue is expressed in seconds. - **Environment variable**: `SEMAPHORE_PIPELINE_RESULT` - **Example**: `failed`, `passed`, `canceled`, `stopped` -Contains the result of the pipeline. Possible values are: `failed`, `passed`, `canceled`, `stopped` +Contains the result of the pipeline. Possible values are: `failed`, `passed`, `canceled`, `stopped` ### Pipeline result reason {#pipeline-result-reason} @@ -518,7 +539,7 @@ The total duration of the pipeline including queuing time expressed in seconds. ## Cache variables {#cache-variables} -These variables are used to access the [cache](../using-semaphore/optimization/cache). +These variables are used to access the [cache](../using-semaphore/cache). ### Cache URL {#cache-url} @@ -543,7 +564,7 @@ The path in the server to the SSH key file to access the cache server. ## Semaphore Docker registry variables {#registry-variables} -These variables can be used to access the [Semaphore Docker registry](../using-semaphore/optimization/docker). +These variables can be used to access the [Semaphore Docker registry](../using-semaphore/containers/docker). ### Username {#registry-username} @@ -565,7 +586,7 @@ The URL to access the Semaphore Docker Registry. ## Initialization job variables {#init} -This section describes the special variables available during the [initialization jobs](../using-semaphore/pipelines#init-job) in addition to the regular job environment variables explained above. +This section describes the special variables available during the [initialization jobs](../using-semaphore/pipelines#init-job) and [pre-flight checks](../using-semaphore/org-preflight) in addition to the regular job environment variables explained above. ### Input file {#input-file} @@ -590,7 +611,7 @@ The path to the log file during the initialization job. ## See also -- [Docker optimization](../using-semaphore/optimization/docker) +- [Docker optimization](../using-semaphore/containers/docker) - [How to configure jobs](../using-semaphore/jobs) - [Semaphore pipelines](../using-semaphore/pipelines) - [Pipeline YAML reference](./pipeline-yaml) diff --git a/docs/versioned_docs/version-CE-1.2/reference/img/ebnf.jpg b/docs/versioned_docs/version-EE-1.3/reference/img/ebnf.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/reference/img/ebnf.jpg rename to docs/versioned_docs/version-EE-1.3/reference/img/ebnf.jpg diff --git a/docs/versioned_docs/version-CE-1.2/reference/img/macos15-selector.jpg b/docs/versioned_docs/version-EE-1.3/reference/img/macos15-selector.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/reference/img/macos15-selector.jpg rename to docs/versioned_docs/version-EE-1.3/reference/img/macos15-selector.jpg diff --git a/docs/versioned_docs/version-CE-1.2/reference/img/macos16-selector.jpg b/docs/versioned_docs/version-EE-1.3/reference/img/macos16-selector.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/reference/img/macos16-selector.jpg rename to docs/versioned_docs/version-EE-1.3/reference/img/macos16-selector.jpg diff --git a/docs/versioned_docs/version-CE-1.2/reference/img/ubuntu2004-selector.jpg b/docs/versioned_docs/version-EE-1.3/reference/img/ubuntu2004-selector.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/reference/img/ubuntu2004-selector.jpg rename to docs/versioned_docs/version-EE-1.3/reference/img/ubuntu2004-selector.jpg diff --git a/docs/versioned_docs/version-CE-1.2/reference/img/ubuntu2204-selector.jpg b/docs/versioned_docs/version-EE-1.3/reference/img/ubuntu2204-selector.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/reference/img/ubuntu2204-selector.jpg rename to docs/versioned_docs/version-EE-1.3/reference/img/ubuntu2204-selector.jpg diff --git a/docs/versioned_docs/version-CE-1.2/reference/jobs-yaml.md b/docs/versioned_docs/version-EE-1.3/reference/jobs-yaml.md similarity index 100% rename from docs/versioned_docs/version-CE-1.2/reference/jobs-yaml.md rename to docs/versioned_docs/version-EE-1.3/reference/jobs-yaml.md diff --git a/docs/versioned_docs/version-CE-1.2/reference/machine-types.md b/docs/versioned_docs/version-EE-1.3/reference/machine-types.md similarity index 100% rename from docs/versioned_docs/version-CE-1.2/reference/machine-types.md rename to docs/versioned_docs/version-EE-1.3/reference/machine-types.md diff --git a/docs/versioned_docs/version-CE-1.2/reference/notifications-yaml.md b/docs/versioned_docs/version-EE-1.3/reference/notifications-yaml.md similarity index 100% rename from docs/versioned_docs/version-CE-1.2/reference/notifications-yaml.md rename to docs/versioned_docs/version-EE-1.3/reference/notifications-yaml.md diff --git a/docs/versioned_docs/version-EE-1.3/reference/openid.md b/docs/versioned_docs/version-EE-1.3/reference/openid.md new file mode 100644 index 000000000..f23287afe --- /dev/null +++ b/docs/versioned_docs/version-EE-1.3/reference/openid.md @@ -0,0 +1,55 @@ +--- +description: OpenID Connect (OIDC) token reference +--- + +# OIDC Tokens + +import Tabs from '@theme/Tabs'; +import TabItem from '@theme/TabItem'; +import Available from '@site/src/components/Available'; +import VideoTutorial from '@site/src/components/VideoTutorial'; + +This page describes how [OpenID Connect (OIDC)](../using-semaphore/openid) tokens are generated. + +## Reference + +Semaphore generates a unique OIDC token for every job. The token is injected into the job environment as a variable named `SEMAPHORE_OIDC_TOKEN`. + +The token consists of a JWT token signed by Semaphore and contains the following claims. + +Sure, here is the reordered list presented in a table with three columns: Claim, Description, Example. + +| Claim | Description | Example | +|-------------|-----------------------------------------------------------|--------------------------------------| +| iss | The issuer of the token. The full URL of the organization | `https://.semaphoreci.com` | +| aud | The intended audience of the token. The full URL of the organization | `https://.semaphoreci.com` | +| sub | The subject of the token. A combination of org, project, repository, and git reference for which this token was issued
Template:
`org::`
`project:{project-id}:`
`repo:{repo-name}:`
`ref_type:{branch or pr or tag}:`
`ref:{git_reference}` | `org:{org-name}:`
`project:936a5312-a3b8-4921-8b3f-2cec8baac574:`
`repo:web:`
`ref_type:branch:`
`ref:refs/heads/main` | +| exp | The UNIX timestamp when the token expires | `1660317851` | +| iat | The UNIX timestamp when the token was issued | `1660317851` | +| nbf | The UNIX timestamp before which the token is not valid | `1660317851` | +| jti | The Unique ID of the JWT token | `2s557dchalv2mv76kk000el1` | +| branch | The name of the branch on which the job is running. If the job was triggered by a pull request, then the value is the target branch of the pull request that triggered that job | `main` | +| pr_branch | The name of the source branch of the Pull Request which triggered a job | `feature-branch` | +| pr | The number of the Pull Request for which the token was issued | `123` | +| ref | The full git reference for which the token was issued | `refs/heads/main` | +| ref_type | The type of git reference that triggered the job | `branch`, `tag`, or `pull-request` | +| tag | The name of the git tag for which the token was issued | `v1.0.0` | +| repo | The name of the repository for which the token was issued | `web` | +| repo_slug | Specifies the repository's name in the format `owner_name/repository_name` for the current Semaphore project. It is associated with the environment variable `SEMAPHORE_GIT_REPO_SLUG` | `semaphoreci/docs` | +| org | The organization name for which the token was issued | `semaphore` | +| org_id | The organization ID for which the token was issued | `d7dd33ad-9317-498c-9cc6-51c250749be7` | +| prj | The project name for which the token was issued | `docs` | +| prj_id | The project ID for which the token was issued | `1e1fcfb5-09c0-487e-b051-2d0b5514c42a` | +| wf_id | The ID of the workflow for which the token was issued | `1be81412-6ab8-4fc0-9d0d-7af33335a6ec` | +| ppl_id | The pipeline ID for which the token was issued | `1e1fcfb5-09c0-487e-b051-2d0b5514c42a` | +| job_type | The type of the job based on the way it was created
The possible values are:
  • `pipeline_job`: A regular job that is the part of a pipeline
  • `debug_job`: A job that was created to debug the other job via the sem debug job `` command
  • `project_debug_job`:A job that was created to debug the project via the sem debug project `` command
| `pipeline_job` | +| job_id | The ID of the job for which the token was issued | `c117e453-1189-4eaf-b03a-dd6538eb49b2` | +| trg | Indicates how the workflow was triggered, including information about workflow reruns and pipeline rebuilds
Template: `{triggerer_type}:{workflow_rerun}-{pipeline_type}:{pipeline_rebuild}`
Where:
  • `{triggerer_type}`: How the workflow was initiated
    • `a`: API triggered
    • `h`: Hook (webhook) triggered
    • `s`: Scheduler/Task triggered
    • `m`: Manually run task
  • `{workflow_rerun}`: Whether this is a rerun of an existing workflow
    • `t`: This is a rerun
    • `f`: This is the initial run
  • `{pipeline_type}`: Type of pipeline execution
    • `u`: Auto promotion
    • `n`: Manual promotion
    • `i`: Initial pipeline
  • `{pipeline_rebuild}`: Whether this is a rebuild of a pipeline
    • `t`: This is a rebuild
    • `f`: This is the initial build
|
`h:f-i:t`
(Hook triggered workflow, not a rerun, initial pipeline, pipeline rebuilt)

`s:t-i:f`
(Scheduler/Task triggered workflow, workflow rerun, initial pipeline, not rebuilt) | + +A token with the above claims is exported into jobs as the `SEMAPHORE_OIDC_TOKEN` environment variable, which can then be presented to the cloud provider as an authorization token. + +If the cloud provider is configured to accept OIDC tokens, it will receive the token, verify its signature by connecting back to `.semaphoreci.com.well-known/jwts`, and if the token is valid, it will respond with a short-lived token for this specific job that can be used to fetch and modify cloud resources. + +## See also + +- [Pipeline YAML](./pipeline-yaml) diff --git a/docs/versioned_docs/version-CE-1.2/reference/os-apple.md b/docs/versioned_docs/version-EE-1.3/reference/os-apple.md similarity index 100% rename from docs/versioned_docs/version-CE-1.2/reference/os-apple.md rename to docs/versioned_docs/version-EE-1.3/reference/os-apple.md diff --git a/docs/versioned_docs/version-CE-1.2/reference/os-ubuntu-images/img/ubuntu2004-selector.jpg b/docs/versioned_docs/version-EE-1.3/reference/os-ubuntu-images/img/ubuntu2004-selector.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/reference/os-ubuntu-images/img/ubuntu2004-selector.jpg rename to docs/versioned_docs/version-EE-1.3/reference/os-ubuntu-images/img/ubuntu2004-selector.jpg diff --git a/docs/versioned_docs/version-CE-1.2/reference/os-ubuntu-images/img/ubuntu2204-arm-selector.jpg b/docs/versioned_docs/version-EE-1.3/reference/os-ubuntu-images/img/ubuntu2204-arm-selector.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/reference/os-ubuntu-images/img/ubuntu2204-arm-selector.jpg rename to docs/versioned_docs/version-EE-1.3/reference/os-ubuntu-images/img/ubuntu2204-arm-selector.jpg diff --git a/docs/versioned_docs/version-CE-1.2/reference/os-ubuntu-images/img/ubuntu2204-selector.jpg b/docs/versioned_docs/version-EE-1.3/reference/os-ubuntu-images/img/ubuntu2204-selector.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/reference/os-ubuntu-images/img/ubuntu2204-selector.jpg rename to docs/versioned_docs/version-EE-1.3/reference/os-ubuntu-images/img/ubuntu2204-selector.jpg diff --git a/docs/versioned_docs/version-CE-1.2/reference/os-ubuntu-images/img/ubuntu2404-selector.jpg b/docs/versioned_docs/version-EE-1.3/reference/os-ubuntu-images/img/ubuntu2404-selector.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/reference/os-ubuntu-images/img/ubuntu2404-selector.jpg rename to docs/versioned_docs/version-EE-1.3/reference/os-ubuntu-images/img/ubuntu2404-selector.jpg diff --git a/docs/versioned_docs/version-CE-1.2/reference/os-ubuntu-images/ubuntu-2004-image.md b/docs/versioned_docs/version-EE-1.3/reference/os-ubuntu-images/ubuntu-2004-image.md similarity index 100% rename from docs/versioned_docs/version-CE-1.2/reference/os-ubuntu-images/ubuntu-2004-image.md rename to docs/versioned_docs/version-EE-1.3/reference/os-ubuntu-images/ubuntu-2004-image.md diff --git a/docs/versioned_docs/version-CE-1.2/reference/os-ubuntu-images/ubuntu-2204-arm-image.md b/docs/versioned_docs/version-EE-1.3/reference/os-ubuntu-images/ubuntu-2204-arm-image.md similarity index 100% rename from docs/versioned_docs/version-CE-1.2/reference/os-ubuntu-images/ubuntu-2204-arm-image.md rename to docs/versioned_docs/version-EE-1.3/reference/os-ubuntu-images/ubuntu-2204-arm-image.md diff --git a/docs/versioned_docs/version-CE-1.2/reference/os-ubuntu-images/ubuntu-2204-image.md b/docs/versioned_docs/version-EE-1.3/reference/os-ubuntu-images/ubuntu-2204-image.md similarity index 100% rename from docs/versioned_docs/version-CE-1.2/reference/os-ubuntu-images/ubuntu-2204-image.md rename to docs/versioned_docs/version-EE-1.3/reference/os-ubuntu-images/ubuntu-2204-image.md diff --git a/docs/versioned_docs/version-CE-1.2/reference/os-ubuntu-images/ubuntu-2404-image.md b/docs/versioned_docs/version-EE-1.3/reference/os-ubuntu-images/ubuntu-2404-image.md similarity index 100% rename from docs/versioned_docs/version-CE-1.2/reference/os-ubuntu-images/ubuntu-2404-image.md rename to docs/versioned_docs/version-EE-1.3/reference/os-ubuntu-images/ubuntu-2404-image.md diff --git a/docs/versioned_docs/version-CE-1.2/reference/os-ubuntu.md b/docs/versioned_docs/version-EE-1.3/reference/os-ubuntu.md similarity index 100% rename from docs/versioned_docs/version-CE-1.2/reference/os-ubuntu.md rename to docs/versioned_docs/version-EE-1.3/reference/os-ubuntu.md diff --git a/docs/versioned_docs/version-CE-1.2/reference/pipeline-yaml.md b/docs/versioned_docs/version-EE-1.3/reference/pipeline-yaml.md similarity index 60% rename from docs/versioned_docs/version-CE-1.2/reference/pipeline-yaml.md rename to docs/versioned_docs/version-EE-1.3/reference/pipeline-yaml.md index de8424cc5..d120f73dc 100644 --- a/docs/versioned_docs/version-CE-1.2/reference/pipeline-yaml.md +++ b/docs/versioned_docs/version-EE-1.3/reference/pipeline-yaml.md @@ -1204,7 +1204,897 @@ Global job config is not applied to `after_pipeline` jobs. This includes secrets ## Promotions {#promotions} - +The `promotions` property is used for *promoting* (manually or automatically triggering) one or more pipelines using one or more pipeline YAML files. A pipeline YAML file can have a single `promotions` block or no `promotions` block. + +The items of a `promotions` block are called *targets* and are implemented using pairs of `name` and `pipeline_file` properties. A `promotions` block can have multiple targets. + +You can promote a target from the UI at any point, even while the pipeline that owns that target is still running. + +### name {#name-in-promotions} + +The `name` property in a `promotions` block is a Unicode string and is compulsory. It defines the name of a target. + +### pipeline_file {#pipeline-file-in-promotions} + +The `pipeline_file` property of the `promotions` block is a path to another pipeline YAML file within the repository of the Semaphore project. This property is compulsory. + +If `pipeline_file` is a relative path, Semaphore will search for the file inside the directory of the current pipeline. If `pipeline_file` is an absolute path (starts with the `/` character), Semaphore will seek the file starting from the root directory of the repository. + +Each `pipeline_file` value must be a valid and syntactically correct pipeline YAML file as defined in this document. However, potential errors in a pipeline YAML file, given as a value to the `pipeline_file` property, will be revealed when the relevant target is promoted. + +The same will happen if the file given as a `pipeline_file` value does not exist – an error will be revealed at the time of promotion. + +```yaml title="Example" +version: v1.0 +name: Using promotions +agent: + machine: + type: e1-standard-2 + os_image: ubuntu2004 + +blocks: + - name: ls + task: + jobs: + - name: List contents + commands: + - ls -al + - echo $SEMAPHORE_PIPELINE_ID + +# highlight-start +promotions: + - name: Pipeline 1 + # highlight-next-line + pipeline_file: p1.yml + - name: Pipeline 2 + # highlight-next-line + pipeline_file: p2.yml +# highlight-end +``` + +The `promotions` block in the aforementioned `.semaphore/semaphore.yml` file will allow you to promote two other YAML files named `p1.yml` and `p2.yml`. + +The contents of the `.semaphore/p1.yml` are as follows: + +```yaml title="Example" +version: v1.0 +name: This is Pipeline 1 +agent: + machine: + type: e1-standard-2 + os_image: ubuntu2004 + +blocks: + - name: Environment variable + task: + jobs: + - name: SEMAPHORE_PIPELINE_ID + commands: + - echo $SEMAPHORE_PIPELINE_ID +``` + +Last, the contents of the `.semaphore/p2.yml` are as follows: + +```yaml title="Example" +version: v1.0 +name: This is Pipeline 2 +agent: + machine: + type: e1-standard-2 + os_image: ubuntu2004 + +blocks: + - name: List VM Linux version + task: + jobs: + - name: uname + commands: + - echo $SEMAPHORE_PIPELINE_ID + - uname -a +``` + +### auto_promote {#auto-promote-in-promotions} + +The `auto_promote` property is optional and it allows you to specify a set of conditions under which a pipeline will be promoted automatically. + +It requires conditions to be defined in a `when` sub-property, following the [Conditions DSL](./conditions-dsl). + +If these conditions are fulfilled for a given pipeline's execution, the appropriate promotion will be triggered automatically. + +You can define conditions based on values for the following properties of the original pipeline: + +- `branch`: the name of the branch for which the pipeline is initiated (empty in the case of a tag or pull request) +- `tag`: the name of the tag for which the pipeline is initiated (empty in the case of branch or pull requests) +- `pull request`: the number of pull requests for which the pipeline is initiated (empty in the case of a branch or tag) +- `change_in`: at least one file has changed in a given path (used for [monorepo workflows](../using-semaphore/monorepo). See [Conditions DSL](./conditions-dsl) for more details +- `result`: the result of a pipeline's execution (see possible values below) +- `result_reason`: the reason for a specific pipeline execution result (see possible values for each result type below) + +The valid values for `result` are: + +- `passed`: all the blocks in the pipeline ended successfully +- `stopped`: the pipeline was stopped either by the user or by the system +- `canceled`: the pipeline was canceled either by the user or by the system (the difference between `canceled` and `stopped` is if the result is `canceled` it means that the pipeline was terminated before any block or job started to execute) +- `failed`: the pipeline failed either due to a pipeline YAML syntax error or because at least one of the blocks of the pipeline failed due to a command not being successfully executed. + +The valid values for `result_reason` are: + +- `test`: one or more user tests failed +- `malformed`: the pipeline YAML file is not correct +- `stuck`: the pipeline jammed for internal reasons and then aborted +- `internal`: the pipeline was terminated for internal reasons +- `user`: the pipeline was stopped on the user request +- `strategy`: the pipeline was terminated due to an auto-cancel strategy +- `timeout`: the pipeline exceeded the execution time limit + +Not all [`result`](#result-in-promotions) and [`result_reason`](#result-reason-promotions) combinations can coexist. For example, you cannot have `passed` as the value of `result` and `malformed` as the value of `result_reason`. On the other hand, you can have `failed` as the value of `result` and `malformed` as the value of `result_reason`. + +For example, with a `result` value of `failed`, the valid values of `result_reason` are `test`, `malformed`, and `stuck`. When the `result` value is `stopped` or `canceled`, the list of valid values for `result_reason` are: + +- `internal` +- `user` +- `strategy` +- `timeout` + +The following pipeline YAML file presents two examples using `auto_promote` and depends on three other pipeline YAML files named `p1.yml`, `p2.yml`, and `p3.yml`: + +```yaml title="Example" +version: v1.0 +name: Testing Auto Promoting +agent: + machine: + type: e1-standard-2 + os_image: ubuntu2004 + +promotions: +- name: Staging + pipeline_file: p1.yml + # highlight-start + auto_promote: + when: "result = 'passed' and (branch = 'master' or tag =~ '^v1\.')" + # highlight-end +- name: Documentation + pipeline_file: p2.yml + # highlight-start + auto_promote: + when: "branch = 'master' and change_in('/docs/')" + # highlight-end +- name: Production + pipeline_file: p3.yml + +blocks: + - name: Block 1 + task: + jobs: + - name: Job 1 - Block 1 + commands: + - echo $SEMAPHORE_GIT_BRANCH + + - name: Block 2 + task: + jobs: + - name: Job 1 - Block 2 + commands: + - echo Job 1 - Block 2 + - echo $SEMAPHORE_GIT_BRANCH + - name: Job 2 - Block 2 + commands: + - echo Job 2 - Block 2 +``` + +According to the specified rules, only the `Staging` and `Documentation` promotions can be auto-promoted – when the conditions specified in the `when` sub-property of the `auto_promote` property are fulfilled. However, the `Production` promotion has no `auto_promote` property, so it can't be auto-promoted. + +Therefore, if the pipeline finishes with a `passed` result and was initiated from the `master` branch, then the `p1.yml` pipeline file will be auto-promoted. + +The same will happen if the pipeline is initiated from the tag with a name that matches the expression given in PCRE (*Perl Compatible Regular Expression*) syntax, which is, in this case, any string that starts with `v1.`. + +`Documentation` promotion will be auto-promoted when initiated from the `master` branch, while there is at least one changed file in the `docs` folder (relative to the root of the repository). Check the [change_in reference](./conditions-dsl#change-in) for additional usage details. + +The content of `p1.yml` is as follows: + +```yaml title="Example" +version: v1.0 +name: Pipeline 1 +agent: + machine: + type: e1-standard-2 + os_image: ubuntu2004 + +blocks: + - name: Environment variable + task: + jobs: + - name: SEMAPHORE_PIPELINE_ID + commands: + - echo $SEMAPHORE_PIPELINE_ID +``` + +The content of `p2.yml` is as follows: + +```yaml title="Example" +version: v1.0 +name: Pipeline 2 +agent: + machine: + type: e1-standard-2 + os_image: ubuntu2004 + +blocks: + - name: Update docs + task: + jobs: + - name: make docs + commands: + - make docs +``` + +Finally, the contents of `p3.yml` is as follows: + +```yaml title="Example" +version: v1.0 +name: This is Pipeline 3 +agent: + machine: + type: e1-standard-2 + os_image: ubuntu2004 + +blocks: + - name: List VM Linux version + task: + jobs: + - name: uname + commands: + - echo $SEMAPHORE_PIPELINE_ID + - uname -a +``` + +All the displayed files are correct pipeline YAML files that could be used as `semaphore.yml` files. + + +### result {#result-in-promotions} + +The value of the `result` property is a string that is used for matching the status of a pipeline. + +The list of valid values for `result`: `passed`, `stopped`, `canceled`, and `failed` is shown below. + +- `passed`: all the blocks in the pipeline ended successfully +- `stopped`: the pipeline was stopped either by the user or by the system +- `canceled`: the pipeline was canceled either by the user or by the system. (the difference between `canceled` and `stopped` is that a pipeline that is not running can be canceled but cannot be stopped) +- `failed`: the pipeline failed either due to a pipeline YAML syntax error or because at least one of the blocks of the pipeline failed due to a command not being successfully executed. + +### branch {#branch-in-promotions} + +The `branch` property is a list of items. Its items are regular expressions that Semaphore tries to match against the name of the branch that is used with the pipeline that is being executed. If any of them is a match, then the return value of the `branch` is `true`. + +The `branch` property uses Perl Compatible Regular Expressions. + +In order for a `branch` value to match the `master` branch only and not match names such as `this-is-not-master` or `a-master-alternative`, you should use `^master$` as the value of the `branch` property. The same rule applies to matching words or strings. + +In order for a `branch` value to match branches that begin with `dev` you should use something like `^dev`. + +### result_reason {#result-reason-promotions} + +The value of the `result_reason` property is a string that defines the reason behind the value of the `result` property. + +The list of valid values for `result_reason` are: `test`, `malformed`, `stuck`, `deleted`, `internal`, and `user`. + +- `test`: one or more user tests failed +- `malformed`: the pipeline YAML file is not correct +- `stuck`: the pipeline jammed for internal reasons and then aborted +- `deleted`: the pipeline was terminated because the branch was deleted while the pipeline was running +- `internal`: the pipeline was terminated for internal reasons +- `user`: the pipeline was stopped on the user's request + +Not all `result` and `result_reason` combinations can coexist. For example, you cannot have `passed` as the value of `result` and `malformed` as the value of `result_reason`. On the other hand, you can have `failed` as the value of `result` and `malformed` as the value of `result_reason`. + +For example, with a `result` value of `failed`, the valid values of `result_reason` are `test`, `malformed`, and `stuck`. When the `result` value is `stopped` or `canceled`, the list of valid values for `result_reason` are: + +- `deleted` +- `internal` +- `user` + +## Parameters {#parameters} + +Parameters can only be used in [parameterized promotions](../using-semaphore/promotions#parameters). When a pipeline is promoted with parameters enabled, you can use the special `${{parameters}}` and `%{{parameters}}` template syntax to define values and even change the pipeline YAML at runtime. + +There are two ways to use the template syntax: + +- **String expansion** (starts with `$`): parameters using the `${{parameters.VAR_NAME}}` syntax are expanded at runtime. For example, if you defined a parameter called `ENVIRONMENT`, you can insert its value in the pipeline config as `${{parameters.ENVIRONMENT}}` at runtime +- **String evaluation** (start with `%`): strings using the `%{{parameters.VAR_NAME}}` syntax produce JSON-serialized output, allowing you to dynamically transform values and inject them as YAML into pipeline during runtime. This feature supports string manipulation using pipes and [Sprout functions](#parameters-functions) + +The examples below show all the ways these parameters can be used. + +### Using Sprout functions {#parameters-functions} + +Strings using the form `%{{parameters}}` (starting with the `%` sign) produce a JSON-serialized output and support string manipulation via pipes and functions. Internally, the templates are processed using the [Sprout library] + +Internally, Semaphore uses [Sprout](https://docs.atom.codes/sprout) as the templating engine and supports a subset of the [Sprout functions](https://docs.atom.codes/sprout/registries/list-of-all-registries). + +For example, given `VAR1='Hello World'` the string: + +```text +"%{{parameters.VAR1 | nospace }}" +``` + +Removes the space, generating the following output: + +```text +HelloWorld +``` + +Likewise, given `VAR2=us-central-1,us-east-1` + +```text +"%{{parameters.VAR2 | splitList \",\"}}" +``` + +Generates the following list: + +```yaml +- us-central-1 +- us-east-1 +``` + +See [parameters job matrices](#parameter-matrix) for a complete working example using lists. + +
+Supported Sprout functions +
+ +The following functions are supported. Refer to the [Sprout documentation](https://docs.atom.codes/sprout/registries/list-of-all-registries) to learn more about using these functions. + +- default +- empty +- coalesce +- all +- any +- compact +- ternary +- fromJson +- toJson +- toPrettyJson +- toRawJson +- deepCopy +- b64enc +- b64dec +- b32enc +- b32dec +- list +- dict +- get +- set +- unset +- chunk +- hasKey +- pluck +- keys +- pick +- omit +- values +- concat +- dig +- merge +- mergeOverwrite +- append +- prepend +- reverse +- first +- rest +- last +- initial +- uniq +- without +- has +- slice +- regexMatch +- regexFindAll +- regexFind +- regexReplaceAll +- regexReplaceAllLiteral +- regexSplit +- regexQuoteMeta +- ellipsis +- ellipsisBoth +- trunc +- trim +- upper +- lower +- title +- untitle +- substr +- repeat +- join +- sortAlpha +- trimAll +- trimSuffix +- trimPrefix +- nospace +- initials +- randAlphaNum +- randAlpha +- randAscii +- randNumeric +- swapcase +- shuffle +- snakecase +- camelcase +- kebabcase +- wrap +- wrapWith +- contains +- hasPrefix +- hasSuffix +- quote +- squote +- cat +- indent +- nindent +- replace +- plural +- sha1sum +- sha256sum +- adler32sum +- toString +- int64 +- int +- float64 +- seq +- toDecimal +- until +- untilStep +- split +- splitList +- splitn +- toStrings +- add1 +- add +- sub +- div +- mod +- mul +- randInt +- add1f +- addf +- subf +- divf +- mulf +- max +- min +- maxf +- minf +- ceil +- floor +- round + +
+
+ + +### Pipeline name {#parameter-pipeline-name} + +The following example customizes the pipeline name given the parameters `DEPLOY_ENV` and `SERVER`. + +```yaml title="deploy.yml" +version: v1.0 +# highlight-next-line +name: "Deploy to ${{parameters.DEPLOY_ENV}} on ${{parameters.SERVER}}" +``` + +### Job and block names {#parameter-job-name} + +The following example uses parameters to set the job and block names with parameters. + +```yaml title="deploy.yml" +version: v1.0 +name: Deploy pipeline +agent: + machine: + type: e1-standard-2 + os_image: ubuntu2004 + +blocks: +# highlight-next-line + - name: Deploy image to ${{parameters.DEPLOY_ENV}} + task: + jobs: + # highlight-start + - name: Deploy to ${{parameters.DEPLOY_ENV}} on ${{parameters.SERVER}} + commands: ./deploy.sh $DEPLOY_ENV $SERVER + # highlight-end +``` + +### Agent {#parameter-agent} + +You can use parameters to dynamically define the [agent type](../using-semaphore/pipelines#agents). + +```yaml title="deploy.yml" +version: v1.0 +name: Deployment pipeline + +agent: + machine: + # highlight-start + type: "${{parameters.MACHINE_TYPE}}" + os_image: "${{parameters.OS_IMAGE}}" + # highlight-end +``` + +### Commands in jobs {#parameter-commands} + +All parameters are exported as environment variables in the CI environment. You can access the value as environment variables in you shell environment. + +For example, if you have parameters named `ENVIRONMENT` and `RELEASE`, you can access them like this: + +```yaml title="deploy.yml" +version: v1.0 +name: Deployment pipeline +agent: + machine: + type: e1-standard-2 + os_image: ubuntu2004 +blocks: + task: + jobs: + - name: Using promotion as env. var + commands: + # highlight-start + # Use parameter values inside a job + - echo $ENVIRONMENT + - echo $RELEASE + # highlight-end +``` + +### Secrets {#parameter-secrets} + +You can dynamically import [secrets](../using-semaphore/secrets) using parameters in your pipeline YAML. + +```yaml title="deploy.yml" +version: v1.0 +name: Deployment pipeline +agent: + machine: + type: e1-standard-2 + os_image: ubuntu2004 + +blocks: + task: + jobs: + - name: Deploy application + task: + secrets: + # highlight-start + - name: ${{parameters.DEPLOY_ENV}}_deploy_key + - name: ${{parameters.DEPLOY_ENV}}_aws_creds + # highlight-end + jobs: + - name: Deploy + commands: ./deploy.sh +``` + + +### Global config {#parameter-global} + +You can use parameters in the [global config](#global-job-config) for the pipeline. + +```yaml title="deploy.yml" +version: v1.0 +name: Deployment pipeline +agent: + machine: + type: e1-standard-2 + os_image: ubuntu2004 + + +global_job_config: + secrets: + # highlight-next-line + - name: "${{parameters.DEPLOY_ENV}}_deploy_key" + - name: "github_key" +``` + +### Queue {#parameter-queue} + +The following example shows how to dynamically assign pipelines to [names queues](../using-semaphore/pipelines#named-queues) with parameters. + + +```yaml title="deploy.yml" +version: v1.0 +name: Deployment pipeline +agent: + machine: + type: e1-standard-2 + os_image: ubuntu2004 + +queue: +# highlight-start + - name: "${{parameters.DEPLOY_ENV}}_deployment_queue" +# highlight-end +``` + +### Job parallelism {#parameter-parallelism} + +You can dynamically calculate the [parallelism of the job](../using-semaphore/jobs#job-parallelism) using [Sprout functions](#parameters-functions). + +The following example configures job parallelism to the value of the `PARALLELISM` parameter multiplied by two: + +```yaml title="deploy.yml" +version: v1.0 +name: Deployment pipeline +agent: + machine: + type: e1-standard-2 + os_image: ubuntu2004 + +blocks: + - name: Run tests + task: + jobs: + - name: Run tests + commands: + - echo "Running tests" + # highlight-next-line + parallelism: "%{{parameters.PARALLELISM | mul 2}}" +``` + +### Job matrix {#parameter-matrix} + +You can define a [job matrix](../using-semaphore/jobs#matrix) with parameters. Given `AWS_REGIONS=us-central-1,us-east1`, the following example runs the `deploy.sh` script both regions by transforming the comma-separated regions in a YAML list. + + +```yaml title="deploy.yml" +version: v1.0 +name: Deployment pipeline +agent: + machine: + type: e1-standard-2 + os_image: ubuntu2004 + +blocks: + - name: Deploy application in all regions + task: + jobs: + - name: Deploy to ${{parameters.AZ}} + commands: ./deploy.sh $AZ + # highlight-start + matrix: + - env_var: AZ + values: "%{{parameters.AWS_REGIONS | splitList \",\"}}" + # highlight-end +``` + +### Complete example {#parameter-example} + +The following example shows all the places and ways parameters can be used in dynamically define the pipeline YAML on runtime. + +```yaml +version: v1.0 +# highlight-start +# Change the pipeline name +name: "Deploy to ${{parameters.DEPLOY_ENV}} on ${{parameters.SERVER}}" +# highlight-end + +agent: + machine: + # highlight-start + # set the agent type and os image + type: "${{parameters.MACHINE_TYPE}}" + os_image: "${{parameters.OS_IMAGE}}" + # highlight-end + +global_job_config: + secrets: + # highlight-start + # import the correct secret into all jobs + - name: "${{parameters.DEPLOY_ENV}}_deploy_key" + # highlight-end + - name: "github_key" + +queue: +# highlight-start + # assign the pipeline to the first named queue that matches + - name: "${{parameters.DEPLOY_ENV}}_deployment_queue" + - name: "${{parameters.MISSING}}_queue" +# highlight-end + - name: "default_queue" + +blocks: + - name: Run tests + task: + agent: + machine: + # highlight-start + # override the machine type for this job + type: "${{parameters.MACHINE_TYPE}}" + # highlight-end + containers: + # highlight-start + # set the Docker environment container image and name + - name: "${{parameters.DEPLOY_ENV}}_test_container" + image: "${{parameters.DEPLOY_ENV}}_test_image" + secrets: + # import the secret to pull the image from a private registry + - name: ${{parameters.DEPLOY_ENV}}_api_key + # highlight-end + jobs: + - name: Run tests + commands: + - echo "Running tests" + # highlight-start + # set job parallelism to PARALLELISM * 2 + parallelism: "%{{parameters.PARALLELISM | mul 2}}" + # highlight-end + + - name: Build and push image + task: + secrets: + # highlight-start + # dynamically import the right secrets + - name: ${{parameters.DEPLOY_ENV}}_dockerhub + - name: ${{parameters.DEPLOY_ENV}}_ecr + # highlight-end + + # highlight-start + # change the job name using the parameter DEPLOY_ENV + - name: Deploy image to ${{parameters.DEPLOY_ENV}} + # highlight-end + task: + secrets: +# highlight-start + # dynamically import the right secrets + - name: ${{parameters.DEPLOY_ENV}}_deploy_key + - name: ${{parameters.DEPLOY_ENV}}_aws_creds +# highlight-end + jobs: + # highlight-start + # change the job name using the parameters DEPLOY_ENV and SERVER + - name: Deploy to ${{parameters.DEPLOY_ENV}} on ${{parameters.SERVER}} + # run deployment script in the region + commands: ./deploy.sh $AWS_REGION + # create a job matrix from a comma-separated string + matrix: + - env_var: AWS_REGION + values: "%{{parameters.AWS_REGIONS | splitList \",\"}}" + # highlight-end + +# send notifications to Slack channels and ping the servers once all jobs have ended +after_pipeline: + task: + secrets: + - name: ${{parameters.DEPLOY_ENV}}_slack_token + jobs: + - name: "Notify on Slack: %{{parameters.SLACK_CHANNELS | splitList \",\"}}" + commands: + - echo "Notifying Slack" + matrix: + - env_var: SLACK_CHANNEL + values: "%{{parameters.SLACK_CHANNELS | splitList \",\" }}" + - name: Ping ${{parameters.DEPLOY_ENV}} from %{{parameters.PARALLELISM}} jobs + commands: + - echo "Pinging environment" + parallelism: "%{{parameters.PARALLELISM | int64 }}" +``` + +## Deprecated properties {#deprecated} + +This section shows deprecated properties. + +### auto_promote_on {#auto-promote-on-in-deprecated} + +:::warning + +The `auto_promote_on` property has been deprecated in favor of the [`auto_promote`](#auto-promote-in-promotions) property. + +::: + +The `auto_promote_on` property is used for automatically promoting one or more branches of `promotions` blocks according to user-specified rules. + +The `auto_promote_on` property is a list of items that supports three properties: `result`, which is mandatory; `branch`, which is optional; and `result_reason`, which is also optional. + +For an `auto_promote_on` branch to execute, the return values of all the used properties of that branch must be `true`. + + +
+`auto_promote_on` example +
+ +The following pipeline YAML file shows an example use of `auto_promote_on` and depends on two other pipeline YAML files named `p1.yml` and `p2.yml`: + +```yaml title="Example" +version: v1.0 +name: Testing Auto Promoting +agent: + machine: + type: e1-standard-2 + os_image: ubuntu2004 + +promotions: +- name: Staging + pipeline_file: p1.yml + # highlight-start + auto_promote_on: + - result: passed + branch: + - "master" + - ^refs/tags/v1.* + - result: failed + branch: + - "v2." + result_reason: malformed + # highlight-end + +- name: prod + pipeline_file: p2.yml + +blocks: + - name: Block 1 + task: + jobs: + - name: Job 1 - Block 1 + commands: + - echo $SEMAPHORE_GIT_BRANCH + - name: Job 2 - Block 1 + commands: + - echo Job 2 - Block 1 + + - name: Block 2 + task: + jobs: + - name: Job 1 - Block 2 + commands: + - echo Job 1 - Block 2 + - echo $SEMAPHORE_GIT_BRANCH + - name: Job 2 - Block 2 + commands: + - echo Job 2 - Block 2 +``` + +According to the specified rules, only the `Staging` promotion of the `promotions` list can be auto-promoted – this depends on the rules of the two items of the `auto_promote_on` list. However, the `prod` promotion of the `promotions` list has no `auto_promote_on` property so there is no way it can be auto-promoted. + +So, if the pipeline finishes with a `passed` result and the branch name contains the word `master`, then the `p1.yml` pipeline file will be auto-promoted. The same will happen if the pipeline finishes with a `failed` result. The `result_reason` is `malformed` and the branch name contains the `v2` sequence of characters followed by at least one more character because a `.` character in a Perl Compatible Regular Expression means one or more characters. + +The contents of `p1.yml` are as follows: + +```yaml title="Example" +version: v1.0 +name: Pipeline 1 +agent: + machine: + type: e1-standard-2 + os_image: ubuntu2004 + +blocks: + - name: Environment variable + task: + jobs: + - name: SEMAPHORE_PIPELINE_ID + commands: + - echo $SEMAPHORE_PIPELINE_ID +``` + +The contents of `p2.yml` are as follows: + +```yaml title="Example" +version: v1.0 +name: This is Pipeline 2 +agent: + machine: + type: e1-standard-2 + os_image: ubuntu2004 + +blocks: + - name: List VM Linux version + task: + jobs: + - name: uname + commands: + - echo $SEMAPHORE_PIPELINE_ID + - uname -a +``` + +Both `p1.yml` and `p2.yml` are correct pipeline YAML files that could be used as `semaphore.yml` files. + +
+
## Complete examples {#complete-examples} diff --git a/docs/versioned_docs/version-CE-1.2/reference/project-yaml.md b/docs/versioned_docs/version-EE-1.3/reference/project-yaml.md similarity index 100% rename from docs/versioned_docs/version-CE-1.2/reference/project-yaml.md rename to docs/versioned_docs/version-EE-1.3/reference/project-yaml.md diff --git a/docs/versioned_docs/version-CE-1.2/reference/resources-yaml.md b/docs/versioned_docs/version-EE-1.3/reference/resources-yaml.md similarity index 100% rename from docs/versioned_docs/version-CE-1.2/reference/resources-yaml.md rename to docs/versioned_docs/version-EE-1.3/reference/resources-yaml.md diff --git a/docs/versioned_docs/version-CE-1.2/reference/secret-yaml.md b/docs/versioned_docs/version-EE-1.3/reference/secret-yaml.md similarity index 99% rename from docs/versioned_docs/version-CE-1.2/reference/secret-yaml.md rename to docs/versioned_docs/version-EE-1.3/reference/secret-yaml.md index 10b31077e..3ffa33bd7 100644 --- a/docs/versioned_docs/version-CE-1.2/reference/secret-yaml.md +++ b/docs/versioned_docs/version-EE-1.3/reference/secret-yaml.md @@ -56,8 +56,6 @@ This is a required field for project-level secrets. It must contain either the p ## org_config {#org-config} - - The `org_config` property holds server access policy fields, which are enabled for server on a Startup plan or higher. This property can contain the following: diff --git a/docs/versioned_docs/version-CE-1.1/reference/self-hosted-config.md b/docs/versioned_docs/version-EE-1.3/reference/self-hosted-config.md similarity index 99% rename from docs/versioned_docs/version-CE-1.1/reference/self-hosted-config.md rename to docs/versioned_docs/version-EE-1.3/reference/self-hosted-config.md index d4c5c5512..df04b0348 100644 --- a/docs/versioned_docs/version-CE-1.1/reference/self-hosted-config.md +++ b/docs/versioned_docs/version-EE-1.3/reference/self-hosted-config.md @@ -9,8 +9,6 @@ import TabItem from '@theme/TabItem'; import Available from '@site/src/components/Available'; import VideoTutorial from '@site/src/components/VideoTutorial'; - - This page describes all the settings available to configure [self-hosted agents](../using-semaphore/self-hosted). ## Overview diff --git a/docs/versioned_docs/version-CE-1.1/reference/semaphore-cli.md b/docs/versioned_docs/version-EE-1.3/reference/semaphore-cli.md similarity index 83% rename from docs/versioned_docs/version-CE-1.1/reference/semaphore-cli.md rename to docs/versioned_docs/version-EE-1.3/reference/semaphore-cli.md index 3d0d49e12..babf4bda7 100644 --- a/docs/versioned_docs/version-CE-1.1/reference/semaphore-cli.md +++ b/docs/versioned_docs/version-EE-1.3/reference/semaphore-cli.md @@ -12,11 +12,11 @@ import Steps from '@site/src/components/Steps'; -You can interact with most aspects of your jobs, pipelines, projects, and server using only the command line. This page explains how to use the Semaphore CLI tool. +You can interact with most aspects of your jobs, pipelines, projects, and organizations using only the command line. This page explains how to use the Semaphore CLI tool. This page uses the terms server, instance, and organization interchangeably. ## Overview -The Semaphore CLI tool lets you create projects, debug jobs, set up notifications, and manage your Semaphore resources. +The Semaphore CLI tool lets you create projects, debug jobs, define dashboards, set up notifications, and manage your Semaphore resources. ## Installation and set up {#install} @@ -35,10 +35,9 @@ brew install semaphoreci/tap/sem Once installed, you need to authorize access to your Semaphore server. You can do this with: ```shell -sem connect +sem connect semaphore.example.com ``` - -You can get an API token on your [account page](https://me.semaphore.example.com/account). +You can get an API token on your [account page](https://me.semaphoreci.com/account). ## General syntax {#syntax} @@ -50,7 +49,7 @@ sem [flags] The supported commands are: -- `apply`: update projects, secrets, notifications +- `apply`: update projects, secrets, dashboards, notifications, and deployment targets - `attach`: attach to a running job - `config`: get and set configuration options - `connect`: connect to an server @@ -69,12 +68,14 @@ The supported commands are: The supported resource types are: +- `dashboard` - `job` - `notification` - `project` - `pipeline` - `workflow` - `secret` +- `deployment-target` ### sem help {#help} @@ -145,31 +146,31 @@ $ sem version The Semaphore CLI supports the following flags: - `--help` or `-h`: prints the help screen for the given command -- `--verbose` or `-v`: useful for debugging, prints vebose output. This flag shows the interactions between the tool and the [Semaphore API](./api) -- `--file` or `-f`: specifies the path to a file. Can be used to specify YAML resource files in [sem create](#sem-create) and [sem apply](#sem-apply). It can also be used to upload secrets as files using [sem create secret](#sem-create) +- `--verbose` or `-v`: useful for debugging, prints verbose output. This flag shows the interactions between the tool and the [Semaphore API](./api) +- `--file` or `-f`: specifies the path to a file. Can be used to specify YAML resource files in [sem create](#sem-create) and [sem apply](#sem-apply). It can also be used to upload secrets as files using [sem create secret](#sem-create) and [sem create dt](#sem-create-dt) - `--all`: used with [sem get job](#sem-get-job) to view running and recently-finished jobs -## Working with Semaphore server {#orgs} +## Working with servers {#orgs} This section explains how to connect and switch servers. ### sem connect {#sem-connect} -Before using any other commands, you need to connect to your Semaphore servers. +Before using any other commands, you need to connect to your Semaphore server. The syntax to connect is: ```shell title="Connecting to your server" -sem connect +sem connect semaphore.example.com ``` -For example: +For example ```shell -sem connect semaphore.example.com NeUFkim46BCdpqCAyWXN +sem connect tomfern.semaphoreci.com NeUFkim46BCdpqCAyWXN ``` -You can get an API token on your [account page](https://me.example.com/account). +You can get an API token on your [account page](https://me.semaphoreci.com/account). If you have multiple servers, you can repeat the command to connect to all of them. The authentication token is stored on your local machine. @@ -183,18 +184,18 @@ $ sem context * semaphore-demos_semaphoreci_com ``` -The active servers is marked with an asterisk (*). Commands are always executed in the active server. +The active server is marked with an asterisk (*). Commands are always executed in the active server. -To switch the active servers: +To switch the active server: -```shell title="Changing the active servers" -sem context +```shell title="Changing the active server" +sem context ``` Note that you must supply the server name as shown in `sem context`. For example: ```shell -sem context semaphore_example_com +sem context tomfern_example_com ``` ## Working with resources {#resources} @@ -203,10 +204,12 @@ You can create, edit, and delete resources using the commands described in this ### sem create {#sem-create} -The `sem create` action creates new resources. +The `sem create` action creates new resources. For the following resource types you need to supply the `-f ` or `--file ` argument with a YAML file. The file spec is described in a dedicated reference page: +- [Dashboards reference](./dashboard-yaml.md) +- [Deployment targets reference](./deployment-target-yaml.md) - [Projects reference](./project-yaml.md) - [Jobs reference](./jobs-yaml.md) - [Secrets reference](./secret-yaml.md) @@ -224,11 +227,14 @@ sem create -p -f secret.yaml The following types resource types can be created without supplying a YAML spec file: - Secrets +- Dashboards -For example, to create an empty secret: +For example, to create an empty secret or dashboard: ```shell sem create secret +# or +sem create dashboard ``` You may also create a secret and initialize it with values or files with: @@ -295,13 +301,19 @@ You can add the `-p ` argument to edit project-level secrets. The following examples show how to edit other types of resources ```shell +# edit a dashboard +sem edit dashboard my-activity + # edit a project sem edit project my-project + +# edit a deployment target +sem edit deployment-target my-target -p my-project ``` ### sem get {#sem-get} -The `sem get` command can retrieve all resources of a given type. +The `sem get` command can retrieve all resources of a given type. The syntax is: @@ -617,7 +629,6 @@ The syntax is: ```shell sem port-forward ``` - Where the job id is the one shown with [`sem get job`](#sem-get-job). For example, if we have a MySQL database running on the default port in the agent, we can forward it to our local machine on port 8000 with: @@ -657,6 +668,7 @@ You can provide the following options with `sem init`: On project creation, if a `.semaphore/semaphore.yml` file already exists in the root directory of a repository, `sem init` will keep that file and continue with its operation. If there is no `.semaphore/semaphore.yml` file, `sem init` will create one for you. + :::warning Using the wrong `--repo-url` can cause problems in connecting to the repository. @@ -729,6 +741,7 @@ spec: endpoint: https://hooks.slack.com/services/xxx/yyy/zzz ``` + The available values for `filter.results` are: - `passed` @@ -852,6 +865,7 @@ The `--follow` flag is particularly useful in the following two cases: This section describes in detail how to create, edit, and rebuild workflows using the Semaphore CLI. + ### sem get workflows {#sem-get-workflows} The `sem get workflows` command returns the workflows for all your projects in your server. @@ -914,6 +928,7 @@ The output of `sem rebuild workflow` command is a new workflow id and a new pipe This section describes in detail how to create, edit, and view [self-hosted agents](../using-semaphore/self-hosted) using the Semaphore CLI + ### sem create agent_type {#sem-create-agent-type} The `sem create agent_type` command can be used to create a self-hosted agent type using the Semaphore CLI. @@ -962,6 +977,7 @@ sem create -f agent_type.yml See [Agent Type YAML spec file](./agent-yaml.md) for more details. + ### sem get agent_types {#sem-get-agent-types} The `sem get agent_types` command returns the list of self-hosted agent types for a Semaphore server. @@ -1000,6 +1016,7 @@ For example: sem get agents s1-my-type ``` + ### sem get agent properties {#sem-get-agent-types-props} The `sem get agent` command can be used to view properties on specific self-hosted agents. You need to provide the unique agent name. @@ -1010,6 +1027,146 @@ The syntax is: sem get agent_type ``` + +## Working with deployment targets + +This section describes in properties how to create, edit, and view [deployment targets](../using-semaphore/promotions#deployment-targets) using the Semaphore CLI. + +### sem create dt {#sem-create-dt} + +The `sem create dt` command can be used to create a deployment target. + +The syntax is: + +```shell +sem create dt --project-name [flags] +# or +sem create dt --project-id [flags] +``` + +Optional flags are: + +- `--desc ` (`-d`): a description for the target +- `--url ` (`-u`): the URL of the deployed application +- `--bookmark ` (`-b`): up to 3 bookmarks for the target +- `--file :` (`-f`): files to be imported as secrets in the deployment target pipeline +- `--env `(`-e`): environment variables imported as secrets in the deployment target pipeline +- `--subject-rule ,` (`-s`): subject rules assignment +- `--object-rule ,,` (`-o`): object rules assignment + +For subject rule assignment, the `` can be one of the following: + +- `ANY` +- `ROLE` +- `USER` + +The `` is either the name of the role or the UUID of the user. + +For object rule assignment, the `` can be one of the following: + +- `BRANCH` +- `PR` +- `TAG` + +Mode can be one of the following: + +- `ALL` +- `EXACT` +- `REGEX` + +And the `` represents the string to be used for name matching. + +For example with all the options: + +```shell +sem create dt \ + -p \ + -d "A description for the target" \ + -u "myurl321.zyx" \ + -b "bookmark 1" \ + -b "bookmark 2" \ + -f /home/dev/app/server.conf:/etc/my.conf \ + -e X=123 \ + -s ROLE,admin \ + -o branch,exact,main +``` + +See [environments (deployment targets)](../using-semaphore/promotions#deployment-targets) for more information. + +### sem get dt {#sem-get-dt} + +You can list all the deployment targets for a project with: + +```shell +sem get dt --project-name +# or +sem get dt --project-id +``` + +To view the properties of a given deployment target: + +```shell +sem get dt +``` + +The output is a YAML file that describes the deployment target. See [Deployment Targets YAML reference](./deployment-target-yaml). + +### sem get dt history {#sem-get-dt-history} + +You can retrieve the deployment history for a specific deployment target with the `--history` or `-s` parameter. + +The syntax is: + +```shell +sem get dt --history +sem get dt --project-name --history +sem get dt --project-id --history +``` + +The output is a list of deployments with their IDs for the provided deployment targets. + +### sem edit dt {#sem-edit-dt} + +The `sem edit dt` command is used to edit an existing deployment target. + +The syntax is: + +```shell +sem edit dt --project-name +# or +sem edit dt --project-id +``` + +This opens a text editor with the YAML spec. After closing the file, the new changes are updated. + +You can also edit the deployment target using its id with: + +```shell +sem edit dt +``` + +The `` is obtained with [sem get dt](#sem-get-dt). + +In addition, you can supply the `--activate` (`-a`) or `--deactivate` (`-d`) option to activate or deactivate the deployment target. + +For example: + +```shell +sem edit dt my-deployment-target --project-name my-project --deactivate +``` + +### sem delete dt {#sem-delete-dt} + +The `sem delete dt` to delete a deployment target. + +The syntax is: + +```shell +sem delete dt +``` + +The `` is obtained with [sem get dt](#sem-get-dt). + ## Troubleshooting resources {#troubleshoot} The `sem troubleshoot` command can help you troubleshoot problems with any of the supported resources. @@ -1050,11 +1207,13 @@ The Semaphore CLI supports the following aliases for these resources: | Resource | Aliases | |--|--| | `project` | `projects`, `prj` | +| `dashboard` | `dashboards`, `dash` | | `secret` | `secrets` | | `job` | `jobs` | | `notification` | `notifications`, `notifs`, `notif` | | `pipeline` | `pipelines`, `ppl` | | `workflow` | `workflows`, `wf` | +| `deployment-target` | `deployment-targets`, `dt`, `dts`, `deployments`, `deployment` | As an example, the following three commands are equivalent: @@ -1070,5 +1229,6 @@ sem get projects - [Pipeline YAML reference](./pipeline-yaml) - [Projects YAML reference](./project-yaml) - [Secret YAML reference](./secret-yaml) +- [Deployment targets YAML reference](./deployment-target-yaml) - [Agents YAML reference](./agent-yaml) - [Notifications YAML reference](./notifications-yaml) diff --git a/docs/versioned_docs/version-CE-1.2/reference/toolbox.md b/docs/versioned_docs/version-EE-1.3/reference/toolbox.md similarity index 97% rename from docs/versioned_docs/version-CE-1.2/reference/toolbox.md rename to docs/versioned_docs/version-EE-1.3/reference/toolbox.md index 7d4b4105a..9c69f4b7d 100644 --- a/docs/versioned_docs/version-CE-1.2/reference/toolbox.md +++ b/docs/versioned_docs/version-EE-1.3/reference/toolbox.md @@ -41,11 +41,11 @@ The available namespaces are: See [artifact namespaces](../using-semaphore/artifacts#namespaces) for more details. The optional flags are: + - `--force` or `-f`: overwrite file or directory if already exists - `--destination` of `-d`: pull or yank the file into a different path - `--verbose` or `-v`: verbose logging - ### Examples ```shell title="Artifact usage examples" @@ -83,7 +83,7 @@ The uploaded files must meet the following requirements: - File names cannot contain non-URI-encodable characters like `{, }, |, \, ^, ~, [, ]` - Files cannot be named `.` or `...` -You can workaround these limitations by compressing the file with tar before pushing it to the artifact store. For example: +You can workaround these limitations by compressing the file with tar before pushing it to the artifact store. For example: ```shell title="Creating a tarball before storing the artifact" tar -czvf example.tar.gz ~/example @@ -99,7 +99,7 @@ tar -xzf example.tar.gz ## cache {#cache} -The cache tool lets you interact with your project's [Semaphore cache](../using-semaphore/optimization/cache). +The cache tool lets you interact with your project's [Semaphore cache](../using-semaphore/cache). The syntax is: @@ -160,7 +160,6 @@ The supported options for `--cleanup-by` are: - `STORE_TIME`: (default) delete oldest files first - `ACCESS_TIME`: delete oldest accessed files first - ### Environment variables {#cache-env-vars} The cache tool depends on the following environment variables: @@ -222,7 +221,7 @@ The checkout command uses the following environment variables. ## checksum {#checksum} -This tool takes a single argument which is the file to checksum. It outputs the MD5 checksum of the file's contents. This tool is useful for tagging [artifacts](../using-semaphore/artifacts) or generating [cache keys](../using-semaphore/optimization/cache). +This tool takes a single argument which is the file to checksum. It outputs the MD5 checksum of the file's contents. This tool is useful for tagging [artifacts](../using-semaphore/artifacts) or generating [cache keys](../using-semaphore/cache). The syntax is: @@ -241,7 +240,6 @@ $ checksum package-lock.json The `install-package` tool is used to manage Ubuntu packages you may need for your jobs. It downloads and caches packages in a way that can be quickly reinstalled over and over again in different jobs. This is a convenient tool, you can still use `sudo` to install packages using the system's package manager. - The syntax is: ```shell title="install-package syntax" @@ -254,8 +252,8 @@ Where command is one of the following: - `update`: Retrieve new lists of packages - `upgrade`: Perform an upgrade -- `install`: Install new packages -- `reinstall`: Reinstall packages +- `install`: Install new packages +- `reinstall`: Reinstall packages - `remove`: Remove packages - `purge`: Remove packages and config files - `autoremove`: Remove automatically all unused packages @@ -276,7 +274,7 @@ You can supply multiple packages with their versions in the same invocation: install-package install mongodb-clients=3.6.8 mysql-client=8.0.36-0ubuntu0.20.04.1 ``` -The tool integrates with the [Semaphore cache](../using-semaphore/optimization/cache) to save, retrieve, and update the Deb packages as needed. +The tool integrates with the [Semaphore cache](../using-semaphore/cache) to save, retrieve, and update the Deb packages as needed. You can reinstall the packages in a different job within the same project with: @@ -363,6 +361,7 @@ $ sem-context get ReleaseVersion ``` Exit status codes: + - 0: key retrieved successfully - 1: key not found - 2: connection to the artifacts server failed @@ -377,6 +376,7 @@ sem-context delete ReleaseVersion ``` Exit status codes: + - 0: key deleted successfully - 1: key not found - 2: connection to the artifacts server failed @@ -429,7 +429,7 @@ The test-results CLI is open-sourced and available on [semaphoreci/test-results] ### Merging test results {#test-result-merge} -To use the test result feature you must add the following command at the end of every test job. +To use the test result feature you must add the following command at the end of every test job. The syntax is: @@ -493,5 +493,5 @@ kubectl apply -f deployment.yml ## See also - [Semaphore command line tool reference](./semaphore-cli) -- [Working with Docker](../using-semaphore/optimization/docker) +- [Working with Docker](../using-semaphore/containers/docker) - [Environment variable reference](./env-vars) diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/_category_.json b/docs/versioned_docs/version-EE-1.3/using-semaphore/_category_.json similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/_category_.json rename to docs/versioned_docs/version-EE-1.3/using-semaphore/_category_.json diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/artifacts.md b/docs/versioned_docs/version-EE-1.3/using-semaphore/artifacts.md similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/artifacts.md rename to docs/versioned_docs/version-EE-1.3/using-semaphore/artifacts.md diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/optimization/cache.md b/docs/versioned_docs/version-EE-1.3/using-semaphore/cache.md similarity index 83% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/optimization/cache.md rename to docs/versioned_docs/version-EE-1.3/using-semaphore/cache.md index 5b10fb66c..1d51e5976 100644 --- a/docs/versioned_docs/version-CE-1.2/using-semaphore/optimization/cache.md +++ b/docs/versioned_docs/version-EE-1.3/using-semaphore/cache.md @@ -17,14 +17,14 @@ The cache provides fast and convenient storage for your jobs. Use the cache to s ## Overview -Semaphore provides a [cache tool](../../reference/toolbox#cache) in all jobs to reuse files your project depends on but are not part of the repository. +Semaphore provides a [cache tool](../reference/toolbox#cache) in all jobs to reuse files your project depends on but are not part of the repository. Typical uses of the cache are: - to propagate a file from one block to the next - to reuse dependencies that are normally downloaded from the internet, like NPM modules -Semaphore creates a separate cache for every [project](../projects). For jobs running on Semaphore Cloud, the total cache size is 9.6GB. Older files are automatically deleted after 30 days or when the cache fills up. +Semaphore creates a separate cache for every [project](./projects). For jobs running on Semaphore Cloud, the total cache size is 9.6GB. Older files are automatically deleted after 30 days or when the cache fills up. :::note @@ -53,7 +53,6 @@ The cache tools recognize the following languages and dependency managers. See [ When using one of the supported dependency managers: - 1. Run `cache restore` to restore the latest files from the cache @@ -73,6 +72,7 @@ cache restore npm install cache store ``` + @@ -92,12 +92,13 @@ cache restore bundle install --path vendor/bundle cache store ``` + :::warning -Avoid using `cache store` in the [prologue](../pipelines#prologue) as this can cause file corruption due to multiple jobs trying to write the same key simultaneously. Instead, use `cache store` in the individual job commands. +Avoid using `cache store` in the [prologue](./pipelines#prologue) as this can cause file corruption due to multiple jobs trying to write the same key simultaneously. Instead, use `cache store` in the individual job commands. ::: @@ -121,7 +122,7 @@ cache restore Where keys are again a comma-separated lists of keys. Semaphore searches for the keys in the order provided and restores the first match to the working directory. -### Using multiple keys +### Using multiple keys It's recommended to use multiple keys to increase the chances of matching a key. The following example uses two keys: @@ -183,7 +184,7 @@ cache clear ## Custom backends {#custom-backends} -The cache storage is available for all Semaphore Cloud users. If you're running a different version such as On-Premise or [self-hosted agents](../self-hosted), the cache might not be available. +The cache storage is available for all Semaphore Cloud users. If you're running a different version such as On-Premise or [self-hosted agents](./self-hosted), the cache might not be available. For these cases, you need to provide storage. This section explains how to configure custom storage in other platforms. @@ -195,11 +196,11 @@ To provision the storage, follow these steps: -1. Create and configure an S3 bucket as explained in [How to set up caching on self-hosted agents](../self-hosted-configure#aws-cache) -2. Configure the following [environment variables](../jobs#environment-variables) in your job +1. Create and configure an S3 bucket as explained in [How to set up caching on self-hosted agents](./self-hosted-configure#aws-cache) +2. Configure the following [environment variables](./jobs#environment-variables) in your job - `SEMAPHORE_CACHE_BACKEND` set its value to "s3" - `SEMAPHORE_CACHE_S3_BUCKET` set its value to the S3 bucket name -3. Create a [secret](../secrets) with the following credentials +3. Create a [secret](./secrets) with the following credentials - `AWS_ACCESS_KEY_ID`: the key for an IAM account with access to the bucket - `AWS_SECRET_ACCESS_KEY`: the secret key for the account - `AWS_DEFAULT_REGION`: the region where the bucket is located @@ -215,7 +216,7 @@ To provision storage, follow these steps 1. [Create a Google Cloud Bucket](https://cloud.google.com/storage/docs/creating-buckets) -2. Configure the following [environment variables](../jobs#environment-variables) in your job +2. Configure the following [environment variables](./jobs#environment-variables) in your job - `SEMAPHORE_CACHE_BACKEND` set it to "gcs" - `SEMAPHORE_CACHE_GCS_BUCKET` set it to your Google Cloud bucket name 3. Provide the Google Cloud Application Default Credentials. See [How Application Default Credentials work](https://cloud.google.com/docs/authentication/application-default-credentials) to learn more @@ -226,16 +227,16 @@ To provision storage, follow these steps You can provide an SFTP server to provide custom storage for the cache. -To use SFTP, define the following [environment variables](../jobs#environment-variables) in your job: +To use SFTP, define the following [environment variables](./jobs#environment-variables) in your job: - `SEMAPHORE_CACHE_BACKEND`: set its value to "sftp" - `SEMAPHORE_CACHE_URL`: the IP address and port number of the SFTP server, e.g. "1.2.3.4:29920" - `SEMAPHORE_CACHE_USERNAME`: the username used to connect to the server - `SEMAPHORE_CACHE_PRIVATE_KEY_PATH`: the path of the private SSH key used to connect to the SFTP server -In addition, you must create a [secret](../secrets) to store the private SSH key and expose it inside the job. +In addition, you must create a [secret](./secrets) to store the private SSH key and expose it inside the job. ## See also -- [Using cache in jobs](../jobs#cache) -- [Cache toolbox reference](../../reference/toolbox#cache) +- [Using cache in jobs](./jobs#cache) +- [Cache toolbox reference](../reference/toolbox#cache) diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/connect-bitbucket.md b/docs/versioned_docs/version-EE-1.3/using-semaphore/connect-bitbucket.md similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/connect-bitbucket.md rename to docs/versioned_docs/version-EE-1.3/using-semaphore/connect-bitbucket.md diff --git a/docs/versioned_docs/version-EE-1.3/using-semaphore/connect-git-server.md b/docs/versioned_docs/version-EE-1.3/using-semaphore/connect-git-server.md new file mode 100644 index 000000000..1bdaca63f --- /dev/null +++ b/docs/versioned_docs/version-EE-1.3/using-semaphore/connect-git-server.md @@ -0,0 +1,200 @@ +--- +description: Access repositories on any Git server via SSH +--- + +# Connect Any Git Server + +import Tabs from '@theme/Tabs'; +import TabItem from '@theme/TabItem'; +import Available from '@site/src/components/Available'; +import VideoTutorial from '@site/src/components/VideoTutorial'; +import Steps from '@site/src/components/Steps'; + +This page explains how to add a project hosted on a private Git server. + +## Overview + +Semaphore can work with repositories hosted on any privately-run [Git server](https://git-scm.com/book/en/v2/Git-on-the-Server-Getting-Git-on-a-Server) via SSH. + +Before you start, ensure you have SSH access to the machine running the Git service. Then, take note of the following parameters: + +- public IP or domain name of your Git server, e.g. `my-git-server.org`) +- user running the Git service, e.g. `git` +- home directory for the user running the git service, e.g. `/home/git` +- directory containing the repositories, e.g. `/srv/git` + +## How to create a bare repository {#bare} + +This section provides a guide on creating a new repository to practice to anyone new to the world of private Git servers. You can skip this section if you're familiar with managing Git servers. + +To create a new repository: + + + +1. Connect to the server running the Git service, e.g. `ssh git@example.com` + +2. Change to the directory where the repositories are hosted, e.g. `cd /srv/git` + +3. Create a new bare repository, e.g. `git init --bare my-repo.git` + +4. On a different terminal, clone the remote repository to your local machine, e.g. `git clone ssh://git@my-git-server.org/srv/git/my-repo.git` + +5. Once cloned, ensure the repository has at least one commit (so it is not empty), e.g. + + ```shell + cd my-repo + echo "# This is a test" > README.md + git add README.md + git commit -m initial commit + git push origin main + ``` + + + +## How to create a project {#create} + +To connect with this method, press the **Create new** button. + +![Create new project button](./img/create-new-project-location.jpg) + + + +1. Select the **Generic Git** + +
+ Show me +
+ ![Choose Generic Git project](./img/anygit-1.jpg) +
+
+ +2. Type the SSH URL used to clone the repository, e.g. `ssh://git@my-git-server.org/srv/git/my-repo.git` + +3. Optionally, change the name of the project + +
+ Show me +
+ ![Set repository URL](./img/anygit2.jpg) +
+
+ +4. Copy the public SSH key shown on screen + + +
+ Show me +
+ ![Copy SSH key](./img/anygit3.jpg) +
+
+ +5. SSH into the Git server add the SSH key copied in the previous step to `$HOME/.ssh/authorized_keys` (relative to the user that runs the Git service) and press **Continue** + +6. Back in Semaphore, press the **Generate Script** button + +
+ Show me +
+ ![Generate script button](./img/anygit4.jpg) +
+
+ +7. In the Git server, go into the directory containing the bare repository (e.g. `/srv/git/my-repo.git`) + +8. Create the [post-receive](https://git-scm.com/docs/githooks#post-receive) script in the `hooks` directory, pay attention to: + + - Filename: `post-receive` + - Contents: the script copied in Step 6 + - Owner: check that the script is owned by the same user running the Git service, e.g. `chown git:git post-receive` + - Permission to execute: `chmod a+x post-receive` + - Prerequisite packages: [curl](https://curl.se/) + +9. Semaphore will wait for the post-receive hook to be executed. To do that, commit and push a new/modified file into the repository. + +10. Back in Semaphore, once the Git hook is executed, press **Configure workflow** + +11. Select the default [agent](./pipelines#agents) for this project and press **Continue** + +
+ Show me +
+ ![Create workflow, continue button](./img/anygit5.jpg) +
+
+ +12. Select a starter workflow. You may also **Customize** or **Design from scratch** + + +
+ Show me +
+ ![Select starter workflow](./img/anygit6.jpg) +
+
+ +
+ +## Troubleshooting guide + +If your repositories aren't showing in Semaphore or changes are not triggering new workflows, check the connection between Semaphore and your Git server. + +### Verify deploy key and webhook {#deploy-key} + + + +1. Open your project + +2. Go to the **Settings**, then **Repository** + + ![Select starter workflow](./img/anygit-check-repository.jpg) + +3. Check the status of **Deploy Key** and **Webhook**. Press **Regenerate** if any of parameters are marked with error: + + - If regenerating a deployment key, you must update the `$HOME/.ssh/authorized_keys` (see Step 4 of [How to create a project](#create)) + - If regenerating the webhook, update the `endpoint` value in the `post-receive` hook (see Step 8 of [How to create a project](#create)) + + + + +### Reconnecting moved or renamed projects {#reconnect} + +There are several actions that can break the connection between the Git server and Semaphore. For example: + +- moving the repository to a different location +- renaming the repository + +When this happens, you must update the URL of the repository in Semaphore. To do this: + + + +1. Open your [project settings](./projects#settings) +2. Type the new repository URL +3. Press **Change** + ![Changing the repository URL in Semaphore](./img/repository-url.jpg) + + + +After changing the URL, double-check the status of the [deploy key](#deploy-key) and webhook. + +### File semaphore.yml is not available + +You might see the following error message when trying to run workflows on Semaphore: + +``` yaml +semaphore.yml ERROR: +Error: {"File '.semaphore/semaphore.yml' is not available", "Not Found"} +``` + +This means that Semaphore can't fetch the `.semaphore/semaphore.yml` file from the repository. There are two reasons why this might happen: + +1. **The file doesn't exist on your repository**: double check to make sure that the Semaphore YAML file actually exists +2. **Repository is disconnected from Semaphore**: follow the steps [previously described](#reconnect) + +## See also + +- [Getting Started Guide](../getting-started/guided-tour) +- [How to connect with GitHub App](./connect-github) +- [How to connect with BitBucket](./connect-bitbucket) +- [How to connect with GitLab](./connect-gitlab) + diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/connect-github-oauth.md b/docs/versioned_docs/version-EE-1.3/using-semaphore/connect-github-oauth.md similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/connect-github-oauth.md rename to docs/versioned_docs/version-EE-1.3/using-semaphore/connect-github-oauth.md diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/connect-github.md b/docs/versioned_docs/version-EE-1.3/using-semaphore/connect-github.md similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/connect-github.md rename to docs/versioned_docs/version-EE-1.3/using-semaphore/connect-github.md diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/connect-gitlab.md b/docs/versioned_docs/version-EE-1.3/using-semaphore/connect-gitlab.md similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/connect-gitlab.md rename to docs/versioned_docs/version-EE-1.3/using-semaphore/connect-gitlab.md diff --git a/docs/versioned_docs/version-CE/using-semaphore/optimization/_category_.json b/docs/versioned_docs/version-EE-1.3/using-semaphore/containers/_category_.json similarity index 100% rename from docs/versioned_docs/version-CE/using-semaphore/optimization/_category_.json rename to docs/versioned_docs/version-EE-1.3/using-semaphore/containers/_category_.json diff --git a/docs/versioned_docs/version-CE/using-semaphore/optimization/container-registry.md b/docs/versioned_docs/version-EE-1.3/using-semaphore/containers/container-registry.md similarity index 100% rename from docs/versioned_docs/version-CE/using-semaphore/optimization/container-registry.md rename to docs/versioned_docs/version-EE-1.3/using-semaphore/containers/container-registry.md diff --git a/docs/versioned_docs/version-CE/using-semaphore/optimization/docker.md b/docs/versioned_docs/version-EE-1.3/using-semaphore/containers/docker.md similarity index 100% rename from docs/versioned_docs/version-CE/using-semaphore/optimization/docker.md rename to docs/versioned_docs/version-EE-1.3/using-semaphore/containers/docker.md diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/optimization/img/add-metric.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/containers/img/add-metric.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/optimization/img/add-metric.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/containers/img/add-metric.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/optimization/img/change-skip-vs-run.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/containers/img/change-skip-vs-run.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/optimization/img/change-skip-vs-run.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/containers/img/change-skip-vs-run.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/optimization/img/custom-create.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/containers/img/custom-create.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/optimization/img/custom-create.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/containers/img/custom-create.jpg diff --git a/docs/versioned_docs/version-CE/using-semaphore/optimization/img/dockerhub-secret.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/containers/img/dockerhub-secret.jpg similarity index 100% rename from docs/versioned_docs/version-CE/using-semaphore/optimization/img/dockerhub-secret.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/containers/img/dockerhub-secret.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/optimization/img/freq-cd.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/containers/img/freq-cd.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/optimization/img/freq-cd.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/containers/img/freq-cd.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/optimization/img/freq-ci.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/containers/img/freq-ci.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/optimization/img/freq-ci.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/containers/img/freq-ci.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/optimization/img/insights-settings.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/containers/img/insights-settings.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/optimization/img/insights-settings.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/containers/img/insights-settings.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/optimization/img/insights-tab.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/containers/img/insights-tab.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/optimization/img/insights-tab.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/containers/img/insights-tab.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/optimization/img/new-metric.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/containers/img/new-metric.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/optimization/img/new-metric.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/containers/img/new-metric.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/optimization/img/org-health-location.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/containers/img/org-health-location.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/optimization/img/org-health-location.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/containers/img/org-health-location.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/optimization/img/org-health-overview.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/containers/img/org-health-overview.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/optimization/img/org-health-overview.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/containers/img/org-health-overview.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/optimization/img/perf-cd.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/containers/img/perf-cd.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/optimization/img/perf-cd.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/containers/img/perf-cd.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/optimization/img/perf-ci.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/containers/img/perf-ci.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/optimization/img/perf-ci.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/containers/img/perf-ci.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/optimization/img/rel-cd.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/containers/img/rel-cd.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/optimization/img/rel-cd.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/containers/img/rel-cd.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/optimization/img/rel-ci.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/containers/img/rel-ci.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/optimization/img/rel-ci.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/containers/img/rel-ci.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/optimization/img/select-date-range.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/containers/img/select-date-range.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/optimization/img/select-date-range.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/containers/img/select-date-range.jpg diff --git a/docs/versioned_docs/version-CE/using-semaphore/optimization/img/workflow-monorepo.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/containers/img/workflow-monorepo.jpg similarity index 100% rename from docs/versioned_docs/version-CE/using-semaphore/optimization/img/workflow-monorepo.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/containers/img/workflow-monorepo.jpg diff --git a/docs/versioned_docs/version-EE-1.3/using-semaphore/github-sso.md b/docs/versioned_docs/version-EE-1.3/using-semaphore/github-sso.md new file mode 100644 index 000000000..b7d4393ef --- /dev/null +++ b/docs/versioned_docs/version-EE-1.3/using-semaphore/github-sso.md @@ -0,0 +1,37 @@ +--- +description: Single Sign On with GitHub +--- + +# Single Sign On with GitHub + +import Tabs from '@theme/Tabs'; +import TabItem from '@theme/TabItem'; +import Available from '@site/src/components/Available'; +import VideoTutorial from '@site/src/components/VideoTutorial'; +import Steps from '@site/src/components/Steps'; + +Semaphore supports repositories hosted on GitHub with SAML single sign-on (SSO). This GitHub feature is available in the GitHub Enterprise Cloud offering. + +To authorize Semaphore to access repositories hosted on GitHub SSO, you need to grant Semaphore access to your organization on GitHub. + +These are the steps to accomplish this: + + + +1. Go to your [GitHub Settings](https://github.com/settings/profile) +2. Select **Applications** +3. Select **Authorized OAuth Apps** +4. From the list of application choose "Semaphore 2.0" +5. Choose your GitHub **Organization access** and click either **Grant** or **Request Access** +6. The organization Admin has to approve the request + + + +Once access is granted, you can connect Semaphore to your GitHub Enterprise repositories and create [projects](./projects). + +## See also + +- [Connecting to GitHub using GitHub App](./connect-github) +- [Getting Started Guide](../getting-started/guided-tour) +- [Using OAuth with GitHub](./connect-github-oauth) +- [Semaphore Organizations](./organizations) diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/Docs v2@2x (1).jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/Docs v2@2x (1).jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/Docs v2@2x (1).jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/Docs v2@2x (1).jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/account-gh-bb-access.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/account-gh-bb-access.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/account-gh-bb-access.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/account-gh-bb-access.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/activity-monitor-location.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/activity-monitor-location.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/activity-monitor-location.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/activity-monitor-location.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/activity-monitor-quotas.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/activity-monitor-quotas.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/activity-monitor-quotas.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/activity-monitor-quotas.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/activity-monitor-workflows.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/activity-monitor-workflows.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/activity-monitor-workflows.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/activity-monitor-workflows.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/add-block.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/add-block.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/add-block.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/add-block.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/add-group-to-project.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/add-group-to-project.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/add-group-to-project.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/add-group-to-project.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/add-group.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/add-group.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/add-group.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/add-group.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/add-job-to-block.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/add-job-to-block.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/add-job-to-block.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/add-job-to-block.jpg diff --git a/docs/versioned_docs/version-CE/using-semaphore/optimization/img/add-metric.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/add-metric.jpg similarity index 100% rename from docs/versioned_docs/version-CE/using-semaphore/optimization/img/add-metric.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/add-metric.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/add-oidc-role.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/add-oidc-role.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/add-oidc-role.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/add-oidc-role.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/add-people-button.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/add-people-button.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/add-people-button.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/add-people-button.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/add-people.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/add-people.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/add-people.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/add-people.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/add-user-2.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/add-user-2.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/add-user-2.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/add-user-2.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/add-user.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/add-user.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/add-user.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/add-user.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/after-pipeline.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/after-pipeline.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/after-pipeline.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/after-pipeline.jpg diff --git a/docs/versioned_docs/version-EE-1.3/using-semaphore/img/agent-docker.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/agent-docker.jpg new file mode 100644 index 000000000..700ce2012 Binary files /dev/null and b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/agent-docker.jpg differ diff --git a/docs/versioned_docs/version-EE-1.3/using-semaphore/img/agent-settings.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/agent-settings.jpg new file mode 100644 index 000000000..7ff466aff Binary files /dev/null and b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/agent-settings.jpg differ diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/agent.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/agent.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/agent.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/agent.jpg diff --git a/docs/versioned_docs/version-EE-1.3/using-semaphore/img/anygit-1.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/anygit-1.jpg new file mode 100644 index 000000000..4dd8baeda Binary files /dev/null and b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/anygit-1.jpg differ diff --git a/docs/versioned_docs/version-EE-1.3/using-semaphore/img/anygit-check-repository.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/anygit-check-repository.jpg new file mode 100644 index 000000000..b63d4c696 Binary files /dev/null and b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/anygit-check-repository.jpg differ diff --git a/docs/versioned_docs/version-EE-1.3/using-semaphore/img/anygit2.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/anygit2.jpg new file mode 100644 index 000000000..08fd67662 Binary files /dev/null and b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/anygit2.jpg differ diff --git a/docs/versioned_docs/version-EE-1.3/using-semaphore/img/anygit3.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/anygit3.jpg new file mode 100644 index 000000000..5284d3de8 Binary files /dev/null and b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/anygit3.jpg differ diff --git a/docs/versioned_docs/version-EE-1.3/using-semaphore/img/anygit4.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/anygit4.jpg new file mode 100644 index 000000000..afe486095 Binary files /dev/null and b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/anygit4.jpg differ diff --git a/docs/versioned_docs/version-EE-1.3/using-semaphore/img/anygit5.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/anygit5.jpg new file mode 100644 index 000000000..e560e5b66 Binary files /dev/null and b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/anygit5.jpg differ diff --git a/docs/versioned_docs/version-EE-1.3/using-semaphore/img/anygit6.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/anygit6.jpg new file mode 100644 index 000000000..0a248907d Binary files /dev/null and b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/anygit6.jpg differ diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/app-general-settings.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/app-general-settings.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/app-general-settings.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/app-general-settings.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/application-configured.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/application-configured.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/application-configured.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/application-configured.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/artifact-view.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/artifact-view.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/artifact-view.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/artifact-view.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/assign-button.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/assign-button.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/assign-button.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/assign-button.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/assign-people.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/assign-people.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/assign-people.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/assign-people.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/audit-export-csv.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/audit-export-csv.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/audit-export-csv.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/audit-export-csv.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/audit-log-location.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/audit-log-location.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/audit-log-location.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/audit-log-location.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/audit-log-streaming.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/audit-log-streaming.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/audit-log-streaming.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/audit-log-streaming.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/audit-logs-example.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/audit-logs-example.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/audit-logs-example.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/audit-logs-example.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/authorize-gh.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/authorize-gh.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/authorize-gh.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/authorize-gh.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/auto-cancel.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/auto-cancel.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/auto-cancel.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/auto-cancel.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/aws-identity-provider.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/aws-identity-provider.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/aws-identity-provider.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/aws-identity-provider.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/blocks-and-jobs.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/blocks-and-jobs.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/blocks-and-jobs.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/blocks-and-jobs.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/change-condition-promotion copy.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/change-condition-promotion copy.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/change-condition-promotion copy.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/change-condition-promotion copy.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/change-condition-promotion.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/change-condition-promotion.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/change-condition-promotion.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/change-condition-promotion.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/change-conditions-first copy.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/change-conditions-first copy.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/change-conditions-first copy.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/change-conditions-first copy.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/change-conditions-first.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/change-conditions-first.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/change-conditions-first.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/change-conditions-first.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/change-conditions.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/change-conditions.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/change-conditions.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/change-conditions.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/change-project-owner.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/change-project-owner.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/change-project-owner.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/change-project-owner.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/change-role.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/change-role.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/change-role.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/change-role.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/change-roles.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/change-roles.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/change-roles.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/change-roles.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/change-skip-vs-run copy.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/change-skip-vs-run copy.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/change-skip-vs-run copy.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/change-skip-vs-run copy.jpg diff --git a/docs/versioned_docs/version-CE/using-semaphore/optimization/img/change-skip-vs-run.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/change-skip-vs-run.jpg similarity index 100% rename from docs/versioned_docs/version-CE/using-semaphore/optimization/img/change-skip-vs-run.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/change-skip-vs-run.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/checkout.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/checkout.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/checkout.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/checkout.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/ci-failed1.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/ci-failed1.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/ci-failed1.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/ci-failed1.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/ci-passed1.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/ci-passed1.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/ci-passed1.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/ci-passed1.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/ci-running1.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/ci-running1.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/ci-running1.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/ci-running1.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/conditions.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/conditions.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/conditions.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/conditions.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/configure-saml.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/configure-saml.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/configure-saml.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/configure-saml.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/connect-gh-bb.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/connect-gh-bb.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/connect-gh-bb.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/connect-gh-bb.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/connect-git.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/connect-git.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/connect-git.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/connect-git.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/connect-github-app-project.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/connect-github-app-project.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/connect-github-app-project.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/connect-github-app-project.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/create-a-job-1.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/create-a-job-1.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/create-a-job-1.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/create-a-job-1.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/create-app-integration.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/create-app-integration.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/create-app-integration.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/create-app-integration.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/create-custom-project-role.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/create-custom-project-role.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/create-custom-project-role.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/create-custom-project-role.jpg diff --git a/docs/versioned_docs/version-EE-1.3/using-semaphore/img/create-new-project-location.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/create-new-project-location.jpg new file mode 100644 index 000000000..5636a906f Binary files /dev/null and b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/create-new-project-location.jpg differ diff --git a/docs/versioned_docs/version-EE-1.3/using-semaphore/img/create-project-1.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/create-project-1.jpg new file mode 100644 index 000000000..552e750a4 Binary files /dev/null and b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/create-project-1.jpg differ diff --git a/docs/versioned_docs/version-EE-1.3/using-semaphore/img/create-project-2.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/create-project-2.jpg new file mode 100644 index 000000000..84ae29ed4 Binary files /dev/null and b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/create-project-2.jpg differ diff --git a/docs/versioned_docs/version-EE-1.3/using-semaphore/img/create-project-3.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/create-project-3.jpg new file mode 100644 index 000000000..e00860961 Binary files /dev/null and b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/create-project-3.jpg differ diff --git a/docs/versioned_docs/version-EE-1.3/using-semaphore/img/create-project-4.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/create-project-4.jpg new file mode 100644 index 000000000..01024ed01 Binary files /dev/null and b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/create-project-4.jpg differ diff --git a/docs/versioned_docs/version-CE/using-semaphore/optimization/img/custom-create.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/custom-create.jpg similarity index 100% rename from docs/versioned_docs/version-CE/using-semaphore/optimization/img/custom-create.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/custom-create.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/deactivate-task.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/deactivate-task.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/deactivate-task.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/deactivate-task.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/default-queues.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/default-queues.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/default-queues.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/default-queues.jpg diff --git a/docs/versioned_docs/version-EE-1.3/using-semaphore/img/define-default-agent.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/define-default-agent.jpg new file mode 100644 index 000000000..60a067329 Binary files /dev/null and b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/define-default-agent.jpg differ diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/delete-block.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/delete-block.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/delete-block.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/delete-block.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/delete-job.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/delete-job.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/delete-job.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/delete-job.jpg diff --git a/docs/versioned_docs/version-EE-1.3/using-semaphore/img/delete-project-link.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/delete-project-link.jpg new file mode 100644 index 000000000..d7ab4915c Binary files /dev/null and b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/delete-project-link.jpg differ diff --git a/docs/versioned_docs/version-EE-1.3/using-semaphore/img/delete-project-wizard.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/delete-project-wizard.jpg new file mode 100644 index 000000000..9ed9de9c4 Binary files /dev/null and b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/delete-project-wizard.jpg differ diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/delete-task.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/delete-task.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/delete-task.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/delete-task.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/deploy-key-bb.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/deploy-key-bb.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/deploy-key-bb.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/deploy-key-bb.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/deploy-key.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/deploy-key.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/deploy-key.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/deploy-key.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/deployment-history-1.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/deployment-history-1.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/deployment-history-1.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/deployment-history-1.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/deployment-history-2.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/deployment-history-2.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/deployment-history-2.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/deployment-history-2.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/deployment-history-3.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/deployment-history-3.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/deployment-history-3.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/deployment-history-3.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/deployment-target-1.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/deployment-target-1.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/deployment-target-1.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/deployment-target-1.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/deployment-target-2.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/deployment-target-2.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/deployment-target-2.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/deployment-target-2.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/deployment-target-3.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/deployment-target-3.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/deployment-target-3.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/deployment-target-3.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/deployment-target-4.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/deployment-target-4.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/deployment-target-4.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/deployment-target-4.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/deployment-target-create.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/deployment-target-create.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/deployment-target-create.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/deployment-target-create.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/deployment-target-created.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/deployment-target-created.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/deployment-target-created.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/deployment-target-created.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/deployment-target-done.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/deployment-target-done.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/deployment-target-done.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/deployment-target-done.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/deployments-ready-targets.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/deployments-ready-targets.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/deployments-ready-targets.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/deployments-ready-targets.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/dockerhub-secret.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/dockerhub-secret.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/dockerhub-secret.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/dockerhub-secret.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/edit-button-people.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/edit-button-people.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/edit-button-people.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/edit-button-people.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/edit-workflow.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/edit-workflow.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/edit-workflow.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/edit-workflow.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/enable-provisioning.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/enable-provisioning.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/enable-provisioning.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/enable-provisioning.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/env-vars.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/env-vars.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/env-vars.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/env-vars.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/epilogue.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/epilogue.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/epilogue.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/epilogue.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/example-job.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/example-job.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/example-job.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/example-job.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/example-pipeline.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/example-pipeline.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/example-pipeline.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/example-pipeline.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/execution-limit.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/execution-limit.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/execution-limit.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/execution-limit.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/execution-time-limit.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/execution-time-limit.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/execution-time-limit.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/execution-time-limit.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/fail-fast.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/fail-fast.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/fail-fast.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/fail-fast.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/failed-job-log.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/failed-job-log.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/failed-job-log.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/failed-job-log.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/feedback.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/feedback.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/feedback.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/feedback.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/find-project.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/find-project.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/find-project.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/find-project.jpg diff --git a/docs/versioned_docs/version-CE/using-semaphore/optimization/img/freq-cd.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/freq-cd.jpg similarity index 100% rename from docs/versioned_docs/version-CE/using-semaphore/optimization/img/freq-cd.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/freq-cd.jpg diff --git a/docs/versioned_docs/version-CE/using-semaphore/optimization/img/freq-ci.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/freq-ci.jpg similarity index 100% rename from docs/versioned_docs/version-CE/using-semaphore/optimization/img/freq-ci.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/freq-ci.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/gcr-pull-secret.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/gcr-pull-secret.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/gcr-pull-secret.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/gcr-pull-secret.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/git-integrations.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/git-integrations.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/git-integrations.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/git-integrations.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/github-app-give-access.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/github-app-give-access.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/github-app-give-access.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/github-app-give-access.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/github-app.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/github-app.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/github-app.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/github-app.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/github-connect-button.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/github-connect-button.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/github-connect-button.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/github-connect-button.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/github-handle.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/github-handle.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/github-handle.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/github-handle.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/global-job-duration.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/global-job-duration.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/global-job-duration.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/global-job-duration.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/grant-bb.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/grant-bb.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/grant-bb.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/grant-bb.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/group-role.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/group-role.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/group-role.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/group-role.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/init-log-example.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/init-log-example.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/init-log-example.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/init-log-example.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/init-log.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/init-log.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/init-log.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/init-log.jpg diff --git a/docs/versioned_docs/version-CE/using-semaphore/optimization/img/insights-settings.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/insights-settings.jpg similarity index 100% rename from docs/versioned_docs/version-CE/using-semaphore/optimization/img/insights-settings.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/insights-settings.jpg diff --git a/docs/versioned_docs/version-CE/using-semaphore/optimization/img/insights-tab.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/insights-tab.jpg similarity index 100% rename from docs/versioned_docs/version-CE/using-semaphore/optimization/img/insights-tab.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/insights-tab.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/install-ghapp.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/install-ghapp.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/install-ghapp.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/install-ghapp.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/job-artifact-diagram.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/job-artifact-diagram.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/job-artifact-diagram.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/job-artifact-diagram.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/job-artifacts.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/job-artifacts.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/job-artifacts.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/job-artifacts.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/job-id-debug.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/job-id-debug.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/job-id-debug.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/job-id-debug.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/job-id-url.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/job-id-url.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/job-id-url.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/job-id-url.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/job-lifecycle.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/job-lifecycle.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/job-lifecycle.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/job-lifecycle.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/job-log.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/job-log.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/job-log.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/job-log.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/job-matrix.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/job-matrix.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/job-matrix.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/job-matrix.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/job-parallelism-4.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/job-parallelism-4.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/job-parallelism-4.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/job-parallelism-4.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/jobs-parallel.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/jobs-parallel.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/jobs-parallel.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/jobs-parallel.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/mermaid-get-job-requests.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/mermaid-get-job-requests.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/mermaid-get-job-requests.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/mermaid-get-job-requests.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/mermaid-register-agent.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/mermaid-register-agent.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/mermaid-register-agent.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/mermaid-register-agent.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/mermaid-self-hosted-state.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/mermaid-self-hosted-state.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/mermaid-self-hosted-state.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/mermaid-self-hosted-state.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/named-queues.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/named-queues.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/named-queues.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/named-queues.jpg diff --git a/docs/versioned_docs/version-CE/using-semaphore/optimization/img/new-metric.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/new-metric.jpg similarity index 100% rename from docs/versioned_docs/version-CE/using-semaphore/optimization/img/new-metric.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/new-metric.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/notifications-setup-1.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/notifications-setup-1.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/notifications-setup-1.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/notifications-setup-1.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/notifications-setup-2.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/notifications-setup-2.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/notifications-setup-2.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/notifications-setup-2.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/notifications-setup-3.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/notifications-setup-3.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/notifications-setup-3.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/notifications-setup-3.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/oauth-permissions.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/oauth-permissions.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/oauth-permissions.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/oauth-permissions.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/oauth-personal-token.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/oauth-personal-token.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/oauth-personal-token.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/oauth-personal-token.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/okta-application.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/okta-application.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/okta-application.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/okta-application.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/okta-application1.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/okta-application1.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/okta-application1.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/okta-application1.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/okta-edit-general-settings.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/okta-edit-general-settings.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/okta-edit-general-settings.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/okta-edit-general-settings.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/okta-edit-provisioning.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/okta-edit-provisioning.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/okta-edit-provisioning.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/okta-edit-provisioning.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/okta-users.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/okta-users.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/okta-users.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/okta-users.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/one-block.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/one-block.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/one-block.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/one-block.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/org-admin-roles.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/org-admin-roles.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/org-admin-roles.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/org-admin-roles.jpg diff --git a/docs/versioned_docs/version-CE/using-semaphore/optimization/img/org-health-location.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/org-health-location.jpg similarity index 100% rename from docs/versioned_docs/version-CE/using-semaphore/optimization/img/org-health-location.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/org-health-location.jpg diff --git a/docs/versioned_docs/version-CE/using-semaphore/optimization/img/org-health-overview.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/org-health-overview.jpg similarity index 100% rename from docs/versioned_docs/version-CE/using-semaphore/optimization/img/org-health-overview.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/org-health-overview.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/org-preflight-screen.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/org-preflight-screen.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/org-preflight-screen.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/org-preflight-screen.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/org-role-create-custom.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/org-role-create-custom.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/org-role-create-custom.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/org-role-create-custom.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/org-settings-location.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/org-settings-location.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/org-settings-location.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/org-settings-location.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/organization-menu-settings.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/organization-menu-settings.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/organization-menu-settings.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/organization-menu-settings.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/organization-menu.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/organization-menu.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/organization-menu.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/organization-menu.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/organization-secrets-menu.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/organization-secrets-menu.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/organization-secrets-menu.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/organization-secrets-menu.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/organization-settings-general.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/organization-settings-general.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/organization-settings-general.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/organization-settings-general.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/organization-settings-initialization.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/organization-settings-initialization.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/organization-settings-initialization.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/organization-settings-initialization.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/organization-settings-initialization.jpg.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/organization-settings-initialization.jpg.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/organization-settings-initialization.jpg.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/organization-settings-initialization.jpg.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/organization-settings-secrets.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/organization-settings-secrets.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/organization-settings-secrets.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/organization-settings-secrets.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/override-project-init-agent.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/override-project-init-agent.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/override-project-init-agent.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/override-project-init-agent.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/parameter-1.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/parameter-1.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/parameter-1.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/parameter-1.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/parameter-2.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/parameter-2.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/parameter-2.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/parameter-2.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/parameters-jobs.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/parameters-jobs.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/parameters-jobs.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/parameters-jobs.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/pause-project.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/pause-project.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/pause-project.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/pause-project.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/people-tab.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/people-tab.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/people-tab.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/people-tab.jpg diff --git a/docs/versioned_docs/version-CE/using-semaphore/optimization/img/perf-cd.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/perf-cd.jpg similarity index 100% rename from docs/versioned_docs/version-CE/using-semaphore/optimization/img/perf-cd.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/perf-cd.jpg diff --git a/docs/versioned_docs/version-CE/using-semaphore/optimization/img/perf-ci.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/perf-ci.jpg similarity index 100% rename from docs/versioned_docs/version-CE/using-semaphore/optimization/img/perf-ci.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/perf-ci.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/pipeline-block-job.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/pipeline-block-job.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/pipeline-block-job.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/pipeline-block-job.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/pipeline-blocks-promotions.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/pipeline-blocks-promotions.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/pipeline-blocks-promotions.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/pipeline-blocks-promotions.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/pipeline-epilogue.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/pipeline-epilogue.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/pipeline-epilogue.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/pipeline-epilogue.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/pipeline-execution-order.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/pipeline-execution-order.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/pipeline-execution-order.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/pipeline-execution-order.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/pipeline-parameter-expansion.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/pipeline-parameter-expansion.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/pipeline-parameter-expansion.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/pipeline-parameter-expansion.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/pipeline-prologue.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/pipeline-prologue.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/pipeline-prologue.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/pipeline-prologue.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/pipeline-settings.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/pipeline-settings.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/pipeline-settings.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/pipeline-settings.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/pr-passed.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/pr-passed.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/pr-passed.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/pr-passed.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/profile-git-connect.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/profile-git-connect.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/profile-git-connect.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/profile-git-connect.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/profile-settings.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/profile-settings.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/profile-settings.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/profile-settings.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/project-activity.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/project-activity.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/project-activity.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/project-activity.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/project-admin-roles.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/project-admin-roles.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/project-admin-roles.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/project-admin-roles.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/project-artifact-diagram.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/project-artifact-diagram.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/project-artifact-diagram.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/project-artifact-diagram.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/project-badges.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/project-badges.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/project-badges.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/project-badges.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/project-created.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/project-created.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/project-created.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/project-created.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/project-custom-roles1.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/project-custom-roles1.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/project-custom-roles1.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/project-custom-roles1.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/project-general-settings-1.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/project-general-settings-1.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/project-general-settings-1.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/project-general-settings-1.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/project-general-settings-2.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/project-general-settings-2.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/project-general-settings-2.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/project-general-settings-2.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/project-general-settings-3.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/project-general-settings-3.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/project-general-settings-3.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/project-general-settings-3.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/project-preflight.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/project-preflight.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/project-preflight.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/project-preflight.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/project-secrets-1.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/project-secrets-1.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/project-secrets-1.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/project-secrets-1.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/project-settings-reop.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/project-settings-reop.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/project-settings-reop.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/project-settings-reop.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/project-settings.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/project-settings.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/project-settings.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/project-settings.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/project-tabs.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/project-tabs.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/project-tabs.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/project-tabs.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/prologue.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/prologue.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/prologue.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/prologue.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/promote-on-tag.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/promote-on-tag.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/promote-on-tag.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/promote-on-tag.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/promotion-add-manual.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/promotion-add-manual.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/promotion-add-manual.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/promotion-add-manual.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/promotion-auto.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/promotion-auto.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/promotion-auto.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/promotion-auto.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/promotion-delete.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/promotion-delete.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/promotion-delete.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/promotion-delete.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/promotion-freeform.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/promotion-freeform.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/promotion-freeform.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/promotion-freeform.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/promotion-locked.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/promotion-locked.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/promotion-locked.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/promotion-locked.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/promotion-options.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/promotion-options.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/promotion-options.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/promotion-options.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/promotion-target.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/promotion-target.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/promotion-target.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/promotion-target.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/promotion-unlocked.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/promotion-unlocked.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/promotion-unlocked.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/promotion-unlocked.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/promotions-parameters.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/promotions-parameters.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/promotions-parameters.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/promotions-parameters.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/rbac-diagram.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/rbac-diagram.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/rbac-diagram.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/rbac-diagram.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/register-agent-type.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/register-agent-type.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/register-agent-type.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/register-agent-type.jpg diff --git a/docs/versioned_docs/version-CE/using-semaphore/optimization/img/rel-cd.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/rel-cd.jpg similarity index 100% rename from docs/versioned_docs/version-CE/using-semaphore/optimization/img/rel-cd.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/rel-cd.jpg diff --git a/docs/versioned_docs/version-CE/using-semaphore/optimization/img/rel-ci.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/rel-ci.jpg similarity index 100% rename from docs/versioned_docs/version-CE/using-semaphore/optimization/img/rel-ci.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/rel-ci.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/remove-user.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/remove-user.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/remove-user.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/remove-user.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/repository-url-bb.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/repository-url-bb.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/repository-url-bb.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/repository-url-bb.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/repository-url.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/repository-url.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/repository-url.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/repository-url.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/retention-job.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/retention-job.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/retention-job.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/retention-job.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/retention-project.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/retention-project.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/retention-project.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/retention-project.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/retention-workflow.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/retention-workflow.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/retention-workflow.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/retention-workflow.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/revoke-bb.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/revoke-bb.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/revoke-bb.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/revoke-bb.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/run-and-start.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/run-and-start.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/run-and-start.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/run-and-start.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/saml-values.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/saml-values.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/saml-values.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/saml-values.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/save-secret.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/save-secret.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/save-secret.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/save-secret.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/scim-enable.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/scim-enable.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/scim-enable.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/scim-enable.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/secret-add.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/secret-add.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/secret-add.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/secret-add.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/secret-projects-create.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/secret-projects-create.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/secret-projects-create.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/secret-projects-create.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/secret-settings-projects.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/secret-settings-projects.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/secret-settings-projects.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/secret-settings-projects.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/secrets-access-policy.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/secrets-access-policy.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/secrets-access-policy.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/secrets-access-policy.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/secrets.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/secrets.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/secrets.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/secrets.jpg diff --git a/docs/versioned_docs/version-CE/using-semaphore/optimization/img/select-date-range.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/select-date-range.jpg similarity index 100% rename from docs/versioned_docs/version-CE/using-semaphore/optimization/img/select-date-range.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/select-date-range.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/select-saml2.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/select-saml2.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/select-saml2.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/select-saml2.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/self-hosted-agent-connected.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/self-hosted-agent-connected.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/self-hosted-agent-connected.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/self-hosted-agent-connected.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/self-hosted-agent-install.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/self-hosted-agent-install.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/self-hosted-agent-install.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/self-hosted-agent-install.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/self-hosted-aws-stack.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/self-hosted-aws-stack.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/self-hosted-aws-stack.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/self-hosted-aws-stack.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/self-hosted-overview.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/self-hosted-overview.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/self-hosted-overview.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/self-hosted-overview.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/self-hosted-state-chart.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/self-hosted-state-chart.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/self-hosted-state-chart.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/self-hosted-state-chart.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/self-hosted-sts.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/self-hosted-sts.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/self-hosted-sts.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/self-hosted-sts.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/sem-debug.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/sem-debug.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/sem-debug.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/sem-debug.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/semaphore-logo.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/semaphore-logo.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/semaphore-logo.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/semaphore-logo.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/semaphore-okta-app.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/semaphore-okta-app.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/semaphore-okta-app.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/semaphore-okta-app.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/semaphore.svg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/semaphore.svg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/semaphore.svg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/semaphore.svg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/server-menu.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/server-menu.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/server-menu.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/server-menu.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/settings-menu-ce.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/settings-menu-ce.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/settings-menu-ce.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/settings-menu-ce.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/settings-roles.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/settings-roles.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/settings-roles.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/settings-roles.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/setup-instructions.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/setup-instructions.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/setup-instructions.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/setup-instructions.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/setup-okta-values.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/setup-okta-values.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/setup-okta-values.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/setup-okta-values.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/setup-okta.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/setup-okta.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/setup-okta.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/setup-okta.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/shields.svg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/shields.svg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/shields.svg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/shields.svg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/single-job-workflow.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/single-job-workflow.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/single-job-workflow.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/single-job-workflow.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/spending-overview.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/spending-overview.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/spending-overview.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/spending-overview.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/ssh-debug-session.png b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/ssh-debug-session.png similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/ssh-debug-session.png rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/ssh-debug-session.png diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/switch-ghapp.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/switch-ghapp.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/switch-ghapp.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/switch-ghapp.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/task-create-1.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/task-create-1.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/task-create-1.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/task-create-1.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/task-create-2.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/task-create-2.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/task-create-2.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/task-create-2.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/task-create-3.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/task-create-3.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/task-create-3.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/task-create-3.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/task-create-4.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/task-create-4.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/task-create-4.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/task-create-4.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/task-create.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/task-create.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/task-create.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/task-create.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/task-run.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/task-run.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/task-run.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/task-run.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/task-view.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/task-view.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/task-view.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/task-view.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/temp-password.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/temp-password.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/temp-password.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/temp-password.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/test-connection.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/test-connection.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/test-connection.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/test-connection.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/token.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/token.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/token.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/token.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/use-self-hosted-agent.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/use-self-hosted-agent.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/use-self-hosted-agent.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/use-self-hosted-agent.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/user-provisioning.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/user-provisioning.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/user-provisioning.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/user-provisioning.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/view-job-artifacts.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/view-job-artifacts.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/view-job-artifacts.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/view-job-artifacts.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/view-project-artifacts.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/view-project-artifacts.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/view-project-artifacts.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/view-project-artifacts.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/view-task.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/view-task.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/view-task.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/view-task.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/view-workflow-artifacts.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/view-workflow-artifacts.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/view-workflow-artifacts.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/view-workflow-artifacts.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/webhook-bb.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/webhook-bb.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/webhook-bb.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/webhook-bb.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/webhook.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/webhook.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/webhook.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/webhook.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/workflow-artifact-diagram.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/workflow-artifact-diagram.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/workflow-artifact-diagram.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/workflow-artifact-diagram.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/workflow-editor.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/workflow-editor.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/workflow-editor.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/workflow-editor.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/workflow-monorepo copy.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/workflow-monorepo copy.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/workflow-monorepo copy.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/workflow-monorepo copy.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/workflow-monorepo.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/workflow-monorepo.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/workflow-monorepo.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/workflow-monorepo.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/workflow-types.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/workflow-types.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/workflow-types.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/workflow-types.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/workflows.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/workflows.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/workflows.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/workflows.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/workflows1.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/workflows1.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/workflows1.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/workflows1.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/img/yaml-path.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/img/yaml-path.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/img/yaml-path.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/img/yaml-path.jpg diff --git a/docs/versioned_docs/version-EE-1.3/using-semaphore/insights.md b/docs/versioned_docs/version-EE-1.3/using-semaphore/insights.md new file mode 100644 index 000000000..64231d2e1 --- /dev/null +++ b/docs/versioned_docs/version-EE-1.3/using-semaphore/insights.md @@ -0,0 +1,156 @@ +--- +description: View your pipeline productivity +--- + +# Project Insights + +import Tabs from '@theme/Tabs'; +import TabItem from '@theme/TabItem'; +import Available from '@site/src/components/Available'; +import VideoTutorial from '@site/src/components/VideoTutorial'; +import Steps from '@site/src/components/Steps'; + + + +Project Insights provides productivity metrics about your [CI pipelines](./pipelines). You can, for instance, how long your pipelines take on average or create a dashboard to track deployment activity. + +## How to view project insights {#view} + +Project Insights are available in the **Insights** tab on your [project](./projects). Data is loaded automatically from your CI workflow activity, however, you can [configure Insights](#configure) to ensure you're seeing the data accurately. + +![Location of the insights tab](./img/insights-tab.jpg) + +You can select which [metric to view](#metrics) using the left-side menu. + +On the right side, you can change the date range for the data shown. + +![Changing the date range](./img/select-date-range.jpg) + +### How to configure insights {#configure} + +Semaphore tries to guess which is the main branch in your project. However, to be sure the metrics are shown accurately, it's recommended to configure the branch and [pipeline file](./pipelines#overview) in the settings menu. + +The Project Insights settings are split into two sections: + +- **Continuous Integration**: this is your project's main pipeline. It should build and run your tests +- **Continuous Deployment**: optional. This pipeline deploys your application to production + +Follow the steps below to set up Project Insights: + + + +1. Open the **Insights** tab +2. Click on the Gear Icon on the left side +3. Set the main branch name for your project in the **Continuous Integration** and **Continuous Deployment** sections +4. Set the name of the pipeline file in the **Continuous Integration** and **Continuous Deployment** sections +5. Press **Save Changes** + +![Settings for Project Insights](./img/insights-settings.jpg) + + + +:::note + +The pipeline file path should be relative to the repository's root. + +::: + +After you save changes, Semaphore will start collecting metrics for Project Insights. + +## Metrics available {#metrics} + +The available metrics are performance, frequency, and reliability. Each metric shows the data for Continuous Integration and Continuous Deployment. You can also create [custom dashboards](#custom) to refine your views. + +Metrics data is held for 30 days and updated every 24 hours. + +### Performance + +Performance metrics show how long pipelines take to run on average. The graph shows the median time (p50) and the standard deviation. + +![CI performance graph](./img/perf-ci.jpg) + +Below the Continuous Integration graph, you can select which branch to view. + +If you have [configured Continuous Deployment insights](#configure), you can also see data for the deployment branch. + +![CD performance graph](./img/perf-cd.jpg) + +### Frequency + +Frequency metrics show the number of pipelines run per week and the total number of runs for all pipelines per day. + +![CI frequency graph](./img/freq-ci.jpg) + +Below the Continuous Integration graph, you can select which branch to view. + +If you have [configured Continuous Deployment insights](#configure), you can also see data for the deployment branch. + +![CD frequency graph](./img/freq-cd.jpg) + +### Reliability + +Reliability metrics provide an overview of the pipeline pass rate. In other words, it tells you how frequently the pipeline was disrupted by a [job](./jobs) failure. The graph also shows the mean time it takes to recover from a failed pipeline run and when the last successful run was. + +![CI reliability](./img/rel-ci.jpg) + +If you have [configured Continuous Deployment insights](#configure), you can also see data for the deployment branch. + +![CI reliability](./img/rel-cd.jpg) + +:::note + +Although you can specify a branch when creating a reliability metric, the actual branch used is defined under the "Insight" settings in a project. + +::: + +## How to create custom dashboards {#custom} + +Create your own visualization with custom dashboards. You can add any metric already available on the Project Insights page to the dashboard. + +To create a Dashboard: + + + +1. Open the Project Insights +2. On the left side, click on the plus sign (+) +3. Enter the name of the dashboard + ![Creating a custom dashboard](./img/custom-create.jpg) +4. Press **Create** + + + +You can also create dashboards using the command line. See [Semaphore Command Line](./../reference/semaphore-cli) and [Dashboard YAML reference](./../reference/dashboard-yaml) for more details. + +Once created, you can add metrics to the dashboard following these steps: + + + + +1. Open the custom dashboard on the left side +2. Press the **Add metric** button +3. Fill the form: + - (A) Type the metric name + - (B) Select the metric type to show from the + - (C) Type the branch name you want to visualize + - (D) Type the pipeline file path for the pipeline you want to visualize + - (E) Type an optional description +4. Press **Save** + + ![Adding a metric to a custom dashboard](./img/add-metric.jpg) + + + +:::note + +After you save, a new Metric chart will appear on the Dashboard. It may take up to two days for data to populate the new chart. + +::: + +![New metric in the custom dashboard](./img/new-metric.jpg) + +## See also + +- [Organization health dashboard](./org-health) +- [Test reports dashboard](./tests/test-reports) +- [Flaky test detection dashboard](./tests/flaky-tests) +- [Dashboards YAML reference](./../reference/dashboard-yaml) \ No newline at end of file diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/jobs.md b/docs/versioned_docs/version-EE-1.3/using-semaphore/jobs.md similarity index 99% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/jobs.md rename to docs/versioned_docs/version-EE-1.3/using-semaphore/jobs.md index 6a18565cd..981abe274 100644 --- a/docs/versioned_docs/version-CE-1.2/using-semaphore/jobs.md +++ b/docs/versioned_docs/version-EE-1.3/using-semaphore/jobs.md @@ -1074,7 +1074,7 @@ To use a job matrix, follow these steps:
-The following example runs a 2 x 3 matrix with variables `NODE_VER` and `PKG_MNGR`. Semaphore expands the job into 6 parametererized jobs: +The following example runs a 2 x 3 matrix with variables `NODE_VER` and `PKG_MNGR`. Semaphore expands the job into 6 parameterized jobs: ```yaml version: v1.0 diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/monorepo.md b/docs/versioned_docs/version-EE-1.3/using-semaphore/monorepo.md similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/monorepo.md rename to docs/versioned_docs/version-EE-1.3/using-semaphore/monorepo.md diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/notifications.md b/docs/versioned_docs/version-EE-1.3/using-semaphore/notifications.md similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/notifications.md rename to docs/versioned_docs/version-EE-1.3/using-semaphore/notifications.md diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/observability.md b/docs/versioned_docs/version-EE-1.3/using-semaphore/observability.md similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/observability.md rename to docs/versioned_docs/version-EE-1.3/using-semaphore/observability.md diff --git a/docs/versioned_docs/version-EE-1.3/using-semaphore/okta.md b/docs/versioned_docs/version-EE-1.3/using-semaphore/okta.md new file mode 100644 index 000000000..038f528a8 --- /dev/null +++ b/docs/versioned_docs/version-EE-1.3/using-semaphore/okta.md @@ -0,0 +1,255 @@ +--- +description: SSO and user management automation +--- + +# Okta Integration + +import Tabs from '@theme/Tabs'; +import TabItem from '@theme/TabItem'; +import Available from '@site/src/components/Available'; +import VideoTutorial from '@site/src/components/VideoTutorial'; +import Steps from '@site/src/components/Steps'; + + + +Use Okta to provision, manage your user, and provide Single Sign On (SSO) to your users. This page explains how to integrate Okta with Semaphore to manage your users and groups using Okta. + +## Overview + +[Okta](https://okta.com) is an enterprise identity management platform. It provides a centralized place to manage your users and groups across different products. You can integrate Okta with Semaphore to manage your users from the Okta application. + +It's possible to integrate Semaphore with other SCIM/SAML-based identity providers such as JumpCloud. If that the case, please contact support@semaphoreci.com so we can help you configure the integration. + +To use the Okta integration you need the following: + +- An Okta organization +- A [Semaphore organization](./organizations) +- Admin access to Okta and Semaphore + +:::warning + +If you set up and later remove the Okta integration, all the users created during the integration are deleted from Semaphore. + +::: + +## How to integrate Okta with Semaphore + +The process of integrating Okta with Semaphore involves three steps: + +1. [Create an Okta app](#create) +2. [Connect Okta app with Semaphore](#token) +3. [Configure user provisioning](#provision) + +The set up steps are explained in this section. + +### Step 1: Create Okta app {#create} + +To create an Okta app integration: + + + + +1. Log in to your Okta organization +2. Press the **Admin** button to access the administrator dashboard +3. On the left side, select **Applications** > **Applications** +4. Press **Create App Integration** + + ![Creating an app integration on Okta](./img/create-app-integration.jpg) + + +5. On the next screen, select **SAML 2.0** and press **Next**: + + ![Saml 2.0 selected](./img/select-saml2.jpg) + + In **General Settings**, fill in the following values and then press **Next**: + + - **App name**: use a descriptive name, e.g. "Semaphore" + - **App logo**: optional logo image + - **App visibility**: leave unchecked the option (this is the default) + + ![General settings](./img/app-general-settings.jpg) + +6. On the **Configure SAML** page, fill in the following values and press **Next**: + + - **Single Sign On URL**: this is the [URL of your Semaphore organization](./organizations#general-settings) followed by `/okta/auth`. For example, if your organization URL is `https://my-org.semaphoreci.com`, you must fill in the value `https://my-org.semaphoreci.com/okta/auth` + - Leave the option **Use this for Recipient URL and Destination URL** checked (default) + - **Audience URL**: this is the [URL of your Semaphore organization](./organizations#general-settings). For example `https://my-org.semaphoreci.com` + - **Application username**: choose **Email** from the selection box + + ![Configure SAML page](./img/configure-saml.jpg) + +7. On the **Feedback** page, select **I'm an Okta customer adding an internal app** + + ![Select the feedback option](./img/feedback.jpg) + + You can leave the rest of the settings in their default values. Press **Finish** to complete the setup. + + You should see the new Semaphore application on your Okta applications page. + + ![Semaphore app configured on Okta](./img/application-configured.jpg) + + + +### Step 2: Connect with Semaphore {#token} + +The second step is to connect Semaphore with Okta. Before you can do this, you need to copy some values from the Okta application page: + + + +1. Navigate to the Okta Application you created earlier +2. Go to the **Sign On** tab +3. Press **View SAML setup instructions** on the bottom-right corner + + ![View SAML setup instructions](./img/setup-instructions.jpg) + +4. Copy the values shown on the screen. You will need them next. + + ![SAML Setup URL and certificates](./img/saml-values.jpg) + + + +To create the connection between Semaphore and Okta, follow these steps: + + + +1. Log in your Semaphore organization using an admin account +2. Open the organization menu on the top-right corner and select **Settings** +3. Go to **Okta Integration** and press **Set up** +4. Paste the **Single Sign On URL**, **SAML Issuer** and **SAML Certificate** values from the Okta SAML setup instructions + + ![Set up SAML values on Semaphore](./img/setup-okta-values.jpg) + + +5. Once you press **Save**, Semaphore shows your **SCIM Authorization token**. + + This value is only shown once, so be sure to copy and store it in a safe place as you will need it during the next step. + + ![Semaphore showing authorization token](./img/token.jpg) + + + +Semaphore is now connected to Okta. You can enable user provisioning in the next step. + +### Step 3: Configure user provisioning {#provision} + +Before you can manage users from Okta, you need to enable user provisioning in the Okta application. + +To enable user management in Okta, open the Okta application you created earlier. + +![Opening the Okta application](./img/okta-application.jpg) + + + +1. Under **General** tab, click on **Edit**. + + ![Edit general settings in Okta](./img/okta-edit-general-settings.jpg) + +2. Choose **SCIM** as the provisioning option. Press **Save** + + ![Choosing SCIM](./img/scim-enable.jpg) + +3. A new tab should have appeared called **Provisioning**. Open that tab and click on **Edit**. + + ![Edit provisioning options](./img/okta-edit-provisioning.jpg) + +4. Fill in the following values: + + - **SCIM connector base URL**: this is your [organization URL](./organizations#general-settings) followed by `/okta/scrim`. For example, if your organization URL is `https://my-org.semaphoreci.com`, the value for this field is `https://my-org.semaphoreci.com/okta/scim` + - **Unique identifier field for users**: type the string "email" + - **Supported provisioning actions**: select **Push New Users**, **Push Profile Updates**, and **Push Groups** + - **Authentication Mode**: select **HTTP Header** + - **Authorization**: paste the [token that Semaphore showed earlier](#token) + + ![Configuring user provisioning on Okta](./img/user-provisioning.jpg) + +5. Press the **Test Configuration** button to test the connection. Press **Save** to save your changes. + + The test connection screen should show green checkmarks next to **Create Users**, **Update User Attributes**, and **Push Groups** + + ![Testing the connection](./img/test-connection.jpg) + + + +The last step is to enable provisioning on Okta. Follow these steps: + + + + +1. Select the **Provisioning** tab +2. Click on **Edit** +3. Check **Enable** next to **Create Users**, **Update User Attributes**, and **Deactivate Users** +4. Press **Save** + + ![Enabling user provisioning in Okta](./img/enable-provisioning.jpg) + + + + +## How to create users and groups in Okta + +User creation is not immediate. There can be a few minutes of lag before an added user appears on Semaphore. On big organizations the sync process can take up to one hour. + +To create a user or a group in Semaphore using the Okta integration, follow these steps: + + + +1. Go to your Okta organization and enter the admin dashboard +2. Select **Applications** from the left menu +3. Open the Semaphore application +4. Select the **Assignments** tab +5. Press the **Assign** button +6. Select **People** or **Groups** from the selection menu + + ![Pressing the Assign button](./img/assign-button.jpg) + + +7. Press **Assign** next to the People or Groups you wish to add to Semaphore. + + ![Assigning people to Semaphore](./img/assign-people.jpg) + + + +You can see the number of connected users in the **Okta integration** settings page in Semaphore. + +![Okta connected members in Semaphore](./img/okta-users.jpg) + +:::note + +Okta can lead to duplicate users when the integration is added on an organization that already had users. To solve the duplicated users, see the [troubleshooting section](#troubleshooting). + +::: + +## How to use Single Sign On {#sso} + +Your users can now log in to Semaphore via Okta Single Sign On (SSO). + +The process for SSO login is as follows: + +1. The user logs in to Okta +2. The user opens the Semaphore Application in Okta +3. The user is redirected to their Semaphore account + +![Semaphore application in Okta](./img/semaphore-okta-app.jpg) + +Semaphore asks new users logging in via SSO to [connect their GitHub](./connect-github) or [connect their BitBucket](./connect-bitbucket) accounts. This is an optional step. Users can click on **Connect** to link their BitBucket or GitHub accounts to Semaphore. + +![Connect Git](./img/connect-git.jpg) + +:::info + +Once enforced, Okta is the **only login method allowed** for all users in the server. Dual authentication methods like Okta + GitHub/BitBucket/GitLab are not supported. + +::: + +## Troubleshooting duplicated users {#troubleshooting} + +Semaphore tries to match new users provisioned via SCIM to existing Semaphore users by email address. If the email address associated with the SCIM request matches the email address of existing Semaphore users, the two accounts will be connected, and no new account will be provisioned. Email associated with Semaphore is the primary email from GitHub or BitBucket. + +If you are not sure how many organization members have corporate email accounts, or have any other question, feel free to contact our support team at `support@semaphoreci.com` and we will help you update user emails and smoothly integrate our app with your SCIM/SAML provider. + +## See also + +- [Semaphore organizations](./organizations) +- [How to set up OpenID Connect](./openid.md) + + diff --git a/docs/versioned_docs/version-EE-1.3/using-semaphore/openid.md b/docs/versioned_docs/version-EE-1.3/using-semaphore/openid.md new file mode 100644 index 000000000..2fd554f20 --- /dev/null +++ b/docs/versioned_docs/version-EE-1.3/using-semaphore/openid.md @@ -0,0 +1,384 @@ +--- +description: OIDC secures access to cloud providers +--- + +# OpenID Connect + +import Tabs from '@theme/Tabs'; +import TabItem from '@theme/TabItem'; +import Available from '@site/src/components/Available'; +import VideoTutorial from '@site/src/components/VideoTutorial'; +import Steps from '@site/src/components/Steps'; + +OpenID Connect (OICD) allows you to establish a more secure trust relationship between Semaphore and cloud providers such as AWS or Google Cloud. + +## Overview + +Semaphore users traditionally use [secrets](./secrets) to inject credentials or API keys in jobs that need to interact with cloud providers. Every time the CI pipeline needs to deploy an application or fetch resources from a Docker registry or S3 bucket, we need to supply a secret to authorize Semaphore to access your cloud. + +These long-lived credentials present a challenge to maintain security or face exposure to security threats. Access and usage of these secrets need to be carefully monitored. Secrets need to be regularly rotated and the provided access rights on the cloud should follow the principle of least privilege. + +OpenID Connect (OIDC) provides an alternative way to interact with the cloud. Instead of secrets, OIDC uses short-lived access tokens that do not require secret maintenance. + +## How to configure OpenID Connect + +This section explains how to connect OpenID to your cloud provider. + +### AWS + +To connect to Amazon Web Services (AWS) from Semaphore using OpenID Connect, you will need to perform the following steps. + +
+Step 1: Create identity provider +
+ + + + +1. Log in to the [AWS IAM Console](https://console.aws.amazon.com/iam/) +2. Under **Access management**, select **Identity providers** +3. Press **Add provider** +4. Select **OpenID connect** +5. In **Provider URL** and **Audience** type your [organization URL](./organizations#general-settings), e.g. `https://my-org.semaphoreci.com` +6. Press **Add provider** + + ![Creating an OIDC Identity Provider](./img/aws-identity-provider.jpg) + + + +
+
+ +
+Step 2: Configure a role and trust policy +
+ + + + +1. Log in to the [AWS IAM Console](https://console.aws.amazon.com/iam/) +2. Under **Access management**, select **Roles** +3. Press **Create role** +4. Select **Web identity** +5. Under **Identity provider** and **Audience**, select the provider you created in Step 1 +6. Press **Next** +7. Choose the permissions you want this role to have. This typically involves selecting a policy that allows access to the AWS resources your pipelines need. For example, if your pipelines need access to S3, you might choose the `AmazonS3FullAccess` policy. +8. Press **Next** +9. Type the **Role name** and an optional description +10. Press **Create role** + + ![Adding an OIDC role](./img/add-oidc-role.jpg) + + + +Next, edit the trust policy as follows: + + + + +1. Select the newly created Role by name. You may need to use the search box to locate it +2. Select the **Trust relationships** tab +3. Press **Edit trust policy** +4. Edit the `Condition` section (see below for details) +5. Press **Update policy** + + + +The trust policy uses JSON to configure what projects and branches can access the resources assigned to this role. + +- Use `StringEquals` to define specific projects and branches +- Use `StringLike` to match projects and branches using a pattern +- You can combine `StringEquals` and `StringLike` in the same `Condition` + +The following example shows how to grant permissions to: + +- organization:`my-org` +- project id: `936a5312-a3b8-4921-8b3f-2cec8baac574` +- repository: `web` +- branch: `main` + +```json title="Assigning trust relationship by the exact name" +"Condition": { + "StringEquals": { + "my-org.semaphoreci.com:aud": "https://my-org.semaphoreci.com", + "my-org.semaphoreci.com:sub": "org:my-org:project:936a5312-a3b8-4921-8b3f-2cec8baac574:repo:web:ref_type:branch:ref:refs/heads/main" + } +} +``` + +The next example shows how to grant permissions to: + +- organization `my-org` +- project id `936a5312-a3b8-4921-8b3f-2cec8baac574` +- repository `web` +- all branches + +```json title="Assigning trust relationship by pattern match" +"Condition": { + "StringLike": { + ".semaphoreci.com:sub": + "org::project:936a5312-a3b8-4921-8b3f-2cec8baac574:repo:web:ref_type:branch:ref:refs/heads/*", + }, +} +``` + +
+
+ +
+Step 3: Use OICD in your Semaphore pipelines +
+ +You can now use OICD to access your AWS resources from any of your pipelines. + +In order authenticate with AWS add these commands to the Semaphore [job](./jobs) that needs access. + +```shell "Job commands to authenticate" +export ROLE_ARN="YOUR_AWS_ROLE_NAME" +export SESSION_NAME="semaphore-job-${SEMAPHORE_JOB_ID}" +export CREDENTIALS=$(aws sts assume-role-with-web-identity --role-arn $ROLE_ARN --role-session-name $SESSION_NAME --web-identity-token $SEMAPHORE_OIDC_TOKEN) +export AWS_ACCESS_KEY_ID=$(echo $CREDENTIALS | jq -r '.Credentials.AccessKeyId') +export AWS_SESSION_TOKEN=$(echo $CREDENTIALS | jq -r '.Credentials.SessionToken') +export AWS_SECRET_ACCESS_KEY=$(echo $CREDENTIALS | jq -r '.Credentials.SecretAccessKey') +``` + +:::note + +Replace `YOUR_AWS_ROLE_NAME` with the Role you created in Step 2 + +::: + +
+
+ +### Google Cloud + +You can use [gcloud](https://cloud.google.com/sdk/gcloud) to set up and configure the connection between Google Cloud and Semaphore. See the [Google Cloud Identity Federation documentation](https://cloud.google.com/iam/docs/configuring-workload-identity-federation#oidc_1) for more details. + +To configure OIDC identity provider in GCP, you will perform the following actions. + +
+Step 1: Create a new identity pool +
+ + + + +1. Define a `POOL_ID` name. This unique name served to identify a Google Cloud IAM pool. For example: `semaphoreci-com-identity-pool` +2. Store the pool in an environment variable, e.g `semaphoreci-com-identity-pool` + + ```shell title="Define a name for the identity pool" + export POOL_ID="" + ``` + +3. Create the identify pool + + ```shell title="Create identity pool" + gcloud iam workload-identity-pools create $POOL_ID \ + --location="global" \ + --description="Semaphore OIDC Pool" \ + --display-name=$POOL_ID + ``` + + + +
+
+ + +
+Step 2: Configure the mapping and conditions +
+ +Next, we need to map fields from the Semaphore OIDC provider to Google Cloud attributes and set conditions where Semaphore can access the identity pool. See [attribute mapping](https://cloud.google.com/iam/docs/configuring-workload-identity-federation#mappings-and-conditions) and [condition mapping](https://cloud.google.com/iam/docs/configuring-workload-identity-federation#mappings-and-conditions) to learn more. + + + + +1. Define `PROVIDER_ID` with a unique name for the OIDC provider, for example: `semaphoreci-com`. The variable `ISSUER_URI` should contain your [organization URL](./organizations#general-settings), e.g. `https://my-org.semaphoreci.com` + + ```shell title="Define PROVIDER_ID and ISSUER_URI" + export PROVIDER_ID="" + export ISSUER_URI="https://my-org.semaphoreci.com" + ``` + +2. Use the following template to grant Google Cloud access to the identity pool created in Step 1. + + Replace: + - `` with your repository name, e.g. `web` + - `` with the branch that can access the cloud resources, e.g. `refs/heads/main` + - `` with your project name on Semaphore + + ```shell title="Grant access to the identity pool" + gcloud iam workload-identity-pools providers create-oidc $PROVIDER_ID \ + --location="global" \ + --workload-identity-pool=$POOL_ID \ + --issuer-uri="$ISSUER_URI" \ + --allowed-audiences="$ISSUER_URI" \ + --attribute-mapping="google.subject="semaphore::::" \ + --attribute-condition="'semaphore::::' == google.subject" + ``` + + + +
+
+ + +
+Step 3: Connect the pool with a Google Cloud service account +
+ +Connecting to the pool allows Semaphore to impersonate your Google Cloud service account. To create the connection follow these steps: + + + + +1. Define environment variables: + - `` is the repository name, e.g. `web` + - `` is the branch, e.g. `refs/heads/main` + + ```shell + export SUBJECT="semaphore:::: + +See [Granting external identities impersonation permissions](https://cloud.google.com/iam/docs/using-workload-identity-federation#impersonate) to learn more about service accounts. +
+
+ +
+ Step 4: Use OIDC connection in Semaphore jobs +
+ +Add the following commands to the Semaphore [job](./jobs) that needs to access your Google Cloud resources + +```shell title="Using OIDC in a Semaphore job" +export POOL_ID="" +export PROVIDER_ID="" +export PROJECT_ID="" +export SERVICE_ACCOUNT_EMAIL="" +export POOL_URI="projects/$PROJECT_ID/locations/global/workloadIdentityPools/$POOL_ID/providers/$PROVIDER_ID" +echo $SEMAPHORE_OIDC_TOKEN > /tmp/oidc_token +gcloud iam workload-identity-pools create-cred-config $POOL_URI --service-account="$SERVICE_ACCOUNT_EMAIL" --service-account-token-lifetime-seconds=600 --output-file=/home/semaphore/creds.json --credential-source-file=/tmp/oidc_token --credential-source-type="text" +export GOOGLE_APPLICATION_CREDENTIALS=/home/semaphore/creds.json +gcloud auth login --cred-file=/home/semaphore/creds.json +gcloud projects list +``` + +
+
+ +### HashiCorp Vault + +To use OIDC to access [HashiCorp Vault], you need to set up a trust relationship with Semaphore. This configuration uses JWT tokens as the authentication method. See [HashiCorp's JWT/OIDC documentation](https://developer.hashicorp.com/vault/docs/auth/jwt) to learn more. + + +
+Step 1: Enable JWT Support on HashiCorp Vault +
+ +The first step is to enable JWT authentication support on the Vault: + + + +1. Execute the following command to enable JWT on your vault + + ```shell + vault auth enable jwt + ``` + +2. Define a variable with your [organization URL](./organizations#general-settings), e.g. `https://my-org.semaphoreci.com` + + ```shell + export PROVIDER_URL="https://my-org.semaphoreci.com" + ``` + +3. Enable JWT for your Semaphore organization + + ```shell + vault write auth/jwt/config bound_issuer="$PROVIDER_URL" oidc_discovery_url="$PROVIDER_URL" + ``` + + + +
+
+
+Step 2: Configure roles and policies for accessing secrets +
+Configure a policy that grants access to specific paths that will be accessed by your Semaphore pipelines. For more details, read Vault's Policies documentation. + + + + +1. Create a policy granting access to paths in your Vault. See [Vault policies](https://developer.hashicorp.com/vault/docs/concepts/policies) to learn more about this feature + + ```shell title="Setting read-only permissions to secret/data/production folder" + vault policy write example-policy - <` with your repository + - Replace `` with the branch that can access the Vault + + ```shell title="Creating a role" + vault write auth/jwt/role/example-role -<", + "branch": "" + }, + "policies": ["example-policy"], + "ttl": "5m" + } + EOF + ``` + + + +
+
+ +
+Step 3: Access Vault secrets from your Semaphore jobs +
+ +To access the Vault from a Semaphore [job](./jobs), add the following commands at the beginning: + +```shell +export VAULT_TOKEN=$(vault write -field=token auth/jwt/login role=example-role jwt=$SEMAPHORE_OIDC_TOKEN) +vault kv get -field=value secret/data/production/my-secret +``` +
+
+ +## Implementation details + +See the [OIDC token reference page](../reference/openid) to learn how the OIDC tokens are created and what fields are available. + +## See also + +- [How to integrate Semaphore with Okta](./okta) +- [Semaphore organizations](./organizations) + diff --git a/docs/versioned_docs/version-EE-1.3/using-semaphore/org-health.md b/docs/versioned_docs/version-EE-1.3/using-semaphore/org-health.md new file mode 100644 index 000000000..bcf559d53 --- /dev/null +++ b/docs/versioned_docs/version-EE-1.3/using-semaphore/org-health.md @@ -0,0 +1,53 @@ +--- +description: Overview of all your projects +--- + +# Server Health + +import Tabs from '@theme/Tabs'; +import TabItem from '@theme/TabItem'; +import Available from '@site/src/components/Available'; +import VideoTutorial from '@site/src/components/VideoTutorial'; +import Steps from '@site/src/components/Steps'; + + + +The **Organization Health dashboard summarizes all your [Project Insights](./insights) in a single place. In the page, the terms organization, instance, and servers are used interchangeably. + +## Overview + +Organization Health provides a central location to view the Project Insights across all the projects in your [server](./organizations). For instance, you can see the lower-performing projects in the last 30 days to find optimization opportunities. + +## How to view Organization Health + +The Organization Health dashboard is shown in a tab on the home page for your organization. + +![Location for the Organization Health tab](./img/org-health-location.jpg) + +## Available metrics + +Organization Health lists your projects and their [Project Insight metrics](./insights): + +- **Performance**: how long pipelines take to run on average +- **Reliability**: percentage of pipeline pass rate +- **Frequency**: number of pipelines run per week or day +- **Last run**: last time a pipeline was run for the project + +Semaphore uses the data across all branches to calculate health. As a result, the numbers might not match exactly what you see in [Project Insights](./insights). + +![Organization Health Overview](./img/org-health-overview.jpg) + +The default sort order is from lowest to highest performance. Projects at the top have the lowest ranking in overall performance. You can change the order by clicking on the table columns. Use the filter above the columns to change the date range, and filter by branches or project name. + +:::note + +Metrics are calculated every few hours, so Last Run might not always be accurate. + +::: + +## See also + +- [Project Insights dashboard](./insights) +- [Test reports dashboard](./tests/test-reports) +- [Flaky test detection dashboard](./tests/flaky-tests) + diff --git a/docs/versioned_docs/version-EE-1.3/using-semaphore/org-preflight.md b/docs/versioned_docs/version-EE-1.3/using-semaphore/org-preflight.md new file mode 100644 index 000000000..db016d33c --- /dev/null +++ b/docs/versioned_docs/version-EE-1.3/using-semaphore/org-preflight.md @@ -0,0 +1,141 @@ +--- +description: Run custom commands before pipelines start +title: Preflight Checks +--- + +# Preflight Checks + +import Tabs from '@theme/Tabs'; +import TabItem from '@theme/TabItem'; +import Available from '@site/src/components/Available'; +import VideoTutorial from '@site/src/components/VideoTutorial'; +import Steps from '@site/src/components/Steps'; + +Pre-flight checks are user-defined commands executed before the pipeline begins as part of the [pipeline initialization job](./pipelines#init-job). This page explains how to use this feature and shows some examples. + +:::note + +Pre-flight checks cause Semaphore to run an [initialization job](./pipelines#init-job) before your pipeline starts. + +::: + +## Overview + +Pre-flight checks are user-defined commands that are executed for every pipeline in your Semaphore instance before it begins its normal workflow. Pre-flight checks run during the pipeline initialization job. + +Their purpose is to provide users with a way to manually define commands before the execution of a pipeline. For example: + +- Add custom security checks +- Perform detailed dependency management +- Enforce access control + +:::warning + +Pre-flight check commands run in every pipeline in your organization. If any of the commands in the pre-flight check fails, the pipeline does not start. As a result, this feature has the potential to disrupt all the pipelines in your organization. + +Semaphore encourages you to be cautious and familiar with the CI/CD platform before attempting to configure these checks. + +::: + +## How to set up pre-flight checks {#add} + +To access the organization's pre-flight checks, follow these steps: + + + +1. Open the [server settings](./organizations#org-settings) +2. Select **Initialization jobs** +3. Scroll down to **Pre-flight checks** +4. Type the commands you wish to run during initialization +5. Optionally, add [secrets](./secrets) needed during initialization +6. Press **Save changes** + + ![Configuring pre-flight checks for the organization](./img/org-preflight-screen.jpg) + + + +On the same screen, you can delete the existing pre-flight check by pressing the **Delete pre-flight checks** button. + +## Environment variables {#env-vars} + +Semaphore exposes several environmental variables in the pre-flight environment. The most commonly used variables are: + +- [`SEMAPHORE_PROJECT_NAME`](../reference/env-vars#project-name): the name of the Semaphore project +- [`SEMAPHORE_GIT_REPO_SLUG`](../reference/env-vars#git-repo-slug): the name of the Git repository in the form `owner/repo_name`, e.g. `semaphoreci/docs` +- [`SEMAPHORE_GIT_BRANCH`](../reference/env-vars#git-branch): the name of the branch active for the current pipeline, e.g. `main` +- [`SEMAPHORE_PIPELINE_PROMOTION`](../reference/env-vars#pipeline-promotion): is `true` when the pipeline is started via a [promotion](./pipelines#connecting-pipelines) +- [`SEMAPHORE_PIPELINE_PROMOTED_BY`](../reference/env-vars#pipeline-promoted-by): contains the name of the GitHub or BitBucket account that started the promotion +- [`INPUT_FILE`](../reference/env-vars#input-file): the path to the original pipeline file, e.g. `semaphore.yml` +- [`OUTPUT_FILE`](../reference/env-vars#output-file): the path to the compiled pipeline file, created as output for the [initialization job](./pipelines#init-job). This is the pipeline definition Semaphore ultimately uses to run the workflow + +See [initialization environment variables reference](../reference/env-vars#init) for more details. + +## Examples + +This section illustrates pre-flight checks' possible uses with examples. + +### Restricting secrets + +The following example shows how to ensure that only allowed pipelines can access your [secrets](./secrets). + +The sample [check-secret](https://raw.githubusercontent.com/renderedtext/snippets/master/check-secret.sh) script takes the following arguments: + +1. The name of the secret to check +2. The name of the project that can use the secret +3. The path to the pipeline file that might use the secret +4. The name of the active branch + +The script exits with status code 1 if the secret is not allowed to run in the current project, pipeline, or branch. + +The following pre-flight checks only allow a secret called `my-super-secret` on the project called `awesome-project` on the deployment pipeline for the `master` branch: + +```shell +curl https://raw.githubusercontent.com/renderedtext/snippets/master/check-secret.sh -o check-secret + +bash check-secret "my-super-secret" "awesome-project" ".semaphore/deployment.yml" "master" +``` + +If the secret is not allowed for this combination of project, pipeline, and branch, the job fails preventing the pipeline from ever starting. + +:::note + +You can achieve a similar result with [organization secret policies](./secrets#secret-access-policy) or [project secrets](./secrets#create-project-secrets). + +::: + +### Restricting who can start promotions + +The following example shows how to restrict promotions to a list of allowed users. The list of users that can start a promotion is listed on the first line of the example. + +```shell +printf '%s\n' 'user-1' 'user-2' 'user-3' > allowed_users.txt +user_is_allowed () { grep -Fxq $SEMAPHORE_PIPELINE_PROMOTED_BY allowed_users.txt; } +is_promotion () { [ $SEMAPHORE_PIPELINE_PROMOTION == "true" ]; } + +if is_promotion; then if user_is_allowed; then echo "Promotion allowed."; else false; fi; else echo "Initial pipelines are allowed."; fi +``` + +If a non-allowed user tries to start a promotion, the job fails preventing the promotion from being started. + +:::note + +You can also control who can start promotions with [deployment targets (environments)](./promotions#deployment-targets). + +::: + +### Dynamically changing pipeline files + +The following example shows how to dynamically change the pipeline on editing the `$OUTPUT_FILE` in place. The code increases [job parallelism](./jobs#job-parallelism) from 2 to 10 when commit history contains a change in the folder called `big_project`, resulting in a faster feedback loop. + +```shell +is_dir_changed () { spc list-diff --default-branch main | grep -q "^big_project/"; } +increase_parallelism () { `sed -i 's/parallelism: 2/parallelism: 10/' $OUTPUT_FILE`; } + +if is_dir_changed; then increase_parallelism; fi +``` + +## See also + +- [Initialization jobs](./pipelines#init-job) +- [Project-level pre-flight checks](./projects#preflight) +- [How to change the agent running initialization jobs](./organizations#init-agent) diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/organizations.md b/docs/versioned_docs/version-EE-1.3/using-semaphore/organizations.md similarity index 53% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/organizations.md rename to docs/versioned_docs/version-EE-1.3/using-semaphore/organizations.md index 5b3f7496a..ea4c8abec 100644 --- a/docs/versioned_docs/version-CE-1.1/using-semaphore/organizations.md +++ b/docs/versioned_docs/version-EE-1.3/using-semaphore/organizations.md @@ -10,7 +10,7 @@ import Available from '@site/src/components/Available'; import VideoTutorial from '@site/src/components/VideoTutorial'; import Steps from '@site/src/components/Steps'; -This page explains how to set up [notifications](./notifications), manage users, and what settings are available in your Semaphore instance. On Semaphore Community Edition, we use the terms server, instance, and organization interchangeably. +This page explains how to set up [notifications](./notifications), manage users, and what settings are available in your Semaphore instance. On Semaphore Enterprise Edition, we use the terms server, instance, and organization interchangeably. ## Overview {#overview} @@ -27,15 +27,15 @@ A Semaphore instance has: ## Managing users {#people} -Semaphore users a [Role Based Access Control](./rbac) model to manage permissions at the instance level. +Semaphore users a [Role Based Access Control](./rbac) model to manage permissions at the server and project level. -To manage users in your Semaphore instance, open the server menu and select **People**. This tab shows users and groups in your instance along with their roles and groups. +To manage users in your server, open the server menu and select **People**. This tab shows users and groups in your server along with their roles and groups. ![The people tab](./img/people-tab.jpg) ### How to create users {#add-people} -To create new accounts, go to the poeple option in the server menu and follow these steps: +To create new accounts, go to the people option in the server menu and follow these steps: @@ -57,9 +57,32 @@ To create new accounts, go to the poeple option in the server menu and follow th +### How to remove users {#remove-users} + +Users can only be removed from the server when they don't own any projects. You must [transfer the ownership](./projects#owner-change) of all the user's projects before they can be removed from the server. + +To remove a user, go to the people option in the server menu and follow these steps: + + + +1. Transfer any [project ownership](./projects#owner-change) the user may have to another individual. The user must not own any projects +2. Press the **X** button next to the username of the user you want to remove + + ![Removing a user from the organization](./img/remove-user.jpg) + + + +Upon removal, access to all projects in the server are revoked. + +:::note + +Only an Admins, Owner, or dedicated [custom roles](./rbac#custom-roles) can remove users from the server. + +::: + ### How to change a user role {#role-change} -To change user roles, go to the poeple option in the server menu and follow these steps: +To change user roles, go to the people option in the server menu and follow these steps: @@ -76,7 +99,7 @@ To change user roles, go to the poeple option in the server menu and follow thes ### How to reset a user password {#reset-password} -To reset a user password, go to the poeple option in the server menu and follow these steps: +To reset a user password, go to the people option in the server menu and follow these steps: @@ -96,32 +119,95 @@ To reset a user password, go to the poeple option in the server menu and follow -### How to remove users {#remove-users} +### How to create groups {#add-groups} -Users can only be removed from the instance when they don't own any projects. You must [transfer the ownership](./projects#owner-change) of all the user's projects before they can be removed from Semaphore. +User groups streamline user management by allowing bulk actions. After creating a group, you can: -To remove a user, go to the people option in the server menu and follow these steps: +- Add members to the group +- Assign a role to the group + +All members of the group automatically inherit the permissions associated with the assigned role. + +As an example, let's say you want to give the Audit team access to the [Audit logs](#audit-log) in your server. To achieve that you can: + +1. Create a [custom role](#custom) with view permissions on the Billing page +2. Create an "Auditors" group +3. Assign the new custom role to the group +4. Add everyone in the Auditor team to the group +5. As the team changes, you can add or delete persons from the group + +To create a group, open the server menu and select **People**. -1. Transfer any [project ownership](./projects#owner-change) the user may have to another individual. The user must not own any projects -2. Press the **X** button next to the username of the user you want to remove +1. Press on **Create group** +2. Type in the group name and description +3. Type the names of the persons to add to the group +4. Press **Save changes** to create the group - ![Removing a user from the organization](./img/remove-user.jpg) + ![Add group](./img/add-group.jpg) -Upon removal, access to all projects in Semaphore are revoked. +The new group has the [member](./rbac#org-member) role by default. You can change it by pressing the **Modify Role** button and selecting a different role. -:::note +You can also define [custom server roles](#custom) if none of the pre-defined roles suit your needs. + +### How to add members groups {#change-groups} + +To add or remove users in a group, press the **Modify group** button next to it. + +- Press the **X** button to remove the user from the group +- Type the name of the persons you want to add to the group +- Press **Save changes** to finish editing the group + +![Add group](./img/add-group.jpg) + +### How to view pre-defined roles {#org-roles} + +Semaphore provides pre-defined roles for the server. You can see what actions each role can perform by following these steps: + + + +1. Open the server **Settings** menu +2. Select **Roles** + ![Settings Role location](./img/settings-roles.jpg) +3. In the **Organization Roles** section, press the eye button next to the role you want to examine + + + +The actions with enabled checkbox are allowed for that role. + +![Server admin allowed actions](./img/org-admin-roles.jpg) + +### How to create custom roles {#custom} + +Create custom roles to give your users the precise permissions they need. + + + +1. Open the serve **Settings** menu +2. Select **Roles** +3. On the **Organization Roles** section, press **New Role** +4. Give a name a description to the new role +5. Enable the permissions allowed to the role. You can use the search box to narrow down options +6. Press **Save changes** + + ![Creating a new server role](./img/org-role-create-custom.jpg) + + + +Semaphore users a [Role Based Access Control](./rbac) model to manage permissions at the instance level. + +To manage users in your Semaphore instance, open the server menu and select **People**. This tab shows users and groups in your instance along with their roles and groups. + +![The people tab](./img/people-tab.jpg) -Only an Admins and Owners can remove users from the Semaphore instance. -::: ### How to view permissions for roles {#org-roles} -Semaphore provides pre-defined roles. These permissions cannot be changed. You can see what actions each role can perform by following these steps: +Semaphore provides pre-defined roles. These permissions cannot be changed (but new roles can be added, see. You can see what actions each role can perform by following these steps: @@ -134,13 +220,13 @@ Semaphore provides pre-defined roles. These permissions cannot be changed. You c The actions with enabled checkbox are allowed for that role. -![Organization admin allowed actions](./img/org-admin-roles.jpg) +![Server admin allowed actions](./img/org-admin-roles.jpg) ## Instance settings {#org-settings} To access your settings, open the server menu and click on **Settings**. -![Organization settings location](./img/org-settings-location.jpg) +![Server settings location](./img/org-settings-location.jpg) ### General settings {#general-settings} @@ -186,6 +272,61 @@ If you experience errors during initialization, see the [initialization job logs ::: +### Okta integration {#okta-integration} + +Integration with Okta allows you to automate user management within your Semaphore server, as well as to use Okta apps for Single Sign On. + +For more information, see the [Okta integration page](./okta.md) + +## Audit logs {#audit-log} + +To support compliance, accountability, and security, Semaphore provides logs of audited events. Audit Log events are events that affect your server, projects, users, or any other resources in Semaphore. Events contain information about when who and what was the performed activity. + +You can find audit logs in your server settings under **Audit Logs**. + +![Audit logs location](./img/audit-log-location.jpg) + +The audit logs shows all the [audited events](../reference/audit-events) in reverse chronological order. Latest events are shown first. + +![Audit log example](./img/audit-logs-example.jpg) + +### How to export audit logs {#audit-export} + +Audit logs can be exported in two ways: + +- CSV file +- Streaming to an S3-compatible bucket + +To export the logs as CSV, press the **Export as CSV** button. + +![Exporting as CSV](./img/audit-export-csv.jpg) + +To configure streaming to an S3-compatible bucket, press the **Configure Streaming** button and: + + + +1. Select between AWS and Google Cloud +2. Type the region (AWS only) +3. Type the bucket name +4. Type the access token + + - **AWS**: provide the Access Key ID and Access Key Secret for the IAM account + - **Google Cloud**: provide the [HMAC Key](https://cloud.google.com/storage/docs/authentication/managing-hmackeys#command-line) for a service account + + The service account credentials provided must have write and read access to the bucket + +5. Press **Looks Good** + + ![Configuring Audit log streaming](./img/audit-log-streaming.jpg) + + + +:::info + +Audit logs are streamed to the bucket once per day. + +::: + ## Project queues {#queue} You can use queues to control the order in which pipelines are executed in your instance. See [named queues](./pipelines#named-queues) for more information. diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/pipelines.md b/docs/versioned_docs/version-EE-1.3/using-semaphore/pipelines.md similarity index 83% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/pipelines.md rename to docs/versioned_docs/version-EE-1.3/using-semaphore/pipelines.md index 2ce751c3d..c094de122 100644 --- a/docs/versioned_docs/version-CE-1.1/using-semaphore/pipelines.md +++ b/docs/versioned_docs/version-EE-1.3/using-semaphore/pipelines.md @@ -4,20 +4,19 @@ description: Connect blocks to get things done # Pipelines - import Tabs from '@theme/Tabs'; import TabItem from '@theme/TabItem'; import Available from '@site/src/components/Available'; import VideoTutorial from '@site/src/components/VideoTutorial'; import Steps from '@site/src/components/Steps'; -A pipeline is a group of connected blocks. This page explains what pipelines are, how they organize workflow execution order, and what settings are available. +A pipeline is a group of connected blocks. This page explains what pipelines are, how they organize workflow execution order, and what settings are available. In this page, the terms organization, server, and instance are used interchangeably. ## Overview {#overview} Pipelines are groups of blocks that can be connected via dependencies to define their execution order. -Pipelines are also the *unit of configuration*. Each pipeline is encoded as separate a YAML file in the `.semaphore` folder. +Pipelines are also the *unit of configuration*. Each pipeline is encoded as separate a YAML file in the `.semaphore` folder. For reference, here is an example pipeline with its respective YAML. @@ -34,8 +33,11 @@ version: v1.0 name: Initial Pipeline agent: machine: - type: e1-standard-2 - os_image: ubuntu2004 + type: s1-kubernetes + os_image: '' + containers: + - name: main + image: 'registry.semaphoreci.com/ubuntu:22.04' blocks: - name: Build task: @@ -93,9 +95,15 @@ You can reorder blocks by changing their dependencies using the visual editor.
If we removed dependencies between blocks, then all of them would run in parallel.
+:::info + +If a block fails, the subsequent blocks that depend on it will not execute. + +::: + ## Pipeline initialization {#init} -Before Semaphore can start running the jobs in the pipeline, the pipeline YAML file needs to be retrieved from the repository. As a first step, Semaphore request the file via the GitHub or BitBucket API and inspects its contents. +Before Semaphore can start running the jobs in the pipeline, the pipeline YAML file needs to be retrieved from the repository. As a first step, Semaphore requests the file to the Git provider and inspects its contents. There are two types of pipelines: @@ -106,6 +114,9 @@ Dynamic pipelines contain at least one of these elements: - [Change detection (monorepos)](./monorepo) - [Job matrices](./jobs#matrix) +- [Parameterized promotions](./promotions#parameters) +- [Organization pre-flight checks](./org-preflight) +- [Project pre-flight checks](./projects#preflight) Dynamic pipelines are evaluated in the initialization job. @@ -115,7 +126,9 @@ The initialization job only takes place for dynamic pipelines. It runs in a dedi 1. Clones the repository using Git 2. Parses and evaluates conditions in the input YAML file using Semaphore Pipeline Compiler (spc) -3. Saves the job output log +3. Executes [organization pre-flight checks](./org-preflight), if any +4. Executes [project pre-flight checks](./projects#preflight), if any +5. Saves the job output log :::info @@ -125,7 +138,10 @@ The Semaphore Pipeline Compiler (spc) is an open-source component. You can find ### How to change the agent for init jobs {#init-agent} -To change the agent that runs the initialization, see [init agent](./organizations#init-agent). +You can change the agent that runs the initialization job in two ways: + +- **For the server**: affects all projects in the server. See [server init agent](./organizations#init-agent) to learn how to change this setting +- **For the project**: changes the agent running initialization for a single project. See [project pre-flight checks](./projects#preflight) to learn how to change this setting ### How to access init logs {#init-logs} @@ -137,13 +153,23 @@ Here you can see the how spc evaluated the pipeline and all the actions taken du ![Example init job log](./img/init-log-example.jpg) +## Connecting pipelines with promotions {#connecting-pipelines} + +Your project can have multiple pipelines to perform different tasks such as build, release, or test. [Promotions](./promotions) connect pipelines. Multiple pipelines can be chained to create branching workflows to automate almost any task. + +The [workflow](./workflows) always starts with the default pipeline (located at `.semaphore/semaphore.yml`) and flows from left to right following promotions. + +![A workflow with 3 pipelines](./img/workflows1.jpg) + +For more information, see the [Promotions page](./promotions). + ## Pipeline settings {#settings} -Pipeline settings are applied to all its blocks. You can change pipeline settings with the editor or directly in the YAML. +Pipeline settings are applied to all its blocks. You can change pipeline settings with the editor or directly in the YAML. ### Agents {#agents} -An agent is the machine and operating system where a job run. Semaphore keeps a pool of warm agents to ensure there's always one ready to work. You must add your own machines by [installing self-hosted agents](./self-hosted). +An agent is the machine and operating system where a job run. Semaphore ships with a built in Kubernetes-based self-hosted agent. You can add your own machines by [installing self-hosted agents](./self-hosted). To select the agent running your jobs in a pipeline: @@ -153,25 +179,23 @@ To select the agent running your jobs in a pipeline: 1. Select the pipeline -2. Select the **Environment Type** -3. Select the **Operating System** (if available) -4. Select the [machine type](../reference/machine-types) +2. Select the "Docker Containers" in **Environment Type** +3. Select the default **Machine type** +4. Type the name of the Docker image to use in the jobs -The available hardware changes depending on the type of environment you selected. - ![Agent Selection](./img/agent-settings.jpg) - 1. Add the `agent` and `machine` keys -2. Add the hardware `type`. The value must be one of the supported [machine types](../reference/machine-types) -3. Add the `os_image`. The value must be one of the supported operating systems +2. Add the hardware `type`. The default is `s1-kubernetes`, which is the [self-hosted agent](./self-hosted) built-in in the Semaphore server +3. Leave `os_image` empty +4. Add the `containers` key, this contains a list with keys `name` and `image`. The first container must have `name = main` and the image is the Docker image where the jobs run @@ -181,17 +205,16 @@ name: Initial Pipeline # highlight-start agent: machine: - type: e1-standard-2 - os_image: ubuntu2004 + type: s1-kubernetes + os_image: '' + containers: + - name: main + image: 'registry.semaphoreci.com/ubuntu:22.04' # highlight-end blocks: - name: 'Block #1' dependencies: [] task: - agent: - machine: - type: e1-standard-2 - os_image: ubuntu2004 jobs: - name: 'Job #1' commands: @@ -205,13 +228,13 @@ blocks: :::tip -If you want to build and run Docker images in your jobs, check the [working with Docker page](./optimization/docker). +If you want to build and run Docker images in your jobs, check the [working with Docker page](./containers/docker). ::: Jobs can run inside Docker containers. This allows you to define a custom-build environment with pre-installed tools and dependencies needed for your project. You can enable this setting in the pipeline agent or in the [block agent override](./jobs#agent-override). -You can run multiple containers at the same time. The job runs in the first container (called `main`) and attaches the other containers to the same network. This is similar to how containers inside a Kubernetes pod communicate. +You can run multiple containers at the same time. The job runs in the first container (called `main`) and attaches the other containers to the same network. This is similar to how containers inside a Kubernetes pod communicate. The network addresses of all containers are mapped to their names. Let's say you have two containers, "main" and "mysql", you can connect to the database from main with: @@ -228,7 +251,7 @@ To run the job inside a Docker container: 1. Select the pipeline 2. In **Environment Types** select **Docker Container(s)** -3. Select the [machine type](../reference/machine-types) +3. Select the [self-hosted agent](./self-hosted), default is `s1-kubernetes` 4. Type the **Image** name for this container 5. Optionally, add environment variables 6. Optionally, add more containers @@ -255,9 +278,6 @@ To run the job inside a Docker container: version: v1.0 name: Initial Pipeline agent: - machine: - type: e1-standard-2 - os_image: ubuntu2004 # highlight-start containers: - name: main @@ -285,7 +305,7 @@ To use images in private repositories see [Private Docker Registries](#docker-pr :::info -Semaphore provides a [public Docker registry](./optimization/container-registry) for popular images. +Semaphore provides a [public Docker registry](./containers/container-registry) for popular images. ::: @@ -306,8 +326,11 @@ version: v1.0 name: Initial Pipeline agent: machine: - type: e1-standard-2 - os_image: ubuntu2004 + type: s1-kubernetes + os_image: '' + containers: + - name: main + image: 'registry.semaphoreci.com/ubuntu:22.04' # highlight-start global_job_config: prologue: @@ -353,8 +376,11 @@ version: v1.0 name: Initial Pipeline agent: machine: - type: e1-standard-2 - os_image: ubuntu2004 + type: s1-kubernetes + os_image: '' + containers: + - name: main + image: 'registry.semaphoreci.com/ubuntu:22.04' # highlight-start global_job_config: epilogue: @@ -385,6 +411,7 @@ blocks: commands: - npm run build ``` + @@ -405,8 +432,11 @@ version: v1.0 name: Initial Pipeline agent: machine: - type: e1-standard-2 - os_image: ubuntu2004 + type: s1-kubernetes + os_image: '' + containers: + - name: main + image: 'registry.semaphoreci.com/ubuntu:22.04' # highlight-start execution_time_limit: hours: 2 @@ -428,6 +458,7 @@ blocks: commands: - npm run build ``` + @@ -459,8 +490,11 @@ version: v1.0 name: Initial Pipeline agent: machine: - type: e1-standard-2 - os_image: ubuntu2004 + type: s1-kubernetes + os_image: '' + containers: + - name: main + image: 'registry.semaphoreci.com/ubuntu:22.04' # highlight-start fail_fast: stop: @@ -517,8 +551,11 @@ version: v1.0 name: Initial Pipeline agent: machine: - type: e1-standard-2 - os_image: ubuntu2004 + type: s1-kubernetes + os_image: '' + containers: + - name: main + image: 'registry.semaphoreci.com/ubuntu:22.04' # highlight-start auto_cancel: running: @@ -541,10 +578,10 @@ blocks: commands: - npm run build ``` + - ### YAML file path {#yaml-path} This option overrides the location of the pipeline file. This option is not available for the default pipeline (located at `.semaphore/semaphore.yml`). @@ -562,8 +599,11 @@ version: v1.0 name: Deploy agent: machine: - type: e1-standard-2 - os_image: ubuntu2004 + type: s1-kubernetes + os_image: '' + containers: + - name: main + image: 'registry.semaphoreci.com/ubuntu:22.04' blocks: - name: 'Block #1' task: @@ -615,16 +655,15 @@ version: v1.0 name: Initial Pipeline agent: machine: - type: e1-standard-2 - os_image: ubuntu2004 + type: s1-kubernetes + os_image: '' + containers: + - name: main + image: 'registry.semaphoreci.com/ubuntu:22.04' blocks: - name: 'Block #1' dependencies: [] task: - agent: - machine: - type: e1-standard-2 - os_image: ubuntu2004 jobs: - name: 'Job #1' commands: @@ -644,7 +683,6 @@ after_pipeline: - ## Private Docker Registries {#docker-private} If the images you need for your [docker environment](#docker-environments) are not publicly available, you need to provide authentication credentials in your pipeline. This feature is only available by editing the pipeline YAML directly. @@ -668,7 +706,7 @@ To pull images from a private Docker Hub registry, follow these steps: ```yaml title=".semaphore/semaphore.yml" agent: machine: - type: e1-standard-2 + type: s1-kubernetes containers: - name: main image: / @@ -698,7 +736,7 @@ To pull images from a private AWS Elastic Container Registry (ECR), follow these ```yaml title=".semaphore/semaphore.yml" agent: machine: - type: e1-standard-2 + type: s1-kubernetes containers: - name: main image: / @@ -712,7 +750,6 @@ To pull images from a private AWS Elastic Container Registry (ECR), follow these ### Images in Google GCR {#docker-gcr} - To pull images from a private Google Container Registry (GCR), follow these steps: @@ -735,7 +772,7 @@ To pull images from a private Google Container Registry (GCR), follow these step ```yaml title=".semaphore/semaphore.yml" agent: machine: - type: e1-standard-2 + type: s1-kubernetes containers: - name: main image: / @@ -765,7 +802,7 @@ To pull images from a private Quay.io registry, follow these steps: ```yaml title=".semaphore/semaphore.yml" agent: machine: - type: e1-standard-2 + type: s1-kubernetes containers: - name: main image: / @@ -795,7 +832,7 @@ To pull images from any arbitrary Docker registry, follow these steps: ```yaml title=".semaphore/semaphore.yml" agent: machine: - type: e1-standard-2 + type: s1-kubernetes containers: - name: main image: / @@ -813,9 +850,9 @@ Queues allow you to control the order in which pipelines run. Semaphore pipeline ### Default and named queues {#named-queues} -Semaphore creates a queue for each Git push or pull requests. All workflows sharing the same commit SHA belong in the same queue and run sequentially. +Semaphore creates a queue for each Git push or pull requests. All workflows sharing the same commit SHA belong in the same queue and run sequentially. -In other words, every time you re-run a workflow, create a pull request, push a tag, the pipeline is added to the end of the same-commit queue. +In other words, every time you re-run a workflow, create a pull request, push a tag, or start a [promotion](./pipelines#connecting-pipelines), the pipeline is added to the end of the same-commit queue. ![Default queue behavior](./img/default-queues.jpg) @@ -832,7 +869,7 @@ In the example above we have two queues. The "main" queue runs CI pipelines for Queues can be configured on two scopes: - **Project** (the default): pipelines belonging to the same [project](./projects) -- **Server**: pipelines belonging to all projects withing an [Semaphore instance](./organizations) +- **Server**: pipelines belonging to all projects withing an [server](./organizations) ### How to assign named queues {#assign-queue} @@ -855,8 +892,11 @@ version: v1.0 name: Production deployment agent: machine: - type: e1-standard-2 - os_image: ubuntu2004 + type: s1-kubernetes + os_image: '' + containers: + - name: main + image: 'registry.semaphoreci.com/ubuntu:22.04' # highlight-start queue: name: Deployment queue @@ -877,8 +917,11 @@ version: v1.0 name: Project A deployment agent: machine: - type: e1-standard-2 - os_image: ubuntu2004 + type: s1-kubernetes + os_image: '' + containers: + - name: main + image: 'registry.semaphoreci.com/ubuntu:22.04' # highlight-start queue: name: Shared deployment queue @@ -913,8 +956,11 @@ version: v1.0 name: Tests agent: machine: - type: e1-standard-2 - os_image: ubuntu2004 + type: s1-kubernetes + os_image: '' + containers: + - name: main + image: 'registry.semaphoreci.com/ubuntu:22.04' # highlight-start queue: processing: parallel @@ -929,7 +975,7 @@ blocks: ### Conditional queues {#conditional-queues} -You can use conditional statements to assign pipelines based on parameters like branch name or tag name. +You can use conditional statements to assign pipelines based on parameters like branch name or tag name. The following example uses three rules: @@ -942,8 +988,11 @@ version: v1.0 name: Example project agent: machine: - type: e1-standard-2 - os_image: ubuntu2004 + type: s1-kubernetes + os_image: '' + containers: + - name: main + image: 'registry.semaphoreci.com/ubuntu:22.04' # highlight-start queue: - when: "branch = 'master'" @@ -1011,7 +1060,6 @@ To change the global time limit for all jobs in a pipeline, follow these steps: - 1. Open the pipeline YAML @@ -1021,13 +1069,16 @@ To change the global time limit for all jobs in a pipeline, follow these steps: -```shell title="Changing max duration for a single job" +```yaml title="Changing max duration for a single job" version: v1.0 name: Pipeline using execution_time_limit agent: machine: - type: e1-standard-2 - os_image: ubuntu2004 + type: s1-kubernetes + os_image: '' + containers: + - name: main + image: 'registry.semaphoreci.com/ubuntu:22.04' # highlight-start execution_time_limit: hours: 3 @@ -1055,13 +1106,18 @@ See [job time limit](./jobs#job-duration) to change the maximum duration for a s You can workaround the queue limit by assigning pipelines to [named queues](#named-queues). +If you have a use case in which this limit is too constraining, please contact us at `support@semaphoreci.com` and we will try to work out a solution. + ### Max blocks per pipeline {#max-blocks} There is a hard limit of a 100 blocks per pipeline. +This limit is not adjustable. If you have a use case in which this limit is too constraining, please contact us at `support@semaphoreci.com` and we will try to work out a solution. + ## See also - [How to create jobs](./jobs#job-create) +- [How to connect pipelines with promotions](./promotions) - [Run pipelines on a schedule with Tasks](./tasks) - [Pipeline YAML reference](../reference/pipeline-yaml) - [Semaphore environment variable reference](../reference/env-vars#semaphore-variables) diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/projects.md b/docs/versioned_docs/version-EE-1.3/using-semaphore/projects.md similarity index 71% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/projects.md rename to docs/versioned_docs/version-EE-1.3/using-semaphore/projects.md index 02093cb18..ce25a5b4d 100644 --- a/docs/versioned_docs/version-CE-1.1/using-semaphore/projects.md +++ b/docs/versioned_docs/version-EE-1.3/using-semaphore/projects.md @@ -1,5 +1,5 @@ --- -description: Connect Git repos to Semaphore +description: Connect Git repos to Semaphore (EE) --- # Projects @@ -12,32 +12,29 @@ import Steps from '@site/src/components/Steps'; Projects are codebases developed and managed through Semaphore [Continuous Integration](https://semaphoreci.com/continuous-integration). A project links your Git repository with Semaphore, so it can run [jobs](./jobs) to test, build, or deploy your application. -This page explains how to set up projects and what settings are available. Before you can create a project you must connect Semaphore to [GitHub](./connect-github) or [BitBucket](./connect-bitbucket). +This page explains how to create projects hosted on public Git hosting services such as [GitHub](./connect-github), [BitBucket](./connect-bitbucket), or [GitLab](./connect-gitlab). To create project hosted on private Git services, see the [Connect Any Git Server](./connect-git-server) page. In this page, we'll use the terms organization, server, and instance interchangeably. ## Create a project {#create-project} - - To create a Semaphore project you need: - A [Semaphore installation](../getting-started/install) -- A GitHub or Bitbucket account - A repository with at least one commit -- Set up Semaphore to connect to your repositories: +- If you are using public Git hosting, you must set up the connection with Semaphore first: - [How to connect to GitHub](./connect-github) - [How to connect to Bitbucket](./connect-bitbucket) + - [How to connect to GitLab](./connect-gitlab) -Go to Semaphore, press **+Create New** 1 and then press **Choose repository** +Go to Semaphore, press **+Create New** and choose from the options based on where your repository is hosted. ![Creating a new project](./img/create-project-1.jpg) -1. Select the GitHub or Bitbucket tab. You may need to press the **Connect account** button if this is the first time -2. Select the repository from the list and press on **Choose** +1. Select the repository from the list and press on **Choose**
Show me @@ -46,21 +43,30 @@ Go to Semaphore, press **+Create New** 1 and then press **Choose repository**
-3. Optionally, [add people](./organizations#people) to the project. Press **Continue** +2. Optionally, you might change the default name of the project. Press the **blue check button** and wait for the project to be deployed. Press **Continue** + +
+ Show me +
+ ![Deploy project](./img/create-project-3.jpg) +
+
+ +3. Select the default [agent](./pipelines#agents) for this project
Show me
- ![Add people](./img/create-project-3.jpg) + ![Define default agent for the project](./img/define-default-agent.jpg)
-4. Select a started workflow. If in doubt, select **Single Job** and **Start** +4. Select a starter workflow. You may also **Customize** or **Design from scratch**
Show me
- ![Add people](./img/create-project-4.jpg) + ![Select starter workflow](./img/create-project-4.jpg)
@@ -120,14 +126,19 @@ Semaphore shows the latest activity in the last few days when logging in.
+To get the list of the projects in your Semaphore server: + + + To get the list of the projects in your server, run [sem get](../reference/semaphore-cli) to list your projects: + ```shell + $ sem get project + NAME REPOSITORY + semaphore-demo-flutter git@github.com:semaphoreci-demos/semaphore-demo-flutter.git + hello-semaphore git@github.com:semaphoreci-demos/hello-semaphore.git + ``` -```shell -$ sem get project -NAME REPOSITORY -semaphore-demo-flutter git@github.com:semaphoreci-demos/semaphore-demo-flutter.git -hello-semaphore git@github.com:semaphoreci-demos/hello-semaphore.git -``` +
@@ -142,7 +153,7 @@ The following actions in the repository can trigger Semaphore to start the proje - Pushing Git tags - Creating pull requests from the same repository - Creating pull requests originating from a forked repository -- Updating any of the project's pipelines using the [visual editor](./workflows#workflow-editor) +- Updating any of the project's pipelines using the [visual editor](./jobs#workflow editor) - Pressing the Run button on the Semaphore website - Request a re-run using the [Semaphore API](../reference/api) - Scheduling workflows [using Tasks](./tasks) @@ -166,8 +177,12 @@ Instead of pushing the HEAD commit to the pull request, Semaphore uses the MERGE Project members can view or manage the following project elements: - **Activity**: shows the latest [pipeline](./pipelines) runs +- **Deployments**: access the [project's environment](./promotions#deployment-targets) (formerly deployment targets) +- **Insights**: shows the [insights](./insights) +- **Reports**: shows the [Markdown reports](./tests/markdown-reports) - **Artifacts**: shows the [project-level artifacts](./artifacts#projects) and [retention policy](./artifacts#retention) - **Tasks**: shows the [tasks](./tasks) +- **Flaky Tests**: shows the [flaky tests](./tests/flaky-tests) detected in the project - **People**: shows or changes the [project members](#people) - **Settings**: shows the [project-level settings](#settings) @@ -177,43 +192,36 @@ Project members can view or manage the following project elements: Semaphore periodically syncs users from GitHub. You can add and remove people from the project by inviting or removing them from the related repository. -Users with [Admin](./rbac#org-admin) or [Owner](./rbac#org-owner) roles can access every project in their servers — even if they don't have access to the related repository. +Users with [Admin](./rbac#org-admin) or [Owner](./rbac#org-owner) roles can access every project in their server — even if they don't have access to the related repository. ### About project permissions {#about} -TODO: does this apply to CE? - Users can be granted access and permissions on a project by different means: - **Repository-level access**: Semaphore automatically syncs user permissions from GitHub. See [project roles](./rbac#project) to learn how repository permissions are mapped to project permissions - **Direct access**: users can be [directly added to and removed from the project](#manual). Their permissions are managed with [project roles](./rbac#project) - **Role access**: users with [Admin](./rbac#org-admin) or [Owner](./rbac#org-owner) roles can access every project in their server +- **Group access**: [groups](./rbac#org-groups) can grant their members access to projects, provided the group itself has been given access to those projects ### How to manually add/remove members to projects {#manual} -To add or remove a user from a project, follow these steps: +Enterprise Edition users can manually add and remove people from a project. To manage users, open your project and go to the **People** tab -1. Ensure the user is [already part of the Semaphore server](./organizations#add-people) -2. Open your project -3. Select the **People** tab -4. Press **Add People** -5. Type the names of the users to add -6. Press **Add selected** +1. Press **Add People** +2. Select the user from the list of options +3. Select the role +4. Press **Add Selected** ![Adding a member to the project](./img/add-user-2.jpg) -- To remove the user from the project, press the **X** button next to the user. +See [project roles](./rbac#project) for more information on what actions can each role perform. ### How to change permissions {#people-roles} - - -TODO: check if we can manually change members permissions in projects in Semaphore (or if it musst go through the Git repo) - Open your project and go to the **People** tab @@ -241,6 +249,23 @@ Semaphore provides pre-defined roles for projects. You can see what actions each The actions with enabled checkbox are allowed for that role. +### How to create custom roles {#custom-roles} + +Create custom roles to give your users the precise permissions they need. + + + +1. Open the server **Settings** menu +2. Select **Roles** +3. On the **Project Roles** section, press **New Role** +4. Give a name a description to the new role +5. Enable the permissions allowed to the role. You can use the search box to narrow down options +6. Press **Save changes** + + ![Creating a project custom role](./img/project-custom-roles1.jpg) + + + ### How to change the project's owner {#owner-change} Open the [project settings](#settings), under **Project Owner** type the username and press **Change**. The user must already have been [invited to the server](./organizations#add-people). @@ -270,6 +295,34 @@ In the general project settings, you can: ![General settings](./img/project-general-settings-1.jpg) +### How to delete a project {#delete-project} + +:::danger + +Deleting a project is irreversible. All the pipelines, jobs, and artifacts associated with the project will be lost. + +::: + +Go to the general settings of your project and follow these steps: + + + +1. At the bottom of the page, press "Proceed with caution" under **Delete project** + + ![Delete a project link](./img/delete-project-link.jpg) + +2. Select a **Reason for deleting** the project + + ![Deletion page for project](./img/delete-project-wizard.jpg) + +3. Optionally, you may leave some feedback +4. Enter the name of the project to confirm the deletion +5. Press **Delete project** + + + +You may also delete a project using the [Semaphore CLI](../reference/semaphore-cli#sem-delete). + ### Workflow triggers {#settings-triggers} See [workflow triggers](./workflows#project-triggers) to learn how to customize what actions trigger a workflow. @@ -290,8 +343,6 @@ In **Secrets** page, you can create project-level [secrets](./secrets.md). These To learn how to create project secrets, see the [secrets documentation page](./secrets#create-project-secrets). - - ### Badges {#badges} The **Badge** settings page shows you [shields](https://shields.io/) embed codes for your README or any webpage, allowing team members and users about the build status of your project. @@ -312,13 +363,13 @@ To get a badge embed code: Badge URLs follow the following format for the "master" branch: ```text -https:///badges/.svg +https://semaphore.example.com/badges/.svg ``` On other branches the format is: ```text -https:///badges//branches/.svg +https://semaphore.example.com/badges//branches/.svg ``` The visual style of the badge can also be customized. There are two styles: @@ -331,7 +382,7 @@ The visual style of the badge can also be customized. There are two styles: The Semaphore style is the default. To use shields style, add `?style=shields` to the URL. For example: ```text -https://semaphore./badges/.svg?style=shields +https://semaphore.example.com/badges/.svg?style=shields ``` ### Artifacts {#artifacts} @@ -340,9 +391,60 @@ The **Artifacts** settings page lets you configure the [artifact](./artifacts) r To learn more, see the [artifacts retention page](./artifacts#retention) +## Pre-flight checks {#preflight} + +Pre-flight checks are user-defined commands executed before the pipeline begins as part of the pipeline [initialization job](./pipelines#init-job). These checks allow you to define the type of agent running the initialization job and to manually run commands before a pipeline starts. + +:::note + +If you want to run commands for all pipelines in your server, see [server pre-flight checks](./org-preflight). + +::: + +### How to set up preflight checks {#preflight-add} + +To create, edit, or delete project pre-flight checks, follow these steps: + + + +1. Open the project on Semaphore +2. Go to the **Settings** tab +3. Select **Pre-flight checks** +4. Type the pre-flight commands +5. Optionally, type the name of [secrets](./secrets) to be injected during the initialization job +6. Press **Save changes** + + ![Setting up pre-flight checks for project](./img/project-preflight.jpg) + + + +See the [server pre-flight page](./org-preflight#env-vars) to learn about the available environment variables and see examples of pre-flight checks. + ### How to change init agent {#init-agent} -To change the agent that runs the initialization job, see [set initialization agent for job](./organizations#init-agent). +You can change the agent in which the initialization and pre-flight commands run. + +To change the initialization for the project, follow these steps: + + + + +1. Go to the [Pre-flight settings page](#preflight-add) +2. Check the box **Override default agent configuration** +3. Select an **Environment type** +4. Select a **Machine type** +5. Select an **OS image** +6. Press **Save changes** + + ![Changing the initialization agent for the project](./img/override-project-init-agent.jpg) + + + +:::note + +This setting overrides the [server-wide initialization agent](./organizations#init-agent). + +::: ## How to configure status checks {#status-checks} @@ -432,7 +534,7 @@ If your repositories aren't showing in Semaphore or changes are not triggering n -1. Navigate to your Semaphore account menu +1. Navigate to your [Semaphore account](https://me.semaphoreci.com/account) 2. Read the status next to GitHub ![Connection status green](./img/account-gh-bb-access.jpg) 3. If the status is disconnected, click on **Grant public access** or **Grant private access** @@ -491,8 +593,6 @@ To fix the broken webhook, click on **Regenerate**. This should generate a new w ### Reconnecting moved or renamed projects -TODO: when reconnecting a renamed project on Semaphore CE, how do we do it? On Cloud the user must contact support - There are several actions that can break the connection between GitHub and Semaphore. For example: - moving the repository to a different location @@ -509,6 +609,7 @@ The Semaphore support team will relink the project to the new repository. ## See also -- [How to manage Semaphore servers](./organizations.md) +- [server pre-flight checks](./org-preflight) +- [How to manage your Semaphore server](./organizations.md) - [How to configure test reports](./tests/test-reports) diff --git a/docs/versioned_docs/version-EE-1.3/using-semaphore/promotions.md b/docs/versioned_docs/version-EE-1.3/using-semaphore/promotions.md new file mode 100644 index 000000000..00cfa8911 --- /dev/null +++ b/docs/versioned_docs/version-EE-1.3/using-semaphore/promotions.md @@ -0,0 +1,731 @@ +--- +description: Connect pipelines to create workflows +--- + +# Promotions + +import Tabs from '@theme/Tabs'; +import TabItem from '@theme/TabItem'; +import Available from '@site/src/components/Available'; +import VideoTutorial from '@site/src/components/VideoTutorial'; +import Steps from '@site/src/components/Steps'; + + + +Promotions connect [pipelines](./pipelines) to implement continuous delivery and deployment, or other types of automation, such as [blue-green](https://semaphoreci.com/blog/blue-green-deployment) deployments and [canary](https://semaphoreci.com/blog/what-is-canary-deployment) deployments. + +This page explains promotions, how to use them to connect pipelines, and what settings are available. + +## Connecting pipelines {#promotions} + +If your [project](./projects) contains multiple pipelines, you can use promotions to chain them. + +Using promotions, we can create a tree-like structure where pipelines branch off from other pipelines. The root of the tree is the default pipeline located at `.semaphore/semaphore.yml`. + +Promoted pipelines are typically used for continuous delivery and continuous deployment. The following example shows the default pipeline branching into two continuous delivery pipelines: production and development. In each of these, we define the sequence of [jobs](./jobs) needed to deploy the application in the respective environment. + +![A workflow with 3 pipelines](./img/workflows1.jpg) + +## Promotion triggers {#triggers} + +Triggering a promotion means starting the next pipeline in the chain. There are three ways of triggering a promotion: + +- **Manual promotions**: this is the default. Start the next pipeline manually +- **Auto promotions**: automatically start a promotion based on predefined conditions +- **Parameterized promotions**: allow you to pass values as environment variables into the next pipelines, enabling pipeline reuse for different tasks + +## How to add promotions {#create-promotions} + +Promotions are defined as pointers to the next pipelines in the chain. You can create multiple promotions and nest pipelines as needed. + + + + + + + +1. Press **+Add Promotion** +2. Set a descriptive name for the promotion +3. Configure the new pipeline and add jobs as needed + + ![Adding a manual promotion](./img/promotion-add-manual.jpg) + + + +Press **Delete Promotion** to completely delete the promotion along with *all its child pipelines*. + + + + +1. Create a new pipeline file in the `.semaphore` folder, e.g., `deploy.yml` +2. Edit the pipeline from which the new one (from step 1) branches off, e.g., `semaphore.yml` +3. Add the `promotions` key at the root level of the YAML +4. Type the `name` of the promotion +5. Type the `pipeline_file` filename of the pipeline created in step 1 + +```yaml title=".semaphore/semaphore.yml" +version: v1.0 +name: Initial Pipeline +agent: + machine: + type: f1-standard-2 + os_image: ubuntu2004 +blocks: + - name: Build + dependencies: [] + task: + jobs: + - name: Build + commands: + - checkout + - npm run build +# highlight-start +promotions: + - name: Promotion 1 + pipeline_file: deploy.yml +# highlight-end +``` + + + + +### Automatic promotions {#automatic-promotions} + +Automatic promotions start a pipeline based on user-defined conditions. + +After [adding a promotion](#promotions), you can set automatic conditions. Whenever Semaphore detects that these conditions are met, the child pipeline automatically starts. + + + + + + +1. Open the promotion you want to autostart +2. Enable the checkbox **Enable automatic promotion** +3. Type in the [start conditions](../reference/conditions-dsl) + + ![Setting autostart conditions on a promotion](./img/promotion-auto.jpg) + + + + + + +1. Open the pipeline file containing the promotion you want to autostart +2. Add an `auto_promote` key +3. Add a child `when` key. Type in the [start conditions](../reference/conditions-dsl) + +```yaml title=".semaphore/semaphore.yml" +version: v1.0 +name: Initial Pipeline +agent: + machine: + type: f1-standard-2 + os_image: ubuntu2004 +blocks: + - name: 'Block #1' + dependencies: [] + task: + jobs: + - name: 'Job #1' + commands: + - checkout + - make build +# highlight-start +promotions: + - name: Promotion 1 + pipeline_file: deploy.yml + auto_promote: + when: branch = 'master' AND result = 'passed' +# highlight-end +``` + + + + +### Tagged promotions {#tagged} + +Many teams use Git tags to manage their release cycles. To auto-trigger a promotion with tags, you can use Perl Compatible Regular Expressions. + +For example: + +- `tag =~ '.*'` matches all tags. The presence of any Git tag alone is enough to match the condition +- `tag =~ '^v1\.'` matches any tag starting with "v1" + +You can mix tags and other conditions to trigger promotions with a high level of control. + + + + +The following example shows how to trigger a deployment promotion when all tests have passed and there is a Git tag starting with "v1". + +![Using tags for promotions](./img/promote-on-tag.jpg) + + + + +The following example shows how to trigger a deployment promotion when all tests have passed and there is a Git tag starting with "v1". + +```yaml +version: v1.0 +name: Continuous Integration Pipeline +agent: + machine: + type: f1-standard-2 + os_image: ubuntu2004 +blocks: + - name: Install + dependencies: [] + task: + jobs: + - name: Job + commands: + - checkout + - npm install + - npm test + +promotions: + - name: Deploy on v1 tag + pipeline_file: deploy.yml + # highlight-start + auto_promote: + when: result = 'passed' AND tag =~ '^v1\.' + # highlight-end +``` + + + + + +## Parameterized promotions {#parameters} + +Parameterized promotions allow you to propagate environment variables across all jobs in the next pipeline. + +Use parameters to reduce pipeline duplication. For example, if you create a parameterized pipeline that reads the target environment from a variable, you can reuse it to deploy an application to both production and testing environments. Parameters work with both [manual](#manual-promotions) and [automatic](#automatic-promotions) promotions. + +:::note + +Parameterized promotions cause Semaphore to run an [initialization job](./pipelines#init-job) before the pipeline starts. + +::: + +### How to add parameters {#parameters-add} + + + + + +To add parameters to a promotion with the workflow editor, follow these steps: + + + +1. Select the promotion to which you want to add parameters +2. Click **+Add Environment Variable** + + ![Add parameter to promotion](./img/parameter-1.jpg) + +3. Set the variable name +4. Set an optional description +5. Set optional valid options. Leave blank to input value as freeform text +6. Enable the "This is a required parameter" checkbox if the parameter is mandatory +7. Set a default value (only when the parameter is mandatory) +8. Add more parameters as needed + + ![Setting up parameters](./img/parameter-2.jpg) + + + + + + +To add parameters to a promotion using YAML, follow these steps + +1. Edit the file where you want to add the parameters +2. Add a `parameters.env_vars` key +3. Every list item is a new parameter. Set the `name` of the environment variable +4. Type an optional `description` +5. Optionally set `required` to `true|false` +6. Optionally set `options`. Each item in the list is a valid option. Leave blank to input value as freeform text +7. If `required: true`, set the `default_value`. Optional parameters don't have a default value + +```yaml title=".semaphore/semaphore.yml" +# ... +promotions: + - name: Push to Prod + pipeline_file: deploy.yml + parameters: + # highlight-start + env_vars: + - required: true + options: + - Stage + - Production + default_value: Stage + description: Where to Deploy? + name: ENVIRONMENT + # highlight-end +``` + +In the example above, if auto-promotion is triggered, the value for `$ENVIRONMENT` is `Stage` by default. + + + + +:::info + +When a pipeline is triggered with [automatic promotions](#automatic-promotions) the parameter values are automatically filled following these rules: + +- Mandatory parameters use the default value +- Optional parameters are left blank + +::: + +### Promoting with the UI {#manual-promotions} + +Once you have [added a parameter](#parameters-add), you can select its value from the Semaphore UI. + + + +1. Press the promotion button +2. Select or type in the value. Optional parameters can be left blank +3. Press **Start promotion** + + + + + + +![Selecting a parameter value from options](./img/promotion-options.jpg) + + + + +![Typing the parameter value in freeform](./img/promotion-freeform.jpg) + + + + +### Promoting with the API {#api-promotions} + +You can pass parameter values to the promotion when it's triggered using [Semaphore API](../reference/api) the to trigger promotions. If a promotion is forbidden by the environment, you will receive an `HTTP 400 Bad Request` response with a reason in the body. + + + +The following is an example of a curl call that includes parameters: + +```shell +curl -H "Authorization: Token {api_token}" \ + -d "name={promotion_name}&pipeline_id={parent_pipeline_id}&{param_1_name}={param_1_value}&{param_2_name}={param_2_value}" \ + -X POST "https://{org_name}.semaphoreci.com/api/v1alpha/promotions" +``` + +### Accessing values in jobs {#access-parameters-jobs} + +Parameters are exported as [environment variables](./jobs#environment-variables) in all the jobs contained in the promoted pipeline. + +You can access the parameter value by directly using the environment variable in your commands. + + + + +![Using parameters a environment variables in jobs](./img/parameters-jobs.jpg) + + + + +The parameters are accessible as regular environment variables in the `commands` section. + +```yaml title="deploy.yml" +version: v1.0 +name: Deployment pipeline +agent: + machine: + type: f1-standard-2 + os_image: ubuntu2004 +blocks: + - name: Deploy + task: + jobs: + - name: Deploy + commands: + # highlight-next-line + - echo "Deploy to $ENVIRONMENT" +``` + + + + + +### Accessing values in pipelines {#access-parameters-pipeline} + +You can use parameters in the pipeline YAML to dynamically define pipelines at runtime. For example, you can use parameters to change the pipeline name, compile a [job matrix](./jobs#matrix), or dynamically assign [pipeline queue](./pipelines#queue-scopes), among many other things. + +Parameters can be used in two ways: + + +- **String expansion** (starts with `$`): parameters using the `${{parameters.VAR_NAME}}` syntax are expanded at runtime. For example, if you defined a parameter called `ENVIRONMENT`, you can insert its value in the pipeline definition as `${{parameters.ENVIRONMENT}}` at runtime +- **String evaluation** (start with `%`): strings using the `%{{parameters.VAR_NAME}}` syntax produce JSON-serialized output, allowing you to dynamically transform values and inject them as YAML into pipeline during runtime. This feature supports string manipulation using pipes and [Sprout functions](../reference/pipeline-yaml#parameters-functions) + +See the [pipeline YAML reference](../reference/pipeline-yaml#parameters) to view all the places where parameters and what functions are supported in the pipeline YAML definition. + + + + +You can access some parameters in the UI with the `${{parameters.VAR_NAME}}` syntax. The following example shows how to change the pipeline name based on a parameter called `ENVIRONMENT`. + +![Parameter value is expanded in the pipeline name](./img/pipeline-parameter-expansion.jpg) + + + + +The following example shows various ways in which parameters can be using in the pipeline YAML. + +```yaml title="deploy.yml" +version: v1.0 +# highlight-start +# Change the pipeline name +name: "Deploy to ${{parameters.DEPLOY_ENV}} on ${{parameters.SERVER}}" +# highlight-end + +agent: + machine: + # highlight-start + # set the agent type and os image + type: "${{parameters.MACHINE_TYPE}}" + os_image: "${{parameters.OS_IMAGE}}" + # highlight-end + +global_job_config: + secrets: + # highlight-start + # import the correct secret into all jobs + - name: "${{parameters.DEPLOY_ENV}}_deploy_key" + # highlight-end + - name: "github_key" + +queue: +# highlight-start + # assign the pipeline to the first named queue that matches + - name: "${{parameters.DEPLOY_ENV}}_deployment_queue" + - name: "${{parameters.MISSING}}_queue" +# highlight-end + - name: "default_queue" + +blocks: + - name: Run tests + task: + agent: + machine: + # highlight-start + # override the machine type for this job + type: "${{parameters.MACHINE_TYPE}}" + # highlight-end + containers: + # highlight-start + # set the Docker environment container image and name + - name: "${{parameters.DEPLOY_ENV}}_test_container" + image: "${{parameters.DEPLOY_ENV}}_test_image" + secrets: + # import the secret to pull the image from a private registry + - name: ${{parameters.DEPLOY_ENV}}_api_key + # highlight-end + jobs: + - name: Run tests + commands: + - echo "Running tests" + # highlight-start + # set job parallelism to PARALLELISM * 2 + parallelism: "%{{parameters.PARALLELISM | mul 2}}" + # highlight-end + + - name: Build and push image + task: + secrets: + # highlight-start + # dynamically import the right secrets + - name: ${{parameters.DEPLOY_ENV}}_dockerhub + - name: ${{parameters.DEPLOY_ENV}}_ecr + # highlight-end + + # highlight-start + # change the job name using the parameter DEPLOY_ENV + - name: Deploy image to ${{parameters.DEPLOY_ENV}} + # highlight-end + task: + secrets: +# highlight-start + # dynamically import the right secrets + - name: ${{parameters.DEPLOY_ENV}}_deploy_key + - name: ${{parameters.DEPLOY_ENV}}_aws_creds +# highlight-end + jobs: + # highlight-start + # change the job name using the parameters DEPLOY_ENV and SERVER + - name: Deploy to ${{parameters.DEPLOY_ENV}} on ${{parameters.SERVER}} + # run deployment script in the region + commands: ./deploy.sh $AWS_REGION + # create a job matrix from a comma-separated string + matrix: + - env_var: AWS_REGION + values: "%{{parameters.AWS_REGIONS | splitList \",\"}}" + # highlight-end + +# send notifications to Slack channels and ping the servers once all jobs have ended +after_pipeline: + task: + secrets: + - name: ${{parameters.DEPLOY_ENV}}_slack_token + jobs: + - name: "Notify on Slack: %{{parameters.SLACK_CHANNELS | splitList \",\"}}" + commands: + - echo "Notifying Slack" + matrix: + - env_var: SLACK_CHANNEL + values: "%{{parameters.SLACK_CHANNELS | splitList \",\" }}" + - name: Ping ${{parameters.DEPLOY_ENV}} from %{{parameters.PARALLELISM}} jobs + commands: + - echo "Pinging environment" + parallelism: "%{{parameters.PARALLELISM | int64 }}" +``` + + + + +## Deployment targets {#deployment-targets} + + + +Deployment targets (also known as Environments) provide additional controls over [pipelines](./pipelines). You can limit who can trigger a pipeline and under which circumstances, or define fine-grained secrets and environment variables. + +### Overview {#overview-environments} + +Environments allow you to tightly control [promotions](#promotions), preventing unauthorized users from starting a critical pipeline. Additionally, deployment targets can restrict branches, and pull requests, and protect [secrets](./secrets). + +Environments also provide a convenient way to [view the history of your deployments](#view-history). + +Configuring a deployment target is a two-step process: + +1. Create a deployment target +2. Associate the target with a promotion + +### How to create an environment {#create-environment} + +Environments can be defined once and used in multiple promotions in a project. + +To create an environment, navigate to your Semaphore project and: + + + +1. Go to the **Deployment Targets** tab +2. Press **Create your first Deployment Target** + + ![Creating a deployment target](./img/deployment-target-create.jpg) + +3. Fill in the deployment details: + - Name of the deployment + - Optional description + - Optional URL of the deployed application + - Optional bookmarks +4. Press **Next** + + ![Example deployment target](./img/deployment-target-1.jpg) + + + +The bookmarks are useful when using [parameterized promotions](#parameters). You can add up to three bookmarks matching the names of the parameters in the promotions. Think of the bookmarks as additional filters available in the deployment history view. + +### Credentials and secrets {#credentials} + +Credentials are a restricted type of [secrets](./secrets) that are only accessible to authorized members of your organization. + +In the second part, you can define environment variables and upload files that will be accessible to the promoted pipelines. All information will be encrypted once saved. + +Credentials are optional. Go to the next step if you don't need them. + + + +1. Set the environment variable name and value +2. Add more variables as needed +3. Upload a file and set where to put it in the [agent](./pipelines#agents) +4. Add more files as needed +5. Press **Next** + +
+ Show me +
+ ![Setting up credentials for the deployment target](./img/deployment-target-2.jpg) +
+
+ +
+ +### Granular permissions {#granular-permissions} + +In the "Who can deploy?" section, you can define the users and roles that can manually start the promotion. Granular permissions are optional. You can go to the next section if you don't need to restrict access to the promotion. + +By default, everyone can start the promotion linked to this environment. To restrict access: + + + +1. Select **Allow only particular users to deploy** +2. Optionally, select the roles that can deploy from the list +3. Optionally, select the members of your organization that can deploy +4. Uncheck the **Allow automatic promotions from target** option to disallow [automatic promotions](#automatic-promotions) +5. Press **Next** + +
+ Show me +
+ ![Configuring granular access permissions for the deployment target](./img/deployment-target-3.jpg) +
+
+ +
+ +### Git-based permissions {#git-permissions} + +In the fourth part, you can restrict which Git branches and tags are allowed to start a promotion. Here, you can also block promotions coming from pull requests. This section is optional. + +To restrict Git-based access: + + + +1. Select which branches are enabled for promotions: all, none, or a list of allowed branches +2. Select which Git tags are enabled: all, none, or a list of allowed tags +3. Enable or disable pull requests from triggering promotions +4. Press **Next** +5. Press **Create** + +
+ Show me +
+ ![Setting up Git-based permissions](./img/deployment-target-4.jpg) +
+
+ +
+ +Once done, you can see the created environment in the **Deployments** tab. + +:::tip Exact match or regular expressions? + +Branches and tags can be matched in two ways: +- **Exact match**: strings must match exactly +- **Regex match**: strings are matched using Perl-compatible regular expressions. See the [Erlang re module documentation](https://www.erlang.org/doc/man/re.html) to see more details on the syntax + +::: + +### How to view deployment history {#view-history} + +The **Deployment** tab allows you to track your previous deployments. In this tab, you can see: + +- Who started the last deployment +- Which commit was used +- Which [workflow](./workflows) the deployment belongs to + +You can also stop a running pipeline or rerun a promotion if you have the rights to do so. + +![Deployment history](./img/deployment-history-1.jpg) + +Press **View full history** to see the latest deployments in reverse chronological order. + +![Deployment history details](./img/deployment-history-2.jpg) + +Use **Newer** and **Older** buttons to navigate to other pages. You can also jump to a specific date. + +You can also filter deployments by: +- **Type**: View branches, tags, pull requests, or everything +- **Author**: Everyone or just you +- **Origin**: Branch, tag, or pull request +- **Promotion parameters**: These are the [bookmarks](#create-environment) added to the environment target + +To filter using promotion parameters, type the value of the parameter and press Enter. This feature is useful when you have [parameterized promotions](#promotions). + +![Deployment history filtered by parameters](./img/deployment-history-3.jpg) + +### How to target promotions {#promotion-target} + +Once you have created at least one environment, you can associate it with a [promotion](#promotions). This creates a targeted promotion. + +![Deployment target created](./img/deployment-target-created.jpg) + + + + +Press **Edit workflow** to open the visual editor and: + + + +1. Select or create a promotion +2. In **Deployment target**, select the target from the dropdown list + + Select **No target** to remove the association between the deployment target and the promotion. + ![Associating a deployment target with a promotion](./img/promotion-target.jpg) + + + + + + +1. Edit the pipeline file with the promotion you want to target +2. Add a `deployment_target` key to the promotion. The value is the name of the environment you want to associate with this promotion + +Delete `deployment_target` to remove the association between the environment and the promotion. + +```yaml title=".semaphore/semaphore.yml" +# ... +promotions: + - name: Promotion 1 + pipeline_file: pipeline_4.yml + # highlight-next-line + deployment_target: Production +``` + + + + +### Promoting environments {#targeted-promotions} + +Promotions with attached environments show a lock icon next to the promotion button. The icon will be unlocked if you have permission to start the promotion or locked if you don't. + + + + +The promotion is unlocked. Press the promotion button to start the next pipeline. +![Promotion is unlocked](./img/promotion-unlocked.jpg) + + + + +The promotion is locked. The button is grayed out, and you can't start the next pipeline. +![Promotion is locked](./img/promotion-locked.jpg) + + + + +:::warning + +Anyone with write access to the repository can edit the pipeline file and remove the environment in the promotion. + +::: + +### Help! I can't start a promotion {#promotion-debug} + +Once a [promotion](#promotions) is targeted, you may be locked out from starting it. The most common reasons that a promotion appears as blocked are: + +- You don't have the correct permissions to deploy to the bound [environment](#overview-environments) +- You are on a Git branch, tag, or pull request that isn't allowed +- You are not logged in, or you are viewing a build of a public project +- The environment is deactivated or deleted + +### Promoting environments via API {#promotion-api} + +You can also use the [Semaphore API](../reference/api) to trigger promotions. If a promotion is forbidden by the environment, you will receive an `HTTP 400 Bad Request` response with a reason in the body. + + + +## See also + +- [Pipeline YAML reference](../reference/pipeline-yaml) +- [Promotion conditions reference](../reference/conditions-dsl) +- [Plan job and block execution with pipelines](./pipelines) diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/rbac.md b/docs/versioned_docs/version-EE-1.3/using-semaphore/rbac.md similarity index 52% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/rbac.md rename to docs/versioned_docs/version-EE-1.3/using-semaphore/rbac.md index e6a76f3bd..fdf3c3dd3 100644 --- a/docs/versioned_docs/version-CE-1.1/using-semaphore/rbac.md +++ b/docs/versioned_docs/version-EE-1.3/using-semaphore/rbac.md @@ -10,78 +10,100 @@ import Available from '@site/src/components/Available'; import VideoTutorial from '@site/src/components/VideoTutorial'; import Steps from '@site/src/components/Steps'; -Manage user permissions in your server and projects with Role Based Access Control (RBAC). This page describes gives an overview of RBAC and how to assign roles to users. + + +Manage user permissions in your server and projects with Role Based Access Control (RBAC). This page gives an overview of RBAC, how to assign roles to users and groups, and how to create custom roles. This page uses the terms organization, server, and instance interchangeably. ## Overview -Semaphore uses a RBAC model to determine what actions users can take in server and projects. +Semaphore uses an RBAC model to determine what actions users can take in server and projects. -A server [Admin](#org-admin) or [Owner](#org-owner) must invite users via their GitHub or BitBucket accounts before they can access the Semaphore server or any of the projects. +An server [Admin](#org-admin) or [Owner](#org-owner) must invite users via before they can access the Semaphore server or any of the projects. -## Role scopes {#scopes} +### Role scopes {#scopes} Semaphore manages roles on two levels: - [Server](#org): these roles allow users to perform various server actions. Users need to be added to the server before they can access projects. -- [Project](#project): these roles give access to a [project](./projects) within the server. Users need to have access to the repository connected to the project. Project roles cannot be directly assigned to users. +- [Project](#project): these roles give access to a [project](./projects) within the server. Users need to have access to the repository connected to the project. + +Roles can be gained in three ways: + +- **Direct**: you can directly assign up to one server role and one project role to the user +- **Group**: you can grant roles to [groups](#org-groups). Group members gain the role assigned to the group +- **Repository**: users may gain project permissions based on their roles in the related repository (only on GitHub) + +![RBAC authentication relations](./img/rbac-diagram.jpg) ### Permissions are additive {#additive} Permissions are additive. Users gaining permissions through multiple ways obtain the combined total of all permissions. -For example, let's say Pam has [admin](#org-admin) role in the server. This gives her unfettered access to all the projects in the server. If Kevin gives her the [reader](#project-reader) role in one project, she is still effectively admin in that project. In other words, roles never subtract permissions. +For example, let's say Pam has the [admin](#org-admin) role in the server. This gives her unfettered access to all the projects in the server. If Kevin gives her the [reader](#project-reader) role in one project, she is still effectively admin in that project. In other words, roles never subtract permissions. ## Server roles {#org} -Server roles control what actions the users may perform in Semaphore. Users need to be added to the server via their GitHub or BitBucket usernames before they can be granted a role. Only users who are part of the server can log in to Semaphore. +Server roles control what actions the users may perform in Semaphore. Users need to be added to the server before they can be granted a role. Only users who are part of the server can log in to Semaphore. The only exception is when a user is added via the [Okta integration](./okta). ### Member {#org-member} -Server members can access the homepage and the projects they are assigned to. They can't modify any settings. +Server members can access the server's homepage and the projects they are assigned to. They can't modify any settings. This is the default role assigned when a user is added to the server. Among other actions, members can: - View the server's activity +- View and manage dashboards - View and manage [notifications](./notifications) - Create [projects](./projects) +- View and manage [secrets](./secrets) - View and manage [self-hosted agents](./self-hosted) For the full list of member permissions, see [server roles](./organizations#org-roles). ### Admin {#org-admin} -Admins can modify settings within the server or any of its projects. They do not have access to billing information, and they cannot change general server details, such as the server name and URL. +Admins can modify settings within the server or any of its projects. They do not have access to billing information, and they cannot change general server details, such as the server URL. -Only Admins and Owners can invite users to the server. +Only Admins and Owners can invite users to the Semaphore server. In addition to the [member permissions](#org-member), admins can: - View and manage server settings +- View and manage the [Okta integration](./okta) - Invite users to the server - Remove people from the server +- View and manage billing plans +- View and manage [pre-flight checks](./org-preflight) +- View and manage [usage policy for secrets](./secrets#secret-access-policy) For the full list of admin permissions, see [server roles](./organizations#org-roles). ### Owner {#org-owner} -The owner of the server is the person that created it. A server can have multiple owners. Owners have access to all functionalities within the server and any of its projects. Only Admins and Owners can invite users to the server. +The owner of the server is the person that created it. An server can have multiple owners. Owners have access to all functionalities within the server and any of its projects. Only Admins and Owners can invite users to the server. For the full list of owner permissions, see [server roles](./organizations#org-roles). To remove an owner, see [how to remove an owner](https://docs.semaphoreci.com/using-semaphore/organizations#remove-owner). +### Server groups {#org-groups} + +Your server can have any number of groups. A group can have exactly one role directly assigned. + +Groups can be added to the project and assigned exactly to [project-level role](#project). This grants every member of the group access to the project and grants them all the permissions inherited from the roles. + ## Project roles {#project} Project roles control what actions the users may perform on the project. Project roles are assigned per project. To grant a user access to a given project they need to: -- Be a member of the Semaphore server -- Have access to the related repository in GitHub or BitBucket +- Be part of the Semaphore server +- Have access to the repository related to the project - Be granted access to the Semaphore project The role given when a user is added to the project depends on their repository-level role. The following table shows how repository permissions map to project roles. @@ -99,9 +121,11 @@ Readers can access the project page, and view workflows, their results, and job Readers have: - Read-only access to [artifacts](./artifacts) +- Read-only access to [deployment targets (environment)](./promotions#deployment-targets) - Read-only access to [test reports](./tests/test-reports) and [flaky tests](./tests/flaky-tests) - Read-only access to [tasks](./tasks) - View project notifications +- View project [pre-flight checks](./projects#preflight) For the full list of reader permissions, see [project roles](./projects#project-roles). @@ -113,7 +137,8 @@ In addition to the [reader permissions](#project-reader), contributors can: - Delete the project - Change project settings -- Manage [test reports](./tests/test-reports) +- Manage project [pre-flight checks](./projects#preflight) +- Manage [test reports](./tests/test-reports) and [flaky tests](./tests/flaky-tests) - Manage [tasks](./tasks) For the full list of contributor permissions, see [project roles](./projects#project-roles). @@ -122,7 +147,17 @@ For the full list of contributor permissions, see [project roles](./projects#pro Admins have the authority to modify any setting within the projects, including the ability to add new individuals or remove them. +## Custom roles {#custom-roles} + +In addition to the pre-defined roles provided by Semaphore, you can create your own custom roles. Custom roles let you follow the principle of least privilege when managing using permissions. + +To manage custom roles, see the following pages: + +- [How to manage server custom roles](./organizations#custom) +- [How to manage project custom roles](./projects#custom-roles) + ## See also -- [How to manage users](./organizations#people) +- [How to manage server users](./organizations#people) - [How to manage project access](./projects#people) +- [Okta integration](./okta) diff --git a/docs/versioned_docs/version-EE-1.3/using-semaphore/recipes/img/infracost-key-secret.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/recipes/img/infracost-key-secret.jpg new file mode 100644 index 000000000..f825c51b3 Binary files /dev/null and b/docs/versioned_docs/version-EE-1.3/using-semaphore/recipes/img/infracost-key-secret.jpg differ diff --git a/docs/versioned_docs/version-EE-1.3/using-semaphore/recipes/img/infracost-secret.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/recipes/img/infracost-secret.jpg new file mode 100644 index 000000000..38bdd2c80 Binary files /dev/null and b/docs/versioned_docs/version-EE-1.3/using-semaphore/recipes/img/infracost-secret.jpg differ diff --git a/docs/versioned_docs/version-EE-1.3/using-semaphore/recipes/infracost.md b/docs/versioned_docs/version-EE-1.3/using-semaphore/recipes/infracost.md new file mode 100644 index 000000000..ed8c227ec --- /dev/null +++ b/docs/versioned_docs/version-EE-1.3/using-semaphore/recipes/infracost.md @@ -0,0 +1,195 @@ +--- +description: Implement FinOps in your pipeline with Infracost +sidebar_position: 1 +--- + +# Infracost FinOps + +The Infracost CLI tool parses Terraform files and estimates costs for your infrastructure. + +## Overview + +This guide will show you how to: + +- Run the Infracost CLI in Semaphore +- Comment Git commits with cost deltas +- Comment pull requests with cost deltas +- Fail the CI pipeline if costs exceed a custom-defined policy + +## Prerequisites + +For this guide, you will need the following: + +- [A working Semaphore project](../projects) with a CI pipeline +- At least one [Terraform](https://developer.hashicorp.com/terraform) file in your project +- An [Infracost](https://www.infracost.io/) API key. You must sign up with a free account to obtain it +- A GitHub, Bitbucket, or GitLab API key with permission to write comments in the repository + +## Adding a baseline to the repository + +In order to estimate deviations from the expected cost, you must store a baseline file in your repository. The following command will generate `baseline.json` based on all the Terraform files found in your project folder: + +```shell +infracost breakdown --path . --format json --out-file baseline.json +``` + +Now you can push `baseline.json` into your repository. + +## Storing the API keys in secrets + +Follow the [Infracost getting started guide](https://www.infracost.io/docs/) to install the CLI tool on your machine and obtain an API key. Create a [secret](../secrets) in Semaphore to store it: + +![Infracost API key secret](./img/infracost-key-secret.jpg) + +Create a token for your Git provider: + +- **GitHub**: [create a token](https://github.com/settings/tokens) with write permissions on your repository +- **BitBucket**: [create an app password](https://support.atlassian.com/bitbucket-cloud/docs/app-passwords/) with write permissions +- **GitLab**: [create an access token](https://docs.gitlab.com/user/profile/personal_access_tokens/) with `write_repository` permissions + +Store the access token in Semaphore: + +![GitHub Token Secret](./img/infracost-secret.jpg) + +## Adding cost estimates to commits + +When Infracost runs in your CI/CD workflow, it can post comments in commits and pull requests with the estimated cost difference from the baseline or between branches. + +### Estimates on GitHub + +Before you can calculate cost differences in commits or peer reviews, you need to establish a baseline. If you have any usage-based resources such as serverless functions, you need to first create an [usage file](https://www.infracost.io/docs/features/usage_based_resources/). + +```shell +infracost breakdown --sync-usage-file --usage-file usage.yml --path . +``` + +Now, edit `usage.yml` to add your usage estimates for the moth. + +Next, you're ready to create a baseline file. Skip `--usage-file` if you're not using any usage-based cloud resources: + +```shell +infracost breakdown --path . --format json --usage-file usage.yml --out-file baseline.json +``` + +After checking in all the new files into the repository, edit the pipeline to run the cost analysis. Use the following commands in your CI job to post a comment on GitHub with the cost delta between the current commit and the baseline: + +```shell +curl -fsSL https://raw.githubusercontent.com/infracost/infracost/master/scripts/install.sh | sh +checkout +infracost diff --path . --format json --compare-to baseline.json --out-file /tmp/infracost-diff-commit.json +infracost comment github --path=/tmp/infracost-diff-commit.json --repo=$SEMAPHORE_GIT_REPO_SLUG --commit=$SEMAPHORE_GIT_SHA --github-token=$GITHUB_TOKEN --behavior=update +``` + +### Commenting on BitBucket + +Use the following command in a job to comment on BitBucket the difference in cost between the current commit and the baseline: + +```shell +curl -fsSL https://raw.githubusercontent.com/infracost/infracost/master/scripts/install.sh | sh +checkout +infracost diff --path . --format json --compare-to baseline.json --out-file /tmp/infracost-diff-commit.json +infracost comment bitbucket --path=/tmp/infracost-diff-commit.json --repo=$SEMAPHORE_GIT_REPO_SLUG --commit=$SEMAPHORE_GIT_SHA --bitbucket-token=$BITBUCKET_TOKEN --behavior=update +``` + +### Commenting on GitLab + +Use the following command in a job to comment on GitLab the difference in cost between the current commit and the baseline: + +```shell +curl -fsSL https://raw.githubusercontent.com/infracost/infracost/master/scripts/install.sh | sh +checkout +infracost diff --path . --format json --compare-to baseline.json --out-file /tmp/infracost-diff-commit.json +infracost comment gitlab --path=/tmp/infracost-diff-commit.json --repo=$SEMAPHORE_GIT_REPO_SLUG --commit=$SEMAPHORE_GIT_SHA --gitlab-token=$GITLAB_TOKEN --behavior=update +``` + +## Adding cost estimate to pull requests + +A separate job can also be created to post comment on pull requests. This allows the reviewer to quickly assess the cost changes between branches. + +### Estimates on GitHub + +The following example calculates the cost change between the master and the branch that triggered the workflow in GitHub: + +```shell +curl -fsSL https://raw.githubusercontent.com/infracost/infracost/master/scripts/install.sh | sh +checkout +git checkout master +infracost breakdown --path . --format json --out-file /tmp/infracost-master.json +git checkout FETCH_HEAD +infracost diff --path . --format json --compare-to /tmp/infracost-master.json --out-file /tmp/infracost-diff-master.json +infracost comment github --path=/tmp/infracost-diff-master.json --repo=$SEMAPHORE_GIT_REPO_SLUG --pull-request=$SEMAPHORE_GIT_PR_NUMBER --github-token=$GITHUB_TOKEN --behavior=update +``` + +### Estimates on BitBucket + +The following example calculates the cost change between the master and the branch that triggered the workflow in BitBucket: + +```shell +curl -fsSL https://raw.githubusercontent.com/infracost/infracost/master/scripts/install.sh | sh +checkout +git checkout master +infracost breakdown --path . --format json --out-file /tmp/infracost-master.json +git checkout FETCH_HEAD +infracost diff --path . --format json --compare-to /tmp/infracost-master.json --out-file /tmp/infracost-diff-master.json +infracost comment bitbucket --path=/tmp/infracost-diff-master.json --repo=$SEMAPHORE_GIT_REPO_SLUG --pull-request=$SEMAPHORE_GIT_PR_NUMBER --bitbucket-token=$BITBUCKET_TOKEN --behavior=update +``` + +### Estimates on GitLab + +The following example calculates the cost change between the master and the branch that triggered the workflow in GitLab: + +```shell +curl -fsSL https://raw.githubusercontent.com/infracost/infracost/master/scripts/install.sh | sh +checkout +git checkout master +infracost breakdown --path . --format json --out-file /tmp/infracost-master.json +git checkout FETCH_HEAD +infracost diff --path . --format json --compare-to /tmp/infracost-master.json --out-file /tmp/infracost-diff-master.json +infracost comment gitlab --path=/tmp/infracost-diff-master.json --repo=$SEMAPHORE_GIT_REPO_SLUG --pull-request=$SEMAPHORE_GIT_PR_NUMBER --gitlab-token=$GITLAB_TOKEN --behavior=update +``` + +## Enforcing policies + +Infracost can be used to enforce cost policies with continuous integration. When a policy is used, the Infracost CLI will return a non-zero exit status, stopping the pipeline and preventing a deployment that would run over the budget. + +First, we must create a policy file and push it into the repository. To learn about the policy syntax, read the [cost policies docs](https://www.infracost.io/docs/features/cost_policies/) on Infracost. + +The following example sets a maximum budget of USD 1000 per month: + +```rego +# policy.rego + +package infracost + +deny[out] { + + # define a variable + maxMonthlyCost = 1000.0 + + msg := sprintf( + "Total monthly cost must be less than $%.2f (actual cost is $%.2f)", + [maxMonthlyCost, to_number(input.totalMonthlyCost)], + ) + + out := { + "msg": msg, + "failed": to_number(input.totalMonthlyCost) >= maxMonthlyCost + } +} +``` + +To evaluate the policy file, you must add the `--policy-path POLICY_FILENAME` option to any of the comment commands. For example: + +```shell +# calculate difference between commit and baseline +infracost diff --path . --format json --compare-to baseline.json --out-file /tmp/infracost-diff-commit.json + +# enforce policy +infracost comment github --path=/tmp/infracost-diff-commit.json --repo=$SEMAPHORE_GIT_REPO_SLUG --commit=$SEMAPHORE_GIT_SHA --github-token=$GITHUB_API_KEY --behavior=update +``` + +## Tips for using Infracost + +- You can use [monorepo conditions](../monorepo) like `change_in('/**/*.tf')` or `change_in('/**/*.tfvars')` to run Infracost only when Terraform files change +- You can create a [config file](https://www.infracost.io/docs/features/config_file/) manage [monorepo workflows](../monorepo) provide utilization forecast for per-usage services such as AWS lambda +- You can add a [badge](https://www.infracost.io/docs/infracost_cloud/readme_badge/) to your repository with the estimated monthly cost diff --git a/docs/versioned_docs/version-EE-1.3/using-semaphore/recipes/trivy.md b/docs/versioned_docs/version-EE-1.3/using-semaphore/recipes/trivy.md new file mode 100644 index 000000000..af92c3bed --- /dev/null +++ b/docs/versioned_docs/version-EE-1.3/using-semaphore/recipes/trivy.md @@ -0,0 +1,152 @@ +--- +description: Open source security scans in your CI pipelines +sidebar_position: 2 +--- + +# Trivy Vulnerability Scanning + +import Tabs from '@theme/Tabs'; +import TabItem from '@theme/TabItem'; +import Available from '@site/src/components/Available'; +import VideoTutorial from '@site/src/components/VideoTutorial'; +import Steps from '@site/src/components/Steps'; + +This page explains how to run the open source [Trivy security scanner](https://github.com/aquasecurity/trivy) in Semaphore. + +## Overview + +Trivy is a comprehensive security scanner that detects various security issues across different targets. + +It can scan: + +- container images +- software dependencies +- Git repositories +- VM images and OS packages +- Kubernetes environments +- Infrastructure-as-Code (IaC) files +- filesystems for misconfigurations, leaked secrets, and license check + +Trivy works with most programming languages and operating systems. You can check if your stack is supported in the [Trivy scanning coverage page](https://trivy.dev/latest/docs/coverage/). + +## Install Trivy in Semaphore {#install} + +You must install Trivy in the CI environment or use a Docker image with Trivy already installed. + +To install Trivy in your CI environment, follow these steps: + + + +1. Find the [latest Trivy release](https://github.com/aquasecurity/trivy/releases) +2. Install Trivy using the package manager (or build from source) + + ```shell + # replace with the latest release + wget https://github.com/aquasecurity/trivy/releases/download/v0.65.0/trivy_0.65.0_Linux-32bit.deb + sudo dpkg -i trivy_0.65.0_Linux-32bit.deb + ``` + +3. Run Trivy to scan your project. Use the `--exit-code 1` option to exit with error when the scan detects a problem + + For example: + + ```shell + checkout + trivy fs --exit-code 1 . + ``` + + + +You must repeat Step 2 in every job that uses Trivy. Use the [prologue](../pipelines#prologue) if multiple jobs require Trivy. + +## Enabling the cache {#cache} + +Trivy keeps the last scans and vulnerability database in a local folder in the CI environment. You can speed up scanning jobs by caching this directory. + +Trivy stores its database in `$HOME/.cache/trivy` by default, you can change it by specifing the [`--cache-dir`](https://trivy.dev/latest/docs/configuration/cache/) option. To persist this directory, use the [cache](../cache) command. + +The following example runs a [file scan](#files) using the cache: + +```shell +cache restore trivy-db +trivy fs --exit-code 1 . +cache store trivy-db $HOME/.cache/trivy +``` + +You can use this pattern with all types of scanning. + +## Scan Files {#files} + +Trivy filesystem scan finds problems in your local directories. In the CI environment, you must run [`checkout`](../../reference/toolbox#checkout) to clone the repository in the CI machine. + +To run filesystem scan use `trivy fs`. +Filesystem scan can find: + +- vulnerabilies +- misconfigurations +- leaked secrets +- license checks + +### Vulnerabilities and leaked secrets {#vulnerabilities} + +To find vulnerabilities or leaked secrets in your code or dependencies, execute `trivy fs` as follows: + +```shell +checkout +trivy fs --exit-code 1 path/to/src +``` + +### Misconfigurations {#misconfigurations} + +By default, Trivy doesn't try to find misconfigurations, to enable this option, follow this example: + +```shell +checkout +trivy --scanners misconfig --exit-code 1 path/to/src +``` + +### License {#license} + +To perform [license scanning](https://trivy.dev/latest/docs/scanner/license/) execute Trivy as follows: + +```shell +checkout +trivy fs --scanners license --exit-code 1 path/to/src +``` + +## Scan Container images + +To scan your container images, including OS packages, use the following command. You might need to [authenticate with the Docker registry](../containers/docker#auth) first. + +```shell +docker pull IMAGE_NAME:TAG +trivy image --exit-code 1 IMAGE_NAME:TAG +``` + +As with filesystem scans, you can enable [misconfigurations](#misconfigurations) and [license](#license) scans in the container image. + +## Generate SBOM + +Trivy can generate a [Software Bill of Materials (SBOM)](https://trivy.dev/latest/docs/supply-chain/sbom/). + +For example, these command generate the SBOM using the CycloneDX format: + +```shell +checkout +trivy fs --format cyclonedx --output sbom.json path/to/src +artifact push workflow sbom.json +``` + +You can also generate SBOMs for Docker images with: + +```shell +docker pull IMAGE_NAME:TAG +trivy image --format cyclonedx --output sbom.json IMAGE_NAME:TAG +artifact push workflow sbom.json +``` + +## See also + +- [Trivy repository](https://github.com/aquasecurity/trivy) +- [Trivy Documentation](https://trivy.dev/latest/docs/) +- [Continuous Container Vulnerability Testing with Trivy](https://semaphore.io/blog/continuous-container-vulnerability-testing-with-trivy#h-vulnerability-testing-for-dependencies) diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/secrets.md b/docs/versioned_docs/version-EE-1.3/using-semaphore/secrets.md similarity index 78% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/secrets.md rename to docs/versioned_docs/version-EE-1.3/using-semaphore/secrets.md index 4e95f703d..218b65ba1 100644 --- a/docs/versioned_docs/version-CE-1.2/using-semaphore/secrets.md +++ b/docs/versioned_docs/version-EE-1.3/using-semaphore/secrets.md @@ -23,10 +23,11 @@ Secrets implement two types of values: - **Variables**: key-value pairs available as environment variables in jobs - **Files**: arbitrary files injected into the job environment at a specified path -Secrets can be created in two scopes: +Secrets can be created in three scopes: -- [Server](./organizations): server secrets are available to all projects in your Semaphore instance +- [Server](./organizations): server secrets are available to all projects in your server - [Project](./projects): project secrets are available only to a single project +- [Environment credentials](./promotions#credentials): environment credentials are available only to pipelines targeted by [deployment targets (environments)](./promotions#deployment-targets)
How are secret collisions managed? @@ -34,6 +35,7 @@ Secrets can be created in two scopes: A collision happens when secrets with the same name are defined on multiple levels. Collisions are resolved by giving precedence to the narrowest scope. In other words: +- Environment credentials always take precedence - Project secrets win over server secrets - Server secrets take the least precedence @@ -42,13 +44,15 @@ A collision happens when secrets with the same name are defined on multiple leve ## How to create server secrets {#org-secrets} -Server secrets are available to all the [projects](./projects) in the Semaphore instance. You can create secrets using either the UI or the command line. +Server secrets are available to all the [projects](./projects) in the server. For more granular control, set up [secret access policies](#secret-access-policy) or use [environment credentials](./promotions#credentials). + +You can create secrets using either the UI or the command line. -To create an server secret, go to the [organization settings](./organizations#general-settings) and: +To create an server secret, go to the [server settings](./organizations#general-settings) and: @@ -56,7 +60,7 @@ To create an server secret, go to the [organization settings](./organizations#ge 1. Select **Secrets** 2. Press **New Secret** - ![Server secrets menu](./img/organization-secrets-menu.jpg) + ![server secrets menu](./img/organization-secrets-menu.jpg) 3. Enter the name of the secret 4. Add an optional description @@ -64,7 +68,7 @@ To create an server secret, go to the [organization settings](./organizations#ge 6. Add more variables as needed 7. To add a file, specify the path and upload the file 8. Add more files as needed -9. Press **Save secret** +9. Press **Save secret** or proceed to [access policy](#secret-access-policy) ![Creating a new server secret](./img/save-secret.jpg) @@ -77,24 +81,24 @@ To create a secret using the Semaphore command-line tool, use: ```shell title="Creating a secret" sem create secret \ - -e = \ - -f : + -e = \ + -f : ``` You can define multiple environment variables at once using: ```shell title="Defining multiple variables example" sem create secret awskey \ - -e AWS_ACCESS_KEY_ID=your-value \ - -e AWS_SECRET_KEYID=your-value + -e AWS_ACCESS_KEY_ID=your-value \ + -e AWS_SECRET_KEYID=your-value ``` In addition, you can upload multiple files as secrets using: ```shell title="Creating multiple secret files example" sem create secret sshkeys \ - -f $HOME/.ssh/id_rsa:/home/semaphore/.ssh/id_rsa \ - -f $HOME/.ssh/id_rsa.pub:/home/semaphore/.ssh/id_rsa.pub + -f $HOME/.ssh/id_rsa:/home/semaphore/.ssh/id_rsa \ + -f $HOME/.ssh/id_rsa.pub:/home/semaphore/.ssh/id_rsa.pub ``` To view all server secrets, use: @@ -142,9 +146,26 @@ To create secrets with the Semaphore API, see the [API reference](../reference/a -## How to create project secrets {#create-project-secrets} +### Access policy {#secret-access-policy} + + + +Access policies allow you to control how and who can use [server secrets](#org-secrets). + +You can apply a policy at three levels: - +- **Projects**: the secret is available to all, none, or a list of specified projects +- **Debug Sessions**: individuals connecting with a [debug session](./jobs#debug-jobs) can view the contents of the secrets. You can disable debug sessions for jobs using this secret +- **Attaching to jobs**: similarly, [attaching to a running job](./jobs#attach-job) can expose secrets. Disabling this option prevents the secret from being viewed + +
+Show me +
+![Managing access policies for secrets](./img/secrets-access-policy.jpg) +
+
+ +## How to create project secrets {#create-project-secrets} Project secrets are only available to the [project](./projects) they are tied to. @@ -254,6 +275,12 @@ To create secrets with the Semaphore API, see the [Semaphore API](../reference/a +## Deployment Targets credentials {#dt-credentials} + +Deployment target (environment) credentials are active only for specific pipelines attached to those environments. + +For more information, see [promotions and environments](./promotions#credentials). + ## Private repositories and dependencies {#private-dependencies} Sometimes, you need to access dependencies from private Git repositories. Dependency managers like Bundler, Yarn, and Go modules can access private repositories if you provide an authenticated SSH key in your CI job. diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/self-hosted-aws.md b/docs/versioned_docs/version-EE-1.3/using-semaphore/self-hosted-aws.md similarity index 99% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/self-hosted-aws.md rename to docs/versioned_docs/version-EE-1.3/using-semaphore/self-hosted-aws.md index 92b95b966..01b0db3f9 100644 --- a/docs/versioned_docs/version-CE-1.2/using-semaphore/self-hosted-aws.md +++ b/docs/versioned_docs/version-EE-1.3/using-semaphore/self-hosted-aws.md @@ -275,7 +275,7 @@ See the [AWS stack parameters reference](../reference/agent-aws-stack) for all t ### Cache -See [setting up S3 cache](./optimization/cache#aws) to learn how to configure cache with AWS S3 buckets. +See [setting up S3 cache](./cache#aws) to learn how to configure cache with AWS S3 buckets. ### Autoscaling {#scale} diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/self-hosted-configure.md b/docs/versioned_docs/version-EE-1.3/using-semaphore/self-hosted-configure.md similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/self-hosted-configure.md rename to docs/versioned_docs/version-EE-1.3/using-semaphore/self-hosted-configure.md diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/self-hosted-install.md b/docs/versioned_docs/version-EE-1.3/using-semaphore/self-hosted-install.md similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/self-hosted-install.md rename to docs/versioned_docs/version-EE-1.3/using-semaphore/self-hosted-install.md diff --git a/docs/versioned_docs/version-CE-1.1/using-semaphore/self-hosted.md b/docs/versioned_docs/version-EE-1.3/using-semaphore/self-hosted.md similarity index 98% rename from docs/versioned_docs/version-CE-1.1/using-semaphore/self-hosted.md rename to docs/versioned_docs/version-EE-1.3/using-semaphore/self-hosted.md index e8c451233..d30171ad6 100644 --- a/docs/versioned_docs/version-CE-1.1/using-semaphore/self-hosted.md +++ b/docs/versioned_docs/version-EE-1.3/using-semaphore/self-hosted.md @@ -59,7 +59,6 @@ Self-hosted agents use one-way communication to connect with Semaphore. Requests When the agent boots up it sends a register request using a registration token. If the registration succeeds, the agent receives an access token to be used in all future communications and enters the *waiting for job* state. - ```mermaid sequenceDiagram Agent->>+Semaphore: GET /register(registrationToken) @@ -130,7 +129,7 @@ Not all of the [Semaphore toolbox](../reference/toolbox) commands are available | Feature | Available | Notes | |---------------------------------------------|-----------|-------------------------------------------------| -| Using the [cache](../reference/toolbox#cache) | Optional | Using [S3](./optimization/cache#aws), [GCP](./optimization/cache#gcp), or [SFTP](./optimization/cache#sftp) as a storage backend | +| Using the [cache](../reference/toolbox#cache) | Optional | Using [S3](./cache#aws), [GCP](./cache#gcp), or [SFTP](./cache#sftp) as a storage backend | | [Artifact](./artifacts) storage | Yes | | | [Test results](./tests/test-reports) | Yes | | | Checking code with [checkout](../reference/toolbox#checkout) | Yes | | @@ -223,4 +222,3 @@ Keep in mind that: - [How to configure self-hosted agents](./self-hosted-configure) - [How to run an autoscaling fleet of agents in AWS](./self-hosted-aws) - [Self-hosted agents configuration reference](../reference/self-hosted-config) - diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/tasks.md b/docs/versioned_docs/version-EE-1.3/using-semaphore/tasks.md similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/tasks.md rename to docs/versioned_docs/version-EE-1.3/using-semaphore/tasks.md diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/tests/_category_.json b/docs/versioned_docs/version-EE-1.3/using-semaphore/tests/_category_.json similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/tests/_category_.json rename to docs/versioned_docs/version-EE-1.3/using-semaphore/tests/_category_.json diff --git a/docs/versioned_docs/version-EE-1.3/using-semaphore/tests/flaky-tests.md b/docs/versioned_docs/version-EE-1.3/using-semaphore/tests/flaky-tests.md new file mode 100644 index 000000000..21ef7663d --- /dev/null +++ b/docs/versioned_docs/version-EE-1.3/using-semaphore/tests/flaky-tests.md @@ -0,0 +1,337 @@ +--- +description: Find unreliable tests +sidebar_position: 3 +--- + +# Flaky Tests + +import Tabs from '@theme/Tabs'; +import TabItem from '@theme/TabItem'; +import Available from '@site/src/components/Available'; +import VideoTutorial from '@site/src/components/VideoTutorial'; +import Steps from '@site/src/components/Steps'; + + + +The flaky test dashboard shows unreliable tests in your [projects](../projects). This page explains how they work and how to interpret the flaky test dashboard. + +## Overview {#overview} + +The flaky test tab helps you find flaky tests in your suite. Flaky tests are tests that fail seemingly random without any obvious cause. Identify flaky tests to improve the reliability of your pipeline. + +
+What is the definition of flaky tests? +
+ +A test is considered flaky when one of these conditions happen: + +- The test produces different results for the same Git commit +- A passing test that begins to behave unreliably once merged into a branch + +
+
+ +![The flaky test dashboard](./img/flaky-test-ui-overview.jpg) + +## How to set up flaky detection {#setup} + +Flaky test detection is automatically enabled once [test reports](./test-reports) are configured. No additional steps are needed to set up flaky tests. + +:::note + +It may take a few pipeline runs before flaky tests begin to appear in the flaky test tab + +::: + +## How to view flaky tests {#view} + +Open your [project](../projects) on Semaphore and go to the **Flaky tests** tab. + +![The flaky test tab location in Semaphore](./img/flaky-test-tab.jpg) + +The dashboard shows: + +- A. Create notification button (bell icon) +- B. Edit filters buttons +- C. Saved filters +- D. The current filter +- E. New flaky tests found in the filtered view +- F. Flaky test disruptions by date in the filtered view +- G. The list of flaky tests + +![Flaky dashboard elements](./img/flaky-dashboard-elements.jpg) + +## Charts {#charts} + +The **New Flaky Tests** show new flaky tests detected in the [selected period](#filters). + +The **Disruptions Caused by a Flaky Test** shows how many times a flaky test failed disrupting your test suite in the selected period. + +![Flaky tests charts](./img/flaky-tests-charts.jpg) + +You can switch between daily occurrences and cumulative views on both charts. + +## Filtering the view {#filters} + +You can define, edit, and save filters to view the flaky test data in different ways. + +### How to create a filter {#create-filters} + +To create a filter, type the [filter key](#filter-keys) in the filter box and press Enter/Return. The view will reload with the new data. + +Once you have filter key you like, you can save it by: + + + +1. Pressing the Create new filter button +2. Typing your filter name +3. Pressing **Save** + + ![Creating filters](./img/creating-filters.jpg) + + + + +### Filter keys {#filter-keys} + +You can combine multiple filter keys to create a filter that suits your needs. The available filter keys are: + +| Filter key | Filter Name | Filter Type | +| :--------------: | :-----------------: | :-----------------: | +| @git.branch | Git branch | [text](#text) | +| @git.commit_sha | Git commit sha | [text](#text) | +| @test.name | Test name | [text](#text) | +| @test.group | Group that the test is assigned to | [text](#text) | +| @test.file | Test file | [text](#text) | +| @test.class.name | Name of the test class | [text](#text) | +| @test.suite | Name of the test suite | [text](#text) | +| @test.runner | Name of the test runner | [text](#text) | +| @metric.age | Time passed (days) since first flake | [numeric](#numeric) | +| @metric.pass_rate | Pass rate of a test | [numeric](#numeric) | +| @metric.disruptions | Number of disruptions of a test | [numeric](#numeric) | +| @label | Assigned label of the test | [text](#text) | +| @is.resolved | Filter by resolved or unresolved tests | [boolean](#boolean) | +| @is.scheduled | Filter by scheduled or unscheduled tests | [boolean](#boolean) | +| @date.from | Starting date range | [text](#text) | +| @date.to | End of filtering range | [text](#text) | + +### Text filter keys {#text} + +Text filters allow you to specify values using alphanumeric characters. Wildcards (`*` or `%`) can be used to match patterns. + +Examples include: + +- Test name: `@test.name:"TestAPI"` +- Git branch: `@git.branch:main` +- Test runner: `@test.runner:"golang"` +- [labels](#labels): `@label:"new"` + +The `@date.from` and `@date.to` are special cases of text keys. This keys accept: + +- Values in ISO date format: `YYYY-MM-DD` +- Values from now: `now-30d` or `now-10d` + +### Numeric filter keys {#numeric} + +Numeric keys allow you to filter based on numerical values. + +Numeric keys accept: + +- Greater than (`>`) +- Less than (`<`) +- Equal to (`=`) +- Not equal to (`!=`) +- Greater than or equal to (`>=`) +- Less than or equal to (`<=`) + +Examples include: + +- Test age: `@metric.age:<10` shows tests less than 10 days old +- Disruptions: `@metric.disruptions:>30` show tests with more than 30 disruptions +- Pass rate: `@metric.pass_rate:>20` shows tests with greater than 20% pass rate + +### Boolean filter keys {#boolean} + +Boolean keys accept `true` or `false`. + +Examples of binary filter keys are: + +- Tests not [marked as resolved](#actions): `@is.resolved:false` +- Test without [associated tickets](#actions): `@is.scheduled:false` + +## Taking actions on tests {#actions} + +The lower part of the flaky test dashboard shows the tests detected. + +![Flaky test actions](./img/flaky-test-actions.jpg) + +You can take the following actions on these: + +- Add labels to a flaky test +- Mark test as [resolved](#resolved) +- Link test with a [ticket](#ticket) + +### Adding labels {#labels} + +To add labels to a flaky test: + + + +1. Press the **+Add label** button +2. Type the label +3. Press **OK** + + + +To add more labels, repeat the same steps. You can have up to three labels per test. + +![Adding labels to flaky tests](./img/add-label.jpg) + +You can now use the `@label` [key](#filters) to filter tickets by label. In addition, clicking on the label shows a filtered view with all the tests linked to the same label. + +### Marking tests as resolved {#resolved} + +Test marked as resolved test won't be shown by default. Can be filtered in back again with the `@is.resolved: true` [filter key](#boolean). You can also unmark the test to show it again in the default view + +### Link test to a ticket {#ticket} + +Pressing the **Open ticket** action button lets you link the test to an issue. Linked tickets can be filtered with the `@is.scheduled:true` [filter key](#boolean). + +To use this feature, create a ticket in your tool of choice, e.g. GitHub and: + + + +1. Copy and paste the ticket URL +2. Press **Save** + + + +The ticket window shows details on Markdown you can use to create your ticket. + +![Linking a ticket to a flaky test](./img/create-ticket.jpg) + +You can also unlink a test from the issue from this window. + +## Detailed view {#details} + +Clicking on a flaky test opens the detailed view for that test. + +You can take the same [actions](#actions) in this windows. You can add labels, mark as resolved, and link to a ticket. + +You also ll find aggregated data detailing the impact of the selected flaky test, such as the P95 runtime, total number of runs, and the pass rate of the test. In addition, you can see the last flaky disruptions in the for the test. + +![Detailed view for a flaky test](./img/flaky-test-detailed-view.jpg) + +## Notifications {#notifications} + +You can send webhook-based notifications when new flaky test is detected. + +Notifications can be enabled from the main Flaky Test dashboard: + + + +1. Press the bell icon +2. Enter the webhook url, only HTTPs is allowed +3. Optionally, type the branch names for which you want to receive notifications. Leave blank to enable all branches +4. Press **Activate** +5. Press **Save** + + ![Enabling notifications for flaky tests](./img/flaky-test-notifications.jpg) + + + +:::note + +You can use basic regular expressions in the branches field. For example, you can use patterns like `release-*` or `.*.`. If you wish to specify multiple branches, you can separate them using a comma. + +The branches field has a limit of 100 characters. + +::: + +### Notification payload + +When notifications are enabled, Semaphore sends an HTTPs POST request with `Content-Type: application/json` and the schema shown below. The endpoint show return a 2XX response status code. + +If the endpoint doesn't respond with a 2XX code, Semaphore attempts to resend the request four additional times using an exponential backoff strategy. + +The notification sends a JSON payloads like the example shown below: + +```json +{ + "id": "a01e9b47-7e3c-4165-9007-8a3c1652b31a", + "project_id": "4627d711-4aa2-xe1e-bc5c-e0f4491b8735", + "test_id": "3177e680-46ac-4c39-b9fa-02c4ba71b644", + "branch_name": "main", + "test_name": "Test 1", + "test_group": "Elixir.Calculator.Test", + "test_file": "calculator_test.exs", + "test_suite": "suite1", + "created_at": "2025-03-22T18:24:34.479219+01:00", + "updated_at": "2025-03-22T18:24:34.479219+01:00" +} +``` + +
+Notification schema +
+ +The complete schema for the notification is shown below: + +```yaml +type: object +properties: + id: + type: string + format: uuid + example: "a01e9b47-7e3c-4165-9007-8a3c1652b31a" + project_id: + type: string + format: uuid + example: "4627d711-4aa2-xe1e-bc5c-e0f4491b8735" + test_id: + type: string + format: uuid + example: "3177e680-46ac-4c39-b9fa-02c4ba71b644" + branch_name: + type: string + example: "main" + test_name: + type: string + example: "Test 1" + test_group: + type: string + example: "Elixir.Calculator.Test" + test_file: + type: string + example: "calculator_test.exs" + test_suite: + type: string + example: "suite1" + created_at: + type: string + format: date-time + example: "2025-03-22T18:24:34.479219+01:00" + updated_at: + type: string + format: date-time + example: "2025-03-22T18:24:34.479219+01:00" +required: + - id + - project_id + - test_id + - branch_name + - test_name + - test_group + - test_file + - test_suite + - created_at + - updated_at +``` + +
+
+ +## See also + +- [How to configure test reports](./test-reports) +- [How to set up Slack notifications](../organizations#slack-notifications) diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/tests/img/add-label.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/tests/img/add-label.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/tests/img/add-label.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/tests/img/add-label.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/tests/img/build-info.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/tests/img/build-info.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/tests/img/build-info.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/tests/img/build-info.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/tests/img/code-coverage-go.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/tests/img/code-coverage-go.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/tests/img/code-coverage-go.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/tests/img/code-coverage-go.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/tests/img/create-ticket.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/tests/img/create-ticket.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/tests/img/create-ticket.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/tests/img/create-ticket.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/tests/img/creating-filters.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/tests/img/creating-filters.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/tests/img/creating-filters.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/tests/img/creating-filters.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/tests/img/dependencies.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/tests/img/dependencies.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/tests/img/dependencies.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/tests/img/dependencies.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/tests/img/flaky-dashboard-elements.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/tests/img/flaky-dashboard-elements.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/tests/img/flaky-dashboard-elements.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/tests/img/flaky-dashboard-elements.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/tests/img/flaky-test-actions.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/tests/img/flaky-test-actions.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/tests/img/flaky-test-actions.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/tests/img/flaky-test-actions.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/tests/img/flaky-test-detailed-view.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/tests/img/flaky-test-detailed-view.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/tests/img/flaky-test-detailed-view.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/tests/img/flaky-test-detailed-view.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/tests/img/flaky-test-notifications.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/tests/img/flaky-test-notifications.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/tests/img/flaky-test-notifications.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/tests/img/flaky-test-notifications.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/tests/img/flaky-test-tab.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/tests/img/flaky-test-tab.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/tests/img/flaky-test-tab.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/tests/img/flaky-test-tab.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/tests/img/flaky-test-ui-overview.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/tests/img/flaky-test-ui-overview.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/tests/img/flaky-test-ui-overview.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/tests/img/flaky-test-ui-overview.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/tests/img/flaky-tests-charts.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/tests/img/flaky-tests-charts.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/tests/img/flaky-tests-charts.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/tests/img/flaky-tests-charts.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/tests/img/job-report.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/tests/img/job-report.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/tests/img/job-report.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/tests/img/job-report.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/tests/img/markdown-reports-dependencies-example.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/tests/img/markdown-reports-dependencies-example.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/tests/img/markdown-reports-dependencies-example.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/tests/img/markdown-reports-dependencies-example.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/tests/img/resource-metrics.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/tests/img/resource-metrics.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/tests/img/resource-metrics.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/tests/img/resource-metrics.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/tests/img/resource.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/tests/img/resource.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/tests/img/resource.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/tests/img/resource.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/tests/img/test-report-after-pipeline-job.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/tests/img/test-report-after-pipeline-job.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/tests/img/test-report-after-pipeline-job.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/tests/img/test-report-after-pipeline-job.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/tests/img/test-report-publish.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/tests/img/test-report-publish.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/tests/img/test-report-publish.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/tests/img/test-report-publish.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/tests/img/test-reports-display.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/tests/img/test-reports-display.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/tests/img/test-reports-display.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/tests/img/test-reports-display.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/tests/img/test-reports-failed.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/tests/img/test-reports-failed.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/tests/img/test-reports-failed.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/tests/img/test-reports-failed.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/tests/img/test-reports-sort.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/tests/img/test-reports-sort.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/tests/img/test-reports-sort.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/tests/img/test-reports-sort.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/tests/img/test-reports-steps.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/tests/img/test-reports-steps.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/tests/img/test-reports-steps.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/tests/img/test-reports-steps.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/tests/img/test-reports-tab-location.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/tests/img/test-reports-tab-location.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/tests/img/test-reports-tab-location.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/tests/img/test-reports-tab-location.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/tests/img/test-reports-tab.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/tests/img/test-reports-tab.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/tests/img/test-reports-tab.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/tests/img/test-reports-tab.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/tests/img/test-reports-tabs.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/tests/img/test-reports-tabs.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/tests/img/test-reports-tabs.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/tests/img/test-reports-tabs.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/tests/img/timeline.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/tests/img/timeline.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/tests/img/timeline.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/tests/img/timeline.jpg diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/tests/img/workflow-reports.jpg b/docs/versioned_docs/version-EE-1.3/using-semaphore/tests/img/workflow-reports.jpg similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/tests/img/workflow-reports.jpg rename to docs/versioned_docs/version-EE-1.3/using-semaphore/tests/img/workflow-reports.jpg diff --git a/docs/versioned_docs/version-EE-1.3/using-semaphore/tests/markdown-reports.md b/docs/versioned_docs/version-EE-1.3/using-semaphore/tests/markdown-reports.md new file mode 100644 index 000000000..f28608a9c --- /dev/null +++ b/docs/versioned_docs/version-EE-1.3/using-semaphore/tests/markdown-reports.md @@ -0,0 +1,285 @@ +--- +description: Create customized reports +sidebar_position: 1 +--- + +# Markdown Reports + +import Tabs from '@theme/Tabs'; +import TabItem from '@theme/TabItem'; +import Available from '@site/src/components/Available'; +import VideoTutorial from '@site/src/components/VideoTutorial'; +import Steps from '@site/src/components/Steps'; + +Create rich custom reports and view them right next to your workflows and jobs. + +## Overview {#overview} + +The new Reports tab makes it easy to add clear, custom markdown reports right inside your job and workflow pages. You can include charts, summaries, and extra details without leaving Semaphore, so sharing build results and pipeline information is simpler. + +Markdown Reports feature: + +- **Fully rendered Markdown**: view Markdown files directly in the workflow or job pages, which are fully formatted for easy reading. +- **Mermaid.js support**: create live charts and diagrams to show your pipeline steps with [Mermaid.js](https://mermaid.js.org/) +- **Quick report generation** : use the [test-results](../../reference/toolbox#test-results) CLI to make basic job reports in seconds +- **Fully customizable**: include test results, deployment notes, or any other information you need to organize and explain your CI/CD process + +For example, you can use them to show information about your build. + +![Build info report](./img/build-info.jpg) + +You can even use images in your reports. The following PNG image has been generated with [dependency cruiser](https://github.com/sverweij/dependency-cruiser). + +![Embedded Image](./img/markdown-reports-dependencies-example.jpg) + +See the [examples](#examples) to learn how we generated these reports. + +## How to create reports {#create} + +To use this feature, you must create an [artifact](../artifacts) on the following path: `.semaphore/REPORT.md`. The file must be formatted using Markdown. + +You can create a [Job](../jobs) report with: + +```shell +artifact push job -d .semaphore/REPORT.md your-custom-report-file.md +``` + +To create a [Workflow](../workflows) report, use: + +```shell +artifact push workflow -d .semaphore/REPORT.md your-custom-report-file.md +``` + +Notice the use of the [--destination (-d) argument](../../reference/toolbox#artifact) to upload the report file into the expected path. + +## How to view reports {#view} + +To view workflow reports, open the workflow and select the **Report** tab. + +![Workflow reports tab location](./img/workflow-reports.jpg) + +To view a job report, open the workflow, then go to the job you're interested in and select the **Report** tab. + +![Job reports tab location](./img/job-report.jpg) + + +:::info + +If the reports tab is empty, check the following: + +- That you are uploading the report to the correct artifact namespace, i.e., `artifact push workflow` vs `artifact push job` +- That you are using the `--destination` or `-d` argument to upload the report with the name `.semaphore/REPORT.md` + +There are no project-level reports. Only workflows and jobs show the report tab. + +::: + +## Examples {#examples} + +This section contains examples of how to dynamically generate reports in your pipelines. You may use these as a starting point for your reporting needs. You can produce complex reports by concatenating these examples into a single Markdown file. + +### Static reports {#static} + +If you have a Markdown file you want to show as-is on the reports tabs, simply upload it as an artifact with: + +```shell +checkout +artifact push workflow -d .semaphore/REPORT.md README.md +``` + +### Environment variables {#env-vars} + +You can use environment variables in your source Markdown file, for example: + +```markdown title="build-info-template.md" +# Build information + +- Agent type: ${SEMAPHORE_AGENT_MACHINE_ENVIRONMENT_TYPE} +- OS Image: ${SEMAPHORE_AGENT_MACHINE_OS_IMAGE} +- Machine: ${SEMAPHORE_AGENT_MACHINE_TYPE} +- Git Branch: ${SEMAPHORE_GIT_BRANCH} +- Commit author: ${SEMAPHORE_GIT_COMMIT_AUTHOR} +``` + +To expand the values of the variables during job execution, you may use `envsubst` in your job command. The following example exposes valuable information about the job found in [Semaphore environment variables](../../reference/env-vars): + +```shell +checkout +envsubst < build-info-template.md > build-info.md +artifact push job -d .semaphore/REPORT.md build-info.md +``` + +The report tab should show a report similar to this: + +![Build info report](./img/build-info.jpg) + +### Adding images {#images} + +Local images in Markdown Reports do not work. For example, using `![Alt text](report.png)` only shows a broken image. + +To use images in your report, you have two options: + +- **Remote storage**: upload the image to a remote server, such as Google Bucket, and using the full URL + + You can use the following commands to upload `image.png` to a Google Cloud and show it remotely on your report. You must ensure the bucket permissions allow public access for this to work. + + ```shell + gsutil cp image.png gs://my-unique-bucket-name/ + echo "# My image" > image.md + echo "![Alt Text](https://storage.googleapis.com/my-unique-bucket-name/image.png) + artifact push job -d .semaphore/REPORT.md image.md + ``` + +- **Base64 encoded images**: Markdown supports embedding images as base64 encoded strings. This is less efficient, but it does not rely on external services to work + + You can use the following commands to encode `image.png` inside the Markdown report: + + ```shell + echo "# My image " > image.md + echo '![Alt Text](data:image/png;base64,'$(base64 -i image.png -w 0)')' >> image.md + artifact push job -d .semaphore/REPORT.md image.md + ``` + +### Coverage report for Go {#coverage} + +The following example shows how to implement code coverage for Go projects: + +```shell +go install github.com/jandelgado/gcov2lcov@latest +go install github.com/securego/gosec/v2/cmd/gosec@v2.19.0 +go install golang.org/x/lint/golint@latest +go test -coverprofile=c.out ./... +gcov2lcov -infile=c.out -outfile=coverage.lcov +scripts/lcov-to-md +artifact push workflow -d .semaphore/REPORT.md COVERAGE.md +``` + +In the example, we use `lcov-to-md` to convert the Go coverage report to Markdown. These are the contents of the script: + +```shell title="lcov-to-md" +#!/bin/bash + +LCOV_FILE="coverage.lcov" +OUTPUT_FILE="COVERAGE.md" + +# Git info +BRANCH=${SEMAPHORE_GIT_BRANCH:-$(git rev-parse --abbrev-ref HEAD)} +COMMIT=$(git rev-parse HEAD) +AUTHOR=$(git log -1 --pretty=format:'%an') +DATE=$(git log -1 --pretty=format:'%ad') +MESSAGE=$(git log -1 --pretty=format:'%s') +CHANGED_FILES=$(git diff-tree --no-commit-id --name-only -r HEAD) + +# Temp file for sorting +TMP_FILE=$(mktemp) + +OVERALL_TOTAL=0 +OVERALL_COVERED=0 +CURRENT_FILE="" +FILE_TOTAL=0 +FILE_COVERED=0 + +while IFS= read -r line; do + case "$line" in + SF:*) + CURRENT_FILE=$(basename "${line#SF:}") + FILE_TOTAL=0 + FILE_COVERED=0 + ;; + DA:*) + count=$(echo "$line" | cut -d',' -f2) + FILE_TOTAL=$((FILE_TOTAL + 1)) + OVERALL_TOTAL=$((OVERALL_TOTAL + 1)) + if [ "$count" -gt 0 ]; then + FILE_COVERED=$((FILE_COVERED + 1)) + OVERALL_COVERED=$((OVERALL_COVERED + 1)) + fi + ;; + end_of_record) + if [ -n "$CURRENT_FILE" ]; then + if [ "$FILE_TOTAL" -gt 0 ]; then + percent=$(awk "BEGIN { printf \"%.2f\", ($FILE_COVERED/$FILE_TOTAL)*100 }") + else + percent="0.00" + fi + printf "%07.2f|%s|%d|%d\n" "$percent" "$CURRENT_FILE" "$FILE_COVERED" "$FILE_TOTAL" >> "$TMP_FILE" + fi + ;; + esac +done < "$LCOV_FILE" + +if [ "$OVERALL_TOTAL" -gt 0 ]; then + OVERALL_COVERAGE=$(awk "BEGIN { printf \"%.2f\", ($OVERALL_COVERED/$OVERALL_TOTAL)*100 }") +else + OVERALL_COVERAGE="0.00" +fi + +# Write markdown report +{ + echo "# 📈 Code Coverage Report" + echo + echo "## 🔧 Commit Info" + echo "- **Branch**: \`$BRANCH\`" + echo "- **Commit**: \`$COMMIT\`" + echo "- **Author**: $AUTHOR" + echo "- **Date**: $DATE" + echo "- **Message**: _${MESSAGE}_" + echo + echo "---" + echo + echo "## 🧵 Workflow Debug Info" + echo + echo "| Variable | Value |" + echo "|----------|-------|" + for var in SEMAPHORE_GIT_BRANCH SEMAPHORE_GIT_COMMITTER SEMAPHORE_JOB_ID SEMAPHORE_PROJECT_NAME SEMAPHORE_PIPELINE_ID SEMAPHORE_WORKFLOW_ID SEMAPHORE_GIT_SHA SEMAPHORE_GIT_REPO_NAME; do + val="${!var}" + echo "| \`$var\` | \`$val\` |" + done + echo + echo "---" + echo + echo "## 📝 Changed Files" + echo + echo '```diff' + for file in $CHANGED_FILES; do echo "+ $file"; done + echo '```' + echo + echo "---" + echo + echo "## 🔍 Per-File Coverage" + echo + echo "| File | Coverage | Visual |" + echo "|------|----------|--------|" + + sort "$TMP_FILE" | while IFS='|' read -r padded file covered total; do + percent=$(echo "$padded" | sed 's/^0*//') + bar_len=20 + filled=$(awk "BEGIN { printf \"%d\", ($percent/100)*$bar_len }") + empty=$((bar_len - filled)) + filled_bar=$(yes '🟩' | head -n "$filled" | tr -d '\n') + empty_bar=$(yes '⬜' | head -n "$empty" | tr -d '\n') + echo "| \`$file\` | $percent% ($covered/$total) | $filled_bar$empty_bar |" + done + + echo + echo "---" + echo + echo "## 📊 Total Coverage" + echo "**$OVERALL_COVERED / $OVERALL_TOTAL → $OVERALL_COVERAGE%**" +} > "$OUTPUT_FILE" + +rm -f "$TMP_FILE" + +echo "✅ Report saved to $OUTPUT_FILE" +``` + +The end result if a coverage report that looks like this: + +![Coverage report for Go](./img/code-coverage-go.jpg) + +## See also + +- [Test reports](./test-reports) +- [Test results CLI](../../reference/toolbox#test-results) + + diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/tests/test-reports.md b/docs/versioned_docs/version-EE-1.3/using-semaphore/tests/test-reports.md similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/tests/test-reports.md rename to docs/versioned_docs/version-EE-1.3/using-semaphore/tests/test-reports.md diff --git a/docs/versioned_docs/version-CE-1.2/using-semaphore/workflows.md b/docs/versioned_docs/version-EE-1.3/using-semaphore/workflows.md similarity index 100% rename from docs/versioned_docs/version-CE-1.2/using-semaphore/workflows.md rename to docs/versioned_docs/version-EE-1.3/using-semaphore/workflows.md diff --git a/docs/versioned_docs/version-EE/getting-started/faq.md b/docs/versioned_docs/version-EE/getting-started/faq.md index 1856e6628..61dafb125 100644 --- a/docs/versioned_docs/version-EE/getting-started/faq.md +++ b/docs/versioned_docs/version-EE/getting-started/faq.md @@ -17,7 +17,7 @@ This page contains Frequently Asked Questions. ### What's the difference between Semaphore Enterprise Edition (EE) and Semaphore Cloud? - **Semaphore Cloud**: is a cloud-based, fully-managed CI-as-a-Service platform. Meant for individuals and companies that don't wish to maintain a CI/CD system. Head to semaphoreci.com to access Semaphore Cloud -- **Semaphore EE**: is a fully featured self-hostable version of Semaphore. Running Semaphore Entreprise Edition requires a [license](./license). +- **Semaphore EE**: is a fully featured self-hostable version of Semaphore. Running Semaphore Enterprise Edition requires a [license](./license). ### Where can I run Semaphore EE? @@ -33,7 +33,7 @@ If your machines meet the minimum requisites and your Semaphore Enterprise Editi This is commonly due to a rate-limit of third-party providers such as Docker Hub. These services limit how many unauthenticated pulls you can do in an hour, often based on IP. The machine or cluster running the jobs might have already tripped the IP rate limit. -You can bypass this issue by creating a free account on Docker Hub, and then [authenticating with Docker](../using-semaphore/optimization/docker#auth) within the job. This way, the [pulls are limited by your account (100 per hour)](https://docs.docker.com/docker-hub/usage/), and not by the IP of the machine. +You can bypass this issue by creating a free account on Docker Hub, and then [authenticating with Docker](../using-semaphore/containers/docker#auth) within the job. This way, the [pulls are limited by your account (100 per hour)](https://docs.docker.com/docker-hub/usage/), and not by the IP of the machine. :::tip @@ -68,6 +68,7 @@ Yes. To do that, follow these steps: git submodule init git submodule update ``` + 2. Append the these commands in the [epilogue](../using-semaphore/jobs#epilogue) ```shell @@ -76,11 +77,11 @@ Yes. To do that, follow these steps:
-Make sure that Semaphore has permissions to clone your submodules repository. +Make sure that Semaphore has permissions to clone your submodules repository. ### Can I redeliver webhooks from Github to Semaphore? -Yes. Rarely Semaphore does not receive a webhook from GitHub. This results in a workflow not being triggered. When this happens, you can redeliver the webhook to trigger the workflow. +Yes. Rarely Semaphore does not receive a webhook from GitHub. This results in a workflow not being triggered. When this happens, you can redeliver the webhook to trigger the workflow. These are the steps to redeliver webhooks from Github: @@ -93,7 +94,7 @@ These are the steps to redeliver webhooks from Github: ### Can I send a comment on a pull request on GitHub from a workflow? -Yes. You can use the [GitHub API](https://docs.github.com/en/rest/issues?apiVersion=2022-11-28#create-an-issue-comment) to comment on pull requests. +Yes. You can use the [GitHub API](https://docs.github.com/en/rest/issues?apiVersion=2022-11-28#create-an-issue-comment) to comment on pull requests. For example: @@ -170,7 +171,7 @@ blocks: ### Can I change the timezone? -The default timezone is UTC. The timezone can be changed in 2 ways in Linux agents: +The default timezone is UTC. The timezone can be changed in 2 ways in Linux agents: - Assign a different value to the TZ environment variable: @@ -217,15 +218,13 @@ While an issue is ongoing, you might consider using a shorter [execution_time_li ::: - ### Why is my job failing if all commands have passed? This can happen because of code coverage tools, e.g. simplecov, which can be set to fail the test suite if a [minimum coverage level is not achieved](https://github.com/simplecov-ruby/simplecov#minimum-coverage). - ### Why are tests passing locally but not on Semaphore? -The main reason for this behavior is differences in the stacks. As a first step, ensure that the same versions of languages, services, tools, and frameworks such as Selenium, browser drivers, Capybara, Cypress are used both locally and in the CI environment. +The main reason for this behavior is differences in the stacks. As a first step, ensure that the same versions of languages, services, tools, and frameworks such as Selenium, browser drivers, Capybara, Cypress are used both locally and in the CI environment. If you are using Docker containers when performing tests, it's possible that, while the command itself runs instantly, the process will not be completely started, leading to certain endpoints not being available. Using a minimum `sleep 10` can help in this scenario. Cypress has a [wait-on](https://docs.cypress.io/guides/continuous-integration/introduction.html#Boot-your-server) module that provides similar functionality. @@ -237,7 +236,7 @@ You might be hitting the quota limitation. To see your activity across the serve 2. Select Activity Monitor 3. Check your agent usage, jobs won't start until a suitable agent is free -You can also run [`sem get jobs`](../reference/semaphore-cli#sem-get-job) to display all running jobs to confirm how much of the quota is being used. +You can also run [`sem get jobs`](../reference/semaphore-cli#sem-get-job) to display all running jobs to confirm how much of the quota is being used. ### Why does my job fail when I specify "exit 0" in commands? @@ -255,7 +254,6 @@ Some commands like `bash -e` or `set -x otrace` may override this behavior and m ::: - ## Project ### Can I transfer ownership of a project? @@ -274,8 +272,6 @@ To change the project ownership: After project ownership has been transferred, you need to push a new commit. Old workflows cannot be re-run after transferring ownership. -If you come across any issues, please reach out to support@semaphoreci.com and include the name of the project and the GitHub/Bitbucket username of the new owner in your message. - ### Can I rename a project? Yes. To do that, follow these steps: @@ -306,7 +302,6 @@ Deleting a project cannot be reversed. ::: - ### Can I change the visibility of a project? Yes. To make the project visible or private follow these steps: @@ -316,7 +311,6 @@ Yes. To make the project visible or private follow these steps: 3. Click the link next to **Public** or **Private** to toggle the visibility 4. Press **Save Changes** - ## Workflows ### How do I fix the error "Machine type and OS image for initialization job not available" @@ -334,13 +328,12 @@ If you are using a [filter for contributors](../using-semaphore/workflows#projec Approving forked pull requests is limited to new comments only and is not possible for comment edits. Due to security concerns, `/sem-approve` will work only once. Subsequent pushes to the forked pull request must be approved again. - ### How do I fix the error "Revision: COMMIT_SHA not found. Exiting" This happens when the repository receives pushed while Semaphore is still processing the incoming webhook. For example, when someone modifies or removes with a `git rebase` or `git commit --amend` command followed by a `git push --force` shortly after. You can prevent this error by enabling the [auto-cancel](../using-semaphore/pipelines#auto-cancel) option in the pipeline. - + ### Why are my workflows not running in parallel? Git pushes to the same branch are [queued](../using-semaphore/pipelines#pipeline-queues) by default. Pushes to different branches do run in parallel. You can use [named queues in your pipelines](../using-semaphore/pipelines#named-queues) to better control how workflows are parallelized or activate [auto-cancel](../using-semaphore/pipelines#auto-cancel) to stop running pipelines when new pushes arrive to the queue. @@ -399,4 +392,3 @@ Enabling the `set -e` option in the Bash shell causes autocomplete to fail and e ### Why are my secrets empty? We have discontinued exposing secret content via the CLI, API, and web interface to ensure enhanced security measures. Retrieval of secret values is now exclusively available through the job mechanism. - diff --git a/docs/versioned_docs/version-EE/getting-started/install-aws-ec2.md b/docs/versioned_docs/version-EE/getting-started/install-aws-ec2.md index b7337eb40..bcc159fec 100644 --- a/docs/versioned_docs/version-EE/getting-started/install-aws-ec2.md +++ b/docs/versioned_docs/version-EE/getting-started/install-aws-ec2.md @@ -332,8 +332,8 @@ Finally, install Semaphore with Helm. This step assumes that you have copied you ```shell helm upgrade --install semaphore oci://ghcr.io/semaphoreio/semaphore \ --debug \ - --version v1.3.0 \ - --timeout 20m \ + --version v1.4.0 \ + --timeout 30m \ --set global.edition=ee \ --set global.license=$(cat path/to/license-file.txt) \ --set global.domain.ip=${IP_ADDRESS} \ diff --git a/docs/versioned_docs/version-EE/getting-started/install-eks.md b/docs/versioned_docs/version-EE/getting-started/install-eks.md index a2ab43b07..46b023e28 100644 --- a/docs/versioned_docs/version-EE/getting-started/install-eks.md +++ b/docs/versioned_docs/version-EE/getting-started/install-eks.md @@ -154,8 +154,8 @@ Finally, install Semaphore with Helm. This step assumes that you have copied you ```shell helm upgrade --install semaphore oci://ghcr.io/semaphoreio/semaphore \ --debug \ - --version v1.3.0 \ - --timeout 20m \ + --version v1.4.0 \ + --timeout 30m \ --set global.edition=ee \ --set global.license=$(cat path/to/license-file.txt) \ --set global.domain.name="${DOMAIN}" \ diff --git a/docs/versioned_docs/version-EE/getting-started/install-gcompute.md b/docs/versioned_docs/version-EE/getting-started/install-gcompute.md index 7d10c9ef4..ed030aae7 100644 --- a/docs/versioned_docs/version-EE/getting-started/install-gcompute.md +++ b/docs/versioned_docs/version-EE/getting-started/install-gcompute.md @@ -325,8 +325,8 @@ Finally, install Semaphore with Helm. This step assumes that you have copied you ```shell title="remote shell - install Semaphore" helm upgrade --install semaphore oci://ghcr.io/semaphoreio/semaphore \ --debug \ - --version v1.2.0 \ - --timeout 20m \ + --version v1.4.0 \ + --timeout 30m \ --set global.edition=ee \ --set global.license=$(cat path/to/license-file.txt) \ --set global.domain.ip=${IP_ADDRESS} \ diff --git a/docs/versioned_docs/version-EE/getting-started/install-gke.md b/docs/versioned_docs/version-EE/getting-started/install-gke.md index 277ea696d..8d6ac1406 100644 --- a/docs/versioned_docs/version-EE/getting-started/install-gke.md +++ b/docs/versioned_docs/version-EE/getting-started/install-gke.md @@ -286,8 +286,8 @@ Finally, install Semaphore with Helm. This step assumes that you have copied you ```shell title="Install Semaphore" helm upgrade --install semaphore oci://ghcr.io/semaphoreio/semaphore \ --debug \ - --version v1.3.0 \ - --timeout 20m \ + --version v1.4.0 \ + --timeout 30m \ --set global.edition=ee \ --set global.license=$(cat path/to/license-file.txt) \ --set global.domain.ip=${IP_ADDRESS} \ diff --git a/docs/versioned_docs/version-EE/getting-started/install-ubuntu.md b/docs/versioned_docs/version-EE/getting-started/install-ubuntu.md index a51cddf6b..cc436a26e 100644 --- a/docs/versioned_docs/version-EE/getting-started/install-ubuntu.md +++ b/docs/versioned_docs/version-EE/getting-started/install-ubuntu.md @@ -199,8 +199,8 @@ Finally, install Semaphore with Helm. This step assumes that you have copied you ```shell title="remote shell - install Semaphore" helm upgrade --install semaphore oci://ghcr.io/semaphoreio/semaphore \ --debug \ - --version v1.3.0 \ - --timeout 20m \ + --version v1.4.0 \ + --timeout 30m \ --set global.edition=ee \ --set global.license=$(cat path/to/license-file.txt) \ --set global.domain.ip=${IP_ADDRESS} \ diff --git a/docs/versioned_docs/version-EE/getting-started/install.md b/docs/versioned_docs/version-EE/getting-started/install.md index c514a26d0..44f82f394 100644 --- a/docs/versioned_docs/version-EE/getting-started/install.md +++ b/docs/versioned_docs/version-EE/getting-started/install.md @@ -1,5 +1,5 @@ --- -description: Semaphore installation overview for Sempahore EE +description: Semaphore installation overview for Semaphore EE --- # Install Prerequisites @@ -37,7 +37,7 @@ To install Semaphore, you need: - A DNS domain - The ability to create A, AAAA, or CNAME records for your domain - A Kubernetes cluster or a Ubuntu machine - - Minumum hardware: **16 GB of RAM and 8 CPUs** + - Minimum hardware: **16 GB of RAM and 8 CPUs** - Installation time - Ubuntu machine: 20 to 30 minutes - Kubernetes cluster: up to 1 hour @@ -57,7 +57,7 @@ Each platform presents trade-off. Use the following table as a guide: | Facility | Single-alone machine | Kubernetes cluster | |--|--|--| | Backup and restore | Simple | Complex | -| Infraststructure costs | Lower | Higher | +| Infrastructure costs | Lower | Higher | | Scalability of control plane | Low
Can only be scaled vertically with a more powerful machine.
| High
Can be scaled horizontally and vertically.
| | Scalability of job runner (agents) | High | High | | Redundancy | None | High | diff --git a/docs/versioned_docs/version-EE/getting-started/migration/bitbucket.md b/docs/versioned_docs/version-EE/getting-started/migration/bitbucket.md index 0a66f3ad1..ccaf4a3d2 100644 --- a/docs/versioned_docs/version-EE/getting-started/migration/bitbucket.md +++ b/docs/versioned_docs/version-EE/getting-started/migration/bitbucket.md @@ -33,10 +33,8 @@ Checkout is implicit in all Travis CI workflows by default.
- Semaphore does not clone the repository by default. This is because there are certain scenarios in which you don't need the code or you want to customize the cloning process. - To clone the repository in Semaphore we only need to execute [`checkout`](../../reference/toolbox#checkout). ```shell @@ -46,7 +44,6 @@ checkout cat README.md ``` -
@@ -92,7 +89,6 @@ pipelines: - In Semaphore, we use the [artifact](../../reference/toolbox#artifact) command to download and upload files to the artifact store. The following command stores `test.log` from any job: @@ -109,7 +105,6 @@ artifact pull workflow test.log See [artifacts](../../using-semaphore/artifacts) for more details. - @@ -153,7 +148,7 @@ bundle install cache store ``` -See [caching](../../using-semaphore/optimization/cache) for more details. +See [caching](../../using-semaphore/cache) for more details. @@ -161,7 +156,6 @@ See [caching](../../using-semaphore/optimization/cache) for more details. We often need to activate specific language or tool versions to ensure consistent builds. - @@ -208,13 +202,12 @@ pipelines: -In Semaphore, we create the [secret](../../using-semaphore/secrets) at the server or project level and activate it on a block. +In Semaphore, we create the [secret](../../using-semaphore/secrets) at the server or project level and activate it on a block. The secret contents are automatically injected as environment variables in all jobs contained on that block. ![Using secrets on Semaphore](./img/secrets.jpg) - diff --git a/docs/versioned_docs/version-EE/getting-started/migration/circle.md b/docs/versioned_docs/version-EE/getting-started/migration/circle.md index 7d2efc0a1..80c245c16 100644 --- a/docs/versioned_docs/version-EE/getting-started/migration/circle.md +++ b/docs/versioned_docs/version-EE/getting-started/migration/circle.md @@ -75,15 +75,14 @@ global_job_config: - ### Language versions -Both CircleCI and Semaphore allow you to use specific language versions. +Both CircleCI and Semaphore allow you to use specific language versions. -CircleCI uses a language-specific setup orb. +CircleCI uses a language-specific setup orb. The following example sets the Ruby version to `3.3.4` @@ -101,6 +100,7 @@ jobs: version: '3.3.4' # highlight-end ``` + @@ -109,7 +109,6 @@ Semaphore provides the [Docker environments](../../using-semaphore/pipelines#doc - ### Caching Both CircleCI and Semaphore support manual file caching. @@ -152,7 +151,7 @@ The following commands, when added to a job downloads, cache, and install Gems i - cache store ``` -See [caching](../../using-semaphore/optimization/cache) for more details. +See [caching](../../using-semaphore/cache) for more details. @@ -162,7 +161,6 @@ See [caching](../../using-semaphore/optimization/cache) for more details. - ### Database and services Both CircleCI and Semaphore support starting databases and services via Docker containers. @@ -193,7 +191,6 @@ jobs: Semaphore provides the [Docker environments](../../using-semaphore/pipelines#docker-environments) to run your jobs in environments with all your build tools. You can connect multiple Docker images to provide database services for your end-to-end or smoke tests. - @@ -260,7 +257,7 @@ Secrets inject sensitive data and credentials into the workflow securely. -CircleCI uses contexts instead of secrets. You must create the context and its value through the UI. +CircleCI uses contexts instead of secrets. You must create the context and its value through the UI. Then, you can use the `context` keyword to include it in your jobs. ```yaml @@ -277,7 +274,7 @@ workflows: -On Semaphore, we create the [secret](../../using-semaphore/secrets) at the server (instance) or project level and activate it on a block. +On Semaphore, we create the [secret](../../using-semaphore/secrets) at the server (instance) or project level and activate it on a block. The secret's contents are automatically injected as environment variables in all jobs in that block. @@ -304,13 +301,12 @@ global_job_config: -On Semaphore, we create the [secret](../../using-semaphore/secrets) at the server (instance) or project level and activate it on a block. +On Semaphore, we create the [secret](../../using-semaphore/secrets) at the server (instance) or project level and activate it on a block. The secret's contents are automatically injected as environment variables in all jobs in that block. ![Using secrets on Semaphore](./img/secrets.jpg) - @@ -507,7 +503,6 @@ blocks: - ## See also - [Migration guide for CircleCI](./circle) diff --git a/docs/versioned_docs/version-EE/getting-started/migration/github-actions.md b/docs/versioned_docs/version-EE/getting-started/migration/github-actions.md index bbb485722..47f30c69b 100644 --- a/docs/versioned_docs/version-EE/getting-started/migration/github-actions.md +++ b/docs/versioned_docs/version-EE/getting-started/migration/github-actions.md @@ -74,15 +74,14 @@ global_job_config: - ### Language versions -Both Github Actions and Semaphore allow you to use specific language versions. +Both Github Actions and Semaphore allow you to use specific language versions. -GitHub Actions uses a language-specific setup action. +GitHub Actions uses a language-specific setup action. The following example sets the Ruby version to `3.3.4` @@ -94,6 +93,7 @@ jobs: with: ruby-version: '3.3.4' ``` + @@ -102,7 +102,6 @@ Semaphore provides the [Docker environments](../../using-semaphore/pipelines#doc - ### Caching Both GitHub Actions and Semaphore support manual file caching. @@ -136,7 +135,7 @@ The following commands, when added to a job downloads, cache, and install Gems i - cache store ``` -See [caching](../../using-semaphore/optimization/cache) for more details. +See [caching](../../using-semaphore/cache) for more details. @@ -146,7 +145,6 @@ See [caching](../../using-semaphore/optimization/cache) for more details. - ### Database and services Both Github Actions and Semaphore support starting databases and services via Docker containers. @@ -175,7 +173,7 @@ jobs: Semaphore provides the [Docker environments](../../using-semaphore/pipelines#docker-environments) to run your jobs in environments with all your build tools. You can connect multiple Docker images to provide database services for your end-to-end or smoke tests. - + @@ -281,13 +279,12 @@ global_job_config: -On Semaphore, we create the [secret](../../using-semaphore/secrets) at the server or project level and activate it on a block. +On Semaphore, we create the [secret](../../using-semaphore/secrets) at the server or project level and activate it on a block. The secret's contents are automatically injected as environment variables in all jobs in that block. ![Using secrets on Semaphore](./img/secrets.jpg) - @@ -447,7 +444,6 @@ blocks: - ## See also - [Migration guide for CircleCI](./circle) diff --git a/docs/versioned_docs/version-EE/getting-started/migration/overview.md b/docs/versioned_docs/version-EE/getting-started/migration/overview.md index 9dca73b7a..335326ffc 100644 --- a/docs/versioned_docs/version-EE/getting-started/migration/overview.md +++ b/docs/versioned_docs/version-EE/getting-started/migration/overview.md @@ -27,7 +27,7 @@ Here is the recommended plan to migrate from any CI provider to Semaphore. Write down your goals and reasons for migrating your CI to Semaphore. For example, you might wish to reduce costs or speed up your builds. Setting expectations from the get-go will make the whole migration process clearer and more straightforward. - If at any point in the process, you have doubts, contact us at support@semaphoreci.com. We want this process to be as smooth and painless as possible. + If at any point in the process, you have doubts, contact us at `support@semaphoreci.com`. We want this process to be as smooth and painless as possible. 2. Compare features @@ -36,7 +36,7 @@ Here is the recommended plan to migrate from any CI provider to Semaphore. - Must have - Nice to have - Optional - + Use the [feature comparison page](../features) to select the best Semaphore edition for you. 3. [Install Semaphore](../install) @@ -47,21 +47,20 @@ Here is the recommended plan to migrate from any CI provider to Semaphore. - [Connect your GitHub](../../using-semaphore/connect-github) or [connect your BitBucket](../../using-semaphore/connect-bitbucket) repository to Semaphore - Configure a CI pipeline, the objective is to reach a green build. See the [Guided Tour](../guided-tour) to get an overview of Semaphore - + The following pages describe key features you might need for the migration: - [How to create jobs](../../using-semaphore/jobs) - [Persist data with Artifacts](../../using-semaphore/artifacts) - [How to use Docker Environments](../../using-semaphore/pipelines#docker-environments) - - [How to use the Cache](../../using-semaphore/optimization/cache) - + - [How to use the Cache](../../using-semaphore/cache) 5. Optimize performance Once your project is building on Semaphore, begin optimizing for performance. - Add more powerful [self-hosted agents](../../using-semaphore/self-hosted) - - Learn and implement the optimization strategies like [caching](../../using-semaphore/optimization/cache), [fail-fast](../../using-semaphore/pipelines#fail-fast), and [auto-cancel](../../using-semaphore/pipelines#auto-cancel) + - Learn and implement the optimization strategies like [caching](../../using-semaphore/cache), [fail-fast](../../using-semaphore/pipelines#fail-fast), and [auto-cancel](../../using-semaphore/pipelines#auto-cancel) 6. Onboard your team diff --git a/docs/versioned_docs/version-EE/getting-started/migration/travis.md b/docs/versioned_docs/version-EE/getting-started/migration/travis.md index deb1d506b..0b6d7efb5 100644 --- a/docs/versioned_docs/version-EE/getting-started/migration/travis.md +++ b/docs/versioned_docs/version-EE/getting-started/migration/travis.md @@ -37,7 +37,6 @@ Checkout is implicit in all Travis CI workflows by default. Semaphore does not clone the repository by default. This is because there are certain scenarios in which you don't need the code or you want to customize the cloning process. - To clone the repository in Semaphore we only need to execute [`checkout`](../../reference/toolbox#checkout). ```shell @@ -68,7 +67,7 @@ addons: paths: - $HOME/project/test.log # highlight-end -``` +``` @@ -122,19 +121,19 @@ bundle install cache store ``` -See [caching](../../using-semaphore/optimization/cache) for more details. +See [caching](../../using-semaphore/cache) for more details. ### Language versions -Both Travis CI and Semaphore allow you to use specific language versions. +Both Travis CI and Semaphore allow you to use specific language versions. -Travis CI uses a language-specific setup keyword. +Travis CI uses a language-specific setup keyword. The following example sets the Ruby version to `3.3.4` @@ -170,7 +169,7 @@ services: Semaphore provides the [Docker environments](../../using-semaphore/pipelines#docker-environments) to run your jobs in environments with all your build tools. You can connect multiple Docker images to provide database services for your end-to-end or smoke tests. - + @@ -198,7 +197,7 @@ Using encrypted files uses a different system that's a bit more convoluted. In Semaphore, secrets are stored on the Semaphore server or project. Encryption and decryption is automatically handled for environment variables and files. -First, we create a [secret](../../using-semaphore/secrets) at the server or project level and activate it on a block. +First, we create a [secret](../../using-semaphore/secrets) at the server or project level and activate it on a block. The secret contents are automatically injected as environment variables in all jobs contained on that block. diff --git a/docs/versioned_docs/version-EE/reference/agent-aws-stack.md b/docs/versioned_docs/version-EE/reference/agent-aws-stack.md index 86e461df7..cd5fd952d 100644 --- a/docs/versioned_docs/version-EE/reference/agent-aws-stack.md +++ b/docs/versioned_docs/version-EE/reference/agent-aws-stack.md @@ -12,7 +12,6 @@ import Steps from '@site/src/components/Steps'; This page describes all the settings available to configure [AWS Autoscaler Stack](../using-semaphore/self-hosted-aws). - ## Overview The AWS Autoscaler Stack accepts configuration settings in two ways: @@ -52,7 +51,6 @@ The AWS Autoscaler Stack accepts configuration settings in two ways: See [Autoscaling with AWS](../using-semaphore/self-hosted-aws) to learn more. - ## Required parameters ### Endpoint {#endpoint} @@ -63,7 +61,6 @@ The endpoint the agent uses for registration and sync with your Semaphore server If this parameter is not set, you must configure [`SEMAPHORE_ORGANIZATION`](#organization). - ### Organization {#organization} - **Parameter name**: `SEMAPHORE_ORGANIZATION` @@ -78,14 +75,12 @@ If [`SEMAPHORE_ENDPOINT`] is not set, this parameter is used to generate the end The name of the stack. This is the stack name used in Cloudformation and as a prefix to name all the stack resources. When deploying multiple stacks for multiple agent types, different stack names are required. - ### Agent token {#agent-token} - **Parameter name**: `SEMAPHORE_AGENT_TOKEN_PARAMETER_NAME` The AWS SSM parameter name contains the Semaphore agent [registration token](../using-semaphore/self-hosted-install#register-agent). - ## Optional parameters Here's the converted markdown documentation based on the original table you provided: @@ -96,7 +91,6 @@ Here's the converted markdown documentation based on the original table you prov Path to a JSON file containing the parameters to use. This is an alternative to using environment variables for setting the stack's configuration parameters. - ### Agent instance type {#agent-instance-type} - **Parameter name**: `SEMAPHORE_AGENT_INSTANCE_TYPE` @@ -104,7 +98,6 @@ Path to a JSON file containing the parameters to use. This is an alternative to AWS instance type used for the agents. See the available instance type on [AWS docs](https://aws.amazon.com/ec2/instance-types/). - ### Auto-scaling group minimum size {#asg-min-size} - **Parameter name**: `SEMAPHORE_AGENT_ASG_MIN_SIZE` @@ -112,7 +105,6 @@ AWS instance type used for the agents. See the available instance type on [AWS d Minimum size for the auto-scaling group. - ### Auto-scaling group maximum size {#asg-max-size} - **Parameter name**: `SEMAPHORE_AGENT_ASG_MAX_SIZE` @@ -120,7 +112,6 @@ Minimum size for the auto-scaling group. Maximum size for the auto-scaling group. - ### Auto-scaling group desired capacity {#asg-desired} - **Parameter name**: `SEMAPHORE_AGENT_ASG_DESIRED` @@ -128,7 +119,6 @@ Maximum size for the auto-scaling group. Desired capacity for the auto-scaling group. - ### Use dynamic scaling {#use-dynamic-scaling} - **Parameter name**: `SEMAPHORE_AGENT_USE_DYNAMIC_SCALING` @@ -145,14 +135,12 @@ Security Group ID to use for agent instances. If not specified, a security group - an egress rule allowing all outbound traffic - an ingress rule for SSH if [`SEMAPHORE_AGENT_KEY_NAME`](#key-name) is specified - ### Key name {#key-name} - **Parameter name**: `SEMAPHORE_AGENT_KEY_NAME` Key name to access agents through SSH. If not specified, no SSH inbound access is allowed. - ### Disconnect after job {#disconnect-after-job} - **Parameter name**: `SEMAPHORE_AGENT_DISCONNECT_AFTER_JOB` @@ -160,23 +148,20 @@ Key name to access agents through SSH. If not specified, no SSH inbound access i If true, the agent disconnects after completing a job. - ### Disconnect after idle timeout {#disconnect-after-idle-timeout} - **Parameter name**: `SEMAPHORE_AGENT_DISCONNECT_AFTER_IDLE_TIMEOUT` - **default value**: `300` -Number of seconds of idleness after which the agent is shut down. +Number of seconds of idleness after which the agent is shut down. Setting this to 0 disables the scaling down behavior for the stack since the agents do not shutdown due to idleness. - ### Cache bucket name {#cache-bucket-name} - **Parameter name**: `SEMAPHORE_AGENT_CACHE_BUCKET_NAME` -Existing S3 bucket name to use for caching. If this is not set, [caching](../using-semaphore/optimization/cache) does not work. - +Existing S3 bucket name to use for caching. If this is not set, [caching](../using-semaphore/cache) does not work. ### Token KMS key {#token-kms-key} @@ -184,80 +169,70 @@ Existing S3 bucket name to use for caching. If this is not set, [caching](../usi KMS key id used to encrypt and decrypt `SEMAPHORE_AGENT_TOKEN_PARAMETER_NAME`. If nothing is given, the default `alias/aws/ssm` key is assumed. - ### VPC ID {#vpc-id} - **Parameter name**: `SEMAPHORE_AGENT_VPC_ID` The ID of an existing VPC to use when launching agent instances. By default, this is blank, and the default VPC on your AWS account is used. - ### Subnets {#subnets} - **Parameter name**: `SEMAPHORE_AGENT_SUBNETS` -Comma-separated list of existing VPC subnet IDs where EC2 instances are to run. This is required when using [`SEMAPHORE_AGENT_VPC_ID`](#vpc-id). +Comma-separated list of existing VPC subnet IDs where EC2 instances are to run. This is required when using [`SEMAPHORE_AGENT_VPC_ID`](#vpc-id). If `SEMAPHORE_AGENT_SUBNETS` is set and [`SEMAPHORE_AGENT_VPC_ID`](#vpc-id) is blank, the subnets are ignored, and the default VPC is used. This means that private and public subnets are possible, but isolated subnets cannot be used. - ### AMI {#ami} - **Parameter name**: `SEMAPHORE_AGENT_AMI` The AMI is used for all instances. If empty, the stack uses the default AMIs, looking them up by name. If the default AMI isn't sufficient, you can use your own AMIs, but they need to be based on the stack's default AMI. - ### OS type {#os-type} - **Parameter name**: `SEMAPHORE_AGENT_OS` -The OS type for agents. +The OS type for agents. -Possible values: +Possible values: -- `ubuntu-focal` +- `ubuntu-focal` - `windows` - ### Architecture type {#architecture-type} - **Parameter name**: `SEMAPHORE_AGENT_ARCH` The arch type for agents. Possible values: -- `x86_64` +- `x86_64` - `arm64` - ### Availability zones {#availability-zones} - **Parameter name**: `SEMAPHORE_AGENT_AZS` A comma-separated list of availability zones to use for the auto-scaling group. - ### Managed policy names {#managed-policy-names} - **Parameter name**: `SEMAPHORE_AGENT_MANAGED_POLICY_NAMES` A comma-separated list of custom IAM policy names to attach to the instance profile role. - ### ASG metrics {#asg-metrics} - **Parameter name**: `SEMAPHORE_AGENT_ASG_METRICS` A comma-separated list of ASG metrics to collect. Available metrics can be found on the [AWS CDK Documentation](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_autoscaling.CfnAutoScalingGroup.MetricsCollectionProperty.html). - ### Volume name {#volume-name} - **Parameter name**: `SEMAPHORE_AGENT_VOLUME_NAME` The EBS volume's device name to use for a custom volume. If this is not set, the EC2 instances are assigned the EBS volume based on the AMI. - ### Volume type {#volume-type} - **Parameter name**: `SEMAPHORE_AGENT_VOLUME_TYPE` @@ -265,7 +240,6 @@ The EBS volume's device name to use for a custom volume. If this is not set, the The EBS volume's type, when using [`SEMAPHORE_AGENT_VOLUME_NAME`](#volume-name). - ### Volume size {#volume-size} - **Parameter name**: `SEMAPHORE_AGENT_VOLUME_SIZE` @@ -273,47 +247,41 @@ The EBS volume's type, when using [`SEMAPHORE_AGENT_VOLUME_NAME`](#volume-name). The EBS volume's size, in GB, when using [`SEMAPHORE_AGENT_VOLUME_NAME`](#volume-name). - ### License configuration ARN {#license-configuration-arn} - **Parameter name**: `SEMAPHORE_AGENT_LICENSE_CONFIGURATION_ARN` The license configuration ARN is associated with the AMI used by the stack. - ### Mac family {#mac-family} - **Parameter name**: `SEMAPHORE_AGENT_MAC_FAMILY` The EC2 Mac instance family to use. Possible values: `mac1` and `mac2`. - ### Mac dedicated hosts {#mac-dedicated-hosts} - **Parameter name**: `SEMAPHORE_AGENT_MAC_DEDICATED_HOSTS` A comma-separated list of dedicated host IDs to include in the host resource group. - ### Tags {#tags} - **Parameter name**: `SEMAPHORE_AGENT_TAGS` -A comma-separated list of key-value pairs of tags to be added to all resources created for the stack. +A comma-separated list of key-value pairs of tags to be added to all resources created for the stack. For example: `Name:Something,Category:SomethingElse`. - ### Use pre-signed URL {#use-pre-signed-url} - **Parameter name**: `SEMAPHORE_AGENT_USE_PRE_SIGNED_URL` - **default value**: `false` -If true, use a pre-signed AWS STS GetCallerIdentity URL for agent registration. +If true, use a pre-signed AWS STS GetCallerIdentity URL for agent registration. See [agent type configuration](../using-semaphore/self-hosted-install#name-sts) to learn how to configure this security feature. - ## See also - [How to use self-hosted agents](../using-semaphore/self-hosted) diff --git a/docs/versioned_docs/version-EE/reference/api.md b/docs/versioned_docs/version-EE/reference/api.md index 2fabfa8e0..620c43d74 100644 --- a/docs/versioned_docs/version-EE/reference/api.md +++ b/docs/versioned_docs/version-EE/reference/api.md @@ -528,6 +528,8 @@ curl -H "Authorization: Token {api_token}" \ ## Tasks {#tasks} +### Trigger a taks + [Tasks](../using-semaphore/tasks) can be triggered via the API. To trigger a task with its default parameters: @@ -680,9 +682,9 @@ curl -H "Authorization: Token {api_token}" \ "https:///api/v1alpha/logs/:job_id" ``` -### Self-hosted agent types +## Self-hosted agent types -#### Listing agent types +### Listing agent types ```text GET /api/v1alpha/self_hosted_agent_types @@ -743,7 +745,7 @@ curl -i \ "https:///api/v1alpha/self_hosted_agent_types" ``` -#### Create an agent type +### Create an agent type ```text POST /api/v1alpha/self_hosted_agent_types @@ -796,7 +798,7 @@ curl -i \ "https:///api/v1alpha/self_hosted_agent_types" ``` -#### Update an agent type +### Update an agent type ```text PATCH /api/v1alpha/self_hosted_agent_types/:agent_type_name @@ -848,7 +850,7 @@ curl -X PATCH -i \ "https:///api/v1alpha/self_hosted_agent_types/s1-aws-small" ``` -#### Describe an agent type +### Describe an agent type ```text GET /api/v1alpha/self_hosted_agent_types/:agent_type_name @@ -889,7 +891,7 @@ curl -i \ "https:///api/v1alpha/self_hosted_agent_types/s1-aws-small" ``` -#### Delete an agent type +### Delete an agent type ```text DELETE /api/v1alpha/self_hosted_agent_types/:agent_type_name @@ -914,7 +916,7 @@ curl -i -X DELETE \ "https:///api/v1alpha/self_hosted_agent_types/s1-aws-small" ``` -#### Disable agents for an agent type +### Disable agents for an agent type ```text POST /api/v1alpha/self_hosted_agent_types/:agent_type_name/disable_all @@ -941,9 +943,9 @@ curl -i \ "https:///api/v1alpha/self_hosted_agent_types/s1-aws-small/disable_all" ``` -### Self-hosted agents +## Self-hosted agents -#### List agents for an agent type +### List agents for an agent type ```text GET /api/v1alpha/agents?agent_type=:agent_type&page_size=:page_size&cursor=:cursor diff --git a/docs/versioned_docs/version-EE/reference/env-vars.md b/docs/versioned_docs/version-EE/reference/env-vars.md index 63615444f..4726018f9 100644 --- a/docs/versioned_docs/version-EE/reference/env-vars.md +++ b/docs/versioned_docs/version-EE/reference/env-vars.md @@ -229,7 +229,6 @@ Holds `true` if the workflow was triggered using the [Semaphore API](../referenc - The variable is `false` if the workflow is triggered by a Git push, pull request, or via [Tasks](../using-semaphore/tasks). ### Workflow is triggered by hook {#workflow-triggered-by-hook} @@ -324,7 +323,6 @@ Used only when running [`checkout --use-cache`](./toolbox#cache-full-clone). It - **Environment variable**: `SEMAPHORE_GIT_CACHE_KEEP` - **Example**: `1` - Used only when running [`checkout --use-cache`](./toolbox#cache-full-clone). It how many copies of the repository should be maintained in the Semaphore Git Cache. Older copies are automatically deleted. The default value is 0, which means that Semaphore maintains only 1 copy of the repository. If you set it to 1, Semaphore will maintain 2 copies of the repository. @@ -404,7 +402,6 @@ Present only for builds where `SEMAPHORE_GIT_REF_TYPE=pull-request` The number of the Pull Request. - :::note Present only for builds where `SEMAPHORE_GIT_REF_TYPE=pull-request` @@ -446,7 +443,6 @@ Present only for builds where `SEMAPHORE_GIT_REF_TYPE=pull-request` The name of the directory that contains the files of the repository linked to the current Semaphore project. - ### Repository name {#git-repo-name} - **Environment variable**: `SEMAPHORE_GIT_REPO_NAME` @@ -543,7 +539,7 @@ The total duration of the pipeline including queuing time expressed in seconds. ## Cache variables {#cache-variables} -These variables are used to access the [cache](../using-semaphore/optimization/cache). +These variables are used to access the [cache](../using-semaphore/cache). ### Cache URL {#cache-url} @@ -568,7 +564,7 @@ The path in the server to the SSH key file to access the cache server. ## Semaphore Docker registry variables {#registry-variables} -These variables can be used to access the [Semaphore Docker registry](../using-semaphore/optimization/docker). +These variables can be used to access the [Semaphore Docker registry](../using-semaphore/containers/docker). ### Username {#registry-username} @@ -615,7 +611,7 @@ The path to the log file during the initialization job. ## See also -- [Docker optimization](../using-semaphore/optimization/docker) +- [Docker optimization](../using-semaphore/containers/docker) - [How to configure jobs](../using-semaphore/jobs) - [Semaphore pipelines](../using-semaphore/pipelines) - [Pipeline YAML reference](./pipeline-yaml) diff --git a/docs/versioned_docs/version-EE/reference/semaphore-cli.md b/docs/versioned_docs/version-EE/reference/semaphore-cli.md index 76aeae9cd..babf4bda7 100644 --- a/docs/versioned_docs/version-EE/reference/semaphore-cli.md +++ b/docs/versioned_docs/version-EE/reference/semaphore-cli.md @@ -146,7 +146,7 @@ $ sem version The Semaphore CLI supports the following flags: - `--help` or `-h`: prints the help screen for the given command -- `--verbose` or `-v`: useful for debugging, prints vebose output. This flag shows the interactions between the tool and the [Semaphore API](./api) +- `--verbose` or `-v`: useful for debugging, prints verbose output. This flag shows the interactions between the tool and the [Semaphore API](./api) - `--file` or `-f`: specifies the path to a file. Can be used to specify YAML resource files in [sem create](#sem-create) and [sem apply](#sem-apply). It can also be used to upload secrets as files using [sem create secret](#sem-create) and [sem create dt](#sem-create-dt) - `--all`: used with [sem get job](#sem-get-job) to view running and recently-finished jobs diff --git a/docs/versioned_docs/version-EE/reference/toolbox.md b/docs/versioned_docs/version-EE/reference/toolbox.md index 7d4b4105a..9c69f4b7d 100644 --- a/docs/versioned_docs/version-EE/reference/toolbox.md +++ b/docs/versioned_docs/version-EE/reference/toolbox.md @@ -41,11 +41,11 @@ The available namespaces are: See [artifact namespaces](../using-semaphore/artifacts#namespaces) for more details. The optional flags are: + - `--force` or `-f`: overwrite file or directory if already exists - `--destination` of `-d`: pull or yank the file into a different path - `--verbose` or `-v`: verbose logging - ### Examples ```shell title="Artifact usage examples" @@ -83,7 +83,7 @@ The uploaded files must meet the following requirements: - File names cannot contain non-URI-encodable characters like `{, }, |, \, ^, ~, [, ]` - Files cannot be named `.` or `...` -You can workaround these limitations by compressing the file with tar before pushing it to the artifact store. For example: +You can workaround these limitations by compressing the file with tar before pushing it to the artifact store. For example: ```shell title="Creating a tarball before storing the artifact" tar -czvf example.tar.gz ~/example @@ -99,7 +99,7 @@ tar -xzf example.tar.gz ## cache {#cache} -The cache tool lets you interact with your project's [Semaphore cache](../using-semaphore/optimization/cache). +The cache tool lets you interact with your project's [Semaphore cache](../using-semaphore/cache). The syntax is: @@ -160,7 +160,6 @@ The supported options for `--cleanup-by` are: - `STORE_TIME`: (default) delete oldest files first - `ACCESS_TIME`: delete oldest accessed files first - ### Environment variables {#cache-env-vars} The cache tool depends on the following environment variables: @@ -222,7 +221,7 @@ The checkout command uses the following environment variables. ## checksum {#checksum} -This tool takes a single argument which is the file to checksum. It outputs the MD5 checksum of the file's contents. This tool is useful for tagging [artifacts](../using-semaphore/artifacts) or generating [cache keys](../using-semaphore/optimization/cache). +This tool takes a single argument which is the file to checksum. It outputs the MD5 checksum of the file's contents. This tool is useful for tagging [artifacts](../using-semaphore/artifacts) or generating [cache keys](../using-semaphore/cache). The syntax is: @@ -241,7 +240,6 @@ $ checksum package-lock.json The `install-package` tool is used to manage Ubuntu packages you may need for your jobs. It downloads and caches packages in a way that can be quickly reinstalled over and over again in different jobs. This is a convenient tool, you can still use `sudo` to install packages using the system's package manager. - The syntax is: ```shell title="install-package syntax" @@ -254,8 +252,8 @@ Where command is one of the following: - `update`: Retrieve new lists of packages - `upgrade`: Perform an upgrade -- `install`: Install new packages -- `reinstall`: Reinstall packages +- `install`: Install new packages +- `reinstall`: Reinstall packages - `remove`: Remove packages - `purge`: Remove packages and config files - `autoremove`: Remove automatically all unused packages @@ -276,7 +274,7 @@ You can supply multiple packages with their versions in the same invocation: install-package install mongodb-clients=3.6.8 mysql-client=8.0.36-0ubuntu0.20.04.1 ``` -The tool integrates with the [Semaphore cache](../using-semaphore/optimization/cache) to save, retrieve, and update the Deb packages as needed. +The tool integrates with the [Semaphore cache](../using-semaphore/cache) to save, retrieve, and update the Deb packages as needed. You can reinstall the packages in a different job within the same project with: @@ -363,6 +361,7 @@ $ sem-context get ReleaseVersion ``` Exit status codes: + - 0: key retrieved successfully - 1: key not found - 2: connection to the artifacts server failed @@ -377,6 +376,7 @@ sem-context delete ReleaseVersion ``` Exit status codes: + - 0: key deleted successfully - 1: key not found - 2: connection to the artifacts server failed @@ -429,7 +429,7 @@ The test-results CLI is open-sourced and available on [semaphoreci/test-results] ### Merging test results {#test-result-merge} -To use the test result feature you must add the following command at the end of every test job. +To use the test result feature you must add the following command at the end of every test job. The syntax is: @@ -493,5 +493,5 @@ kubectl apply -f deployment.yml ## See also - [Semaphore command line tool reference](./semaphore-cli) -- [Working with Docker](../using-semaphore/optimization/docker) +- [Working with Docker](../using-semaphore/containers/docker) - [Environment variable reference](./env-vars) diff --git a/docs/versioned_docs/version-CE/using-semaphore/optimization/cache.md b/docs/versioned_docs/version-EE/using-semaphore/cache.md similarity index 83% rename from docs/versioned_docs/version-CE/using-semaphore/optimization/cache.md rename to docs/versioned_docs/version-EE/using-semaphore/cache.md index 5b10fb66c..1d51e5976 100644 --- a/docs/versioned_docs/version-CE/using-semaphore/optimization/cache.md +++ b/docs/versioned_docs/version-EE/using-semaphore/cache.md @@ -17,14 +17,14 @@ The cache provides fast and convenient storage for your jobs. Use the cache to s ## Overview -Semaphore provides a [cache tool](../../reference/toolbox#cache) in all jobs to reuse files your project depends on but are not part of the repository. +Semaphore provides a [cache tool](../reference/toolbox#cache) in all jobs to reuse files your project depends on but are not part of the repository. Typical uses of the cache are: - to propagate a file from one block to the next - to reuse dependencies that are normally downloaded from the internet, like NPM modules -Semaphore creates a separate cache for every [project](../projects). For jobs running on Semaphore Cloud, the total cache size is 9.6GB. Older files are automatically deleted after 30 days or when the cache fills up. +Semaphore creates a separate cache for every [project](./projects). For jobs running on Semaphore Cloud, the total cache size is 9.6GB. Older files are automatically deleted after 30 days or when the cache fills up. :::note @@ -53,7 +53,6 @@ The cache tools recognize the following languages and dependency managers. See [ When using one of the supported dependency managers: - 1. Run `cache restore` to restore the latest files from the cache @@ -73,6 +72,7 @@ cache restore npm install cache store ``` + @@ -92,12 +92,13 @@ cache restore bundle install --path vendor/bundle cache store ``` + :::warning -Avoid using `cache store` in the [prologue](../pipelines#prologue) as this can cause file corruption due to multiple jobs trying to write the same key simultaneously. Instead, use `cache store` in the individual job commands. +Avoid using `cache store` in the [prologue](./pipelines#prologue) as this can cause file corruption due to multiple jobs trying to write the same key simultaneously. Instead, use `cache store` in the individual job commands. ::: @@ -121,7 +122,7 @@ cache restore Where keys are again a comma-separated lists of keys. Semaphore searches for the keys in the order provided and restores the first match to the working directory. -### Using multiple keys +### Using multiple keys It's recommended to use multiple keys to increase the chances of matching a key. The following example uses two keys: @@ -183,7 +184,7 @@ cache clear ## Custom backends {#custom-backends} -The cache storage is available for all Semaphore Cloud users. If you're running a different version such as On-Premise or [self-hosted agents](../self-hosted), the cache might not be available. +The cache storage is available for all Semaphore Cloud users. If you're running a different version such as On-Premise or [self-hosted agents](./self-hosted), the cache might not be available. For these cases, you need to provide storage. This section explains how to configure custom storage in other platforms. @@ -195,11 +196,11 @@ To provision the storage, follow these steps: -1. Create and configure an S3 bucket as explained in [How to set up caching on self-hosted agents](../self-hosted-configure#aws-cache) -2. Configure the following [environment variables](../jobs#environment-variables) in your job +1. Create and configure an S3 bucket as explained in [How to set up caching on self-hosted agents](./self-hosted-configure#aws-cache) +2. Configure the following [environment variables](./jobs#environment-variables) in your job - `SEMAPHORE_CACHE_BACKEND` set its value to "s3" - `SEMAPHORE_CACHE_S3_BUCKET` set its value to the S3 bucket name -3. Create a [secret](../secrets) with the following credentials +3. Create a [secret](./secrets) with the following credentials - `AWS_ACCESS_KEY_ID`: the key for an IAM account with access to the bucket - `AWS_SECRET_ACCESS_KEY`: the secret key for the account - `AWS_DEFAULT_REGION`: the region where the bucket is located @@ -215,7 +216,7 @@ To provision storage, follow these steps 1. [Create a Google Cloud Bucket](https://cloud.google.com/storage/docs/creating-buckets) -2. Configure the following [environment variables](../jobs#environment-variables) in your job +2. Configure the following [environment variables](./jobs#environment-variables) in your job - `SEMAPHORE_CACHE_BACKEND` set it to "gcs" - `SEMAPHORE_CACHE_GCS_BUCKET` set it to your Google Cloud bucket name 3. Provide the Google Cloud Application Default Credentials. See [How Application Default Credentials work](https://cloud.google.com/docs/authentication/application-default-credentials) to learn more @@ -226,16 +227,16 @@ To provision storage, follow these steps You can provide an SFTP server to provide custom storage for the cache. -To use SFTP, define the following [environment variables](../jobs#environment-variables) in your job: +To use SFTP, define the following [environment variables](./jobs#environment-variables) in your job: - `SEMAPHORE_CACHE_BACKEND`: set its value to "sftp" - `SEMAPHORE_CACHE_URL`: the IP address and port number of the SFTP server, e.g. "1.2.3.4:29920" - `SEMAPHORE_CACHE_USERNAME`: the username used to connect to the server - `SEMAPHORE_CACHE_PRIVATE_KEY_PATH`: the path of the private SSH key used to connect to the SFTP server -In addition, you must create a [secret](../secrets) to store the private SSH key and expose it inside the job. +In addition, you must create a [secret](./secrets) to store the private SSH key and expose it inside the job. ## See also -- [Using cache in jobs](../jobs#cache) -- [Cache toolbox reference](../../reference/toolbox#cache) +- [Using cache in jobs](./jobs#cache) +- [Cache toolbox reference](../reference/toolbox#cache) diff --git a/docs/versioned_docs/version-EE/using-semaphore/connect-git-server.md b/docs/versioned_docs/version-EE/using-semaphore/connect-git-server.md index fc31d62ba..1bdaca63f 100644 --- a/docs/versioned_docs/version-EE/using-semaphore/connect-git-server.md +++ b/docs/versioned_docs/version-EE/using-semaphore/connect-git-server.md @@ -91,7 +91,7 @@ To connect with this method, press the **Create new** button. 5. SSH into the Git server add the SSH key copied in the previous step to `$HOME/.ssh/authorized_keys` (relative to the user that runs the Git service) and press **Continue** -6. Back in Sempahore, press the **Generate Script** button +6. Back in Semaphore, press the **Generate Script** button
Show me diff --git a/docs/versioned_docs/version-EE/using-semaphore/optimization/_category_.json b/docs/versioned_docs/version-EE/using-semaphore/containers/_category_.json similarity index 100% rename from docs/versioned_docs/version-EE/using-semaphore/optimization/_category_.json rename to docs/versioned_docs/version-EE/using-semaphore/containers/_category_.json diff --git a/docs/versioned_docs/version-EE/using-semaphore/optimization/container-registry.md b/docs/versioned_docs/version-EE/using-semaphore/containers/container-registry.md similarity index 100% rename from docs/versioned_docs/version-EE/using-semaphore/optimization/container-registry.md rename to docs/versioned_docs/version-EE/using-semaphore/containers/container-registry.md diff --git a/docs/versioned_docs/version-EE/using-semaphore/optimization/docker.md b/docs/versioned_docs/version-EE/using-semaphore/containers/docker.md similarity index 100% rename from docs/versioned_docs/version-EE/using-semaphore/optimization/docker.md rename to docs/versioned_docs/version-EE/using-semaphore/containers/docker.md diff --git a/docs/versioned_docs/version-EE/using-semaphore/optimization/img/add-metric.jpg b/docs/versioned_docs/version-EE/using-semaphore/containers/img/add-metric.jpg similarity index 100% rename from docs/versioned_docs/version-EE/using-semaphore/optimization/img/add-metric.jpg rename to docs/versioned_docs/version-EE/using-semaphore/containers/img/add-metric.jpg diff --git a/docs/versioned_docs/version-EE/using-semaphore/optimization/img/change-skip-vs-run.jpg b/docs/versioned_docs/version-EE/using-semaphore/containers/img/change-skip-vs-run.jpg similarity index 100% rename from docs/versioned_docs/version-EE/using-semaphore/optimization/img/change-skip-vs-run.jpg rename to docs/versioned_docs/version-EE/using-semaphore/containers/img/change-skip-vs-run.jpg diff --git a/docs/versioned_docs/version-EE/using-semaphore/optimization/img/custom-create.jpg b/docs/versioned_docs/version-EE/using-semaphore/containers/img/custom-create.jpg similarity index 100% rename from docs/versioned_docs/version-EE/using-semaphore/optimization/img/custom-create.jpg rename to docs/versioned_docs/version-EE/using-semaphore/containers/img/custom-create.jpg diff --git a/docs/versioned_docs/version-EE/using-semaphore/optimization/img/dockerhub-secret.jpg b/docs/versioned_docs/version-EE/using-semaphore/containers/img/dockerhub-secret.jpg similarity index 100% rename from docs/versioned_docs/version-EE/using-semaphore/optimization/img/dockerhub-secret.jpg rename to docs/versioned_docs/version-EE/using-semaphore/containers/img/dockerhub-secret.jpg diff --git a/docs/versioned_docs/version-EE/using-semaphore/optimization/img/freq-cd.jpg b/docs/versioned_docs/version-EE/using-semaphore/containers/img/freq-cd.jpg similarity index 100% rename from docs/versioned_docs/version-EE/using-semaphore/optimization/img/freq-cd.jpg rename to docs/versioned_docs/version-EE/using-semaphore/containers/img/freq-cd.jpg diff --git a/docs/versioned_docs/version-EE/using-semaphore/optimization/img/freq-ci.jpg b/docs/versioned_docs/version-EE/using-semaphore/containers/img/freq-ci.jpg similarity index 100% rename from docs/versioned_docs/version-EE/using-semaphore/optimization/img/freq-ci.jpg rename to docs/versioned_docs/version-EE/using-semaphore/containers/img/freq-ci.jpg diff --git a/docs/versioned_docs/version-EE/using-semaphore/optimization/img/insights-settings.jpg b/docs/versioned_docs/version-EE/using-semaphore/containers/img/insights-settings.jpg similarity index 100% rename from docs/versioned_docs/version-EE/using-semaphore/optimization/img/insights-settings.jpg rename to docs/versioned_docs/version-EE/using-semaphore/containers/img/insights-settings.jpg diff --git a/docs/versioned_docs/version-EE/using-semaphore/optimization/img/insights-tab.jpg b/docs/versioned_docs/version-EE/using-semaphore/containers/img/insights-tab.jpg similarity index 100% rename from docs/versioned_docs/version-EE/using-semaphore/optimization/img/insights-tab.jpg rename to docs/versioned_docs/version-EE/using-semaphore/containers/img/insights-tab.jpg diff --git a/docs/versioned_docs/version-EE/using-semaphore/optimization/img/new-metric.jpg b/docs/versioned_docs/version-EE/using-semaphore/containers/img/new-metric.jpg similarity index 100% rename from docs/versioned_docs/version-EE/using-semaphore/optimization/img/new-metric.jpg rename to docs/versioned_docs/version-EE/using-semaphore/containers/img/new-metric.jpg diff --git a/docs/versioned_docs/version-EE/using-semaphore/optimization/img/org-health-location.jpg b/docs/versioned_docs/version-EE/using-semaphore/containers/img/org-health-location.jpg similarity index 100% rename from docs/versioned_docs/version-EE/using-semaphore/optimization/img/org-health-location.jpg rename to docs/versioned_docs/version-EE/using-semaphore/containers/img/org-health-location.jpg diff --git a/docs/versioned_docs/version-EE/using-semaphore/optimization/img/org-health-overview.jpg b/docs/versioned_docs/version-EE/using-semaphore/containers/img/org-health-overview.jpg similarity index 100% rename from docs/versioned_docs/version-EE/using-semaphore/optimization/img/org-health-overview.jpg rename to docs/versioned_docs/version-EE/using-semaphore/containers/img/org-health-overview.jpg diff --git a/docs/versioned_docs/version-EE/using-semaphore/optimization/img/perf-cd.jpg b/docs/versioned_docs/version-EE/using-semaphore/containers/img/perf-cd.jpg similarity index 100% rename from docs/versioned_docs/version-EE/using-semaphore/optimization/img/perf-cd.jpg rename to docs/versioned_docs/version-EE/using-semaphore/containers/img/perf-cd.jpg diff --git a/docs/versioned_docs/version-EE/using-semaphore/optimization/img/perf-ci.jpg b/docs/versioned_docs/version-EE/using-semaphore/containers/img/perf-ci.jpg similarity index 100% rename from docs/versioned_docs/version-EE/using-semaphore/optimization/img/perf-ci.jpg rename to docs/versioned_docs/version-EE/using-semaphore/containers/img/perf-ci.jpg diff --git a/docs/versioned_docs/version-EE/using-semaphore/optimization/img/rel-cd.jpg b/docs/versioned_docs/version-EE/using-semaphore/containers/img/rel-cd.jpg similarity index 100% rename from docs/versioned_docs/version-EE/using-semaphore/optimization/img/rel-cd.jpg rename to docs/versioned_docs/version-EE/using-semaphore/containers/img/rel-cd.jpg diff --git a/docs/versioned_docs/version-EE/using-semaphore/optimization/img/rel-ci.jpg b/docs/versioned_docs/version-EE/using-semaphore/containers/img/rel-ci.jpg similarity index 100% rename from docs/versioned_docs/version-EE/using-semaphore/optimization/img/rel-ci.jpg rename to docs/versioned_docs/version-EE/using-semaphore/containers/img/rel-ci.jpg diff --git a/docs/versioned_docs/version-EE/using-semaphore/optimization/img/select-date-range.jpg b/docs/versioned_docs/version-EE/using-semaphore/containers/img/select-date-range.jpg similarity index 100% rename from docs/versioned_docs/version-EE/using-semaphore/optimization/img/select-date-range.jpg rename to docs/versioned_docs/version-EE/using-semaphore/containers/img/select-date-range.jpg diff --git a/docs/versioned_docs/version-EE/using-semaphore/optimization/img/workflow-monorepo.jpg b/docs/versioned_docs/version-EE/using-semaphore/containers/img/workflow-monorepo.jpg similarity index 100% rename from docs/versioned_docs/version-EE/using-semaphore/optimization/img/workflow-monorepo.jpg rename to docs/versioned_docs/version-EE/using-semaphore/containers/img/workflow-monorepo.jpg diff --git a/docs/versioned_docs/version-EE/using-semaphore/img/rerun-pipeline.jpg b/docs/versioned_docs/version-EE/using-semaphore/img/rerun-pipeline.jpg new file mode 100644 index 000000000..c6c910239 Binary files /dev/null and b/docs/versioned_docs/version-EE/using-semaphore/img/rerun-pipeline.jpg differ diff --git a/docs/versioned_docs/version-EE/using-semaphore/img/trigger-draft-pull-request.jpg b/docs/versioned_docs/version-EE/using-semaphore/img/trigger-draft-pull-request.jpg new file mode 100644 index 000000000..003dd1e63 Binary files /dev/null and b/docs/versioned_docs/version-EE/using-semaphore/img/trigger-draft-pull-request.jpg differ diff --git a/docs/versioned_docs/version-EE/using-semaphore/jobs.md b/docs/versioned_docs/version-EE/using-semaphore/jobs.md index 6a18565cd..981abe274 100644 --- a/docs/versioned_docs/version-EE/using-semaphore/jobs.md +++ b/docs/versioned_docs/version-EE/using-semaphore/jobs.md @@ -1074,7 +1074,7 @@ To use a job matrix, follow these steps: -The following example runs a 2 x 3 matrix with variables `NODE_VER` and `PKG_MNGR`. Semaphore expands the job into 6 parametererized jobs: +The following example runs a 2 x 3 matrix with variables `NODE_VER` and `PKG_MNGR`. Semaphore expands the job into 6 parameterized jobs: ```yaml version: v1.0 diff --git a/docs/versioned_docs/version-EE/using-semaphore/okta.md b/docs/versioned_docs/version-EE/using-semaphore/okta.md index 22b392918..038f528a8 100644 --- a/docs/versioned_docs/version-EE/using-semaphore/okta.md +++ b/docs/versioned_docs/version-EE/using-semaphore/okta.md @@ -235,6 +235,12 @@ Semaphore asks new users logging in via SSO to [connect their GitHub](./connect- ![Connect Git](./img/connect-git.jpg) +:::info + +Once enforced, Okta is the **only login method allowed** for all users in the server. Dual authentication methods like Okta + GitHub/BitBucket/GitLab are not supported. + +::: + ## Troubleshooting duplicated users {#troubleshooting} Semaphore tries to match new users provisioned via SCIM to existing Semaphore users by email address. If the email address associated with the SCIM request matches the email address of existing Semaphore users, the two accounts will be connected, and no new account will be provisioned. Email associated with Semaphore is the primary email from GitHub or BitBucket. diff --git a/docs/versioned_docs/version-EE/using-semaphore/organizations.md b/docs/versioned_docs/version-EE/using-semaphore/organizations.md index d6e78b0d5..ea4c8abec 100644 --- a/docs/versioned_docs/version-EE/using-semaphore/organizations.md +++ b/docs/versioned_docs/version-EE/using-semaphore/organizations.md @@ -99,7 +99,7 @@ To change user roles, go to the people option in the server menu and follow thes ### How to reset a user password {#reset-password} -To reset a user password, go to the poeple option in the server menu and follow these steps: +To reset a user password, go to the people option in the server menu and follow these steps: diff --git a/docs/versioned_docs/version-EE/using-semaphore/pipelines.md b/docs/versioned_docs/version-EE/using-semaphore/pipelines.md index 63ce71681..06a385247 100644 --- a/docs/versioned_docs/version-EE/using-semaphore/pipelines.md +++ b/docs/versioned_docs/version-EE/using-semaphore/pipelines.md @@ -4,7 +4,6 @@ description: Connect blocks to get things done # Pipelines - import Tabs from '@theme/Tabs'; import TabItem from '@theme/TabItem'; import Available from '@site/src/components/Available'; @@ -17,7 +16,7 @@ A pipeline is a group of connected blocks. This page explains what pipelines are Pipelines are groups of blocks that can be connected via dependencies to define their execution order. -Pipelines are also the *unit of configuration*. Each pipeline is encoded as separate a YAML file in the `.semaphore` folder. +Pipelines are also the *unit of configuration*. Each pipeline is encoded as separate a YAML file in the `.semaphore` folder. For reference, here is an example pipeline with its respective YAML. @@ -154,6 +153,15 @@ Here you can see the how spc evaluated the pipeline and all the actions taken du ![Example init job log](./img/init-log-example.jpg) +## Pipeline rebuild {#rebuild} + +When a job in the pipeline fails, the default behavior is to stop the pipeline. You can attempt to re-run the pipeline in two ways: + +- Pressing **Rerun** restarts the whole pipeline from the beginning +- Pressing **Rebuild Pipeline** only re-runs the blocks with failed jobs + +![Location of rerun and rebuild buttons](./img/rerun-pipeline.jpg) + ## Connecting pipelines with promotions {#connecting-pipelines} Your project can have multiple pipelines to perform different tasks such as build, release, or test. [Promotions](./promotions) connect pipelines. Multiple pipelines can be chained to create branching workflows to automate almost any task. @@ -166,7 +174,7 @@ For more information, see the [Promotions page](./promotions). ## Pipeline settings {#settings} -Pipeline settings are applied to all its blocks. You can change pipeline settings with the editor or directly in the YAML. +Pipeline settings are applied to all its blocks. You can change pipeline settings with the editor or directly in the YAML. ### Agents {#agents} @@ -191,13 +199,12 @@ To select the agent running your jobs in a pipeline: - 1. Add the `agent` and `machine` keys -2. Add the hardware `type`. The default is `s1-kubernetes`, which is the [self-hosted agent](./self-hosted) built-in in the Sempahore server +2. Add the hardware `type`. The default is `s1-kubernetes`, which is the [self-hosted agent](./self-hosted) built-in in the Semaphore server 3. Leave `os_image` empty -4. Add the `containers` key, this contains a list with keys `name` and `image`. The first container must have `name = main` and the image is the Docker image where the jobs run +4. Add the `containers` key, this contains a list with keys `name` and `image`. The first container must have `name = main` and the image is the Docker image where the jobs run @@ -226,18 +233,17 @@ blocks: - ### Docker containers {#docker-environments} :::tip -If you want to build and run Docker images in your jobs, check the [working with Docker page](./optimization/docker). +If you want to build and run Docker images in your jobs, check the [working with Docker page](./containers/docker). ::: Jobs can run inside Docker containers. This allows you to define a custom-build environment with pre-installed tools and dependencies needed for your project. You can enable this setting in the pipeline agent or in the [block agent override](./jobs#agent-override). -You can run multiple containers at the same time. The job runs in the first container (called `main`) and attaches the other containers to the same network. This is similar to how containers inside a Kubernetes pod communicate. +You can run multiple containers at the same time. The job runs in the first container (called `main`) and attaches the other containers to the same network. This is similar to how containers inside a Kubernetes pod communicate. The network addresses of all containers are mapped to their names. Let's say you have two containers, "main" and "mysql", you can connect to the database from main with: @@ -308,7 +314,7 @@ To use images in private repositories see [Private Docker Registries](#docker-pr :::info -Semaphore provides a [public Docker registry](./optimization/container-registry) for popular images. +Semaphore provides a [public Docker registry](./containers/container-registry) for popular images. ::: @@ -414,6 +420,7 @@ blocks: commands: - npm run build ``` + @@ -460,6 +467,7 @@ blocks: commands: - npm run build ``` + @@ -579,10 +587,10 @@ blocks: commands: - npm run build ``` + - ### YAML file path {#yaml-path} This option overrides the location of the pipeline file. This option is not available for the default pipeline (located at `.semaphore/semaphore.yml`). @@ -684,7 +692,6 @@ after_pipeline: - ## Private Docker Registries {#docker-private} If the images you need for your [docker environment](#docker-environments) are not publicly available, you need to provide authentication credentials in your pipeline. This feature is only available by editing the pipeline YAML directly. @@ -752,7 +759,6 @@ To pull images from a private AWS Elastic Container Registry (ECR), follow these ### Images in Google GCR {#docker-gcr} - To pull images from a private Google Container Registry (GCR), follow these steps: @@ -847,14 +853,13 @@ To pull images from any arbitrary Docker registry, follow these steps: - ## Pipeline queues {#pipeline-queues} Queues allow you to control the order in which pipelines run. Semaphore pipelines can run sequentially or in parallel. For example, you can run CI pipelines in parallel on the main branch, while limiting deployment pipelines to run one at at time to prevent conflicts or race conditions. ### Default and named queues {#named-queues} -Semaphore creates a queue for each Git push or pull requests. All workflows sharing the same commit SHA belong in the same queue and run sequentially. +Semaphore creates a queue for each Git push or pull requests. All workflows sharing the same commit SHA belong in the same queue and run sequentially. In other words, every time you re-run a workflow, create a pull request, push a tag, or start a [promotion](./pipelines#connecting-pipelines), the pipeline is added to the end of the same-commit queue. @@ -979,7 +984,7 @@ blocks: ### Conditional queues {#conditional-queues} -You can use conditional statements to assign pipelines based on parameters like branch name or tag name. +You can use conditional statements to assign pipelines based on parameters like branch name or tag name. The following example uses three rules: @@ -1064,7 +1069,6 @@ To change the global time limit for all jobs in a pipeline, follow these steps: - 1. Open the pipeline YAML @@ -1111,13 +1115,13 @@ See [job time limit](./jobs#job-duration) to change the maximum duration for a s You can workaround the queue limit by assigning pipelines to [named queues](#named-queues). -If you have a use case in which this limit is too constraining, please contact us at support@semaphoreci.com and we will try to work out a solution. +If you have a use case in which this limit is too constraining, please contact us at `support@semaphoreci.com` and we will try to work out a solution. ### Max blocks per pipeline {#max-blocks} There is a hard limit of a 100 blocks per pipeline. -This limit is not adjustable. If you have a use case in which this limit is too constraining, please contact us at support@semaphoreci.com and we will try to work out a solution. +This limit is not adjustable. If you have a use case in which this limit is too constraining, please contact us at `support@semaphoreci.com` and we will try to work out a solution. ## See also diff --git a/docs/versioned_docs/version-EE/using-semaphore/recipes/img/infracost-key-secret.jpg b/docs/versioned_docs/version-EE/using-semaphore/recipes/img/infracost-key-secret.jpg new file mode 100644 index 000000000..f825c51b3 Binary files /dev/null and b/docs/versioned_docs/version-EE/using-semaphore/recipes/img/infracost-key-secret.jpg differ diff --git a/docs/versioned_docs/version-EE/using-semaphore/recipes/img/infracost-secret.jpg b/docs/versioned_docs/version-EE/using-semaphore/recipes/img/infracost-secret.jpg new file mode 100644 index 000000000..38bdd2c80 Binary files /dev/null and b/docs/versioned_docs/version-EE/using-semaphore/recipes/img/infracost-secret.jpg differ diff --git a/docs/versioned_docs/version-EE/using-semaphore/recipes/infracost.md b/docs/versioned_docs/version-EE/using-semaphore/recipes/infracost.md new file mode 100644 index 000000000..ed8c227ec --- /dev/null +++ b/docs/versioned_docs/version-EE/using-semaphore/recipes/infracost.md @@ -0,0 +1,195 @@ +--- +description: Implement FinOps in your pipeline with Infracost +sidebar_position: 1 +--- + +# Infracost FinOps + +The Infracost CLI tool parses Terraform files and estimates costs for your infrastructure. + +## Overview + +This guide will show you how to: + +- Run the Infracost CLI in Semaphore +- Comment Git commits with cost deltas +- Comment pull requests with cost deltas +- Fail the CI pipeline if costs exceed a custom-defined policy + +## Prerequisites + +For this guide, you will need the following: + +- [A working Semaphore project](../projects) with a CI pipeline +- At least one [Terraform](https://developer.hashicorp.com/terraform) file in your project +- An [Infracost](https://www.infracost.io/) API key. You must sign up with a free account to obtain it +- A GitHub, Bitbucket, or GitLab API key with permission to write comments in the repository + +## Adding a baseline to the repository + +In order to estimate deviations from the expected cost, you must store a baseline file in your repository. The following command will generate `baseline.json` based on all the Terraform files found in your project folder: + +```shell +infracost breakdown --path . --format json --out-file baseline.json +``` + +Now you can push `baseline.json` into your repository. + +## Storing the API keys in secrets + +Follow the [Infracost getting started guide](https://www.infracost.io/docs/) to install the CLI tool on your machine and obtain an API key. Create a [secret](../secrets) in Semaphore to store it: + +![Infracost API key secret](./img/infracost-key-secret.jpg) + +Create a token for your Git provider: + +- **GitHub**: [create a token](https://github.com/settings/tokens) with write permissions on your repository +- **BitBucket**: [create an app password](https://support.atlassian.com/bitbucket-cloud/docs/app-passwords/) with write permissions +- **GitLab**: [create an access token](https://docs.gitlab.com/user/profile/personal_access_tokens/) with `write_repository` permissions + +Store the access token in Semaphore: + +![GitHub Token Secret](./img/infracost-secret.jpg) + +## Adding cost estimates to commits + +When Infracost runs in your CI/CD workflow, it can post comments in commits and pull requests with the estimated cost difference from the baseline or between branches. + +### Estimates on GitHub + +Before you can calculate cost differences in commits or peer reviews, you need to establish a baseline. If you have any usage-based resources such as serverless functions, you need to first create an [usage file](https://www.infracost.io/docs/features/usage_based_resources/). + +```shell +infracost breakdown --sync-usage-file --usage-file usage.yml --path . +``` + +Now, edit `usage.yml` to add your usage estimates for the moth. + +Next, you're ready to create a baseline file. Skip `--usage-file` if you're not using any usage-based cloud resources: + +```shell +infracost breakdown --path . --format json --usage-file usage.yml --out-file baseline.json +``` + +After checking in all the new files into the repository, edit the pipeline to run the cost analysis. Use the following commands in your CI job to post a comment on GitHub with the cost delta between the current commit and the baseline: + +```shell +curl -fsSL https://raw.githubusercontent.com/infracost/infracost/master/scripts/install.sh | sh +checkout +infracost diff --path . --format json --compare-to baseline.json --out-file /tmp/infracost-diff-commit.json +infracost comment github --path=/tmp/infracost-diff-commit.json --repo=$SEMAPHORE_GIT_REPO_SLUG --commit=$SEMAPHORE_GIT_SHA --github-token=$GITHUB_TOKEN --behavior=update +``` + +### Commenting on BitBucket + +Use the following command in a job to comment on BitBucket the difference in cost between the current commit and the baseline: + +```shell +curl -fsSL https://raw.githubusercontent.com/infracost/infracost/master/scripts/install.sh | sh +checkout +infracost diff --path . --format json --compare-to baseline.json --out-file /tmp/infracost-diff-commit.json +infracost comment bitbucket --path=/tmp/infracost-diff-commit.json --repo=$SEMAPHORE_GIT_REPO_SLUG --commit=$SEMAPHORE_GIT_SHA --bitbucket-token=$BITBUCKET_TOKEN --behavior=update +``` + +### Commenting on GitLab + +Use the following command in a job to comment on GitLab the difference in cost between the current commit and the baseline: + +```shell +curl -fsSL https://raw.githubusercontent.com/infracost/infracost/master/scripts/install.sh | sh +checkout +infracost diff --path . --format json --compare-to baseline.json --out-file /tmp/infracost-diff-commit.json +infracost comment gitlab --path=/tmp/infracost-diff-commit.json --repo=$SEMAPHORE_GIT_REPO_SLUG --commit=$SEMAPHORE_GIT_SHA --gitlab-token=$GITLAB_TOKEN --behavior=update +``` + +## Adding cost estimate to pull requests + +A separate job can also be created to post comment on pull requests. This allows the reviewer to quickly assess the cost changes between branches. + +### Estimates on GitHub + +The following example calculates the cost change between the master and the branch that triggered the workflow in GitHub: + +```shell +curl -fsSL https://raw.githubusercontent.com/infracost/infracost/master/scripts/install.sh | sh +checkout +git checkout master +infracost breakdown --path . --format json --out-file /tmp/infracost-master.json +git checkout FETCH_HEAD +infracost diff --path . --format json --compare-to /tmp/infracost-master.json --out-file /tmp/infracost-diff-master.json +infracost comment github --path=/tmp/infracost-diff-master.json --repo=$SEMAPHORE_GIT_REPO_SLUG --pull-request=$SEMAPHORE_GIT_PR_NUMBER --github-token=$GITHUB_TOKEN --behavior=update +``` + +### Estimates on BitBucket + +The following example calculates the cost change between the master and the branch that triggered the workflow in BitBucket: + +```shell +curl -fsSL https://raw.githubusercontent.com/infracost/infracost/master/scripts/install.sh | sh +checkout +git checkout master +infracost breakdown --path . --format json --out-file /tmp/infracost-master.json +git checkout FETCH_HEAD +infracost diff --path . --format json --compare-to /tmp/infracost-master.json --out-file /tmp/infracost-diff-master.json +infracost comment bitbucket --path=/tmp/infracost-diff-master.json --repo=$SEMAPHORE_GIT_REPO_SLUG --pull-request=$SEMAPHORE_GIT_PR_NUMBER --bitbucket-token=$BITBUCKET_TOKEN --behavior=update +``` + +### Estimates on GitLab + +The following example calculates the cost change between the master and the branch that triggered the workflow in GitLab: + +```shell +curl -fsSL https://raw.githubusercontent.com/infracost/infracost/master/scripts/install.sh | sh +checkout +git checkout master +infracost breakdown --path . --format json --out-file /tmp/infracost-master.json +git checkout FETCH_HEAD +infracost diff --path . --format json --compare-to /tmp/infracost-master.json --out-file /tmp/infracost-diff-master.json +infracost comment gitlab --path=/tmp/infracost-diff-master.json --repo=$SEMAPHORE_GIT_REPO_SLUG --pull-request=$SEMAPHORE_GIT_PR_NUMBER --gitlab-token=$GITLAB_TOKEN --behavior=update +``` + +## Enforcing policies + +Infracost can be used to enforce cost policies with continuous integration. When a policy is used, the Infracost CLI will return a non-zero exit status, stopping the pipeline and preventing a deployment that would run over the budget. + +First, we must create a policy file and push it into the repository. To learn about the policy syntax, read the [cost policies docs](https://www.infracost.io/docs/features/cost_policies/) on Infracost. + +The following example sets a maximum budget of USD 1000 per month: + +```rego +# policy.rego + +package infracost + +deny[out] { + + # define a variable + maxMonthlyCost = 1000.0 + + msg := sprintf( + "Total monthly cost must be less than $%.2f (actual cost is $%.2f)", + [maxMonthlyCost, to_number(input.totalMonthlyCost)], + ) + + out := { + "msg": msg, + "failed": to_number(input.totalMonthlyCost) >= maxMonthlyCost + } +} +``` + +To evaluate the policy file, you must add the `--policy-path POLICY_FILENAME` option to any of the comment commands. For example: + +```shell +# calculate difference between commit and baseline +infracost diff --path . --format json --compare-to baseline.json --out-file /tmp/infracost-diff-commit.json + +# enforce policy +infracost comment github --path=/tmp/infracost-diff-commit.json --repo=$SEMAPHORE_GIT_REPO_SLUG --commit=$SEMAPHORE_GIT_SHA --github-token=$GITHUB_API_KEY --behavior=update +``` + +## Tips for using Infracost + +- You can use [monorepo conditions](../monorepo) like `change_in('/**/*.tf')` or `change_in('/**/*.tfvars')` to run Infracost only when Terraform files change +- You can create a [config file](https://www.infracost.io/docs/features/config_file/) manage [monorepo workflows](../monorepo) provide utilization forecast for per-usage services such as AWS lambda +- You can add a [badge](https://www.infracost.io/docs/infracost_cloud/readme_badge/) to your repository with the estimated monthly cost diff --git a/docs/versioned_docs/version-EE/using-semaphore/recipes/trivy.md b/docs/versioned_docs/version-EE/using-semaphore/recipes/trivy.md new file mode 100644 index 000000000..af92c3bed --- /dev/null +++ b/docs/versioned_docs/version-EE/using-semaphore/recipes/trivy.md @@ -0,0 +1,152 @@ +--- +description: Open source security scans in your CI pipelines +sidebar_position: 2 +--- + +# Trivy Vulnerability Scanning + +import Tabs from '@theme/Tabs'; +import TabItem from '@theme/TabItem'; +import Available from '@site/src/components/Available'; +import VideoTutorial from '@site/src/components/VideoTutorial'; +import Steps from '@site/src/components/Steps'; + +This page explains how to run the open source [Trivy security scanner](https://github.com/aquasecurity/trivy) in Semaphore. + +## Overview + +Trivy is a comprehensive security scanner that detects various security issues across different targets. + +It can scan: + +- container images +- software dependencies +- Git repositories +- VM images and OS packages +- Kubernetes environments +- Infrastructure-as-Code (IaC) files +- filesystems for misconfigurations, leaked secrets, and license check + +Trivy works with most programming languages and operating systems. You can check if your stack is supported in the [Trivy scanning coverage page](https://trivy.dev/latest/docs/coverage/). + +## Install Trivy in Semaphore {#install} + +You must install Trivy in the CI environment or use a Docker image with Trivy already installed. + +To install Trivy in your CI environment, follow these steps: + + + +1. Find the [latest Trivy release](https://github.com/aquasecurity/trivy/releases) +2. Install Trivy using the package manager (or build from source) + + ```shell + # replace with the latest release + wget https://github.com/aquasecurity/trivy/releases/download/v0.65.0/trivy_0.65.0_Linux-32bit.deb + sudo dpkg -i trivy_0.65.0_Linux-32bit.deb + ``` + +3. Run Trivy to scan your project. Use the `--exit-code 1` option to exit with error when the scan detects a problem + + For example: + + ```shell + checkout + trivy fs --exit-code 1 . + ``` + + + +You must repeat Step 2 in every job that uses Trivy. Use the [prologue](../pipelines#prologue) if multiple jobs require Trivy. + +## Enabling the cache {#cache} + +Trivy keeps the last scans and vulnerability database in a local folder in the CI environment. You can speed up scanning jobs by caching this directory. + +Trivy stores its database in `$HOME/.cache/trivy` by default, you can change it by specifing the [`--cache-dir`](https://trivy.dev/latest/docs/configuration/cache/) option. To persist this directory, use the [cache](../cache) command. + +The following example runs a [file scan](#files) using the cache: + +```shell +cache restore trivy-db +trivy fs --exit-code 1 . +cache store trivy-db $HOME/.cache/trivy +``` + +You can use this pattern with all types of scanning. + +## Scan Files {#files} + +Trivy filesystem scan finds problems in your local directories. In the CI environment, you must run [`checkout`](../../reference/toolbox#checkout) to clone the repository in the CI machine. + +To run filesystem scan use `trivy fs`. +Filesystem scan can find: + +- vulnerabilies +- misconfigurations +- leaked secrets +- license checks + +### Vulnerabilities and leaked secrets {#vulnerabilities} + +To find vulnerabilities or leaked secrets in your code or dependencies, execute `trivy fs` as follows: + +```shell +checkout +trivy fs --exit-code 1 path/to/src +``` + +### Misconfigurations {#misconfigurations} + +By default, Trivy doesn't try to find misconfigurations, to enable this option, follow this example: + +```shell +checkout +trivy --scanners misconfig --exit-code 1 path/to/src +``` + +### License {#license} + +To perform [license scanning](https://trivy.dev/latest/docs/scanner/license/) execute Trivy as follows: + +```shell +checkout +trivy fs --scanners license --exit-code 1 path/to/src +``` + +## Scan Container images + +To scan your container images, including OS packages, use the following command. You might need to [authenticate with the Docker registry](../containers/docker#auth) first. + +```shell +docker pull IMAGE_NAME:TAG +trivy image --exit-code 1 IMAGE_NAME:TAG +``` + +As with filesystem scans, you can enable [misconfigurations](#misconfigurations) and [license](#license) scans in the container image. + +## Generate SBOM + +Trivy can generate a [Software Bill of Materials (SBOM)](https://trivy.dev/latest/docs/supply-chain/sbom/). + +For example, these command generate the SBOM using the CycloneDX format: + +```shell +checkout +trivy fs --format cyclonedx --output sbom.json path/to/src +artifact push workflow sbom.json +``` + +You can also generate SBOMs for Docker images with: + +```shell +docker pull IMAGE_NAME:TAG +trivy image --format cyclonedx --output sbom.json IMAGE_NAME:TAG +artifact push workflow sbom.json +``` + +## See also + +- [Trivy repository](https://github.com/aquasecurity/trivy) +- [Trivy Documentation](https://trivy.dev/latest/docs/) +- [Continuous Container Vulnerability Testing with Trivy](https://semaphore.io/blog/continuous-container-vulnerability-testing-with-trivy#h-vulnerability-testing-for-dependencies) diff --git a/docs/versioned_docs/version-EE/using-semaphore/self-hosted-aws.md b/docs/versioned_docs/version-EE/using-semaphore/self-hosted-aws.md index 92b95b966..01b0db3f9 100644 --- a/docs/versioned_docs/version-EE/using-semaphore/self-hosted-aws.md +++ b/docs/versioned_docs/version-EE/using-semaphore/self-hosted-aws.md @@ -275,7 +275,7 @@ See the [AWS stack parameters reference](../reference/agent-aws-stack) for all t ### Cache -See [setting up S3 cache](./optimization/cache#aws) to learn how to configure cache with AWS S3 buckets. +See [setting up S3 cache](./cache#aws) to learn how to configure cache with AWS S3 buckets. ### Autoscaling {#scale} diff --git a/docs/versioned_docs/version-EE/using-semaphore/self-hosted.md b/docs/versioned_docs/version-EE/using-semaphore/self-hosted.md index e8c451233..d30171ad6 100644 --- a/docs/versioned_docs/version-EE/using-semaphore/self-hosted.md +++ b/docs/versioned_docs/version-EE/using-semaphore/self-hosted.md @@ -59,7 +59,6 @@ Self-hosted agents use one-way communication to connect with Semaphore. Requests When the agent boots up it sends a register request using a registration token. If the registration succeeds, the agent receives an access token to be used in all future communications and enters the *waiting for job* state. - ```mermaid sequenceDiagram Agent->>+Semaphore: GET /register(registrationToken) @@ -130,7 +129,7 @@ Not all of the [Semaphore toolbox](../reference/toolbox) commands are available | Feature | Available | Notes | |---------------------------------------------|-----------|-------------------------------------------------| -| Using the [cache](../reference/toolbox#cache) | Optional | Using [S3](./optimization/cache#aws), [GCP](./optimization/cache#gcp), or [SFTP](./optimization/cache#sftp) as a storage backend | +| Using the [cache](../reference/toolbox#cache) | Optional | Using [S3](./cache#aws), [GCP](./cache#gcp), or [SFTP](./cache#sftp) as a storage backend | | [Artifact](./artifacts) storage | Yes | | | [Test results](./tests/test-reports) | Yes | | | Checking code with [checkout](../reference/toolbox#checkout) | Yes | | @@ -223,4 +222,3 @@ Keep in mind that: - [How to configure self-hosted agents](./self-hosted-configure) - [How to run an autoscaling fleet of agents in AWS](./self-hosted-aws) - [Self-hosted agents configuration reference](../reference/self-hosted-config) - diff --git a/docs/versioned_docs/version-EE/using-semaphore/workflows.md b/docs/versioned_docs/version-EE/using-semaphore/workflows.md index 6e9b91419..e6d3c5556 100644 --- a/docs/versioned_docs/version-EE/using-semaphore/workflows.md +++ b/docs/versioned_docs/version-EE/using-semaphore/workflows.md @@ -108,7 +108,10 @@ Selecting **Run on** allows you to configure what triggers are enabled for the p ::: -- Enabling **Pull requests** option allows Semaphore to run workflows on pull requests originating in the same repository +- Enabling **Pull requests** option allows Semaphore to run workflows on pull requests originating in the same repository. You can opt to disable triggering workflows on **draft pull requests** + +![Control how pull requests and draft pull requests are handled](./img/trigger-draft-pull-request.jpg) + - The **Forked pull request** works the same for pull requests originating from forked pull requests. [To prevent security leaks](#pr), you can configure a list of allowed secrets and GitHub/BitBucket usernames that can trigger workflows in this way ![Pull request triggers](./img/project-general-settings-3.jpg) diff --git a/docs/versioned_sidebars/version-CE-1.2-sidebars.json b/docs/versioned_sidebars/version-CE-1.3-sidebars.json similarity index 91% rename from docs/versioned_sidebars/version-CE-1.2-sidebars.json rename to docs/versioned_sidebars/version-CE-1.3-sidebars.json index 0038b1bda..83b0f4f43 100644 --- a/docs/versioned_sidebars/version-CE-1.2-sidebars.json +++ b/docs/versioned_sidebars/version-CE-1.3-sidebars.json @@ -60,7 +60,7 @@ { "type": "category", "label": "Migration Guides", - "collapsed": true, + "collapsed": false, "items": [ { "type": "autogenerated", @@ -83,6 +83,7 @@ "using-semaphore/jobs", "using-semaphore/pipelines", "using-semaphore/artifacts", + "using-semaphore/cache", "using-semaphore/secrets", "using-semaphore/tasks" ] @@ -107,7 +108,7 @@ { "type": "category", "label": "Reports", - "collapsed": false, + "collapsed": true, "items": [ { "type": "autogenerated", @@ -122,12 +123,23 @@ "type": "doc", "id": "using-semaphore/organizations" }, - "collapsed": false, + "collapsed": true, "items": [ "using-semaphore/rbac", "using-semaphore/notifications" ] }, + { + "type": "category", + "label": "Containers", + "collapsed": true, + "items": [ + { + "type": "autogenerated", + "dirName": "using-semaphore/containers" + } + ] + }, { "type": "category", "label": "Self-hosted Agents", @@ -135,7 +147,7 @@ "type": "doc", "id": "using-semaphore/self-hosted" }, - "collapsed": false, + "collapsed": true, "items": [ "using-semaphore/self-hosted-install", "using-semaphore/self-hosted-configure", @@ -144,12 +156,12 @@ }, { "type": "category", - "label": "Optimization", - "collapsed": false, + "label": "Recipes", + "collapsed": true, "items": [ { "type": "autogenerated", - "dirName": "using-semaphore/optimization" + "dirName": "using-semaphore/recipes" } ] } @@ -169,7 +181,7 @@ "type": "doc", "id": "reference/resources-yaml" }, - "collapsed": false, + "collapsed": true, "items": [ "reference/agent-yaml", "reference/jobs-yaml", diff --git a/docs/versioned_sidebars/version-CE-sidebars.json b/docs/versioned_sidebars/version-CE-sidebars.json index 0038b1bda..83b0f4f43 100644 --- a/docs/versioned_sidebars/version-CE-sidebars.json +++ b/docs/versioned_sidebars/version-CE-sidebars.json @@ -60,7 +60,7 @@ { "type": "category", "label": "Migration Guides", - "collapsed": true, + "collapsed": false, "items": [ { "type": "autogenerated", @@ -83,6 +83,7 @@ "using-semaphore/jobs", "using-semaphore/pipelines", "using-semaphore/artifacts", + "using-semaphore/cache", "using-semaphore/secrets", "using-semaphore/tasks" ] @@ -107,7 +108,7 @@ { "type": "category", "label": "Reports", - "collapsed": false, + "collapsed": true, "items": [ { "type": "autogenerated", @@ -122,12 +123,23 @@ "type": "doc", "id": "using-semaphore/organizations" }, - "collapsed": false, + "collapsed": true, "items": [ "using-semaphore/rbac", "using-semaphore/notifications" ] }, + { + "type": "category", + "label": "Containers", + "collapsed": true, + "items": [ + { + "type": "autogenerated", + "dirName": "using-semaphore/containers" + } + ] + }, { "type": "category", "label": "Self-hosted Agents", @@ -135,7 +147,7 @@ "type": "doc", "id": "using-semaphore/self-hosted" }, - "collapsed": false, + "collapsed": true, "items": [ "using-semaphore/self-hosted-install", "using-semaphore/self-hosted-configure", @@ -144,12 +156,12 @@ }, { "type": "category", - "label": "Optimization", - "collapsed": false, + "label": "Recipes", + "collapsed": true, "items": [ { "type": "autogenerated", - "dirName": "using-semaphore/optimization" + "dirName": "using-semaphore/recipes" } ] } @@ -169,7 +181,7 @@ "type": "doc", "id": "reference/resources-yaml" }, - "collapsed": false, + "collapsed": true, "items": [ "reference/agent-yaml", "reference/jobs-yaml", diff --git a/docs/versioned_sidebars/version-CE-1.1-sidebars.json b/docs/versioned_sidebars/version-EE-1.3-sidebars.json similarity index 81% rename from docs/versioned_sidebars/version-CE-1.1-sidebars.json rename to docs/versioned_sidebars/version-EE-1.3-sidebars.json index 2c4ea13e7..cfb7c6044 100644 --- a/docs/versioned_sidebars/version-CE-1.1-sidebars.json +++ b/docs/versioned_sidebars/version-EE-1.3-sidebars.json @@ -11,6 +11,7 @@ "items": [ "getting-started/about-semaphore", "getting-started/features", + "getting-started/license", { "type": "category", "label": "Single-machine Install", @@ -60,7 +61,7 @@ { "type": "category", "label": "Migration Guides", - "collapsed": true, + "collapsed": false, "items": [ { "type": "autogenerated", @@ -68,8 +69,7 @@ } ] }, - "getting-started/faq", - "getting-started/changelog" + "getting-started/faq" ], "usingSemaphore": [ { @@ -84,7 +84,9 @@ "using-semaphore/jobs", "using-semaphore/pipelines", "using-semaphore/artifacts", + "using-semaphore/cache", "using-semaphore/secrets", + "using-semaphore/promotions", "using-semaphore/tasks" ] }, @@ -101,13 +103,15 @@ "using-semaphore/connect-github-oauth", "using-semaphore/connect-bitbucket", "using-semaphore/connect-gitlab", + "using-semaphore/connect-git-server", + "using-semaphore/insights", "using-semaphore/monorepo" ] }, { "type": "category", "label": "Reports", - "collapsed": false, + "collapsed": true, "items": [ { "type": "autogenerated", @@ -122,10 +126,26 @@ "type": "doc", "id": "using-semaphore/organizations" }, - "collapsed": false, + "collapsed": true, "items": [ "using-semaphore/rbac", - "using-semaphore/notifications" + "using-semaphore/org-health", + "using-semaphore/org-preflight", + "using-semaphore/notifications", + "using-semaphore/github-sso", + "using-semaphore/okta", + "using-semaphore/openid" + ] + }, + { + "type": "category", + "label": "Containers", + "collapsed": true, + "items": [ + { + "type": "autogenerated", + "dirName": "using-semaphore/containers" + } ] }, { @@ -135,7 +155,7 @@ "type": "doc", "id": "using-semaphore/self-hosted" }, - "collapsed": false, + "collapsed": true, "items": [ "using-semaphore/self-hosted-install", "using-semaphore/self-hosted-configure", @@ -144,12 +164,12 @@ }, { "type": "category", - "label": "Optimization", - "collapsed": false, + "label": "Recipes", + "collapsed": true, "items": [ { "type": "autogenerated", - "dirName": "using-semaphore/optimization" + "dirName": "using-semaphore/recipes" } ] } @@ -161,6 +181,7 @@ "reference/env-vars", "reference/conditions-dsl", "reference/self-hosted-config", + "reference/openid", "reference/agent-aws-stack", { "type": "category", @@ -169,10 +190,12 @@ "type": "doc", "id": "reference/resources-yaml" }, - "collapsed": false, + "collapsed": true, "items": [ "reference/agent-yaml", + "reference/dashboard-yaml", "reference/jobs-yaml", + "reference/deployment-target-yaml", "reference/notifications-yaml", "reference/pipeline-yaml", "reference/project-yaml", diff --git a/docs/versioned_sidebars/version-EE-sidebars.json b/docs/versioned_sidebars/version-EE-sidebars.json index faaae2ab3..cfb7c6044 100644 --- a/docs/versioned_sidebars/version-EE-sidebars.json +++ b/docs/versioned_sidebars/version-EE-sidebars.json @@ -61,7 +61,7 @@ { "type": "category", "label": "Migration Guides", - "collapsed": true, + "collapsed": false, "items": [ { "type": "autogenerated", @@ -84,6 +84,7 @@ "using-semaphore/jobs", "using-semaphore/pipelines", "using-semaphore/artifacts", + "using-semaphore/cache", "using-semaphore/secrets", "using-semaphore/promotions", "using-semaphore/tasks" @@ -110,7 +111,7 @@ { "type": "category", "label": "Reports", - "collapsed": false, + "collapsed": true, "items": [ { "type": "autogenerated", @@ -125,7 +126,7 @@ "type": "doc", "id": "using-semaphore/organizations" }, - "collapsed": false, + "collapsed": true, "items": [ "using-semaphore/rbac", "using-semaphore/org-health", @@ -136,6 +137,17 @@ "using-semaphore/openid" ] }, + { + "type": "category", + "label": "Containers", + "collapsed": true, + "items": [ + { + "type": "autogenerated", + "dirName": "using-semaphore/containers" + } + ] + }, { "type": "category", "label": "Self-hosted Agents", @@ -143,7 +155,7 @@ "type": "doc", "id": "using-semaphore/self-hosted" }, - "collapsed": false, + "collapsed": true, "items": [ "using-semaphore/self-hosted-install", "using-semaphore/self-hosted-configure", @@ -152,12 +164,12 @@ }, { "type": "category", - "label": "Optimization", - "collapsed": false, + "label": "Recipes", + "collapsed": true, "items": [ { "type": "autogenerated", - "dirName": "using-semaphore/optimization" + "dirName": "using-semaphore/recipes" } ] } @@ -178,7 +190,7 @@ "type": "doc", "id": "reference/resources-yaml" }, - "collapsed": false, + "collapsed": true, "items": [ "reference/agent-yaml", "reference/dashboard-yaml", diff --git a/docs/versions.json b/docs/versions.json index 09f2a864a..3b8a1420b 100644 --- a/docs/versions.json +++ b/docs/versions.json @@ -1,6 +1,6 @@ [ "CE", - "CE-1.2", - "CE-1.1", - "EE" + "CE-1.3", + "EE", + "EE-1.3" ] diff --git a/docs/yarn.lock b/docs/yarn.lock index 60f1bcd3a..2bf8dbbec 100644 --- a/docs/yarn.lock +++ b/docs/yarn.lock @@ -2285,6 +2285,46 @@ resolved "https://registry.npmjs.org/@rspack/binding-darwin-arm64/-/binding-darwin-arm64-1.0.14.tgz" integrity sha512-dHvlF6T6ctThGDIdvkSdacroA1xlCxfteuppBj8BX/UxzLPr4xsaEtNilfJmFfd2/J02UQyTQauN/9EBuA+YkA== +"@rspack/binding-darwin-x64@1.0.14": + version "1.0.14" + resolved "https://registry.npmjs.org/@rspack/binding-darwin-x64/-/binding-darwin-x64-1.0.14.tgz" + integrity sha512-q4Da1Bn/4xTLhhnOkT+fjP2STsSCfp4z03/J/h8tCVG/UYz56Ud3q1UEOK33c5Fxw1C4GlhEh5yYOlSAdxFQLQ== + +"@rspack/binding-linux-arm64-gnu@1.0.14": + version "1.0.14" + resolved "https://registry.npmjs.org/@rspack/binding-linux-arm64-gnu/-/binding-linux-arm64-gnu-1.0.14.tgz" + integrity sha512-JogYtL3VQS9wJ3p3FNhDqinm7avrMsdwz4erP7YCjD7idob93GYAE7dPrHUzSNVnCBYXRaHJYZHDQs7lKVcYZw== + +"@rspack/binding-linux-arm64-musl@1.0.14": + version "1.0.14" + resolved "https://registry.npmjs.org/@rspack/binding-linux-arm64-musl/-/binding-linux-arm64-musl-1.0.14.tgz" + integrity sha512-qgybhxI/nnoa8CUz7zKTC0Oh37NZt9uRxsSV7+ZYrfxqbrVCoNVuutPpY724uUHy1M6W34kVEm1uT1N4Ka5cZg== + +"@rspack/binding-linux-x64-gnu@1.0.14": + version "1.0.14" + resolved "https://registry.npmjs.org/@rspack/binding-linux-x64-gnu/-/binding-linux-x64-gnu-1.0.14.tgz" + integrity sha512-5vzaDRw3/sGKo3ax/1cU3/cxqNjajwlt2LU288vXNe1/n8oe/pcDfYcTugpOe/A1DqzadanudJszLpFcKsaFtQ== + +"@rspack/binding-linux-x64-musl@1.0.14": + version "1.0.14" + resolved "https://registry.npmjs.org/@rspack/binding-linux-x64-musl/-/binding-linux-x64-musl-1.0.14.tgz" + integrity sha512-4U6QD9xVS1eGme52DuJr6Fg/KdcUfJ+iKwH49Up460dZ/fLvGylnVGA+V0mzPlKi8gfy7NwFuYXZdu3Pwi1YYg== + +"@rspack/binding-win32-arm64-msvc@1.0.14": + version "1.0.14" + resolved "https://registry.npmjs.org/@rspack/binding-win32-arm64-msvc/-/binding-win32-arm64-msvc-1.0.14.tgz" + integrity sha512-SjeYw7qqRHYZ5RPClu+ffKZsShQdU3amA1OwC3M0AS6dbfEcji8482St3Y8Z+QSzYRapCEZij9LMM/9ypEhISg== + +"@rspack/binding-win32-ia32-msvc@1.0.14": + version "1.0.14" + resolved "https://registry.npmjs.org/@rspack/binding-win32-ia32-msvc/-/binding-win32-ia32-msvc-1.0.14.tgz" + integrity sha512-m1gUiVyz3Z3VYIK/Ayo5CVHBjnEeRk9a+KIpKSsq1yhZItnMgjtr4bKabU9vjxalO4UoaSmVzODJI8lJBlnn5Q== + +"@rspack/binding-win32-x64-msvc@1.0.14": + version "1.0.14" + resolved "https://registry.npmjs.org/@rspack/binding-win32-x64-msvc/-/binding-win32-x64-msvc-1.0.14.tgz" + integrity sha512-Gbeg+bayMF9VP9xmlxySL/TC2XrS6/LZM/pqcNOTLHx6LMG/VXCcmKB0rOZo8MzLXEt8D/lQmQ/B6g7pSaAw0g== + "@rspack/binding@1.0.14": version "1.0.14" resolved "https://registry.npmjs.org/@rspack/binding/-/binding-1.0.14.tgz" diff --git a/e2e/scripts/test-setup.sh b/e2e/scripts/test-setup.sh index 258eb61ef..7d8f82b07 100755 --- a/e2e/scripts/test-setup.sh +++ b/e2e/scripts/test-setup.sh @@ -7,14 +7,14 @@ if [[ "$CLOUD_TEST_ENVIRONMENT_TYPE" == "gke" ]]; then artifact pull project "environments/${CLOUD_TEST_ENV_PREFIX}/terraform.tfstate" -d terraform.tfstate CLUSTER_NAME=$(terraform output -raw cluster_name) gcloud container clusters get-credentials ${CLUSTER_NAME} --region us-east4 --project ${GOOGLE_PROJECT_NAME} - export SEMAPHORE_API_TOKEN=$(kubectl get secret root-user -o jsonpath='{.data.token}' | base64 -d) - export SEMAPHORE_USER_PASSWORD=$(kubectl get secret root-user -o jsonpath='{.data.password}' | base64 -d) + export SEMAPHORE_API_TOKEN=$(kubectl get secret semaphore-authentication -o jsonpath='{.data.ROOT_USER_TOKEN}' | base64 -d) + export SEMAPHORE_USER_PASSWORD=$(kubectl get secret semaphore-authentication -o jsonpath='{.data.ROOT_USER_PASSWORD}' | base64 -d) elif [[ "$CLOUD_TEST_ENVIRONMENT_TYPE" == "single-vm" ]]; then artifact pull project "environments/${CLOUD_TEST_ENV_PREFIX}/private-ssh-key" -d private-ssh-key artifact pull project "environments/${CLOUD_TEST_ENV_PREFIX}/private-ssh-key.pub" -d private-ssh-key.pub chmod 400 private-ssh-key - export SEMAPHORE_API_TOKEN=$(gcloud compute ssh --ssh-key-file private-ssh-key test-${CLOUD_TEST_ENV_PREFIX} --command "kubectl get secret root-user -o jsonpath='{.data.token}' | base64 -d") - export SEMAPHORE_USER_PASSWORD=$(gcloud compute ssh --ssh-key-file private-ssh-key test-${CLOUD_TEST_ENV_PREFIX} --command "kubectl get secret root-user -o jsonpath='{.data.password}' | base64 -d") + export SEMAPHORE_API_TOKEN=$(gcloud compute ssh --ssh-key-file private-ssh-key test-${CLOUD_TEST_ENV_PREFIX} --command "kubectl get secret semaphore-authentication -o jsonpath='{.data.ROOT_USER_TOKEN}' | base64 -d") + export SEMAPHORE_USER_PASSWORD=$(gcloud compute ssh --ssh-key-file private-ssh-key test-${CLOUD_TEST_ENV_PREFIX} --command "kubectl get secret semaphore-authentication -o jsonpath='{.data.ROOT_USER_PASSWORD}' | base64 -d") else echo "Unknown environment type: ${CLOUD_TEST_ENVIRONMENT_TYPE}" exit 1 diff --git a/e2e/test/e2e/ui/git_integrations_test.exs b/e2e/test/e2e/ui/git_integrations_test.exs index 0e4a2ec6c..aeb3e4a08 100644 --- a/e2e/test/e2e/ui/git_integrations_test.exs +++ b/e2e/test/e2e/ui/git_integrations_test.exs @@ -98,7 +98,7 @@ defmodule E2E.UI.GitIntegrationsTest do session |> assert_has(Wallaby.Query.text("GitHub App Connection")) # Green circle indicator - |> assert_has(Wallaby.Query.css("[data-testid='connection-status']")) + |> assert_has(Wallaby.Query.css("[data-testid='connection-status']", minimum: 1)) end test "has required permissions section", %{session: session} do diff --git a/ee/gofer/lib/gofer/actions/trigger_impl.ex b/ee/gofer/lib/gofer/actions/trigger_impl.ex index d45b50364..15e7d1d5a 100644 --- a/ee/gofer/lib/gofer/actions/trigger_impl.ex +++ b/ee/gofer/lib/gofer/actions/trigger_impl.ex @@ -76,7 +76,10 @@ defmodule Gofer.Actions.TriggerImpl do defp valid_value(env_vars_map, name, value) do env_vars_map - |> Map.get(name, {:error, "Parameter '#{name}' is not defined in promotion's yml definiton."}) + |> Map.get( + name, + {:error, "Parameter '#{name}' is not defined in promotion's yml definition."} + ) |> valid_value_(value) |> remove_env_var_from_map(env_vars_map, name) end diff --git a/ee/gofer/lib/gofer/grpc.ex b/ee/gofer/lib/gofer/grpc.ex index 63bf5eaf7..aa486c7ea 100644 --- a/ee/gofer/lib/gofer/grpc.ex +++ b/ee/gofer/lib/gofer/grpc.ex @@ -1,6 +1,6 @@ defmodule Gofer.Grpc do @moduledoc """ - gRPC server supervisor definiton + gRPC server supervisor definition """ use GRPC.Endpoint diff --git a/ee/gofer/lib/internal_api/plumber_w_f.workflow.pb.ex b/ee/gofer/lib/internal_api/plumber_w_f.workflow.pb.ex index 7e29db3ae..d0295632e 100644 --- a/ee/gofer/lib/internal_api/plumber_w_f.workflow.pb.ex +++ b/ee/gofer/lib/internal_api/plumber_w_f.workflow.pb.ex @@ -25,6 +25,8 @@ defmodule InternalApi.PlumberWF.ScheduleRequest.ServiceType do field :LOCAL, 1 field :SNAPSHOT, 2 field :BITBUCKET, 3 + field :GITLAB, 4 + field :GIT, 5 end defmodule InternalApi.PlumberWF.ListLatestWorkflowsRequest.Order do diff --git a/ee/gofer/lib/internal_api/projecthub.pb.ex b/ee/gofer/lib/internal_api/projecthub.pb.ex index 3b6f35acb..1b14b3442 100644 --- a/ee/gofer/lib/internal_api/projecthub.pb.ex +++ b/ee/gofer/lib/internal_api/projecthub.pb.ex @@ -35,6 +35,7 @@ defmodule InternalApi.Projecthub.Project.Spec.Repository.RunType do field :TAGS, 1 field :PULL_REQUESTS, 2 field :FORKED_PULL_REQUESTS, 3 + field :DRAFT_PULL_REQUESTS, 4 end defmodule InternalApi.Projecthub.Project.Spec.Repository.Status.PipelineFile.Level do @@ -70,6 +71,7 @@ defmodule InternalApi.Projecthub.Project.Status.State do field :INITIALIZING, 0 field :READY, 1 field :ERROR, 2 + field :ONBOARDING, 3 end defmodule InternalApi.Projecthub.ListKeysetRequest.Direction do @@ -350,6 +352,7 @@ defmodule InternalApi.Projecthub.ListRequest do field :pagination, 2, type: InternalApi.Projecthub.PaginationRequest field :owner_id, 3, type: :string, json_name: "ownerId" field :repo_url, 4, type: :string, json_name: "repoUrl" + field :soft_deleted, 5, type: :bool, json_name: "softDeleted" end defmodule InternalApi.Projecthub.ListResponse do @@ -371,6 +374,7 @@ defmodule InternalApi.Projecthub.ListKeysetRequest do field :direction, 4, type: InternalApi.Projecthub.ListKeysetRequest.Direction, enum: true field :owner_id, 5, type: :string, json_name: "ownerId" field :repo_url, 6, type: :string, json_name: "repoUrl" + field :created_after, 7, type: Google.Protobuf.Timestamp, json_name: "createdAfter" end defmodule InternalApi.Projecthub.ListKeysetResponse do @@ -391,6 +395,7 @@ defmodule InternalApi.Projecthub.DescribeRequest do field :id, 2, type: :string field :name, 3, type: :string field :detailed, 4, type: :bool + field :soft_deleted, 5, type: :bool, json_name: "softDeleted" end defmodule InternalApi.Projecthub.DescribeResponse do @@ -407,6 +412,7 @@ defmodule InternalApi.Projecthub.DescribeManyRequest do field :metadata, 1, type: InternalApi.Projecthub.RequestMeta field :ids, 2, repeated: true, type: :string + field :soft_deleted, 3, type: :bool, json_name: "softDeleted" end defmodule InternalApi.Projecthub.DescribeManyResponse do @@ -423,6 +429,7 @@ defmodule InternalApi.Projecthub.CreateRequest do field :metadata, 1, type: InternalApi.Projecthub.RequestMeta field :project, 2, type: InternalApi.Projecthub.Project + field :skip_onboarding, 3, type: :bool, json_name: "skipOnboarding" end defmodule InternalApi.Projecthub.CreateResponse do @@ -466,6 +473,21 @@ defmodule InternalApi.Projecthub.DestroyResponse do field :metadata, 1, type: InternalApi.Projecthub.ResponseMeta end +defmodule InternalApi.Projecthub.RestoreRequest do + @moduledoc false + use Protobuf, syntax: :proto3, protoc_gen_elixir_version: "0.10.0" + + field :metadata, 1, type: InternalApi.Projecthub.RequestMeta + field :id, 2, type: :string +end + +defmodule InternalApi.Projecthub.RestoreResponse do + @moduledoc false + use Protobuf, syntax: :proto3, protoc_gen_elixir_version: "0.10.0" + + field :metadata, 1, type: InternalApi.Projecthub.ResponseMeta +end + defmodule InternalApi.Projecthub.UsersRequest do @moduledoc false use Protobuf, syntax: :proto3, protoc_gen_elixir_version: "0.10.0" @@ -497,6 +519,7 @@ defmodule InternalApi.Projecthub.CheckDeployKeyResponse.DeployKey do field :title, 1, type: :string field :fingerprint, 2, type: :string field :created_at, 3, type: Google.Protobuf.Timestamp, json_name: "createdAt" + field :public_key, 4, type: :string, json_name: "publicKey" end defmodule InternalApi.Projecthub.CheckDeployKeyResponse do @@ -525,6 +548,7 @@ defmodule InternalApi.Projecthub.RegenerateDeployKeyResponse.DeployKey do field :title, 1, type: :string field :fingerprint, 2, type: :string field :created_at, 3, type: Google.Protobuf.Timestamp, json_name: "createdAt" + field :public_key, 4, type: :string, json_name: "publicKey" end defmodule InternalApi.Projecthub.RegenerateDeployKeyResponse do @@ -624,6 +648,37 @@ defmodule InternalApi.Projecthub.GithubAppSwitchResponse do field :metadata, 1, type: InternalApi.Projecthub.ResponseMeta end +defmodule InternalApi.Projecthub.FinishOnboardingRequest do + @moduledoc false + use Protobuf, syntax: :proto3, protoc_gen_elixir_version: "0.10.0" + + field :metadata, 1, type: InternalApi.Projecthub.RequestMeta + field :id, 2, type: :string +end + +defmodule InternalApi.Projecthub.FinishOnboardingResponse do + @moduledoc false + use Protobuf, syntax: :proto3, protoc_gen_elixir_version: "0.10.0" + + field :metadata, 1, type: InternalApi.Projecthub.ResponseMeta +end + +defmodule InternalApi.Projecthub.RegenerateWebhookSecretRequest do + @moduledoc false + use Protobuf, syntax: :proto3, protoc_gen_elixir_version: "0.10.0" + + field :metadata, 1, type: InternalApi.Projecthub.RequestMeta + field :id, 2, type: :string +end + +defmodule InternalApi.Projecthub.RegenerateWebhookSecretResponse do + @moduledoc false + use Protobuf, syntax: :proto3, protoc_gen_elixir_version: "0.10.0" + + field :metadata, 1, type: InternalApi.Projecthub.ResponseMeta + field :secret, 2, type: :string +end + defmodule InternalApi.Projecthub.ProjectCreated do @moduledoc false use Protobuf, syntax: :proto3, protoc_gen_elixir_version: "0.10.0" @@ -642,6 +697,15 @@ defmodule InternalApi.Projecthub.ProjectDeleted do field :org_id, 3, type: :string, json_name: "orgId" end +defmodule InternalApi.Projecthub.ProjectRestored do + @moduledoc false + use Protobuf, syntax: :proto3, protoc_gen_elixir_version: "0.10.0" + + field :project_id, 1, type: :string, json_name: "projectId" + field :timestamp, 2, type: Google.Protobuf.Timestamp + field :org_id, 3, type: :string, json_name: "orgId" +end + defmodule InternalApi.Projecthub.ProjectUpdated do @moduledoc false use Protobuf, syntax: :proto3, protoc_gen_elixir_version: "0.10.0" @@ -683,6 +747,8 @@ defmodule InternalApi.Projecthub.ProjectService.Service do rpc :Destroy, InternalApi.Projecthub.DestroyRequest, InternalApi.Projecthub.DestroyResponse + rpc :Restore, InternalApi.Projecthub.RestoreRequest, InternalApi.Projecthub.RestoreResponse + rpc :Users, InternalApi.Projecthub.UsersRequest, InternalApi.Projecthub.UsersResponse rpc :CheckDeployKey, @@ -701,6 +767,10 @@ defmodule InternalApi.Projecthub.ProjectService.Service do InternalApi.Projecthub.RegenerateWebhookRequest, InternalApi.Projecthub.RegenerateWebhookResponse + rpc :RegenerateWebhookSecret, + InternalApi.Projecthub.RegenerateWebhookSecretRequest, + InternalApi.Projecthub.RegenerateWebhookSecretResponse + rpc :ChangeProjectOwner, InternalApi.Projecthub.ChangeProjectOwnerRequest, InternalApi.Projecthub.ChangeProjectOwnerResponse @@ -712,6 +782,10 @@ defmodule InternalApi.Projecthub.ProjectService.Service do rpc :GithubAppSwitch, InternalApi.Projecthub.GithubAppSwitchRequest, InternalApi.Projecthub.GithubAppSwitchResponse + + rpc :FinishOnboarding, + InternalApi.Projecthub.FinishOnboardingRequest, + InternalApi.Projecthub.FinishOnboardingResponse end defmodule InternalApi.Projecthub.ProjectService.Stub do diff --git a/ee/gofer/lib/internal_api/rbac.pb.ex b/ee/gofer/lib/internal_api/rbac.pb.ex index a97020737..dee9b14ef 100644 --- a/ee/gofer/lib/internal_api/rbac.pb.ex +++ b/ee/gofer/lib/internal_api/rbac.pb.ex @@ -26,6 +26,7 @@ defmodule InternalApi.RBAC.RoleBindingSource do field :ROLE_BINDING_SOURCE_GITLAB, 4 field :ROLE_BINDING_SOURCE_SCIM, 5 field :ROLE_BINDING_SOURCE_INHERITED_FROM_ORG_ROLE, 6 + field :ROLE_BINDING_SOURCE_SAML_JIT, 7 end defmodule InternalApi.RBAC.ListUserPermissionsRequest do @@ -216,6 +217,20 @@ defmodule InternalApi.RBAC.ListMembersResponse do field :total_pages, 2, type: :int32, json_name: "totalPages" end +defmodule InternalApi.RBAC.CountMembersRequest do + @moduledoc false + use Protobuf, syntax: :proto3, protoc_gen_elixir_version: "0.10.0" + + field :org_id, 1, type: :string, json_name: "orgId" +end + +defmodule InternalApi.RBAC.CountMembersResponse do + @moduledoc false + use Protobuf, syntax: :proto3, protoc_gen_elixir_version: "0.10.0" + + field :members, 1, type: :int32 +end + defmodule InternalApi.RBAC.SubjectRoleBinding do @moduledoc false use Protobuf, syntax: :proto3, protoc_gen_elixir_version: "0.10.0" @@ -273,6 +288,18 @@ defmodule InternalApi.RBAC.Subject do field :display_name, 3, type: :string, json_name: "displayName" end +defmodule InternalApi.RBAC.RefreshCollaboratorsRequest do + @moduledoc false + use Protobuf, syntax: :proto3, protoc_gen_elixir_version: "0.10.0" + + field :org_id, 1, type: :string, json_name: "orgId" +end + +defmodule InternalApi.RBAC.RefreshCollaboratorsResponse do + @moduledoc false + use Protobuf, syntax: :proto3, protoc_gen_elixir_version: "0.10.0" +end + defmodule InternalApi.RBAC.Role do @moduledoc false use Protobuf, syntax: :proto3, protoc_gen_elixir_version: "0.10.0" @@ -334,6 +361,8 @@ defmodule InternalApi.RBAC.RBAC.Service do rpc :ListMembers, InternalApi.RBAC.ListMembersRequest, InternalApi.RBAC.ListMembersResponse + rpc :CountMembers, InternalApi.RBAC.CountMembersRequest, InternalApi.RBAC.CountMembersResponse + rpc :ListAccessibleOrgs, InternalApi.RBAC.ListAccessibleOrgsRequest, InternalApi.RBAC.ListAccessibleOrgsResponse @@ -341,6 +370,10 @@ defmodule InternalApi.RBAC.RBAC.Service do rpc :ListAccessibleProjects, InternalApi.RBAC.ListAccessibleProjectsRequest, InternalApi.RBAC.ListAccessibleProjectsResponse + + rpc :RefreshCollaborators, + InternalApi.RBAC.RefreshCollaboratorsRequest, + InternalApi.RBAC.RefreshCollaboratorsResponse end defmodule InternalApi.RBAC.RBAC.Stub do diff --git a/ee/gofer/lib/internal_api/repository.pb.ex b/ee/gofer/lib/internal_api/repository.pb.ex index 8a3952e7e..7a7fb97e8 100644 --- a/ee/gofer/lib/internal_api/repository.pb.ex +++ b/ee/gofer/lib/internal_api/repository.pb.ex @@ -79,6 +79,7 @@ defmodule InternalApi.Repository.DeployKey do field :title, 1, type: :string field :fingerprint, 2, type: :string field :created_at, 3, type: Google.Protobuf.Timestamp, json_name: "createdAt" + field :public_key, 4, type: :string, json_name: "publicKey" end defmodule InternalApi.Repository.DescribeRemoteRepositoryRequest do @@ -327,6 +328,7 @@ defmodule InternalApi.Repository.Repository do field :whitelist, 11, type: InternalApi.Projecthub.Project.Spec.Repository.Whitelist field :hook_id, 12, type: :string, json_name: "hookId" field :default_branch, 13, type: :string, json_name: "defaultBranch" + field :connected, 14, type: :bool end defmodule InternalApi.Repository.RemoteRepository do @@ -481,6 +483,7 @@ defmodule InternalApi.Repository.CreateRequest do json_name: "commitStatus" field :whitelist, 9, type: InternalApi.Projecthub.Project.Spec.Repository.Whitelist + field :default_branch, 10, type: :string, json_name: "defaultBranch" end defmodule InternalApi.Repository.CreateResponse do @@ -522,6 +525,7 @@ defmodule InternalApi.Repository.UpdateRequest do json_name: "commitStatus" field :whitelist, 6, type: InternalApi.Projecthub.Project.Spec.Repository.Whitelist + field :default_branch, 7, type: :string, json_name: "defaultBranch" end defmodule InternalApi.Repository.UpdateResponse do @@ -556,6 +560,34 @@ defmodule InternalApi.Repository.VerifyWebhookSignatureResponse do field :valid, 1, type: :bool end +defmodule InternalApi.Repository.ClearExternalDataRequest do + @moduledoc false + use Protobuf, syntax: :proto3, protoc_gen_elixir_version: "0.10.0" + + field :repository_id, 1, type: :string, json_name: "repositoryId" +end + +defmodule InternalApi.Repository.ClearExternalDataResponse do + @moduledoc false + use Protobuf, syntax: :proto3, protoc_gen_elixir_version: "0.10.0" + + field :repository, 1, type: InternalApi.Repository.Repository +end + +defmodule InternalApi.Repository.RegenerateWebhookSecretRequest do + @moduledoc false + use Protobuf, syntax: :proto3, protoc_gen_elixir_version: "0.10.0" + + field :repository_id, 1, type: :string, json_name: "repositoryId" +end + +defmodule InternalApi.Repository.RegenerateWebhookSecretResponse do + @moduledoc false + use Protobuf, syntax: :proto3, protoc_gen_elixir_version: "0.10.0" + + field :secret, 1, type: :string +end + defmodule InternalApi.Repository.RepositoryService.Service do @moduledoc false use GRPC.Service, @@ -631,6 +663,14 @@ defmodule InternalApi.Repository.RepositoryService.Service do rpc :VerifyWebhookSignature, InternalApi.Repository.VerifyWebhookSignatureRequest, InternalApi.Repository.VerifyWebhookSignatureResponse + + rpc :ClearExternalData, + InternalApi.Repository.ClearExternalDataRequest, + InternalApi.Repository.ClearExternalDataResponse + + rpc :RegenerateWebhookSecret, + InternalApi.Repository.RegenerateWebhookSecretRequest, + InternalApi.Repository.RegenerateWebhookSecretResponse end defmodule InternalApi.Repository.RepositoryService.Stub do diff --git a/ee/gofer/lib/internal_api/repository_integrator.pb.ex b/ee/gofer/lib/internal_api/repository_integrator.pb.ex index df34c63cf..1a50bf23e 100644 --- a/ee/gofer/lib/internal_api/repository_integrator.pb.ex +++ b/ee/gofer/lib/internal_api/repository_integrator.pb.ex @@ -5,6 +5,8 @@ defmodule InternalApi.RepositoryIntegrator.IntegrationType do field :GITHUB_OAUTH_TOKEN, 0 field :GITHUB_APP, 1 field :BITBUCKET, 2 + field :GITLAB, 3 + field :GIT, 4 end defmodule InternalApi.RepositoryIntegrator.IntegrationScope do @@ -99,6 +101,16 @@ defmodule InternalApi.RepositoryIntegrator.GithubInstallationInfoResponse do field :installation_url, 3, type: :string, json_name: "installationUrl" end +defmodule InternalApi.RepositoryIntegrator.InitGithubInstallationRequest do + @moduledoc false + use Protobuf, syntax: :proto3, protoc_gen_elixir_version: "0.10.0" +end + +defmodule InternalApi.RepositoryIntegrator.InitGithubInstallationResponse do + @moduledoc false + use Protobuf, syntax: :proto3, protoc_gen_elixir_version: "0.10.0" +end + defmodule InternalApi.RepositoryIntegrator.GetRepositoriesRequest do @moduledoc false use Protobuf, syntax: :proto3, protoc_gen_elixir_version: "0.10.0" @@ -155,6 +167,10 @@ defmodule InternalApi.RepositoryIntegrator.RepositoryIntegratorService.Service d InternalApi.RepositoryIntegrator.GithubInstallationInfoRequest, InternalApi.RepositoryIntegrator.GithubInstallationInfoResponse + rpc :InitGithubInstallation, + InternalApi.RepositoryIntegrator.InitGithubInstallationRequest, + InternalApi.RepositoryIntegrator.InitGithubInstallationResponse + rpc :GetRepositories, InternalApi.RepositoryIntegrator.GetRepositoriesRequest, InternalApi.RepositoryIntegrator.GetRepositoriesResponse diff --git a/ee/gofer/lib/internal_api/secrethub.pb.ex b/ee/gofer/lib/internal_api/secrethub.pb.ex index 53a677ab1..19326b21e 100644 --- a/ee/gofer/lib/internal_api/secrethub.pb.ex +++ b/ee/gofer/lib/internal_api/secrethub.pb.ex @@ -442,6 +442,7 @@ defmodule InternalApi.Secrethub.GenerateOpenIDConnectTokenRequest do field :git_pull_request_branch, 17, type: :string, json_name: "gitPullRequestBranch" field :repo_slug, 18, type: :string, json_name: "repoSlug" field :triggerer, 19, type: :string + field :project_name, 20, type: :string, json_name: "projectName" end defmodule InternalApi.Secrethub.GenerateOpenIDConnectTokenResponse do @@ -500,6 +501,54 @@ defmodule InternalApi.Secrethub.UpdateEncryptedResponse do field :encrypted_data, 3, type: InternalApi.Secrethub.EncryptedData, json_name: "encryptedData" end +defmodule InternalApi.Secrethub.GetJWTConfigRequest do + @moduledoc false + use Protobuf, syntax: :proto3, protoc_gen_elixir_version: "0.10.0" + + field :org_id, 1, type: :string, json_name: "orgId" + field :project_id, 2, type: :string, json_name: "projectId" +end + +defmodule InternalApi.Secrethub.GetJWTConfigResponse do + @moduledoc false + use Protobuf, syntax: :proto3, protoc_gen_elixir_version: "0.10.0" + + field :org_id, 1, type: :string, json_name: "orgId" + field :project_id, 2, type: :string, json_name: "projectId" + field :claims, 3, repeated: true, type: InternalApi.Secrethub.ClaimConfig + field :is_active, 4, type: :bool, json_name: "isActive" +end + +defmodule InternalApi.Secrethub.UpdateJWTConfigRequest do + @moduledoc false + use Protobuf, syntax: :proto3, protoc_gen_elixir_version: "0.10.0" + + field :org_id, 1, type: :string, json_name: "orgId" + field :project_id, 2, type: :string, json_name: "projectId" + field :claims, 3, repeated: true, type: InternalApi.Secrethub.ClaimConfig + field :is_active, 4, type: :bool, json_name: "isActive" +end + +defmodule InternalApi.Secrethub.UpdateJWTConfigResponse do + @moduledoc false + use Protobuf, syntax: :proto3, protoc_gen_elixir_version: "0.10.0" + + field :org_id, 1, type: :string, json_name: "orgId" + field :project_id, 2, type: :string, json_name: "projectId" +end + +defmodule InternalApi.Secrethub.ClaimConfig do + @moduledoc false + use Protobuf, syntax: :proto3, protoc_gen_elixir_version: "0.10.0" + + field :name, 1, type: :string + field :description, 2, type: :string + field :is_active, 3, type: :bool, json_name: "isActive" + field :is_mandatory, 4, type: :bool, json_name: "isMandatory" + field :is_aws_tag, 5, type: :bool, json_name: "isAwsTag" + field :is_system_claim, 6, type: :bool, json_name: "isSystemClaim" +end + defmodule InternalApi.Secrethub.SecretService.Service do @moduledoc false use GRPC.Service, @@ -543,6 +592,14 @@ defmodule InternalApi.Secrethub.SecretService.Service do rpc :CheckoutMany, InternalApi.Secrethub.CheckoutManyRequest, InternalApi.Secrethub.CheckoutManyResponse + + rpc :GetJWTConfig, + InternalApi.Secrethub.GetJWTConfigRequest, + InternalApi.Secrethub.GetJWTConfigResponse + + rpc :UpdateJWTConfig, + InternalApi.Secrethub.UpdateJWTConfigRequest, + InternalApi.Secrethub.UpdateJWTConfigResponse end defmodule InternalApi.Secrethub.SecretService.Stub do diff --git a/ee/gofer/lib/internal_api/user.pb.ex b/ee/gofer/lib/internal_api/user.pb.ex index dc8debe35..f18b43855 100644 --- a/ee/gofer/lib/internal_api/user.pb.ex +++ b/ee/gofer/lib/internal_api/user.pb.ex @@ -212,22 +212,6 @@ defmodule InternalApi.User.RegenerateTokenResponse do field :api_token, 3, type: :string, json_name: "apiToken" end -defmodule InternalApi.User.RefererRequest do - @moduledoc false - use Protobuf, syntax: :proto3, protoc_gen_elixir_version: "0.10.0" - - field :user_id, 1, type: :string, json_name: "userId" -end - -defmodule InternalApi.User.RefererResponse do - @moduledoc false - use Protobuf, syntax: :proto3, protoc_gen_elixir_version: "0.10.0" - - field :user_id, 1, type: :string, json_name: "userId" - field :entry_url, 2, type: :string, json_name: "entryUrl" - field :http_referer, 3, type: :string, json_name: "httpReferer" -end - defmodule InternalApi.User.CheckGithubTokenRequest do @moduledoc false use Protobuf, syntax: :proto3, protoc_gen_elixir_version: "0.10.0" @@ -285,6 +269,13 @@ defmodule InternalApi.User.DescribeByRepositoryProviderRequest do field :provider, 1, type: InternalApi.User.RepositoryProvider end +defmodule InternalApi.User.DescribeByEmailRequest do + @moduledoc false + use Protobuf, syntax: :proto3, protoc_gen_elixir_version: "0.10.0" + + field :email, 1, type: :string +end + defmodule InternalApi.User.RefreshRepositoryProviderRequest do @moduledoc false use Protobuf, syntax: :proto3, protoc_gen_elixir_version: "0.10.0" @@ -304,6 +295,22 @@ defmodule InternalApi.User.RefreshRepositoryProviderResponse do json_name: "repositoryProvider" end +defmodule InternalApi.User.CreateRequest do + @moduledoc false + use Protobuf, syntax: :proto3, protoc_gen_elixir_version: "0.10.0" + + field :email, 1, type: :string + field :name, 2, type: :string + field :password, 3, type: :string + + field :repository_providers, 4, + repeated: true, + type: InternalApi.User.RepositoryProvider, + json_name: "repositoryProviders" + + field :skip_password_change, 5, type: :bool, json_name: "skipPasswordChange" +end + defmodule InternalApi.User.User do @moduledoc false use Protobuf, syntax: :proto3, protoc_gen_elixir_version: "0.10.0" @@ -360,15 +367,6 @@ defmodule InternalApi.User.UserUpdated do field :timestamp, 2, type: Google.Protobuf.Timestamp end -defmodule InternalApi.User.UserRefererCreated do - @moduledoc false - use Protobuf, syntax: :proto3, protoc_gen_elixir_version: "0.10.0" - - field :user_id, 1, type: :string, json_name: "userId" - field :entry_url, 2, type: :string, json_name: "entryUrl" - field :http_referer, 3, type: :string, json_name: "httpReferer" -end - defmodule InternalApi.User.UserJoinedOrganization do @moduledoc false use Protobuf, syntax: :proto3, protoc_gen_elixir_version: "0.10.0" @@ -448,6 +446,8 @@ defmodule InternalApi.User.UserService.Service do InternalApi.User.DescribeByRepositoryProviderRequest, InternalApi.User.User + rpc :DescribeByEmail, InternalApi.User.DescribeByEmailRequest, InternalApi.User.User + rpc :SearchUsers, InternalApi.User.SearchUsersRequest, InternalApi.User.SearchUsersResponse rpc :DescribeMany, InternalApi.User.DescribeManyRequest, InternalApi.User.DescribeManyResponse @@ -468,8 +468,6 @@ defmodule InternalApi.User.UserService.Service do rpc :DeleteFavorite, InternalApi.User.Favorite, InternalApi.User.Favorite - rpc :Referer, InternalApi.User.RefererRequest, InternalApi.User.RefererResponse - rpc :CheckGithubToken, InternalApi.User.CheckGithubTokenRequest, InternalApi.User.CheckGithubTokenResponse @@ -485,6 +483,8 @@ defmodule InternalApi.User.UserService.Service do rpc :RefreshRepositoryProvider, InternalApi.User.RefreshRepositoryProviderRequest, InternalApi.User.RefreshRepositoryProviderResponse + + rpc :Create, InternalApi.User.CreateRequest, InternalApi.User.User end defmodule InternalApi.User.UserService.Stub do diff --git a/ee/gofer/test/actions/trigger_impl_test.exs b/ee/gofer/test/actions/trigger_impl_test.exs index 7bda32c7e..aa1b9c0a9 100644 --- a/ee/gofer/test/actions/trigger_impl_test.exs +++ b/ee/gofer/test/actions/trigger_impl_test.exs @@ -202,7 +202,7 @@ defmodule Gofer.Actions.TriggerImplTest do } assert {:error, message} = Actions.trigger(request) - assert message == "Parameter 'Test' is not defined in promotion's yml definiton." + assert message == "Parameter 'Test' is not defined in promotion's yml definition." end test "trigger() returns error when value is not passed for required parameter env var", ctx do diff --git a/ee/pre_flight_checks/lib/pre_flight_checks/grpc.ex b/ee/pre_flight_checks/lib/pre_flight_checks/grpc.ex index 8b08f9b5a..227beebba 100644 --- a/ee/pre_flight_checks/lib/pre_flight_checks/grpc.ex +++ b/ee/pre_flight_checks/lib/pre_flight_checks/grpc.ex @@ -1,6 +1,6 @@ defmodule PreFlightChecks.GRPC do @moduledoc """ - gRPC server supervisor definiton + gRPC server supervisor definition """ def child_spec([]) do diff --git a/ee/pre_flight_checks/lib/pre_flight_checks/grpc/health_check.ex b/ee/pre_flight_checks/lib/pre_flight_checks/grpc/health_check.ex index 8d90c3c30..8494a25c3 100644 --- a/ee/pre_flight_checks/lib/pre_flight_checks/grpc/health_check.ex +++ b/ee/pre_flight_checks/lib/pre_flight_checks/grpc/health_check.ex @@ -1,6 +1,6 @@ defmodule PreFlightChecks.GRPC.HealthCheck do @moduledoc """ - Serves as an backend for a go client used for livness probing on kubernetes. + Serves as an backend for a go client used for liveness probing on kubernetes. """ alias Grpc.Health.V1.Health.Service, as: HealthService diff --git a/ee/rbac/assets/permissions.yaml b/ee/rbac/assets/permissions.yaml index 971a4119a..7f5c4e607 100644 --- a/ee/rbac/assets/permissions.yaml +++ b/ee/rbac/assets/permissions.yaml @@ -70,6 +70,10 @@ permissions: description: "View the existing dashboards within the organization." - name: "organization.dashboards.manage" description: "Create new dashboard views." + - name: "organization.service_accounts.view" + description: "View service accounts within the organization." + - name: "organization.service_accounts.manage" + description: "Manage service accounts within the organization." project: - name: "project.view" description: "Access the project. This permission is needed to see any page within the project." diff --git a/ee/rbac/assets/roles.yaml b/ee/rbac/assets/roles.yaml index a64e1ffcb..2a6c8c6ff 100644 --- a/ee/rbac/assets/roles.yaml +++ b/ee/rbac/assets/roles.yaml @@ -39,6 +39,8 @@ roles: - "organization.custom_roles.view" - "organization.dashboards.view" - "organization.dashboards.manage" + - "organization.service_accounts.view" + - "organization.service_accounts.manage" - name: "Admin" description: "Admins can modify settings within the organization or any of its projects. However, they do not have access to billing information, and they cannot change general organization details, such as the organization name and URL." maps_to: "Admin" @@ -77,6 +79,8 @@ roles: - "organization.dashboards.view" - "organization.dashboards.manage" - "project.delete" + - "organization.service_accounts.view" + - "organization.service_accounts.manage" - name: "Member" description: "Members can access the organization's homepage and the projects they are assigned to. However, they are not able to modify any settings." permissions: diff --git a/ee/rbac/lib/internal_api/audit.pb.ex b/ee/rbac/lib/internal_api/audit.pb.ex index 0dbf89fde..bda314bb1 100644 --- a/ee/rbac/lib/internal_api/audit.pb.ex +++ b/ee/rbac/lib/internal_api/audit.pb.ex @@ -67,6 +67,7 @@ defmodule InternalApi.Audit.Event.Resource do field(:Okta, 17) field(:FlakyTests, 18) field(:RBACRole, 19) + field(:ServiceAccount, 20) end defmodule InternalApi.Audit.Event.Operation do diff --git a/ee/rbac/lib/internal_api/organization.pb.ex b/ee/rbac/lib/internal_api/organization.pb.ex index dd68f3529..53dca1902 100644 --- a/ee/rbac/lib/internal_api/organization.pb.ex +++ b/ee/rbac/lib/internal_api/organization.pb.ex @@ -46,6 +46,7 @@ defmodule InternalApi.Organization.DescribeRequest do field(:org_id, 1, type: :string, json_name: "orgId") field(:org_username, 2, type: :string, json_name: "orgUsername") field(:include_quotas, 3, type: :bool, json_name: "includeQuotas") + field(:soft_deleted, 4, type: :bool, json_name: "softDeleted") end defmodule InternalApi.Organization.DescribeResponse do @@ -63,6 +64,7 @@ defmodule InternalApi.Organization.DescribeManyRequest do use Protobuf, syntax: :proto3, protoc_gen_elixir_version: "0.13.0" field(:org_ids, 1, repeated: true, type: :string, json_name: "orgIds") + field(:soft_deleted, 2, type: :bool, json_name: "softDeleted") end defmodule InternalApi.Organization.DescribeManyResponse do @@ -83,6 +85,7 @@ defmodule InternalApi.Organization.ListRequest do field(:order, 4, type: InternalApi.Organization.ListRequest.Order, enum: true) field(:page_size, 5, type: :int32, json_name: "pageSize") field(:page_token, 6, type: :string, json_name: "pageToken") + field(:soft_deleted, 7, type: :bool, json_name: "softDeleted") end defmodule InternalApi.Organization.ListResponse do @@ -369,6 +372,14 @@ defmodule InternalApi.Organization.DestroyRequest do field(:org_id, 1, type: :string, json_name: "orgId") end +defmodule InternalApi.Organization.RestoreRequest do + @moduledoc false + + use Protobuf, syntax: :proto3, protoc_gen_elixir_version: "0.13.0" + + field(:org_id, 1, type: :string, json_name: "orgId") +end + defmodule InternalApi.Organization.Organization do @moduledoc false @@ -620,6 +631,15 @@ defmodule InternalApi.Organization.OrganizationDailyUpdate do field(:timestamp, 11, type: Google.Protobuf.Timestamp) end +defmodule InternalApi.Organization.OrganizationRestored do + @moduledoc false + + use Protobuf, syntax: :proto3, protoc_gen_elixir_version: "0.13.0" + + field(:org_id, 1, type: :string, json_name: "orgId") + field(:timestamp, 2, type: Google.Protobuf.Timestamp) +end + defmodule InternalApi.Organization.OrganizationService.Service do @moduledoc false @@ -701,6 +721,8 @@ defmodule InternalApi.Organization.OrganizationService.Service do rpc(:Destroy, InternalApi.Organization.DestroyRequest, Google.Protobuf.Empty) + rpc(:Restore, InternalApi.Organization.RestoreRequest, Google.Protobuf.Empty) + rpc( :RepositoryIntegrators, InternalApi.Organization.RepositoryIntegratorsRequest, diff --git a/ee/rbac/lib/internal_api/projecthub.pb.ex b/ee/rbac/lib/internal_api/projecthub.pb.ex index c10c5fa6b..639cd791e 100644 --- a/ee/rbac/lib/internal_api/projecthub.pb.ex +++ b/ee/rbac/lib/internal_api/projecthub.pb.ex @@ -39,6 +39,7 @@ defmodule InternalApi.Projecthub.Project.Spec.Repository.RunType do field(:TAGS, 1) field(:PULL_REQUESTS, 2) field(:FORKED_PULL_REQUESTS, 3) + field(:DRAFT_PULL_REQUESTS, 4) end defmodule InternalApi.Projecthub.Project.Spec.Repository.Status.PipelineFile.Level do @@ -391,6 +392,7 @@ defmodule InternalApi.Projecthub.ListRequest do field(:pagination, 2, type: InternalApi.Projecthub.PaginationRequest) field(:owner_id, 3, type: :string, json_name: "ownerId") field(:repo_url, 4, type: :string, json_name: "repoUrl") + field(:soft_deleted, 5, type: :bool, json_name: "softDeleted") end defmodule InternalApi.Projecthub.ListResponse do @@ -437,6 +439,7 @@ defmodule InternalApi.Projecthub.DescribeRequest do field(:id, 2, type: :string) field(:name, 3, type: :string) field(:detailed, 4, type: :bool) + field(:soft_deleted, 5, type: :bool, json_name: "softDeleted") end defmodule InternalApi.Projecthub.DescribeResponse do @@ -455,6 +458,7 @@ defmodule InternalApi.Projecthub.DescribeManyRequest do field(:metadata, 1, type: InternalApi.Projecthub.RequestMeta) field(:ids, 2, repeated: true, type: :string) + field(:soft_deleted, 3, type: :bool, json_name: "softDeleted") end defmodule InternalApi.Projecthub.DescribeManyResponse do @@ -522,6 +526,23 @@ defmodule InternalApi.Projecthub.DestroyResponse do field(:metadata, 1, type: InternalApi.Projecthub.ResponseMeta) end +defmodule InternalApi.Projecthub.RestoreRequest do + @moduledoc false + + use Protobuf, syntax: :proto3, protoc_gen_elixir_version: "0.13.0" + + field(:metadata, 1, type: InternalApi.Projecthub.RequestMeta) + field(:id, 2, type: :string) +end + +defmodule InternalApi.Projecthub.RestoreResponse do + @moduledoc false + + use Protobuf, syntax: :proto3, protoc_gen_elixir_version: "0.13.0" + + field(:metadata, 1, type: InternalApi.Projecthub.ResponseMeta) +end + defmodule InternalApi.Projecthub.UsersRequest do @moduledoc false @@ -557,6 +578,7 @@ defmodule InternalApi.Projecthub.CheckDeployKeyResponse.DeployKey do field(:title, 1, type: :string) field(:fingerprint, 2, type: :string) field(:created_at, 3, type: Google.Protobuf.Timestamp, json_name: "createdAt") + field(:public_key, 4, type: :string, json_name: "publicKey") end defmodule InternalApi.Projecthub.CheckDeployKeyResponse do @@ -589,6 +611,7 @@ defmodule InternalApi.Projecthub.RegenerateDeployKeyResponse.DeployKey do field(:title, 1, type: :string) field(:fingerprint, 2, type: :string) field(:created_at, 3, type: Google.Protobuf.Timestamp, json_name: "createdAt") + field(:public_key, 4, type: :string, json_name: "publicKey") end defmodule InternalApi.Projecthub.RegenerateDeployKeyResponse do @@ -718,6 +741,24 @@ defmodule InternalApi.Projecthub.FinishOnboardingResponse do field(:metadata, 1, type: InternalApi.Projecthub.ResponseMeta) end +defmodule InternalApi.Projecthub.RegenerateWebhookSecretRequest do + @moduledoc false + + use Protobuf, syntax: :proto3, protoc_gen_elixir_version: "0.13.0" + + field(:metadata, 1, type: InternalApi.Projecthub.RequestMeta) + field(:id, 2, type: :string) +end + +defmodule InternalApi.Projecthub.RegenerateWebhookSecretResponse do + @moduledoc false + + use Protobuf, syntax: :proto3, protoc_gen_elixir_version: "0.13.0" + + field(:metadata, 1, type: InternalApi.Projecthub.ResponseMeta) + field(:secret, 2, type: :string) +end + defmodule InternalApi.Projecthub.ProjectCreated do @moduledoc false @@ -738,6 +779,16 @@ defmodule InternalApi.Projecthub.ProjectDeleted do field(:org_id, 3, type: :string, json_name: "orgId") end +defmodule InternalApi.Projecthub.ProjectRestored do + @moduledoc false + + use Protobuf, syntax: :proto3, protoc_gen_elixir_version: "0.13.0" + + field(:project_id, 1, type: :string, json_name: "projectId") + field(:timestamp, 2, type: Google.Protobuf.Timestamp) + field(:org_id, 3, type: :string, json_name: "orgId") +end + defmodule InternalApi.Projecthub.ProjectUpdated do @moduledoc false @@ -786,6 +837,8 @@ defmodule InternalApi.Projecthub.ProjectService.Service do rpc(:Destroy, InternalApi.Projecthub.DestroyRequest, InternalApi.Projecthub.DestroyResponse) + rpc(:Restore, InternalApi.Projecthub.RestoreRequest, InternalApi.Projecthub.RestoreResponse) + rpc(:Users, InternalApi.Projecthub.UsersRequest, InternalApi.Projecthub.UsersResponse) rpc( @@ -812,6 +865,12 @@ defmodule InternalApi.Projecthub.ProjectService.Service do InternalApi.Projecthub.RegenerateWebhookResponse ) + rpc( + :RegenerateWebhookSecret, + InternalApi.Projecthub.RegenerateWebhookSecretRequest, + InternalApi.Projecthub.RegenerateWebhookSecretResponse + ) + rpc( :ChangeProjectOwner, InternalApi.Projecthub.ChangeProjectOwnerRequest, diff --git a/ee/rbac/lib/internal_api/rbac.pb.ex b/ee/rbac/lib/internal_api/rbac.pb.ex index 81e4eb9e0..5c7b4a4b4 100644 --- a/ee/rbac/lib/internal_api/rbac.pb.ex +++ b/ee/rbac/lib/internal_api/rbac.pb.ex @@ -5,6 +5,7 @@ defmodule InternalApi.RBAC.SubjectType do field(:USER, 0) field(:GROUP, 1) + field(:SERVICE_ACCOUNT, 2) end defmodule InternalApi.RBAC.Scope do diff --git a/ee/rbac/lib/internal_api/repository.pb.ex b/ee/rbac/lib/internal_api/repository.pb.ex index 9dee6dd6f..890975954 100644 --- a/ee/rbac/lib/internal_api/repository.pb.ex +++ b/ee/rbac/lib/internal_api/repository.pb.ex @@ -88,6 +88,7 @@ defmodule InternalApi.Repository.DeployKey do field(:title, 1, type: :string) field(:fingerprint, 2, type: :string) field(:created_at, 3, type: Google.Protobuf.Timestamp, json_name: "createdAt") + field(:public_key, 4, type: :string, json_name: "publicKey") end defmodule InternalApi.Repository.DescribeRemoteRepositoryRequest do @@ -370,6 +371,7 @@ defmodule InternalApi.Repository.Repository do field(:whitelist, 11, type: InternalApi.Projecthub.Project.Spec.Repository.Whitelist) field(:hook_id, 12, type: :string, json_name: "hookId") field(:default_branch, 13, type: :string, json_name: "defaultBranch") + field(:connected, 14, type: :bool) end defmodule InternalApi.Repository.RemoteRepository do @@ -630,6 +632,38 @@ defmodule InternalApi.Repository.VerifyWebhookSignatureResponse do field(:valid, 1, type: :bool) end +defmodule InternalApi.Repository.ClearExternalDataRequest do + @moduledoc false + + use Protobuf, syntax: :proto3, protoc_gen_elixir_version: "0.13.0" + + field(:repository_id, 1, type: :string, json_name: "repositoryId") +end + +defmodule InternalApi.Repository.ClearExternalDataResponse do + @moduledoc false + + use Protobuf, syntax: :proto3, protoc_gen_elixir_version: "0.13.0" + + field(:repository, 1, type: InternalApi.Repository.Repository) +end + +defmodule InternalApi.Repository.RegenerateWebhookSecretRequest do + @moduledoc false + + use Protobuf, syntax: :proto3, protoc_gen_elixir_version: "0.13.0" + + field(:repository_id, 1, type: :string, json_name: "repositoryId") +end + +defmodule InternalApi.Repository.RegenerateWebhookSecretResponse do + @moduledoc false + + use Protobuf, syntax: :proto3, protoc_gen_elixir_version: "0.13.0" + + field(:secret, 1, type: :string) +end + defmodule InternalApi.Repository.RepositoryService.Service do @moduledoc false @@ -732,6 +766,18 @@ defmodule InternalApi.Repository.RepositoryService.Service do InternalApi.Repository.VerifyWebhookSignatureRequest, InternalApi.Repository.VerifyWebhookSignatureResponse ) + + rpc( + :ClearExternalData, + InternalApi.Repository.ClearExternalDataRequest, + InternalApi.Repository.ClearExternalDataResponse + ) + + rpc( + :RegenerateWebhookSecret, + InternalApi.Repository.RegenerateWebhookSecretRequest, + InternalApi.Repository.RegenerateWebhookSecretResponse + ) end defmodule InternalApi.Repository.RepositoryService.Stub do diff --git a/ee/rbac/lib/internal_api/user.pb.ex b/ee/rbac/lib/internal_api/user.pb.ex index fe31c6d8c..7122a02c3 100644 --- a/ee/rbac/lib/internal_api/user.pb.ex +++ b/ee/rbac/lib/internal_api/user.pb.ex @@ -56,6 +56,7 @@ defmodule InternalApi.User.User.CreationSource do field(:NOT_SET, 0) field(:OKTA, 1) + field(:SERVICE_ACCOUNT, 2) end defmodule InternalApi.User.ListFavoritesRequest do diff --git a/ee/rbac/lib/rbac/api/organization.ex b/ee/rbac/lib/rbac/api/organization.ex index cb7318a16..d04e570c5 100644 --- a/ee/rbac/lib/rbac/api/organization.ex +++ b/ee/rbac/lib/rbac/api/organization.ex @@ -4,6 +4,15 @@ defmodule Rbac.Api.Organization do def find_by_username(username) do req = %Organization.DescribeRequest{org_username: username} + describe_organization(req) + end + + def find_by_id(org_id) do + req = %Organization.DescribeRequest{org_id: org_id} + describe_organization(req) + end + + defp describe_organization(req) do {:ok, channel} = GRPC.Stub.connect(Application.fetch_env!(:rbac, :organization_grpc_endpoint)) Logger.info("Sending Organization describe request: #{inspect(req)}") @@ -20,4 +29,20 @@ defmodule Rbac.Api.Organization do {:error, :not_found} end end + + def update(organization) do + req = %Organization.UpdateRequest{organization: organization} + {:ok, channel} = GRPC.Stub.connect(Application.fetch_env!(:rbac, :organization_grpc_endpoint)) + + Logger.info("Sending Organization update request: #{inspect(req)}") + + grpc_result = Organization.OrganizationService.Stub.update(channel, req, timeout: 30_000) + + Logger.info("Received Organization update response: #{inspect(grpc_result)}") + + case grpc_result do + {:ok, res} -> {:ok, res.organization} + {:error, error} -> {:error, error} + end + end end diff --git a/ee/rbac/lib/rbac/grpc_servers/rbac_server.ex b/ee/rbac/lib/rbac/grpc_servers/rbac_server.ex index 3758f2ff9..ab8585b0f 100644 --- a/ee/rbac/lib/rbac/grpc_servers/rbac_server.ex +++ b/ee/rbac/lib/rbac/grpc_servers/rbac_server.ex @@ -371,7 +371,7 @@ defmodule Rbac.GrpcServers.RbacServer do total_pages: total_pages, members: Enum.map(subject_role_bindings, fn binding -> - subject_type = if binding.type == "user", do: :USER, else: :GROUP + subject_type = binding.type |> String.upcase() |> String.to_existing_atom() %RBAC.ListMembersResponse.Member{ subject: %RBAC.Subject{ diff --git a/ee/rbac/lib/rbac/okta/integrations.ex b/ee/rbac/lib/rbac/okta/integrations.ex index aa87e5953..b25d33c5c 100644 --- a/ee/rbac/lib/rbac/okta/integrations.ex +++ b/ee/rbac/lib/rbac/okta/integrations.ex @@ -4,6 +4,8 @@ defmodule Rbac.Okta.Integration do """ require Ecto.Query + require Logger + alias Ecto.Query alias Rbac.Repo alias Rbac.Okta.Saml.Certificate @@ -21,23 +23,82 @@ defmodule Rbac.Okta.Integration do jit_provisioning_enabled, idempotency_token \\ Ecto.UUID.generate() ) do - with {:ok, fingerprint} <- Certificate.fingerprint(certificate), - {:ok, integration} <- - Rbac.Repo.OktaIntegration.insert_or_update( - org_id: org_id, - creator_id: creator_id, - sso_url: sso_url, - saml_issuer: saml_issuer, - saml_certificate_fingerprint: Base.encode64(fingerprint), - jit_provisioning_enabled: jit_provisioning_enabled, - idempotency_token: idempotency_token - ) do - {:ok, integration} + Ecto.Multi.new() + |> Ecto.Multi.run(:fingerprint, fn _repo, _changes -> + Certificate.fingerprint(certificate) + end) + |> Ecto.Multi.run(:integration, fn _repo, %{fingerprint: fingerprint} -> + Rbac.Repo.OktaIntegration.insert_or_update( + org_id: org_id, + creator_id: creator_id, + sso_url: sso_url, + saml_issuer: saml_issuer, + saml_certificate_fingerprint: Base.encode64(fingerprint), + jit_provisioning_enabled: jit_provisioning_enabled, + idempotency_token: idempotency_token + ) + end) + |> Ecto.Multi.run(:allowed_id_providers, fn _repo, _changes -> + add_okta_to_allowed_id_providers(org_id) + end) + |> Rbac.Repo.transaction() + |> case do + {:ok, %{integration: integration}} -> + {:ok, integration} + + {:error, :fingerprint, reason, _changes} -> + Logger.error("Failed to decode certificate for org #{org_id}: #{inspect(reason)}.") + {:error, :cert_decode_error} + + {:error, :integration, reason, _changes} -> + Logger.error( + "Failed to create/update Okta integration for org #{org_id}: #{inspect(reason)}" + ) + + {:error, {:integration_failed, reason}} + + {:error, :allowed_id_providers, reason, _changes} -> + Logger.error( + "Failed to add Okta to allowed ID providers for org #{org_id}: #{inspect(reason)}" + ) + + {:error, {:allowed_id_providers_failed, reason}} + + {:error, operation, reason, _changes} -> + Logger.error( + "Unknown operation #{inspect(operation)} failed for org #{org_id}: #{inspect(reason)}" + ) + + {:error, reason} + end + end + + defp update_id_providers(org_id, operation, action) do + with {:ok, org} <- Rbac.Api.Organization.find_by_id(org_id), + updated_providers <- operation.(org.allowed_id_providers || []), + updated_org <- Map.put(org, :allowed_id_providers, updated_providers), + {:ok, updated} <- Rbac.Api.Organization.update(updated_org) do + {:ok, updated} else - e -> e + {:error, :not_found} -> + Logger.error("Failed to #{action} okta provider: Org #{org_id} not found") + {:error, :organization_not_found} + + {:error, reason} -> + Logger.error("Failed to #{action} okta provider for org #{org_id}: #{inspect(reason)}") + + {:error, :update_failed} end end + defp add_okta_to_allowed_id_providers(org_id) do + update_id_providers(org_id, &Enum.uniq(&1 ++ ["okta"]), "add") + end + + defp remove_okta_from_allowed_id_providers(org_id) do + update_id_providers(org_id, &Enum.reject(&1, fn provider -> provider == "okta" end), "remove") + end + def generate_scim_token(integration) do token = Rbac.Okta.Scim.Token.generate() token_hash = Rbac.Okta.Scim.Token.hash(token) @@ -96,10 +157,13 @@ defmodule Rbac.Okta.Integration do Rbac.RoleManagement.retract_roles(rbi, :okta) {:ok, :retracted_roles} end) - |> Ecto.Multi.run(:delete_okta_users, fn _repo, _cahnges -> + |> Ecto.Multi.run(:delete_okta_users, fn _repo, _changes -> OktaUser.delete_all(id) {:ok, :okta_users_deleted} end) + |> Ecto.Multi.run(:remove_okta_from_allowed_id_providers, fn _repo, _changes -> + remove_okta_from_allowed_id_providers(integration.org_id) + end) |> Ecto.Multi.delete(:delete_okta_integration, integration) |> Rbac.Repo.transaction(timeout: 60_000) diff --git a/ee/rbac/lib/rbac/okta/saml/api.ex b/ee/rbac/lib/rbac/okta/saml/api.ex index c31b65340..d0236f3c9 100644 --- a/ee/rbac/lib/rbac/okta/saml/api.ex +++ b/ee/rbac/lib/rbac/okta/saml/api.ex @@ -157,11 +157,16 @@ defmodule Rbac.Okta.Saml.Api do end defp inject_session_cookie(conn, user) do + Logger.debug("User which was found: #{inspect(user)}") + secret_key_base = Application.get_env(:rbac, :session_secret_key_base) conn = put_in(conn.secret_key_base, secret_key_base) {key, content} = Rbac.Session.serialize_into_session(user) + Logger.debug("Session key #{inspect(key)}") + Logger.debug("Session content #{inspect(content)}") + conn |> fetch_session() |> put_session(key, content) |> put_session("id_provider", "OKTA") end @@ -205,7 +210,7 @@ defmodule Rbac.Okta.Saml.Api do end # - # Handle everything else as Unathorized + # Handle everything else as Unauthorized # match _ do send_resp(conn, 401, "Unauthorized") diff --git a/ee/rbac/lib/rbac/store/user_permissions.ex b/ee/rbac/lib/rbac/store/user_permissions.ex index 8e67d0acd..6b3c60a30 100644 --- a/ee/rbac/lib/rbac/store/user_permissions.ex +++ b/ee/rbac/lib/rbac/store/user_permissions.ex @@ -52,7 +52,7 @@ defmodule Rbac.Store.UserPermissions do for that user/org/project into the cache Returns - :ok - if all key value pairs were succesfully written to the cache + :ok - if all key value pairs were successfully written to the cache :error - if permissions could not be calculated or at least one permission wasnt written to the cache """ @spec add_permissions(RBI) :: :ok | :error @@ -99,7 +99,7 @@ defmodule Rbac.Store.UserPermissions do are removed from the database, otherwise keys that were removed from db wont be deleted from the cache! Returns - :ok - if all key value pairs were succesfully written to the cache + :ok - if all key value pairs were successfully written to the cache :error - if permissions could not be calculated or at least one permission wasnt written to the cache """ @spec remove_permissions(RBI) :: :ok | :error diff --git a/ee/rbac/lib/rbac/user/update_mails.ex b/ee/rbac/lib/rbac/user/update_mails.ex deleted file mode 100644 index 33463a615..000000000 --- a/ee/rbac/lib/rbac/user/update_mails.ex +++ /dev/null @@ -1,107 +0,0 @@ -defmodule Rbac.User.UpdateMails do - @moduledoc """ - This module contains a script that goes through all the users within a given org, - checks if they have corporate emails, and if not, goes through secondary GitHub emails - to see if one of those is a corporate mail. If so, the email is updated, if not, nothing happens. - - This script is not used from anywhere within the code base, and is ment to be ran manualy. For now, - the only use-case for this script was when a organization wants to use SCIM/SAML for SSO, and emails - in their SAML provider need to match emails on Semaphoere. - """ - import Ecto.Query - require Logger - - @doc """ - If an organization has corporate email address that ends with important-org.org, that would be given - as a parameter togeather with the org's semaphore id. - - The function returns a list of all updated emails. If `nil` values appear in this list, that - means some users dont have corporate email, but the scrip wasn't able to find one. Either their GitHub API - token is not valid, or more likely they did not connect ther GitHub account with their corporate mail. - """ - def migrate(org_id, corporate_email_domain) do - user_ids = get_wrong_email_users(org_id, corporate_email_domain) - - all_emails = - user_ids - |> Enum.each(fn id -> - {:ok, token} = get_api_token(id) - - {:ok, resp} = - HTTPoison.get("https://api.github.com/user/emails", [ - {"Authorization", "Token #{token}"} - ]) - - {:ok, body} = resp |> Map.get(:body) |> Jason.decode() - - if is_list(body) do - body - |> Enum.map(fn email -> - email["email"] - end) - |> update_email(id, corporate_email_domain) - else - Logger.error("Bad request for user #{id}: #{inspect(resp)}") - nil - end - end) - - all_emails - end - - def update_email(emails, user_id, corporate_email_domain) do - new_mail = emails |> Enum.find(&(&1 =~ "@#{corporate_email_domain}")) - - if new_mail == nil do - Logger.info("Could not find corporate email for #{user_id}") - else - Logger.info("Updating email for user #{user_id} to #{new_mail}") - - Rbac.Repo.RbacUser - |> where([u], u.id == ^user_id) - |> Rbac.Repo.update_all(set: [email: new_mail]) - - Rbac.FrontRepo.User - |> where([u], u.id == ^user_id) - |> Rbac.FrontRepo.update_all(set: [email: new_mail]) - - if Rbac.OIDC.enabled?() do - handle_oidc_sync(user_id) - end - end - end - - def handle_oidc_sync(user_id) do - user = Rbac.Store.RbacUser.fetch(user_id) - - case Rbac.Store.OIDCUser.fetch_by_user_id(user_id) do - {:ok, oidc_user} -> - case Rbac.OIDC.User.update_oidc_user(oidc_user.oidc_user_id, user) do - {:ok, oidc_user_id} -> - Logger.info("OIDC user #{oidc_user_id} updated") - - e -> - Logger.error("Error syncing new user with OIDC #{inspect(e)}") - end - - {:error, :not_found} -> - Logger.error("While updating an existing user, the same OIDC user was not found!") - end - end - - def get_wrong_email_users(org_id, corporate_email_domain) do - Rbac.Repo.SubjectRoleBinding - |> join(:inner, [srb], u in Rbac.Repo.RbacUser, on: srb.subject_id == u.id) - |> where( - [srb, u], - srb.org_id == ^org_id and is_nil(srb.project_id) and - not like(u.email, ^"%#{corporate_email_domain}%") - ) - |> select([srb], srb.subject_id) - |> Rbac.Repo.all() - end - - defp get_api_token(user_id) do - Rbac.FrontRepo.RepoHostAccount.get_github_token(user_id) - end -end diff --git a/ee/rbac/test/rbac/grpc_servers/okta_server_test.exs b/ee/rbac/test/rbac/grpc_servers/okta_server_test.exs index caefd925a..f064435b0 100644 --- a/ee/rbac/test/rbac/grpc_servers/okta_server_test.exs +++ b/ee/rbac/test/rbac/grpc_servers/okta_server_test.exs @@ -34,8 +34,28 @@ defmodule Rbac.GrpcServers.OktaServer.Test do saml_certificate: cert } - with_mock Rbac.Store.UserPermissions, [:passthrough], - read_user_permissions: fn _ -> "organization.okta.manage" end do + org_without_okta = %{ + org_id: request.org_id, + allowed_id_providers: ["github"] + } + + org_with_okta = %{ + org_id: request.org_id, + allowed_id_providers: ["github", "okta"] + } + + with_mocks([ + {Rbac.Store.UserPermissions, [], + [read_user_permissions: fn _ -> "organization.okta.manage" end]}, + {Rbac.Api.Organization, [], + [ + find_by_id: fn _ -> {:ok, org_without_okta} end, + update: fn org -> + assert "okta" in org.allowed_id_providers + {:ok, org_with_okta} + end + ]} + ]) do assert {:ok, channel} = GRPC.Stub.connect("localhost:50051") assert {:ok, res} = InternalApi.Okta.Okta.Stub.set_up(channel, request) @@ -64,6 +84,10 @@ defmodule Rbac.GrpcServers.OktaServer.Test do {:ok, fingerprint} = Rbac.Okta.Saml.Certificate.fingerprint(cert) assert integration.saml_certificate_fingerprint == Base.encode64(fingerprint) + + # Verify that organization API was called to update allowed_id_providers + assert_called(Rbac.Api.Organization.find_by_id(request.org_id)) + assert_called(Rbac.Api.Organization.update(:_)) end end @@ -79,8 +103,23 @@ defmodule Rbac.GrpcServers.OktaServer.Test do saml_certificate: cert } - with_mock Rbac.Store.UserPermissions, [:passthrough], - read_user_permissions: fn _ -> "organization.okta.manage" end do + org = %{ + org_id: request.org_id, + allowed_id_providers: ["github", "okta"] + } + + with_mocks([ + {Rbac.Store.UserPermissions, [], + [read_user_permissions: fn _ -> "organization.okta.manage" end]}, + {Rbac.Api.Organization, [], + [ + find_by_id: fn _ -> {:ok, org} end, + update: fn org -> + assert "okta" in org.allowed_id_providers + {:ok, org} + end + ]} + ]) do assert {:ok, channel} = GRPC.Stub.connect("localhost:50051") assert {:ok, res1} = InternalApi.Okta.Okta.Stub.set_up(channel, request) assert {:ok, res2} = InternalApi.Okta.Okta.Stub.set_up(channel, request) @@ -112,8 +151,23 @@ defmodule Rbac.GrpcServers.OktaServer.Test do saml_certificate: cert } - with_mock Rbac.Store.UserPermissions, [:passthrough], - read_user_permissions: fn _ -> "organization.okta.manage" end do + org_without_okta = %{ + org_id: org_id, + allowed_id_providers: ["github"] + } + + with_mocks([ + {Rbac.Store.UserPermissions, [], + [read_user_permissions: fn _ -> "organization.okta.manage" end]}, + {Rbac.Api.Organization, [], + [ + find_by_id: fn ^org_id -> {:ok, org_without_okta} end, + update: fn org -> + assert "okta" in org.allowed_id_providers + {:ok, org} + end + ]} + ]) do assert {:ok, channel} = GRPC.Stub.connect("localhost:50051") assert {:ok, res} = InternalApi.Okta.Okta.Stub.set_up(channel, request) :timer.sleep(2_000) @@ -122,6 +176,58 @@ defmodule Rbac.GrpcServers.OktaServer.Test do assert update_res.integration.created_at == res.integration.created_at assert update_res.integration.updated_at != res.integration.updated_at assert update_res.integration.idempotency_token != res.integration.idempotency_token + + assert_called(Rbac.Api.Organization.find_by_id(org_id)) + assert_called_exactly(Rbac.Api.Organization.update(:_), 2) + end + end + + test "Integration is not created if updating allowed_id_providers fails" do + import ExUnit.CaptureLog + + {:ok, cert} = Support.Okta.Saml.PayloadBuilder.test_cert() + + org_id = Ecto.UUID.generate() + + request = %InternalApi.Okta.SetUpRequest{ + org_id: org_id, + creator_id: Ecto.UUID.generate(), + idempotency_token: Ecto.UUID.generate(), + saml_issuer: "https://otkta.something/very/secure", + jit_provisioning_enabled: false, + saml_certificate: cert + } + + org_without_okta = %{ + org_id: org_id, + allowed_id_providers: ["github"] + } + + with_mocks([ + {Rbac.Store.UserPermissions, [], + [read_user_permissions: fn _ -> "organization.okta.manage" end]}, + {Rbac.Api.Organization, [], + [ + find_by_id: fn ^org_id -> {:ok, org_without_okta} end, + update: fn org -> + assert "okta" in org.allowed_id_providers + {:error, nil} + end + ]} + ]) do + assert {:ok, channel} = GRPC.Stub.connect("localhost:50051") + + log = + capture_log(fn -> + assert match?({:error, _}, InternalApi.Okta.Okta.Stub.set_up(channel, request)) + assert {:error, :not_found} = Rbac.Okta.Integration.find_by_org_id(org_id) + end) + + # Verify API calls and logging + assert_called(Rbac.Api.Organization.find_by_id(org_id)) + assert_called(Rbac.Api.Organization.update(:_)) + + assert log =~ "Failed to add okta provider for org" end end @@ -337,11 +443,34 @@ defmodule Rbac.GrpcServers.OktaServer.Test do integration_id: integration.id } + # Define the organization with okta in allowed_id_providers + org_with_okta = %{ + org_id: integration.org_id, + allowed_id_providers: ["github", "okta"] + } + assert {:ok, channel} = GRPC.Stub.connect("localhost:50051") - with_mock Rbac.Store.UserPermissions, [:passthrough], - read_user_permissions: fn _ -> "organization.okta.manage" end do + with_mocks([ + {Rbac.Store.UserPermissions, [:passthrough], + [read_user_permissions: fn _ -> "organization.okta.manage" end]}, + {Rbac.Api.Organization, [], + [ + find_by_id: fn _ -> + {:ok, org_with_okta} + end, + update: fn org -> + # Assert that okta is removed from allowed_id_providers + refute "okta" in org.allowed_id_providers + {:ok, nil} + end + ]} + ]) do assert {:ok, _res} = InternalApi.Okta.Okta.Stub.destroy(channel, request) + # The mocked function is executed async, hence the wait + :timer.sleep(2_000) + assert_called_exactly(Rbac.Api.Organization.find_by_id(:_), 1) + assert_called_exactly(Rbac.Api.Organization.update(:_), 1) end assert user_has_one_role_assigned?(non_okta_user.id) @@ -351,6 +480,54 @@ defmodule Rbac.GrpcServers.OktaServer.Test do assert {:error, :not_found} == Rbac.Okta.Integration.find(integration.id) end + test "If okta is not removed as provider, restore everything", %{integration: integration} do + {:ok, okta_user} = Support.Factories.RbacUser.insert() + + {:ok, _} = + Support.Factories.OktaUser.insert( + integration_id: integration.id, + org_id: integration.org_id, + user_id: okta_user.id + ) + + # Assigning org role to the okta user + {:ok, _} = + Support.Factories.SubjectRoleBinding.insert( + org_id: integration.org_id, + subject_id: okta_user.id, + project_id: nil, + binding_source: :okta + ) + + request = %InternalApi.Okta.DestroyRequest{ + user_id: okta_user.id, + integration_id: integration.id + } + + assert {:ok, channel} = GRPC.Stub.connect("localhost:50051") + + with_mocks([ + {Rbac.Store.UserPermissions, [:passthrough], + [read_user_permissions: fn _ -> "organization.okta.manage" end]}, + {Rbac.Api.Organization, [], + [ + find_by_id: fn _ -> {:error, :not_found} end, + update: fn org -> + # Assert that okta is removed from allowed_id_providers + refute "okta" in org.allowed_id_providers + {:ok, nil} + end + ]} + ]) do + assert {:ok, _res} = InternalApi.Okta.Okta.Stub.destroy(channel, request) + # The mocked function is executed async, hence the wait + :timer.sleep(2_000) + end + + assert user_has_one_role_assigned?(okta_user.id) + assert match?({:ok, _}, Rbac.Okta.Integration.find(integration.id)) + end + test "Dont allow if user doesn't have permission", %{integration: integration} do request = %InternalApi.Okta.DestroyRequest{ user_id: Ecto.UUID.generate(), @@ -740,14 +917,22 @@ defmodule Rbac.GrpcServers.OktaServer.Test do def create_integration do {:ok, cert} = Support.Okta.Saml.PayloadBuilder.test_cert() - Rbac.Okta.Integration.create_or_update( - Ecto.UUID.generate(), - Ecto.UUID.generate(), - "https://sso-url.com", - "https://saml-issuer.com", - cert, - false - ) + with_mocks([ + {Rbac.Api.Organization, [], + [ + find_by_id: fn _ -> {:ok, %{allowed_id_providers: []}} end, + update: fn _ -> {:ok, %{}} end + ]} + ]) do + Rbac.Okta.Integration.create_or_update( + Ecto.UUID.generate(), + Ecto.UUID.generate(), + "https://sso-url.com", + "https://saml-issuer.com", + cert, + false + ) + end end defp user_has_one_role_assigned?(user_id) do diff --git a/ee/rbac/test/rbac/okta/saml/api_test.exs b/ee/rbac/test/rbac/okta/saml/api_test.exs index 9f9a2c3fd..973289798 100644 --- a/ee/rbac/test/rbac/okta/saml/api_test.exs +++ b/ee/rbac/test/rbac/okta/saml/api_test.exs @@ -108,7 +108,7 @@ defmodule Rbac.Okta.Saml.Api.Test do # # when a user logs out, the remember_created_at is set to NULL - # in order to succesfully log back in, the remember_created_at must be not NULL + # in order to successfully log back in, the remember_created_at must be not NULL # and the current time must be bigger than the timestampt # # Every Okta login should set this remember_created_at to a real value diff --git a/ee/rbac/test/rbac/okta/saml/payload_parser_test.exs b/ee/rbac/test/rbac/okta/saml/payload_parser_test.exs index 7edd1e506..66fe4ac56 100644 --- a/ee/rbac/test/rbac/okta/saml/payload_parser_test.exs +++ b/ee/rbac/test/rbac/okta/saml/payload_parser_test.exs @@ -1,6 +1,7 @@ defmodule Rbac.Okta.Saml.PayloadParser.Test do use Rbac.RepoCase, async: true + import Mock alias Rbac.Okta.Saml.PayloadParser, as: Parser @org_id Ecto.UUID.generate() @@ -86,9 +87,24 @@ defmodule Rbac.Okta.Saml.PayloadParser.Test do def integration(issuer) do {:ok, cert} = Support.Okta.Saml.PayloadBuilder.test_cert() - {:ok, integration} = - Rbac.Okta.Integration.create_or_update(@org_id, @creator_id, @sso_url, issuer, cert, false) - - integration + with_mocks([ + {Rbac.Api.Organization, [], + [ + find_by_id: fn _ -> {:ok, %{allowed_id_providers: []}} end, + update: fn _ -> {:ok, %{}} end + ]} + ]) do + {:ok, integration} = + Rbac.Okta.Integration.create_or_update( + @org_id, + @creator_id, + @sso_url, + issuer, + cert, + false + ) + + integration + end end end diff --git a/ee/rbac/test/rbac/okta/scim/api_test.exs b/ee/rbac/test/rbac/okta/scim/api_test.exs index eea661882..20e03c29d 100644 --- a/ee/rbac/test/rbac/okta/scim/api_test.exs +++ b/ee/rbac/test/rbac/okta/scim/api_test.exs @@ -15,14 +15,19 @@ defmodule Rbac.Okta.Scim.Api.Test do "x-semaphore-org-id": @org_id ] - setup do + setup_with_mocks([ + {Rbac.Api.Organization, [], + [ + find_by_id: fn _ -> {:ok, %{allowed_id_providers: []}} end, + update: fn _ -> {:ok, %{}} end + ]} + ]) do Rbac.FrontRepo.delete_all(Rbac.FrontRepo.User) Support.Rbac.create_org_roles(@org_id) Support.Rbac.create_project_roles(@org_id) {:ok, provisioner} = Rbac.Okta.Scim.Provisioner.start_link() - on_exit(fn -> Process.exit(provisioner, :kill) end) end @@ -41,7 +46,7 @@ defmodule Rbac.Okta.Scim.Api.Test do end describe "authorization" do - test "unathorized okta calls return 401" do + test "unauthorized okta calls return 401" do base_path = "#{@host}/okta/scim/Users" headers = @headers @@ -196,7 +201,6 @@ defmodule Rbac.Okta.Scim.Api.Test do ) {:ok, token} = Rbac.Okta.Integration.generate_scim_token(integration) - {:ok, %{integration: integration, token: token}} end @@ -206,7 +210,7 @@ defmodule Rbac.Okta.Scim.Api.Test do assert response["id"] != nil end - test "when user with that email already exists, just connecti it to the okta account", %{ + test "when user with that email already exists, just connect it to the okta account", %{ token: token } do alias Rbac.Events.UserJoinedOrganization @@ -421,7 +425,7 @@ defmodule Rbac.Okta.Scim.Api.Test do end end - test "re-eactivate a user", ctx do + test "reactivate a user", ctx do alias Rbac.Repo.OktaUser alias Rbac.Events.UserJoinedOrganization diff --git a/ee/rbac/test/rbac/okta/scim/provisioner_test.exs b/ee/rbac/test/rbac/okta/scim/provisioner_test.exs index 011802c0d..b5d07ad57 100644 --- a/ee/rbac/test/rbac/okta/scim/provisioner_test.exs +++ b/ee/rbac/test/rbac/okta/scim/provisioner_test.exs @@ -9,12 +9,18 @@ defmodule Rbac.Okta.Scim.ProvisionerTest do alias Rbac.Repo.OktaUser import Mock - setup do + # Setup global mocks that will be available for all tests + setup_with_mocks([ + {Rbac.Api.Organization, [], + [ + find_by_id: fn _ -> {:ok, %{allowed_id_providers: []}} end, + update: fn _ -> {:ok, %{}} end + ]} + ]) do Support.Rbac.Store.clear!() Support.Rbac.create_org_roles(@org_id) {:ok, provisioner} = Rbac.Okta.Scim.Provisioner.start_link() - on_exit(fn -> Process.exit(provisioner, :kill) end) {:ok, cert} = Support.Okta.Saml.PayloadBuilder.test_cert() diff --git a/ee/rbac/test/rbac/store/rbac_role_test.exs b/ee/rbac/test/rbac/store/rbac_role_test.exs index 7cdf66d03..3f3bb02df 100644 --- a/ee/rbac/test/rbac/store/rbac_role_test.exs +++ b/ee/rbac/test/rbac/store/rbac_role_test.exs @@ -99,7 +99,7 @@ defmodule Rbac.Store.RbacRole.Test do # ======================================================================== - test "succesfully create a role that does not inherit nor map to other roles" do + test "successfully create a role that does not inherit nor map to other roles" do with_mocks [{Rbac.RoleBindingIdentification, [:passthrough], [new: fn _ -> :ok end]}] do {:ok, role} = Role.create_or_update(create_role_params(scope: "project_scope")) assert role.name == "Test" @@ -114,7 +114,7 @@ defmodule Rbac.Store.RbacRole.Test do end end - test "succesfully create a role that both inherits and maps to other roles" do + test "successfully create a role that both inherits and maps to other roles" do Support.Rbac.create_org_roles(@org_id) Support.Rbac.create_project_roles(@org_id) {:ok, org_member} = Repo.RbacRole.get_role_by_name("Member", "org_scope", @org_id) @@ -151,7 +151,7 @@ defmodule Rbac.Store.RbacRole.Test do {:error, ^msg} = Role.create_or_update(create_role_params(id: role.id, name: "Name")) end - test "Succesfully update Admin role" do + test "successfully update Admin role" do {:ok, user} = Support.Factories.RbacUser.insert() Support.Rbac.create_org_roles(@org_id) Support.Rbac.create_project_roles(@org_id) diff --git a/ee/rbac/test/rbac/workers/refresh_all_permissions_test.exs b/ee/rbac/test/rbac/workers/refresh_all_permissions_test.exs index d73854e2a..6248f2c57 100644 --- a/ee/rbac/test/rbac/workers/refresh_all_permissions_test.exs +++ b/ee/rbac/test/rbac/workers/refresh_all_permissions_test.exs @@ -17,7 +17,7 @@ defmodule Rbac.Workers.RefreshAllPermissionsTest do :ok end - test "When request is succesfully processed" do + test "When request is successfully processed" do org_ids = Enum.map(1..@number_of_orgs, fn _ -> Ecto.UUID.generate() end) with_mocks([ @@ -36,7 +36,7 @@ defmodule Rbac.Workers.RefreshAllPermissionsTest do end @max_retries 3 - test "When request is not succesfully processed" do + test "When request is not successfully processed" do org_ids = Enum.map(1..@number_of_orgs, fn _ -> Ecto.UUID.generate() end) with_mocks([ diff --git a/ee/rbac/test/support/okta/saml/payload_builder.ex b/ee/rbac/test/support/okta/saml/payload_builder.ex index ad46be466..44b3f2e79 100644 --- a/ee/rbac/test/support/okta/saml/payload_builder.ex +++ b/ee/rbac/test/support/okta/saml/payload_builder.ex @@ -4,7 +4,7 @@ defmodule Support.Okta.Saml.PayloadBuilder do the API is able to consume them. We need to build this payload dynamically in order to inject - proper dates and succesfully digitally sign the payload. + proper dates and successfully digitally sign the payload. The payload is an XML document. See an example: test/support/okta/saml/payload_example.xml. diff --git a/ee/velocity/Dockerfile b/ee/velocity/Dockerfile index 20244ccba..9cc9fd0db 100644 --- a/ee/velocity/Dockerfile +++ b/ee/velocity/Dockerfile @@ -33,15 +33,15 @@ FROM base AS dev COPY test test WORKDIR /tmp -RUN curl -sL https://github.com/google/protobuf/releases/download/v3.3.0/protoc-3.3.0-linux-x86_64.zip -o protoc && \ +RUN curl -sL https://github.com/google/protobuf/releases/download/v3.20.0/protoc-3.20.0-linux-x86_64.zip -o protoc && \ unzip protoc && \ mv bin/protoc /usr/local/bin/protoc WORKDIR /app RUN go install github.com/mgechev/revive@v1.7.0 RUN go install gotest.tools/gotestsum@v1.12.1 -RUN go install google.golang.org/protobuf/cmd/protoc-gen-go@latest -RUN go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@latest +RUN go install google.golang.org/protobuf/cmd/protoc-gen-go@v1.26.0 +RUN go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@v1.3.0 CMD [ "/bin/bash", "-c \"while sleep 1000; do :; done\"" ] diff --git a/ee/velocity/Makefile b/ee/velocity/Makefile index fd4c12044..2b9b7a3e6 100644 --- a/ee/velocity/Makefile +++ b/ee/velocity/Makefile @@ -8,18 +8,18 @@ APP_ENV=prod # lint: build - docker-compose run --rm --no-deps app revive -formatter friendly -config lint.toml ./... + docker compose run --rm --no-deps app revive -formatter friendly -config lint.toml ./... test.setup: - docker-compose build + docker compose build $(MAKE) db.create $(MAKE) db.migrate test: build - docker-compose run --rm app gotestsum --format short-verbose --junitfile out/test-reports.xml --packages="./..." -- -p 1 + docker compose run --rm app gotestsum --format short-verbose --junitfile out/test-reports.xml --packages="./..." -- -p 1 wait.for.postgres: - docker-compose run --rm app scripts/wait-for-postgres.sh + docker compose run --rm app scripts/wait-for-postgres.sh # # Database and migrations @@ -32,25 +32,25 @@ export DB_USERNAME=postgres export DB_PASSWORD=the-cake-is-a-lie db.create: wait.for.postgres - docker-compose run app bash -c "scripts/db.sh create" + docker compose run app bash -c "scripts/db.sh create" db.migration.create: wait.for.postgres - docker-compose run app mkdir -p db/migrations - docker-compose run app migrate create -ext sql -dir db/migrations $(NAME) + docker compose run app mkdir -p db/migrations + docker compose run app migrate create -ext sql -dir db/migrations $(NAME) ls -lah db/migrations/*$(NAME)* db.migrate: wait.for.postgres rm -f db/structure.sql - docker-compose run app bash -c "scripts/db.sh migrate" + docker compose run app bash -c "scripts/db.sh migrate" # echo dump schema to db/structure.sql - docker-compose run --user $$(id -u):$$(id -g) -e PGPASSWORD=$(DB_PASSWORD) app bash -c "pg_dump --schema-only --no-privileges --no-owner -h db -p 5432 -U postgres -d $(DB_NAME)" > db/structure.sql - docker-compose run --user $$(id -u):$$(id -g) -e PGPASSWORD=$(DB_PASSWORD) app bash -c "pg_dump --data-only --table schema_migrations -h db -p 5432 -U postgres -d $(DB_NAME)" >> db/structure.sql + docker compose run --user $$(id -u):$$(id -g) -e PGPASSWORD=$(DB_PASSWORD) app bash -c "pg_dump --schema-only --no-privileges --no-owner -h db -p 5432 -U postgres -d $(DB_NAME)" > db/structure.sql + docker compose run --user $$(id -u):$$(id -g) -e PGPASSWORD=$(DB_PASSWORD) app bash -c "pg_dump --data-only --table schema_migrations -h db -p 5432 -U postgres -d $(DB_NAME)" >> db/structure.sql db.test.console: - docker-compose run --user $$(id -u):$$(id -g) -e PGPASSWORD=$(DB_PASSWORD) app psql -h db -p 5432 -U postgres $(DB_NAME) + docker compose run --user $$(id -u):$$(id -g) -e PGPASSWORD=$(DB_PASSWORD) app psql -h db -p 5432 -U postgres $(DB_NAME) db.test.delete: - docker-compose run --user $$(id -u):$$(id -g) --rm -e PGPASSWORD=$(DB_PASSWORD) app dropdb -h db -p 5432 -U postgres $(DB_NAME) + docker compose run --user $$(id -u):$$(id -g) --rm -e PGPASSWORD=$(DB_PASSWORD) app dropdb -h db -p 5432 -U postgres $(DB_NAME) # # Protobuf compilation. @@ -61,4 +61,4 @@ MODULES = user,repository_integrator,projecthub,artifacthub,plumber_w_f.workflow pb.gen: rm -rf /tmp/internal_api git clone git@github.com:renderedtext/internal_api.git /tmp/internal_api && (cd /tmp/internal_api && git checkout $(INTERNAL_API_BRANCH) && cd -) - docker-compose run --rm app scripts/protoc.sh $(MODULES) $(INTERNAL_API_BRANCH) + docker compose run --rm app scripts/protoc.sh $(MODULES) $(INTERNAL_API_BRANCH) diff --git a/ee/velocity/db/structure.sql b/ee/velocity/db/structure.sql index ee1c1f45b..ebf3bfeca 100644 --- a/ee/velocity/db/structure.sql +++ b/ee/velocity/db/structure.sql @@ -1,485 +1,532 @@ --- --- PostgreSQL database dump --- - --- Dumped from database version 9.6.24 --- Dumped by pg_dump version 13.7 (Debian 13.7-0+deb11u1) - -SET statement_timeout = 0; -SET lock_timeout = 0; -SET idle_in_transaction_session_timeout = 0; -SET client_encoding = 'UTF8'; -SET standard_conforming_strings = on; -SELECT pg_catalog.set_config('search_path', '', false); -SET check_function_bodies = false; -SET xmloption = content; -SET client_min_messages = warning; -SET row_security = off; - --- --- Name: uuid-ossp; Type: EXTENSION; Schema: -; Owner: - --- - -CREATE EXTENSION IF NOT EXISTS "uuid-ossp" WITH SCHEMA public; - - --- --- Name: EXTENSION "uuid-ossp"; Type: COMMENT; Schema: -; Owner: - --- - -COMMENT ON EXTENSION "uuid-ossp" IS 'generate universally unique identifiers (UUIDs)'; - - -SET default_tablespace = ''; - --- --- Name: branch_metrics; Type: TABLE; Schema: public; Owner: - --- - -CREATE TABLE public.branch_metrics ( - id bigint NOT NULL, - project_id uuid NOT NULL, - branch_id uuid NOT NULL, - pipeline_yml_file character varying NOT NULL, - pipeline_name character varying NOT NULL, - latest_pipeline_runs jsonb, - weekly_metrics jsonb -); - - --- --- Name: branch_metrics_id_seq; Type: SEQUENCE; Schema: public; Owner: - --- - -CREATE SEQUENCE public.branch_metrics_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - --- --- Name: branch_metrics_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - --- - -ALTER SEQUENCE public.branch_metrics_id_seq OWNED BY public.branch_metrics.id; - - --- --- Name: job_summaries; Type: TABLE; Schema: public; Owner: - --- - -CREATE TABLE public.job_summaries ( - id bigint NOT NULL, - project_id uuid NOT NULL, - pipeline_id uuid NOT NULL, - job_id uuid NOT NULL, - total integer NOT NULL, - passed integer NOT NULL, - skipped integer NOT NULL, - failed integer NOT NULL, - errors integer NOT NULL, - disabled integer NOT NULL, - duration bigint NOT NULL, - created_at timestamp without time zone DEFAULT timezone('utc'::text, now()) NOT NULL, - updated_at timestamp without time zone DEFAULT timezone('utc'::text, now()) NOT NULL -); - - --- --- Name: job_summaries_id_seq; Type: SEQUENCE; Schema: public; Owner: - --- - -CREATE SEQUENCE public.job_summaries_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - --- --- Name: job_summaries_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - --- - -ALTER SEQUENCE public.job_summaries_id_seq OWNED BY public.job_summaries.id; - - --- --- Name: pipeline_event_buffer; Type: TABLE; Schema: public; Owner: - --- - -CREATE TABLE public.pipeline_event_buffer ( - id bigint NOT NULL, - pipeline_id uuid NOT NULL, - workflow_id uuid NOT NULL, - project_id uuid NOT NULL, - branch_id uuid NOT NULL, - pipeline_file_name character varying NOT NULL, - pipeline_name character varying NOT NULL, - running_at timestamp without time zone, - done_at timestamp without time zone NOT NULL, - "timestamp" timestamp without time zone NOT NULL, - result character varying NOT NULL, - reason character varying NOT NULL, - state character varying NOT NULL -); - - --- --- Name: pipeline_event_buffer_id_seq; Type: SEQUENCE; Schema: public; Owner: - --- - -CREATE SEQUENCE public.pipeline_event_buffer_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - --- --- Name: pipeline_event_buffer_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - --- - -ALTER SEQUENCE public.pipeline_event_buffer_id_seq OWNED BY public.pipeline_event_buffer.id; - - --- --- Name: pipeline_event_results; Type: TABLE; Schema: public; Owner: - --- - -CREATE TABLE public.pipeline_event_results ( - id bigint NOT NULL, - pipeline_id uuid NOT NULL, - workflow_id uuid NOT NULL, - project_id uuid NOT NULL, - branch_id uuid NOT NULL, - pipeline_file_name character varying NOT NULL, - pipeline_name character varying NOT NULL, - running_at timestamp without time zone, - done_at timestamp without time zone NOT NULL, - "timestamp" timestamp without time zone NOT NULL, - result character varying NOT NULL, - reason character varying NOT NULL, - state character varying NOT NULL -); - - --- --- Name: pipeline_event_results_id_seq; Type: SEQUENCE; Schema: public; Owner: - --- - -CREATE SEQUENCE public.pipeline_event_results_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - --- --- Name: pipeline_event_results_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - --- - -ALTER SEQUENCE public.pipeline_event_results_id_seq OWNED BY public.pipeline_event_results.id; - - --- --- Name: pipeline_summaries; Type: TABLE; Schema: public; Owner: - --- - -CREATE TABLE public.pipeline_summaries ( - id bigint NOT NULL, - project_id uuid NOT NULL, - pipeline_id uuid NOT NULL, - total integer NOT NULL, - passed integer NOT NULL, - skipped integer NOT NULL, - failed integer NOT NULL, - errors integer NOT NULL, - disabled integer NOT NULL, - duration bigint NOT NULL, - created_at timestamp without time zone DEFAULT timezone('utc'::text, now()) NOT NULL, - updated_at timestamp without time zone DEFAULT timezone('utc'::text, now()) NOT NULL -); - - --- --- Name: pipeline_summaries_id_seq; Type: SEQUENCE; Schema: public; Owner: - --- - -CREATE SEQUENCE public.pipeline_summaries_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - --- --- Name: pipeline_summaries_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - --- - -ALTER SEQUENCE public.pipeline_summaries_id_seq OWNED BY public.pipeline_summaries.id; - - --- --- Name: schema_migrations; Type: TABLE; Schema: public; Owner: - --- - -CREATE TABLE public.schema_migrations ( - version bigint NOT NULL, - dirty boolean NOT NULL -); - - --- --- Name: weekly_pipeline_metrics; Type: TABLE; Schema: public; Owner: - --- - -CREATE TABLE public.weekly_pipeline_metrics ( - id bigint NOT NULL, - project_id uuid NOT NULL, - branch_id uuid NOT NULL, - pipeline_file_name character varying NOT NULL, - pipeline_name character varying NOT NULL, - week_of_year integer NOT NULL, - year integer NOT NULL, - average bigint NOT NULL, - pass_rate numeric(12,2) NOT NULL, - created_at timestamp without time zone DEFAULT now() NOT NULL, - processed_at timestamp without time zone -); - - --- --- Name: weekly_pipeline_metrics_id_seq; Type: SEQUENCE; Schema: public; Owner: - --- - -CREATE SEQUENCE public.weekly_pipeline_metrics_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - --- --- Name: weekly_pipeline_metrics_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - --- - -ALTER SEQUENCE public.weekly_pipeline_metrics_id_seq OWNED BY public.weekly_pipeline_metrics.id; - - --- --- Name: branch_metrics id; Type: DEFAULT; Schema: public; Owner: - --- - -ALTER TABLE ONLY public.branch_metrics ALTER COLUMN id SET DEFAULT nextval('public.branch_metrics_id_seq'::regclass); - - --- --- Name: job_summaries id; Type: DEFAULT; Schema: public; Owner: - --- - -ALTER TABLE ONLY public.job_summaries ALTER COLUMN id SET DEFAULT nextval('public.job_summaries_id_seq'::regclass); - - --- --- Name: pipeline_event_buffer id; Type: DEFAULT; Schema: public; Owner: - --- - -ALTER TABLE ONLY public.pipeline_event_buffer ALTER COLUMN id SET DEFAULT nextval('public.pipeline_event_buffer_id_seq'::regclass); - - --- --- Name: pipeline_event_results id; Type: DEFAULT; Schema: public; Owner: - --- - -ALTER TABLE ONLY public.pipeline_event_results ALTER COLUMN id SET DEFAULT nextval('public.pipeline_event_results_id_seq'::regclass); - - --- --- Name: pipeline_summaries id; Type: DEFAULT; Schema: public; Owner: - --- - -ALTER TABLE ONLY public.pipeline_summaries ALTER COLUMN id SET DEFAULT nextval('public.pipeline_summaries_id_seq'::regclass); - - --- --- Name: weekly_pipeline_metrics id; Type: DEFAULT; Schema: public; Owner: - --- - -ALTER TABLE ONLY public.weekly_pipeline_metrics ALTER COLUMN id SET DEFAULT nextval('public.weekly_pipeline_metrics_id_seq'::regclass); - - --- --- Name: branch_metrics branch_metrics_pkey; Type: CONSTRAINT; Schema: public; Owner: - --- - -ALTER TABLE ONLY public.branch_metrics - ADD CONSTRAINT branch_metrics_pkey PRIMARY KEY (id); - - --- --- Name: job_summaries job_summaries_pk; Type: CONSTRAINT; Schema: public; Owner: - --- - -ALTER TABLE ONLY public.job_summaries - ADD CONSTRAINT job_summaries_pk PRIMARY KEY (id); - - --- --- Name: pipeline_event_buffer pipeline_event_buffer_pkey; Type: CONSTRAINT; Schema: public; Owner: - --- - -ALTER TABLE ONLY public.pipeline_event_buffer - ADD CONSTRAINT pipeline_event_buffer_pkey PRIMARY KEY (id); - - --- --- Name: pipeline_event_results pipeline_event_results_pkey; Type: CONSTRAINT; Schema: public; Owner: - --- - -ALTER TABLE ONLY public.pipeline_event_results - ADD CONSTRAINT pipeline_event_results_pkey PRIMARY KEY (id); - - --- --- Name: pipeline_summaries pipeline_summaries_pk; Type: CONSTRAINT; Schema: public; Owner: - --- - -ALTER TABLE ONLY public.pipeline_summaries - ADD CONSTRAINT pipeline_summaries_pk PRIMARY KEY (id); - - --- --- Name: schema_migrations schema_migrations_pkey; Type: CONSTRAINT; Schema: public; Owner: - --- - -ALTER TABLE ONLY public.schema_migrations - ADD CONSTRAINT schema_migrations_pkey PRIMARY KEY (version); - - --- --- Name: weekly_pipeline_metrics weekly_pipeline_metrics_pkey; Type: CONSTRAINT; Schema: public; Owner: - --- - -ALTER TABLE ONLY public.weekly_pipeline_metrics - ADD CONSTRAINT weekly_pipeline_metrics_pkey PRIMARY KEY (id); - - --- --- Name: branch_metrics_unique_idx; Type: INDEX; Schema: public; Owner: - --- - -CREATE UNIQUE INDEX branch_metrics_unique_idx ON public.branch_metrics USING btree (project_id, branch_id, pipeline_yml_file); - - --- --- Name: job_summaries_id_uindex; Type: INDEX; Schema: public; Owner: - --- - -CREATE UNIQUE INDEX job_summaries_id_uindex ON public.job_summaries USING btree (id); - - --- --- Name: job_summaries_project_id_pipeline_id_uindex; Type: INDEX; Schema: public; Owner: - --- - -CREATE UNIQUE INDEX job_summaries_project_id_pipeline_id_uindex ON public.job_summaries USING btree (project_id, pipeline_id, job_id); - - --- --- Name: per_project_id_branch_id_pipeline_file_name_buffer_idx; Type: INDEX; Schema: public; Owner: - --- - -CREATE INDEX per_project_id_branch_id_pipeline_file_name_buffer_idx ON public.pipeline_event_buffer USING btree (project_id, branch_id, pipeline_file_name); - - --- --- Name: per_project_id_branch_id_pipeline_file_name_idx; Type: INDEX; Schema: public; Owner: - --- - -CREATE INDEX per_project_id_branch_id_pipeline_file_name_idx ON public.pipeline_event_results USING btree (project_id, branch_id, pipeline_file_name); - - --- --- Name: pipeline_event_buffer_pipeline_id_unique_index; Type: INDEX; Schema: public; Owner: - --- - -CREATE UNIQUE INDEX pipeline_event_buffer_pipeline_id_unique_index ON public.pipeline_event_buffer USING btree (pipeline_id); - - --- --- Name: pipeline_event_results_pipeline_id_unique_index; Type: INDEX; Schema: public; Owner: - --- - -CREATE UNIQUE INDEX pipeline_event_results_pipeline_id_unique_index ON public.pipeline_event_results USING btree (pipeline_id); - - --- --- Name: pipeline_summaries_id_uindex; Type: INDEX; Schema: public; Owner: - --- - -CREATE UNIQUE INDEX pipeline_summaries_id_uindex ON public.pipeline_summaries USING btree (id); - - --- --- Name: pipeline_summaries_project_id_pipeline_id_uindex; Type: INDEX; Schema: public; Owner: - --- - -CREATE UNIQUE INDEX pipeline_summaries_project_id_pipeline_id_uindex ON public.pipeline_summaries USING btree (project_id, pipeline_id); - - --- --- Name: pm_project_id_branch_id_pipeline_file_name_kind_unique_idx; Type: INDEX; Schema: public; Owner: - --- - -CREATE INDEX pm_project_id_branch_id_pipeline_file_name_kind_unique_idx ON public.weekly_pipeline_metrics USING btree (project_id, branch_id, pipeline_file_name); - - --- --- Name: weekly_pipeline_metrics_uindex; Type: INDEX; Schema: public; Owner: - --- - -CREATE UNIQUE INDEX weekly_pipeline_metrics_uindex ON public.weekly_pipeline_metrics USING btree (project_id, branch_id, pipeline_file_name, year, week_of_year); - - --- --- PostgreSQL database dump complete --- - --- --- PostgreSQL database dump --- - --- Dumped from database version 9.6.24 --- Dumped by pg_dump version 13.7 (Debian 13.7-0+deb11u1) - -SET statement_timeout = 0; -SET lock_timeout = 0; -SET idle_in_transaction_session_timeout = 0; -SET client_encoding = 'UTF8'; -SET standard_conforming_strings = on; -SELECT pg_catalog.set_config('search_path', '', false); -SET check_function_bodies = false; -SET xmloption = content; -SET client_min_messages = warning; -SET row_security = off; - --- --- Data for Name: schema_migrations; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.schema_migrations (version, dirty) FROM stdin; -7 f -\. - - --- --- PostgreSQL database dump complete --- - +-- +-- PostgreSQL database dump +-- + +-- Dumped from database version 9.6.24 +-- Dumped by pg_dump version 15.13 (Debian 15.13-0+deb12u1) + +SET statement_timeout = 0; +SET lock_timeout = 0; +SET idle_in_transaction_session_timeout = 0; +SET client_encoding = 'UTF8'; +SET standard_conforming_strings = on; +SELECT pg_catalog.set_config('search_path', '', false); +SET check_function_bodies = false; +SET xmloption = content; +SET client_min_messages = warning; +SET row_security = off; + +-- +-- Name: public; Type: SCHEMA; Schema: -; Owner: - +-- + +-- *not* creating schema, since initdb creates it + + +-- +-- Name: uuid-ossp; Type: EXTENSION; Schema: -; Owner: - +-- + +CREATE EXTENSION IF NOT EXISTS "uuid-ossp" WITH SCHEMA public; + + +-- +-- Name: EXTENSION "uuid-ossp"; Type: COMMENT; Schema: -; Owner: - +-- + +COMMENT ON EXTENSION "uuid-ossp" IS 'generate universally unique identifiers (UUIDs)'; + + +SET default_tablespace = ''; + +-- +-- Name: flaky_tests_filters; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.flaky_tests_filters ( + id uuid NOT NULL, + name character varying NOT NULL, + value character varying NOT NULL, + project_id uuid NOT NULL, + organization_id uuid NOT NULL, + inserted_at timestamp without time zone DEFAULT now() NOT NULL, + updated_at timestamp without time zone DEFAULT now() NOT NULL +); + + +-- +-- Name: job_summaries; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.job_summaries ( + project_id uuid NOT NULL, + pipeline_id uuid NOT NULL, + job_id uuid NOT NULL, + total integer NOT NULL, + passed integer NOT NULL, + skipped integer NOT NULL, + failed integer NOT NULL, + errors integer NOT NULL, + disabled integer NOT NULL, + duration bigint NOT NULL, + created_at timestamp without time zone DEFAULT timezone('utc'::text, now()) NOT NULL, + updated_at timestamp without time zone DEFAULT timezone('utc'::text, now()) NOT NULL +); + + +-- +-- Name: metrics_dashboard_items; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.metrics_dashboard_items ( + id uuid NOT NULL, + metrics_dashboard_id uuid NOT NULL, + name character varying NOT NULL, + branch_name character varying NOT NULL, + pipeline_file_name character varying NOT NULL, + settings jsonb DEFAULT '{}'::jsonb NOT NULL, + inserted_at timestamp without time zone DEFAULT now() NOT NULL, + updated_at timestamp without time zone DEFAULT now() NOT NULL, + notes text DEFAULT ''::text NOT NULL +); + + +-- +-- Name: metrics_dashboards; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.metrics_dashboards ( + id uuid NOT NULL, + name character varying NOT NULL, + project_id uuid NOT NULL, + organization_id uuid NOT NULL, + inserted_at timestamp without time zone DEFAULT now() NOT NULL, + updated_at timestamp without time zone DEFAULT now() NOT NULL +); + + +-- +-- Name: pipeline_runs; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.pipeline_runs ( + pipeline_id uuid NOT NULL, + project_id uuid NOT NULL, + branch_id uuid NOT NULL, + branch_name character varying NOT NULL, + pipeline_file_name character varying NOT NULL, + result character varying NOT NULL, + reason character varying NOT NULL, + queueing_at timestamp without time zone, + running_at timestamp without time zone, + done_at timestamp without time zone, + created_at timestamp without time zone, + updated_at timestamp without time zone +); + + +-- +-- Name: pipeline_summaries; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.pipeline_summaries ( + project_id uuid NOT NULL, + pipeline_id uuid NOT NULL, + total integer NOT NULL, + passed integer NOT NULL, + skipped integer NOT NULL, + failed integer NOT NULL, + errors integer NOT NULL, + disabled integer NOT NULL, + duration bigint NOT NULL, + created_at timestamp without time zone DEFAULT timezone('utc'::text, now()) NOT NULL, + updated_at timestamp without time zone DEFAULT timezone('utc'::text, now()) NOT NULL +); + + +-- +-- Name: project_last_successful_runs; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.project_last_successful_runs ( + id uuid NOT NULL, + project_id uuid NOT NULL, + organization_id uuid NOT NULL, + pipeline_file_name character varying NOT NULL, + branch_name character varying NOT NULL, + last_successful_run_at timestamp without time zone NOT NULL, + inserted_at timestamp without time zone DEFAULT now() NOT NULL, + updated_at timestamp without time zone DEFAULT now() NOT NULL +); + + +-- +-- Name: project_metrics; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.project_metrics ( + project_id uuid NOT NULL, + pipeline_file_name character varying NOT NULL, + collected_at date NOT NULL, + organization_id uuid NOT NULL, + branch_name character varying NOT NULL, + metrics jsonb DEFAULT '{}'::jsonb NOT NULL +); + + +-- +-- Name: project_mttr; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.project_mttr ( + id uuid NOT NULL, + project_id uuid NOT NULL, + organization_id uuid NOT NULL, + pipeline_file_name character varying NOT NULL, + branch_name character varying NOT NULL, + failed_ppl_id uuid NOT NULL, + failed_at timestamp without time zone NOT NULL, + passed_ppl_id uuid, + passed_at timestamp without time zone, + inserted_at timestamp without time zone DEFAULT now() NOT NULL, + updated_at timestamp without time zone DEFAULT now() NOT NULL +); + + +-- +-- Name: project_settings; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.project_settings ( + project_id uuid NOT NULL, + organization_id uuid, + cd_branch_name character varying NOT NULL, + cd_pipeline_file_name character varying NOT NULL, + ci_branch_name character varying DEFAULT ''::character varying NOT NULL, + ci_pipeline_file_name character varying DEFAULT ''::character varying NOT NULL +); + + +-- +-- Name: schema_migrations; Type: TABLE; Schema: public; Owner: - +-- + +CREATE TABLE public.schema_migrations ( + version bigint NOT NULL, + dirty boolean NOT NULL +); + + +-- +-- Name: flaky_tests_filters flaky_tests_filters_pk; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.flaky_tests_filters + ADD CONSTRAINT flaky_tests_filters_pk PRIMARY KEY (id); + + +-- +-- Name: job_summaries job_summaries_pk; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.job_summaries + ADD CONSTRAINT job_summaries_pk PRIMARY KEY (job_id); + + +-- +-- Name: metrics_dashboard_items metrics_dashboard_items_pk; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.metrics_dashboard_items + ADD CONSTRAINT metrics_dashboard_items_pk PRIMARY KEY (id); + + +-- +-- Name: metrics_dashboards metrics_dashboards_pk; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.metrics_dashboards + ADD CONSTRAINT metrics_dashboards_pk PRIMARY KEY (id); + + +-- +-- Name: pipeline_runs pipeline_runs_pk; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.pipeline_runs + ADD CONSTRAINT pipeline_runs_pk PRIMARY KEY (pipeline_id); + + +-- +-- Name: pipeline_summaries pipeline_summaries_pk; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.pipeline_summaries + ADD CONSTRAINT pipeline_summaries_pk PRIMARY KEY (pipeline_id); + + +-- +-- Name: project_last_successful_runs plsr_pk; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.project_last_successful_runs + ADD CONSTRAINT plsr_pk PRIMARY KEY (id); + + +-- +-- Name: project_metrics project_metrics_pk; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.project_metrics + ADD CONSTRAINT project_metrics_pk PRIMARY KEY (project_id, pipeline_file_name, branch_name, collected_at); + + +-- +-- Name: project_mttr project_mttr_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.project_mttr + ADD CONSTRAINT project_mttr_pkey PRIMARY KEY (id); + + +-- +-- Name: project_settings ps_pk; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.project_settings + ADD CONSTRAINT ps_pk PRIMARY KEY (project_id); + + +-- +-- Name: schema_migrations schema_migrations_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.schema_migrations + ADD CONSTRAINT schema_migrations_pkey PRIMARY KEY (version); + + +-- +-- Name: flaky_tests_filters_project_id_index; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX flaky_tests_filters_project_id_index ON public.flaky_tests_filters USING btree (project_id); + + +-- +-- Name: flaky_tests_filters_project_id_name_uindex; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX flaky_tests_filters_project_id_name_uindex ON public.flaky_tests_filters USING btree (project_id, name); + + +-- +-- Name: idx_project_metrics_optimization; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX idx_project_metrics_optimization ON public.project_metrics USING btree (branch_name, collected_at, project_id); + + +-- +-- Name: job_summaries_id_uindex; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX job_summaries_id_uindex ON public.job_summaries USING btree (job_id); + + +-- +-- Name: job_summaries_project_id_pipeline_id_uindex; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX job_summaries_project_id_pipeline_id_uindex ON public.job_summaries USING btree (project_id, pipeline_id, job_id); + + +-- +-- Name: mdi_metrics_dashboard_id_index; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX mdi_metrics_dashboard_id_index ON public.metrics_dashboard_items USING btree (metrics_dashboard_id); + + +-- +-- Name: metrics_dashboards_name_project_id_uindex; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX metrics_dashboards_name_project_id_uindex ON public.metrics_dashboards USING btree (name, project_id); + + +-- +-- Name: mttr_branch_name_idx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX mttr_branch_name_idx ON public.project_mttr USING btree (branch_name); + + +-- +-- Name: mttr_passed_ppl_id_idx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX mttr_passed_ppl_id_idx ON public.project_mttr USING btree (passed_ppl_id); + + +-- +-- Name: mttr_pipeline_file_name_idx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX mttr_pipeline_file_name_idx ON public.project_mttr USING btree (pipeline_file_name); + + +-- +-- Name: mttr_project_id_idx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX mttr_project_id_idx ON public.project_mttr USING btree (project_id); + + +-- +-- Name: organization_id_idx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX organization_id_idx ON public.project_last_successful_runs USING btree (organization_id); + + +-- +-- Name: pipeline_file_name_idx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX pipeline_file_name_idx ON public.project_last_successful_runs USING btree (pipeline_file_name); + + +-- +-- Name: pipeline_run_bid_idx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX pipeline_run_bid_idx ON public.pipeline_runs USING btree (branch_id); + + +-- +-- Name: pipeline_run_bname_idx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX pipeline_run_bname_idx ON public.pipeline_runs USING btree (branch_name); + + +-- +-- Name: pipeline_run_pfname_idx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX pipeline_run_pfname_idx ON public.pipeline_runs USING btree (pipeline_file_name); + + +-- +-- Name: pipeline_run_proj_idx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX pipeline_run_proj_idx ON public.pipeline_runs USING btree (project_id); + + +-- +-- Name: pipeline_run_reason_idx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX pipeline_run_reason_idx ON public.pipeline_runs USING btree (reason); + + +-- +-- Name: pipeline_run_result_idx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX pipeline_run_result_idx ON public.pipeline_runs USING btree (result); + + +-- +-- Name: pipeline_runs_pipeline_id_uindex; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX pipeline_runs_pipeline_id_uindex ON public.pipeline_runs USING btree (pipeline_id); + + +-- +-- Name: pipeline_summaries_id_uindex; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX pipeline_summaries_id_uindex ON public.pipeline_summaries USING btree (pipeline_id); + + +-- +-- Name: pipeline_summaries_project_id_pipeline_id_uindex; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX pipeline_summaries_project_id_pipeline_id_uindex ON public.pipeline_summaries USING btree (project_id, pipeline_id); + + +-- +-- Name: plsr_unq_idx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX plsr_unq_idx ON public.project_last_successful_runs USING btree (project_id, pipeline_file_name, branch_name); + + +-- +-- Name: project_id_idx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX project_id_idx ON public.project_last_successful_runs USING btree (project_id); + + +-- +-- Name: project_last_runs_project_id_last_run_idx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX project_last_runs_project_id_last_run_idx ON public.project_last_successful_runs USING btree (project_id, last_successful_run_at DESC); + + +-- +-- Name: project_mttr_unq_idx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE UNIQUE INDEX project_mttr_unq_idx ON public.project_mttr USING btree (project_id, pipeline_file_name, branch_name, failed_ppl_id); + + +-- +-- Name: metrics_dashboard_items metrics_dashboard_items_metrics_dashboard_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.metrics_dashboard_items + ADD CONSTRAINT metrics_dashboard_items_metrics_dashboard_id_fkey FOREIGN KEY (metrics_dashboard_id) REFERENCES public.metrics_dashboards(id) ON DELETE CASCADE; + + +-- +-- PostgreSQL database dump complete +-- + +-- +-- PostgreSQL database dump +-- + +-- Dumped from database version 9.6.24 +-- Dumped by pg_dump version 15.13 (Debian 15.13-0+deb12u1) + +SET statement_timeout = 0; +SET lock_timeout = 0; +SET idle_in_transaction_session_timeout = 0; +SET client_encoding = 'UTF8'; +SET standard_conforming_strings = on; +SELECT pg_catalog.set_config('search_path', '', false); +SET check_function_bodies = false; +SET xmloption = content; +SET client_min_messages = warning; +SET row_security = off; + +-- +-- Data for Name: schema_migrations; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.schema_migrations (version, dirty) FROM stdin; +25 f +\. + + +-- +-- PostgreSQL database dump complete +-- + diff --git a/ee/velocity/docker-compose.yml b/ee/velocity/docker-compose.yml index ded94d72d..f8630efd7 100644 --- a/ee/velocity/docker-compose.yml +++ b/ee/velocity/docker-compose.yml @@ -3,6 +3,7 @@ version: '3.6' services: app: + platform: linux/amd64 build: context: . cache_from: diff --git a/ee/velocity/go.mod b/ee/velocity/go.mod index 4fd30ccfc..b101aaa6d 100644 --- a/ee/velocity/go.mod +++ b/ee/velocity/go.mod @@ -6,7 +6,7 @@ toolchain go1.23.8 require ( github.com/allegro/bigcache/v3 v3.1.0 - github.com/bytedance/sonic v1.12.10 + github.com/bytedance/sonic v1.13.3 github.com/eko/gocache/lib/v4 v4.1.5 github.com/eko/gocache/store/bigcache/v4 v4.2.1 github.com/go-co-op/gocron v1.23.0 @@ -30,7 +30,7 @@ require ( require ( github.com/beorn7/perks v1.0.1 // indirect - github.com/bytedance/sonic/loader v0.2.2 // indirect + github.com/bytedance/sonic/loader v0.2.4 // indirect github.com/cespare/xxhash/v2 v2.2.0 // indirect github.com/cloudwego/base64x v0.1.5 // indirect github.com/davecgh/go-spew v1.1.1 // indirect @@ -41,7 +41,7 @@ require ( github.com/jackc/puddle/v2 v2.2.1 // indirect github.com/jinzhu/inflection v1.0.0 // indirect github.com/jinzhu/now v1.1.5 // indirect - github.com/klauspost/cpuid/v2 v2.0.9 // indirect + github.com/klauspost/cpuid/v2 v2.2.10 // indirect github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.14.0 // indirect @@ -51,12 +51,12 @@ require ( github.com/rabbitmq/amqp091-go v1.9.0 // indirect github.com/robfig/cron/v3 v3.0.1 // indirect github.com/twitchyliquid64/golang-asm v0.15.1 // indirect - golang.org/x/arch v0.0.0-20210923205945-b76863e36670 // indirect + golang.org/x/arch v0.18.0 // indirect golang.org/x/crypto v0.36.0 // indirect golang.org/x/exp v0.0.0-20230315142452-642cacee5cc0 // indirect golang.org/x/net v0.36.0 // indirect golang.org/x/sync v0.12.0 // indirect - golang.org/x/sys v0.31.0 // indirect + golang.org/x/sys v0.33.0 // indirect golang.org/x/text v0.23.0 // indirect gopkg.in/alexcesaro/statsd.v2 v2.0.0 // indirect ) diff --git a/ee/velocity/go.sum b/ee/velocity/go.sum index ae569063f..cd64034ce 100644 --- a/ee/velocity/go.sum +++ b/ee/velocity/go.sum @@ -47,9 +47,13 @@ github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= github.com/bytedance/sonic v1.12.10 h1:uVCQr6oS5669E9ZVW0HyksTLfNS7Q/9hV6IVS4nEMsI= github.com/bytedance/sonic v1.12.10/go.mod h1:uVvFidNmlt9+wa31S1urfwwthTWteBgG0hWuoKAXTx8= +github.com/bytedance/sonic v1.13.3 h1:MS8gmaH16Gtirygw7jV91pDCN33NyMrPbN7qiYhEsF0= +github.com/bytedance/sonic v1.13.3/go.mod h1:o68xyaF9u2gvVBuGHPlUVCy+ZfmNNO5ETf1+KgkJhz4= github.com/bytedance/sonic/loader v0.1.1/go.mod h1:ncP89zfokxS5LZrJxl5z0UJcsk4M4yY2JpfqGeCtNLU= github.com/bytedance/sonic/loader v0.2.2 h1:jxAJuN9fOot/cyz5Q6dUuMJF5OqQ6+5GfA8FjjQ0R4o= github.com/bytedance/sonic/loader v0.2.2/go.mod h1:N8A3vUdtUebEY2/VQC0MyhYeKUFosQU6FxH2JmUe6VI= +github.com/bytedance/sonic/loader v0.2.4 h1:ZWCw4stuXUsn1/+zQDqeE7JKP+QO47tz7QCNan80NzY= +github.com/bytedance/sonic/loader v0.2.4/go.mod h1:N8A3vUdtUebEY2/VQC0MyhYeKUFosQU6FxH2JmUe6VI= github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= github.com/cespare/xxhash/v2 v2.1.1/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/cespare/xxhash/v2 v2.1.2/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= @@ -182,6 +186,8 @@ github.com/kisielk/errcheck v1.5.0/go.mod h1:pFxgyoBC7bSaBwPgfKdkLd5X25qrDl4LWUI github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck= github.com/klauspost/cpuid/v2 v2.0.9 h1:lgaqFMSdTdQYdZ04uHyN2d/eKdOMyi2YLSvlQIBFYa4= github.com/klauspost/cpuid/v2 v2.0.9/go.mod h1:FInQzS24/EEf25PyTYn52gqo7WaD8xa0213Md/qVLRg= +github.com/klauspost/cpuid/v2 v2.2.10 h1:tBs3QSyvjDyFTq3uoc/9xFpCuOsJQFNPiAhYdw2skhE= +github.com/klauspost/cpuid/v2 v2.2.10/go.mod h1:hqwkgyIinND0mEev00jJYCxPNVRVXFQeu1XKlok6oO0= github.com/knz/go-libedit v1.10.1/go.mod h1:MZTVkCWyz0oBc7JOWP3wNAzd002ZbM/5hgShxwh4x8M= github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= github.com/konsorten/go-windows-terminal-sequences v1.0.3/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= @@ -289,6 +295,8 @@ go.uber.org/multierr v1.6.0/go.mod h1:cdWPpRnG4AhwMwsgIHip0KRBQjJy5kYEpYjJxpXp9i go.uber.org/zap v1.18.1/go.mod h1:xg/QME4nWcxGxrpdeYfq7UvYrLh66cuVKdrbD1XF/NI= golang.org/x/arch v0.0.0-20210923205945-b76863e36670 h1:18EFjUmQOcUvxNYSkA6jO9VAiXCnxFY6NyDX0bHDmkU= golang.org/x/arch v0.0.0-20210923205945-b76863e36670/go.mod h1:5om86z9Hs0C8fWVUuoMHwpExlXzs5Tkyp9hOrfG7pp8= +golang.org/x/arch v0.18.0 h1:WN9poc33zL4AzGxqf8VtpKUnGvMi8O9lhNyBMF/85qc= +golang.org/x/arch v0.18.0/go.mod h1:bdwinDaKcfZUGpH09BB7ZmOfhalA8lQdzl62l8gGWsk= golang.org/x/crypto v0.0.0-20180904163835-0709b304e793/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= golang.org/x/crypto v0.0.0-20190510104115-cbcb75029529/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= @@ -441,6 +449,8 @@ golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f/go.mod h1:oPkhp1MJrh7nUepCBc golang.org/x/sys v0.5.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.31.0 h1:ioabZlmFYtWhL+TRYpcnNlLwhyxaM9kWTDEmfnprqik= golang.org/x/sys v0.31.0/go.mod h1:BJP2sWEmIv4KK5OTEluFJCKSidICx8ciO85XgH3Ak8k= +golang.org/x/sys v0.33.0 h1:q3i8TbbEz+JRD9ywIRlyRAQbM0qF7hu24q3teo2hbuw= +golang.org/x/sys v0.33.0/go.mod h1:BJP2sWEmIv4KK5OTEluFJCKSidICx8ciO85XgH3Ak8k= golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= golang.org/x/term v0.5.0/go.mod h1:jMB1sMXY+tzblOD4FWmEbocvup2/aLOaQEp7JmGp78k= diff --git a/ee/velocity/pkg/protos/artifacthub/artifacthub.pb.go b/ee/velocity/pkg/protos/artifacthub/artifacthub.pb.go index 7aa2b4f0d..74df85dbd 100644 --- a/ee/velocity/pkg/protos/artifacthub/artifacthub.pb.go +++ b/ee/velocity/pkg/protos/artifacthub/artifacthub.pb.go @@ -330,7 +330,7 @@ func (x *UpdateRetentionPolicyResponse) GetRetentionPolicy() *RetentionPolicy { } // Request for Create -// Contains idempotency token, example: project-01234567-0123-4012-8012-012345678901 +// Contains idempotency token, example: project-877b07c5-fde0-4baf-9608-58e28da587f9 type CreateRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -647,6 +647,10 @@ type ListPathRequest struct { ArtifactId string `protobuf:"bytes,1,opt,name=artifact_id,json=artifactId,proto3" json:"artifact_id,omitempty"` Path string `protobuf:"bytes,2,opt,name=path,proto3" json:"path,omitempty"` + // By default, files under a subdirectory are not returned, + // and only the subdirectory itself is returned in an item with is_directory=true. + // If you want to list the files under subdirectories too, use unwrap_directories=true. + UnwrapDirectories bool `protobuf:"varint,3,opt,name=unwrap_directories,json=unwrapDirectories,proto3" json:"unwrap_directories,omitempty"` } func (x *ListPathRequest) Reset() { @@ -695,6 +699,13 @@ func (x *ListPathRequest) GetPath() string { return "" } +func (x *ListPathRequest) GetUnwrapDirectories() bool { + if x != nil { + return x.UnwrapDirectories + } + return false +} + // Response for List a Bucket directory // Contains the directory contents and response status type ListPathResponse struct { @@ -1532,6 +1543,140 @@ func (x *Artifact) GetArtifactToken() string { return "" } +// Request for GenerateToken +// - artifact_id = [required] UUID of the artifact +// - job_id = [required] UUID of the job +// - project_id = [required] UUID of the project +// - workflow_id = [optional] UUID of the workflow. If not specified, token will not be able to manage artifacts for any workflows +// - duration = [optional] How long should the newly generated token last. If not specified, 24h is used +type GenerateTokenRequest struct { + state protoimpl.MessageState + sizeCache protoimpl.SizeCache + unknownFields protoimpl.UnknownFields + + ArtifactId string `protobuf:"bytes,1,opt,name=artifact_id,json=artifactId,proto3" json:"artifact_id,omitempty"` + JobId string `protobuf:"bytes,2,opt,name=job_id,json=jobId,proto3" json:"job_id,omitempty"` + WorkflowId string `protobuf:"bytes,3,opt,name=workflow_id,json=workflowId,proto3" json:"workflow_id,omitempty"` + ProjectId string `protobuf:"bytes,4,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"` + Duration uint32 `protobuf:"varint,5,opt,name=duration,proto3" json:"duration,omitempty"` +} + +func (x *GenerateTokenRequest) Reset() { + *x = GenerateTokenRequest{} + if protoimpl.UnsafeEnabled { + mi := &file_artifacthub_proto_msgTypes[29] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) + } +} + +func (x *GenerateTokenRequest) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*GenerateTokenRequest) ProtoMessage() {} + +func (x *GenerateTokenRequest) ProtoReflect() protoreflect.Message { + mi := &file_artifacthub_proto_msgTypes[29] + if protoimpl.UnsafeEnabled && x != nil { + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + if ms.LoadMessageInfo() == nil { + ms.StoreMessageInfo(mi) + } + return ms + } + return mi.MessageOf(x) +} + +// Deprecated: Use GenerateTokenRequest.ProtoReflect.Descriptor instead. +func (*GenerateTokenRequest) Descriptor() ([]byte, []int) { + return file_artifacthub_proto_rawDescGZIP(), []int{29} +} + +func (x *GenerateTokenRequest) GetArtifactId() string { + if x != nil { + return x.ArtifactId + } + return "" +} + +func (x *GenerateTokenRequest) GetJobId() string { + if x != nil { + return x.JobId + } + return "" +} + +func (x *GenerateTokenRequest) GetWorkflowId() string { + if x != nil { + return x.WorkflowId + } + return "" +} + +func (x *GenerateTokenRequest) GetProjectId() string { + if x != nil { + return x.ProjectId + } + return "" +} + +func (x *GenerateTokenRequest) GetDuration() uint32 { + if x != nil { + return x.Duration + } + return 0 +} + +// Response for GenerateToken +// - token = [required] JWT token generated +type GenerateTokenResponse struct { + state protoimpl.MessageState + sizeCache protoimpl.SizeCache + unknownFields protoimpl.UnknownFields + + Token string `protobuf:"bytes,1,opt,name=token,proto3" json:"token,omitempty"` +} + +func (x *GenerateTokenResponse) Reset() { + *x = GenerateTokenResponse{} + if protoimpl.UnsafeEnabled { + mi := &file_artifacthub_proto_msgTypes[30] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) + } +} + +func (x *GenerateTokenResponse) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*GenerateTokenResponse) ProtoMessage() {} + +func (x *GenerateTokenResponse) ProtoReflect() protoreflect.Message { + mi := &file_artifacthub_proto_msgTypes[30] + if protoimpl.UnsafeEnabled && x != nil { + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + if ms.LoadMessageInfo() == nil { + ms.StoreMessageInfo(mi) + } + return ms + } + return mi.MessageOf(x) +} + +// Deprecated: Use GenerateTokenResponse.ProtoReflect.Descriptor instead. +func (*GenerateTokenResponse) Descriptor() ([]byte, []int) { + return file_artifacthub_proto_rawDescGZIP(), []int{30} +} + +func (x *GenerateTokenResponse) GetToken() string { + if x != nil { + return x.Token + } + return "" +} + type RetentionPolicy_RetentionPolicyRule struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -1555,7 +1700,7 @@ type RetentionPolicy_RetentionPolicyRule struct { func (x *RetentionPolicy_RetentionPolicyRule) Reset() { *x = RetentionPolicy_RetentionPolicyRule{} if protoimpl.UnsafeEnabled { - mi := &file_artifacthub_proto_msgTypes[29] + mi := &file_artifacthub_proto_msgTypes[31] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1568,7 +1713,7 @@ func (x *RetentionPolicy_RetentionPolicyRule) String() string { func (*RetentionPolicy_RetentionPolicyRule) ProtoMessage() {} func (x *RetentionPolicy_RetentionPolicyRule) ProtoReflect() protoreflect.Message { - mi := &file_artifacthub_proto_msgTypes[29] + mi := &file_artifacthub_proto_msgTypes[31] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1701,181 +1846,205 @@ var file_artifacthub_proto_rawDesc = []byte{ 0x73, 0x74, 0x12, 0x1f, 0x0a, 0x0b, 0x61, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x61, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x49, 0x64, 0x22, 0x11, 0x0a, 0x0f, 0x44, 0x65, 0x73, 0x74, 0x72, 0x6f, 0x79, 0x52, 0x65, - 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x46, 0x0a, 0x0f, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61, + 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x75, 0x0a, 0x0f, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61, 0x74, 0x68, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1f, 0x0a, 0x0b, 0x61, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x61, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x49, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x70, 0x61, - 0x74, 0x68, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x70, 0x61, 0x74, 0x68, 0x22, 0x4b, - 0x0a, 0x10, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61, 0x74, 0x68, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, - 0x73, 0x65, 0x12, 0x37, 0x0a, 0x05, 0x69, 0x74, 0x65, 0x6d, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, - 0x0b, 0x32, 0x21, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, - 0x41, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x4c, 0x69, 0x73, 0x74, - 0x49, 0x74, 0x65, 0x6d, 0x52, 0x05, 0x69, 0x74, 0x65, 0x6d, 0x73, 0x22, 0x48, 0x0a, 0x11, 0x44, - 0x65, 0x6c, 0x65, 0x74, 0x65, 0x50, 0x61, 0x74, 0x68, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, - 0x12, 0x1f, 0x0a, 0x0b, 0x61, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, - 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x61, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x49, - 0x64, 0x12, 0x12, 0x0a, 0x04, 0x70, 0x61, 0x74, 0x68, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, - 0x04, 0x70, 0x61, 0x74, 0x68, 0x22, 0x14, 0x0a, 0x12, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x50, - 0x61, 0x74, 0x68, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x10, 0x0a, 0x0e, 0x43, - 0x6c, 0x65, 0x61, 0x6e, 0x75, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x22, 0x11, 0x0a, - 0x0f, 0x43, 0x6c, 0x65, 0x61, 0x6e, 0x75, 0x70, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, - 0x22, 0x62, 0x0a, 0x13, 0x47, 0x65, 0x74, 0x53, 0x69, 0x67, 0x6e, 0x65, 0x64, 0x55, 0x52, 0x4c, - 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1f, 0x0a, 0x0b, 0x61, 0x72, 0x74, 0x69, 0x66, - 0x61, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x61, 0x72, - 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x49, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x70, 0x61, 0x74, 0x68, - 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x70, 0x61, 0x74, 0x68, 0x12, 0x16, 0x0a, 0x06, - 0x6d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x6d, 0x65, - 0x74, 0x68, 0x6f, 0x64, 0x22, 0x28, 0x0a, 0x14, 0x47, 0x65, 0x74, 0x53, 0x69, 0x67, 0x6e, 0x65, - 0x64, 0x55, 0x52, 0x4c, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x10, 0x0a, 0x03, - 0x75, 0x72, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x75, 0x72, 0x6c, 0x22, 0x26, - 0x0a, 0x12, 0x4c, 0x69, 0x73, 0x74, 0x42, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x73, 0x52, 0x65, 0x71, - 0x75, 0x65, 0x73, 0x74, 0x12, 0x10, 0x0a, 0x03, 0x69, 0x64, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, - 0x09, 0x52, 0x03, 0x69, 0x64, 0x73, 0x22, 0xd1, 0x01, 0x0a, 0x13, 0x4c, 0x69, 0x73, 0x74, 0x42, - 0x75, 0x63, 0x6b, 0x65, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x74, - 0x0a, 0x14, 0x62, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x73, 0x5f, 0x66, - 0x6f, 0x72, 0x5f, 0x69, 0x64, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x43, 0x2e, 0x49, - 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x41, 0x72, 0x74, 0x69, 0x66, - 0x61, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x42, 0x75, 0x63, 0x6b, 0x65, - 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x42, 0x75, 0x63, 0x6b, 0x65, - 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x73, 0x46, 0x6f, 0x72, 0x49, 0x64, 0x73, 0x45, 0x6e, 0x74, 0x72, - 0x79, 0x52, 0x11, 0x62, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x73, 0x46, 0x6f, - 0x72, 0x49, 0x64, 0x73, 0x1a, 0x44, 0x0a, 0x16, 0x42, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x4e, 0x61, - 0x6d, 0x65, 0x73, 0x46, 0x6f, 0x72, 0x49, 0x64, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, - 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, - 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, - 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0xde, 0x01, 0x0a, 0x15, 0x43, - 0x6f, 0x75, 0x6e, 0x74, 0x41, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x73, 0x52, 0x65, 0x71, - 0x75, 0x65, 0x73, 0x74, 0x12, 0x53, 0x0a, 0x08, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, - 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x37, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, + 0x74, 0x68, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x70, 0x61, 0x74, 0x68, 0x12, 0x2d, + 0x0a, 0x12, 0x75, 0x6e, 0x77, 0x72, 0x61, 0x70, 0x5f, 0x64, 0x69, 0x72, 0x65, 0x63, 0x74, 0x6f, + 0x72, 0x69, 0x65, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x11, 0x75, 0x6e, 0x77, 0x72, + 0x61, 0x70, 0x44, 0x69, 0x72, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x69, 0x65, 0x73, 0x22, 0x4b, 0x0a, + 0x10, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61, 0x74, 0x68, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, + 0x65, 0x12, 0x37, 0x0a, 0x05, 0x69, 0x74, 0x65, 0x6d, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, + 0x32, 0x21, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x41, + 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x49, + 0x74, 0x65, 0x6d, 0x52, 0x05, 0x69, 0x74, 0x65, 0x6d, 0x73, 0x22, 0x48, 0x0a, 0x11, 0x44, 0x65, + 0x6c, 0x65, 0x74, 0x65, 0x50, 0x61, 0x74, 0x68, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, + 0x1f, 0x0a, 0x0b, 0x61, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01, + 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x61, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x49, 0x64, + 0x12, 0x12, 0x0a, 0x04, 0x70, 0x61, 0x74, 0x68, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, + 0x70, 0x61, 0x74, 0x68, 0x22, 0x14, 0x0a, 0x12, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x50, 0x61, + 0x74, 0x68, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x10, 0x0a, 0x0e, 0x43, 0x6c, + 0x65, 0x61, 0x6e, 0x75, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x22, 0x11, 0x0a, 0x0f, + 0x43, 0x6c, 0x65, 0x61, 0x6e, 0x75, 0x70, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, + 0x62, 0x0a, 0x13, 0x47, 0x65, 0x74, 0x53, 0x69, 0x67, 0x6e, 0x65, 0x64, 0x55, 0x52, 0x4c, 0x52, + 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1f, 0x0a, 0x0b, 0x61, 0x72, 0x74, 0x69, 0x66, 0x61, + 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x61, 0x72, 0x74, + 0x69, 0x66, 0x61, 0x63, 0x74, 0x49, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x70, 0x61, 0x74, 0x68, 0x18, + 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x70, 0x61, 0x74, 0x68, 0x12, 0x16, 0x0a, 0x06, 0x6d, + 0x65, 0x74, 0x68, 0x6f, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x6d, 0x65, 0x74, + 0x68, 0x6f, 0x64, 0x22, 0x28, 0x0a, 0x14, 0x47, 0x65, 0x74, 0x53, 0x69, 0x67, 0x6e, 0x65, 0x64, + 0x55, 0x52, 0x4c, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x75, + 0x72, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x75, 0x72, 0x6c, 0x22, 0x26, 0x0a, + 0x12, 0x4c, 0x69, 0x73, 0x74, 0x42, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x73, 0x52, 0x65, 0x71, 0x75, + 0x65, 0x73, 0x74, 0x12, 0x10, 0x0a, 0x03, 0x69, 0x64, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, + 0x52, 0x03, 0x69, 0x64, 0x73, 0x22, 0xd1, 0x01, 0x0a, 0x13, 0x4c, 0x69, 0x73, 0x74, 0x42, 0x75, + 0x63, 0x6b, 0x65, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x74, 0x0a, + 0x14, 0x62, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x73, 0x5f, 0x66, 0x6f, + 0x72, 0x5f, 0x69, 0x64, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x43, 0x2e, 0x49, 0x6e, + 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x41, 0x72, 0x74, 0x69, 0x66, 0x61, + 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x42, 0x75, 0x63, 0x6b, 0x65, 0x74, + 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x42, 0x75, 0x63, 0x6b, 0x65, 0x74, + 0x4e, 0x61, 0x6d, 0x65, 0x73, 0x46, 0x6f, 0x72, 0x49, 0x64, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, + 0x52, 0x11, 0x62, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x73, 0x46, 0x6f, 0x72, + 0x49, 0x64, 0x73, 0x1a, 0x44, 0x0a, 0x16, 0x42, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x4e, 0x61, 0x6d, + 0x65, 0x73, 0x46, 0x6f, 0x72, 0x49, 0x64, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, + 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, + 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, + 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0xde, 0x01, 0x0a, 0x15, 0x43, 0x6f, + 0x75, 0x6e, 0x74, 0x41, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x73, 0x52, 0x65, 0x71, 0x75, + 0x65, 0x73, 0x74, 0x12, 0x53, 0x0a, 0x08, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x18, + 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x37, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, + 0x41, 0x70, 0x69, 0x2e, 0x41, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, + 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x41, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x73, 0x52, 0x65, + 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x52, 0x08, + 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x12, 0x1f, 0x0a, 0x0b, 0x63, 0x61, 0x74, 0x65, + 0x67, 0x6f, 0x72, 0x79, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, + 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x49, 0x64, 0x12, 0x1f, 0x0a, 0x0b, 0x61, 0x72, 0x74, + 0x69, 0x66, 0x61, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, + 0x61, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x49, 0x64, 0x22, 0x2e, 0x0a, 0x08, 0x43, 0x61, + 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x12, 0x0b, 0x0a, 0x07, 0x50, 0x52, 0x4f, 0x4a, 0x45, 0x43, + 0x54, 0x10, 0x00, 0x12, 0x0c, 0x0a, 0x08, 0x57, 0x4f, 0x52, 0x4b, 0x46, 0x4c, 0x4f, 0x57, 0x10, + 0x01, 0x12, 0x07, 0x0a, 0x03, 0x4a, 0x4f, 0x42, 0x10, 0x02, 0x22, 0x3f, 0x0a, 0x16, 0x43, 0x6f, + 0x75, 0x6e, 0x74, 0x41, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, + 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x25, 0x0a, 0x0e, 0x61, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, + 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x05, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0d, 0x61, 0x72, + 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x22, 0x15, 0x0a, 0x13, 0x43, + 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, + 0x73, 0x74, 0x22, 0x39, 0x0a, 0x14, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x75, 0x63, 0x6b, 0x65, + 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x62, 0x75, + 0x63, 0x6b, 0x65, 0x74, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, + 0x52, 0x0b, 0x62, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x22, 0x34, 0x0a, + 0x11, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x43, 0x4f, 0x52, 0x53, 0x52, 0x65, 0x71, 0x75, 0x65, + 0x73, 0x74, 0x12, 0x1f, 0x0a, 0x0b, 0x62, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x5f, 0x6e, 0x61, 0x6d, + 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x62, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x4e, + 0x61, 0x6d, 0x65, 0x22, 0x3e, 0x0a, 0x12, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x43, 0x4f, 0x52, + 0x53, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x28, 0x0a, 0x10, 0x6e, 0x65, 0x78, + 0x74, 0x5f, 0x62, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, + 0x01, 0x28, 0x09, 0x52, 0x0e, 0x6e, 0x65, 0x78, 0x74, 0x42, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x4e, + 0x61, 0x6d, 0x65, 0x22, 0x41, 0x0a, 0x08, 0x4c, 0x69, 0x73, 0x74, 0x49, 0x74, 0x65, 0x6d, 0x12, + 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, + 0x61, 0x6d, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x69, 0x73, 0x5f, 0x64, 0x69, 0x72, 0x65, 0x63, 0x74, + 0x6f, 0x72, 0x79, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0b, 0x69, 0x73, 0x44, 0x69, 0x72, + 0x65, 0x63, 0x74, 0x6f, 0x72, 0x79, 0x22, 0x62, 0x0a, 0x08, 0x41, 0x72, 0x74, 0x69, 0x66, 0x61, + 0x63, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, + 0x69, 0x64, 0x12, 0x1f, 0x0a, 0x0b, 0x62, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x5f, 0x6e, 0x61, 0x6d, + 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x62, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x4e, + 0x61, 0x6d, 0x65, 0x12, 0x25, 0x0a, 0x0e, 0x61, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x5f, + 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x61, 0x72, 0x74, + 0x69, 0x66, 0x61, 0x63, 0x74, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x22, 0xaa, 0x01, 0x0a, 0x14, 0x47, + 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x52, 0x65, 0x71, 0x75, + 0x65, 0x73, 0x74, 0x12, 0x1f, 0x0a, 0x0b, 0x61, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x5f, + 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x61, 0x72, 0x74, 0x69, 0x66, 0x61, + 0x63, 0x74, 0x49, 0x64, 0x12, 0x15, 0x0a, 0x06, 0x6a, 0x6f, 0x62, 0x5f, 0x69, 0x64, 0x18, 0x02, + 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x6a, 0x6f, 0x62, 0x49, 0x64, 0x12, 0x1f, 0x0a, 0x0b, 0x77, + 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, + 0x52, 0x0a, 0x77, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x49, 0x64, 0x12, 0x1d, 0x0a, 0x0a, + 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, + 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x64, + 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x64, + 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x2d, 0x0a, 0x15, 0x47, 0x65, 0x6e, 0x65, 0x72, + 0x61, 0x74, 0x65, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, + 0x12, 0x14, 0x0a, 0x05, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, + 0x05, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x32, 0xd2, 0x0b, 0x0a, 0x0f, 0x41, 0x72, 0x74, 0x69, 0x66, + 0x61, 0x63, 0x74, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0x68, 0x0a, 0x0b, 0x48, 0x65, + 0x61, 0x6c, 0x74, 0x68, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x12, 0x2b, 0x2e, 0x49, 0x6e, 0x74, 0x65, + 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x41, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, + 0x68, 0x75, 0x62, 0x2e, 0x48, 0x65, 0x61, 0x6c, 0x74, 0x68, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x52, + 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2c, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x41, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x68, 0x75, 0x62, - 0x2e, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x41, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x73, 0x52, - 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x52, - 0x08, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x12, 0x1f, 0x0a, 0x0b, 0x63, 0x61, 0x74, - 0x65, 0x67, 0x6f, 0x72, 0x79, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, - 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x49, 0x64, 0x12, 0x1f, 0x0a, 0x0b, 0x61, 0x72, - 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, - 0x0a, 0x61, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x49, 0x64, 0x22, 0x2e, 0x0a, 0x08, 0x43, - 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x12, 0x0b, 0x0a, 0x07, 0x50, 0x52, 0x4f, 0x4a, 0x45, - 0x43, 0x54, 0x10, 0x00, 0x12, 0x0c, 0x0a, 0x08, 0x57, 0x4f, 0x52, 0x4b, 0x46, 0x4c, 0x4f, 0x57, - 0x10, 0x01, 0x12, 0x07, 0x0a, 0x03, 0x4a, 0x4f, 0x42, 0x10, 0x02, 0x22, 0x3f, 0x0a, 0x16, 0x43, - 0x6f, 0x75, 0x6e, 0x74, 0x41, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x73, 0x52, 0x65, 0x73, - 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x25, 0x0a, 0x0e, 0x61, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, - 0x74, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x05, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0d, 0x61, - 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x22, 0x15, 0x0a, 0x13, - 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x73, 0x52, 0x65, 0x71, 0x75, - 0x65, 0x73, 0x74, 0x22, 0x39, 0x0a, 0x14, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x75, 0x63, 0x6b, - 0x65, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x62, - 0x75, 0x63, 0x6b, 0x65, 0x74, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, - 0x05, 0x52, 0x0b, 0x62, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x22, 0x34, - 0x0a, 0x11, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x43, 0x4f, 0x52, 0x53, 0x52, 0x65, 0x71, 0x75, - 0x65, 0x73, 0x74, 0x12, 0x1f, 0x0a, 0x0b, 0x62, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x5f, 0x6e, 0x61, - 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x62, 0x75, 0x63, 0x6b, 0x65, 0x74, - 0x4e, 0x61, 0x6d, 0x65, 0x22, 0x3e, 0x0a, 0x12, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x43, 0x4f, - 0x52, 0x53, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x28, 0x0a, 0x10, 0x6e, 0x65, - 0x78, 0x74, 0x5f, 0x62, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, - 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x6e, 0x65, 0x78, 0x74, 0x42, 0x75, 0x63, 0x6b, 0x65, 0x74, - 0x4e, 0x61, 0x6d, 0x65, 0x22, 0x41, 0x0a, 0x08, 0x4c, 0x69, 0x73, 0x74, 0x49, 0x74, 0x65, 0x6d, - 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, - 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x69, 0x73, 0x5f, 0x64, 0x69, 0x72, 0x65, 0x63, - 0x74, 0x6f, 0x72, 0x79, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0b, 0x69, 0x73, 0x44, 0x69, - 0x72, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x79, 0x22, 0x62, 0x0a, 0x08, 0x41, 0x72, 0x74, 0x69, 0x66, - 0x61, 0x63, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, - 0x02, 0x69, 0x64, 0x12, 0x1f, 0x0a, 0x0b, 0x62, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x5f, 0x6e, 0x61, - 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x62, 0x75, 0x63, 0x6b, 0x65, 0x74, - 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x25, 0x0a, 0x0e, 0x61, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, - 0x5f, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x61, 0x72, - 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x32, 0xe2, 0x0a, 0x0a, 0x0f, - 0x41, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, - 0x68, 0x0a, 0x0b, 0x48, 0x65, 0x61, 0x6c, 0x74, 0x68, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x12, 0x2b, + 0x2e, 0x48, 0x65, 0x61, 0x6c, 0x74, 0x68, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x52, 0x65, 0x73, 0x70, + 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x59, 0x0a, 0x06, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x26, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x41, 0x72, 0x74, - 0x69, 0x66, 0x61, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x48, 0x65, 0x61, 0x6c, 0x74, 0x68, 0x43, - 0x68, 0x65, 0x63, 0x6b, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2c, 0x2e, 0x49, 0x6e, + 0x69, 0x66, 0x61, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x52, + 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x27, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, + 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x41, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x68, 0x75, 0x62, + 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, + 0x5f, 0x0a, 0x08, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x12, 0x28, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x41, 0x72, 0x74, 0x69, 0x66, 0x61, - 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x48, 0x65, 0x61, 0x6c, 0x74, 0x68, 0x43, 0x68, 0x65, 0x63, - 0x6b, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x59, 0x0a, 0x06, 0x43, 0x72, 0x65, - 0x61, 0x74, 0x65, 0x12, 0x26, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, - 0x69, 0x2e, 0x41, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x43, 0x72, - 0x65, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x27, 0x2e, 0x49, 0x6e, + 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x52, 0x65, + 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x29, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, + 0x41, 0x70, 0x69, 0x2e, 0x41, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, + 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, + 0x12, 0x5c, 0x0a, 0x07, 0x44, 0x65, 0x73, 0x74, 0x72, 0x6f, 0x79, 0x12, 0x27, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x41, 0x72, 0x74, 0x69, 0x66, 0x61, - 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, - 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x5f, 0x0a, 0x08, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, - 0x12, 0x28, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x41, - 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x44, 0x65, 0x73, 0x63, 0x72, - 0x69, 0x62, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x29, 0x2e, 0x49, 0x6e, 0x74, + 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x44, 0x65, 0x73, 0x74, 0x72, 0x6f, 0x79, 0x52, 0x65, 0x71, + 0x75, 0x65, 0x73, 0x74, 0x1a, 0x28, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, + 0x70, 0x69, 0x2e, 0x41, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x44, + 0x65, 0x73, 0x74, 0x72, 0x6f, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x5f, + 0x0a, 0x08, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61, 0x74, 0x68, 0x12, 0x28, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x41, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, - 0x74, 0x68, 0x75, 0x62, 0x2e, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x52, 0x65, 0x73, - 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x5c, 0x0a, 0x07, 0x44, 0x65, 0x73, 0x74, 0x72, 0x6f, 0x79, - 0x12, 0x27, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x41, - 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x44, 0x65, 0x73, 0x74, 0x72, - 0x6f, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x28, 0x2e, 0x49, 0x6e, 0x74, 0x65, + 0x74, 0x68, 0x75, 0x62, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61, 0x74, 0x68, 0x52, 0x65, 0x71, + 0x75, 0x65, 0x73, 0x74, 0x1a, 0x29, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, + 0x70, 0x69, 0x2e, 0x41, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x4c, + 0x69, 0x73, 0x74, 0x50, 0x61, 0x74, 0x68, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, + 0x65, 0x0a, 0x0a, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x50, 0x61, 0x74, 0x68, 0x12, 0x2a, 0x2e, + 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x41, 0x72, 0x74, 0x69, + 0x66, 0x61, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x50, 0x61, + 0x74, 0x68, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2b, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x41, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, - 0x68, 0x75, 0x62, 0x2e, 0x44, 0x65, 0x73, 0x74, 0x72, 0x6f, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, - 0x6e, 0x73, 0x65, 0x12, 0x5f, 0x0a, 0x08, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61, 0x74, 0x68, 0x12, - 0x28, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x41, 0x72, - 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61, - 0x74, 0x68, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x29, 0x2e, 0x49, 0x6e, 0x74, 0x65, + 0x68, 0x75, 0x62, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x50, 0x61, 0x74, 0x68, 0x52, 0x65, + 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x86, 0x01, 0x0a, 0x15, 0x55, 0x70, 0x64, 0x61, 0x74, + 0x65, 0x52, 0x65, 0x74, 0x65, 0x6e, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, + 0x12, 0x35, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x41, + 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, + 0x65, 0x52, 0x65, 0x74, 0x65, 0x6e, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, + 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x36, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, + 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x41, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x68, 0x75, + 0x62, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x52, 0x65, 0x74, 0x65, 0x6e, 0x74, 0x69, 0x6f, + 0x6e, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, + 0x6e, 0x0a, 0x0d, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x54, 0x6f, 0x6b, 0x65, 0x6e, + 0x12, 0x2d, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x41, + 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x47, 0x65, 0x6e, 0x65, 0x72, + 0x61, 0x74, 0x65, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, + 0x2e, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x41, 0x72, + 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, + 0x74, 0x65, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, + 0x5c, 0x0a, 0x07, 0x43, 0x6c, 0x65, 0x61, 0x6e, 0x75, 0x70, 0x12, 0x27, 0x2e, 0x49, 0x6e, 0x74, + 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x41, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, + 0x74, 0x68, 0x75, 0x62, 0x2e, 0x43, 0x6c, 0x65, 0x61, 0x6e, 0x75, 0x70, 0x52, 0x65, 0x71, 0x75, + 0x65, 0x73, 0x74, 0x1a, 0x28, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, + 0x69, 0x2e, 0x41, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x43, 0x6c, + 0x65, 0x61, 0x6e, 0x75, 0x70, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x6b, 0x0a, + 0x0c, 0x47, 0x65, 0x74, 0x53, 0x69, 0x67, 0x6e, 0x65, 0x64, 0x55, 0x52, 0x4c, 0x12, 0x2c, 0x2e, + 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x41, 0x72, 0x74, 0x69, + 0x66, 0x61, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x69, 0x67, 0x6e, 0x65, + 0x64, 0x55, 0x52, 0x4c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2d, 0x2e, 0x49, 0x6e, + 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x41, 0x72, 0x74, 0x69, 0x66, 0x61, + 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x69, 0x67, 0x6e, 0x65, 0x64, 0x55, + 0x52, 0x4c, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x68, 0x0a, 0x0b, 0x4c, 0x69, + 0x73, 0x74, 0x42, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x73, 0x12, 0x2b, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x41, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, - 0x68, 0x75, 0x62, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61, 0x74, 0x68, 0x52, 0x65, 0x73, 0x70, - 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x65, 0x0a, 0x0a, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x50, 0x61, - 0x74, 0x68, 0x12, 0x2a, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, - 0x2e, 0x41, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x44, 0x65, 0x6c, - 0x65, 0x74, 0x65, 0x50, 0x61, 0x74, 0x68, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2b, - 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x41, 0x72, 0x74, - 0x69, 0x66, 0x61, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x50, - 0x61, 0x74, 0x68, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x86, 0x01, 0x0a, 0x15, - 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x52, 0x65, 0x74, 0x65, 0x6e, 0x74, 0x69, 0x6f, 0x6e, 0x50, - 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x12, 0x35, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, + 0x68, 0x75, 0x62, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x42, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x73, 0x52, + 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2c, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, + 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x41, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x68, 0x75, 0x62, + 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x42, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, + 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x71, 0x0a, 0x0e, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x41, 0x72, 0x74, + 0x69, 0x66, 0x61, 0x63, 0x74, 0x73, 0x12, 0x2e, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, + 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x41, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x68, 0x75, 0x62, + 0x2e, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x41, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x73, 0x52, + 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2f, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, + 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x41, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x68, 0x75, 0x62, + 0x2e, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x41, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x73, 0x52, + 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x6b, 0x0a, 0x0c, 0x43, 0x6f, 0x75, 0x6e, 0x74, + 0x42, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x73, 0x12, 0x2c, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, + 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x41, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x68, 0x75, + 0x62, 0x2e, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x73, 0x52, 0x65, + 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2d, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x41, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, - 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x52, 0x65, 0x74, 0x65, 0x6e, 0x74, 0x69, 0x6f, 0x6e, 0x50, - 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x36, 0x2e, 0x49, - 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x41, 0x72, 0x74, 0x69, 0x66, - 0x61, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x52, 0x65, 0x74, - 0x65, 0x6e, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x52, 0x65, 0x73, 0x70, - 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x5c, 0x0a, 0x07, 0x43, 0x6c, 0x65, 0x61, 0x6e, 0x75, 0x70, 0x12, - 0x27, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x41, 0x72, - 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x43, 0x6c, 0x65, 0x61, 0x6e, 0x75, - 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x28, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, - 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x41, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x68, - 0x75, 0x62, 0x2e, 0x43, 0x6c, 0x65, 0x61, 0x6e, 0x75, 0x70, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, - 0x73, 0x65, 0x12, 0x6b, 0x0a, 0x0c, 0x47, 0x65, 0x74, 0x53, 0x69, 0x67, 0x6e, 0x65, 0x64, 0x55, - 0x52, 0x4c, 0x12, 0x2c, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, - 0x2e, 0x41, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x47, 0x65, 0x74, - 0x53, 0x69, 0x67, 0x6e, 0x65, 0x64, 0x55, 0x52, 0x4c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, - 0x1a, 0x2d, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x41, - 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x69, - 0x67, 0x6e, 0x65, 0x64, 0x55, 0x52, 0x4c, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, - 0x68, 0x0a, 0x0b, 0x4c, 0x69, 0x73, 0x74, 0x42, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x73, 0x12, 0x2b, + 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, + 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x65, 0x0a, 0x0a, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x43, 0x4f, + 0x52, 0x53, 0x12, 0x2a, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, + 0x2e, 0x41, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x55, 0x70, 0x64, + 0x61, 0x74, 0x65, 0x43, 0x4f, 0x52, 0x53, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2b, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x41, 0x72, 0x74, - 0x69, 0x66, 0x61, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x42, 0x75, 0x63, - 0x6b, 0x65, 0x74, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2c, 0x2e, 0x49, 0x6e, - 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x41, 0x72, 0x74, 0x69, 0x66, 0x61, - 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x42, 0x75, 0x63, 0x6b, 0x65, 0x74, - 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x71, 0x0a, 0x0e, 0x43, 0x6f, 0x75, - 0x6e, 0x74, 0x41, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x73, 0x12, 0x2e, 0x2e, 0x49, 0x6e, - 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x41, 0x72, 0x74, 0x69, 0x66, 0x61, - 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x41, 0x72, 0x74, 0x69, 0x66, - 0x61, 0x63, 0x74, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2f, 0x2e, 0x49, 0x6e, - 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x41, 0x72, 0x74, 0x69, 0x66, 0x61, - 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x41, 0x72, 0x74, 0x69, 0x66, - 0x61, 0x63, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x6b, 0x0a, 0x0c, - 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x73, 0x12, 0x2c, 0x2e, 0x49, - 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x41, 0x72, 0x74, 0x69, 0x66, - 0x61, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x75, 0x63, 0x6b, - 0x65, 0x74, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2d, 0x2e, 0x49, 0x6e, 0x74, - 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x41, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, - 0x74, 0x68, 0x75, 0x62, 0x2e, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x75, 0x63, 0x6b, 0x65, 0x74, - 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x65, 0x0a, 0x0a, 0x55, 0x70, 0x64, - 0x61, 0x74, 0x65, 0x43, 0x4f, 0x52, 0x53, 0x12, 0x2a, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, - 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x41, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x68, 0x75, - 0x62, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x43, 0x4f, 0x52, 0x53, 0x52, 0x65, 0x71, 0x75, - 0x65, 0x73, 0x74, 0x1a, 0x2b, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, - 0x69, 0x2e, 0x41, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x55, 0x70, - 0x64, 0x61, 0x74, 0x65, 0x43, 0x4f, 0x52, 0x53, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, - 0x42, 0x39, 0x5a, 0x37, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x72, - 0x65, 0x6e, 0x64, 0x65, 0x72, 0x65, 0x64, 0x74, 0x65, 0x78, 0x74, 0x2f, 0x76, 0x65, 0x6c, 0x6f, - 0x63, 0x69, 0x74, 0x79, 0x2f, 0x70, 0x6b, 0x67, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x73, 0x2f, - 0x61, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x68, 0x75, 0x62, 0x62, 0x06, 0x70, 0x72, 0x6f, - 0x74, 0x6f, 0x33, + 0x69, 0x66, 0x61, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x43, + 0x4f, 0x52, 0x53, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x42, 0x42, 0x5a, 0x40, 0x67, + 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x73, 0x65, 0x6d, 0x61, 0x70, 0x68, + 0x6f, 0x72, 0x65, 0x69, 0x6f, 0x2f, 0x73, 0x65, 0x6d, 0x61, 0x70, 0x68, 0x6f, 0x72, 0x65, 0x2f, + 0x76, 0x65, 0x6c, 0x6f, 0x63, 0x69, 0x74, 0x79, 0x2f, 0x70, 0x6b, 0x67, 0x2f, 0x70, 0x72, 0x6f, + 0x74, 0x6f, 0x73, 0x2f, 0x61, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x68, 0x75, 0x62, 0x62, + 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( @@ -1891,7 +2060,7 @@ func file_artifacthub_proto_rawDescGZIP() []byte { } var file_artifacthub_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_artifacthub_proto_msgTypes = make([]protoimpl.MessageInfo, 31) +var file_artifacthub_proto_msgTypes = make([]protoimpl.MessageInfo, 33) var file_artifacthub_proto_goTypes = []interface{}{ (CountArtifactsRequest_Category)(0), // 0: InternalApi.Artifacthub.CountArtifactsRequest.Category (*HealthCheckRequest)(nil), // 1: InternalApi.Artifacthub.HealthCheckRequest @@ -1923,16 +2092,18 @@ var file_artifacthub_proto_goTypes = []interface{}{ (*UpdateCORSResponse)(nil), // 27: InternalApi.Artifacthub.UpdateCORSResponse (*ListItem)(nil), // 28: InternalApi.Artifacthub.ListItem (*Artifact)(nil), // 29: InternalApi.Artifacthub.Artifact - (*RetentionPolicy_RetentionPolicyRule)(nil), // 30: InternalApi.Artifacthub.RetentionPolicy.RetentionPolicyRule - nil, // 31: InternalApi.Artifacthub.ListBucketsResponse.BucketNamesForIdsEntry - (*timestamp.Timestamp)(nil), // 32: google.protobuf.Timestamp + (*GenerateTokenRequest)(nil), // 30: InternalApi.Artifacthub.GenerateTokenRequest + (*GenerateTokenResponse)(nil), // 31: InternalApi.Artifacthub.GenerateTokenResponse + (*RetentionPolicy_RetentionPolicyRule)(nil), // 32: InternalApi.Artifacthub.RetentionPolicy.RetentionPolicyRule + nil, // 33: InternalApi.Artifacthub.ListBucketsResponse.BucketNamesForIdsEntry + (*timestamp.Timestamp)(nil), // 34: google.protobuf.Timestamp } var file_artifacthub_proto_depIdxs = []int32{ - 30, // 0: InternalApi.Artifacthub.RetentionPolicy.project_level_retention_policies:type_name -> InternalApi.Artifacthub.RetentionPolicy.RetentionPolicyRule - 30, // 1: InternalApi.Artifacthub.RetentionPolicy.workflow_level_retention_policies:type_name -> InternalApi.Artifacthub.RetentionPolicy.RetentionPolicyRule - 30, // 2: InternalApi.Artifacthub.RetentionPolicy.job_level_retention_policies:type_name -> InternalApi.Artifacthub.RetentionPolicy.RetentionPolicyRule - 32, // 3: InternalApi.Artifacthub.RetentionPolicy.scheduled_for_cleaning_at:type_name -> google.protobuf.Timestamp - 32, // 4: InternalApi.Artifacthub.RetentionPolicy.last_cleaned_at:type_name -> google.protobuf.Timestamp + 32, // 0: InternalApi.Artifacthub.RetentionPolicy.project_level_retention_policies:type_name -> InternalApi.Artifacthub.RetentionPolicy.RetentionPolicyRule + 32, // 1: InternalApi.Artifacthub.RetentionPolicy.workflow_level_retention_policies:type_name -> InternalApi.Artifacthub.RetentionPolicy.RetentionPolicyRule + 32, // 2: InternalApi.Artifacthub.RetentionPolicy.job_level_retention_policies:type_name -> InternalApi.Artifacthub.RetentionPolicy.RetentionPolicyRule + 34, // 3: InternalApi.Artifacthub.RetentionPolicy.scheduled_for_cleaning_at:type_name -> google.protobuf.Timestamp + 34, // 4: InternalApi.Artifacthub.RetentionPolicy.last_cleaned_at:type_name -> google.protobuf.Timestamp 3, // 5: InternalApi.Artifacthub.UpdateRetentionPolicyRequest.retention_policy:type_name -> InternalApi.Artifacthub.RetentionPolicy 3, // 6: InternalApi.Artifacthub.UpdateRetentionPolicyResponse.retention_policy:type_name -> InternalApi.Artifacthub.RetentionPolicy 3, // 7: InternalApi.Artifacthub.CreateRequest.retention_policy:type_name -> InternalApi.Artifacthub.RetentionPolicy @@ -1940,7 +2111,7 @@ var file_artifacthub_proto_depIdxs = []int32{ 29, // 9: InternalApi.Artifacthub.DescribeResponse.artifact:type_name -> InternalApi.Artifacthub.Artifact 3, // 10: InternalApi.Artifacthub.DescribeResponse.retention_policy:type_name -> InternalApi.Artifacthub.RetentionPolicy 28, // 11: InternalApi.Artifacthub.ListPathResponse.items:type_name -> InternalApi.Artifacthub.ListItem - 31, // 12: InternalApi.Artifacthub.ListBucketsResponse.bucket_names_for_ids:type_name -> InternalApi.Artifacthub.ListBucketsResponse.BucketNamesForIdsEntry + 33, // 12: InternalApi.Artifacthub.ListBucketsResponse.bucket_names_for_ids:type_name -> InternalApi.Artifacthub.ListBucketsResponse.BucketNamesForIdsEntry 0, // 13: InternalApi.Artifacthub.CountArtifactsRequest.category:type_name -> InternalApi.Artifacthub.CountArtifactsRequest.Category 1, // 14: InternalApi.Artifacthub.ArtifactService.HealthCheck:input_type -> InternalApi.Artifacthub.HealthCheckRequest 6, // 15: InternalApi.Artifacthub.ArtifactService.Create:input_type -> InternalApi.Artifacthub.CreateRequest @@ -1949,27 +2120,29 @@ var file_artifacthub_proto_depIdxs = []int32{ 12, // 18: InternalApi.Artifacthub.ArtifactService.ListPath:input_type -> InternalApi.Artifacthub.ListPathRequest 14, // 19: InternalApi.Artifacthub.ArtifactService.DeletePath:input_type -> InternalApi.Artifacthub.DeletePathRequest 4, // 20: InternalApi.Artifacthub.ArtifactService.UpdateRetentionPolicy:input_type -> InternalApi.Artifacthub.UpdateRetentionPolicyRequest - 16, // 21: InternalApi.Artifacthub.ArtifactService.Cleanup:input_type -> InternalApi.Artifacthub.CleanupRequest - 18, // 22: InternalApi.Artifacthub.ArtifactService.GetSignedURL:input_type -> InternalApi.Artifacthub.GetSignedURLRequest - 20, // 23: InternalApi.Artifacthub.ArtifactService.ListBuckets:input_type -> InternalApi.Artifacthub.ListBucketsRequest - 22, // 24: InternalApi.Artifacthub.ArtifactService.CountArtifacts:input_type -> InternalApi.Artifacthub.CountArtifactsRequest - 24, // 25: InternalApi.Artifacthub.ArtifactService.CountBuckets:input_type -> InternalApi.Artifacthub.CountBucketsRequest - 26, // 26: InternalApi.Artifacthub.ArtifactService.UpdateCORS:input_type -> InternalApi.Artifacthub.UpdateCORSRequest - 2, // 27: InternalApi.Artifacthub.ArtifactService.HealthCheck:output_type -> InternalApi.Artifacthub.HealthCheckResponse - 7, // 28: InternalApi.Artifacthub.ArtifactService.Create:output_type -> InternalApi.Artifacthub.CreateResponse - 9, // 29: InternalApi.Artifacthub.ArtifactService.Describe:output_type -> InternalApi.Artifacthub.DescribeResponse - 11, // 30: InternalApi.Artifacthub.ArtifactService.Destroy:output_type -> InternalApi.Artifacthub.DestroyResponse - 13, // 31: InternalApi.Artifacthub.ArtifactService.ListPath:output_type -> InternalApi.Artifacthub.ListPathResponse - 15, // 32: InternalApi.Artifacthub.ArtifactService.DeletePath:output_type -> InternalApi.Artifacthub.DeletePathResponse - 5, // 33: InternalApi.Artifacthub.ArtifactService.UpdateRetentionPolicy:output_type -> InternalApi.Artifacthub.UpdateRetentionPolicyResponse - 17, // 34: InternalApi.Artifacthub.ArtifactService.Cleanup:output_type -> InternalApi.Artifacthub.CleanupResponse - 19, // 35: InternalApi.Artifacthub.ArtifactService.GetSignedURL:output_type -> InternalApi.Artifacthub.GetSignedURLResponse - 21, // 36: InternalApi.Artifacthub.ArtifactService.ListBuckets:output_type -> InternalApi.Artifacthub.ListBucketsResponse - 23, // 37: InternalApi.Artifacthub.ArtifactService.CountArtifacts:output_type -> InternalApi.Artifacthub.CountArtifactsResponse - 25, // 38: InternalApi.Artifacthub.ArtifactService.CountBuckets:output_type -> InternalApi.Artifacthub.CountBucketsResponse - 27, // 39: InternalApi.Artifacthub.ArtifactService.UpdateCORS:output_type -> InternalApi.Artifacthub.UpdateCORSResponse - 27, // [27:40] is the sub-list for method output_type - 14, // [14:27] is the sub-list for method input_type + 30, // 21: InternalApi.Artifacthub.ArtifactService.GenerateToken:input_type -> InternalApi.Artifacthub.GenerateTokenRequest + 16, // 22: InternalApi.Artifacthub.ArtifactService.Cleanup:input_type -> InternalApi.Artifacthub.CleanupRequest + 18, // 23: InternalApi.Artifacthub.ArtifactService.GetSignedURL:input_type -> InternalApi.Artifacthub.GetSignedURLRequest + 20, // 24: InternalApi.Artifacthub.ArtifactService.ListBuckets:input_type -> InternalApi.Artifacthub.ListBucketsRequest + 22, // 25: InternalApi.Artifacthub.ArtifactService.CountArtifacts:input_type -> InternalApi.Artifacthub.CountArtifactsRequest + 24, // 26: InternalApi.Artifacthub.ArtifactService.CountBuckets:input_type -> InternalApi.Artifacthub.CountBucketsRequest + 26, // 27: InternalApi.Artifacthub.ArtifactService.UpdateCORS:input_type -> InternalApi.Artifacthub.UpdateCORSRequest + 2, // 28: InternalApi.Artifacthub.ArtifactService.HealthCheck:output_type -> InternalApi.Artifacthub.HealthCheckResponse + 7, // 29: InternalApi.Artifacthub.ArtifactService.Create:output_type -> InternalApi.Artifacthub.CreateResponse + 9, // 30: InternalApi.Artifacthub.ArtifactService.Describe:output_type -> InternalApi.Artifacthub.DescribeResponse + 11, // 31: InternalApi.Artifacthub.ArtifactService.Destroy:output_type -> InternalApi.Artifacthub.DestroyResponse + 13, // 32: InternalApi.Artifacthub.ArtifactService.ListPath:output_type -> InternalApi.Artifacthub.ListPathResponse + 15, // 33: InternalApi.Artifacthub.ArtifactService.DeletePath:output_type -> InternalApi.Artifacthub.DeletePathResponse + 5, // 34: InternalApi.Artifacthub.ArtifactService.UpdateRetentionPolicy:output_type -> InternalApi.Artifacthub.UpdateRetentionPolicyResponse + 31, // 35: InternalApi.Artifacthub.ArtifactService.GenerateToken:output_type -> InternalApi.Artifacthub.GenerateTokenResponse + 17, // 36: InternalApi.Artifacthub.ArtifactService.Cleanup:output_type -> InternalApi.Artifacthub.CleanupResponse + 19, // 37: InternalApi.Artifacthub.ArtifactService.GetSignedURL:output_type -> InternalApi.Artifacthub.GetSignedURLResponse + 21, // 38: InternalApi.Artifacthub.ArtifactService.ListBuckets:output_type -> InternalApi.Artifacthub.ListBucketsResponse + 23, // 39: InternalApi.Artifacthub.ArtifactService.CountArtifacts:output_type -> InternalApi.Artifacthub.CountArtifactsResponse + 25, // 40: InternalApi.Artifacthub.ArtifactService.CountBuckets:output_type -> InternalApi.Artifacthub.CountBucketsResponse + 27, // 41: InternalApi.Artifacthub.ArtifactService.UpdateCORS:output_type -> InternalApi.Artifacthub.UpdateCORSResponse + 28, // [28:42] is the sub-list for method output_type + 14, // [14:28] is the sub-list for method input_type 14, // [14:14] is the sub-list for extension type_name 14, // [14:14] is the sub-list for extension extendee 0, // [0:14] is the sub-list for field type_name @@ -2330,6 +2503,30 @@ func file_artifacthub_proto_init() { } } file_artifacthub_proto_msgTypes[29].Exporter = func(v interface{}, i int) interface{} { + switch v := v.(*GenerateTokenRequest); i { + case 0: + return &v.state + case 1: + return &v.sizeCache + case 2: + return &v.unknownFields + default: + return nil + } + } + file_artifacthub_proto_msgTypes[30].Exporter = func(v interface{}, i int) interface{} { + switch v := v.(*GenerateTokenResponse); i { + case 0: + return &v.state + case 1: + return &v.sizeCache + case 2: + return &v.unknownFields + default: + return nil + } + } + file_artifacthub_proto_msgTypes[31].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*RetentionPolicy_RetentionPolicyRule); i { case 0: return &v.state @@ -2348,7 +2545,7 @@ func file_artifacthub_proto_init() { GoPackagePath: reflect.TypeOf(x{}).PkgPath(), RawDescriptor: file_artifacthub_proto_rawDesc, NumEnums: 1, - NumMessages: 31, + NumMessages: 33, NumExtensions: 0, NumServices: 1, }, diff --git a/ee/velocity/pkg/protos/artifacthub/artifacthub_grpc.pb.go b/ee/velocity/pkg/protos/artifacthub/artifacthub_grpc.pb.go index 9dea7ba6a..43686e677 100644 --- a/ee/velocity/pkg/protos/artifacthub/artifacthub_grpc.pb.go +++ b/ee/velocity/pkg/protos/artifacthub/artifacthub_grpc.pb.go @@ -26,6 +26,7 @@ const ( ArtifactService_ListPath_FullMethodName = "/InternalApi.Artifacthub.ArtifactService/ListPath" ArtifactService_DeletePath_FullMethodName = "/InternalApi.Artifacthub.ArtifactService/DeletePath" ArtifactService_UpdateRetentionPolicy_FullMethodName = "/InternalApi.Artifacthub.ArtifactService/UpdateRetentionPolicy" + ArtifactService_GenerateToken_FullMethodName = "/InternalApi.Artifacthub.ArtifactService/GenerateToken" ArtifactService_Cleanup_FullMethodName = "/InternalApi.Artifacthub.ArtifactService/Cleanup" ArtifactService_GetSignedURL_FullMethodName = "/InternalApi.Artifacthub.ArtifactService/GetSignedURL" ArtifactService_ListBuckets_FullMethodName = "/InternalApi.Artifacthub.ArtifactService/ListBuckets" @@ -46,6 +47,10 @@ type ArtifactServiceClient interface { ListPath(ctx context.Context, in *ListPathRequest, opts ...grpc.CallOption) (*ListPathResponse, error) DeletePath(ctx context.Context, in *DeletePathRequest, opts ...grpc.CallOption) (*DeletePathResponse, error) UpdateRetentionPolicy(ctx context.Context, in *UpdateRetentionPolicyRequest, opts ...grpc.CallOption) (*UpdateRetentionPolicyResponse, error) + // Used to zebra to generate a short-lived JWT token, granting temporary access + // to a project/workflow/job artifacts for a newly created job. + // This is how jobs get access to the artifact API. + GenerateToken(ctx context.Context, in *GenerateTokenRequest, opts ...grpc.CallOption) (*GenerateTokenResponse, error) // if the cleanup result has errors, that does NOT mean it has been failed: it means that there were errors Cleanup(ctx context.Context, in *CleanupRequest, opts ...grpc.CallOption) (*CleanupResponse, error) GetSignedURL(ctx context.Context, in *GetSignedURLRequest, opts ...grpc.CallOption) (*GetSignedURLResponse, error) @@ -130,6 +135,15 @@ func (c *artifactServiceClient) UpdateRetentionPolicy(ctx context.Context, in *U return out, nil } +func (c *artifactServiceClient) GenerateToken(ctx context.Context, in *GenerateTokenRequest, opts ...grpc.CallOption) (*GenerateTokenResponse, error) { + out := new(GenerateTokenResponse) + err := c.cc.Invoke(ctx, ArtifactService_GenerateToken_FullMethodName, in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + func (c *artifactServiceClient) Cleanup(ctx context.Context, in *CleanupRequest, opts ...grpc.CallOption) (*CleanupResponse, error) { out := new(CleanupResponse) err := c.cc.Invoke(ctx, ArtifactService_Cleanup_FullMethodName, in, out, opts...) @@ -196,6 +210,10 @@ type ArtifactServiceServer interface { ListPath(context.Context, *ListPathRequest) (*ListPathResponse, error) DeletePath(context.Context, *DeletePathRequest) (*DeletePathResponse, error) UpdateRetentionPolicy(context.Context, *UpdateRetentionPolicyRequest) (*UpdateRetentionPolicyResponse, error) + // Used to zebra to generate a short-lived JWT token, granting temporary access + // to a project/workflow/job artifacts for a newly created job. + // This is how jobs get access to the artifact API. + GenerateToken(context.Context, *GenerateTokenRequest) (*GenerateTokenResponse, error) // if the cleanup result has errors, that does NOT mean it has been failed: it means that there were errors Cleanup(context.Context, *CleanupRequest) (*CleanupResponse, error) GetSignedURL(context.Context, *GetSignedURLRequest) (*GetSignedURLResponse, error) @@ -234,6 +252,9 @@ func (UnimplementedArtifactServiceServer) DeletePath(context.Context, *DeletePat func (UnimplementedArtifactServiceServer) UpdateRetentionPolicy(context.Context, *UpdateRetentionPolicyRequest) (*UpdateRetentionPolicyResponse, error) { return nil, status.Errorf(codes.Unimplemented, "method UpdateRetentionPolicy not implemented") } +func (UnimplementedArtifactServiceServer) GenerateToken(context.Context, *GenerateTokenRequest) (*GenerateTokenResponse, error) { + return nil, status.Errorf(codes.Unimplemented, "method GenerateToken not implemented") +} func (UnimplementedArtifactServiceServer) Cleanup(context.Context, *CleanupRequest) (*CleanupResponse, error) { return nil, status.Errorf(codes.Unimplemented, "method Cleanup not implemented") } @@ -390,6 +411,24 @@ func _ArtifactService_UpdateRetentionPolicy_Handler(srv interface{}, ctx context return interceptor(ctx, in, info, handler) } +func _ArtifactService_GenerateToken_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(GenerateTokenRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(ArtifactServiceServer).GenerateToken(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: ArtifactService_GenerateToken_FullMethodName, + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(ArtifactServiceServer).GenerateToken(ctx, req.(*GenerateTokenRequest)) + } + return interceptor(ctx, in, info, handler) +} + func _ArtifactService_Cleanup_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(CleanupRequest) if err := dec(in); err != nil { @@ -533,6 +572,10 @@ var ArtifactService_ServiceDesc = grpc.ServiceDesc{ MethodName: "UpdateRetentionPolicy", Handler: _ArtifactService_UpdateRetentionPolicy_Handler, }, + { + MethodName: "GenerateToken", + Handler: _ArtifactService_GenerateToken_Handler, + }, { MethodName: "Cleanup", Handler: _ArtifactService_Cleanup_Handler, diff --git a/ee/velocity/pkg/protos/feature/feature.pb.go b/ee/velocity/pkg/protos/feature/feature.pb.go index 42f4b7ca0..188c2e1e5 100644 --- a/ee/velocity/pkg/protos/feature/feature.pb.go +++ b/ee/velocity/pkg/protos/feature/feature.pb.go @@ -1234,10 +1234,11 @@ var file_feature_proto_rawDesc = []byte{ 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x29, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x46, 0x65, 0x61, 0x74, 0x75, 0x72, 0x65, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x4d, 0x61, 0x63, 0x68, 0x69, 0x6e, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, - 0x42, 0x35, 0x5a, 0x33, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x72, - 0x65, 0x6e, 0x64, 0x65, 0x72, 0x65, 0x64, 0x74, 0x65, 0x78, 0x74, 0x2f, 0x76, 0x65, 0x6c, 0x6f, - 0x63, 0x69, 0x74, 0x79, 0x2f, 0x70, 0x6b, 0x67, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x73, 0x2f, - 0x66, 0x65, 0x61, 0x74, 0x75, 0x72, 0x65, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, + 0x42, 0x3e, 0x5a, 0x3c, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x73, + 0x65, 0x6d, 0x61, 0x70, 0x68, 0x6f, 0x72, 0x65, 0x69, 0x6f, 0x2f, 0x73, 0x65, 0x6d, 0x61, 0x70, + 0x68, 0x6f, 0x72, 0x65, 0x2f, 0x76, 0x65, 0x6c, 0x6f, 0x63, 0x69, 0x74, 0x79, 0x2f, 0x70, 0x6b, + 0x67, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x73, 0x2f, 0x66, 0x65, 0x61, 0x74, 0x75, 0x72, 0x65, + 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( diff --git a/ee/velocity/pkg/protos/plumber.pipeline/plumber.pipeline.pb.go b/ee/velocity/pkg/protos/plumber.pipeline/plumber.pipeline.pb.go index 446addad2..3b30a8414 100644 --- a/ee/velocity/pkg/protos/plumber.pipeline/plumber.pipeline.pb.go +++ b/ee/velocity/pkg/protos/plumber.pipeline/plumber.pipeline.pb.go @@ -121,6 +121,64 @@ func (GitRefType) EnumDescriptor() ([]byte, []int) { return file_plumber_pipeline_proto_rawDescGZIP(), []int{1} } +// Pipeline trigger source +// +// - WORKFLOW = Pipeline was triggered by workflow - it's an initial pipeline +// - PROMOTION = Pipeline was triggered by manual promotion +// - AUTO_PROMOTION = Pipeline was triggered by auto promotion +// - PARTIAL_RE_RUN = Pipeline was triggered by partial re-run of a pipeline +type TriggeredBy int32 + +const ( + TriggeredBy_WORKFLOW TriggeredBy = 0 + TriggeredBy_PROMOTION TriggeredBy = 1 + TriggeredBy_AUTO_PROMOTION TriggeredBy = 2 + TriggeredBy_PARTIAL_RE_RUN TriggeredBy = 3 +) + +// Enum value maps for TriggeredBy. +var ( + TriggeredBy_name = map[int32]string{ + 0: "WORKFLOW", + 1: "PROMOTION", + 2: "AUTO_PROMOTION", + 3: "PARTIAL_RE_RUN", + } + TriggeredBy_value = map[string]int32{ + "WORKFLOW": 0, + "PROMOTION": 1, + "AUTO_PROMOTION": 2, + "PARTIAL_RE_RUN": 3, + } +) + +func (x TriggeredBy) Enum() *TriggeredBy { + p := new(TriggeredBy) + *p = x + return p +} + +func (x TriggeredBy) String() string { + return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x)) +} + +func (TriggeredBy) Descriptor() protoreflect.EnumDescriptor { + return file_plumber_pipeline_proto_enumTypes[2].Descriptor() +} + +func (TriggeredBy) Type() protoreflect.EnumType { + return &file_plumber_pipeline_proto_enumTypes[2] +} + +func (x TriggeredBy) Number() protoreflect.EnumNumber { + return protoreflect.EnumNumber(x) +} + +// Deprecated: Use TriggeredBy.Descriptor instead. +func (TriggeredBy) EnumDescriptor() ([]byte, []int) { + return file_plumber_pipeline_proto_rawDescGZIP(), []int{2} +} + type ScheduleRequest_ServiceType int32 const ( @@ -154,11 +212,11 @@ func (x ScheduleRequest_ServiceType) String() string { } func (ScheduleRequest_ServiceType) Descriptor() protoreflect.EnumDescriptor { - return file_plumber_pipeline_proto_enumTypes[2].Descriptor() + return file_plumber_pipeline_proto_enumTypes[3].Descriptor() } func (ScheduleRequest_ServiceType) Type() protoreflect.EnumType { - return &file_plumber_pipeline_proto_enumTypes[2] + return &file_plumber_pipeline_proto_enumTypes[3] } func (x ScheduleRequest_ServiceType) Number() protoreflect.EnumNumber { @@ -217,11 +275,11 @@ func (x Block_State) String() string { } func (Block_State) Descriptor() protoreflect.EnumDescriptor { - return file_plumber_pipeline_proto_enumTypes[3].Descriptor() + return file_plumber_pipeline_proto_enumTypes[4].Descriptor() } func (Block_State) Type() protoreflect.EnumType { - return &file_plumber_pipeline_proto_enumTypes[3] + return &file_plumber_pipeline_proto_enumTypes[4] } func (x Block_State) Number() protoreflect.EnumNumber { @@ -269,11 +327,11 @@ func (x Block_Result) String() string { } func (Block_Result) Descriptor() protoreflect.EnumDescriptor { - return file_plumber_pipeline_proto_enumTypes[4].Descriptor() + return file_plumber_pipeline_proto_enumTypes[5].Descriptor() } func (Block_Result) Type() protoreflect.EnumType { - return &file_plumber_pipeline_proto_enumTypes[4] + return &file_plumber_pipeline_proto_enumTypes[5] } func (x Block_Result) Number() protoreflect.EnumNumber { @@ -355,11 +413,11 @@ func (x Block_ResultReason) String() string { } func (Block_ResultReason) Descriptor() protoreflect.EnumDescriptor { - return file_plumber_pipeline_proto_enumTypes[5].Descriptor() + return file_plumber_pipeline_proto_enumTypes[6].Descriptor() } func (Block_ResultReason) Type() protoreflect.EnumType { - return &file_plumber_pipeline_proto_enumTypes[5] + return &file_plumber_pipeline_proto_enumTypes[6] } func (x Block_ResultReason) Number() protoreflect.EnumNumber { @@ -398,11 +456,11 @@ func (x ListKeysetRequest_Order) String() string { } func (ListKeysetRequest_Order) Descriptor() protoreflect.EnumDescriptor { - return file_plumber_pipeline_proto_enumTypes[6].Descriptor() + return file_plumber_pipeline_proto_enumTypes[7].Descriptor() } func (ListKeysetRequest_Order) Type() protoreflect.EnumType { - return &file_plumber_pipeline_proto_enumTypes[6] + return &file_plumber_pipeline_proto_enumTypes[7] } func (x ListKeysetRequest_Order) Number() protoreflect.EnumNumber { @@ -444,11 +502,11 @@ func (x ListKeysetRequest_Direction) String() string { } func (ListKeysetRequest_Direction) Descriptor() protoreflect.EnumDescriptor { - return file_plumber_pipeline_proto_enumTypes[7].Descriptor() + return file_plumber_pipeline_proto_enumTypes[8].Descriptor() } func (ListKeysetRequest_Direction) Type() protoreflect.EnumType { - return &file_plumber_pipeline_proto_enumTypes[7] + return &file_plumber_pipeline_proto_enumTypes[8] } func (x ListKeysetRequest_Direction) Number() protoreflect.EnumNumber { @@ -514,11 +572,11 @@ func (x Pipeline_State) String() string { } func (Pipeline_State) Descriptor() protoreflect.EnumDescriptor { - return file_plumber_pipeline_proto_enumTypes[8].Descriptor() + return file_plumber_pipeline_proto_enumTypes[9].Descriptor() } func (Pipeline_State) Type() protoreflect.EnumType { - return &file_plumber_pipeline_proto_enumTypes[8] + return &file_plumber_pipeline_proto_enumTypes[9] } func (x Pipeline_State) Number() protoreflect.EnumNumber { @@ -566,11 +624,11 @@ func (x Pipeline_Result) String() string { } func (Pipeline_Result) Descriptor() protoreflect.EnumDescriptor { - return file_plumber_pipeline_proto_enumTypes[9].Descriptor() + return file_plumber_pipeline_proto_enumTypes[10].Descriptor() } func (Pipeline_Result) Type() protoreflect.EnumType { - return &file_plumber_pipeline_proto_enumTypes[9] + return &file_plumber_pipeline_proto_enumTypes[10] } func (x Pipeline_Result) Number() protoreflect.EnumNumber { @@ -647,11 +705,11 @@ func (x Pipeline_ResultReason) String() string { } func (Pipeline_ResultReason) Descriptor() protoreflect.EnumDescriptor { - return file_plumber_pipeline_proto_enumTypes[10].Descriptor() + return file_plumber_pipeline_proto_enumTypes[11].Descriptor() } func (Pipeline_ResultReason) Type() protoreflect.EnumType { - return &file_plumber_pipeline_proto_enumTypes[10] + return &file_plumber_pipeline_proto_enumTypes[11] } func (x Pipeline_ResultReason) Number() protoreflect.EnumNumber { @@ -690,11 +748,11 @@ func (x ListActivityRequest_Order) String() string { } func (ListActivityRequest_Order) Descriptor() protoreflect.EnumDescriptor { - return file_plumber_pipeline_proto_enumTypes[11].Descriptor() + return file_plumber_pipeline_proto_enumTypes[12].Descriptor() } func (ListActivityRequest_Order) Type() protoreflect.EnumType { - return &file_plumber_pipeline_proto_enumTypes[11] + return &file_plumber_pipeline_proto_enumTypes[12] } func (x ListActivityRequest_Order) Number() protoreflect.EnumNumber { @@ -703,7 +761,7 @@ func (x ListActivityRequest_Order) Number() protoreflect.EnumNumber { // Deprecated: Use ListActivityRequest_Order.Descriptor instead. func (ListActivityRequest_Order) EnumDescriptor() ([]byte, []int) { - return file_plumber_pipeline_proto_rawDescGZIP(), []int{21, 0} + return file_plumber_pipeline_proto_rawDescGZIP(), []int{22, 0} } type ListActivityRequest_Direction int32 @@ -736,11 +794,11 @@ func (x ListActivityRequest_Direction) String() string { } func (ListActivityRequest_Direction) Descriptor() protoreflect.EnumDescriptor { - return file_plumber_pipeline_proto_enumTypes[12].Descriptor() + return file_plumber_pipeline_proto_enumTypes[13].Descriptor() } func (ListActivityRequest_Direction) Type() protoreflect.EnumType { - return &file_plumber_pipeline_proto_enumTypes[12] + return &file_plumber_pipeline_proto_enumTypes[13] } func (x ListActivityRequest_Direction) Number() protoreflect.EnumNumber { @@ -749,7 +807,7 @@ func (x ListActivityRequest_Direction) Number() protoreflect.EnumNumber { // Deprecated: Use ListActivityRequest_Direction.Descriptor instead. func (ListActivityRequest_Direction) EnumDescriptor() ([]byte, []int) { - return file_plumber_pipeline_proto_rawDescGZIP(), []int{21, 1} + return file_plumber_pipeline_proto_rawDescGZIP(), []int{22, 1} } type RunNowRequest_Type int32 @@ -785,11 +843,11 @@ func (x RunNowRequest_Type) String() string { } func (RunNowRequest_Type) Descriptor() protoreflect.EnumDescriptor { - return file_plumber_pipeline_proto_enumTypes[13].Descriptor() + return file_plumber_pipeline_proto_enumTypes[14].Descriptor() } func (RunNowRequest_Type) Type() protoreflect.EnumType { - return &file_plumber_pipeline_proto_enumTypes[13] + return &file_plumber_pipeline_proto_enumTypes[14] } func (x RunNowRequest_Type) Number() protoreflect.EnumNumber { @@ -798,7 +856,7 @@ func (x RunNowRequest_Type) Number() protoreflect.EnumNumber { // Deprecated: Use RunNowRequest_Type.Descriptor instead. func (RunNowRequest_Type) EnumDescriptor() ([]byte, []int) { - return file_plumber_pipeline_proto_rawDescGZIP(), []int{28, 0} + return file_plumber_pipeline_proto_rawDescGZIP(), []int{29, 0} } // Codes serve to determin result of Request processing and wether to interpret the @@ -847,11 +905,11 @@ func (x ResponseStatus_ResponseCode) String() string { } func (ResponseStatus_ResponseCode) Descriptor() protoreflect.EnumDescriptor { - return file_plumber_pipeline_proto_enumTypes[14].Descriptor() + return file_plumber_pipeline_proto_enumTypes[15].Descriptor() } func (ResponseStatus_ResponseCode) Type() protoreflect.EnumType { - return &file_plumber_pipeline_proto_enumTypes[14] + return &file_plumber_pipeline_proto_enumTypes[15] } func (x ResponseStatus_ResponseCode) Number() protoreflect.EnumNumber { @@ -860,7 +918,7 @@ func (x ResponseStatus_ResponseCode) Number() protoreflect.EnumNumber { // Deprecated: Use ResponseStatus_ResponseCode.Descriptor instead. func (ResponseStatus_ResponseCode) EnumDescriptor() ([]byte, []int) { - return file_plumber_pipeline_proto_rawDescGZIP(), []int{43, 0} + return file_plumber_pipeline_proto_rawDescGZIP(), []int{44, 0} } // States that describe after pipeline execution @@ -904,11 +962,11 @@ func (x AfterPipeline_State) String() string { } func (AfterPipeline_State) Descriptor() protoreflect.EnumDescriptor { - return file_plumber_pipeline_proto_enumTypes[15].Descriptor() + return file_plumber_pipeline_proto_enumTypes[16].Descriptor() } func (AfterPipeline_State) Type() protoreflect.EnumType { - return &file_plumber_pipeline_proto_enumTypes[15] + return &file_plumber_pipeline_proto_enumTypes[16] } func (x AfterPipeline_State) Number() protoreflect.EnumNumber { @@ -917,7 +975,7 @@ func (x AfterPipeline_State) Number() protoreflect.EnumNumber { // Deprecated: Use AfterPipeline_State.Descriptor instead. func (AfterPipeline_State) EnumDescriptor() ([]byte, []int) { - return file_plumber_pipeline_proto_rawDescGZIP(), []int{46, 0} + return file_plumber_pipeline_proto_rawDescGZIP(), []int{47, 0} } type AfterPipeline_Result int32 @@ -953,11 +1011,11 @@ func (x AfterPipeline_Result) String() string { } func (AfterPipeline_Result) Descriptor() protoreflect.EnumDescriptor { - return file_plumber_pipeline_proto_enumTypes[16].Descriptor() + return file_plumber_pipeline_proto_enumTypes[17].Descriptor() } func (AfterPipeline_Result) Type() protoreflect.EnumType { - return &file_plumber_pipeline_proto_enumTypes[16] + return &file_plumber_pipeline_proto_enumTypes[17] } func (x AfterPipeline_Result) Number() protoreflect.EnumNumber { @@ -966,7 +1024,7 @@ func (x AfterPipeline_Result) Number() protoreflect.EnumNumber { // Deprecated: Use AfterPipeline_Result.Descriptor instead. func (AfterPipeline_Result) EnumDescriptor() ([]byte, []int) { - return file_plumber_pipeline_proto_rawDescGZIP(), []int{46, 1} + return file_plumber_pipeline_proto_rawDescGZIP(), []int{47, 1} } // Reasons for result different from PASSED @@ -1004,11 +1062,11 @@ func (x AfterPipeline_ResultReason) String() string { } func (AfterPipeline_ResultReason) Descriptor() protoreflect.EnumDescriptor { - return file_plumber_pipeline_proto_enumTypes[17].Descriptor() + return file_plumber_pipeline_proto_enumTypes[18].Descriptor() } func (AfterPipeline_ResultReason) Type() protoreflect.EnumType { - return &file_plumber_pipeline_proto_enumTypes[17] + return &file_plumber_pipeline_proto_enumTypes[18] } func (x AfterPipeline_ResultReason) Number() protoreflect.EnumNumber { @@ -1017,7 +1075,7 @@ func (x AfterPipeline_ResultReason) Number() protoreflect.EnumNumber { // Deprecated: Use AfterPipeline_ResultReason.Descriptor instead. func (AfterPipeline_ResultReason) EnumDescriptor() ([]byte, []int) { - return file_plumber_pipeline_proto_rawDescGZIP(), []int{46, 2} + return file_plumber_pipeline_proto_rawDescGZIP(), []int{47, 2} } // Schedule call request @@ -2269,29 +2327,31 @@ func (x *ListGroupedResponse) GetTotalPages() int32 { // match the other search parameters if they are given. // // Arguments: -// - page_size = [required] Number of pipelines per page of List call result. -// - page_token = [required] Starting point for listing, tokens for next and previous +// - page_size = [required] Number of pipelines per page of List call result. +// - page_token = [required] Starting point for listing, tokens for next and previous // page are returned in response. If you are fetching first page // leave it empty and set direction to NEXT -// - order = [required] Sorting order direction -// - direction = [required] Listing direction. Use NEXT with value of 'next_page_token' +// - order = [required] Sorting order direction +// - direction = [required] Listing direction. Use NEXT with value of 'next_page_token' // from ListKeyset response as 'page_token' to fetch next page // of results, or use PREVIOUS with value of 'previous_page_token' // as 'page_token' to fetch the previous page. -// - project_id = [required, optional if wf_id is given] Id of project which +// - project_id = [required, optional if wf_id is given] Id of project which // pipelines should be returned. -// - yml_file_path = [optional] path within GitHub repository to yml file from +// - yml_file_path = [optional] path within GitHub repository to yml file from // which pipeline originated -// - wf_id = [required, optional if project_id is given] Workflow for which +// - wf_id = [required, optional if project_id is given] Workflow for which // pipelines should be returned. -// - created_before = [optional] Return only pipelines created before this timestamp -// - created_after = [optional] Return only pipelines created after this timestamp -// - done_before = [optional] Return only pipelines which finished before this timestamp -// - done_after = [optional] Return only pipelines which finished after this timestamp -// - label = [optional] Return only pipeline with given label +// - created_before = [optional] Return only pipelines created before this timestamp +// - created_after = [optional] Return only pipelines created after this timestamp +// - done_before = [optional] Return only pipelines which finished before this timestamp +// - done_after = [optional] Return only pipelines which finished after this timestamp +// - label = [optional] Return only pipeline with given label // (label is branch/tag name, PR number, snapshot generated label etc.) -// - git_ref_types = [optional] Return only pipelines which originated from one of given git refs -// - queue_id = [optional] Return only pipelines from queue with given id +// - git_ref_types = [optional] Return only pipelines which originated from one of given git refs +// - queue_id = [optional] Return only pipelines from queue with given id +// - pr_head_branch = [optional] Return only pipelines with given PR head branch +// - pr_target_branch = [optional] Return only pipelines with given PR target branch // // Preconditions: // @@ -2308,20 +2368,22 @@ type ListKeysetRequest struct { sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields - PageSize int32 `protobuf:"varint,1,opt,name=page_size,json=pageSize,proto3" json:"page_size,omitempty"` - PageToken string `protobuf:"bytes,2,opt,name=page_token,json=pageToken,proto3" json:"page_token,omitempty"` - Order ListKeysetRequest_Order `protobuf:"varint,3,opt,name=order,proto3,enum=InternalApi.Plumber.ListKeysetRequest_Order" json:"order,omitempty"` - Direction ListKeysetRequest_Direction `protobuf:"varint,4,opt,name=direction,proto3,enum=InternalApi.Plumber.ListKeysetRequest_Direction" json:"direction,omitempty"` - ProjectId string `protobuf:"bytes,5,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"` - YmlFilePath string `protobuf:"bytes,6,opt,name=yml_file_path,json=ymlFilePath,proto3" json:"yml_file_path,omitempty"` - WfId string `protobuf:"bytes,7,opt,name=wf_id,json=wfId,proto3" json:"wf_id,omitempty"` - CreatedBefore *timestamp.Timestamp `protobuf:"bytes,8,opt,name=created_before,json=createdBefore,proto3" json:"created_before,omitempty"` - CreatedAfter *timestamp.Timestamp `protobuf:"bytes,9,opt,name=created_after,json=createdAfter,proto3" json:"created_after,omitempty"` - DoneBefore *timestamp.Timestamp `protobuf:"bytes,10,opt,name=done_before,json=doneBefore,proto3" json:"done_before,omitempty"` - DoneAfter *timestamp.Timestamp `protobuf:"bytes,11,opt,name=done_after,json=doneAfter,proto3" json:"done_after,omitempty"` - Label string `protobuf:"bytes,12,opt,name=label,proto3" json:"label,omitempty"` - GitRefTypes []GitRefType `protobuf:"varint,13,rep,packed,name=git_ref_types,json=gitRefTypes,proto3,enum=InternalApi.Plumber.GitRefType" json:"git_ref_types,omitempty"` - QueueId string `protobuf:"bytes,14,opt,name=queue_id,json=queueId,proto3" json:"queue_id,omitempty"` + PageSize int32 `protobuf:"varint,1,opt,name=page_size,json=pageSize,proto3" json:"page_size,omitempty"` + PageToken string `protobuf:"bytes,2,opt,name=page_token,json=pageToken,proto3" json:"page_token,omitempty"` + Order ListKeysetRequest_Order `protobuf:"varint,3,opt,name=order,proto3,enum=InternalApi.Plumber.ListKeysetRequest_Order" json:"order,omitempty"` + Direction ListKeysetRequest_Direction `protobuf:"varint,4,opt,name=direction,proto3,enum=InternalApi.Plumber.ListKeysetRequest_Direction" json:"direction,omitempty"` + ProjectId string `protobuf:"bytes,5,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"` + YmlFilePath string `protobuf:"bytes,6,opt,name=yml_file_path,json=ymlFilePath,proto3" json:"yml_file_path,omitempty"` + WfId string `protobuf:"bytes,7,opt,name=wf_id,json=wfId,proto3" json:"wf_id,omitempty"` + CreatedBefore *timestamp.Timestamp `protobuf:"bytes,8,opt,name=created_before,json=createdBefore,proto3" json:"created_before,omitempty"` + CreatedAfter *timestamp.Timestamp `protobuf:"bytes,9,opt,name=created_after,json=createdAfter,proto3" json:"created_after,omitempty"` + DoneBefore *timestamp.Timestamp `protobuf:"bytes,10,opt,name=done_before,json=doneBefore,proto3" json:"done_before,omitempty"` + DoneAfter *timestamp.Timestamp `protobuf:"bytes,11,opt,name=done_after,json=doneAfter,proto3" json:"done_after,omitempty"` + Label string `protobuf:"bytes,12,opt,name=label,proto3" json:"label,omitempty"` + GitRefTypes []GitRefType `protobuf:"varint,13,rep,packed,name=git_ref_types,json=gitRefTypes,proto3,enum=InternalApi.Plumber.GitRefType" json:"git_ref_types,omitempty"` + QueueId string `protobuf:"bytes,14,opt,name=queue_id,json=queueId,proto3" json:"queue_id,omitempty"` + PrHeadBranch string `protobuf:"bytes,15,opt,name=pr_head_branch,json=prHeadBranch,proto3" json:"pr_head_branch,omitempty"` + PrTargetBranch string `protobuf:"bytes,16,opt,name=pr_target_branch,json=prTargetBranch,proto3" json:"pr_target_branch,omitempty"` } func (x *ListKeysetRequest) Reset() { @@ -2454,6 +2516,20 @@ func (x *ListKeysetRequest) GetQueueId() string { return "" } +func (x *ListKeysetRequest) GetPrHeadBranch() string { + if x != nil { + return x.PrHeadBranch + } + return "" +} + +func (x *ListKeysetRequest) GetPrTargetBranch() string { + if x != nil { + return x.PrTargetBranch + } + return "" +} + // ListKeyset call response // // Response: @@ -2532,28 +2608,27 @@ func (x *ListKeysetResponse) GetPreviousPageToken() string { // other search parameters if they are given. // // Arguments: -// -// - project_id = [required, optional if wf_id is given] Id of project which +// - project_id = [required, optional if wf_id is given] Id of project which // pipelines should be returned. -// // # DEPRECATED - instead use: label + git_ref_types = [BRANCH] +// - branch_name = [optional] Name of branch which pipelines should be returned. // -// - branch_name = [optional] Name of branch which pipelines should be returned. -// -// - page = [required] Serial number of wanted page with List call result. -// - page_size = [required] Number of pipelines per page of List call result. -// - yml_file_path = [optional] path within GitHub repository to yml file from +// - page = [required] Serial number of wanted page with List call result. +// - page_size = [required] Number of pipelines per page of List call result. +// - yml_file_path = [optional] path within GitHub repository to yml file from // which pipeline originated -// - wf_id = [required, optional if project_id is given] Workflow for which +// - wf_id = [required, optional if project_id is given] Workflow for which // pipelines should be returned. -// - created_before = [optional] Return only pipelines created before this timestamp -// - created_after = [optional] Return only pipelines created after this timestamp -// - done_before = [optional] Return only pipelines which finished before this timestamp -// - done_after = [optional] Return only pipelines which finished after this timestamp -// - label = [optional] Return only pipeline with given label +// - created_before = [optional] Return only pipelines created before this timestamp +// - created_after = [optional] Return only pipelines created after this timestamp +// - done_before = [optional] Return only pipelines which finished before this timestamp +// - done_after = [optional] Return only pipelines which finished after this timestamp +// - label = [optional] Return only pipeline with given label // (label is branch/tag name, PR number, snapshot generated label etc.) -// - git_ref_types = [optional] Return only pipelines which originated from one of given git refs -// - queue_id = [optional] Return only pipelines from queue with given id +// - git_ref_types = [optional] Return only pipelines which originated from one of given git refs +// - queue_id = [optional] Return only pipelines from queue with given id +// - pr_head_branch = [optional] Return only pipelines with given PR head branch +// - pr_target_branch = [optional] Return only pipelines with given PR target branch // // Preconditions: // @@ -2565,19 +2640,21 @@ type ListRequest struct { sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields - ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"` - BranchName string `protobuf:"bytes,2,opt,name=branch_name,json=branchName,proto3" json:"branch_name,omitempty"` // DEPRECATED - Page int32 `protobuf:"varint,3,opt,name=page,proto3" json:"page,omitempty"` - PageSize int32 `protobuf:"varint,4,opt,name=page_size,json=pageSize,proto3" json:"page_size,omitempty"` - YmlFilePath string `protobuf:"bytes,5,opt,name=yml_file_path,json=ymlFilePath,proto3" json:"yml_file_path,omitempty"` - WfId string `protobuf:"bytes,6,opt,name=wf_id,json=wfId,proto3" json:"wf_id,omitempty"` - CreatedBefore *timestamp.Timestamp `protobuf:"bytes,7,opt,name=created_before,json=createdBefore,proto3" json:"created_before,omitempty"` - CreatedAfter *timestamp.Timestamp `protobuf:"bytes,8,opt,name=created_after,json=createdAfter,proto3" json:"created_after,omitempty"` - DoneBefore *timestamp.Timestamp `protobuf:"bytes,9,opt,name=done_before,json=doneBefore,proto3" json:"done_before,omitempty"` - DoneAfter *timestamp.Timestamp `protobuf:"bytes,10,opt,name=done_after,json=doneAfter,proto3" json:"done_after,omitempty"` - Label string `protobuf:"bytes,11,opt,name=label,proto3" json:"label,omitempty"` - GitRefTypes []GitRefType `protobuf:"varint,12,rep,packed,name=git_ref_types,json=gitRefTypes,proto3,enum=InternalApi.Plumber.GitRefType" json:"git_ref_types,omitempty"` - QueueId string `protobuf:"bytes,13,opt,name=queue_id,json=queueId,proto3" json:"queue_id,omitempty"` + ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"` + BranchName string `protobuf:"bytes,2,opt,name=branch_name,json=branchName,proto3" json:"branch_name,omitempty"` // DEPRECATED + Page int32 `protobuf:"varint,3,opt,name=page,proto3" json:"page,omitempty"` + PageSize int32 `protobuf:"varint,4,opt,name=page_size,json=pageSize,proto3" json:"page_size,omitempty"` + YmlFilePath string `protobuf:"bytes,5,opt,name=yml_file_path,json=ymlFilePath,proto3" json:"yml_file_path,omitempty"` + WfId string `protobuf:"bytes,6,opt,name=wf_id,json=wfId,proto3" json:"wf_id,omitempty"` + CreatedBefore *timestamp.Timestamp `protobuf:"bytes,7,opt,name=created_before,json=createdBefore,proto3" json:"created_before,omitempty"` + CreatedAfter *timestamp.Timestamp `protobuf:"bytes,8,opt,name=created_after,json=createdAfter,proto3" json:"created_after,omitempty"` + DoneBefore *timestamp.Timestamp `protobuf:"bytes,9,opt,name=done_before,json=doneBefore,proto3" json:"done_before,omitempty"` + DoneAfter *timestamp.Timestamp `protobuf:"bytes,10,opt,name=done_after,json=doneAfter,proto3" json:"done_after,omitempty"` + Label string `protobuf:"bytes,11,opt,name=label,proto3" json:"label,omitempty"` + GitRefTypes []GitRefType `protobuf:"varint,12,rep,packed,name=git_ref_types,json=gitRefTypes,proto3,enum=InternalApi.Plumber.GitRefType" json:"git_ref_types,omitempty"` + QueueId string `protobuf:"bytes,13,opt,name=queue_id,json=queueId,proto3" json:"queue_id,omitempty"` + PrHeadBranch string `protobuf:"bytes,14,opt,name=pr_head_branch,json=prHeadBranch,proto3" json:"pr_head_branch,omitempty"` + PrTargetBranch string `protobuf:"bytes,15,opt,name=pr_target_branch,json=prTargetBranch,proto3" json:"pr_target_branch,omitempty"` } func (x *ListRequest) Reset() { @@ -2703,6 +2780,20 @@ func (x *ListRequest) GetQueueId() string { return "" } +func (x *ListRequest) GetPrHeadBranch() string { + if x != nil { + return x.PrHeadBranch + } + return "" +} + +func (x *ListRequest) GetPrTargetBranch() string { + if x != nil { + return x.PrTargetBranch + } + return "" +} + // List call response // // Response: @@ -2994,6 +3085,8 @@ func (x *Queue) GetType() QueueType { // Only available if related hook was processed by hooks-receiver/processor (only BitBucket currently) // // - env_vars = [optional] Environment variables that were set for the pipeline (via extension request) +// - triggerer = [required] Who and how triggered the pipeline +// - organization_id = [required] Id of organization to which given pipeline belongs type Pipeline struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -3033,6 +3126,8 @@ type Pipeline struct { AfterTaskId string `protobuf:"bytes,32,opt,name=after_task_id,json=afterTaskId,proto3" json:"after_task_id,omitempty"` RepositoryId string `protobuf:"bytes,33,opt,name=repository_id,json=repositoryId,proto3" json:"repository_id,omitempty"` EnvVars []*EnvVariable `protobuf:"bytes,34,rep,name=env_vars,json=envVars,proto3" json:"env_vars,omitempty"` + Triggerer *Triggerer `protobuf:"bytes,35,opt,name=triggerer,proto3" json:"triggerer,omitempty"` + OrganizationId string `protobuf:"bytes,36,opt,name=organization_id,json=organizationId,proto3" json:"organization_id,omitempty"` } func (x *Pipeline) Reset() { @@ -3305,6 +3400,139 @@ func (x *Pipeline) GetEnvVars() []*EnvVariable { return nil } +func (x *Pipeline) GetTriggerer() *Triggerer { + if x != nil { + return x.Triggerer + } + return nil +} + +func (x *Pipeline) GetOrganizationId() string { + if x != nil { + return x.OrganizationId + } + return "" +} + +type Triggerer struct { + state protoimpl.MessageState + sizeCache protoimpl.SizeCache + unknownFields protoimpl.UnknownFields + + WfTriggeredBy plumber_w_f_workflow.TriggeredBy `protobuf:"varint,1,opt,name=wf_triggered_by,json=wfTriggeredBy,proto3,enum=InternalApi.PlumberWF.TriggeredBy" json:"wf_triggered_by,omitempty"` + WfTriggererId string `protobuf:"bytes,2,opt,name=wf_triggerer_id,json=wfTriggererId,proto3" json:"wf_triggerer_id,omitempty"` + WfTriggererUserId string `protobuf:"bytes,3,opt,name=wf_triggerer_user_id,json=wfTriggererUserId,proto3" json:"wf_triggerer_user_id,omitempty"` + WfTriggererProviderLogin string `protobuf:"bytes,4,opt,name=wf_triggerer_provider_login,json=wfTriggererProviderLogin,proto3" json:"wf_triggerer_provider_login,omitempty"` + WfTriggererProviderUid string `protobuf:"bytes,5,opt,name=wf_triggerer_provider_uid,json=wfTriggererProviderUid,proto3" json:"wf_triggerer_provider_uid,omitempty"` + WfTriggererProviderAvatar string `protobuf:"bytes,6,opt,name=wf_triggerer_provider_avatar,json=wfTriggererProviderAvatar,proto3" json:"wf_triggerer_provider_avatar,omitempty"` + PplTriggeredBy TriggeredBy `protobuf:"varint,7,opt,name=ppl_triggered_by,json=pplTriggeredBy,proto3,enum=InternalApi.Plumber.TriggeredBy" json:"ppl_triggered_by,omitempty"` + PplTriggererId string `protobuf:"bytes,8,opt,name=ppl_triggerer_id,json=pplTriggererId,proto3" json:"ppl_triggerer_id,omitempty"` + PplTriggererUserId string `protobuf:"bytes,9,opt,name=ppl_triggerer_user_id,json=pplTriggererUserId,proto3" json:"ppl_triggerer_user_id,omitempty"` + WorkflowRerunOf string `protobuf:"bytes,10,opt,name=workflow_rerun_of,json=workflowRerunOf,proto3" json:"workflow_rerun_of,omitempty"` +} + +func (x *Triggerer) Reset() { + *x = Triggerer{} + if protoimpl.UnsafeEnabled { + mi := &file_plumber_pipeline_proto_msgTypes[21] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) + } +} + +func (x *Triggerer) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*Triggerer) ProtoMessage() {} + +func (x *Triggerer) ProtoReflect() protoreflect.Message { + mi := &file_plumber_pipeline_proto_msgTypes[21] + if protoimpl.UnsafeEnabled && x != nil { + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + if ms.LoadMessageInfo() == nil { + ms.StoreMessageInfo(mi) + } + return ms + } + return mi.MessageOf(x) +} + +// Deprecated: Use Triggerer.ProtoReflect.Descriptor instead. +func (*Triggerer) Descriptor() ([]byte, []int) { + return file_plumber_pipeline_proto_rawDescGZIP(), []int{21} +} + +func (x *Triggerer) GetWfTriggeredBy() plumber_w_f_workflow.TriggeredBy { + if x != nil { + return x.WfTriggeredBy + } + return plumber_w_f_workflow.TriggeredBy_HOOK +} + +func (x *Triggerer) GetWfTriggererId() string { + if x != nil { + return x.WfTriggererId + } + return "" +} + +func (x *Triggerer) GetWfTriggererUserId() string { + if x != nil { + return x.WfTriggererUserId + } + return "" +} + +func (x *Triggerer) GetWfTriggererProviderLogin() string { + if x != nil { + return x.WfTriggererProviderLogin + } + return "" +} + +func (x *Triggerer) GetWfTriggererProviderUid() string { + if x != nil { + return x.WfTriggererProviderUid + } + return "" +} + +func (x *Triggerer) GetWfTriggererProviderAvatar() string { + if x != nil { + return x.WfTriggererProviderAvatar + } + return "" +} + +func (x *Triggerer) GetPplTriggeredBy() TriggeredBy { + if x != nil { + return x.PplTriggeredBy + } + return TriggeredBy_WORKFLOW +} + +func (x *Triggerer) GetPplTriggererId() string { + if x != nil { + return x.PplTriggererId + } + return "" +} + +func (x *Triggerer) GetPplTriggererUserId() string { + if x != nil { + return x.PplTriggererUserId + } + return "" +} + +func (x *Triggerer) GetWorkflowRerunOf() string { + if x != nil { + return x.WorkflowRerunOf + } + return "" +} + // ListActivity call request // // Synchronous operation. @@ -3346,7 +3574,7 @@ type ListActivityRequest struct { func (x *ListActivityRequest) Reset() { *x = ListActivityRequest{} if protoimpl.UnsafeEnabled { - mi := &file_plumber_pipeline_proto_msgTypes[21] + mi := &file_plumber_pipeline_proto_msgTypes[22] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3359,7 +3587,7 @@ func (x *ListActivityRequest) String() string { func (*ListActivityRequest) ProtoMessage() {} func (x *ListActivityRequest) ProtoReflect() protoreflect.Message { - mi := &file_plumber_pipeline_proto_msgTypes[21] + mi := &file_plumber_pipeline_proto_msgTypes[22] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3372,7 +3600,7 @@ func (x *ListActivityRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ListActivityRequest.ProtoReflect.Descriptor instead. func (*ListActivityRequest) Descriptor() ([]byte, []int) { - return file_plumber_pipeline_proto_rawDescGZIP(), []int{21} + return file_plumber_pipeline_proto_rawDescGZIP(), []int{22} } func (x *ListActivityRequest) GetPageSize() int32 { @@ -3431,7 +3659,7 @@ type ListActivityResponse struct { func (x *ListActivityResponse) Reset() { *x = ListActivityResponse{} if protoimpl.UnsafeEnabled { - mi := &file_plumber_pipeline_proto_msgTypes[22] + mi := &file_plumber_pipeline_proto_msgTypes[23] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3444,7 +3672,7 @@ func (x *ListActivityResponse) String() string { func (*ListActivityResponse) ProtoMessage() {} func (x *ListActivityResponse) ProtoReflect() protoreflect.Message { - mi := &file_plumber_pipeline_proto_msgTypes[22] + mi := &file_plumber_pipeline_proto_msgTypes[23] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3457,7 +3685,7 @@ func (x *ListActivityResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use ListActivityResponse.ProtoReflect.Descriptor instead. func (*ListActivityResponse) Descriptor() ([]byte, []int) { - return file_plumber_pipeline_proto_rawDescGZIP(), []int{22} + return file_plumber_pipeline_proto_rawDescGZIP(), []int{23} } func (x *ListActivityResponse) GetNextPageToken() string { @@ -3509,7 +3737,7 @@ type ListRequestersRequest struct { func (x *ListRequestersRequest) Reset() { *x = ListRequestersRequest{} if protoimpl.UnsafeEnabled { - mi := &file_plumber_pipeline_proto_msgTypes[23] + mi := &file_plumber_pipeline_proto_msgTypes[24] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3522,7 +3750,7 @@ func (x *ListRequestersRequest) String() string { func (*ListRequestersRequest) ProtoMessage() {} func (x *ListRequestersRequest) ProtoReflect() protoreflect.Message { - mi := &file_plumber_pipeline_proto_msgTypes[23] + mi := &file_plumber_pipeline_proto_msgTypes[24] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3535,7 +3763,7 @@ func (x *ListRequestersRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ListRequestersRequest.ProtoReflect.Descriptor instead. func (*ListRequestersRequest) Descriptor() ([]byte, []int) { - return file_plumber_pipeline_proto_rawDescGZIP(), []int{23} + return file_plumber_pipeline_proto_rawDescGZIP(), []int{24} } func (x *ListRequestersRequest) GetOrganizationId() string { @@ -3590,7 +3818,7 @@ type ListRequestersResponse struct { func (x *ListRequestersResponse) Reset() { *x = ListRequestersResponse{} if protoimpl.UnsafeEnabled { - mi := &file_plumber_pipeline_proto_msgTypes[24] + mi := &file_plumber_pipeline_proto_msgTypes[25] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3603,7 +3831,7 @@ func (x *ListRequestersResponse) String() string { func (*ListRequestersResponse) ProtoMessage() {} func (x *ListRequestersResponse) ProtoReflect() protoreflect.Message { - mi := &file_plumber_pipeline_proto_msgTypes[24] + mi := &file_plumber_pipeline_proto_msgTypes[25] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3616,7 +3844,7 @@ func (x *ListRequestersResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use ListRequestersResponse.ProtoReflect.Descriptor instead. func (*ListRequestersResponse) Descriptor() ([]byte, []int) { - return file_plumber_pipeline_proto_rawDescGZIP(), []int{24} + return file_plumber_pipeline_proto_rawDescGZIP(), []int{25} } func (x *ListRequestersResponse) GetRequesters() []*Requester { @@ -3662,7 +3890,7 @@ type Requester struct { func (x *Requester) Reset() { *x = Requester{} if protoimpl.UnsafeEnabled { - mi := &file_plumber_pipeline_proto_msgTypes[25] + mi := &file_plumber_pipeline_proto_msgTypes[26] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3675,7 +3903,7 @@ func (x *Requester) String() string { func (*Requester) ProtoMessage() {} func (x *Requester) ProtoReflect() protoreflect.Message { - mi := &file_plumber_pipeline_proto_msgTypes[25] + mi := &file_plumber_pipeline_proto_msgTypes[26] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3688,7 +3916,7 @@ func (x *Requester) ProtoReflect() protoreflect.Message { // Deprecated: Use Requester.ProtoReflect.Descriptor instead. func (*Requester) Descriptor() ([]byte, []int) { - return file_plumber_pipeline_proto_rawDescGZIP(), []int{25} + return file_plumber_pipeline_proto_rawDescGZIP(), []int{26} } func (x *Requester) GetOrganizationId() string { @@ -3787,6 +4015,7 @@ func (x *Requester) GetRequestedAt() *timestamp.Timestamp { // - commit_message = [required] Git commit message of th commit for which pipeline was initiated // - commiter_username = [required] GitHub username of the person that authored given commit // - commiter_avatar_url = [required] URL to GitHub avatar of the author of the given commit +// - triggerer = [required] Who and how triggered the pipeline type ActivePipeline struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -3825,14 +4054,15 @@ type ActivePipeline struct { GitRefType GitRefType `protobuf:"varint,27,opt,name=git_ref_type,json=gitRefType,proto3,enum=InternalApi.Plumber.GitRefType" json:"git_ref_type,omitempty"` CommitMessage string `protobuf:"bytes,28,opt,name=commit_message,json=commitMessage,proto3" json:"commit_message,omitempty"` // Commiter data used when they are not Semaphore users - CommiterUsername string `protobuf:"bytes,29,opt,name=commiter_username,json=commiterUsername,proto3" json:"commiter_username,omitempty"` - CommiterAvatarUrl string `protobuf:"bytes,30,opt,name=commiter_avatar_url,json=commiterAvatarUrl,proto3" json:"commiter_avatar_url,omitempty"` + CommiterUsername string `protobuf:"bytes,29,opt,name=commiter_username,json=commiterUsername,proto3" json:"commiter_username,omitempty"` + CommiterAvatarUrl string `protobuf:"bytes,30,opt,name=commiter_avatar_url,json=commiterAvatarUrl,proto3" json:"commiter_avatar_url,omitempty"` + Triggerer *Triggerer `protobuf:"bytes,31,opt,name=triggerer,proto3" json:"triggerer,omitempty"` } func (x *ActivePipeline) Reset() { *x = ActivePipeline{} if protoimpl.UnsafeEnabled { - mi := &file_plumber_pipeline_proto_msgTypes[26] + mi := &file_plumber_pipeline_proto_msgTypes[27] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3845,7 +4075,7 @@ func (x *ActivePipeline) String() string { func (*ActivePipeline) ProtoMessage() {} func (x *ActivePipeline) ProtoReflect() protoreflect.Message { - mi := &file_plumber_pipeline_proto_msgTypes[26] + mi := &file_plumber_pipeline_proto_msgTypes[27] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3858,7 +4088,7 @@ func (x *ActivePipeline) ProtoReflect() protoreflect.Message { // Deprecated: Use ActivePipeline.ProtoReflect.Descriptor instead. func (*ActivePipeline) Descriptor() ([]byte, []int) { - return file_plumber_pipeline_proto_rawDescGZIP(), []int{26} + return file_plumber_pipeline_proto_rawDescGZIP(), []int{27} } func (x *ActivePipeline) GetOrganizationId() string { @@ -4071,6 +4301,13 @@ func (x *ActivePipeline) GetCommiterAvatarUrl() string { return "" } +func (x *ActivePipeline) GetTriggerer() *Triggerer { + if x != nil { + return x.Triggerer + } + return nil +} + // Block details // // Fields: @@ -4106,7 +4343,7 @@ type BlockDetails struct { func (x *BlockDetails) Reset() { *x = BlockDetails{} if protoimpl.UnsafeEnabled { - mi := &file_plumber_pipeline_proto_msgTypes[27] + mi := &file_plumber_pipeline_proto_msgTypes[28] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4119,7 +4356,7 @@ func (x *BlockDetails) String() string { func (*BlockDetails) ProtoMessage() {} func (x *BlockDetails) ProtoReflect() protoreflect.Message { - mi := &file_plumber_pipeline_proto_msgTypes[27] + mi := &file_plumber_pipeline_proto_msgTypes[28] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4132,7 +4369,7 @@ func (x *BlockDetails) ProtoReflect() protoreflect.Message { // Deprecated: Use BlockDetails.ProtoReflect.Descriptor instead. func (*BlockDetails) Descriptor() ([]byte, []int) { - return file_plumber_pipeline_proto_rawDescGZIP(), []int{27} + return file_plumber_pipeline_proto_rawDescGZIP(), []int{28} } func (x *BlockDetails) GetBlockId() string { @@ -4235,7 +4472,7 @@ type RunNowRequest struct { func (x *RunNowRequest) Reset() { *x = RunNowRequest{} if protoimpl.UnsafeEnabled { - mi := &file_plumber_pipeline_proto_msgTypes[28] + mi := &file_plumber_pipeline_proto_msgTypes[29] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4248,7 +4485,7 @@ func (x *RunNowRequest) String() string { func (*RunNowRequest) ProtoMessage() {} func (x *RunNowRequest) ProtoReflect() protoreflect.Message { - mi := &file_plumber_pipeline_proto_msgTypes[28] + mi := &file_plumber_pipeline_proto_msgTypes[29] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4261,7 +4498,7 @@ func (x *RunNowRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use RunNowRequest.ProtoReflect.Descriptor instead. func (*RunNowRequest) Descriptor() ([]byte, []int) { - return file_plumber_pipeline_proto_rawDescGZIP(), []int{28} + return file_plumber_pipeline_proto_rawDescGZIP(), []int{29} } func (x *RunNowRequest) GetRequesterId() string { @@ -4311,7 +4548,7 @@ type RunNowResponse struct { func (x *RunNowResponse) Reset() { *x = RunNowResponse{} if protoimpl.UnsafeEnabled { - mi := &file_plumber_pipeline_proto_msgTypes[29] + mi := &file_plumber_pipeline_proto_msgTypes[30] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4324,7 +4561,7 @@ func (x *RunNowResponse) String() string { func (*RunNowResponse) ProtoMessage() {} func (x *RunNowResponse) ProtoReflect() protoreflect.Message { - mi := &file_plumber_pipeline_proto_msgTypes[29] + mi := &file_plumber_pipeline_proto_msgTypes[30] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4337,7 +4574,7 @@ func (x *RunNowResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use RunNowResponse.ProtoReflect.Descriptor instead. func (*RunNowResponse) Descriptor() ([]byte, []int) { - return file_plumber_pipeline_proto_rawDescGZIP(), []int{29} + return file_plumber_pipeline_proto_rawDescGZIP(), []int{30} } // GetProjectId call request @@ -4366,7 +4603,7 @@ type GetProjectIdRequest struct { func (x *GetProjectIdRequest) Reset() { *x = GetProjectIdRequest{} if protoimpl.UnsafeEnabled { - mi := &file_plumber_pipeline_proto_msgTypes[30] + mi := &file_plumber_pipeline_proto_msgTypes[31] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4379,7 +4616,7 @@ func (x *GetProjectIdRequest) String() string { func (*GetProjectIdRequest) ProtoMessage() {} func (x *GetProjectIdRequest) ProtoReflect() protoreflect.Message { - mi := &file_plumber_pipeline_proto_msgTypes[30] + mi := &file_plumber_pipeline_proto_msgTypes[31] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4392,7 +4629,7 @@ func (x *GetProjectIdRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetProjectIdRequest.ProtoReflect.Descriptor instead. func (*GetProjectIdRequest) Descriptor() ([]byte, []int) { - return file_plumber_pipeline_proto_rawDescGZIP(), []int{30} + return file_plumber_pipeline_proto_rawDescGZIP(), []int{31} } func (x *GetProjectIdRequest) GetPplId() string { @@ -4421,7 +4658,7 @@ type GetProjectIdResponse struct { func (x *GetProjectIdResponse) Reset() { *x = GetProjectIdResponse{} if protoimpl.UnsafeEnabled { - mi := &file_plumber_pipeline_proto_msgTypes[31] + mi := &file_plumber_pipeline_proto_msgTypes[32] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4434,7 +4671,7 @@ func (x *GetProjectIdResponse) String() string { func (*GetProjectIdResponse) ProtoMessage() {} func (x *GetProjectIdResponse) ProtoReflect() protoreflect.Message { - mi := &file_plumber_pipeline_proto_msgTypes[31] + mi := &file_plumber_pipeline_proto_msgTypes[32] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4447,7 +4684,7 @@ func (x *GetProjectIdResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use GetProjectIdResponse.ProtoReflect.Descriptor instead. func (*GetProjectIdResponse) Descriptor() ([]byte, []int) { - return file_plumber_pipeline_proto_rawDescGZIP(), []int{31} + return file_plumber_pipeline_proto_rawDescGZIP(), []int{32} } func (x *GetProjectIdResponse) GetResponseStatus() *ResponseStatus { @@ -4505,7 +4742,7 @@ type ValidateYamlRequest struct { func (x *ValidateYamlRequest) Reset() { *x = ValidateYamlRequest{} if protoimpl.UnsafeEnabled { - mi := &file_plumber_pipeline_proto_msgTypes[32] + mi := &file_plumber_pipeline_proto_msgTypes[33] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4518,7 +4755,7 @@ func (x *ValidateYamlRequest) String() string { func (*ValidateYamlRequest) ProtoMessage() {} func (x *ValidateYamlRequest) ProtoReflect() protoreflect.Message { - mi := &file_plumber_pipeline_proto_msgTypes[32] + mi := &file_plumber_pipeline_proto_msgTypes[33] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4531,7 +4768,7 @@ func (x *ValidateYamlRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ValidateYamlRequest.ProtoReflect.Descriptor instead. func (*ValidateYamlRequest) Descriptor() ([]byte, []int) { - return file_plumber_pipeline_proto_rawDescGZIP(), []int{32} + return file_plumber_pipeline_proto_rawDescGZIP(), []int{33} } func (x *ValidateYamlRequest) GetYamlDefinition() string { @@ -4569,7 +4806,7 @@ type ValidateYamlResponse struct { func (x *ValidateYamlResponse) Reset() { *x = ValidateYamlResponse{} if protoimpl.UnsafeEnabled { - mi := &file_plumber_pipeline_proto_msgTypes[33] + mi := &file_plumber_pipeline_proto_msgTypes[34] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4582,7 +4819,7 @@ func (x *ValidateYamlResponse) String() string { func (*ValidateYamlResponse) ProtoMessage() {} func (x *ValidateYamlResponse) ProtoReflect() protoreflect.Message { - mi := &file_plumber_pipeline_proto_msgTypes[33] + mi := &file_plumber_pipeline_proto_msgTypes[34] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4595,7 +4832,7 @@ func (x *ValidateYamlResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use ValidateYamlResponse.ProtoReflect.Descriptor instead. func (*ValidateYamlResponse) Descriptor() ([]byte, []int) { - return file_plumber_pipeline_proto_rawDescGZIP(), []int{33} + return file_plumber_pipeline_proto_rawDescGZIP(), []int{34} } func (x *ValidateYamlResponse) GetResponseStatus() *ResponseStatus { @@ -4621,18 +4858,19 @@ func (x *ValidateYamlResponse) GetPplId() string { // // Arguments: // -// - file_path = [required] Path inside repo of YAML file containing pipeline +// - file_path = [required] Path inside repo of YAML file containing pipeline // definition -// - ppl_id = [required] Id of pipeline from which repo and auth data +// - ppl_id = [required] Id of pipeline from which repo and auth data // will be used for scheduling -// - request_token = [required] Unique string, see Idempotency -// - env_variables = [optional] Env vars which will be added to ppl_env_vars +// - request_token = [required] Unique string, see Idempotency +// - env_variables = [optional] Env vars which will be added to ppl_env_vars // in this pipeline's jobs -// - prev_ppl_artefact_ids = [required] ppl_artefact_ids of previous pipelines in workflow -// - promoted_by = [required] ID of the user that triggered this +// - prev_ppl_artefact_ids = [required] ppl_artefact_ids of previous pipelines in workflow +// - promoted_by = [required] ID of the user that triggered this // (the value is 'auto' for auto-promoted pipelines) -// - auto_promoted = [required] true if extension was auto-promoted, otherwise it is false -// - secret_names = [optional] Secret names that will be added to global job configuration +// - auto_promoted = [required] true if extension was auto-promoted, otherwise it is false +// - secret_names = [optional] Secret names that will be added to global job configuration +// - deployment_target_id = [optional] Deployment Target ID that guarded promoted pipeline // // Preconditions: // - Pipeline with given ppl_id must already be scheduled @@ -4659,12 +4897,13 @@ type ScheduleExtensionRequest struct { PromotedBy string `protobuf:"bytes,7,opt,name=promoted_by,json=promotedBy,proto3" json:"promoted_by,omitempty"` AutoPromoted bool `protobuf:"varint,8,opt,name=auto_promoted,json=autoPromoted,proto3" json:"auto_promoted,omitempty"` SecretNames []string `protobuf:"bytes,9,rep,name=secret_names,json=secretNames,proto3" json:"secret_names,omitempty"` + DeploymentTargetId string `protobuf:"bytes,10,opt,name=deployment_target_id,json=deploymentTargetId,proto3" json:"deployment_target_id,omitempty"` } func (x *ScheduleExtensionRequest) Reset() { *x = ScheduleExtensionRequest{} if protoimpl.UnsafeEnabled { - mi := &file_plumber_pipeline_proto_msgTypes[34] + mi := &file_plumber_pipeline_proto_msgTypes[35] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4677,7 +4916,7 @@ func (x *ScheduleExtensionRequest) String() string { func (*ScheduleExtensionRequest) ProtoMessage() {} func (x *ScheduleExtensionRequest) ProtoReflect() protoreflect.Message { - mi := &file_plumber_pipeline_proto_msgTypes[34] + mi := &file_plumber_pipeline_proto_msgTypes[35] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4690,7 +4929,7 @@ func (x *ScheduleExtensionRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ScheduleExtensionRequest.ProtoReflect.Descriptor instead. func (*ScheduleExtensionRequest) Descriptor() ([]byte, []int) { - return file_plumber_pipeline_proto_rawDescGZIP(), []int{34} + return file_plumber_pipeline_proto_rawDescGZIP(), []int{35} } func (x *ScheduleExtensionRequest) GetFilePath() string { @@ -4749,6 +4988,13 @@ func (x *ScheduleExtensionRequest) GetSecretNames() []string { return nil } +func (x *ScheduleExtensionRequest) GetDeploymentTargetId() string { + if x != nil { + return x.DeploymentTargetId + } + return "" +} + // Type which models environment variables with name and string value type EnvVariable struct { state protoimpl.MessageState @@ -4762,7 +5008,7 @@ type EnvVariable struct { func (x *EnvVariable) Reset() { *x = EnvVariable{} if protoimpl.UnsafeEnabled { - mi := &file_plumber_pipeline_proto_msgTypes[35] + mi := &file_plumber_pipeline_proto_msgTypes[36] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4775,7 +5021,7 @@ func (x *EnvVariable) String() string { func (*EnvVariable) ProtoMessage() {} func (x *EnvVariable) ProtoReflect() protoreflect.Message { - mi := &file_plumber_pipeline_proto_msgTypes[35] + mi := &file_plumber_pipeline_proto_msgTypes[36] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4788,7 +5034,7 @@ func (x *EnvVariable) ProtoReflect() protoreflect.Message { // Deprecated: Use EnvVariable.ProtoReflect.Descriptor instead. func (*EnvVariable) Descriptor() ([]byte, []int) { - return file_plumber_pipeline_proto_rawDescGZIP(), []int{35} + return file_plumber_pipeline_proto_rawDescGZIP(), []int{36} } func (x *EnvVariable) GetName() string { @@ -4826,7 +5072,7 @@ type ScheduleExtensionResponse struct { func (x *ScheduleExtensionResponse) Reset() { *x = ScheduleExtensionResponse{} if protoimpl.UnsafeEnabled { - mi := &file_plumber_pipeline_proto_msgTypes[36] + mi := &file_plumber_pipeline_proto_msgTypes[37] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4839,7 +5085,7 @@ func (x *ScheduleExtensionResponse) String() string { func (*ScheduleExtensionResponse) ProtoMessage() {} func (x *ScheduleExtensionResponse) ProtoReflect() protoreflect.Message { - mi := &file_plumber_pipeline_proto_msgTypes[36] + mi := &file_plumber_pipeline_proto_msgTypes[37] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4852,7 +5098,7 @@ func (x *ScheduleExtensionResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use ScheduleExtensionResponse.ProtoReflect.Descriptor instead. func (*ScheduleExtensionResponse) Descriptor() ([]byte, []int) { - return file_plumber_pipeline_proto_rawDescGZIP(), []int{36} + return file_plumber_pipeline_proto_rawDescGZIP(), []int{37} } func (x *ScheduleExtensionResponse) GetResponseStatus() *ResponseStatus { @@ -4899,7 +5145,7 @@ type DeleteRequest struct { func (x *DeleteRequest) Reset() { *x = DeleteRequest{} if protoimpl.UnsafeEnabled { - mi := &file_plumber_pipeline_proto_msgTypes[37] + mi := &file_plumber_pipeline_proto_msgTypes[38] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4912,7 +5158,7 @@ func (x *DeleteRequest) String() string { func (*DeleteRequest) ProtoMessage() {} func (x *DeleteRequest) ProtoReflect() protoreflect.Message { - mi := &file_plumber_pipeline_proto_msgTypes[37] + mi := &file_plumber_pipeline_proto_msgTypes[38] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4925,7 +5171,7 @@ func (x *DeleteRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteRequest.ProtoReflect.Descriptor instead. func (*DeleteRequest) Descriptor() ([]byte, []int) { - return file_plumber_pipeline_proto_rawDescGZIP(), []int{37} + return file_plumber_pipeline_proto_rawDescGZIP(), []int{38} } func (x *DeleteRequest) GetProjectId() string { @@ -4958,7 +5204,7 @@ type DeleteResponse struct { func (x *DeleteResponse) Reset() { *x = DeleteResponse{} if protoimpl.UnsafeEnabled { - mi := &file_plumber_pipeline_proto_msgTypes[38] + mi := &file_plumber_pipeline_proto_msgTypes[39] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4971,7 +5217,7 @@ func (x *DeleteResponse) String() string { func (*DeleteResponse) ProtoMessage() {} func (x *DeleteResponse) ProtoReflect() protoreflect.Message { - mi := &file_plumber_pipeline_proto_msgTypes[38] + mi := &file_plumber_pipeline_proto_msgTypes[39] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4984,7 +5230,7 @@ func (x *DeleteResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteResponse.ProtoReflect.Descriptor instead. func (*DeleteResponse) Descriptor() ([]byte, []int) { - return file_plumber_pipeline_proto_rawDescGZIP(), []int{38} + return file_plumber_pipeline_proto_rawDescGZIP(), []int{39} } func (x *DeleteResponse) GetStatus() *ResponseStatus { @@ -5031,7 +5277,7 @@ type PartialRebuildRequest struct { func (x *PartialRebuildRequest) Reset() { *x = PartialRebuildRequest{} if protoimpl.UnsafeEnabled { - mi := &file_plumber_pipeline_proto_msgTypes[39] + mi := &file_plumber_pipeline_proto_msgTypes[40] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -5044,7 +5290,7 @@ func (x *PartialRebuildRequest) String() string { func (*PartialRebuildRequest) ProtoMessage() {} func (x *PartialRebuildRequest) ProtoReflect() protoreflect.Message { - mi := &file_plumber_pipeline_proto_msgTypes[39] + mi := &file_plumber_pipeline_proto_msgTypes[40] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -5057,7 +5303,7 @@ func (x *PartialRebuildRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use PartialRebuildRequest.ProtoReflect.Descriptor instead. func (*PartialRebuildRequest) Descriptor() ([]byte, []int) { - return file_plumber_pipeline_proto_rawDescGZIP(), []int{39} + return file_plumber_pipeline_proto_rawDescGZIP(), []int{40} } func (x *PartialRebuildRequest) GetPplId() string { @@ -5103,7 +5349,7 @@ type PartialRebuildResponse struct { func (x *PartialRebuildResponse) Reset() { *x = PartialRebuildResponse{} if protoimpl.UnsafeEnabled { - mi := &file_plumber_pipeline_proto_msgTypes[40] + mi := &file_plumber_pipeline_proto_msgTypes[41] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -5116,7 +5362,7 @@ func (x *PartialRebuildResponse) String() string { func (*PartialRebuildResponse) ProtoMessage() {} func (x *PartialRebuildResponse) ProtoReflect() protoreflect.Message { - mi := &file_plumber_pipeline_proto_msgTypes[40] + mi := &file_plumber_pipeline_proto_msgTypes[41] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -5129,7 +5375,7 @@ func (x *PartialRebuildResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use PartialRebuildResponse.ProtoReflect.Descriptor instead. func (*PartialRebuildResponse) Descriptor() ([]byte, []int) { - return file_plumber_pipeline_proto_rawDescGZIP(), []int{40} + return file_plumber_pipeline_proto_rawDescGZIP(), []int{41} } func (x *PartialRebuildResponse) GetResponseStatus() *ResponseStatus { @@ -5169,7 +5415,7 @@ type VersionRequest struct { func (x *VersionRequest) Reset() { *x = VersionRequest{} if protoimpl.UnsafeEnabled { - mi := &file_plumber_pipeline_proto_msgTypes[41] + mi := &file_plumber_pipeline_proto_msgTypes[42] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -5182,7 +5428,7 @@ func (x *VersionRequest) String() string { func (*VersionRequest) ProtoMessage() {} func (x *VersionRequest) ProtoReflect() protoreflect.Message { - mi := &file_plumber_pipeline_proto_msgTypes[41] + mi := &file_plumber_pipeline_proto_msgTypes[42] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -5195,7 +5441,7 @@ func (x *VersionRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use VersionRequest.ProtoReflect.Descriptor instead. func (*VersionRequest) Descriptor() ([]byte, []int) { - return file_plumber_pipeline_proto_rawDescGZIP(), []int{41} + return file_plumber_pipeline_proto_rawDescGZIP(), []int{42} } // Version call response @@ -5213,7 +5459,7 @@ type VersionResponse struct { func (x *VersionResponse) Reset() { *x = VersionResponse{} if protoimpl.UnsafeEnabled { - mi := &file_plumber_pipeline_proto_msgTypes[42] + mi := &file_plumber_pipeline_proto_msgTypes[43] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -5226,7 +5472,7 @@ func (x *VersionResponse) String() string { func (*VersionResponse) ProtoMessage() {} func (x *VersionResponse) ProtoReflect() protoreflect.Message { - mi := &file_plumber_pipeline_proto_msgTypes[42] + mi := &file_plumber_pipeline_proto_msgTypes[43] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -5239,7 +5485,7 @@ func (x *VersionResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use VersionResponse.ProtoReflect.Descriptor instead. func (*VersionResponse) Descriptor() ([]byte, []int) { - return file_plumber_pipeline_proto_rawDescGZIP(), []int{42} + return file_plumber_pipeline_proto_rawDescGZIP(), []int{43} } func (x *VersionResponse) GetVersion() string { @@ -5261,7 +5507,7 @@ type ResponseStatus struct { func (x *ResponseStatus) Reset() { *x = ResponseStatus{} if protoimpl.UnsafeEnabled { - mi := &file_plumber_pipeline_proto_msgTypes[43] + mi := &file_plumber_pipeline_proto_msgTypes[44] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -5274,7 +5520,7 @@ func (x *ResponseStatus) String() string { func (*ResponseStatus) ProtoMessage() {} func (x *ResponseStatus) ProtoReflect() protoreflect.Message { - mi := &file_plumber_pipeline_proto_msgTypes[43] + mi := &file_plumber_pipeline_proto_msgTypes[44] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -5287,7 +5533,7 @@ func (x *ResponseStatus) ProtoReflect() protoreflect.Message { // Deprecated: Use ResponseStatus.ProtoReflect.Descriptor instead. func (*ResponseStatus) Descriptor() ([]byte, []int) { - return file_plumber_pipeline_proto_rawDescGZIP(), []int{43} + return file_plumber_pipeline_proto_rawDescGZIP(), []int{44} } func (x *ResponseStatus) GetCode() ResponseStatus_ResponseCode { @@ -5347,7 +5593,7 @@ type PipelineEvent struct { func (x *PipelineEvent) Reset() { *x = PipelineEvent{} if protoimpl.UnsafeEnabled { - mi := &file_plumber_pipeline_proto_msgTypes[44] + mi := &file_plumber_pipeline_proto_msgTypes[45] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -5360,7 +5606,7 @@ func (x *PipelineEvent) String() string { func (*PipelineEvent) ProtoMessage() {} func (x *PipelineEvent) ProtoReflect() protoreflect.Message { - mi := &file_plumber_pipeline_proto_msgTypes[44] + mi := &file_plumber_pipeline_proto_msgTypes[45] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -5373,7 +5619,7 @@ func (x *PipelineEvent) ProtoReflect() protoreflect.Message { // Deprecated: Use PipelineEvent.ProtoReflect.Descriptor instead. func (*PipelineEvent) Descriptor() ([]byte, []int) { - return file_plumber_pipeline_proto_rawDescGZIP(), []int{44} + return file_plumber_pipeline_proto_rawDescGZIP(), []int{45} } func (x *PipelineEvent) GetPipelineId() string { @@ -5426,7 +5672,7 @@ type PipelineBlockEvent struct { func (x *PipelineBlockEvent) Reset() { *x = PipelineBlockEvent{} if protoimpl.UnsafeEnabled { - mi := &file_plumber_pipeline_proto_msgTypes[45] + mi := &file_plumber_pipeline_proto_msgTypes[46] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -5439,7 +5685,7 @@ func (x *PipelineBlockEvent) String() string { func (*PipelineBlockEvent) ProtoMessage() {} func (x *PipelineBlockEvent) ProtoReflect() protoreflect.Message { - mi := &file_plumber_pipeline_proto_msgTypes[45] + mi := &file_plumber_pipeline_proto_msgTypes[46] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -5452,7 +5698,7 @@ func (x *PipelineBlockEvent) ProtoReflect() protoreflect.Message { // Deprecated: Use PipelineBlockEvent.ProtoReflect.Descriptor instead. func (*PipelineBlockEvent) Descriptor() ([]byte, []int) { - return file_plumber_pipeline_proto_rawDescGZIP(), []int{45} + return file_plumber_pipeline_proto_rawDescGZIP(), []int{46} } func (x *PipelineBlockEvent) GetPipelineId() string { @@ -5507,7 +5753,7 @@ type AfterPipeline struct { func (x *AfterPipeline) Reset() { *x = AfterPipeline{} if protoimpl.UnsafeEnabled { - mi := &file_plumber_pipeline_proto_msgTypes[46] + mi := &file_plumber_pipeline_proto_msgTypes[47] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -5520,7 +5766,7 @@ func (x *AfterPipeline) String() string { func (*AfterPipeline) ProtoMessage() {} func (x *AfterPipeline) ProtoReflect() protoreflect.Message { - mi := &file_plumber_pipeline_proto_msgTypes[46] + mi := &file_plumber_pipeline_proto_msgTypes[47] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -5533,7 +5779,7 @@ func (x *AfterPipeline) ProtoReflect() protoreflect.Message { // Deprecated: Use AfterPipeline.ProtoReflect.Descriptor instead. func (*AfterPipeline) Descriptor() ([]byte, []int) { - return file_plumber_pipeline_proto_rawDescGZIP(), []int{46} + return file_plumber_pipeline_proto_rawDescGZIP(), []int{47} } func (x *AfterPipeline) GetPipelineId() string { @@ -5601,7 +5847,7 @@ type AfterPipelineEvent struct { func (x *AfterPipelineEvent) Reset() { *x = AfterPipelineEvent{} if protoimpl.UnsafeEnabled { - mi := &file_plumber_pipeline_proto_msgTypes[47] + mi := &file_plumber_pipeline_proto_msgTypes[48] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -5614,7 +5860,7 @@ func (x *AfterPipelineEvent) String() string { func (*AfterPipelineEvent) ProtoMessage() {} func (x *AfterPipelineEvent) ProtoReflect() protoreflect.Message { - mi := &file_plumber_pipeline_proto_msgTypes[47] + mi := &file_plumber_pipeline_proto_msgTypes[48] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -5627,7 +5873,7 @@ func (x *AfterPipelineEvent) ProtoReflect() protoreflect.Message { // Deprecated: Use AfterPipelineEvent.ProtoReflect.Descriptor instead. func (*AfterPipelineEvent) Descriptor() ([]byte, []int) { - return file_plumber_pipeline_proto_rawDescGZIP(), []int{47} + return file_plumber_pipeline_proto_rawDescGZIP(), []int{48} } func (x *AfterPipelineEvent) GetPipelineId() string { @@ -5665,7 +5911,7 @@ type ScheduleRequest_Repo struct { func (x *ScheduleRequest_Repo) Reset() { *x = ScheduleRequest_Repo{} if protoimpl.UnsafeEnabled { - mi := &file_plumber_pipeline_proto_msgTypes[48] + mi := &file_plumber_pipeline_proto_msgTypes[49] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -5678,7 +5924,7 @@ func (x *ScheduleRequest_Repo) String() string { func (*ScheduleRequest_Repo) ProtoMessage() {} func (x *ScheduleRequest_Repo) ProtoReflect() protoreflect.Message { - mi := &file_plumber_pipeline_proto_msgTypes[48] + mi := &file_plumber_pipeline_proto_msgTypes[49] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -5735,7 +5981,7 @@ type ScheduleRequest_Auth struct { func (x *ScheduleRequest_Auth) Reset() { *x = ScheduleRequest_Auth{} if protoimpl.UnsafeEnabled { - mi := &file_plumber_pipeline_proto_msgTypes[49] + mi := &file_plumber_pipeline_proto_msgTypes[50] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -5748,7 +5994,7 @@ func (x *ScheduleRequest_Auth) String() string { func (*ScheduleRequest_Auth) ProtoMessage() {} func (x *ScheduleRequest_Auth) ProtoReflect() protoreflect.Message { - mi := &file_plumber_pipeline_proto_msgTypes[49] + mi := &file_plumber_pipeline_proto_msgTypes[50] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -5807,7 +6053,7 @@ type Block_Job struct { func (x *Block_Job) Reset() { *x = Block_Job{} if protoimpl.UnsafeEnabled { - mi := &file_plumber_pipeline_proto_msgTypes[50] + mi := &file_plumber_pipeline_proto_msgTypes[51] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -5820,7 +6066,7 @@ func (x *Block_Job) String() string { func (*Block_Job) ProtoMessage() {} func (x *Block_Job) ProtoReflect() protoreflect.Message { - mi := &file_plumber_pipeline_proto_msgTypes[50] + mi := &file_plumber_pipeline_proto_msgTypes[51] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -5891,7 +6137,7 @@ type DescribeTopologyResponse_Block struct { func (x *DescribeTopologyResponse_Block) Reset() { *x = DescribeTopologyResponse_Block{} if protoimpl.UnsafeEnabled { - mi := &file_plumber_pipeline_proto_msgTypes[51] + mi := &file_plumber_pipeline_proto_msgTypes[52] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -5904,7 +6150,7 @@ func (x *DescribeTopologyResponse_Block) String() string { func (*DescribeTopologyResponse_Block) ProtoMessage() {} func (x *DescribeTopologyResponse_Block) ProtoReflect() protoreflect.Message { - mi := &file_plumber_pipeline_proto_msgTypes[51] + mi := &file_plumber_pipeline_proto_msgTypes[52] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -5952,7 +6198,7 @@ type DescribeTopologyResponse_AfterPipeline struct { func (x *DescribeTopologyResponse_AfterPipeline) Reset() { *x = DescribeTopologyResponse_AfterPipeline{} if protoimpl.UnsafeEnabled { - mi := &file_plumber_pipeline_proto_msgTypes[52] + mi := &file_plumber_pipeline_proto_msgTypes[53] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -5965,7 +6211,7 @@ func (x *DescribeTopologyResponse_AfterPipeline) String() string { func (*DescribeTopologyResponse_AfterPipeline) ProtoMessage() {} func (x *DescribeTopologyResponse_AfterPipeline) ProtoReflect() protoreflect.Message { - mi := &file_plumber_pipeline_proto_msgTypes[52] + mi := &file_plumber_pipeline_proto_msgTypes[53] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -6008,7 +6254,7 @@ type BlockDetails_JobDetails struct { func (x *BlockDetails_JobDetails) Reset() { *x = BlockDetails_JobDetails{} if protoimpl.UnsafeEnabled { - mi := &file_plumber_pipeline_proto_msgTypes[53] + mi := &file_plumber_pipeline_proto_msgTypes[54] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -6021,7 +6267,7 @@ func (x *BlockDetails_JobDetails) String() string { func (*BlockDetails_JobDetails) ProtoMessage() {} func (x *BlockDetails_JobDetails) ProtoReflect() protoreflect.Message { - mi := &file_plumber_pipeline_proto_msgTypes[53] + mi := &file_plumber_pipeline_proto_msgTypes[54] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -6034,7 +6280,7 @@ func (x *BlockDetails_JobDetails) ProtoReflect() protoreflect.Message { // Deprecated: Use BlockDetails_JobDetails.ProtoReflect.Descriptor instead. func (*BlockDetails_JobDetails) Descriptor() ([]byte, []int) { - return file_plumber_pipeline_proto_rawDescGZIP(), []int{27, 0} + return file_plumber_pipeline_proto_rawDescGZIP(), []int{28, 0} } func (x *BlockDetails_JobDetails) GetName() string { @@ -6300,7 +6546,7 @@ var file_plumber_pipeline_proto_rawDesc = []byte{ 0x69, 0x65, 0x73, 0x18, 0x05, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0c, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x45, 0x6e, 0x74, 0x72, 0x69, 0x65, 0x73, 0x12, 0x1f, 0x0a, 0x0b, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x70, 0x61, 0x67, 0x65, 0x73, 0x18, 0x06, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0a, 0x74, 0x6f, - 0x74, 0x61, 0x6c, 0x50, 0x61, 0x67, 0x65, 0x73, 0x22, 0xf6, 0x05, 0x0a, 0x11, 0x4c, 0x69, 0x73, + 0x74, 0x61, 0x6c, 0x50, 0x61, 0x67, 0x65, 0x73, 0x22, 0xc6, 0x06, 0x0a, 0x11, 0x4c, 0x69, 0x73, 0x74, 0x4b, 0x65, 0x79, 0x73, 0x65, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x70, @@ -6343,7 +6589,12 @@ var file_plumber_pipeline_proto_rawDesc = []byte{ 0x75, 0x6d, 0x62, 0x65, 0x72, 0x2e, 0x47, 0x69, 0x74, 0x52, 0x65, 0x66, 0x54, 0x79, 0x70, 0x65, 0x52, 0x0b, 0x67, 0x69, 0x74, 0x52, 0x65, 0x66, 0x54, 0x79, 0x70, 0x65, 0x73, 0x12, 0x19, 0x0a, 0x08, 0x71, 0x75, 0x65, 0x75, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x09, 0x52, - 0x07, 0x71, 0x75, 0x65, 0x75, 0x65, 0x49, 0x64, 0x22, 0x22, 0x0a, 0x05, 0x4f, 0x72, 0x64, 0x65, + 0x07, 0x71, 0x75, 0x65, 0x75, 0x65, 0x49, 0x64, 0x12, 0x24, 0x0a, 0x0e, 0x70, 0x72, 0x5f, 0x68, + 0x65, 0x61, 0x64, 0x5f, 0x62, 0x72, 0x61, 0x6e, 0x63, 0x68, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x09, + 0x52, 0x0c, 0x70, 0x72, 0x48, 0x65, 0x61, 0x64, 0x42, 0x72, 0x61, 0x6e, 0x63, 0x68, 0x12, 0x28, + 0x0a, 0x10, 0x70, 0x72, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x62, 0x72, 0x61, 0x6e, + 0x63, 0x68, 0x18, 0x10, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x70, 0x72, 0x54, 0x61, 0x72, 0x67, + 0x65, 0x74, 0x42, 0x72, 0x61, 0x6e, 0x63, 0x68, 0x22, 0x22, 0x0a, 0x05, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x12, 0x19, 0x0a, 0x15, 0x42, 0x59, 0x5f, 0x43, 0x52, 0x45, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x54, 0x49, 0x4d, 0x45, 0x5f, 0x44, 0x45, 0x53, 0x43, 0x10, 0x00, 0x22, 0x23, 0x0a, 0x09, 0x44, 0x69, 0x72, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x08, 0x0a, 0x04, 0x4e, 0x45, 0x58, @@ -6358,7 +6609,7 @@ var file_plumber_pipeline_proto_rawDesc = []byte{ 0x6e, 0x65, 0x78, 0x74, 0x50, 0x61, 0x67, 0x65, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x12, 0x2e, 0x0a, 0x13, 0x70, 0x72, 0x65, 0x76, 0x69, 0x6f, 0x75, 0x73, 0x5f, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x11, 0x70, 0x72, 0x65, 0x76, - 0x69, 0x6f, 0x75, 0x73, 0x50, 0x61, 0x67, 0x65, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x22, 0xa9, 0x04, + 0x69, 0x6f, 0x75, 0x73, 0x50, 0x61, 0x67, 0x65, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x22, 0xf9, 0x04, 0x0a, 0x0b, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x1f, 0x0a, 0x0b, @@ -6393,7 +6644,12 @@ var file_plumber_pipeline_proto_rawDesc = []byte{ 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x2e, 0x47, 0x69, 0x74, 0x52, 0x65, 0x66, 0x54, 0x79, 0x70, 0x65, 0x52, 0x0b, 0x67, 0x69, 0x74, 0x52, 0x65, 0x66, 0x54, 0x79, 0x70, 0x65, 0x73, 0x12, 0x19, 0x0a, 0x08, 0x71, 0x75, 0x65, 0x75, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x09, - 0x52, 0x07, 0x71, 0x75, 0x65, 0x75, 0x65, 0x49, 0x64, 0x22, 0x9d, 0x02, 0x0a, 0x0c, 0x4c, 0x69, + 0x52, 0x07, 0x71, 0x75, 0x65, 0x75, 0x65, 0x49, 0x64, 0x12, 0x24, 0x0a, 0x0e, 0x70, 0x72, 0x5f, + 0x68, 0x65, 0x61, 0x64, 0x5f, 0x62, 0x72, 0x61, 0x6e, 0x63, 0x68, 0x18, 0x0e, 0x20, 0x01, 0x28, + 0x09, 0x52, 0x0c, 0x70, 0x72, 0x48, 0x65, 0x61, 0x64, 0x42, 0x72, 0x61, 0x6e, 0x63, 0x68, 0x12, + 0x28, 0x0a, 0x10, 0x70, 0x72, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x62, 0x72, 0x61, + 0x6e, 0x63, 0x68, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x70, 0x72, 0x54, 0x61, 0x72, + 0x67, 0x65, 0x74, 0x42, 0x72, 0x61, 0x6e, 0x63, 0x68, 0x22, 0x9d, 0x02, 0x0a, 0x0c, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x4c, 0x0a, 0x0f, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x23, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, @@ -6424,7 +6680,7 @@ var file_plumber_pipeline_proto_rawDesc = []byte{ 0x12, 0x32, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x1e, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x2e, 0x51, 0x75, 0x65, 0x75, 0x65, 0x54, 0x79, 0x70, 0x65, 0x52, 0x04, - 0x74, 0x79, 0x70, 0x65, 0x22, 0xdf, 0x0d, 0x0a, 0x08, 0x50, 0x69, 0x70, 0x65, 0x6c, 0x69, 0x6e, + 0x74, 0x79, 0x70, 0x65, 0x22, 0xc6, 0x0e, 0x0a, 0x08, 0x50, 0x69, 0x70, 0x65, 0x6c, 0x69, 0x6e, 0x65, 0x12, 0x15, 0x0a, 0x06, 0x70, 0x70, 0x6c, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x70, 0x70, 0x6c, 0x49, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1d, 0x0a, 0x0a, @@ -6516,515 +6772,570 @@ var file_plumber_pipeline_proto_rawDesc = []byte{ 0x6e, 0x76, 0x5f, 0x76, 0x61, 0x72, 0x73, 0x18, 0x22, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x20, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x2e, 0x45, 0x6e, 0x76, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x52, - 0x07, 0x65, 0x6e, 0x76, 0x56, 0x61, 0x72, 0x73, 0x22, 0x58, 0x0a, 0x05, 0x53, 0x74, 0x61, 0x74, - 0x65, 0x12, 0x10, 0x0a, 0x0c, 0x49, 0x4e, 0x49, 0x54, 0x49, 0x41, 0x4c, 0x49, 0x5a, 0x49, 0x4e, - 0x47, 0x10, 0x00, 0x12, 0x0b, 0x0a, 0x07, 0x50, 0x45, 0x4e, 0x44, 0x49, 0x4e, 0x47, 0x10, 0x01, - 0x12, 0x0b, 0x0a, 0x07, 0x51, 0x55, 0x45, 0x55, 0x49, 0x4e, 0x47, 0x10, 0x02, 0x12, 0x0b, 0x0a, - 0x07, 0x52, 0x55, 0x4e, 0x4e, 0x49, 0x4e, 0x47, 0x10, 0x03, 0x12, 0x0c, 0x0a, 0x08, 0x53, 0x54, - 0x4f, 0x50, 0x50, 0x49, 0x4e, 0x47, 0x10, 0x04, 0x12, 0x08, 0x0a, 0x04, 0x44, 0x4f, 0x4e, 0x45, - 0x10, 0x05, 0x22, 0x3b, 0x0a, 0x06, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x0a, 0x0a, 0x06, - 0x50, 0x41, 0x53, 0x53, 0x45, 0x44, 0x10, 0x00, 0x12, 0x0b, 0x0a, 0x07, 0x53, 0x54, 0x4f, 0x50, - 0x50, 0x45, 0x44, 0x10, 0x01, 0x12, 0x0c, 0x0a, 0x08, 0x43, 0x41, 0x4e, 0x43, 0x45, 0x4c, 0x45, - 0x44, 0x10, 0x02, 0x12, 0x0a, 0x0a, 0x06, 0x46, 0x41, 0x49, 0x4c, 0x45, 0x44, 0x10, 0x03, 0x22, - 0x84, 0x01, 0x0a, 0x0c, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x65, 0x61, 0x73, 0x6f, 0x6e, - 0x12, 0x08, 0x0a, 0x04, 0x54, 0x45, 0x53, 0x54, 0x10, 0x00, 0x12, 0x0d, 0x0a, 0x09, 0x4d, 0x41, - 0x4c, 0x46, 0x4f, 0x52, 0x4d, 0x45, 0x44, 0x10, 0x01, 0x12, 0x09, 0x0a, 0x05, 0x53, 0x54, 0x55, - 0x43, 0x4b, 0x10, 0x02, 0x12, 0x08, 0x0a, 0x04, 0x55, 0x53, 0x45, 0x52, 0x10, 0x03, 0x12, 0x0c, - 0x0a, 0x08, 0x49, 0x4e, 0x54, 0x45, 0x52, 0x4e, 0x41, 0x4c, 0x10, 0x04, 0x12, 0x0c, 0x0a, 0x08, - 0x53, 0x54, 0x52, 0x41, 0x54, 0x45, 0x47, 0x59, 0x10, 0x05, 0x12, 0x10, 0x0a, 0x0c, 0x46, 0x41, - 0x53, 0x54, 0x5f, 0x46, 0x41, 0x49, 0x4c, 0x49, 0x4e, 0x47, 0x10, 0x06, 0x12, 0x0b, 0x0a, 0x07, - 0x44, 0x45, 0x4c, 0x45, 0x54, 0x45, 0x44, 0x10, 0x07, 0x12, 0x0b, 0x0a, 0x07, 0x54, 0x49, 0x4d, - 0x45, 0x4f, 0x55, 0x54, 0x10, 0x08, 0x22, 0xdb, 0x02, 0x0a, 0x13, 0x4c, 0x69, 0x73, 0x74, 0x41, - 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, - 0x0a, 0x09, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, - 0x05, 0x52, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x70, - 0x61, 0x67, 0x65, 0x5f, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, - 0x09, 0x70, 0x61, 0x67, 0x65, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x12, 0x44, 0x0a, 0x05, 0x6f, 0x72, - 0x64, 0x65, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2e, 0x2e, 0x49, 0x6e, 0x74, 0x65, - 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x2e, - 0x4c, 0x69, 0x73, 0x74, 0x41, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x52, 0x65, 0x71, 0x75, - 0x65, 0x73, 0x74, 0x2e, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x52, 0x05, 0x6f, 0x72, 0x64, 0x65, 0x72, - 0x12, 0x27, 0x0a, 0x0f, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, - 0x5f, 0x69, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x6f, 0x72, 0x67, 0x61, 0x6e, - 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x50, 0x0a, 0x09, 0x64, 0x69, 0x72, - 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x32, 0x2e, 0x49, - 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, - 0x65, 0x72, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x41, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x52, - 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x44, 0x69, 0x72, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, - 0x52, 0x09, 0x64, 0x69, 0x72, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x22, 0x0a, 0x05, 0x4f, - 0x72, 0x64, 0x65, 0x72, 0x12, 0x19, 0x0a, 0x15, 0x42, 0x59, 0x5f, 0x43, 0x52, 0x45, 0x41, 0x54, - 0x49, 0x4f, 0x4e, 0x5f, 0x54, 0x49, 0x4d, 0x45, 0x5f, 0x44, 0x45, 0x53, 0x43, 0x10, 0x00, 0x22, - 0x23, 0x0a, 0x09, 0x44, 0x69, 0x72, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x08, 0x0a, 0x04, - 0x4e, 0x45, 0x58, 0x54, 0x10, 0x00, 0x12, 0x0c, 0x0a, 0x08, 0x50, 0x52, 0x45, 0x56, 0x49, 0x4f, - 0x55, 0x53, 0x10, 0x01, 0x22, 0xb1, 0x01, 0x0a, 0x14, 0x4c, 0x69, 0x73, 0x74, 0x41, 0x63, 0x74, - 0x69, 0x76, 0x69, 0x74, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x26, 0x0a, - 0x0f, 0x6e, 0x65, 0x78, 0x74, 0x5f, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x74, 0x6f, 0x6b, 0x65, 0x6e, - 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x6e, 0x65, 0x78, 0x74, 0x50, 0x61, 0x67, 0x65, - 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x12, 0x2e, 0x0a, 0x13, 0x70, 0x72, 0x65, 0x76, 0x69, 0x6f, 0x75, - 0x73, 0x5f, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x18, 0x02, 0x20, 0x01, - 0x28, 0x09, 0x52, 0x11, 0x70, 0x72, 0x65, 0x76, 0x69, 0x6f, 0x75, 0x73, 0x50, 0x61, 0x67, 0x65, - 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x12, 0x41, 0x0a, 0x09, 0x70, 0x69, 0x70, 0x65, 0x6c, 0x69, 0x6e, - 0x65, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x23, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, - 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x2e, 0x41, - 0x63, 0x74, 0x69, 0x76, 0x65, 0x50, 0x69, 0x70, 0x65, 0x6c, 0x69, 0x6e, 0x65, 0x52, 0x09, 0x70, - 0x69, 0x70, 0x65, 0x6c, 0x69, 0x6e, 0x65, 0x73, 0x22, 0x86, 0x02, 0x0a, 0x15, 0x4c, 0x69, 0x73, - 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x65, 0x72, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, - 0x73, 0x74, 0x12, 0x27, 0x0a, 0x0f, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, - 0x6f, 0x6e, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x6f, 0x72, 0x67, - 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x70, + 0x07, 0x65, 0x6e, 0x76, 0x56, 0x61, 0x72, 0x73, 0x12, 0x3c, 0x0a, 0x09, 0x74, 0x72, 0x69, 0x67, + 0x67, 0x65, 0x72, 0x65, 0x72, 0x18, 0x23, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1e, 0x2e, 0x49, 0x6e, + 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, + 0x72, 0x2e, 0x54, 0x72, 0x69, 0x67, 0x67, 0x65, 0x72, 0x65, 0x72, 0x52, 0x09, 0x74, 0x72, 0x69, + 0x67, 0x67, 0x65, 0x72, 0x65, 0x72, 0x12, 0x27, 0x0a, 0x0f, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, + 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x64, 0x18, 0x24, 0x20, 0x01, 0x28, 0x09, 0x52, + 0x0e, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x22, + 0x58, 0x0a, 0x05, 0x53, 0x74, 0x61, 0x74, 0x65, 0x12, 0x10, 0x0a, 0x0c, 0x49, 0x4e, 0x49, 0x54, + 0x49, 0x41, 0x4c, 0x49, 0x5a, 0x49, 0x4e, 0x47, 0x10, 0x00, 0x12, 0x0b, 0x0a, 0x07, 0x50, 0x45, + 0x4e, 0x44, 0x49, 0x4e, 0x47, 0x10, 0x01, 0x12, 0x0b, 0x0a, 0x07, 0x51, 0x55, 0x45, 0x55, 0x49, + 0x4e, 0x47, 0x10, 0x02, 0x12, 0x0b, 0x0a, 0x07, 0x52, 0x55, 0x4e, 0x4e, 0x49, 0x4e, 0x47, 0x10, + 0x03, 0x12, 0x0c, 0x0a, 0x08, 0x53, 0x54, 0x4f, 0x50, 0x50, 0x49, 0x4e, 0x47, 0x10, 0x04, 0x12, + 0x08, 0x0a, 0x04, 0x44, 0x4f, 0x4e, 0x45, 0x10, 0x05, 0x22, 0x3b, 0x0a, 0x06, 0x52, 0x65, 0x73, + 0x75, 0x6c, 0x74, 0x12, 0x0a, 0x0a, 0x06, 0x50, 0x41, 0x53, 0x53, 0x45, 0x44, 0x10, 0x00, 0x12, + 0x0b, 0x0a, 0x07, 0x53, 0x54, 0x4f, 0x50, 0x50, 0x45, 0x44, 0x10, 0x01, 0x12, 0x0c, 0x0a, 0x08, + 0x43, 0x41, 0x4e, 0x43, 0x45, 0x4c, 0x45, 0x44, 0x10, 0x02, 0x12, 0x0a, 0x0a, 0x06, 0x46, 0x41, + 0x49, 0x4c, 0x45, 0x44, 0x10, 0x03, 0x22, 0x84, 0x01, 0x0a, 0x0c, 0x52, 0x65, 0x73, 0x75, 0x6c, + 0x74, 0x52, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x12, 0x08, 0x0a, 0x04, 0x54, 0x45, 0x53, 0x54, 0x10, + 0x00, 0x12, 0x0d, 0x0a, 0x09, 0x4d, 0x41, 0x4c, 0x46, 0x4f, 0x52, 0x4d, 0x45, 0x44, 0x10, 0x01, + 0x12, 0x09, 0x0a, 0x05, 0x53, 0x54, 0x55, 0x43, 0x4b, 0x10, 0x02, 0x12, 0x08, 0x0a, 0x04, 0x55, + 0x53, 0x45, 0x52, 0x10, 0x03, 0x12, 0x0c, 0x0a, 0x08, 0x49, 0x4e, 0x54, 0x45, 0x52, 0x4e, 0x41, + 0x4c, 0x10, 0x04, 0x12, 0x0c, 0x0a, 0x08, 0x53, 0x54, 0x52, 0x41, 0x54, 0x45, 0x47, 0x59, 0x10, + 0x05, 0x12, 0x10, 0x0a, 0x0c, 0x46, 0x41, 0x53, 0x54, 0x5f, 0x46, 0x41, 0x49, 0x4c, 0x49, 0x4e, + 0x47, 0x10, 0x06, 0x12, 0x0b, 0x0a, 0x07, 0x44, 0x45, 0x4c, 0x45, 0x54, 0x45, 0x44, 0x10, 0x07, + 0x12, 0x0b, 0x0a, 0x07, 0x54, 0x49, 0x4d, 0x45, 0x4f, 0x55, 0x54, 0x10, 0x08, 0x22, 0xc0, 0x04, + 0x0a, 0x09, 0x54, 0x72, 0x69, 0x67, 0x67, 0x65, 0x72, 0x65, 0x72, 0x12, 0x4a, 0x0a, 0x0f, 0x77, + 0x66, 0x5f, 0x74, 0x72, 0x69, 0x67, 0x67, 0x65, 0x72, 0x65, 0x64, 0x5f, 0x62, 0x79, 0x18, 0x01, + 0x20, 0x01, 0x28, 0x0e, 0x32, 0x22, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, + 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x57, 0x46, 0x2e, 0x54, 0x72, 0x69, + 0x67, 0x67, 0x65, 0x72, 0x65, 0x64, 0x42, 0x79, 0x52, 0x0d, 0x77, 0x66, 0x54, 0x72, 0x69, 0x67, + 0x67, 0x65, 0x72, 0x65, 0x64, 0x42, 0x79, 0x12, 0x26, 0x0a, 0x0f, 0x77, 0x66, 0x5f, 0x74, 0x72, + 0x69, 0x67, 0x67, 0x65, 0x72, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, + 0x52, 0x0d, 0x77, 0x66, 0x54, 0x72, 0x69, 0x67, 0x67, 0x65, 0x72, 0x65, 0x72, 0x49, 0x64, 0x12, + 0x2f, 0x0a, 0x14, 0x77, 0x66, 0x5f, 0x74, 0x72, 0x69, 0x67, 0x67, 0x65, 0x72, 0x65, 0x72, 0x5f, + 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x11, 0x77, + 0x66, 0x54, 0x72, 0x69, 0x67, 0x67, 0x65, 0x72, 0x65, 0x72, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, + 0x12, 0x3d, 0x0a, 0x1b, 0x77, 0x66, 0x5f, 0x74, 0x72, 0x69, 0x67, 0x67, 0x65, 0x72, 0x65, 0x72, + 0x5f, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x64, 0x65, 0x72, 0x5f, 0x6c, 0x6f, 0x67, 0x69, 0x6e, 0x18, + 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x18, 0x77, 0x66, 0x54, 0x72, 0x69, 0x67, 0x67, 0x65, 0x72, + 0x65, 0x72, 0x50, 0x72, 0x6f, 0x76, 0x69, 0x64, 0x65, 0x72, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x12, + 0x39, 0x0a, 0x19, 0x77, 0x66, 0x5f, 0x74, 0x72, 0x69, 0x67, 0x67, 0x65, 0x72, 0x65, 0x72, 0x5f, + 0x70, 0x72, 0x6f, 0x76, 0x69, 0x64, 0x65, 0x72, 0x5f, 0x75, 0x69, 0x64, 0x18, 0x05, 0x20, 0x01, + 0x28, 0x09, 0x52, 0x16, 0x77, 0x66, 0x54, 0x72, 0x69, 0x67, 0x67, 0x65, 0x72, 0x65, 0x72, 0x50, + 0x72, 0x6f, 0x76, 0x69, 0x64, 0x65, 0x72, 0x55, 0x69, 0x64, 0x12, 0x3f, 0x0a, 0x1c, 0x77, 0x66, + 0x5f, 0x74, 0x72, 0x69, 0x67, 0x67, 0x65, 0x72, 0x65, 0x72, 0x5f, 0x70, 0x72, 0x6f, 0x76, 0x69, + 0x64, 0x65, 0x72, 0x5f, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, + 0x52, 0x19, 0x77, 0x66, 0x54, 0x72, 0x69, 0x67, 0x67, 0x65, 0x72, 0x65, 0x72, 0x50, 0x72, 0x6f, + 0x76, 0x69, 0x64, 0x65, 0x72, 0x41, 0x76, 0x61, 0x74, 0x61, 0x72, 0x12, 0x4a, 0x0a, 0x10, 0x70, + 0x70, 0x6c, 0x5f, 0x74, 0x72, 0x69, 0x67, 0x67, 0x65, 0x72, 0x65, 0x64, 0x5f, 0x62, 0x79, 0x18, + 0x07, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x20, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, + 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x2e, 0x54, 0x72, 0x69, 0x67, + 0x67, 0x65, 0x72, 0x65, 0x64, 0x42, 0x79, 0x52, 0x0e, 0x70, 0x70, 0x6c, 0x54, 0x72, 0x69, 0x67, + 0x67, 0x65, 0x72, 0x65, 0x64, 0x42, 0x79, 0x12, 0x28, 0x0a, 0x10, 0x70, 0x70, 0x6c, 0x5f, 0x74, + 0x72, 0x69, 0x67, 0x67, 0x65, 0x72, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x08, 0x20, 0x01, 0x28, + 0x09, 0x52, 0x0e, 0x70, 0x70, 0x6c, 0x54, 0x72, 0x69, 0x67, 0x67, 0x65, 0x72, 0x65, 0x72, 0x49, + 0x64, 0x12, 0x31, 0x0a, 0x15, 0x70, 0x70, 0x6c, 0x5f, 0x74, 0x72, 0x69, 0x67, 0x67, 0x65, 0x72, + 0x65, 0x72, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, + 0x52, 0x12, 0x70, 0x70, 0x6c, 0x54, 0x72, 0x69, 0x67, 0x67, 0x65, 0x72, 0x65, 0x72, 0x55, 0x73, + 0x65, 0x72, 0x49, 0x64, 0x12, 0x2a, 0x0a, 0x11, 0x77, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, + 0x5f, 0x72, 0x65, 0x72, 0x75, 0x6e, 0x5f, 0x6f, 0x66, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, + 0x0f, 0x77, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x52, 0x65, 0x72, 0x75, 0x6e, 0x4f, 0x66, + 0x22, 0xdb, 0x02, 0x0a, 0x13, 0x4c, 0x69, 0x73, 0x74, 0x41, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, + 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x70, 0x61, 0x67, 0x65, + 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x70, 0x61, 0x67, + 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x74, 0x6f, + 0x6b, 0x65, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x61, 0x67, 0x65, 0x54, + 0x6f, 0x6b, 0x65, 0x6e, 0x12, 0x44, 0x0a, 0x05, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x18, 0x03, 0x20, + 0x01, 0x28, 0x0e, 0x32, 0x2e, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, + 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x41, 0x63, + 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x4f, 0x72, + 0x64, 0x65, 0x72, 0x52, 0x05, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x12, 0x27, 0x0a, 0x0f, 0x6f, 0x72, + 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x64, 0x18, 0x04, 0x20, + 0x01, 0x28, 0x09, 0x52, 0x0e, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, + 0x6e, 0x49, 0x64, 0x12, 0x50, 0x0a, 0x09, 0x64, 0x69, 0x72, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, + 0x18, 0x05, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x32, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, + 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x2e, 0x4c, 0x69, 0x73, + 0x74, 0x41, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, + 0x2e, 0x44, 0x69, 0x72, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x09, 0x64, 0x69, 0x72, 0x65, + 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x22, 0x0a, 0x05, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x12, 0x19, + 0x0a, 0x15, 0x42, 0x59, 0x5f, 0x43, 0x52, 0x45, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x54, 0x49, + 0x4d, 0x45, 0x5f, 0x44, 0x45, 0x53, 0x43, 0x10, 0x00, 0x22, 0x23, 0x0a, 0x09, 0x44, 0x69, 0x72, + 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x08, 0x0a, 0x04, 0x4e, 0x45, 0x58, 0x54, 0x10, 0x00, + 0x12, 0x0c, 0x0a, 0x08, 0x50, 0x52, 0x45, 0x56, 0x49, 0x4f, 0x55, 0x53, 0x10, 0x01, 0x22, 0xb1, + 0x01, 0x0a, 0x14, 0x4c, 0x69, 0x73, 0x74, 0x41, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x52, + 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x26, 0x0a, 0x0f, 0x6e, 0x65, 0x78, 0x74, 0x5f, + 0x70, 0x61, 0x67, 0x65, 0x5f, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, + 0x52, 0x0d, 0x6e, 0x65, 0x78, 0x74, 0x50, 0x61, 0x67, 0x65, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x12, + 0x2e, 0x0a, 0x13, 0x70, 0x72, 0x65, 0x76, 0x69, 0x6f, 0x75, 0x73, 0x5f, 0x70, 0x61, 0x67, 0x65, + 0x5f, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x11, 0x70, 0x72, + 0x65, 0x76, 0x69, 0x6f, 0x75, 0x73, 0x50, 0x61, 0x67, 0x65, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x12, + 0x41, 0x0a, 0x09, 0x70, 0x69, 0x70, 0x65, 0x6c, 0x69, 0x6e, 0x65, 0x73, 0x18, 0x03, 0x20, 0x03, + 0x28, 0x0b, 0x32, 0x23, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, + 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x2e, 0x41, 0x63, 0x74, 0x69, 0x76, 0x65, 0x50, + 0x69, 0x70, 0x65, 0x6c, 0x69, 0x6e, 0x65, 0x52, 0x09, 0x70, 0x69, 0x70, 0x65, 0x6c, 0x69, 0x6e, + 0x65, 0x73, 0x22, 0x86, 0x02, 0x0a, 0x15, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, + 0x73, 0x74, 0x65, 0x72, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x27, 0x0a, 0x0f, + 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x64, 0x18, + 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, + 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x74, 0x6f, + 0x6b, 0x65, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x61, 0x67, 0x65, 0x54, + 0x6f, 0x6b, 0x65, 0x6e, 0x12, 0x1b, 0x0a, 0x09, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x73, 0x69, 0x7a, + 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, + 0x65, 0x12, 0x42, 0x0a, 0x0f, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x65, 0x64, 0x5f, 0x61, + 0x74, 0x5f, 0x67, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, + 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, + 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0d, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x65, + 0x64, 0x41, 0x74, 0x47, 0x74, 0x12, 0x44, 0x0a, 0x10, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, + 0x65, 0x64, 0x5f, 0x61, 0x74, 0x5f, 0x6c, 0x74, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, + 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, + 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0e, 0x72, 0x65, 0x71, + 0x75, 0x65, 0x73, 0x74, 0x65, 0x64, 0x41, 0x74, 0x4c, 0x74, 0x65, 0x22, 0x80, 0x01, 0x0a, 0x16, + 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x65, 0x72, 0x73, 0x52, 0x65, + 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x3e, 0x0a, 0x0a, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, + 0x74, 0x65, 0x72, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1e, 0x2e, 0x49, 0x6e, 0x74, + 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, + 0x2e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x65, 0x72, 0x52, 0x0a, 0x72, 0x65, 0x71, 0x75, + 0x65, 0x73, 0x74, 0x65, 0x72, 0x73, 0x12, 0x26, 0x0a, 0x0f, 0x6e, 0x65, 0x78, 0x74, 0x5f, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, - 0x09, 0x70, 0x61, 0x67, 0x65, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x12, 0x1b, 0x0a, 0x09, 0x70, 0x61, - 0x67, 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x70, - 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x42, 0x0a, 0x0f, 0x72, 0x65, 0x71, 0x75, 0x65, - 0x73, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x5f, 0x67, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, - 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, - 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0d, 0x72, 0x65, - 0x71, 0x75, 0x65, 0x73, 0x74, 0x65, 0x64, 0x41, 0x74, 0x47, 0x74, 0x12, 0x44, 0x0a, 0x10, 0x72, - 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x5f, 0x6c, 0x74, 0x65, 0x18, - 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, - 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, - 0x70, 0x52, 0x0e, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x65, 0x64, 0x41, 0x74, 0x4c, 0x74, - 0x65, 0x22, 0x80, 0x01, 0x0a, 0x16, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, - 0x74, 0x65, 0x72, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x3e, 0x0a, 0x0a, - 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x65, 0x72, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, - 0x32, 0x1e, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, - 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x2e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x65, 0x72, - 0x52, 0x0a, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x65, 0x72, 0x73, 0x12, 0x26, 0x0a, 0x0f, - 0x6e, 0x65, 0x78, 0x74, 0x5f, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x18, - 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x6e, 0x65, 0x78, 0x74, 0x50, 0x61, 0x67, 0x65, 0x54, - 0x6f, 0x6b, 0x65, 0x6e, 0x22, 0x95, 0x03, 0x0a, 0x09, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, - 0x65, 0x72, 0x12, 0x27, 0x0a, 0x0f, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, - 0x6f, 0x6e, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x6f, 0x72, 0x67, - 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x70, - 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, - 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x15, 0x0a, 0x06, 0x70, 0x70, - 0x6c, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x70, 0x70, 0x6c, 0x49, - 0x64, 0x12, 0x17, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x04, 0x20, 0x01, - 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x25, 0x0a, 0x0e, 0x70, 0x72, - 0x6f, 0x76, 0x69, 0x64, 0x65, 0x72, 0x5f, 0x6c, 0x6f, 0x67, 0x69, 0x6e, 0x18, 0x05, 0x20, 0x01, - 0x28, 0x09, 0x52, 0x0d, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x64, 0x65, 0x72, 0x4c, 0x6f, 0x67, 0x69, - 0x6e, 0x12, 0x21, 0x0a, 0x0c, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x64, 0x65, 0x72, 0x5f, 0x75, 0x69, - 0x64, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x64, 0x65, - 0x72, 0x55, 0x69, 0x64, 0x12, 0x45, 0x0a, 0x08, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x64, 0x65, 0x72, - 0x18, 0x07, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x29, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, - 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x2e, 0x52, 0x65, 0x70, 0x6f, 0x73, 0x69, - 0x74, 0x6f, 0x72, 0x79, 0x50, 0x72, 0x6f, 0x76, 0x69, 0x64, 0x65, 0x72, 0x2e, 0x54, 0x79, 0x70, - 0x65, 0x52, 0x08, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x64, 0x65, 0x72, 0x12, 0x40, 0x0a, 0x09, 0x74, - 0x72, 0x69, 0x67, 0x67, 0x65, 0x72, 0x65, 0x72, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x22, - 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, - 0x6d, 0x62, 0x65, 0x72, 0x57, 0x46, 0x2e, 0x54, 0x72, 0x69, 0x67, 0x67, 0x65, 0x72, 0x65, 0x64, - 0x42, 0x79, 0x52, 0x09, 0x74, 0x72, 0x69, 0x67, 0x67, 0x65, 0x72, 0x65, 0x72, 0x12, 0x3d, 0x0a, - 0x0c, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x18, 0x09, 0x20, - 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, - 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, - 0x0b, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x65, 0x64, 0x41, 0x74, 0x22, 0xe2, 0x09, 0x0a, - 0x0e, 0x41, 0x63, 0x74, 0x69, 0x76, 0x65, 0x50, 0x69, 0x70, 0x65, 0x6c, 0x69, 0x6e, 0x65, 0x12, - 0x27, 0x0a, 0x0f, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, - 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, - 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, - 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x72, - 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x13, 0x0a, 0x05, 0x77, 0x66, 0x5f, 0x69, 0x64, - 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x77, 0x66, 0x49, 0x64, 0x12, 0x1b, 0x0a, 0x09, - 0x77, 0x66, 0x5f, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0d, 0x52, - 0x08, 0x77, 0x66, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, - 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x15, 0x0a, - 0x06, 0x70, 0x70, 0x6c, 0x5f, 0x69, 0x64, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x70, - 0x70, 0x6c, 0x49, 0x64, 0x12, 0x17, 0x0a, 0x07, 0x68, 0x6f, 0x6f, 0x6b, 0x5f, 0x69, 0x64, 0x18, - 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x68, 0x6f, 0x6f, 0x6b, 0x49, 0x64, 0x12, 0x1b, 0x0a, - 0x09, 0x73, 0x77, 0x69, 0x74, 0x63, 0x68, 0x5f, 0x69, 0x64, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, - 0x52, 0x08, 0x73, 0x77, 0x69, 0x74, 0x63, 0x68, 0x49, 0x64, 0x12, 0x27, 0x0a, 0x0f, 0x64, 0x65, - 0x66, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x18, 0x09, 0x20, - 0x01, 0x28, 0x09, 0x52, 0x0e, 0x64, 0x65, 0x66, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x46, - 0x69, 0x6c, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x72, 0x69, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x18, - 0x0a, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x70, 0x72, 0x69, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x12, - 0x4a, 0x0a, 0x0f, 0x77, 0x66, 0x5f, 0x74, 0x72, 0x69, 0x67, 0x67, 0x65, 0x72, 0x65, 0x64, 0x5f, - 0x62, 0x79, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x22, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, + 0x0d, 0x6e, 0x65, 0x78, 0x74, 0x50, 0x61, 0x67, 0x65, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x22, 0x95, + 0x03, 0x0a, 0x09, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x65, 0x72, 0x12, 0x27, 0x0a, 0x0f, + 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x64, 0x18, + 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, + 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, + 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, + 0x63, 0x74, 0x49, 0x64, 0x12, 0x15, 0x0a, 0x06, 0x70, 0x70, 0x6c, 0x5f, 0x69, 0x64, 0x18, 0x03, + 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x70, 0x70, 0x6c, 0x49, 0x64, 0x12, 0x17, 0x0a, 0x07, 0x75, + 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, + 0x65, 0x72, 0x49, 0x64, 0x12, 0x25, 0x0a, 0x0e, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x64, 0x65, 0x72, + 0x5f, 0x6c, 0x6f, 0x67, 0x69, 0x6e, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x70, 0x72, + 0x6f, 0x76, 0x69, 0x64, 0x65, 0x72, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x12, 0x21, 0x0a, 0x0c, 0x70, + 0x72, 0x6f, 0x76, 0x69, 0x64, 0x65, 0x72, 0x5f, 0x75, 0x69, 0x64, 0x18, 0x06, 0x20, 0x01, 0x28, + 0x09, 0x52, 0x0b, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x64, 0x65, 0x72, 0x55, 0x69, 0x64, 0x12, 0x45, + 0x0a, 0x08, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x64, 0x65, 0x72, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0e, + 0x32, 0x29, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x55, + 0x73, 0x65, 0x72, 0x2e, 0x52, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x79, 0x50, 0x72, + 0x6f, 0x76, 0x69, 0x64, 0x65, 0x72, 0x2e, 0x54, 0x79, 0x70, 0x65, 0x52, 0x08, 0x70, 0x72, 0x6f, + 0x76, 0x69, 0x64, 0x65, 0x72, 0x12, 0x40, 0x0a, 0x09, 0x74, 0x72, 0x69, 0x67, 0x67, 0x65, 0x72, + 0x65, 0x72, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x22, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x57, 0x46, - 0x2e, 0x54, 0x72, 0x69, 0x67, 0x67, 0x65, 0x72, 0x65, 0x64, 0x42, 0x79, 0x52, 0x0d, 0x77, 0x66, - 0x54, 0x72, 0x69, 0x67, 0x67, 0x65, 0x72, 0x65, 0x64, 0x42, 0x79, 0x12, 0x21, 0x0a, 0x0c, 0x72, - 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x0c, 0x20, 0x01, 0x28, - 0x09, 0x52, 0x0b, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x65, 0x72, 0x49, 0x64, 0x12, 0x28, - 0x0a, 0x10, 0x70, 0x61, 0x72, 0x74, 0x69, 0x61, 0x6c, 0x5f, 0x72, 0x65, 0x72, 0x75, 0x6e, 0x5f, - 0x6f, 0x66, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x70, 0x61, 0x72, 0x74, 0x69, 0x61, - 0x6c, 0x52, 0x65, 0x72, 0x75, 0x6e, 0x4f, 0x66, 0x12, 0x21, 0x0a, 0x0c, 0x70, 0x72, 0x6f, 0x6d, - 0x6f, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x6f, 0x66, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, - 0x70, 0x72, 0x6f, 0x6d, 0x6f, 0x74, 0x69, 0x6f, 0x6e, 0x4f, 0x66, 0x12, 0x1f, 0x0a, 0x0b, 0x70, - 0x72, 0x6f, 0x6d, 0x6f, 0x74, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x09, - 0x52, 0x0a, 0x70, 0x72, 0x6f, 0x6d, 0x6f, 0x74, 0x65, 0x72, 0x49, 0x64, 0x12, 0x23, 0x0a, 0x0d, - 0x61, 0x75, 0x74, 0x6f, 0x5f, 0x70, 0x72, 0x6f, 0x6d, 0x6f, 0x74, 0x65, 0x64, 0x18, 0x10, 0x20, - 0x01, 0x28, 0x08, 0x52, 0x0c, 0x61, 0x75, 0x74, 0x6f, 0x50, 0x72, 0x6f, 0x6d, 0x6f, 0x74, 0x65, - 0x64, 0x12, 0x17, 0x0a, 0x07, 0x67, 0x69, 0x74, 0x5f, 0x72, 0x65, 0x66, 0x18, 0x11, 0x20, 0x01, - 0x28, 0x09, 0x52, 0x06, 0x67, 0x69, 0x74, 0x52, 0x65, 0x66, 0x12, 0x1d, 0x0a, 0x0a, 0x63, 0x6f, - 0x6d, 0x6d, 0x69, 0x74, 0x5f, 0x73, 0x68, 0x61, 0x18, 0x12, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, - 0x63, 0x6f, 0x6d, 0x6d, 0x69, 0x74, 0x53, 0x68, 0x61, 0x12, 0x1b, 0x0a, 0x09, 0x62, 0x72, 0x61, - 0x6e, 0x63, 0x68, 0x5f, 0x69, 0x64, 0x18, 0x13, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x62, 0x72, - 0x61, 0x6e, 0x63, 0x68, 0x49, 0x64, 0x12, 0x39, 0x0a, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, - 0x64, 0x5f, 0x61, 0x74, 0x18, 0x14, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, + 0x2e, 0x54, 0x72, 0x69, 0x67, 0x67, 0x65, 0x72, 0x65, 0x64, 0x42, 0x79, 0x52, 0x09, 0x74, 0x72, + 0x69, 0x67, 0x67, 0x65, 0x72, 0x65, 0x72, 0x12, 0x3d, 0x0a, 0x0c, 0x72, 0x65, 0x71, 0x75, 0x65, + 0x73, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x18, 0x09, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, + 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0b, 0x72, 0x65, 0x71, 0x75, 0x65, + 0x73, 0x74, 0x65, 0x64, 0x41, 0x74, 0x22, 0xa0, 0x0a, 0x0a, 0x0e, 0x41, 0x63, 0x74, 0x69, 0x76, + 0x65, 0x50, 0x69, 0x70, 0x65, 0x6c, 0x69, 0x6e, 0x65, 0x12, 0x27, 0x0a, 0x0f, 0x6f, 0x72, 0x67, + 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, + 0x28, 0x09, 0x52, 0x0e, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, + 0x49, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, + 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, + 0x64, 0x12, 0x13, 0x0a, 0x05, 0x77, 0x66, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, + 0x52, 0x04, 0x77, 0x66, 0x49, 0x64, 0x12, 0x1b, 0x0a, 0x09, 0x77, 0x66, 0x5f, 0x6e, 0x75, 0x6d, + 0x62, 0x65, 0x72, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x77, 0x66, 0x4e, 0x75, 0x6d, + 0x62, 0x65, 0x72, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, + 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x15, 0x0a, 0x06, 0x70, 0x70, 0x6c, 0x5f, 0x69, + 0x64, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x70, 0x70, 0x6c, 0x49, 0x64, 0x12, 0x17, + 0x0a, 0x07, 0x68, 0x6f, 0x6f, 0x6b, 0x5f, 0x69, 0x64, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, + 0x06, 0x68, 0x6f, 0x6f, 0x6b, 0x49, 0x64, 0x12, 0x1b, 0x0a, 0x09, 0x73, 0x77, 0x69, 0x74, 0x63, + 0x68, 0x5f, 0x69, 0x64, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x73, 0x77, 0x69, 0x74, + 0x63, 0x68, 0x49, 0x64, 0x12, 0x27, 0x0a, 0x0f, 0x64, 0x65, 0x66, 0x69, 0x6e, 0x69, 0x74, 0x69, + 0x6f, 0x6e, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x64, + 0x65, 0x66, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x46, 0x69, 0x6c, 0x65, 0x12, 0x1a, 0x0a, + 0x08, 0x70, 0x72, 0x69, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x0d, 0x52, + 0x08, 0x70, 0x72, 0x69, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x12, 0x4a, 0x0a, 0x0f, 0x77, 0x66, 0x5f, + 0x74, 0x72, 0x69, 0x67, 0x67, 0x65, 0x72, 0x65, 0x64, 0x5f, 0x62, 0x79, 0x18, 0x0b, 0x20, 0x01, + 0x28, 0x0e, 0x32, 0x22, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, + 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x57, 0x46, 0x2e, 0x54, 0x72, 0x69, 0x67, 0x67, + 0x65, 0x72, 0x65, 0x64, 0x42, 0x79, 0x52, 0x0d, 0x77, 0x66, 0x54, 0x72, 0x69, 0x67, 0x67, 0x65, + 0x72, 0x65, 0x64, 0x42, 0x79, 0x12, 0x21, 0x0a, 0x0c, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, + 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x72, 0x65, 0x71, + 0x75, 0x65, 0x73, 0x74, 0x65, 0x72, 0x49, 0x64, 0x12, 0x28, 0x0a, 0x10, 0x70, 0x61, 0x72, 0x74, + 0x69, 0x61, 0x6c, 0x5f, 0x72, 0x65, 0x72, 0x75, 0x6e, 0x5f, 0x6f, 0x66, 0x18, 0x0d, 0x20, 0x01, + 0x28, 0x09, 0x52, 0x0e, 0x70, 0x61, 0x72, 0x74, 0x69, 0x61, 0x6c, 0x52, 0x65, 0x72, 0x75, 0x6e, + 0x4f, 0x66, 0x12, 0x21, 0x0a, 0x0c, 0x70, 0x72, 0x6f, 0x6d, 0x6f, 0x74, 0x69, 0x6f, 0x6e, 0x5f, + 0x6f, 0x66, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x70, 0x72, 0x6f, 0x6d, 0x6f, 0x74, + 0x69, 0x6f, 0x6e, 0x4f, 0x66, 0x12, 0x1f, 0x0a, 0x0b, 0x70, 0x72, 0x6f, 0x6d, 0x6f, 0x74, 0x65, + 0x72, 0x5f, 0x69, 0x64, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x70, 0x72, 0x6f, 0x6d, + 0x6f, 0x74, 0x65, 0x72, 0x49, 0x64, 0x12, 0x23, 0x0a, 0x0d, 0x61, 0x75, 0x74, 0x6f, 0x5f, 0x70, + 0x72, 0x6f, 0x6d, 0x6f, 0x74, 0x65, 0x64, 0x18, 0x10, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0c, 0x61, + 0x75, 0x74, 0x6f, 0x50, 0x72, 0x6f, 0x6d, 0x6f, 0x74, 0x65, 0x64, 0x12, 0x17, 0x0a, 0x07, 0x67, + 0x69, 0x74, 0x5f, 0x72, 0x65, 0x66, 0x18, 0x11, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x67, 0x69, + 0x74, 0x52, 0x65, 0x66, 0x12, 0x1d, 0x0a, 0x0a, 0x63, 0x6f, 0x6d, 0x6d, 0x69, 0x74, 0x5f, 0x73, + 0x68, 0x61, 0x18, 0x12, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x63, 0x6f, 0x6d, 0x6d, 0x69, 0x74, + 0x53, 0x68, 0x61, 0x12, 0x1b, 0x0a, 0x09, 0x62, 0x72, 0x61, 0x6e, 0x63, 0x68, 0x5f, 0x69, 0x64, + 0x18, 0x13, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x62, 0x72, 0x61, 0x6e, 0x63, 0x68, 0x49, 0x64, + 0x12, 0x39, 0x0a, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x18, 0x14, + 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, + 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, + 0x52, 0x09, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x41, 0x74, 0x12, 0x39, 0x0a, 0x0a, 0x70, + 0x65, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x5f, 0x61, 0x74, 0x18, 0x15, 0x20, 0x01, 0x28, 0x0b, 0x32, + 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, + 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x09, 0x70, 0x65, 0x6e, + 0x64, 0x69, 0x6e, 0x67, 0x41, 0x74, 0x12, 0x39, 0x0a, 0x0a, 0x71, 0x75, 0x65, 0x75, 0x69, 0x6e, + 0x67, 0x5f, 0x61, 0x74, 0x18, 0x16, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, - 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x09, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x41, - 0x74, 0x12, 0x39, 0x0a, 0x0a, 0x70, 0x65, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x5f, 0x61, 0x74, 0x18, - 0x15, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, + 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x09, 0x71, 0x75, 0x65, 0x75, 0x69, 0x6e, 0x67, 0x41, + 0x74, 0x12, 0x39, 0x0a, 0x0a, 0x72, 0x75, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x5f, 0x61, 0x74, 0x18, + 0x17, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, - 0x70, 0x52, 0x09, 0x70, 0x65, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x41, 0x74, 0x12, 0x39, 0x0a, 0x0a, - 0x71, 0x75, 0x65, 0x75, 0x69, 0x6e, 0x67, 0x5f, 0x61, 0x74, 0x18, 0x16, 0x20, 0x01, 0x28, 0x0b, - 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, - 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x09, 0x71, 0x75, - 0x65, 0x75, 0x69, 0x6e, 0x67, 0x41, 0x74, 0x12, 0x39, 0x0a, 0x0a, 0x72, 0x75, 0x6e, 0x6e, 0x69, - 0x6e, 0x67, 0x5f, 0x61, 0x74, 0x18, 0x17, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, - 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x09, 0x72, 0x75, 0x6e, 0x6e, 0x69, 0x6e, 0x67, - 0x41, 0x74, 0x12, 0x30, 0x0a, 0x05, 0x71, 0x75, 0x65, 0x75, 0x65, 0x18, 0x18, 0x20, 0x01, 0x28, - 0x0b, 0x32, 0x1a, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, - 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x2e, 0x51, 0x75, 0x65, 0x75, 0x65, 0x52, 0x05, 0x71, - 0x75, 0x65, 0x75, 0x65, 0x12, 0x39, 0x0a, 0x06, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x73, 0x18, 0x19, - 0x20, 0x03, 0x28, 0x0b, 0x32, 0x21, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, - 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x2e, 0x42, 0x6c, 0x6f, 0x63, 0x6b, - 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x52, 0x06, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x73, 0x12, - 0x39, 0x0a, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x18, 0x1a, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x23, - 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, - 0x6d, 0x62, 0x65, 0x72, 0x2e, 0x50, 0x69, 0x70, 0x65, 0x6c, 0x69, 0x6e, 0x65, 0x2e, 0x53, 0x74, - 0x61, 0x74, 0x65, 0x52, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x12, 0x41, 0x0a, 0x0c, 0x67, 0x69, - 0x74, 0x5f, 0x72, 0x65, 0x66, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x1b, 0x20, 0x01, 0x28, 0x0e, - 0x32, 0x1f, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, - 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x2e, 0x47, 0x69, 0x74, 0x52, 0x65, 0x66, 0x54, 0x79, 0x70, - 0x65, 0x52, 0x0a, 0x67, 0x69, 0x74, 0x52, 0x65, 0x66, 0x54, 0x79, 0x70, 0x65, 0x12, 0x25, 0x0a, - 0x0e, 0x63, 0x6f, 0x6d, 0x6d, 0x69, 0x74, 0x5f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, - 0x1c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x63, 0x6f, 0x6d, 0x6d, 0x69, 0x74, 0x4d, 0x65, 0x73, - 0x73, 0x61, 0x67, 0x65, 0x12, 0x2b, 0x0a, 0x11, 0x63, 0x6f, 0x6d, 0x6d, 0x69, 0x74, 0x65, 0x72, - 0x5f, 0x75, 0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x1d, 0x20, 0x01, 0x28, 0x09, 0x52, - 0x10, 0x63, 0x6f, 0x6d, 0x6d, 0x69, 0x74, 0x65, 0x72, 0x55, 0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d, - 0x65, 0x12, 0x2e, 0x0a, 0x13, 0x63, 0x6f, 0x6d, 0x6d, 0x69, 0x74, 0x65, 0x72, 0x5f, 0x61, 0x76, - 0x61, 0x74, 0x61, 0x72, 0x5f, 0x75, 0x72, 0x6c, 0x18, 0x1e, 0x20, 0x01, 0x28, 0x09, 0x52, 0x11, - 0x63, 0x6f, 0x6d, 0x6d, 0x69, 0x74, 0x65, 0x72, 0x41, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, - 0x6c, 0x22, 0xfd, 0x03, 0x0a, 0x0c, 0x42, 0x6c, 0x6f, 0x63, 0x6b, 0x44, 0x65, 0x74, 0x61, 0x69, - 0x6c, 0x73, 0x12, 0x19, 0x0a, 0x08, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x5f, 0x69, 0x64, 0x18, 0x01, - 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x49, 0x64, 0x12, 0x12, 0x0a, - 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, - 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x72, 0x69, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x18, 0x03, 0x20, - 0x01, 0x28, 0x0d, 0x52, 0x08, 0x70, 0x72, 0x69, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x12, 0x22, 0x0a, - 0x0c, 0x64, 0x65, 0x70, 0x65, 0x6e, 0x64, 0x65, 0x6e, 0x63, 0x69, 0x65, 0x73, 0x18, 0x04, 0x20, - 0x03, 0x28, 0x09, 0x52, 0x0c, 0x64, 0x65, 0x70, 0x65, 0x6e, 0x64, 0x65, 0x6e, 0x63, 0x69, 0x65, - 0x73, 0x12, 0x36, 0x0a, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0e, - 0x32, 0x20, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, - 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x2e, 0x42, 0x6c, 0x6f, 0x63, 0x6b, 0x2e, 0x53, 0x74, 0x61, - 0x74, 0x65, 0x52, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x12, 0x39, 0x0a, 0x06, 0x72, 0x65, 0x73, - 0x75, 0x6c, 0x74, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x21, 0x2e, 0x49, 0x6e, 0x74, 0x65, - 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x2e, - 0x42, 0x6c, 0x6f, 0x63, 0x6b, 0x2e, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x06, 0x72, 0x65, - 0x73, 0x75, 0x6c, 0x74, 0x12, 0x4c, 0x0a, 0x0d, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x5f, 0x72, - 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x27, 0x2e, 0x49, 0x6e, + 0x70, 0x52, 0x09, 0x72, 0x75, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x41, 0x74, 0x12, 0x30, 0x0a, 0x05, + 0x71, 0x75, 0x65, 0x75, 0x65, 0x18, 0x18, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, - 0x72, 0x2e, 0x42, 0x6c, 0x6f, 0x63, 0x6b, 0x2e, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x65, - 0x61, 0x73, 0x6f, 0x6e, 0x52, 0x0c, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x65, 0x61, 0x73, - 0x6f, 0x6e, 0x12, 0x2b, 0x0a, 0x11, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x64, 0x65, 0x73, 0x63, - 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x10, 0x65, - 0x72, 0x72, 0x6f, 0x72, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, - 0x40, 0x0a, 0x04, 0x6a, 0x6f, 0x62, 0x73, 0x18, 0x09, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2c, 0x2e, - 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, - 0x62, 0x65, 0x72, 0x2e, 0x42, 0x6c, 0x6f, 0x63, 0x6b, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, - 0x2e, 0x4a, 0x6f, 0x62, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x52, 0x04, 0x6a, 0x6f, 0x62, - 0x73, 0x1a, 0x4e, 0x0a, 0x0a, 0x4a, 0x6f, 0x62, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x12, - 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, - 0x61, 0x6d, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x18, 0x02, 0x20, 0x01, - 0x28, 0x0d, 0x52, 0x05, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x74, 0x61, - 0x74, 0x75, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, - 0x73, 0x22, 0xe2, 0x01, 0x0a, 0x0d, 0x52, 0x75, 0x6e, 0x4e, 0x6f, 0x77, 0x52, 0x65, 0x71, 0x75, - 0x65, 0x73, 0x74, 0x12, 0x21, 0x0a, 0x0c, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x65, 0x72, - 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x72, 0x65, 0x71, 0x75, 0x65, - 0x73, 0x74, 0x65, 0x72, 0x49, 0x64, 0x12, 0x3b, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x02, - 0x20, 0x01, 0x28, 0x0e, 0x32, 0x27, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, - 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x2e, 0x52, 0x75, 0x6e, 0x4e, 0x6f, - 0x77, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x79, 0x70, 0x65, 0x52, 0x04, 0x74, - 0x79, 0x70, 0x65, 0x12, 0x15, 0x0a, 0x06, 0x70, 0x70, 0x6c, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, - 0x01, 0x28, 0x09, 0x52, 0x05, 0x70, 0x70, 0x6c, 0x49, 0x64, 0x12, 0x19, 0x0a, 0x08, 0x62, 0x6c, - 0x6f, 0x63, 0x6b, 0x5f, 0x69, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x62, 0x6c, - 0x6f, 0x63, 0x6b, 0x49, 0x64, 0x12, 0x15, 0x0a, 0x06, 0x6a, 0x6f, 0x62, 0x5f, 0x69, 0x64, 0x18, - 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x6a, 0x6f, 0x62, 0x49, 0x64, 0x22, 0x28, 0x0a, 0x04, - 0x54, 0x79, 0x70, 0x65, 0x12, 0x0c, 0x0a, 0x08, 0x50, 0x49, 0x50, 0x45, 0x4c, 0x49, 0x4e, 0x45, - 0x10, 0x00, 0x12, 0x09, 0x0a, 0x05, 0x42, 0x4c, 0x4f, 0x43, 0x4b, 0x10, 0x01, 0x12, 0x07, 0x0a, - 0x03, 0x4a, 0x4f, 0x42, 0x10, 0x02, 0x22, 0x10, 0x0a, 0x0e, 0x52, 0x75, 0x6e, 0x4e, 0x6f, 0x77, - 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x2c, 0x0a, 0x13, 0x47, 0x65, 0x74, 0x50, - 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, - 0x15, 0x0a, 0x06, 0x70, 0x70, 0x6c, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, - 0x05, 0x70, 0x70, 0x6c, 0x49, 0x64, 0x22, 0x83, 0x01, 0x0a, 0x14, 0x47, 0x65, 0x74, 0x50, 0x72, - 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, - 0x4c, 0x0a, 0x0f, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x5f, 0x73, 0x74, 0x61, 0x74, - 0x75, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x23, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, - 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x2e, 0x52, - 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x0e, 0x72, - 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x1d, 0x0a, - 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, - 0x09, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x22, 0x55, 0x0a, 0x13, - 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x59, 0x61, 0x6d, 0x6c, 0x52, 0x65, 0x71, 0x75, - 0x65, 0x73, 0x74, 0x12, 0x27, 0x0a, 0x0f, 0x79, 0x61, 0x6d, 0x6c, 0x5f, 0x64, 0x65, 0x66, 0x69, - 0x6e, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x79, 0x61, - 0x6d, 0x6c, 0x44, 0x65, 0x66, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x15, 0x0a, 0x06, - 0x70, 0x70, 0x6c, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x70, 0x70, - 0x6c, 0x49, 0x64, 0x22, 0x7b, 0x0a, 0x14, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x59, - 0x61, 0x6d, 0x6c, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x4c, 0x0a, 0x0f, 0x72, - 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x01, - 0x20, 0x01, 0x28, 0x0b, 0x32, 0x23, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, - 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, - 0x6e, 0x73, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x0e, 0x72, 0x65, 0x73, 0x70, 0x6f, - 0x6e, 0x73, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x15, 0x0a, 0x06, 0x70, 0x70, 0x6c, - 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x70, 0x70, 0x6c, 0x49, 0x64, - 0x22, 0xd6, 0x02, 0x0a, 0x18, 0x53, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x45, 0x78, 0x74, - 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, - 0x09, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x70, 0x61, 0x74, 0x68, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, - 0x52, 0x08, 0x66, 0x69, 0x6c, 0x65, 0x50, 0x61, 0x74, 0x68, 0x12, 0x15, 0x0a, 0x06, 0x70, 0x70, - 0x6c, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x70, 0x70, 0x6c, 0x49, - 0x64, 0x12, 0x23, 0x0a, 0x0d, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x5f, 0x74, 0x6f, 0x6b, - 0x65, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, - 0x74, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x12, 0x45, 0x0a, 0x0d, 0x65, 0x6e, 0x76, 0x5f, 0x76, 0x61, - 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x20, 0x2e, - 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, - 0x62, 0x65, 0x72, 0x2e, 0x45, 0x6e, 0x76, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x52, - 0x0c, 0x65, 0x6e, 0x76, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x12, 0x31, 0x0a, - 0x15, 0x70, 0x72, 0x65, 0x76, 0x5f, 0x70, 0x70, 0x6c, 0x5f, 0x61, 0x72, 0x74, 0x65, 0x66, 0x61, - 0x63, 0x74, 0x5f, 0x69, 0x64, 0x73, 0x18, 0x06, 0x20, 0x03, 0x28, 0x09, 0x52, 0x12, 0x70, 0x72, - 0x65, 0x76, 0x50, 0x70, 0x6c, 0x41, 0x72, 0x74, 0x65, 0x66, 0x61, 0x63, 0x74, 0x49, 0x64, 0x73, - 0x12, 0x1f, 0x0a, 0x0b, 0x70, 0x72, 0x6f, 0x6d, 0x6f, 0x74, 0x65, 0x64, 0x5f, 0x62, 0x79, 0x18, - 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x70, 0x72, 0x6f, 0x6d, 0x6f, 0x74, 0x65, 0x64, 0x42, - 0x79, 0x12, 0x23, 0x0a, 0x0d, 0x61, 0x75, 0x74, 0x6f, 0x5f, 0x70, 0x72, 0x6f, 0x6d, 0x6f, 0x74, - 0x65, 0x64, 0x18, 0x08, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0c, 0x61, 0x75, 0x74, 0x6f, 0x50, 0x72, - 0x6f, 0x6d, 0x6f, 0x74, 0x65, 0x64, 0x12, 0x21, 0x0a, 0x0c, 0x73, 0x65, 0x63, 0x72, 0x65, 0x74, - 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x73, 0x18, 0x09, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0b, 0x73, 0x65, - 0x63, 0x72, 0x65, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x73, 0x22, 0x37, 0x0a, 0x0b, 0x45, 0x6e, 0x76, - 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, - 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x14, 0x0a, 0x05, - 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, - 0x75, 0x65, 0x22, 0x80, 0x01, 0x0a, 0x19, 0x53, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x45, - 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, - 0x12, 0x4c, 0x0a, 0x0f, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x5f, 0x73, 0x74, 0x61, - 0x74, 0x75, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x23, 0x2e, 0x49, 0x6e, 0x74, 0x65, - 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x2e, - 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x0e, - 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x15, - 0x0a, 0x06, 0x70, 0x70, 0x6c, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, - 0x70, 0x70, 0x6c, 0x49, 0x64, 0x22, 0x4c, 0x0a, 0x0d, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, - 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, - 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, - 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, - 0x65, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, - 0x74, 0x65, 0x72, 0x22, 0x4d, 0x0a, 0x0e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x73, - 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x3b, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, - 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x23, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, - 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x2e, 0x52, 0x65, 0x73, 0x70, - 0x6f, 0x6e, 0x73, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, - 0x75, 0x73, 0x22, 0x6c, 0x0a, 0x15, 0x50, 0x61, 0x72, 0x74, 0x69, 0x61, 0x6c, 0x52, 0x65, 0x62, - 0x75, 0x69, 0x6c, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x15, 0x0a, 0x06, 0x70, - 0x70, 0x6c, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x70, 0x70, 0x6c, - 0x49, 0x64, 0x12, 0x23, 0x0a, 0x0d, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x5f, 0x74, 0x6f, - 0x6b, 0x65, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x72, 0x65, 0x71, 0x75, 0x65, - 0x73, 0x74, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x12, 0x17, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f, - 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, - 0x22, 0x7d, 0x0a, 0x16, 0x50, 0x61, 0x72, 0x74, 0x69, 0x61, 0x6c, 0x52, 0x65, 0x62, 0x75, 0x69, - 0x6c, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x4c, 0x0a, 0x0f, 0x72, 0x65, + 0x72, 0x2e, 0x51, 0x75, 0x65, 0x75, 0x65, 0x52, 0x05, 0x71, 0x75, 0x65, 0x75, 0x65, 0x12, 0x39, + 0x0a, 0x06, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x73, 0x18, 0x19, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x21, + 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, + 0x6d, 0x62, 0x65, 0x72, 0x2e, 0x42, 0x6c, 0x6f, 0x63, 0x6b, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, + 0x73, 0x52, 0x06, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x73, 0x12, 0x39, 0x0a, 0x05, 0x73, 0x74, 0x61, + 0x74, 0x65, 0x18, 0x1a, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x23, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, + 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x2e, 0x50, + 0x69, 0x70, 0x65, 0x6c, 0x69, 0x6e, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x74, 0x65, 0x52, 0x05, 0x73, + 0x74, 0x61, 0x74, 0x65, 0x12, 0x41, 0x0a, 0x0c, 0x67, 0x69, 0x74, 0x5f, 0x72, 0x65, 0x66, 0x5f, + 0x74, 0x79, 0x70, 0x65, 0x18, 0x1b, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x1f, 0x2e, 0x49, 0x6e, 0x74, + 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, + 0x2e, 0x47, 0x69, 0x74, 0x52, 0x65, 0x66, 0x54, 0x79, 0x70, 0x65, 0x52, 0x0a, 0x67, 0x69, 0x74, + 0x52, 0x65, 0x66, 0x54, 0x79, 0x70, 0x65, 0x12, 0x25, 0x0a, 0x0e, 0x63, 0x6f, 0x6d, 0x6d, 0x69, + 0x74, 0x5f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x1c, 0x20, 0x01, 0x28, 0x09, 0x52, + 0x0d, 0x63, 0x6f, 0x6d, 0x6d, 0x69, 0x74, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x2b, + 0x0a, 0x11, 0x63, 0x6f, 0x6d, 0x6d, 0x69, 0x74, 0x65, 0x72, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x6e, + 0x61, 0x6d, 0x65, 0x18, 0x1d, 0x20, 0x01, 0x28, 0x09, 0x52, 0x10, 0x63, 0x6f, 0x6d, 0x6d, 0x69, + 0x74, 0x65, 0x72, 0x55, 0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x2e, 0x0a, 0x13, 0x63, + 0x6f, 0x6d, 0x6d, 0x69, 0x74, 0x65, 0x72, 0x5f, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x5f, 0x75, + 0x72, 0x6c, 0x18, 0x1e, 0x20, 0x01, 0x28, 0x09, 0x52, 0x11, 0x63, 0x6f, 0x6d, 0x6d, 0x69, 0x74, + 0x65, 0x72, 0x41, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x12, 0x3c, 0x0a, 0x09, 0x74, + 0x72, 0x69, 0x67, 0x67, 0x65, 0x72, 0x65, 0x72, 0x18, 0x1f, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1e, + 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, + 0x6d, 0x62, 0x65, 0x72, 0x2e, 0x54, 0x72, 0x69, 0x67, 0x67, 0x65, 0x72, 0x65, 0x72, 0x52, 0x09, + 0x74, 0x72, 0x69, 0x67, 0x67, 0x65, 0x72, 0x65, 0x72, 0x22, 0xfd, 0x03, 0x0a, 0x0c, 0x42, 0x6c, + 0x6f, 0x63, 0x6b, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x12, 0x19, 0x0a, 0x08, 0x62, 0x6c, + 0x6f, 0x63, 0x6b, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x62, 0x6c, + 0x6f, 0x63, 0x6b, 0x49, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, + 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x72, 0x69, + 0x6f, 0x72, 0x69, 0x74, 0x79, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x70, 0x72, 0x69, + 0x6f, 0x72, 0x69, 0x74, 0x79, 0x12, 0x22, 0x0a, 0x0c, 0x64, 0x65, 0x70, 0x65, 0x6e, 0x64, 0x65, + 0x6e, 0x63, 0x69, 0x65, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0c, 0x64, 0x65, 0x70, + 0x65, 0x6e, 0x64, 0x65, 0x6e, 0x63, 0x69, 0x65, 0x73, 0x12, 0x36, 0x0a, 0x05, 0x73, 0x74, 0x61, + 0x74, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x20, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, + 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x2e, 0x42, + 0x6c, 0x6f, 0x63, 0x6b, 0x2e, 0x53, 0x74, 0x61, 0x74, 0x65, 0x52, 0x05, 0x73, 0x74, 0x61, 0x74, + 0x65, 0x12, 0x39, 0x0a, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x06, 0x20, 0x01, 0x28, + 0x0e, 0x32, 0x21, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, + 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x2e, 0x42, 0x6c, 0x6f, 0x63, 0x6b, 0x2e, 0x52, 0x65, + 0x73, 0x75, 0x6c, 0x74, 0x52, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x4c, 0x0a, 0x0d, + 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x5f, 0x72, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x18, 0x07, 0x20, + 0x01, 0x28, 0x0e, 0x32, 0x27, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, + 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x2e, 0x42, 0x6c, 0x6f, 0x63, 0x6b, 0x2e, + 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x52, 0x0c, 0x72, 0x65, + 0x73, 0x75, 0x6c, 0x74, 0x52, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x12, 0x2b, 0x0a, 0x11, 0x65, 0x72, + 0x72, 0x6f, 0x72, 0x5f, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, + 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x10, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x44, 0x65, 0x73, 0x63, + 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x40, 0x0a, 0x04, 0x6a, 0x6f, 0x62, 0x73, 0x18, + 0x09, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2c, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, + 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x2e, 0x42, 0x6c, 0x6f, 0x63, + 0x6b, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x2e, 0x4a, 0x6f, 0x62, 0x44, 0x65, 0x74, 0x61, + 0x69, 0x6c, 0x73, 0x52, 0x04, 0x6a, 0x6f, 0x62, 0x73, 0x1a, 0x4e, 0x0a, 0x0a, 0x4a, 0x6f, 0x62, + 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, + 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x69, + 0x6e, 0x64, 0x65, 0x78, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x05, 0x69, 0x6e, 0x64, 0x65, + 0x78, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, + 0x09, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x22, 0xe2, 0x01, 0x0a, 0x0d, 0x52, 0x75, + 0x6e, 0x4e, 0x6f, 0x77, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x21, 0x0a, 0x0c, 0x72, + 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, + 0x09, 0x52, 0x0b, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x65, 0x72, 0x49, 0x64, 0x12, 0x3b, + 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x27, 0x2e, 0x49, + 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, + 0x65, 0x72, 0x2e, 0x52, 0x75, 0x6e, 0x4e, 0x6f, 0x77, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, + 0x2e, 0x54, 0x79, 0x70, 0x65, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x15, 0x0a, 0x06, 0x70, + 0x70, 0x6c, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x70, 0x70, 0x6c, + 0x49, 0x64, 0x12, 0x19, 0x0a, 0x08, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x5f, 0x69, 0x64, 0x18, 0x04, + 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x49, 0x64, 0x12, 0x15, 0x0a, + 0x06, 0x6a, 0x6f, 0x62, 0x5f, 0x69, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x6a, + 0x6f, 0x62, 0x49, 0x64, 0x22, 0x28, 0x0a, 0x04, 0x54, 0x79, 0x70, 0x65, 0x12, 0x0c, 0x0a, 0x08, + 0x50, 0x49, 0x50, 0x45, 0x4c, 0x49, 0x4e, 0x45, 0x10, 0x00, 0x12, 0x09, 0x0a, 0x05, 0x42, 0x4c, + 0x4f, 0x43, 0x4b, 0x10, 0x01, 0x12, 0x07, 0x0a, 0x03, 0x4a, 0x4f, 0x42, 0x10, 0x02, 0x22, 0x10, + 0x0a, 0x0e, 0x52, 0x75, 0x6e, 0x4e, 0x6f, 0x77, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, + 0x22, 0x2c, 0x0a, 0x13, 0x47, 0x65, 0x74, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, + 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x15, 0x0a, 0x06, 0x70, 0x70, 0x6c, 0x5f, 0x69, + 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x70, 0x70, 0x6c, 0x49, 0x64, 0x22, 0x83, + 0x01, 0x0a, 0x14, 0x47, 0x65, 0x74, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x52, + 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x4c, 0x0a, 0x0f, 0x72, 0x65, 0x73, 0x70, 0x6f, + 0x6e, 0x73, 0x65, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, + 0x32, 0x23, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, + 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x53, + 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x0e, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x53, + 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, + 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, + 0x63, 0x74, 0x49, 0x64, 0x22, 0x55, 0x0a, 0x13, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, + 0x59, 0x61, 0x6d, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x27, 0x0a, 0x0f, 0x79, + 0x61, 0x6d, 0x6c, 0x5f, 0x64, 0x65, 0x66, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x01, + 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x79, 0x61, 0x6d, 0x6c, 0x44, 0x65, 0x66, 0x69, 0x6e, 0x69, + 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x15, 0x0a, 0x06, 0x70, 0x70, 0x6c, 0x5f, 0x69, 0x64, 0x18, 0x02, + 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x70, 0x70, 0x6c, 0x49, 0x64, 0x22, 0x7b, 0x0a, 0x14, 0x56, + 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x59, 0x61, 0x6d, 0x6c, 0x52, 0x65, 0x73, 0x70, 0x6f, + 0x6e, 0x73, 0x65, 0x12, 0x4c, 0x0a, 0x0f, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x5f, + 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x23, 0x2e, 0x49, + 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, + 0x65, 0x72, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, + 0x73, 0x52, 0x0e, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, + 0x73, 0x12, 0x15, 0x0a, 0x06, 0x70, 0x70, 0x6c, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, + 0x09, 0x52, 0x05, 0x70, 0x70, 0x6c, 0x49, 0x64, 0x22, 0x88, 0x03, 0x0a, 0x18, 0x53, 0x63, 0x68, + 0x65, 0x64, 0x75, 0x6c, 0x65, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x65, + 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x70, 0x61, + 0x74, 0x68, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x66, 0x69, 0x6c, 0x65, 0x50, 0x61, + 0x74, 0x68, 0x12, 0x15, 0x0a, 0x06, 0x70, 0x70, 0x6c, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, + 0x28, 0x09, 0x52, 0x05, 0x70, 0x70, 0x6c, 0x49, 0x64, 0x12, 0x23, 0x0a, 0x0d, 0x72, 0x65, 0x71, + 0x75, 0x65, 0x73, 0x74, 0x5f, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, + 0x52, 0x0c, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x12, 0x45, + 0x0a, 0x0d, 0x65, 0x6e, 0x76, 0x5f, 0x76, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x18, + 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x20, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, + 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x2e, 0x45, 0x6e, 0x76, 0x56, + 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x0c, 0x65, 0x6e, 0x76, 0x56, 0x61, 0x72, 0x69, + 0x61, 0x62, 0x6c, 0x65, 0x73, 0x12, 0x31, 0x0a, 0x15, 0x70, 0x72, 0x65, 0x76, 0x5f, 0x70, 0x70, + 0x6c, 0x5f, 0x61, 0x72, 0x74, 0x65, 0x66, 0x61, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x73, 0x18, 0x06, + 0x20, 0x03, 0x28, 0x09, 0x52, 0x12, 0x70, 0x72, 0x65, 0x76, 0x50, 0x70, 0x6c, 0x41, 0x72, 0x74, + 0x65, 0x66, 0x61, 0x63, 0x74, 0x49, 0x64, 0x73, 0x12, 0x1f, 0x0a, 0x0b, 0x70, 0x72, 0x6f, 0x6d, + 0x6f, 0x74, 0x65, 0x64, 0x5f, 0x62, 0x79, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x70, + 0x72, 0x6f, 0x6d, 0x6f, 0x74, 0x65, 0x64, 0x42, 0x79, 0x12, 0x23, 0x0a, 0x0d, 0x61, 0x75, 0x74, + 0x6f, 0x5f, 0x70, 0x72, 0x6f, 0x6d, 0x6f, 0x74, 0x65, 0x64, 0x18, 0x08, 0x20, 0x01, 0x28, 0x08, + 0x52, 0x0c, 0x61, 0x75, 0x74, 0x6f, 0x50, 0x72, 0x6f, 0x6d, 0x6f, 0x74, 0x65, 0x64, 0x12, 0x21, + 0x0a, 0x0c, 0x73, 0x65, 0x63, 0x72, 0x65, 0x74, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x73, 0x18, 0x09, + 0x20, 0x03, 0x28, 0x09, 0x52, 0x0b, 0x73, 0x65, 0x63, 0x72, 0x65, 0x74, 0x4e, 0x61, 0x6d, 0x65, + 0x73, 0x12, 0x30, 0x0a, 0x14, 0x64, 0x65, 0x70, 0x6c, 0x6f, 0x79, 0x6d, 0x65, 0x6e, 0x74, 0x5f, + 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, + 0x12, 0x64, 0x65, 0x70, 0x6c, 0x6f, 0x79, 0x6d, 0x65, 0x6e, 0x74, 0x54, 0x61, 0x72, 0x67, 0x65, + 0x74, 0x49, 0x64, 0x22, 0x37, 0x0a, 0x0b, 0x45, 0x6e, 0x76, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, + 0x6c, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, + 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, + 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x22, 0x80, 0x01, 0x0a, + 0x19, 0x53, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, + 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x4c, 0x0a, 0x0f, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x23, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x0e, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x15, 0x0a, 0x06, 0x70, 0x70, 0x6c, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x70, 0x70, 0x6c, 0x49, 0x64, 0x22, - 0x10, 0x0a, 0x0e, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, - 0x74, 0x22, 0x2b, 0x0a, 0x0f, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, - 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, - 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x22, 0xb8, - 0x01, 0x0a, 0x0e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, - 0x73, 0x12, 0x44, 0x0a, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, - 0x30, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, + 0x4c, 0x0a, 0x0d, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, + 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01, + 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, + 0x1c, 0x0a, 0x09, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x65, 0x72, 0x18, 0x03, 0x20, 0x01, + 0x28, 0x09, 0x52, 0x09, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x65, 0x72, 0x22, 0x4d, 0x0a, + 0x0e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, + 0x3b, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, + 0x23, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x53, 0x74, - 0x61, 0x74, 0x75, 0x73, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x64, - 0x65, 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, - 0x67, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, - 0x65, 0x22, 0x46, 0x0a, 0x0c, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x64, - 0x65, 0x12, 0x06, 0x0a, 0x02, 0x4f, 0x4b, 0x10, 0x00, 0x12, 0x0d, 0x0a, 0x09, 0x42, 0x41, 0x44, - 0x5f, 0x50, 0x41, 0x52, 0x41, 0x4d, 0x10, 0x01, 0x12, 0x12, 0x0a, 0x0e, 0x4c, 0x49, 0x4d, 0x49, - 0x54, 0x5f, 0x45, 0x58, 0x43, 0x45, 0x45, 0x44, 0x45, 0x44, 0x10, 0x02, 0x12, 0x0b, 0x0a, 0x07, - 0x52, 0x45, 0x46, 0x55, 0x53, 0x45, 0x44, 0x10, 0x03, 0x22, 0xa5, 0x01, 0x0a, 0x0d, 0x50, 0x69, - 0x70, 0x65, 0x6c, 0x69, 0x6e, 0x65, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x12, 0x1f, 0x0a, 0x0b, 0x70, - 0x69, 0x70, 0x65, 0x6c, 0x69, 0x6e, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, - 0x52, 0x0a, 0x70, 0x69, 0x70, 0x65, 0x6c, 0x69, 0x6e, 0x65, 0x49, 0x64, 0x12, 0x39, 0x0a, 0x05, - 0x73, 0x74, 0x61, 0x74, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x23, 0x2e, 0x49, 0x6e, - 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, - 0x72, 0x2e, 0x50, 0x69, 0x70, 0x65, 0x6c, 0x69, 0x6e, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x74, 0x65, - 0x52, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x12, 0x38, 0x0a, 0x09, 0x74, 0x69, 0x6d, 0x65, 0x73, - 0x74, 0x61, 0x6d, 0x70, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, - 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x09, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, - 0x70, 0x22, 0xc2, 0x01, 0x0a, 0x12, 0x50, 0x69, 0x70, 0x65, 0x6c, 0x69, 0x6e, 0x65, 0x42, 0x6c, - 0x6f, 0x63, 0x6b, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x12, 0x1f, 0x0a, 0x0b, 0x70, 0x69, 0x70, 0x65, - 0x6c, 0x69, 0x6e, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x70, - 0x69, 0x70, 0x65, 0x6c, 0x69, 0x6e, 0x65, 0x49, 0x64, 0x12, 0x19, 0x0a, 0x08, 0x62, 0x6c, 0x6f, - 0x63, 0x6b, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x62, 0x6c, 0x6f, - 0x63, 0x6b, 0x49, 0x64, 0x12, 0x36, 0x0a, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x18, 0x03, 0x20, - 0x01, 0x28, 0x0e, 0x32, 0x20, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, - 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x2e, 0x42, 0x6c, 0x6f, 0x63, 0x6b, 0x2e, - 0x53, 0x74, 0x61, 0x74, 0x65, 0x52, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x12, 0x38, 0x0a, 0x09, - 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, - 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, - 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x09, 0x74, 0x69, 0x6d, - 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x22, 0xd2, 0x03, 0x0a, 0x0d, 0x41, 0x66, 0x74, 0x65, 0x72, - 0x50, 0x69, 0x70, 0x65, 0x6c, 0x69, 0x6e, 0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x70, 0x69, 0x70, 0x65, - 0x6c, 0x69, 0x6e, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x70, - 0x69, 0x70, 0x65, 0x6c, 0x69, 0x6e, 0x65, 0x49, 0x64, 0x12, 0x3e, 0x0a, 0x05, 0x73, 0x74, 0x61, - 0x74, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x28, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, - 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x2e, 0x41, - 0x66, 0x74, 0x65, 0x72, 0x50, 0x69, 0x70, 0x65, 0x6c, 0x69, 0x6e, 0x65, 0x2e, 0x53, 0x74, 0x61, - 0x74, 0x65, 0x52, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x12, 0x41, 0x0a, 0x06, 0x72, 0x65, 0x73, - 0x75, 0x6c, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x29, 0x2e, 0x49, 0x6e, 0x74, 0x65, + 0x61, 0x74, 0x75, 0x73, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x22, 0x6c, 0x0a, 0x15, + 0x50, 0x61, 0x72, 0x74, 0x69, 0x61, 0x6c, 0x52, 0x65, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x52, 0x65, + 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x15, 0x0a, 0x06, 0x70, 0x70, 0x6c, 0x5f, 0x69, 0x64, 0x18, + 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x70, 0x70, 0x6c, 0x49, 0x64, 0x12, 0x23, 0x0a, 0x0d, + 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x5f, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x18, 0x02, 0x20, + 0x01, 0x28, 0x09, 0x52, 0x0c, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x54, 0x6f, 0x6b, 0x65, + 0x6e, 0x12, 0x17, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, + 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x22, 0x7d, 0x0a, 0x16, 0x50, 0x61, + 0x72, 0x74, 0x69, 0x61, 0x6c, 0x52, 0x65, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x52, 0x65, 0x73, 0x70, + 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x4c, 0x0a, 0x0f, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, + 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x23, 0x2e, + 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, + 0x62, 0x65, 0x72, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x53, 0x74, 0x61, 0x74, + 0x75, 0x73, 0x52, 0x0e, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x53, 0x74, 0x61, 0x74, + 0x75, 0x73, 0x12, 0x15, 0x0a, 0x06, 0x70, 0x70, 0x6c, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, + 0x28, 0x09, 0x52, 0x05, 0x70, 0x70, 0x6c, 0x49, 0x64, 0x22, 0x10, 0x0a, 0x0e, 0x56, 0x65, 0x72, + 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x22, 0x2b, 0x0a, 0x0f, 0x56, + 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x18, + 0x0a, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, + 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x22, 0xb8, 0x01, 0x0a, 0x0e, 0x52, 0x65, 0x73, + 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x44, 0x0a, 0x04, 0x63, + 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x30, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x2e, - 0x41, 0x66, 0x74, 0x65, 0x72, 0x50, 0x69, 0x70, 0x65, 0x6c, 0x69, 0x6e, 0x65, 0x2e, 0x52, 0x65, - 0x73, 0x75, 0x6c, 0x74, 0x52, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x54, 0x0a, 0x0d, - 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x5f, 0x72, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x18, 0x04, 0x20, - 0x01, 0x28, 0x0e, 0x32, 0x2f, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, - 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x2e, 0x41, 0x66, 0x74, 0x65, 0x72, 0x50, - 0x69, 0x70, 0x65, 0x6c, 0x69, 0x6e, 0x65, 0x2e, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x65, - 0x61, 0x73, 0x6f, 0x6e, 0x52, 0x0c, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x65, 0x61, 0x73, - 0x6f, 0x6e, 0x12, 0x39, 0x0a, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x74, - 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, - 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, - 0x6d, 0x70, 0x52, 0x09, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x41, 0x74, 0x22, 0x38, 0x0a, - 0x05, 0x53, 0x74, 0x61, 0x74, 0x65, 0x12, 0x0b, 0x0a, 0x07, 0x57, 0x41, 0x49, 0x54, 0x49, 0x4e, - 0x47, 0x10, 0x00, 0x12, 0x0b, 0x0a, 0x07, 0x50, 0x45, 0x4e, 0x44, 0x49, 0x4e, 0x47, 0x10, 0x01, - 0x12, 0x0b, 0x0a, 0x07, 0x52, 0x55, 0x4e, 0x4e, 0x49, 0x4e, 0x47, 0x10, 0x02, 0x12, 0x08, 0x0a, - 0x04, 0x44, 0x4f, 0x4e, 0x45, 0x10, 0x03, 0x22, 0x2d, 0x0a, 0x06, 0x52, 0x65, 0x73, 0x75, 0x6c, - 0x74, 0x12, 0x0a, 0x0a, 0x06, 0x50, 0x41, 0x53, 0x53, 0x45, 0x44, 0x10, 0x00, 0x12, 0x0b, 0x0a, - 0x07, 0x53, 0x54, 0x4f, 0x50, 0x50, 0x45, 0x44, 0x10, 0x01, 0x12, 0x0a, 0x0a, 0x06, 0x46, 0x41, - 0x49, 0x4c, 0x45, 0x44, 0x10, 0x02, 0x22, 0x23, 0x0a, 0x0c, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, - 0x52, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x12, 0x08, 0x0a, 0x04, 0x54, 0x45, 0x53, 0x54, 0x10, 0x00, - 0x12, 0x09, 0x0a, 0x05, 0x53, 0x54, 0x55, 0x43, 0x4b, 0x10, 0x01, 0x22, 0xaf, 0x01, 0x0a, 0x12, - 0x41, 0x66, 0x74, 0x65, 0x72, 0x50, 0x69, 0x70, 0x65, 0x6c, 0x69, 0x6e, 0x65, 0x45, 0x76, 0x65, + 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x2e, 0x52, + 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x04, 0x63, 0x6f, 0x64, + 0x65, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x02, 0x20, 0x01, + 0x28, 0x09, 0x52, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x22, 0x46, 0x0a, 0x0c, 0x52, + 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x06, 0x0a, 0x02, 0x4f, + 0x4b, 0x10, 0x00, 0x12, 0x0d, 0x0a, 0x09, 0x42, 0x41, 0x44, 0x5f, 0x50, 0x41, 0x52, 0x41, 0x4d, + 0x10, 0x01, 0x12, 0x12, 0x0a, 0x0e, 0x4c, 0x49, 0x4d, 0x49, 0x54, 0x5f, 0x45, 0x58, 0x43, 0x45, + 0x45, 0x44, 0x45, 0x44, 0x10, 0x02, 0x12, 0x0b, 0x0a, 0x07, 0x52, 0x45, 0x46, 0x55, 0x53, 0x45, + 0x44, 0x10, 0x03, 0x22, 0xa5, 0x01, 0x0a, 0x0d, 0x50, 0x69, 0x70, 0x65, 0x6c, 0x69, 0x6e, 0x65, + 0x45, 0x76, 0x65, 0x6e, 0x74, 0x12, 0x1f, 0x0a, 0x0b, 0x70, 0x69, 0x70, 0x65, 0x6c, 0x69, 0x6e, + 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x70, 0x69, 0x70, 0x65, + 0x6c, 0x69, 0x6e, 0x65, 0x49, 0x64, 0x12, 0x39, 0x0a, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x18, + 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x23, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, + 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x2e, 0x50, 0x69, 0x70, 0x65, + 0x6c, 0x69, 0x6e, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x74, 0x65, 0x52, 0x05, 0x73, 0x74, 0x61, 0x74, + 0x65, 0x12, 0x38, 0x0a, 0x09, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x18, 0x03, + 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, + 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, + 0x52, 0x09, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x22, 0xc2, 0x01, 0x0a, 0x12, + 0x50, 0x69, 0x70, 0x65, 0x6c, 0x69, 0x6e, 0x65, 0x42, 0x6c, 0x6f, 0x63, 0x6b, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x12, 0x1f, 0x0a, 0x0b, 0x70, 0x69, 0x70, 0x65, 0x6c, 0x69, 0x6e, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x70, 0x69, 0x70, 0x65, 0x6c, 0x69, 0x6e, + 0x65, 0x49, 0x64, 0x12, 0x19, 0x0a, 0x08, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x5f, 0x69, 0x64, 0x18, + 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x49, 0x64, 0x12, 0x36, + 0x0a, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x20, 0x2e, + 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, + 0x62, 0x65, 0x72, 0x2e, 0x42, 0x6c, 0x6f, 0x63, 0x6b, 0x2e, 0x53, 0x74, 0x61, 0x74, 0x65, 0x52, + 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x12, 0x38, 0x0a, 0x09, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, + 0x61, 0x6d, 0x70, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, + 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, + 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x09, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, + 0x22, 0xd2, 0x03, 0x0a, 0x0d, 0x41, 0x66, 0x74, 0x65, 0x72, 0x50, 0x69, 0x70, 0x65, 0x6c, 0x69, + 0x6e, 0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x70, 0x69, 0x70, 0x65, 0x6c, 0x69, 0x6e, 0x65, 0x5f, 0x69, + 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x70, 0x69, 0x70, 0x65, 0x6c, 0x69, 0x6e, 0x65, 0x49, 0x64, 0x12, 0x3e, 0x0a, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x28, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x2e, 0x41, 0x66, 0x74, 0x65, 0x72, 0x50, 0x69, 0x70, 0x65, 0x6c, 0x69, 0x6e, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x74, 0x65, 0x52, 0x05, 0x73, 0x74, - 0x61, 0x74, 0x65, 0x12, 0x38, 0x0a, 0x09, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, - 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, - 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, - 0x6d, 0x70, 0x52, 0x09, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x2a, 0x2d, 0x0a, - 0x09, 0x51, 0x75, 0x65, 0x75, 0x65, 0x54, 0x79, 0x70, 0x65, 0x12, 0x0c, 0x0a, 0x08, 0x49, 0x4d, - 0x50, 0x4c, 0x49, 0x43, 0x49, 0x54, 0x10, 0x00, 0x12, 0x12, 0x0a, 0x0e, 0x55, 0x53, 0x45, 0x52, - 0x5f, 0x47, 0x45, 0x4e, 0x45, 0x52, 0x41, 0x54, 0x45, 0x44, 0x10, 0x01, 0x2a, 0x29, 0x0a, 0x0a, - 0x47, 0x69, 0x74, 0x52, 0x65, 0x66, 0x54, 0x79, 0x70, 0x65, 0x12, 0x0a, 0x0a, 0x06, 0x42, 0x52, - 0x41, 0x4e, 0x43, 0x48, 0x10, 0x00, 0x12, 0x07, 0x0a, 0x03, 0x54, 0x41, 0x47, 0x10, 0x01, 0x12, - 0x06, 0x0a, 0x02, 0x50, 0x52, 0x10, 0x02, 0x32, 0xd7, 0x0d, 0x0a, 0x0f, 0x50, 0x69, 0x70, 0x65, - 0x6c, 0x69, 0x6e, 0x65, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0x57, 0x0a, 0x08, 0x53, - 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x12, 0x24, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, - 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x2e, 0x53, 0x63, - 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x25, 0x2e, - 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, - 0x62, 0x65, 0x72, 0x2e, 0x53, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x70, - 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x57, 0x0a, 0x08, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, - 0x12, 0x24, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, - 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x2e, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x52, - 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x25, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, - 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x2e, 0x44, 0x65, 0x73, - 0x63, 0x72, 0x69, 0x62, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x63, 0x0a, - 0x0c, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x4d, 0x61, 0x6e, 0x79, 0x12, 0x28, 0x2e, + 0x61, 0x74, 0x65, 0x12, 0x41, 0x0a, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x03, 0x20, + 0x01, 0x28, 0x0e, 0x32, 0x29, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, + 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x2e, 0x41, 0x66, 0x74, 0x65, 0x72, 0x50, + 0x69, 0x70, 0x65, 0x6c, 0x69, 0x6e, 0x65, 0x2e, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x06, + 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x54, 0x0a, 0x0d, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, + 0x5f, 0x72, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2f, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, - 0x62, 0x65, 0x72, 0x2e, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x4d, 0x61, 0x6e, 0x79, - 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x29, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, - 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x2e, 0x44, 0x65, - 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x4d, 0x61, 0x6e, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, - 0x73, 0x65, 0x12, 0x6f, 0x0a, 0x10, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x54, 0x6f, - 0x70, 0x6f, 0x6c, 0x6f, 0x67, 0x79, 0x12, 0x2c, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, - 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x2e, 0x44, 0x65, 0x73, - 0x63, 0x72, 0x69, 0x62, 0x65, 0x54, 0x6f, 0x70, 0x6f, 0x6c, 0x6f, 0x67, 0x79, 0x52, 0x65, 0x71, - 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2d, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, + 0x62, 0x65, 0x72, 0x2e, 0x41, 0x66, 0x74, 0x65, 0x72, 0x50, 0x69, 0x70, 0x65, 0x6c, 0x69, 0x6e, + 0x65, 0x2e, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x52, 0x0c, + 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x12, 0x39, 0x0a, 0x0a, + 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, + 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, + 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x09, 0x63, 0x72, + 0x65, 0x61, 0x74, 0x65, 0x64, 0x41, 0x74, 0x22, 0x38, 0x0a, 0x05, 0x53, 0x74, 0x61, 0x74, 0x65, + 0x12, 0x0b, 0x0a, 0x07, 0x57, 0x41, 0x49, 0x54, 0x49, 0x4e, 0x47, 0x10, 0x00, 0x12, 0x0b, 0x0a, + 0x07, 0x50, 0x45, 0x4e, 0x44, 0x49, 0x4e, 0x47, 0x10, 0x01, 0x12, 0x0b, 0x0a, 0x07, 0x52, 0x55, + 0x4e, 0x4e, 0x49, 0x4e, 0x47, 0x10, 0x02, 0x12, 0x08, 0x0a, 0x04, 0x44, 0x4f, 0x4e, 0x45, 0x10, + 0x03, 0x22, 0x2d, 0x0a, 0x06, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x0a, 0x0a, 0x06, 0x50, + 0x41, 0x53, 0x53, 0x45, 0x44, 0x10, 0x00, 0x12, 0x0b, 0x0a, 0x07, 0x53, 0x54, 0x4f, 0x50, 0x50, + 0x45, 0x44, 0x10, 0x01, 0x12, 0x0a, 0x0a, 0x06, 0x46, 0x41, 0x49, 0x4c, 0x45, 0x44, 0x10, 0x02, + 0x22, 0x23, 0x0a, 0x0c, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x65, 0x61, 0x73, 0x6f, 0x6e, + 0x12, 0x08, 0x0a, 0x04, 0x54, 0x45, 0x53, 0x54, 0x10, 0x00, 0x12, 0x09, 0x0a, 0x05, 0x53, 0x54, + 0x55, 0x43, 0x4b, 0x10, 0x01, 0x22, 0xaf, 0x01, 0x0a, 0x12, 0x41, 0x66, 0x74, 0x65, 0x72, 0x50, + 0x69, 0x70, 0x65, 0x6c, 0x69, 0x6e, 0x65, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x12, 0x1f, 0x0a, 0x0b, + 0x70, 0x69, 0x70, 0x65, 0x6c, 0x69, 0x6e, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, + 0x09, 0x52, 0x0a, 0x70, 0x69, 0x70, 0x65, 0x6c, 0x69, 0x6e, 0x65, 0x49, 0x64, 0x12, 0x3e, 0x0a, + 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x28, 0x2e, 0x49, + 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, + 0x65, 0x72, 0x2e, 0x41, 0x66, 0x74, 0x65, 0x72, 0x50, 0x69, 0x70, 0x65, 0x6c, 0x69, 0x6e, 0x65, + 0x2e, 0x53, 0x74, 0x61, 0x74, 0x65, 0x52, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x12, 0x38, 0x0a, + 0x09, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, + 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, + 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x09, 0x74, 0x69, + 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x2a, 0x2d, 0x0a, 0x09, 0x51, 0x75, 0x65, 0x75, 0x65, + 0x54, 0x79, 0x70, 0x65, 0x12, 0x0c, 0x0a, 0x08, 0x49, 0x4d, 0x50, 0x4c, 0x49, 0x43, 0x49, 0x54, + 0x10, 0x00, 0x12, 0x12, 0x0a, 0x0e, 0x55, 0x53, 0x45, 0x52, 0x5f, 0x47, 0x45, 0x4e, 0x45, 0x52, + 0x41, 0x54, 0x45, 0x44, 0x10, 0x01, 0x2a, 0x29, 0x0a, 0x0a, 0x47, 0x69, 0x74, 0x52, 0x65, 0x66, + 0x54, 0x79, 0x70, 0x65, 0x12, 0x0a, 0x0a, 0x06, 0x42, 0x52, 0x41, 0x4e, 0x43, 0x48, 0x10, 0x00, + 0x12, 0x07, 0x0a, 0x03, 0x54, 0x41, 0x47, 0x10, 0x01, 0x12, 0x06, 0x0a, 0x02, 0x50, 0x52, 0x10, + 0x02, 0x2a, 0x52, 0x0a, 0x0b, 0x54, 0x72, 0x69, 0x67, 0x67, 0x65, 0x72, 0x65, 0x64, 0x42, 0x79, + 0x12, 0x0c, 0x0a, 0x08, 0x57, 0x4f, 0x52, 0x4b, 0x46, 0x4c, 0x4f, 0x57, 0x10, 0x00, 0x12, 0x0d, + 0x0a, 0x09, 0x50, 0x52, 0x4f, 0x4d, 0x4f, 0x54, 0x49, 0x4f, 0x4e, 0x10, 0x01, 0x12, 0x12, 0x0a, + 0x0e, 0x41, 0x55, 0x54, 0x4f, 0x5f, 0x50, 0x52, 0x4f, 0x4d, 0x4f, 0x54, 0x49, 0x4f, 0x4e, 0x10, + 0x02, 0x12, 0x12, 0x0a, 0x0e, 0x50, 0x41, 0x52, 0x54, 0x49, 0x41, 0x4c, 0x5f, 0x52, 0x45, 0x5f, + 0x52, 0x55, 0x4e, 0x10, 0x03, 0x32, 0xd7, 0x0d, 0x0a, 0x0f, 0x50, 0x69, 0x70, 0x65, 0x6c, 0x69, + 0x6e, 0x65, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0x57, 0x0a, 0x08, 0x53, 0x63, 0x68, + 0x65, 0x64, 0x75, 0x6c, 0x65, 0x12, 0x24, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, + 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x2e, 0x53, 0x63, 0x68, 0x65, + 0x64, 0x75, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x25, 0x2e, 0x49, 0x6e, + 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, + 0x72, 0x2e, 0x53, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, + 0x73, 0x65, 0x12, 0x57, 0x0a, 0x08, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x12, 0x24, + 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, + 0x6d, 0x62, 0x65, 0x72, 0x2e, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x52, 0x65, 0x71, + 0x75, 0x65, 0x73, 0x74, 0x1a, 0x25, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x2e, 0x44, 0x65, 0x73, 0x63, 0x72, - 0x69, 0x62, 0x65, 0x54, 0x6f, 0x70, 0x6f, 0x6c, 0x6f, 0x67, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, - 0x6e, 0x73, 0x65, 0x12, 0x5a, 0x0a, 0x09, 0x54, 0x65, 0x72, 0x6d, 0x69, 0x6e, 0x61, 0x74, 0x65, - 0x12, 0x25, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, - 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x2e, 0x54, 0x65, 0x72, 0x6d, 0x69, 0x6e, 0x61, 0x74, 0x65, - 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x26, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, - 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x2e, 0x54, 0x65, - 0x72, 0x6d, 0x69, 0x6e, 0x61, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, - 0x5d, 0x0a, 0x0a, 0x4c, 0x69, 0x73, 0x74, 0x4b, 0x65, 0x79, 0x73, 0x65, 0x74, 0x12, 0x26, 0x2e, - 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, - 0x62, 0x65, 0x72, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x4b, 0x65, 0x79, 0x73, 0x65, 0x74, 0x52, 0x65, - 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x27, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, - 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x2e, 0x4c, 0x69, 0x73, 0x74, - 0x4b, 0x65, 0x79, 0x73, 0x65, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x4b, - 0x0a, 0x04, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x20, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, - 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x2e, 0x4c, 0x69, 0x73, - 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x21, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, - 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x2e, 0x4c, - 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x60, 0x0a, 0x0b, 0x4c, - 0x69, 0x73, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x65, 0x64, 0x12, 0x27, 0x2e, 0x49, 0x6e, 0x74, - 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, - 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x65, 0x64, 0x52, 0x65, 0x71, 0x75, - 0x65, 0x73, 0x74, 0x1a, 0x28, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, - 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x47, 0x72, - 0x6f, 0x75, 0x70, 0x65, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x5d, 0x0a, - 0x0a, 0x4c, 0x69, 0x73, 0x74, 0x51, 0x75, 0x65, 0x75, 0x65, 0x73, 0x12, 0x26, 0x2e, 0x49, 0x6e, + 0x69, 0x62, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x63, 0x0a, 0x0c, 0x44, + 0x65, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x4d, 0x61, 0x6e, 0x79, 0x12, 0x28, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, - 0x72, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x51, 0x75, 0x65, 0x75, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, + 0x72, 0x2e, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x4d, 0x61, 0x6e, 0x79, 0x52, 0x65, + 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x29, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, + 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x2e, 0x44, 0x65, 0x73, 0x63, + 0x72, 0x69, 0x62, 0x65, 0x4d, 0x61, 0x6e, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, + 0x12, 0x6f, 0x0a, 0x10, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x54, 0x6f, 0x70, 0x6f, + 0x6c, 0x6f, 0x67, 0x79, 0x12, 0x2c, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, + 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x2e, 0x44, 0x65, 0x73, 0x63, 0x72, + 0x69, 0x62, 0x65, 0x54, 0x6f, 0x70, 0x6f, 0x6c, 0x6f, 0x67, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, + 0x73, 0x74, 0x1a, 0x2d, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, + 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x2e, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x62, + 0x65, 0x54, 0x6f, 0x70, 0x6f, 0x6c, 0x6f, 0x67, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, + 0x65, 0x12, 0x5a, 0x0a, 0x09, 0x54, 0x65, 0x72, 0x6d, 0x69, 0x6e, 0x61, 0x74, 0x65, 0x12, 0x25, + 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, + 0x6d, 0x62, 0x65, 0x72, 0x2e, 0x54, 0x65, 0x72, 0x6d, 0x69, 0x6e, 0x61, 0x74, 0x65, 0x52, 0x65, + 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x26, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, + 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x2e, 0x54, 0x65, 0x72, 0x6d, + 0x69, 0x6e, 0x61, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x5d, 0x0a, + 0x0a, 0x4c, 0x69, 0x73, 0x74, 0x4b, 0x65, 0x79, 0x73, 0x65, 0x74, 0x12, 0x26, 0x2e, 0x49, 0x6e, + 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, + 0x72, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x4b, 0x65, 0x79, 0x73, 0x65, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x27, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, - 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x51, 0x75, - 0x65, 0x75, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x63, 0x0a, 0x0c, - 0x4c, 0x69, 0x73, 0x74, 0x41, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x12, 0x28, 0x2e, 0x49, - 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, - 0x65, 0x72, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x41, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x52, - 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x29, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, + 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x4b, 0x65, + 0x79, 0x73, 0x65, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x4b, 0x0a, 0x04, + 0x4c, 0x69, 0x73, 0x74, 0x12, 0x20, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, + 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x52, + 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x21, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x2e, 0x4c, 0x69, 0x73, - 0x74, 0x41, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, - 0x65, 0x12, 0x69, 0x0a, 0x0e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, - 0x65, 0x72, 0x73, 0x12, 0x2a, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, - 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, - 0x71, 0x75, 0x65, 0x73, 0x74, 0x65, 0x72, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, - 0x2b, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, - 0x75, 0x6d, 0x62, 0x65, 0x72, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, - 0x74, 0x65, 0x72, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x51, 0x0a, 0x06, - 0x52, 0x75, 0x6e, 0x4e, 0x6f, 0x77, 0x12, 0x22, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, - 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x2e, 0x52, 0x75, 0x6e, - 0x4e, 0x6f, 0x77, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x23, 0x2e, 0x49, 0x6e, 0x74, - 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, - 0x2e, 0x52, 0x75, 0x6e, 0x4e, 0x6f, 0x77, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, - 0x63, 0x0a, 0x0c, 0x47, 0x65, 0x74, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, - 0x28, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, - 0x75, 0x6d, 0x62, 0x65, 0x72, 0x2e, 0x47, 0x65, 0x74, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, - 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x29, 0x2e, 0x49, 0x6e, 0x74, 0x65, + 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x60, 0x0a, 0x0b, 0x4c, 0x69, 0x73, + 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x65, 0x64, 0x12, 0x27, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, + 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x2e, 0x4c, + 0x69, 0x73, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x65, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, + 0x74, 0x1a, 0x28, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, + 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x47, 0x72, 0x6f, 0x75, + 0x70, 0x65, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x5d, 0x0a, 0x0a, 0x4c, + 0x69, 0x73, 0x74, 0x51, 0x75, 0x65, 0x75, 0x65, 0x73, 0x12, 0x26, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x2e, - 0x47, 0x65, 0x74, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, - 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x63, 0x0a, 0x0c, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, - 0x59, 0x61, 0x6d, 0x6c, 0x12, 0x28, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, - 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x2e, 0x56, 0x61, 0x6c, 0x69, 0x64, - 0x61, 0x74, 0x65, 0x59, 0x61, 0x6d, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x29, - 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, - 0x6d, 0x62, 0x65, 0x72, 0x2e, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x59, 0x61, 0x6d, - 0x6c, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x72, 0x0a, 0x11, 0x53, 0x63, 0x68, - 0x65, 0x64, 0x75, 0x6c, 0x65, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x2d, - 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, - 0x6d, 0x62, 0x65, 0x72, 0x2e, 0x53, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x45, 0x78, 0x74, - 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2e, 0x2e, + 0x4c, 0x69, 0x73, 0x74, 0x51, 0x75, 0x65, 0x75, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, + 0x74, 0x1a, 0x27, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, + 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x51, 0x75, 0x65, 0x75, + 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x63, 0x0a, 0x0c, 0x4c, 0x69, + 0x73, 0x74, 0x41, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x12, 0x28, 0x2e, 0x49, 0x6e, 0x74, + 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, + 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x41, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x52, 0x65, 0x71, + 0x75, 0x65, 0x73, 0x74, 0x1a, 0x29, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, + 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x41, + 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, + 0x69, 0x0a, 0x0e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x65, 0x72, + 0x73, 0x12, 0x2a, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, + 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, + 0x65, 0x73, 0x74, 0x65, 0x72, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2b, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, - 0x62, 0x65, 0x72, 0x2e, 0x53, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x45, 0x78, 0x74, 0x65, - 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x51, 0x0a, - 0x06, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x12, 0x22, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, - 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x2e, 0x44, 0x65, - 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x23, 0x2e, 0x49, 0x6e, - 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, - 0x72, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, - 0x12, 0x69, 0x0a, 0x0e, 0x50, 0x61, 0x72, 0x74, 0x69, 0x61, 0x6c, 0x52, 0x65, 0x62, 0x75, 0x69, - 0x6c, 0x64, 0x12, 0x2a, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, - 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x2e, 0x50, 0x61, 0x72, 0x74, 0x69, 0x61, 0x6c, - 0x52, 0x65, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2b, - 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, - 0x6d, 0x62, 0x65, 0x72, 0x2e, 0x50, 0x61, 0x72, 0x74, 0x69, 0x61, 0x6c, 0x52, 0x65, 0x62, 0x75, - 0x69, 0x6c, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x54, 0x0a, 0x07, 0x56, - 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x23, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, - 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x2e, 0x56, 0x65, 0x72, - 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x24, 0x2e, 0x49, 0x6e, + 0x62, 0x65, 0x72, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x65, + 0x72, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x51, 0x0a, 0x06, 0x52, 0x75, + 0x6e, 0x4e, 0x6f, 0x77, 0x12, 0x22, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, + 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x2e, 0x52, 0x75, 0x6e, 0x4e, 0x6f, + 0x77, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x23, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, + 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x2e, 0x52, + 0x75, 0x6e, 0x4e, 0x6f, 0x77, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x63, 0x0a, + 0x0c, 0x47, 0x65, 0x74, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x28, 0x2e, + 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, + 0x62, 0x65, 0x72, 0x2e, 0x47, 0x65, 0x74, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, + 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x29, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, + 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x2e, 0x47, 0x65, + 0x74, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, + 0x73, 0x65, 0x12, 0x63, 0x0a, 0x0c, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x59, 0x61, + 0x6d, 0x6c, 0x12, 0x28, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, + 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x2e, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, + 0x65, 0x59, 0x61, 0x6d, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x29, 0x2e, 0x49, + 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, + 0x65, 0x72, 0x2e, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x59, 0x61, 0x6d, 0x6c, 0x52, + 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x72, 0x0a, 0x11, 0x53, 0x63, 0x68, 0x65, 0x64, + 0x75, 0x6c, 0x65, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x2d, 0x2e, 0x49, + 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, + 0x65, 0x72, 0x2e, 0x53, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x45, 0x78, 0x74, 0x65, 0x6e, + 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2e, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, - 0x72, 0x2e, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, - 0x65, 0x42, 0x3e, 0x5a, 0x3c, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, - 0x72, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x65, 0x64, 0x74, 0x65, 0x78, 0x74, 0x2f, 0x76, 0x65, 0x6c, - 0x6f, 0x63, 0x69, 0x74, 0x79, 0x2f, 0x70, 0x6b, 0x67, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x73, - 0x2f, 0x70, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x2e, 0x70, 0x69, 0x70, 0x65, 0x6c, 0x69, 0x6e, - 0x65, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, + 0x72, 0x2e, 0x53, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, + 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x51, 0x0a, 0x06, 0x44, + 0x65, 0x6c, 0x65, 0x74, 0x65, 0x12, 0x22, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, + 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x2e, 0x44, 0x65, 0x6c, 0x65, + 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x23, 0x2e, 0x49, 0x6e, 0x74, 0x65, + 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x2e, + 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x69, + 0x0a, 0x0e, 0x50, 0x61, 0x72, 0x74, 0x69, 0x61, 0x6c, 0x52, 0x65, 0x62, 0x75, 0x69, 0x6c, 0x64, + 0x12, 0x2a, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, + 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x2e, 0x50, 0x61, 0x72, 0x74, 0x69, 0x61, 0x6c, 0x52, 0x65, + 0x62, 0x75, 0x69, 0x6c, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2b, 0x2e, 0x49, + 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, + 0x65, 0x72, 0x2e, 0x50, 0x61, 0x72, 0x74, 0x69, 0x61, 0x6c, 0x52, 0x65, 0x62, 0x75, 0x69, 0x6c, + 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x54, 0x0a, 0x07, 0x56, 0x65, 0x72, + 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x23, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, + 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x2e, 0x56, 0x65, 0x72, 0x73, 0x69, + 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x24, 0x2e, 0x49, 0x6e, 0x74, 0x65, + 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x2e, + 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x42, + 0x47, 0x5a, 0x45, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x73, 0x65, + 0x6d, 0x61, 0x70, 0x68, 0x6f, 0x72, 0x65, 0x69, 0x6f, 0x2f, 0x73, 0x65, 0x6d, 0x61, 0x70, 0x68, + 0x6f, 0x72, 0x65, 0x2f, 0x76, 0x65, 0x6c, 0x6f, 0x63, 0x69, 0x74, 0x79, 0x2f, 0x70, 0x6b, 0x67, + 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x73, 0x2f, 0x70, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x2e, + 0x70, 0x69, 0x70, 0x65, 0x6c, 0x69, 0x6e, 0x65, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( @@ -7039,217 +7350,223 @@ func file_plumber_pipeline_proto_rawDescGZIP() []byte { return file_plumber_pipeline_proto_rawDescData } -var file_plumber_pipeline_proto_enumTypes = make([]protoimpl.EnumInfo, 18) -var file_plumber_pipeline_proto_msgTypes = make([]protoimpl.MessageInfo, 54) +var file_plumber_pipeline_proto_enumTypes = make([]protoimpl.EnumInfo, 19) +var file_plumber_pipeline_proto_msgTypes = make([]protoimpl.MessageInfo, 55) var file_plumber_pipeline_proto_goTypes = []interface{}{ (QueueType)(0), // 0: InternalApi.Plumber.QueueType (GitRefType)(0), // 1: InternalApi.Plumber.GitRefType - (ScheduleRequest_ServiceType)(0), // 2: InternalApi.Plumber.ScheduleRequest.ServiceType - (Block_State)(0), // 3: InternalApi.Plumber.Block.State - (Block_Result)(0), // 4: InternalApi.Plumber.Block.Result - (Block_ResultReason)(0), // 5: InternalApi.Plumber.Block.ResultReason - (ListKeysetRequest_Order)(0), // 6: InternalApi.Plumber.ListKeysetRequest.Order - (ListKeysetRequest_Direction)(0), // 7: InternalApi.Plumber.ListKeysetRequest.Direction - (Pipeline_State)(0), // 8: InternalApi.Plumber.Pipeline.State - (Pipeline_Result)(0), // 9: InternalApi.Plumber.Pipeline.Result - (Pipeline_ResultReason)(0), // 10: InternalApi.Plumber.Pipeline.ResultReason - (ListActivityRequest_Order)(0), // 11: InternalApi.Plumber.ListActivityRequest.Order - (ListActivityRequest_Direction)(0), // 12: InternalApi.Plumber.ListActivityRequest.Direction - (RunNowRequest_Type)(0), // 13: InternalApi.Plumber.RunNowRequest.Type - (ResponseStatus_ResponseCode)(0), // 14: InternalApi.Plumber.ResponseStatus.ResponseCode - (AfterPipeline_State)(0), // 15: InternalApi.Plumber.AfterPipeline.State - (AfterPipeline_Result)(0), // 16: InternalApi.Plumber.AfterPipeline.Result - (AfterPipeline_ResultReason)(0), // 17: InternalApi.Plumber.AfterPipeline.ResultReason - (*ScheduleRequest)(nil), // 18: InternalApi.Plumber.ScheduleRequest - (*ScheduleResponse)(nil), // 19: InternalApi.Plumber.ScheduleResponse - (*DescribeRequest)(nil), // 20: InternalApi.Plumber.DescribeRequest - (*DescribeResponse)(nil), // 21: InternalApi.Plumber.DescribeResponse - (*Block)(nil), // 22: InternalApi.Plumber.Block - (*DescribeManyRequest)(nil), // 23: InternalApi.Plumber.DescribeManyRequest - (*DescribeManyResponse)(nil), // 24: InternalApi.Plumber.DescribeManyResponse - (*DescribeTopologyRequest)(nil), // 25: InternalApi.Plumber.DescribeTopologyRequest - (*DescribeTopologyResponse)(nil), // 26: InternalApi.Plumber.DescribeTopologyResponse - (*TerminateRequest)(nil), // 27: InternalApi.Plumber.TerminateRequest - (*TerminateResponse)(nil), // 28: InternalApi.Plumber.TerminateResponse - (*ListQueuesRequest)(nil), // 29: InternalApi.Plumber.ListQueuesRequest - (*ListQueuesResponse)(nil), // 30: InternalApi.Plumber.ListQueuesResponse - (*ListGroupedRequest)(nil), // 31: InternalApi.Plumber.ListGroupedRequest - (*ListGroupedResponse)(nil), // 32: InternalApi.Plumber.ListGroupedResponse - (*ListKeysetRequest)(nil), // 33: InternalApi.Plumber.ListKeysetRequest - (*ListKeysetResponse)(nil), // 34: InternalApi.Plumber.ListKeysetResponse - (*ListRequest)(nil), // 35: InternalApi.Plumber.ListRequest - (*ListResponse)(nil), // 36: InternalApi.Plumber.ListResponse - (*Queue)(nil), // 37: InternalApi.Plumber.Queue - (*Pipeline)(nil), // 38: InternalApi.Plumber.Pipeline - (*ListActivityRequest)(nil), // 39: InternalApi.Plumber.ListActivityRequest - (*ListActivityResponse)(nil), // 40: InternalApi.Plumber.ListActivityResponse - (*ListRequestersRequest)(nil), // 41: InternalApi.Plumber.ListRequestersRequest - (*ListRequestersResponse)(nil), // 42: InternalApi.Plumber.ListRequestersResponse - (*Requester)(nil), // 43: InternalApi.Plumber.Requester - (*ActivePipeline)(nil), // 44: InternalApi.Plumber.ActivePipeline - (*BlockDetails)(nil), // 45: InternalApi.Plumber.BlockDetails - (*RunNowRequest)(nil), // 46: InternalApi.Plumber.RunNowRequest - (*RunNowResponse)(nil), // 47: InternalApi.Plumber.RunNowResponse - (*GetProjectIdRequest)(nil), // 48: InternalApi.Plumber.GetProjectIdRequest - (*GetProjectIdResponse)(nil), // 49: InternalApi.Plumber.GetProjectIdResponse - (*ValidateYamlRequest)(nil), // 50: InternalApi.Plumber.ValidateYamlRequest - (*ValidateYamlResponse)(nil), // 51: InternalApi.Plumber.ValidateYamlResponse - (*ScheduleExtensionRequest)(nil), // 52: InternalApi.Plumber.ScheduleExtensionRequest - (*EnvVariable)(nil), // 53: InternalApi.Plumber.EnvVariable - (*ScheduleExtensionResponse)(nil), // 54: InternalApi.Plumber.ScheduleExtensionResponse - (*DeleteRequest)(nil), // 55: InternalApi.Plumber.DeleteRequest - (*DeleteResponse)(nil), // 56: InternalApi.Plumber.DeleteResponse - (*PartialRebuildRequest)(nil), // 57: InternalApi.Plumber.PartialRebuildRequest - (*PartialRebuildResponse)(nil), // 58: InternalApi.Plumber.PartialRebuildResponse - (*VersionRequest)(nil), // 59: InternalApi.Plumber.VersionRequest - (*VersionResponse)(nil), // 60: InternalApi.Plumber.VersionResponse - (*ResponseStatus)(nil), // 61: InternalApi.Plumber.ResponseStatus - (*PipelineEvent)(nil), // 62: InternalApi.Plumber.PipelineEvent - (*PipelineBlockEvent)(nil), // 63: InternalApi.Plumber.PipelineBlockEvent - (*AfterPipeline)(nil), // 64: InternalApi.Plumber.AfterPipeline - (*AfterPipelineEvent)(nil), // 65: InternalApi.Plumber.AfterPipelineEvent - (*ScheduleRequest_Repo)(nil), // 66: InternalApi.Plumber.ScheduleRequest.Repo - (*ScheduleRequest_Auth)(nil), // 67: InternalApi.Plumber.ScheduleRequest.Auth - (*Block_Job)(nil), // 68: InternalApi.Plumber.Block.Job - (*DescribeTopologyResponse_Block)(nil), // 69: InternalApi.Plumber.DescribeTopologyResponse.Block - (*DescribeTopologyResponse_AfterPipeline)(nil), // 70: InternalApi.Plumber.DescribeTopologyResponse.AfterPipeline - (*BlockDetails_JobDetails)(nil), // 71: InternalApi.Plumber.BlockDetails.JobDetails - (*timestamp.Timestamp)(nil), // 72: google.protobuf.Timestamp - (user.RepositoryProvider_Type)(0), // 73: InternalApi.User.RepositoryProvider.Type - (plumber_w_f_workflow.TriggeredBy)(0), // 74: InternalApi.PlumberWF.TriggeredBy + (TriggeredBy)(0), // 2: InternalApi.Plumber.TriggeredBy + (ScheduleRequest_ServiceType)(0), // 3: InternalApi.Plumber.ScheduleRequest.ServiceType + (Block_State)(0), // 4: InternalApi.Plumber.Block.State + (Block_Result)(0), // 5: InternalApi.Plumber.Block.Result + (Block_ResultReason)(0), // 6: InternalApi.Plumber.Block.ResultReason + (ListKeysetRequest_Order)(0), // 7: InternalApi.Plumber.ListKeysetRequest.Order + (ListKeysetRequest_Direction)(0), // 8: InternalApi.Plumber.ListKeysetRequest.Direction + (Pipeline_State)(0), // 9: InternalApi.Plumber.Pipeline.State + (Pipeline_Result)(0), // 10: InternalApi.Plumber.Pipeline.Result + (Pipeline_ResultReason)(0), // 11: InternalApi.Plumber.Pipeline.ResultReason + (ListActivityRequest_Order)(0), // 12: InternalApi.Plumber.ListActivityRequest.Order + (ListActivityRequest_Direction)(0), // 13: InternalApi.Plumber.ListActivityRequest.Direction + (RunNowRequest_Type)(0), // 14: InternalApi.Plumber.RunNowRequest.Type + (ResponseStatus_ResponseCode)(0), // 15: InternalApi.Plumber.ResponseStatus.ResponseCode + (AfterPipeline_State)(0), // 16: InternalApi.Plumber.AfterPipeline.State + (AfterPipeline_Result)(0), // 17: InternalApi.Plumber.AfterPipeline.Result + (AfterPipeline_ResultReason)(0), // 18: InternalApi.Plumber.AfterPipeline.ResultReason + (*ScheduleRequest)(nil), // 19: InternalApi.Plumber.ScheduleRequest + (*ScheduleResponse)(nil), // 20: InternalApi.Plumber.ScheduleResponse + (*DescribeRequest)(nil), // 21: InternalApi.Plumber.DescribeRequest + (*DescribeResponse)(nil), // 22: InternalApi.Plumber.DescribeResponse + (*Block)(nil), // 23: InternalApi.Plumber.Block + (*DescribeManyRequest)(nil), // 24: InternalApi.Plumber.DescribeManyRequest + (*DescribeManyResponse)(nil), // 25: InternalApi.Plumber.DescribeManyResponse + (*DescribeTopologyRequest)(nil), // 26: InternalApi.Plumber.DescribeTopologyRequest + (*DescribeTopologyResponse)(nil), // 27: InternalApi.Plumber.DescribeTopologyResponse + (*TerminateRequest)(nil), // 28: InternalApi.Plumber.TerminateRequest + (*TerminateResponse)(nil), // 29: InternalApi.Plumber.TerminateResponse + (*ListQueuesRequest)(nil), // 30: InternalApi.Plumber.ListQueuesRequest + (*ListQueuesResponse)(nil), // 31: InternalApi.Plumber.ListQueuesResponse + (*ListGroupedRequest)(nil), // 32: InternalApi.Plumber.ListGroupedRequest + (*ListGroupedResponse)(nil), // 33: InternalApi.Plumber.ListGroupedResponse + (*ListKeysetRequest)(nil), // 34: InternalApi.Plumber.ListKeysetRequest + (*ListKeysetResponse)(nil), // 35: InternalApi.Plumber.ListKeysetResponse + (*ListRequest)(nil), // 36: InternalApi.Plumber.ListRequest + (*ListResponse)(nil), // 37: InternalApi.Plumber.ListResponse + (*Queue)(nil), // 38: InternalApi.Plumber.Queue + (*Pipeline)(nil), // 39: InternalApi.Plumber.Pipeline + (*Triggerer)(nil), // 40: InternalApi.Plumber.Triggerer + (*ListActivityRequest)(nil), // 41: InternalApi.Plumber.ListActivityRequest + (*ListActivityResponse)(nil), // 42: InternalApi.Plumber.ListActivityResponse + (*ListRequestersRequest)(nil), // 43: InternalApi.Plumber.ListRequestersRequest + (*ListRequestersResponse)(nil), // 44: InternalApi.Plumber.ListRequestersResponse + (*Requester)(nil), // 45: InternalApi.Plumber.Requester + (*ActivePipeline)(nil), // 46: InternalApi.Plumber.ActivePipeline + (*BlockDetails)(nil), // 47: InternalApi.Plumber.BlockDetails + (*RunNowRequest)(nil), // 48: InternalApi.Plumber.RunNowRequest + (*RunNowResponse)(nil), // 49: InternalApi.Plumber.RunNowResponse + (*GetProjectIdRequest)(nil), // 50: InternalApi.Plumber.GetProjectIdRequest + (*GetProjectIdResponse)(nil), // 51: InternalApi.Plumber.GetProjectIdResponse + (*ValidateYamlRequest)(nil), // 52: InternalApi.Plumber.ValidateYamlRequest + (*ValidateYamlResponse)(nil), // 53: InternalApi.Plumber.ValidateYamlResponse + (*ScheduleExtensionRequest)(nil), // 54: InternalApi.Plumber.ScheduleExtensionRequest + (*EnvVariable)(nil), // 55: InternalApi.Plumber.EnvVariable + (*ScheduleExtensionResponse)(nil), // 56: InternalApi.Plumber.ScheduleExtensionResponse + (*DeleteRequest)(nil), // 57: InternalApi.Plumber.DeleteRequest + (*DeleteResponse)(nil), // 58: InternalApi.Plumber.DeleteResponse + (*PartialRebuildRequest)(nil), // 59: InternalApi.Plumber.PartialRebuildRequest + (*PartialRebuildResponse)(nil), // 60: InternalApi.Plumber.PartialRebuildResponse + (*VersionRequest)(nil), // 61: InternalApi.Plumber.VersionRequest + (*VersionResponse)(nil), // 62: InternalApi.Plumber.VersionResponse + (*ResponseStatus)(nil), // 63: InternalApi.Plumber.ResponseStatus + (*PipelineEvent)(nil), // 64: InternalApi.Plumber.PipelineEvent + (*PipelineBlockEvent)(nil), // 65: InternalApi.Plumber.PipelineBlockEvent + (*AfterPipeline)(nil), // 66: InternalApi.Plumber.AfterPipeline + (*AfterPipelineEvent)(nil), // 67: InternalApi.Plumber.AfterPipelineEvent + (*ScheduleRequest_Repo)(nil), // 68: InternalApi.Plumber.ScheduleRequest.Repo + (*ScheduleRequest_Auth)(nil), // 69: InternalApi.Plumber.ScheduleRequest.Auth + (*Block_Job)(nil), // 70: InternalApi.Plumber.Block.Job + (*DescribeTopologyResponse_Block)(nil), // 71: InternalApi.Plumber.DescribeTopologyResponse.Block + (*DescribeTopologyResponse_AfterPipeline)(nil), // 72: InternalApi.Plumber.DescribeTopologyResponse.AfterPipeline + (*BlockDetails_JobDetails)(nil), // 73: InternalApi.Plumber.BlockDetails.JobDetails + (*timestamp.Timestamp)(nil), // 74: google.protobuf.Timestamp + (plumber_w_f_workflow.TriggeredBy)(0), // 75: InternalApi.PlumberWF.TriggeredBy + (user.RepositoryProvider_Type)(0), // 76: InternalApi.User.RepositoryProvider.Type } var file_plumber_pipeline_proto_depIdxs = []int32{ - 2, // 0: InternalApi.Plumber.ScheduleRequest.service:type_name -> InternalApi.Plumber.ScheduleRequest.ServiceType - 66, // 1: InternalApi.Plumber.ScheduleRequest.repo:type_name -> InternalApi.Plumber.ScheduleRequest.Repo - 67, // 2: InternalApi.Plumber.ScheduleRequest.auth:type_name -> InternalApi.Plumber.ScheduleRequest.Auth - 61, // 3: InternalApi.Plumber.ScheduleResponse.response_status:type_name -> InternalApi.Plumber.ResponseStatus - 61, // 4: InternalApi.Plumber.DescribeResponse.response_status:type_name -> InternalApi.Plumber.ResponseStatus - 38, // 5: InternalApi.Plumber.DescribeResponse.pipeline:type_name -> InternalApi.Plumber.Pipeline - 22, // 6: InternalApi.Plumber.DescribeResponse.blocks:type_name -> InternalApi.Plumber.Block - 3, // 7: InternalApi.Plumber.Block.state:type_name -> InternalApi.Plumber.Block.State - 4, // 8: InternalApi.Plumber.Block.result:type_name -> InternalApi.Plumber.Block.Result - 5, // 9: InternalApi.Plumber.Block.result_reason:type_name -> InternalApi.Plumber.Block.ResultReason - 68, // 10: InternalApi.Plumber.Block.jobs:type_name -> InternalApi.Plumber.Block.Job - 61, // 11: InternalApi.Plumber.DescribeManyResponse.response_status:type_name -> InternalApi.Plumber.ResponseStatus - 38, // 12: InternalApi.Plumber.DescribeManyResponse.pipelines:type_name -> InternalApi.Plumber.Pipeline - 61, // 13: InternalApi.Plumber.DescribeTopologyResponse.status:type_name -> InternalApi.Plumber.ResponseStatus - 69, // 14: InternalApi.Plumber.DescribeTopologyResponse.blocks:type_name -> InternalApi.Plumber.DescribeTopologyResponse.Block - 70, // 15: InternalApi.Plumber.DescribeTopologyResponse.after_pipeline:type_name -> InternalApi.Plumber.DescribeTopologyResponse.AfterPipeline - 61, // 16: InternalApi.Plumber.TerminateResponse.response_status:type_name -> InternalApi.Plumber.ResponseStatus + 3, // 0: InternalApi.Plumber.ScheduleRequest.service:type_name -> InternalApi.Plumber.ScheduleRequest.ServiceType + 68, // 1: InternalApi.Plumber.ScheduleRequest.repo:type_name -> InternalApi.Plumber.ScheduleRequest.Repo + 69, // 2: InternalApi.Plumber.ScheduleRequest.auth:type_name -> InternalApi.Plumber.ScheduleRequest.Auth + 63, // 3: InternalApi.Plumber.ScheduleResponse.response_status:type_name -> InternalApi.Plumber.ResponseStatus + 63, // 4: InternalApi.Plumber.DescribeResponse.response_status:type_name -> InternalApi.Plumber.ResponseStatus + 39, // 5: InternalApi.Plumber.DescribeResponse.pipeline:type_name -> InternalApi.Plumber.Pipeline + 23, // 6: InternalApi.Plumber.DescribeResponse.blocks:type_name -> InternalApi.Plumber.Block + 4, // 7: InternalApi.Plumber.Block.state:type_name -> InternalApi.Plumber.Block.State + 5, // 8: InternalApi.Plumber.Block.result:type_name -> InternalApi.Plumber.Block.Result + 6, // 9: InternalApi.Plumber.Block.result_reason:type_name -> InternalApi.Plumber.Block.ResultReason + 70, // 10: InternalApi.Plumber.Block.jobs:type_name -> InternalApi.Plumber.Block.Job + 63, // 11: InternalApi.Plumber.DescribeManyResponse.response_status:type_name -> InternalApi.Plumber.ResponseStatus + 39, // 12: InternalApi.Plumber.DescribeManyResponse.pipelines:type_name -> InternalApi.Plumber.Pipeline + 63, // 13: InternalApi.Plumber.DescribeTopologyResponse.status:type_name -> InternalApi.Plumber.ResponseStatus + 71, // 14: InternalApi.Plumber.DescribeTopologyResponse.blocks:type_name -> InternalApi.Plumber.DescribeTopologyResponse.Block + 72, // 15: InternalApi.Plumber.DescribeTopologyResponse.after_pipeline:type_name -> InternalApi.Plumber.DescribeTopologyResponse.AfterPipeline + 63, // 16: InternalApi.Plumber.TerminateResponse.response_status:type_name -> InternalApi.Plumber.ResponseStatus 0, // 17: InternalApi.Plumber.ListQueuesRequest.queue_types:type_name -> InternalApi.Plumber.QueueType - 61, // 18: InternalApi.Plumber.ListQueuesResponse.response_status:type_name -> InternalApi.Plumber.ResponseStatus - 37, // 19: InternalApi.Plumber.ListQueuesResponse.queues:type_name -> InternalApi.Plumber.Queue + 63, // 18: InternalApi.Plumber.ListQueuesResponse.response_status:type_name -> InternalApi.Plumber.ResponseStatus + 38, // 19: InternalApi.Plumber.ListQueuesResponse.queues:type_name -> InternalApi.Plumber.Queue 0, // 20: InternalApi.Plumber.ListGroupedRequest.queue_type:type_name -> InternalApi.Plumber.QueueType - 61, // 21: InternalApi.Plumber.ListGroupedResponse.response_status:type_name -> InternalApi.Plumber.ResponseStatus - 38, // 22: InternalApi.Plumber.ListGroupedResponse.pipelines:type_name -> InternalApi.Plumber.Pipeline - 6, // 23: InternalApi.Plumber.ListKeysetRequest.order:type_name -> InternalApi.Plumber.ListKeysetRequest.Order - 7, // 24: InternalApi.Plumber.ListKeysetRequest.direction:type_name -> InternalApi.Plumber.ListKeysetRequest.Direction - 72, // 25: InternalApi.Plumber.ListKeysetRequest.created_before:type_name -> google.protobuf.Timestamp - 72, // 26: InternalApi.Plumber.ListKeysetRequest.created_after:type_name -> google.protobuf.Timestamp - 72, // 27: InternalApi.Plumber.ListKeysetRequest.done_before:type_name -> google.protobuf.Timestamp - 72, // 28: InternalApi.Plumber.ListKeysetRequest.done_after:type_name -> google.protobuf.Timestamp + 63, // 21: InternalApi.Plumber.ListGroupedResponse.response_status:type_name -> InternalApi.Plumber.ResponseStatus + 39, // 22: InternalApi.Plumber.ListGroupedResponse.pipelines:type_name -> InternalApi.Plumber.Pipeline + 7, // 23: InternalApi.Plumber.ListKeysetRequest.order:type_name -> InternalApi.Plumber.ListKeysetRequest.Order + 8, // 24: InternalApi.Plumber.ListKeysetRequest.direction:type_name -> InternalApi.Plumber.ListKeysetRequest.Direction + 74, // 25: InternalApi.Plumber.ListKeysetRequest.created_before:type_name -> google.protobuf.Timestamp + 74, // 26: InternalApi.Plumber.ListKeysetRequest.created_after:type_name -> google.protobuf.Timestamp + 74, // 27: InternalApi.Plumber.ListKeysetRequest.done_before:type_name -> google.protobuf.Timestamp + 74, // 28: InternalApi.Plumber.ListKeysetRequest.done_after:type_name -> google.protobuf.Timestamp 1, // 29: InternalApi.Plumber.ListKeysetRequest.git_ref_types:type_name -> InternalApi.Plumber.GitRefType - 38, // 30: InternalApi.Plumber.ListKeysetResponse.pipelines:type_name -> InternalApi.Plumber.Pipeline - 72, // 31: InternalApi.Plumber.ListRequest.created_before:type_name -> google.protobuf.Timestamp - 72, // 32: InternalApi.Plumber.ListRequest.created_after:type_name -> google.protobuf.Timestamp - 72, // 33: InternalApi.Plumber.ListRequest.done_before:type_name -> google.protobuf.Timestamp - 72, // 34: InternalApi.Plumber.ListRequest.done_after:type_name -> google.protobuf.Timestamp + 39, // 30: InternalApi.Plumber.ListKeysetResponse.pipelines:type_name -> InternalApi.Plumber.Pipeline + 74, // 31: InternalApi.Plumber.ListRequest.created_before:type_name -> google.protobuf.Timestamp + 74, // 32: InternalApi.Plumber.ListRequest.created_after:type_name -> google.protobuf.Timestamp + 74, // 33: InternalApi.Plumber.ListRequest.done_before:type_name -> google.protobuf.Timestamp + 74, // 34: InternalApi.Plumber.ListRequest.done_after:type_name -> google.protobuf.Timestamp 1, // 35: InternalApi.Plumber.ListRequest.git_ref_types:type_name -> InternalApi.Plumber.GitRefType - 61, // 36: InternalApi.Plumber.ListResponse.response_status:type_name -> InternalApi.Plumber.ResponseStatus - 38, // 37: InternalApi.Plumber.ListResponse.pipelines:type_name -> InternalApi.Plumber.Pipeline + 63, // 36: InternalApi.Plumber.ListResponse.response_status:type_name -> InternalApi.Plumber.ResponseStatus + 39, // 37: InternalApi.Plumber.ListResponse.pipelines:type_name -> InternalApi.Plumber.Pipeline 0, // 38: InternalApi.Plumber.Queue.type:type_name -> InternalApi.Plumber.QueueType - 72, // 39: InternalApi.Plumber.Pipeline.created_at:type_name -> google.protobuf.Timestamp - 72, // 40: InternalApi.Plumber.Pipeline.pending_at:type_name -> google.protobuf.Timestamp - 72, // 41: InternalApi.Plumber.Pipeline.queuing_at:type_name -> google.protobuf.Timestamp - 72, // 42: InternalApi.Plumber.Pipeline.running_at:type_name -> google.protobuf.Timestamp - 72, // 43: InternalApi.Plumber.Pipeline.stopping_at:type_name -> google.protobuf.Timestamp - 72, // 44: InternalApi.Plumber.Pipeline.done_at:type_name -> google.protobuf.Timestamp - 8, // 45: InternalApi.Plumber.Pipeline.state:type_name -> InternalApi.Plumber.Pipeline.State - 9, // 46: InternalApi.Plumber.Pipeline.result:type_name -> InternalApi.Plumber.Pipeline.Result - 10, // 47: InternalApi.Plumber.Pipeline.result_reason:type_name -> InternalApi.Plumber.Pipeline.ResultReason - 37, // 48: InternalApi.Plumber.Pipeline.queue:type_name -> InternalApi.Plumber.Queue - 53, // 49: InternalApi.Plumber.Pipeline.env_vars:type_name -> InternalApi.Plumber.EnvVariable - 11, // 50: InternalApi.Plumber.ListActivityRequest.order:type_name -> InternalApi.Plumber.ListActivityRequest.Order - 12, // 51: InternalApi.Plumber.ListActivityRequest.direction:type_name -> InternalApi.Plumber.ListActivityRequest.Direction - 44, // 52: InternalApi.Plumber.ListActivityResponse.pipelines:type_name -> InternalApi.Plumber.ActivePipeline - 72, // 53: InternalApi.Plumber.ListRequestersRequest.requested_at_gt:type_name -> google.protobuf.Timestamp - 72, // 54: InternalApi.Plumber.ListRequestersRequest.requested_at_lte:type_name -> google.protobuf.Timestamp - 43, // 55: InternalApi.Plumber.ListRequestersResponse.requesters:type_name -> InternalApi.Plumber.Requester - 73, // 56: InternalApi.Plumber.Requester.provider:type_name -> InternalApi.User.RepositoryProvider.Type - 74, // 57: InternalApi.Plumber.Requester.triggerer:type_name -> InternalApi.PlumberWF.TriggeredBy - 72, // 58: InternalApi.Plumber.Requester.requested_at:type_name -> google.protobuf.Timestamp - 74, // 59: InternalApi.Plumber.ActivePipeline.wf_triggered_by:type_name -> InternalApi.PlumberWF.TriggeredBy - 72, // 60: InternalApi.Plumber.ActivePipeline.created_at:type_name -> google.protobuf.Timestamp - 72, // 61: InternalApi.Plumber.ActivePipeline.pending_at:type_name -> google.protobuf.Timestamp - 72, // 62: InternalApi.Plumber.ActivePipeline.queuing_at:type_name -> google.protobuf.Timestamp - 72, // 63: InternalApi.Plumber.ActivePipeline.running_at:type_name -> google.protobuf.Timestamp - 37, // 64: InternalApi.Plumber.ActivePipeline.queue:type_name -> InternalApi.Plumber.Queue - 45, // 65: InternalApi.Plumber.ActivePipeline.blocks:type_name -> InternalApi.Plumber.BlockDetails - 8, // 66: InternalApi.Plumber.ActivePipeline.state:type_name -> InternalApi.Plumber.Pipeline.State - 1, // 67: InternalApi.Plumber.ActivePipeline.git_ref_type:type_name -> InternalApi.Plumber.GitRefType - 3, // 68: InternalApi.Plumber.BlockDetails.state:type_name -> InternalApi.Plumber.Block.State - 4, // 69: InternalApi.Plumber.BlockDetails.result:type_name -> InternalApi.Plumber.Block.Result - 5, // 70: InternalApi.Plumber.BlockDetails.result_reason:type_name -> InternalApi.Plumber.Block.ResultReason - 71, // 71: InternalApi.Plumber.BlockDetails.jobs:type_name -> InternalApi.Plumber.BlockDetails.JobDetails - 13, // 72: InternalApi.Plumber.RunNowRequest.type:type_name -> InternalApi.Plumber.RunNowRequest.Type - 61, // 73: InternalApi.Plumber.GetProjectIdResponse.response_status:type_name -> InternalApi.Plumber.ResponseStatus - 61, // 74: InternalApi.Plumber.ValidateYamlResponse.response_status:type_name -> InternalApi.Plumber.ResponseStatus - 53, // 75: InternalApi.Plumber.ScheduleExtensionRequest.env_variables:type_name -> InternalApi.Plumber.EnvVariable - 61, // 76: InternalApi.Plumber.ScheduleExtensionResponse.response_status:type_name -> InternalApi.Plumber.ResponseStatus - 61, // 77: InternalApi.Plumber.DeleteResponse.status:type_name -> InternalApi.Plumber.ResponseStatus - 61, // 78: InternalApi.Plumber.PartialRebuildResponse.response_status:type_name -> InternalApi.Plumber.ResponseStatus - 14, // 79: InternalApi.Plumber.ResponseStatus.code:type_name -> InternalApi.Plumber.ResponseStatus.ResponseCode - 8, // 80: InternalApi.Plumber.PipelineEvent.state:type_name -> InternalApi.Plumber.Pipeline.State - 72, // 81: InternalApi.Plumber.PipelineEvent.timestamp:type_name -> google.protobuf.Timestamp - 3, // 82: InternalApi.Plumber.PipelineBlockEvent.state:type_name -> InternalApi.Plumber.Block.State - 72, // 83: InternalApi.Plumber.PipelineBlockEvent.timestamp:type_name -> google.protobuf.Timestamp - 15, // 84: InternalApi.Plumber.AfterPipeline.state:type_name -> InternalApi.Plumber.AfterPipeline.State - 16, // 85: InternalApi.Plumber.AfterPipeline.result:type_name -> InternalApi.Plumber.AfterPipeline.Result - 17, // 86: InternalApi.Plumber.AfterPipeline.result_reason:type_name -> InternalApi.Plumber.AfterPipeline.ResultReason - 72, // 87: InternalApi.Plumber.AfterPipeline.created_at:type_name -> google.protobuf.Timestamp - 15, // 88: InternalApi.Plumber.AfterPipelineEvent.state:type_name -> InternalApi.Plumber.AfterPipeline.State - 72, // 89: InternalApi.Plumber.AfterPipelineEvent.timestamp:type_name -> google.protobuf.Timestamp - 18, // 90: InternalApi.Plumber.PipelineService.Schedule:input_type -> InternalApi.Plumber.ScheduleRequest - 20, // 91: InternalApi.Plumber.PipelineService.Describe:input_type -> InternalApi.Plumber.DescribeRequest - 23, // 92: InternalApi.Plumber.PipelineService.DescribeMany:input_type -> InternalApi.Plumber.DescribeManyRequest - 25, // 93: InternalApi.Plumber.PipelineService.DescribeTopology:input_type -> InternalApi.Plumber.DescribeTopologyRequest - 27, // 94: InternalApi.Plumber.PipelineService.Terminate:input_type -> InternalApi.Plumber.TerminateRequest - 33, // 95: InternalApi.Plumber.PipelineService.ListKeyset:input_type -> InternalApi.Plumber.ListKeysetRequest - 35, // 96: InternalApi.Plumber.PipelineService.List:input_type -> InternalApi.Plumber.ListRequest - 31, // 97: InternalApi.Plumber.PipelineService.ListGrouped:input_type -> InternalApi.Plumber.ListGroupedRequest - 29, // 98: InternalApi.Plumber.PipelineService.ListQueues:input_type -> InternalApi.Plumber.ListQueuesRequest - 39, // 99: InternalApi.Plumber.PipelineService.ListActivity:input_type -> InternalApi.Plumber.ListActivityRequest - 41, // 100: InternalApi.Plumber.PipelineService.ListRequesters:input_type -> InternalApi.Plumber.ListRequestersRequest - 46, // 101: InternalApi.Plumber.PipelineService.RunNow:input_type -> InternalApi.Plumber.RunNowRequest - 48, // 102: InternalApi.Plumber.PipelineService.GetProjectId:input_type -> InternalApi.Plumber.GetProjectIdRequest - 50, // 103: InternalApi.Plumber.PipelineService.ValidateYaml:input_type -> InternalApi.Plumber.ValidateYamlRequest - 52, // 104: InternalApi.Plumber.PipelineService.ScheduleExtension:input_type -> InternalApi.Plumber.ScheduleExtensionRequest - 55, // 105: InternalApi.Plumber.PipelineService.Delete:input_type -> InternalApi.Plumber.DeleteRequest - 57, // 106: InternalApi.Plumber.PipelineService.PartialRebuild:input_type -> InternalApi.Plumber.PartialRebuildRequest - 59, // 107: InternalApi.Plumber.PipelineService.Version:input_type -> InternalApi.Plumber.VersionRequest - 19, // 108: InternalApi.Plumber.PipelineService.Schedule:output_type -> InternalApi.Plumber.ScheduleResponse - 21, // 109: InternalApi.Plumber.PipelineService.Describe:output_type -> InternalApi.Plumber.DescribeResponse - 24, // 110: InternalApi.Plumber.PipelineService.DescribeMany:output_type -> InternalApi.Plumber.DescribeManyResponse - 26, // 111: InternalApi.Plumber.PipelineService.DescribeTopology:output_type -> InternalApi.Plumber.DescribeTopologyResponse - 28, // 112: InternalApi.Plumber.PipelineService.Terminate:output_type -> InternalApi.Plumber.TerminateResponse - 34, // 113: InternalApi.Plumber.PipelineService.ListKeyset:output_type -> InternalApi.Plumber.ListKeysetResponse - 36, // 114: InternalApi.Plumber.PipelineService.List:output_type -> InternalApi.Plumber.ListResponse - 32, // 115: InternalApi.Plumber.PipelineService.ListGrouped:output_type -> InternalApi.Plumber.ListGroupedResponse - 30, // 116: InternalApi.Plumber.PipelineService.ListQueues:output_type -> InternalApi.Plumber.ListQueuesResponse - 40, // 117: InternalApi.Plumber.PipelineService.ListActivity:output_type -> InternalApi.Plumber.ListActivityResponse - 42, // 118: InternalApi.Plumber.PipelineService.ListRequesters:output_type -> InternalApi.Plumber.ListRequestersResponse - 47, // 119: InternalApi.Plumber.PipelineService.RunNow:output_type -> InternalApi.Plumber.RunNowResponse - 49, // 120: InternalApi.Plumber.PipelineService.GetProjectId:output_type -> InternalApi.Plumber.GetProjectIdResponse - 51, // 121: InternalApi.Plumber.PipelineService.ValidateYaml:output_type -> InternalApi.Plumber.ValidateYamlResponse - 54, // 122: InternalApi.Plumber.PipelineService.ScheduleExtension:output_type -> InternalApi.Plumber.ScheduleExtensionResponse - 56, // 123: InternalApi.Plumber.PipelineService.Delete:output_type -> InternalApi.Plumber.DeleteResponse - 58, // 124: InternalApi.Plumber.PipelineService.PartialRebuild:output_type -> InternalApi.Plumber.PartialRebuildResponse - 60, // 125: InternalApi.Plumber.PipelineService.Version:output_type -> InternalApi.Plumber.VersionResponse - 108, // [108:126] is the sub-list for method output_type - 90, // [90:108] is the sub-list for method input_type - 90, // [90:90] is the sub-list for extension type_name - 90, // [90:90] is the sub-list for extension extendee - 0, // [0:90] is the sub-list for field type_name + 74, // 39: InternalApi.Plumber.Pipeline.created_at:type_name -> google.protobuf.Timestamp + 74, // 40: InternalApi.Plumber.Pipeline.pending_at:type_name -> google.protobuf.Timestamp + 74, // 41: InternalApi.Plumber.Pipeline.queuing_at:type_name -> google.protobuf.Timestamp + 74, // 42: InternalApi.Plumber.Pipeline.running_at:type_name -> google.protobuf.Timestamp + 74, // 43: InternalApi.Plumber.Pipeline.stopping_at:type_name -> google.protobuf.Timestamp + 74, // 44: InternalApi.Plumber.Pipeline.done_at:type_name -> google.protobuf.Timestamp + 9, // 45: InternalApi.Plumber.Pipeline.state:type_name -> InternalApi.Plumber.Pipeline.State + 10, // 46: InternalApi.Plumber.Pipeline.result:type_name -> InternalApi.Plumber.Pipeline.Result + 11, // 47: InternalApi.Plumber.Pipeline.result_reason:type_name -> InternalApi.Plumber.Pipeline.ResultReason + 38, // 48: InternalApi.Plumber.Pipeline.queue:type_name -> InternalApi.Plumber.Queue + 55, // 49: InternalApi.Plumber.Pipeline.env_vars:type_name -> InternalApi.Plumber.EnvVariable + 40, // 50: InternalApi.Plumber.Pipeline.triggerer:type_name -> InternalApi.Plumber.Triggerer + 75, // 51: InternalApi.Plumber.Triggerer.wf_triggered_by:type_name -> InternalApi.PlumberWF.TriggeredBy + 2, // 52: InternalApi.Plumber.Triggerer.ppl_triggered_by:type_name -> InternalApi.Plumber.TriggeredBy + 12, // 53: InternalApi.Plumber.ListActivityRequest.order:type_name -> InternalApi.Plumber.ListActivityRequest.Order + 13, // 54: InternalApi.Plumber.ListActivityRequest.direction:type_name -> InternalApi.Plumber.ListActivityRequest.Direction + 46, // 55: InternalApi.Plumber.ListActivityResponse.pipelines:type_name -> InternalApi.Plumber.ActivePipeline + 74, // 56: InternalApi.Plumber.ListRequestersRequest.requested_at_gt:type_name -> google.protobuf.Timestamp + 74, // 57: InternalApi.Plumber.ListRequestersRequest.requested_at_lte:type_name -> google.protobuf.Timestamp + 45, // 58: InternalApi.Plumber.ListRequestersResponse.requesters:type_name -> InternalApi.Plumber.Requester + 76, // 59: InternalApi.Plumber.Requester.provider:type_name -> InternalApi.User.RepositoryProvider.Type + 75, // 60: InternalApi.Plumber.Requester.triggerer:type_name -> InternalApi.PlumberWF.TriggeredBy + 74, // 61: InternalApi.Plumber.Requester.requested_at:type_name -> google.protobuf.Timestamp + 75, // 62: InternalApi.Plumber.ActivePipeline.wf_triggered_by:type_name -> InternalApi.PlumberWF.TriggeredBy + 74, // 63: InternalApi.Plumber.ActivePipeline.created_at:type_name -> google.protobuf.Timestamp + 74, // 64: InternalApi.Plumber.ActivePipeline.pending_at:type_name -> google.protobuf.Timestamp + 74, // 65: InternalApi.Plumber.ActivePipeline.queuing_at:type_name -> google.protobuf.Timestamp + 74, // 66: InternalApi.Plumber.ActivePipeline.running_at:type_name -> google.protobuf.Timestamp + 38, // 67: InternalApi.Plumber.ActivePipeline.queue:type_name -> InternalApi.Plumber.Queue + 47, // 68: InternalApi.Plumber.ActivePipeline.blocks:type_name -> InternalApi.Plumber.BlockDetails + 9, // 69: InternalApi.Plumber.ActivePipeline.state:type_name -> InternalApi.Plumber.Pipeline.State + 1, // 70: InternalApi.Plumber.ActivePipeline.git_ref_type:type_name -> InternalApi.Plumber.GitRefType + 40, // 71: InternalApi.Plumber.ActivePipeline.triggerer:type_name -> InternalApi.Plumber.Triggerer + 4, // 72: InternalApi.Plumber.BlockDetails.state:type_name -> InternalApi.Plumber.Block.State + 5, // 73: InternalApi.Plumber.BlockDetails.result:type_name -> InternalApi.Plumber.Block.Result + 6, // 74: InternalApi.Plumber.BlockDetails.result_reason:type_name -> InternalApi.Plumber.Block.ResultReason + 73, // 75: InternalApi.Plumber.BlockDetails.jobs:type_name -> InternalApi.Plumber.BlockDetails.JobDetails + 14, // 76: InternalApi.Plumber.RunNowRequest.type:type_name -> InternalApi.Plumber.RunNowRequest.Type + 63, // 77: InternalApi.Plumber.GetProjectIdResponse.response_status:type_name -> InternalApi.Plumber.ResponseStatus + 63, // 78: InternalApi.Plumber.ValidateYamlResponse.response_status:type_name -> InternalApi.Plumber.ResponseStatus + 55, // 79: InternalApi.Plumber.ScheduleExtensionRequest.env_variables:type_name -> InternalApi.Plumber.EnvVariable + 63, // 80: InternalApi.Plumber.ScheduleExtensionResponse.response_status:type_name -> InternalApi.Plumber.ResponseStatus + 63, // 81: InternalApi.Plumber.DeleteResponse.status:type_name -> InternalApi.Plumber.ResponseStatus + 63, // 82: InternalApi.Plumber.PartialRebuildResponse.response_status:type_name -> InternalApi.Plumber.ResponseStatus + 15, // 83: InternalApi.Plumber.ResponseStatus.code:type_name -> InternalApi.Plumber.ResponseStatus.ResponseCode + 9, // 84: InternalApi.Plumber.PipelineEvent.state:type_name -> InternalApi.Plumber.Pipeline.State + 74, // 85: InternalApi.Plumber.PipelineEvent.timestamp:type_name -> google.protobuf.Timestamp + 4, // 86: InternalApi.Plumber.PipelineBlockEvent.state:type_name -> InternalApi.Plumber.Block.State + 74, // 87: InternalApi.Plumber.PipelineBlockEvent.timestamp:type_name -> google.protobuf.Timestamp + 16, // 88: InternalApi.Plumber.AfterPipeline.state:type_name -> InternalApi.Plumber.AfterPipeline.State + 17, // 89: InternalApi.Plumber.AfterPipeline.result:type_name -> InternalApi.Plumber.AfterPipeline.Result + 18, // 90: InternalApi.Plumber.AfterPipeline.result_reason:type_name -> InternalApi.Plumber.AfterPipeline.ResultReason + 74, // 91: InternalApi.Plumber.AfterPipeline.created_at:type_name -> google.protobuf.Timestamp + 16, // 92: InternalApi.Plumber.AfterPipelineEvent.state:type_name -> InternalApi.Plumber.AfterPipeline.State + 74, // 93: InternalApi.Plumber.AfterPipelineEvent.timestamp:type_name -> google.protobuf.Timestamp + 19, // 94: InternalApi.Plumber.PipelineService.Schedule:input_type -> InternalApi.Plumber.ScheduleRequest + 21, // 95: InternalApi.Plumber.PipelineService.Describe:input_type -> InternalApi.Plumber.DescribeRequest + 24, // 96: InternalApi.Plumber.PipelineService.DescribeMany:input_type -> InternalApi.Plumber.DescribeManyRequest + 26, // 97: InternalApi.Plumber.PipelineService.DescribeTopology:input_type -> InternalApi.Plumber.DescribeTopologyRequest + 28, // 98: InternalApi.Plumber.PipelineService.Terminate:input_type -> InternalApi.Plumber.TerminateRequest + 34, // 99: InternalApi.Plumber.PipelineService.ListKeyset:input_type -> InternalApi.Plumber.ListKeysetRequest + 36, // 100: InternalApi.Plumber.PipelineService.List:input_type -> InternalApi.Plumber.ListRequest + 32, // 101: InternalApi.Plumber.PipelineService.ListGrouped:input_type -> InternalApi.Plumber.ListGroupedRequest + 30, // 102: InternalApi.Plumber.PipelineService.ListQueues:input_type -> InternalApi.Plumber.ListQueuesRequest + 41, // 103: InternalApi.Plumber.PipelineService.ListActivity:input_type -> InternalApi.Plumber.ListActivityRequest + 43, // 104: InternalApi.Plumber.PipelineService.ListRequesters:input_type -> InternalApi.Plumber.ListRequestersRequest + 48, // 105: InternalApi.Plumber.PipelineService.RunNow:input_type -> InternalApi.Plumber.RunNowRequest + 50, // 106: InternalApi.Plumber.PipelineService.GetProjectId:input_type -> InternalApi.Plumber.GetProjectIdRequest + 52, // 107: InternalApi.Plumber.PipelineService.ValidateYaml:input_type -> InternalApi.Plumber.ValidateYamlRequest + 54, // 108: InternalApi.Plumber.PipelineService.ScheduleExtension:input_type -> InternalApi.Plumber.ScheduleExtensionRequest + 57, // 109: InternalApi.Plumber.PipelineService.Delete:input_type -> InternalApi.Plumber.DeleteRequest + 59, // 110: InternalApi.Plumber.PipelineService.PartialRebuild:input_type -> InternalApi.Plumber.PartialRebuildRequest + 61, // 111: InternalApi.Plumber.PipelineService.Version:input_type -> InternalApi.Plumber.VersionRequest + 20, // 112: InternalApi.Plumber.PipelineService.Schedule:output_type -> InternalApi.Plumber.ScheduleResponse + 22, // 113: InternalApi.Plumber.PipelineService.Describe:output_type -> InternalApi.Plumber.DescribeResponse + 25, // 114: InternalApi.Plumber.PipelineService.DescribeMany:output_type -> InternalApi.Plumber.DescribeManyResponse + 27, // 115: InternalApi.Plumber.PipelineService.DescribeTopology:output_type -> InternalApi.Plumber.DescribeTopologyResponse + 29, // 116: InternalApi.Plumber.PipelineService.Terminate:output_type -> InternalApi.Plumber.TerminateResponse + 35, // 117: InternalApi.Plumber.PipelineService.ListKeyset:output_type -> InternalApi.Plumber.ListKeysetResponse + 37, // 118: InternalApi.Plumber.PipelineService.List:output_type -> InternalApi.Plumber.ListResponse + 33, // 119: InternalApi.Plumber.PipelineService.ListGrouped:output_type -> InternalApi.Plumber.ListGroupedResponse + 31, // 120: InternalApi.Plumber.PipelineService.ListQueues:output_type -> InternalApi.Plumber.ListQueuesResponse + 42, // 121: InternalApi.Plumber.PipelineService.ListActivity:output_type -> InternalApi.Plumber.ListActivityResponse + 44, // 122: InternalApi.Plumber.PipelineService.ListRequesters:output_type -> InternalApi.Plumber.ListRequestersResponse + 49, // 123: InternalApi.Plumber.PipelineService.RunNow:output_type -> InternalApi.Plumber.RunNowResponse + 51, // 124: InternalApi.Plumber.PipelineService.GetProjectId:output_type -> InternalApi.Plumber.GetProjectIdResponse + 53, // 125: InternalApi.Plumber.PipelineService.ValidateYaml:output_type -> InternalApi.Plumber.ValidateYamlResponse + 56, // 126: InternalApi.Plumber.PipelineService.ScheduleExtension:output_type -> InternalApi.Plumber.ScheduleExtensionResponse + 58, // 127: InternalApi.Plumber.PipelineService.Delete:output_type -> InternalApi.Plumber.DeleteResponse + 60, // 128: InternalApi.Plumber.PipelineService.PartialRebuild:output_type -> InternalApi.Plumber.PartialRebuildResponse + 62, // 129: InternalApi.Plumber.PipelineService.Version:output_type -> InternalApi.Plumber.VersionResponse + 112, // [112:130] is the sub-list for method output_type + 94, // [94:112] is the sub-list for method input_type + 94, // [94:94] is the sub-list for extension type_name + 94, // [94:94] is the sub-list for extension extendee + 0, // [0:94] is the sub-list for field type_name } func init() { file_plumber_pipeline_proto_init() } @@ -7511,7 +7828,7 @@ func file_plumber_pipeline_proto_init() { } } file_plumber_pipeline_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ListActivityRequest); i { + switch v := v.(*Triggerer); i { case 0: return &v.state case 1: @@ -7523,7 +7840,7 @@ func file_plumber_pipeline_proto_init() { } } file_plumber_pipeline_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ListActivityResponse); i { + switch v := v.(*ListActivityRequest); i { case 0: return &v.state case 1: @@ -7535,7 +7852,7 @@ func file_plumber_pipeline_proto_init() { } } file_plumber_pipeline_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ListRequestersRequest); i { + switch v := v.(*ListActivityResponse); i { case 0: return &v.state case 1: @@ -7547,7 +7864,7 @@ func file_plumber_pipeline_proto_init() { } } file_plumber_pipeline_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ListRequestersResponse); i { + switch v := v.(*ListRequestersRequest); i { case 0: return &v.state case 1: @@ -7559,7 +7876,7 @@ func file_plumber_pipeline_proto_init() { } } file_plumber_pipeline_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*Requester); i { + switch v := v.(*ListRequestersResponse); i { case 0: return &v.state case 1: @@ -7571,7 +7888,7 @@ func file_plumber_pipeline_proto_init() { } } file_plumber_pipeline_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ActivePipeline); i { + switch v := v.(*Requester); i { case 0: return &v.state case 1: @@ -7583,7 +7900,7 @@ func file_plumber_pipeline_proto_init() { } } file_plumber_pipeline_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*BlockDetails); i { + switch v := v.(*ActivePipeline); i { case 0: return &v.state case 1: @@ -7595,7 +7912,7 @@ func file_plumber_pipeline_proto_init() { } } file_plumber_pipeline_proto_msgTypes[28].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*RunNowRequest); i { + switch v := v.(*BlockDetails); i { case 0: return &v.state case 1: @@ -7607,7 +7924,7 @@ func file_plumber_pipeline_proto_init() { } } file_plumber_pipeline_proto_msgTypes[29].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*RunNowResponse); i { + switch v := v.(*RunNowRequest); i { case 0: return &v.state case 1: @@ -7619,7 +7936,7 @@ func file_plumber_pipeline_proto_init() { } } file_plumber_pipeline_proto_msgTypes[30].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetProjectIdRequest); i { + switch v := v.(*RunNowResponse); i { case 0: return &v.state case 1: @@ -7631,7 +7948,7 @@ func file_plumber_pipeline_proto_init() { } } file_plumber_pipeline_proto_msgTypes[31].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetProjectIdResponse); i { + switch v := v.(*GetProjectIdRequest); i { case 0: return &v.state case 1: @@ -7643,7 +7960,7 @@ func file_plumber_pipeline_proto_init() { } } file_plumber_pipeline_proto_msgTypes[32].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ValidateYamlRequest); i { + switch v := v.(*GetProjectIdResponse); i { case 0: return &v.state case 1: @@ -7655,7 +7972,7 @@ func file_plumber_pipeline_proto_init() { } } file_plumber_pipeline_proto_msgTypes[33].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ValidateYamlResponse); i { + switch v := v.(*ValidateYamlRequest); i { case 0: return &v.state case 1: @@ -7667,7 +7984,7 @@ func file_plumber_pipeline_proto_init() { } } file_plumber_pipeline_proto_msgTypes[34].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ScheduleExtensionRequest); i { + switch v := v.(*ValidateYamlResponse); i { case 0: return &v.state case 1: @@ -7679,7 +7996,7 @@ func file_plumber_pipeline_proto_init() { } } file_plumber_pipeline_proto_msgTypes[35].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*EnvVariable); i { + switch v := v.(*ScheduleExtensionRequest); i { case 0: return &v.state case 1: @@ -7691,7 +8008,7 @@ func file_plumber_pipeline_proto_init() { } } file_plumber_pipeline_proto_msgTypes[36].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ScheduleExtensionResponse); i { + switch v := v.(*EnvVariable); i { case 0: return &v.state case 1: @@ -7703,7 +8020,7 @@ func file_plumber_pipeline_proto_init() { } } file_plumber_pipeline_proto_msgTypes[37].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*DeleteRequest); i { + switch v := v.(*ScheduleExtensionResponse); i { case 0: return &v.state case 1: @@ -7715,7 +8032,7 @@ func file_plumber_pipeline_proto_init() { } } file_plumber_pipeline_proto_msgTypes[38].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*DeleteResponse); i { + switch v := v.(*DeleteRequest); i { case 0: return &v.state case 1: @@ -7727,7 +8044,7 @@ func file_plumber_pipeline_proto_init() { } } file_plumber_pipeline_proto_msgTypes[39].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*PartialRebuildRequest); i { + switch v := v.(*DeleteResponse); i { case 0: return &v.state case 1: @@ -7739,7 +8056,7 @@ func file_plumber_pipeline_proto_init() { } } file_plumber_pipeline_proto_msgTypes[40].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*PartialRebuildResponse); i { + switch v := v.(*PartialRebuildRequest); i { case 0: return &v.state case 1: @@ -7751,7 +8068,7 @@ func file_plumber_pipeline_proto_init() { } } file_plumber_pipeline_proto_msgTypes[41].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*VersionRequest); i { + switch v := v.(*PartialRebuildResponse); i { case 0: return &v.state case 1: @@ -7763,7 +8080,7 @@ func file_plumber_pipeline_proto_init() { } } file_plumber_pipeline_proto_msgTypes[42].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*VersionResponse); i { + switch v := v.(*VersionRequest); i { case 0: return &v.state case 1: @@ -7775,7 +8092,7 @@ func file_plumber_pipeline_proto_init() { } } file_plumber_pipeline_proto_msgTypes[43].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ResponseStatus); i { + switch v := v.(*VersionResponse); i { case 0: return &v.state case 1: @@ -7787,7 +8104,7 @@ func file_plumber_pipeline_proto_init() { } } file_plumber_pipeline_proto_msgTypes[44].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*PipelineEvent); i { + switch v := v.(*ResponseStatus); i { case 0: return &v.state case 1: @@ -7799,7 +8116,7 @@ func file_plumber_pipeline_proto_init() { } } file_plumber_pipeline_proto_msgTypes[45].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*PipelineBlockEvent); i { + switch v := v.(*PipelineEvent); i { case 0: return &v.state case 1: @@ -7811,7 +8128,7 @@ func file_plumber_pipeline_proto_init() { } } file_plumber_pipeline_proto_msgTypes[46].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*AfterPipeline); i { + switch v := v.(*PipelineBlockEvent); i { case 0: return &v.state case 1: @@ -7823,7 +8140,7 @@ func file_plumber_pipeline_proto_init() { } } file_plumber_pipeline_proto_msgTypes[47].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*AfterPipelineEvent); i { + switch v := v.(*AfterPipeline); i { case 0: return &v.state case 1: @@ -7835,7 +8152,7 @@ func file_plumber_pipeline_proto_init() { } } file_plumber_pipeline_proto_msgTypes[48].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ScheduleRequest_Repo); i { + switch v := v.(*AfterPipelineEvent); i { case 0: return &v.state case 1: @@ -7847,7 +8164,7 @@ func file_plumber_pipeline_proto_init() { } } file_plumber_pipeline_proto_msgTypes[49].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ScheduleRequest_Auth); i { + switch v := v.(*ScheduleRequest_Repo); i { case 0: return &v.state case 1: @@ -7859,7 +8176,7 @@ func file_plumber_pipeline_proto_init() { } } file_plumber_pipeline_proto_msgTypes[50].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*Block_Job); i { + switch v := v.(*ScheduleRequest_Auth); i { case 0: return &v.state case 1: @@ -7871,7 +8188,7 @@ func file_plumber_pipeline_proto_init() { } } file_plumber_pipeline_proto_msgTypes[51].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*DescribeTopologyResponse_Block); i { + switch v := v.(*Block_Job); i { case 0: return &v.state case 1: @@ -7883,7 +8200,7 @@ func file_plumber_pipeline_proto_init() { } } file_plumber_pipeline_proto_msgTypes[52].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*DescribeTopologyResponse_AfterPipeline); i { + switch v := v.(*DescribeTopologyResponse_Block); i { case 0: return &v.state case 1: @@ -7895,6 +8212,18 @@ func file_plumber_pipeline_proto_init() { } } file_plumber_pipeline_proto_msgTypes[53].Exporter = func(v interface{}, i int) interface{} { + switch v := v.(*DescribeTopologyResponse_AfterPipeline); i { + case 0: + return &v.state + case 1: + return &v.sizeCache + case 2: + return &v.unknownFields + default: + return nil + } + } + file_plumber_pipeline_proto_msgTypes[54].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*BlockDetails_JobDetails); i { case 0: return &v.state @@ -7912,8 +8241,8 @@ func file_plumber_pipeline_proto_init() { File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), RawDescriptor: file_plumber_pipeline_proto_rawDesc, - NumEnums: 18, - NumMessages: 54, + NumEnums: 19, + NumMessages: 55, NumExtensions: 0, NumServices: 1, }, diff --git a/ee/velocity/pkg/protos/plumber_w_f.workflow/plumber_w_f.workflow.pb.go b/ee/velocity/pkg/protos/plumber_w_f.workflow/plumber_w_f.workflow.pb.go index 61d9a1931..257279576 100644 --- a/ee/velocity/pkg/protos/plumber_w_f.workflow/plumber_w_f.workflow.pb.go +++ b/ee/velocity/pkg/protos/plumber_w_f.workflow/plumber_w_f.workflow.pb.go @@ -22,7 +22,6 @@ const ( _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20) ) -// Types of events that can trigger a workflow type TriggeredBy int32 const ( @@ -132,6 +131,8 @@ const ( ScheduleRequest_LOCAL ScheduleRequest_ServiceType = 1 ScheduleRequest_SNAPSHOT ScheduleRequest_ServiceType = 2 ScheduleRequest_BITBUCKET ScheduleRequest_ServiceType = 3 + ScheduleRequest_GITLAB ScheduleRequest_ServiceType = 4 + ScheduleRequest_GIT ScheduleRequest_ServiceType = 5 ) // Enum value maps for ScheduleRequest_ServiceType. @@ -141,12 +142,16 @@ var ( 1: "LOCAL", 2: "SNAPSHOT", 3: "BITBUCKET", + 4: "GITLAB", + 5: "GIT", } ScheduleRequest_ServiceType_value = map[string]int32{ "GIT_HUB": 0, "LOCAL": 1, "SNAPSHOT": 2, "BITBUCKET": 3, + "GITLAB": 4, + "GIT": 5, } ) @@ -3391,7 +3396,7 @@ var file_plumber_w_f_workflow_proto_rawDesc = []byte{ 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x19, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x5f, 0x61, 0x70, 0x69, 0x2f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, - 0x9c, 0x07, 0x0a, 0x0f, 0x53, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75, + 0xb1, 0x07, 0x0a, 0x0f, 0x53, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x4c, 0x0a, 0x07, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x32, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x57, 0x46, 0x2e, 0x53, 0x63, 0x68, @@ -3444,491 +3449,493 @@ var file_plumber_w_f_workflow_proto_rawDesc = []byte{ 0x74, 0x6f, 0x72, 0x79, 0x49, 0x64, 0x1a, 0x32, 0x0a, 0x06, 0x45, 0x6e, 0x76, 0x56, 0x61, 0x72, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, - 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x22, 0x42, 0x0a, 0x0b, 0x53, 0x65, + 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x22, 0x57, 0x0a, 0x0b, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x54, 0x79, 0x70, 0x65, 0x12, 0x0b, 0x0a, 0x07, 0x47, 0x49, 0x54, 0x5f, 0x48, 0x55, 0x42, 0x10, 0x00, 0x12, 0x09, 0x0a, 0x05, 0x4c, 0x4f, 0x43, 0x41, 0x4c, 0x10, 0x01, 0x12, 0x0c, 0x0a, 0x08, 0x53, 0x4e, 0x41, 0x50, 0x53, 0x48, 0x4f, 0x54, 0x10, 0x02, 0x12, - 0x0d, 0x0a, 0x09, 0x42, 0x49, 0x54, 0x42, 0x55, 0x43, 0x4b, 0x45, 0x54, 0x10, 0x03, 0x22, 0x6b, - 0x0a, 0x10, 0x53, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, - 0x73, 0x65, 0x12, 0x13, 0x0a, 0x05, 0x77, 0x66, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, - 0x09, 0x52, 0x04, 0x77, 0x66, 0x49, 0x64, 0x12, 0x2b, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, - 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, - 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x06, 0x73, 0x74, - 0x61, 0x74, 0x75, 0x73, 0x12, 0x15, 0x0a, 0x06, 0x70, 0x70, 0x6c, 0x5f, 0x69, 0x64, 0x18, 0x04, - 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x70, 0x70, 0x6c, 0x49, 0x64, 0x22, 0x67, 0x0a, 0x0e, 0x47, - 0x65, 0x74, 0x50, 0x61, 0x74, 0x68, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x13, 0x0a, - 0x05, 0x77, 0x66, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x77, 0x66, - 0x49, 0x64, 0x12, 0x20, 0x0a, 0x0c, 0x66, 0x69, 0x72, 0x73, 0x74, 0x5f, 0x70, 0x70, 0x6c, 0x5f, - 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x66, 0x69, 0x72, 0x73, 0x74, 0x50, - 0x70, 0x6c, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0b, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x70, 0x70, 0x6c, - 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x6c, 0x61, 0x73, 0x74, 0x50, - 0x70, 0x6c, 0x49, 0x64, 0x22, 0xcb, 0x02, 0x0a, 0x0f, 0x47, 0x65, 0x74, 0x50, 0x61, 0x74, 0x68, - 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x13, 0x0a, 0x05, 0x77, 0x66, 0x5f, 0x69, - 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x77, 0x66, 0x49, 0x64, 0x12, 0x3e, 0x0a, - 0x0d, 0x77, 0x66, 0x5f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x18, 0x03, - 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, - 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, - 0x52, 0x0b, 0x77, 0x66, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x41, 0x74, 0x12, 0x46, 0x0a, - 0x04, 0x70, 0x61, 0x74, 0x68, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x32, 0x2e, 0x49, 0x6e, - 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, - 0x72, 0x57, 0x46, 0x2e, 0x47, 0x65, 0x74, 0x50, 0x61, 0x74, 0x68, 0x52, 0x65, 0x73, 0x70, 0x6f, - 0x6e, 0x73, 0x65, 0x2e, 0x50, 0x61, 0x74, 0x68, 0x45, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x52, - 0x04, 0x70, 0x61, 0x74, 0x68, 0x12, 0x2b, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, - 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, - 0x41, 0x70, 0x69, 0x2e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, - 0x75, 0x73, 0x1a, 0x6e, 0x0a, 0x0b, 0x50, 0x61, 0x74, 0x68, 0x45, 0x6c, 0x65, 0x6d, 0x65, 0x6e, - 0x74, 0x12, 0x15, 0x0a, 0x06, 0x70, 0x70, 0x6c, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, - 0x09, 0x52, 0x05, 0x70, 0x70, 0x6c, 0x49, 0x64, 0x12, 0x1b, 0x0a, 0x09, 0x73, 0x77, 0x69, 0x74, - 0x63, 0x68, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x73, 0x77, 0x69, - 0x74, 0x63, 0x68, 0x49, 0x64, 0x12, 0x2b, 0x0a, 0x11, 0x72, 0x65, 0x62, 0x75, 0x69, 0x6c, 0x64, - 0x5f, 0x70, 0x61, 0x72, 0x74, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x03, 0x28, 0x09, - 0x52, 0x10, 0x72, 0x65, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x50, 0x61, 0x72, 0x74, 0x69, 0x74, 0x69, - 0x6f, 0x6e, 0x22, 0xd4, 0x03, 0x0a, 0x1a, 0x4c, 0x69, 0x73, 0x74, 0x4c, 0x61, 0x74, 0x65, 0x73, - 0x74, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, - 0x74, 0x12, 0x4d, 0x0a, 0x05, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, - 0x32, 0x37, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, - 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x57, 0x46, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x4c, 0x61, 0x74, - 0x65, 0x73, 0x74, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x73, 0x52, 0x65, 0x71, 0x75, - 0x65, 0x73, 0x74, 0x2e, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x52, 0x05, 0x6f, 0x72, 0x64, 0x65, 0x72, - 0x12, 0x1b, 0x0a, 0x09, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x02, 0x20, - 0x01, 0x28, 0x05, 0x52, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x1d, 0x0a, - 0x0a, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, - 0x09, 0x52, 0x09, 0x70, 0x61, 0x67, 0x65, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x12, 0x59, 0x0a, 0x09, - 0x64, 0x69, 0x72, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0e, 0x32, - 0x3b, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, - 0x75, 0x6d, 0x62, 0x65, 0x72, 0x57, 0x46, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x4c, 0x61, 0x74, 0x65, - 0x73, 0x74, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, - 0x73, 0x74, 0x2e, 0x44, 0x69, 0x72, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x09, 0x64, 0x69, - 0x72, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, - 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x72, 0x6f, - 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x21, 0x0a, 0x0c, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, - 0x74, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x72, 0x65, - 0x71, 0x75, 0x65, 0x73, 0x74, 0x65, 0x72, 0x49, 0x64, 0x12, 0x45, 0x0a, 0x0d, 0x67, 0x69, 0x74, - 0x5f, 0x72, 0x65, 0x66, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x73, 0x18, 0x07, 0x20, 0x03, 0x28, 0x0e, - 0x32, 0x21, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, - 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x57, 0x46, 0x2e, 0x47, 0x69, 0x74, 0x52, 0x65, 0x66, 0x54, - 0x79, 0x70, 0x65, 0x52, 0x0b, 0x67, 0x69, 0x74, 0x52, 0x65, 0x66, 0x54, 0x79, 0x70, 0x65, 0x73, - 0x22, 0x22, 0x0a, 0x05, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x12, 0x19, 0x0a, 0x15, 0x42, 0x59, 0x5f, - 0x43, 0x52, 0x45, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x54, 0x49, 0x4d, 0x45, 0x5f, 0x44, 0x45, - 0x53, 0x43, 0x10, 0x00, 0x22, 0x23, 0x0a, 0x09, 0x44, 0x69, 0x72, 0x65, 0x63, 0x74, 0x69, 0x6f, - 0x6e, 0x12, 0x08, 0x0a, 0x04, 0x4e, 0x45, 0x58, 0x54, 0x10, 0x00, 0x12, 0x0c, 0x0a, 0x08, 0x50, - 0x52, 0x45, 0x56, 0x49, 0x4f, 0x55, 0x53, 0x10, 0x01, 0x22, 0xbb, 0x01, 0x0a, 0x1b, 0x4c, 0x69, + 0x0d, 0x0a, 0x09, 0x42, 0x49, 0x54, 0x42, 0x55, 0x43, 0x4b, 0x45, 0x54, 0x10, 0x03, 0x12, 0x0a, + 0x0a, 0x06, 0x47, 0x49, 0x54, 0x4c, 0x41, 0x42, 0x10, 0x04, 0x12, 0x07, 0x0a, 0x03, 0x47, 0x49, + 0x54, 0x10, 0x05, 0x22, 0x6b, 0x0a, 0x10, 0x53, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x52, + 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x13, 0x0a, 0x05, 0x77, 0x66, 0x5f, 0x69, 0x64, + 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x77, 0x66, 0x49, 0x64, 0x12, 0x2b, 0x0a, 0x06, + 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x49, + 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x53, 0x74, 0x61, 0x74, 0x75, + 0x73, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x15, 0x0a, 0x06, 0x70, 0x70, 0x6c, + 0x5f, 0x69, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x70, 0x70, 0x6c, 0x49, 0x64, + 0x22, 0x67, 0x0a, 0x0e, 0x47, 0x65, 0x74, 0x50, 0x61, 0x74, 0x68, 0x52, 0x65, 0x71, 0x75, 0x65, + 0x73, 0x74, 0x12, 0x13, 0x0a, 0x05, 0x77, 0x66, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, + 0x09, 0x52, 0x04, 0x77, 0x66, 0x49, 0x64, 0x12, 0x20, 0x0a, 0x0c, 0x66, 0x69, 0x72, 0x73, 0x74, + 0x5f, 0x70, 0x70, 0x6c, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x66, + 0x69, 0x72, 0x73, 0x74, 0x50, 0x70, 0x6c, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0b, 0x6c, 0x61, 0x73, + 0x74, 0x5f, 0x70, 0x70, 0x6c, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, + 0x6c, 0x61, 0x73, 0x74, 0x50, 0x70, 0x6c, 0x49, 0x64, 0x22, 0xcb, 0x02, 0x0a, 0x0f, 0x47, 0x65, + 0x74, 0x50, 0x61, 0x74, 0x68, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x13, 0x0a, + 0x05, 0x77, 0x66, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x77, 0x66, + 0x49, 0x64, 0x12, 0x3e, 0x0a, 0x0d, 0x77, 0x66, 0x5f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, + 0x5f, 0x61, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, + 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, + 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0b, 0x77, 0x66, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, + 0x41, 0x74, 0x12, 0x46, 0x0a, 0x04, 0x70, 0x61, 0x74, 0x68, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, + 0x32, 0x32, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, + 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x57, 0x46, 0x2e, 0x47, 0x65, 0x74, 0x50, 0x61, 0x74, 0x68, + 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x50, 0x61, 0x74, 0x68, 0x45, 0x6c, 0x65, + 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x04, 0x70, 0x61, 0x74, 0x68, 0x12, 0x2b, 0x0a, 0x06, 0x73, 0x74, + 0x61, 0x74, 0x75, 0x73, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x49, 0x6e, 0x74, + 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, + 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x1a, 0x6e, 0x0a, 0x0b, 0x50, 0x61, 0x74, 0x68, 0x45, + 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x12, 0x15, 0x0a, 0x06, 0x70, 0x70, 0x6c, 0x5f, 0x69, 0x64, + 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x70, 0x70, 0x6c, 0x49, 0x64, 0x12, 0x1b, 0x0a, + 0x09, 0x73, 0x77, 0x69, 0x74, 0x63, 0x68, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, + 0x52, 0x08, 0x73, 0x77, 0x69, 0x74, 0x63, 0x68, 0x49, 0x64, 0x12, 0x2b, 0x0a, 0x11, 0x72, 0x65, + 0x62, 0x75, 0x69, 0x6c, 0x64, 0x5f, 0x70, 0x61, 0x72, 0x74, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x18, + 0x03, 0x20, 0x03, 0x28, 0x09, 0x52, 0x10, 0x72, 0x65, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x50, 0x61, + 0x72, 0x74, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0xd4, 0x03, 0x0a, 0x1a, 0x4c, 0x69, 0x73, 0x74, + 0x4c, 0x61, 0x74, 0x65, 0x73, 0x74, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x73, 0x52, + 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x4d, 0x0a, 0x05, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x18, + 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x37, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, + 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x57, 0x46, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x4c, 0x61, 0x74, 0x65, 0x73, 0x74, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, - 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x44, 0x0a, 0x09, 0x77, 0x6f, 0x72, - 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x26, 0x2e, 0x49, - 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, - 0x65, 0x72, 0x57, 0x46, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x44, 0x65, 0x74, - 0x61, 0x69, 0x6c, 0x73, 0x52, 0x09, 0x77, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x73, 0x12, - 0x26, 0x0a, 0x0f, 0x6e, 0x65, 0x78, 0x74, 0x5f, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x74, 0x6f, 0x6b, - 0x65, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x6e, 0x65, 0x78, 0x74, 0x50, 0x61, - 0x67, 0x65, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x12, 0x2e, 0x0a, 0x13, 0x70, 0x72, 0x65, 0x76, 0x69, - 0x6f, 0x75, 0x73, 0x5f, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x18, 0x03, - 0x20, 0x01, 0x28, 0x09, 0x52, 0x11, 0x70, 0x72, 0x65, 0x76, 0x69, 0x6f, 0x75, 0x73, 0x50, 0x61, - 0x67, 0x65, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x22, 0xc2, 0x03, 0x0a, 0x14, 0x4c, 0x69, 0x73, 0x74, - 0x47, 0x72, 0x6f, 0x75, 0x70, 0x65, 0x64, 0x4b, 0x53, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, - 0x12, 0x47, 0x0a, 0x05, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, - 0x31, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, - 0x75, 0x6d, 0x62, 0x65, 0x72, 0x57, 0x46, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x47, 0x72, 0x6f, 0x75, - 0x70, 0x65, 0x64, 0x4b, 0x53, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x4f, 0x72, 0x64, - 0x65, 0x72, 0x52, 0x05, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x12, 0x1b, 0x0a, 0x09, 0x70, 0x61, 0x67, - 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x70, 0x61, - 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x74, - 0x6f, 0x6b, 0x65, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x61, 0x67, 0x65, - 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x12, 0x53, 0x0a, 0x09, 0x64, 0x69, 0x72, 0x65, 0x63, 0x74, 0x69, - 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x35, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, + 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x52, 0x05, + 0x6f, 0x72, 0x64, 0x65, 0x72, 0x12, 0x1b, 0x0a, 0x09, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x73, 0x69, + 0x7a, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, + 0x7a, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x74, 0x6f, 0x6b, 0x65, 0x6e, + 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x61, 0x67, 0x65, 0x54, 0x6f, 0x6b, 0x65, + 0x6e, 0x12, 0x59, 0x0a, 0x09, 0x64, 0x69, 0x72, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x04, + 0x20, 0x01, 0x28, 0x0e, 0x32, 0x3b, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, + 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x57, 0x46, 0x2e, 0x4c, 0x69, 0x73, + 0x74, 0x4c, 0x61, 0x74, 0x65, 0x73, 0x74, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x73, + 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x44, 0x69, 0x72, 0x65, 0x63, 0x74, 0x69, 0x6f, + 0x6e, 0x52, 0x09, 0x64, 0x69, 0x72, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x1d, 0x0a, 0x0a, + 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, + 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x21, 0x0a, 0x0c, 0x72, + 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x06, 0x20, 0x01, 0x28, + 0x09, 0x52, 0x0b, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x65, 0x72, 0x49, 0x64, 0x12, 0x45, + 0x0a, 0x0d, 0x67, 0x69, 0x74, 0x5f, 0x72, 0x65, 0x66, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x73, 0x18, + 0x07, 0x20, 0x03, 0x28, 0x0e, 0x32, 0x21, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, + 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x57, 0x46, 0x2e, 0x47, 0x69, + 0x74, 0x52, 0x65, 0x66, 0x54, 0x79, 0x70, 0x65, 0x52, 0x0b, 0x67, 0x69, 0x74, 0x52, 0x65, 0x66, + 0x54, 0x79, 0x70, 0x65, 0x73, 0x22, 0x22, 0x0a, 0x05, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x12, 0x19, + 0x0a, 0x15, 0x42, 0x59, 0x5f, 0x43, 0x52, 0x45, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x54, 0x49, + 0x4d, 0x45, 0x5f, 0x44, 0x45, 0x53, 0x43, 0x10, 0x00, 0x22, 0x23, 0x0a, 0x09, 0x44, 0x69, 0x72, + 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x08, 0x0a, 0x04, 0x4e, 0x45, 0x58, 0x54, 0x10, 0x00, + 0x12, 0x0c, 0x0a, 0x08, 0x50, 0x52, 0x45, 0x56, 0x49, 0x4f, 0x55, 0x53, 0x10, 0x01, 0x22, 0xbb, + 0x01, 0x0a, 0x1b, 0x4c, 0x69, 0x73, 0x74, 0x4c, 0x61, 0x74, 0x65, 0x73, 0x74, 0x57, 0x6f, 0x72, + 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x44, + 0x0a, 0x09, 0x77, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, + 0x0b, 0x32, 0x26, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, + 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x57, 0x46, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, + 0x6f, 0x77, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x52, 0x09, 0x77, 0x6f, 0x72, 0x6b, 0x66, + 0x6c, 0x6f, 0x77, 0x73, 0x12, 0x26, 0x0a, 0x0f, 0x6e, 0x65, 0x78, 0x74, 0x5f, 0x70, 0x61, 0x67, + 0x65, 0x5f, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x6e, + 0x65, 0x78, 0x74, 0x50, 0x61, 0x67, 0x65, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x12, 0x2e, 0x0a, 0x13, + 0x70, 0x72, 0x65, 0x76, 0x69, 0x6f, 0x75, 0x73, 0x5f, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x74, 0x6f, + 0x6b, 0x65, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x11, 0x70, 0x72, 0x65, 0x76, 0x69, + 0x6f, 0x75, 0x73, 0x50, 0x61, 0x67, 0x65, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x22, 0xc2, 0x03, 0x0a, + 0x14, 0x4c, 0x69, 0x73, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x65, 0x64, 0x4b, 0x53, 0x52, 0x65, + 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x47, 0x0a, 0x05, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x18, 0x01, + 0x20, 0x01, 0x28, 0x0e, 0x32, 0x31, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, + 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x57, 0x46, 0x2e, 0x4c, 0x69, 0x73, + 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x65, 0x64, 0x4b, 0x53, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, + 0x74, 0x2e, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x52, 0x05, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x12, 0x1b, + 0x0a, 0x09, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, + 0x05, 0x52, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x70, + 0x61, 0x67, 0x65, 0x5f, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, + 0x09, 0x70, 0x61, 0x67, 0x65, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x12, 0x53, 0x0a, 0x09, 0x64, 0x69, + 0x72, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x35, 0x2e, + 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, + 0x62, 0x65, 0x72, 0x57, 0x46, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x65, + 0x64, 0x4b, 0x53, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x44, 0x69, 0x72, 0x65, 0x63, + 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x09, 0x64, 0x69, 0x72, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, + 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x05, 0x20, + 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x21, + 0x0a, 0x0c, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x06, + 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x65, 0x72, 0x49, + 0x64, 0x12, 0x45, 0x0a, 0x0d, 0x67, 0x69, 0x74, 0x5f, 0x72, 0x65, 0x66, 0x5f, 0x74, 0x79, 0x70, + 0x65, 0x73, 0x18, 0x07, 0x20, 0x03, 0x28, 0x0e, 0x32, 0x21, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x57, 0x46, - 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x65, 0x64, 0x4b, 0x53, 0x52, 0x65, - 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x44, 0x69, 0x72, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, - 0x09, 0x64, 0x69, 0x72, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, - 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, - 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x21, 0x0a, 0x0c, 0x72, 0x65, 0x71, - 0x75, 0x65, 0x73, 0x74, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, - 0x0b, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x65, 0x72, 0x49, 0x64, 0x12, 0x45, 0x0a, 0x0d, - 0x67, 0x69, 0x74, 0x5f, 0x72, 0x65, 0x66, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x73, 0x18, 0x07, 0x20, - 0x03, 0x28, 0x0e, 0x32, 0x21, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, - 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x57, 0x46, 0x2e, 0x47, 0x69, 0x74, 0x52, - 0x65, 0x66, 0x54, 0x79, 0x70, 0x65, 0x52, 0x0b, 0x67, 0x69, 0x74, 0x52, 0x65, 0x66, 0x54, 0x79, - 0x70, 0x65, 0x73, 0x22, 0x22, 0x0a, 0x05, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x12, 0x19, 0x0a, 0x15, - 0x42, 0x59, 0x5f, 0x43, 0x52, 0x45, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x54, 0x49, 0x4d, 0x45, - 0x5f, 0x44, 0x45, 0x53, 0x43, 0x10, 0x00, 0x22, 0x23, 0x0a, 0x09, 0x44, 0x69, 0x72, 0x65, 0x63, - 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x08, 0x0a, 0x04, 0x4e, 0x45, 0x58, 0x54, 0x10, 0x00, 0x12, 0x0c, - 0x0a, 0x08, 0x50, 0x52, 0x45, 0x56, 0x49, 0x4f, 0x55, 0x53, 0x10, 0x01, 0x22, 0xb5, 0x01, 0x0a, - 0x15, 0x4c, 0x69, 0x73, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x65, 0x64, 0x4b, 0x53, 0x52, 0x65, - 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x44, 0x0a, 0x09, 0x77, 0x6f, 0x72, 0x6b, 0x66, 0x6c, - 0x6f, 0x77, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x26, 0x2e, 0x49, 0x6e, 0x74, 0x65, + 0x2e, 0x47, 0x69, 0x74, 0x52, 0x65, 0x66, 0x54, 0x79, 0x70, 0x65, 0x52, 0x0b, 0x67, 0x69, 0x74, + 0x52, 0x65, 0x66, 0x54, 0x79, 0x70, 0x65, 0x73, 0x22, 0x22, 0x0a, 0x05, 0x4f, 0x72, 0x64, 0x65, + 0x72, 0x12, 0x19, 0x0a, 0x15, 0x42, 0x59, 0x5f, 0x43, 0x52, 0x45, 0x41, 0x54, 0x49, 0x4f, 0x4e, + 0x5f, 0x54, 0x49, 0x4d, 0x45, 0x5f, 0x44, 0x45, 0x53, 0x43, 0x10, 0x00, 0x22, 0x23, 0x0a, 0x09, + 0x44, 0x69, 0x72, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x08, 0x0a, 0x04, 0x4e, 0x45, 0x58, + 0x54, 0x10, 0x00, 0x12, 0x0c, 0x0a, 0x08, 0x50, 0x52, 0x45, 0x56, 0x49, 0x4f, 0x55, 0x53, 0x10, + 0x01, 0x22, 0xb5, 0x01, 0x0a, 0x15, 0x4c, 0x69, 0x73, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x65, + 0x64, 0x4b, 0x53, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x44, 0x0a, 0x09, 0x77, + 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x26, + 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, + 0x6d, 0x62, 0x65, 0x72, 0x57, 0x46, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x44, + 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x52, 0x09, 0x77, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, + 0x73, 0x12, 0x26, 0x0a, 0x0f, 0x6e, 0x65, 0x78, 0x74, 0x5f, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x74, + 0x6f, 0x6b, 0x65, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x6e, 0x65, 0x78, 0x74, + 0x50, 0x61, 0x67, 0x65, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x12, 0x2e, 0x0a, 0x13, 0x70, 0x72, 0x65, + 0x76, 0x69, 0x6f, 0x75, 0x73, 0x5f, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x74, 0x6f, 0x6b, 0x65, 0x6e, + 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x11, 0x70, 0x72, 0x65, 0x76, 0x69, 0x6f, 0x75, 0x73, + 0x50, 0x61, 0x67, 0x65, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x22, 0xb5, 0x02, 0x0a, 0x12, 0x4c, 0x69, + 0x73, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x65, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, + 0x12, 0x12, 0x0a, 0x04, 0x70, 0x61, 0x67, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, + 0x70, 0x61, 0x67, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x73, 0x69, 0x7a, + 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, + 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, + 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, + 0x12, 0x53, 0x0a, 0x0a, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x65, 0x64, 0x5f, 0x62, 0x79, 0x18, 0x04, + 0x20, 0x01, 0x28, 0x0e, 0x32, 0x34, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, + 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x57, 0x46, 0x2e, 0x4c, 0x69, 0x73, + 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x65, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, + 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x54, 0x79, 0x70, 0x65, 0x52, 0x09, 0x67, 0x72, 0x6f, 0x75, + 0x70, 0x65, 0x64, 0x42, 0x79, 0x12, 0x45, 0x0a, 0x0d, 0x67, 0x69, 0x74, 0x5f, 0x72, 0x65, 0x66, + 0x5f, 0x74, 0x79, 0x70, 0x65, 0x73, 0x18, 0x05, 0x20, 0x03, 0x28, 0x0e, 0x32, 0x21, 0x2e, 0x49, + 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, + 0x65, 0x72, 0x57, 0x46, 0x2e, 0x47, 0x69, 0x74, 0x52, 0x65, 0x66, 0x54, 0x79, 0x70, 0x65, 0x52, + 0x0b, 0x67, 0x69, 0x74, 0x52, 0x65, 0x66, 0x54, 0x79, 0x70, 0x65, 0x73, 0x22, 0x33, 0x0a, 0x0a, + 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x54, 0x79, 0x70, 0x65, 0x12, 0x0a, 0x0a, 0x06, 0x42, 0x52, + 0x41, 0x4e, 0x43, 0x48, 0x10, 0x00, 0x12, 0x07, 0x0a, 0x03, 0x54, 0x41, 0x47, 0x10, 0x01, 0x12, + 0x10, 0x0a, 0x0c, 0x50, 0x55, 0x4c, 0x4c, 0x5f, 0x52, 0x45, 0x51, 0x55, 0x45, 0x53, 0x54, 0x10, + 0x02, 0x22, 0x8c, 0x02, 0x0a, 0x13, 0x4c, 0x69, 0x73, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x65, + 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x2b, 0x0a, 0x06, 0x73, 0x74, 0x61, + 0x74, 0x75, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x49, 0x6e, 0x74, 0x65, + 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x06, + 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x44, 0x0a, 0x09, 0x77, 0x6f, 0x72, 0x6b, 0x66, 0x6c, + 0x6f, 0x77, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x26, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x57, 0x46, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, - 0x73, 0x52, 0x09, 0x77, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x73, 0x12, 0x26, 0x0a, 0x0f, - 0x6e, 0x65, 0x78, 0x74, 0x5f, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x18, - 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x6e, 0x65, 0x78, 0x74, 0x50, 0x61, 0x67, 0x65, 0x54, - 0x6f, 0x6b, 0x65, 0x6e, 0x12, 0x2e, 0x0a, 0x13, 0x70, 0x72, 0x65, 0x76, 0x69, 0x6f, 0x75, 0x73, - 0x5f, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, - 0x09, 0x52, 0x11, 0x70, 0x72, 0x65, 0x76, 0x69, 0x6f, 0x75, 0x73, 0x50, 0x61, 0x67, 0x65, 0x54, - 0x6f, 0x6b, 0x65, 0x6e, 0x22, 0xb5, 0x02, 0x0a, 0x12, 0x4c, 0x69, 0x73, 0x74, 0x47, 0x72, 0x6f, - 0x75, 0x70, 0x65, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x70, - 0x61, 0x67, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x70, 0x61, 0x67, 0x65, 0x12, - 0x1b, 0x0a, 0x09, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x02, 0x20, 0x01, - 0x28, 0x05, 0x52, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x1d, 0x0a, 0x0a, - 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, - 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x53, 0x0a, 0x0a, 0x67, - 0x72, 0x6f, 0x75, 0x70, 0x65, 0x64, 0x5f, 0x62, 0x79, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0e, 0x32, - 0x34, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, - 0x75, 0x6d, 0x62, 0x65, 0x72, 0x57, 0x46, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x47, 0x72, 0x6f, 0x75, - 0x70, 0x65, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x53, 0x6f, 0x75, 0x72, 0x63, - 0x65, 0x54, 0x79, 0x70, 0x65, 0x52, 0x09, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x65, 0x64, 0x42, 0x79, - 0x12, 0x45, 0x0a, 0x0d, 0x67, 0x69, 0x74, 0x5f, 0x72, 0x65, 0x66, 0x5f, 0x74, 0x79, 0x70, 0x65, - 0x73, 0x18, 0x05, 0x20, 0x03, 0x28, 0x0e, 0x32, 0x21, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, - 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x57, 0x46, 0x2e, - 0x47, 0x69, 0x74, 0x52, 0x65, 0x66, 0x54, 0x79, 0x70, 0x65, 0x52, 0x0b, 0x67, 0x69, 0x74, 0x52, - 0x65, 0x66, 0x54, 0x79, 0x70, 0x65, 0x73, 0x22, 0x33, 0x0a, 0x0a, 0x53, 0x6f, 0x75, 0x72, 0x63, - 0x65, 0x54, 0x79, 0x70, 0x65, 0x12, 0x0a, 0x0a, 0x06, 0x42, 0x52, 0x41, 0x4e, 0x43, 0x48, 0x10, - 0x00, 0x12, 0x07, 0x0a, 0x03, 0x54, 0x41, 0x47, 0x10, 0x01, 0x12, 0x10, 0x0a, 0x0c, 0x50, 0x55, - 0x4c, 0x4c, 0x5f, 0x52, 0x45, 0x51, 0x55, 0x45, 0x53, 0x54, 0x10, 0x02, 0x22, 0x8c, 0x02, 0x0a, - 0x13, 0x4c, 0x69, 0x73, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x65, 0x64, 0x52, 0x65, 0x73, 0x70, - 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x2b, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x01, - 0x20, 0x01, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, - 0x70, 0x69, 0x2e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, - 0x73, 0x12, 0x44, 0x0a, 0x09, 0x77, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x73, 0x18, 0x02, - 0x20, 0x03, 0x28, 0x0b, 0x32, 0x26, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, - 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x57, 0x46, 0x2e, 0x57, 0x6f, 0x72, - 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x52, 0x09, 0x77, 0x6f, - 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x73, 0x12, 0x1f, 0x0a, 0x0b, 0x70, 0x61, 0x67, 0x65, 0x5f, - 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0a, 0x70, 0x61, - 0x67, 0x65, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x12, 0x1b, 0x0a, 0x09, 0x70, 0x61, 0x67, 0x65, - 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x70, 0x61, 0x67, - 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x65, - 0x6e, 0x74, 0x72, 0x69, 0x65, 0x73, 0x18, 0x05, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0c, 0x74, 0x6f, - 0x74, 0x61, 0x6c, 0x45, 0x6e, 0x74, 0x72, 0x69, 0x65, 0x73, 0x12, 0x1f, 0x0a, 0x0b, 0x74, 0x6f, - 0x74, 0x61, 0x6c, 0x5f, 0x70, 0x61, 0x67, 0x65, 0x73, 0x18, 0x06, 0x20, 0x01, 0x28, 0x05, 0x52, - 0x0a, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x50, 0x61, 0x67, 0x65, 0x73, 0x22, 0xcc, 0x03, 0x0a, 0x0b, - 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x70, - 0x61, 0x67, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x70, 0x61, 0x67, 0x65, 0x12, - 0x1b, 0x0a, 0x09, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x02, 0x20, 0x01, - 0x28, 0x05, 0x52, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x1d, 0x0a, 0x0a, - 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, - 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x1f, 0x0a, 0x0b, 0x62, - 0x72, 0x61, 0x6e, 0x63, 0x68, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, - 0x52, 0x0a, 0x62, 0x72, 0x61, 0x6e, 0x63, 0x68, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x21, 0x0a, 0x0c, - 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x05, 0x20, 0x01, - 0x28, 0x09, 0x52, 0x0b, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x65, 0x72, 0x49, 0x64, 0x12, + 0x73, 0x52, 0x09, 0x77, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x73, 0x12, 0x1f, 0x0a, 0x0b, + 0x70, 0x61, 0x67, 0x65, 0x5f, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, + 0x05, 0x52, 0x0a, 0x70, 0x61, 0x67, 0x65, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x12, 0x1b, 0x0a, + 0x09, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x05, + 0x52, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x74, 0x6f, + 0x74, 0x61, 0x6c, 0x5f, 0x65, 0x6e, 0x74, 0x72, 0x69, 0x65, 0x73, 0x18, 0x05, 0x20, 0x01, 0x28, + 0x05, 0x52, 0x0c, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x45, 0x6e, 0x74, 0x72, 0x69, 0x65, 0x73, 0x12, + 0x1f, 0x0a, 0x0b, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x70, 0x61, 0x67, 0x65, 0x73, 0x18, 0x06, + 0x20, 0x01, 0x28, 0x05, 0x52, 0x0a, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x50, 0x61, 0x67, 0x65, 0x73, + 0x22, 0xcc, 0x03, 0x0a, 0x0b, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, + 0x12, 0x12, 0x0a, 0x04, 0x70, 0x61, 0x67, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, + 0x70, 0x61, 0x67, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x73, 0x69, 0x7a, + 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, + 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, + 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, + 0x12, 0x1f, 0x0a, 0x0b, 0x62, 0x72, 0x61, 0x6e, 0x63, 0x68, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, + 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x62, 0x72, 0x61, 0x6e, 0x63, 0x68, 0x4e, 0x61, 0x6d, + 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x65, 0x72, 0x5f, 0x69, + 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, + 0x65, 0x72, 0x49, 0x64, 0x12, 0x27, 0x0a, 0x0f, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, + 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x64, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x6f, + 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x1f, 0x0a, + 0x0b, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x73, 0x18, 0x07, 0x20, 0x03, + 0x28, 0x09, 0x52, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x73, 0x12, 0x41, + 0x0a, 0x0e, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x62, 0x65, 0x66, 0x6f, 0x72, 0x65, + 0x18, 0x08, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, + 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, + 0x6d, 0x70, 0x52, 0x0d, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x42, 0x65, 0x66, 0x6f, 0x72, + 0x65, 0x12, 0x3f, 0x0a, 0x0d, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x66, 0x74, + 0x65, 0x72, 0x18, 0x09, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, + 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, + 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0c, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x41, 0x66, 0x74, + 0x65, 0x72, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x18, 0x0a, 0x20, 0x01, 0x28, + 0x09, 0x52, 0x05, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x12, 0x45, 0x0a, 0x0d, 0x67, 0x69, 0x74, 0x5f, + 0x72, 0x65, 0x66, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x73, 0x18, 0x0b, 0x20, 0x03, 0x28, 0x0e, 0x32, + 0x21, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, + 0x75, 0x6d, 0x62, 0x65, 0x72, 0x57, 0x46, 0x2e, 0x47, 0x69, 0x74, 0x52, 0x65, 0x66, 0x54, 0x79, + 0x70, 0x65, 0x52, 0x0b, 0x67, 0x69, 0x74, 0x52, 0x65, 0x66, 0x54, 0x79, 0x70, 0x65, 0x73, 0x22, + 0x85, 0x02, 0x0a, 0x0c, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, + 0x12, 0x2b, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, + 0x32, 0x13, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x53, + 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x44, 0x0a, + 0x09, 0x77, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, + 0x32, 0x26, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, + 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x57, 0x46, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, + 0x77, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x52, 0x09, 0x77, 0x6f, 0x72, 0x6b, 0x66, 0x6c, + 0x6f, 0x77, 0x73, 0x12, 0x1f, 0x0a, 0x0b, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x6e, 0x75, 0x6d, 0x62, + 0x65, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0a, 0x70, 0x61, 0x67, 0x65, 0x4e, 0x75, + 0x6d, 0x62, 0x65, 0x72, 0x12, 0x1b, 0x0a, 0x09, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x73, 0x69, 0x7a, + 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, + 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x65, 0x6e, 0x74, 0x72, 0x69, + 0x65, 0x73, 0x18, 0x05, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0c, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x45, + 0x6e, 0x74, 0x72, 0x69, 0x65, 0x73, 0x12, 0x1f, 0x0a, 0x0b, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f, + 0x70, 0x61, 0x67, 0x65, 0x73, 0x18, 0x06, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0a, 0x74, 0x6f, 0x74, + 0x61, 0x6c, 0x50, 0x61, 0x67, 0x65, 0x73, 0x22, 0xa7, 0x06, 0x0a, 0x11, 0x4c, 0x69, 0x73, 0x74, + 0x4b, 0x65, 0x79, 0x73, 0x65, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, + 0x09, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, + 0x52, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x61, + 0x67, 0x65, 0x5f, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, + 0x70, 0x61, 0x67, 0x65, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x12, 0x44, 0x0a, 0x05, 0x6f, 0x72, 0x64, + 0x65, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2e, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, + 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x57, 0x46, + 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x4b, 0x65, 0x79, 0x73, 0x65, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, + 0x73, 0x74, 0x2e, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x52, 0x05, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x12, 0x27, 0x0a, 0x0f, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, - 0x69, 0x64, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, - 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x1f, 0x0a, 0x0b, 0x70, 0x72, 0x6f, 0x6a, - 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x73, 0x18, 0x07, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0a, 0x70, - 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x73, 0x12, 0x41, 0x0a, 0x0e, 0x63, 0x72, 0x65, - 0x61, 0x74, 0x65, 0x64, 0x5f, 0x62, 0x65, 0x66, 0x6f, 0x72, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, - 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, - 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0d, 0x63, - 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x42, 0x65, 0x66, 0x6f, 0x72, 0x65, 0x12, 0x3f, 0x0a, 0x0d, - 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x66, 0x74, 0x65, 0x72, 0x18, 0x09, 0x20, + 0x69, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, + 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, + 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x72, + 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x21, 0x0a, 0x0c, 0x72, 0x65, 0x71, 0x75, 0x65, + 0x73, 0x74, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x72, + 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x65, 0x72, 0x49, 0x64, 0x12, 0x1f, 0x0a, 0x0b, 0x70, 0x72, + 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x73, 0x18, 0x07, 0x20, 0x03, 0x28, 0x09, 0x52, + 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x73, 0x12, 0x41, 0x0a, 0x0e, 0x63, + 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x62, 0x65, 0x66, 0x6f, 0x72, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, - 0x0c, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x41, 0x66, 0x74, 0x65, 0x72, 0x12, 0x14, 0x0a, - 0x05, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x6c, 0x61, - 0x62, 0x65, 0x6c, 0x12, 0x45, 0x0a, 0x0d, 0x67, 0x69, 0x74, 0x5f, 0x72, 0x65, 0x66, 0x5f, 0x74, - 0x79, 0x70, 0x65, 0x73, 0x18, 0x0b, 0x20, 0x03, 0x28, 0x0e, 0x32, 0x21, 0x2e, 0x49, 0x6e, 0x74, - 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, - 0x57, 0x46, 0x2e, 0x47, 0x69, 0x74, 0x52, 0x65, 0x66, 0x54, 0x79, 0x70, 0x65, 0x52, 0x0b, 0x67, - 0x69, 0x74, 0x52, 0x65, 0x66, 0x54, 0x79, 0x70, 0x65, 0x73, 0x22, 0x85, 0x02, 0x0a, 0x0c, 0x4c, - 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x2b, 0x0a, 0x06, 0x73, - 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x49, 0x6e, - 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, - 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x44, 0x0a, 0x09, 0x77, 0x6f, 0x72, 0x6b, - 0x66, 0x6c, 0x6f, 0x77, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x26, 0x2e, 0x49, 0x6e, - 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, - 0x72, 0x57, 0x46, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x44, 0x65, 0x74, 0x61, - 0x69, 0x6c, 0x73, 0x52, 0x09, 0x77, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x73, 0x12, 0x1f, - 0x0a, 0x0b, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x18, 0x03, 0x20, - 0x01, 0x28, 0x05, 0x52, 0x0a, 0x70, 0x61, 0x67, 0x65, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x12, - 0x1b, 0x0a, 0x09, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x04, 0x20, 0x01, - 0x28, 0x05, 0x52, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x23, 0x0a, 0x0d, - 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x65, 0x6e, 0x74, 0x72, 0x69, 0x65, 0x73, 0x18, 0x05, 0x20, - 0x01, 0x28, 0x05, 0x52, 0x0c, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x45, 0x6e, 0x74, 0x72, 0x69, 0x65, - 0x73, 0x12, 0x1f, 0x0a, 0x0b, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x70, 0x61, 0x67, 0x65, 0x73, - 0x18, 0x06, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0a, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x50, 0x61, 0x67, - 0x65, 0x73, 0x22, 0xa7, 0x06, 0x0a, 0x11, 0x4c, 0x69, 0x73, 0x74, 0x4b, 0x65, 0x79, 0x73, 0x65, - 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x70, 0x61, 0x67, 0x65, - 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x70, 0x61, 0x67, - 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x74, 0x6f, - 0x6b, 0x65, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x61, 0x67, 0x65, 0x54, - 0x6f, 0x6b, 0x65, 0x6e, 0x12, 0x44, 0x0a, 0x05, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x18, 0x03, 0x20, - 0x01, 0x28, 0x0e, 0x32, 0x2e, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, - 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x57, 0x46, 0x2e, 0x4c, 0x69, 0x73, 0x74, - 0x4b, 0x65, 0x79, 0x73, 0x65, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x4f, 0x72, - 0x64, 0x65, 0x72, 0x52, 0x05, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x12, 0x27, 0x0a, 0x0f, 0x6f, 0x72, - 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x64, 0x18, 0x04, 0x20, - 0x01, 0x28, 0x09, 0x52, 0x0e, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, - 0x6e, 0x49, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, - 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, - 0x49, 0x64, 0x12, 0x21, 0x0a, 0x0c, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x65, 0x72, 0x5f, - 0x69, 0x64, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, - 0x74, 0x65, 0x72, 0x49, 0x64, 0x12, 0x1f, 0x0a, 0x0b, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, - 0x5f, 0x69, 0x64, 0x73, 0x18, 0x07, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0a, 0x70, 0x72, 0x6f, 0x6a, - 0x65, 0x63, 0x74, 0x49, 0x64, 0x73, 0x12, 0x41, 0x0a, 0x0e, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, - 0x64, 0x5f, 0x62, 0x65, 0x66, 0x6f, 0x72, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, - 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, - 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0d, 0x63, 0x72, 0x65, 0x61, - 0x74, 0x65, 0x64, 0x42, 0x65, 0x66, 0x6f, 0x72, 0x65, 0x12, 0x3f, 0x0a, 0x0d, 0x63, 0x72, 0x65, - 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x66, 0x74, 0x65, 0x72, 0x18, 0x09, 0x20, 0x01, 0x28, 0x0b, - 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, - 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0c, 0x63, 0x72, - 0x65, 0x61, 0x74, 0x65, 0x64, 0x41, 0x66, 0x74, 0x65, 0x72, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x61, - 0x62, 0x65, 0x6c, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x6c, 0x61, 0x62, 0x65, 0x6c, - 0x12, 0x45, 0x0a, 0x0d, 0x67, 0x69, 0x74, 0x5f, 0x72, 0x65, 0x66, 0x5f, 0x74, 0x79, 0x70, 0x65, - 0x73, 0x18, 0x0b, 0x20, 0x03, 0x28, 0x0e, 0x32, 0x21, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, - 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x57, 0x46, 0x2e, - 0x47, 0x69, 0x74, 0x52, 0x65, 0x66, 0x54, 0x79, 0x70, 0x65, 0x52, 0x0b, 0x67, 0x69, 0x74, 0x52, - 0x65, 0x66, 0x54, 0x79, 0x70, 0x65, 0x73, 0x12, 0x50, 0x0a, 0x09, 0x64, 0x69, 0x72, 0x65, 0x63, - 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x32, 0x2e, 0x49, 0x6e, 0x74, - 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, - 0x57, 0x46, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x4b, 0x65, 0x79, 0x73, 0x65, 0x74, 0x52, 0x65, 0x71, - 0x75, 0x65, 0x73, 0x74, 0x2e, 0x44, 0x69, 0x72, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x09, - 0x64, 0x69, 0x72, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x42, 0x0a, 0x0a, 0x74, 0x72, 0x69, - 0x67, 0x67, 0x65, 0x72, 0x65, 0x72, 0x73, 0x18, 0x0d, 0x20, 0x03, 0x28, 0x0e, 0x32, 0x22, 0x2e, - 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, - 0x62, 0x65, 0x72, 0x57, 0x46, 0x2e, 0x54, 0x72, 0x69, 0x67, 0x67, 0x65, 0x72, 0x65, 0x64, 0x42, - 0x79, 0x52, 0x0a, 0x74, 0x72, 0x69, 0x67, 0x67, 0x65, 0x72, 0x65, 0x72, 0x73, 0x12, 0x1f, 0x0a, - 0x0b, 0x62, 0x72, 0x61, 0x6e, 0x63, 0x68, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x0e, 0x20, 0x01, - 0x28, 0x09, 0x52, 0x0a, 0x62, 0x72, 0x61, 0x6e, 0x63, 0x68, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x23, - 0x0a, 0x0d, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x73, 0x18, - 0x0f, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0c, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x65, 0x72, - 0x49, 0x64, 0x73, 0x22, 0x22, 0x0a, 0x05, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x12, 0x19, 0x0a, 0x15, - 0x42, 0x59, 0x5f, 0x43, 0x52, 0x45, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x54, 0x49, 0x4d, 0x45, - 0x5f, 0x44, 0x45, 0x53, 0x43, 0x10, 0x00, 0x22, 0x23, 0x0a, 0x09, 0x44, 0x69, 0x72, 0x65, 0x63, - 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x08, 0x0a, 0x04, 0x4e, 0x45, 0x58, 0x54, 0x10, 0x00, 0x12, 0x0c, - 0x0a, 0x08, 0x50, 0x52, 0x45, 0x56, 0x49, 0x4f, 0x55, 0x53, 0x10, 0x01, 0x22, 0xdf, 0x01, 0x0a, - 0x12, 0x4c, 0x69, 0x73, 0x74, 0x4b, 0x65, 0x79, 0x73, 0x65, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, - 0x6e, 0x73, 0x65, 0x12, 0x2b, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x01, 0x20, - 0x01, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, - 0x69, 0x2e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, - 0x12, 0x44, 0x0a, 0x09, 0x77, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x73, 0x18, 0x02, 0x20, - 0x03, 0x28, 0x0b, 0x32, 0x26, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, - 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x57, 0x46, 0x2e, 0x57, 0x6f, 0x72, 0x6b, - 0x66, 0x6c, 0x6f, 0x77, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x52, 0x09, 0x77, 0x6f, 0x72, - 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x73, 0x12, 0x26, 0x0a, 0x0f, 0x6e, 0x65, 0x78, 0x74, 0x5f, 0x70, - 0x61, 0x67, 0x65, 0x5f, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, - 0x0d, 0x6e, 0x65, 0x78, 0x74, 0x50, 0x61, 0x67, 0x65, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x12, 0x2e, - 0x0a, 0x13, 0x70, 0x72, 0x65, 0x76, 0x69, 0x6f, 0x75, 0x73, 0x5f, 0x70, 0x61, 0x67, 0x65, 0x5f, - 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x11, 0x70, 0x72, 0x65, - 0x76, 0x69, 0x6f, 0x75, 0x73, 0x50, 0x61, 0x67, 0x65, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x22, 0xef, - 0x03, 0x0a, 0x0f, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x44, 0x65, 0x74, 0x61, 0x69, - 0x6c, 0x73, 0x12, 0x13, 0x0a, 0x05, 0x77, 0x66, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, - 0x09, 0x52, 0x04, 0x77, 0x66, 0x49, 0x64, 0x12, 0x24, 0x0a, 0x0e, 0x69, 0x6e, 0x69, 0x74, 0x69, - 0x61, 0x6c, 0x5f, 0x70, 0x70, 0x6c, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, - 0x0c, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x61, 0x6c, 0x50, 0x70, 0x6c, 0x49, 0x64, 0x12, 0x1d, 0x0a, - 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, - 0x09, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x17, 0x0a, 0x07, - 0x68, 0x6f, 0x6f, 0x6b, 0x5f, 0x69, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x68, - 0x6f, 0x6f, 0x6b, 0x49, 0x64, 0x12, 0x21, 0x0a, 0x0c, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, - 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x72, 0x65, 0x71, - 0x75, 0x65, 0x73, 0x74, 0x65, 0x72, 0x49, 0x64, 0x12, 0x1b, 0x0a, 0x09, 0x62, 0x72, 0x61, 0x6e, - 0x63, 0x68, 0x5f, 0x69, 0x64, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x62, 0x72, 0x61, - 0x6e, 0x63, 0x68, 0x49, 0x64, 0x12, 0x1f, 0x0a, 0x0b, 0x62, 0x72, 0x61, 0x6e, 0x63, 0x68, 0x5f, - 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x62, 0x72, 0x61, 0x6e, - 0x63, 0x68, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x63, 0x6f, 0x6d, 0x6d, 0x69, 0x74, - 0x5f, 0x73, 0x68, 0x61, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x63, 0x6f, 0x6d, 0x6d, - 0x69, 0x74, 0x53, 0x68, 0x61, 0x12, 0x39, 0x0a, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, - 0x5f, 0x61, 0x74, 0x18, 0x09, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, - 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x09, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x41, 0x74, - 0x12, 0x45, 0x0a, 0x0c, 0x74, 0x72, 0x69, 0x67, 0x67, 0x65, 0x72, 0x65, 0x64, 0x5f, 0x62, 0x79, - 0x18, 0x0a, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x22, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, - 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x57, 0x46, 0x2e, 0x54, - 0x72, 0x69, 0x67, 0x67, 0x65, 0x72, 0x65, 0x64, 0x42, 0x79, 0x52, 0x0b, 0x74, 0x72, 0x69, 0x67, - 0x67, 0x65, 0x72, 0x65, 0x64, 0x42, 0x79, 0x12, 0x19, 0x0a, 0x08, 0x72, 0x65, 0x72, 0x75, 0x6e, - 0x5f, 0x6f, 0x66, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x72, 0x65, 0x72, 0x75, 0x6e, - 0x4f, 0x66, 0x12, 0x23, 0x0a, 0x0d, 0x72, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x79, - 0x5f, 0x69, 0x64, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x72, 0x65, 0x70, 0x6f, 0x73, - 0x69, 0x74, 0x6f, 0x72, 0x79, 0x49, 0x64, 0x12, 0x27, 0x0a, 0x0f, 0x6f, 0x72, 0x67, 0x61, 0x6e, - 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x64, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x09, - 0x52, 0x0e, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, - 0x22, 0x26, 0x0a, 0x0f, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x52, 0x65, 0x71, 0x75, - 0x65, 0x73, 0x74, 0x12, 0x13, 0x0a, 0x05, 0x77, 0x66, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, - 0x28, 0x09, 0x52, 0x04, 0x77, 0x66, 0x49, 0x64, 0x22, 0x83, 0x01, 0x0a, 0x10, 0x44, 0x65, 0x73, - 0x63, 0x72, 0x69, 0x62, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x2b, 0x0a, - 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x13, 0x2e, - 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x53, 0x74, 0x61, 0x74, - 0x75, 0x73, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x42, 0x0a, 0x08, 0x77, 0x6f, - 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x26, 0x2e, 0x49, + 0x0d, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x42, 0x65, 0x66, 0x6f, 0x72, 0x65, 0x12, 0x3f, + 0x0a, 0x0d, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x66, 0x74, 0x65, 0x72, 0x18, + 0x09, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, + 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, + 0x70, 0x52, 0x0c, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x41, 0x66, 0x74, 0x65, 0x72, 0x12, + 0x14, 0x0a, 0x05, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, + 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x12, 0x45, 0x0a, 0x0d, 0x67, 0x69, 0x74, 0x5f, 0x72, 0x65, 0x66, + 0x5f, 0x74, 0x79, 0x70, 0x65, 0x73, 0x18, 0x0b, 0x20, 0x03, 0x28, 0x0e, 0x32, 0x21, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, - 0x65, 0x72, 0x57, 0x46, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x44, 0x65, 0x74, - 0x61, 0x69, 0x6c, 0x73, 0x52, 0x08, 0x77, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x22, 0x2c, - 0x0a, 0x13, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x4d, 0x61, 0x6e, 0x79, 0x52, 0x65, - 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x15, 0x0a, 0x06, 0x77, 0x66, 0x5f, 0x69, 0x64, 0x73, 0x18, - 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x05, 0x77, 0x66, 0x49, 0x64, 0x73, 0x22, 0x89, 0x01, 0x0a, - 0x14, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x4d, 0x61, 0x6e, 0x79, 0x52, 0x65, 0x73, - 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x2b, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, - 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, - 0x41, 0x70, 0x69, 0x2e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, - 0x75, 0x73, 0x12, 0x44, 0x0a, 0x09, 0x77, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x73, 0x18, - 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x26, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, - 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x57, 0x46, 0x2e, 0x57, 0x6f, - 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x52, 0x09, 0x77, - 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x73, 0x22, 0x4a, 0x0a, 0x10, 0x54, 0x65, 0x72, 0x6d, - 0x69, 0x6e, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x21, 0x0a, 0x0c, - 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, - 0x28, 0x09, 0x52, 0x0b, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x65, 0x72, 0x49, 0x64, 0x12, - 0x13, 0x0a, 0x05, 0x77, 0x66, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, - 0x77, 0x66, 0x49, 0x64, 0x22, 0x40, 0x0a, 0x11, 0x54, 0x65, 0x72, 0x6d, 0x69, 0x6e, 0x61, 0x74, - 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x2b, 0x0a, 0x06, 0x73, 0x74, 0x61, - 0x74, 0x75, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x49, 0x6e, 0x74, 0x65, - 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x06, - 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x22, 0x63, 0x0a, 0x11, 0x4c, 0x69, 0x73, 0x74, 0x4c, 0x61, - 0x62, 0x65, 0x6c, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x70, - 0x61, 0x67, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x70, 0x61, 0x67, 0x65, 0x12, - 0x1b, 0x0a, 0x09, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x02, 0x20, 0x01, - 0x28, 0x05, 0x52, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x1d, 0x0a, 0x0a, - 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, - 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x22, 0xdd, 0x01, 0x0a, 0x12, - 0x4c, 0x69, 0x73, 0x74, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, + 0x65, 0x72, 0x57, 0x46, 0x2e, 0x47, 0x69, 0x74, 0x52, 0x65, 0x66, 0x54, 0x79, 0x70, 0x65, 0x52, + 0x0b, 0x67, 0x69, 0x74, 0x52, 0x65, 0x66, 0x54, 0x79, 0x70, 0x65, 0x73, 0x12, 0x50, 0x0a, 0x09, + 0x64, 0x69, 0x72, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x0e, 0x32, + 0x32, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, + 0x75, 0x6d, 0x62, 0x65, 0x72, 0x57, 0x46, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x4b, 0x65, 0x79, 0x73, + 0x65, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x44, 0x69, 0x72, 0x65, 0x63, 0x74, + 0x69, 0x6f, 0x6e, 0x52, 0x09, 0x64, 0x69, 0x72, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x42, + 0x0a, 0x0a, 0x74, 0x72, 0x69, 0x67, 0x67, 0x65, 0x72, 0x65, 0x72, 0x73, 0x18, 0x0d, 0x20, 0x03, + 0x28, 0x0e, 0x32, 0x22, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, + 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x57, 0x46, 0x2e, 0x54, 0x72, 0x69, 0x67, 0x67, + 0x65, 0x72, 0x65, 0x64, 0x42, 0x79, 0x52, 0x0a, 0x74, 0x72, 0x69, 0x67, 0x67, 0x65, 0x72, 0x65, + 0x72, 0x73, 0x12, 0x1f, 0x0a, 0x0b, 0x62, 0x72, 0x61, 0x6e, 0x63, 0x68, 0x5f, 0x6e, 0x61, 0x6d, + 0x65, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x62, 0x72, 0x61, 0x6e, 0x63, 0x68, 0x4e, + 0x61, 0x6d, 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x65, 0x72, + 0x5f, 0x69, 0x64, 0x73, 0x18, 0x0f, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0c, 0x72, 0x65, 0x71, 0x75, + 0x65, 0x73, 0x74, 0x65, 0x72, 0x49, 0x64, 0x73, 0x22, 0x22, 0x0a, 0x05, 0x4f, 0x72, 0x64, 0x65, + 0x72, 0x12, 0x19, 0x0a, 0x15, 0x42, 0x59, 0x5f, 0x43, 0x52, 0x45, 0x41, 0x54, 0x49, 0x4f, 0x4e, + 0x5f, 0x54, 0x49, 0x4d, 0x45, 0x5f, 0x44, 0x45, 0x53, 0x43, 0x10, 0x00, 0x22, 0x23, 0x0a, 0x09, + 0x44, 0x69, 0x72, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x08, 0x0a, 0x04, 0x4e, 0x45, 0x58, + 0x54, 0x10, 0x00, 0x12, 0x0c, 0x0a, 0x08, 0x50, 0x52, 0x45, 0x56, 0x49, 0x4f, 0x55, 0x53, 0x10, + 0x01, 0x22, 0xdf, 0x01, 0x0a, 0x12, 0x4c, 0x69, 0x73, 0x74, 0x4b, 0x65, 0x79, 0x73, 0x65, 0x74, + 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x2b, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, + 0x75, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, + 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x06, 0x73, + 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x44, 0x0a, 0x09, 0x77, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, + 0x77, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x26, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, + 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x57, 0x46, + 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, + 0x52, 0x09, 0x77, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x73, 0x12, 0x26, 0x0a, 0x0f, 0x6e, + 0x65, 0x78, 0x74, 0x5f, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x18, 0x03, + 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x6e, 0x65, 0x78, 0x74, 0x50, 0x61, 0x67, 0x65, 0x54, 0x6f, + 0x6b, 0x65, 0x6e, 0x12, 0x2e, 0x0a, 0x13, 0x70, 0x72, 0x65, 0x76, 0x69, 0x6f, 0x75, 0x73, 0x5f, + 0x70, 0x61, 0x67, 0x65, 0x5f, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, + 0x52, 0x11, 0x70, 0x72, 0x65, 0x76, 0x69, 0x6f, 0x75, 0x73, 0x50, 0x61, 0x67, 0x65, 0x54, 0x6f, + 0x6b, 0x65, 0x6e, 0x22, 0xef, 0x03, 0x0a, 0x0f, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, + 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x12, 0x13, 0x0a, 0x05, 0x77, 0x66, 0x5f, 0x69, 0x64, + 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x77, 0x66, 0x49, 0x64, 0x12, 0x24, 0x0a, 0x0e, + 0x69, 0x6e, 0x69, 0x74, 0x69, 0x61, 0x6c, 0x5f, 0x70, 0x70, 0x6c, 0x5f, 0x69, 0x64, 0x18, 0x02, + 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x61, 0x6c, 0x50, 0x70, 0x6c, + 0x49, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, + 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, + 0x64, 0x12, 0x17, 0x0a, 0x07, 0x68, 0x6f, 0x6f, 0x6b, 0x5f, 0x69, 0x64, 0x18, 0x04, 0x20, 0x01, + 0x28, 0x09, 0x52, 0x06, 0x68, 0x6f, 0x6f, 0x6b, 0x49, 0x64, 0x12, 0x21, 0x0a, 0x0c, 0x72, 0x65, + 0x71, 0x75, 0x65, 0x73, 0x74, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, + 0x52, 0x0b, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x65, 0x72, 0x49, 0x64, 0x12, 0x1b, 0x0a, + 0x09, 0x62, 0x72, 0x61, 0x6e, 0x63, 0x68, 0x5f, 0x69, 0x64, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, + 0x52, 0x08, 0x62, 0x72, 0x61, 0x6e, 0x63, 0x68, 0x49, 0x64, 0x12, 0x1f, 0x0a, 0x0b, 0x62, 0x72, + 0x61, 0x6e, 0x63, 0x68, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, + 0x0a, 0x62, 0x72, 0x61, 0x6e, 0x63, 0x68, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x63, + 0x6f, 0x6d, 0x6d, 0x69, 0x74, 0x5f, 0x73, 0x68, 0x61, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, + 0x09, 0x63, 0x6f, 0x6d, 0x6d, 0x69, 0x74, 0x53, 0x68, 0x61, 0x12, 0x39, 0x0a, 0x0a, 0x63, 0x72, + 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x18, 0x09, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, + 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x09, 0x63, 0x72, 0x65, 0x61, + 0x74, 0x65, 0x64, 0x41, 0x74, 0x12, 0x45, 0x0a, 0x0c, 0x74, 0x72, 0x69, 0x67, 0x67, 0x65, 0x72, + 0x65, 0x64, 0x5f, 0x62, 0x79, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x22, 0x2e, 0x49, 0x6e, + 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, + 0x72, 0x57, 0x46, 0x2e, 0x54, 0x72, 0x69, 0x67, 0x67, 0x65, 0x72, 0x65, 0x64, 0x42, 0x79, 0x52, + 0x0b, 0x74, 0x72, 0x69, 0x67, 0x67, 0x65, 0x72, 0x65, 0x64, 0x42, 0x79, 0x12, 0x19, 0x0a, 0x08, + 0x72, 0x65, 0x72, 0x75, 0x6e, 0x5f, 0x6f, 0x66, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, + 0x72, 0x65, 0x72, 0x75, 0x6e, 0x4f, 0x66, 0x12, 0x23, 0x0a, 0x0d, 0x72, 0x65, 0x70, 0x6f, 0x73, + 0x69, 0x74, 0x6f, 0x72, 0x79, 0x5f, 0x69, 0x64, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, + 0x72, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x79, 0x49, 0x64, 0x12, 0x27, 0x0a, 0x0f, + 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x64, 0x18, + 0x0d, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, + 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x22, 0x26, 0x0a, 0x0f, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x62, + 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x13, 0x0a, 0x05, 0x77, 0x66, 0x5f, 0x69, + 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x77, 0x66, 0x49, 0x64, 0x22, 0x83, 0x01, + 0x0a, 0x10, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x2b, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, - 0x16, 0x0a, 0x06, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, - 0x06, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x12, 0x1f, 0x0a, 0x0b, 0x70, 0x61, 0x67, 0x65, 0x5f, - 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0a, 0x70, 0x61, - 0x67, 0x65, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x12, 0x1b, 0x0a, 0x09, 0x70, 0x61, 0x67, 0x65, - 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x70, 0x61, 0x67, - 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x65, - 0x6e, 0x74, 0x72, 0x69, 0x65, 0x73, 0x18, 0x05, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0c, 0x74, 0x6f, - 0x74, 0x61, 0x6c, 0x45, 0x6e, 0x74, 0x72, 0x69, 0x65, 0x73, 0x12, 0x1f, 0x0a, 0x0b, 0x74, 0x6f, - 0x74, 0x61, 0x6c, 0x5f, 0x70, 0x61, 0x67, 0x65, 0x73, 0x18, 0x06, 0x20, 0x01, 0x28, 0x05, 0x52, - 0x0a, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x50, 0x61, 0x67, 0x65, 0x73, 0x22, 0x70, 0x0a, 0x11, 0x52, - 0x65, 0x73, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, - 0x12, 0x13, 0x0a, 0x05, 0x77, 0x66, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, - 0x04, 0x77, 0x66, 0x49, 0x64, 0x12, 0x21, 0x0a, 0x0c, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, - 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x72, 0x65, 0x71, - 0x75, 0x65, 0x73, 0x74, 0x65, 0x72, 0x49, 0x64, 0x12, 0x23, 0x0a, 0x0d, 0x72, 0x65, 0x71, 0x75, - 0x65, 0x73, 0x74, 0x5f, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, - 0x0c, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x22, 0x2a, 0x0a, - 0x13, 0x47, 0x65, 0x74, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x52, 0x65, 0x71, - 0x75, 0x65, 0x73, 0x74, 0x12, 0x13, 0x0a, 0x05, 0x77, 0x66, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, - 0x01, 0x28, 0x09, 0x52, 0x04, 0x77, 0x66, 0x49, 0x64, 0x22, 0x62, 0x0a, 0x14, 0x47, 0x65, 0x74, - 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, - 0x65, 0x12, 0x2b, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, - 0x0b, 0x32, 0x13, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, - 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x1d, - 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, - 0x28, 0x09, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x22, 0xce, 0x01, - 0x0a, 0x0d, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, - 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, - 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x14, - 0x0a, 0x05, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x6c, - 0x61, 0x62, 0x65, 0x6c, 0x12, 0x17, 0x0a, 0x07, 0x68, 0x6f, 0x6f, 0x6b, 0x5f, 0x69, 0x64, 0x18, - 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x68, 0x6f, 0x6f, 0x6b, 0x49, 0x64, 0x12, 0x23, 0x0a, - 0x0d, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x5f, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x18, 0x04, + 0x42, 0x0a, 0x08, 0x77, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x18, 0x02, 0x20, 0x01, 0x28, + 0x0b, 0x32, 0x26, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, + 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x57, 0x46, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, + 0x6f, 0x77, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x52, 0x08, 0x77, 0x6f, 0x72, 0x6b, 0x66, + 0x6c, 0x6f, 0x77, 0x22, 0x2c, 0x0a, 0x13, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x4d, + 0x61, 0x6e, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x15, 0x0a, 0x06, 0x77, 0x66, + 0x5f, 0x69, 0x64, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x05, 0x77, 0x66, 0x49, 0x64, + 0x73, 0x22, 0x89, 0x01, 0x0a, 0x14, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x4d, 0x61, + 0x6e, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x2b, 0x0a, 0x06, 0x73, 0x74, + 0x61, 0x74, 0x75, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x49, 0x6e, 0x74, + 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, + 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x44, 0x0a, 0x09, 0x77, 0x6f, 0x72, 0x6b, 0x66, + 0x6c, 0x6f, 0x77, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x26, 0x2e, 0x49, 0x6e, 0x74, + 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, + 0x57, 0x46, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x44, 0x65, 0x74, 0x61, 0x69, + 0x6c, 0x73, 0x52, 0x09, 0x77, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x73, 0x22, 0x4a, 0x0a, + 0x10, 0x54, 0x65, 0x72, 0x6d, 0x69, 0x6e, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, + 0x74, 0x12, 0x21, 0x0a, 0x0c, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x65, 0x72, 0x5f, 0x69, + 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, + 0x65, 0x72, 0x49, 0x64, 0x12, 0x13, 0x0a, 0x05, 0x77, 0x66, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, + 0x01, 0x28, 0x09, 0x52, 0x04, 0x77, 0x66, 0x49, 0x64, 0x22, 0x40, 0x0a, 0x11, 0x54, 0x65, 0x72, + 0x6d, 0x69, 0x6e, 0x61, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x2b, + 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x13, + 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x53, 0x74, 0x61, + 0x74, 0x75, 0x73, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x22, 0x63, 0x0a, 0x11, 0x4c, + 0x69, 0x73, 0x74, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, + 0x12, 0x12, 0x0a, 0x04, 0x70, 0x61, 0x67, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, + 0x70, 0x61, 0x67, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x73, 0x69, 0x7a, + 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, + 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, + 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, + 0x22, 0xdd, 0x01, 0x0a, 0x12, 0x4c, 0x69, 0x73, 0x74, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x52, + 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x2b, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, + 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, + 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x06, 0x73, 0x74, + 0x61, 0x74, 0x75, 0x73, 0x12, 0x16, 0x0a, 0x06, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x18, 0x02, + 0x20, 0x03, 0x28, 0x09, 0x52, 0x06, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x12, 0x1f, 0x0a, 0x0b, + 0x70, 0x61, 0x67, 0x65, 0x5f, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, + 0x05, 0x52, 0x0a, 0x70, 0x61, 0x67, 0x65, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x12, 0x1b, 0x0a, + 0x09, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x05, + 0x52, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x74, 0x6f, + 0x74, 0x61, 0x6c, 0x5f, 0x65, 0x6e, 0x74, 0x72, 0x69, 0x65, 0x73, 0x18, 0x05, 0x20, 0x01, 0x28, + 0x05, 0x52, 0x0c, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x45, 0x6e, 0x74, 0x72, 0x69, 0x65, 0x73, 0x12, + 0x1f, 0x0a, 0x0b, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x70, 0x61, 0x67, 0x65, 0x73, 0x18, 0x06, + 0x20, 0x01, 0x28, 0x05, 0x52, 0x0a, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x50, 0x61, 0x67, 0x65, 0x73, + 0x22, 0x70, 0x0a, 0x11, 0x52, 0x65, 0x73, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x52, 0x65, + 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x13, 0x0a, 0x05, 0x77, 0x66, 0x5f, 0x69, 0x64, 0x18, 0x01, + 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x77, 0x66, 0x49, 0x64, 0x12, 0x21, 0x0a, 0x0c, 0x72, 0x65, + 0x71, 0x75, 0x65, 0x73, 0x74, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, + 0x52, 0x0b, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x65, 0x72, 0x49, 0x64, 0x12, 0x23, 0x0a, + 0x0d, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x5f, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x54, 0x6f, 0x6b, - 0x65, 0x6e, 0x12, 0x27, 0x0a, 0x0f, 0x64, 0x65, 0x66, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x6f, 0x6e, - 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x64, 0x65, 0x66, - 0x69, 0x6e, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x46, 0x69, 0x6c, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x72, - 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x06, 0x20, 0x01, 0x28, - 0x09, 0x52, 0x0b, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x65, 0x72, 0x49, 0x64, 0x22, 0x69, - 0x0a, 0x0e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, - 0x12, 0x13, 0x0a, 0x05, 0x77, 0x66, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, - 0x04, 0x77, 0x66, 0x49, 0x64, 0x12, 0x2b, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, - 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, - 0x41, 0x70, 0x69, 0x2e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, - 0x75, 0x73, 0x12, 0x15, 0x0a, 0x06, 0x70, 0x70, 0x6c, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, - 0x28, 0x09, 0x52, 0x05, 0x70, 0x70, 0x6c, 0x49, 0x64, 0x2a, 0x3e, 0x0a, 0x0b, 0x54, 0x72, 0x69, - 0x67, 0x67, 0x65, 0x72, 0x65, 0x64, 0x42, 0x79, 0x12, 0x08, 0x0a, 0x04, 0x48, 0x4f, 0x4f, 0x4b, - 0x10, 0x00, 0x12, 0x0c, 0x0a, 0x08, 0x53, 0x43, 0x48, 0x45, 0x44, 0x55, 0x4c, 0x45, 0x10, 0x01, - 0x12, 0x07, 0x0a, 0x03, 0x41, 0x50, 0x49, 0x10, 0x02, 0x12, 0x0e, 0x0a, 0x0a, 0x4d, 0x41, 0x4e, - 0x55, 0x41, 0x4c, 0x5f, 0x52, 0x55, 0x4e, 0x10, 0x03, 0x2a, 0x29, 0x0a, 0x0a, 0x47, 0x69, 0x74, - 0x52, 0x65, 0x66, 0x54, 0x79, 0x70, 0x65, 0x12, 0x0a, 0x0a, 0x06, 0x42, 0x52, 0x41, 0x4e, 0x43, - 0x48, 0x10, 0x00, 0x12, 0x07, 0x0a, 0x03, 0x54, 0x41, 0x47, 0x10, 0x01, 0x12, 0x06, 0x0a, 0x02, - 0x50, 0x52, 0x10, 0x02, 0x32, 0xf6, 0x0a, 0x0a, 0x0f, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, - 0x77, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0x5b, 0x0a, 0x08, 0x53, 0x63, 0x68, 0x65, - 0x64, 0x75, 0x6c, 0x65, 0x12, 0x26, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, - 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x57, 0x46, 0x2e, 0x53, 0x63, 0x68, - 0x65, 0x64, 0x75, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x27, 0x2e, 0x49, + 0x65, 0x6e, 0x22, 0x2a, 0x0a, 0x13, 0x47, 0x65, 0x74, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, + 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x13, 0x0a, 0x05, 0x77, 0x66, 0x5f, + 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x77, 0x66, 0x49, 0x64, 0x22, 0x62, + 0x0a, 0x14, 0x47, 0x65, 0x74, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x52, 0x65, + 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x2b, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, + 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, + 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x06, 0x73, 0x74, 0x61, + 0x74, 0x75, 0x73, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, + 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, + 0x49, 0x64, 0x22, 0xce, 0x01, 0x0a, 0x0d, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, + 0x75, 0x65, 0x73, 0x74, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, + 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, + 0x74, 0x49, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x18, 0x02, 0x20, 0x01, + 0x28, 0x09, 0x52, 0x05, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x12, 0x17, 0x0a, 0x07, 0x68, 0x6f, 0x6f, + 0x6b, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x68, 0x6f, 0x6f, 0x6b, + 0x49, 0x64, 0x12, 0x23, 0x0a, 0x0d, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x5f, 0x74, 0x6f, + 0x6b, 0x65, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x72, 0x65, 0x71, 0x75, 0x65, + 0x73, 0x74, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x12, 0x27, 0x0a, 0x0f, 0x64, 0x65, 0x66, 0x69, 0x6e, + 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, + 0x52, 0x0e, 0x64, 0x65, 0x66, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x46, 0x69, 0x6c, 0x65, + 0x12, 0x21, 0x0a, 0x0c, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x65, 0x72, 0x5f, 0x69, 0x64, + 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x65, + 0x72, 0x49, 0x64, 0x22, 0x69, 0x0a, 0x0e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x52, 0x65, 0x73, + 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x13, 0x0a, 0x05, 0x77, 0x66, 0x5f, 0x69, 0x64, 0x18, 0x01, + 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x77, 0x66, 0x49, 0x64, 0x12, 0x2b, 0x0a, 0x06, 0x73, 0x74, + 0x61, 0x74, 0x75, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x49, 0x6e, 0x74, + 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, + 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x15, 0x0a, 0x06, 0x70, 0x70, 0x6c, 0x5f, 0x69, + 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x70, 0x70, 0x6c, 0x49, 0x64, 0x2a, 0x3e, + 0x0a, 0x0b, 0x54, 0x72, 0x69, 0x67, 0x67, 0x65, 0x72, 0x65, 0x64, 0x42, 0x79, 0x12, 0x08, 0x0a, + 0x04, 0x48, 0x4f, 0x4f, 0x4b, 0x10, 0x00, 0x12, 0x0c, 0x0a, 0x08, 0x53, 0x43, 0x48, 0x45, 0x44, + 0x55, 0x4c, 0x45, 0x10, 0x01, 0x12, 0x07, 0x0a, 0x03, 0x41, 0x50, 0x49, 0x10, 0x02, 0x12, 0x0e, + 0x0a, 0x0a, 0x4d, 0x41, 0x4e, 0x55, 0x41, 0x4c, 0x5f, 0x52, 0x55, 0x4e, 0x10, 0x03, 0x2a, 0x29, + 0x0a, 0x0a, 0x47, 0x69, 0x74, 0x52, 0x65, 0x66, 0x54, 0x79, 0x70, 0x65, 0x12, 0x0a, 0x0a, 0x06, + 0x42, 0x52, 0x41, 0x4e, 0x43, 0x48, 0x10, 0x00, 0x12, 0x07, 0x0a, 0x03, 0x54, 0x41, 0x47, 0x10, + 0x01, 0x12, 0x06, 0x0a, 0x02, 0x50, 0x52, 0x10, 0x02, 0x32, 0xf6, 0x0a, 0x0a, 0x0f, 0x57, 0x6f, + 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0x5b, 0x0a, + 0x08, 0x53, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x12, 0x26, 0x2e, 0x49, 0x6e, 0x74, 0x65, + 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x57, + 0x46, 0x2e, 0x53, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, + 0x74, 0x1a, 0x27, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, + 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x57, 0x46, 0x2e, 0x53, 0x63, 0x68, 0x65, 0x64, 0x75, + 0x6c, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x58, 0x0a, 0x07, 0x47, 0x65, + 0x74, 0x50, 0x61, 0x74, 0x68, 0x12, 0x25, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, + 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x57, 0x46, 0x2e, 0x47, 0x65, + 0x74, 0x50, 0x61, 0x74, 0x68, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x26, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, - 0x65, 0x72, 0x57, 0x46, 0x2e, 0x53, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x52, 0x65, 0x73, - 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x58, 0x0a, 0x07, 0x47, 0x65, 0x74, 0x50, 0x61, 0x74, 0x68, - 0x12, 0x25, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, - 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x57, 0x46, 0x2e, 0x47, 0x65, 0x74, 0x50, 0x61, 0x74, 0x68, - 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x26, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, - 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x57, 0x46, 0x2e, - 0x47, 0x65, 0x74, 0x50, 0x61, 0x74, 0x68, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, - 0x4f, 0x0a, 0x04, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x22, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, - 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x57, 0x46, 0x2e, - 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x23, 0x2e, 0x49, 0x6e, - 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, - 0x72, 0x57, 0x46, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, - 0x12, 0x61, 0x0a, 0x0a, 0x4c, 0x69, 0x73, 0x74, 0x4b, 0x65, 0x79, 0x73, 0x65, 0x74, 0x12, 0x28, - 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, - 0x6d, 0x62, 0x65, 0x72, 0x57, 0x46, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x4b, 0x65, 0x79, 0x73, 0x65, - 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x29, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, - 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x57, 0x46, - 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x4b, 0x65, 0x79, 0x73, 0x65, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, - 0x6e, 0x73, 0x65, 0x12, 0x64, 0x0a, 0x0b, 0x4c, 0x69, 0x73, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, - 0x65, 0x64, 0x12, 0x29, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, - 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x57, 0x46, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x47, - 0x72, 0x6f, 0x75, 0x70, 0x65, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2a, 0x2e, + 0x65, 0x72, 0x57, 0x46, 0x2e, 0x47, 0x65, 0x74, 0x50, 0x61, 0x74, 0x68, 0x52, 0x65, 0x73, 0x70, + 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x4f, 0x0a, 0x04, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x22, 0x2e, 0x49, + 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, + 0x65, 0x72, 0x57, 0x46, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, + 0x1a, 0x23, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, + 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x57, 0x46, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, + 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x61, 0x0a, 0x0a, 0x4c, 0x69, 0x73, 0x74, 0x4b, 0x65, 0x79, + 0x73, 0x65, 0x74, 0x12, 0x28, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, + 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x57, 0x46, 0x2e, 0x4c, 0x69, 0x73, 0x74, + 0x4b, 0x65, 0x79, 0x73, 0x65, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x29, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, - 0x62, 0x65, 0x72, 0x57, 0x46, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x65, - 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x6a, 0x0a, 0x0d, 0x4c, 0x69, 0x73, - 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x65, 0x64, 0x4b, 0x53, 0x12, 0x2b, 0x2e, 0x49, 0x6e, 0x74, - 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, - 0x57, 0x46, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x65, 0x64, 0x4b, 0x53, - 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2c, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, + 0x62, 0x65, 0x72, 0x57, 0x46, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x4b, 0x65, 0x79, 0x73, 0x65, 0x74, + 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x64, 0x0a, 0x0b, 0x4c, 0x69, 0x73, 0x74, + 0x47, 0x72, 0x6f, 0x75, 0x70, 0x65, 0x64, 0x12, 0x29, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x57, 0x46, 0x2e, - 0x4c, 0x69, 0x73, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x65, 0x64, 0x4b, 0x53, 0x52, 0x65, 0x73, - 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x7c, 0x0a, 0x13, 0x4c, 0x69, 0x73, 0x74, 0x4c, 0x61, 0x74, - 0x65, 0x73, 0x74, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x73, 0x12, 0x31, 0x2e, 0x49, + 0x4c, 0x69, 0x73, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x65, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, + 0x73, 0x74, 0x1a, 0x2a, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, + 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x57, 0x46, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x47, + 0x72, 0x6f, 0x75, 0x70, 0x65, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x6a, + 0x0a, 0x0d, 0x4c, 0x69, 0x73, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x65, 0x64, 0x4b, 0x53, 0x12, + 0x2b, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, + 0x75, 0x6d, 0x62, 0x65, 0x72, 0x57, 0x46, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x47, 0x72, 0x6f, 0x75, + 0x70, 0x65, 0x64, 0x4b, 0x53, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2c, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, - 0x65, 0x72, 0x57, 0x46, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x4c, 0x61, 0x74, 0x65, 0x73, 0x74, 0x57, - 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, - 0x32, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, - 0x75, 0x6d, 0x62, 0x65, 0x72, 0x57, 0x46, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x4c, 0x61, 0x74, 0x65, - 0x73, 0x74, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, - 0x6e, 0x73, 0x65, 0x12, 0x5b, 0x0a, 0x08, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x12, - 0x26, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, - 0x75, 0x6d, 0x62, 0x65, 0x72, 0x57, 0x46, 0x2e, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, - 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x27, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, - 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x57, 0x46, 0x2e, - 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, - 0x12, 0x67, 0x0a, 0x0c, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x4d, 0x61, 0x6e, 0x79, - 0x12, 0x2a, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, - 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x57, 0x46, 0x2e, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x62, - 0x65, 0x4d, 0x61, 0x6e, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2b, 0x2e, 0x49, + 0x65, 0x72, 0x57, 0x46, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x65, 0x64, + 0x4b, 0x53, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x7c, 0x0a, 0x13, 0x4c, 0x69, + 0x73, 0x74, 0x4c, 0x61, 0x74, 0x65, 0x73, 0x74, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, + 0x73, 0x12, 0x31, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, + 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x57, 0x46, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x4c, 0x61, + 0x74, 0x65, 0x73, 0x74, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x73, 0x52, 0x65, 0x71, + 0x75, 0x65, 0x73, 0x74, 0x1a, 0x32, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, + 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x57, 0x46, 0x2e, 0x4c, 0x69, 0x73, + 0x74, 0x4c, 0x61, 0x74, 0x65, 0x73, 0x74, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x73, + 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x5b, 0x0a, 0x08, 0x44, 0x65, 0x73, 0x63, + 0x72, 0x69, 0x62, 0x65, 0x12, 0x26, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, + 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x57, 0x46, 0x2e, 0x44, 0x65, 0x73, + 0x63, 0x72, 0x69, 0x62, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x27, 0x2e, 0x49, + 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, + 0x65, 0x72, 0x57, 0x46, 0x2e, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x52, 0x65, 0x73, + 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x67, 0x0a, 0x0c, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x62, + 0x65, 0x4d, 0x61, 0x6e, 0x79, 0x12, 0x2a, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, + 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x57, 0x46, 0x2e, 0x44, 0x65, + 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x4d, 0x61, 0x6e, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, + 0x74, 0x1a, 0x2b, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, + 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x57, 0x46, 0x2e, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, + 0x62, 0x65, 0x4d, 0x61, 0x6e, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x5e, + 0x0a, 0x09, 0x54, 0x65, 0x72, 0x6d, 0x69, 0x6e, 0x61, 0x74, 0x65, 0x12, 0x27, 0x2e, 0x49, 0x6e, + 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, + 0x72, 0x57, 0x46, 0x2e, 0x54, 0x65, 0x72, 0x6d, 0x69, 0x6e, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, + 0x75, 0x65, 0x73, 0x74, 0x1a, 0x28, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, + 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x57, 0x46, 0x2e, 0x54, 0x65, 0x72, + 0x6d, 0x69, 0x6e, 0x61, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x61, + 0x0a, 0x0a, 0x4c, 0x69, 0x73, 0x74, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x12, 0x28, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, - 0x65, 0x72, 0x57, 0x46, 0x2e, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x4d, 0x61, 0x6e, - 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x5e, 0x0a, 0x09, 0x54, 0x65, 0x72, - 0x6d, 0x69, 0x6e, 0x61, 0x74, 0x65, 0x12, 0x27, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, - 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x57, 0x46, 0x2e, 0x54, - 0x65, 0x72, 0x6d, 0x69, 0x6e, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, + 0x65, 0x72, 0x57, 0x46, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x52, + 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x29, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, + 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x57, 0x46, 0x2e, 0x4c, + 0x69, 0x73, 0x74, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, + 0x65, 0x12, 0x5f, 0x0a, 0x0a, 0x52, 0x65, 0x73, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x12, 0x28, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, - 0x75, 0x6d, 0x62, 0x65, 0x72, 0x57, 0x46, 0x2e, 0x54, 0x65, 0x72, 0x6d, 0x69, 0x6e, 0x61, 0x74, - 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x61, 0x0a, 0x0a, 0x4c, 0x69, 0x73, - 0x74, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x12, 0x28, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, - 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x57, 0x46, 0x2e, - 0x4c, 0x69, 0x73, 0x74, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, - 0x74, 0x1a, 0x29, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, - 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x57, 0x46, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x4c, 0x61, - 0x62, 0x65, 0x6c, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x5f, 0x0a, 0x0a, - 0x52, 0x65, 0x73, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x12, 0x28, 0x2e, 0x49, 0x6e, 0x74, - 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, - 0x57, 0x46, 0x2e, 0x52, 0x65, 0x73, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x52, 0x65, 0x71, - 0x75, 0x65, 0x73, 0x74, 0x1a, 0x27, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, - 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x57, 0x46, 0x2e, 0x53, 0x63, 0x68, - 0x65, 0x64, 0x75, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x67, 0x0a, - 0x0c, 0x47, 0x65, 0x74, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x2a, 0x2e, - 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, - 0x62, 0x65, 0x72, 0x57, 0x46, 0x2e, 0x47, 0x65, 0x74, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, - 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2b, 0x2e, 0x49, 0x6e, 0x74, 0x65, + 0x75, 0x6d, 0x62, 0x65, 0x72, 0x57, 0x46, 0x2e, 0x52, 0x65, 0x73, 0x63, 0x68, 0x65, 0x64, 0x75, + 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x27, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x57, - 0x46, 0x2e, 0x47, 0x65, 0x74, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x52, 0x65, - 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x55, 0x0a, 0x06, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, - 0x12, 0x24, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, - 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x57, 0x46, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x52, - 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x25, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, - 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x57, 0x46, 0x2e, 0x43, - 0x72, 0x65, 0x61, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x42, 0x42, 0x5a, - 0x40, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x72, 0x65, 0x6e, 0x64, - 0x65, 0x72, 0x65, 0x64, 0x74, 0x65, 0x78, 0x74, 0x2f, 0x76, 0x65, 0x6c, 0x6f, 0x63, 0x69, 0x74, - 0x79, 0x2f, 0x70, 0x6b, 0x67, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x73, 0x2f, 0x70, 0x6c, 0x75, - 0x6d, 0x62, 0x65, 0x72, 0x5f, 0x77, 0x5f, 0x66, 0x2e, 0x77, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, - 0x77, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, + 0x46, 0x2e, 0x53, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, + 0x73, 0x65, 0x12, 0x67, 0x0a, 0x0c, 0x47, 0x65, 0x74, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, + 0x49, 0x64, 0x12, 0x2a, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, + 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x57, 0x46, 0x2e, 0x47, 0x65, 0x74, 0x50, 0x72, + 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2b, + 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, + 0x6d, 0x62, 0x65, 0x72, 0x57, 0x46, 0x2e, 0x47, 0x65, 0x74, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, + 0x74, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x55, 0x0a, 0x06, 0x43, + 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x24, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, + 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x57, 0x46, 0x2e, 0x43, 0x72, + 0x65, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x25, 0x2e, 0x49, 0x6e, + 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x6c, 0x75, 0x6d, 0x62, 0x65, + 0x72, 0x57, 0x46, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, + 0x73, 0x65, 0x42, 0x4b, 0x5a, 0x49, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, + 0x2f, 0x73, 0x65, 0x6d, 0x61, 0x70, 0x68, 0x6f, 0x72, 0x65, 0x69, 0x6f, 0x2f, 0x73, 0x65, 0x6d, + 0x61, 0x70, 0x68, 0x6f, 0x72, 0x65, 0x2f, 0x76, 0x65, 0x6c, 0x6f, 0x63, 0x69, 0x74, 0x79, 0x2f, + 0x70, 0x6b, 0x67, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x73, 0x2f, 0x70, 0x6c, 0x75, 0x6d, 0x62, + 0x65, 0x72, 0x5f, 0x77, 0x5f, 0x66, 0x2e, 0x77, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x62, + 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( diff --git a/ee/velocity/pkg/protos/projecthub/projecthub.pb.go b/ee/velocity/pkg/protos/projecthub/projecthub.pb.go index da8940ec5..d0d63ebcd 100644 --- a/ee/velocity/pkg/protos/projecthub/projecthub.pb.go +++ b/ee/velocity/pkg/protos/projecthub/projecthub.pb.go @@ -183,6 +183,7 @@ const ( Project_Spec_Repository_TAGS Project_Spec_Repository_RunType = 1 Project_Spec_Repository_PULL_REQUESTS Project_Spec_Repository_RunType = 2 Project_Spec_Repository_FORKED_PULL_REQUESTS Project_Spec_Repository_RunType = 3 + Project_Spec_Repository_DRAFT_PULL_REQUESTS Project_Spec_Repository_RunType = 4 ) // Enum value maps for Project_Spec_Repository_RunType. @@ -192,12 +193,14 @@ var ( 1: "TAGS", 2: "PULL_REQUESTS", 3: "FORKED_PULL_REQUESTS", + 4: "DRAFT_PULL_REQUESTS", } Project_Spec_Repository_RunType_value = map[string]int32{ "BRANCHES": 0, "TAGS": 1, "PULL_REQUESTS": 2, "FORKED_PULL_REQUESTS": 3, + "DRAFT_PULL_REQUESTS": 4, } ) @@ -378,6 +381,7 @@ const ( Project_Status_INITIALIZING Project_Status_State = 0 Project_Status_READY Project_Status_State = 1 Project_Status_ERROR Project_Status_State = 2 + Project_Status_ONBOARDING Project_Status_State = 3 ) // Enum value maps for Project_Status_State. @@ -386,11 +390,13 @@ var ( 0: "INITIALIZING", 1: "READY", 2: "ERROR", + 3: "ONBOARDING", } Project_Status_State_value = map[string]int32{ "INITIALIZING": 0, "READY": 1, "ERROR": 2, + "ONBOARDING": 3, } ) @@ -421,6 +427,52 @@ func (Project_Status_State) EnumDescriptor() ([]byte, []int) { return file_projecthub_proto_rawDescGZIP(), []int{4, 2, 0} } +type ListKeysetRequest_Direction int32 + +const ( + ListKeysetRequest_NEXT ListKeysetRequest_Direction = 0 + ListKeysetRequest_PREVIOUS ListKeysetRequest_Direction = 1 +) + +// Enum value maps for ListKeysetRequest_Direction. +var ( + ListKeysetRequest_Direction_name = map[int32]string{ + 0: "NEXT", + 1: "PREVIOUS", + } + ListKeysetRequest_Direction_value = map[string]int32{ + "NEXT": 0, + "PREVIOUS": 1, + } +) + +func (x ListKeysetRequest_Direction) Enum() *ListKeysetRequest_Direction { + p := new(ListKeysetRequest_Direction) + *p = x + return p +} + +func (x ListKeysetRequest_Direction) String() string { + return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x)) +} + +func (ListKeysetRequest_Direction) Descriptor() protoreflect.EnumDescriptor { + return file_projecthub_proto_enumTypes[8].Descriptor() +} + +func (ListKeysetRequest_Direction) Type() protoreflect.EnumType { + return &file_projecthub_proto_enumTypes[8] +} + +func (x ListKeysetRequest_Direction) Number() protoreflect.EnumNumber { + return protoreflect.EnumNumber(x) +} + +// Deprecated: Use ListKeysetRequest_Direction.Descriptor instead. +func (ListKeysetRequest_Direction) EnumDescriptor() ([]byte, []int) { + return file_projecthub_proto_rawDescGZIP(), []int{7, 0} +} + type RequestMeta struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -781,15 +833,17 @@ func (x *Project) GetStatus() *Project_Status { // - metadata = [required] Request metadata // - owner_id = [optional] Project Owner ID // - repo_url = [optional] Repository URL +// - soft_deleted = [optional] Return soft deleted projects? Default is false. type ListRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields - Metadata *RequestMeta `protobuf:"bytes,1,opt,name=metadata,proto3" json:"metadata,omitempty"` - Pagination *PaginationRequest `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"` - OwnerId string `protobuf:"bytes,3,opt,name=owner_id,json=ownerId,proto3" json:"owner_id,omitempty"` - RepoUrl string `protobuf:"bytes,4,opt,name=repo_url,json=repoUrl,proto3" json:"repo_url,omitempty"` + Metadata *RequestMeta `protobuf:"bytes,1,opt,name=metadata,proto3" json:"metadata,omitempty"` + Pagination *PaginationRequest `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"` + OwnerId string `protobuf:"bytes,3,opt,name=owner_id,json=ownerId,proto3" json:"owner_id,omitempty"` + RepoUrl string `protobuf:"bytes,4,opt,name=repo_url,json=repoUrl,proto3" json:"repo_url,omitempty"` + SoftDeleted bool `protobuf:"varint,5,opt,name=soft_deleted,json=softDeleted,proto3" json:"soft_deleted,omitempty"` } func (x *ListRequest) Reset() { @@ -852,6 +906,13 @@ func (x *ListRequest) GetRepoUrl() string { return "" } +func (x *ListRequest) GetSoftDeleted() bool { + if x != nil { + return x.SoftDeleted + } + return false +} + type ListResponse struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -915,27 +976,195 @@ func (x *ListResponse) GetProjects() []*Project { return nil } +type ListKeysetRequest struct { + state protoimpl.MessageState + sizeCache protoimpl.SizeCache + unknownFields protoimpl.UnknownFields + + Metadata *RequestMeta `protobuf:"bytes,1,opt,name=metadata,proto3" json:"metadata,omitempty"` + PageSize int32 `protobuf:"varint,2,opt,name=page_size,json=pageSize,proto3" json:"page_size,omitempty"` + PageToken string `protobuf:"bytes,3,opt,name=page_token,json=pageToken,proto3" json:"page_token,omitempty"` + Direction ListKeysetRequest_Direction `protobuf:"varint,4,opt,name=direction,proto3,enum=InternalApi.Projecthub.ListKeysetRequest_Direction" json:"direction,omitempty"` + OwnerId string `protobuf:"bytes,5,opt,name=owner_id,json=ownerId,proto3" json:"owner_id,omitempty"` + RepoUrl string `protobuf:"bytes,6,opt,name=repo_url,json=repoUrl,proto3" json:"repo_url,omitempty"` + CreatedAfter *timestamp.Timestamp `protobuf:"bytes,7,opt,name=created_after,json=createdAfter,proto3" json:"created_after,omitempty"` +} + +func (x *ListKeysetRequest) Reset() { + *x = ListKeysetRequest{} + if protoimpl.UnsafeEnabled { + mi := &file_projecthub_proto_msgTypes[7] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) + } +} + +func (x *ListKeysetRequest) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*ListKeysetRequest) ProtoMessage() {} + +func (x *ListKeysetRequest) ProtoReflect() protoreflect.Message { + mi := &file_projecthub_proto_msgTypes[7] + if protoimpl.UnsafeEnabled && x != nil { + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + if ms.LoadMessageInfo() == nil { + ms.StoreMessageInfo(mi) + } + return ms + } + return mi.MessageOf(x) +} + +// Deprecated: Use ListKeysetRequest.ProtoReflect.Descriptor instead. +func (*ListKeysetRequest) Descriptor() ([]byte, []int) { + return file_projecthub_proto_rawDescGZIP(), []int{7} +} + +func (x *ListKeysetRequest) GetMetadata() *RequestMeta { + if x != nil { + return x.Metadata + } + return nil +} + +func (x *ListKeysetRequest) GetPageSize() int32 { + if x != nil { + return x.PageSize + } + return 0 +} + +func (x *ListKeysetRequest) GetPageToken() string { + if x != nil { + return x.PageToken + } + return "" +} + +func (x *ListKeysetRequest) GetDirection() ListKeysetRequest_Direction { + if x != nil { + return x.Direction + } + return ListKeysetRequest_NEXT +} + +func (x *ListKeysetRequest) GetOwnerId() string { + if x != nil { + return x.OwnerId + } + return "" +} + +func (x *ListKeysetRequest) GetRepoUrl() string { + if x != nil { + return x.RepoUrl + } + return "" +} + +func (x *ListKeysetRequest) GetCreatedAfter() *timestamp.Timestamp { + if x != nil { + return x.CreatedAfter + } + return nil +} + +type ListKeysetResponse struct { + state protoimpl.MessageState + sizeCache protoimpl.SizeCache + unknownFields protoimpl.UnknownFields + + Metadata *ResponseMeta `protobuf:"bytes,1,opt,name=metadata,proto3" json:"metadata,omitempty"` + Projects []*Project `protobuf:"bytes,2,rep,name=projects,proto3" json:"projects,omitempty"` + NextPageToken string `protobuf:"bytes,3,opt,name=next_page_token,json=nextPageToken,proto3" json:"next_page_token,omitempty"` + PreviousPageToken string `protobuf:"bytes,4,opt,name=previous_page_token,json=previousPageToken,proto3" json:"previous_page_token,omitempty"` +} + +func (x *ListKeysetResponse) Reset() { + *x = ListKeysetResponse{} + if protoimpl.UnsafeEnabled { + mi := &file_projecthub_proto_msgTypes[8] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) + } +} + +func (x *ListKeysetResponse) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*ListKeysetResponse) ProtoMessage() {} + +func (x *ListKeysetResponse) ProtoReflect() protoreflect.Message { + mi := &file_projecthub_proto_msgTypes[8] + if protoimpl.UnsafeEnabled && x != nil { + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + if ms.LoadMessageInfo() == nil { + ms.StoreMessageInfo(mi) + } + return ms + } + return mi.MessageOf(x) +} + +// Deprecated: Use ListKeysetResponse.ProtoReflect.Descriptor instead. +func (*ListKeysetResponse) Descriptor() ([]byte, []int) { + return file_projecthub_proto_rawDescGZIP(), []int{8} +} + +func (x *ListKeysetResponse) GetMetadata() *ResponseMeta { + if x != nil { + return x.Metadata + } + return nil +} + +func (x *ListKeysetResponse) GetProjects() []*Project { + if x != nil { + return x.Projects + } + return nil +} + +func (x *ListKeysetResponse) GetNextPageToken() string { + if x != nil { + return x.NextPageToken + } + return "" +} + +func (x *ListKeysetResponse) GetPreviousPageToken() string { + if x != nil { + return x.PreviousPageToken + } + return "" +} + // Describe call request // // - metadata = [required] Request metadata // - id = [required if no name] Project ID // - name = [required if no id] Project name // - detailed = [optional] Return schedulers spec? Default if false. +// - soft_deleted = [optional] Return soft deleted projects? Default is false. type DescribeRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields - Metadata *RequestMeta `protobuf:"bytes,1,opt,name=metadata,proto3" json:"metadata,omitempty"` - Id string `protobuf:"bytes,2,opt,name=id,proto3" json:"id,omitempty"` - Name string `protobuf:"bytes,3,opt,name=name,proto3" json:"name,omitempty"` - Detailed bool `protobuf:"varint,4,opt,name=detailed,proto3" json:"detailed,omitempty"` + Metadata *RequestMeta `protobuf:"bytes,1,opt,name=metadata,proto3" json:"metadata,omitempty"` + Id string `protobuf:"bytes,2,opt,name=id,proto3" json:"id,omitempty"` + Name string `protobuf:"bytes,3,opt,name=name,proto3" json:"name,omitempty"` + Detailed bool `protobuf:"varint,4,opt,name=detailed,proto3" json:"detailed,omitempty"` + SoftDeleted bool `protobuf:"varint,5,opt,name=soft_deleted,json=softDeleted,proto3" json:"soft_deleted,omitempty"` } func (x *DescribeRequest) Reset() { *x = DescribeRequest{} if protoimpl.UnsafeEnabled { - mi := &file_projecthub_proto_msgTypes[7] + mi := &file_projecthub_proto_msgTypes[9] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -948,7 +1177,7 @@ func (x *DescribeRequest) String() string { func (*DescribeRequest) ProtoMessage() {} func (x *DescribeRequest) ProtoReflect() protoreflect.Message { - mi := &file_projecthub_proto_msgTypes[7] + mi := &file_projecthub_proto_msgTypes[9] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -961,7 +1190,7 @@ func (x *DescribeRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DescribeRequest.ProtoReflect.Descriptor instead. func (*DescribeRequest) Descriptor() ([]byte, []int) { - return file_projecthub_proto_rawDescGZIP(), []int{7} + return file_projecthub_proto_rawDescGZIP(), []int{9} } func (x *DescribeRequest) GetMetadata() *RequestMeta { @@ -992,6 +1221,13 @@ func (x *DescribeRequest) GetDetailed() bool { return false } +func (x *DescribeRequest) GetSoftDeleted() bool { + if x != nil { + return x.SoftDeleted + } + return false +} + type DescribeResponse struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -1004,7 +1240,7 @@ type DescribeResponse struct { func (x *DescribeResponse) Reset() { *x = DescribeResponse{} if protoimpl.UnsafeEnabled { - mi := &file_projecthub_proto_msgTypes[8] + mi := &file_projecthub_proto_msgTypes[10] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1017,7 +1253,7 @@ func (x *DescribeResponse) String() string { func (*DescribeResponse) ProtoMessage() {} func (x *DescribeResponse) ProtoReflect() protoreflect.Message { - mi := &file_projecthub_proto_msgTypes[8] + mi := &file_projecthub_proto_msgTypes[10] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1030,7 +1266,7 @@ func (x *DescribeResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use DescribeResponse.ProtoReflect.Descriptor instead. func (*DescribeResponse) Descriptor() ([]byte, []int) { - return file_projecthub_proto_rawDescGZIP(), []int{8} + return file_projecthub_proto_rawDescGZIP(), []int{10} } func (x *DescribeResponse) GetMetadata() *ResponseMeta { @@ -1047,19 +1283,25 @@ func (x *DescribeResponse) GetProject() *Project { return nil } +// DescribeMany call request +// +// - metadata = [required] Request metadata +// - ids = [required] List of project IDs +// - soft_deleted = [optional] Return soft deleted projects? Default is false. type DescribeManyRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields - Metadata *RequestMeta `protobuf:"bytes,1,opt,name=metadata,proto3" json:"metadata,omitempty"` - Ids []string `protobuf:"bytes,2,rep,name=ids,proto3" json:"ids,omitempty"` + Metadata *RequestMeta `protobuf:"bytes,1,opt,name=metadata,proto3" json:"metadata,omitempty"` + Ids []string `protobuf:"bytes,2,rep,name=ids,proto3" json:"ids,omitempty"` + SoftDeleted bool `protobuf:"varint,3,opt,name=soft_deleted,json=softDeleted,proto3" json:"soft_deleted,omitempty"` } func (x *DescribeManyRequest) Reset() { *x = DescribeManyRequest{} if protoimpl.UnsafeEnabled { - mi := &file_projecthub_proto_msgTypes[9] + mi := &file_projecthub_proto_msgTypes[11] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1072,7 +1314,7 @@ func (x *DescribeManyRequest) String() string { func (*DescribeManyRequest) ProtoMessage() {} func (x *DescribeManyRequest) ProtoReflect() protoreflect.Message { - mi := &file_projecthub_proto_msgTypes[9] + mi := &file_projecthub_proto_msgTypes[11] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1085,7 +1327,7 @@ func (x *DescribeManyRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DescribeManyRequest.ProtoReflect.Descriptor instead. func (*DescribeManyRequest) Descriptor() ([]byte, []int) { - return file_projecthub_proto_rawDescGZIP(), []int{9} + return file_projecthub_proto_rawDescGZIP(), []int{11} } func (x *DescribeManyRequest) GetMetadata() *RequestMeta { @@ -1102,6 +1344,13 @@ func (x *DescribeManyRequest) GetIds() []string { return nil } +func (x *DescribeManyRequest) GetSoftDeleted() bool { + if x != nil { + return x.SoftDeleted + } + return false +} + type DescribeManyResponse struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -1114,7 +1363,7 @@ type DescribeManyResponse struct { func (x *DescribeManyResponse) Reset() { *x = DescribeManyResponse{} if protoimpl.UnsafeEnabled { - mi := &file_projecthub_proto_msgTypes[10] + mi := &file_projecthub_proto_msgTypes[12] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1127,7 +1376,7 @@ func (x *DescribeManyResponse) String() string { func (*DescribeManyResponse) ProtoMessage() {} func (x *DescribeManyResponse) ProtoReflect() protoreflect.Message { - mi := &file_projecthub_proto_msgTypes[10] + mi := &file_projecthub_proto_msgTypes[12] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1140,7 +1389,7 @@ func (x *DescribeManyResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use DescribeManyResponse.ProtoReflect.Descriptor instead. func (*DescribeManyResponse) Descriptor() ([]byte, []int) { - return file_projecthub_proto_rawDescGZIP(), []int{10} + return file_projecthub_proto_rawDescGZIP(), []int{12} } func (x *DescribeManyResponse) GetMetadata() *ResponseMeta { @@ -1162,14 +1411,15 @@ type CreateRequest struct { sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields - Metadata *RequestMeta `protobuf:"bytes,1,opt,name=metadata,proto3" json:"metadata,omitempty"` - Project *Project `protobuf:"bytes,2,opt,name=project,proto3" json:"project,omitempty"` + Metadata *RequestMeta `protobuf:"bytes,1,opt,name=metadata,proto3" json:"metadata,omitempty"` + Project *Project `protobuf:"bytes,2,opt,name=project,proto3" json:"project,omitempty"` + SkipOnboarding bool `protobuf:"varint,3,opt,name=skip_onboarding,json=skipOnboarding,proto3" json:"skip_onboarding,omitempty"` } func (x *CreateRequest) Reset() { *x = CreateRequest{} if protoimpl.UnsafeEnabled { - mi := &file_projecthub_proto_msgTypes[11] + mi := &file_projecthub_proto_msgTypes[13] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1182,7 +1432,7 @@ func (x *CreateRequest) String() string { func (*CreateRequest) ProtoMessage() {} func (x *CreateRequest) ProtoReflect() protoreflect.Message { - mi := &file_projecthub_proto_msgTypes[11] + mi := &file_projecthub_proto_msgTypes[13] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1195,7 +1445,7 @@ func (x *CreateRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use CreateRequest.ProtoReflect.Descriptor instead. func (*CreateRequest) Descriptor() ([]byte, []int) { - return file_projecthub_proto_rawDescGZIP(), []int{11} + return file_projecthub_proto_rawDescGZIP(), []int{13} } func (x *CreateRequest) GetMetadata() *RequestMeta { @@ -1212,6 +1462,13 @@ func (x *CreateRequest) GetProject() *Project { return nil } +func (x *CreateRequest) GetSkipOnboarding() bool { + if x != nil { + return x.SkipOnboarding + } + return false +} + type CreateResponse struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -1224,7 +1481,7 @@ type CreateResponse struct { func (x *CreateResponse) Reset() { *x = CreateResponse{} if protoimpl.UnsafeEnabled { - mi := &file_projecthub_proto_msgTypes[12] + mi := &file_projecthub_proto_msgTypes[14] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1237,7 +1494,7 @@ func (x *CreateResponse) String() string { func (*CreateResponse) ProtoMessage() {} func (x *CreateResponse) ProtoReflect() protoreflect.Message { - mi := &file_projecthub_proto_msgTypes[12] + mi := &file_projecthub_proto_msgTypes[14] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1250,7 +1507,7 @@ func (x *CreateResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use CreateResponse.ProtoReflect.Descriptor instead. func (*CreateResponse) Descriptor() ([]byte, []int) { - return file_projecthub_proto_rawDescGZIP(), []int{12} + return file_projecthub_proto_rawDescGZIP(), []int{14} } func (x *CreateResponse) GetMetadata() *ResponseMeta { @@ -1272,14 +1529,15 @@ type UpdateRequest struct { sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields - Metadata *RequestMeta `protobuf:"bytes,1,opt,name=metadata,proto3" json:"metadata,omitempty"` - Project *Project `protobuf:"bytes,2,opt,name=project,proto3" json:"project,omitempty"` + Metadata *RequestMeta `protobuf:"bytes,1,opt,name=metadata,proto3" json:"metadata,omitempty"` + Project *Project `protobuf:"bytes,2,opt,name=project,proto3" json:"project,omitempty"` + OmitSchedulersAndTasks bool `protobuf:"varint,3,opt,name=omit_schedulers_and_tasks,json=omitSchedulersAndTasks,proto3" json:"omit_schedulers_and_tasks,omitempty"` } func (x *UpdateRequest) Reset() { *x = UpdateRequest{} if protoimpl.UnsafeEnabled { - mi := &file_projecthub_proto_msgTypes[13] + mi := &file_projecthub_proto_msgTypes[15] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1292,7 +1550,7 @@ func (x *UpdateRequest) String() string { func (*UpdateRequest) ProtoMessage() {} func (x *UpdateRequest) ProtoReflect() protoreflect.Message { - mi := &file_projecthub_proto_msgTypes[13] + mi := &file_projecthub_proto_msgTypes[15] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1305,7 +1563,7 @@ func (x *UpdateRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use UpdateRequest.ProtoReflect.Descriptor instead. func (*UpdateRequest) Descriptor() ([]byte, []int) { - return file_projecthub_proto_rawDescGZIP(), []int{13} + return file_projecthub_proto_rawDescGZIP(), []int{15} } func (x *UpdateRequest) GetMetadata() *RequestMeta { @@ -1322,6 +1580,13 @@ func (x *UpdateRequest) GetProject() *Project { return nil } +func (x *UpdateRequest) GetOmitSchedulersAndTasks() bool { + if x != nil { + return x.OmitSchedulersAndTasks + } + return false +} + type UpdateResponse struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -1334,7 +1599,7 @@ type UpdateResponse struct { func (x *UpdateResponse) Reset() { *x = UpdateResponse{} if protoimpl.UnsafeEnabled { - mi := &file_projecthub_proto_msgTypes[14] + mi := &file_projecthub_proto_msgTypes[16] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1347,7 +1612,7 @@ func (x *UpdateResponse) String() string { func (*UpdateResponse) ProtoMessage() {} func (x *UpdateResponse) ProtoReflect() protoreflect.Message { - mi := &file_projecthub_proto_msgTypes[14] + mi := &file_projecthub_proto_msgTypes[16] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1360,7 +1625,7 @@ func (x *UpdateResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use UpdateResponse.ProtoReflect.Descriptor instead. func (*UpdateResponse) Descriptor() ([]byte, []int) { - return file_projecthub_proto_rawDescGZIP(), []int{14} + return file_projecthub_proto_rawDescGZIP(), []int{16} } func (x *UpdateResponse) GetMetadata() *ResponseMeta { @@ -1390,7 +1655,7 @@ type DestroyRequest struct { func (x *DestroyRequest) Reset() { *x = DestroyRequest{} if protoimpl.UnsafeEnabled { - mi := &file_projecthub_proto_msgTypes[15] + mi := &file_projecthub_proto_msgTypes[17] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1403,7 +1668,7 @@ func (x *DestroyRequest) String() string { func (*DestroyRequest) ProtoMessage() {} func (x *DestroyRequest) ProtoReflect() protoreflect.Message { - mi := &file_projecthub_proto_msgTypes[15] + mi := &file_projecthub_proto_msgTypes[17] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1416,7 +1681,7 @@ func (x *DestroyRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DestroyRequest.ProtoReflect.Descriptor instead. func (*DestroyRequest) Descriptor() ([]byte, []int) { - return file_projecthub_proto_rawDescGZIP(), []int{15} + return file_projecthub_proto_rawDescGZIP(), []int{17} } func (x *DestroyRequest) GetMetadata() *RequestMeta { @@ -1451,7 +1716,7 @@ type DestroyResponse struct { func (x *DestroyResponse) Reset() { *x = DestroyResponse{} if protoimpl.UnsafeEnabled { - mi := &file_projecthub_proto_msgTypes[16] + mi := &file_projecthub_proto_msgTypes[18] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1464,7 +1729,7 @@ func (x *DestroyResponse) String() string { func (*DestroyResponse) ProtoMessage() {} func (x *DestroyResponse) ProtoReflect() protoreflect.Message { - mi := &file_projecthub_proto_msgTypes[16] + mi := &file_projecthub_proto_msgTypes[18] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1477,7 +1742,7 @@ func (x *DestroyResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use DestroyResponse.ProtoReflect.Descriptor instead. func (*DestroyResponse) Descriptor() ([]byte, []int) { - return file_projecthub_proto_rawDescGZIP(), []int{16} + return file_projecthub_proto_rawDescGZIP(), []int{18} } func (x *DestroyResponse) GetMetadata() *ResponseMeta { @@ -1487,10 +1752,7 @@ func (x *DestroyResponse) GetMetadata() *ResponseMeta { return nil } -// Users call request -// -// - id = [required] project uuid. -type UsersRequest struct { +type RestoreRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields @@ -1499,23 +1761,23 @@ type UsersRequest struct { Id string `protobuf:"bytes,2,opt,name=id,proto3" json:"id,omitempty"` } -func (x *UsersRequest) Reset() { - *x = UsersRequest{} +func (x *RestoreRequest) Reset() { + *x = RestoreRequest{} if protoimpl.UnsafeEnabled { - mi := &file_projecthub_proto_msgTypes[17] + mi := &file_projecthub_proto_msgTypes[19] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } -func (x *UsersRequest) String() string { +func (x *RestoreRequest) String() string { return protoimpl.X.MessageStringOf(x) } -func (*UsersRequest) ProtoMessage() {} +func (*RestoreRequest) ProtoMessage() {} -func (x *UsersRequest) ProtoReflect() protoreflect.Message { - mi := &file_projecthub_proto_msgTypes[17] +func (x *RestoreRequest) ProtoReflect() protoreflect.Message { + mi := &file_projecthub_proto_msgTypes[19] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1526,9 +1788,114 @@ func (x *UsersRequest) ProtoReflect() protoreflect.Message { return mi.MessageOf(x) } -// Deprecated: Use UsersRequest.ProtoReflect.Descriptor instead. +// Deprecated: Use RestoreRequest.ProtoReflect.Descriptor instead. +func (*RestoreRequest) Descriptor() ([]byte, []int) { + return file_projecthub_proto_rawDescGZIP(), []int{19} +} + +func (x *RestoreRequest) GetMetadata() *RequestMeta { + if x != nil { + return x.Metadata + } + return nil +} + +func (x *RestoreRequest) GetId() string { + if x != nil { + return x.Id + } + return "" +} + +type RestoreResponse struct { + state protoimpl.MessageState + sizeCache protoimpl.SizeCache + unknownFields protoimpl.UnknownFields + + Metadata *ResponseMeta `protobuf:"bytes,1,opt,name=metadata,proto3" json:"metadata,omitempty"` +} + +func (x *RestoreResponse) Reset() { + *x = RestoreResponse{} + if protoimpl.UnsafeEnabled { + mi := &file_projecthub_proto_msgTypes[20] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) + } +} + +func (x *RestoreResponse) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*RestoreResponse) ProtoMessage() {} + +func (x *RestoreResponse) ProtoReflect() protoreflect.Message { + mi := &file_projecthub_proto_msgTypes[20] + if protoimpl.UnsafeEnabled && x != nil { + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + if ms.LoadMessageInfo() == nil { + ms.StoreMessageInfo(mi) + } + return ms + } + return mi.MessageOf(x) +} + +// Deprecated: Use RestoreResponse.ProtoReflect.Descriptor instead. +func (*RestoreResponse) Descriptor() ([]byte, []int) { + return file_projecthub_proto_rawDescGZIP(), []int{20} +} + +func (x *RestoreResponse) GetMetadata() *ResponseMeta { + if x != nil { + return x.Metadata + } + return nil +} + +// Users call request +// +// - id = [required] project uuid. +type UsersRequest struct { + state protoimpl.MessageState + sizeCache protoimpl.SizeCache + unknownFields protoimpl.UnknownFields + + Metadata *RequestMeta `protobuf:"bytes,1,opt,name=metadata,proto3" json:"metadata,omitempty"` + Id string `protobuf:"bytes,2,opt,name=id,proto3" json:"id,omitempty"` +} + +func (x *UsersRequest) Reset() { + *x = UsersRequest{} + if protoimpl.UnsafeEnabled { + mi := &file_projecthub_proto_msgTypes[21] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) + } +} + +func (x *UsersRequest) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*UsersRequest) ProtoMessage() {} + +func (x *UsersRequest) ProtoReflect() protoreflect.Message { + mi := &file_projecthub_proto_msgTypes[21] + if protoimpl.UnsafeEnabled && x != nil { + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + if ms.LoadMessageInfo() == nil { + ms.StoreMessageInfo(mi) + } + return ms + } + return mi.MessageOf(x) +} + +// Deprecated: Use UsersRequest.ProtoReflect.Descriptor instead. func (*UsersRequest) Descriptor() ([]byte, []int) { - return file_projecthub_proto_rawDescGZIP(), []int{17} + return file_projecthub_proto_rawDescGZIP(), []int{21} } func (x *UsersRequest) GetMetadata() *RequestMeta { @@ -1560,7 +1927,7 @@ type UsersResponse struct { func (x *UsersResponse) Reset() { *x = UsersResponse{} if protoimpl.UnsafeEnabled { - mi := &file_projecthub_proto_msgTypes[18] + mi := &file_projecthub_proto_msgTypes[22] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1573,7 +1940,7 @@ func (x *UsersResponse) String() string { func (*UsersResponse) ProtoMessage() {} func (x *UsersResponse) ProtoReflect() protoreflect.Message { - mi := &file_projecthub_proto_msgTypes[18] + mi := &file_projecthub_proto_msgTypes[22] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1586,7 +1953,7 @@ func (x *UsersResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use UsersResponse.ProtoReflect.Descriptor instead. func (*UsersResponse) Descriptor() ([]byte, []int) { - return file_projecthub_proto_rawDescGZIP(), []int{18} + return file_projecthub_proto_rawDescGZIP(), []int{22} } func (x *UsersResponse) GetMetadata() *ResponseMeta { @@ -1618,7 +1985,7 @@ type CheckDeployKeyRequest struct { func (x *CheckDeployKeyRequest) Reset() { *x = CheckDeployKeyRequest{} if protoimpl.UnsafeEnabled { - mi := &file_projecthub_proto_msgTypes[19] + mi := &file_projecthub_proto_msgTypes[23] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1631,7 +1998,7 @@ func (x *CheckDeployKeyRequest) String() string { func (*CheckDeployKeyRequest) ProtoMessage() {} func (x *CheckDeployKeyRequest) ProtoReflect() protoreflect.Message { - mi := &file_projecthub_proto_msgTypes[19] + mi := &file_projecthub_proto_msgTypes[23] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1644,7 +2011,7 @@ func (x *CheckDeployKeyRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use CheckDeployKeyRequest.ProtoReflect.Descriptor instead. func (*CheckDeployKeyRequest) Descriptor() ([]byte, []int) { - return file_projecthub_proto_rawDescGZIP(), []int{19} + return file_projecthub_proto_rawDescGZIP(), []int{23} } func (x *CheckDeployKeyRequest) GetMetadata() *RequestMeta { @@ -1674,7 +2041,7 @@ type CheckDeployKeyResponse struct { func (x *CheckDeployKeyResponse) Reset() { *x = CheckDeployKeyResponse{} if protoimpl.UnsafeEnabled { - mi := &file_projecthub_proto_msgTypes[20] + mi := &file_projecthub_proto_msgTypes[24] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1687,7 +2054,7 @@ func (x *CheckDeployKeyResponse) String() string { func (*CheckDeployKeyResponse) ProtoMessage() {} func (x *CheckDeployKeyResponse) ProtoReflect() protoreflect.Message { - mi := &file_projecthub_proto_msgTypes[20] + mi := &file_projecthub_proto_msgTypes[24] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1700,7 +2067,7 @@ func (x *CheckDeployKeyResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use CheckDeployKeyResponse.ProtoReflect.Descriptor instead. func (*CheckDeployKeyResponse) Descriptor() ([]byte, []int) { - return file_projecthub_proto_rawDescGZIP(), []int{20} + return file_projecthub_proto_rawDescGZIP(), []int{24} } func (x *CheckDeployKeyResponse) GetMetadata() *ResponseMeta { @@ -1732,7 +2099,7 @@ type RegenerateDeployKeyRequest struct { func (x *RegenerateDeployKeyRequest) Reset() { *x = RegenerateDeployKeyRequest{} if protoimpl.UnsafeEnabled { - mi := &file_projecthub_proto_msgTypes[21] + mi := &file_projecthub_proto_msgTypes[25] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1745,7 +2112,7 @@ func (x *RegenerateDeployKeyRequest) String() string { func (*RegenerateDeployKeyRequest) ProtoMessage() {} func (x *RegenerateDeployKeyRequest) ProtoReflect() protoreflect.Message { - mi := &file_projecthub_proto_msgTypes[21] + mi := &file_projecthub_proto_msgTypes[25] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1758,7 +2125,7 @@ func (x *RegenerateDeployKeyRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use RegenerateDeployKeyRequest.ProtoReflect.Descriptor instead. func (*RegenerateDeployKeyRequest) Descriptor() ([]byte, []int) { - return file_projecthub_proto_rawDescGZIP(), []int{21} + return file_projecthub_proto_rawDescGZIP(), []int{25} } func (x *RegenerateDeployKeyRequest) GetMetadata() *RequestMeta { @@ -1788,7 +2155,7 @@ type RegenerateDeployKeyResponse struct { func (x *RegenerateDeployKeyResponse) Reset() { *x = RegenerateDeployKeyResponse{} if protoimpl.UnsafeEnabled { - mi := &file_projecthub_proto_msgTypes[22] + mi := &file_projecthub_proto_msgTypes[26] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1801,7 +2168,7 @@ func (x *RegenerateDeployKeyResponse) String() string { func (*RegenerateDeployKeyResponse) ProtoMessage() {} func (x *RegenerateDeployKeyResponse) ProtoReflect() protoreflect.Message { - mi := &file_projecthub_proto_msgTypes[22] + mi := &file_projecthub_proto_msgTypes[26] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1814,7 +2181,7 @@ func (x *RegenerateDeployKeyResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use RegenerateDeployKeyResponse.ProtoReflect.Descriptor instead. func (*RegenerateDeployKeyResponse) Descriptor() ([]byte, []int) { - return file_projecthub_proto_rawDescGZIP(), []int{22} + return file_projecthub_proto_rawDescGZIP(), []int{26} } func (x *RegenerateDeployKeyResponse) GetMetadata() *ResponseMeta { @@ -1846,7 +2213,7 @@ type CheckWebhookRequest struct { func (x *CheckWebhookRequest) Reset() { *x = CheckWebhookRequest{} if protoimpl.UnsafeEnabled { - mi := &file_projecthub_proto_msgTypes[23] + mi := &file_projecthub_proto_msgTypes[27] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1859,7 +2226,7 @@ func (x *CheckWebhookRequest) String() string { func (*CheckWebhookRequest) ProtoMessage() {} func (x *CheckWebhookRequest) ProtoReflect() protoreflect.Message { - mi := &file_projecthub_proto_msgTypes[23] + mi := &file_projecthub_proto_msgTypes[27] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1872,7 +2239,7 @@ func (x *CheckWebhookRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use CheckWebhookRequest.ProtoReflect.Descriptor instead. func (*CheckWebhookRequest) Descriptor() ([]byte, []int) { - return file_projecthub_proto_rawDescGZIP(), []int{23} + return file_projecthub_proto_rawDescGZIP(), []int{27} } func (x *CheckWebhookRequest) GetMetadata() *RequestMeta { @@ -1902,7 +2269,7 @@ type CheckWebhookResponse struct { func (x *CheckWebhookResponse) Reset() { *x = CheckWebhookResponse{} if protoimpl.UnsafeEnabled { - mi := &file_projecthub_proto_msgTypes[24] + mi := &file_projecthub_proto_msgTypes[28] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1915,7 +2282,7 @@ func (x *CheckWebhookResponse) String() string { func (*CheckWebhookResponse) ProtoMessage() {} func (x *CheckWebhookResponse) ProtoReflect() protoreflect.Message { - mi := &file_projecthub_proto_msgTypes[24] + mi := &file_projecthub_proto_msgTypes[28] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1928,7 +2295,7 @@ func (x *CheckWebhookResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use CheckWebhookResponse.ProtoReflect.Descriptor instead. func (*CheckWebhookResponse) Descriptor() ([]byte, []int) { - return file_projecthub_proto_rawDescGZIP(), []int{24} + return file_projecthub_proto_rawDescGZIP(), []int{28} } func (x *CheckWebhookResponse) GetMetadata() *ResponseMeta { @@ -1960,7 +2327,7 @@ type RegenerateWebhookRequest struct { func (x *RegenerateWebhookRequest) Reset() { *x = RegenerateWebhookRequest{} if protoimpl.UnsafeEnabled { - mi := &file_projecthub_proto_msgTypes[25] + mi := &file_projecthub_proto_msgTypes[29] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1973,7 +2340,7 @@ func (x *RegenerateWebhookRequest) String() string { func (*RegenerateWebhookRequest) ProtoMessage() {} func (x *RegenerateWebhookRequest) ProtoReflect() protoreflect.Message { - mi := &file_projecthub_proto_msgTypes[25] + mi := &file_projecthub_proto_msgTypes[29] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1986,7 +2353,7 @@ func (x *RegenerateWebhookRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use RegenerateWebhookRequest.ProtoReflect.Descriptor instead. func (*RegenerateWebhookRequest) Descriptor() ([]byte, []int) { - return file_projecthub_proto_rawDescGZIP(), []int{25} + return file_projecthub_proto_rawDescGZIP(), []int{29} } func (x *RegenerateWebhookRequest) GetMetadata() *RequestMeta { @@ -2016,7 +2383,7 @@ type RegenerateWebhookResponse struct { func (x *RegenerateWebhookResponse) Reset() { *x = RegenerateWebhookResponse{} if protoimpl.UnsafeEnabled { - mi := &file_projecthub_proto_msgTypes[26] + mi := &file_projecthub_proto_msgTypes[30] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2029,7 +2396,7 @@ func (x *RegenerateWebhookResponse) String() string { func (*RegenerateWebhookResponse) ProtoMessage() {} func (x *RegenerateWebhookResponse) ProtoReflect() protoreflect.Message { - mi := &file_projecthub_proto_msgTypes[26] + mi := &file_projecthub_proto_msgTypes[30] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2042,7 +2409,7 @@ func (x *RegenerateWebhookResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use RegenerateWebhookResponse.ProtoReflect.Descriptor instead. func (*RegenerateWebhookResponse) Descriptor() ([]byte, []int) { - return file_projecthub_proto_rawDescGZIP(), []int{26} + return file_projecthub_proto_rawDescGZIP(), []int{30} } func (x *RegenerateWebhookResponse) GetMetadata() *ResponseMeta { @@ -2070,7 +2437,7 @@ type Webhook struct { func (x *Webhook) Reset() { *x = Webhook{} if protoimpl.UnsafeEnabled { - mi := &file_projecthub_proto_msgTypes[27] + mi := &file_projecthub_proto_msgTypes[31] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2083,7 +2450,7 @@ func (x *Webhook) String() string { func (*Webhook) ProtoMessage() {} func (x *Webhook) ProtoReflect() protoreflect.Message { - mi := &file_projecthub_proto_msgTypes[27] + mi := &file_projecthub_proto_msgTypes[31] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2096,7 +2463,7 @@ func (x *Webhook) ProtoReflect() protoreflect.Message { // Deprecated: Use Webhook.ProtoReflect.Descriptor instead. func (*Webhook) Descriptor() ([]byte, []int) { - return file_projecthub_proto_rawDescGZIP(), []int{27} + return file_projecthub_proto_rawDescGZIP(), []int{31} } func (x *Webhook) GetUrl() string { @@ -2123,7 +2490,7 @@ type ChangeProjectOwnerRequest struct { func (x *ChangeProjectOwnerRequest) Reset() { *x = ChangeProjectOwnerRequest{} if protoimpl.UnsafeEnabled { - mi := &file_projecthub_proto_msgTypes[28] + mi := &file_projecthub_proto_msgTypes[32] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2136,7 +2503,7 @@ func (x *ChangeProjectOwnerRequest) String() string { func (*ChangeProjectOwnerRequest) ProtoMessage() {} func (x *ChangeProjectOwnerRequest) ProtoReflect() protoreflect.Message { - mi := &file_projecthub_proto_msgTypes[28] + mi := &file_projecthub_proto_msgTypes[32] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2149,7 +2516,7 @@ func (x *ChangeProjectOwnerRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ChangeProjectOwnerRequest.ProtoReflect.Descriptor instead. func (*ChangeProjectOwnerRequest) Descriptor() ([]byte, []int) { - return file_projecthub_proto_rawDescGZIP(), []int{28} + return file_projecthub_proto_rawDescGZIP(), []int{32} } func (x *ChangeProjectOwnerRequest) GetMetadata() *RequestMeta { @@ -2185,7 +2552,7 @@ type ChangeProjectOwnerResponse struct { func (x *ChangeProjectOwnerResponse) Reset() { *x = ChangeProjectOwnerResponse{} if protoimpl.UnsafeEnabled { - mi := &file_projecthub_proto_msgTypes[29] + mi := &file_projecthub_proto_msgTypes[33] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2198,7 +2565,7 @@ func (x *ChangeProjectOwnerResponse) String() string { func (*ChangeProjectOwnerResponse) ProtoMessage() {} func (x *ChangeProjectOwnerResponse) ProtoReflect() protoreflect.Message { - mi := &file_projecthub_proto_msgTypes[29] + mi := &file_projecthub_proto_msgTypes[33] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2211,7 +2578,7 @@ func (x *ChangeProjectOwnerResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use ChangeProjectOwnerResponse.ProtoReflect.Descriptor instead. func (*ChangeProjectOwnerResponse) Descriptor() ([]byte, []int) { - return file_projecthub_proto_rawDescGZIP(), []int{29} + return file_projecthub_proto_rawDescGZIP(), []int{33} } func (x *ChangeProjectOwnerResponse) GetMetadata() *ResponseMeta { @@ -2234,7 +2601,7 @@ type ForkAndCreateRequest struct { func (x *ForkAndCreateRequest) Reset() { *x = ForkAndCreateRequest{} if protoimpl.UnsafeEnabled { - mi := &file_projecthub_proto_msgTypes[30] + mi := &file_projecthub_proto_msgTypes[34] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2247,7 +2614,7 @@ func (x *ForkAndCreateRequest) String() string { func (*ForkAndCreateRequest) ProtoMessage() {} func (x *ForkAndCreateRequest) ProtoReflect() protoreflect.Message { - mi := &file_projecthub_proto_msgTypes[30] + mi := &file_projecthub_proto_msgTypes[34] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2260,7 +2627,7 @@ func (x *ForkAndCreateRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ForkAndCreateRequest.ProtoReflect.Descriptor instead. func (*ForkAndCreateRequest) Descriptor() ([]byte, []int) { - return file_projecthub_proto_rawDescGZIP(), []int{30} + return file_projecthub_proto_rawDescGZIP(), []int{34} } func (x *ForkAndCreateRequest) GetMetadata() *RequestMeta { @@ -2290,7 +2657,7 @@ type ForkAndCreateResponse struct { func (x *ForkAndCreateResponse) Reset() { *x = ForkAndCreateResponse{} if protoimpl.UnsafeEnabled { - mi := &file_projecthub_proto_msgTypes[31] + mi := &file_projecthub_proto_msgTypes[35] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2303,7 +2670,7 @@ func (x *ForkAndCreateResponse) String() string { func (*ForkAndCreateResponse) ProtoMessage() {} func (x *ForkAndCreateResponse) ProtoReflect() protoreflect.Message { - mi := &file_projecthub_proto_msgTypes[31] + mi := &file_projecthub_proto_msgTypes[35] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2316,7 +2683,7 @@ func (x *ForkAndCreateResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use ForkAndCreateResponse.ProtoReflect.Descriptor instead. func (*ForkAndCreateResponse) Descriptor() ([]byte, []int) { - return file_projecthub_proto_rawDescGZIP(), []int{31} + return file_projecthub_proto_rawDescGZIP(), []int{35} } func (x *ForkAndCreateResponse) GetMetadata() *ResponseMeta { @@ -2348,7 +2715,7 @@ type GithubAppSwitchRequest struct { func (x *GithubAppSwitchRequest) Reset() { *x = GithubAppSwitchRequest{} if protoimpl.UnsafeEnabled { - mi := &file_projecthub_proto_msgTypes[32] + mi := &file_projecthub_proto_msgTypes[36] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2361,7 +2728,7 @@ func (x *GithubAppSwitchRequest) String() string { func (*GithubAppSwitchRequest) ProtoMessage() {} func (x *GithubAppSwitchRequest) ProtoReflect() protoreflect.Message { - mi := &file_projecthub_proto_msgTypes[32] + mi := &file_projecthub_proto_msgTypes[36] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2374,7 +2741,7 @@ func (x *GithubAppSwitchRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GithubAppSwitchRequest.ProtoReflect.Descriptor instead. func (*GithubAppSwitchRequest) Descriptor() ([]byte, []int) { - return file_projecthub_proto_rawDescGZIP(), []int{32} + return file_projecthub_proto_rawDescGZIP(), []int{36} } func (x *GithubAppSwitchRequest) GetMetadata() *RequestMeta { @@ -2403,7 +2770,7 @@ type GithubAppSwitchResponse struct { func (x *GithubAppSwitchResponse) Reset() { *x = GithubAppSwitchResponse{} if protoimpl.UnsafeEnabled { - mi := &file_projecthub_proto_msgTypes[33] + mi := &file_projecthub_proto_msgTypes[37] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2416,7 +2783,7 @@ func (x *GithubAppSwitchResponse) String() string { func (*GithubAppSwitchResponse) ProtoMessage() {} func (x *GithubAppSwitchResponse) ProtoReflect() protoreflect.Message { - mi := &file_projecthub_proto_msgTypes[33] + mi := &file_projecthub_proto_msgTypes[37] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2429,7 +2796,7 @@ func (x *GithubAppSwitchResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use GithubAppSwitchResponse.ProtoReflect.Descriptor instead. func (*GithubAppSwitchResponse) Descriptor() ([]byte, []int) { - return file_projecthub_proto_rawDescGZIP(), []int{33} + return file_projecthub_proto_rawDescGZIP(), []int{37} } func (x *GithubAppSwitchResponse) GetMetadata() *ResponseMeta { @@ -2439,35 +2806,35 @@ func (x *GithubAppSwitchResponse) GetMetadata() *ResponseMeta { return nil } -// Published with routing key: 'created'. -// All fields are required. -type ProjectCreated struct { +// FinishOnboarding call request +// +// - id = [required] project uuid. +type FinishOnboardingRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields - ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"` - Timestamp *timestamp.Timestamp `protobuf:"bytes,2,opt,name=timestamp,proto3" json:"timestamp,omitempty"` - OrgId string `protobuf:"bytes,3,opt,name=org_id,json=orgId,proto3" json:"org_id,omitempty"` + Metadata *RequestMeta `protobuf:"bytes,1,opt,name=metadata,proto3" json:"metadata,omitempty"` + Id string `protobuf:"bytes,2,opt,name=id,proto3" json:"id,omitempty"` } -func (x *ProjectCreated) Reset() { - *x = ProjectCreated{} +func (x *FinishOnboardingRequest) Reset() { + *x = FinishOnboardingRequest{} if protoimpl.UnsafeEnabled { - mi := &file_projecthub_proto_msgTypes[34] + mi := &file_projecthub_proto_msgTypes[38] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } -func (x *ProjectCreated) String() string { +func (x *FinishOnboardingRequest) String() string { return protoimpl.X.MessageStringOf(x) } -func (*ProjectCreated) ProtoMessage() {} +func (*FinishOnboardingRequest) ProtoMessage() {} -func (x *ProjectCreated) ProtoReflect() protoreflect.Message { - mi := &file_projecthub_proto_msgTypes[34] +func (x *FinishOnboardingRequest) ProtoReflect() protoreflect.Message { + mi := &file_projecthub_proto_msgTypes[38] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2478,61 +2845,51 @@ func (x *ProjectCreated) ProtoReflect() protoreflect.Message { return mi.MessageOf(x) } -// Deprecated: Use ProjectCreated.ProtoReflect.Descriptor instead. -func (*ProjectCreated) Descriptor() ([]byte, []int) { - return file_projecthub_proto_rawDescGZIP(), []int{34} -} - -func (x *ProjectCreated) GetProjectId() string { - if x != nil { - return x.ProjectId - } - return "" +// Deprecated: Use FinishOnboardingRequest.ProtoReflect.Descriptor instead. +func (*FinishOnboardingRequest) Descriptor() ([]byte, []int) { + return file_projecthub_proto_rawDescGZIP(), []int{38} } -func (x *ProjectCreated) GetTimestamp() *timestamp.Timestamp { +func (x *FinishOnboardingRequest) GetMetadata() *RequestMeta { if x != nil { - return x.Timestamp + return x.Metadata } return nil } -func (x *ProjectCreated) GetOrgId() string { +func (x *FinishOnboardingRequest) GetId() string { if x != nil { - return x.OrgId + return x.Id } return "" } -// Published with routing key: 'deleted'. -// All fields are required. -type ProjectDeleted struct { +// FinishOnboarding call response +type FinishOnboardingResponse struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields - ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"` - Timestamp *timestamp.Timestamp `protobuf:"bytes,2,opt,name=timestamp,proto3" json:"timestamp,omitempty"` - OrgId string `protobuf:"bytes,3,opt,name=org_id,json=orgId,proto3" json:"org_id,omitempty"` + Metadata *ResponseMeta `protobuf:"bytes,1,opt,name=metadata,proto3" json:"metadata,omitempty"` } -func (x *ProjectDeleted) Reset() { - *x = ProjectDeleted{} +func (x *FinishOnboardingResponse) Reset() { + *x = FinishOnboardingResponse{} if protoimpl.UnsafeEnabled { - mi := &file_projecthub_proto_msgTypes[35] + mi := &file_projecthub_proto_msgTypes[39] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } -func (x *ProjectDeleted) String() string { +func (x *FinishOnboardingResponse) String() string { return protoimpl.X.MessageStringOf(x) } -func (*ProjectDeleted) ProtoMessage() {} +func (*FinishOnboardingResponse) ProtoMessage() {} -func (x *ProjectDeleted) ProtoReflect() protoreflect.Message { - mi := &file_projecthub_proto_msgTypes[35] +func (x *FinishOnboardingResponse) ProtoReflect() protoreflect.Message { + mi := &file_projecthub_proto_msgTypes[39] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2543,26 +2900,323 @@ func (x *ProjectDeleted) ProtoReflect() protoreflect.Message { return mi.MessageOf(x) } -// Deprecated: Use ProjectDeleted.ProtoReflect.Descriptor instead. -func (*ProjectDeleted) Descriptor() ([]byte, []int) { - return file_projecthub_proto_rawDescGZIP(), []int{35} -} - -func (x *ProjectDeleted) GetProjectId() string { - if x != nil { - return x.ProjectId - } - return "" +// Deprecated: Use FinishOnboardingResponse.ProtoReflect.Descriptor instead. +func (*FinishOnboardingResponse) Descriptor() ([]byte, []int) { + return file_projecthub_proto_rawDescGZIP(), []int{39} } -func (x *ProjectDeleted) GetTimestamp() *timestamp.Timestamp { +func (x *FinishOnboardingResponse) GetMetadata() *ResponseMeta { if x != nil { - return x.Timestamp + return x.Metadata } return nil } -func (x *ProjectDeleted) GetOrgId() string { +// RegenerateWebhook call request +// +// - id = [required] project uuid. +type RegenerateWebhookSecretRequest struct { + state protoimpl.MessageState + sizeCache protoimpl.SizeCache + unknownFields protoimpl.UnknownFields + + Metadata *RequestMeta `protobuf:"bytes,1,opt,name=metadata,proto3" json:"metadata,omitempty"` + Id string `protobuf:"bytes,2,opt,name=id,proto3" json:"id,omitempty"` +} + +func (x *RegenerateWebhookSecretRequest) Reset() { + *x = RegenerateWebhookSecretRequest{} + if protoimpl.UnsafeEnabled { + mi := &file_projecthub_proto_msgTypes[40] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) + } +} + +func (x *RegenerateWebhookSecretRequest) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*RegenerateWebhookSecretRequest) ProtoMessage() {} + +func (x *RegenerateWebhookSecretRequest) ProtoReflect() protoreflect.Message { + mi := &file_projecthub_proto_msgTypes[40] + if protoimpl.UnsafeEnabled && x != nil { + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + if ms.LoadMessageInfo() == nil { + ms.StoreMessageInfo(mi) + } + return ms + } + return mi.MessageOf(x) +} + +// Deprecated: Use RegenerateWebhookSecretRequest.ProtoReflect.Descriptor instead. +func (*RegenerateWebhookSecretRequest) Descriptor() ([]byte, []int) { + return file_projecthub_proto_rawDescGZIP(), []int{40} +} + +func (x *RegenerateWebhookSecretRequest) GetMetadata() *RequestMeta { + if x != nil { + return x.Metadata + } + return nil +} + +func (x *RegenerateWebhookSecretRequest) GetId() string { + if x != nil { + return x.Id + } + return "" +} + +// RegenerateWebhook call response +// +// - secret = [required] new secret token for a project +type RegenerateWebhookSecretResponse struct { + state protoimpl.MessageState + sizeCache protoimpl.SizeCache + unknownFields protoimpl.UnknownFields + + Metadata *ResponseMeta `protobuf:"bytes,1,opt,name=metadata,proto3" json:"metadata,omitempty"` + Secret string `protobuf:"bytes,2,opt,name=secret,proto3" json:"secret,omitempty"` +} + +func (x *RegenerateWebhookSecretResponse) Reset() { + *x = RegenerateWebhookSecretResponse{} + if protoimpl.UnsafeEnabled { + mi := &file_projecthub_proto_msgTypes[41] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) + } +} + +func (x *RegenerateWebhookSecretResponse) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*RegenerateWebhookSecretResponse) ProtoMessage() {} + +func (x *RegenerateWebhookSecretResponse) ProtoReflect() protoreflect.Message { + mi := &file_projecthub_proto_msgTypes[41] + if protoimpl.UnsafeEnabled && x != nil { + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + if ms.LoadMessageInfo() == nil { + ms.StoreMessageInfo(mi) + } + return ms + } + return mi.MessageOf(x) +} + +// Deprecated: Use RegenerateWebhookSecretResponse.ProtoReflect.Descriptor instead. +func (*RegenerateWebhookSecretResponse) Descriptor() ([]byte, []int) { + return file_projecthub_proto_rawDescGZIP(), []int{41} +} + +func (x *RegenerateWebhookSecretResponse) GetMetadata() *ResponseMeta { + if x != nil { + return x.Metadata + } + return nil +} + +func (x *RegenerateWebhookSecretResponse) GetSecret() string { + if x != nil { + return x.Secret + } + return "" +} + +// Published with routing key: 'created'. +// All fields are required. +type ProjectCreated struct { + state protoimpl.MessageState + sizeCache protoimpl.SizeCache + unknownFields protoimpl.UnknownFields + + ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"` + Timestamp *timestamp.Timestamp `protobuf:"bytes,2,opt,name=timestamp,proto3" json:"timestamp,omitempty"` + OrgId string `protobuf:"bytes,3,opt,name=org_id,json=orgId,proto3" json:"org_id,omitempty"` +} + +func (x *ProjectCreated) Reset() { + *x = ProjectCreated{} + if protoimpl.UnsafeEnabled { + mi := &file_projecthub_proto_msgTypes[42] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) + } +} + +func (x *ProjectCreated) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*ProjectCreated) ProtoMessage() {} + +func (x *ProjectCreated) ProtoReflect() protoreflect.Message { + mi := &file_projecthub_proto_msgTypes[42] + if protoimpl.UnsafeEnabled && x != nil { + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + if ms.LoadMessageInfo() == nil { + ms.StoreMessageInfo(mi) + } + return ms + } + return mi.MessageOf(x) +} + +// Deprecated: Use ProjectCreated.ProtoReflect.Descriptor instead. +func (*ProjectCreated) Descriptor() ([]byte, []int) { + return file_projecthub_proto_rawDescGZIP(), []int{42} +} + +func (x *ProjectCreated) GetProjectId() string { + if x != nil { + return x.ProjectId + } + return "" +} + +func (x *ProjectCreated) GetTimestamp() *timestamp.Timestamp { + if x != nil { + return x.Timestamp + } + return nil +} + +func (x *ProjectCreated) GetOrgId() string { + if x != nil { + return x.OrgId + } + return "" +} + +// Published with routing key: 'deleted'. +// All fields are required. +type ProjectDeleted struct { + state protoimpl.MessageState + sizeCache protoimpl.SizeCache + unknownFields protoimpl.UnknownFields + + ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"` + Timestamp *timestamp.Timestamp `protobuf:"bytes,2,opt,name=timestamp,proto3" json:"timestamp,omitempty"` + OrgId string `protobuf:"bytes,3,opt,name=org_id,json=orgId,proto3" json:"org_id,omitempty"` +} + +func (x *ProjectDeleted) Reset() { + *x = ProjectDeleted{} + if protoimpl.UnsafeEnabled { + mi := &file_projecthub_proto_msgTypes[43] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) + } +} + +func (x *ProjectDeleted) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*ProjectDeleted) ProtoMessage() {} + +func (x *ProjectDeleted) ProtoReflect() protoreflect.Message { + mi := &file_projecthub_proto_msgTypes[43] + if protoimpl.UnsafeEnabled && x != nil { + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + if ms.LoadMessageInfo() == nil { + ms.StoreMessageInfo(mi) + } + return ms + } + return mi.MessageOf(x) +} + +// Deprecated: Use ProjectDeleted.ProtoReflect.Descriptor instead. +func (*ProjectDeleted) Descriptor() ([]byte, []int) { + return file_projecthub_proto_rawDescGZIP(), []int{43} +} + +func (x *ProjectDeleted) GetProjectId() string { + if x != nil { + return x.ProjectId + } + return "" +} + +func (x *ProjectDeleted) GetTimestamp() *timestamp.Timestamp { + if x != nil { + return x.Timestamp + } + return nil +} + +func (x *ProjectDeleted) GetOrgId() string { + if x != nil { + return x.OrgId + } + return "" +} + +// Published with routing key: 'restored'. +// All fields are required. +type ProjectRestored struct { + state protoimpl.MessageState + sizeCache protoimpl.SizeCache + unknownFields protoimpl.UnknownFields + + ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"` + Timestamp *timestamp.Timestamp `protobuf:"bytes,2,opt,name=timestamp,proto3" json:"timestamp,omitempty"` + OrgId string `protobuf:"bytes,3,opt,name=org_id,json=orgId,proto3" json:"org_id,omitempty"` +} + +func (x *ProjectRestored) Reset() { + *x = ProjectRestored{} + if protoimpl.UnsafeEnabled { + mi := &file_projecthub_proto_msgTypes[44] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) + } +} + +func (x *ProjectRestored) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*ProjectRestored) ProtoMessage() {} + +func (x *ProjectRestored) ProtoReflect() protoreflect.Message { + mi := &file_projecthub_proto_msgTypes[44] + if protoimpl.UnsafeEnabled && x != nil { + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + if ms.LoadMessageInfo() == nil { + ms.StoreMessageInfo(mi) + } + return ms + } + return mi.MessageOf(x) +} + +// Deprecated: Use ProjectRestored.ProtoReflect.Descriptor instead. +func (*ProjectRestored) Descriptor() ([]byte, []int) { + return file_projecthub_proto_rawDescGZIP(), []int{44} +} + +func (x *ProjectRestored) GetProjectId() string { + if x != nil { + return x.ProjectId + } + return "" +} + +func (x *ProjectRestored) GetTimestamp() *timestamp.Timestamp { + if x != nil { + return x.Timestamp + } + return nil +} + +func (x *ProjectRestored) GetOrgId() string { if x != nil { return x.OrgId } @@ -2584,7 +3238,7 @@ type ProjectUpdated struct { func (x *ProjectUpdated) Reset() { *x = ProjectUpdated{} if protoimpl.UnsafeEnabled { - mi := &file_projecthub_proto_msgTypes[36] + mi := &file_projecthub_proto_msgTypes[45] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2597,7 +3251,7 @@ func (x *ProjectUpdated) String() string { func (*ProjectUpdated) ProtoMessage() {} func (x *ProjectUpdated) ProtoReflect() protoreflect.Message { - mi := &file_projecthub_proto_msgTypes[36] + mi := &file_projecthub_proto_msgTypes[45] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2610,7 +3264,7 @@ func (x *ProjectUpdated) ProtoReflect() protoreflect.Message { // Deprecated: Use ProjectUpdated.ProtoReflect.Descriptor instead. func (*ProjectUpdated) Descriptor() ([]byte, []int) { - return file_projecthub_proto_rawDescGZIP(), []int{36} + return file_projecthub_proto_rawDescGZIP(), []int{45} } func (x *ProjectUpdated) GetProjectId() string { @@ -2648,7 +3302,7 @@ type CollaboratorsChanged struct { func (x *CollaboratorsChanged) Reset() { *x = CollaboratorsChanged{} if protoimpl.UnsafeEnabled { - mi := &file_projecthub_proto_msgTypes[37] + mi := &file_projecthub_proto_msgTypes[46] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2661,7 +3315,7 @@ func (x *CollaboratorsChanged) String() string { func (*CollaboratorsChanged) ProtoMessage() {} func (x *CollaboratorsChanged) ProtoReflect() protoreflect.Message { - mi := &file_projecthub_proto_msgTypes[37] + mi := &file_projecthub_proto_msgTypes[46] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2674,7 +3328,7 @@ func (x *CollaboratorsChanged) ProtoReflect() protoreflect.Message { // Deprecated: Use CollaboratorsChanged.ProtoReflect.Descriptor instead. func (*CollaboratorsChanged) Descriptor() ([]byte, []int) { - return file_projecthub_proto_rawDescGZIP(), []int{37} + return file_projecthub_proto_rawDescGZIP(), []int{46} } func (x *CollaboratorsChanged) GetProjectId() string { @@ -2703,7 +3357,7 @@ type ResponseMeta_Status struct { func (x *ResponseMeta_Status) Reset() { *x = ResponseMeta_Status{} if protoimpl.UnsafeEnabled { - mi := &file_projecthub_proto_msgTypes[38] + mi := &file_projecthub_proto_msgTypes[47] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2716,7 +3370,7 @@ func (x *ResponseMeta_Status) String() string { func (*ResponseMeta_Status) ProtoMessage() {} func (x *ResponseMeta_Status) ProtoReflect() protoreflect.Message { - mi := &file_projecthub_proto_msgTypes[38] + mi := &file_projecthub_proto_msgTypes[47] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2762,7 +3416,7 @@ type Project_Metadata struct { func (x *Project_Metadata) Reset() { *x = Project_Metadata{} if protoimpl.UnsafeEnabled { - mi := &file_projecthub_proto_msgTypes[39] + mi := &file_projecthub_proto_msgTypes[48] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2775,7 +3429,7 @@ func (x *Project_Metadata) String() string { func (*Project_Metadata) ProtoMessage() {} func (x *Project_Metadata) ProtoReflect() protoreflect.Message { - mi := &file_projecthub_proto_msgTypes[39] + mi := &file_projecthub_proto_msgTypes[48] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2840,8 +3494,8 @@ func (x *Project_Metadata) GetCreatedAt() *timestamp.Timestamp { // - public = [optional, default = false, deprecated] Public project will be visible for everyone, even anonymous users. // - visibility = [optional, default = PRIVATE] Public project will be visible for everyone, even anonymous users. // - custom_permissions = [required if restricted organization] True if project do not follow organization defaults for debug/attach permissions. -// - debug_permissions = [required if restricted organization] List of types for witch debug sessions are allowed. Used only if custom_permissions is set to true. -// - attach_permissions = [required if restricted organization] List of types for witch attached sessions are allowed. Used only if custom_permissions is set to true. +// - debug_permissions = [required if restricted organization] List of types for which debug sessions are allowed. Used only if custom_permissions is set to true. +// - attach_permissions = [required if restricted organization] List of types for which attached sessions are allowed. Used only if custom_permissions is set to true. type Project_Spec struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -2864,7 +3518,7 @@ type Project_Spec struct { func (x *Project_Spec) Reset() { *x = Project_Spec{} if protoimpl.UnsafeEnabled { - mi := &file_projecthub_proto_msgTypes[40] + mi := &file_projecthub_proto_msgTypes[49] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2877,7 +3531,7 @@ func (x *Project_Spec) String() string { func (*Project_Spec) ProtoMessage() {} func (x *Project_Spec) ProtoReflect() protoreflect.Message { - mi := &file_projecthub_proto_msgTypes[40] + mi := &file_projecthub_proto_msgTypes[49] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2995,7 +3649,7 @@ type Project_Status struct { func (x *Project_Status) Reset() { *x = Project_Status{} if protoimpl.UnsafeEnabled { - mi := &file_projecthub_proto_msgTypes[41] + mi := &file_projecthub_proto_msgTypes[50] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3008,7 +3662,7 @@ func (x *Project_Status) String() string { func (*Project_Status) ProtoMessage() {} func (x *Project_Status) ProtoReflect() protoreflect.Message { - mi := &file_projecthub_proto_msgTypes[41] + mi := &file_projecthub_proto_msgTypes[50] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3107,7 +3761,7 @@ type Project_Spec_Repository struct { func (x *Project_Spec_Repository) Reset() { *x = Project_Spec_Repository{} if protoimpl.UnsafeEnabled { - mi := &file_projecthub_proto_msgTypes[42] + mi := &file_projecthub_proto_msgTypes[51] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3120,7 +3774,7 @@ func (x *Project_Spec_Repository) String() string { func (*Project_Spec_Repository) ProtoMessage() {} func (x *Project_Spec_Repository) ProtoReflect() protoreflect.Message { - mi := &file_projecthub_proto_msgTypes[42] + mi := &file_projecthub_proto_msgTypes[51] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3267,7 +3921,7 @@ type Project_Spec_Scheduler struct { func (x *Project_Spec_Scheduler) Reset() { *x = Project_Spec_Scheduler{} if protoimpl.UnsafeEnabled { - mi := &file_projecthub_proto_msgTypes[43] + mi := &file_projecthub_proto_msgTypes[52] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3280,7 +3934,7 @@ func (x *Project_Spec_Scheduler) String() string { func (*Project_Spec_Scheduler) ProtoMessage() {} func (x *Project_Spec_Scheduler) ProtoReflect() protoreflect.Message { - mi := &file_projecthub_proto_msgTypes[43] + mi := &file_projecthub_proto_msgTypes[52] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3357,7 +4011,7 @@ type Project_Spec_Task struct { func (x *Project_Spec_Task) Reset() { *x = Project_Spec_Task{} if protoimpl.UnsafeEnabled { - mi := &file_projecthub_proto_msgTypes[44] + mi := &file_projecthub_proto_msgTypes[53] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3370,7 +4024,7 @@ func (x *Project_Spec_Task) String() string { func (*Project_Spec_Task) ProtoMessage() {} func (x *Project_Spec_Task) ProtoReflect() protoreflect.Message { - mi := &file_projecthub_proto_msgTypes[44] + mi := &file_projecthub_proto_msgTypes[53] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3467,7 +4121,7 @@ type Project_Spec_Repository_ForkedPullRequests struct { func (x *Project_Spec_Repository_ForkedPullRequests) Reset() { *x = Project_Spec_Repository_ForkedPullRequests{} if protoimpl.UnsafeEnabled { - mi := &file_projecthub_proto_msgTypes[45] + mi := &file_projecthub_proto_msgTypes[54] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3480,7 +4134,7 @@ func (x *Project_Spec_Repository_ForkedPullRequests) String() string { func (*Project_Spec_Repository_ForkedPullRequests) ProtoMessage() {} func (x *Project_Spec_Repository_ForkedPullRequests) ProtoReflect() protoreflect.Message { - mi := &file_projecthub_proto_msgTypes[45] + mi := &file_projecthub_proto_msgTypes[54] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3521,7 +4175,7 @@ type Project_Spec_Repository_Status struct { func (x *Project_Spec_Repository_Status) Reset() { *x = Project_Spec_Repository_Status{} if protoimpl.UnsafeEnabled { - mi := &file_projecthub_proto_msgTypes[46] + mi := &file_projecthub_proto_msgTypes[55] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3534,7 +4188,7 @@ func (x *Project_Spec_Repository_Status) String() string { func (*Project_Spec_Repository_Status) ProtoMessage() {} func (x *Project_Spec_Repository_Status) ProtoReflect() protoreflect.Message { - mi := &file_projecthub_proto_msgTypes[46] + mi := &file_projecthub_proto_msgTypes[55] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3571,7 +4225,7 @@ type Project_Spec_Repository_Whitelist struct { func (x *Project_Spec_Repository_Whitelist) Reset() { *x = Project_Spec_Repository_Whitelist{} if protoimpl.UnsafeEnabled { - mi := &file_projecthub_proto_msgTypes[47] + mi := &file_projecthub_proto_msgTypes[56] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3584,7 +4238,7 @@ func (x *Project_Spec_Repository_Whitelist) String() string { func (*Project_Spec_Repository_Whitelist) ProtoMessage() {} func (x *Project_Spec_Repository_Whitelist) ProtoReflect() protoreflect.Message { - mi := &file_projecthub_proto_msgTypes[47] + mi := &file_projecthub_proto_msgTypes[56] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3630,7 +4284,7 @@ type Project_Spec_Repository_Status_PipelineFile struct { func (x *Project_Spec_Repository_Status_PipelineFile) Reset() { *x = Project_Spec_Repository_Status_PipelineFile{} if protoimpl.UnsafeEnabled { - mi := &file_projecthub_proto_msgTypes[48] + mi := &file_projecthub_proto_msgTypes[57] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3643,7 +4297,7 @@ func (x *Project_Spec_Repository_Status_PipelineFile) String() string { func (*Project_Spec_Repository_Status_PipelineFile) ProtoMessage() {} func (x *Project_Spec_Repository_Status_PipelineFile) ProtoReflect() protoreflect.Message { - mi := &file_projecthub_proto_msgTypes[48] + mi := &file_projecthub_proto_msgTypes[57] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3688,7 +4342,7 @@ type Project_Spec_Task_Parameter struct { func (x *Project_Spec_Task_Parameter) Reset() { *x = Project_Spec_Task_Parameter{} if protoimpl.UnsafeEnabled { - mi := &file_projecthub_proto_msgTypes[49] + mi := &file_projecthub_proto_msgTypes[58] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3701,7 +4355,7 @@ func (x *Project_Spec_Task_Parameter) String() string { func (*Project_Spec_Task_Parameter) ProtoMessage() {} func (x *Project_Spec_Task_Parameter) ProtoReflect() protoreflect.Message { - mi := &file_projecthub_proto_msgTypes[49] + mi := &file_projecthub_proto_msgTypes[58] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3763,7 +4417,7 @@ type Project_Status_Cache struct { func (x *Project_Status_Cache) Reset() { *x = Project_Status_Cache{} if protoimpl.UnsafeEnabled { - mi := &file_projecthub_proto_msgTypes[50] + mi := &file_projecthub_proto_msgTypes[59] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3776,7 +4430,7 @@ func (x *Project_Status_Cache) String() string { func (*Project_Status_Cache) ProtoMessage() {} func (x *Project_Status_Cache) ProtoReflect() protoreflect.Message { - mi := &file_projecthub_proto_msgTypes[50] + mi := &file_projecthub_proto_msgTypes[59] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3810,7 +4464,7 @@ type Project_Status_ArtifactStore struct { func (x *Project_Status_ArtifactStore) Reset() { *x = Project_Status_ArtifactStore{} if protoimpl.UnsafeEnabled { - mi := &file_projecthub_proto_msgTypes[51] + mi := &file_projecthub_proto_msgTypes[60] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3823,7 +4477,7 @@ func (x *Project_Status_ArtifactStore) String() string { func (*Project_Status_ArtifactStore) ProtoMessage() {} func (x *Project_Status_ArtifactStore) ProtoReflect() protoreflect.Message { - mi := &file_projecthub_proto_msgTypes[51] + mi := &file_projecthub_proto_msgTypes[60] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3857,7 +4511,7 @@ type Project_Status_Repository struct { func (x *Project_Status_Repository) Reset() { *x = Project_Status_Repository{} if protoimpl.UnsafeEnabled { - mi := &file_projecthub_proto_msgTypes[52] + mi := &file_projecthub_proto_msgTypes[61] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3870,7 +4524,7 @@ func (x *Project_Status_Repository) String() string { func (*Project_Status_Repository) ProtoMessage() {} func (x *Project_Status_Repository) ProtoReflect() protoreflect.Message { - mi := &file_projecthub_proto_msgTypes[52] + mi := &file_projecthub_proto_msgTypes[61] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3904,7 +4558,7 @@ type Project_Status_Analysis struct { func (x *Project_Status_Analysis) Reset() { *x = Project_Status_Analysis{} if protoimpl.UnsafeEnabled { - mi := &file_projecthub_proto_msgTypes[53] + mi := &file_projecthub_proto_msgTypes[62] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3917,7 +4571,7 @@ func (x *Project_Status_Analysis) String() string { func (*Project_Status_Analysis) ProtoMessage() {} func (x *Project_Status_Analysis) ProtoReflect() protoreflect.Message { - mi := &file_projecthub_proto_msgTypes[53] + mi := &file_projecthub_proto_msgTypes[62] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3951,7 +4605,7 @@ type Project_Status_Permissions struct { func (x *Project_Status_Permissions) Reset() { *x = Project_Status_Permissions{} if protoimpl.UnsafeEnabled { - mi := &file_projecthub_proto_msgTypes[54] + mi := &file_projecthub_proto_msgTypes[63] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3964,7 +4618,7 @@ func (x *Project_Status_Permissions) String() string { func (*Project_Status_Permissions) ProtoMessage() {} func (x *Project_Status_Permissions) ProtoReflect() protoreflect.Message { - mi := &file_projecthub_proto_msgTypes[54] + mi := &file_projecthub_proto_msgTypes[63] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3995,12 +4649,13 @@ type CheckDeployKeyResponse_DeployKey struct { Title string `protobuf:"bytes,1,opt,name=title,proto3" json:"title,omitempty"` Fingerprint string `protobuf:"bytes,2,opt,name=fingerprint,proto3" json:"fingerprint,omitempty"` CreatedAt *timestamp.Timestamp `protobuf:"bytes,3,opt,name=created_at,json=createdAt,proto3" json:"created_at,omitempty"` + PublicKey string `protobuf:"bytes,4,opt,name=public_key,json=publicKey,proto3" json:"public_key,omitempty"` } func (x *CheckDeployKeyResponse_DeployKey) Reset() { *x = CheckDeployKeyResponse_DeployKey{} if protoimpl.UnsafeEnabled { - mi := &file_projecthub_proto_msgTypes[55] + mi := &file_projecthub_proto_msgTypes[64] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4013,7 +4668,7 @@ func (x *CheckDeployKeyResponse_DeployKey) String() string { func (*CheckDeployKeyResponse_DeployKey) ProtoMessage() {} func (x *CheckDeployKeyResponse_DeployKey) ProtoReflect() protoreflect.Message { - mi := &file_projecthub_proto_msgTypes[55] + mi := &file_projecthub_proto_msgTypes[64] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4026,7 +4681,7 @@ func (x *CheckDeployKeyResponse_DeployKey) ProtoReflect() protoreflect.Message { // Deprecated: Use CheckDeployKeyResponse_DeployKey.ProtoReflect.Descriptor instead. func (*CheckDeployKeyResponse_DeployKey) Descriptor() ([]byte, []int) { - return file_projecthub_proto_rawDescGZIP(), []int{20, 0} + return file_projecthub_proto_rawDescGZIP(), []int{24, 0} } func (x *CheckDeployKeyResponse_DeployKey) GetTitle() string { @@ -4050,6 +4705,13 @@ func (x *CheckDeployKeyResponse_DeployKey) GetCreatedAt() *timestamp.Timestamp { return nil } +func (x *CheckDeployKeyResponse_DeployKey) GetPublicKey() string { + if x != nil { + return x.PublicKey + } + return "" +} + type RegenerateDeployKeyResponse_DeployKey struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -4058,12 +4720,13 @@ type RegenerateDeployKeyResponse_DeployKey struct { Title string `protobuf:"bytes,1,opt,name=title,proto3" json:"title,omitempty"` Fingerprint string `protobuf:"bytes,2,opt,name=fingerprint,proto3" json:"fingerprint,omitempty"` CreatedAt *timestamp.Timestamp `protobuf:"bytes,3,opt,name=created_at,json=createdAt,proto3" json:"created_at,omitempty"` + PublicKey string `protobuf:"bytes,4,opt,name=public_key,json=publicKey,proto3" json:"public_key,omitempty"` } func (x *RegenerateDeployKeyResponse_DeployKey) Reset() { *x = RegenerateDeployKeyResponse_DeployKey{} if protoimpl.UnsafeEnabled { - mi := &file_projecthub_proto_msgTypes[56] + mi := &file_projecthub_proto_msgTypes[65] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4076,7 +4739,7 @@ func (x *RegenerateDeployKeyResponse_DeployKey) String() string { func (*RegenerateDeployKeyResponse_DeployKey) ProtoMessage() {} func (x *RegenerateDeployKeyResponse_DeployKey) ProtoReflect() protoreflect.Message { - mi := &file_projecthub_proto_msgTypes[56] + mi := &file_projecthub_proto_msgTypes[65] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4089,7 +4752,7 @@ func (x *RegenerateDeployKeyResponse_DeployKey) ProtoReflect() protoreflect.Mess // Deprecated: Use RegenerateDeployKeyResponse_DeployKey.ProtoReflect.Descriptor instead. func (*RegenerateDeployKeyResponse_DeployKey) Descriptor() ([]byte, []int) { - return file_projecthub_proto_rawDescGZIP(), []int{22, 0} + return file_projecthub_proto_rawDescGZIP(), []int{26, 0} } func (x *RegenerateDeployKeyResponse_DeployKey) GetTitle() string { @@ -4113,6 +4776,13 @@ func (x *RegenerateDeployKeyResponse_DeployKey) GetCreatedAt() *timestamp.Timest return nil } +func (x *RegenerateDeployKeyResponse_DeployKey) GetPublicKey() string { + if x != nil { + return x.PublicKey + } + return "" +} + var File_projecthub_proto protoreflect.FileDescriptor var file_projecthub_proto_rawDesc = []byte{ @@ -4168,7 +4838,7 @@ var file_projecthub_proto_rawDesc = []byte{ 0x6c, 0x5f, 0x65, 0x6e, 0x74, 0x72, 0x69, 0x65, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0c, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x45, 0x6e, 0x74, 0x72, 0x69, 0x65, 0x73, 0x12, 0x1f, 0x0a, 0x0b, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x70, 0x61, 0x67, 0x65, 0x73, 0x18, 0x04, 0x20, 0x01, - 0x28, 0x05, 0x52, 0x0a, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x50, 0x61, 0x67, 0x65, 0x73, 0x22, 0x9b, + 0x28, 0x05, 0x52, 0x0a, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x50, 0x61, 0x67, 0x65, 0x73, 0x22, 0xc4, 0x22, 0x0a, 0x07, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x12, 0x44, 0x0a, 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x28, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, @@ -4193,7 +4863,7 @@ var file_projecthub_proto_rawDesc = []byte{ 0x39, 0x0a, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, - 0x09, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x41, 0x74, 0x1a, 0xbe, 0x17, 0x0a, 0x04, 0x53, + 0x09, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x41, 0x74, 0x1a, 0xd7, 0x17, 0x0a, 0x04, 0x53, 0x70, 0x65, 0x63, 0x12, 0x4f, 0x0a, 0x0a, 0x72, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2f, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, @@ -4239,7 +4909,7 @@ var file_projecthub_proto_rawDesc = []byte{ 0x32, 0x29, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x2e, 0x53, 0x70, 0x65, 0x63, 0x2e, 0x54, 0x61, 0x73, 0x6b, 0x52, 0x05, 0x74, 0x61, 0x73, - 0x6b, 0x73, 0x1a, 0xe8, 0x09, 0x0a, 0x0a, 0x52, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, + 0x6b, 0x73, 0x1a, 0x81, 0x0a, 0x0a, 0x0a, 0x52, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x72, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x75, 0x72, 0x6c, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x6f, 0x77, 0x6e, 0x65, 0x72, @@ -4311,280 +4981,346 @@ var file_projecthub_proto_rawDesc = []byte{ 0x01, 0x1a, 0x3b, 0x0a, 0x09, 0x57, 0x68, 0x69, 0x74, 0x65, 0x6c, 0x69, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x62, 0x72, 0x61, 0x6e, 0x63, 0x68, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x08, 0x62, 0x72, 0x61, 0x6e, 0x63, 0x68, 0x65, 0x73, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x61, - 0x67, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x04, 0x74, 0x61, 0x67, 0x73, 0x22, 0x4e, + 0x67, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x04, 0x74, 0x61, 0x67, 0x73, 0x22, 0x67, 0x0a, 0x07, 0x52, 0x75, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x0c, 0x0a, 0x08, 0x42, 0x52, 0x41, 0x4e, 0x43, 0x48, 0x45, 0x53, 0x10, 0x00, 0x12, 0x08, 0x0a, 0x04, 0x54, 0x41, 0x47, 0x53, 0x10, 0x01, 0x12, 0x11, 0x0a, 0x0d, 0x50, 0x55, 0x4c, 0x4c, 0x5f, 0x52, 0x45, 0x51, 0x55, 0x45, 0x53, 0x54, 0x53, 0x10, 0x02, 0x12, 0x18, 0x0a, 0x14, 0x46, 0x4f, 0x52, 0x4b, 0x45, 0x44, 0x5f, 0x50, - 0x55, 0x4c, 0x4c, 0x5f, 0x52, 0x45, 0x51, 0x55, 0x45, 0x53, 0x54, 0x53, 0x10, 0x03, 0x42, 0x0d, - 0x0a, 0x0b, 0x72, 0x75, 0x6e, 0x5f, 0x70, 0x72, 0x65, 0x73, 0x65, 0x6e, 0x74, 0x1a, 0x95, 0x02, - 0x0a, 0x09, 0x53, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x72, 0x12, 0x0e, 0x0a, 0x02, 0x69, - 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, - 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, - 0x16, 0x0a, 0x06, 0x62, 0x72, 0x61, 0x6e, 0x63, 0x68, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, - 0x06, 0x62, 0x72, 0x61, 0x6e, 0x63, 0x68, 0x12, 0x0e, 0x0a, 0x02, 0x61, 0x74, 0x18, 0x04, 0x20, - 0x01, 0x28, 0x09, 0x52, 0x02, 0x61, 0x74, 0x12, 0x23, 0x0a, 0x0d, 0x70, 0x69, 0x70, 0x65, 0x6c, - 0x69, 0x6e, 0x65, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, - 0x70, 0x69, 0x70, 0x65, 0x6c, 0x69, 0x6e, 0x65, 0x46, 0x69, 0x6c, 0x65, 0x12, 0x4d, 0x0a, 0x06, - 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x35, 0x2e, 0x49, - 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, - 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x2e, 0x53, 0x70, - 0x65, 0x63, 0x2e, 0x53, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x72, 0x2e, 0x53, 0x74, 0x61, - 0x74, 0x75, 0x73, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x22, 0x48, 0x0a, 0x06, 0x53, - 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x16, 0x0a, 0x12, 0x53, 0x54, 0x41, 0x54, 0x55, 0x53, 0x5f, - 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x13, 0x0a, - 0x0f, 0x53, 0x54, 0x41, 0x54, 0x55, 0x53, 0x5f, 0x49, 0x4e, 0x41, 0x43, 0x54, 0x49, 0x56, 0x45, - 0x10, 0x01, 0x12, 0x11, 0x0a, 0x0d, 0x53, 0x54, 0x41, 0x54, 0x55, 0x53, 0x5f, 0x41, 0x43, 0x54, - 0x49, 0x56, 0x45, 0x10, 0x02, 0x1a, 0xbf, 0x04, 0x0a, 0x04, 0x54, 0x61, 0x73, 0x6b, 0x12, 0x0e, - 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x12, - 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, - 0x6d, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x62, 0x72, 0x61, 0x6e, 0x63, 0x68, 0x18, 0x03, 0x20, 0x01, - 0x28, 0x09, 0x52, 0x06, 0x62, 0x72, 0x61, 0x6e, 0x63, 0x68, 0x12, 0x0e, 0x0a, 0x02, 0x61, 0x74, - 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x61, 0x74, 0x12, 0x23, 0x0a, 0x0d, 0x70, 0x69, - 0x70, 0x65, 0x6c, 0x69, 0x6e, 0x65, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, - 0x09, 0x52, 0x0c, 0x70, 0x69, 0x70, 0x65, 0x6c, 0x69, 0x6e, 0x65, 0x46, 0x69, 0x6c, 0x65, 0x12, - 0x48, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0e, 0x32, - 0x30, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, - 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, - 0x2e, 0x53, 0x70, 0x65, 0x63, 0x2e, 0x54, 0x61, 0x73, 0x6b, 0x2e, 0x53, 0x74, 0x61, 0x74, 0x75, - 0x73, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x1c, 0x0a, 0x09, 0x72, 0x65, 0x63, - 0x75, 0x72, 0x72, 0x69, 0x6e, 0x67, 0x18, 0x07, 0x20, 0x01, 0x28, 0x08, 0x52, 0x09, 0x72, 0x65, - 0x63, 0x75, 0x72, 0x72, 0x69, 0x6e, 0x67, 0x12, 0x53, 0x0a, 0x0a, 0x70, 0x61, 0x72, 0x61, 0x6d, - 0x65, 0x74, 0x65, 0x72, 0x73, 0x18, 0x08, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x33, 0x2e, 0x49, 0x6e, + 0x55, 0x4c, 0x4c, 0x5f, 0x52, 0x45, 0x51, 0x55, 0x45, 0x53, 0x54, 0x53, 0x10, 0x03, 0x12, 0x17, + 0x0a, 0x13, 0x44, 0x52, 0x41, 0x46, 0x54, 0x5f, 0x50, 0x55, 0x4c, 0x4c, 0x5f, 0x52, 0x45, 0x51, + 0x55, 0x45, 0x53, 0x54, 0x53, 0x10, 0x04, 0x42, 0x0d, 0x0a, 0x0b, 0x72, 0x75, 0x6e, 0x5f, 0x70, + 0x72, 0x65, 0x73, 0x65, 0x6e, 0x74, 0x1a, 0x95, 0x02, 0x0a, 0x09, 0x53, 0x63, 0x68, 0x65, 0x64, + 0x75, 0x6c, 0x65, 0x72, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, + 0x52, 0x02, 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, + 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x62, 0x72, 0x61, 0x6e, + 0x63, 0x68, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x62, 0x72, 0x61, 0x6e, 0x63, 0x68, + 0x12, 0x0e, 0x0a, 0x02, 0x61, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x61, 0x74, + 0x12, 0x23, 0x0a, 0x0d, 0x70, 0x69, 0x70, 0x65, 0x6c, 0x69, 0x6e, 0x65, 0x5f, 0x66, 0x69, 0x6c, + 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x70, 0x69, 0x70, 0x65, 0x6c, 0x69, 0x6e, + 0x65, 0x46, 0x69, 0x6c, 0x65, 0x12, 0x4d, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, + 0x06, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x35, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, + 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x50, + 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x2e, 0x53, 0x70, 0x65, 0x63, 0x2e, 0x53, 0x63, 0x68, 0x65, + 0x64, 0x75, 0x6c, 0x65, 0x72, 0x2e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x06, 0x73, 0x74, + 0x61, 0x74, 0x75, 0x73, 0x22, 0x48, 0x0a, 0x06, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x16, + 0x0a, 0x12, 0x53, 0x54, 0x41, 0x54, 0x55, 0x53, 0x5f, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, + 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x13, 0x0a, 0x0f, 0x53, 0x54, 0x41, 0x54, 0x55, 0x53, + 0x5f, 0x49, 0x4e, 0x41, 0x43, 0x54, 0x49, 0x56, 0x45, 0x10, 0x01, 0x12, 0x11, 0x0a, 0x0d, 0x53, + 0x54, 0x41, 0x54, 0x55, 0x53, 0x5f, 0x41, 0x43, 0x54, 0x49, 0x56, 0x45, 0x10, 0x02, 0x1a, 0xbf, + 0x04, 0x0a, 0x04, 0x54, 0x61, 0x73, 0x6b, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, + 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, + 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x62, + 0x72, 0x61, 0x6e, 0x63, 0x68, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x62, 0x72, 0x61, + 0x6e, 0x63, 0x68, 0x12, 0x0e, 0x0a, 0x02, 0x61, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, + 0x02, 0x61, 0x74, 0x12, 0x23, 0x0a, 0x0d, 0x70, 0x69, 0x70, 0x65, 0x6c, 0x69, 0x6e, 0x65, 0x5f, + 0x66, 0x69, 0x6c, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x70, 0x69, 0x70, 0x65, + 0x6c, 0x69, 0x6e, 0x65, 0x46, 0x69, 0x6c, 0x65, 0x12, 0x48, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, + 0x75, 0x73, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x30, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, + 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, + 0x62, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x2e, 0x53, 0x70, 0x65, 0x63, 0x2e, 0x54, + 0x61, 0x73, 0x6b, 0x2e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, + 0x75, 0x73, 0x12, 0x1c, 0x0a, 0x09, 0x72, 0x65, 0x63, 0x75, 0x72, 0x72, 0x69, 0x6e, 0x67, 0x18, + 0x07, 0x20, 0x01, 0x28, 0x08, 0x52, 0x09, 0x72, 0x65, 0x63, 0x75, 0x72, 0x72, 0x69, 0x6e, 0x67, + 0x12, 0x53, 0x0a, 0x0a, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x73, 0x18, 0x08, + 0x20, 0x03, 0x28, 0x0b, 0x32, 0x33, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, + 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x50, 0x72, + 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x2e, 0x53, 0x70, 0x65, 0x63, 0x2e, 0x54, 0x61, 0x73, 0x6b, 0x2e, + 0x50, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x52, 0x0a, 0x70, 0x61, 0x72, 0x61, 0x6d, + 0x65, 0x74, 0x65, 0x72, 0x73, 0x12, 0x20, 0x0a, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, + 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x65, 0x73, 0x63, + 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x1a, 0x9c, 0x01, 0x0a, 0x09, 0x50, 0x61, 0x72, 0x61, + 0x6d, 0x65, 0x74, 0x65, 0x72, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, + 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x72, 0x65, 0x71, + 0x75, 0x69, 0x72, 0x65, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x08, 0x72, 0x65, 0x71, + 0x75, 0x69, 0x72, 0x65, 0x64, 0x12, 0x20, 0x0a, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, + 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x65, 0x73, 0x63, + 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x23, 0x0a, 0x0d, 0x64, 0x65, 0x66, 0x61, 0x75, + 0x6c, 0x74, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, + 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x18, 0x0a, 0x07, + 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x05, 0x20, 0x03, 0x28, 0x09, 0x52, 0x07, 0x6f, + 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x22, 0x48, 0x0a, 0x06, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, + 0x12, 0x16, 0x0a, 0x12, 0x53, 0x54, 0x41, 0x54, 0x55, 0x53, 0x5f, 0x55, 0x4e, 0x53, 0x50, 0x45, + 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x13, 0x0a, 0x0f, 0x53, 0x54, 0x41, 0x54, + 0x55, 0x53, 0x5f, 0x49, 0x4e, 0x41, 0x43, 0x54, 0x49, 0x56, 0x45, 0x10, 0x01, 0x12, 0x11, 0x0a, + 0x0d, 0x53, 0x54, 0x41, 0x54, 0x55, 0x53, 0x5f, 0x41, 0x43, 0x54, 0x49, 0x56, 0x45, 0x10, 0x02, + 0x22, 0x25, 0x0a, 0x0a, 0x56, 0x69, 0x73, 0x69, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x12, 0x0b, + 0x0a, 0x07, 0x50, 0x52, 0x49, 0x56, 0x41, 0x54, 0x45, 0x10, 0x00, 0x12, 0x0a, 0x0a, 0x06, 0x50, + 0x55, 0x42, 0x4c, 0x49, 0x43, 0x10, 0x01, 0x22, 0x7b, 0x0a, 0x0e, 0x50, 0x65, 0x72, 0x6d, 0x69, + 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x09, 0x0a, 0x05, 0x45, 0x4d, 0x50, + 0x54, 0x59, 0x10, 0x00, 0x12, 0x12, 0x0a, 0x0e, 0x44, 0x45, 0x46, 0x41, 0x55, 0x4c, 0x54, 0x5f, + 0x42, 0x52, 0x41, 0x4e, 0x43, 0x48, 0x10, 0x01, 0x12, 0x16, 0x0a, 0x12, 0x4e, 0x4f, 0x4e, 0x5f, + 0x44, 0x45, 0x46, 0x41, 0x55, 0x4c, 0x54, 0x5f, 0x42, 0x52, 0x41, 0x4e, 0x43, 0x48, 0x10, 0x02, + 0x12, 0x10, 0x0a, 0x0c, 0x50, 0x55, 0x4c, 0x4c, 0x5f, 0x52, 0x45, 0x51, 0x55, 0x45, 0x53, 0x54, + 0x10, 0x03, 0x12, 0x17, 0x0a, 0x13, 0x46, 0x4f, 0x52, 0x4b, 0x45, 0x44, 0x5f, 0x50, 0x55, 0x4c, + 0x4c, 0x5f, 0x52, 0x45, 0x51, 0x55, 0x45, 0x53, 0x54, 0x10, 0x04, 0x12, 0x07, 0x0a, 0x03, 0x54, + 0x41, 0x47, 0x10, 0x05, 0x1a, 0xde, 0x07, 0x0a, 0x06, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, + 0x42, 0x0a, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2c, + 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, + 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x2e, + 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x2e, 0x53, 0x74, 0x61, 0x74, 0x65, 0x52, 0x05, 0x73, 0x74, + 0x61, 0x74, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x73, 0x74, 0x61, 0x74, 0x65, 0x5f, 0x72, 0x65, 0x61, + 0x73, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x73, 0x74, 0x61, 0x74, 0x65, + 0x52, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x12, 0x42, 0x0a, 0x05, 0x63, 0x61, 0x63, 0x68, 0x65, 0x18, + 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2c, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, + 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x50, + 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x2e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x2e, 0x43, 0x61, + 0x63, 0x68, 0x65, 0x52, 0x05, 0x63, 0x61, 0x63, 0x68, 0x65, 0x12, 0x5b, 0x0a, 0x0e, 0x61, 0x72, + 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x5f, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x18, 0x04, 0x20, 0x01, + 0x28, 0x0b, 0x32, 0x34, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, + 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x50, 0x72, 0x6f, 0x6a, + 0x65, 0x63, 0x74, 0x2e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x2e, 0x41, 0x72, 0x74, 0x69, 0x66, + 0x61, 0x63, 0x74, 0x53, 0x74, 0x6f, 0x72, 0x65, 0x52, 0x0d, 0x61, 0x72, 0x74, 0x69, 0x66, 0x61, + 0x63, 0x74, 0x53, 0x74, 0x6f, 0x72, 0x65, 0x12, 0x51, 0x0a, 0x0a, 0x72, 0x65, 0x70, 0x6f, 0x73, + 0x69, 0x74, 0x6f, 0x72, 0x79, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x31, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, - 0x74, 0x68, 0x75, 0x62, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x2e, 0x53, 0x70, 0x65, - 0x63, 0x2e, 0x54, 0x61, 0x73, 0x6b, 0x2e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, - 0x52, 0x0a, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x73, 0x12, 0x20, 0x0a, 0x0b, - 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x09, 0x20, 0x01, 0x28, - 0x09, 0x52, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x1a, 0x9c, - 0x01, 0x0a, 0x09, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x12, 0x12, 0x0a, 0x04, - 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, - 0x12, 0x1a, 0x0a, 0x08, 0x72, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x64, 0x18, 0x02, 0x20, 0x01, - 0x28, 0x08, 0x52, 0x08, 0x72, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x64, 0x12, 0x20, 0x0a, 0x0b, - 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, - 0x09, 0x52, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x23, - 0x0a, 0x0d, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, - 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x56, 0x61, - 0x6c, 0x75, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x05, - 0x20, 0x03, 0x28, 0x09, 0x52, 0x07, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x22, 0x48, 0x0a, - 0x06, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x16, 0x0a, 0x12, 0x53, 0x54, 0x41, 0x54, 0x55, - 0x53, 0x5f, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, - 0x13, 0x0a, 0x0f, 0x53, 0x54, 0x41, 0x54, 0x55, 0x53, 0x5f, 0x49, 0x4e, 0x41, 0x43, 0x54, 0x49, - 0x56, 0x45, 0x10, 0x01, 0x12, 0x11, 0x0a, 0x0d, 0x53, 0x54, 0x41, 0x54, 0x55, 0x53, 0x5f, 0x41, - 0x43, 0x54, 0x49, 0x56, 0x45, 0x10, 0x02, 0x22, 0x25, 0x0a, 0x0a, 0x56, 0x69, 0x73, 0x69, 0x62, - 0x69, 0x6c, 0x69, 0x74, 0x79, 0x12, 0x0b, 0x0a, 0x07, 0x50, 0x52, 0x49, 0x56, 0x41, 0x54, 0x45, - 0x10, 0x00, 0x12, 0x0a, 0x0a, 0x06, 0x50, 0x55, 0x42, 0x4c, 0x49, 0x43, 0x10, 0x01, 0x22, 0x7b, - 0x0a, 0x0e, 0x50, 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, - 0x12, 0x09, 0x0a, 0x05, 0x45, 0x4d, 0x50, 0x54, 0x59, 0x10, 0x00, 0x12, 0x12, 0x0a, 0x0e, 0x44, - 0x45, 0x46, 0x41, 0x55, 0x4c, 0x54, 0x5f, 0x42, 0x52, 0x41, 0x4e, 0x43, 0x48, 0x10, 0x01, 0x12, - 0x16, 0x0a, 0x12, 0x4e, 0x4f, 0x4e, 0x5f, 0x44, 0x45, 0x46, 0x41, 0x55, 0x4c, 0x54, 0x5f, 0x42, - 0x52, 0x41, 0x4e, 0x43, 0x48, 0x10, 0x02, 0x12, 0x10, 0x0a, 0x0c, 0x50, 0x55, 0x4c, 0x4c, 0x5f, - 0x52, 0x45, 0x51, 0x55, 0x45, 0x53, 0x54, 0x10, 0x03, 0x12, 0x17, 0x0a, 0x13, 0x46, 0x4f, 0x52, - 0x4b, 0x45, 0x44, 0x5f, 0x50, 0x55, 0x4c, 0x4c, 0x5f, 0x52, 0x45, 0x51, 0x55, 0x45, 0x53, 0x54, - 0x10, 0x04, 0x12, 0x07, 0x0a, 0x03, 0x54, 0x41, 0x47, 0x10, 0x05, 0x1a, 0xce, 0x07, 0x0a, 0x06, - 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x42, 0x0a, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x18, + 0x74, 0x68, 0x75, 0x62, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x2e, 0x53, 0x74, 0x61, + 0x74, 0x75, 0x73, 0x2e, 0x52, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x79, 0x52, 0x0a, + 0x72, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x79, 0x12, 0x4b, 0x0a, 0x08, 0x61, 0x6e, + 0x61, 0x6c, 0x79, 0x73, 0x69, 0x73, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2f, 0x2e, 0x49, + 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, + 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x2e, 0x53, 0x74, + 0x61, 0x74, 0x75, 0x73, 0x2e, 0x41, 0x6e, 0x61, 0x6c, 0x79, 0x73, 0x69, 0x73, 0x52, 0x08, 0x61, + 0x6e, 0x61, 0x6c, 0x79, 0x73, 0x69, 0x73, 0x12, 0x54, 0x0a, 0x0b, 0x70, 0x65, 0x72, 0x6d, 0x69, + 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x32, 0x2e, 0x49, + 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, + 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x2e, 0x53, 0x74, + 0x61, 0x74, 0x75, 0x73, 0x2e, 0x50, 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, + 0x52, 0x0b, 0x70, 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x1a, 0x4b, 0x0a, + 0x05, 0x43, 0x61, 0x63, 0x68, 0x65, 0x12, 0x42, 0x0a, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2c, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x2e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x2e, 0x53, 0x74, - 0x61, 0x74, 0x65, 0x52, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x73, 0x74, - 0x61, 0x74, 0x65, 0x5f, 0x72, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, - 0x52, 0x0b, 0x73, 0x74, 0x61, 0x74, 0x65, 0x52, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x12, 0x42, 0x0a, - 0x05, 0x63, 0x61, 0x63, 0x68, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2c, 0x2e, 0x49, + 0x61, 0x74, 0x65, 0x52, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x1a, 0x53, 0x0a, 0x0d, 0x41, 0x72, + 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x53, 0x74, 0x6f, 0x72, 0x65, 0x12, 0x42, 0x0a, 0x05, 0x73, + 0x74, 0x61, 0x74, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2c, 0x2e, 0x49, 0x6e, 0x74, + 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, + 0x68, 0x75, 0x62, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x2e, 0x53, 0x74, 0x61, 0x74, + 0x75, 0x73, 0x2e, 0x53, 0x74, 0x61, 0x74, 0x65, 0x52, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x1a, + 0x50, 0x0a, 0x0a, 0x52, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x79, 0x12, 0x42, 0x0a, + 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2c, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x2e, 0x53, 0x74, - 0x61, 0x74, 0x75, 0x73, 0x2e, 0x43, 0x61, 0x63, 0x68, 0x65, 0x52, 0x05, 0x63, 0x61, 0x63, 0x68, - 0x65, 0x12, 0x5b, 0x0a, 0x0e, 0x61, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x5f, 0x73, 0x74, - 0x6f, 0x72, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x34, 0x2e, 0x49, 0x6e, 0x74, 0x65, - 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, - 0x75, 0x62, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x2e, 0x53, 0x74, 0x61, 0x74, 0x75, - 0x73, 0x2e, 0x41, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x53, 0x74, 0x6f, 0x72, 0x65, 0x52, - 0x0d, 0x61, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x53, 0x74, 0x6f, 0x72, 0x65, 0x12, 0x51, - 0x0a, 0x0a, 0x72, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x79, 0x18, 0x05, 0x20, 0x01, - 0x28, 0x0b, 0x32, 0x31, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, - 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x50, 0x72, 0x6f, 0x6a, - 0x65, 0x63, 0x74, 0x2e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x2e, 0x52, 0x65, 0x70, 0x6f, 0x73, - 0x69, 0x74, 0x6f, 0x72, 0x79, 0x52, 0x0a, 0x72, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, - 0x79, 0x12, 0x4b, 0x0a, 0x08, 0x61, 0x6e, 0x61, 0x6c, 0x79, 0x73, 0x69, 0x73, 0x18, 0x06, 0x20, - 0x01, 0x28, 0x0b, 0x32, 0x2f, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, - 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x50, 0x72, 0x6f, - 0x6a, 0x65, 0x63, 0x74, 0x2e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x2e, 0x41, 0x6e, 0x61, 0x6c, - 0x79, 0x73, 0x69, 0x73, 0x52, 0x08, 0x61, 0x6e, 0x61, 0x6c, 0x79, 0x73, 0x69, 0x73, 0x12, 0x54, - 0x0a, 0x0b, 0x70, 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x07, 0x20, - 0x01, 0x28, 0x0b, 0x32, 0x32, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, - 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x50, 0x72, 0x6f, - 0x6a, 0x65, 0x63, 0x74, 0x2e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x2e, 0x50, 0x65, 0x72, 0x6d, - 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x0b, 0x70, 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73, - 0x69, 0x6f, 0x6e, 0x73, 0x1a, 0x4b, 0x0a, 0x05, 0x43, 0x61, 0x63, 0x68, 0x65, 0x12, 0x42, 0x0a, + 0x61, 0x74, 0x75, 0x73, 0x2e, 0x53, 0x74, 0x61, 0x74, 0x65, 0x52, 0x05, 0x73, 0x74, 0x61, 0x74, + 0x65, 0x1a, 0x4e, 0x0a, 0x08, 0x41, 0x6e, 0x61, 0x6c, 0x79, 0x73, 0x69, 0x73, 0x12, 0x42, 0x0a, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2c, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x2e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x2e, 0x53, 0x74, 0x61, 0x74, 0x65, 0x52, 0x05, 0x73, 0x74, 0x61, 0x74, - 0x65, 0x1a, 0x53, 0x0a, 0x0d, 0x41, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x53, 0x74, 0x6f, - 0x72, 0x65, 0x12, 0x42, 0x0a, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, - 0x0e, 0x32, 0x2c, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, - 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, - 0x63, 0x74, 0x2e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x2e, 0x53, 0x74, 0x61, 0x74, 0x65, 0x52, - 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x1a, 0x50, 0x0a, 0x0a, 0x52, 0x65, 0x70, 0x6f, 0x73, 0x69, - 0x74, 0x6f, 0x72, 0x79, 0x12, 0x42, 0x0a, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x18, 0x01, 0x20, - 0x01, 0x28, 0x0e, 0x32, 0x2c, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, - 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x50, 0x72, 0x6f, - 0x6a, 0x65, 0x63, 0x74, 0x2e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x2e, 0x53, 0x74, 0x61, 0x74, - 0x65, 0x52, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x1a, 0x4e, 0x0a, 0x08, 0x41, 0x6e, 0x61, 0x6c, - 0x79, 0x73, 0x69, 0x73, 0x12, 0x42, 0x0a, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x18, 0x01, 0x20, - 0x01, 0x28, 0x0e, 0x32, 0x2c, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, - 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x50, 0x72, 0x6f, - 0x6a, 0x65, 0x63, 0x74, 0x2e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x2e, 0x53, 0x74, 0x61, 0x74, - 0x65, 0x52, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x1a, 0x51, 0x0a, 0x0b, 0x50, 0x65, 0x72, 0x6d, - 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x42, 0x0a, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, - 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2c, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, - 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, - 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x2e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x2e, 0x53, - 0x74, 0x61, 0x74, 0x65, 0x52, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x22, 0x2f, 0x0a, 0x05, 0x53, - 0x74, 0x61, 0x74, 0x65, 0x12, 0x10, 0x0a, 0x0c, 0x49, 0x4e, 0x49, 0x54, 0x49, 0x41, 0x4c, 0x49, - 0x5a, 0x49, 0x4e, 0x47, 0x10, 0x00, 0x12, 0x09, 0x0a, 0x05, 0x52, 0x45, 0x41, 0x44, 0x59, 0x10, - 0x01, 0x12, 0x09, 0x0a, 0x05, 0x45, 0x52, 0x52, 0x4f, 0x52, 0x10, 0x02, 0x22, 0xcf, 0x01, 0x0a, - 0x0b, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x3f, 0x0a, 0x08, + 0x65, 0x1a, 0x51, 0x0a, 0x0b, 0x50, 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, + 0x12, 0x42, 0x0a, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, + 0x2c, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, + 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, + 0x2e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x2e, 0x53, 0x74, 0x61, 0x74, 0x65, 0x52, 0x05, 0x73, + 0x74, 0x61, 0x74, 0x65, 0x22, 0x3f, 0x0a, 0x05, 0x53, 0x74, 0x61, 0x74, 0x65, 0x12, 0x10, 0x0a, + 0x0c, 0x49, 0x4e, 0x49, 0x54, 0x49, 0x41, 0x4c, 0x49, 0x5a, 0x49, 0x4e, 0x47, 0x10, 0x00, 0x12, + 0x09, 0x0a, 0x05, 0x52, 0x45, 0x41, 0x44, 0x59, 0x10, 0x01, 0x12, 0x09, 0x0a, 0x05, 0x45, 0x52, + 0x52, 0x4f, 0x52, 0x10, 0x02, 0x12, 0x0e, 0x0a, 0x0a, 0x4f, 0x4e, 0x42, 0x4f, 0x41, 0x52, 0x44, + 0x49, 0x4e, 0x47, 0x10, 0x03, 0x22, 0xf2, 0x01, 0x0a, 0x0b, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, + 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x3f, 0x0a, 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, + 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x23, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, + 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, + 0x2e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x4d, 0x65, 0x74, 0x61, 0x52, 0x08, 0x6d, 0x65, + 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x12, 0x49, 0x0a, 0x0a, 0x70, 0x61, 0x67, 0x69, 0x6e, 0x61, + 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x29, 0x2e, 0x49, 0x6e, 0x74, + 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, + 0x68, 0x75, 0x62, 0x2e, 0x50, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, + 0x71, 0x75, 0x65, 0x73, 0x74, 0x52, 0x0a, 0x70, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, + 0x6e, 0x12, 0x19, 0x0a, 0x08, 0x6f, 0x77, 0x6e, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, + 0x01, 0x28, 0x09, 0x52, 0x07, 0x6f, 0x77, 0x6e, 0x65, 0x72, 0x49, 0x64, 0x12, 0x19, 0x0a, 0x08, + 0x72, 0x65, 0x70, 0x6f, 0x5f, 0x75, 0x72, 0x6c, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, + 0x72, 0x65, 0x70, 0x6f, 0x55, 0x72, 0x6c, 0x12, 0x21, 0x0a, 0x0c, 0x73, 0x6f, 0x66, 0x74, 0x5f, + 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0b, 0x73, + 0x6f, 0x66, 0x74, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x64, 0x22, 0xd9, 0x01, 0x0a, 0x0c, 0x4c, + 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x40, 0x0a, 0x08, 0x6d, + 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x24, 0x2e, + 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, + 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x4d, + 0x65, 0x74, 0x61, 0x52, 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x12, 0x4a, 0x0a, + 0x0a, 0x70, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, + 0x0b, 0x32, 0x2a, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, + 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x50, 0x61, 0x67, 0x69, 0x6e, + 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x52, 0x0a, 0x70, + 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x3b, 0x0a, 0x08, 0x70, 0x72, 0x6f, + 0x6a, 0x65, 0x63, 0x74, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1f, 0x2e, 0x49, 0x6e, + 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, + 0x74, 0x68, 0x75, 0x62, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x52, 0x08, 0x70, 0x72, + 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x73, 0x22, 0xff, 0x02, 0x0a, 0x11, 0x4c, 0x69, 0x73, 0x74, 0x4b, + 0x65, 0x79, 0x73, 0x65, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x3f, 0x0a, 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x23, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x4d, - 0x65, 0x74, 0x61, 0x52, 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x12, 0x49, 0x0a, - 0x0a, 0x70, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, - 0x0b, 0x32, 0x29, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, - 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x50, 0x61, 0x67, 0x69, 0x6e, - 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x52, 0x0a, 0x70, 0x61, - 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x19, 0x0a, 0x08, 0x6f, 0x77, 0x6e, 0x65, - 0x72, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6f, 0x77, 0x6e, 0x65, - 0x72, 0x49, 0x64, 0x12, 0x19, 0x0a, 0x08, 0x72, 0x65, 0x70, 0x6f, 0x5f, 0x75, 0x72, 0x6c, 0x18, - 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x72, 0x65, 0x70, 0x6f, 0x55, 0x72, 0x6c, 0x22, 0xd9, - 0x01, 0x0a, 0x0c, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, + 0x65, 0x74, 0x61, 0x52, 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x12, 0x1b, 0x0a, + 0x09, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, + 0x52, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x61, + 0x67, 0x65, 0x5f, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, + 0x70, 0x61, 0x67, 0x65, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x12, 0x51, 0x0a, 0x09, 0x64, 0x69, 0x72, + 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x33, 0x2e, 0x49, + 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, + 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x4b, 0x65, 0x79, 0x73, 0x65, 0x74, + 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x44, 0x69, 0x72, 0x65, 0x63, 0x74, 0x69, 0x6f, + 0x6e, 0x52, 0x09, 0x64, 0x69, 0x72, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x19, 0x0a, 0x08, + 0x6f, 0x77, 0x6e, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, + 0x6f, 0x77, 0x6e, 0x65, 0x72, 0x49, 0x64, 0x12, 0x19, 0x0a, 0x08, 0x72, 0x65, 0x70, 0x6f, 0x5f, + 0x75, 0x72, 0x6c, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x72, 0x65, 0x70, 0x6f, 0x55, + 0x72, 0x6c, 0x12, 0x3f, 0x0a, 0x0d, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x66, + 0x74, 0x65, 0x72, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, + 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, + 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0c, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x41, 0x66, + 0x74, 0x65, 0x72, 0x22, 0x23, 0x0a, 0x09, 0x44, 0x69, 0x72, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, + 0x12, 0x08, 0x0a, 0x04, 0x4e, 0x45, 0x58, 0x54, 0x10, 0x00, 0x12, 0x0c, 0x0a, 0x08, 0x50, 0x52, + 0x45, 0x56, 0x49, 0x4f, 0x55, 0x53, 0x10, 0x01, 0x22, 0xeb, 0x01, 0x0a, 0x12, 0x4c, 0x69, 0x73, + 0x74, 0x4b, 0x65, 0x79, 0x73, 0x65, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x40, 0x0a, 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x24, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x4d, 0x65, 0x74, 0x61, 0x52, 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, - 0x61, 0x12, 0x4a, 0x0a, 0x0a, 0x70, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, - 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2a, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, - 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x50, - 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, - 0x65, 0x52, 0x0a, 0x70, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x3b, 0x0a, - 0x08, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, - 0x1f, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, - 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, - 0x52, 0x08, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x73, 0x22, 0x92, 0x01, 0x0a, 0x0f, 0x44, - 0x65, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x3f, - 0x0a, 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, - 0x32, 0x23, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, - 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, - 0x74, 0x4d, 0x65, 0x74, 0x61, 0x52, 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x12, - 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, - 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, - 0x61, 0x6d, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x65, 0x64, 0x18, - 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x08, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x65, 0x64, 0x22, - 0x8f, 0x01, 0x0a, 0x10, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x52, 0x65, 0x73, 0x70, - 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x40, 0x0a, 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, - 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x24, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, + 0x61, 0x12, 0x3b, 0x0a, 0x08, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x73, 0x18, 0x02, 0x20, + 0x03, 0x28, 0x0b, 0x32, 0x1f, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, + 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x50, 0x72, 0x6f, + 0x6a, 0x65, 0x63, 0x74, 0x52, 0x08, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x73, 0x12, 0x26, + 0x0a, 0x0f, 0x6e, 0x65, 0x78, 0x74, 0x5f, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x74, 0x6f, 0x6b, 0x65, + 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x6e, 0x65, 0x78, 0x74, 0x50, 0x61, 0x67, + 0x65, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x12, 0x2e, 0x0a, 0x13, 0x70, 0x72, 0x65, 0x76, 0x69, 0x6f, + 0x75, 0x73, 0x5f, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x18, 0x04, 0x20, + 0x01, 0x28, 0x09, 0x52, 0x11, 0x70, 0x72, 0x65, 0x76, 0x69, 0x6f, 0x75, 0x73, 0x50, 0x61, 0x67, + 0x65, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x22, 0xb5, 0x01, 0x0a, 0x0f, 0x44, 0x65, 0x73, 0x63, 0x72, + 0x69, 0x62, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x3f, 0x0a, 0x08, 0x6d, 0x65, + 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x23, 0x2e, 0x49, + 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, + 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x4d, 0x65, 0x74, + 0x61, 0x52, 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x12, 0x0e, 0x0a, 0x02, 0x69, + 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, + 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, + 0x1a, 0x0a, 0x08, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x65, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, + 0x08, 0x52, 0x08, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x65, 0x64, 0x12, 0x21, 0x0a, 0x0c, 0x73, + 0x6f, 0x66, 0x74, 0x5f, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, + 0x08, 0x52, 0x0b, 0x73, 0x6f, 0x66, 0x74, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x64, 0x22, 0x8f, + 0x01, 0x0a, 0x10, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, + 0x6e, 0x73, 0x65, 0x12, 0x40, 0x0a, 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x18, + 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x24, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, + 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x52, + 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x4d, 0x65, 0x74, 0x61, 0x52, 0x08, 0x6d, 0x65, 0x74, + 0x61, 0x64, 0x61, 0x74, 0x61, 0x12, 0x39, 0x0a, 0x07, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, + 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1f, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, - 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x4d, 0x65, 0x74, 0x61, 0x52, 0x08, 0x6d, 0x65, - 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x12, 0x39, 0x0a, 0x07, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, - 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1f, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, - 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, - 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x52, 0x07, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, - 0x74, 0x22, 0x68, 0x0a, 0x13, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x4d, 0x61, 0x6e, + 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x52, 0x07, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, + 0x22, 0x8b, 0x01, 0x0a, 0x13, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x4d, 0x61, 0x6e, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x3f, 0x0a, 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x23, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x4d, 0x65, 0x74, 0x61, 0x52, 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x12, 0x10, 0x0a, 0x03, 0x69, 0x64, 0x73, - 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x03, 0x69, 0x64, 0x73, 0x22, 0x95, 0x01, 0x0a, 0x14, - 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x4d, 0x61, 0x6e, 0x79, 0x52, 0x65, 0x73, 0x70, - 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x40, 0x0a, 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, - 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x24, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, + 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x03, 0x69, 0x64, 0x73, 0x12, 0x21, 0x0a, 0x0c, 0x73, + 0x6f, 0x66, 0x74, 0x5f, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, + 0x08, 0x52, 0x0b, 0x73, 0x6f, 0x66, 0x74, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x64, 0x22, 0x95, + 0x01, 0x0a, 0x14, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x4d, 0x61, 0x6e, 0x79, 0x52, + 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x40, 0x0a, 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, + 0x61, 0x74, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x24, 0x2e, 0x49, 0x6e, 0x74, 0x65, + 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, + 0x75, 0x62, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x4d, 0x65, 0x74, 0x61, 0x52, + 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x12, 0x3b, 0x0a, 0x08, 0x70, 0x72, 0x6f, + 0x6a, 0x65, 0x63, 0x74, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1f, 0x2e, 0x49, 0x6e, + 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, + 0x74, 0x68, 0x75, 0x62, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x52, 0x08, 0x70, 0x72, + 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x73, 0x22, 0xb4, 0x01, 0x0a, 0x0d, 0x43, 0x72, 0x65, 0x61, 0x74, + 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x3f, 0x0a, 0x08, 0x6d, 0x65, 0x74, 0x61, + 0x64, 0x61, 0x74, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x23, 0x2e, 0x49, 0x6e, 0x74, + 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, + 0x68, 0x75, 0x62, 0x2e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x4d, 0x65, 0x74, 0x61, 0x52, + 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x12, 0x39, 0x0a, 0x07, 0x70, 0x72, 0x6f, + 0x6a, 0x65, 0x63, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1f, 0x2e, 0x49, 0x6e, 0x74, + 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, + 0x68, 0x75, 0x62, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x52, 0x07, 0x70, 0x72, 0x6f, + 0x6a, 0x65, 0x63, 0x74, 0x12, 0x27, 0x0a, 0x0f, 0x73, 0x6b, 0x69, 0x70, 0x5f, 0x6f, 0x6e, 0x62, + 0x6f, 0x61, 0x72, 0x64, 0x69, 0x6e, 0x67, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0e, 0x73, + 0x6b, 0x69, 0x70, 0x4f, 0x6e, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x69, 0x6e, 0x67, 0x22, 0x8d, 0x01, + 0x0a, 0x0e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, + 0x12, 0x40, 0x0a, 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x18, 0x01, 0x20, 0x01, + 0x28, 0x0b, 0x32, 0x24, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, + 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x52, 0x65, 0x73, 0x70, + 0x6f, 0x6e, 0x73, 0x65, 0x4d, 0x65, 0x74, 0x61, 0x52, 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, + 0x74, 0x61, 0x12, 0x39, 0x0a, 0x07, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x18, 0x02, 0x20, + 0x01, 0x28, 0x0b, 0x32, 0x1f, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, + 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x50, 0x72, 0x6f, + 0x6a, 0x65, 0x63, 0x74, 0x52, 0x07, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x22, 0xc6, 0x01, + 0x0a, 0x0d, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, + 0x3f, 0x0a, 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, + 0x0b, 0x32, 0x23, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, + 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x52, 0x65, 0x71, 0x75, 0x65, + 0x73, 0x74, 0x4d, 0x65, 0x74, 0x61, 0x52, 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, + 0x12, 0x39, 0x0a, 0x07, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, + 0x0b, 0x32, 0x1f, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, + 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, + 0x63, 0x74, 0x52, 0x07, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x12, 0x39, 0x0a, 0x19, 0x6f, + 0x6d, 0x69, 0x74, 0x5f, 0x73, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x72, 0x73, 0x5f, 0x61, + 0x6e, 0x64, 0x5f, 0x74, 0x61, 0x73, 0x6b, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x16, + 0x6f, 0x6d, 0x69, 0x74, 0x53, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x72, 0x73, 0x41, 0x6e, + 0x64, 0x54, 0x61, 0x73, 0x6b, 0x73, 0x22, 0x8d, 0x01, 0x0a, 0x0e, 0x55, 0x70, 0x64, 0x61, 0x74, + 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x40, 0x0a, 0x08, 0x6d, 0x65, 0x74, + 0x61, 0x64, 0x61, 0x74, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x24, 0x2e, 0x49, 0x6e, + 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, + 0x74, 0x68, 0x75, 0x62, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x4d, 0x65, 0x74, + 0x61, 0x52, 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x12, 0x39, 0x0a, 0x07, 0x70, + 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1f, 0x2e, 0x49, + 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, + 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x52, 0x07, 0x70, + 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x22, 0x75, 0x0a, 0x0e, 0x44, 0x65, 0x73, 0x74, 0x72, 0x6f, + 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x3f, 0x0a, 0x08, 0x6d, 0x65, 0x74, 0x61, + 0x64, 0x61, 0x74, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x23, 0x2e, 0x49, 0x6e, 0x74, + 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, + 0x68, 0x75, 0x62, 0x2e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x4d, 0x65, 0x74, 0x61, 0x52, + 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, + 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, + 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x22, 0x53, 0x0a, + 0x0f, 0x44, 0x65, 0x73, 0x74, 0x72, 0x6f, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, + 0x12, 0x40, 0x0a, 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x18, 0x01, 0x20, 0x01, + 0x28, 0x0b, 0x32, 0x24, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, + 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x52, 0x65, 0x73, 0x70, + 0x6f, 0x6e, 0x73, 0x65, 0x4d, 0x65, 0x74, 0x61, 0x52, 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, + 0x74, 0x61, 0x22, 0x61, 0x0a, 0x0e, 0x52, 0x65, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x52, 0x65, 0x71, + 0x75, 0x65, 0x73, 0x74, 0x12, 0x3f, 0x0a, 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, + 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x23, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, - 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x4d, 0x65, 0x74, 0x61, 0x52, 0x08, 0x6d, 0x65, - 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x12, 0x3b, 0x0a, 0x08, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, - 0x74, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1f, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, - 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, - 0x62, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x52, 0x08, 0x70, 0x72, 0x6f, 0x6a, 0x65, - 0x63, 0x74, 0x73, 0x22, 0x8b, 0x01, 0x0a, 0x0d, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x52, 0x65, + 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x4d, 0x65, 0x74, 0x61, 0x52, 0x08, 0x6d, 0x65, 0x74, + 0x61, 0x64, 0x61, 0x74, 0x61, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, + 0x09, 0x52, 0x02, 0x69, 0x64, 0x22, 0x53, 0x0a, 0x0f, 0x52, 0x65, 0x73, 0x74, 0x6f, 0x72, 0x65, + 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x40, 0x0a, 0x08, 0x6d, 0x65, 0x74, 0x61, + 0x64, 0x61, 0x74, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x24, 0x2e, 0x49, 0x6e, 0x74, + 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, + 0x68, 0x75, 0x62, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x4d, 0x65, 0x74, 0x61, + 0x52, 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x22, 0x5f, 0x0a, 0x0c, 0x55, 0x73, + 0x65, 0x72, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x3f, 0x0a, 0x08, 0x6d, 0x65, + 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x23, 0x2e, 0x49, + 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, + 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x4d, 0x65, 0x74, + 0x61, 0x52, 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x12, 0x0e, 0x0a, 0x02, 0x69, + 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x22, 0x7f, 0x0a, 0x0d, 0x55, + 0x73, 0x65, 0x72, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x40, 0x0a, 0x08, + 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x24, + 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, + 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, + 0x4d, 0x65, 0x74, 0x61, 0x52, 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x12, 0x2c, + 0x0a, 0x05, 0x75, 0x73, 0x65, 0x72, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x16, 0x2e, + 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x55, 0x73, 0x65, 0x72, + 0x2e, 0x55, 0x73, 0x65, 0x72, 0x52, 0x05, 0x75, 0x73, 0x65, 0x72, 0x73, 0x22, 0x68, 0x0a, 0x15, + 0x43, 0x68, 0x65, 0x63, 0x6b, 0x44, 0x65, 0x70, 0x6c, 0x6f, 0x79, 0x4b, 0x65, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x3f, 0x0a, 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x23, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x4d, 0x65, 0x74, 0x61, 0x52, 0x08, 0x6d, 0x65, - 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x12, 0x39, 0x0a, 0x07, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, - 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1f, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, + 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, + 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x22, 0xd3, 0x02, 0x0a, 0x16, 0x43, 0x68, 0x65, 0x63, 0x6b, + 0x44, 0x65, 0x70, 0x6c, 0x6f, 0x79, 0x4b, 0x65, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, + 0x65, 0x12, 0x40, 0x0a, 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x18, 0x01, 0x20, + 0x01, 0x28, 0x0b, 0x32, 0x24, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, + 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x52, 0x65, 0x73, + 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x4d, 0x65, 0x74, 0x61, 0x52, 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, + 0x61, 0x74, 0x61, 0x12, 0x57, 0x0a, 0x0a, 0x64, 0x65, 0x70, 0x6c, 0x6f, 0x79, 0x5f, 0x6b, 0x65, + 0x79, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x38, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, - 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x52, 0x07, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, - 0x74, 0x22, 0x8d, 0x01, 0x0a, 0x0e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, - 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x40, 0x0a, 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, - 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x24, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, - 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, - 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x4d, 0x65, 0x74, 0x61, 0x52, 0x08, 0x6d, 0x65, - 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x12, 0x39, 0x0a, 0x07, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, - 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1f, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, - 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, - 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x52, 0x07, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, - 0x74, 0x22, 0x8b, 0x01, 0x0a, 0x0d, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, - 0x65, 0x73, 0x74, 0x12, 0x3f, 0x0a, 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x18, - 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x23, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, - 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x52, - 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x4d, 0x65, 0x74, 0x61, 0x52, 0x08, 0x6d, 0x65, 0x74, 0x61, - 0x64, 0x61, 0x74, 0x61, 0x12, 0x39, 0x0a, 0x07, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x18, - 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1f, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, - 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x50, - 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x52, 0x07, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x22, - 0x8d, 0x01, 0x0a, 0x0e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, - 0x73, 0x65, 0x12, 0x40, 0x0a, 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x18, 0x01, - 0x20, 0x01, 0x28, 0x0b, 0x32, 0x24, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, - 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x52, 0x65, - 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x4d, 0x65, 0x74, 0x61, 0x52, 0x08, 0x6d, 0x65, 0x74, 0x61, - 0x64, 0x61, 0x74, 0x61, 0x12, 0x39, 0x0a, 0x07, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x18, - 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1f, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, - 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x50, - 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x52, 0x07, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x22, - 0x75, 0x0a, 0x0e, 0x44, 0x65, 0x73, 0x74, 0x72, 0x6f, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, - 0x74, 0x12, 0x3f, 0x0a, 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x18, 0x01, 0x20, - 0x01, 0x28, 0x0b, 0x32, 0x23, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, - 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x52, 0x65, 0x71, - 0x75, 0x65, 0x73, 0x74, 0x4d, 0x65, 0x74, 0x61, 0x52, 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, - 0x74, 0x61, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, - 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, - 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x22, 0x53, 0x0a, 0x0f, 0x44, 0x65, 0x73, 0x74, 0x72, 0x6f, - 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x40, 0x0a, 0x08, 0x6d, 0x65, 0x74, - 0x61, 0x64, 0x61, 0x74, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x24, 0x2e, 0x49, 0x6e, - 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, - 0x74, 0x68, 0x75, 0x62, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x4d, 0x65, 0x74, - 0x61, 0x52, 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x22, 0x5f, 0x0a, 0x0c, 0x55, - 0x73, 0x65, 0x72, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x3f, 0x0a, 0x08, 0x6d, - 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x23, 0x2e, - 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, - 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x4d, 0x65, - 0x74, 0x61, 0x52, 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x12, 0x0e, 0x0a, 0x02, - 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x22, 0x7f, 0x0a, 0x0d, - 0x55, 0x73, 0x65, 0x72, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x40, 0x0a, - 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, - 0x24, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, - 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, - 0x65, 0x4d, 0x65, 0x74, 0x61, 0x52, 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x12, - 0x2c, 0x0a, 0x05, 0x75, 0x73, 0x65, 0x72, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x16, - 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x55, 0x73, 0x65, - 0x72, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x52, 0x05, 0x75, 0x73, 0x65, 0x72, 0x73, 0x22, 0x68, 0x0a, - 0x15, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x44, 0x65, 0x70, 0x6c, 0x6f, 0x79, 0x4b, 0x65, 0x79, 0x52, - 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x3f, 0x0a, 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, - 0x74, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x23, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, - 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, - 0x62, 0x2e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x4d, 0x65, 0x74, 0x61, 0x52, 0x08, 0x6d, - 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x02, 0x20, - 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x22, 0xb3, 0x02, 0x0a, 0x16, 0x43, 0x68, 0x65, 0x63, - 0x6b, 0x44, 0x65, 0x70, 0x6c, 0x6f, 0x79, 0x4b, 0x65, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, - 0x73, 0x65, 0x12, 0x40, 0x0a, 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x18, 0x01, - 0x20, 0x01, 0x28, 0x0b, 0x32, 0x24, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, - 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x52, 0x65, - 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x4d, 0x65, 0x74, 0x61, 0x52, 0x08, 0x6d, 0x65, 0x74, 0x61, - 0x64, 0x61, 0x74, 0x61, 0x12, 0x57, 0x0a, 0x0a, 0x64, 0x65, 0x70, 0x6c, 0x6f, 0x79, 0x5f, 0x6b, - 0x65, 0x79, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x38, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, - 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, - 0x62, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x44, 0x65, 0x70, 0x6c, 0x6f, 0x79, 0x4b, 0x65, 0x79, - 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x44, 0x65, 0x70, 0x6c, 0x6f, 0x79, 0x4b, - 0x65, 0x79, 0x52, 0x09, 0x64, 0x65, 0x70, 0x6c, 0x6f, 0x79, 0x4b, 0x65, 0x79, 0x1a, 0x7e, 0x0a, + 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x44, 0x65, 0x70, 0x6c, 0x6f, 0x79, 0x4b, 0x65, 0x79, 0x52, + 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x44, 0x65, 0x70, 0x6c, 0x6f, 0x79, 0x4b, 0x65, + 0x79, 0x52, 0x09, 0x64, 0x65, 0x70, 0x6c, 0x6f, 0x79, 0x4b, 0x65, 0x79, 0x1a, 0x9d, 0x01, 0x0a, 0x09, 0x44, 0x65, 0x70, 0x6c, 0x6f, 0x79, 0x4b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x66, 0x69, 0x6e, 0x67, 0x65, 0x72, 0x70, 0x72, 0x69, 0x6e, 0x74, 0x18, @@ -4592,26 +5328,28 @@ var file_projecthub_proto_rawDesc = []byte{ 0x6e, 0x74, 0x12, 0x39, 0x0a, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, - 0x6d, 0x70, 0x52, 0x09, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x41, 0x74, 0x22, 0x6d, 0x0a, - 0x1a, 0x52, 0x65, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x44, 0x65, 0x70, 0x6c, 0x6f, - 0x79, 0x4b, 0x65, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x3f, 0x0a, 0x08, 0x6d, - 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x23, 0x2e, + 0x6d, 0x70, 0x52, 0x09, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x41, 0x74, 0x12, 0x1d, 0x0a, + 0x0a, 0x70, 0x75, 0x62, 0x6c, 0x69, 0x63, 0x5f, 0x6b, 0x65, 0x79, 0x18, 0x04, 0x20, 0x01, 0x28, + 0x09, 0x52, 0x09, 0x70, 0x75, 0x62, 0x6c, 0x69, 0x63, 0x4b, 0x65, 0x79, 0x22, 0x6d, 0x0a, 0x1a, + 0x52, 0x65, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x44, 0x65, 0x70, 0x6c, 0x6f, 0x79, + 0x4b, 0x65, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x3f, 0x0a, 0x08, 0x6d, 0x65, + 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x23, 0x2e, 0x49, + 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, + 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x4d, 0x65, 0x74, + 0x61, 0x52, 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x12, 0x0e, 0x0a, 0x02, 0x69, + 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x22, 0xdd, 0x02, 0x0a, 0x1b, + 0x52, 0x65, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x44, 0x65, 0x70, 0x6c, 0x6f, 0x79, + 0x4b, 0x65, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x40, 0x0a, 0x08, 0x6d, + 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x24, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, - 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x4d, 0x65, - 0x74, 0x61, 0x52, 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x12, 0x0e, 0x0a, 0x02, - 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x22, 0xbd, 0x02, 0x0a, - 0x1b, 0x52, 0x65, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x44, 0x65, 0x70, 0x6c, 0x6f, - 0x79, 0x4b, 0x65, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x40, 0x0a, 0x08, - 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x24, - 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, - 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, - 0x4d, 0x65, 0x74, 0x61, 0x52, 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x12, 0x5c, - 0x0a, 0x0a, 0x64, 0x65, 0x70, 0x6c, 0x6f, 0x79, 0x5f, 0x6b, 0x65, 0x79, 0x18, 0x02, 0x20, 0x01, - 0x28, 0x0b, 0x32, 0x3d, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, - 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x52, 0x65, 0x67, 0x65, - 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x44, 0x65, 0x70, 0x6c, 0x6f, 0x79, 0x4b, 0x65, 0x79, 0x52, - 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x44, 0x65, 0x70, 0x6c, 0x6f, 0x79, 0x4b, 0x65, - 0x79, 0x52, 0x09, 0x64, 0x65, 0x70, 0x6c, 0x6f, 0x79, 0x4b, 0x65, 0x79, 0x1a, 0x7e, 0x0a, 0x09, + 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x4d, + 0x65, 0x74, 0x61, 0x52, 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x12, 0x5c, 0x0a, + 0x0a, 0x64, 0x65, 0x70, 0x6c, 0x6f, 0x79, 0x5f, 0x6b, 0x65, 0x79, 0x18, 0x02, 0x20, 0x01, 0x28, + 0x0b, 0x32, 0x3d, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, + 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x52, 0x65, 0x67, 0x65, 0x6e, + 0x65, 0x72, 0x61, 0x74, 0x65, 0x44, 0x65, 0x70, 0x6c, 0x6f, 0x79, 0x4b, 0x65, 0x79, 0x52, 0x65, + 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x44, 0x65, 0x70, 0x6c, 0x6f, 0x79, 0x4b, 0x65, 0x79, + 0x52, 0x09, 0x64, 0x65, 0x70, 0x6c, 0x6f, 0x79, 0x4b, 0x65, 0x79, 0x1a, 0x9d, 0x01, 0x0a, 0x09, 0x44, 0x65, 0x70, 0x6c, 0x6f, 0x79, 0x4b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x66, 0x69, 0x6e, 0x67, 0x65, 0x72, 0x70, 0x72, 0x69, 0x6e, 0x74, 0x18, 0x02, @@ -4619,88 +5357,134 @@ var file_projecthub_proto_rawDesc = []byte{ 0x74, 0x12, 0x39, 0x0a, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, - 0x70, 0x52, 0x09, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x41, 0x74, 0x22, 0x66, 0x0a, 0x13, - 0x43, 0x68, 0x65, 0x63, 0x6b, 0x57, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x52, 0x65, 0x71, 0x75, - 0x65, 0x73, 0x74, 0x12, 0x3f, 0x0a, 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x18, - 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x23, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, - 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x52, - 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x4d, 0x65, 0x74, 0x61, 0x52, 0x08, 0x6d, 0x65, 0x74, 0x61, - 0x64, 0x61, 0x74, 0x61, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, - 0x52, 0x02, 0x69, 0x64, 0x22, 0x93, 0x01, 0x0a, 0x14, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x57, 0x65, - 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x40, 0x0a, - 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, - 0x24, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, - 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, - 0x65, 0x4d, 0x65, 0x74, 0x61, 0x52, 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x12, - 0x39, 0x0a, 0x07, 0x77, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, - 0x32, 0x1f, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, - 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x57, 0x65, 0x62, 0x68, 0x6f, 0x6f, - 0x6b, 0x52, 0x07, 0x77, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x22, 0x6b, 0x0a, 0x18, 0x52, 0x65, - 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x57, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x52, - 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x3f, 0x0a, 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, - 0x74, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x23, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, - 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, - 0x62, 0x2e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x4d, 0x65, 0x74, 0x61, 0x52, 0x08, 0x6d, - 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x02, 0x20, - 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x22, 0x98, 0x01, 0x0a, 0x19, 0x52, 0x65, 0x67, 0x65, - 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x57, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x52, 0x65, 0x73, + 0x70, 0x52, 0x09, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x41, 0x74, 0x12, 0x1d, 0x0a, 0x0a, + 0x70, 0x75, 0x62, 0x6c, 0x69, 0x63, 0x5f, 0x6b, 0x65, 0x79, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, + 0x52, 0x09, 0x70, 0x75, 0x62, 0x6c, 0x69, 0x63, 0x4b, 0x65, 0x79, 0x22, 0x66, 0x0a, 0x13, 0x43, + 0x68, 0x65, 0x63, 0x6b, 0x57, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x52, 0x65, 0x71, 0x75, 0x65, + 0x73, 0x74, 0x12, 0x3f, 0x0a, 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x18, 0x01, + 0x20, 0x01, 0x28, 0x0b, 0x32, 0x23, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, + 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x52, 0x65, + 0x71, 0x75, 0x65, 0x73, 0x74, 0x4d, 0x65, 0x74, 0x61, 0x52, 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, + 0x61, 0x74, 0x61, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, + 0x02, 0x69, 0x64, 0x22, 0x93, 0x01, 0x0a, 0x14, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x57, 0x65, 0x62, + 0x68, 0x6f, 0x6f, 0x6b, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x40, 0x0a, 0x08, + 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x24, + 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, + 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, + 0x4d, 0x65, 0x74, 0x61, 0x52, 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x12, 0x39, + 0x0a, 0x07, 0x77, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, + 0x1f, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, + 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x57, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, + 0x52, 0x07, 0x77, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x22, 0x6b, 0x0a, 0x18, 0x52, 0x65, 0x67, + 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x57, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x52, 0x65, + 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x3f, 0x0a, 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, + 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x23, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, + 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, + 0x2e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x4d, 0x65, 0x74, 0x61, 0x52, 0x08, 0x6d, 0x65, + 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, + 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x22, 0x98, 0x01, 0x0a, 0x19, 0x52, 0x65, 0x67, 0x65, 0x6e, + 0x65, 0x72, 0x61, 0x74, 0x65, 0x57, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x52, 0x65, 0x73, 0x70, + 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x40, 0x0a, 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, + 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x24, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, + 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, + 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x4d, 0x65, 0x74, 0x61, 0x52, 0x08, 0x6d, 0x65, + 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x12, 0x39, 0x0a, 0x07, 0x77, 0x65, 0x62, 0x68, 0x6f, 0x6f, + 0x6b, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1f, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, + 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, + 0x2e, 0x57, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x52, 0x07, 0x77, 0x65, 0x62, 0x68, 0x6f, 0x6f, + 0x6b, 0x22, 0x1b, 0x0a, 0x07, 0x57, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x12, 0x10, 0x0a, 0x03, + 0x75, 0x72, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x75, 0x72, 0x6c, 0x22, 0x85, + 0x01, 0x0a, 0x19, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, + 0x4f, 0x77, 0x6e, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x3f, 0x0a, 0x08, + 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x23, + 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, + 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x4d, + 0x65, 0x74, 0x61, 0x52, 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x12, 0x0e, 0x0a, + 0x02, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x17, 0x0a, + 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, + 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x22, 0x5e, 0x0a, 0x1a, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, + 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x4f, 0x77, 0x6e, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, + 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x40, 0x0a, 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, + 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x24, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, + 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, + 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x4d, 0x65, 0x74, 0x61, 0x52, 0x08, 0x6d, 0x65, + 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x22, 0x92, 0x01, 0x0a, 0x14, 0x46, 0x6f, 0x72, 0x6b, 0x41, + 0x6e, 0x64, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, + 0x3f, 0x0a, 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, + 0x0b, 0x32, 0x23, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, + 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x52, 0x65, 0x71, 0x75, 0x65, + 0x73, 0x74, 0x4d, 0x65, 0x74, 0x61, 0x52, 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, + 0x12, 0x39, 0x0a, 0x07, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, + 0x0b, 0x32, 0x1f, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, + 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, + 0x63, 0x74, 0x52, 0x07, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x22, 0x94, 0x01, 0x0a, 0x15, + 0x46, 0x6f, 0x72, 0x6b, 0x41, 0x6e, 0x64, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x40, 0x0a, 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x24, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x4d, 0x65, 0x74, 0x61, 0x52, 0x08, 0x6d, - 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x12, 0x39, 0x0a, 0x07, 0x77, 0x65, 0x62, 0x68, 0x6f, - 0x6f, 0x6b, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1f, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, + 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x12, 0x39, 0x0a, 0x07, 0x70, 0x72, 0x6f, 0x6a, 0x65, + 0x63, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1f, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, - 0x62, 0x2e, 0x57, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x52, 0x07, 0x77, 0x65, 0x62, 0x68, 0x6f, - 0x6f, 0x6b, 0x22, 0x1b, 0x0a, 0x07, 0x57, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x12, 0x10, 0x0a, - 0x03, 0x75, 0x72, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x75, 0x72, 0x6c, 0x22, - 0x85, 0x01, 0x0a, 0x19, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, - 0x74, 0x4f, 0x77, 0x6e, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x3f, 0x0a, - 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, - 0x23, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, - 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, - 0x4d, 0x65, 0x74, 0x61, 0x52, 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x12, 0x0e, - 0x0a, 0x02, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x17, - 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, - 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x22, 0x5e, 0x0a, 0x1a, 0x43, 0x68, 0x61, 0x6e, 0x67, - 0x65, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x4f, 0x77, 0x6e, 0x65, 0x72, 0x52, 0x65, 0x73, - 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x40, 0x0a, 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, - 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x24, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, + 0x62, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x52, 0x07, 0x70, 0x72, 0x6f, 0x6a, 0x65, + 0x63, 0x74, 0x22, 0x69, 0x0a, 0x16, 0x47, 0x69, 0x74, 0x68, 0x75, 0x62, 0x41, 0x70, 0x70, 0x53, + 0x77, 0x69, 0x74, 0x63, 0x68, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x3f, 0x0a, 0x08, + 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x23, + 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, + 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x4d, + 0x65, 0x74, 0x61, 0x52, 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x12, 0x0e, 0x0a, + 0x02, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x22, 0x5b, 0x0a, + 0x17, 0x47, 0x69, 0x74, 0x68, 0x75, 0x62, 0x41, 0x70, 0x70, 0x53, 0x77, 0x69, 0x74, 0x63, 0x68, + 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x40, 0x0a, 0x08, 0x6d, 0x65, 0x74, 0x61, + 0x64, 0x61, 0x74, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x24, 0x2e, 0x49, 0x6e, 0x74, + 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, + 0x68, 0x75, 0x62, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x4d, 0x65, 0x74, 0x61, + 0x52, 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x22, 0x6a, 0x0a, 0x17, 0x46, 0x69, + 0x6e, 0x69, 0x73, 0x68, 0x4f, 0x6e, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x69, 0x6e, 0x67, 0x52, 0x65, + 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x3f, 0x0a, 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, + 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x23, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, - 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x4d, 0x65, 0x74, 0x61, 0x52, 0x08, 0x6d, - 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x22, 0x92, 0x01, 0x0a, 0x14, 0x46, 0x6f, 0x72, 0x6b, - 0x41, 0x6e, 0x64, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, - 0x12, 0x3f, 0x0a, 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x18, 0x01, 0x20, 0x01, - 0x28, 0x0b, 0x32, 0x23, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, - 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x52, 0x65, 0x71, 0x75, - 0x65, 0x73, 0x74, 0x4d, 0x65, 0x74, 0x61, 0x52, 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, - 0x61, 0x12, 0x39, 0x0a, 0x07, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x18, 0x02, 0x20, 0x01, - 0x28, 0x0b, 0x32, 0x1f, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, - 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x50, 0x72, 0x6f, 0x6a, - 0x65, 0x63, 0x74, 0x52, 0x07, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x22, 0x94, 0x01, 0x0a, - 0x15, 0x46, 0x6f, 0x72, 0x6b, 0x41, 0x6e, 0x64, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x52, 0x65, - 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x40, 0x0a, 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, - 0x74, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x24, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, + 0x2e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x4d, 0x65, 0x74, 0x61, 0x52, 0x08, 0x6d, 0x65, + 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, + 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x22, 0x5c, 0x0a, 0x18, 0x46, 0x69, 0x6e, 0x69, 0x73, 0x68, + 0x4f, 0x6e, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, + 0x73, 0x65, 0x12, 0x40, 0x0a, 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x18, 0x01, + 0x20, 0x01, 0x28, 0x0b, 0x32, 0x24, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, + 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x52, 0x65, + 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x4d, 0x65, 0x74, 0x61, 0x52, 0x08, 0x6d, 0x65, 0x74, 0x61, + 0x64, 0x61, 0x74, 0x61, 0x22, 0x71, 0x0a, 0x1e, 0x52, 0x65, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, + 0x74, 0x65, 0x57, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x52, + 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x3f, 0x0a, 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, + 0x74, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x23, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, - 0x62, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x4d, 0x65, 0x74, 0x61, 0x52, 0x08, - 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x12, 0x39, 0x0a, 0x07, 0x70, 0x72, 0x6f, 0x6a, - 0x65, 0x63, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1f, 0x2e, 0x49, 0x6e, 0x74, 0x65, - 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, - 0x75, 0x62, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x52, 0x07, 0x70, 0x72, 0x6f, 0x6a, - 0x65, 0x63, 0x74, 0x22, 0x69, 0x0a, 0x16, 0x47, 0x69, 0x74, 0x68, 0x75, 0x62, 0x41, 0x70, 0x70, - 0x53, 0x77, 0x69, 0x74, 0x63, 0x68, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x3f, 0x0a, - 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, - 0x23, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, - 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, - 0x4d, 0x65, 0x74, 0x61, 0x52, 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x12, 0x0e, - 0x0a, 0x02, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x22, 0x5b, - 0x0a, 0x17, 0x47, 0x69, 0x74, 0x68, 0x75, 0x62, 0x41, 0x70, 0x70, 0x53, 0x77, 0x69, 0x74, 0x63, - 0x68, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x40, 0x0a, 0x08, 0x6d, 0x65, 0x74, - 0x61, 0x64, 0x61, 0x74, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x24, 0x2e, 0x49, 0x6e, - 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, - 0x74, 0x68, 0x75, 0x62, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x4d, 0x65, 0x74, - 0x61, 0x52, 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x22, 0x80, 0x01, 0x0a, 0x0e, - 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x12, 0x1d, + 0x62, 0x2e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x4d, 0x65, 0x74, 0x61, 0x52, 0x08, 0x6d, + 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x02, 0x20, + 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x22, 0x7b, 0x0a, 0x1f, 0x52, 0x65, 0x67, 0x65, 0x6e, + 0x65, 0x72, 0x61, 0x74, 0x65, 0x57, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x53, 0x65, 0x63, 0x72, + 0x65, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x40, 0x0a, 0x08, 0x6d, 0x65, + 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x24, 0x2e, 0x49, + 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, + 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x4d, 0x65, + 0x74, 0x61, 0x52, 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x12, 0x16, 0x0a, 0x06, + 0x73, 0x65, 0x63, 0x72, 0x65, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x65, + 0x63, 0x72, 0x65, 0x74, 0x22, 0x80, 0x01, 0x0a, 0x0e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, + 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, + 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x72, 0x6f, + 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x38, 0x0a, 0x09, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, + 0x61, 0x6d, 0x70, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, + 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, + 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x09, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, + 0x12, 0x15, 0x0a, 0x06, 0x6f, 0x72, 0x67, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, + 0x52, 0x05, 0x6f, 0x72, 0x67, 0x49, 0x64, 0x22, 0x80, 0x01, 0x0a, 0x0e, 0x50, 0x72, 0x6f, 0x6a, + 0x65, 0x63, 0x74, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, + 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, + 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x38, 0x0a, 0x09, 0x74, 0x69, 0x6d, + 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, + 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x09, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, + 0x61, 0x6d, 0x70, 0x12, 0x15, 0x0a, 0x06, 0x6f, 0x72, 0x67, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, + 0x01, 0x28, 0x09, 0x52, 0x05, 0x6f, 0x72, 0x67, 0x49, 0x64, 0x22, 0x81, 0x01, 0x0a, 0x0f, 0x50, + 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x52, 0x65, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x38, 0x0a, 0x09, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, @@ -4708,126 +5492,147 @@ var file_projecthub_proto_rawDesc = []byte{ 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x09, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x12, 0x15, 0x0a, 0x06, 0x6f, 0x72, 0x67, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x6f, 0x72, 0x67, 0x49, 0x64, 0x22, 0x80, - 0x01, 0x0a, 0x0e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, + 0x01, 0x0a, 0x0e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, - 0x12, 0x38, 0x0a, 0x09, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x18, 0x02, 0x20, - 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, - 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, - 0x09, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x12, 0x15, 0x0a, 0x06, 0x6f, 0x72, - 0x67, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x6f, 0x72, 0x67, 0x49, - 0x64, 0x22, 0x80, 0x01, 0x0a, 0x0e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x55, 0x70, 0x64, - 0x61, 0x74, 0x65, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, - 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, - 0x74, 0x49, 0x64, 0x12, 0x15, 0x0a, 0x06, 0x6f, 0x72, 0x67, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, - 0x01, 0x28, 0x09, 0x52, 0x05, 0x6f, 0x72, 0x67, 0x49, 0x64, 0x12, 0x38, 0x0a, 0x09, 0x74, 0x69, - 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, - 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, - 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x09, 0x74, 0x69, 0x6d, 0x65, 0x73, - 0x74, 0x61, 0x6d, 0x70, 0x22, 0x6f, 0x0a, 0x14, 0x43, 0x6f, 0x6c, 0x6c, 0x61, 0x62, 0x6f, 0x72, - 0x61, 0x74, 0x6f, 0x72, 0x73, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x64, 0x12, 0x1d, 0x0a, 0x0a, - 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, - 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x38, 0x0a, 0x09, 0x74, - 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, - 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, - 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x09, 0x74, 0x69, 0x6d, 0x65, - 0x73, 0x74, 0x61, 0x6d, 0x70, 0x32, 0xc6, 0x0b, 0x0a, 0x0e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, - 0x74, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0x51, 0x0a, 0x04, 0x4c, 0x69, 0x73, 0x74, - 0x12, 0x23, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, - 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, - 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x24, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, - 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x4c, - 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x5d, 0x0a, 0x08, 0x44, - 0x65, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x12, 0x27, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, - 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, - 0x2e, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, - 0x1a, 0x28, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, - 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, - 0x62, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x69, 0x0a, 0x0c, 0x44, 0x65, - 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x4d, 0x61, 0x6e, 0x79, 0x12, 0x2b, 0x2e, 0x49, 0x6e, 0x74, - 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, - 0x68, 0x75, 0x62, 0x2e, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x4d, 0x61, 0x6e, 0x79, - 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2c, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, - 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, - 0x2e, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x4d, 0x61, 0x6e, 0x79, 0x52, 0x65, 0x73, - 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x57, 0x0a, 0x06, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, - 0x25, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, - 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x52, - 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x26, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, + 0x12, 0x15, 0x0a, 0x06, 0x6f, 0x72, 0x67, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, + 0x52, 0x05, 0x6f, 0x72, 0x67, 0x49, 0x64, 0x12, 0x38, 0x0a, 0x09, 0x74, 0x69, 0x6d, 0x65, 0x73, + 0x74, 0x61, 0x6d, 0x70, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, + 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, + 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x09, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, + 0x70, 0x22, 0x6f, 0x0a, 0x14, 0x43, 0x6f, 0x6c, 0x6c, 0x61, 0x62, 0x6f, 0x72, 0x61, 0x74, 0x6f, + 0x72, 0x73, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, + 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, + 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x38, 0x0a, 0x09, 0x74, 0x69, 0x6d, 0x65, + 0x73, 0x74, 0x61, 0x6d, 0x70, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, + 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x09, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, + 0x6d, 0x70, 0x32, 0x8b, 0x0f, 0x0a, 0x0e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x53, 0x65, + 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0x51, 0x0a, 0x04, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x23, 0x2e, + 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, + 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, + 0x73, 0x74, 0x1a, 0x24, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, + 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x4c, 0x69, 0x73, 0x74, + 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x63, 0x0a, 0x0a, 0x4c, 0x69, 0x73, 0x74, + 0x4b, 0x65, 0x79, 0x73, 0x65, 0x74, 0x12, 0x29, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, - 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x57, - 0x0a, 0x06, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x12, 0x25, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, + 0x4c, 0x69, 0x73, 0x74, 0x4b, 0x65, 0x79, 0x73, 0x65, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, + 0x74, 0x1a, 0x2a, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, + 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x4b, + 0x65, 0x79, 0x73, 0x65, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x5d, 0x0a, + 0x08, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x12, 0x27, 0x2e, 0x49, 0x6e, 0x74, 0x65, + 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, + 0x75, 0x62, 0x2e, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, + 0x73, 0x74, 0x1a, 0x28, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, + 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x44, 0x65, 0x73, 0x63, + 0x72, 0x69, 0x62, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x69, 0x0a, 0x0c, + 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x4d, 0x61, 0x6e, 0x79, 0x12, 0x2b, 0x2e, 0x49, + 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, + 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x4d, 0x61, + 0x6e, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2c, 0x2e, 0x49, 0x6e, 0x74, 0x65, + 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, + 0x75, 0x62, 0x2e, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x4d, 0x61, 0x6e, 0x79, 0x52, + 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x57, 0x0a, 0x06, 0x43, 0x72, 0x65, 0x61, 0x74, + 0x65, 0x12, 0x25, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, + 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, + 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x26, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, - 0x62, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, - 0x26, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, - 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x52, - 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x5a, 0x0a, 0x07, 0x44, 0x65, 0x73, 0x74, 0x72, - 0x6f, 0x79, 0x12, 0x26, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, - 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x44, 0x65, 0x73, 0x74, - 0x72, 0x6f, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x27, 0x2e, 0x49, 0x6e, 0x74, + 0x62, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, + 0x12, 0x57, 0x0a, 0x06, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x12, 0x25, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, - 0x68, 0x75, 0x62, 0x2e, 0x44, 0x65, 0x73, 0x74, 0x72, 0x6f, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, - 0x6e, 0x73, 0x65, 0x12, 0x54, 0x0a, 0x05, 0x55, 0x73, 0x65, 0x72, 0x73, 0x12, 0x24, 0x2e, 0x49, + 0x68, 0x75, 0x62, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, + 0x74, 0x1a, 0x26, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, + 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, + 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x5a, 0x0a, 0x07, 0x44, 0x65, 0x73, + 0x74, 0x72, 0x6f, 0x79, 0x12, 0x26, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, + 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x44, 0x65, + 0x73, 0x74, 0x72, 0x6f, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x27, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, - 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, - 0x73, 0x74, 0x1a, 0x25, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, - 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x55, 0x73, 0x65, 0x72, - 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x6f, 0x0a, 0x0e, 0x43, 0x68, 0x65, - 0x63, 0x6b, 0x44, 0x65, 0x70, 0x6c, 0x6f, 0x79, 0x4b, 0x65, 0x79, 0x12, 0x2d, 0x2e, 0x49, 0x6e, - 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, - 0x74, 0x68, 0x75, 0x62, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x44, 0x65, 0x70, 0x6c, 0x6f, 0x79, - 0x4b, 0x65, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2e, 0x2e, 0x49, 0x6e, 0x74, - 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, - 0x68, 0x75, 0x62, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x44, 0x65, 0x70, 0x6c, 0x6f, 0x79, 0x4b, - 0x65, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x7e, 0x0a, 0x13, 0x52, 0x65, - 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x44, 0x65, 0x70, 0x6c, 0x6f, 0x79, 0x4b, 0x65, - 0x79, 0x12, 0x32, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, - 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x52, 0x65, 0x67, 0x65, 0x6e, - 0x65, 0x72, 0x61, 0x74, 0x65, 0x44, 0x65, 0x70, 0x6c, 0x6f, 0x79, 0x4b, 0x65, 0x79, 0x52, 0x65, - 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x33, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, - 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x52, - 0x65, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x44, 0x65, 0x70, 0x6c, 0x6f, 0x79, 0x4b, - 0x65, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x69, 0x0a, 0x0c, 0x43, 0x68, - 0x65, 0x63, 0x6b, 0x57, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x12, 0x2b, 0x2e, 0x49, 0x6e, 0x74, + 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x44, 0x65, 0x73, 0x74, 0x72, 0x6f, 0x79, 0x52, 0x65, 0x73, + 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x5a, 0x0a, 0x07, 0x52, 0x65, 0x73, 0x74, 0x6f, 0x72, 0x65, + 0x12, 0x26, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, + 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x52, 0x65, 0x73, 0x74, 0x6f, 0x72, + 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x27, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, + 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, + 0x62, 0x2e, 0x52, 0x65, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, + 0x65, 0x12, 0x54, 0x0a, 0x05, 0x55, 0x73, 0x65, 0x72, 0x73, 0x12, 0x24, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, - 0x68, 0x75, 0x62, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x57, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, - 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2c, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, - 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, - 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x57, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x52, 0x65, 0x73, - 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x78, 0x0a, 0x11, 0x52, 0x65, 0x67, 0x65, 0x6e, 0x65, 0x72, - 0x61, 0x74, 0x65, 0x57, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x12, 0x30, 0x2e, 0x49, 0x6e, 0x74, + 0x68, 0x75, 0x62, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, + 0x1a, 0x25, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, + 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x73, 0x52, + 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x6f, 0x0a, 0x0e, 0x43, 0x68, 0x65, 0x63, 0x6b, + 0x44, 0x65, 0x70, 0x6c, 0x6f, 0x79, 0x4b, 0x65, 0x79, 0x12, 0x2d, 0x2e, 0x49, 0x6e, 0x74, 0x65, + 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, + 0x75, 0x62, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x44, 0x65, 0x70, 0x6c, 0x6f, 0x79, 0x4b, 0x65, + 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2e, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, + 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, + 0x62, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x44, 0x65, 0x70, 0x6c, 0x6f, 0x79, 0x4b, 0x65, 0x79, + 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x7e, 0x0a, 0x13, 0x52, 0x65, 0x67, 0x65, + 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x44, 0x65, 0x70, 0x6c, 0x6f, 0x79, 0x4b, 0x65, 0x79, 0x12, + 0x32, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, + 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x52, 0x65, 0x67, 0x65, 0x6e, 0x65, 0x72, + 0x61, 0x74, 0x65, 0x44, 0x65, 0x70, 0x6c, 0x6f, 0x79, 0x4b, 0x65, 0x79, 0x52, 0x65, 0x71, 0x75, + 0x65, 0x73, 0x74, 0x1a, 0x33, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, + 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x52, 0x65, 0x67, + 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x44, 0x65, 0x70, 0x6c, 0x6f, 0x79, 0x4b, 0x65, 0x79, + 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x69, 0x0a, 0x0c, 0x43, 0x68, 0x65, 0x63, + 0x6b, 0x57, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x12, 0x2b, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, + 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, + 0x62, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x57, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x52, 0x65, + 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2c, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, + 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x43, + 0x68, 0x65, 0x63, 0x6b, 0x57, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x52, 0x65, 0x73, 0x70, 0x6f, + 0x6e, 0x73, 0x65, 0x12, 0x78, 0x0a, 0x11, 0x52, 0x65, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, + 0x65, 0x57, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x12, 0x30, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, + 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, + 0x62, 0x2e, 0x52, 0x65, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x57, 0x65, 0x62, 0x68, + 0x6f, 0x6f, 0x6b, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x31, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x52, 0x65, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x57, 0x65, - 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x31, 0x2e, 0x49, - 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, - 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x52, 0x65, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, - 0x57, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, - 0x7b, 0x0a, 0x12, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, - 0x4f, 0x77, 0x6e, 0x65, 0x72, 0x12, 0x31, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, - 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x43, - 0x68, 0x61, 0x6e, 0x67, 0x65, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x4f, 0x77, 0x6e, 0x65, - 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x32, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, + 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x8a, 0x01, + 0x0a, 0x17, 0x52, 0x65, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x57, 0x65, 0x62, 0x68, + 0x6f, 0x6f, 0x6b, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x12, 0x36, 0x2e, 0x49, 0x6e, 0x74, 0x65, + 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, + 0x75, 0x62, 0x2e, 0x52, 0x65, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x57, 0x65, 0x62, + 0x68, 0x6f, 0x6f, 0x6b, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, + 0x74, 0x1a, 0x37, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, + 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x52, 0x65, 0x67, 0x65, 0x6e, + 0x65, 0x72, 0x61, 0x74, 0x65, 0x57, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x53, 0x65, 0x63, 0x72, + 0x65, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x7b, 0x0a, 0x12, 0x43, 0x68, + 0x61, 0x6e, 0x67, 0x65, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x4f, 0x77, 0x6e, 0x65, 0x72, + 0x12, 0x31, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, + 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, + 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x4f, 0x77, 0x6e, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, + 0x65, 0x73, 0x74, 0x1a, 0x32, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, + 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x43, 0x68, 0x61, + 0x6e, 0x67, 0x65, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x4f, 0x77, 0x6e, 0x65, 0x72, 0x52, + 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x6c, 0x0a, 0x0d, 0x46, 0x6f, 0x72, 0x6b, 0x41, + 0x6e, 0x64, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x2c, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, - 0x62, 0x2e, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x4f, - 0x77, 0x6e, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x6c, 0x0a, 0x0d, - 0x46, 0x6f, 0x72, 0x6b, 0x41, 0x6e, 0x64, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x2c, 0x2e, - 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, - 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x46, 0x6f, 0x72, 0x6b, 0x41, 0x6e, 0x64, 0x43, 0x72, - 0x65, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2d, 0x2e, 0x49, 0x6e, - 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, - 0x74, 0x68, 0x75, 0x62, 0x2e, 0x46, 0x6f, 0x72, 0x6b, 0x41, 0x6e, 0x64, 0x43, 0x72, 0x65, 0x61, - 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x72, 0x0a, 0x0f, 0x47, 0x69, - 0x74, 0x68, 0x75, 0x62, 0x41, 0x70, 0x70, 0x53, 0x77, 0x69, 0x74, 0x63, 0x68, 0x12, 0x2e, 0x2e, - 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, - 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x47, 0x69, 0x74, 0x68, 0x75, 0x62, 0x41, 0x70, 0x70, - 0x53, 0x77, 0x69, 0x74, 0x63, 0x68, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2f, 0x2e, + 0x62, 0x2e, 0x46, 0x6f, 0x72, 0x6b, 0x41, 0x6e, 0x64, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x52, + 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2d, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, + 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, + 0x46, 0x6f, 0x72, 0x6b, 0x41, 0x6e, 0x64, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x52, 0x65, 0x73, + 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x72, 0x0a, 0x0f, 0x47, 0x69, 0x74, 0x68, 0x75, 0x62, 0x41, + 0x70, 0x70, 0x53, 0x77, 0x69, 0x74, 0x63, 0x68, 0x12, 0x2e, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, + 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, + 0x62, 0x2e, 0x47, 0x69, 0x74, 0x68, 0x75, 0x62, 0x41, 0x70, 0x70, 0x53, 0x77, 0x69, 0x74, 0x63, + 0x68, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2f, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, + 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, + 0x62, 0x2e, 0x47, 0x69, 0x74, 0x68, 0x75, 0x62, 0x41, 0x70, 0x70, 0x53, 0x77, 0x69, 0x74, 0x63, + 0x68, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x75, 0x0a, 0x10, 0x46, 0x69, 0x6e, + 0x69, 0x73, 0x68, 0x4f, 0x6e, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x69, 0x6e, 0x67, 0x12, 0x2f, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, 0x6a, - 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x47, 0x69, 0x74, 0x68, 0x75, 0x62, 0x41, 0x70, 0x70, - 0x53, 0x77, 0x69, 0x74, 0x63, 0x68, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x42, 0x38, - 0x5a, 0x36, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x72, 0x65, 0x6e, - 0x64, 0x65, 0x72, 0x65, 0x64, 0x74, 0x65, 0x78, 0x74, 0x2f, 0x76, 0x65, 0x6c, 0x6f, 0x63, 0x69, - 0x74, 0x79, 0x2f, 0x70, 0x6b, 0x67, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x73, 0x2f, 0x70, 0x72, - 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, + 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x46, 0x69, 0x6e, 0x69, 0x73, 0x68, 0x4f, 0x6e, 0x62, + 0x6f, 0x61, 0x72, 0x64, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x30, + 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x50, 0x72, 0x6f, + 0x6a, 0x65, 0x63, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x46, 0x69, 0x6e, 0x69, 0x73, 0x68, 0x4f, 0x6e, + 0x62, 0x6f, 0x61, 0x72, 0x64, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, + 0x42, 0x41, 0x5a, 0x3f, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x73, + 0x65, 0x6d, 0x61, 0x70, 0x68, 0x6f, 0x72, 0x65, 0x69, 0x6f, 0x2f, 0x73, 0x65, 0x6d, 0x61, 0x70, + 0x68, 0x6f, 0x72, 0x65, 0x2f, 0x76, 0x65, 0x6c, 0x6f, 0x63, 0x69, 0x74, 0x79, 0x2f, 0x70, 0x6b, + 0x67, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x73, 0x2f, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, + 0x68, 0x75, 0x62, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( @@ -4842,8 +5647,8 @@ func file_projecthub_proto_rawDescGZIP() []byte { return file_projecthub_proto_rawDescData } -var file_projecthub_proto_enumTypes = make([]protoimpl.EnumInfo, 8) -var file_projecthub_proto_msgTypes = make([]protoimpl.MessageInfo, 57) +var file_projecthub_proto_enumTypes = make([]protoimpl.EnumInfo, 9) +var file_projecthub_proto_msgTypes = make([]protoimpl.MessageInfo, 66) var file_projecthub_proto_goTypes = []interface{}{ (ResponseMeta_Code)(0), // 0: InternalApi.Projecthub.ResponseMeta.Code (Project_Spec_Visibility)(0), // 1: InternalApi.Projecthub.Project.Spec.Visibility @@ -4853,184 +5658,214 @@ var file_projecthub_proto_goTypes = []interface{}{ (Project_Spec_Scheduler_Status)(0), // 5: InternalApi.Projecthub.Project.Spec.Scheduler.Status (Project_Spec_Task_Status)(0), // 6: InternalApi.Projecthub.Project.Spec.Task.Status (Project_Status_State)(0), // 7: InternalApi.Projecthub.Project.Status.State - (*RequestMeta)(nil), // 8: InternalApi.Projecthub.RequestMeta - (*ResponseMeta)(nil), // 9: InternalApi.Projecthub.ResponseMeta - (*PaginationRequest)(nil), // 10: InternalApi.Projecthub.PaginationRequest - (*PaginationResponse)(nil), // 11: InternalApi.Projecthub.PaginationResponse - (*Project)(nil), // 12: InternalApi.Projecthub.Project - (*ListRequest)(nil), // 13: InternalApi.Projecthub.ListRequest - (*ListResponse)(nil), // 14: InternalApi.Projecthub.ListResponse - (*DescribeRequest)(nil), // 15: InternalApi.Projecthub.DescribeRequest - (*DescribeResponse)(nil), // 16: InternalApi.Projecthub.DescribeResponse - (*DescribeManyRequest)(nil), // 17: InternalApi.Projecthub.DescribeManyRequest - (*DescribeManyResponse)(nil), // 18: InternalApi.Projecthub.DescribeManyResponse - (*CreateRequest)(nil), // 19: InternalApi.Projecthub.CreateRequest - (*CreateResponse)(nil), // 20: InternalApi.Projecthub.CreateResponse - (*UpdateRequest)(nil), // 21: InternalApi.Projecthub.UpdateRequest - (*UpdateResponse)(nil), // 22: InternalApi.Projecthub.UpdateResponse - (*DestroyRequest)(nil), // 23: InternalApi.Projecthub.DestroyRequest - (*DestroyResponse)(nil), // 24: InternalApi.Projecthub.DestroyResponse - (*UsersRequest)(nil), // 25: InternalApi.Projecthub.UsersRequest - (*UsersResponse)(nil), // 26: InternalApi.Projecthub.UsersResponse - (*CheckDeployKeyRequest)(nil), // 27: InternalApi.Projecthub.CheckDeployKeyRequest - (*CheckDeployKeyResponse)(nil), // 28: InternalApi.Projecthub.CheckDeployKeyResponse - (*RegenerateDeployKeyRequest)(nil), // 29: InternalApi.Projecthub.RegenerateDeployKeyRequest - (*RegenerateDeployKeyResponse)(nil), // 30: InternalApi.Projecthub.RegenerateDeployKeyResponse - (*CheckWebhookRequest)(nil), // 31: InternalApi.Projecthub.CheckWebhookRequest - (*CheckWebhookResponse)(nil), // 32: InternalApi.Projecthub.CheckWebhookResponse - (*RegenerateWebhookRequest)(nil), // 33: InternalApi.Projecthub.RegenerateWebhookRequest - (*RegenerateWebhookResponse)(nil), // 34: InternalApi.Projecthub.RegenerateWebhookResponse - (*Webhook)(nil), // 35: InternalApi.Projecthub.Webhook - (*ChangeProjectOwnerRequest)(nil), // 36: InternalApi.Projecthub.ChangeProjectOwnerRequest - (*ChangeProjectOwnerResponse)(nil), // 37: InternalApi.Projecthub.ChangeProjectOwnerResponse - (*ForkAndCreateRequest)(nil), // 38: InternalApi.Projecthub.ForkAndCreateRequest - (*ForkAndCreateResponse)(nil), // 39: InternalApi.Projecthub.ForkAndCreateResponse - (*GithubAppSwitchRequest)(nil), // 40: InternalApi.Projecthub.GithubAppSwitchRequest - (*GithubAppSwitchResponse)(nil), // 41: InternalApi.Projecthub.GithubAppSwitchResponse - (*ProjectCreated)(nil), // 42: InternalApi.Projecthub.ProjectCreated - (*ProjectDeleted)(nil), // 43: InternalApi.Projecthub.ProjectDeleted - (*ProjectUpdated)(nil), // 44: InternalApi.Projecthub.ProjectUpdated - (*CollaboratorsChanged)(nil), // 45: InternalApi.Projecthub.CollaboratorsChanged - (*ResponseMeta_Status)(nil), // 46: InternalApi.Projecthub.ResponseMeta.Status - (*Project_Metadata)(nil), // 47: InternalApi.Projecthub.Project.Metadata - (*Project_Spec)(nil), // 48: InternalApi.Projecthub.Project.Spec - (*Project_Status)(nil), // 49: InternalApi.Projecthub.Project.Status - (*Project_Spec_Repository)(nil), // 50: InternalApi.Projecthub.Project.Spec.Repository - (*Project_Spec_Scheduler)(nil), // 51: InternalApi.Projecthub.Project.Spec.Scheduler - (*Project_Spec_Task)(nil), // 52: InternalApi.Projecthub.Project.Spec.Task - (*Project_Spec_Repository_ForkedPullRequests)(nil), // 53: InternalApi.Projecthub.Project.Spec.Repository.ForkedPullRequests - (*Project_Spec_Repository_Status)(nil), // 54: InternalApi.Projecthub.Project.Spec.Repository.Status - (*Project_Spec_Repository_Whitelist)(nil), // 55: InternalApi.Projecthub.Project.Spec.Repository.Whitelist - (*Project_Spec_Repository_Status_PipelineFile)(nil), // 56: InternalApi.Projecthub.Project.Spec.Repository.Status.PipelineFile - (*Project_Spec_Task_Parameter)(nil), // 57: InternalApi.Projecthub.Project.Spec.Task.Parameter - (*Project_Status_Cache)(nil), // 58: InternalApi.Projecthub.Project.Status.Cache - (*Project_Status_ArtifactStore)(nil), // 59: InternalApi.Projecthub.Project.Status.ArtifactStore - (*Project_Status_Repository)(nil), // 60: InternalApi.Projecthub.Project.Status.Repository - (*Project_Status_Analysis)(nil), // 61: InternalApi.Projecthub.Project.Status.Analysis - (*Project_Status_Permissions)(nil), // 62: InternalApi.Projecthub.Project.Status.Permissions - (*CheckDeployKeyResponse_DeployKey)(nil), // 63: InternalApi.Projecthub.CheckDeployKeyResponse.DeployKey - (*RegenerateDeployKeyResponse_DeployKey)(nil), // 64: InternalApi.Projecthub.RegenerateDeployKeyResponse.DeployKey - (*user.User)(nil), // 65: InternalApi.User.User - (*timestamp.Timestamp)(nil), // 66: google.protobuf.Timestamp - (repository_integrator.IntegrationType)(0), // 67: InternalApi.RepositoryIntegrator.IntegrationType + (ListKeysetRequest_Direction)(0), // 8: InternalApi.Projecthub.ListKeysetRequest.Direction + (*RequestMeta)(nil), // 9: InternalApi.Projecthub.RequestMeta + (*ResponseMeta)(nil), // 10: InternalApi.Projecthub.ResponseMeta + (*PaginationRequest)(nil), // 11: InternalApi.Projecthub.PaginationRequest + (*PaginationResponse)(nil), // 12: InternalApi.Projecthub.PaginationResponse + (*Project)(nil), // 13: InternalApi.Projecthub.Project + (*ListRequest)(nil), // 14: InternalApi.Projecthub.ListRequest + (*ListResponse)(nil), // 15: InternalApi.Projecthub.ListResponse + (*ListKeysetRequest)(nil), // 16: InternalApi.Projecthub.ListKeysetRequest + (*ListKeysetResponse)(nil), // 17: InternalApi.Projecthub.ListKeysetResponse + (*DescribeRequest)(nil), // 18: InternalApi.Projecthub.DescribeRequest + (*DescribeResponse)(nil), // 19: InternalApi.Projecthub.DescribeResponse + (*DescribeManyRequest)(nil), // 20: InternalApi.Projecthub.DescribeManyRequest + (*DescribeManyResponse)(nil), // 21: InternalApi.Projecthub.DescribeManyResponse + (*CreateRequest)(nil), // 22: InternalApi.Projecthub.CreateRequest + (*CreateResponse)(nil), // 23: InternalApi.Projecthub.CreateResponse + (*UpdateRequest)(nil), // 24: InternalApi.Projecthub.UpdateRequest + (*UpdateResponse)(nil), // 25: InternalApi.Projecthub.UpdateResponse + (*DestroyRequest)(nil), // 26: InternalApi.Projecthub.DestroyRequest + (*DestroyResponse)(nil), // 27: InternalApi.Projecthub.DestroyResponse + (*RestoreRequest)(nil), // 28: InternalApi.Projecthub.RestoreRequest + (*RestoreResponse)(nil), // 29: InternalApi.Projecthub.RestoreResponse + (*UsersRequest)(nil), // 30: InternalApi.Projecthub.UsersRequest + (*UsersResponse)(nil), // 31: InternalApi.Projecthub.UsersResponse + (*CheckDeployKeyRequest)(nil), // 32: InternalApi.Projecthub.CheckDeployKeyRequest + (*CheckDeployKeyResponse)(nil), // 33: InternalApi.Projecthub.CheckDeployKeyResponse + (*RegenerateDeployKeyRequest)(nil), // 34: InternalApi.Projecthub.RegenerateDeployKeyRequest + (*RegenerateDeployKeyResponse)(nil), // 35: InternalApi.Projecthub.RegenerateDeployKeyResponse + (*CheckWebhookRequest)(nil), // 36: InternalApi.Projecthub.CheckWebhookRequest + (*CheckWebhookResponse)(nil), // 37: InternalApi.Projecthub.CheckWebhookResponse + (*RegenerateWebhookRequest)(nil), // 38: InternalApi.Projecthub.RegenerateWebhookRequest + (*RegenerateWebhookResponse)(nil), // 39: InternalApi.Projecthub.RegenerateWebhookResponse + (*Webhook)(nil), // 40: InternalApi.Projecthub.Webhook + (*ChangeProjectOwnerRequest)(nil), // 41: InternalApi.Projecthub.ChangeProjectOwnerRequest + (*ChangeProjectOwnerResponse)(nil), // 42: InternalApi.Projecthub.ChangeProjectOwnerResponse + (*ForkAndCreateRequest)(nil), // 43: InternalApi.Projecthub.ForkAndCreateRequest + (*ForkAndCreateResponse)(nil), // 44: InternalApi.Projecthub.ForkAndCreateResponse + (*GithubAppSwitchRequest)(nil), // 45: InternalApi.Projecthub.GithubAppSwitchRequest + (*GithubAppSwitchResponse)(nil), // 46: InternalApi.Projecthub.GithubAppSwitchResponse + (*FinishOnboardingRequest)(nil), // 47: InternalApi.Projecthub.FinishOnboardingRequest + (*FinishOnboardingResponse)(nil), // 48: InternalApi.Projecthub.FinishOnboardingResponse + (*RegenerateWebhookSecretRequest)(nil), // 49: InternalApi.Projecthub.RegenerateWebhookSecretRequest + (*RegenerateWebhookSecretResponse)(nil), // 50: InternalApi.Projecthub.RegenerateWebhookSecretResponse + (*ProjectCreated)(nil), // 51: InternalApi.Projecthub.ProjectCreated + (*ProjectDeleted)(nil), // 52: InternalApi.Projecthub.ProjectDeleted + (*ProjectRestored)(nil), // 53: InternalApi.Projecthub.ProjectRestored + (*ProjectUpdated)(nil), // 54: InternalApi.Projecthub.ProjectUpdated + (*CollaboratorsChanged)(nil), // 55: InternalApi.Projecthub.CollaboratorsChanged + (*ResponseMeta_Status)(nil), // 56: InternalApi.Projecthub.ResponseMeta.Status + (*Project_Metadata)(nil), // 57: InternalApi.Projecthub.Project.Metadata + (*Project_Spec)(nil), // 58: InternalApi.Projecthub.Project.Spec + (*Project_Status)(nil), // 59: InternalApi.Projecthub.Project.Status + (*Project_Spec_Repository)(nil), // 60: InternalApi.Projecthub.Project.Spec.Repository + (*Project_Spec_Scheduler)(nil), // 61: InternalApi.Projecthub.Project.Spec.Scheduler + (*Project_Spec_Task)(nil), // 62: InternalApi.Projecthub.Project.Spec.Task + (*Project_Spec_Repository_ForkedPullRequests)(nil), // 63: InternalApi.Projecthub.Project.Spec.Repository.ForkedPullRequests + (*Project_Spec_Repository_Status)(nil), // 64: InternalApi.Projecthub.Project.Spec.Repository.Status + (*Project_Spec_Repository_Whitelist)(nil), // 65: InternalApi.Projecthub.Project.Spec.Repository.Whitelist + (*Project_Spec_Repository_Status_PipelineFile)(nil), // 66: InternalApi.Projecthub.Project.Spec.Repository.Status.PipelineFile + (*Project_Spec_Task_Parameter)(nil), // 67: InternalApi.Projecthub.Project.Spec.Task.Parameter + (*Project_Status_Cache)(nil), // 68: InternalApi.Projecthub.Project.Status.Cache + (*Project_Status_ArtifactStore)(nil), // 69: InternalApi.Projecthub.Project.Status.ArtifactStore + (*Project_Status_Repository)(nil), // 70: InternalApi.Projecthub.Project.Status.Repository + (*Project_Status_Analysis)(nil), // 71: InternalApi.Projecthub.Project.Status.Analysis + (*Project_Status_Permissions)(nil), // 72: InternalApi.Projecthub.Project.Status.Permissions + (*CheckDeployKeyResponse_DeployKey)(nil), // 73: InternalApi.Projecthub.CheckDeployKeyResponse.DeployKey + (*RegenerateDeployKeyResponse_DeployKey)(nil), // 74: InternalApi.Projecthub.RegenerateDeployKeyResponse.DeployKey + (*timestamp.Timestamp)(nil), // 75: google.protobuf.Timestamp + (*user.User)(nil), // 76: InternalApi.User.User + (repository_integrator.IntegrationType)(0), // 77: InternalApi.RepositoryIntegrator.IntegrationType } var file_projecthub_proto_depIdxs = []int32{ - 46, // 0: InternalApi.Projecthub.ResponseMeta.status:type_name -> InternalApi.Projecthub.ResponseMeta.Status - 47, // 1: InternalApi.Projecthub.Project.metadata:type_name -> InternalApi.Projecthub.Project.Metadata - 48, // 2: InternalApi.Projecthub.Project.spec:type_name -> InternalApi.Projecthub.Project.Spec - 49, // 3: InternalApi.Projecthub.Project.status:type_name -> InternalApi.Projecthub.Project.Status - 8, // 4: InternalApi.Projecthub.ListRequest.metadata:type_name -> InternalApi.Projecthub.RequestMeta - 10, // 5: InternalApi.Projecthub.ListRequest.pagination:type_name -> InternalApi.Projecthub.PaginationRequest - 9, // 6: InternalApi.Projecthub.ListResponse.metadata:type_name -> InternalApi.Projecthub.ResponseMeta - 11, // 7: InternalApi.Projecthub.ListResponse.pagination:type_name -> InternalApi.Projecthub.PaginationResponse - 12, // 8: InternalApi.Projecthub.ListResponse.projects:type_name -> InternalApi.Projecthub.Project - 8, // 9: InternalApi.Projecthub.DescribeRequest.metadata:type_name -> InternalApi.Projecthub.RequestMeta - 9, // 10: InternalApi.Projecthub.DescribeResponse.metadata:type_name -> InternalApi.Projecthub.ResponseMeta - 12, // 11: InternalApi.Projecthub.DescribeResponse.project:type_name -> InternalApi.Projecthub.Project - 8, // 12: InternalApi.Projecthub.DescribeManyRequest.metadata:type_name -> InternalApi.Projecthub.RequestMeta - 9, // 13: InternalApi.Projecthub.DescribeManyResponse.metadata:type_name -> InternalApi.Projecthub.ResponseMeta - 12, // 14: InternalApi.Projecthub.DescribeManyResponse.projects:type_name -> InternalApi.Projecthub.Project - 8, // 15: InternalApi.Projecthub.CreateRequest.metadata:type_name -> InternalApi.Projecthub.RequestMeta - 12, // 16: InternalApi.Projecthub.CreateRequest.project:type_name -> InternalApi.Projecthub.Project - 9, // 17: InternalApi.Projecthub.CreateResponse.metadata:type_name -> InternalApi.Projecthub.ResponseMeta - 12, // 18: InternalApi.Projecthub.CreateResponse.project:type_name -> InternalApi.Projecthub.Project - 8, // 19: InternalApi.Projecthub.UpdateRequest.metadata:type_name -> InternalApi.Projecthub.RequestMeta - 12, // 20: InternalApi.Projecthub.UpdateRequest.project:type_name -> InternalApi.Projecthub.Project - 9, // 21: InternalApi.Projecthub.UpdateResponse.metadata:type_name -> InternalApi.Projecthub.ResponseMeta - 12, // 22: InternalApi.Projecthub.UpdateResponse.project:type_name -> InternalApi.Projecthub.Project - 8, // 23: InternalApi.Projecthub.DestroyRequest.metadata:type_name -> InternalApi.Projecthub.RequestMeta - 9, // 24: InternalApi.Projecthub.DestroyResponse.metadata:type_name -> InternalApi.Projecthub.ResponseMeta - 8, // 25: InternalApi.Projecthub.UsersRequest.metadata:type_name -> InternalApi.Projecthub.RequestMeta - 9, // 26: InternalApi.Projecthub.UsersResponse.metadata:type_name -> InternalApi.Projecthub.ResponseMeta - 65, // 27: InternalApi.Projecthub.UsersResponse.users:type_name -> InternalApi.User.User - 8, // 28: InternalApi.Projecthub.CheckDeployKeyRequest.metadata:type_name -> InternalApi.Projecthub.RequestMeta - 9, // 29: InternalApi.Projecthub.CheckDeployKeyResponse.metadata:type_name -> InternalApi.Projecthub.ResponseMeta - 63, // 30: InternalApi.Projecthub.CheckDeployKeyResponse.deploy_key:type_name -> InternalApi.Projecthub.CheckDeployKeyResponse.DeployKey - 8, // 31: InternalApi.Projecthub.RegenerateDeployKeyRequest.metadata:type_name -> InternalApi.Projecthub.RequestMeta - 9, // 32: InternalApi.Projecthub.RegenerateDeployKeyResponse.metadata:type_name -> InternalApi.Projecthub.ResponseMeta - 64, // 33: InternalApi.Projecthub.RegenerateDeployKeyResponse.deploy_key:type_name -> InternalApi.Projecthub.RegenerateDeployKeyResponse.DeployKey - 8, // 34: InternalApi.Projecthub.CheckWebhookRequest.metadata:type_name -> InternalApi.Projecthub.RequestMeta - 9, // 35: InternalApi.Projecthub.CheckWebhookResponse.metadata:type_name -> InternalApi.Projecthub.ResponseMeta - 35, // 36: InternalApi.Projecthub.CheckWebhookResponse.webhook:type_name -> InternalApi.Projecthub.Webhook - 8, // 37: InternalApi.Projecthub.RegenerateWebhookRequest.metadata:type_name -> InternalApi.Projecthub.RequestMeta - 9, // 38: InternalApi.Projecthub.RegenerateWebhookResponse.metadata:type_name -> InternalApi.Projecthub.ResponseMeta - 35, // 39: InternalApi.Projecthub.RegenerateWebhookResponse.webhook:type_name -> InternalApi.Projecthub.Webhook - 8, // 40: InternalApi.Projecthub.ChangeProjectOwnerRequest.metadata:type_name -> InternalApi.Projecthub.RequestMeta - 9, // 41: InternalApi.Projecthub.ChangeProjectOwnerResponse.metadata:type_name -> InternalApi.Projecthub.ResponseMeta - 8, // 42: InternalApi.Projecthub.ForkAndCreateRequest.metadata:type_name -> InternalApi.Projecthub.RequestMeta - 12, // 43: InternalApi.Projecthub.ForkAndCreateRequest.project:type_name -> InternalApi.Projecthub.Project - 9, // 44: InternalApi.Projecthub.ForkAndCreateResponse.metadata:type_name -> InternalApi.Projecthub.ResponseMeta - 12, // 45: InternalApi.Projecthub.ForkAndCreateResponse.project:type_name -> InternalApi.Projecthub.Project - 8, // 46: InternalApi.Projecthub.GithubAppSwitchRequest.metadata:type_name -> InternalApi.Projecthub.RequestMeta - 9, // 47: InternalApi.Projecthub.GithubAppSwitchResponse.metadata:type_name -> InternalApi.Projecthub.ResponseMeta - 66, // 48: InternalApi.Projecthub.ProjectCreated.timestamp:type_name -> google.protobuf.Timestamp - 66, // 49: InternalApi.Projecthub.ProjectDeleted.timestamp:type_name -> google.protobuf.Timestamp - 66, // 50: InternalApi.Projecthub.ProjectUpdated.timestamp:type_name -> google.protobuf.Timestamp - 66, // 51: InternalApi.Projecthub.CollaboratorsChanged.timestamp:type_name -> google.protobuf.Timestamp - 0, // 52: InternalApi.Projecthub.ResponseMeta.Status.code:type_name -> InternalApi.Projecthub.ResponseMeta.Code - 66, // 53: InternalApi.Projecthub.Project.Metadata.created_at:type_name -> google.protobuf.Timestamp - 50, // 54: InternalApi.Projecthub.Project.Spec.repository:type_name -> InternalApi.Projecthub.Project.Spec.Repository - 51, // 55: InternalApi.Projecthub.Project.Spec.schedulers:type_name -> InternalApi.Projecthub.Project.Spec.Scheduler - 1, // 56: InternalApi.Projecthub.Project.Spec.visibility:type_name -> InternalApi.Projecthub.Project.Spec.Visibility - 2, // 57: InternalApi.Projecthub.Project.Spec.debug_permissions:type_name -> InternalApi.Projecthub.Project.Spec.PermissionType - 2, // 58: InternalApi.Projecthub.Project.Spec.attach_permissions:type_name -> InternalApi.Projecthub.Project.Spec.PermissionType - 52, // 59: InternalApi.Projecthub.Project.Spec.tasks:type_name -> InternalApi.Projecthub.Project.Spec.Task - 7, // 60: InternalApi.Projecthub.Project.Status.state:type_name -> InternalApi.Projecthub.Project.Status.State - 58, // 61: InternalApi.Projecthub.Project.Status.cache:type_name -> InternalApi.Projecthub.Project.Status.Cache - 59, // 62: InternalApi.Projecthub.Project.Status.artifact_store:type_name -> InternalApi.Projecthub.Project.Status.ArtifactStore - 60, // 63: InternalApi.Projecthub.Project.Status.repository:type_name -> InternalApi.Projecthub.Project.Status.Repository - 61, // 64: InternalApi.Projecthub.Project.Status.analysis:type_name -> InternalApi.Projecthub.Project.Status.Analysis - 62, // 65: InternalApi.Projecthub.Project.Status.permissions:type_name -> InternalApi.Projecthub.Project.Status.Permissions - 3, // 66: InternalApi.Projecthub.Project.Spec.Repository.run_on:type_name -> InternalApi.Projecthub.Project.Spec.Repository.RunType - 53, // 67: InternalApi.Projecthub.Project.Spec.Repository.forked_pull_requests:type_name -> InternalApi.Projecthub.Project.Spec.Repository.ForkedPullRequests - 54, // 68: InternalApi.Projecthub.Project.Spec.Repository.status:type_name -> InternalApi.Projecthub.Project.Spec.Repository.Status - 55, // 69: InternalApi.Projecthub.Project.Spec.Repository.whitelist:type_name -> InternalApi.Projecthub.Project.Spec.Repository.Whitelist - 67, // 70: InternalApi.Projecthub.Project.Spec.Repository.integration_type:type_name -> InternalApi.RepositoryIntegrator.IntegrationType - 5, // 71: InternalApi.Projecthub.Project.Spec.Scheduler.status:type_name -> InternalApi.Projecthub.Project.Spec.Scheduler.Status - 6, // 72: InternalApi.Projecthub.Project.Spec.Task.status:type_name -> InternalApi.Projecthub.Project.Spec.Task.Status - 57, // 73: InternalApi.Projecthub.Project.Spec.Task.parameters:type_name -> InternalApi.Projecthub.Project.Spec.Task.Parameter - 56, // 74: InternalApi.Projecthub.Project.Spec.Repository.Status.pipeline_files:type_name -> InternalApi.Projecthub.Project.Spec.Repository.Status.PipelineFile - 4, // 75: InternalApi.Projecthub.Project.Spec.Repository.Status.PipelineFile.level:type_name -> InternalApi.Projecthub.Project.Spec.Repository.Status.PipelineFile.Level - 7, // 76: InternalApi.Projecthub.Project.Status.Cache.state:type_name -> InternalApi.Projecthub.Project.Status.State - 7, // 77: InternalApi.Projecthub.Project.Status.ArtifactStore.state:type_name -> InternalApi.Projecthub.Project.Status.State - 7, // 78: InternalApi.Projecthub.Project.Status.Repository.state:type_name -> InternalApi.Projecthub.Project.Status.State - 7, // 79: InternalApi.Projecthub.Project.Status.Analysis.state:type_name -> InternalApi.Projecthub.Project.Status.State - 7, // 80: InternalApi.Projecthub.Project.Status.Permissions.state:type_name -> InternalApi.Projecthub.Project.Status.State - 66, // 81: InternalApi.Projecthub.CheckDeployKeyResponse.DeployKey.created_at:type_name -> google.protobuf.Timestamp - 66, // 82: InternalApi.Projecthub.RegenerateDeployKeyResponse.DeployKey.created_at:type_name -> google.protobuf.Timestamp - 13, // 83: InternalApi.Projecthub.ProjectService.List:input_type -> InternalApi.Projecthub.ListRequest - 15, // 84: InternalApi.Projecthub.ProjectService.Describe:input_type -> InternalApi.Projecthub.DescribeRequest - 17, // 85: InternalApi.Projecthub.ProjectService.DescribeMany:input_type -> InternalApi.Projecthub.DescribeManyRequest - 19, // 86: InternalApi.Projecthub.ProjectService.Create:input_type -> InternalApi.Projecthub.CreateRequest - 21, // 87: InternalApi.Projecthub.ProjectService.Update:input_type -> InternalApi.Projecthub.UpdateRequest - 23, // 88: InternalApi.Projecthub.ProjectService.Destroy:input_type -> InternalApi.Projecthub.DestroyRequest - 25, // 89: InternalApi.Projecthub.ProjectService.Users:input_type -> InternalApi.Projecthub.UsersRequest - 27, // 90: InternalApi.Projecthub.ProjectService.CheckDeployKey:input_type -> InternalApi.Projecthub.CheckDeployKeyRequest - 29, // 91: InternalApi.Projecthub.ProjectService.RegenerateDeployKey:input_type -> InternalApi.Projecthub.RegenerateDeployKeyRequest - 31, // 92: InternalApi.Projecthub.ProjectService.CheckWebhook:input_type -> InternalApi.Projecthub.CheckWebhookRequest - 33, // 93: InternalApi.Projecthub.ProjectService.RegenerateWebhook:input_type -> InternalApi.Projecthub.RegenerateWebhookRequest - 36, // 94: InternalApi.Projecthub.ProjectService.ChangeProjectOwner:input_type -> InternalApi.Projecthub.ChangeProjectOwnerRequest - 38, // 95: InternalApi.Projecthub.ProjectService.ForkAndCreate:input_type -> InternalApi.Projecthub.ForkAndCreateRequest - 40, // 96: InternalApi.Projecthub.ProjectService.GithubAppSwitch:input_type -> InternalApi.Projecthub.GithubAppSwitchRequest - 14, // 97: InternalApi.Projecthub.ProjectService.List:output_type -> InternalApi.Projecthub.ListResponse - 16, // 98: InternalApi.Projecthub.ProjectService.Describe:output_type -> InternalApi.Projecthub.DescribeResponse - 18, // 99: InternalApi.Projecthub.ProjectService.DescribeMany:output_type -> InternalApi.Projecthub.DescribeManyResponse - 20, // 100: InternalApi.Projecthub.ProjectService.Create:output_type -> InternalApi.Projecthub.CreateResponse - 22, // 101: InternalApi.Projecthub.ProjectService.Update:output_type -> InternalApi.Projecthub.UpdateResponse - 24, // 102: InternalApi.Projecthub.ProjectService.Destroy:output_type -> InternalApi.Projecthub.DestroyResponse - 26, // 103: InternalApi.Projecthub.ProjectService.Users:output_type -> InternalApi.Projecthub.UsersResponse - 28, // 104: InternalApi.Projecthub.ProjectService.CheckDeployKey:output_type -> InternalApi.Projecthub.CheckDeployKeyResponse - 30, // 105: InternalApi.Projecthub.ProjectService.RegenerateDeployKey:output_type -> InternalApi.Projecthub.RegenerateDeployKeyResponse - 32, // 106: InternalApi.Projecthub.ProjectService.CheckWebhook:output_type -> InternalApi.Projecthub.CheckWebhookResponse - 34, // 107: InternalApi.Projecthub.ProjectService.RegenerateWebhook:output_type -> InternalApi.Projecthub.RegenerateWebhookResponse - 37, // 108: InternalApi.Projecthub.ProjectService.ChangeProjectOwner:output_type -> InternalApi.Projecthub.ChangeProjectOwnerResponse - 39, // 109: InternalApi.Projecthub.ProjectService.ForkAndCreate:output_type -> InternalApi.Projecthub.ForkAndCreateResponse - 41, // 110: InternalApi.Projecthub.ProjectService.GithubAppSwitch:output_type -> InternalApi.Projecthub.GithubAppSwitchResponse - 97, // [97:111] is the sub-list for method output_type - 83, // [83:97] is the sub-list for method input_type - 83, // [83:83] is the sub-list for extension type_name - 83, // [83:83] is the sub-list for extension extendee - 0, // [0:83] is the sub-list for field type_name + 56, // 0: InternalApi.Projecthub.ResponseMeta.status:type_name -> InternalApi.Projecthub.ResponseMeta.Status + 57, // 1: InternalApi.Projecthub.Project.metadata:type_name -> InternalApi.Projecthub.Project.Metadata + 58, // 2: InternalApi.Projecthub.Project.spec:type_name -> InternalApi.Projecthub.Project.Spec + 59, // 3: InternalApi.Projecthub.Project.status:type_name -> InternalApi.Projecthub.Project.Status + 9, // 4: InternalApi.Projecthub.ListRequest.metadata:type_name -> InternalApi.Projecthub.RequestMeta + 11, // 5: InternalApi.Projecthub.ListRequest.pagination:type_name -> InternalApi.Projecthub.PaginationRequest + 10, // 6: InternalApi.Projecthub.ListResponse.metadata:type_name -> InternalApi.Projecthub.ResponseMeta + 12, // 7: InternalApi.Projecthub.ListResponse.pagination:type_name -> InternalApi.Projecthub.PaginationResponse + 13, // 8: InternalApi.Projecthub.ListResponse.projects:type_name -> InternalApi.Projecthub.Project + 9, // 9: InternalApi.Projecthub.ListKeysetRequest.metadata:type_name -> InternalApi.Projecthub.RequestMeta + 8, // 10: InternalApi.Projecthub.ListKeysetRequest.direction:type_name -> InternalApi.Projecthub.ListKeysetRequest.Direction + 75, // 11: InternalApi.Projecthub.ListKeysetRequest.created_after:type_name -> google.protobuf.Timestamp + 10, // 12: InternalApi.Projecthub.ListKeysetResponse.metadata:type_name -> InternalApi.Projecthub.ResponseMeta + 13, // 13: InternalApi.Projecthub.ListKeysetResponse.projects:type_name -> InternalApi.Projecthub.Project + 9, // 14: InternalApi.Projecthub.DescribeRequest.metadata:type_name -> InternalApi.Projecthub.RequestMeta + 10, // 15: InternalApi.Projecthub.DescribeResponse.metadata:type_name -> InternalApi.Projecthub.ResponseMeta + 13, // 16: InternalApi.Projecthub.DescribeResponse.project:type_name -> InternalApi.Projecthub.Project + 9, // 17: InternalApi.Projecthub.DescribeManyRequest.metadata:type_name -> InternalApi.Projecthub.RequestMeta + 10, // 18: InternalApi.Projecthub.DescribeManyResponse.metadata:type_name -> InternalApi.Projecthub.ResponseMeta + 13, // 19: InternalApi.Projecthub.DescribeManyResponse.projects:type_name -> InternalApi.Projecthub.Project + 9, // 20: InternalApi.Projecthub.CreateRequest.metadata:type_name -> InternalApi.Projecthub.RequestMeta + 13, // 21: InternalApi.Projecthub.CreateRequest.project:type_name -> InternalApi.Projecthub.Project + 10, // 22: InternalApi.Projecthub.CreateResponse.metadata:type_name -> InternalApi.Projecthub.ResponseMeta + 13, // 23: InternalApi.Projecthub.CreateResponse.project:type_name -> InternalApi.Projecthub.Project + 9, // 24: InternalApi.Projecthub.UpdateRequest.metadata:type_name -> InternalApi.Projecthub.RequestMeta + 13, // 25: InternalApi.Projecthub.UpdateRequest.project:type_name -> InternalApi.Projecthub.Project + 10, // 26: InternalApi.Projecthub.UpdateResponse.metadata:type_name -> InternalApi.Projecthub.ResponseMeta + 13, // 27: InternalApi.Projecthub.UpdateResponse.project:type_name -> InternalApi.Projecthub.Project + 9, // 28: InternalApi.Projecthub.DestroyRequest.metadata:type_name -> InternalApi.Projecthub.RequestMeta + 10, // 29: InternalApi.Projecthub.DestroyResponse.metadata:type_name -> InternalApi.Projecthub.ResponseMeta + 9, // 30: InternalApi.Projecthub.RestoreRequest.metadata:type_name -> InternalApi.Projecthub.RequestMeta + 10, // 31: InternalApi.Projecthub.RestoreResponse.metadata:type_name -> InternalApi.Projecthub.ResponseMeta + 9, // 32: InternalApi.Projecthub.UsersRequest.metadata:type_name -> InternalApi.Projecthub.RequestMeta + 10, // 33: InternalApi.Projecthub.UsersResponse.metadata:type_name -> InternalApi.Projecthub.ResponseMeta + 76, // 34: InternalApi.Projecthub.UsersResponse.users:type_name -> InternalApi.User.User + 9, // 35: InternalApi.Projecthub.CheckDeployKeyRequest.metadata:type_name -> InternalApi.Projecthub.RequestMeta + 10, // 36: InternalApi.Projecthub.CheckDeployKeyResponse.metadata:type_name -> InternalApi.Projecthub.ResponseMeta + 73, // 37: InternalApi.Projecthub.CheckDeployKeyResponse.deploy_key:type_name -> InternalApi.Projecthub.CheckDeployKeyResponse.DeployKey + 9, // 38: InternalApi.Projecthub.RegenerateDeployKeyRequest.metadata:type_name -> InternalApi.Projecthub.RequestMeta + 10, // 39: InternalApi.Projecthub.RegenerateDeployKeyResponse.metadata:type_name -> InternalApi.Projecthub.ResponseMeta + 74, // 40: InternalApi.Projecthub.RegenerateDeployKeyResponse.deploy_key:type_name -> InternalApi.Projecthub.RegenerateDeployKeyResponse.DeployKey + 9, // 41: InternalApi.Projecthub.CheckWebhookRequest.metadata:type_name -> InternalApi.Projecthub.RequestMeta + 10, // 42: InternalApi.Projecthub.CheckWebhookResponse.metadata:type_name -> InternalApi.Projecthub.ResponseMeta + 40, // 43: InternalApi.Projecthub.CheckWebhookResponse.webhook:type_name -> InternalApi.Projecthub.Webhook + 9, // 44: InternalApi.Projecthub.RegenerateWebhookRequest.metadata:type_name -> InternalApi.Projecthub.RequestMeta + 10, // 45: InternalApi.Projecthub.RegenerateWebhookResponse.metadata:type_name -> InternalApi.Projecthub.ResponseMeta + 40, // 46: InternalApi.Projecthub.RegenerateWebhookResponse.webhook:type_name -> InternalApi.Projecthub.Webhook + 9, // 47: InternalApi.Projecthub.ChangeProjectOwnerRequest.metadata:type_name -> InternalApi.Projecthub.RequestMeta + 10, // 48: InternalApi.Projecthub.ChangeProjectOwnerResponse.metadata:type_name -> InternalApi.Projecthub.ResponseMeta + 9, // 49: InternalApi.Projecthub.ForkAndCreateRequest.metadata:type_name -> InternalApi.Projecthub.RequestMeta + 13, // 50: InternalApi.Projecthub.ForkAndCreateRequest.project:type_name -> InternalApi.Projecthub.Project + 10, // 51: InternalApi.Projecthub.ForkAndCreateResponse.metadata:type_name -> InternalApi.Projecthub.ResponseMeta + 13, // 52: InternalApi.Projecthub.ForkAndCreateResponse.project:type_name -> InternalApi.Projecthub.Project + 9, // 53: InternalApi.Projecthub.GithubAppSwitchRequest.metadata:type_name -> InternalApi.Projecthub.RequestMeta + 10, // 54: InternalApi.Projecthub.GithubAppSwitchResponse.metadata:type_name -> InternalApi.Projecthub.ResponseMeta + 9, // 55: InternalApi.Projecthub.FinishOnboardingRequest.metadata:type_name -> InternalApi.Projecthub.RequestMeta + 10, // 56: InternalApi.Projecthub.FinishOnboardingResponse.metadata:type_name -> InternalApi.Projecthub.ResponseMeta + 9, // 57: InternalApi.Projecthub.RegenerateWebhookSecretRequest.metadata:type_name -> InternalApi.Projecthub.RequestMeta + 10, // 58: InternalApi.Projecthub.RegenerateWebhookSecretResponse.metadata:type_name -> InternalApi.Projecthub.ResponseMeta + 75, // 59: InternalApi.Projecthub.ProjectCreated.timestamp:type_name -> google.protobuf.Timestamp + 75, // 60: InternalApi.Projecthub.ProjectDeleted.timestamp:type_name -> google.protobuf.Timestamp + 75, // 61: InternalApi.Projecthub.ProjectRestored.timestamp:type_name -> google.protobuf.Timestamp + 75, // 62: InternalApi.Projecthub.ProjectUpdated.timestamp:type_name -> google.protobuf.Timestamp + 75, // 63: InternalApi.Projecthub.CollaboratorsChanged.timestamp:type_name -> google.protobuf.Timestamp + 0, // 64: InternalApi.Projecthub.ResponseMeta.Status.code:type_name -> InternalApi.Projecthub.ResponseMeta.Code + 75, // 65: InternalApi.Projecthub.Project.Metadata.created_at:type_name -> google.protobuf.Timestamp + 60, // 66: InternalApi.Projecthub.Project.Spec.repository:type_name -> InternalApi.Projecthub.Project.Spec.Repository + 61, // 67: InternalApi.Projecthub.Project.Spec.schedulers:type_name -> InternalApi.Projecthub.Project.Spec.Scheduler + 1, // 68: InternalApi.Projecthub.Project.Spec.visibility:type_name -> InternalApi.Projecthub.Project.Spec.Visibility + 2, // 69: InternalApi.Projecthub.Project.Spec.debug_permissions:type_name -> InternalApi.Projecthub.Project.Spec.PermissionType + 2, // 70: InternalApi.Projecthub.Project.Spec.attach_permissions:type_name -> InternalApi.Projecthub.Project.Spec.PermissionType + 62, // 71: InternalApi.Projecthub.Project.Spec.tasks:type_name -> InternalApi.Projecthub.Project.Spec.Task + 7, // 72: InternalApi.Projecthub.Project.Status.state:type_name -> InternalApi.Projecthub.Project.Status.State + 68, // 73: InternalApi.Projecthub.Project.Status.cache:type_name -> InternalApi.Projecthub.Project.Status.Cache + 69, // 74: InternalApi.Projecthub.Project.Status.artifact_store:type_name -> InternalApi.Projecthub.Project.Status.ArtifactStore + 70, // 75: InternalApi.Projecthub.Project.Status.repository:type_name -> InternalApi.Projecthub.Project.Status.Repository + 71, // 76: InternalApi.Projecthub.Project.Status.analysis:type_name -> InternalApi.Projecthub.Project.Status.Analysis + 72, // 77: InternalApi.Projecthub.Project.Status.permissions:type_name -> InternalApi.Projecthub.Project.Status.Permissions + 3, // 78: InternalApi.Projecthub.Project.Spec.Repository.run_on:type_name -> InternalApi.Projecthub.Project.Spec.Repository.RunType + 63, // 79: InternalApi.Projecthub.Project.Spec.Repository.forked_pull_requests:type_name -> InternalApi.Projecthub.Project.Spec.Repository.ForkedPullRequests + 64, // 80: InternalApi.Projecthub.Project.Spec.Repository.status:type_name -> InternalApi.Projecthub.Project.Spec.Repository.Status + 65, // 81: InternalApi.Projecthub.Project.Spec.Repository.whitelist:type_name -> InternalApi.Projecthub.Project.Spec.Repository.Whitelist + 77, // 82: InternalApi.Projecthub.Project.Spec.Repository.integration_type:type_name -> InternalApi.RepositoryIntegrator.IntegrationType + 5, // 83: InternalApi.Projecthub.Project.Spec.Scheduler.status:type_name -> InternalApi.Projecthub.Project.Spec.Scheduler.Status + 6, // 84: InternalApi.Projecthub.Project.Spec.Task.status:type_name -> InternalApi.Projecthub.Project.Spec.Task.Status + 67, // 85: InternalApi.Projecthub.Project.Spec.Task.parameters:type_name -> InternalApi.Projecthub.Project.Spec.Task.Parameter + 66, // 86: InternalApi.Projecthub.Project.Spec.Repository.Status.pipeline_files:type_name -> InternalApi.Projecthub.Project.Spec.Repository.Status.PipelineFile + 4, // 87: InternalApi.Projecthub.Project.Spec.Repository.Status.PipelineFile.level:type_name -> InternalApi.Projecthub.Project.Spec.Repository.Status.PipelineFile.Level + 7, // 88: InternalApi.Projecthub.Project.Status.Cache.state:type_name -> InternalApi.Projecthub.Project.Status.State + 7, // 89: InternalApi.Projecthub.Project.Status.ArtifactStore.state:type_name -> InternalApi.Projecthub.Project.Status.State + 7, // 90: InternalApi.Projecthub.Project.Status.Repository.state:type_name -> InternalApi.Projecthub.Project.Status.State + 7, // 91: InternalApi.Projecthub.Project.Status.Analysis.state:type_name -> InternalApi.Projecthub.Project.Status.State + 7, // 92: InternalApi.Projecthub.Project.Status.Permissions.state:type_name -> InternalApi.Projecthub.Project.Status.State + 75, // 93: InternalApi.Projecthub.CheckDeployKeyResponse.DeployKey.created_at:type_name -> google.protobuf.Timestamp + 75, // 94: InternalApi.Projecthub.RegenerateDeployKeyResponse.DeployKey.created_at:type_name -> google.protobuf.Timestamp + 14, // 95: InternalApi.Projecthub.ProjectService.List:input_type -> InternalApi.Projecthub.ListRequest + 16, // 96: InternalApi.Projecthub.ProjectService.ListKeyset:input_type -> InternalApi.Projecthub.ListKeysetRequest + 18, // 97: InternalApi.Projecthub.ProjectService.Describe:input_type -> InternalApi.Projecthub.DescribeRequest + 20, // 98: InternalApi.Projecthub.ProjectService.DescribeMany:input_type -> InternalApi.Projecthub.DescribeManyRequest + 22, // 99: InternalApi.Projecthub.ProjectService.Create:input_type -> InternalApi.Projecthub.CreateRequest + 24, // 100: InternalApi.Projecthub.ProjectService.Update:input_type -> InternalApi.Projecthub.UpdateRequest + 26, // 101: InternalApi.Projecthub.ProjectService.Destroy:input_type -> InternalApi.Projecthub.DestroyRequest + 28, // 102: InternalApi.Projecthub.ProjectService.Restore:input_type -> InternalApi.Projecthub.RestoreRequest + 30, // 103: InternalApi.Projecthub.ProjectService.Users:input_type -> InternalApi.Projecthub.UsersRequest + 32, // 104: InternalApi.Projecthub.ProjectService.CheckDeployKey:input_type -> InternalApi.Projecthub.CheckDeployKeyRequest + 34, // 105: InternalApi.Projecthub.ProjectService.RegenerateDeployKey:input_type -> InternalApi.Projecthub.RegenerateDeployKeyRequest + 36, // 106: InternalApi.Projecthub.ProjectService.CheckWebhook:input_type -> InternalApi.Projecthub.CheckWebhookRequest + 38, // 107: InternalApi.Projecthub.ProjectService.RegenerateWebhook:input_type -> InternalApi.Projecthub.RegenerateWebhookRequest + 49, // 108: InternalApi.Projecthub.ProjectService.RegenerateWebhookSecret:input_type -> InternalApi.Projecthub.RegenerateWebhookSecretRequest + 41, // 109: InternalApi.Projecthub.ProjectService.ChangeProjectOwner:input_type -> InternalApi.Projecthub.ChangeProjectOwnerRequest + 43, // 110: InternalApi.Projecthub.ProjectService.ForkAndCreate:input_type -> InternalApi.Projecthub.ForkAndCreateRequest + 45, // 111: InternalApi.Projecthub.ProjectService.GithubAppSwitch:input_type -> InternalApi.Projecthub.GithubAppSwitchRequest + 47, // 112: InternalApi.Projecthub.ProjectService.FinishOnboarding:input_type -> InternalApi.Projecthub.FinishOnboardingRequest + 15, // 113: InternalApi.Projecthub.ProjectService.List:output_type -> InternalApi.Projecthub.ListResponse + 17, // 114: InternalApi.Projecthub.ProjectService.ListKeyset:output_type -> InternalApi.Projecthub.ListKeysetResponse + 19, // 115: InternalApi.Projecthub.ProjectService.Describe:output_type -> InternalApi.Projecthub.DescribeResponse + 21, // 116: InternalApi.Projecthub.ProjectService.DescribeMany:output_type -> InternalApi.Projecthub.DescribeManyResponse + 23, // 117: InternalApi.Projecthub.ProjectService.Create:output_type -> InternalApi.Projecthub.CreateResponse + 25, // 118: InternalApi.Projecthub.ProjectService.Update:output_type -> InternalApi.Projecthub.UpdateResponse + 27, // 119: InternalApi.Projecthub.ProjectService.Destroy:output_type -> InternalApi.Projecthub.DestroyResponse + 29, // 120: InternalApi.Projecthub.ProjectService.Restore:output_type -> InternalApi.Projecthub.RestoreResponse + 31, // 121: InternalApi.Projecthub.ProjectService.Users:output_type -> InternalApi.Projecthub.UsersResponse + 33, // 122: InternalApi.Projecthub.ProjectService.CheckDeployKey:output_type -> InternalApi.Projecthub.CheckDeployKeyResponse + 35, // 123: InternalApi.Projecthub.ProjectService.RegenerateDeployKey:output_type -> InternalApi.Projecthub.RegenerateDeployKeyResponse + 37, // 124: InternalApi.Projecthub.ProjectService.CheckWebhook:output_type -> InternalApi.Projecthub.CheckWebhookResponse + 39, // 125: InternalApi.Projecthub.ProjectService.RegenerateWebhook:output_type -> InternalApi.Projecthub.RegenerateWebhookResponse + 50, // 126: InternalApi.Projecthub.ProjectService.RegenerateWebhookSecret:output_type -> InternalApi.Projecthub.RegenerateWebhookSecretResponse + 42, // 127: InternalApi.Projecthub.ProjectService.ChangeProjectOwner:output_type -> InternalApi.Projecthub.ChangeProjectOwnerResponse + 44, // 128: InternalApi.Projecthub.ProjectService.ForkAndCreate:output_type -> InternalApi.Projecthub.ForkAndCreateResponse + 46, // 129: InternalApi.Projecthub.ProjectService.GithubAppSwitch:output_type -> InternalApi.Projecthub.GithubAppSwitchResponse + 48, // 130: InternalApi.Projecthub.ProjectService.FinishOnboarding:output_type -> InternalApi.Projecthub.FinishOnboardingResponse + 113, // [113:131] is the sub-list for method output_type + 95, // [95:113] is the sub-list for method input_type + 95, // [95:95] is the sub-list for extension type_name + 95, // [95:95] is the sub-list for extension extendee + 0, // [0:95] is the sub-list for field type_name } func init() { file_projecthub_proto_init() } @@ -5124,7 +5959,7 @@ func file_projecthub_proto_init() { } } file_projecthub_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*DescribeRequest); i { + switch v := v.(*ListKeysetRequest); i { case 0: return &v.state case 1: @@ -5136,7 +5971,7 @@ func file_projecthub_proto_init() { } } file_projecthub_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*DescribeResponse); i { + switch v := v.(*ListKeysetResponse); i { case 0: return &v.state case 1: @@ -5148,7 +5983,7 @@ func file_projecthub_proto_init() { } } file_projecthub_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*DescribeManyRequest); i { + switch v := v.(*DescribeRequest); i { case 0: return &v.state case 1: @@ -5160,7 +5995,7 @@ func file_projecthub_proto_init() { } } file_projecthub_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*DescribeManyResponse); i { + switch v := v.(*DescribeResponse); i { case 0: return &v.state case 1: @@ -5172,7 +6007,7 @@ func file_projecthub_proto_init() { } } file_projecthub_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*CreateRequest); i { + switch v := v.(*DescribeManyRequest); i { case 0: return &v.state case 1: @@ -5184,7 +6019,7 @@ func file_projecthub_proto_init() { } } file_projecthub_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*CreateResponse); i { + switch v := v.(*DescribeManyResponse); i { case 0: return &v.state case 1: @@ -5196,7 +6031,7 @@ func file_projecthub_proto_init() { } } file_projecthub_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*UpdateRequest); i { + switch v := v.(*CreateRequest); i { case 0: return &v.state case 1: @@ -5208,7 +6043,7 @@ func file_projecthub_proto_init() { } } file_projecthub_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*UpdateResponse); i { + switch v := v.(*CreateResponse); i { case 0: return &v.state case 1: @@ -5220,7 +6055,7 @@ func file_projecthub_proto_init() { } } file_projecthub_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*DestroyRequest); i { + switch v := v.(*UpdateRequest); i { case 0: return &v.state case 1: @@ -5232,7 +6067,7 @@ func file_projecthub_proto_init() { } } file_projecthub_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*DestroyResponse); i { + switch v := v.(*UpdateResponse); i { case 0: return &v.state case 1: @@ -5244,7 +6079,7 @@ func file_projecthub_proto_init() { } } file_projecthub_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*UsersRequest); i { + switch v := v.(*DestroyRequest); i { case 0: return &v.state case 1: @@ -5256,7 +6091,7 @@ func file_projecthub_proto_init() { } } file_projecthub_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*UsersResponse); i { + switch v := v.(*DestroyResponse); i { case 0: return &v.state case 1: @@ -5268,7 +6103,7 @@ func file_projecthub_proto_init() { } } file_projecthub_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*CheckDeployKeyRequest); i { + switch v := v.(*RestoreRequest); i { case 0: return &v.state case 1: @@ -5280,7 +6115,7 @@ func file_projecthub_proto_init() { } } file_projecthub_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*CheckDeployKeyResponse); i { + switch v := v.(*RestoreResponse); i { case 0: return &v.state case 1: @@ -5292,7 +6127,7 @@ func file_projecthub_proto_init() { } } file_projecthub_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*RegenerateDeployKeyRequest); i { + switch v := v.(*UsersRequest); i { case 0: return &v.state case 1: @@ -5304,7 +6139,7 @@ func file_projecthub_proto_init() { } } file_projecthub_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*RegenerateDeployKeyResponse); i { + switch v := v.(*UsersResponse); i { case 0: return &v.state case 1: @@ -5316,7 +6151,7 @@ func file_projecthub_proto_init() { } } file_projecthub_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*CheckWebhookRequest); i { + switch v := v.(*CheckDeployKeyRequest); i { case 0: return &v.state case 1: @@ -5328,7 +6163,7 @@ func file_projecthub_proto_init() { } } file_projecthub_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*CheckWebhookResponse); i { + switch v := v.(*CheckDeployKeyResponse); i { case 0: return &v.state case 1: @@ -5340,7 +6175,7 @@ func file_projecthub_proto_init() { } } file_projecthub_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*RegenerateWebhookRequest); i { + switch v := v.(*RegenerateDeployKeyRequest); i { case 0: return &v.state case 1: @@ -5352,7 +6187,7 @@ func file_projecthub_proto_init() { } } file_projecthub_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*RegenerateWebhookResponse); i { + switch v := v.(*RegenerateDeployKeyResponse); i { case 0: return &v.state case 1: @@ -5364,7 +6199,7 @@ func file_projecthub_proto_init() { } } file_projecthub_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*Webhook); i { + switch v := v.(*CheckWebhookRequest); i { case 0: return &v.state case 1: @@ -5376,7 +6211,7 @@ func file_projecthub_proto_init() { } } file_projecthub_proto_msgTypes[28].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ChangeProjectOwnerRequest); i { + switch v := v.(*CheckWebhookResponse); i { case 0: return &v.state case 1: @@ -5388,7 +6223,7 @@ func file_projecthub_proto_init() { } } file_projecthub_proto_msgTypes[29].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ChangeProjectOwnerResponse); i { + switch v := v.(*RegenerateWebhookRequest); i { case 0: return &v.state case 1: @@ -5400,7 +6235,7 @@ func file_projecthub_proto_init() { } } file_projecthub_proto_msgTypes[30].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ForkAndCreateRequest); i { + switch v := v.(*RegenerateWebhookResponse); i { case 0: return &v.state case 1: @@ -5412,7 +6247,7 @@ func file_projecthub_proto_init() { } } file_projecthub_proto_msgTypes[31].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ForkAndCreateResponse); i { + switch v := v.(*Webhook); i { case 0: return &v.state case 1: @@ -5424,7 +6259,7 @@ func file_projecthub_proto_init() { } } file_projecthub_proto_msgTypes[32].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GithubAppSwitchRequest); i { + switch v := v.(*ChangeProjectOwnerRequest); i { case 0: return &v.state case 1: @@ -5436,7 +6271,7 @@ func file_projecthub_proto_init() { } } file_projecthub_proto_msgTypes[33].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GithubAppSwitchResponse); i { + switch v := v.(*ChangeProjectOwnerResponse); i { case 0: return &v.state case 1: @@ -5448,7 +6283,7 @@ func file_projecthub_proto_init() { } } file_projecthub_proto_msgTypes[34].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ProjectCreated); i { + switch v := v.(*ForkAndCreateRequest); i { case 0: return &v.state case 1: @@ -5460,7 +6295,7 @@ func file_projecthub_proto_init() { } } file_projecthub_proto_msgTypes[35].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ProjectDeleted); i { + switch v := v.(*ForkAndCreateResponse); i { case 0: return &v.state case 1: @@ -5472,7 +6307,7 @@ func file_projecthub_proto_init() { } } file_projecthub_proto_msgTypes[36].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ProjectUpdated); i { + switch v := v.(*GithubAppSwitchRequest); i { case 0: return &v.state case 1: @@ -5484,7 +6319,7 @@ func file_projecthub_proto_init() { } } file_projecthub_proto_msgTypes[37].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*CollaboratorsChanged); i { + switch v := v.(*GithubAppSwitchResponse); i { case 0: return &v.state case 1: @@ -5496,7 +6331,7 @@ func file_projecthub_proto_init() { } } file_projecthub_proto_msgTypes[38].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ResponseMeta_Status); i { + switch v := v.(*FinishOnboardingRequest); i { case 0: return &v.state case 1: @@ -5508,7 +6343,7 @@ func file_projecthub_proto_init() { } } file_projecthub_proto_msgTypes[39].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*Project_Metadata); i { + switch v := v.(*FinishOnboardingResponse); i { case 0: return &v.state case 1: @@ -5520,7 +6355,7 @@ func file_projecthub_proto_init() { } } file_projecthub_proto_msgTypes[40].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*Project_Spec); i { + switch v := v.(*RegenerateWebhookSecretRequest); i { case 0: return &v.state case 1: @@ -5532,7 +6367,7 @@ func file_projecthub_proto_init() { } } file_projecthub_proto_msgTypes[41].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*Project_Status); i { + switch v := v.(*RegenerateWebhookSecretResponse); i { case 0: return &v.state case 1: @@ -5544,7 +6379,7 @@ func file_projecthub_proto_init() { } } file_projecthub_proto_msgTypes[42].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*Project_Spec_Repository); i { + switch v := v.(*ProjectCreated); i { case 0: return &v.state case 1: @@ -5556,7 +6391,7 @@ func file_projecthub_proto_init() { } } file_projecthub_proto_msgTypes[43].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*Project_Spec_Scheduler); i { + switch v := v.(*ProjectDeleted); i { case 0: return &v.state case 1: @@ -5568,7 +6403,7 @@ func file_projecthub_proto_init() { } } file_projecthub_proto_msgTypes[44].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*Project_Spec_Task); i { + switch v := v.(*ProjectRestored); i { case 0: return &v.state case 1: @@ -5580,7 +6415,7 @@ func file_projecthub_proto_init() { } } file_projecthub_proto_msgTypes[45].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*Project_Spec_Repository_ForkedPullRequests); i { + switch v := v.(*ProjectUpdated); i { case 0: return &v.state case 1: @@ -5592,7 +6427,7 @@ func file_projecthub_proto_init() { } } file_projecthub_proto_msgTypes[46].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*Project_Spec_Repository_Status); i { + switch v := v.(*CollaboratorsChanged); i { case 0: return &v.state case 1: @@ -5604,7 +6439,7 @@ func file_projecthub_proto_init() { } } file_projecthub_proto_msgTypes[47].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*Project_Spec_Repository_Whitelist); i { + switch v := v.(*ResponseMeta_Status); i { case 0: return &v.state case 1: @@ -5616,7 +6451,7 @@ func file_projecthub_proto_init() { } } file_projecthub_proto_msgTypes[48].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*Project_Spec_Repository_Status_PipelineFile); i { + switch v := v.(*Project_Metadata); i { case 0: return &v.state case 1: @@ -5628,7 +6463,7 @@ func file_projecthub_proto_init() { } } file_projecthub_proto_msgTypes[49].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*Project_Spec_Task_Parameter); i { + switch v := v.(*Project_Spec); i { case 0: return &v.state case 1: @@ -5640,7 +6475,7 @@ func file_projecthub_proto_init() { } } file_projecthub_proto_msgTypes[50].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*Project_Status_Cache); i { + switch v := v.(*Project_Status); i { case 0: return &v.state case 1: @@ -5652,7 +6487,7 @@ func file_projecthub_proto_init() { } } file_projecthub_proto_msgTypes[51].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*Project_Status_ArtifactStore); i { + switch v := v.(*Project_Spec_Repository); i { case 0: return &v.state case 1: @@ -5664,7 +6499,7 @@ func file_projecthub_proto_init() { } } file_projecthub_proto_msgTypes[52].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*Project_Status_Repository); i { + switch v := v.(*Project_Spec_Scheduler); i { case 0: return &v.state case 1: @@ -5676,7 +6511,7 @@ func file_projecthub_proto_init() { } } file_projecthub_proto_msgTypes[53].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*Project_Status_Analysis); i { + switch v := v.(*Project_Spec_Task); i { case 0: return &v.state case 1: @@ -5688,7 +6523,7 @@ func file_projecthub_proto_init() { } } file_projecthub_proto_msgTypes[54].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*Project_Status_Permissions); i { + switch v := v.(*Project_Spec_Repository_ForkedPullRequests); i { case 0: return &v.state case 1: @@ -5700,7 +6535,7 @@ func file_projecthub_proto_init() { } } file_projecthub_proto_msgTypes[55].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*CheckDeployKeyResponse_DeployKey); i { + switch v := v.(*Project_Spec_Repository_Status); i { case 0: return &v.state case 1: @@ -5712,6 +6547,114 @@ func file_projecthub_proto_init() { } } file_projecthub_proto_msgTypes[56].Exporter = func(v interface{}, i int) interface{} { + switch v := v.(*Project_Spec_Repository_Whitelist); i { + case 0: + return &v.state + case 1: + return &v.sizeCache + case 2: + return &v.unknownFields + default: + return nil + } + } + file_projecthub_proto_msgTypes[57].Exporter = func(v interface{}, i int) interface{} { + switch v := v.(*Project_Spec_Repository_Status_PipelineFile); i { + case 0: + return &v.state + case 1: + return &v.sizeCache + case 2: + return &v.unknownFields + default: + return nil + } + } + file_projecthub_proto_msgTypes[58].Exporter = func(v interface{}, i int) interface{} { + switch v := v.(*Project_Spec_Task_Parameter); i { + case 0: + return &v.state + case 1: + return &v.sizeCache + case 2: + return &v.unknownFields + default: + return nil + } + } + file_projecthub_proto_msgTypes[59].Exporter = func(v interface{}, i int) interface{} { + switch v := v.(*Project_Status_Cache); i { + case 0: + return &v.state + case 1: + return &v.sizeCache + case 2: + return &v.unknownFields + default: + return nil + } + } + file_projecthub_proto_msgTypes[60].Exporter = func(v interface{}, i int) interface{} { + switch v := v.(*Project_Status_ArtifactStore); i { + case 0: + return &v.state + case 1: + return &v.sizeCache + case 2: + return &v.unknownFields + default: + return nil + } + } + file_projecthub_proto_msgTypes[61].Exporter = func(v interface{}, i int) interface{} { + switch v := v.(*Project_Status_Repository); i { + case 0: + return &v.state + case 1: + return &v.sizeCache + case 2: + return &v.unknownFields + default: + return nil + } + } + file_projecthub_proto_msgTypes[62].Exporter = func(v interface{}, i int) interface{} { + switch v := v.(*Project_Status_Analysis); i { + case 0: + return &v.state + case 1: + return &v.sizeCache + case 2: + return &v.unknownFields + default: + return nil + } + } + file_projecthub_proto_msgTypes[63].Exporter = func(v interface{}, i int) interface{} { + switch v := v.(*Project_Status_Permissions); i { + case 0: + return &v.state + case 1: + return &v.sizeCache + case 2: + return &v.unknownFields + default: + return nil + } + } + file_projecthub_proto_msgTypes[64].Exporter = func(v interface{}, i int) interface{} { + switch v := v.(*CheckDeployKeyResponse_DeployKey); i { + case 0: + return &v.state + case 1: + return &v.sizeCache + case 2: + return &v.unknownFields + default: + return nil + } + } + file_projecthub_proto_msgTypes[65].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*RegenerateDeployKeyResponse_DeployKey); i { case 0: return &v.state @@ -5724,7 +6667,7 @@ func file_projecthub_proto_init() { } } } - file_projecthub_proto_msgTypes[42].OneofWrappers = []interface{}{ + file_projecthub_proto_msgTypes[51].OneofWrappers = []interface{}{ (*Project_Spec_Repository_Run)(nil), } type x struct{} @@ -5732,8 +6675,8 @@ func file_projecthub_proto_init() { File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), RawDescriptor: file_projecthub_proto_rawDesc, - NumEnums: 8, - NumMessages: 57, + NumEnums: 9, + NumMessages: 66, NumExtensions: 0, NumServices: 1, }, diff --git a/ee/velocity/pkg/protos/projecthub/projecthub_grpc.pb.go b/ee/velocity/pkg/protos/projecthub/projecthub_grpc.pb.go index 818415137..bebce0b12 100644 --- a/ee/velocity/pkg/protos/projecthub/projecthub_grpc.pb.go +++ b/ee/velocity/pkg/protos/projecthub/projecthub_grpc.pb.go @@ -19,20 +19,24 @@ import ( const _ = grpc.SupportPackageIsVersion7 const ( - ProjectService_List_FullMethodName = "/InternalApi.Projecthub.ProjectService/List" - ProjectService_Describe_FullMethodName = "/InternalApi.Projecthub.ProjectService/Describe" - ProjectService_DescribeMany_FullMethodName = "/InternalApi.Projecthub.ProjectService/DescribeMany" - ProjectService_Create_FullMethodName = "/InternalApi.Projecthub.ProjectService/Create" - ProjectService_Update_FullMethodName = "/InternalApi.Projecthub.ProjectService/Update" - ProjectService_Destroy_FullMethodName = "/InternalApi.Projecthub.ProjectService/Destroy" - ProjectService_Users_FullMethodName = "/InternalApi.Projecthub.ProjectService/Users" - ProjectService_CheckDeployKey_FullMethodName = "/InternalApi.Projecthub.ProjectService/CheckDeployKey" - ProjectService_RegenerateDeployKey_FullMethodName = "/InternalApi.Projecthub.ProjectService/RegenerateDeployKey" - ProjectService_CheckWebhook_FullMethodName = "/InternalApi.Projecthub.ProjectService/CheckWebhook" - ProjectService_RegenerateWebhook_FullMethodName = "/InternalApi.Projecthub.ProjectService/RegenerateWebhook" - ProjectService_ChangeProjectOwner_FullMethodName = "/InternalApi.Projecthub.ProjectService/ChangeProjectOwner" - ProjectService_ForkAndCreate_FullMethodName = "/InternalApi.Projecthub.ProjectService/ForkAndCreate" - ProjectService_GithubAppSwitch_FullMethodName = "/InternalApi.Projecthub.ProjectService/GithubAppSwitch" + ProjectService_List_FullMethodName = "/InternalApi.Projecthub.ProjectService/List" + ProjectService_ListKeyset_FullMethodName = "/InternalApi.Projecthub.ProjectService/ListKeyset" + ProjectService_Describe_FullMethodName = "/InternalApi.Projecthub.ProjectService/Describe" + ProjectService_DescribeMany_FullMethodName = "/InternalApi.Projecthub.ProjectService/DescribeMany" + ProjectService_Create_FullMethodName = "/InternalApi.Projecthub.ProjectService/Create" + ProjectService_Update_FullMethodName = "/InternalApi.Projecthub.ProjectService/Update" + ProjectService_Destroy_FullMethodName = "/InternalApi.Projecthub.ProjectService/Destroy" + ProjectService_Restore_FullMethodName = "/InternalApi.Projecthub.ProjectService/Restore" + ProjectService_Users_FullMethodName = "/InternalApi.Projecthub.ProjectService/Users" + ProjectService_CheckDeployKey_FullMethodName = "/InternalApi.Projecthub.ProjectService/CheckDeployKey" + ProjectService_RegenerateDeployKey_FullMethodName = "/InternalApi.Projecthub.ProjectService/RegenerateDeployKey" + ProjectService_CheckWebhook_FullMethodName = "/InternalApi.Projecthub.ProjectService/CheckWebhook" + ProjectService_RegenerateWebhook_FullMethodName = "/InternalApi.Projecthub.ProjectService/RegenerateWebhook" + ProjectService_RegenerateWebhookSecret_FullMethodName = "/InternalApi.Projecthub.ProjectService/RegenerateWebhookSecret" + ProjectService_ChangeProjectOwner_FullMethodName = "/InternalApi.Projecthub.ProjectService/ChangeProjectOwner" + ProjectService_ForkAndCreate_FullMethodName = "/InternalApi.Projecthub.ProjectService/ForkAndCreate" + ProjectService_GithubAppSwitch_FullMethodName = "/InternalApi.Projecthub.ProjectService/GithubAppSwitch" + ProjectService_FinishOnboarding_FullMethodName = "/InternalApi.Projecthub.ProjectService/FinishOnboarding" ) // ProjectServiceClient is the client API for ProjectService service. @@ -40,11 +44,13 @@ const ( // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. type ProjectServiceClient interface { List(ctx context.Context, in *ListRequest, opts ...grpc.CallOption) (*ListResponse, error) + ListKeyset(ctx context.Context, in *ListKeysetRequest, opts ...grpc.CallOption) (*ListKeysetResponse, error) Describe(ctx context.Context, in *DescribeRequest, opts ...grpc.CallOption) (*DescribeResponse, error) DescribeMany(ctx context.Context, in *DescribeManyRequest, opts ...grpc.CallOption) (*DescribeManyResponse, error) Create(ctx context.Context, in *CreateRequest, opts ...grpc.CallOption) (*CreateResponse, error) Update(ctx context.Context, in *UpdateRequest, opts ...grpc.CallOption) (*UpdateResponse, error) Destroy(ctx context.Context, in *DestroyRequest, opts ...grpc.CallOption) (*DestroyResponse, error) + Restore(ctx context.Context, in *RestoreRequest, opts ...grpc.CallOption) (*RestoreResponse, error) // Operation is called to list Semaphore users on the project. // Operation is synchronous. Users(ctx context.Context, in *UsersRequest, opts ...grpc.CallOption) (*UsersResponse, error) @@ -60,6 +66,10 @@ type ProjectServiceClient interface { // Operation is called to regenerate a webhook. // Operation is synchronous. RegenerateWebhook(ctx context.Context, in *RegenerateWebhookRequest, opts ...grpc.CallOption) (*RegenerateWebhookResponse, error) + // Operation is called to regenerate a webhook secret token. + // Operation is synchronous. + // Operation is only available for git agnostic projects. + RegenerateWebhookSecret(ctx context.Context, in *RegenerateWebhookSecretRequest, opts ...grpc.CallOption) (*RegenerateWebhookSecretResponse, error) // Operation is called to change a project owner within the same organization. // Operation is synchronous. ChangeProjectOwner(ctx context.Context, in *ChangeProjectOwnerRequest, opts ...grpc.CallOption) (*ChangeProjectOwnerResponse, error) @@ -69,6 +79,9 @@ type ProjectServiceClient interface { // Operation is called to switch project from github_oauth_token to github_app integration // Operation is synchronous. GithubAppSwitch(ctx context.Context, in *GithubAppSwitchRequest, opts ...grpc.CallOption) (*GithubAppSwitchResponse, error) + // Operation is called to transition project from onboarding to ready state. + // Operation is synchronous. + FinishOnboarding(ctx context.Context, in *FinishOnboardingRequest, opts ...grpc.CallOption) (*FinishOnboardingResponse, error) } type projectServiceClient struct { @@ -88,6 +101,15 @@ func (c *projectServiceClient) List(ctx context.Context, in *ListRequest, opts . return out, nil } +func (c *projectServiceClient) ListKeyset(ctx context.Context, in *ListKeysetRequest, opts ...grpc.CallOption) (*ListKeysetResponse, error) { + out := new(ListKeysetResponse) + err := c.cc.Invoke(ctx, ProjectService_ListKeyset_FullMethodName, in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + func (c *projectServiceClient) Describe(ctx context.Context, in *DescribeRequest, opts ...grpc.CallOption) (*DescribeResponse, error) { out := new(DescribeResponse) err := c.cc.Invoke(ctx, ProjectService_Describe_FullMethodName, in, out, opts...) @@ -133,6 +155,15 @@ func (c *projectServiceClient) Destroy(ctx context.Context, in *DestroyRequest, return out, nil } +func (c *projectServiceClient) Restore(ctx context.Context, in *RestoreRequest, opts ...grpc.CallOption) (*RestoreResponse, error) { + out := new(RestoreResponse) + err := c.cc.Invoke(ctx, ProjectService_Restore_FullMethodName, in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + func (c *projectServiceClient) Users(ctx context.Context, in *UsersRequest, opts ...grpc.CallOption) (*UsersResponse, error) { out := new(UsersResponse) err := c.cc.Invoke(ctx, ProjectService_Users_FullMethodName, in, out, opts...) @@ -178,6 +209,15 @@ func (c *projectServiceClient) RegenerateWebhook(ctx context.Context, in *Regene return out, nil } +func (c *projectServiceClient) RegenerateWebhookSecret(ctx context.Context, in *RegenerateWebhookSecretRequest, opts ...grpc.CallOption) (*RegenerateWebhookSecretResponse, error) { + out := new(RegenerateWebhookSecretResponse) + err := c.cc.Invoke(ctx, ProjectService_RegenerateWebhookSecret_FullMethodName, in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + func (c *projectServiceClient) ChangeProjectOwner(ctx context.Context, in *ChangeProjectOwnerRequest, opts ...grpc.CallOption) (*ChangeProjectOwnerResponse, error) { out := new(ChangeProjectOwnerResponse) err := c.cc.Invoke(ctx, ProjectService_ChangeProjectOwner_FullMethodName, in, out, opts...) @@ -205,16 +245,27 @@ func (c *projectServiceClient) GithubAppSwitch(ctx context.Context, in *GithubAp return out, nil } +func (c *projectServiceClient) FinishOnboarding(ctx context.Context, in *FinishOnboardingRequest, opts ...grpc.CallOption) (*FinishOnboardingResponse, error) { + out := new(FinishOnboardingResponse) + err := c.cc.Invoke(ctx, ProjectService_FinishOnboarding_FullMethodName, in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + // ProjectServiceServer is the server API for ProjectService service. // All implementations should embed UnimplementedProjectServiceServer // for forward compatibility type ProjectServiceServer interface { List(context.Context, *ListRequest) (*ListResponse, error) + ListKeyset(context.Context, *ListKeysetRequest) (*ListKeysetResponse, error) Describe(context.Context, *DescribeRequest) (*DescribeResponse, error) DescribeMany(context.Context, *DescribeManyRequest) (*DescribeManyResponse, error) Create(context.Context, *CreateRequest) (*CreateResponse, error) Update(context.Context, *UpdateRequest) (*UpdateResponse, error) Destroy(context.Context, *DestroyRequest) (*DestroyResponse, error) + Restore(context.Context, *RestoreRequest) (*RestoreResponse, error) // Operation is called to list Semaphore users on the project. // Operation is synchronous. Users(context.Context, *UsersRequest) (*UsersResponse, error) @@ -230,6 +281,10 @@ type ProjectServiceServer interface { // Operation is called to regenerate a webhook. // Operation is synchronous. RegenerateWebhook(context.Context, *RegenerateWebhookRequest) (*RegenerateWebhookResponse, error) + // Operation is called to regenerate a webhook secret token. + // Operation is synchronous. + // Operation is only available for git agnostic projects. + RegenerateWebhookSecret(context.Context, *RegenerateWebhookSecretRequest) (*RegenerateWebhookSecretResponse, error) // Operation is called to change a project owner within the same organization. // Operation is synchronous. ChangeProjectOwner(context.Context, *ChangeProjectOwnerRequest) (*ChangeProjectOwnerResponse, error) @@ -239,6 +294,9 @@ type ProjectServiceServer interface { // Operation is called to switch project from github_oauth_token to github_app integration // Operation is synchronous. GithubAppSwitch(context.Context, *GithubAppSwitchRequest) (*GithubAppSwitchResponse, error) + // Operation is called to transition project from onboarding to ready state. + // Operation is synchronous. + FinishOnboarding(context.Context, *FinishOnboardingRequest) (*FinishOnboardingResponse, error) } // UnimplementedProjectServiceServer should be embedded to have forward compatible implementations. @@ -248,6 +306,9 @@ type UnimplementedProjectServiceServer struct { func (UnimplementedProjectServiceServer) List(context.Context, *ListRequest) (*ListResponse, error) { return nil, status.Errorf(codes.Unimplemented, "method List not implemented") } +func (UnimplementedProjectServiceServer) ListKeyset(context.Context, *ListKeysetRequest) (*ListKeysetResponse, error) { + return nil, status.Errorf(codes.Unimplemented, "method ListKeyset not implemented") +} func (UnimplementedProjectServiceServer) Describe(context.Context, *DescribeRequest) (*DescribeResponse, error) { return nil, status.Errorf(codes.Unimplemented, "method Describe not implemented") } @@ -263,6 +324,9 @@ func (UnimplementedProjectServiceServer) Update(context.Context, *UpdateRequest) func (UnimplementedProjectServiceServer) Destroy(context.Context, *DestroyRequest) (*DestroyResponse, error) { return nil, status.Errorf(codes.Unimplemented, "method Destroy not implemented") } +func (UnimplementedProjectServiceServer) Restore(context.Context, *RestoreRequest) (*RestoreResponse, error) { + return nil, status.Errorf(codes.Unimplemented, "method Restore not implemented") +} func (UnimplementedProjectServiceServer) Users(context.Context, *UsersRequest) (*UsersResponse, error) { return nil, status.Errorf(codes.Unimplemented, "method Users not implemented") } @@ -278,6 +342,9 @@ func (UnimplementedProjectServiceServer) CheckWebhook(context.Context, *CheckWeb func (UnimplementedProjectServiceServer) RegenerateWebhook(context.Context, *RegenerateWebhookRequest) (*RegenerateWebhookResponse, error) { return nil, status.Errorf(codes.Unimplemented, "method RegenerateWebhook not implemented") } +func (UnimplementedProjectServiceServer) RegenerateWebhookSecret(context.Context, *RegenerateWebhookSecretRequest) (*RegenerateWebhookSecretResponse, error) { + return nil, status.Errorf(codes.Unimplemented, "method RegenerateWebhookSecret not implemented") +} func (UnimplementedProjectServiceServer) ChangeProjectOwner(context.Context, *ChangeProjectOwnerRequest) (*ChangeProjectOwnerResponse, error) { return nil, status.Errorf(codes.Unimplemented, "method ChangeProjectOwner not implemented") } @@ -287,6 +354,9 @@ func (UnimplementedProjectServiceServer) ForkAndCreate(context.Context, *ForkAnd func (UnimplementedProjectServiceServer) GithubAppSwitch(context.Context, *GithubAppSwitchRequest) (*GithubAppSwitchResponse, error) { return nil, status.Errorf(codes.Unimplemented, "method GithubAppSwitch not implemented") } +func (UnimplementedProjectServiceServer) FinishOnboarding(context.Context, *FinishOnboardingRequest) (*FinishOnboardingResponse, error) { + return nil, status.Errorf(codes.Unimplemented, "method FinishOnboarding not implemented") +} // UnsafeProjectServiceServer may be embedded to opt out of forward compatibility for this service. // Use of this interface is not recommended, as added methods to ProjectServiceServer will @@ -317,6 +387,24 @@ func _ProjectService_List_Handler(srv interface{}, ctx context.Context, dec func return interceptor(ctx, in, info, handler) } +func _ProjectService_ListKeyset_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(ListKeysetRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(ProjectServiceServer).ListKeyset(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: ProjectService_ListKeyset_FullMethodName, + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(ProjectServiceServer).ListKeyset(ctx, req.(*ListKeysetRequest)) + } + return interceptor(ctx, in, info, handler) +} + func _ProjectService_Describe_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(DescribeRequest) if err := dec(in); err != nil { @@ -407,6 +495,24 @@ func _ProjectService_Destroy_Handler(srv interface{}, ctx context.Context, dec f return interceptor(ctx, in, info, handler) } +func _ProjectService_Restore_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(RestoreRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(ProjectServiceServer).Restore(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: ProjectService_Restore_FullMethodName, + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(ProjectServiceServer).Restore(ctx, req.(*RestoreRequest)) + } + return interceptor(ctx, in, info, handler) +} + func _ProjectService_Users_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(UsersRequest) if err := dec(in); err != nil { @@ -497,6 +603,24 @@ func _ProjectService_RegenerateWebhook_Handler(srv interface{}, ctx context.Cont return interceptor(ctx, in, info, handler) } +func _ProjectService_RegenerateWebhookSecret_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(RegenerateWebhookSecretRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(ProjectServiceServer).RegenerateWebhookSecret(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: ProjectService_RegenerateWebhookSecret_FullMethodName, + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(ProjectServiceServer).RegenerateWebhookSecret(ctx, req.(*RegenerateWebhookSecretRequest)) + } + return interceptor(ctx, in, info, handler) +} + func _ProjectService_ChangeProjectOwner_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(ChangeProjectOwnerRequest) if err := dec(in); err != nil { @@ -551,6 +675,24 @@ func _ProjectService_GithubAppSwitch_Handler(srv interface{}, ctx context.Contex return interceptor(ctx, in, info, handler) } +func _ProjectService_FinishOnboarding_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(FinishOnboardingRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(ProjectServiceServer).FinishOnboarding(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: ProjectService_FinishOnboarding_FullMethodName, + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(ProjectServiceServer).FinishOnboarding(ctx, req.(*FinishOnboardingRequest)) + } + return interceptor(ctx, in, info, handler) +} + // ProjectService_ServiceDesc is the grpc.ServiceDesc for ProjectService service. // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) @@ -562,6 +704,10 @@ var ProjectService_ServiceDesc = grpc.ServiceDesc{ MethodName: "List", Handler: _ProjectService_List_Handler, }, + { + MethodName: "ListKeyset", + Handler: _ProjectService_ListKeyset_Handler, + }, { MethodName: "Describe", Handler: _ProjectService_Describe_Handler, @@ -582,6 +728,10 @@ var ProjectService_ServiceDesc = grpc.ServiceDesc{ MethodName: "Destroy", Handler: _ProjectService_Destroy_Handler, }, + { + MethodName: "Restore", + Handler: _ProjectService_Restore_Handler, + }, { MethodName: "Users", Handler: _ProjectService_Users_Handler, @@ -602,6 +752,10 @@ var ProjectService_ServiceDesc = grpc.ServiceDesc{ MethodName: "RegenerateWebhook", Handler: _ProjectService_RegenerateWebhook_Handler, }, + { + MethodName: "RegenerateWebhookSecret", + Handler: _ProjectService_RegenerateWebhookSecret_Handler, + }, { MethodName: "ChangeProjectOwner", Handler: _ProjectService_ChangeProjectOwner_Handler, @@ -614,6 +768,10 @@ var ProjectService_ServiceDesc = grpc.ServiceDesc{ MethodName: "GithubAppSwitch", Handler: _ProjectService_GithubAppSwitch_Handler, }, + { + MethodName: "FinishOnboarding", + Handler: _ProjectService_FinishOnboarding_Handler, + }, }, Streams: []grpc.StreamDesc{}, Metadata: "projecthub.proto", diff --git a/ee/velocity/pkg/protos/repository_integrator/repository_integrator.pb.go b/ee/velocity/pkg/protos/repository_integrator/repository_integrator.pb.go index 9839ee217..3160c023e 100644 --- a/ee/velocity/pkg/protos/repository_integrator/repository_integrator.pb.go +++ b/ee/velocity/pkg/protos/repository_integrator/repository_integrator.pb.go @@ -28,6 +28,8 @@ const ( IntegrationType_GITHUB_OAUTH_TOKEN IntegrationType = 0 IntegrationType_GITHUB_APP IntegrationType = 1 IntegrationType_BITBUCKET IntegrationType = 2 + IntegrationType_GITLAB IntegrationType = 3 + IntegrationType_GIT IntegrationType = 4 ) // Enum value maps for IntegrationType. @@ -36,11 +38,15 @@ var ( 0: "GITHUB_OAUTH_TOKEN", 1: "GITHUB_APP", 2: "BITBUCKET", + 3: "GITLAB", + 4: "GIT", } IntegrationType_value = map[string]int32{ "GITHUB_OAUTH_TOKEN": 0, "GITHUB_APP": 1, "BITBUCKET": 2, + "GITLAB": 3, + "GIT": 4, } ) @@ -671,6 +677,84 @@ func (x *GithubInstallationInfoResponse) GetInstallationUrl() string { return "" } +// InitGithubInstallation call request +// Used by bootstrapper to initialize github app installations +type InitGithubInstallationRequest struct { + state protoimpl.MessageState + sizeCache protoimpl.SizeCache + unknownFields protoimpl.UnknownFields +} + +func (x *InitGithubInstallationRequest) Reset() { + *x = InitGithubInstallationRequest{} + if protoimpl.UnsafeEnabled { + mi := &file_repository_integrator_proto_msgTypes[9] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) + } +} + +func (x *InitGithubInstallationRequest) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*InitGithubInstallationRequest) ProtoMessage() {} + +func (x *InitGithubInstallationRequest) ProtoReflect() protoreflect.Message { + mi := &file_repository_integrator_proto_msgTypes[9] + if protoimpl.UnsafeEnabled && x != nil { + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + if ms.LoadMessageInfo() == nil { + ms.StoreMessageInfo(mi) + } + return ms + } + return mi.MessageOf(x) +} + +// Deprecated: Use InitGithubInstallationRequest.ProtoReflect.Descriptor instead. +func (*InitGithubInstallationRequest) Descriptor() ([]byte, []int) { + return file_repository_integrator_proto_rawDescGZIP(), []int{9} +} + +type InitGithubInstallationResponse struct { + state protoimpl.MessageState + sizeCache protoimpl.SizeCache + unknownFields protoimpl.UnknownFields +} + +func (x *InitGithubInstallationResponse) Reset() { + *x = InitGithubInstallationResponse{} + if protoimpl.UnsafeEnabled { + mi := &file_repository_integrator_proto_msgTypes[10] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) + } +} + +func (x *InitGithubInstallationResponse) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*InitGithubInstallationResponse) ProtoMessage() {} + +func (x *InitGithubInstallationResponse) ProtoReflect() protoreflect.Message { + mi := &file_repository_integrator_proto_msgTypes[10] + if protoimpl.UnsafeEnabled && x != nil { + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + if ms.LoadMessageInfo() == nil { + ms.StoreMessageInfo(mi) + } + return ms + } + return mi.MessageOf(x) +} + +// Deprecated: Use InitGithubInstallationResponse.ProtoReflect.Descriptor instead. +func (*InitGithubInstallationResponse) Descriptor() ([]byte, []int) { + return file_repository_integrator_proto_rawDescGZIP(), []int{10} +} + // Get Repositories call request // // - user_id = [required] UUID of the user. @@ -687,7 +771,7 @@ type GetRepositoriesRequest struct { func (x *GetRepositoriesRequest) Reset() { *x = GetRepositoriesRequest{} if protoimpl.UnsafeEnabled { - mi := &file_repository_integrator_proto_msgTypes[9] + mi := &file_repository_integrator_proto_msgTypes[11] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -700,7 +784,7 @@ func (x *GetRepositoriesRequest) String() string { func (*GetRepositoriesRequest) ProtoMessage() {} func (x *GetRepositoriesRequest) ProtoReflect() protoreflect.Message { - mi := &file_repository_integrator_proto_msgTypes[9] + mi := &file_repository_integrator_proto_msgTypes[11] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -713,7 +797,7 @@ func (x *GetRepositoriesRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetRepositoriesRequest.ProtoReflect.Descriptor instead. func (*GetRepositoriesRequest) Descriptor() ([]byte, []int) { - return file_repository_integrator_proto_rawDescGZIP(), []int{9} + return file_repository_integrator_proto_rawDescGZIP(), []int{11} } func (x *GetRepositoriesRequest) GetUserId() string { @@ -744,7 +828,7 @@ type GetRepositoriesResponse struct { func (x *GetRepositoriesResponse) Reset() { *x = GetRepositoriesResponse{} if protoimpl.UnsafeEnabled { - mi := &file_repository_integrator_proto_msgTypes[10] + mi := &file_repository_integrator_proto_msgTypes[12] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -757,7 +841,7 @@ func (x *GetRepositoriesResponse) String() string { func (*GetRepositoriesResponse) ProtoMessage() {} func (x *GetRepositoriesResponse) ProtoReflect() protoreflect.Message { - mi := &file_repository_integrator_proto_msgTypes[10] + mi := &file_repository_integrator_proto_msgTypes[12] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -770,7 +854,7 @@ func (x *GetRepositoriesResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use GetRepositoriesResponse.ProtoReflect.Descriptor instead. func (*GetRepositoriesResponse) Descriptor() ([]byte, []int) { - return file_repository_integrator_proto_rawDescGZIP(), []int{10} + return file_repository_integrator_proto_rawDescGZIP(), []int{12} } func (x *GetRepositoriesResponse) GetRepositories() []*Repository { @@ -795,7 +879,7 @@ type Repository struct { func (x *Repository) Reset() { *x = Repository{} if protoimpl.UnsafeEnabled { - mi := &file_repository_integrator_proto_msgTypes[11] + mi := &file_repository_integrator_proto_msgTypes[13] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -808,7 +892,7 @@ func (x *Repository) String() string { func (*Repository) ProtoMessage() {} func (x *Repository) ProtoReflect() protoreflect.Message { - mi := &file_repository_integrator_proto_msgTypes[11] + mi := &file_repository_integrator_proto_msgTypes[13] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -821,7 +905,7 @@ func (x *Repository) ProtoReflect() protoreflect.Message { // Deprecated: Use Repository.ProtoReflect.Descriptor instead. func (*Repository) Descriptor() ([]byte, []int) { - return file_repository_integrator_proto_rawDescGZIP(), []int{11} + return file_repository_integrator_proto_rawDescGZIP(), []int{13} } func (x *Repository) GetAddable() bool { @@ -929,95 +1013,111 @@ var file_repository_integrator_proto_rawDesc = []byte{ 0x52, 0x0e, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x55, 0x72, 0x6c, 0x12, 0x29, 0x0a, 0x10, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x75, 0x72, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f, 0x69, 0x6e, 0x73, 0x74, - 0x61, 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x55, 0x72, 0x6c, 0x22, 0x8f, 0x01, 0x0a, 0x16, - 0x47, 0x65, 0x74, 0x52, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x65, 0x73, 0x52, - 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x17, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, - 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, - 0x5c, 0x0a, 0x10, 0x69, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x74, - 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x31, 0x2e, 0x49, 0x6e, 0x74, 0x65, - 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x52, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, - 0x72, 0x79, 0x49, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x2e, 0x49, 0x6e, 0x74, - 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x52, 0x0f, 0x69, 0x6e, - 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x22, 0x6b, 0x0a, - 0x17, 0x47, 0x65, 0x74, 0x52, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x65, 0x73, - 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x50, 0x0a, 0x0c, 0x72, 0x65, 0x70, 0x6f, - 0x73, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2c, - 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x52, 0x65, 0x70, - 0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x79, 0x49, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x6f, - 0x72, 0x2e, 0x52, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x79, 0x52, 0x0c, 0x72, 0x65, - 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x65, 0x73, 0x22, 0x8b, 0x01, 0x0a, 0x0a, 0x52, - 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x79, 0x12, 0x18, 0x0a, 0x07, 0x61, 0x64, 0x64, - 0x61, 0x62, 0x6c, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x61, 0x64, 0x64, 0x61, - 0x62, 0x6c, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, - 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x66, 0x75, 0x6c, 0x6c, 0x5f, - 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x66, 0x75, 0x6c, 0x6c, - 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x72, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, - 0x09, 0x52, 0x03, 0x75, 0x72, 0x6c, 0x12, 0x20, 0x0a, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, - 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x65, 0x73, - 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x2a, 0x48, 0x0a, 0x0f, 0x49, 0x6e, 0x74, 0x65, - 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x16, 0x0a, 0x12, 0x47, - 0x49, 0x54, 0x48, 0x55, 0x42, 0x5f, 0x4f, 0x41, 0x55, 0x54, 0x48, 0x5f, 0x54, 0x4f, 0x4b, 0x45, - 0x4e, 0x10, 0x00, 0x12, 0x0e, 0x0a, 0x0a, 0x47, 0x49, 0x54, 0x48, 0x55, 0x42, 0x5f, 0x41, 0x50, - 0x50, 0x10, 0x01, 0x12, 0x0d, 0x0a, 0x09, 0x42, 0x49, 0x54, 0x42, 0x55, 0x43, 0x4b, 0x45, 0x54, - 0x10, 0x02, 0x2a, 0x4b, 0x0a, 0x10, 0x49, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, - 0x6e, 0x53, 0x63, 0x6f, 0x70, 0x65, 0x12, 0x13, 0x0a, 0x0f, 0x46, 0x55, 0x4c, 0x4c, 0x5f, 0x43, - 0x4f, 0x4e, 0x4e, 0x45, 0x43, 0x54, 0x49, 0x4f, 0x4e, 0x10, 0x00, 0x12, 0x0f, 0x0a, 0x0b, 0x4f, - 0x4e, 0x4c, 0x59, 0x5f, 0x50, 0x55, 0x42, 0x4c, 0x49, 0x43, 0x10, 0x01, 0x12, 0x11, 0x0a, 0x0d, - 0x4e, 0x4f, 0x5f, 0x43, 0x4f, 0x4e, 0x4e, 0x45, 0x43, 0x54, 0x49, 0x4f, 0x4e, 0x10, 0x02, 0x32, - 0x87, 0x06, 0x0a, 0x1b, 0x52, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x79, 0x49, 0x6e, - 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, - 0x71, 0x0a, 0x08, 0x47, 0x65, 0x74, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x12, 0x31, 0x2e, 0x49, 0x6e, - 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x52, 0x65, 0x70, 0x6f, 0x73, 0x69, - 0x74, 0x6f, 0x72, 0x79, 0x49, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x2e, 0x47, - 0x65, 0x74, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x32, - 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x52, 0x65, 0x70, - 0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x79, 0x49, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x6f, - 0x72, 0x2e, 0x47, 0x65, 0x74, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, - 0x73, 0x65, 0x12, 0x77, 0x0a, 0x0a, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x54, 0x6f, 0x6b, 0x65, 0x6e, - 0x12, 0x33, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x52, - 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x79, 0x49, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, - 0x74, 0x6f, 0x72, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x52, 0x65, - 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x34, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, - 0x41, 0x70, 0x69, 0x2e, 0x52, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x79, 0x49, 0x6e, - 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x54, 0x6f, - 0x6b, 0x65, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x65, 0x0a, 0x10, 0x50, - 0x72, 0x65, 0x68, 0x65, 0x61, 0x74, 0x46, 0x69, 0x6c, 0x65, 0x43, 0x61, 0x63, 0x68, 0x65, 0x12, - 0x39, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x52, 0x65, - 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x79, 0x49, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, - 0x6f, 0x72, 0x2e, 0x50, 0x72, 0x65, 0x68, 0x65, 0x61, 0x74, 0x46, 0x69, 0x6c, 0x65, 0x43, 0x61, - 0x63, 0x68, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, - 0x74, 0x79, 0x12, 0x6e, 0x0a, 0x07, 0x47, 0x65, 0x74, 0x46, 0x69, 0x6c, 0x65, 0x12, 0x30, 0x2e, - 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x52, 0x65, 0x70, 0x6f, + 0x61, 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x55, 0x72, 0x6c, 0x22, 0x1f, 0x0a, 0x1d, 0x49, + 0x6e, 0x69, 0x74, 0x47, 0x69, 0x74, 0x68, 0x75, 0x62, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, + 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x22, 0x20, 0x0a, 0x1e, + 0x49, 0x6e, 0x69, 0x74, 0x47, 0x69, 0x74, 0x68, 0x75, 0x62, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, + 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x8f, + 0x01, 0x0a, 0x16, 0x47, 0x65, 0x74, 0x52, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x69, + 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x17, 0x0a, 0x07, 0x75, 0x73, 0x65, + 0x72, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, + 0x49, 0x64, 0x12, 0x5c, 0x0a, 0x10, 0x69, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, + 0x6e, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x31, 0x2e, 0x49, + 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x52, 0x65, 0x70, 0x6f, 0x73, + 0x69, 0x74, 0x6f, 0x72, 0x79, 0x49, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x2e, + 0x49, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x52, + 0x0f, 0x69, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, + 0x22, 0x6b, 0x0a, 0x17, 0x47, 0x65, 0x74, 0x52, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, + 0x69, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x50, 0x0a, 0x0c, 0x72, + 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, + 0x0b, 0x32, 0x2c, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, + 0x52, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x79, 0x49, 0x6e, 0x74, 0x65, 0x67, 0x72, + 0x61, 0x74, 0x6f, 0x72, 0x2e, 0x52, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x79, 0x52, + 0x0c, 0x72, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x65, 0x73, 0x22, 0x8b, 0x01, + 0x0a, 0x0a, 0x52, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x79, 0x12, 0x18, 0x0a, 0x07, + 0x61, 0x64, 0x64, 0x61, 0x62, 0x6c, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x61, + 0x64, 0x64, 0x61, 0x62, 0x6c, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, + 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x66, 0x75, + 0x6c, 0x6c, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x66, + 0x75, 0x6c, 0x6c, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x72, 0x6c, 0x18, 0x03, + 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x75, 0x72, 0x6c, 0x12, 0x20, 0x0a, 0x0b, 0x64, 0x65, 0x73, + 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, + 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x2a, 0x5d, 0x0a, 0x0f, 0x49, + 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x16, + 0x0a, 0x12, 0x47, 0x49, 0x54, 0x48, 0x55, 0x42, 0x5f, 0x4f, 0x41, 0x55, 0x54, 0x48, 0x5f, 0x54, + 0x4f, 0x4b, 0x45, 0x4e, 0x10, 0x00, 0x12, 0x0e, 0x0a, 0x0a, 0x47, 0x49, 0x54, 0x48, 0x55, 0x42, + 0x5f, 0x41, 0x50, 0x50, 0x10, 0x01, 0x12, 0x0d, 0x0a, 0x09, 0x42, 0x49, 0x54, 0x42, 0x55, 0x43, + 0x4b, 0x45, 0x54, 0x10, 0x02, 0x12, 0x0a, 0x0a, 0x06, 0x47, 0x49, 0x54, 0x4c, 0x41, 0x42, 0x10, + 0x03, 0x12, 0x07, 0x0a, 0x03, 0x47, 0x49, 0x54, 0x10, 0x04, 0x2a, 0x4b, 0x0a, 0x10, 0x49, 0x6e, + 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x63, 0x6f, 0x70, 0x65, 0x12, 0x13, + 0x0a, 0x0f, 0x46, 0x55, 0x4c, 0x4c, 0x5f, 0x43, 0x4f, 0x4e, 0x4e, 0x45, 0x43, 0x54, 0x49, 0x4f, + 0x4e, 0x10, 0x00, 0x12, 0x0f, 0x0a, 0x0b, 0x4f, 0x4e, 0x4c, 0x59, 0x5f, 0x50, 0x55, 0x42, 0x4c, + 0x49, 0x43, 0x10, 0x01, 0x12, 0x11, 0x0a, 0x0d, 0x4e, 0x4f, 0x5f, 0x43, 0x4f, 0x4e, 0x4e, 0x45, + 0x43, 0x54, 0x49, 0x4f, 0x4e, 0x10, 0x02, 0x32, 0xa5, 0x07, 0x0a, 0x1b, 0x52, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x79, 0x49, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x6f, 0x72, - 0x2e, 0x47, 0x65, 0x74, 0x46, 0x69, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, - 0x31, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x52, 0x65, - 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x79, 0x49, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, - 0x6f, 0x72, 0x2e, 0x47, 0x65, 0x74, 0x46, 0x69, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, - 0x73, 0x65, 0x12, 0x9b, 0x01, 0x0a, 0x16, 0x47, 0x69, 0x74, 0x68, 0x75, 0x62, 0x49, 0x6e, 0x73, - 0x74, 0x61, 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x3f, 0x2e, + 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0x71, 0x0a, 0x08, 0x47, 0x65, 0x74, 0x54, 0x6f, + 0x6b, 0x65, 0x6e, 0x12, 0x31, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, + 0x69, 0x2e, 0x52, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x79, 0x49, 0x6e, 0x74, 0x65, + 0x67, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x2e, 0x47, 0x65, 0x74, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x52, + 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x32, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, + 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x52, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x79, 0x49, + 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x2e, 0x47, 0x65, 0x74, 0x54, 0x6f, 0x6b, + 0x65, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x77, 0x0a, 0x0a, 0x43, 0x68, + 0x65, 0x63, 0x6b, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x12, 0x33, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, + 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x52, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, + 0x79, 0x49, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x2e, 0x43, 0x68, 0x65, 0x63, + 0x6b, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x34, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x52, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x79, 0x49, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x6f, 0x72, - 0x2e, 0x47, 0x69, 0x74, 0x68, 0x75, 0x62, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x61, 0x74, - 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x40, - 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x52, 0x65, 0x70, - 0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x79, 0x49, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x6f, - 0x72, 0x2e, 0x47, 0x69, 0x74, 0x68, 0x75, 0x62, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x61, - 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, - 0x12, 0x86, 0x01, 0x0a, 0x0f, 0x47, 0x65, 0x74, 0x52, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, - 0x72, 0x69, 0x65, 0x73, 0x12, 0x38, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, + 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, + 0x6e, 0x73, 0x65, 0x12, 0x65, 0x0a, 0x10, 0x50, 0x72, 0x65, 0x68, 0x65, 0x61, 0x74, 0x46, 0x69, + 0x6c, 0x65, 0x43, 0x61, 0x63, 0x68, 0x65, 0x12, 0x39, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, + 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x52, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x79, + 0x49, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x2e, 0x50, 0x72, 0x65, 0x68, 0x65, + 0x61, 0x74, 0x46, 0x69, 0x6c, 0x65, 0x43, 0x61, 0x63, 0x68, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, + 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, + 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x12, 0x6e, 0x0a, 0x07, 0x47, 0x65, + 0x74, 0x46, 0x69, 0x6c, 0x65, 0x12, 0x30, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, + 0x41, 0x70, 0x69, 0x2e, 0x52, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x79, 0x49, 0x6e, + 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x2e, 0x47, 0x65, 0x74, 0x46, 0x69, 0x6c, 0x65, + 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x31, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, + 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x52, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x79, + 0x49, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x2e, 0x47, 0x65, 0x74, 0x46, 0x69, + 0x6c, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x9b, 0x01, 0x0a, 0x16, 0x47, + 0x69, 0x74, 0x68, 0x75, 0x62, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f, + 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x3f, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, + 0x41, 0x70, 0x69, 0x2e, 0x52, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x79, 0x49, 0x6e, + 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x2e, 0x47, 0x69, 0x74, 0x68, 0x75, 0x62, 0x49, + 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x52, + 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x40, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, + 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x52, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x79, 0x49, + 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x2e, 0x47, 0x69, 0x74, 0x68, 0x75, 0x62, + 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, + 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x9b, 0x01, 0x0a, 0x16, 0x49, 0x6e, 0x69, + 0x74, 0x47, 0x69, 0x74, 0x68, 0x75, 0x62, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x61, 0x74, + 0x69, 0x6f, 0x6e, 0x12, 0x3f, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, + 0x69, 0x2e, 0x52, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x79, 0x49, 0x6e, 0x74, 0x65, + 0x67, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x2e, 0x49, 0x6e, 0x69, 0x74, 0x47, 0x69, 0x74, 0x68, 0x75, + 0x62, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, + 0x75, 0x65, 0x73, 0x74, 0x1a, 0x40, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, + 0x70, 0x69, 0x2e, 0x52, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x79, 0x49, 0x6e, 0x74, + 0x65, 0x67, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x2e, 0x49, 0x6e, 0x69, 0x74, 0x47, 0x69, 0x74, 0x68, + 0x75, 0x62, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, + 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x86, 0x01, 0x0a, 0x0f, 0x47, 0x65, 0x74, 0x52, 0x65, + 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x65, 0x73, 0x12, 0x38, 0x2e, 0x49, 0x6e, 0x74, + 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x52, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, + 0x6f, 0x72, 0x79, 0x49, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x2e, 0x47, 0x65, + 0x74, 0x52, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x65, 0x73, 0x52, 0x65, 0x71, + 0x75, 0x65, 0x73, 0x74, 0x1a, 0x39, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x52, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x79, 0x49, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x2e, 0x47, 0x65, 0x74, 0x52, 0x65, 0x70, 0x6f, 0x73, - 0x69, 0x74, 0x6f, 0x72, 0x69, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x39, - 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x52, 0x65, 0x70, - 0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x79, 0x49, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x6f, - 0x72, 0x2e, 0x47, 0x65, 0x74, 0x52, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x65, - 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x42, 0x43, 0x5a, 0x41, 0x67, 0x69, 0x74, - 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x72, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x65, 0x64, - 0x74, 0x65, 0x78, 0x74, 0x2f, 0x76, 0x65, 0x6c, 0x6f, 0x63, 0x69, 0x74, 0x79, 0x2f, 0x70, 0x6b, - 0x67, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x73, 0x2f, 0x72, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, - 0x6f, 0x72, 0x79, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x62, 0x06, - 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, + 0x69, 0x74, 0x6f, 0x72, 0x69, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x42, + 0x4c, 0x5a, 0x4a, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x73, 0x65, + 0x6d, 0x61, 0x70, 0x68, 0x6f, 0x72, 0x65, 0x69, 0x6f, 0x2f, 0x73, 0x65, 0x6d, 0x61, 0x70, 0x68, + 0x6f, 0x72, 0x65, 0x2f, 0x76, 0x65, 0x6c, 0x6f, 0x63, 0x69, 0x74, 0x79, 0x2f, 0x70, 0x6b, 0x67, + 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x73, 0x2f, 0x72, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, + 0x72, 0x79, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x62, 0x06, 0x70, + 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( @@ -1033,7 +1133,7 @@ func file_repository_integrator_proto_rawDescGZIP() []byte { } var file_repository_integrator_proto_enumTypes = make([]protoimpl.EnumInfo, 2) -var file_repository_integrator_proto_msgTypes = make([]protoimpl.MessageInfo, 12) +var file_repository_integrator_proto_msgTypes = make([]protoimpl.MessageInfo, 14) var file_repository_integrator_proto_goTypes = []interface{}{ (IntegrationType)(0), // 0: InternalApi.RepositoryIntegrator.IntegrationType (IntegrationScope)(0), // 1: InternalApi.RepositoryIntegrator.IntegrationScope @@ -1046,32 +1146,36 @@ var file_repository_integrator_proto_goTypes = []interface{}{ (*GetFileResponse)(nil), // 8: InternalApi.RepositoryIntegrator.GetFileResponse (*GithubInstallationInfoRequest)(nil), // 9: InternalApi.RepositoryIntegrator.GithubInstallationInfoRequest (*GithubInstallationInfoResponse)(nil), // 10: InternalApi.RepositoryIntegrator.GithubInstallationInfoResponse - (*GetRepositoriesRequest)(nil), // 11: InternalApi.RepositoryIntegrator.GetRepositoriesRequest - (*GetRepositoriesResponse)(nil), // 12: InternalApi.RepositoryIntegrator.GetRepositoriesResponse - (*Repository)(nil), // 13: InternalApi.RepositoryIntegrator.Repository - (*timestamp.Timestamp)(nil), // 14: google.protobuf.Timestamp - (*empty.Empty)(nil), // 15: google.protobuf.Empty + (*InitGithubInstallationRequest)(nil), // 11: InternalApi.RepositoryIntegrator.InitGithubInstallationRequest + (*InitGithubInstallationResponse)(nil), // 12: InternalApi.RepositoryIntegrator.InitGithubInstallationResponse + (*GetRepositoriesRequest)(nil), // 13: InternalApi.RepositoryIntegrator.GetRepositoriesRequest + (*GetRepositoriesResponse)(nil), // 14: InternalApi.RepositoryIntegrator.GetRepositoriesResponse + (*Repository)(nil), // 15: InternalApi.RepositoryIntegrator.Repository + (*timestamp.Timestamp)(nil), // 16: google.protobuf.Timestamp + (*empty.Empty)(nil), // 17: google.protobuf.Empty } var file_repository_integrator_proto_depIdxs = []int32{ 0, // 0: InternalApi.RepositoryIntegrator.GetTokenRequest.integration_type:type_name -> InternalApi.RepositoryIntegrator.IntegrationType - 14, // 1: InternalApi.RepositoryIntegrator.GetTokenResponse.expires_at:type_name -> google.protobuf.Timestamp + 16, // 1: InternalApi.RepositoryIntegrator.GetTokenResponse.expires_at:type_name -> google.protobuf.Timestamp 1, // 2: InternalApi.RepositoryIntegrator.CheckTokenResponse.integration_scope:type_name -> InternalApi.RepositoryIntegrator.IntegrationScope 0, // 3: InternalApi.RepositoryIntegrator.GetRepositoriesRequest.integration_type:type_name -> InternalApi.RepositoryIntegrator.IntegrationType - 13, // 4: InternalApi.RepositoryIntegrator.GetRepositoriesResponse.repositories:type_name -> InternalApi.RepositoryIntegrator.Repository + 15, // 4: InternalApi.RepositoryIntegrator.GetRepositoriesResponse.repositories:type_name -> InternalApi.RepositoryIntegrator.Repository 2, // 5: InternalApi.RepositoryIntegrator.RepositoryIntegratorService.GetToken:input_type -> InternalApi.RepositoryIntegrator.GetTokenRequest 4, // 6: InternalApi.RepositoryIntegrator.RepositoryIntegratorService.CheckToken:input_type -> InternalApi.RepositoryIntegrator.CheckTokenRequest 6, // 7: InternalApi.RepositoryIntegrator.RepositoryIntegratorService.PreheatFileCache:input_type -> InternalApi.RepositoryIntegrator.PreheatFileCacheRequest 7, // 8: InternalApi.RepositoryIntegrator.RepositoryIntegratorService.GetFile:input_type -> InternalApi.RepositoryIntegrator.GetFileRequest 9, // 9: InternalApi.RepositoryIntegrator.RepositoryIntegratorService.GithubInstallationInfo:input_type -> InternalApi.RepositoryIntegrator.GithubInstallationInfoRequest - 11, // 10: InternalApi.RepositoryIntegrator.RepositoryIntegratorService.GetRepositories:input_type -> InternalApi.RepositoryIntegrator.GetRepositoriesRequest - 3, // 11: InternalApi.RepositoryIntegrator.RepositoryIntegratorService.GetToken:output_type -> InternalApi.RepositoryIntegrator.GetTokenResponse - 5, // 12: InternalApi.RepositoryIntegrator.RepositoryIntegratorService.CheckToken:output_type -> InternalApi.RepositoryIntegrator.CheckTokenResponse - 15, // 13: InternalApi.RepositoryIntegrator.RepositoryIntegratorService.PreheatFileCache:output_type -> google.protobuf.Empty - 8, // 14: InternalApi.RepositoryIntegrator.RepositoryIntegratorService.GetFile:output_type -> InternalApi.RepositoryIntegrator.GetFileResponse - 10, // 15: InternalApi.RepositoryIntegrator.RepositoryIntegratorService.GithubInstallationInfo:output_type -> InternalApi.RepositoryIntegrator.GithubInstallationInfoResponse - 12, // 16: InternalApi.RepositoryIntegrator.RepositoryIntegratorService.GetRepositories:output_type -> InternalApi.RepositoryIntegrator.GetRepositoriesResponse - 11, // [11:17] is the sub-list for method output_type - 5, // [5:11] is the sub-list for method input_type + 11, // 10: InternalApi.RepositoryIntegrator.RepositoryIntegratorService.InitGithubInstallation:input_type -> InternalApi.RepositoryIntegrator.InitGithubInstallationRequest + 13, // 11: InternalApi.RepositoryIntegrator.RepositoryIntegratorService.GetRepositories:input_type -> InternalApi.RepositoryIntegrator.GetRepositoriesRequest + 3, // 12: InternalApi.RepositoryIntegrator.RepositoryIntegratorService.GetToken:output_type -> InternalApi.RepositoryIntegrator.GetTokenResponse + 5, // 13: InternalApi.RepositoryIntegrator.RepositoryIntegratorService.CheckToken:output_type -> InternalApi.RepositoryIntegrator.CheckTokenResponse + 17, // 14: InternalApi.RepositoryIntegrator.RepositoryIntegratorService.PreheatFileCache:output_type -> google.protobuf.Empty + 8, // 15: InternalApi.RepositoryIntegrator.RepositoryIntegratorService.GetFile:output_type -> InternalApi.RepositoryIntegrator.GetFileResponse + 10, // 16: InternalApi.RepositoryIntegrator.RepositoryIntegratorService.GithubInstallationInfo:output_type -> InternalApi.RepositoryIntegrator.GithubInstallationInfoResponse + 12, // 17: InternalApi.RepositoryIntegrator.RepositoryIntegratorService.InitGithubInstallation:output_type -> InternalApi.RepositoryIntegrator.InitGithubInstallationResponse + 14, // 18: InternalApi.RepositoryIntegrator.RepositoryIntegratorService.GetRepositories:output_type -> InternalApi.RepositoryIntegrator.GetRepositoriesResponse + 12, // [12:19] is the sub-list for method output_type + 5, // [5:12] is the sub-list for method input_type 5, // [5:5] is the sub-list for extension type_name 5, // [5:5] is the sub-list for extension extendee 0, // [0:5] is the sub-list for field type_name @@ -1192,7 +1296,7 @@ func file_repository_integrator_proto_init() { } } file_repository_integrator_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetRepositoriesRequest); i { + switch v := v.(*InitGithubInstallationRequest); i { case 0: return &v.state case 1: @@ -1204,7 +1308,7 @@ func file_repository_integrator_proto_init() { } } file_repository_integrator_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetRepositoriesResponse); i { + switch v := v.(*InitGithubInstallationResponse); i { case 0: return &v.state case 1: @@ -1216,6 +1320,30 @@ func file_repository_integrator_proto_init() { } } file_repository_integrator_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} { + switch v := v.(*GetRepositoriesRequest); i { + case 0: + return &v.state + case 1: + return &v.sizeCache + case 2: + return &v.unknownFields + default: + return nil + } + } + file_repository_integrator_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} { + switch v := v.(*GetRepositoriesResponse); i { + case 0: + return &v.state + case 1: + return &v.sizeCache + case 2: + return &v.unknownFields + default: + return nil + } + } + file_repository_integrator_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Repository); i { case 0: return &v.state @@ -1234,7 +1362,7 @@ func file_repository_integrator_proto_init() { GoPackagePath: reflect.TypeOf(x{}).PkgPath(), RawDescriptor: file_repository_integrator_proto_rawDesc, NumEnums: 2, - NumMessages: 12, + NumMessages: 14, NumExtensions: 0, NumServices: 1, }, diff --git a/ee/velocity/pkg/protos/repository_integrator/repository_integrator_grpc.pb.go b/ee/velocity/pkg/protos/repository_integrator/repository_integrator_grpc.pb.go index a48af0f82..793f25dbc 100644 --- a/ee/velocity/pkg/protos/repository_integrator/repository_integrator_grpc.pb.go +++ b/ee/velocity/pkg/protos/repository_integrator/repository_integrator_grpc.pb.go @@ -20,11 +20,12 @@ import ( const _ = grpc.SupportPackageIsVersion7 const ( - RepositoryIntegratorService_GetToken_FullMethodName = "/InternalApi.RepositoryIntegrator.RepositoryIntegratorService/GetToken" // #nosec - RepositoryIntegratorService_CheckToken_FullMethodName = "/InternalApi.RepositoryIntegrator.RepositoryIntegratorService/CheckToken" // #nosec + RepositoryIntegratorService_GetToken_FullMethodName = "/InternalApi.RepositoryIntegrator.RepositoryIntegratorService/GetToken" + RepositoryIntegratorService_CheckToken_FullMethodName = "/InternalApi.RepositoryIntegrator.RepositoryIntegratorService/CheckToken" RepositoryIntegratorService_PreheatFileCache_FullMethodName = "/InternalApi.RepositoryIntegrator.RepositoryIntegratorService/PreheatFileCache" RepositoryIntegratorService_GetFile_FullMethodName = "/InternalApi.RepositoryIntegrator.RepositoryIntegratorService/GetFile" RepositoryIntegratorService_GithubInstallationInfo_FullMethodName = "/InternalApi.RepositoryIntegrator.RepositoryIntegratorService/GithubInstallationInfo" + RepositoryIntegratorService_InitGithubInstallation_FullMethodName = "/InternalApi.RepositoryIntegrator.RepositoryIntegratorService/InitGithubInstallation" RepositoryIntegratorService_GetRepositories_FullMethodName = "/InternalApi.RepositoryIntegrator.RepositoryIntegratorService/GetRepositories" ) @@ -37,6 +38,7 @@ type RepositoryIntegratorServiceClient interface { PreheatFileCache(ctx context.Context, in *PreheatFileCacheRequest, opts ...grpc.CallOption) (*empty.Empty, error) GetFile(ctx context.Context, in *GetFileRequest, opts ...grpc.CallOption) (*GetFileResponse, error) GithubInstallationInfo(ctx context.Context, in *GithubInstallationInfoRequest, opts ...grpc.CallOption) (*GithubInstallationInfoResponse, error) + InitGithubInstallation(ctx context.Context, in *InitGithubInstallationRequest, opts ...grpc.CallOption) (*InitGithubInstallationResponse, error) GetRepositories(ctx context.Context, in *GetRepositoriesRequest, opts ...grpc.CallOption) (*GetRepositoriesResponse, error) } @@ -93,6 +95,15 @@ func (c *repositoryIntegratorServiceClient) GithubInstallationInfo(ctx context.C return out, nil } +func (c *repositoryIntegratorServiceClient) InitGithubInstallation(ctx context.Context, in *InitGithubInstallationRequest, opts ...grpc.CallOption) (*InitGithubInstallationResponse, error) { + out := new(InitGithubInstallationResponse) + err := c.cc.Invoke(ctx, RepositoryIntegratorService_InitGithubInstallation_FullMethodName, in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + func (c *repositoryIntegratorServiceClient) GetRepositories(ctx context.Context, in *GetRepositoriesRequest, opts ...grpc.CallOption) (*GetRepositoriesResponse, error) { out := new(GetRepositoriesResponse) err := c.cc.Invoke(ctx, RepositoryIntegratorService_GetRepositories_FullMethodName, in, out, opts...) @@ -111,6 +122,7 @@ type RepositoryIntegratorServiceServer interface { PreheatFileCache(context.Context, *PreheatFileCacheRequest) (*empty.Empty, error) GetFile(context.Context, *GetFileRequest) (*GetFileResponse, error) GithubInstallationInfo(context.Context, *GithubInstallationInfoRequest) (*GithubInstallationInfoResponse, error) + InitGithubInstallation(context.Context, *InitGithubInstallationRequest) (*InitGithubInstallationResponse, error) GetRepositories(context.Context, *GetRepositoriesRequest) (*GetRepositoriesResponse, error) } @@ -133,6 +145,9 @@ func (UnimplementedRepositoryIntegratorServiceServer) GetFile(context.Context, * func (UnimplementedRepositoryIntegratorServiceServer) GithubInstallationInfo(context.Context, *GithubInstallationInfoRequest) (*GithubInstallationInfoResponse, error) { return nil, status.Errorf(codes.Unimplemented, "method GithubInstallationInfo not implemented") } +func (UnimplementedRepositoryIntegratorServiceServer) InitGithubInstallation(context.Context, *InitGithubInstallationRequest) (*InitGithubInstallationResponse, error) { + return nil, status.Errorf(codes.Unimplemented, "method InitGithubInstallation not implemented") +} func (UnimplementedRepositoryIntegratorServiceServer) GetRepositories(context.Context, *GetRepositoriesRequest) (*GetRepositoriesResponse, error) { return nil, status.Errorf(codes.Unimplemented, "method GetRepositories not implemented") } @@ -238,6 +253,24 @@ func _RepositoryIntegratorService_GithubInstallationInfo_Handler(srv interface{} return interceptor(ctx, in, info, handler) } +func _RepositoryIntegratorService_InitGithubInstallation_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(InitGithubInstallationRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(RepositoryIntegratorServiceServer).InitGithubInstallation(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: RepositoryIntegratorService_InitGithubInstallation_FullMethodName, + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(RepositoryIntegratorServiceServer).InitGithubInstallation(ctx, req.(*InitGithubInstallationRequest)) + } + return interceptor(ctx, in, info, handler) +} + func _RepositoryIntegratorService_GetRepositories_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(GetRepositoriesRequest) if err := dec(in); err != nil { @@ -283,6 +316,10 @@ var RepositoryIntegratorService_ServiceDesc = grpc.ServiceDesc{ MethodName: "GithubInstallationInfo", Handler: _RepositoryIntegratorService_GithubInstallationInfo_Handler, }, + { + MethodName: "InitGithubInstallation", + Handler: _RepositoryIntegratorService_InitGithubInstallation_Handler, + }, { MethodName: "GetRepositories", Handler: _RepositoryIntegratorService_GetRepositories_Handler, diff --git a/ee/velocity/pkg/protos/response_status/response_status.pb.go b/ee/velocity/pkg/protos/response_status/response_status.pb.go index 0c6d86a3e..101cac80c 100644 --- a/ee/velocity/pkg/protos/response_status/response_status.pb.go +++ b/ee/velocity/pkg/protos/response_status/response_status.pb.go @@ -148,12 +148,12 @@ var file_include_internal_api_response_status_proto_rawDesc = []byte{ 0x65, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x22, 0x1d, 0x0a, 0x04, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x06, 0x0a, 0x02, 0x4f, 0x4b, 0x10, 0x00, 0x12, 0x0d, 0x0a, 0x09, 0x42, - 0x41, 0x44, 0x5f, 0x50, 0x41, 0x52, 0x41, 0x4d, 0x10, 0x01, 0x42, 0x3d, 0x5a, 0x3b, 0x67, 0x69, - 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x72, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x65, - 0x64, 0x74, 0x65, 0x78, 0x74, 0x2f, 0x76, 0x65, 0x6c, 0x6f, 0x63, 0x69, 0x74, 0x79, 0x2f, 0x70, - 0x6b, 0x67, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x73, 0x2f, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, - 0x73, 0x65, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, - 0x33, + 0x41, 0x44, 0x5f, 0x50, 0x41, 0x52, 0x41, 0x4d, 0x10, 0x01, 0x42, 0x46, 0x5a, 0x44, 0x67, 0x69, + 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x73, 0x65, 0x6d, 0x61, 0x70, 0x68, 0x6f, + 0x72, 0x65, 0x69, 0x6f, 0x2f, 0x73, 0x65, 0x6d, 0x61, 0x70, 0x68, 0x6f, 0x72, 0x65, 0x2f, 0x76, + 0x65, 0x6c, 0x6f, 0x63, 0x69, 0x74, 0x79, 0x2f, 0x70, 0x6b, 0x67, 0x2f, 0x70, 0x72, 0x6f, 0x74, + 0x6f, 0x73, 0x2f, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x5f, 0x73, 0x74, 0x61, 0x74, + 0x75, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( diff --git a/ee/velocity/pkg/protos/server_farm.job/server_farm.job.pb.go b/ee/velocity/pkg/protos/server_farm.job/server_farm.job.pb.go index a49841e22..a7968e4b5 100644 --- a/ee/velocity/pkg/protos/server_farm.job/server_farm.job.pb.go +++ b/ee/velocity/pkg/protos/server_farm.job/server_farm.job.pb.go @@ -384,6 +384,7 @@ func (x *DescribeRequest) GetJobId() string { // - self_hosted = [required] True if job is running in a self-hosted agent // - build_req_id = [required] ID from plumber used to tie job to the block // - agent_name = [required] Name of the self-hosted agent, empty for hosted jobs +// - agent_id = [required] ID of the agent type Job struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -414,6 +415,7 @@ type Job struct { OrganizationId string `protobuf:"bytes,23,opt,name=organization_id,json=organizationId,proto3" json:"organization_id,omitempty"` BuildReqId string `protobuf:"bytes,24,opt,name=build_req_id,json=buildReqId,proto3" json:"build_req_id,omitempty"` AgentName string `protobuf:"bytes,25,opt,name=agent_name,json=agentName,proto3" json:"agent_name,omitempty"` + AgentId string `protobuf:"bytes,27,opt,name=agent_id,json=agentId,proto3" json:"agent_id,omitempty"` } func (x *Job) Reset() { @@ -623,6 +625,13 @@ func (x *Job) GetAgentName() string { return "" } +func (x *Job) GetAgentId() string { + if x != nil { + return x.AgentId + } + return "" +} + // - status = [required] Status of the reponse. // - job = [required if status is OK] Description of job. type DescribeResponse struct { @@ -715,7 +724,13 @@ type ListRequest struct { // [required] If true, only debug jobs will be listed OnlyDebugJobs bool `protobuf:"varint,8,opt,name=only_debug_jobs,json=onlyDebugJobs,proto3" json:"only_debug_jobs,omitempty"` // [optional] List of IDs of pipelines which jobs should be listed - PplIds []string `protobuf:"bytes,9,rep,name=ppl_ids,json=pplIds,proto3" json:"ppl_ids,omitempty"` + PplIds []string `protobuf:"bytes,9,rep,name=ppl_ids,json=pplIds,proto3" json:"ppl_ids,omitempty"` + CreatedAtGte *timestamp.Timestamp `protobuf:"bytes,10,opt,name=created_at_gte,json=createdAtGte,proto3" json:"created_at_gte,omitempty"` + CreatedAtLte *timestamp.Timestamp `protobuf:"bytes,11,opt,name=created_at_lte,json=createdAtLte,proto3" json:"created_at_lte,omitempty"` + // [optional] List of ids of projects which jobs should be listed + ProjectIds []string `protobuf:"bytes,13,rep,name=project_ids,json=projectIds,proto3" json:"project_ids,omitempty"` + // [optional] List of machine_types which jobs should be listed + MachineTypes []string `protobuf:"bytes,14,rep,name=machine_types,json=machineTypes,proto3" json:"machine_types,omitempty"` } func (x *ListRequest) Reset() { @@ -813,6 +828,34 @@ func (x *ListRequest) GetPplIds() []string { return nil } +func (x *ListRequest) GetCreatedAtGte() *timestamp.Timestamp { + if x != nil { + return x.CreatedAtGte + } + return nil +} + +func (x *ListRequest) GetCreatedAtLte() *timestamp.Timestamp { + if x != nil { + return x.CreatedAtLte + } + return nil +} + +func (x *ListRequest) GetProjectIds() []string { + if x != nil { + return x.ProjectIds + } + return nil +} + +func (x *ListRequest) GetMachineTypes() []string { + if x != nil { + return x.MachineTypes + } + return nil +} + type ListResponse struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -1934,6 +1977,309 @@ func (x *CanAttachResponse) GetMessage() string { return "" } +// Create job request +// +// - requester_id = [required] ID of the user that requested job to be created +// - organization_id = [required] UUID of the organization +// - project_id = [required] UUID of project +// - branch_name = [optional, default=master] git branch on which the job should start +// - commit_sha = [optional, default=HEAD] git commit SHA on which the job should start +// - job_spec = [required] detailed job specification +type CreateRequest struct { + state protoimpl.MessageState + sizeCache protoimpl.SizeCache + unknownFields protoimpl.UnknownFields + + RequesterId string `protobuf:"bytes,1,opt,name=requester_id,json=requesterId,proto3" json:"requester_id,omitempty"` + OrganizationId string `protobuf:"bytes,2,opt,name=organization_id,json=organizationId,proto3" json:"organization_id,omitempty"` + ProjectId string `protobuf:"bytes,3,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"` + BranchName string `protobuf:"bytes,4,opt,name=branch_name,json=branchName,proto3" json:"branch_name,omitempty"` + CommitSha string `protobuf:"bytes,5,opt,name=commit_sha,json=commitSha,proto3" json:"commit_sha,omitempty"` + JobSpec *JobSpec `protobuf:"bytes,6,opt,name=job_spec,json=jobSpec,proto3" json:"job_spec,omitempty"` + RestrictedJob bool `protobuf:"varint,7,opt,name=restricted_job,json=restrictedJob,proto3" json:"restricted_job,omitempty"` +} + +func (x *CreateRequest) Reset() { + *x = CreateRequest{} + if protoimpl.UnsafeEnabled { + mi := &file_server_farm_job_proto_msgTypes[22] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) + } +} + +func (x *CreateRequest) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*CreateRequest) ProtoMessage() {} + +func (x *CreateRequest) ProtoReflect() protoreflect.Message { + mi := &file_server_farm_job_proto_msgTypes[22] + if protoimpl.UnsafeEnabled && x != nil { + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + if ms.LoadMessageInfo() == nil { + ms.StoreMessageInfo(mi) + } + return ms + } + return mi.MessageOf(x) +} + +// Deprecated: Use CreateRequest.ProtoReflect.Descriptor instead. +func (*CreateRequest) Descriptor() ([]byte, []int) { + return file_server_farm_job_proto_rawDescGZIP(), []int{22} +} + +func (x *CreateRequest) GetRequesterId() string { + if x != nil { + return x.RequesterId + } + return "" +} + +func (x *CreateRequest) GetOrganizationId() string { + if x != nil { + return x.OrganizationId + } + return "" +} + +func (x *CreateRequest) GetProjectId() string { + if x != nil { + return x.ProjectId + } + return "" +} + +func (x *CreateRequest) GetBranchName() string { + if x != nil { + return x.BranchName + } + return "" +} + +func (x *CreateRequest) GetCommitSha() string { + if x != nil { + return x.CommitSha + } + return "" +} + +func (x *CreateRequest) GetJobSpec() *JobSpec { + if x != nil { + return x.JobSpec + } + return nil +} + +func (x *CreateRequest) GetRestrictedJob() bool { + if x != nil { + return x.RestrictedJob + } + return false +} + +// Create job response +// +// Response: +// - status = [required] contains ResponseCode: +// OK = Job was created successfully +// BAD_PARAM = One of the provided parameters is invalid +// - job = [required] The new job that was created based on request +type CreateResponse struct { + state protoimpl.MessageState + sizeCache protoimpl.SizeCache + unknownFields protoimpl.UnknownFields + + Status *response_status.ResponseStatus `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"` + Job *Job `protobuf:"bytes,2,opt,name=job,proto3" json:"job,omitempty"` +} + +func (x *CreateResponse) Reset() { + *x = CreateResponse{} + if protoimpl.UnsafeEnabled { + mi := &file_server_farm_job_proto_msgTypes[23] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) + } +} + +func (x *CreateResponse) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*CreateResponse) ProtoMessage() {} + +func (x *CreateResponse) ProtoReflect() protoreflect.Message { + mi := &file_server_farm_job_proto_msgTypes[23] + if protoimpl.UnsafeEnabled && x != nil { + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + if ms.LoadMessageInfo() == nil { + ms.StoreMessageInfo(mi) + } + return ms + } + return mi.MessageOf(x) +} + +// Deprecated: Use CreateResponse.ProtoReflect.Descriptor instead. +func (*CreateResponse) Descriptor() ([]byte, []int) { + return file_server_farm_job_proto_rawDescGZIP(), []int{23} +} + +func (x *CreateResponse) GetStatus() *response_status.ResponseStatus { + if x != nil { + return x.Status + } + return nil +} + +func (x *CreateResponse) GetJob() *Job { + if x != nil { + return x.Job + } + return nil +} + +// Job specification detials +// +// - job_name = [required] the name of the job +// - agent = [required] the agent being used to run the job +// - secrets = [optional] list of secrets to be available within the job +// - env_vars = [optional] list of env vars to be available within the job +// - files = [optional] files to inject into the job +// - commands = [required] list of commands that job will execute +// - epilogue_always_commands = [optional] commands to be run after regular ones regardles of execution result +// - epilogue_on_pass_commands = [optional] commands to be run after regular ones only if they passed +// - epilogue_on_fail_commands = [optional] commands to be run after regular ones only if they failed +type JobSpec struct { + state protoimpl.MessageState + sizeCache protoimpl.SizeCache + unknownFields protoimpl.UnknownFields + + JobName string `protobuf:"bytes,1,opt,name=job_name,json=jobName,proto3" json:"job_name,omitempty"` + Agent *JobSpec_Agent `protobuf:"bytes,2,opt,name=agent,proto3" json:"agent,omitempty"` + Secrets []*JobSpec_Secret `protobuf:"bytes,3,rep,name=secrets,proto3" json:"secrets,omitempty"` + EnvVars []*JobSpec_EnvVar `protobuf:"bytes,4,rep,name=env_vars,json=envVars,proto3" json:"env_vars,omitempty"` + Files []*JobSpec_File `protobuf:"bytes,5,rep,name=files,proto3" json:"files,omitempty"` + Commands []string `protobuf:"bytes,6,rep,name=commands,proto3" json:"commands,omitempty"` + EpilogueAlwaysCommands []string `protobuf:"bytes,7,rep,name=epilogue_always_commands,json=epilogueAlwaysCommands,proto3" json:"epilogue_always_commands,omitempty"` + EpilogueOnPassCommands []string `protobuf:"bytes,8,rep,name=epilogue_on_pass_commands,json=epilogueOnPassCommands,proto3" json:"epilogue_on_pass_commands,omitempty"` + EpilogueOnFailCommands []string `protobuf:"bytes,9,rep,name=epilogue_on_fail_commands,json=epilogueOnFailCommands,proto3" json:"epilogue_on_fail_commands,omitempty"` + Priority int32 `protobuf:"varint,10,opt,name=priority,proto3" json:"priority,omitempty"` + ExecutionTimeLimit int32 `protobuf:"varint,11,opt,name=execution_time_limit,json=executionTimeLimit,proto3" json:"execution_time_limit,omitempty"` +} + +func (x *JobSpec) Reset() { + *x = JobSpec{} + if protoimpl.UnsafeEnabled { + mi := &file_server_farm_job_proto_msgTypes[24] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) + } +} + +func (x *JobSpec) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*JobSpec) ProtoMessage() {} + +func (x *JobSpec) ProtoReflect() protoreflect.Message { + mi := &file_server_farm_job_proto_msgTypes[24] + if protoimpl.UnsafeEnabled && x != nil { + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + if ms.LoadMessageInfo() == nil { + ms.StoreMessageInfo(mi) + } + return ms + } + return mi.MessageOf(x) +} + +// Deprecated: Use JobSpec.ProtoReflect.Descriptor instead. +func (*JobSpec) Descriptor() ([]byte, []int) { + return file_server_farm_job_proto_rawDescGZIP(), []int{24} +} + +func (x *JobSpec) GetJobName() string { + if x != nil { + return x.JobName + } + return "" +} + +func (x *JobSpec) GetAgent() *JobSpec_Agent { + if x != nil { + return x.Agent + } + return nil +} + +func (x *JobSpec) GetSecrets() []*JobSpec_Secret { + if x != nil { + return x.Secrets + } + return nil +} + +func (x *JobSpec) GetEnvVars() []*JobSpec_EnvVar { + if x != nil { + return x.EnvVars + } + return nil +} + +func (x *JobSpec) GetFiles() []*JobSpec_File { + if x != nil { + return x.Files + } + return nil +} + +func (x *JobSpec) GetCommands() []string { + if x != nil { + return x.Commands + } + return nil +} + +func (x *JobSpec) GetEpilogueAlwaysCommands() []string { + if x != nil { + return x.EpilogueAlwaysCommands + } + return nil +} + +func (x *JobSpec) GetEpilogueOnPassCommands() []string { + if x != nil { + return x.EpilogueOnPassCommands + } + return nil +} + +func (x *JobSpec) GetEpilogueOnFailCommands() []string { + if x != nil { + return x.EpilogueOnFailCommands + } + return nil +} + +func (x *JobSpec) GetPriority() int32 { + if x != nil { + return x.Priority + } + return 0 +} + +func (x *JobSpec) GetExecutionTimeLimit() int32 { + if x != nil { + return x.ExecutionTimeLimit + } + return 0 +} + type Job_Timeline struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -1967,7 +2313,7 @@ type Job_Timeline struct { func (x *Job_Timeline) Reset() { *x = Job_Timeline{} if protoimpl.UnsafeEnabled { - mi := &file_server_farm_job_proto_msgTypes[22] + mi := &file_server_farm_job_proto_msgTypes[25] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1980,7 +2326,7 @@ func (x *Job_Timeline) String() string { func (*Job_Timeline) ProtoMessage() {} func (x *Job_Timeline) ProtoReflect() protoreflect.Message { - mi := &file_server_farm_job_proto_msgTypes[22] + mi := &file_server_farm_job_proto_msgTypes[25] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2050,7 +2396,7 @@ type CountByStateResponse_CountByState struct { func (x *CountByStateResponse_CountByState) Reset() { *x = CountByStateResponse_CountByState{} if protoimpl.UnsafeEnabled { - mi := &file_server_farm_job_proto_msgTypes[23] + mi := &file_server_farm_job_proto_msgTypes[26] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2063,7 +2409,7 @@ func (x *CountByStateResponse_CountByState) String() string { func (*CountByStateResponse_CountByState) ProtoMessage() {} func (x *CountByStateResponse_CountByState) ProtoReflect() protoreflect.Message { - mi := &file_server_farm_job_proto_msgTypes[23] + mi := &file_server_farm_job_proto_msgTypes[26] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2093,33 +2439,434 @@ func (x *CountByStateResponse_CountByState) GetCount() int32 { return 0 } -var File_server_farm_job_proto protoreflect.FileDescriptor +type JobSpec_Agent struct { + state protoimpl.MessageState + sizeCache protoimpl.SizeCache + unknownFields protoimpl.UnknownFields -var file_server_farm_job_proto_rawDesc = []byte{ - 0x0a, 0x15, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x66, 0x61, 0x72, 0x6d, 0x2e, 0x6a, 0x6f, - 0x62, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1a, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, - 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x46, 0x61, 0x72, 0x6d, 0x2e, - 0x4a, 0x6f, 0x62, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, - 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x2e, 0x70, - 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x22, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x5f, 0x61, - 0x70, 0x69, 0x2f, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x5f, 0x73, 0x74, 0x61, 0x74, - 0x75, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x28, 0x0a, 0x0f, 0x44, 0x65, 0x73, 0x63, - 0x72, 0x69, 0x62, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x15, 0x0a, 0x06, 0x6a, - 0x6f, 0x62, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x6a, 0x6f, 0x62, - 0x49, 0x64, 0x22, 0xb6, 0x0b, 0x0a, 0x03, 0x4a, 0x6f, 0x62, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, - 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, - 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, - 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x1b, 0x0a, 0x09, 0x62, 0x72, 0x61, - 0x6e, 0x63, 0x68, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x62, 0x72, - 0x61, 0x6e, 0x63, 0x68, 0x49, 0x64, 0x12, 0x17, 0x0a, 0x07, 0x68, 0x6f, 0x6f, 0x6b, 0x5f, 0x69, - 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x68, 0x6f, 0x6f, 0x6b, 0x49, 0x64, 0x12, - 0x44, 0x0a, 0x08, 0x74, 0x69, 0x6d, 0x65, 0x6c, 0x69, 0x6e, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, - 0x0b, 0x32, 0x28, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, - 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x46, 0x61, 0x72, 0x6d, 0x2e, 0x4a, 0x6f, 0x62, 0x2e, 0x4a, - 0x6f, 0x62, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x6c, 0x69, 0x6e, 0x65, 0x52, 0x08, 0x74, 0x69, 0x6d, - 0x65, 0x6c, 0x69, 0x6e, 0x65, 0x12, 0x3b, 0x0a, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x18, 0x06, - 0x20, 0x01, 0x28, 0x0e, 0x32, 0x25, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, - 0x70, 0x69, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x46, 0x61, 0x72, 0x6d, 0x2e, 0x4a, 0x6f, + Machine *JobSpec_Agent_Machine `protobuf:"bytes,1,opt,name=machine,proto3" json:"machine,omitempty"` + Containers []*JobSpec_Agent_Container `protobuf:"bytes,2,rep,name=containers,proto3" json:"containers,omitempty"` + ImagePullSecrets []*JobSpec_Agent_ImagePullSecret `protobuf:"bytes,3,rep,name=image_pull_secrets,json=imagePullSecrets,proto3" json:"image_pull_secrets,omitempty"` +} + +func (x *JobSpec_Agent) Reset() { + *x = JobSpec_Agent{} + if protoimpl.UnsafeEnabled { + mi := &file_server_farm_job_proto_msgTypes[27] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) + } +} + +func (x *JobSpec_Agent) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*JobSpec_Agent) ProtoMessage() {} + +func (x *JobSpec_Agent) ProtoReflect() protoreflect.Message { + mi := &file_server_farm_job_proto_msgTypes[27] + if protoimpl.UnsafeEnabled && x != nil { + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + if ms.LoadMessageInfo() == nil { + ms.StoreMessageInfo(mi) + } + return ms + } + return mi.MessageOf(x) +} + +// Deprecated: Use JobSpec_Agent.ProtoReflect.Descriptor instead. +func (*JobSpec_Agent) Descriptor() ([]byte, []int) { + return file_server_farm_job_proto_rawDescGZIP(), []int{24, 0} +} + +func (x *JobSpec_Agent) GetMachine() *JobSpec_Agent_Machine { + if x != nil { + return x.Machine + } + return nil +} + +func (x *JobSpec_Agent) GetContainers() []*JobSpec_Agent_Container { + if x != nil { + return x.Containers + } + return nil +} + +func (x *JobSpec_Agent) GetImagePullSecrets() []*JobSpec_Agent_ImagePullSecret { + if x != nil { + return x.ImagePullSecrets + } + return nil +} + +type JobSpec_Secret struct { + state protoimpl.MessageState + sizeCache protoimpl.SizeCache + unknownFields protoimpl.UnknownFields + + Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` +} + +func (x *JobSpec_Secret) Reset() { + *x = JobSpec_Secret{} + if protoimpl.UnsafeEnabled { + mi := &file_server_farm_job_proto_msgTypes[28] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) + } +} + +func (x *JobSpec_Secret) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*JobSpec_Secret) ProtoMessage() {} + +func (x *JobSpec_Secret) ProtoReflect() protoreflect.Message { + mi := &file_server_farm_job_proto_msgTypes[28] + if protoimpl.UnsafeEnabled && x != nil { + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + if ms.LoadMessageInfo() == nil { + ms.StoreMessageInfo(mi) + } + return ms + } + return mi.MessageOf(x) +} + +// Deprecated: Use JobSpec_Secret.ProtoReflect.Descriptor instead. +func (*JobSpec_Secret) Descriptor() ([]byte, []int) { + return file_server_farm_job_proto_rawDescGZIP(), []int{24, 1} +} + +func (x *JobSpec_Secret) GetName() string { + if x != nil { + return x.Name + } + return "" +} + +type JobSpec_EnvVar struct { + state protoimpl.MessageState + sizeCache protoimpl.SizeCache + unknownFields protoimpl.UnknownFields + + Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` + Value string `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"` +} + +func (x *JobSpec_EnvVar) Reset() { + *x = JobSpec_EnvVar{} + if protoimpl.UnsafeEnabled { + mi := &file_server_farm_job_proto_msgTypes[29] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) + } +} + +func (x *JobSpec_EnvVar) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*JobSpec_EnvVar) ProtoMessage() {} + +func (x *JobSpec_EnvVar) ProtoReflect() protoreflect.Message { + mi := &file_server_farm_job_proto_msgTypes[29] + if protoimpl.UnsafeEnabled && x != nil { + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + if ms.LoadMessageInfo() == nil { + ms.StoreMessageInfo(mi) + } + return ms + } + return mi.MessageOf(x) +} + +// Deprecated: Use JobSpec_EnvVar.ProtoReflect.Descriptor instead. +func (*JobSpec_EnvVar) Descriptor() ([]byte, []int) { + return file_server_farm_job_proto_rawDescGZIP(), []int{24, 2} +} + +func (x *JobSpec_EnvVar) GetName() string { + if x != nil { + return x.Name + } + return "" +} + +func (x *JobSpec_EnvVar) GetValue() string { + if x != nil { + return x.Value + } + return "" +} + +type JobSpec_File struct { + state protoimpl.MessageState + sizeCache protoimpl.SizeCache + unknownFields protoimpl.UnknownFields + + Path string `protobuf:"bytes,1,opt,name=path,proto3" json:"path,omitempty"` + Content string `protobuf:"bytes,2,opt,name=content,proto3" json:"content,omitempty"` +} + +func (x *JobSpec_File) Reset() { + *x = JobSpec_File{} + if protoimpl.UnsafeEnabled { + mi := &file_server_farm_job_proto_msgTypes[30] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) + } +} + +func (x *JobSpec_File) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*JobSpec_File) ProtoMessage() {} + +func (x *JobSpec_File) ProtoReflect() protoreflect.Message { + mi := &file_server_farm_job_proto_msgTypes[30] + if protoimpl.UnsafeEnabled && x != nil { + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + if ms.LoadMessageInfo() == nil { + ms.StoreMessageInfo(mi) + } + return ms + } + return mi.MessageOf(x) +} + +// Deprecated: Use JobSpec_File.ProtoReflect.Descriptor instead. +func (*JobSpec_File) Descriptor() ([]byte, []int) { + return file_server_farm_job_proto_rawDescGZIP(), []int{24, 3} +} + +func (x *JobSpec_File) GetPath() string { + if x != nil { + return x.Path + } + return "" +} + +func (x *JobSpec_File) GetContent() string { + if x != nil { + return x.Content + } + return "" +} + +type JobSpec_Agent_Machine struct { + state protoimpl.MessageState + sizeCache protoimpl.SizeCache + unknownFields protoimpl.UnknownFields + + Type string `protobuf:"bytes,1,opt,name=type,proto3" json:"type,omitempty"` + OsImage string `protobuf:"bytes,2,opt,name=os_image,json=osImage,proto3" json:"os_image,omitempty"` +} + +func (x *JobSpec_Agent_Machine) Reset() { + *x = JobSpec_Agent_Machine{} + if protoimpl.UnsafeEnabled { + mi := &file_server_farm_job_proto_msgTypes[31] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) + } +} + +func (x *JobSpec_Agent_Machine) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*JobSpec_Agent_Machine) ProtoMessage() {} + +func (x *JobSpec_Agent_Machine) ProtoReflect() protoreflect.Message { + mi := &file_server_farm_job_proto_msgTypes[31] + if protoimpl.UnsafeEnabled && x != nil { + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + if ms.LoadMessageInfo() == nil { + ms.StoreMessageInfo(mi) + } + return ms + } + return mi.MessageOf(x) +} + +// Deprecated: Use JobSpec_Agent_Machine.ProtoReflect.Descriptor instead. +func (*JobSpec_Agent_Machine) Descriptor() ([]byte, []int) { + return file_server_farm_job_proto_rawDescGZIP(), []int{24, 0, 0} +} + +func (x *JobSpec_Agent_Machine) GetType() string { + if x != nil { + return x.Type + } + return "" +} + +func (x *JobSpec_Agent_Machine) GetOsImage() string { + if x != nil { + return x.OsImage + } + return "" +} + +type JobSpec_Agent_Container struct { + state protoimpl.MessageState + sizeCache protoimpl.SizeCache + unknownFields protoimpl.UnknownFields + + Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` + Image string `protobuf:"bytes,2,opt,name=image,proto3" json:"image,omitempty"` + Command string `protobuf:"bytes,3,opt,name=command,proto3" json:"command,omitempty"` + EnvVars []*JobSpec_EnvVar `protobuf:"bytes,4,rep,name=env_vars,json=envVars,proto3" json:"env_vars,omitempty"` + Secrets []*JobSpec_Secret `protobuf:"bytes,5,rep,name=secrets,proto3" json:"secrets,omitempty"` +} + +func (x *JobSpec_Agent_Container) Reset() { + *x = JobSpec_Agent_Container{} + if protoimpl.UnsafeEnabled { + mi := &file_server_farm_job_proto_msgTypes[32] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) + } +} + +func (x *JobSpec_Agent_Container) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*JobSpec_Agent_Container) ProtoMessage() {} + +func (x *JobSpec_Agent_Container) ProtoReflect() protoreflect.Message { + mi := &file_server_farm_job_proto_msgTypes[32] + if protoimpl.UnsafeEnabled && x != nil { + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + if ms.LoadMessageInfo() == nil { + ms.StoreMessageInfo(mi) + } + return ms + } + return mi.MessageOf(x) +} + +// Deprecated: Use JobSpec_Agent_Container.ProtoReflect.Descriptor instead. +func (*JobSpec_Agent_Container) Descriptor() ([]byte, []int) { + return file_server_farm_job_proto_rawDescGZIP(), []int{24, 0, 1} +} + +func (x *JobSpec_Agent_Container) GetName() string { + if x != nil { + return x.Name + } + return "" +} + +func (x *JobSpec_Agent_Container) GetImage() string { + if x != nil { + return x.Image + } + return "" +} + +func (x *JobSpec_Agent_Container) GetCommand() string { + if x != nil { + return x.Command + } + return "" +} + +func (x *JobSpec_Agent_Container) GetEnvVars() []*JobSpec_EnvVar { + if x != nil { + return x.EnvVars + } + return nil +} + +func (x *JobSpec_Agent_Container) GetSecrets() []*JobSpec_Secret { + if x != nil { + return x.Secrets + } + return nil +} + +type JobSpec_Agent_ImagePullSecret struct { + state protoimpl.MessageState + sizeCache protoimpl.SizeCache + unknownFields protoimpl.UnknownFields + + Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` +} + +func (x *JobSpec_Agent_ImagePullSecret) Reset() { + *x = JobSpec_Agent_ImagePullSecret{} + if protoimpl.UnsafeEnabled { + mi := &file_server_farm_job_proto_msgTypes[33] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) + } +} + +func (x *JobSpec_Agent_ImagePullSecret) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*JobSpec_Agent_ImagePullSecret) ProtoMessage() {} + +func (x *JobSpec_Agent_ImagePullSecret) ProtoReflect() protoreflect.Message { + mi := &file_server_farm_job_proto_msgTypes[33] + if protoimpl.UnsafeEnabled && x != nil { + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + if ms.LoadMessageInfo() == nil { + ms.StoreMessageInfo(mi) + } + return ms + } + return mi.MessageOf(x) +} + +// Deprecated: Use JobSpec_Agent_ImagePullSecret.ProtoReflect.Descriptor instead. +func (*JobSpec_Agent_ImagePullSecret) Descriptor() ([]byte, []int) { + return file_server_farm_job_proto_rawDescGZIP(), []int{24, 0, 2} +} + +func (x *JobSpec_Agent_ImagePullSecret) GetName() string { + if x != nil { + return x.Name + } + return "" +} + +var File_server_farm_job_proto protoreflect.FileDescriptor + +var file_server_farm_job_proto_rawDesc = []byte{ + 0x0a, 0x15, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x66, 0x61, 0x72, 0x6d, 0x2e, 0x6a, 0x6f, + 0x62, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1a, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, + 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x46, 0x61, 0x72, 0x6d, 0x2e, + 0x4a, 0x6f, 0x62, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, + 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x2e, 0x70, + 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x22, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x5f, 0x61, + 0x70, 0x69, 0x2f, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x5f, 0x73, 0x74, 0x61, 0x74, + 0x75, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x28, 0x0a, 0x0f, 0x44, 0x65, 0x73, 0x63, + 0x72, 0x69, 0x62, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x15, 0x0a, 0x06, 0x6a, + 0x6f, 0x62, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x6a, 0x6f, 0x62, + 0x49, 0x64, 0x22, 0xd1, 0x0b, 0x0a, 0x03, 0x4a, 0x6f, 0x62, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, + 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, + 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, + 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x1b, 0x0a, 0x09, 0x62, 0x72, 0x61, + 0x6e, 0x63, 0x68, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x62, 0x72, + 0x61, 0x6e, 0x63, 0x68, 0x49, 0x64, 0x12, 0x17, 0x0a, 0x07, 0x68, 0x6f, 0x6f, 0x6b, 0x5f, 0x69, + 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x68, 0x6f, 0x6f, 0x6b, 0x49, 0x64, 0x12, + 0x44, 0x0a, 0x08, 0x74, 0x69, 0x6d, 0x65, 0x6c, 0x69, 0x6e, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, + 0x0b, 0x32, 0x28, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, + 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x46, 0x61, 0x72, 0x6d, 0x2e, 0x4a, 0x6f, 0x62, 0x2e, 0x4a, + 0x6f, 0x62, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x6c, 0x69, 0x6e, 0x65, 0x52, 0x08, 0x74, 0x69, 0x6d, + 0x65, 0x6c, 0x69, 0x6e, 0x65, 0x12, 0x3b, 0x0a, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x18, 0x06, + 0x20, 0x01, 0x28, 0x0e, 0x32, 0x25, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, + 0x70, 0x69, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x46, 0x61, 0x72, 0x6d, 0x2e, 0x4a, 0x6f, 0x62, 0x2e, 0x4a, 0x6f, 0x62, 0x2e, 0x53, 0x74, 0x61, 0x74, 0x65, 0x52, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x12, 0x3e, 0x0a, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x26, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, @@ -2163,320 +2910,450 @@ var file_server_farm_job_proto_rawDesc = []byte{ 0x69, 0x64, 0x18, 0x18, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x52, 0x65, 0x71, 0x49, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x61, 0x67, 0x65, 0x6e, 0x74, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x19, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x67, 0x65, 0x6e, 0x74, 0x4e, - 0x61, 0x6d, 0x65, 0x1a, 0x98, 0x03, 0x0a, 0x08, 0x54, 0x69, 0x6d, 0x65, 0x6c, 0x69, 0x6e, 0x65, - 0x12, 0x39, 0x0a, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x18, 0x01, + 0x61, 0x6d, 0x65, 0x12, 0x19, 0x0a, 0x08, 0x61, 0x67, 0x65, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x18, + 0x1b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x61, 0x67, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x1a, 0x98, + 0x03, 0x0a, 0x08, 0x54, 0x69, 0x6d, 0x65, 0x6c, 0x69, 0x6e, 0x65, 0x12, 0x39, 0x0a, 0x0a, 0x63, + 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, + 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, + 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x09, 0x63, 0x72, 0x65, + 0x61, 0x74, 0x65, 0x64, 0x41, 0x74, 0x12, 0x3b, 0x0a, 0x0b, 0x65, 0x6e, 0x71, 0x75, 0x65, 0x75, + 0x65, 0x64, 0x5f, 0x61, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, + 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0a, 0x65, 0x6e, 0x71, 0x75, 0x65, 0x75, 0x65, + 0x64, 0x41, 0x74, 0x12, 0x39, 0x0a, 0x0a, 0x73, 0x74, 0x61, 0x72, 0x74, 0x65, 0x64, 0x5f, 0x61, + 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, + 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, + 0x61, 0x6d, 0x70, 0x52, 0x09, 0x73, 0x74, 0x61, 0x72, 0x74, 0x65, 0x64, 0x41, 0x74, 0x12, 0x3b, + 0x0a, 0x0b, 0x66, 0x69, 0x6e, 0x69, 0x73, 0x68, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x18, 0x04, 0x20, + 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, + 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, + 0x0a, 0x66, 0x69, 0x6e, 0x69, 0x73, 0x68, 0x65, 0x64, 0x41, 0x74, 0x12, 0x4c, 0x0a, 0x14, 0x65, + 0x78, 0x65, 0x63, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x74, 0x61, 0x72, 0x74, 0x65, 0x64, + 0x5f, 0x61, 0x74, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, + 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, + 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x12, 0x65, 0x78, 0x65, 0x63, 0x75, 0x74, 0x69, 0x6f, 0x6e, + 0x53, 0x74, 0x61, 0x72, 0x74, 0x65, 0x64, 0x41, 0x74, 0x12, 0x4e, 0x0a, 0x15, 0x65, 0x78, 0x65, + 0x63, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x66, 0x69, 0x6e, 0x69, 0x73, 0x68, 0x65, 0x64, 0x5f, + 0x61, 0x74, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, + 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, + 0x74, 0x61, 0x6d, 0x70, 0x52, 0x13, 0x65, 0x78, 0x65, 0x63, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x46, + 0x69, 0x6e, 0x69, 0x73, 0x68, 0x65, 0x64, 0x41, 0x74, 0x22, 0x5c, 0x0a, 0x05, 0x53, 0x74, 0x61, + 0x74, 0x65, 0x12, 0x0b, 0x0a, 0x07, 0x50, 0x45, 0x4e, 0x44, 0x49, 0x4e, 0x47, 0x10, 0x00, 0x12, + 0x0c, 0x0a, 0x08, 0x45, 0x4e, 0x51, 0x55, 0x45, 0x55, 0x45, 0x44, 0x10, 0x01, 0x12, 0x0d, 0x0a, + 0x09, 0x53, 0x43, 0x48, 0x45, 0x44, 0x55, 0x4c, 0x45, 0x44, 0x10, 0x02, 0x12, 0x0e, 0x0a, 0x0a, + 0x44, 0x49, 0x53, 0x50, 0x41, 0x54, 0x43, 0x48, 0x45, 0x44, 0x10, 0x05, 0x12, 0x0b, 0x0a, 0x07, + 0x53, 0x54, 0x41, 0x52, 0x54, 0x45, 0x44, 0x10, 0x03, 0x12, 0x0c, 0x0a, 0x08, 0x46, 0x49, 0x4e, + 0x49, 0x53, 0x48, 0x45, 0x44, 0x10, 0x04, 0x22, 0x2d, 0x0a, 0x06, 0x52, 0x65, 0x73, 0x75, 0x6c, + 0x74, 0x12, 0x0a, 0x0a, 0x06, 0x50, 0x41, 0x53, 0x53, 0x45, 0x44, 0x10, 0x00, 0x12, 0x0a, 0x0a, + 0x06, 0x46, 0x41, 0x49, 0x4c, 0x45, 0x44, 0x10, 0x01, 0x12, 0x0b, 0x0a, 0x07, 0x53, 0x54, 0x4f, + 0x50, 0x50, 0x45, 0x44, 0x10, 0x02, 0x22, 0x7a, 0x0a, 0x10, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, + 0x62, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x33, 0x0a, 0x06, 0x73, 0x74, + 0x61, 0x74, 0x75, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1b, 0x2e, 0x49, 0x6e, 0x74, + 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, + 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, + 0x31, 0x0a, 0x03, 0x6a, 0x6f, 0x62, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1f, 0x2e, 0x49, + 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x65, + 0x72, 0x46, 0x61, 0x72, 0x6d, 0x2e, 0x4a, 0x6f, 0x62, 0x2e, 0x4a, 0x6f, 0x62, 0x52, 0x03, 0x6a, + 0x6f, 0x62, 0x22, 0xe0, 0x05, 0x0a, 0x0b, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, + 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18, + 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, + 0x1d, 0x0a, 0x0a, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x18, 0x02, 0x20, + 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x61, 0x67, 0x65, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x12, 0x43, + 0x0a, 0x05, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2d, 0x2e, + 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x53, 0x65, 0x72, 0x76, + 0x65, 0x72, 0x46, 0x61, 0x72, 0x6d, 0x2e, 0x4a, 0x6f, 0x62, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x52, + 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x52, 0x05, 0x6f, 0x72, + 0x64, 0x65, 0x72, 0x12, 0x44, 0x0a, 0x0a, 0x6a, 0x6f, 0x62, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x65, + 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0e, 0x32, 0x25, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, + 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x46, 0x61, 0x72, 0x6d, + 0x2e, 0x4a, 0x6f, 0x62, 0x2e, 0x4a, 0x6f, 0x62, 0x2e, 0x53, 0x74, 0x61, 0x74, 0x65, 0x52, 0x09, + 0x6a, 0x6f, 0x62, 0x53, 0x74, 0x61, 0x74, 0x65, 0x73, 0x12, 0x40, 0x0a, 0x0e, 0x66, 0x69, 0x6e, + 0x69, 0x73, 0x68, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x5f, 0x67, 0x74, 0x18, 0x05, 0x20, 0x01, 0x28, + 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, + 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0c, 0x66, + 0x69, 0x6e, 0x69, 0x73, 0x68, 0x65, 0x64, 0x41, 0x74, 0x47, 0x74, 0x12, 0x42, 0x0a, 0x0f, 0x66, + 0x69, 0x6e, 0x69, 0x73, 0x68, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x5f, 0x67, 0x74, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, - 0x52, 0x09, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x41, 0x74, 0x12, 0x3b, 0x0a, 0x0b, 0x65, - 0x6e, 0x71, 0x75, 0x65, 0x75, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, - 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, - 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0a, 0x65, 0x6e, - 0x71, 0x75, 0x65, 0x75, 0x65, 0x64, 0x41, 0x74, 0x12, 0x39, 0x0a, 0x0a, 0x73, 0x74, 0x61, 0x72, - 0x74, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, - 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x09, 0x73, 0x74, 0x61, 0x72, 0x74, 0x65, - 0x64, 0x41, 0x74, 0x12, 0x3b, 0x0a, 0x0b, 0x66, 0x69, 0x6e, 0x69, 0x73, 0x68, 0x65, 0x64, 0x5f, - 0x61, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, - 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0a, 0x66, 0x69, 0x6e, 0x69, 0x73, 0x68, 0x65, 0x64, 0x41, 0x74, - 0x12, 0x4c, 0x0a, 0x14, 0x65, 0x78, 0x65, 0x63, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x74, - 0x61, 0x72, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, - 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, - 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x12, 0x65, 0x78, 0x65, 0x63, - 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x72, 0x74, 0x65, 0x64, 0x41, 0x74, 0x12, 0x4e, - 0x0a, 0x15, 0x65, 0x78, 0x65, 0x63, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x66, 0x69, 0x6e, 0x69, - 0x73, 0x68, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, - 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, - 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x13, 0x65, 0x78, 0x65, 0x63, 0x75, - 0x74, 0x69, 0x6f, 0x6e, 0x46, 0x69, 0x6e, 0x69, 0x73, 0x68, 0x65, 0x64, 0x41, 0x74, 0x22, 0x5c, - 0x0a, 0x05, 0x53, 0x74, 0x61, 0x74, 0x65, 0x12, 0x0b, 0x0a, 0x07, 0x50, 0x45, 0x4e, 0x44, 0x49, - 0x4e, 0x47, 0x10, 0x00, 0x12, 0x0c, 0x0a, 0x08, 0x45, 0x4e, 0x51, 0x55, 0x45, 0x55, 0x45, 0x44, - 0x10, 0x01, 0x12, 0x0d, 0x0a, 0x09, 0x53, 0x43, 0x48, 0x45, 0x44, 0x55, 0x4c, 0x45, 0x44, 0x10, - 0x02, 0x12, 0x0e, 0x0a, 0x0a, 0x44, 0x49, 0x53, 0x50, 0x41, 0x54, 0x43, 0x48, 0x45, 0x44, 0x10, - 0x05, 0x12, 0x0b, 0x0a, 0x07, 0x53, 0x54, 0x41, 0x52, 0x54, 0x45, 0x44, 0x10, 0x03, 0x12, 0x0c, - 0x0a, 0x08, 0x46, 0x49, 0x4e, 0x49, 0x53, 0x48, 0x45, 0x44, 0x10, 0x04, 0x22, 0x2d, 0x0a, 0x06, - 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x0a, 0x0a, 0x06, 0x50, 0x41, 0x53, 0x53, 0x45, 0x44, - 0x10, 0x00, 0x12, 0x0a, 0x0a, 0x06, 0x46, 0x41, 0x49, 0x4c, 0x45, 0x44, 0x10, 0x01, 0x12, 0x0b, - 0x0a, 0x07, 0x53, 0x54, 0x4f, 0x50, 0x50, 0x45, 0x44, 0x10, 0x02, 0x22, 0x7a, 0x0a, 0x10, 0x44, - 0x65, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, - 0x33, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, - 0x1b, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x52, 0x65, - 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x06, 0x73, 0x74, - 0x61, 0x74, 0x75, 0x73, 0x12, 0x31, 0x0a, 0x03, 0x6a, 0x6f, 0x62, 0x18, 0x02, 0x20, 0x01, 0x28, - 0x0b, 0x32, 0x1f, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, + 0x52, 0x0d, 0x66, 0x69, 0x6e, 0x69, 0x73, 0x68, 0x65, 0x64, 0x41, 0x74, 0x47, 0x74, 0x65, 0x12, + 0x27, 0x0a, 0x0f, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, + 0x69, 0x64, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, + 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x26, 0x0a, 0x0f, 0x6f, 0x6e, 0x6c, 0x79, + 0x5f, 0x64, 0x65, 0x62, 0x75, 0x67, 0x5f, 0x6a, 0x6f, 0x62, 0x73, 0x18, 0x08, 0x20, 0x01, 0x28, + 0x08, 0x52, 0x0d, 0x6f, 0x6e, 0x6c, 0x79, 0x44, 0x65, 0x62, 0x75, 0x67, 0x4a, 0x6f, 0x62, 0x73, + 0x12, 0x17, 0x0a, 0x07, 0x70, 0x70, 0x6c, 0x5f, 0x69, 0x64, 0x73, 0x18, 0x09, 0x20, 0x03, 0x28, + 0x09, 0x52, 0x06, 0x70, 0x70, 0x6c, 0x49, 0x64, 0x73, 0x12, 0x40, 0x0a, 0x0e, 0x63, 0x72, 0x65, + 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x5f, 0x67, 0x74, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, + 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, + 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0c, 0x63, + 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x41, 0x74, 0x47, 0x74, 0x65, 0x12, 0x40, 0x0a, 0x0e, 0x63, + 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x5f, 0x6c, 0x74, 0x65, 0x18, 0x0b, 0x20, + 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, + 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, + 0x0c, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x41, 0x74, 0x4c, 0x74, 0x65, 0x12, 0x1f, 0x0a, + 0x0b, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x73, 0x18, 0x0d, 0x20, 0x03, + 0x28, 0x09, 0x52, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x73, 0x12, 0x23, + 0x0a, 0x0d, 0x6d, 0x61, 0x63, 0x68, 0x69, 0x6e, 0x65, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x73, 0x18, + 0x0e, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0c, 0x6d, 0x61, 0x63, 0x68, 0x69, 0x6e, 0x65, 0x54, 0x79, + 0x70, 0x65, 0x73, 0x22, 0x50, 0x0a, 0x05, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x12, 0x16, 0x0a, 0x12, + 0x42, 0x59, 0x5f, 0x46, 0x49, 0x4e, 0x49, 0x53, 0x48, 0x5f, 0x54, 0x49, 0x4d, 0x45, 0x5f, 0x41, + 0x53, 0x43, 0x10, 0x00, 0x12, 0x19, 0x0a, 0x15, 0x42, 0x59, 0x5f, 0x43, 0x52, 0x45, 0x41, 0x54, + 0x49, 0x4f, 0x4e, 0x5f, 0x54, 0x49, 0x4d, 0x45, 0x5f, 0x44, 0x45, 0x53, 0x43, 0x10, 0x01, 0x12, + 0x14, 0x0a, 0x10, 0x42, 0x59, 0x5f, 0x50, 0x52, 0x49, 0x4f, 0x52, 0x49, 0x54, 0x59, 0x5f, 0x44, + 0x45, 0x53, 0x43, 0x10, 0x02, 0x22, 0xa0, 0x01, 0x0a, 0x0c, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, + 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x33, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, + 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1b, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, + 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x53, 0x74, 0x61, + 0x74, 0x75, 0x73, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x33, 0x0a, 0x04, 0x6a, + 0x6f, 0x62, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1f, 0x2e, 0x49, 0x6e, 0x74, 0x65, + 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x46, 0x61, + 0x72, 0x6d, 0x2e, 0x4a, 0x6f, 0x62, 0x2e, 0x4a, 0x6f, 0x62, 0x52, 0x04, 0x6a, 0x6f, 0x62, 0x73, + 0x12, 0x26, 0x0a, 0x0f, 0x6e, 0x65, 0x78, 0x74, 0x5f, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x74, 0x6f, + 0x6b, 0x65, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x6e, 0x65, 0x78, 0x74, 0x50, + 0x61, 0x67, 0x65, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x22, 0x84, 0x04, 0x0a, 0x18, 0x4c, 0x69, 0x73, + 0x74, 0x44, 0x65, 0x62, 0x75, 0x67, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, + 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x73, 0x69, + 0x7a, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, + 0x7a, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x74, 0x6f, 0x6b, 0x65, 0x6e, + 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x61, 0x67, 0x65, 0x54, 0x6f, 0x6b, 0x65, + 0x6e, 0x12, 0x50, 0x0a, 0x05, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0e, + 0x32, 0x3a, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x53, + 0x65, 0x72, 0x76, 0x65, 0x72, 0x46, 0x61, 0x72, 0x6d, 0x2e, 0x4a, 0x6f, 0x62, 0x2e, 0x4c, 0x69, + 0x73, 0x74, 0x44, 0x65, 0x62, 0x75, 0x67, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x52, + 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x52, 0x05, 0x6f, 0x72, + 0x64, 0x65, 0x72, 0x12, 0x57, 0x0a, 0x14, 0x64, 0x65, 0x62, 0x75, 0x67, 0x5f, 0x73, 0x65, 0x73, + 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x65, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, + 0x0e, 0x32, 0x25, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x46, 0x61, 0x72, 0x6d, 0x2e, 0x4a, 0x6f, 0x62, 0x2e, 0x4a, - 0x6f, 0x62, 0x52, 0x03, 0x6a, 0x6f, 0x62, 0x22, 0x96, 0x04, 0x0a, 0x0b, 0x4c, 0x69, 0x73, 0x74, - 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x70, 0x61, 0x67, 0x65, 0x5f, - 0x73, 0x69, 0x7a, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x70, 0x61, 0x67, 0x65, - 0x53, 0x69, 0x7a, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x74, 0x6f, 0x6b, - 0x65, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x61, 0x67, 0x65, 0x54, 0x6f, - 0x6b, 0x65, 0x6e, 0x12, 0x43, 0x0a, 0x05, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x18, 0x03, 0x20, 0x01, - 0x28, 0x0e, 0x32, 0x2d, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, - 0x2e, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x46, 0x61, 0x72, 0x6d, 0x2e, 0x4a, 0x6f, 0x62, 0x2e, - 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x4f, 0x72, 0x64, 0x65, - 0x72, 0x52, 0x05, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x12, 0x44, 0x0a, 0x0a, 0x6a, 0x6f, 0x62, 0x5f, - 0x73, 0x74, 0x61, 0x74, 0x65, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0e, 0x32, 0x25, 0x2e, 0x49, - 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x65, - 0x72, 0x46, 0x61, 0x72, 0x6d, 0x2e, 0x4a, 0x6f, 0x62, 0x2e, 0x4a, 0x6f, 0x62, 0x2e, 0x53, 0x74, - 0x61, 0x74, 0x65, 0x52, 0x09, 0x6a, 0x6f, 0x62, 0x53, 0x74, 0x61, 0x74, 0x65, 0x73, 0x12, 0x40, - 0x0a, 0x0e, 0x66, 0x69, 0x6e, 0x69, 0x73, 0x68, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x5f, 0x67, 0x74, - 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, - 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, - 0x6d, 0x70, 0x52, 0x0c, 0x66, 0x69, 0x6e, 0x69, 0x73, 0x68, 0x65, 0x64, 0x41, 0x74, 0x47, 0x74, - 0x12, 0x42, 0x0a, 0x0f, 0x66, 0x69, 0x6e, 0x69, 0x73, 0x68, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x5f, - 0x67, 0x74, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, - 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0d, 0x66, 0x69, 0x6e, 0x69, 0x73, 0x68, 0x65, 0x64, 0x41, - 0x74, 0x47, 0x74, 0x65, 0x12, 0x27, 0x0a, 0x0f, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, - 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x64, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x6f, - 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x26, 0x0a, - 0x0f, 0x6f, 0x6e, 0x6c, 0x79, 0x5f, 0x64, 0x65, 0x62, 0x75, 0x67, 0x5f, 0x6a, 0x6f, 0x62, 0x73, - 0x18, 0x08, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0d, 0x6f, 0x6e, 0x6c, 0x79, 0x44, 0x65, 0x62, 0x75, - 0x67, 0x4a, 0x6f, 0x62, 0x73, 0x12, 0x17, 0x0a, 0x07, 0x70, 0x70, 0x6c, 0x5f, 0x69, 0x64, 0x73, - 0x18, 0x09, 0x20, 0x03, 0x28, 0x09, 0x52, 0x06, 0x70, 0x70, 0x6c, 0x49, 0x64, 0x73, 0x22, 0x50, - 0x0a, 0x05, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x12, 0x16, 0x0a, 0x12, 0x42, 0x59, 0x5f, 0x46, 0x49, - 0x4e, 0x49, 0x53, 0x48, 0x5f, 0x54, 0x49, 0x4d, 0x45, 0x5f, 0x41, 0x53, 0x43, 0x10, 0x00, 0x12, - 0x19, 0x0a, 0x15, 0x42, 0x59, 0x5f, 0x43, 0x52, 0x45, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x54, - 0x49, 0x4d, 0x45, 0x5f, 0x44, 0x45, 0x53, 0x43, 0x10, 0x01, 0x12, 0x14, 0x0a, 0x10, 0x42, 0x59, - 0x5f, 0x50, 0x52, 0x49, 0x4f, 0x52, 0x49, 0x54, 0x59, 0x5f, 0x44, 0x45, 0x53, 0x43, 0x10, 0x02, - 0x22, 0xa0, 0x01, 0x0a, 0x0c, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, - 0x65, 0x12, 0x33, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, - 0x0b, 0x32, 0x1b, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, - 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x06, - 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x33, 0x0a, 0x04, 0x6a, 0x6f, 0x62, 0x73, 0x18, 0x02, - 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1f, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, - 0x70, 0x69, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x46, 0x61, 0x72, 0x6d, 0x2e, 0x4a, 0x6f, - 0x62, 0x2e, 0x4a, 0x6f, 0x62, 0x52, 0x04, 0x6a, 0x6f, 0x62, 0x73, 0x12, 0x26, 0x0a, 0x0f, 0x6e, - 0x65, 0x78, 0x74, 0x5f, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x18, 0x03, - 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x6e, 0x65, 0x78, 0x74, 0x50, 0x61, 0x67, 0x65, 0x54, 0x6f, - 0x6b, 0x65, 0x6e, 0x22, 0x84, 0x04, 0x0a, 0x18, 0x4c, 0x69, 0x73, 0x74, 0x44, 0x65, 0x62, 0x75, - 0x67, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, - 0x12, 0x1b, 0x0a, 0x09, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x01, 0x20, - 0x01, 0x28, 0x05, 0x52, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x1d, 0x0a, - 0x0a, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, - 0x09, 0x52, 0x09, 0x70, 0x61, 0x67, 0x65, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x12, 0x50, 0x0a, 0x05, - 0x6f, 0x72, 0x64, 0x65, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x3a, 0x2e, 0x49, 0x6e, - 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, - 0x46, 0x61, 0x72, 0x6d, 0x2e, 0x4a, 0x6f, 0x62, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x44, 0x65, 0x62, - 0x75, 0x67, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, - 0x74, 0x2e, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x52, 0x05, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x12, 0x57, - 0x0a, 0x14, 0x64, 0x65, 0x62, 0x75, 0x67, 0x5f, 0x73, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x5f, - 0x73, 0x74, 0x61, 0x74, 0x65, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0e, 0x32, 0x25, 0x2e, 0x49, - 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x65, - 0x72, 0x46, 0x61, 0x72, 0x6d, 0x2e, 0x4a, 0x6f, 0x62, 0x2e, 0x4a, 0x6f, 0x62, 0x2e, 0x53, 0x74, - 0x61, 0x74, 0x65, 0x52, 0x12, 0x64, 0x65, 0x62, 0x75, 0x67, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, - 0x6e, 0x53, 0x74, 0x61, 0x74, 0x65, 0x73, 0x12, 0x42, 0x0a, 0x05, 0x74, 0x79, 0x70, 0x65, 0x73, - 0x18, 0x05, 0x20, 0x03, 0x28, 0x0e, 0x32, 0x2c, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, - 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x46, 0x61, 0x72, 0x6d, 0x2e, - 0x4a, 0x6f, 0x62, 0x2e, 0x44, 0x65, 0x62, 0x75, 0x67, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, - 0x54, 0x79, 0x70, 0x65, 0x52, 0x05, 0x74, 0x79, 0x70, 0x65, 0x73, 0x12, 0x27, 0x0a, 0x0f, 0x6f, - 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x64, 0x18, 0x06, - 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, - 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, - 0x69, 0x64, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, - 0x74, 0x49, 0x64, 0x12, 0x15, 0x0a, 0x06, 0x6a, 0x6f, 0x62, 0x5f, 0x69, 0x64, 0x18, 0x08, 0x20, - 0x01, 0x28, 0x09, 0x52, 0x05, 0x6a, 0x6f, 0x62, 0x49, 0x64, 0x12, 0x22, 0x0a, 0x0d, 0x64, 0x65, - 0x62, 0x75, 0x67, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x09, 0x20, 0x01, 0x28, - 0x09, 0x52, 0x0b, 0x64, 0x65, 0x62, 0x75, 0x67, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x22, 0x3a, - 0x0a, 0x05, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x12, 0x19, 0x0a, 0x15, 0x42, 0x59, 0x5f, 0x43, 0x52, - 0x45, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x54, 0x49, 0x4d, 0x45, 0x5f, 0x44, 0x45, 0x53, 0x43, - 0x10, 0x00, 0x12, 0x16, 0x0a, 0x12, 0x42, 0x59, 0x5f, 0x46, 0x49, 0x4e, 0x49, 0x53, 0x48, 0x5f, - 0x54, 0x49, 0x4d, 0x45, 0x5f, 0x41, 0x53, 0x43, 0x10, 0x01, 0x22, 0xc9, 0x01, 0x0a, 0x19, 0x4c, - 0x69, 0x73, 0x74, 0x44, 0x65, 0x62, 0x75, 0x67, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, - 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x33, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, - 0x75, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1b, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, - 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x53, - 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x4f, 0x0a, - 0x0e, 0x64, 0x65, 0x62, 0x75, 0x67, 0x5f, 0x73, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, - 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x28, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, - 0x41, 0x70, 0x69, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x46, 0x61, 0x72, 0x6d, 0x2e, 0x4a, - 0x6f, 0x62, 0x2e, 0x44, 0x65, 0x62, 0x75, 0x67, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x52, - 0x0d, 0x64, 0x65, 0x62, 0x75, 0x67, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x26, - 0x0a, 0x0f, 0x6e, 0x65, 0x78, 0x74, 0x5f, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x74, 0x6f, 0x6b, 0x65, - 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x6e, 0x65, 0x78, 0x74, 0x50, 0x61, 0x67, - 0x65, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x22, 0xfe, 0x01, 0x0a, 0x0c, 0x44, 0x65, 0x62, 0x75, 0x67, - 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x44, 0x0a, 0x0d, 0x64, 0x65, 0x62, 0x75, 0x67, - 0x5f, 0x73, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1f, - 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x53, 0x65, 0x72, - 0x76, 0x65, 0x72, 0x46, 0x61, 0x72, 0x6d, 0x2e, 0x4a, 0x6f, 0x62, 0x2e, 0x4a, 0x6f, 0x62, 0x52, - 0x0c, 0x64, 0x65, 0x62, 0x75, 0x67, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x40, 0x0a, - 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2c, 0x2e, 0x49, 0x6e, + 0x6f, 0x62, 0x2e, 0x53, 0x74, 0x61, 0x74, 0x65, 0x52, 0x12, 0x64, 0x65, 0x62, 0x75, 0x67, 0x53, + 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x65, 0x73, 0x12, 0x42, 0x0a, 0x05, + 0x74, 0x79, 0x70, 0x65, 0x73, 0x18, 0x05, 0x20, 0x03, 0x28, 0x0e, 0x32, 0x2c, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x46, 0x61, 0x72, 0x6d, 0x2e, 0x4a, 0x6f, 0x62, 0x2e, 0x44, 0x65, 0x62, 0x75, 0x67, 0x53, 0x65, - 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x12, + 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x52, 0x05, 0x74, 0x79, 0x70, 0x65, 0x73, + 0x12, 0x27, 0x0a, 0x0f, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, + 0x5f, 0x69, 0x64, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x6f, 0x72, 0x67, 0x61, 0x6e, + 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, + 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, + 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x15, 0x0a, 0x06, 0x6a, 0x6f, 0x62, 0x5f, + 0x69, 0x64, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x6a, 0x6f, 0x62, 0x49, 0x64, 0x12, 0x22, 0x0a, 0x0d, 0x64, 0x65, 0x62, 0x75, 0x67, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, - 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x65, 0x62, 0x75, 0x67, 0x55, 0x73, 0x65, - 0x72, 0x49, 0x64, 0x12, 0x42, 0x0a, 0x0c, 0x64, 0x65, 0x62, 0x75, 0x67, 0x67, 0x65, 0x64, 0x5f, - 0x6a, 0x6f, 0x62, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1f, 0x2e, 0x49, 0x6e, 0x74, 0x65, - 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x46, 0x61, - 0x72, 0x6d, 0x2e, 0x4a, 0x6f, 0x62, 0x2e, 0x4a, 0x6f, 0x62, 0x52, 0x0b, 0x64, 0x65, 0x62, 0x75, - 0x67, 0x67, 0x65, 0x64, 0x4a, 0x6f, 0x62, 0x22, 0xdc, 0x01, 0x0a, 0x0c, 0x43, 0x6f, 0x75, 0x6e, - 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x44, 0x0a, 0x0a, 0x6a, 0x6f, 0x62, 0x5f, - 0x73, 0x74, 0x61, 0x74, 0x65, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0e, 0x32, 0x25, 0x2e, 0x49, - 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x65, - 0x72, 0x46, 0x61, 0x72, 0x6d, 0x2e, 0x4a, 0x6f, 0x62, 0x2e, 0x4a, 0x6f, 0x62, 0x2e, 0x53, 0x74, - 0x61, 0x74, 0x65, 0x52, 0x09, 0x6a, 0x6f, 0x62, 0x53, 0x74, 0x61, 0x74, 0x65, 0x73, 0x12, 0x42, - 0x0a, 0x0f, 0x66, 0x69, 0x6e, 0x69, 0x73, 0x68, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x5f, 0x67, 0x74, - 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, - 0x61, 0x6d, 0x70, 0x52, 0x0d, 0x66, 0x69, 0x6e, 0x69, 0x73, 0x68, 0x65, 0x64, 0x41, 0x74, 0x47, - 0x74, 0x65, 0x12, 0x42, 0x0a, 0x0f, 0x66, 0x69, 0x6e, 0x69, 0x73, 0x68, 0x65, 0x64, 0x5f, 0x61, - 0x74, 0x5f, 0x6c, 0x74, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, - 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0d, 0x66, 0x69, 0x6e, 0x69, 0x73, 0x68, 0x65, - 0x64, 0x41, 0x74, 0x4c, 0x74, 0x65, 0x22, 0x5a, 0x0a, 0x0d, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x52, + 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x65, 0x62, 0x75, 0x67, 0x55, 0x73, 0x65, + 0x72, 0x49, 0x64, 0x22, 0x3a, 0x0a, 0x05, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x12, 0x19, 0x0a, 0x15, + 0x42, 0x59, 0x5f, 0x43, 0x52, 0x45, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x54, 0x49, 0x4d, 0x45, + 0x5f, 0x44, 0x45, 0x53, 0x43, 0x10, 0x00, 0x12, 0x16, 0x0a, 0x12, 0x42, 0x59, 0x5f, 0x46, 0x49, + 0x4e, 0x49, 0x53, 0x48, 0x5f, 0x54, 0x49, 0x4d, 0x45, 0x5f, 0x41, 0x53, 0x43, 0x10, 0x01, 0x22, + 0xc9, 0x01, 0x0a, 0x19, 0x4c, 0x69, 0x73, 0x74, 0x44, 0x65, 0x62, 0x75, 0x67, 0x53, 0x65, 0x73, + 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x33, 0x0a, + 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1b, 0x2e, + 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x52, 0x65, 0x73, 0x70, + 0x6f, 0x6e, 0x73, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, + 0x75, 0x73, 0x12, 0x4f, 0x0a, 0x0e, 0x64, 0x65, 0x62, 0x75, 0x67, 0x5f, 0x73, 0x65, 0x73, 0x73, + 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x28, 0x2e, 0x49, 0x6e, 0x74, + 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x46, + 0x61, 0x72, 0x6d, 0x2e, 0x4a, 0x6f, 0x62, 0x2e, 0x44, 0x65, 0x62, 0x75, 0x67, 0x53, 0x65, 0x73, + 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x0d, 0x64, 0x65, 0x62, 0x75, 0x67, 0x53, 0x65, 0x73, 0x73, 0x69, + 0x6f, 0x6e, 0x73, 0x12, 0x26, 0x0a, 0x0f, 0x6e, 0x65, 0x78, 0x74, 0x5f, 0x70, 0x61, 0x67, 0x65, + 0x5f, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x6e, 0x65, + 0x78, 0x74, 0x50, 0x61, 0x67, 0x65, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x22, 0xfe, 0x01, 0x0a, 0x0c, + 0x44, 0x65, 0x62, 0x75, 0x67, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x44, 0x0a, 0x0d, + 0x64, 0x65, 0x62, 0x75, 0x67, 0x5f, 0x73, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x01, 0x20, + 0x01, 0x28, 0x0b, 0x32, 0x1f, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, + 0x69, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x46, 0x61, 0x72, 0x6d, 0x2e, 0x4a, 0x6f, 0x62, + 0x2e, 0x4a, 0x6f, 0x62, 0x52, 0x0c, 0x64, 0x65, 0x62, 0x75, 0x67, 0x53, 0x65, 0x73, 0x73, 0x69, + 0x6f, 0x6e, 0x12, 0x40, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, + 0x32, 0x2c, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x53, + 0x65, 0x72, 0x76, 0x65, 0x72, 0x46, 0x61, 0x72, 0x6d, 0x2e, 0x4a, 0x6f, 0x62, 0x2e, 0x44, 0x65, + 0x62, 0x75, 0x67, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x52, 0x04, + 0x74, 0x79, 0x70, 0x65, 0x12, 0x22, 0x0a, 0x0d, 0x64, 0x65, 0x62, 0x75, 0x67, 0x5f, 0x75, 0x73, + 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x65, 0x62, + 0x75, 0x67, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x42, 0x0a, 0x0c, 0x64, 0x65, 0x62, 0x75, + 0x67, 0x67, 0x65, 0x64, 0x5f, 0x6a, 0x6f, 0x62, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1f, + 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x53, 0x65, 0x72, + 0x76, 0x65, 0x72, 0x46, 0x61, 0x72, 0x6d, 0x2e, 0x4a, 0x6f, 0x62, 0x2e, 0x4a, 0x6f, 0x62, 0x52, + 0x0b, 0x64, 0x65, 0x62, 0x75, 0x67, 0x67, 0x65, 0x64, 0x4a, 0x6f, 0x62, 0x22, 0xdc, 0x01, 0x0a, + 0x0c, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x44, 0x0a, + 0x0a, 0x6a, 0x6f, 0x62, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x65, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, + 0x0e, 0x32, 0x25, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, + 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x46, 0x61, 0x72, 0x6d, 0x2e, 0x4a, 0x6f, 0x62, 0x2e, 0x4a, + 0x6f, 0x62, 0x2e, 0x53, 0x74, 0x61, 0x74, 0x65, 0x52, 0x09, 0x6a, 0x6f, 0x62, 0x53, 0x74, 0x61, + 0x74, 0x65, 0x73, 0x12, 0x42, 0x0a, 0x0f, 0x66, 0x69, 0x6e, 0x69, 0x73, 0x68, 0x65, 0x64, 0x5f, + 0x61, 0x74, 0x5f, 0x67, 0x74, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, + 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0d, 0x66, 0x69, 0x6e, 0x69, 0x73, 0x68, + 0x65, 0x64, 0x41, 0x74, 0x47, 0x74, 0x65, 0x12, 0x42, 0x0a, 0x0f, 0x66, 0x69, 0x6e, 0x69, 0x73, + 0x68, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x5f, 0x6c, 0x74, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, + 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, + 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0d, 0x66, 0x69, + 0x6e, 0x69, 0x73, 0x68, 0x65, 0x64, 0x41, 0x74, 0x4c, 0x74, 0x65, 0x22, 0x5a, 0x0a, 0x0d, 0x43, + 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x33, 0x0a, 0x06, + 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1b, 0x2e, 0x49, + 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, + 0x6e, 0x73, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, + 0x73, 0x12, 0x14, 0x0a, 0x05, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, + 0x52, 0x05, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x22, 0x8a, 0x01, 0x0a, 0x13, 0x43, 0x6f, 0x75, 0x6e, + 0x74, 0x42, 0x79, 0x53, 0x74, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, + 0x15, 0x0a, 0x06, 0x6f, 0x72, 0x67, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, + 0x05, 0x6f, 0x72, 0x67, 0x49, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x61, 0x67, 0x65, 0x6e, 0x74, 0x5f, + 0x74, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x67, 0x65, 0x6e, + 0x74, 0x54, 0x79, 0x70, 0x65, 0x12, 0x3d, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x65, 0x73, 0x18, + 0x03, 0x20, 0x03, 0x28, 0x0e, 0x32, 0x25, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, + 0x41, 0x70, 0x69, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x46, 0x61, 0x72, 0x6d, 0x2e, 0x4a, + 0x6f, 0x62, 0x2e, 0x4a, 0x6f, 0x62, 0x2e, 0x53, 0x74, 0x61, 0x74, 0x65, 0x52, 0x06, 0x73, 0x74, + 0x61, 0x74, 0x65, 0x73, 0x22, 0xd0, 0x01, 0x0a, 0x14, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x79, + 0x53, 0x74, 0x61, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x55, 0x0a, + 0x06, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x3d, 0x2e, + 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x53, 0x65, 0x72, 0x76, + 0x65, 0x72, 0x46, 0x61, 0x72, 0x6d, 0x2e, 0x4a, 0x6f, 0x62, 0x2e, 0x43, 0x6f, 0x75, 0x6e, 0x74, + 0x42, 0x79, 0x53, 0x74, 0x61, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, + 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x79, 0x53, 0x74, 0x61, 0x74, 0x65, 0x52, 0x06, 0x63, 0x6f, + 0x75, 0x6e, 0x74, 0x73, 0x1a, 0x61, 0x0a, 0x0c, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x79, 0x53, + 0x74, 0x61, 0x74, 0x65, 0x12, 0x3b, 0x0a, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x18, 0x01, 0x20, + 0x01, 0x28, 0x0e, 0x32, 0x25, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, + 0x69, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x46, 0x61, 0x72, 0x6d, 0x2e, 0x4a, 0x6f, 0x62, + 0x2e, 0x4a, 0x6f, 0x62, 0x2e, 0x53, 0x74, 0x61, 0x74, 0x65, 0x52, 0x05, 0x73, 0x74, 0x61, 0x74, + 0x65, 0x12, 0x14, 0x0a, 0x05, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, + 0x52, 0x05, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x22, 0xa8, 0x01, 0x0a, 0x19, 0x54, 0x6f, 0x74, 0x61, + 0x6c, 0x45, 0x78, 0x65, 0x63, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x69, 0x6d, 0x65, 0x52, 0x65, + 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x15, 0x0a, 0x06, 0x6f, 0x72, 0x67, 0x5f, 0x69, 0x64, 0x18, + 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x6f, 0x72, 0x67, 0x49, 0x64, 0x12, 0x5a, 0x0a, 0x08, + 0x69, 0x6e, 0x74, 0x65, 0x72, 0x76, 0x61, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x3e, + 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x53, 0x65, 0x72, + 0x76, 0x65, 0x72, 0x46, 0x61, 0x72, 0x6d, 0x2e, 0x4a, 0x6f, 0x62, 0x2e, 0x54, 0x6f, 0x74, 0x61, + 0x6c, 0x45, 0x78, 0x65, 0x63, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x69, 0x6d, 0x65, 0x52, 0x65, + 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x76, 0x61, 0x6c, 0x52, 0x08, + 0x69, 0x6e, 0x74, 0x65, 0x72, 0x76, 0x61, 0x6c, 0x22, 0x18, 0x0a, 0x08, 0x49, 0x6e, 0x74, 0x65, + 0x72, 0x76, 0x61, 0x6c, 0x12, 0x0c, 0x0a, 0x08, 0x4c, 0x41, 0x53, 0x54, 0x5f, 0x44, 0x41, 0x59, + 0x10, 0x00, 0x22, 0x51, 0x0a, 0x1a, 0x54, 0x6f, 0x74, 0x61, 0x6c, 0x45, 0x78, 0x65, 0x63, 0x75, + 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x69, 0x6d, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, + 0x12, 0x33, 0x0a, 0x16, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x64, 0x75, 0x72, 0x61, 0x74, 0x69, + 0x6f, 0x6e, 0x5f, 0x69, 0x6e, 0x5f, 0x73, 0x65, 0x63, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, + 0x52, 0x13, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x44, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, + 0x6e, 0x53, 0x65, 0x63, 0x73, 0x22, 0x47, 0x0a, 0x0b, 0x53, 0x74, 0x6f, 0x70, 0x52, 0x65, 0x71, + 0x75, 0x65, 0x73, 0x74, 0x12, 0x15, 0x0a, 0x06, 0x6a, 0x6f, 0x62, 0x5f, 0x69, 0x64, 0x18, 0x01, + 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x6a, 0x6f, 0x62, 0x49, 0x64, 0x12, 0x21, 0x0a, 0x0c, 0x72, + 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, + 0x09, 0x52, 0x0b, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x65, 0x72, 0x49, 0x64, 0x22, 0x43, + 0x0a, 0x0c, 0x53, 0x74, 0x6f, 0x70, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x33, + 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1b, + 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x52, 0x65, 0x73, + 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x06, 0x73, 0x74, 0x61, + 0x74, 0x75, 0x73, 0x22, 0x2f, 0x0a, 0x16, 0x47, 0x65, 0x74, 0x41, 0x67, 0x65, 0x6e, 0x74, 0x50, + 0x61, 0x79, 0x6c, 0x6f, 0x61, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x15, 0x0a, + 0x06, 0x6a, 0x6f, 0x62, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x6a, + 0x6f, 0x62, 0x49, 0x64, 0x22, 0x33, 0x0a, 0x17, 0x47, 0x65, 0x74, 0x41, 0x67, 0x65, 0x6e, 0x74, + 0x50, 0x61, 0x79, 0x6c, 0x6f, 0x61, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, + 0x18, 0x0a, 0x07, 0x70, 0x61, 0x79, 0x6c, 0x6f, 0x61, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, + 0x52, 0x07, 0x70, 0x61, 0x79, 0x6c, 0x6f, 0x61, 0x64, 0x22, 0x41, 0x0a, 0x0f, 0x43, 0x61, 0x6e, + 0x44, 0x65, 0x62, 0x75, 0x67, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x15, 0x0a, 0x06, + 0x6a, 0x6f, 0x62, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x6a, 0x6f, + 0x62, 0x49, 0x64, 0x12, 0x17, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x02, + 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x22, 0x46, 0x0a, 0x10, + 0x43, 0x61, 0x6e, 0x44, 0x65, 0x62, 0x75, 0x67, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, + 0x12, 0x18, 0x0a, 0x07, 0x61, 0x6c, 0x6c, 0x6f, 0x77, 0x65, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, + 0x08, 0x52, 0x07, 0x61, 0x6c, 0x6c, 0x6f, 0x77, 0x65, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x65, + 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6d, 0x65, 0x73, + 0x73, 0x61, 0x67, 0x65, 0x22, 0x42, 0x0a, 0x10, 0x43, 0x61, 0x6e, 0x41, 0x74, 0x74, 0x61, 0x63, + 0x68, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x15, 0x0a, 0x06, 0x6a, 0x6f, 0x62, 0x5f, + 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x6a, 0x6f, 0x62, 0x49, 0x64, 0x12, + 0x17, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, + 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x22, 0x47, 0x0a, 0x11, 0x43, 0x61, 0x6e, 0x41, + 0x74, 0x74, 0x61, 0x63, 0x68, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x18, 0x0a, + 0x07, 0x61, 0x6c, 0x6c, 0x6f, 0x77, 0x65, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, + 0x61, 0x6c, 0x6c, 0x6f, 0x77, 0x65, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, + 0x67, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, + 0x65, 0x22, 0xa1, 0x02, 0x0a, 0x0d, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, + 0x65, 0x73, 0x74, 0x12, 0x21, 0x0a, 0x0c, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x65, 0x72, + 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x72, 0x65, 0x71, 0x75, 0x65, + 0x73, 0x74, 0x65, 0x72, 0x49, 0x64, 0x12, 0x27, 0x0a, 0x0f, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, + 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, + 0x0e, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, + 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, + 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x1f, + 0x0a, 0x0b, 0x62, 0x72, 0x61, 0x6e, 0x63, 0x68, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x04, 0x20, + 0x01, 0x28, 0x09, 0x52, 0x0a, 0x62, 0x72, 0x61, 0x6e, 0x63, 0x68, 0x4e, 0x61, 0x6d, 0x65, 0x12, + 0x1d, 0x0a, 0x0a, 0x63, 0x6f, 0x6d, 0x6d, 0x69, 0x74, 0x5f, 0x73, 0x68, 0x61, 0x18, 0x05, 0x20, + 0x01, 0x28, 0x09, 0x52, 0x09, 0x63, 0x6f, 0x6d, 0x6d, 0x69, 0x74, 0x53, 0x68, 0x61, 0x12, 0x3e, + 0x0a, 0x08, 0x6a, 0x6f, 0x62, 0x5f, 0x73, 0x70, 0x65, 0x63, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, + 0x32, 0x23, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x53, + 0x65, 0x72, 0x76, 0x65, 0x72, 0x46, 0x61, 0x72, 0x6d, 0x2e, 0x4a, 0x6f, 0x62, 0x2e, 0x4a, 0x6f, + 0x62, 0x53, 0x70, 0x65, 0x63, 0x52, 0x07, 0x6a, 0x6f, 0x62, 0x53, 0x70, 0x65, 0x63, 0x12, 0x25, + 0x0a, 0x0e, 0x72, 0x65, 0x73, 0x74, 0x72, 0x69, 0x63, 0x74, 0x65, 0x64, 0x5f, 0x6a, 0x6f, 0x62, + 0x18, 0x07, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0d, 0x72, 0x65, 0x73, 0x74, 0x72, 0x69, 0x63, 0x74, + 0x65, 0x64, 0x4a, 0x6f, 0x62, 0x22, 0x78, 0x0a, 0x0e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x33, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1b, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x53, 0x74, - 0x61, 0x74, 0x75, 0x73, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x14, 0x0a, 0x05, - 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x63, 0x6f, 0x75, - 0x6e, 0x74, 0x22, 0x8a, 0x01, 0x0a, 0x13, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x79, 0x53, 0x74, - 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x15, 0x0a, 0x06, 0x6f, 0x72, - 0x67, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x6f, 0x72, 0x67, 0x49, - 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x61, 0x67, 0x65, 0x6e, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, - 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x67, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, - 0x12, 0x3d, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x65, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0e, - 0x32, 0x25, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x53, - 0x65, 0x72, 0x76, 0x65, 0x72, 0x46, 0x61, 0x72, 0x6d, 0x2e, 0x4a, 0x6f, 0x62, 0x2e, 0x4a, 0x6f, - 0x62, 0x2e, 0x53, 0x74, 0x61, 0x74, 0x65, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x65, 0x73, 0x22, - 0xd0, 0x01, 0x0a, 0x14, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x79, 0x53, 0x74, 0x61, 0x74, 0x65, - 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x55, 0x0a, 0x06, 0x63, 0x6f, 0x75, 0x6e, - 0x74, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x3d, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, + 0x61, 0x74, 0x75, 0x73, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x31, 0x0a, 0x03, + 0x6a, 0x6f, 0x62, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1f, 0x2e, 0x49, 0x6e, 0x74, 0x65, + 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x46, 0x61, + 0x72, 0x6d, 0x2e, 0x4a, 0x6f, 0x62, 0x2e, 0x4a, 0x6f, 0x62, 0x52, 0x03, 0x6a, 0x6f, 0x62, 0x22, + 0xa9, 0x0a, 0x0a, 0x07, 0x4a, 0x6f, 0x62, 0x53, 0x70, 0x65, 0x63, 0x12, 0x19, 0x0a, 0x08, 0x6a, + 0x6f, 0x62, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6a, + 0x6f, 0x62, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x3f, 0x0a, 0x05, 0x61, 0x67, 0x65, 0x6e, 0x74, 0x18, + 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x29, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, + 0x41, 0x70, 0x69, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x46, 0x61, 0x72, 0x6d, 0x2e, 0x4a, + 0x6f, 0x62, 0x2e, 0x4a, 0x6f, 0x62, 0x53, 0x70, 0x65, 0x63, 0x2e, 0x41, 0x67, 0x65, 0x6e, 0x74, + 0x52, 0x05, 0x61, 0x67, 0x65, 0x6e, 0x74, 0x12, 0x44, 0x0a, 0x07, 0x73, 0x65, 0x63, 0x72, 0x65, + 0x74, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2a, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x46, 0x61, 0x72, - 0x6d, 0x2e, 0x4a, 0x6f, 0x62, 0x2e, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x79, 0x53, 0x74, 0x61, - 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x43, 0x6f, 0x75, 0x6e, 0x74, - 0x42, 0x79, 0x53, 0x74, 0x61, 0x74, 0x65, 0x52, 0x06, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x73, 0x1a, - 0x61, 0x0a, 0x0c, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x79, 0x53, 0x74, 0x61, 0x74, 0x65, 0x12, - 0x3b, 0x0a, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x25, - 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x53, 0x65, 0x72, - 0x76, 0x65, 0x72, 0x46, 0x61, 0x72, 0x6d, 0x2e, 0x4a, 0x6f, 0x62, 0x2e, 0x4a, 0x6f, 0x62, 0x2e, - 0x53, 0x74, 0x61, 0x74, 0x65, 0x52, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x12, 0x14, 0x0a, 0x05, - 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x63, 0x6f, 0x75, - 0x6e, 0x74, 0x22, 0xa8, 0x01, 0x0a, 0x19, 0x54, 0x6f, 0x74, 0x61, 0x6c, 0x45, 0x78, 0x65, 0x63, - 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x69, 0x6d, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, - 0x12, 0x15, 0x0a, 0x06, 0x6f, 0x72, 0x67, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, - 0x52, 0x05, 0x6f, 0x72, 0x67, 0x49, 0x64, 0x12, 0x5a, 0x0a, 0x08, 0x69, 0x6e, 0x74, 0x65, 0x72, - 0x76, 0x61, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x3e, 0x2e, 0x49, 0x6e, 0x74, 0x65, + 0x6d, 0x2e, 0x4a, 0x6f, 0x62, 0x2e, 0x4a, 0x6f, 0x62, 0x53, 0x70, 0x65, 0x63, 0x2e, 0x53, 0x65, + 0x63, 0x72, 0x65, 0x74, 0x52, 0x07, 0x73, 0x65, 0x63, 0x72, 0x65, 0x74, 0x73, 0x12, 0x45, 0x0a, + 0x08, 0x65, 0x6e, 0x76, 0x5f, 0x76, 0x61, 0x72, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, + 0x2a, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x53, 0x65, + 0x72, 0x76, 0x65, 0x72, 0x46, 0x61, 0x72, 0x6d, 0x2e, 0x4a, 0x6f, 0x62, 0x2e, 0x4a, 0x6f, 0x62, + 0x53, 0x70, 0x65, 0x63, 0x2e, 0x45, 0x6e, 0x76, 0x56, 0x61, 0x72, 0x52, 0x07, 0x65, 0x6e, 0x76, + 0x56, 0x61, 0x72, 0x73, 0x12, 0x3e, 0x0a, 0x05, 0x66, 0x69, 0x6c, 0x65, 0x73, 0x18, 0x05, 0x20, + 0x03, 0x28, 0x0b, 0x32, 0x28, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, + 0x69, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x46, 0x61, 0x72, 0x6d, 0x2e, 0x4a, 0x6f, 0x62, + 0x2e, 0x4a, 0x6f, 0x62, 0x53, 0x70, 0x65, 0x63, 0x2e, 0x46, 0x69, 0x6c, 0x65, 0x52, 0x05, 0x66, + 0x69, 0x6c, 0x65, 0x73, 0x12, 0x1a, 0x0a, 0x08, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x73, + 0x18, 0x06, 0x20, 0x03, 0x28, 0x09, 0x52, 0x08, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x73, + 0x12, 0x38, 0x0a, 0x18, 0x65, 0x70, 0x69, 0x6c, 0x6f, 0x67, 0x75, 0x65, 0x5f, 0x61, 0x6c, 0x77, + 0x61, 0x79, 0x73, 0x5f, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x73, 0x18, 0x07, 0x20, 0x03, + 0x28, 0x09, 0x52, 0x16, 0x65, 0x70, 0x69, 0x6c, 0x6f, 0x67, 0x75, 0x65, 0x41, 0x6c, 0x77, 0x61, + 0x79, 0x73, 0x43, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x73, 0x12, 0x39, 0x0a, 0x19, 0x65, 0x70, + 0x69, 0x6c, 0x6f, 0x67, 0x75, 0x65, 0x5f, 0x6f, 0x6e, 0x5f, 0x70, 0x61, 0x73, 0x73, 0x5f, 0x63, + 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x73, 0x18, 0x08, 0x20, 0x03, 0x28, 0x09, 0x52, 0x16, 0x65, + 0x70, 0x69, 0x6c, 0x6f, 0x67, 0x75, 0x65, 0x4f, 0x6e, 0x50, 0x61, 0x73, 0x73, 0x43, 0x6f, 0x6d, + 0x6d, 0x61, 0x6e, 0x64, 0x73, 0x12, 0x39, 0x0a, 0x19, 0x65, 0x70, 0x69, 0x6c, 0x6f, 0x67, 0x75, + 0x65, 0x5f, 0x6f, 0x6e, 0x5f, 0x66, 0x61, 0x69, 0x6c, 0x5f, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, + 0x64, 0x73, 0x18, 0x09, 0x20, 0x03, 0x28, 0x09, 0x52, 0x16, 0x65, 0x70, 0x69, 0x6c, 0x6f, 0x67, + 0x75, 0x65, 0x4f, 0x6e, 0x46, 0x61, 0x69, 0x6c, 0x43, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x73, + 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x72, 0x69, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x18, 0x0a, 0x20, 0x01, + 0x28, 0x05, 0x52, 0x08, 0x70, 0x72, 0x69, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x12, 0x30, 0x0a, 0x14, + 0x65, 0x78, 0x65, 0x63, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x5f, 0x6c, + 0x69, 0x6d, 0x69, 0x74, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x05, 0x52, 0x12, 0x65, 0x78, 0x65, 0x63, + 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x69, 0x6d, 0x65, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x1a, 0xd2, + 0x04, 0x0a, 0x05, 0x41, 0x67, 0x65, 0x6e, 0x74, 0x12, 0x4b, 0x0a, 0x07, 0x6d, 0x61, 0x63, 0x68, + 0x69, 0x6e, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x31, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x46, 0x61, - 0x72, 0x6d, 0x2e, 0x4a, 0x6f, 0x62, 0x2e, 0x54, 0x6f, 0x74, 0x61, 0x6c, 0x45, 0x78, 0x65, 0x63, - 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x69, 0x6d, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, - 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x76, 0x61, 0x6c, 0x52, 0x08, 0x69, 0x6e, 0x74, 0x65, 0x72, - 0x76, 0x61, 0x6c, 0x22, 0x18, 0x0a, 0x08, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x76, 0x61, 0x6c, 0x12, - 0x0c, 0x0a, 0x08, 0x4c, 0x41, 0x53, 0x54, 0x5f, 0x44, 0x41, 0x59, 0x10, 0x00, 0x22, 0x51, 0x0a, - 0x1a, 0x54, 0x6f, 0x74, 0x61, 0x6c, 0x45, 0x78, 0x65, 0x63, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x54, - 0x69, 0x6d, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x33, 0x0a, 0x16, 0x74, - 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x64, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x6e, - 0x5f, 0x73, 0x65, 0x63, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x13, 0x74, 0x6f, 0x74, - 0x61, 0x6c, 0x44, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x53, 0x65, 0x63, 0x73, - 0x22, 0x47, 0x0a, 0x0b, 0x53, 0x74, 0x6f, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, - 0x15, 0x0a, 0x06, 0x6a, 0x6f, 0x62, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, - 0x05, 0x6a, 0x6f, 0x62, 0x49, 0x64, 0x12, 0x21, 0x0a, 0x0c, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, - 0x74, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x72, 0x65, - 0x71, 0x75, 0x65, 0x73, 0x74, 0x65, 0x72, 0x49, 0x64, 0x22, 0x43, 0x0a, 0x0c, 0x53, 0x74, 0x6f, - 0x70, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x33, 0x0a, 0x06, 0x73, 0x74, 0x61, - 0x74, 0x75, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1b, 0x2e, 0x49, 0x6e, 0x74, 0x65, - 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, - 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x22, 0x2f, - 0x0a, 0x16, 0x47, 0x65, 0x74, 0x41, 0x67, 0x65, 0x6e, 0x74, 0x50, 0x61, 0x79, 0x6c, 0x6f, 0x61, - 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x15, 0x0a, 0x06, 0x6a, 0x6f, 0x62, 0x5f, - 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x6a, 0x6f, 0x62, 0x49, 0x64, 0x22, - 0x33, 0x0a, 0x17, 0x47, 0x65, 0x74, 0x41, 0x67, 0x65, 0x6e, 0x74, 0x50, 0x61, 0x79, 0x6c, 0x6f, - 0x61, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x70, 0x61, - 0x79, 0x6c, 0x6f, 0x61, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x70, 0x61, 0x79, - 0x6c, 0x6f, 0x61, 0x64, 0x22, 0x41, 0x0a, 0x0f, 0x43, 0x61, 0x6e, 0x44, 0x65, 0x62, 0x75, 0x67, - 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x15, 0x0a, 0x06, 0x6a, 0x6f, 0x62, 0x5f, 0x69, - 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x6a, 0x6f, 0x62, 0x49, 0x64, 0x12, 0x17, - 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, - 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x22, 0x46, 0x0a, 0x10, 0x43, 0x61, 0x6e, 0x44, 0x65, - 0x62, 0x75, 0x67, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x61, - 0x6c, 0x6c, 0x6f, 0x77, 0x65, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x61, 0x6c, - 0x6c, 0x6f, 0x77, 0x65, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, - 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x22, - 0x42, 0x0a, 0x10, 0x43, 0x61, 0x6e, 0x41, 0x74, 0x74, 0x61, 0x63, 0x68, 0x52, 0x65, 0x71, 0x75, - 0x65, 0x73, 0x74, 0x12, 0x15, 0x0a, 0x06, 0x6a, 0x6f, 0x62, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, - 0x01, 0x28, 0x09, 0x52, 0x05, 0x6a, 0x6f, 0x62, 0x49, 0x64, 0x12, 0x17, 0x0a, 0x07, 0x75, 0x73, - 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, - 0x72, 0x49, 0x64, 0x22, 0x47, 0x0a, 0x11, 0x43, 0x61, 0x6e, 0x41, 0x74, 0x74, 0x61, 0x63, 0x68, - 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x61, 0x6c, 0x6c, 0x6f, - 0x77, 0x65, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x61, 0x6c, 0x6c, 0x6f, 0x77, - 0x65, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x02, 0x20, - 0x01, 0x28, 0x09, 0x52, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x2a, 0x28, 0x0a, 0x10, - 0x44, 0x65, 0x62, 0x75, 0x67, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, - 0x12, 0x07, 0x0a, 0x03, 0x4a, 0x4f, 0x42, 0x10, 0x00, 0x12, 0x0b, 0x0a, 0x07, 0x50, 0x52, 0x4f, - 0x4a, 0x45, 0x43, 0x54, 0x10, 0x01, 0x32, 0xd0, 0x08, 0x0a, 0x0a, 0x4a, 0x6f, 0x62, 0x53, 0x65, - 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0x65, 0x0a, 0x08, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x62, - 0x65, 0x12, 0x2b, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, - 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x46, 0x61, 0x72, 0x6d, 0x2e, 0x4a, 0x6f, 0x62, 0x2e, 0x44, - 0x65, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2c, - 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x53, 0x65, 0x72, - 0x76, 0x65, 0x72, 0x46, 0x61, 0x72, 0x6d, 0x2e, 0x4a, 0x6f, 0x62, 0x2e, 0x44, 0x65, 0x73, 0x63, - 0x72, 0x69, 0x62, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x59, 0x0a, 0x04, - 0x4c, 0x69, 0x73, 0x74, 0x12, 0x27, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, - 0x70, 0x69, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x46, 0x61, 0x72, 0x6d, 0x2e, 0x4a, 0x6f, - 0x62, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x28, 0x2e, - 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x53, 0x65, 0x72, 0x76, - 0x65, 0x72, 0x46, 0x61, 0x72, 0x6d, 0x2e, 0x4a, 0x6f, 0x62, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x52, - 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x80, 0x01, 0x0a, 0x11, 0x4c, 0x69, 0x73, 0x74, - 0x44, 0x65, 0x62, 0x75, 0x67, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x34, 0x2e, + 0x72, 0x6d, 0x2e, 0x4a, 0x6f, 0x62, 0x2e, 0x4a, 0x6f, 0x62, 0x53, 0x70, 0x65, 0x63, 0x2e, 0x41, + 0x67, 0x65, 0x6e, 0x74, 0x2e, 0x4d, 0x61, 0x63, 0x68, 0x69, 0x6e, 0x65, 0x52, 0x07, 0x6d, 0x61, + 0x63, 0x68, 0x69, 0x6e, 0x65, 0x12, 0x53, 0x0a, 0x0a, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, + 0x65, 0x72, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x33, 0x2e, 0x49, 0x6e, 0x74, 0x65, + 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x46, 0x61, + 0x72, 0x6d, 0x2e, 0x4a, 0x6f, 0x62, 0x2e, 0x4a, 0x6f, 0x62, 0x53, 0x70, 0x65, 0x63, 0x2e, 0x41, + 0x67, 0x65, 0x6e, 0x74, 0x2e, 0x43, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x65, 0x72, 0x52, 0x0a, + 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x65, 0x72, 0x73, 0x12, 0x67, 0x0a, 0x12, 0x69, 0x6d, + 0x61, 0x67, 0x65, 0x5f, 0x70, 0x75, 0x6c, 0x6c, 0x5f, 0x73, 0x65, 0x63, 0x72, 0x65, 0x74, 0x73, + 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x39, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, + 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x46, 0x61, 0x72, 0x6d, 0x2e, + 0x4a, 0x6f, 0x62, 0x2e, 0x4a, 0x6f, 0x62, 0x53, 0x70, 0x65, 0x63, 0x2e, 0x41, 0x67, 0x65, 0x6e, + 0x74, 0x2e, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x50, 0x75, 0x6c, 0x6c, 0x53, 0x65, 0x63, 0x72, 0x65, + 0x74, 0x52, 0x10, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x50, 0x75, 0x6c, 0x6c, 0x53, 0x65, 0x63, 0x72, + 0x65, 0x74, 0x73, 0x1a, 0x38, 0x0a, 0x07, 0x4d, 0x61, 0x63, 0x68, 0x69, 0x6e, 0x65, 0x12, 0x12, + 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x74, 0x79, + 0x70, 0x65, 0x12, 0x19, 0x0a, 0x08, 0x6f, 0x73, 0x5f, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x18, 0x02, + 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6f, 0x73, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x1a, 0xdc, 0x01, + 0x0a, 0x09, 0x43, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x65, 0x72, 0x12, 0x12, 0x0a, 0x04, 0x6e, + 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, + 0x14, 0x0a, 0x05, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, + 0x69, 0x6d, 0x61, 0x67, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, + 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x12, + 0x45, 0x0a, 0x08, 0x65, 0x6e, 0x76, 0x5f, 0x76, 0x61, 0x72, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, + 0x0b, 0x32, 0x2a, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, + 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x46, 0x61, 0x72, 0x6d, 0x2e, 0x4a, 0x6f, 0x62, 0x2e, 0x4a, + 0x6f, 0x62, 0x53, 0x70, 0x65, 0x63, 0x2e, 0x45, 0x6e, 0x76, 0x56, 0x61, 0x72, 0x52, 0x07, 0x65, + 0x6e, 0x76, 0x56, 0x61, 0x72, 0x73, 0x12, 0x44, 0x0a, 0x07, 0x73, 0x65, 0x63, 0x72, 0x65, 0x74, + 0x73, 0x18, 0x05, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2a, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, + 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x46, 0x61, 0x72, 0x6d, + 0x2e, 0x4a, 0x6f, 0x62, 0x2e, 0x4a, 0x6f, 0x62, 0x53, 0x70, 0x65, 0x63, 0x2e, 0x53, 0x65, 0x63, + 0x72, 0x65, 0x74, 0x52, 0x07, 0x73, 0x65, 0x63, 0x72, 0x65, 0x74, 0x73, 0x1a, 0x25, 0x0a, 0x0f, + 0x49, 0x6d, 0x61, 0x67, 0x65, 0x50, 0x75, 0x6c, 0x6c, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x12, + 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, + 0x61, 0x6d, 0x65, 0x1a, 0x1c, 0x0a, 0x06, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x12, 0x12, 0x0a, + 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, + 0x65, 0x1a, 0x32, 0x0a, 0x06, 0x45, 0x6e, 0x76, 0x56, 0x61, 0x72, 0x12, 0x12, 0x0a, 0x04, 0x6e, + 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, + 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, + 0x76, 0x61, 0x6c, 0x75, 0x65, 0x1a, 0x34, 0x0a, 0x04, 0x46, 0x69, 0x6c, 0x65, 0x12, 0x12, 0x0a, + 0x04, 0x70, 0x61, 0x74, 0x68, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x70, 0x61, 0x74, + 0x68, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x18, 0x02, 0x20, 0x01, + 0x28, 0x09, 0x52, 0x07, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x2a, 0x28, 0x0a, 0x10, 0x44, + 0x65, 0x62, 0x75, 0x67, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, + 0x07, 0x0a, 0x03, 0x4a, 0x4f, 0x42, 0x10, 0x00, 0x12, 0x0b, 0x0a, 0x07, 0x50, 0x52, 0x4f, 0x4a, + 0x45, 0x43, 0x54, 0x10, 0x01, 0x32, 0xb1, 0x09, 0x0a, 0x0a, 0x4a, 0x6f, 0x62, 0x53, 0x65, 0x72, + 0x76, 0x69, 0x63, 0x65, 0x12, 0x65, 0x0a, 0x08, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, + 0x12, 0x2b, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x53, + 0x65, 0x72, 0x76, 0x65, 0x72, 0x46, 0x61, 0x72, 0x6d, 0x2e, 0x4a, 0x6f, 0x62, 0x2e, 0x44, 0x65, + 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2c, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x53, 0x65, 0x72, 0x76, - 0x65, 0x72, 0x46, 0x61, 0x72, 0x6d, 0x2e, 0x4a, 0x6f, 0x62, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x44, - 0x65, 0x62, 0x75, 0x67, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x71, 0x75, - 0x65, 0x73, 0x74, 0x1a, 0x35, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, - 0x69, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x46, 0x61, 0x72, 0x6d, 0x2e, 0x4a, 0x6f, 0x62, - 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x44, 0x65, 0x62, 0x75, 0x67, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, - 0x6e, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x5c, 0x0a, 0x05, 0x43, 0x6f, - 0x75, 0x6e, 0x74, 0x12, 0x28, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, + 0x65, 0x72, 0x46, 0x61, 0x72, 0x6d, 0x2e, 0x4a, 0x6f, 0x62, 0x2e, 0x44, 0x65, 0x73, 0x63, 0x72, + 0x69, 0x62, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x59, 0x0a, 0x04, 0x4c, + 0x69, 0x73, 0x74, 0x12, 0x27, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x46, 0x61, 0x72, 0x6d, 0x2e, 0x4a, 0x6f, 0x62, - 0x2e, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x29, 0x2e, - 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x53, 0x65, 0x72, 0x76, - 0x65, 0x72, 0x46, 0x61, 0x72, 0x6d, 0x2e, 0x4a, 0x6f, 0x62, 0x2e, 0x43, 0x6f, 0x75, 0x6e, 0x74, - 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x71, 0x0a, 0x0c, 0x43, 0x6f, 0x75, 0x6e, - 0x74, 0x42, 0x79, 0x53, 0x74, 0x61, 0x74, 0x65, 0x12, 0x2f, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, + 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x28, 0x2e, 0x49, + 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x65, + 0x72, 0x46, 0x61, 0x72, 0x6d, 0x2e, 0x4a, 0x6f, 0x62, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, + 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x80, 0x01, 0x0a, 0x11, 0x4c, 0x69, 0x73, 0x74, 0x44, + 0x65, 0x62, 0x75, 0x67, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x34, 0x2e, 0x49, + 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x65, + 0x72, 0x46, 0x61, 0x72, 0x6d, 0x2e, 0x4a, 0x6f, 0x62, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x44, 0x65, + 0x62, 0x75, 0x67, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, + 0x73, 0x74, 0x1a, 0x35, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, + 0x2e, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x46, 0x61, 0x72, 0x6d, 0x2e, 0x4a, 0x6f, 0x62, 0x2e, + 0x4c, 0x69, 0x73, 0x74, 0x44, 0x65, 0x62, 0x75, 0x67, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, + 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x5c, 0x0a, 0x05, 0x43, 0x6f, 0x75, + 0x6e, 0x74, 0x12, 0x28, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, + 0x2e, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x46, 0x61, 0x72, 0x6d, 0x2e, 0x4a, 0x6f, 0x62, 0x2e, + 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x29, 0x2e, 0x49, + 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x65, + 0x72, 0x46, 0x61, 0x72, 0x6d, 0x2e, 0x4a, 0x6f, 0x62, 0x2e, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x52, + 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x71, 0x0a, 0x0c, 0x43, 0x6f, 0x75, 0x6e, 0x74, + 0x42, 0x79, 0x53, 0x74, 0x61, 0x74, 0x65, 0x12, 0x2f, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, + 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x46, 0x61, 0x72, 0x6d, + 0x2e, 0x4a, 0x6f, 0x62, 0x2e, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x79, 0x53, 0x74, 0x61, 0x74, + 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x30, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x46, 0x61, 0x72, 0x6d, 0x2e, 0x4a, 0x6f, 0x62, 0x2e, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x79, 0x53, 0x74, 0x61, - 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x30, 0x2e, 0x49, 0x6e, 0x74, 0x65, - 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x46, 0x61, - 0x72, 0x6d, 0x2e, 0x4a, 0x6f, 0x62, 0x2e, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x79, 0x53, 0x74, - 0x61, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x59, 0x0a, 0x04, 0x53, - 0x74, 0x6f, 0x70, 0x12, 0x27, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, - 0x69, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x46, 0x61, 0x72, 0x6d, 0x2e, 0x4a, 0x6f, 0x62, - 0x2e, 0x53, 0x74, 0x6f, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x28, 0x2e, 0x49, + 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x59, 0x0a, 0x04, 0x53, 0x74, + 0x6f, 0x70, 0x12, 0x27, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, + 0x2e, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x46, 0x61, 0x72, 0x6d, 0x2e, 0x4a, 0x6f, 0x62, 0x2e, + 0x53, 0x74, 0x6f, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x28, 0x2e, 0x49, 0x6e, + 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, + 0x46, 0x61, 0x72, 0x6d, 0x2e, 0x4a, 0x6f, 0x62, 0x2e, 0x53, 0x74, 0x6f, 0x70, 0x52, 0x65, 0x73, + 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x83, 0x01, 0x0a, 0x12, 0x54, 0x6f, 0x74, 0x61, 0x6c, 0x45, + 0x78, 0x65, 0x63, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x35, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x65, - 0x72, 0x46, 0x61, 0x72, 0x6d, 0x2e, 0x4a, 0x6f, 0x62, 0x2e, 0x53, 0x74, 0x6f, 0x70, 0x52, 0x65, - 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x83, 0x01, 0x0a, 0x12, 0x54, 0x6f, 0x74, 0x61, 0x6c, - 0x45, 0x78, 0x65, 0x63, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x35, 0x2e, - 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x53, 0x65, 0x72, 0x76, - 0x65, 0x72, 0x46, 0x61, 0x72, 0x6d, 0x2e, 0x4a, 0x6f, 0x62, 0x2e, 0x54, 0x6f, 0x74, 0x61, 0x6c, - 0x45, 0x78, 0x65, 0x63, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x69, 0x6d, 0x65, 0x52, 0x65, 0x71, - 0x75, 0x65, 0x73, 0x74, 0x1a, 0x36, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, - 0x70, 0x69, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x46, 0x61, 0x72, 0x6d, 0x2e, 0x4a, 0x6f, - 0x62, 0x2e, 0x54, 0x6f, 0x74, 0x61, 0x6c, 0x45, 0x78, 0x65, 0x63, 0x75, 0x74, 0x69, 0x6f, 0x6e, - 0x54, 0x69, 0x6d, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x7a, 0x0a, 0x0f, - 0x47, 0x65, 0x74, 0x41, 0x67, 0x65, 0x6e, 0x74, 0x50, 0x61, 0x79, 0x6c, 0x6f, 0x61, 0x64, 0x12, - 0x32, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x53, 0x65, - 0x72, 0x76, 0x65, 0x72, 0x46, 0x61, 0x72, 0x6d, 0x2e, 0x4a, 0x6f, 0x62, 0x2e, 0x47, 0x65, 0x74, - 0x41, 0x67, 0x65, 0x6e, 0x74, 0x50, 0x61, 0x79, 0x6c, 0x6f, 0x61, 0x64, 0x52, 0x65, 0x71, 0x75, - 0x65, 0x73, 0x74, 0x1a, 0x33, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, + 0x72, 0x46, 0x61, 0x72, 0x6d, 0x2e, 0x4a, 0x6f, 0x62, 0x2e, 0x54, 0x6f, 0x74, 0x61, 0x6c, 0x45, + 0x78, 0x65, 0x63, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x69, 0x6d, 0x65, 0x52, 0x65, 0x71, 0x75, + 0x65, 0x73, 0x74, 0x1a, 0x36, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x46, 0x61, 0x72, 0x6d, 0x2e, 0x4a, 0x6f, 0x62, - 0x2e, 0x47, 0x65, 0x74, 0x41, 0x67, 0x65, 0x6e, 0x74, 0x50, 0x61, 0x79, 0x6c, 0x6f, 0x61, 0x64, - 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x65, 0x0a, 0x08, 0x43, 0x61, 0x6e, 0x44, - 0x65, 0x62, 0x75, 0x67, 0x12, 0x2b, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, - 0x70, 0x69, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x46, 0x61, 0x72, 0x6d, 0x2e, 0x4a, 0x6f, - 0x62, 0x2e, 0x43, 0x61, 0x6e, 0x44, 0x65, 0x62, 0x75, 0x67, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, - 0x74, 0x1a, 0x2c, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, - 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x46, 0x61, 0x72, 0x6d, 0x2e, 0x4a, 0x6f, 0x62, 0x2e, 0x43, - 0x61, 0x6e, 0x44, 0x65, 0x62, 0x75, 0x67, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, - 0x68, 0x0a, 0x09, 0x43, 0x61, 0x6e, 0x41, 0x74, 0x74, 0x61, 0x63, 0x68, 0x12, 0x2c, 0x2e, 0x49, - 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x65, - 0x72, 0x46, 0x61, 0x72, 0x6d, 0x2e, 0x4a, 0x6f, 0x62, 0x2e, 0x43, 0x61, 0x6e, 0x41, 0x74, 0x74, - 0x61, 0x63, 0x68, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2d, 0x2e, 0x49, 0x6e, 0x74, - 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x46, - 0x61, 0x72, 0x6d, 0x2e, 0x4a, 0x6f, 0x62, 0x2e, 0x43, 0x61, 0x6e, 0x41, 0x74, 0x74, 0x61, 0x63, - 0x68, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x42, 0x3d, 0x5a, 0x3b, 0x67, 0x69, 0x74, - 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x72, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x65, 0x64, - 0x74, 0x65, 0x78, 0x74, 0x2f, 0x76, 0x65, 0x6c, 0x6f, 0x63, 0x69, 0x74, 0x79, 0x2f, 0x70, 0x6b, - 0x67, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x73, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, - 0x66, 0x61, 0x72, 0x6d, 0x2e, 0x6a, 0x6f, 0x62, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, + 0x2e, 0x54, 0x6f, 0x74, 0x61, 0x6c, 0x45, 0x78, 0x65, 0x63, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x54, + 0x69, 0x6d, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x7a, 0x0a, 0x0f, 0x47, + 0x65, 0x74, 0x41, 0x67, 0x65, 0x6e, 0x74, 0x50, 0x61, 0x79, 0x6c, 0x6f, 0x61, 0x64, 0x12, 0x32, + 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x53, 0x65, 0x72, + 0x76, 0x65, 0x72, 0x46, 0x61, 0x72, 0x6d, 0x2e, 0x4a, 0x6f, 0x62, 0x2e, 0x47, 0x65, 0x74, 0x41, + 0x67, 0x65, 0x6e, 0x74, 0x50, 0x61, 0x79, 0x6c, 0x6f, 0x61, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, + 0x73, 0x74, 0x1a, 0x33, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, + 0x2e, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x46, 0x61, 0x72, 0x6d, 0x2e, 0x4a, 0x6f, 0x62, 0x2e, + 0x47, 0x65, 0x74, 0x41, 0x67, 0x65, 0x6e, 0x74, 0x50, 0x61, 0x79, 0x6c, 0x6f, 0x61, 0x64, 0x52, + 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x65, 0x0a, 0x08, 0x43, 0x61, 0x6e, 0x44, 0x65, + 0x62, 0x75, 0x67, 0x12, 0x2b, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, + 0x69, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x46, 0x61, 0x72, 0x6d, 0x2e, 0x4a, 0x6f, 0x62, + 0x2e, 0x43, 0x61, 0x6e, 0x44, 0x65, 0x62, 0x75, 0x67, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, + 0x1a, 0x2c, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x53, + 0x65, 0x72, 0x76, 0x65, 0x72, 0x46, 0x61, 0x72, 0x6d, 0x2e, 0x4a, 0x6f, 0x62, 0x2e, 0x43, 0x61, + 0x6e, 0x44, 0x65, 0x62, 0x75, 0x67, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x68, + 0x0a, 0x09, 0x43, 0x61, 0x6e, 0x41, 0x74, 0x74, 0x61, 0x63, 0x68, 0x12, 0x2c, 0x2e, 0x49, 0x6e, + 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, + 0x46, 0x61, 0x72, 0x6d, 0x2e, 0x4a, 0x6f, 0x62, 0x2e, 0x43, 0x61, 0x6e, 0x41, 0x74, 0x74, 0x61, + 0x63, 0x68, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2d, 0x2e, 0x49, 0x6e, 0x74, 0x65, + 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x46, 0x61, + 0x72, 0x6d, 0x2e, 0x4a, 0x6f, 0x62, 0x2e, 0x43, 0x61, 0x6e, 0x41, 0x74, 0x74, 0x61, 0x63, 0x68, + 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x5f, 0x0a, 0x06, 0x43, 0x72, 0x65, 0x61, + 0x74, 0x65, 0x12, 0x29, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, + 0x2e, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x46, 0x61, 0x72, 0x6d, 0x2e, 0x4a, 0x6f, 0x62, 0x2e, + 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2a, 0x2e, + 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x53, 0x65, 0x72, 0x76, + 0x65, 0x72, 0x46, 0x61, 0x72, 0x6d, 0x2e, 0x4a, 0x6f, 0x62, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, + 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x42, 0x46, 0x5a, 0x44, 0x67, 0x69, 0x74, + 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x73, 0x65, 0x6d, 0x61, 0x70, 0x68, 0x6f, 0x72, + 0x65, 0x69, 0x6f, 0x2f, 0x73, 0x65, 0x6d, 0x61, 0x70, 0x68, 0x6f, 0x72, 0x65, 0x2f, 0x76, 0x65, + 0x6c, 0x6f, 0x63, 0x69, 0x74, 0x79, 0x2f, 0x70, 0x6b, 0x67, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, + 0x73, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x66, 0x61, 0x72, 0x6d, 0x2e, 0x6a, 0x6f, + 0x62, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( @@ -2492,7 +3369,7 @@ func file_server_farm_job_proto_rawDescGZIP() []byte { } var file_server_farm_job_proto_enumTypes = make([]protoimpl.EnumInfo, 6) -var file_server_farm_job_proto_msgTypes = make([]protoimpl.MessageInfo, 24) +var file_server_farm_job_proto_msgTypes = make([]protoimpl.MessageInfo, 34) var file_server_farm_job_proto_goTypes = []interface{}{ (DebugSessionType)(0), // 0: InternalApi.ServerFarm.Job.DebugSessionType (Job_State)(0), // 1: InternalApi.ServerFarm.Job.Job.State @@ -2522,71 +3399,97 @@ var file_server_farm_job_proto_goTypes = []interface{}{ (*CanDebugResponse)(nil), // 25: InternalApi.ServerFarm.Job.CanDebugResponse (*CanAttachRequest)(nil), // 26: InternalApi.ServerFarm.Job.CanAttachRequest (*CanAttachResponse)(nil), // 27: InternalApi.ServerFarm.Job.CanAttachResponse - (*Job_Timeline)(nil), // 28: InternalApi.ServerFarm.Job.Job.Timeline - (*CountByStateResponse_CountByState)(nil), // 29: InternalApi.ServerFarm.Job.CountByStateResponse.CountByState - (*response_status.ResponseStatus)(nil), // 30: InternalApi.ResponseStatus - (*timestamp.Timestamp)(nil), // 31: google.protobuf.Timestamp + (*CreateRequest)(nil), // 28: InternalApi.ServerFarm.Job.CreateRequest + (*CreateResponse)(nil), // 29: InternalApi.ServerFarm.Job.CreateResponse + (*JobSpec)(nil), // 30: InternalApi.ServerFarm.Job.JobSpec + (*Job_Timeline)(nil), // 31: InternalApi.ServerFarm.Job.Job.Timeline + (*CountByStateResponse_CountByState)(nil), // 32: InternalApi.ServerFarm.Job.CountByStateResponse.CountByState + (*JobSpec_Agent)(nil), // 33: InternalApi.ServerFarm.Job.JobSpec.Agent + (*JobSpec_Secret)(nil), // 34: InternalApi.ServerFarm.Job.JobSpec.Secret + (*JobSpec_EnvVar)(nil), // 35: InternalApi.ServerFarm.Job.JobSpec.EnvVar + (*JobSpec_File)(nil), // 36: InternalApi.ServerFarm.Job.JobSpec.File + (*JobSpec_Agent_Machine)(nil), // 37: InternalApi.ServerFarm.Job.JobSpec.Agent.Machine + (*JobSpec_Agent_Container)(nil), // 38: InternalApi.ServerFarm.Job.JobSpec.Agent.Container + (*JobSpec_Agent_ImagePullSecret)(nil), // 39: InternalApi.ServerFarm.Job.JobSpec.Agent.ImagePullSecret + (*response_status.ResponseStatus)(nil), // 40: InternalApi.ResponseStatus + (*timestamp.Timestamp)(nil), // 41: google.protobuf.Timestamp } var file_server_farm_job_proto_depIdxs = []int32{ - 28, // 0: InternalApi.ServerFarm.Job.Job.timeline:type_name -> InternalApi.ServerFarm.Job.Job.Timeline + 31, // 0: InternalApi.ServerFarm.Job.Job.timeline:type_name -> InternalApi.ServerFarm.Job.Job.Timeline 1, // 1: InternalApi.ServerFarm.Job.Job.state:type_name -> InternalApi.ServerFarm.Job.Job.State 2, // 2: InternalApi.ServerFarm.Job.Job.result:type_name -> InternalApi.ServerFarm.Job.Job.Result - 30, // 3: InternalApi.ServerFarm.Job.DescribeResponse.status:type_name -> InternalApi.ResponseStatus + 40, // 3: InternalApi.ServerFarm.Job.DescribeResponse.status:type_name -> InternalApi.ResponseStatus 7, // 4: InternalApi.ServerFarm.Job.DescribeResponse.job:type_name -> InternalApi.ServerFarm.Job.Job 3, // 5: InternalApi.ServerFarm.Job.ListRequest.order:type_name -> InternalApi.ServerFarm.Job.ListRequest.Order 1, // 6: InternalApi.ServerFarm.Job.ListRequest.job_states:type_name -> InternalApi.ServerFarm.Job.Job.State - 31, // 7: InternalApi.ServerFarm.Job.ListRequest.finished_at_gt:type_name -> google.protobuf.Timestamp - 31, // 8: InternalApi.ServerFarm.Job.ListRequest.finished_at_gte:type_name -> google.protobuf.Timestamp - 30, // 9: InternalApi.ServerFarm.Job.ListResponse.status:type_name -> InternalApi.ResponseStatus - 7, // 10: InternalApi.ServerFarm.Job.ListResponse.jobs:type_name -> InternalApi.ServerFarm.Job.Job - 4, // 11: InternalApi.ServerFarm.Job.ListDebugSessionsRequest.order:type_name -> InternalApi.ServerFarm.Job.ListDebugSessionsRequest.Order - 1, // 12: InternalApi.ServerFarm.Job.ListDebugSessionsRequest.debug_session_states:type_name -> InternalApi.ServerFarm.Job.Job.State - 0, // 13: InternalApi.ServerFarm.Job.ListDebugSessionsRequest.types:type_name -> InternalApi.ServerFarm.Job.DebugSessionType - 30, // 14: InternalApi.ServerFarm.Job.ListDebugSessionsResponse.status:type_name -> InternalApi.ResponseStatus - 13, // 15: InternalApi.ServerFarm.Job.ListDebugSessionsResponse.debug_sessions:type_name -> InternalApi.ServerFarm.Job.DebugSession - 7, // 16: InternalApi.ServerFarm.Job.DebugSession.debug_session:type_name -> InternalApi.ServerFarm.Job.Job - 0, // 17: InternalApi.ServerFarm.Job.DebugSession.type:type_name -> InternalApi.ServerFarm.Job.DebugSessionType - 7, // 18: InternalApi.ServerFarm.Job.DebugSession.debugged_job:type_name -> InternalApi.ServerFarm.Job.Job - 1, // 19: InternalApi.ServerFarm.Job.CountRequest.job_states:type_name -> InternalApi.ServerFarm.Job.Job.State - 31, // 20: InternalApi.ServerFarm.Job.CountRequest.finished_at_gte:type_name -> google.protobuf.Timestamp - 31, // 21: InternalApi.ServerFarm.Job.CountRequest.finished_at_lte:type_name -> google.protobuf.Timestamp - 30, // 22: InternalApi.ServerFarm.Job.CountResponse.status:type_name -> InternalApi.ResponseStatus - 1, // 23: InternalApi.ServerFarm.Job.CountByStateRequest.states:type_name -> InternalApi.ServerFarm.Job.Job.State - 29, // 24: InternalApi.ServerFarm.Job.CountByStateResponse.counts:type_name -> InternalApi.ServerFarm.Job.CountByStateResponse.CountByState - 5, // 25: InternalApi.ServerFarm.Job.TotalExecutionTimeRequest.interval:type_name -> InternalApi.ServerFarm.Job.TotalExecutionTimeRequest.Interval - 30, // 26: InternalApi.ServerFarm.Job.StopResponse.status:type_name -> InternalApi.ResponseStatus - 31, // 27: InternalApi.ServerFarm.Job.Job.Timeline.created_at:type_name -> google.protobuf.Timestamp - 31, // 28: InternalApi.ServerFarm.Job.Job.Timeline.enqueued_at:type_name -> google.protobuf.Timestamp - 31, // 29: InternalApi.ServerFarm.Job.Job.Timeline.started_at:type_name -> google.protobuf.Timestamp - 31, // 30: InternalApi.ServerFarm.Job.Job.Timeline.finished_at:type_name -> google.protobuf.Timestamp - 31, // 31: InternalApi.ServerFarm.Job.Job.Timeline.execution_started_at:type_name -> google.protobuf.Timestamp - 31, // 32: InternalApi.ServerFarm.Job.Job.Timeline.execution_finished_at:type_name -> google.protobuf.Timestamp - 1, // 33: InternalApi.ServerFarm.Job.CountByStateResponse.CountByState.state:type_name -> InternalApi.ServerFarm.Job.Job.State - 6, // 34: InternalApi.ServerFarm.Job.JobService.Describe:input_type -> InternalApi.ServerFarm.Job.DescribeRequest - 9, // 35: InternalApi.ServerFarm.Job.JobService.List:input_type -> InternalApi.ServerFarm.Job.ListRequest - 11, // 36: InternalApi.ServerFarm.Job.JobService.ListDebugSessions:input_type -> InternalApi.ServerFarm.Job.ListDebugSessionsRequest - 14, // 37: InternalApi.ServerFarm.Job.JobService.Count:input_type -> InternalApi.ServerFarm.Job.CountRequest - 16, // 38: InternalApi.ServerFarm.Job.JobService.CountByState:input_type -> InternalApi.ServerFarm.Job.CountByStateRequest - 20, // 39: InternalApi.ServerFarm.Job.JobService.Stop:input_type -> InternalApi.ServerFarm.Job.StopRequest - 18, // 40: InternalApi.ServerFarm.Job.JobService.TotalExecutionTime:input_type -> InternalApi.ServerFarm.Job.TotalExecutionTimeRequest - 22, // 41: InternalApi.ServerFarm.Job.JobService.GetAgentPayload:input_type -> InternalApi.ServerFarm.Job.GetAgentPayloadRequest - 24, // 42: InternalApi.ServerFarm.Job.JobService.CanDebug:input_type -> InternalApi.ServerFarm.Job.CanDebugRequest - 26, // 43: InternalApi.ServerFarm.Job.JobService.CanAttach:input_type -> InternalApi.ServerFarm.Job.CanAttachRequest - 8, // 44: InternalApi.ServerFarm.Job.JobService.Describe:output_type -> InternalApi.ServerFarm.Job.DescribeResponse - 10, // 45: InternalApi.ServerFarm.Job.JobService.List:output_type -> InternalApi.ServerFarm.Job.ListResponse - 12, // 46: InternalApi.ServerFarm.Job.JobService.ListDebugSessions:output_type -> InternalApi.ServerFarm.Job.ListDebugSessionsResponse - 15, // 47: InternalApi.ServerFarm.Job.JobService.Count:output_type -> InternalApi.ServerFarm.Job.CountResponse - 17, // 48: InternalApi.ServerFarm.Job.JobService.CountByState:output_type -> InternalApi.ServerFarm.Job.CountByStateResponse - 21, // 49: InternalApi.ServerFarm.Job.JobService.Stop:output_type -> InternalApi.ServerFarm.Job.StopResponse - 19, // 50: InternalApi.ServerFarm.Job.JobService.TotalExecutionTime:output_type -> InternalApi.ServerFarm.Job.TotalExecutionTimeResponse - 23, // 51: InternalApi.ServerFarm.Job.JobService.GetAgentPayload:output_type -> InternalApi.ServerFarm.Job.GetAgentPayloadResponse - 25, // 52: InternalApi.ServerFarm.Job.JobService.CanDebug:output_type -> InternalApi.ServerFarm.Job.CanDebugResponse - 27, // 53: InternalApi.ServerFarm.Job.JobService.CanAttach:output_type -> InternalApi.ServerFarm.Job.CanAttachResponse - 44, // [44:54] is the sub-list for method output_type - 34, // [34:44] is the sub-list for method input_type - 34, // [34:34] is the sub-list for extension type_name - 34, // [34:34] is the sub-list for extension extendee - 0, // [0:34] is the sub-list for field type_name + 41, // 7: InternalApi.ServerFarm.Job.ListRequest.finished_at_gt:type_name -> google.protobuf.Timestamp + 41, // 8: InternalApi.ServerFarm.Job.ListRequest.finished_at_gte:type_name -> google.protobuf.Timestamp + 41, // 9: InternalApi.ServerFarm.Job.ListRequest.created_at_gte:type_name -> google.protobuf.Timestamp + 41, // 10: InternalApi.ServerFarm.Job.ListRequest.created_at_lte:type_name -> google.protobuf.Timestamp + 40, // 11: InternalApi.ServerFarm.Job.ListResponse.status:type_name -> InternalApi.ResponseStatus + 7, // 12: InternalApi.ServerFarm.Job.ListResponse.jobs:type_name -> InternalApi.ServerFarm.Job.Job + 4, // 13: InternalApi.ServerFarm.Job.ListDebugSessionsRequest.order:type_name -> InternalApi.ServerFarm.Job.ListDebugSessionsRequest.Order + 1, // 14: InternalApi.ServerFarm.Job.ListDebugSessionsRequest.debug_session_states:type_name -> InternalApi.ServerFarm.Job.Job.State + 0, // 15: InternalApi.ServerFarm.Job.ListDebugSessionsRequest.types:type_name -> InternalApi.ServerFarm.Job.DebugSessionType + 40, // 16: InternalApi.ServerFarm.Job.ListDebugSessionsResponse.status:type_name -> InternalApi.ResponseStatus + 13, // 17: InternalApi.ServerFarm.Job.ListDebugSessionsResponse.debug_sessions:type_name -> InternalApi.ServerFarm.Job.DebugSession + 7, // 18: InternalApi.ServerFarm.Job.DebugSession.debug_session:type_name -> InternalApi.ServerFarm.Job.Job + 0, // 19: InternalApi.ServerFarm.Job.DebugSession.type:type_name -> InternalApi.ServerFarm.Job.DebugSessionType + 7, // 20: InternalApi.ServerFarm.Job.DebugSession.debugged_job:type_name -> InternalApi.ServerFarm.Job.Job + 1, // 21: InternalApi.ServerFarm.Job.CountRequest.job_states:type_name -> InternalApi.ServerFarm.Job.Job.State + 41, // 22: InternalApi.ServerFarm.Job.CountRequest.finished_at_gte:type_name -> google.protobuf.Timestamp + 41, // 23: InternalApi.ServerFarm.Job.CountRequest.finished_at_lte:type_name -> google.protobuf.Timestamp + 40, // 24: InternalApi.ServerFarm.Job.CountResponse.status:type_name -> InternalApi.ResponseStatus + 1, // 25: InternalApi.ServerFarm.Job.CountByStateRequest.states:type_name -> InternalApi.ServerFarm.Job.Job.State + 32, // 26: InternalApi.ServerFarm.Job.CountByStateResponse.counts:type_name -> InternalApi.ServerFarm.Job.CountByStateResponse.CountByState + 5, // 27: InternalApi.ServerFarm.Job.TotalExecutionTimeRequest.interval:type_name -> InternalApi.ServerFarm.Job.TotalExecutionTimeRequest.Interval + 40, // 28: InternalApi.ServerFarm.Job.StopResponse.status:type_name -> InternalApi.ResponseStatus + 30, // 29: InternalApi.ServerFarm.Job.CreateRequest.job_spec:type_name -> InternalApi.ServerFarm.Job.JobSpec + 40, // 30: InternalApi.ServerFarm.Job.CreateResponse.status:type_name -> InternalApi.ResponseStatus + 7, // 31: InternalApi.ServerFarm.Job.CreateResponse.job:type_name -> InternalApi.ServerFarm.Job.Job + 33, // 32: InternalApi.ServerFarm.Job.JobSpec.agent:type_name -> InternalApi.ServerFarm.Job.JobSpec.Agent + 34, // 33: InternalApi.ServerFarm.Job.JobSpec.secrets:type_name -> InternalApi.ServerFarm.Job.JobSpec.Secret + 35, // 34: InternalApi.ServerFarm.Job.JobSpec.env_vars:type_name -> InternalApi.ServerFarm.Job.JobSpec.EnvVar + 36, // 35: InternalApi.ServerFarm.Job.JobSpec.files:type_name -> InternalApi.ServerFarm.Job.JobSpec.File + 41, // 36: InternalApi.ServerFarm.Job.Job.Timeline.created_at:type_name -> google.protobuf.Timestamp + 41, // 37: InternalApi.ServerFarm.Job.Job.Timeline.enqueued_at:type_name -> google.protobuf.Timestamp + 41, // 38: InternalApi.ServerFarm.Job.Job.Timeline.started_at:type_name -> google.protobuf.Timestamp + 41, // 39: InternalApi.ServerFarm.Job.Job.Timeline.finished_at:type_name -> google.protobuf.Timestamp + 41, // 40: InternalApi.ServerFarm.Job.Job.Timeline.execution_started_at:type_name -> google.protobuf.Timestamp + 41, // 41: InternalApi.ServerFarm.Job.Job.Timeline.execution_finished_at:type_name -> google.protobuf.Timestamp + 1, // 42: InternalApi.ServerFarm.Job.CountByStateResponse.CountByState.state:type_name -> InternalApi.ServerFarm.Job.Job.State + 37, // 43: InternalApi.ServerFarm.Job.JobSpec.Agent.machine:type_name -> InternalApi.ServerFarm.Job.JobSpec.Agent.Machine + 38, // 44: InternalApi.ServerFarm.Job.JobSpec.Agent.containers:type_name -> InternalApi.ServerFarm.Job.JobSpec.Agent.Container + 39, // 45: InternalApi.ServerFarm.Job.JobSpec.Agent.image_pull_secrets:type_name -> InternalApi.ServerFarm.Job.JobSpec.Agent.ImagePullSecret + 35, // 46: InternalApi.ServerFarm.Job.JobSpec.Agent.Container.env_vars:type_name -> InternalApi.ServerFarm.Job.JobSpec.EnvVar + 34, // 47: InternalApi.ServerFarm.Job.JobSpec.Agent.Container.secrets:type_name -> InternalApi.ServerFarm.Job.JobSpec.Secret + 6, // 48: InternalApi.ServerFarm.Job.JobService.Describe:input_type -> InternalApi.ServerFarm.Job.DescribeRequest + 9, // 49: InternalApi.ServerFarm.Job.JobService.List:input_type -> InternalApi.ServerFarm.Job.ListRequest + 11, // 50: InternalApi.ServerFarm.Job.JobService.ListDebugSessions:input_type -> InternalApi.ServerFarm.Job.ListDebugSessionsRequest + 14, // 51: InternalApi.ServerFarm.Job.JobService.Count:input_type -> InternalApi.ServerFarm.Job.CountRequest + 16, // 52: InternalApi.ServerFarm.Job.JobService.CountByState:input_type -> InternalApi.ServerFarm.Job.CountByStateRequest + 20, // 53: InternalApi.ServerFarm.Job.JobService.Stop:input_type -> InternalApi.ServerFarm.Job.StopRequest + 18, // 54: InternalApi.ServerFarm.Job.JobService.TotalExecutionTime:input_type -> InternalApi.ServerFarm.Job.TotalExecutionTimeRequest + 22, // 55: InternalApi.ServerFarm.Job.JobService.GetAgentPayload:input_type -> InternalApi.ServerFarm.Job.GetAgentPayloadRequest + 24, // 56: InternalApi.ServerFarm.Job.JobService.CanDebug:input_type -> InternalApi.ServerFarm.Job.CanDebugRequest + 26, // 57: InternalApi.ServerFarm.Job.JobService.CanAttach:input_type -> InternalApi.ServerFarm.Job.CanAttachRequest + 28, // 58: InternalApi.ServerFarm.Job.JobService.Create:input_type -> InternalApi.ServerFarm.Job.CreateRequest + 8, // 59: InternalApi.ServerFarm.Job.JobService.Describe:output_type -> InternalApi.ServerFarm.Job.DescribeResponse + 10, // 60: InternalApi.ServerFarm.Job.JobService.List:output_type -> InternalApi.ServerFarm.Job.ListResponse + 12, // 61: InternalApi.ServerFarm.Job.JobService.ListDebugSessions:output_type -> InternalApi.ServerFarm.Job.ListDebugSessionsResponse + 15, // 62: InternalApi.ServerFarm.Job.JobService.Count:output_type -> InternalApi.ServerFarm.Job.CountResponse + 17, // 63: InternalApi.ServerFarm.Job.JobService.CountByState:output_type -> InternalApi.ServerFarm.Job.CountByStateResponse + 21, // 64: InternalApi.ServerFarm.Job.JobService.Stop:output_type -> InternalApi.ServerFarm.Job.StopResponse + 19, // 65: InternalApi.ServerFarm.Job.JobService.TotalExecutionTime:output_type -> InternalApi.ServerFarm.Job.TotalExecutionTimeResponse + 23, // 66: InternalApi.ServerFarm.Job.JobService.GetAgentPayload:output_type -> InternalApi.ServerFarm.Job.GetAgentPayloadResponse + 25, // 67: InternalApi.ServerFarm.Job.JobService.CanDebug:output_type -> InternalApi.ServerFarm.Job.CanDebugResponse + 27, // 68: InternalApi.ServerFarm.Job.JobService.CanAttach:output_type -> InternalApi.ServerFarm.Job.CanAttachResponse + 29, // 69: InternalApi.ServerFarm.Job.JobService.Create:output_type -> InternalApi.ServerFarm.Job.CreateResponse + 59, // [59:70] is the sub-list for method output_type + 48, // [48:59] is the sub-list for method input_type + 48, // [48:48] is the sub-list for extension type_name + 48, // [48:48] is the sub-list for extension extendee + 0, // [0:48] is the sub-list for field type_name } func init() { file_server_farm_job_proto_init() } @@ -2860,7 +3763,7 @@ func file_server_farm_job_proto_init() { } } file_server_farm_job_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*Job_Timeline); i { + switch v := v.(*CreateRequest); i { case 0: return &v.state case 1: @@ -2872,6 +3775,42 @@ func file_server_farm_job_proto_init() { } } file_server_farm_job_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} { + switch v := v.(*CreateResponse); i { + case 0: + return &v.state + case 1: + return &v.sizeCache + case 2: + return &v.unknownFields + default: + return nil + } + } + file_server_farm_job_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} { + switch v := v.(*JobSpec); i { + case 0: + return &v.state + case 1: + return &v.sizeCache + case 2: + return &v.unknownFields + default: + return nil + } + } + file_server_farm_job_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} { + switch v := v.(*Job_Timeline); i { + case 0: + return &v.state + case 1: + return &v.sizeCache + case 2: + return &v.unknownFields + default: + return nil + } + } + file_server_farm_job_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CountByStateResponse_CountByState); i { case 0: return &v.state @@ -2883,6 +3822,90 @@ func file_server_farm_job_proto_init() { return nil } } + file_server_farm_job_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} { + switch v := v.(*JobSpec_Agent); i { + case 0: + return &v.state + case 1: + return &v.sizeCache + case 2: + return &v.unknownFields + default: + return nil + } + } + file_server_farm_job_proto_msgTypes[28].Exporter = func(v interface{}, i int) interface{} { + switch v := v.(*JobSpec_Secret); i { + case 0: + return &v.state + case 1: + return &v.sizeCache + case 2: + return &v.unknownFields + default: + return nil + } + } + file_server_farm_job_proto_msgTypes[29].Exporter = func(v interface{}, i int) interface{} { + switch v := v.(*JobSpec_EnvVar); i { + case 0: + return &v.state + case 1: + return &v.sizeCache + case 2: + return &v.unknownFields + default: + return nil + } + } + file_server_farm_job_proto_msgTypes[30].Exporter = func(v interface{}, i int) interface{} { + switch v := v.(*JobSpec_File); i { + case 0: + return &v.state + case 1: + return &v.sizeCache + case 2: + return &v.unknownFields + default: + return nil + } + } + file_server_farm_job_proto_msgTypes[31].Exporter = func(v interface{}, i int) interface{} { + switch v := v.(*JobSpec_Agent_Machine); i { + case 0: + return &v.state + case 1: + return &v.sizeCache + case 2: + return &v.unknownFields + default: + return nil + } + } + file_server_farm_job_proto_msgTypes[32].Exporter = func(v interface{}, i int) interface{} { + switch v := v.(*JobSpec_Agent_Container); i { + case 0: + return &v.state + case 1: + return &v.sizeCache + case 2: + return &v.unknownFields + default: + return nil + } + } + file_server_farm_job_proto_msgTypes[33].Exporter = func(v interface{}, i int) interface{} { + switch v := v.(*JobSpec_Agent_ImagePullSecret); i { + case 0: + return &v.state + case 1: + return &v.sizeCache + case 2: + return &v.unknownFields + default: + return nil + } + } } type x struct{} out := protoimpl.TypeBuilder{ @@ -2890,7 +3913,7 @@ func file_server_farm_job_proto_init() { GoPackagePath: reflect.TypeOf(x{}).PkgPath(), RawDescriptor: file_server_farm_job_proto_rawDesc, NumEnums: 6, - NumMessages: 24, + NumMessages: 34, NumExtensions: 0, NumServices: 1, }, diff --git a/ee/velocity/pkg/protos/server_farm.job/server_farm.job_grpc.pb.go b/ee/velocity/pkg/protos/server_farm.job/server_farm.job_grpc.pb.go index dd938a554..bb3d84473 100644 --- a/ee/velocity/pkg/protos/server_farm.job/server_farm.job_grpc.pb.go +++ b/ee/velocity/pkg/protos/server_farm.job/server_farm.job_grpc.pb.go @@ -29,6 +29,7 @@ const ( JobService_GetAgentPayload_FullMethodName = "/InternalApi.ServerFarm.Job.JobService/GetAgentPayload" JobService_CanDebug_FullMethodName = "/InternalApi.ServerFarm.Job.JobService/CanDebug" JobService_CanAttach_FullMethodName = "/InternalApi.ServerFarm.Job.JobService/CanAttach" + JobService_Create_FullMethodName = "/InternalApi.ServerFarm.Job.JobService/Create" ) // JobServiceClient is the client API for JobService service. @@ -71,6 +72,8 @@ type JobServiceClient interface { CanDebug(ctx context.Context, in *CanDebugRequest, opts ...grpc.CallOption) (*CanDebugResponse, error) // Returns information if a user can attach a job. CanAttach(ctx context.Context, in *CanAttachRequest, opts ...grpc.CallOption) (*CanAttachResponse, error) + // Create a new job based on the given job spec. + Create(ctx context.Context, in *CreateRequest, opts ...grpc.CallOption) (*CreateResponse, error) } type jobServiceClient struct { @@ -171,6 +174,15 @@ func (c *jobServiceClient) CanAttach(ctx context.Context, in *CanAttachRequest, return out, nil } +func (c *jobServiceClient) Create(ctx context.Context, in *CreateRequest, opts ...grpc.CallOption) (*CreateResponse, error) { + out := new(CreateResponse) + err := c.cc.Invoke(ctx, JobService_Create_FullMethodName, in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + // JobServiceServer is the server API for JobService service. // All implementations should embed UnimplementedJobServiceServer // for forward compatibility @@ -211,6 +223,8 @@ type JobServiceServer interface { CanDebug(context.Context, *CanDebugRequest) (*CanDebugResponse, error) // Returns information if a user can attach a job. CanAttach(context.Context, *CanAttachRequest) (*CanAttachResponse, error) + // Create a new job based on the given job spec. + Create(context.Context, *CreateRequest) (*CreateResponse, error) } // UnimplementedJobServiceServer should be embedded to have forward compatible implementations. @@ -247,6 +261,9 @@ func (UnimplementedJobServiceServer) CanDebug(context.Context, *CanDebugRequest) func (UnimplementedJobServiceServer) CanAttach(context.Context, *CanAttachRequest) (*CanAttachResponse, error) { return nil, status.Errorf(codes.Unimplemented, "method CanAttach not implemented") } +func (UnimplementedJobServiceServer) Create(context.Context, *CreateRequest) (*CreateResponse, error) { + return nil, status.Errorf(codes.Unimplemented, "method Create not implemented") +} // UnsafeJobServiceServer may be embedded to opt out of forward compatibility for this service. // Use of this interface is not recommended, as added methods to JobServiceServer will @@ -439,6 +456,24 @@ func _JobService_CanAttach_Handler(srv interface{}, ctx context.Context, dec fun return interceptor(ctx, in, info, handler) } +func _JobService_Create_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(CreateRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(JobServiceServer).Create(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: JobService_Create_FullMethodName, + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(JobServiceServer).Create(ctx, req.(*CreateRequest)) + } + return interceptor(ctx, in, info, handler) +} + // JobService_ServiceDesc is the grpc.ServiceDesc for JobService service. // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) @@ -486,6 +521,10 @@ var JobService_ServiceDesc = grpc.ServiceDesc{ MethodName: "CanAttach", Handler: _JobService_CanAttach_Handler, }, + { + MethodName: "Create", + Handler: _JobService_Create_Handler, + }, }, Streams: []grpc.StreamDesc{}, Metadata: "server_farm.job.proto", diff --git a/ee/velocity/pkg/protos/server_farm.mq.job_state_exchange/server_farm.mq.job_state_exchange.pb.go b/ee/velocity/pkg/protos/server_farm.mq.job_state_exchange/server_farm.mq.job_state_exchange.pb.go index 9058ff261..9b39e8e51 100644 --- a/ee/velocity/pkg/protos/server_farm.mq.job_state_exchange/server_farm.mq.job_state_exchange.pb.go +++ b/ee/velocity/pkg/protos/server_farm.mq.job_state_exchange/server_farm.mq.job_state_exchange.pb.go @@ -198,12 +198,13 @@ var file_server_farm_mq_job_state_exchange_proto_rawDesc = []byte{ 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x09, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x12, 0x1f, 0x0a, 0x0b, 0x73, 0x65, 0x6c, 0x66, 0x5f, 0x68, 0x6f, 0x73, 0x74, 0x65, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0a, 0x73, 0x65, 0x6c, 0x66, 0x48, 0x6f, 0x73, 0x74, 0x65, - 0x64, 0x42, 0x4f, 0x5a, 0x4d, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, - 0x72, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x65, 0x64, 0x74, 0x65, 0x78, 0x74, 0x2f, 0x76, 0x65, 0x6c, - 0x6f, 0x63, 0x69, 0x74, 0x79, 0x2f, 0x70, 0x6b, 0x67, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x73, - 0x2f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x66, 0x61, 0x72, 0x6d, 0x2e, 0x6d, 0x71, 0x2e, - 0x6a, 0x6f, 0x62, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x65, 0x5f, 0x65, 0x78, 0x63, 0x68, 0x61, 0x6e, - 0x67, 0x65, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, + 0x64, 0x42, 0x58, 0x5a, 0x56, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, + 0x73, 0x65, 0x6d, 0x61, 0x70, 0x68, 0x6f, 0x72, 0x65, 0x69, 0x6f, 0x2f, 0x73, 0x65, 0x6d, 0x61, + 0x70, 0x68, 0x6f, 0x72, 0x65, 0x2f, 0x76, 0x65, 0x6c, 0x6f, 0x63, 0x69, 0x74, 0x79, 0x2f, 0x70, + 0x6b, 0x67, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x73, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, + 0x5f, 0x66, 0x61, 0x72, 0x6d, 0x2e, 0x6d, 0x71, 0x2e, 0x6a, 0x6f, 0x62, 0x5f, 0x73, 0x74, 0x61, + 0x74, 0x65, 0x5f, 0x65, 0x78, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x62, 0x06, 0x70, 0x72, 0x6f, + 0x74, 0x6f, 0x33, } var ( diff --git a/ee/velocity/pkg/protos/status/status.pb.go b/ee/velocity/pkg/protos/status/status.pb.go index b698486e3..7f3b95c27 100644 --- a/ee/velocity/pkg/protos/status/status.pb.go +++ b/ee/velocity/pkg/protos/status/status.pb.go @@ -100,10 +100,11 @@ var file_include_internal_api_status_proto_rawDesc = []byte{ 0x10, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x72, 0x70, 0x63, 0x2e, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, - 0x65, 0x42, 0x34, 0x5a, 0x32, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, - 0x72, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x65, 0x64, 0x74, 0x65, 0x78, 0x74, 0x2f, 0x76, 0x65, 0x6c, - 0x6f, 0x63, 0x69, 0x74, 0x79, 0x2f, 0x70, 0x6b, 0x67, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x73, - 0x2f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, + 0x65, 0x42, 0x3d, 0x5a, 0x3b, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, + 0x73, 0x65, 0x6d, 0x61, 0x70, 0x68, 0x6f, 0x72, 0x65, 0x69, 0x6f, 0x2f, 0x73, 0x65, 0x6d, 0x61, + 0x70, 0x68, 0x6f, 0x72, 0x65, 0x2f, 0x76, 0x65, 0x6c, 0x6f, 0x63, 0x69, 0x74, 0x79, 0x2f, 0x70, + 0x6b, 0x67, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x73, 0x2f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, + 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( diff --git a/ee/velocity/pkg/protos/user/user.pb.go b/ee/velocity/pkg/protos/user/user.pb.go index faf869fda..3d3b0f4fc 100644 --- a/ee/velocity/pkg/protos/user/user.pb.go +++ b/ee/velocity/pkg/protos/user/user.pb.go @@ -666,14 +666,15 @@ func (x *DescribeRequest) GetUserId() string { // - created_at = [required] date of creation a user. // - avatar_url = [required] url to user avatar. // - user_id = [required] UUID of the user. -// - github_token = [required] GitHub token of a user - use RepositoryScopes instead. -// - github_scope = [deprecated] GitHub access scope - use RepositoryScopes instead. -// - github_uid = [deprecated] GitHub uid of a user - use RepositoryScopes instead. +// - github_token = [required] GitHub token of a user - use repository_providers instead. +// - github_scope = [deprecated] GitHub access scope - use repository_providers instead. +// - github_uid = [deprecated] GitHub uid of a user - use repository_providers instead. // - name = [required] User's name used for presentation purposes. -// - github_login = [deprecated] GitHub login of a user - use RepositoryScopes instead. +// - github_login = [deprecated] GitHub login of a user - use repository_providers instead. // - company = [required] The company associated with the user. // - blocked_at = [required] the timestamp of user blocking -// - repository_scopes = [required] List of repository scopes availabe for user +// - repository_scopes = [deprecated] List of repository scopes availabe for user - use repository_providers instead. +// - repository_providers = [required] List of repository providers availabe for user type DescribeResponse struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -1340,120 +1341,6 @@ func (x *RegenerateTokenResponse) GetApiToken() string { return "" } -// Referer call request -// -// - user_id = [required] The user id -type RefererRequest struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - UserId string `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"` -} - -func (x *RefererRequest) Reset() { - *x = RefererRequest{} - if protoimpl.UnsafeEnabled { - mi := &file_user_proto_msgTypes[16] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *RefererRequest) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*RefererRequest) ProtoMessage() {} - -func (x *RefererRequest) ProtoReflect() protoreflect.Message { - mi := &file_user_proto_msgTypes[16] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use RefererRequest.ProtoReflect.Descriptor instead. -func (*RefererRequest) Descriptor() ([]byte, []int) { - return file_user_proto_rawDescGZIP(), []int{16} -} - -func (x *RefererRequest) GetUserId() string { - if x != nil { - return x.UserId - } - return "" -} - -// Referer call response -type RefererResponse struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - UserId string `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"` - EntryUrl string `protobuf:"bytes,2,opt,name=entry_url,json=entryUrl,proto3" json:"entry_url,omitempty"` - HttpReferer string `protobuf:"bytes,3,opt,name=http_referer,json=httpReferer,proto3" json:"http_referer,omitempty"` -} - -func (x *RefererResponse) Reset() { - *x = RefererResponse{} - if protoimpl.UnsafeEnabled { - mi := &file_user_proto_msgTypes[17] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *RefererResponse) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*RefererResponse) ProtoMessage() {} - -func (x *RefererResponse) ProtoReflect() protoreflect.Message { - mi := &file_user_proto_msgTypes[17] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use RefererResponse.ProtoReflect.Descriptor instead. -func (*RefererResponse) Descriptor() ([]byte, []int) { - return file_user_proto_rawDescGZIP(), []int{17} -} - -func (x *RefererResponse) GetUserId() string { - if x != nil { - return x.UserId - } - return "" -} - -func (x *RefererResponse) GetEntryUrl() string { - if x != nil { - return x.EntryUrl - } - return "" -} - -func (x *RefererResponse) GetHttpReferer() string { - if x != nil { - return x.HttpReferer - } - return "" -} - // CheckGithubToken call request type CheckGithubTokenRequest struct { state protoimpl.MessageState @@ -1466,7 +1353,7 @@ type CheckGithubTokenRequest struct { func (x *CheckGithubTokenRequest) Reset() { *x = CheckGithubTokenRequest{} if protoimpl.UnsafeEnabled { - mi := &file_user_proto_msgTypes[18] + mi := &file_user_proto_msgTypes[16] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1479,7 +1366,7 @@ func (x *CheckGithubTokenRequest) String() string { func (*CheckGithubTokenRequest) ProtoMessage() {} func (x *CheckGithubTokenRequest) ProtoReflect() protoreflect.Message { - mi := &file_user_proto_msgTypes[18] + mi := &file_user_proto_msgTypes[16] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1492,7 +1379,7 @@ func (x *CheckGithubTokenRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use CheckGithubTokenRequest.ProtoReflect.Descriptor instead. func (*CheckGithubTokenRequest) Descriptor() ([]byte, []int) { - return file_user_proto_rawDescGZIP(), []int{18} + return file_user_proto_rawDescGZIP(), []int{16} } func (x *CheckGithubTokenRequest) GetUserId() string { @@ -1521,7 +1408,7 @@ type CheckGithubTokenResponse struct { func (x *CheckGithubTokenResponse) Reset() { *x = CheckGithubTokenResponse{} if protoimpl.UnsafeEnabled { - mi := &file_user_proto_msgTypes[19] + mi := &file_user_proto_msgTypes[17] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1534,7 +1421,7 @@ func (x *CheckGithubTokenResponse) String() string { func (*CheckGithubTokenResponse) ProtoMessage() {} func (x *CheckGithubTokenResponse) ProtoReflect() protoreflect.Message { - mi := &file_user_proto_msgTypes[19] + mi := &file_user_proto_msgTypes[17] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1547,7 +1434,7 @@ func (x *CheckGithubTokenResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use CheckGithubTokenResponse.ProtoReflect.Descriptor instead. func (*CheckGithubTokenResponse) Descriptor() ([]byte, []int) { - return file_user_proto_rawDescGZIP(), []int{19} + return file_user_proto_rawDescGZIP(), []int{17} } func (x *CheckGithubTokenResponse) GetRevoked() bool { @@ -1583,7 +1470,7 @@ type BlockAccountRequest struct { func (x *BlockAccountRequest) Reset() { *x = BlockAccountRequest{} if protoimpl.UnsafeEnabled { - mi := &file_user_proto_msgTypes[20] + mi := &file_user_proto_msgTypes[18] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1596,7 +1483,7 @@ func (x *BlockAccountRequest) String() string { func (*BlockAccountRequest) ProtoMessage() {} func (x *BlockAccountRequest) ProtoReflect() protoreflect.Message { - mi := &file_user_proto_msgTypes[20] + mi := &file_user_proto_msgTypes[18] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1609,7 +1496,7 @@ func (x *BlockAccountRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use BlockAccountRequest.ProtoReflect.Descriptor instead. func (*BlockAccountRequest) Descriptor() ([]byte, []int) { - return file_user_proto_rawDescGZIP(), []int{20} + return file_user_proto_rawDescGZIP(), []int{18} } func (x *BlockAccountRequest) GetUserId() string { @@ -1631,7 +1518,7 @@ type UnblockAccountRequest struct { func (x *UnblockAccountRequest) Reset() { *x = UnblockAccountRequest{} if protoimpl.UnsafeEnabled { - mi := &file_user_proto_msgTypes[21] + mi := &file_user_proto_msgTypes[19] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1644,7 +1531,7 @@ func (x *UnblockAccountRequest) String() string { func (*UnblockAccountRequest) ProtoMessage() {} func (x *UnblockAccountRequest) ProtoReflect() protoreflect.Message { - mi := &file_user_proto_msgTypes[21] + mi := &file_user_proto_msgTypes[19] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1657,7 +1544,7 @@ func (x *UnblockAccountRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use UnblockAccountRequest.ProtoReflect.Descriptor instead. func (*UnblockAccountRequest) Descriptor() ([]byte, []int) { - return file_user_proto_rawDescGZIP(), []int{21} + return file_user_proto_rawDescGZIP(), []int{19} } func (x *UnblockAccountRequest) GetUserId() string { @@ -1679,7 +1566,7 @@ type GetRepositoryTokenRequest struct { func (x *GetRepositoryTokenRequest) Reset() { *x = GetRepositoryTokenRequest{} if protoimpl.UnsafeEnabled { - mi := &file_user_proto_msgTypes[22] + mi := &file_user_proto_msgTypes[20] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1692,7 +1579,7 @@ func (x *GetRepositoryTokenRequest) String() string { func (*GetRepositoryTokenRequest) ProtoMessage() {} func (x *GetRepositoryTokenRequest) ProtoReflect() protoreflect.Message { - mi := &file_user_proto_msgTypes[22] + mi := &file_user_proto_msgTypes[20] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1705,7 +1592,7 @@ func (x *GetRepositoryTokenRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetRepositoryTokenRequest.ProtoReflect.Descriptor instead. func (*GetRepositoryTokenRequest) Descriptor() ([]byte, []int) { - return file_user_proto_rawDescGZIP(), []int{22} + return file_user_proto_rawDescGZIP(), []int{20} } func (x *GetRepositoryTokenRequest) GetUserId() string { @@ -1734,7 +1621,7 @@ type GetRepositoryTokenResponse struct { func (x *GetRepositoryTokenResponse) Reset() { *x = GetRepositoryTokenResponse{} if protoimpl.UnsafeEnabled { - mi := &file_user_proto_msgTypes[23] + mi := &file_user_proto_msgTypes[21] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1747,7 +1634,7 @@ func (x *GetRepositoryTokenResponse) String() string { func (*GetRepositoryTokenResponse) ProtoMessage() {} func (x *GetRepositoryTokenResponse) ProtoReflect() protoreflect.Message { - mi := &file_user_proto_msgTypes[23] + mi := &file_user_proto_msgTypes[21] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1760,7 +1647,7 @@ func (x *GetRepositoryTokenResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use GetRepositoryTokenResponse.ProtoReflect.Descriptor instead. func (*GetRepositoryTokenResponse) Descriptor() ([]byte, []int) { - return file_user_proto_rawDescGZIP(), []int{23} + return file_user_proto_rawDescGZIP(), []int{21} } func (x *GetRepositoryTokenResponse) GetToken() string { @@ -1788,7 +1675,7 @@ type DescribeByRepositoryProviderRequest struct { func (x *DescribeByRepositoryProviderRequest) Reset() { *x = DescribeByRepositoryProviderRequest{} if protoimpl.UnsafeEnabled { - mi := &file_user_proto_msgTypes[24] + mi := &file_user_proto_msgTypes[22] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1801,7 +1688,7 @@ func (x *DescribeByRepositoryProviderRequest) String() string { func (*DescribeByRepositoryProviderRequest) ProtoMessage() {} func (x *DescribeByRepositoryProviderRequest) ProtoReflect() protoreflect.Message { - mi := &file_user_proto_msgTypes[24] + mi := &file_user_proto_msgTypes[22] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1814,7 +1701,7 @@ func (x *DescribeByRepositoryProviderRequest) ProtoReflect() protoreflect.Messag // Deprecated: Use DescribeByRepositoryProviderRequest.ProtoReflect.Descriptor instead. func (*DescribeByRepositoryProviderRequest) Descriptor() ([]byte, []int) { - return file_user_proto_rawDescGZIP(), []int{24} + return file_user_proto_rawDescGZIP(), []int{22} } func (x *DescribeByRepositoryProviderRequest) GetProvider() *RepositoryProvider { @@ -1824,6 +1711,53 @@ func (x *DescribeByRepositoryProviderRequest) GetProvider() *RepositoryProvider return nil } +type DescribeByEmailRequest struct { + state protoimpl.MessageState + sizeCache protoimpl.SizeCache + unknownFields protoimpl.UnknownFields + + Email string `protobuf:"bytes,1,opt,name=email,proto3" json:"email,omitempty"` +} + +func (x *DescribeByEmailRequest) Reset() { + *x = DescribeByEmailRequest{} + if protoimpl.UnsafeEnabled { + mi := &file_user_proto_msgTypes[23] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) + } +} + +func (x *DescribeByEmailRequest) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*DescribeByEmailRequest) ProtoMessage() {} + +func (x *DescribeByEmailRequest) ProtoReflect() protoreflect.Message { + mi := &file_user_proto_msgTypes[23] + if protoimpl.UnsafeEnabled && x != nil { + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + if ms.LoadMessageInfo() == nil { + ms.StoreMessageInfo(mi) + } + return ms + } + return mi.MessageOf(x) +} + +// Deprecated: Use DescribeByEmailRequest.ProtoReflect.Descriptor instead. +func (*DescribeByEmailRequest) Descriptor() ([]byte, []int) { + return file_user_proto_rawDescGZIP(), []int{23} +} + +func (x *DescribeByEmailRequest) GetEmail() string { + if x != nil { + return x.Email + } + return "" +} + type RefreshRepositoryProviderRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -1836,7 +1770,7 @@ type RefreshRepositoryProviderRequest struct { func (x *RefreshRepositoryProviderRequest) Reset() { *x = RefreshRepositoryProviderRequest{} if protoimpl.UnsafeEnabled { - mi := &file_user_proto_msgTypes[25] + mi := &file_user_proto_msgTypes[24] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1849,7 +1783,7 @@ func (x *RefreshRepositoryProviderRequest) String() string { func (*RefreshRepositoryProviderRequest) ProtoMessage() {} func (x *RefreshRepositoryProviderRequest) ProtoReflect() protoreflect.Message { - mi := &file_user_proto_msgTypes[25] + mi := &file_user_proto_msgTypes[24] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1862,7 +1796,7 @@ func (x *RefreshRepositoryProviderRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use RefreshRepositoryProviderRequest.ProtoReflect.Descriptor instead. func (*RefreshRepositoryProviderRequest) Descriptor() ([]byte, []int) { - return file_user_proto_rawDescGZIP(), []int{25} + return file_user_proto_rawDescGZIP(), []int{24} } func (x *RefreshRepositoryProviderRequest) GetUserId() string { @@ -1891,7 +1825,7 @@ type RefreshRepositoryProviderResponse struct { func (x *RefreshRepositoryProviderResponse) Reset() { *x = RefreshRepositoryProviderResponse{} if protoimpl.UnsafeEnabled { - mi := &file_user_proto_msgTypes[26] + mi := &file_user_proto_msgTypes[25] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1904,7 +1838,7 @@ func (x *RefreshRepositoryProviderResponse) String() string { func (*RefreshRepositoryProviderResponse) ProtoMessage() {} func (x *RefreshRepositoryProviderResponse) ProtoReflect() protoreflect.Message { - mi := &file_user_proto_msgTypes[26] + mi := &file_user_proto_msgTypes[25] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1917,7 +1851,7 @@ func (x *RefreshRepositoryProviderResponse) ProtoReflect() protoreflect.Message // Deprecated: Use RefreshRepositoryProviderResponse.ProtoReflect.Descriptor instead. func (*RefreshRepositoryProviderResponse) Descriptor() ([]byte, []int) { - return file_user_proto_rawDescGZIP(), []int{26} + return file_user_proto_rawDescGZIP(), []int{25} } func (x *RefreshRepositoryProviderResponse) GetUserId() string { @@ -1934,6 +1868,92 @@ func (x *RefreshRepositoryProviderResponse) GetRepositoryProvider() *RepositoryP return nil } +// Create call CreateRequest +// fields +// - email = [required] The user's email address +// - name = [required] The user's display name +// - password = [optional] The user's password +// - repository_providers = [optional] List of repository providers for the user - will be always created with email scope +// - skip_password_change = [optional] The user will not be asked to change the password on the first login. Default is false. +type CreateRequest struct { + state protoimpl.MessageState + sizeCache protoimpl.SizeCache + unknownFields protoimpl.UnknownFields + + Email string `protobuf:"bytes,1,opt,name=email,proto3" json:"email,omitempty"` + Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"` + Password string `protobuf:"bytes,3,opt,name=password,proto3" json:"password,omitempty"` + RepositoryProviders []*RepositoryProvider `protobuf:"bytes,4,rep,name=repository_providers,json=repositoryProviders,proto3" json:"repository_providers,omitempty"` + SkipPasswordChange bool `protobuf:"varint,5,opt,name=skip_password_change,json=skipPasswordChange,proto3" json:"skip_password_change,omitempty"` +} + +func (x *CreateRequest) Reset() { + *x = CreateRequest{} + if protoimpl.UnsafeEnabled { + mi := &file_user_proto_msgTypes[26] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) + } +} + +func (x *CreateRequest) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*CreateRequest) ProtoMessage() {} + +func (x *CreateRequest) ProtoReflect() protoreflect.Message { + mi := &file_user_proto_msgTypes[26] + if protoimpl.UnsafeEnabled && x != nil { + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + if ms.LoadMessageInfo() == nil { + ms.StoreMessageInfo(mi) + } + return ms + } + return mi.MessageOf(x) +} + +// Deprecated: Use CreateRequest.ProtoReflect.Descriptor instead. +func (*CreateRequest) Descriptor() ([]byte, []int) { + return file_user_proto_rawDescGZIP(), []int{26} +} + +func (x *CreateRequest) GetEmail() string { + if x != nil { + return x.Email + } + return "" +} + +func (x *CreateRequest) GetName() string { + if x != nil { + return x.Name + } + return "" +} + +func (x *CreateRequest) GetPassword() string { + if x != nil { + return x.Password + } + return "" +} + +func (x *CreateRequest) GetRepositoryProviders() []*RepositoryProvider { + if x != nil { + return x.RepositoryProviders + } + return nil +} + +func (x *CreateRequest) GetSkipPasswordChange() bool { + if x != nil { + return x.SkipPasswordChange + } + return false +} + // - id = user UUID // - avatar_url = Url to user avatar. // - github_uid = GitHub uid of a user. @@ -2284,69 +2304,6 @@ func (x *UserUpdated) GetTimestamp() *timestamp.Timestamp { return nil } -type UserRefererCreated struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - UserId string `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"` - EntryUrl string `protobuf:"bytes,2,opt,name=entry_url,json=entryUrl,proto3" json:"entry_url,omitempty"` - HttpReferer string `protobuf:"bytes,3,opt,name=http_referer,json=httpReferer,proto3" json:"http_referer,omitempty"` -} - -func (x *UserRefererCreated) Reset() { - *x = UserRefererCreated{} - if protoimpl.UnsafeEnabled { - mi := &file_user_proto_msgTypes[31] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *UserRefererCreated) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*UserRefererCreated) ProtoMessage() {} - -func (x *UserRefererCreated) ProtoReflect() protoreflect.Message { - mi := &file_user_proto_msgTypes[31] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use UserRefererCreated.ProtoReflect.Descriptor instead. -func (*UserRefererCreated) Descriptor() ([]byte, []int) { - return file_user_proto_rawDescGZIP(), []int{31} -} - -func (x *UserRefererCreated) GetUserId() string { - if x != nil { - return x.UserId - } - return "" -} - -func (x *UserRefererCreated) GetEntryUrl() string { - if x != nil { - return x.EntryUrl - } - return "" -} - -func (x *UserRefererCreated) GetHttpReferer() string { - if x != nil { - return x.HttpReferer - } - return "" -} - type UserJoinedOrganization struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -2360,7 +2317,7 @@ type UserJoinedOrganization struct { func (x *UserJoinedOrganization) Reset() { *x = UserJoinedOrganization{} if protoimpl.UnsafeEnabled { - mi := &file_user_proto_msgTypes[32] + mi := &file_user_proto_msgTypes[31] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2373,7 +2330,7 @@ func (x *UserJoinedOrganization) String() string { func (*UserJoinedOrganization) ProtoMessage() {} func (x *UserJoinedOrganization) ProtoReflect() protoreflect.Message { - mi := &file_user_proto_msgTypes[32] + mi := &file_user_proto_msgTypes[31] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2386,7 +2343,7 @@ func (x *UserJoinedOrganization) ProtoReflect() protoreflect.Message { // Deprecated: Use UserJoinedOrganization.ProtoReflect.Descriptor instead. func (*UserJoinedOrganization) Descriptor() ([]byte, []int) { - return file_user_proto_rawDescGZIP(), []int{32} + return file_user_proto_rawDescGZIP(), []int{31} } func (x *UserJoinedOrganization) GetUserId() string { @@ -2423,7 +2380,7 @@ type UserLeftOrganization struct { func (x *UserLeftOrganization) Reset() { *x = UserLeftOrganization{} if protoimpl.UnsafeEnabled { - mi := &file_user_proto_msgTypes[33] + mi := &file_user_proto_msgTypes[32] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2436,7 +2393,7 @@ func (x *UserLeftOrganization) String() string { func (*UserLeftOrganization) ProtoMessage() {} func (x *UserLeftOrganization) ProtoReflect() protoreflect.Message { - mi := &file_user_proto_msgTypes[33] + mi := &file_user_proto_msgTypes[32] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2449,7 +2406,7 @@ func (x *UserLeftOrganization) ProtoReflect() protoreflect.Message { // Deprecated: Use UserLeftOrganization.ProtoReflect.Descriptor instead. func (*UserLeftOrganization) Descriptor() ([]byte, []int) { - return file_user_proto_rawDescGZIP(), []int{33} + return file_user_proto_rawDescGZIP(), []int{32} } func (x *UserLeftOrganization) GetUserId() string { @@ -2486,7 +2443,7 @@ type MemberInvited struct { func (x *MemberInvited) Reset() { *x = MemberInvited{} if protoimpl.UnsafeEnabled { - mi := &file_user_proto_msgTypes[34] + mi := &file_user_proto_msgTypes[33] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2499,7 +2456,7 @@ func (x *MemberInvited) String() string { func (*MemberInvited) ProtoMessage() {} func (x *MemberInvited) ProtoReflect() protoreflect.Message { - mi := &file_user_proto_msgTypes[34] + mi := &file_user_proto_msgTypes[33] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2512,7 +2469,7 @@ func (x *MemberInvited) ProtoReflect() protoreflect.Message { // Deprecated: Use MemberInvited.ProtoReflect.Descriptor instead. func (*MemberInvited) Descriptor() ([]byte, []int) { - return file_user_proto_rawDescGZIP(), []int{34} + return file_user_proto_rawDescGZIP(), []int{33} } func (x *MemberInvited) GetGithubUsername() string { @@ -2552,7 +2509,7 @@ type ActiveOwner struct { func (x *ActiveOwner) Reset() { *x = ActiveOwner{} if protoimpl.UnsafeEnabled { - mi := &file_user_proto_msgTypes[35] + mi := &file_user_proto_msgTypes[34] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2565,7 +2522,7 @@ func (x *ActiveOwner) String() string { func (*ActiveOwner) ProtoMessage() {} func (x *ActiveOwner) ProtoReflect() protoreflect.Message { - mi := &file_user_proto_msgTypes[35] + mi := &file_user_proto_msgTypes[34] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2578,7 +2535,7 @@ func (x *ActiveOwner) ProtoReflect() protoreflect.Message { // Deprecated: Use ActiveOwner.ProtoReflect.Descriptor instead. func (*ActiveOwner) Descriptor() ([]byte, []int) { - return file_user_proto_rawDescGZIP(), []int{35} + return file_user_proto_rawDescGZIP(), []int{34} } func (x *ActiveOwner) GetUserId() string { @@ -2611,7 +2568,7 @@ type InactiveOwner struct { func (x *InactiveOwner) Reset() { *x = InactiveOwner{} if protoimpl.UnsafeEnabled { - mi := &file_user_proto_msgTypes[36] + mi := &file_user_proto_msgTypes[35] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2624,7 +2581,7 @@ func (x *InactiveOwner) String() string { func (*InactiveOwner) ProtoMessage() {} func (x *InactiveOwner) ProtoReflect() protoreflect.Message { - mi := &file_user_proto_msgTypes[36] + mi := &file_user_proto_msgTypes[35] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2637,7 +2594,7 @@ func (x *InactiveOwner) ProtoReflect() protoreflect.Message { // Deprecated: Use InactiveOwner.ProtoReflect.Descriptor instead. func (*InactiveOwner) Descriptor() ([]byte, []int) { - return file_user_proto_rawDescGZIP(), []int{36} + return file_user_proto_rawDescGZIP(), []int{35} } func (x *InactiveOwner) GetUserId() string { @@ -2670,7 +2627,7 @@ type WorkEmailAdded struct { func (x *WorkEmailAdded) Reset() { *x = WorkEmailAdded{} if protoimpl.UnsafeEnabled { - mi := &file_user_proto_msgTypes[37] + mi := &file_user_proto_msgTypes[36] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2683,7 +2640,7 @@ func (x *WorkEmailAdded) String() string { func (*WorkEmailAdded) ProtoMessage() {} func (x *WorkEmailAdded) ProtoReflect() protoreflect.Message { - mi := &file_user_proto_msgTypes[37] + mi := &file_user_proto_msgTypes[36] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2696,7 +2653,7 @@ func (x *WorkEmailAdded) ProtoReflect() protoreflect.Message { // Deprecated: Use WorkEmailAdded.ProtoReflect.Descriptor instead. func (*WorkEmailAdded) Descriptor() ([]byte, []int) { - return file_user_proto_rawDescGZIP(), []int{37} + return file_user_proto_rawDescGZIP(), []int{36} } func (x *WorkEmailAdded) GetUserId() string { @@ -2741,7 +2698,7 @@ type FavoriteCreated struct { func (x *FavoriteCreated) Reset() { *x = FavoriteCreated{} if protoimpl.UnsafeEnabled { - mi := &file_user_proto_msgTypes[38] + mi := &file_user_proto_msgTypes[37] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2754,7 +2711,7 @@ func (x *FavoriteCreated) String() string { func (*FavoriteCreated) ProtoMessage() {} func (x *FavoriteCreated) ProtoReflect() protoreflect.Message { - mi := &file_user_proto_msgTypes[38] + mi := &file_user_proto_msgTypes[37] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2767,7 +2724,7 @@ func (x *FavoriteCreated) ProtoReflect() protoreflect.Message { // Deprecated: Use FavoriteCreated.ProtoReflect.Descriptor instead. func (*FavoriteCreated) Descriptor() ([]byte, []int) { - return file_user_proto_rawDescGZIP(), []int{38} + return file_user_proto_rawDescGZIP(), []int{37} } func (x *FavoriteCreated) GetFavorite() *Favorite { @@ -2798,7 +2755,7 @@ type FavoriteDeleted struct { func (x *FavoriteDeleted) Reset() { *x = FavoriteDeleted{} if protoimpl.UnsafeEnabled { - mi := &file_user_proto_msgTypes[39] + mi := &file_user_proto_msgTypes[38] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2811,7 +2768,7 @@ func (x *FavoriteDeleted) String() string { func (*FavoriteDeleted) ProtoMessage() {} func (x *FavoriteDeleted) ProtoReflect() protoreflect.Message { - mi := &file_user_proto_msgTypes[39] + mi := &file_user_proto_msgTypes[38] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2824,7 +2781,7 @@ func (x *FavoriteDeleted) ProtoReflect() protoreflect.Message { // Deprecated: Use FavoriteDeleted.ProtoReflect.Descriptor instead. func (*FavoriteDeleted) Descriptor() ([]byte, []int) { - return file_user_proto_rawDescGZIP(), []int{39} + return file_user_proto_rawDescGZIP(), []int{38} } func (x *FavoriteDeleted) GetFavorite() *Favorite { @@ -2854,7 +2811,7 @@ type RepositoryScopes_RepositoryScope struct { func (x *RepositoryScopes_RepositoryScope) Reset() { *x = RepositoryScopes_RepositoryScope{} if protoimpl.UnsafeEnabled { - mi := &file_user_proto_msgTypes[40] + mi := &file_user_proto_msgTypes[39] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2867,7 +2824,7 @@ func (x *RepositoryScopes_RepositoryScope) String() string { func (*RepositoryScopes_RepositoryScope) ProtoMessage() {} func (x *RepositoryScopes_RepositoryScope) ProtoReflect() protoreflect.Message { - mi := &file_user_proto_msgTypes[40] + mi := &file_user_proto_msgTypes[39] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3074,142 +3031,151 @@ var file_user_proto_rawDesc = []byte{ 0x12, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x72, 0x70, 0x63, 0x2e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x1b, 0x0a, 0x09, 0x61, 0x70, 0x69, 0x5f, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, - 0x61, 0x70, 0x69, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x22, 0x29, 0x0a, 0x0e, 0x52, 0x65, 0x66, 0x65, - 0x72, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x17, 0x0a, 0x07, 0x75, 0x73, - 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, - 0x72, 0x49, 0x64, 0x22, 0x6a, 0x0a, 0x0f, 0x52, 0x65, 0x66, 0x65, 0x72, 0x65, 0x72, 0x52, 0x65, - 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x17, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, - 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, - 0x1b, 0x0a, 0x09, 0x65, 0x6e, 0x74, 0x72, 0x79, 0x5f, 0x75, 0x72, 0x6c, 0x18, 0x02, 0x20, 0x01, - 0x28, 0x09, 0x52, 0x08, 0x65, 0x6e, 0x74, 0x72, 0x79, 0x55, 0x72, 0x6c, 0x12, 0x21, 0x0a, 0x0c, - 0x68, 0x74, 0x74, 0x70, 0x5f, 0x72, 0x65, 0x66, 0x65, 0x72, 0x65, 0x72, 0x18, 0x03, 0x20, 0x01, - 0x28, 0x09, 0x52, 0x0b, 0x68, 0x74, 0x74, 0x70, 0x52, 0x65, 0x66, 0x65, 0x72, 0x65, 0x72, 0x22, - 0x32, 0x0a, 0x17, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x47, 0x69, 0x74, 0x68, 0x75, 0x62, 0x54, 0x6f, - 0x6b, 0x65, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x17, 0x0a, 0x07, 0x75, 0x73, - 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, - 0x72, 0x49, 0x64, 0x22, 0x69, 0x0a, 0x18, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x47, 0x69, 0x74, 0x68, - 0x75, 0x62, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, - 0x18, 0x0a, 0x07, 0x72, 0x65, 0x76, 0x6f, 0x6b, 0x65, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, - 0x52, 0x07, 0x72, 0x65, 0x76, 0x6f, 0x6b, 0x65, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x72, 0x65, 0x70, - 0x6f, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x04, 0x72, 0x65, 0x70, 0x6f, 0x12, 0x1f, 0x0a, - 0x0b, 0x70, 0x75, 0x62, 0x6c, 0x69, 0x63, 0x5f, 0x72, 0x65, 0x70, 0x6f, 0x18, 0x03, 0x20, 0x01, - 0x28, 0x08, 0x52, 0x0a, 0x70, 0x75, 0x62, 0x6c, 0x69, 0x63, 0x52, 0x65, 0x70, 0x6f, 0x22, 0x2e, - 0x0a, 0x13, 0x42, 0x6c, 0x6f, 0x63, 0x6b, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, - 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x17, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, - 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x22, 0x30, - 0x0a, 0x15, 0x55, 0x6e, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, + 0x61, 0x70, 0x69, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x22, 0x32, 0x0a, 0x17, 0x43, 0x68, 0x65, 0x63, + 0x6b, 0x47, 0x69, 0x74, 0x68, 0x75, 0x62, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x52, 0x65, 0x71, 0x75, + 0x65, 0x73, 0x74, 0x12, 0x17, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x01, + 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x22, 0x69, 0x0a, 0x18, + 0x43, 0x68, 0x65, 0x63, 0x6b, 0x47, 0x69, 0x74, 0x68, 0x75, 0x62, 0x54, 0x6f, 0x6b, 0x65, 0x6e, + 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x72, 0x65, 0x76, 0x6f, + 0x6b, 0x65, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x72, 0x65, 0x76, 0x6f, 0x6b, + 0x65, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x72, 0x65, 0x70, 0x6f, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, + 0x52, 0x04, 0x72, 0x65, 0x70, 0x6f, 0x12, 0x1f, 0x0a, 0x0b, 0x70, 0x75, 0x62, 0x6c, 0x69, 0x63, + 0x5f, 0x72, 0x65, 0x70, 0x6f, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0a, 0x70, 0x75, 0x62, + 0x6c, 0x69, 0x63, 0x52, 0x65, 0x70, 0x6f, 0x22, 0x2e, 0x0a, 0x13, 0x42, 0x6c, 0x6f, 0x63, 0x6b, + 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x17, + 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, + 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x22, 0x30, 0x0a, 0x15, 0x55, 0x6e, 0x62, 0x6c, 0x6f, + 0x63, 0x6b, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, + 0x12, 0x17, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, + 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x22, 0x92, 0x01, 0x0a, 0x19, 0x47, 0x65, + 0x74, 0x52, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x79, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x17, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, - 0x22, 0x92, 0x01, 0x0a, 0x19, 0x47, 0x65, 0x74, 0x52, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, - 0x72, 0x79, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x17, - 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, - 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x5c, 0x0a, 0x10, 0x69, 0x6e, 0x74, 0x65, 0x67, - 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, - 0x0e, 0x32, 0x31, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, - 0x52, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x79, 0x49, 0x6e, 0x74, 0x65, 0x67, 0x72, - 0x61, 0x74, 0x6f, 0x72, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, - 0x54, 0x79, 0x70, 0x65, 0x52, 0x0f, 0x69, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, - 0x6e, 0x54, 0x79, 0x70, 0x65, 0x22, 0x6d, 0x0a, 0x1a, 0x47, 0x65, 0x74, 0x52, 0x65, 0x70, 0x6f, - 0x73, 0x69, 0x74, 0x6f, 0x72, 0x79, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, - 0x6e, 0x73, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x18, 0x01, 0x20, 0x01, - 0x28, 0x09, 0x52, 0x05, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x12, 0x39, 0x0a, 0x0a, 0x65, 0x78, 0x70, - 0x69, 0x72, 0x65, 0x73, 0x5f, 0x61, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, + 0x12, 0x5c, 0x0a, 0x10, 0x69, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, + 0x74, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x31, 0x2e, 0x49, 0x6e, 0x74, + 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x52, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, + 0x6f, 0x72, 0x79, 0x49, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x2e, 0x49, 0x6e, + 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x52, 0x0f, 0x69, + 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x22, 0x6d, + 0x0a, 0x1a, 0x47, 0x65, 0x74, 0x52, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x79, 0x54, + 0x6f, 0x6b, 0x65, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x14, 0x0a, 0x05, + 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x74, 0x6f, 0x6b, + 0x65, 0x6e, 0x12, 0x39, 0x0a, 0x0a, 0x65, 0x78, 0x70, 0x69, 0x72, 0x65, 0x73, 0x5f, 0x61, 0x74, + 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, + 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, + 0x6d, 0x70, 0x52, 0x09, 0x65, 0x78, 0x70, 0x69, 0x72, 0x65, 0x73, 0x41, 0x74, 0x22, 0x67, 0x0a, + 0x23, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x42, 0x79, 0x52, 0x65, 0x70, 0x6f, 0x73, + 0x69, 0x74, 0x6f, 0x72, 0x79, 0x50, 0x72, 0x6f, 0x76, 0x69, 0x64, 0x65, 0x72, 0x52, 0x65, 0x71, + 0x75, 0x65, 0x73, 0x74, 0x12, 0x40, 0x0a, 0x08, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x64, 0x65, 0x72, + 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x24, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, + 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x2e, 0x52, 0x65, 0x70, 0x6f, 0x73, 0x69, + 0x74, 0x6f, 0x72, 0x79, 0x50, 0x72, 0x6f, 0x76, 0x69, 0x64, 0x65, 0x72, 0x52, 0x08, 0x70, 0x72, + 0x6f, 0x76, 0x69, 0x64, 0x65, 0x72, 0x22, 0x2e, 0x0a, 0x16, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, + 0x62, 0x65, 0x42, 0x79, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, + 0x12, 0x14, 0x0a, 0x05, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, + 0x05, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x22, 0x7a, 0x0a, 0x20, 0x52, 0x65, 0x66, 0x72, 0x65, 0x73, + 0x68, 0x52, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x79, 0x50, 0x72, 0x6f, 0x76, 0x69, + 0x64, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x17, 0x0a, 0x07, 0x75, 0x73, + 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, + 0x72, 0x49, 0x64, 0x12, 0x3d, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, + 0x0e, 0x32, 0x29, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, + 0x55, 0x73, 0x65, 0x72, 0x2e, 0x52, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x79, 0x50, + 0x72, 0x6f, 0x76, 0x69, 0x64, 0x65, 0x72, 0x2e, 0x54, 0x79, 0x70, 0x65, 0x52, 0x04, 0x74, 0x79, + 0x70, 0x65, 0x22, 0x93, 0x01, 0x0a, 0x21, 0x52, 0x65, 0x66, 0x72, 0x65, 0x73, 0x68, 0x52, 0x65, + 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x79, 0x50, 0x72, 0x6f, 0x76, 0x69, 0x64, 0x65, 0x72, + 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x17, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, + 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, + 0x64, 0x12, 0x55, 0x0a, 0x13, 0x72, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x79, 0x5f, + 0x70, 0x72, 0x6f, 0x76, 0x69, 0x64, 0x65, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x24, + 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x55, 0x73, 0x65, + 0x72, 0x2e, 0x52, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x79, 0x50, 0x72, 0x6f, 0x76, + 0x69, 0x64, 0x65, 0x72, 0x52, 0x12, 0x72, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x79, + 0x50, 0x72, 0x6f, 0x76, 0x69, 0x64, 0x65, 0x72, 0x22, 0xe0, 0x01, 0x0a, 0x0d, 0x43, 0x72, 0x65, + 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x6d, + 0x61, 0x69, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x65, 0x6d, 0x61, 0x69, 0x6c, + 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, + 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, + 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, + 0x12, 0x57, 0x0a, 0x14, 0x72, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x79, 0x5f, 0x70, + 0x72, 0x6f, 0x76, 0x69, 0x64, 0x65, 0x72, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x24, + 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x55, 0x73, 0x65, + 0x72, 0x2e, 0x52, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x79, 0x50, 0x72, 0x6f, 0x76, + 0x69, 0x64, 0x65, 0x72, 0x52, 0x13, 0x72, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x79, + 0x50, 0x72, 0x6f, 0x76, 0x69, 0x64, 0x65, 0x72, 0x73, 0x12, 0x30, 0x0a, 0x14, 0x73, 0x6b, 0x69, + 0x70, 0x5f, 0x70, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x5f, 0x63, 0x68, 0x61, 0x6e, 0x67, + 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x08, 0x52, 0x12, 0x73, 0x6b, 0x69, 0x70, 0x50, 0x61, 0x73, + 0x73, 0x77, 0x6f, 0x72, 0x64, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x22, 0x9f, 0x05, 0x0a, 0x04, + 0x55, 0x73, 0x65, 0x72, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, + 0x52, 0x02, 0x69, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x5f, 0x75, + 0x72, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, + 0x55, 0x72, 0x6c, 0x12, 0x1d, 0x0a, 0x0a, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x5f, 0x75, 0x69, + 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x55, + 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, + 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, + 0x5f, 0x6c, 0x6f, 0x67, 0x69, 0x6e, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x67, 0x69, + 0x74, 0x68, 0x75, 0x62, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x6f, 0x6d, + 0x70, 0x61, 0x6e, 0x79, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x63, 0x6f, 0x6d, 0x70, + 0x61, 0x6e, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x18, 0x09, 0x20, 0x01, + 0x28, 0x09, 0x52, 0x05, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x12, 0x39, 0x0a, 0x0a, 0x62, 0x6c, 0x6f, + 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, - 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x09, 0x65, 0x78, 0x70, 0x69, 0x72, - 0x65, 0x73, 0x41, 0x74, 0x22, 0x67, 0x0a, 0x23, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, - 0x42, 0x79, 0x52, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x79, 0x50, 0x72, 0x6f, 0x76, - 0x69, 0x64, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x40, 0x0a, 0x08, 0x70, - 0x72, 0x6f, 0x76, 0x69, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x24, 0x2e, + 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x09, 0x62, 0x6c, 0x6f, 0x63, 0x6b, + 0x65, 0x64, 0x41, 0x74, 0x12, 0x39, 0x0a, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, + 0x61, 0x74, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, + 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, + 0x74, 0x61, 0x6d, 0x70, 0x52, 0x09, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x41, 0x74, 0x12, + 0x57, 0x0a, 0x14, 0x72, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x79, 0x5f, 0x70, 0x72, + 0x6f, 0x76, 0x69, 0x64, 0x65, 0x72, 0x73, 0x18, 0x0c, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x24, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x2e, 0x52, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x79, 0x50, 0x72, 0x6f, 0x76, 0x69, - 0x64, 0x65, 0x72, 0x52, 0x08, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x64, 0x65, 0x72, 0x22, 0x7a, 0x0a, - 0x20, 0x52, 0x65, 0x66, 0x72, 0x65, 0x73, 0x68, 0x52, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, - 0x72, 0x79, 0x50, 0x72, 0x6f, 0x76, 0x69, 0x64, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, - 0x74, 0x12, 0x17, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, - 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x3d, 0x0a, 0x04, 0x74, 0x79, - 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x29, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, - 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x2e, 0x52, 0x65, 0x70, 0x6f, - 0x73, 0x69, 0x74, 0x6f, 0x72, 0x79, 0x50, 0x72, 0x6f, 0x76, 0x69, 0x64, 0x65, 0x72, 0x2e, 0x54, - 0x79, 0x70, 0x65, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x22, 0x93, 0x01, 0x0a, 0x21, 0x52, 0x65, - 0x66, 0x72, 0x65, 0x73, 0x68, 0x52, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x79, 0x50, - 0x72, 0x6f, 0x76, 0x69, 0x64, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, - 0x17, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, - 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x55, 0x0a, 0x13, 0x72, 0x65, 0x70, 0x6f, - 0x73, 0x69, 0x74, 0x6f, 0x72, 0x79, 0x5f, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x64, 0x65, 0x72, 0x18, - 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x24, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, - 0x41, 0x70, 0x69, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x2e, 0x52, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, - 0x6f, 0x72, 0x79, 0x50, 0x72, 0x6f, 0x76, 0x69, 0x64, 0x65, 0x72, 0x52, 0x12, 0x72, 0x65, 0x70, - 0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x79, 0x50, 0x72, 0x6f, 0x76, 0x69, 0x64, 0x65, 0x72, 0x22, - 0x9f, 0x05, 0x0a, 0x04, 0x55, 0x73, 0x65, 0x72, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, - 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x61, 0x76, 0x61, 0x74, - 0x61, 0x72, 0x5f, 0x75, 0x72, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x76, - 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x12, 0x1d, 0x0a, 0x0a, 0x67, 0x69, 0x74, 0x68, 0x75, - 0x62, 0x5f, 0x75, 0x69, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x67, 0x69, 0x74, - 0x68, 0x75, 0x62, 0x55, 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x05, - 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x67, 0x69, - 0x74, 0x68, 0x75, 0x62, 0x5f, 0x6c, 0x6f, 0x67, 0x69, 0x6e, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, - 0x52, 0x0b, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x12, 0x18, 0x0a, - 0x07, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x6e, 0x79, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, - 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x6e, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x6d, 0x61, 0x69, 0x6c, - 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x12, 0x39, 0x0a, - 0x0a, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x18, 0x0a, 0x20, 0x01, 0x28, - 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, - 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x09, 0x62, - 0x6c, 0x6f, 0x63, 0x6b, 0x65, 0x64, 0x41, 0x74, 0x12, 0x39, 0x0a, 0x0a, 0x63, 0x72, 0x65, 0x61, - 0x74, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, - 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x09, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, - 0x64, 0x41, 0x74, 0x12, 0x57, 0x0a, 0x14, 0x72, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, - 0x79, 0x5f, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x64, 0x65, 0x72, 0x73, 0x18, 0x0c, 0x20, 0x03, 0x28, - 0x0b, 0x32, 0x24, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, - 0x55, 0x73, 0x65, 0x72, 0x2e, 0x52, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x79, 0x50, - 0x72, 0x6f, 0x76, 0x69, 0x64, 0x65, 0x72, 0x52, 0x13, 0x72, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, - 0x6f, 0x72, 0x79, 0x50, 0x72, 0x6f, 0x76, 0x69, 0x64, 0x65, 0x72, 0x73, 0x12, 0x39, 0x0a, 0x0a, - 0x76, 0x69, 0x73, 0x69, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x0b, - 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, - 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x09, 0x76, 0x69, - 0x73, 0x69, 0x74, 0x65, 0x64, 0x41, 0x74, 0x12, 0x26, 0x0a, 0x0f, 0x73, 0x69, 0x6e, 0x67, 0x6c, - 0x65, 0x5f, 0x6f, 0x72, 0x67, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x08, - 0x52, 0x0d, 0x73, 0x69, 0x6e, 0x67, 0x6c, 0x65, 0x4f, 0x72, 0x67, 0x55, 0x73, 0x65, 0x72, 0x12, - 0x15, 0x0a, 0x06, 0x6f, 0x72, 0x67, 0x5f, 0x69, 0x64, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x09, 0x52, - 0x05, 0x6f, 0x72, 0x67, 0x49, 0x64, 0x12, 0x4e, 0x0a, 0x0f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, - 0x6f, 0x6e, 0x5f, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x18, 0x10, 0x20, 0x01, 0x28, 0x0e, 0x32, - 0x25, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x55, 0x73, - 0x65, 0x72, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, - 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x52, 0x0e, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, - 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x64, 0x65, 0x61, 0x63, 0x74, 0x69, - 0x76, 0x61, 0x74, 0x65, 0x64, 0x18, 0x11, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0b, 0x64, 0x65, 0x61, - 0x63, 0x74, 0x69, 0x76, 0x61, 0x74, 0x65, 0x64, 0x22, 0x27, 0x0a, 0x0e, 0x43, 0x72, 0x65, 0x61, - 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x12, 0x0b, 0x0a, 0x07, 0x4e, 0x4f, - 0x54, 0x5f, 0x53, 0x45, 0x54, 0x10, 0x00, 0x12, 0x08, 0x0a, 0x04, 0x4f, 0x4b, 0x54, 0x41, 0x10, - 0x01, 0x22, 0x7a, 0x0a, 0x0b, 0x55, 0x73, 0x65, 0x72, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, - 0x12, 0x17, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, - 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x38, 0x0a, 0x09, 0x74, 0x69, 0x6d, - 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, + 0x64, 0x65, 0x72, 0x52, 0x13, 0x72, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x79, 0x50, + 0x72, 0x6f, 0x76, 0x69, 0x64, 0x65, 0x72, 0x73, 0x12, 0x39, 0x0a, 0x0a, 0x76, 0x69, 0x73, 0x69, + 0x74, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, - 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x09, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, - 0x61, 0x6d, 0x70, 0x12, 0x18, 0x0a, 0x07, 0x69, 0x6e, 0x76, 0x69, 0x74, 0x65, 0x64, 0x18, 0x03, - 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x69, 0x6e, 0x76, 0x69, 0x74, 0x65, 0x64, 0x22, 0x60, 0x0a, - 0x0b, 0x55, 0x73, 0x65, 0x72, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x64, 0x12, 0x17, 0x0a, 0x07, + 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x09, 0x76, 0x69, 0x73, 0x69, 0x74, 0x65, + 0x64, 0x41, 0x74, 0x12, 0x26, 0x0a, 0x0f, 0x73, 0x69, 0x6e, 0x67, 0x6c, 0x65, 0x5f, 0x6f, 0x72, + 0x67, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0d, 0x73, 0x69, + 0x6e, 0x67, 0x6c, 0x65, 0x4f, 0x72, 0x67, 0x55, 0x73, 0x65, 0x72, 0x12, 0x15, 0x0a, 0x06, 0x6f, + 0x72, 0x67, 0x5f, 0x69, 0x64, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x6f, 0x72, 0x67, + 0x49, 0x64, 0x12, 0x4e, 0x0a, 0x0f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x73, + 0x6f, 0x75, 0x72, 0x63, 0x65, 0x18, 0x10, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x25, 0x2e, 0x49, 0x6e, + 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x2e, 0x55, + 0x73, 0x65, 0x72, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x6f, 0x75, 0x72, + 0x63, 0x65, 0x52, 0x0e, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x6f, 0x75, 0x72, + 0x63, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x64, 0x65, 0x61, 0x63, 0x74, 0x69, 0x76, 0x61, 0x74, 0x65, + 0x64, 0x18, 0x11, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0b, 0x64, 0x65, 0x61, 0x63, 0x74, 0x69, 0x76, + 0x61, 0x74, 0x65, 0x64, 0x22, 0x27, 0x0a, 0x0e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, + 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x12, 0x0b, 0x0a, 0x07, 0x4e, 0x4f, 0x54, 0x5f, 0x53, 0x45, + 0x54, 0x10, 0x00, 0x12, 0x08, 0x0a, 0x04, 0x4f, 0x4b, 0x54, 0x41, 0x10, 0x01, 0x22, 0x7a, 0x0a, + 0x0b, 0x55, 0x73, 0x65, 0x72, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x12, 0x17, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x38, 0x0a, 0x09, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, - 0x74, 0x61, 0x6d, 0x70, 0x52, 0x09, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x22, - 0x60, 0x0a, 0x0b, 0x55, 0x73, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x64, 0x12, 0x17, - 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, - 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x38, 0x0a, 0x09, 0x74, 0x69, 0x6d, 0x65, 0x73, - 0x74, 0x61, 0x6d, 0x70, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, - 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x09, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, - 0x70, 0x22, 0x6d, 0x0a, 0x12, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x66, 0x65, 0x72, 0x65, 0x72, - 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x12, 0x17, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f, - 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, - 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x6e, 0x74, 0x72, 0x79, 0x5f, 0x75, 0x72, 0x6c, 0x18, 0x02, 0x20, - 0x01, 0x28, 0x09, 0x52, 0x08, 0x65, 0x6e, 0x74, 0x72, 0x79, 0x55, 0x72, 0x6c, 0x12, 0x21, 0x0a, - 0x0c, 0x68, 0x74, 0x74, 0x70, 0x5f, 0x72, 0x65, 0x66, 0x65, 0x72, 0x65, 0x72, 0x18, 0x03, 0x20, - 0x01, 0x28, 0x09, 0x52, 0x0b, 0x68, 0x74, 0x74, 0x70, 0x52, 0x65, 0x66, 0x65, 0x72, 0x65, 0x72, - 0x22, 0x82, 0x01, 0x0a, 0x16, 0x55, 0x73, 0x65, 0x72, 0x4a, 0x6f, 0x69, 0x6e, 0x65, 0x64, 0x4f, + 0x74, 0x61, 0x6d, 0x70, 0x52, 0x09, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x12, + 0x18, 0x0a, 0x07, 0x69, 0x6e, 0x76, 0x69, 0x74, 0x65, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, + 0x52, 0x07, 0x69, 0x6e, 0x76, 0x69, 0x74, 0x65, 0x64, 0x22, 0x60, 0x0a, 0x0b, 0x55, 0x73, 0x65, + 0x72, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x64, 0x12, 0x17, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, + 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, + 0x64, 0x12, 0x38, 0x0a, 0x09, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x18, 0x02, + 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, + 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, + 0x52, 0x09, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x22, 0x60, 0x0a, 0x0b, 0x55, + 0x73, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x64, 0x12, 0x17, 0x0a, 0x07, 0x75, 0x73, + 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, + 0x72, 0x49, 0x64, 0x12, 0x38, 0x0a, 0x09, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, + 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, + 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, + 0x6d, 0x70, 0x52, 0x09, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x22, 0x82, 0x01, + 0x0a, 0x16, 0x55, 0x73, 0x65, 0x72, 0x4a, 0x6f, 0x69, 0x6e, 0x65, 0x64, 0x4f, 0x72, 0x67, 0x61, + 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x17, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, + 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, + 0x64, 0x12, 0x15, 0x0a, 0x06, 0x6f, 0x72, 0x67, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, + 0x09, 0x52, 0x05, 0x6f, 0x72, 0x67, 0x49, 0x64, 0x12, 0x38, 0x0a, 0x09, 0x74, 0x69, 0x6d, 0x65, + 0x73, 0x74, 0x61, 0x6d, 0x70, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, + 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x09, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, + 0x6d, 0x70, 0x22, 0x80, 0x01, 0x0a, 0x14, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x65, 0x66, 0x74, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x17, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x15, 0x0a, 0x06, 0x6f, 0x72, 0x67, 0x5f, 0x69, 0x64, 0x18, 0x02, @@ -3217,161 +3183,158 @@ var file_user_proto_rawDesc = []byte{ 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x09, 0x74, 0x69, 0x6d, 0x65, - 0x73, 0x74, 0x61, 0x6d, 0x70, 0x22, 0x80, 0x01, 0x0a, 0x14, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x65, - 0x66, 0x74, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x17, - 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, - 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x15, 0x0a, 0x06, 0x6f, 0x72, 0x67, 0x5f, 0x69, - 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x6f, 0x72, 0x67, 0x49, 0x64, 0x12, 0x38, - 0x0a, 0x09, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x18, 0x03, 0x20, 0x01, 0x28, - 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, - 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x09, 0x74, - 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x22, 0x89, 0x01, 0x0a, 0x0d, 0x4d, 0x65, 0x6d, - 0x62, 0x65, 0x72, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x65, 0x64, 0x12, 0x27, 0x0a, 0x0f, 0x67, 0x69, - 0x74, 0x68, 0x75, 0x62, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, - 0x01, 0x28, 0x09, 0x52, 0x0e, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x55, 0x73, 0x65, 0x72, 0x6e, - 0x61, 0x6d, 0x65, 0x12, 0x15, 0x0a, 0x06, 0x6f, 0x72, 0x67, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, - 0x01, 0x28, 0x09, 0x52, 0x05, 0x6f, 0x72, 0x67, 0x49, 0x64, 0x12, 0x38, 0x0a, 0x09, 0x74, 0x69, - 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, - 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, - 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x09, 0x74, 0x69, 0x6d, 0x65, 0x73, - 0x74, 0x61, 0x6d, 0x70, 0x22, 0x60, 0x0a, 0x0b, 0x41, 0x63, 0x74, 0x69, 0x76, 0x65, 0x4f, 0x77, - 0x6e, 0x65, 0x72, 0x12, 0x17, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x01, - 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x38, 0x0a, 0x09, - 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, - 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, - 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x09, 0x74, 0x69, 0x6d, - 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x22, 0x62, 0x0a, 0x0d, 0x49, 0x6e, 0x61, 0x63, 0x74, 0x69, - 0x76, 0x65, 0x4f, 0x77, 0x6e, 0x65, 0x72, 0x12, 0x17, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f, - 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, - 0x12, 0x38, 0x0a, 0x09, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x18, 0x03, 0x20, - 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, - 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, - 0x09, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x22, 0x9d, 0x01, 0x0a, 0x0e, 0x57, - 0x6f, 0x72, 0x6b, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x41, 0x64, 0x64, 0x65, 0x64, 0x12, 0x17, 0x0a, - 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, - 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x38, 0x0a, 0x09, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, - 0x61, 0x6d, 0x70, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, - 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x09, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, - 0x12, 0x1b, 0x0a, 0x09, 0x6f, 0x6c, 0x64, 0x5f, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x18, 0x03, 0x20, - 0x01, 0x28, 0x09, 0x52, 0x08, 0x6f, 0x6c, 0x64, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x12, 0x1b, 0x0a, - 0x09, 0x6e, 0x65, 0x77, 0x5f, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, - 0x52, 0x08, 0x6e, 0x65, 0x77, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x22, 0x83, 0x01, 0x0a, 0x0f, 0x46, - 0x61, 0x76, 0x6f, 0x72, 0x69, 0x74, 0x65, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x12, 0x36, - 0x0a, 0x08, 0x66, 0x61, 0x76, 0x6f, 0x72, 0x69, 0x74, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, - 0x32, 0x1a, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x55, - 0x73, 0x65, 0x72, 0x2e, 0x46, 0x61, 0x76, 0x6f, 0x72, 0x69, 0x74, 0x65, 0x52, 0x08, 0x66, 0x61, - 0x76, 0x6f, 0x72, 0x69, 0x74, 0x65, 0x12, 0x38, 0x0a, 0x09, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, - 0x61, 0x6d, 0x70, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, - 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x09, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, - 0x22, 0x83, 0x01, 0x0a, 0x0f, 0x46, 0x61, 0x76, 0x6f, 0x72, 0x69, 0x74, 0x65, 0x44, 0x65, 0x6c, - 0x65, 0x74, 0x65, 0x64, 0x12, 0x36, 0x0a, 0x08, 0x66, 0x61, 0x76, 0x6f, 0x72, 0x69, 0x74, 0x65, - 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, - 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x2e, 0x46, 0x61, 0x76, 0x6f, 0x72, 0x69, - 0x74, 0x65, 0x52, 0x08, 0x66, 0x61, 0x76, 0x6f, 0x72, 0x69, 0x74, 0x65, 0x12, 0x38, 0x0a, 0x09, - 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, - 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, - 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x09, 0x74, 0x69, 0x6d, - 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x32, 0xe7, 0x0b, 0x0a, 0x0b, 0x55, 0x73, 0x65, 0x72, 0x53, - 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0x51, 0x0a, 0x08, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, - 0x62, 0x65, 0x12, 0x21, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, + 0x73, 0x74, 0x61, 0x6d, 0x70, 0x22, 0x89, 0x01, 0x0a, 0x0d, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, + 0x49, 0x6e, 0x76, 0x69, 0x74, 0x65, 0x64, 0x12, 0x27, 0x0a, 0x0f, 0x67, 0x69, 0x74, 0x68, 0x75, + 0x62, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, + 0x52, 0x0e, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x55, 0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d, 0x65, + 0x12, 0x15, 0x0a, 0x06, 0x6f, 0x72, 0x67, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, + 0x52, 0x05, 0x6f, 0x72, 0x67, 0x49, 0x64, 0x12, 0x38, 0x0a, 0x09, 0x74, 0x69, 0x6d, 0x65, 0x73, + 0x74, 0x61, 0x6d, 0x70, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, + 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, + 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x09, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, + 0x70, 0x22, 0x60, 0x0a, 0x0b, 0x41, 0x63, 0x74, 0x69, 0x76, 0x65, 0x4f, 0x77, 0x6e, 0x65, 0x72, + 0x12, 0x17, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, + 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x38, 0x0a, 0x09, 0x74, 0x69, 0x6d, + 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, + 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x09, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, + 0x61, 0x6d, 0x70, 0x22, 0x62, 0x0a, 0x0d, 0x49, 0x6e, 0x61, 0x63, 0x74, 0x69, 0x76, 0x65, 0x4f, + 0x77, 0x6e, 0x65, 0x72, 0x12, 0x17, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, + 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x38, 0x0a, + 0x09, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, + 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, + 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x09, 0x74, 0x69, + 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x22, 0x9d, 0x01, 0x0a, 0x0e, 0x57, 0x6f, 0x72, 0x6b, + 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x41, 0x64, 0x64, 0x65, 0x64, 0x12, 0x17, 0x0a, 0x07, 0x75, 0x73, + 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, + 0x72, 0x49, 0x64, 0x12, 0x38, 0x0a, 0x09, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, + 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, + 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, + 0x6d, 0x70, 0x52, 0x09, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x12, 0x1b, 0x0a, + 0x09, 0x6f, 0x6c, 0x64, 0x5f, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, + 0x52, 0x08, 0x6f, 0x6c, 0x64, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x12, 0x1b, 0x0a, 0x09, 0x6e, 0x65, + 0x77, 0x5f, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6e, + 0x65, 0x77, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x22, 0x83, 0x01, 0x0a, 0x0f, 0x46, 0x61, 0x76, 0x6f, + 0x72, 0x69, 0x74, 0x65, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x12, 0x36, 0x0a, 0x08, 0x66, + 0x61, 0x76, 0x6f, 0x72, 0x69, 0x74, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, + 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x55, 0x73, 0x65, 0x72, + 0x2e, 0x46, 0x61, 0x76, 0x6f, 0x72, 0x69, 0x74, 0x65, 0x52, 0x08, 0x66, 0x61, 0x76, 0x6f, 0x72, + 0x69, 0x74, 0x65, 0x12, 0x38, 0x0a, 0x09, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, + 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, + 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, + 0x6d, 0x70, 0x52, 0x09, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x22, 0x83, 0x01, + 0x0a, 0x0f, 0x46, 0x61, 0x76, 0x6f, 0x72, 0x69, 0x74, 0x65, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, + 0x64, 0x12, 0x36, 0x0a, 0x08, 0x66, 0x61, 0x76, 0x6f, 0x72, 0x69, 0x74, 0x65, 0x18, 0x01, 0x20, + 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, + 0x69, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x2e, 0x46, 0x61, 0x76, 0x6f, 0x72, 0x69, 0x74, 0x65, 0x52, + 0x08, 0x66, 0x61, 0x76, 0x6f, 0x72, 0x69, 0x74, 0x65, 0x12, 0x38, 0x0a, 0x09, 0x74, 0x69, 0x6d, + 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, + 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x09, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, + 0x61, 0x6d, 0x70, 0x32, 0xaf, 0x0c, 0x0a, 0x0b, 0x55, 0x73, 0x65, 0x72, 0x53, 0x65, 0x72, 0x76, + 0x69, 0x63, 0x65, 0x12, 0x51, 0x0a, 0x08, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x12, + 0x21, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x55, 0x73, + 0x65, 0x72, 0x2e, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, + 0x73, 0x74, 0x1a, 0x22, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x2e, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x52, 0x65, - 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x22, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, - 0x41, 0x70, 0x69, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x2e, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x62, - 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x6d, 0x0a, 0x1c, 0x44, 0x65, 0x73, - 0x63, 0x72, 0x69, 0x62, 0x65, 0x42, 0x79, 0x52, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, - 0x79, 0x50, 0x72, 0x6f, 0x76, 0x69, 0x64, 0x65, 0x72, 0x12, 0x35, 0x2e, 0x49, 0x6e, 0x74, 0x65, - 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x2e, 0x44, 0x65, 0x73, - 0x63, 0x72, 0x69, 0x62, 0x65, 0x42, 0x79, 0x52, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, - 0x79, 0x50, 0x72, 0x6f, 0x76, 0x69, 0x64, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, - 0x1a, 0x16, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x55, - 0x73, 0x65, 0x72, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x12, 0x5a, 0x0a, 0x0b, 0x53, 0x65, 0x61, 0x72, - 0x63, 0x68, 0x55, 0x73, 0x65, 0x72, 0x73, 0x12, 0x24, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, - 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x2e, 0x53, 0x65, 0x61, 0x72, 0x63, - 0x68, 0x55, 0x73, 0x65, 0x72, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x25, 0x2e, + 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x6d, 0x0a, 0x1c, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, + 0x62, 0x65, 0x42, 0x79, 0x52, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x79, 0x50, 0x72, + 0x6f, 0x76, 0x69, 0x64, 0x65, 0x72, 0x12, 0x35, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, + 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x2e, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, + 0x62, 0x65, 0x42, 0x79, 0x52, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x79, 0x50, 0x72, + 0x6f, 0x76, 0x69, 0x64, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x55, 0x73, 0x65, 0x72, - 0x2e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x55, 0x73, 0x65, 0x72, 0x73, 0x52, 0x65, 0x73, 0x70, - 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x5d, 0x0a, 0x0c, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, - 0x4d, 0x61, 0x6e, 0x79, 0x12, 0x25, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, - 0x70, 0x69, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x2e, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, - 0x4d, 0x61, 0x6e, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x26, 0x2e, 0x49, 0x6e, - 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x2e, 0x44, - 0x65, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x4d, 0x61, 0x6e, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, - 0x6e, 0x73, 0x65, 0x12, 0x4b, 0x0a, 0x06, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x12, 0x1f, 0x2e, + 0x2e, 0x55, 0x73, 0x65, 0x72, 0x12, 0x53, 0x0a, 0x0f, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x62, + 0x65, 0x42, 0x79, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x12, 0x28, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, + 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x2e, 0x44, 0x65, 0x73, 0x63, + 0x72, 0x69, 0x62, 0x65, 0x42, 0x79, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, + 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, + 0x2e, 0x55, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x12, 0x5a, 0x0a, 0x0b, 0x53, 0x65, + 0x61, 0x72, 0x63, 0x68, 0x55, 0x73, 0x65, 0x72, 0x73, 0x12, 0x24, 0x2e, 0x49, 0x6e, 0x74, 0x65, + 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x2e, 0x53, 0x65, 0x61, + 0x72, 0x63, 0x68, 0x55, 0x73, 0x65, 0x72, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, + 0x25, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x55, 0x73, + 0x65, 0x72, 0x2e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x55, 0x73, 0x65, 0x72, 0x73, 0x52, 0x65, + 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x5d, 0x0a, 0x0c, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, + 0x62, 0x65, 0x4d, 0x61, 0x6e, 0x79, 0x12, 0x25, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, + 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x2e, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, + 0x62, 0x65, 0x4d, 0x61, 0x6e, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x26, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x55, 0x73, 0x65, 0x72, - 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x20, - 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x55, 0x73, 0x65, - 0x72, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, - 0x12, 0x5b, 0x0a, 0x13, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x57, 0x69, 0x74, 0x68, 0x4f, 0x77, - 0x6e, 0x65, 0x64, 0x4f, 0x72, 0x67, 0x73, 0x12, 0x2c, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, - 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, - 0x65, 0x57, 0x69, 0x74, 0x68, 0x4f, 0x77, 0x6e, 0x65, 0x64, 0x4f, 0x72, 0x67, 0x73, 0x52, 0x65, - 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, - 0x41, 0x70, 0x69, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x12, 0x66, 0x0a, - 0x0f, 0x52, 0x65, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x54, 0x6f, 0x6b, 0x65, 0x6e, - 0x12, 0x28, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x55, - 0x73, 0x65, 0x72, 0x2e, 0x52, 0x65, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x54, 0x6f, - 0x6b, 0x65, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x29, 0x2e, 0x49, 0x6e, 0x74, - 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x2e, 0x52, 0x65, - 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x52, 0x65, 0x73, - 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x60, 0x0a, 0x0d, 0x4c, 0x69, 0x73, 0x74, 0x46, 0x61, 0x76, - 0x6f, 0x72, 0x69, 0x74, 0x65, 0x73, 0x12, 0x26, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, - 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x46, 0x61, - 0x76, 0x6f, 0x72, 0x69, 0x74, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x27, - 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x55, 0x73, 0x65, - 0x72, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x46, 0x61, 0x76, 0x6f, 0x72, 0x69, 0x74, 0x65, 0x73, 0x52, - 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x48, 0x0a, 0x0e, 0x43, 0x72, 0x65, 0x61, 0x74, - 0x65, 0x46, 0x61, 0x76, 0x6f, 0x72, 0x69, 0x74, 0x65, 0x12, 0x1a, 0x2e, 0x49, 0x6e, 0x74, 0x65, - 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x2e, 0x46, 0x61, 0x76, - 0x6f, 0x72, 0x69, 0x74, 0x65, 0x1a, 0x1a, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, + 0x2e, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x4d, 0x61, 0x6e, 0x79, 0x52, 0x65, 0x73, + 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x4b, 0x0a, 0x06, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x12, + 0x1f, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x55, 0x73, + 0x65, 0x72, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, + 0x1a, 0x20, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x55, + 0x73, 0x65, 0x72, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, + 0x73, 0x65, 0x12, 0x5b, 0x0a, 0x13, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x57, 0x69, 0x74, 0x68, + 0x4f, 0x77, 0x6e, 0x65, 0x64, 0x4f, 0x72, 0x67, 0x73, 0x12, 0x2c, 0x2e, 0x49, 0x6e, 0x74, 0x65, + 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x2e, 0x44, 0x65, 0x6c, + 0x65, 0x74, 0x65, 0x57, 0x69, 0x74, 0x68, 0x4f, 0x77, 0x6e, 0x65, 0x64, 0x4f, 0x72, 0x67, 0x73, + 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, + 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x12, + 0x66, 0x0a, 0x0f, 0x52, 0x65, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x54, 0x6f, 0x6b, + 0x65, 0x6e, 0x12, 0x28, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, + 0x2e, 0x55, 0x73, 0x65, 0x72, 0x2e, 0x52, 0x65, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, + 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x29, 0x2e, 0x49, + 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x2e, + 0x52, 0x65, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x52, + 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x60, 0x0a, 0x0d, 0x4c, 0x69, 0x73, 0x74, 0x46, + 0x61, 0x76, 0x6f, 0x72, 0x69, 0x74, 0x65, 0x73, 0x12, 0x26, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, + 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x2e, 0x4c, 0x69, 0x73, 0x74, + 0x46, 0x61, 0x76, 0x6f, 0x72, 0x69, 0x74, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, + 0x1a, 0x27, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x55, + 0x73, 0x65, 0x72, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x46, 0x61, 0x76, 0x6f, 0x72, 0x69, 0x74, 0x65, + 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x48, 0x0a, 0x0e, 0x43, 0x72, 0x65, + 0x61, 0x74, 0x65, 0x46, 0x61, 0x76, 0x6f, 0x72, 0x69, 0x74, 0x65, 0x12, 0x1a, 0x2e, 0x49, 0x6e, + 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x2e, 0x46, + 0x61, 0x76, 0x6f, 0x72, 0x69, 0x74, 0x65, 0x1a, 0x1a, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, + 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x2e, 0x46, 0x61, 0x76, 0x6f, 0x72, + 0x69, 0x74, 0x65, 0x12, 0x48, 0x0a, 0x0e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x46, 0x61, 0x76, + 0x6f, 0x72, 0x69, 0x74, 0x65, 0x12, 0x1a, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x2e, 0x46, 0x61, 0x76, 0x6f, 0x72, 0x69, 0x74, - 0x65, 0x12, 0x48, 0x0a, 0x0e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x46, 0x61, 0x76, 0x6f, 0x72, - 0x69, 0x74, 0x65, 0x12, 0x1a, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, - 0x69, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x2e, 0x46, 0x61, 0x76, 0x6f, 0x72, 0x69, 0x74, 0x65, 0x1a, - 0x1a, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x55, 0x73, - 0x65, 0x72, 0x2e, 0x46, 0x61, 0x76, 0x6f, 0x72, 0x69, 0x74, 0x65, 0x12, 0x4e, 0x0a, 0x07, 0x52, - 0x65, 0x66, 0x65, 0x72, 0x65, 0x72, 0x12, 0x20, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, - 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x2e, 0x52, 0x65, 0x66, 0x65, 0x72, 0x65, - 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x21, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, - 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x2e, 0x52, 0x65, 0x66, 0x65, - 0x72, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x69, 0x0a, 0x10, 0x43, - 0x68, 0x65, 0x63, 0x6b, 0x47, 0x69, 0x74, 0x68, 0x75, 0x62, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x12, - 0x29, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x55, 0x73, - 0x65, 0x72, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x47, 0x69, 0x74, 0x68, 0x75, 0x62, 0x54, 0x6f, - 0x6b, 0x65, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2a, 0x2e, 0x49, 0x6e, 0x74, - 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x2e, 0x43, 0x68, - 0x65, 0x63, 0x6b, 0x47, 0x69, 0x74, 0x68, 0x75, 0x62, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x52, 0x65, - 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x4d, 0x0a, 0x0c, 0x42, 0x6c, 0x6f, 0x63, 0x6b, 0x41, - 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x25, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, - 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x2e, 0x42, 0x6c, 0x6f, 0x63, 0x6b, 0x41, - 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, + 0x65, 0x1a, 0x1a, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, + 0x55, 0x73, 0x65, 0x72, 0x2e, 0x46, 0x61, 0x76, 0x6f, 0x72, 0x69, 0x74, 0x65, 0x12, 0x69, 0x0a, + 0x10, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x47, 0x69, 0x74, 0x68, 0x75, 0x62, 0x54, 0x6f, 0x6b, 0x65, + 0x6e, 0x12, 0x29, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, + 0x55, 0x73, 0x65, 0x72, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x47, 0x69, 0x74, 0x68, 0x75, 0x62, + 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2a, 0x2e, 0x49, + 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x2e, + 0x43, 0x68, 0x65, 0x63, 0x6b, 0x47, 0x69, 0x74, 0x68, 0x75, 0x62, 0x54, 0x6f, 0x6b, 0x65, 0x6e, + 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x4d, 0x0a, 0x0c, 0x42, 0x6c, 0x6f, 0x63, + 0x6b, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x25, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, + 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x2e, 0x42, 0x6c, 0x6f, 0x63, + 0x6b, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, + 0x16, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x55, 0x73, + 0x65, 0x72, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x12, 0x51, 0x0a, 0x0e, 0x55, 0x6e, 0x62, 0x6c, 0x6f, + 0x63, 0x6b, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x27, 0x2e, 0x49, 0x6e, 0x74, 0x65, + 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x6e, 0x62, + 0x6c, 0x6f, 0x63, 0x6b, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, + 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, + 0x2e, 0x55, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x12, 0x6f, 0x0a, 0x12, 0x47, 0x65, + 0x74, 0x52, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x79, 0x54, 0x6f, 0x6b, 0x65, 0x6e, + 0x12, 0x2b, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x55, + 0x73, 0x65, 0x72, 0x2e, 0x47, 0x65, 0x74, 0x52, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, + 0x79, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2c, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x55, 0x73, 0x65, 0x72, - 0x2e, 0x55, 0x73, 0x65, 0x72, 0x12, 0x51, 0x0a, 0x0e, 0x55, 0x6e, 0x62, 0x6c, 0x6f, 0x63, 0x6b, - 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x27, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, - 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x6e, 0x62, 0x6c, 0x6f, - 0x63, 0x6b, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, - 0x1a, 0x16, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x55, - 0x73, 0x65, 0x72, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x12, 0x6f, 0x0a, 0x12, 0x47, 0x65, 0x74, 0x52, - 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x79, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x12, 0x2b, - 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x55, 0x73, 0x65, - 0x72, 0x2e, 0x47, 0x65, 0x74, 0x52, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x79, 0x54, - 0x6f, 0x6b, 0x65, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2c, 0x2e, 0x49, 0x6e, - 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x2e, 0x47, - 0x65, 0x74, 0x52, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x79, 0x54, 0x6f, 0x6b, 0x65, - 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x84, 0x01, 0x0a, 0x19, 0x52, 0x65, - 0x66, 0x72, 0x65, 0x73, 0x68, 0x52, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x79, 0x50, - 0x72, 0x6f, 0x76, 0x69, 0x64, 0x65, 0x72, 0x12, 0x32, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, - 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x2e, 0x52, 0x65, 0x66, 0x72, 0x65, - 0x73, 0x68, 0x52, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x79, 0x50, 0x72, 0x6f, 0x76, - 0x69, 0x64, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x33, 0x2e, 0x49, 0x6e, - 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x2e, 0x52, - 0x65, 0x66, 0x72, 0x65, 0x73, 0x68, 0x52, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x79, - 0x50, 0x72, 0x6f, 0x76, 0x69, 0x64, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, - 0x42, 0x32, 0x5a, 0x30, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x72, - 0x65, 0x6e, 0x64, 0x65, 0x72, 0x65, 0x64, 0x74, 0x65, 0x78, 0x74, 0x2f, 0x76, 0x65, 0x6c, 0x6f, - 0x63, 0x69, 0x74, 0x79, 0x2f, 0x70, 0x6b, 0x67, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x73, 0x2f, - 0x75, 0x73, 0x65, 0x72, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, + 0x2e, 0x47, 0x65, 0x74, 0x52, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x79, 0x54, 0x6f, + 0x6b, 0x65, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x84, 0x01, 0x0a, 0x19, + 0x52, 0x65, 0x66, 0x72, 0x65, 0x73, 0x68, 0x52, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, + 0x79, 0x50, 0x72, 0x6f, 0x76, 0x69, 0x64, 0x65, 0x72, 0x12, 0x32, 0x2e, 0x49, 0x6e, 0x74, 0x65, + 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x2e, 0x52, 0x65, 0x66, + 0x72, 0x65, 0x73, 0x68, 0x52, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x79, 0x50, 0x72, + 0x6f, 0x76, 0x69, 0x64, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x33, 0x2e, + 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x55, 0x73, 0x65, 0x72, + 0x2e, 0x52, 0x65, 0x66, 0x72, 0x65, 0x73, 0x68, 0x52, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, + 0x72, 0x79, 0x50, 0x72, 0x6f, 0x76, 0x69, 0x64, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, + 0x73, 0x65, 0x12, 0x41, 0x0a, 0x06, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x1f, 0x2e, 0x49, + 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x2e, + 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, + 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x55, 0x73, 0x65, 0x72, + 0x2e, 0x55, 0x73, 0x65, 0x72, 0x42, 0x3b, 0x5a, 0x39, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, + 0x63, 0x6f, 0x6d, 0x2f, 0x73, 0x65, 0x6d, 0x61, 0x70, 0x68, 0x6f, 0x72, 0x65, 0x69, 0x6f, 0x2f, + 0x73, 0x65, 0x6d, 0x61, 0x70, 0x68, 0x6f, 0x72, 0x65, 0x2f, 0x76, 0x65, 0x6c, 0x6f, 0x63, 0x69, + 0x74, 0x79, 0x2f, 0x70, 0x6b, 0x67, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x73, 0x2f, 0x75, 0x73, + 0x65, 0x72, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( @@ -3387,7 +3350,7 @@ func file_user_proto_rawDescGZIP() []byte { } var file_user_proto_enumTypes = make([]protoimpl.EnumInfo, 6) -var file_user_proto_msgTypes = make([]protoimpl.MessageInfo, 41) +var file_user_proto_msgTypes = make([]protoimpl.MessageInfo, 40) var file_user_proto_goTypes = []interface{}{ (Favorite_Kind)(0), // 0: InternalApi.User.Favorite.Kind (DescribeResponse_RepoScope)(0), // 1: InternalApi.User.DescribeResponse.RepoScope @@ -3411,118 +3374,120 @@ var file_user_proto_goTypes = []interface{}{ (*DeleteWithOwnedOrgsRequest)(nil), // 19: InternalApi.User.DeleteWithOwnedOrgsRequest (*RegenerateTokenRequest)(nil), // 20: InternalApi.User.RegenerateTokenRequest (*RegenerateTokenResponse)(nil), // 21: InternalApi.User.RegenerateTokenResponse - (*RefererRequest)(nil), // 22: InternalApi.User.RefererRequest - (*RefererResponse)(nil), // 23: InternalApi.User.RefererResponse - (*CheckGithubTokenRequest)(nil), // 24: InternalApi.User.CheckGithubTokenRequest - (*CheckGithubTokenResponse)(nil), // 25: InternalApi.User.CheckGithubTokenResponse - (*BlockAccountRequest)(nil), // 26: InternalApi.User.BlockAccountRequest - (*UnblockAccountRequest)(nil), // 27: InternalApi.User.UnblockAccountRequest - (*GetRepositoryTokenRequest)(nil), // 28: InternalApi.User.GetRepositoryTokenRequest - (*GetRepositoryTokenResponse)(nil), // 29: InternalApi.User.GetRepositoryTokenResponse - (*DescribeByRepositoryProviderRequest)(nil), // 30: InternalApi.User.DescribeByRepositoryProviderRequest - (*RefreshRepositoryProviderRequest)(nil), // 31: InternalApi.User.RefreshRepositoryProviderRequest - (*RefreshRepositoryProviderResponse)(nil), // 32: InternalApi.User.RefreshRepositoryProviderResponse + (*CheckGithubTokenRequest)(nil), // 22: InternalApi.User.CheckGithubTokenRequest + (*CheckGithubTokenResponse)(nil), // 23: InternalApi.User.CheckGithubTokenResponse + (*BlockAccountRequest)(nil), // 24: InternalApi.User.BlockAccountRequest + (*UnblockAccountRequest)(nil), // 25: InternalApi.User.UnblockAccountRequest + (*GetRepositoryTokenRequest)(nil), // 26: InternalApi.User.GetRepositoryTokenRequest + (*GetRepositoryTokenResponse)(nil), // 27: InternalApi.User.GetRepositoryTokenResponse + (*DescribeByRepositoryProviderRequest)(nil), // 28: InternalApi.User.DescribeByRepositoryProviderRequest + (*DescribeByEmailRequest)(nil), // 29: InternalApi.User.DescribeByEmailRequest + (*RefreshRepositoryProviderRequest)(nil), // 30: InternalApi.User.RefreshRepositoryProviderRequest + (*RefreshRepositoryProviderResponse)(nil), // 31: InternalApi.User.RefreshRepositoryProviderResponse + (*CreateRequest)(nil), // 32: InternalApi.User.CreateRequest (*User)(nil), // 33: InternalApi.User.User (*UserCreated)(nil), // 34: InternalApi.User.UserCreated (*UserDeleted)(nil), // 35: InternalApi.User.UserDeleted (*UserUpdated)(nil), // 36: InternalApi.User.UserUpdated - (*UserRefererCreated)(nil), // 37: InternalApi.User.UserRefererCreated - (*UserJoinedOrganization)(nil), // 38: InternalApi.User.UserJoinedOrganization - (*UserLeftOrganization)(nil), // 39: InternalApi.User.UserLeftOrganization - (*MemberInvited)(nil), // 40: InternalApi.User.MemberInvited - (*ActiveOwner)(nil), // 41: InternalApi.User.ActiveOwner - (*InactiveOwner)(nil), // 42: InternalApi.User.InactiveOwner - (*WorkEmailAdded)(nil), // 43: InternalApi.User.WorkEmailAdded - (*FavoriteCreated)(nil), // 44: InternalApi.User.FavoriteCreated - (*FavoriteDeleted)(nil), // 45: InternalApi.User.FavoriteDeleted - (*RepositoryScopes_RepositoryScope)(nil), // 46: InternalApi.User.RepositoryScopes.RepositoryScope - (*response_status.ResponseStatus)(nil), // 47: InternalApi.ResponseStatus - (*timestamp.Timestamp)(nil), // 48: google.protobuf.Timestamp - (*status.Status)(nil), // 49: google.rpc.Status - (repository_integrator.IntegrationType)(0), // 50: InternalApi.RepositoryIntegrator.IntegrationType + (*UserJoinedOrganization)(nil), // 37: InternalApi.User.UserJoinedOrganization + (*UserLeftOrganization)(nil), // 38: InternalApi.User.UserLeftOrganization + (*MemberInvited)(nil), // 39: InternalApi.User.MemberInvited + (*ActiveOwner)(nil), // 40: InternalApi.User.ActiveOwner + (*InactiveOwner)(nil), // 41: InternalApi.User.InactiveOwner + (*WorkEmailAdded)(nil), // 42: InternalApi.User.WorkEmailAdded + (*FavoriteCreated)(nil), // 43: InternalApi.User.FavoriteCreated + (*FavoriteDeleted)(nil), // 44: InternalApi.User.FavoriteDeleted + (*RepositoryScopes_RepositoryScope)(nil), // 45: InternalApi.User.RepositoryScopes.RepositoryScope + (*response_status.ResponseStatus)(nil), // 46: InternalApi.ResponseStatus + (*timestamp.Timestamp)(nil), // 47: google.protobuf.Timestamp + (*status.Status)(nil), // 48: google.rpc.Status + (repository_integrator.IntegrationType)(0), // 49: InternalApi.RepositoryIntegrator.IntegrationType } var file_user_proto_depIdxs = []int32{ 8, // 0: InternalApi.User.ListFavoritesResponse.favorites:type_name -> InternalApi.User.Favorite 0, // 1: InternalApi.User.Favorite.kind:type_name -> InternalApi.User.Favorite.Kind 33, // 2: InternalApi.User.DescribeManyResponse.users:type_name -> InternalApi.User.User - 47, // 3: InternalApi.User.DescribeManyResponse.status:type_name -> InternalApi.ResponseStatus - 47, // 4: InternalApi.User.DescribeResponse.status:type_name -> InternalApi.ResponseStatus - 48, // 5: InternalApi.User.DescribeResponse.created_at:type_name -> google.protobuf.Timestamp + 46, // 3: InternalApi.User.DescribeManyResponse.status:type_name -> InternalApi.ResponseStatus + 46, // 4: InternalApi.User.DescribeResponse.status:type_name -> InternalApi.ResponseStatus + 47, // 5: InternalApi.User.DescribeResponse.created_at:type_name -> google.protobuf.Timestamp 1, // 6: InternalApi.User.DescribeResponse.github_scope:type_name -> InternalApi.User.DescribeResponse.RepoScope - 48, // 7: InternalApi.User.DescribeResponse.blocked_at:type_name -> google.protobuf.Timestamp + 47, // 7: InternalApi.User.DescribeResponse.blocked_at:type_name -> google.protobuf.Timestamp 14, // 8: InternalApi.User.DescribeResponse.repository_scopes:type_name -> InternalApi.User.RepositoryScopes 13, // 9: InternalApi.User.DescribeResponse.repository_providers:type_name -> InternalApi.User.RepositoryProvider 33, // 10: InternalApi.User.DescribeResponse.user:type_name -> InternalApi.User.User 2, // 11: InternalApi.User.RepositoryProvider.type:type_name -> InternalApi.User.RepositoryProvider.Type 3, // 12: InternalApi.User.RepositoryProvider.scope:type_name -> InternalApi.User.RepositoryProvider.Scope - 46, // 13: InternalApi.User.RepositoryScopes.github:type_name -> InternalApi.User.RepositoryScopes.RepositoryScope - 46, // 14: InternalApi.User.RepositoryScopes.bitbucket:type_name -> InternalApi.User.RepositoryScopes.RepositoryScope + 45, // 13: InternalApi.User.RepositoryScopes.github:type_name -> InternalApi.User.RepositoryScopes.RepositoryScope + 45, // 14: InternalApi.User.RepositoryScopes.bitbucket:type_name -> InternalApi.User.RepositoryScopes.RepositoryScope 33, // 15: InternalApi.User.UpdateRequest.user:type_name -> InternalApi.User.User - 49, // 16: InternalApi.User.UpdateResponse.status:type_name -> google.rpc.Status + 48, // 16: InternalApi.User.UpdateResponse.status:type_name -> google.rpc.Status 33, // 17: InternalApi.User.UpdateResponse.user:type_name -> InternalApi.User.User 33, // 18: InternalApi.User.SearchUsersResponse.users:type_name -> InternalApi.User.User - 49, // 19: InternalApi.User.RegenerateTokenResponse.status:type_name -> google.rpc.Status - 50, // 20: InternalApi.User.GetRepositoryTokenRequest.integration_type:type_name -> InternalApi.RepositoryIntegrator.IntegrationType - 48, // 21: InternalApi.User.GetRepositoryTokenResponse.expires_at:type_name -> google.protobuf.Timestamp + 48, // 19: InternalApi.User.RegenerateTokenResponse.status:type_name -> google.rpc.Status + 49, // 20: InternalApi.User.GetRepositoryTokenRequest.integration_type:type_name -> InternalApi.RepositoryIntegrator.IntegrationType + 47, // 21: InternalApi.User.GetRepositoryTokenResponse.expires_at:type_name -> google.protobuf.Timestamp 13, // 22: InternalApi.User.DescribeByRepositoryProviderRequest.provider:type_name -> InternalApi.User.RepositoryProvider 2, // 23: InternalApi.User.RefreshRepositoryProviderRequest.type:type_name -> InternalApi.User.RepositoryProvider.Type 13, // 24: InternalApi.User.RefreshRepositoryProviderResponse.repository_provider:type_name -> InternalApi.User.RepositoryProvider - 48, // 25: InternalApi.User.User.blocked_at:type_name -> google.protobuf.Timestamp - 48, // 26: InternalApi.User.User.created_at:type_name -> google.protobuf.Timestamp - 13, // 27: InternalApi.User.User.repository_providers:type_name -> InternalApi.User.RepositoryProvider - 48, // 28: InternalApi.User.User.visited_at:type_name -> google.protobuf.Timestamp - 5, // 29: InternalApi.User.User.creation_source:type_name -> InternalApi.User.User.CreationSource - 48, // 30: InternalApi.User.UserCreated.timestamp:type_name -> google.protobuf.Timestamp - 48, // 31: InternalApi.User.UserDeleted.timestamp:type_name -> google.protobuf.Timestamp - 48, // 32: InternalApi.User.UserUpdated.timestamp:type_name -> google.protobuf.Timestamp - 48, // 33: InternalApi.User.UserJoinedOrganization.timestamp:type_name -> google.protobuf.Timestamp - 48, // 34: InternalApi.User.UserLeftOrganization.timestamp:type_name -> google.protobuf.Timestamp - 48, // 35: InternalApi.User.MemberInvited.timestamp:type_name -> google.protobuf.Timestamp - 48, // 36: InternalApi.User.ActiveOwner.timestamp:type_name -> google.protobuf.Timestamp - 48, // 37: InternalApi.User.InactiveOwner.timestamp:type_name -> google.protobuf.Timestamp - 48, // 38: InternalApi.User.WorkEmailAdded.timestamp:type_name -> google.protobuf.Timestamp - 8, // 39: InternalApi.User.FavoriteCreated.favorite:type_name -> InternalApi.User.Favorite - 48, // 40: InternalApi.User.FavoriteCreated.timestamp:type_name -> google.protobuf.Timestamp - 8, // 41: InternalApi.User.FavoriteDeleted.favorite:type_name -> InternalApi.User.Favorite - 48, // 42: InternalApi.User.FavoriteDeleted.timestamp:type_name -> google.protobuf.Timestamp - 4, // 43: InternalApi.User.RepositoryScopes.RepositoryScope.scope:type_name -> InternalApi.User.RepositoryScopes.RepositoryScope.Scope - 11, // 44: InternalApi.User.UserService.Describe:input_type -> InternalApi.User.DescribeRequest - 30, // 45: InternalApi.User.UserService.DescribeByRepositoryProvider:input_type -> InternalApi.User.DescribeByRepositoryProviderRequest - 17, // 46: InternalApi.User.UserService.SearchUsers:input_type -> InternalApi.User.SearchUsersRequest - 9, // 47: InternalApi.User.UserService.DescribeMany:input_type -> InternalApi.User.DescribeManyRequest - 15, // 48: InternalApi.User.UserService.Update:input_type -> InternalApi.User.UpdateRequest - 19, // 49: InternalApi.User.UserService.DeleteWithOwnedOrgs:input_type -> InternalApi.User.DeleteWithOwnedOrgsRequest - 20, // 50: InternalApi.User.UserService.RegenerateToken:input_type -> InternalApi.User.RegenerateTokenRequest - 6, // 51: InternalApi.User.UserService.ListFavorites:input_type -> InternalApi.User.ListFavoritesRequest - 8, // 52: InternalApi.User.UserService.CreateFavorite:input_type -> InternalApi.User.Favorite - 8, // 53: InternalApi.User.UserService.DeleteFavorite:input_type -> InternalApi.User.Favorite - 22, // 54: InternalApi.User.UserService.Referer:input_type -> InternalApi.User.RefererRequest - 24, // 55: InternalApi.User.UserService.CheckGithubToken:input_type -> InternalApi.User.CheckGithubTokenRequest - 26, // 56: InternalApi.User.UserService.BlockAccount:input_type -> InternalApi.User.BlockAccountRequest - 27, // 57: InternalApi.User.UserService.UnblockAccount:input_type -> InternalApi.User.UnblockAccountRequest - 28, // 58: InternalApi.User.UserService.GetRepositoryToken:input_type -> InternalApi.User.GetRepositoryTokenRequest - 31, // 59: InternalApi.User.UserService.RefreshRepositoryProvider:input_type -> InternalApi.User.RefreshRepositoryProviderRequest - 12, // 60: InternalApi.User.UserService.Describe:output_type -> InternalApi.User.DescribeResponse - 33, // 61: InternalApi.User.UserService.DescribeByRepositoryProvider:output_type -> InternalApi.User.User - 18, // 62: InternalApi.User.UserService.SearchUsers:output_type -> InternalApi.User.SearchUsersResponse - 10, // 63: InternalApi.User.UserService.DescribeMany:output_type -> InternalApi.User.DescribeManyResponse - 16, // 64: InternalApi.User.UserService.Update:output_type -> InternalApi.User.UpdateResponse - 33, // 65: InternalApi.User.UserService.DeleteWithOwnedOrgs:output_type -> InternalApi.User.User - 21, // 66: InternalApi.User.UserService.RegenerateToken:output_type -> InternalApi.User.RegenerateTokenResponse - 7, // 67: InternalApi.User.UserService.ListFavorites:output_type -> InternalApi.User.ListFavoritesResponse - 8, // 68: InternalApi.User.UserService.CreateFavorite:output_type -> InternalApi.User.Favorite - 8, // 69: InternalApi.User.UserService.DeleteFavorite:output_type -> InternalApi.User.Favorite - 23, // 70: InternalApi.User.UserService.Referer:output_type -> InternalApi.User.RefererResponse - 25, // 71: InternalApi.User.UserService.CheckGithubToken:output_type -> InternalApi.User.CheckGithubTokenResponse - 33, // 72: InternalApi.User.UserService.BlockAccount:output_type -> InternalApi.User.User - 33, // 73: InternalApi.User.UserService.UnblockAccount:output_type -> InternalApi.User.User - 29, // 74: InternalApi.User.UserService.GetRepositoryToken:output_type -> InternalApi.User.GetRepositoryTokenResponse - 32, // 75: InternalApi.User.UserService.RefreshRepositoryProvider:output_type -> InternalApi.User.RefreshRepositoryProviderResponse - 60, // [60:76] is the sub-list for method output_type - 44, // [44:60] is the sub-list for method input_type - 44, // [44:44] is the sub-list for extension type_name - 44, // [44:44] is the sub-list for extension extendee - 0, // [0:44] is the sub-list for field type_name + 13, // 25: InternalApi.User.CreateRequest.repository_providers:type_name -> InternalApi.User.RepositoryProvider + 47, // 26: InternalApi.User.User.blocked_at:type_name -> google.protobuf.Timestamp + 47, // 27: InternalApi.User.User.created_at:type_name -> google.protobuf.Timestamp + 13, // 28: InternalApi.User.User.repository_providers:type_name -> InternalApi.User.RepositoryProvider + 47, // 29: InternalApi.User.User.visited_at:type_name -> google.protobuf.Timestamp + 5, // 30: InternalApi.User.User.creation_source:type_name -> InternalApi.User.User.CreationSource + 47, // 31: InternalApi.User.UserCreated.timestamp:type_name -> google.protobuf.Timestamp + 47, // 32: InternalApi.User.UserDeleted.timestamp:type_name -> google.protobuf.Timestamp + 47, // 33: InternalApi.User.UserUpdated.timestamp:type_name -> google.protobuf.Timestamp + 47, // 34: InternalApi.User.UserJoinedOrganization.timestamp:type_name -> google.protobuf.Timestamp + 47, // 35: InternalApi.User.UserLeftOrganization.timestamp:type_name -> google.protobuf.Timestamp + 47, // 36: InternalApi.User.MemberInvited.timestamp:type_name -> google.protobuf.Timestamp + 47, // 37: InternalApi.User.ActiveOwner.timestamp:type_name -> google.protobuf.Timestamp + 47, // 38: InternalApi.User.InactiveOwner.timestamp:type_name -> google.protobuf.Timestamp + 47, // 39: InternalApi.User.WorkEmailAdded.timestamp:type_name -> google.protobuf.Timestamp + 8, // 40: InternalApi.User.FavoriteCreated.favorite:type_name -> InternalApi.User.Favorite + 47, // 41: InternalApi.User.FavoriteCreated.timestamp:type_name -> google.protobuf.Timestamp + 8, // 42: InternalApi.User.FavoriteDeleted.favorite:type_name -> InternalApi.User.Favorite + 47, // 43: InternalApi.User.FavoriteDeleted.timestamp:type_name -> google.protobuf.Timestamp + 4, // 44: InternalApi.User.RepositoryScopes.RepositoryScope.scope:type_name -> InternalApi.User.RepositoryScopes.RepositoryScope.Scope + 11, // 45: InternalApi.User.UserService.Describe:input_type -> InternalApi.User.DescribeRequest + 28, // 46: InternalApi.User.UserService.DescribeByRepositoryProvider:input_type -> InternalApi.User.DescribeByRepositoryProviderRequest + 29, // 47: InternalApi.User.UserService.DescribeByEmail:input_type -> InternalApi.User.DescribeByEmailRequest + 17, // 48: InternalApi.User.UserService.SearchUsers:input_type -> InternalApi.User.SearchUsersRequest + 9, // 49: InternalApi.User.UserService.DescribeMany:input_type -> InternalApi.User.DescribeManyRequest + 15, // 50: InternalApi.User.UserService.Update:input_type -> InternalApi.User.UpdateRequest + 19, // 51: InternalApi.User.UserService.DeleteWithOwnedOrgs:input_type -> InternalApi.User.DeleteWithOwnedOrgsRequest + 20, // 52: InternalApi.User.UserService.RegenerateToken:input_type -> InternalApi.User.RegenerateTokenRequest + 6, // 53: InternalApi.User.UserService.ListFavorites:input_type -> InternalApi.User.ListFavoritesRequest + 8, // 54: InternalApi.User.UserService.CreateFavorite:input_type -> InternalApi.User.Favorite + 8, // 55: InternalApi.User.UserService.DeleteFavorite:input_type -> InternalApi.User.Favorite + 22, // 56: InternalApi.User.UserService.CheckGithubToken:input_type -> InternalApi.User.CheckGithubTokenRequest + 24, // 57: InternalApi.User.UserService.BlockAccount:input_type -> InternalApi.User.BlockAccountRequest + 25, // 58: InternalApi.User.UserService.UnblockAccount:input_type -> InternalApi.User.UnblockAccountRequest + 26, // 59: InternalApi.User.UserService.GetRepositoryToken:input_type -> InternalApi.User.GetRepositoryTokenRequest + 30, // 60: InternalApi.User.UserService.RefreshRepositoryProvider:input_type -> InternalApi.User.RefreshRepositoryProviderRequest + 32, // 61: InternalApi.User.UserService.Create:input_type -> InternalApi.User.CreateRequest + 12, // 62: InternalApi.User.UserService.Describe:output_type -> InternalApi.User.DescribeResponse + 33, // 63: InternalApi.User.UserService.DescribeByRepositoryProvider:output_type -> InternalApi.User.User + 33, // 64: InternalApi.User.UserService.DescribeByEmail:output_type -> InternalApi.User.User + 18, // 65: InternalApi.User.UserService.SearchUsers:output_type -> InternalApi.User.SearchUsersResponse + 10, // 66: InternalApi.User.UserService.DescribeMany:output_type -> InternalApi.User.DescribeManyResponse + 16, // 67: InternalApi.User.UserService.Update:output_type -> InternalApi.User.UpdateResponse + 33, // 68: InternalApi.User.UserService.DeleteWithOwnedOrgs:output_type -> InternalApi.User.User + 21, // 69: InternalApi.User.UserService.RegenerateToken:output_type -> InternalApi.User.RegenerateTokenResponse + 7, // 70: InternalApi.User.UserService.ListFavorites:output_type -> InternalApi.User.ListFavoritesResponse + 8, // 71: InternalApi.User.UserService.CreateFavorite:output_type -> InternalApi.User.Favorite + 8, // 72: InternalApi.User.UserService.DeleteFavorite:output_type -> InternalApi.User.Favorite + 23, // 73: InternalApi.User.UserService.CheckGithubToken:output_type -> InternalApi.User.CheckGithubTokenResponse + 33, // 74: InternalApi.User.UserService.BlockAccount:output_type -> InternalApi.User.User + 33, // 75: InternalApi.User.UserService.UnblockAccount:output_type -> InternalApi.User.User + 27, // 76: InternalApi.User.UserService.GetRepositoryToken:output_type -> InternalApi.User.GetRepositoryTokenResponse + 31, // 77: InternalApi.User.UserService.RefreshRepositoryProvider:output_type -> InternalApi.User.RefreshRepositoryProviderResponse + 33, // 78: InternalApi.User.UserService.Create:output_type -> InternalApi.User.User + 62, // [62:79] is the sub-list for method output_type + 45, // [45:62] is the sub-list for method input_type + 45, // [45:45] is the sub-list for extension type_name + 45, // [45:45] is the sub-list for extension extendee + 0, // [0:45] is the sub-list for field type_name } func init() { file_user_proto_init() } @@ -3724,7 +3689,7 @@ func file_user_proto_init() { } } file_user_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*RefererRequest); i { + switch v := v.(*CheckGithubTokenRequest); i { case 0: return &v.state case 1: @@ -3736,7 +3701,7 @@ func file_user_proto_init() { } } file_user_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*RefererResponse); i { + switch v := v.(*CheckGithubTokenResponse); i { case 0: return &v.state case 1: @@ -3748,7 +3713,7 @@ func file_user_proto_init() { } } file_user_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*CheckGithubTokenRequest); i { + switch v := v.(*BlockAccountRequest); i { case 0: return &v.state case 1: @@ -3760,7 +3725,7 @@ func file_user_proto_init() { } } file_user_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*CheckGithubTokenResponse); i { + switch v := v.(*UnblockAccountRequest); i { case 0: return &v.state case 1: @@ -3772,7 +3737,7 @@ func file_user_proto_init() { } } file_user_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*BlockAccountRequest); i { + switch v := v.(*GetRepositoryTokenRequest); i { case 0: return &v.state case 1: @@ -3784,7 +3749,7 @@ func file_user_proto_init() { } } file_user_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*UnblockAccountRequest); i { + switch v := v.(*GetRepositoryTokenResponse); i { case 0: return &v.state case 1: @@ -3796,7 +3761,7 @@ func file_user_proto_init() { } } file_user_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetRepositoryTokenRequest); i { + switch v := v.(*DescribeByRepositoryProviderRequest); i { case 0: return &v.state case 1: @@ -3808,7 +3773,7 @@ func file_user_proto_init() { } } file_user_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetRepositoryTokenResponse); i { + switch v := v.(*DescribeByEmailRequest); i { case 0: return &v.state case 1: @@ -3820,7 +3785,7 @@ func file_user_proto_init() { } } file_user_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*DescribeByRepositoryProviderRequest); i { + switch v := v.(*RefreshRepositoryProviderRequest); i { case 0: return &v.state case 1: @@ -3832,7 +3797,7 @@ func file_user_proto_init() { } } file_user_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*RefreshRepositoryProviderRequest); i { + switch v := v.(*RefreshRepositoryProviderResponse); i { case 0: return &v.state case 1: @@ -3844,7 +3809,7 @@ func file_user_proto_init() { } } file_user_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*RefreshRepositoryProviderResponse); i { + switch v := v.(*CreateRequest); i { case 0: return &v.state case 1: @@ -3904,18 +3869,6 @@ func file_user_proto_init() { } } file_user_proto_msgTypes[31].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*UserRefererCreated); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_user_proto_msgTypes[32].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*UserJoinedOrganization); i { case 0: return &v.state @@ -3927,7 +3880,7 @@ func file_user_proto_init() { return nil } } - file_user_proto_msgTypes[33].Exporter = func(v interface{}, i int) interface{} { + file_user_proto_msgTypes[32].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*UserLeftOrganization); i { case 0: return &v.state @@ -3939,7 +3892,7 @@ func file_user_proto_init() { return nil } } - file_user_proto_msgTypes[34].Exporter = func(v interface{}, i int) interface{} { + file_user_proto_msgTypes[33].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MemberInvited); i { case 0: return &v.state @@ -3951,7 +3904,7 @@ func file_user_proto_init() { return nil } } - file_user_proto_msgTypes[35].Exporter = func(v interface{}, i int) interface{} { + file_user_proto_msgTypes[34].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ActiveOwner); i { case 0: return &v.state @@ -3963,7 +3916,7 @@ func file_user_proto_init() { return nil } } - file_user_proto_msgTypes[36].Exporter = func(v interface{}, i int) interface{} { + file_user_proto_msgTypes[35].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*InactiveOwner); i { case 0: return &v.state @@ -3975,7 +3928,7 @@ func file_user_proto_init() { return nil } } - file_user_proto_msgTypes[37].Exporter = func(v interface{}, i int) interface{} { + file_user_proto_msgTypes[36].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*WorkEmailAdded); i { case 0: return &v.state @@ -3987,7 +3940,7 @@ func file_user_proto_init() { return nil } } - file_user_proto_msgTypes[38].Exporter = func(v interface{}, i int) interface{} { + file_user_proto_msgTypes[37].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*FavoriteCreated); i { case 0: return &v.state @@ -3999,7 +3952,7 @@ func file_user_proto_init() { return nil } } - file_user_proto_msgTypes[39].Exporter = func(v interface{}, i int) interface{} { + file_user_proto_msgTypes[38].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*FavoriteDeleted); i { case 0: return &v.state @@ -4011,7 +3964,7 @@ func file_user_proto_init() { return nil } } - file_user_proto_msgTypes[40].Exporter = func(v interface{}, i int) interface{} { + file_user_proto_msgTypes[39].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*RepositoryScopes_RepositoryScope); i { case 0: return &v.state @@ -4030,7 +3983,7 @@ func file_user_proto_init() { GoPackagePath: reflect.TypeOf(x{}).PkgPath(), RawDescriptor: file_user_proto_rawDesc, NumEnums: 6, - NumMessages: 41, + NumMessages: 40, NumExtensions: 0, NumServices: 1, }, diff --git a/ee/velocity/pkg/protos/user/user_grpc.pb.go b/ee/velocity/pkg/protos/user/user_grpc.pb.go index 672c49879..d42c61546 100644 --- a/ee/velocity/pkg/protos/user/user_grpc.pb.go +++ b/ee/velocity/pkg/protos/user/user_grpc.pb.go @@ -21,6 +21,7 @@ const _ = grpc.SupportPackageIsVersion7 const ( UserService_Describe_FullMethodName = "/InternalApi.User.UserService/Describe" UserService_DescribeByRepositoryProvider_FullMethodName = "/InternalApi.User.UserService/DescribeByRepositoryProvider" + UserService_DescribeByEmail_FullMethodName = "/InternalApi.User.UserService/DescribeByEmail" UserService_SearchUsers_FullMethodName = "/InternalApi.User.UserService/SearchUsers" UserService_DescribeMany_FullMethodName = "/InternalApi.User.UserService/DescribeMany" UserService_Update_FullMethodName = "/InternalApi.User.UserService/Update" @@ -29,12 +30,12 @@ const ( UserService_ListFavorites_FullMethodName = "/InternalApi.User.UserService/ListFavorites" UserService_CreateFavorite_FullMethodName = "/InternalApi.User.UserService/CreateFavorite" UserService_DeleteFavorite_FullMethodName = "/InternalApi.User.UserService/DeleteFavorite" - UserService_Referer_FullMethodName = "/InternalApi.User.UserService/Referer" UserService_CheckGithubToken_FullMethodName = "/InternalApi.User.UserService/CheckGithubToken" UserService_BlockAccount_FullMethodName = "/InternalApi.User.UserService/BlockAccount" UserService_UnblockAccount_FullMethodName = "/InternalApi.User.UserService/UnblockAccount" UserService_GetRepositoryToken_FullMethodName = "/InternalApi.User.UserService/GetRepositoryToken" UserService_RefreshRepositoryProvider_FullMethodName = "/InternalApi.User.UserService/RefreshRepositoryProvider" + UserService_Create_FullMethodName = "/InternalApi.User.UserService/Create" ) // UserServiceClient is the client API for UserService service. @@ -47,6 +48,9 @@ type UserServiceClient interface { // Operation is called to find and describe an existing user based on repository provider id // Operation is synchronous. DescribeByRepositoryProvider(ctx context.Context, in *DescribeByRepositoryProviderRequest, opts ...grpc.CallOption) (*User, error) + // Operation is called to find and describe an existing user based on email address + // Operation is synchronous. + DescribeByEmail(ctx context.Context, in *DescribeByEmailRequest, opts ...grpc.CallOption) (*User, error) // Operation is called to search for users // Operation is synchronous. SearchUsers(ctx context.Context, in *SearchUsersRequest, opts ...grpc.CallOption) (*SearchUsersResponse, error) @@ -71,9 +75,6 @@ type UserServiceClient interface { // Operation is called to delete the favorite record. // Operation is synchronous. DeleteFavorite(ctx context.Context, in *Favorite, opts ...grpc.CallOption) (*Favorite, error) - // Operation is called to describe an refere data for a user. - // Operation is synchronous. - Referer(ctx context.Context, in *RefererRequest, opts ...grpc.CallOption) (*RefererResponse, error) // Operation is called to check the status of an github token. // Operation is synchronous. CheckGithubToken(ctx context.Context, in *CheckGithubTokenRequest, opts ...grpc.CallOption) (*CheckGithubTokenResponse, error) @@ -90,6 +91,9 @@ type UserServiceClient interface { // for a given user and provider type // Operation is synchronous. RefreshRepositoryProvider(ctx context.Context, in *RefreshRepositoryProviderRequest, opts ...grpc.CallOption) (*RefreshRepositoryProviderResponse, error) + // Operation is called create a new user, passing username and name. + // Operation is synchronous. + Create(ctx context.Context, in *CreateRequest, opts ...grpc.CallOption) (*User, error) } type userServiceClient struct { @@ -118,6 +122,15 @@ func (c *userServiceClient) DescribeByRepositoryProvider(ctx context.Context, in return out, nil } +func (c *userServiceClient) DescribeByEmail(ctx context.Context, in *DescribeByEmailRequest, opts ...grpc.CallOption) (*User, error) { + out := new(User) + err := c.cc.Invoke(ctx, UserService_DescribeByEmail_FullMethodName, in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + func (c *userServiceClient) SearchUsers(ctx context.Context, in *SearchUsersRequest, opts ...grpc.CallOption) (*SearchUsersResponse, error) { out := new(SearchUsersResponse) err := c.cc.Invoke(ctx, UserService_SearchUsers_FullMethodName, in, out, opts...) @@ -190,15 +203,6 @@ func (c *userServiceClient) DeleteFavorite(ctx context.Context, in *Favorite, op return out, nil } -func (c *userServiceClient) Referer(ctx context.Context, in *RefererRequest, opts ...grpc.CallOption) (*RefererResponse, error) { - out := new(RefererResponse) - err := c.cc.Invoke(ctx, UserService_Referer_FullMethodName, in, out, opts...) - if err != nil { - return nil, err - } - return out, nil -} - func (c *userServiceClient) CheckGithubToken(ctx context.Context, in *CheckGithubTokenRequest, opts ...grpc.CallOption) (*CheckGithubTokenResponse, error) { out := new(CheckGithubTokenResponse) err := c.cc.Invoke(ctx, UserService_CheckGithubToken_FullMethodName, in, out, opts...) @@ -244,6 +248,15 @@ func (c *userServiceClient) RefreshRepositoryProvider(ctx context.Context, in *R return out, nil } +func (c *userServiceClient) Create(ctx context.Context, in *CreateRequest, opts ...grpc.CallOption) (*User, error) { + out := new(User) + err := c.cc.Invoke(ctx, UserService_Create_FullMethodName, in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + // UserServiceServer is the server API for UserService service. // All implementations should embed UnimplementedUserServiceServer // for forward compatibility @@ -254,6 +267,9 @@ type UserServiceServer interface { // Operation is called to find and describe an existing user based on repository provider id // Operation is synchronous. DescribeByRepositoryProvider(context.Context, *DescribeByRepositoryProviderRequest) (*User, error) + // Operation is called to find and describe an existing user based on email address + // Operation is synchronous. + DescribeByEmail(context.Context, *DescribeByEmailRequest) (*User, error) // Operation is called to search for users // Operation is synchronous. SearchUsers(context.Context, *SearchUsersRequest) (*SearchUsersResponse, error) @@ -278,9 +294,6 @@ type UserServiceServer interface { // Operation is called to delete the favorite record. // Operation is synchronous. DeleteFavorite(context.Context, *Favorite) (*Favorite, error) - // Operation is called to describe an refere data for a user. - // Operation is synchronous. - Referer(context.Context, *RefererRequest) (*RefererResponse, error) // Operation is called to check the status of an github token. // Operation is synchronous. CheckGithubToken(context.Context, *CheckGithubTokenRequest) (*CheckGithubTokenResponse, error) @@ -297,6 +310,9 @@ type UserServiceServer interface { // for a given user and provider type // Operation is synchronous. RefreshRepositoryProvider(context.Context, *RefreshRepositoryProviderRequest) (*RefreshRepositoryProviderResponse, error) + // Operation is called create a new user, passing username and name. + // Operation is synchronous. + Create(context.Context, *CreateRequest) (*User, error) } // UnimplementedUserServiceServer should be embedded to have forward compatible implementations. @@ -309,6 +325,9 @@ func (UnimplementedUserServiceServer) Describe(context.Context, *DescribeRequest func (UnimplementedUserServiceServer) DescribeByRepositoryProvider(context.Context, *DescribeByRepositoryProviderRequest) (*User, error) { return nil, status.Errorf(codes.Unimplemented, "method DescribeByRepositoryProvider not implemented") } +func (UnimplementedUserServiceServer) DescribeByEmail(context.Context, *DescribeByEmailRequest) (*User, error) { + return nil, status.Errorf(codes.Unimplemented, "method DescribeByEmail not implemented") +} func (UnimplementedUserServiceServer) SearchUsers(context.Context, *SearchUsersRequest) (*SearchUsersResponse, error) { return nil, status.Errorf(codes.Unimplemented, "method SearchUsers not implemented") } @@ -333,9 +352,6 @@ func (UnimplementedUserServiceServer) CreateFavorite(context.Context, *Favorite) func (UnimplementedUserServiceServer) DeleteFavorite(context.Context, *Favorite) (*Favorite, error) { return nil, status.Errorf(codes.Unimplemented, "method DeleteFavorite not implemented") } -func (UnimplementedUserServiceServer) Referer(context.Context, *RefererRequest) (*RefererResponse, error) { - return nil, status.Errorf(codes.Unimplemented, "method Referer not implemented") -} func (UnimplementedUserServiceServer) CheckGithubToken(context.Context, *CheckGithubTokenRequest) (*CheckGithubTokenResponse, error) { return nil, status.Errorf(codes.Unimplemented, "method CheckGithubToken not implemented") } @@ -351,6 +367,9 @@ func (UnimplementedUserServiceServer) GetRepositoryToken(context.Context, *GetRe func (UnimplementedUserServiceServer) RefreshRepositoryProvider(context.Context, *RefreshRepositoryProviderRequest) (*RefreshRepositoryProviderResponse, error) { return nil, status.Errorf(codes.Unimplemented, "method RefreshRepositoryProvider not implemented") } +func (UnimplementedUserServiceServer) Create(context.Context, *CreateRequest) (*User, error) { + return nil, status.Errorf(codes.Unimplemented, "method Create not implemented") +} // UnsafeUserServiceServer may be embedded to opt out of forward compatibility for this service. // Use of this interface is not recommended, as added methods to UserServiceServer will @@ -399,6 +418,24 @@ func _UserService_DescribeByRepositoryProvider_Handler(srv interface{}, ctx cont return interceptor(ctx, in, info, handler) } +func _UserService_DescribeByEmail_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(DescribeByEmailRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(UserServiceServer).DescribeByEmail(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: UserService_DescribeByEmail_FullMethodName, + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(UserServiceServer).DescribeByEmail(ctx, req.(*DescribeByEmailRequest)) + } + return interceptor(ctx, in, info, handler) +} + func _UserService_SearchUsers_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(SearchUsersRequest) if err := dec(in); err != nil { @@ -543,24 +580,6 @@ func _UserService_DeleteFavorite_Handler(srv interface{}, ctx context.Context, d return interceptor(ctx, in, info, handler) } -func _UserService_Referer_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { - in := new(RefererRequest) - if err := dec(in); err != nil { - return nil, err - } - if interceptor == nil { - return srv.(UserServiceServer).Referer(ctx, in) - } - info := &grpc.UnaryServerInfo{ - Server: srv, - FullMethod: UserService_Referer_FullMethodName, - } - handler := func(ctx context.Context, req interface{}) (interface{}, error) { - return srv.(UserServiceServer).Referer(ctx, req.(*RefererRequest)) - } - return interceptor(ctx, in, info, handler) -} - func _UserService_CheckGithubToken_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(CheckGithubTokenRequest) if err := dec(in); err != nil { @@ -651,6 +670,24 @@ func _UserService_RefreshRepositoryProvider_Handler(srv interface{}, ctx context return interceptor(ctx, in, info, handler) } +func _UserService_Create_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(CreateRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(UserServiceServer).Create(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: UserService_Create_FullMethodName, + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(UserServiceServer).Create(ctx, req.(*CreateRequest)) + } + return interceptor(ctx, in, info, handler) +} + // UserService_ServiceDesc is the grpc.ServiceDesc for UserService service. // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) @@ -666,6 +703,10 @@ var UserService_ServiceDesc = grpc.ServiceDesc{ MethodName: "DescribeByRepositoryProvider", Handler: _UserService_DescribeByRepositoryProvider_Handler, }, + { + MethodName: "DescribeByEmail", + Handler: _UserService_DescribeByEmail_Handler, + }, { MethodName: "SearchUsers", Handler: _UserService_SearchUsers_Handler, @@ -698,10 +739,6 @@ var UserService_ServiceDesc = grpc.ServiceDesc{ MethodName: "DeleteFavorite", Handler: _UserService_DeleteFavorite_Handler, }, - { - MethodName: "Referer", - Handler: _UserService_Referer_Handler, - }, { MethodName: "CheckGithubToken", Handler: _UserService_CheckGithubToken_Handler, @@ -722,6 +759,10 @@ var UserService_ServiceDesc = grpc.ServiceDesc{ MethodName: "RefreshRepositoryProvider", Handler: _UserService_RefreshRepositoryProvider_Handler, }, + { + MethodName: "Create", + Handler: _UserService_Create_Handler, + }, }, Streams: []grpc.StreamDesc{}, Metadata: "user.proto", diff --git a/ee/velocity/pkg/protos/velocity/velocity.pb.go b/ee/velocity/pkg/protos/velocity/velocity.pb.go index 4ff19b5b0..519027281 100644 --- a/ee/velocity/pkg/protos/velocity/velocity.pb.go +++ b/ee/velocity/pkg/protos/velocity/velocity.pb.go @@ -5113,11 +5113,11 @@ var file_velocity_proto_rawDesc = []byte{ 0x61, 0x6c, 0x41, 0x70, 0x69, 0x2e, 0x56, 0x65, 0x6c, 0x6f, 0x63, 0x69, 0x74, 0x79, 0x2e, 0x49, 0x6e, 0x69, 0x74, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x65, 0x46, 0x6c, 0x61, 0x6b, 0x79, 0x54, 0x65, 0x73, 0x74, 0x73, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, - 0x73, 0x65, 0x42, 0x36, 0x5a, 0x34, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, - 0x2f, 0x72, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x65, 0x64, 0x74, 0x65, 0x78, 0x74, 0x2f, 0x76, 0x65, - 0x6c, 0x6f, 0x63, 0x69, 0x74, 0x79, 0x2f, 0x70, 0x6b, 0x67, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, - 0x73, 0x2f, 0x76, 0x65, 0x6c, 0x6f, 0x63, 0x69, 0x74, 0x79, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, - 0x6f, 0x33, + 0x73, 0x65, 0x42, 0x3f, 0x5a, 0x3d, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, + 0x2f, 0x73, 0x65, 0x6d, 0x61, 0x70, 0x68, 0x6f, 0x72, 0x65, 0x69, 0x6f, 0x2f, 0x73, 0x65, 0x6d, + 0x61, 0x70, 0x68, 0x6f, 0x72, 0x65, 0x2f, 0x76, 0x65, 0x6c, 0x6f, 0x63, 0x69, 0x74, 0x79, 0x2f, + 0x70, 0x6b, 0x67, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x73, 0x2f, 0x76, 0x65, 0x6c, 0x6f, 0x63, + 0x69, 0x74, 0x79, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( diff --git a/ee/velocity/test/support/fake_projecthub_service.go b/ee/velocity/test/support/fake_projecthub_service.go index aeda013ac..5069d3874 100644 --- a/ee/velocity/test/support/fake_projecthub_service.go +++ b/ee/velocity/test/support/fake_projecthub_service.go @@ -72,3 +72,19 @@ func (f FakeProjectHubServiceServer) GithubAppSwitch(ctx context.Context, in *pb panic("implement me") } + +func (f FakeProjectHubServiceServer) FinishOnboarding(ctx context.Context, in *pb.FinishOnboardingRequest) (*pb.FinishOnboardingResponse, error) { + panic("implement me") +} + +func (f FakeProjectHubServiceServer) ListKeyset(ctx context.Context, in *pb.ListKeysetRequest) (*pb.ListKeysetResponse, error) { + panic("implement me") +} + +func (f FakeProjectHubServiceServer) RegenerateWebhookSecret(ctx context.Context, in *pb.RegenerateWebhookSecretRequest) (*pb.RegenerateWebhookSecretResponse, error) { + panic("implement me") +} + +func (f FakeProjectHubServiceServer) Restore(ctx context.Context, in *pb.RestoreRequest) (*pb.RestoreResponse, error) { + panic("implement me") +} diff --git a/front/.gitignore b/front/.gitignore index 6bae3f53e..d9c60540c 100644 --- a/front/.gitignore +++ b/front/.gitignore @@ -31,7 +31,6 @@ npm-debug.log tags .elixir_ls/ browser_logs.log -/log .vscode .tool-versions .direnv diff --git a/front/Dockerfile b/front/Dockerfile index bf08ca452..7765b402d 100644 --- a/front/Dockerfile +++ b/front/Dockerfile @@ -45,7 +45,7 @@ RUN mix sentry_recompile && mix compile --warnings-as-errors # -- elixir stage # -- node stage -FROM node:16-alpine as node +FROM node:16-alpine AS node WORKDIR /assets COPY front/assets/package.json front/assets/package-lock.json ./ RUN npm set progress=false && npm install @@ -56,7 +56,7 @@ COPY front/assets ./ FROM elixir AS dev WORKDIR /app RUN apk update \ - && apk add --no-cache chromium-chromedriver inotify-tools bash gnupg entr + && apk add --no-cache chromium-chromedriver inotify-tools bash gnupg COPY --from=elixir /elixir ./ COPY --from=node /assets ./assets @@ -64,7 +64,7 @@ WORKDIR /app/assets RUN node build.js WORKDIR /app -CMD ["sh", "-c", "find lib config | entr -n -r mix phx.server"] +CMD ["sh", "-c", "elixir --name front@127.0.0.1 --cookie mycookie -S mix phx.server"] # -- dev stage # -- builder stage - build artifacts are created here diff --git a/front/Makefile b/front/Makefile index 4c43954d8..6d610f42f 100644 --- a/front/Makefile +++ b/front/Makefile @@ -29,6 +29,11 @@ CACHE_PORT=6379 CACHE_POOL_SIZE=5 AMQP_URL=amqp://0.0.0.0:5672 +# +# Internal API URLs env file +# +INTERNAL_API_ENV_FILE = env/.env.internal-apis + CONTAINER_ENV_VARS = \ -e CI=$(CI) \ -e MIX_ENV=$(MIX_ENV) \ @@ -42,11 +47,12 @@ CONTAINER_ENV_VARS = \ -e SEED_PROJECTS="initializing_failed,zebra,guard,errored,test_results,test_results_debug,after_pipeline,bitbucket" \ -e SEED_CLOUD_MACHINES=true \ -e SECRET_KEY_BASE="keyboard-cat-please-use-this-only-for-dev-and-testing-it-is-insecure" \ - -e SESSION_SIGNING_SALT="keyboard-cat-please-use-this-only-for-dev-and-testing-it-is-insecure" + -e SESSION_SIGNING_SALT="keyboard-cat-please-use-this-only-for-dev-and-testing-it-is-insecure" \ + --env-file $(INTERNAL_API_ENV_FILE) CONTAINER_CE_ENV_VARS =\ - -e CE_ROLES=true \ + -e EDITION=ce \ -e SEED_CLOUD_MACHINES=false \ -e SEED_SELF_HOSTED_AGENTS=true \ -e SEED_CE_FEATURES=true \ @@ -55,7 +61,8 @@ CONTAINER_CE_ENV_VARS =\ -e WORKFLOW_TEMPLATES_YAMLS_PATH="/app/workflow_templates/ce" \ -e EXCLUDE_STUBS="GoferMock" \ -e SECRET_KEY_BASE="keyboard-cat-please-use-this-only-for-dev-and-testing-it-is-insecure" \ - -e SESSION_SIGNING_SALT="keyboard-cat-please-use-this-only-for-dev-and-testing-it-is-insecure" + -e SESSION_SIGNING_SALT="keyboard-cat-please-use-this-only-for-dev-and-testing-it-is-insecure" \ + --env-file $(INTERNAL_API_ENV_FILE) test.ex.setup: export MIX_ENV=test test.ex.setup: @@ -83,13 +90,6 @@ pb.gen.public: scripts/vagrant_sudo chown -R $$(id -u $${USER}):$$(id -g $${USER}) lib/public_api rm -rf $(TMP_REPO_DIR) -workflow.templates.gen: - @echo "Generating workflow templates" - rm -rf $(TMP_REPO_DIR) - git clone git@github.com:renderedtext/app-design.git $(TMP_REPO_DIR) && (cd $(TMP_REPO_DIR) && git checkout $(APP_DESIGN_BRANCH) && make check.templates && cd -) - ./scripts/generate-workflow-templates.sh $(TMP_REPO_DIR) - rm -rf $(TMP_REPO_DIR) - deps.check: build ifeq ($(CI),) docker compose $(DOCKER_COMPOSE_OPTS) run --no-deps -e MIX_ENV=dev app ash -c 'mix deps.unlock --check-unused' @@ -158,3 +158,8 @@ dev.ce.server: build console.ce.bash: DOCKER_COMPOSE_RUN_OPTS="--service-ports $(CONTAINER_CE_ENV_VARS)" $(MAKE) console.bash + +workflow.templates.check: + @echo "📦 Checking templates..." + ./scripts/check-templates.sh workflow_templates/saas_new + ./scripts/check-templates.sh workflow_templates/ce_new diff --git a/front/assets/.eslintignore b/front/assets/.eslintignore index d25e2178f..360c19ef9 100644 --- a/front/assets/.eslintignore +++ b/front/assets/.eslintignore @@ -1,4 +1,4 @@ -# ESlint will ingore files listed here +# ESlint will ignore files listed here # This is a "temporary"(🙃) list of files that are skipped by the eslint linter. # When working on one of these files, you can remove it from this list, and fix the linting errors 🙏. js/workflow_view/trigger_event.js diff --git a/front/assets/build.js b/front/assets/build.js index 7b7e0110c..e4bf10708 100644 --- a/front/assets/build.js +++ b/front/assets/build.js @@ -1,10 +1,14 @@ const esbuild = require('esbuild') const fs = require('fs-extra') const path = require('path') +const { exec } = require('child_process') +const { promisify } = require('util') +const execAsync = promisify(exec) const bundle = true const logLevel = process.env.ESBUILD_LOG_LEVEL || 'silent' const watch = !!process.env.ESBUILD_WATCH +const isProd = process.env.MIX_ENV === 'prod' || process.env.NODE_ENV === 'production' const plugins = [ // Add and configure plugins here @@ -12,15 +16,40 @@ const plugins = [ const outputDir = '../priv/static/assets' +// Function to process CSS files +const processCss = async () => { + console.log('Processing CSS files...') + + try { + // Process main.css which imports all other CSS files + const inputFile = 'css/main.css' + const outputFile = path.join(outputDir, 'css/app.css') + + // Set NODE_ENV for PostCSS to handle minification + const env = isProd ? 'NODE_ENV=production' : 'NODE_ENV=development' + const postcssCmd = `${env} npx postcss ${inputFile} -o ${outputFile}` + + await execAsync(postcssCmd) + console.log(`CSS processed successfully (${isProd ? 'production' : 'development'} mode)`) + + } catch (error) { + console.error('Error processing CSS:', error) + throw error + } +} + // Function to copy static assets -const copyAssets = () => { - console.log('Copying original assets to output directory...') +const copyAssets = async () => { + console.log('Copying static assets to output directory...') fs.ensureDirSync(path.join(outputDir, 'css')) fs.ensureDirSync(path.join(outputDir, 'fonts')) fs.ensureDirSync(path.join(outputDir, 'images')) - fs.copySync('css', path.join(outputDir, 'css'), { overwrite: true }) + // Process CSS files + await processCss() + + // Copy fonts and images fs.copySync('fonts', path.join(outputDir, 'fonts'), { overwrite: true }) fs.copySync('images', path.join(outputDir, 'images'), { overwrite: true }) @@ -53,18 +82,53 @@ const buildOptions = { } if (watch) { - esbuild.context(buildOptions).then(context => { + esbuild.context(buildOptions).then(async context => { context.watch() - copyAssets() + await copyAssets() + + const chokidar = require('chokidar') + const cssDir = path.join(__dirname, 'css') + + const cssWatcher = chokidar.watch(cssDir, { + persistent: true, + ignoreInitial: true, + usePolling: true, // REQUIRED for macOS Docker + interval: 1000, + binaryInterval: 1000, + awaitWriteFinish: { + stabilityThreshold: 500, + pollInterval: 100 + }, + useFsEvents: false, + alwaysStat: true, + depth: 99, + atomic: false + }) + + cssWatcher + .on('change', async (path) => { + // Only process CSS files + if (path.endsWith('.css')) { + console.log('CSS file changed, reprocessing...') + try { + await processCss() + } catch (error) { + console.error('Error processing CSS:', error) + } + } + }) + .on('ready', () => console.log('CSS watcher ready')) + process.stdin.on('close', () => { + cssWatcher.close() context.dispose() process.exit(0) }) process.stdin.resume() }) } else { - esbuild.build(buildOptions).then(() => { - copyAssets() + esbuild.build(buildOptions).then(async () => { + await copyAssets() }).catch(error => { console.error('Build error:', error) process.exit(1) diff --git a/front/assets/css/app-semaphore-min.css b/front/assets/css/app-semaphore-min.css deleted file mode 100644 index 8972d0cf6..000000000 --- a/front/assets/css/app-semaphore-min.css +++ /dev/null @@ -1 +0,0 @@ -@font-face{font-family:"Fakt Pro";src:url("../fonts/Fakt-Normal.woff2") format("woff2"),url("../fonts/Fakt-Normal.wof") format("woff");font-weight:normal;font-style:normal;font-display:swap}@font-face{font-family:"Fakt Pro";src:url("../fonts/Fakt-SemiBold.woff2") format("woff2"),url("../fonts/Fakt-SemiBold.wof") format("woff");font-weight:bold;font-style:normal;font-display:swap}@font-face{font-family:"Jetbrains Mono";src:url("../fonts/jetbrains-mono.woff2") format("woff2"),url("../fonts/jetbrains-mono.wof") format("woff");font-weight:normal;font-style:normal;font-display:swap}@font-face{font-family:"Jetbrains Mono";src:url("../fonts/jetbrains-mono-italic.woff2") format("woff2"),url("../fonts/jetbrains-mono-italic.wof") format("woff");font-weight:normal;font-style:italic;font-display:swap}.label{display:block;font-weight:bold;font-size:15px;font-size:.9375rem;margin-bottom:2px}.form-control{-moz-appearance:none;-webkit-appearance:none;outline:0;font-size:16px;font-size:1rem;line-height:1.5;padding:4px 10px;border:0;border-radius:6px;color:#202b30;background-color:#FFF;font-family:'Fakt Pro',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,'Open Sans','Helvetica Neue',sans-serif;transition:background .1s ease,border-color .1s ease;position:relative}input.form-control,textarea.form-control{box-shadow:0 0 0 1px rgba(0,0,0,.2),inset 0 1px 1px 0 #e5e8ea}select.form-control{padding-right:24px;padding-right:1.5rem;background-position:right 8px center;background-repeat:no-repeat;background-image:url('data:image/svg+xml;utf8,');box-shadow:0 0 0 1px rgba(0,0,0,.2),inset 0 -1px 1px 0 #e5e8ea}select:-moz-focusring{color:transparent;text-shadow:0 0 0 #000}optgroup{font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,'Open Sans','Helvetica Neue',sans-serif !important;font-style:normal}.form-control-error{box-shadow:0 0 0 2px #e53935 !important}.form-control-small{font-size:15px;font-size:.9375rem;padding:3px 8px}.form-control-tiny{font-size:14px;font-size:.875rem;padding:1px 4px}.form-control-large{font-size:18px;font-size:1.125rem;padding:6px 10px}input[disabled],select[disabled],textarea[disabled]{color:#96a0a6;background-color:#f7fafb;cursor:not-allowed;box-shadow:0 0;box-shadow:0 0 0 1px rgba(0,0,0,.2)}input[type="checkbox"][disabled],input[type="radio"][disabled]{opacity:1}.form-control:focus{outline:0;box-shadow:0 0 0 2px #00359f !important;z-index:4}@media screen and (-webkit-min-device-pixel-ratio:0){select.form-control:focus{outline:0;box-shadow:0 0 0 2px #00359f !important}}.form-control::-webkit-input-placeholder{opacity:1;color:#96a0a6}.form-control:-ms-input-placeholder{opacity:1;color:#96a0a6}.form-control::placeholder{opacity:1;color:#96a0a6}textarea{display:block;min-height:50px}.input-group{display:-ms-flexbox;display:flex}.input-group .form-control:first-child{border-bottom-right-radius:0;border-top-right-radius:0}.input-group .form-control:last-child{border-bottom-left-radius:0;border-top-left-radius:0}.input-group .form-control:not(:first-child){margin-left:0}.input-group .form-control:not(:first-child):not(:last-child){border-radius:0}.input-button-group{display:-ms-flexbox;display:flex}.input-button-group .form-control{border-bottom-right-radius:0;border-top-right-radius:0}.input-button-group .btn{border-bottom-left-radius:0;border-top-left-radius:0;margin-left:1px}.input-textarea-group input{border-bottom-left-radius:0;border-bottom-right-radius:0}.input-textarea-group textarea{border-top-left-radius:0;border-top-right-radius:0}.form-toggle{position:relative;height:36px}.form-toggle [disabled]+label,.form-toggle [disabled]:hover+label{color:#999}.form-toggle [type="checkbox"]{position:absolute;top:auto;overflow:hidden;clip:rect(1px,1px,1px,1px);width:1px;height:1px;white-space:nowrap}.form-toggle [type="checkbox"]+label{display:block;position:relative;padding:.5em;padding-left:4em;max-width:calc(100% - 2em)}.form-toggle [type="checkbox"]:focus+label::before{box-shadow:0 0 0 3px #cedcff}.form-toggle [type="checkbox"]+label::before,.form-toggle [type="checkbox"]+label::after{content:"";position:absolute;height:1.5em;transition:all .25s ease}.form-toggle [type="checkbox"]+label::before{left:0;top:.2em;width:3em;border:.2em solid #677278;background:#677278;border-radius:1.1em}.form-toggle [type="checkbox"]+label::after{left:0;top:.25em;background-color:#fff;background-position:center center;border-radius:50%;width:1.5em;border:.15em solid #677278}.form-toggle [type="checkbox"]:checked+label::after{left:1.6em;border-color:#00a569;color:#00a569}.form-toggle [type="checkbox"]:indeterminate+label::after{left:.8em}.form-toggle [type="checkbox"]:indeterminate+label::before{background-color:#ddd}.form-toggle [type="checkbox"]:checked+label::before{background-color:#00a569;border-color:#00a569}.form-toggle [type="checkbox"][disabled]+label::before{background-color:transparent;border-color:#ddd}.form-toggle [type="checkbox"][disabled]+label::after{border-color:#ddd}.form-toggle [disabled]:hover+label{color:#96a0a6}.form-toggle [type="checkbox"][disabled]:hover+label::before{box-shadow:none}.form-toggle [type="checkbox"][disabled]:hover+label::after{background-image:none}@media screen and (-ms-high-contrast:active){.form-toggle [type="checkbox"]:focus+label::before,.form-toggle [type="checkbox"]:hover+label::before{outline:1px dotted windowText;outline-offset:.25em}.form-toggle [type="checkbox"]+label::after{background-color:windowText}.form-toggle [type="checkbox"][disabled]+label::after{background-color:transparent}}@media screen and (prefers-reduced-motion:reduce){.form-toggle [type="checkbox"]+label::before,.form-toggle [type="checkbox"]+label::after{transition:none}}.btn{font-family:inherit;font-size:16px;font-size:1rem;font-weight:400;text-decoration:none;text-align:center;display:inline-block;-ms-flex-align:center;align-items:center;line-height:1.5;padding:4px 16px 3px;margin:0;border-radius:6px;height:auto;outline:0;vertical-align:middle;-webkit-appearance:none;color:inherit;background-color:transparent;border:0;cursor:pointer;position:relative;transition:all .05s ease-in}::-moz-focus-inner{border:0;padding:0}.btn-primary{color:white;background-color:#00359f;box-shadow:0 0 0 1px #00359f}.btn-primary:hover{background-color:#1149b9;box-shadow:0 0 0 1px #1149b9}.btn-green{color:white;background-color:#00a569;box-shadow:0 0 0 1px #00a569}.btn-secondary,.btn-live{color:#202b30;background-color:white;box-shadow:0 0 0 1px rgba(0,0,0,.2),inset 0 -1px 1px 0 #e5e8ea}.btn-secondary:hover{box-shadow:0 0 0 1px rgba(0,0,0,.3),inset 0 -1px 1px 0 #e5e8ea}.btn-danger{color:#FFF;background-color:#e53935;box-shadow:0 0 0 1px #e53935}.btn-warning{color:#FFF;background-color:#fd7e14;box-shadow:0 0 0 1px #fd7e14}.btn:focus{z-index:4;box-shadow:0 0 0 2px #b5bcc0}.btn-secondary:active,.btn-secondary.active{box-shadow:inset 0 1px 0 rgba(0,0,0,.05),inset 0 500px 0 0 #f5f8f9,0 0 0 1px rgba(0,0,0,.2)}.btn-primary:active,.btn-primary.active{box-shadow:inset 0 1px 1px 0 rgba(0,0,0,.3),inset 0 500px 0 0 rgba(0,0,0,.1),0 0 0 1px #00359f}.btn-green:active,.btn-green.active{box-shadow:inset 0 1px 1px 0 rgba(0,0,0,.3),inset 0 500px 0 0 rgba(0,0,0,.1),0 0 0 1px #00a569}.btn-danger:active,.btn-danger.active{box-shadow:inset 0 1px 1px 0 rgba(0,0,0,.3),inset 0 500px 0 0 rgba(0,0,0,.1),0 0 0 1px #e53935;border-top-color:rgba(0,0,0,.25)}.btn.disabled,.btn[disabled],.btn.disabled:hover,.btn[disabled]:hover{opacity:1;cursor:not-allowed;box-shadow:0 0 0 1px rgba(0,0,0,.2);background-color:#f5f8f9;color:#96a0a6}.btn-live.disabled::before{background-color:#b5bcc0}.btn-working{padding-left:32px;cursor:not-allowed;box-shadow:0 0 0 1px rgba(0,0,0,.2);background-color:#f7fafb;color:#96a0a6;position:relative}.btn-working:before{content:'';width:22px;height:22px;position:absolute;left:6px;top:calc(50% - 11px);background-image:url(../images/spinner-2.svg)}.btn-working.btn-small{padding-left:32px}.btn-large{font-size:18px;font-size:1.125rem;padding:8px 18px}.btn-small{font-size:14px;font-size:.875rem;padding:3px 12px 2px}.btn-tiny{font-size:13px;font-size:.8125rem;padding:1px 8px}.button-group{display:-ms-flexbox;display:flex}.button-group button:first-child,.button-group a:first-child,.button-group select:first-child{border-bottom-right-radius:0;border-top-right-radius:0}.button-group button:last-child,.button-group a:last-child,.button-group select:last-child{border-bottom-left-radius:0;border-top-left-radius:0}.button-group button:not(:first-child):not(:last-child),.button-group a:not(:first-child):not(:last-child),.button-group select:not(:first-child):not(:last-child){border-radius:0}.button-group button,.button-group a,.button-group select{position:relative}.btn img{margin-right:6px}.badge{vertical-align:middle;font-size:13px;line-height:1;color:#FFF;padding:2px 4px;width:52px;font-weight:500;text-align:center;border-radius:3px}.badge-failed{background-color:#ff3b2f}.badge-passed{background-color:#00a569}.badge-stopped{background-color:#677278}.badge-ssh{background-color:#202b30}.badge-queue{background-color:#fd7e14;animation:pulse 1.5s infinite}@keyframes pulse{0%,100%{opacity:1}50%{opacity:.6}}.badge-queue,.badge-running{position:relative;overflow:hidden;z-index:0;-webkit-font-smoothing:subpixel-antialiased}.badge-running:before{content:'';width:200%;position:absolute;left:0;right:0;top:0;bottom:0;background:repeating-linear-gradient(to right,#1570ff,#00359f,#1570ff);background-size:15px;z-index:-1;animation:running-bg .4s linear infinite}@keyframes running-bg{from{transform:translateX(0)}to{transform:translateX(-15px)}}.breadcrumb{font-size:14px;font-size:.875rem;margin-top:-1px}.breadcrumb-item{display:inline-block}.breadcrumb-item a{text-decoration:none;color:#202b30}.breadcrumb-item a:hover{color:#677278}.breadcrumb-item a::after{content:'\203A';margin:0 4px 0 8px;text-decoration:none;color:#677278}.breadcrumb-item.active{color:#677278}.files-table{border-collapse:collapse;border-spacing:0;width:640px;table-layout:fixed;margin-bottom:0;border:2px solid #e5e8ea}@media screen and (min-width:45em){.files-table{width:100%}}.files-table td{border-bottom:1px solid #d3dade;padding:4px 8px}.files-table td,.files-table td img,.files-table td span,.files-table td a{vertical-align:middle}.files-table tr:last-child td{border-bottom:0}.files-table thead td,.files-table thead tr:last-child td{font-weight:bold;border-bottom:1px solid #d3dade;background-color:#f5f8f9}.files-table-icon{width:24px}.files-table-icon img{margin-bottom:-3px}.files-table-message a{color:#677278;text-decoration:none}.files-table-message a:hover{color:#00359f;text-decoration:underline}td.files-table-age{text-align:right;color:#677278;padding-right:16px}td.files-table-control{text-align:right;padding-right:1px}.plans-table{border-collapse:collapse;border-spacing:0;table-layout:fixed;width:720px;margin-bottom:0;background-color:#fff}.plans-table th,.plans-table td{padding:3px 18px}.plans-table th{text-align:left;border-bottom:1px solid #d3dade;padding-top:8px;padding-bottom:8px;font-size:21px}.plans-table tbody tr:hover{background-color:#f5f8f9}.plans-table td{vertical-align:middle}.plans-table tr td:first-child{text-align:right;color:#677278;font-size:14px}.plans-table td:first-child,.plans-table td:nth-child(2){border-right:1px solid #d3dade}.plans-table tr th:nth-child(2),.plans-table tr th:nth-child(3),.plans-table tr td:nth-child(2),.plans-table tr td:nth-child(3){width:210px}.plans-table tfoot td{padding-top:18px;padding-bottom:18px;border-top:1px solid #d3dade;vertical-align:top}.plans-table tfoot td a{display:inline-block}.tabs{display:-ms-flexbox;display:flex;overflow:auto;white-space:nowrap;position:relative}.tabs::after{content:"";width:100%;height:1px;background-color:#d3dade;position:absolute;bottom:0;z-index:1}.tab{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;text-decoration:none;color:#677278;padding:8px;margin-right:8px;border-bottom:3px solid transparent;z-index:2}.tab:hover{color:#202b30;border-bottom-color:#d3dade}.tab--active,.tab--active:hover{color:#202b30;font-weight:bold;border-bottom-color:#202b30}.tab svg{fill:#677278;margin-right:8px}.tab:hover svg,.tab--active svg{fill:#202b30 !important}[role="tablist"]{display:-ms-flexbox;display:flex;list-style:none;padding-left:0;border-bottom:1px solid #d3dade}[role="tablist"] li{margin-right:8px;margin-bottom:-1px}[role="tablist"] li a{display:block;text-decoration:none;color:#202b30;background-color:#fff;outline:0;padding:4px 12px 10px}[role="tablist"] [aria-selected="true"]{outline:0;border-bottom:3px solid #e53935;font-weight:bold}.js-org-sidebar{display:none}.js-org-sidebar.is-open{display:block}.js-org-sidebar-overlay{position:fixed;top:0;left:0;right:0;bottom:0;background:rgba(40,50,60,.3);display:-ms-flexbox;display:flex;-ms-flex-pack:end;justify-content:flex-end;z-index:99}.js-org-sidebar-content{width:256px;width:16rem;background-color:#f6f3ec;height:100vh;box-shadow:rgba(0,0,0,.5) 0 0 50px 3px,rgba(0,0,0,.08) 0 0 0 1px}.js-org-sidebar[aria-hidden="false"] .js-org-sidebar-overlay{animation:fade-in .2s cubic-bezier(0,0,.2,1)}.js-org-sidebar[aria-hidden="false"] .js-org-sidebar-content{animation:slide-in .2s cubic-bezier(0,0,.2,1)}.js-org-sidebar[aria-hidden="true"] .js-org-sidebar-overlay{animation:fade-out .2s cubic-bezier(0,0,.2,1)}.js-org-sidebar[aria-hidden="true"] .js-org-sidebar-content{animation:slide-out .2s cubic-bezier(0,0,.2,1)}@keyframes fade-in{0%{opacity:0}100%{opacity:1}}@keyframes fade-out{0%{opacity:1}100%{opacity:0}}@keyframes slide-in{0%{transform:translateX(256px)}100%{transform:translateX(0)}}@keyframes slide-out{0%{transform:translateX(0)}100%{transform:translateX(256px)}}.modal{display:none}.modal.is-open{display:block}.modal-overlay{position:fixed;top:0;left:0;right:0;bottom:0;background:rgba(40,50,50,.6);display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center;z-index:9999999999}.modal-content{max-width:768px;max-width:48rem;max-height:100vh;overflow-y:auto;border-radius:8px;background-color:#fff;box-shadow:rgba(0,0,0,.5) 0 0 50px 3px,rgba(0,0,0,.08) 0 0 0 1px}.modal[aria-hidden="false"] .modal-overlay{animation:mmfadeIn .3s cubic-bezier(0.0,0.0,0.2,1)}.modal[aria-hidden="false"] .modal-content{animation:mmslideIn .3s cubic-bezier(0,0,.2,1)}.modal[aria-hidden="true"] .modal-overlay{animation:mmfadeOut .3s cubic-bezier(0.0,0.0,0.2,1)}.modal[aria-hidden="true"] .modal-content{animation:mmslideOut .3s cubic-bezier(0,0,.2,1)}.modal .modal-content,.modal .modal-overlay{will-change:transform}@keyframes mmfadeIn{from{opacity:0}to{opacity:1}}@keyframes mmfadeOut{from{opacity:1}to{opacity:0}}@keyframes mmslideIn{from{transform:translateY(15%)}to{transform:translateY(0)}}@keyframes mmslideOut{from{transform:translateY(0)}to{transform:translateY(-10%)}}.header{position:fixed;top:0;left:0;right:0;z-index:10;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;background-color:#f6f3ec;height:48px;box-shadow:0 1px 0 rgba(0,0,0,.15)}.main{padding:48px 0 0 0;background-color:#f6f3ec}@media screen and (min-width:30em){#sidebar{min-height:calc(100vh - 66px)}}.main>div:first-of-type{min-height:calc(100vh - 66px)}.js-header-shadow{box-shadow:0 0 0 1px rgba(0,0,0,.15)}.projects-menu-results{overflow:auto;line-height:1.5}.projects-menu-results li{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:justify;justify-content:space-between;border-radius:5px}.projects-menu-results li a{display:block;width:100%;text-decoration:none;color:#495358;padding:1px 16px 1px 12px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}c li.projects-menu-item-special a{color:#677278}li.projects-menu-item-special:hover{background-color:#96a0a6}.projects-menu-star,.projects-menu-unstar{font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,'Open Sans','Helvetica Neue',sans-serif;font-size:12px;font-size:.75rem;opacity:0;color:rgba(0,0,0,.2);-webkit-text-stroke:1px rgba(0,0,0,.3);cursor:pointer;width:16px;padding:1px 0;margin-right:6px;text-align:center}.projects-menu-star::before,.projects-menu-unstar::before{width:16px;text-align:center}.projects-menu-star::before{content:"\2605"}.projects-menu-unstar{opacity:1}.projects-menu-unstar::before{content:"\2605";color:#fbc335;-webkit-text-stroke:1px rgba(0,0,0,.3)}.projects-menu-results li:hover .projects-menu-star,.projects-menu-results li:hover .projects-menu-unstar{opacity:1}.projects-menu-results li .projects-menu-unstar:hover::before{content:"\00D7";color:rgba(0,0,0,.8);font-size:18px;font-size:1.125rem;line-height:1.2;padding-right:1px}.projects-menu-results li[aria-selected="true"] .projects-menu-unstar:hover::before{color:#fff}.projects-menu-star:hover::before{color:#fbc335 !important;-webkit-text-stroke:1px rgba(0,0,0,.3)}.projects-menu-results li[aria-selected="true"] .projects-menu-star:hover::before{-webkit-text-stroke:unset}.projects-menu-results li[aria-selected="true"],.projects-menu-results li[aria-selected="true"]:hover{background-color:#00a569}.projects-menu-results li[aria-selected="true"] a,.projects-menu-results li[aria-selected="true"] .projects-menu-star,.projects-menu-results li[aria-selected="true"] .projects-menu-unstar{color:#fff}.projects-menu-results li:hover{background-color:#cef1c8}#semaphore-logo #semaphore-logo-top,#semaphore-logo #semaphore-logo-bottom{fill:#c1baa9;transition:fill .1s ease}#semaphore-logo:hover #semaphore-logo-top{fill:#ff732f}#semaphore-logo:hover #semaphore-logo-bottom{fill:#12c180}.has-notification{position:relative}.has-notification:after{content:'';position:absolute;right:-3px;top:-3px;width:8px;height:8px;border-radius:99px;background-color:#ff732f;border:2px solid #f6f3ec}.c-list-item-pinned{position:relative}.c-list-item-pinned::after{content:'';top:6px;right:4px;position:absolute;width:12px;height:12px;background-image:url('data:image/svg+xml;utf8,');background-repeat:no-repeat;background-position:50%}.c-text-obscured{filter:url('data:image/svg+xml;charset=utf-8,#filter');-webkit-filter:blur(4px);filter:blur(4px);transition:all .1s}@keyframes slide-from-bottom{0%{transform:translateY(100%);opacity:0}70%{transform:translateY(-5%);opacity:.95}100%{transform:translateY(0);opacity:1}}.slide-from-bottom{animation:slide-from-bottom .5s 1 ease-in-out}.hover-bg-row-highlight:hover,.hover-bg-row-highlight:focus{background:linear-gradient(to right,rgba(255,255,255,.001),#f5f8f9 20%,#f5f8f9 80%,rgba(255,255,255,.001))}.hover-bg-row-highlight-disabled:hover,.hover-bg-row-highlight-disabled:focus{background:linear-gradient(to right,rgba(255,255,255,.001),#ffecec 20%,#ffecec 80%,rgba(255,255,255,.001))}.bg-pattern-wave{background-image:url("data:image/svg+xml,%3Csvg width='100' height='20' viewBox='0 0 100 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.184 20c.357-.13.72-.264 1.088-.402l1.768-.661C33.64 15.347 39.647 14 50 14c10.271 0 15.362 1.222 24.629 4.928.955.383 1.869.74 2.75 1.072h6.225c-2.51-.73-5.139-1.691-8.233-2.928C65.888 13.278 60.562 12 50 12c-10.626 0-16.855 1.397-26.66 5.063l-1.767.662c-2.475.923-4.66 1.674-6.724 2.275h6.335zm0-20C13.258 2.892 8.077 4 0 4V2c5.744 0 9.951-.574 14.85-2h6.334zM77.38 0C85.239 2.966 90.502 4 100 4V2c-6.842 0-11.386-.542-16.396-2h-6.225zM0 14c8.44 0 13.718-1.21 22.272-4.402l1.768-.661C33.64 5.347 39.647 4 50 4c10.271 0 15.362 1.222 24.629 4.928C84.112 12.722 89.438 14 100 14v-2c-10.271 0-15.362-1.222-24.629-4.928C65.888 3.278 60.562 2 50 2 39.374 2 33.145 3.397 23.34 7.063l-1.767.662C13.223 10.84 8.163 12 0 12v2z' fill='%23000' fill-opacity='0.15' fill-rule='evenodd'/%3E%3C/svg%3E");background-blend-mode:multiply;background-size:50px}.bg-pattern-lock{background-image:url("data:image/svg+xml,");background-blend-mode:multiply}.bg-pattern-diagonal-lines{background-image:url("data:image/svg+xml,%3Csvg width='6' height='6' viewBox='0 0 6 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23000000' fill-opacity='0.1' fill-rule='evenodd'%3E%3Cpath d='M5 0h1L0 6V5zM6 5v1H5z'/%3E%3C/g%3E%3C/svg%3E");background-blend-mode:multiply}.meter{height:6px;position:relative;background:#d3dade}.meter>span{display:block;height:100%;background:#00a569;background-size:15px;position:relative;overflow:hidden;animation:meter-load .4s ease}.meter>span::before{content:"";width:200%;position:absolute;top:0;left:0;right:0;bottom:0;background:repeating-linear-gradient(to right,transparent,transparent 3px,rgba(255,255,255,.6) 3px,rgba(255,255,255,.6) 4px);animation:meter-running 1s infinite linear}@keyframes meter-load{0%{width:0}}@keyframes meter-running{from{transform:translateX(0)}to{transform:translateX(-15px)}}.bg-animate-zigzag{background:linear-gradient(135deg,#00359f 25%,transparent 25%) -180px 0,linear-gradient(225deg,#c7edff 25%,transparent 25%) -180px 0,linear-gradient(315deg,#00359f 25%,transparent 25%),linear-gradient(45deg,#c7edff 25%,transparent 25%);background-size:360px 360px;background-color:#00a569;animation:move-zigzag 75s linear infinite}@keyframes move-zigzag{0%{background-position:-180px 0,-180px 0,0 0,0 0}100%{background-position:180px 0,180px 0,360px 0,360px 0}}.flash-element{animation:flash-element 3s}@keyframes flash-element{0%,80%{box-shadow:0 0 0 4px #00359f}100%{box-shadow:none}}.tippy-box{border-radius:8px}.tippy-box[data-theme~='default']{font-size:15px;background-color:#202b30;color:white;text-align:center}.tippy-box[data-theme~='default'][data-placement^='top']>.tippy-arrow::before{border-top-color:#202b30}.tippy-box[data-theme~='default'][data-placement^='bottom']>.tippy-arrow::before{border-bottom-color:#202b30}.tippy-box[data-theme~='default'][data-placement^='left']>.tippy-arrow::before{border-left-color:#202b30}.tippy-box[data-theme~='default'][data-placement^='right']>.tippy-arrow::before{border-right-color:#202b30}.tippy-box[data-theme~='dropdown'] .tippy-content{padding:0 !important;border-radius:0 !important}.tippy-box[data-theme~='dropdown']{font-size:inherit;color:#202b30;background-color:white;padding:0;text-align:left;box-shadow:rgba(0,0,0,.35) 0 6px 30px 3px,rgba(0,0,0,.08) 0 0 0 1px;-webkit-font-smoothing:subpixel-antialiased;-moz-osx-font-smoothing:auto}.tippy-box[data-theme~='dropdown'][data-placement^='top']>.tippy-arrow::before{border-top-color:#fff}.tippy-box[data-theme~='dropdown'][data-placement^='bottom']>.tippy-arrow::before{border-bottom-color:#fff}.tippy-box[data-theme~='dropdown'][data-placement^='left']>.tippy-arrow::before{border-left-color:#fff}.tippy-box[data-theme~='dropdown'][data-placement^='right']>.tippy-arrow::before{border-right-color:#fff}.tippy-box[data-theme~='dropdown-color'] .tippy-content{padding:0 !important;border-radius:0 !important}.tippy-box[data-theme~='dropdown-color']{font-size:inherit;color:white;background-color:#00a569;padding:0;text-align:left;box-shadow:rgba(0,0,0,.25) 0 6px 20px 3px;-webkit-font-smoothing:subpixel-antialiased;-moz-osx-font-smoothing:auto}.tippy-box[data-theme~='dropdown-color'][data-placement^='top']>.tippy-arrow::before{border-top-color:#00a569}.tippy-box[data-theme~='dropdown-color'][data-placement^='bottom']>.tippy-arrow::before{border-bottom-color:#00a569}.tippy-box[data-theme~='dropdown-color'][data-placement^='left']>.tippy-arrow::before{border-left-color:#00a569}.tippy-box[data-theme~='dropdown-color'][data-placement^='right']>.tippy-arrow::before{border-right-color:#00a569}.job-log-container{background-color:#fff;border:1px solid #d3dade;overflow:auto;border-radius:0 0 8px 8px;-webkit-font-feature-settings:none;font-feature-settings:none;-webkit-font-variant-ligatures:none;font-variant-ligatures:none}.job-log{font-family:"Jetbrains Mono","SFMono-Regular",Consolas,"Liberation Mono",Menlo,Courier,monospace;font-size:14px;font-size:.875rem;line-height:1.6}.job-log-fold{position:relative}.job-log-fold .command::before{font-family:sans-serif;font-size:11px;content:'\25B6';position:absolute;top:4px;left:8px;z-index:2;cursor:pointer;pointer-events:none}.job-log-fold.open .command::before{content:'\25BC'}.job-log-fold.empty .command::before{content:''}.job-log-line{position:relative;padding:1px 64px 1px 94px;background:linear-gradient(to right,transparent 84px,rgba(0,0,0,.3) 84px,transparent 85px)}.job-log-line.command{cursor:pointer;background-color:#f5f8f9;padding-right:135px}.sticky-commands .job-log-line.command{position:-webkit-sticky;position:sticky;top:0;z-index:1;max-height:250px;overflow-y:hidden}.job-log-line-expand{width:100%;text-align:center;background:#fff;border-bottom:1px solid #d3dade;text-decoration:underline;position:sticky;z-index:1;cursor:pointer}.job-log-line-expand:hover{background-color:#d3dade}.job-log-line:hover{background-color:#c7edff}.job-log-line-number{position:absolute;left:24px;display:inline-block;min-width:50px;text-align:right;color:#677278;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.job-log-line-body{white-space:pre-wrap;word-wrap:break-word}.job-log-line-body.nowrap{white-space:pre}.nowrap .job-log-line-body{white-space:nowrap;word-wrap:normal}.job-log-line-time,.job-log-line-timestamp{position:absolute;right:0;top:0;padding:0 8px;line-height:1.8;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center}.job-log-line-time{background-color:#677278;color:#FFF}.job-log-line-timestamp,.timestamps.nowrap .job-log-line-timestamp{display:none}.timestamps .job-log-line-timestamp{display:block}.job-log-container--dark{background-color:#202b30;color:#b5bcc0;border-color:#202b30}.job-log-container--dark .job-log-line.command{background-color:#121f22}.job-log-container--dark .job-log-line-number{color:#677278}.job-log-container--dark .job-log-line:hover{background-color:#c7edff;color:#202b30}.job-log-loading{position:relative;overflow:hidden;margin:16px;min-height:400px;background:linear-gradient(to bottom,#e5e8ea,#e5e8ea 50%,white 50%,white);background-size:100% 24px}.job-log-loading::after{content:"";position:absolute;top:0;left:0;bottom:0;z-index:1;width:100%;height:100%;animation:job-loading-flash .75s linear infinite;background:linear-gradient(to right,white 30%,rgba(255,255,255,.6) 50%,rgba(255,255,255,0) 70%) 50% 50%}.job-log-loading::before{content:"";position:absolute;bottom:0;left:0;right:0;z-index:2;width:100%;height:100%;background:linear-gradient(to bottom,rgba(255,255,255,0),rgba(255,255,255,1))}@keyframes job-loading-flash{0%{transform:translate3d(-50%,0,0)}100%{transform:translate3d(100%,0,0)}}.job-log-fetching{position:absolute;bottom:0;right:0;font-family:"Jetbrains Mono","SFMono-Regular",Consolas,"Liberation Mono",Menlo,Courier,monospace;font-size:12px;font-size:.75rem;line-height:1.6;background-color:#fbc335;padding:3px 8px;z-index:5}.job-log-working::before{display:inline-block;text-align:center;font-family:"Jetbrains Mono","SFMono-Regular",Consolas,"Liberation Mono",Menlo,Courier,monospace;content:'\007C';animation:switch-chars .3s infinite}@keyframes switch-chars{0%,100%{content:'\007C'}25%{content:'\002F'}50%{content:'\2014'}75%{content:'\005C'}}.job-log-container--dark .job-log-loading{background:linear-gradient(to bottom,#3c4748,#3c4748 50%,#283233 50%,#283233);background-size:100% 24px}.job-log-container--dark .job-log-loading::after{background:linear-gradient(to right,rgba(255,255,255,0) 30%,rgba(255,255,255,.2) 50%,rgba(255,255,255,0) 70%) 50% 50%;mix-blend-mode:overlay}.job-log-container--dark .job-log-loading::before{background:linear-gradient(to bottom,rgba(40,50,50,0),rgba(40,50,50,.5) 30%,#283233)}.job-log-line.highlight,.job-log-container--dark .job-log-line.highlight{color:rgba(0,0,0,.8);background-color:#fbc335}.job-log-container--dark .job-log-line-expand{background-color:#242f32;}.job-log-container--dark .job-log-line-expand:hover{background-color:#0d1517;color:#B5BCC0;}.c-pipeline-phase-placeholder{height:240px;background:radial-gradient(ellipse at top left,#e5e8ea 20%,rgba(255,255,255,0) 70%);margin-right:200px}.c-pipeline-phase-placeholder:after{content:"";position:absolute;top:0;left:0;bottom:0;z-index:1;width:100%;height:100%;animation:placeholder-flash .75s linear infinite;background:linear-gradient(to right,rgba(255,255,255,0) 30%,rgba(255,255,255,.6) 50%,rgba(255,255,255,0) 70%) 50% 50%}@keyframes placeholder-flash{0%{transform:translate3d(-50%,0,0)}100%{transform:translate3d(100%,0,0)}}.wf-pipeline-has-switch{position:relative}.wf-pipeline-has-switch::before{content:'';position:absolute;right:-22px;top:22px;width:21px;height:3px;background:repeating-linear-gradient(to right,#98a9a9 0,#98a9a9 5px,rgba(255,255,255,0) 5px,rgba(255,255,255,0) 8px)}.wf-switch-item-selected{position:relative;z-index:4}.wf-switch-item-selected::after{content:'';position:absolute;right:-37px;top:13px;width:37px;height:3px;background-color:#98a9a9}.wf-switch-container{background-color:#f5f8f9;background-image:url("data:image/svg+xml,%3Csvg width='6' height='6' viewBox='0 0 6 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%2397A4A4' fill-opacity='0.4' fill-rule='evenodd'%3E%3Cpath d='M5 0h1L0 6V5zM6 5v1H5z'/%3E%3C/g%3E%3C/svg%3E")}.wf-edit-job-hover,.wf-edit-block-hover,.wf-edit-pipeline-hover{position:relative;cursor:pointer}.wf-edit-job-hover:hover{background:linear-gradient(to bottom,#ffe1bd,rgba(255,255,255,0) 32px);color:#974510}.wf-edit-block-hover:hover,.wf-edit-pipeline-hover:hover{background:linear-gradient(to bottom,#ffe1bd,rgba(255,255,255,0) 32px);color:#974510;border-radius:8px 8px 0 0}.wf-edit-job-selected,.wf-edit-block-selected,.wf-edit-pipeline-selected{box-shadow:inset 0 0 0 1px #00359f !important;color:#00359f;border:1px solid #00359f !important;position:relative;z-index:4;background-color:#cedcff}.wf-edit-job-selected::after,.wf-edit-job-hover:hover::after,.wf-edit-block-selected::after,.wf-edit-block-hover:hover::after,.wf-edit-pipeline-selected::after,.wf-edit-pipeline-hover:hover::after{content:"Editing";width:42px;height:16px;color:#fff;text-align:center;font-size:11px;font-weight:500;border-radius:0 0 0 4px;position:absolute;top:-1px;right:-1px}.wf-edit-job-hover:hover::after,.wf-edit-block-hover:hover::after,.wf-edit-pipeline-hover:hover::after{content:"Edit";width:28px;z-index:5}.wf-edit-job-selected::after,.wf-edit-block-selected::after,.wf-edit-pipeline-selected::after{background:#00359f}.wf-edit-job-hover:hover::after,.wf-edit-block-hover:hover::after,.wf-edit-pipeline-hover:hover::after{background:#974510}.wf-edit-has-error{position:relative}.wf-edit-has-error::before{content:"";width:16px;height:16px;position:absolute;top:-1px;right:-1px;background:radial-gradient(circle at top right,#ff9192 12px,#ffbebe 12px,#ffbebe 16px,transparent 16px) !important}.wf-edit-has-error::after{content:"!";width:16px;height:16px;background:#e53935;color:#fff;text-align:center;font-size:11px;font-weight:bold;border-radius:99px;position:absolute;top:-8px;right:-8px}.wf-edit-has-error.wf-edit-selected::after{box-shadow:none}.browser-safari .wf-edit-hover,.browser-safari .wf-edit-selected,.browser-safari .wf-edit-has-error{position:static}.browser-safari .wf-edit-hover::after,.browser-safari .wf-edit-selected::after,.browser-safari .wf-edit-has-error::after,.browser-safari .wf-edit-has-error::before{content:"";top:-9999px}.browser-safari .wf-edit-has-error{box-shadow:0 0 0 3px #e53935 !important}.wf-edit-sidebar-drag{position:relative}.wf-edit-sidebar-drag::before{content:"";width:5px;height:50px;position:absolute;left:-4px;top:calc(50% - 25px);background:white;border:1px solid #d3dade;border-radius:2px;cursor:col-resize}.wf-edit-sidebar-drag::after{content:"";width:1px;height:44px;background:#d3dade;position:absolute;left:-1px;top:calc(50% - 21px);cursor:col-resize}.wf-edit-commit-file{width:540px;padding:8px 0;border-top:1px solid #d3dade;position:relative}.wf-edit-commit-file[open]{padding-bottom:0}.wf-edit-commit-table-container{margin-top:8px;height:200px;overflow:auto}.wf-edit-commit-table-container::after{content:"";width:100%;height:20px;position:absolute;left:0;bottom:0;background:linear-gradient(to bottom,rgba(255,255,255,0),#fff)}.wf-edit-commit-table{border-collapse:collapse;font-family:"Jetbrains Mono","SFMono-Regular",Consolas,"Liberation Mono",Menlo,Courier,monospace;font-size:13px;padding-bottom:16px}.wf-edit-commit-table td{vertical-align:top;padding:0 12px}.wf-edit-commit-table td:first-child{text-align:right;color:rgba(0,0,0,.4);border-right:1px solid rgba(0,0,0,.15)}.wf-edit-commit-table td:nth-child(2){width:100%;white-space:pre}.wf-edit-commit-table tr.line-removed td{background-color:#fdd}.wf-edit-commit-table tr.line-added td{background-color:#cef1c8}.wf-edit-job-options-trigger-container{position:absolute;bottom:0;right:0;cursor:pointer;width:28px;height:28px;border-top:1px solid #d3dade;background:url('data:image/svg+xml;utf8,') no-repeat center center}.wf-edit-job-options-trigger-container:hover{background-image:url('data:image/svg+xml;utf8,')}.wf-edit-steps-table td{padding-bottom:8px;vertical-align:top}.wf-edit-steps-table tr:last-child td{padding-bottom:0}.wf-edit-steps-table td:nth-child(1){background:linear-gradient(to right,white 16px,#e5e8ea 16px,#e5e8ea 18px,white 18px)}.wf-edit-steps-table td:nth-child(1) div{width:32px;height:32px;background-color:#00a569;color:white;box-shadow:0 0 0 2px white;margin-right:8px;border-radius:100%;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;-ms-flex-negative:0;flex-shrink:0}.wf-edit-steps-table tr:last-child td:first-child div{background:#677278}.wf-edit-steps-table tr:last-child td:nth-child(1){background:0}.c-billing-usage-block{width:16px;height:16px;margin:0 2px 2px 0;background-color:#e5e8ea}.c-billing-invoice-table{border-collapse:collapse;-webkit-font-feature-settings:'tnum';font-feature-settings:'tnum'}.c-billing-invoice-table-amount{text-align:right;padding-right:8px;padding-left:16px}@media screen and (min-width:45em){#quickReferenceMenu{min-width:360px}}.c-loading-placeholder{position:relative;overflow:hidden}.c-loading-placeholder-thin{min-height:400px;background:linear-gradient(to bottom,#e5e8ea,#e5e8ea 50%,white 50%,white);background-size:100% 26px}.c-loading-placeholder-thick{min-height:500px;background:linear-gradient(to bottom,#e5e8ea,#e5e8ea 90%,white 90%,white);background-size:100% 150px}.c-loading-placeholder:after{content:"";position:absolute;top:0;left:0;bottom:0;z-index:1;width:100%;height:100%;animation:loading-placeholder-flash .75s linear infinite;background:linear-gradient(to right,rgba(255,255,255,0) 30%,rgba(255,255,255,.6) 50%,rgba(255,255,255,0) 70%) 50% 50%}.c-loading-placeholder:before{content:"";position:absolute;bottom:0;left:0;right:0;z-index:2;width:100%;height:100%;background:linear-gradient(to bottom,rgba(255,255,255,0),rgba(255,255,255,1))}@keyframes loading-placeholder-flash{0%{transform:translate3d(-50%,0,0)}100%{transform:translate3d(100%,0,0)}}.pika-single{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif !important;border:none !important;border-radius:.25rem !important;z-index:99999 !important}.pika-single.is-bound{box-shadow:rgba(0,0,0,.25) 0 8px 40px 3px,rgba(0,0,0,.08) 0 0 0 1px !important}.pika-table{margin-bottom:0}.pika-table abbr{text-decoration:none !important;font-size:13px !important;color:#677278 !important}.pika-button{background:#f5f8f9 !important;padding:8px !important}.is-startrange .pika-button,.is-endrange .pika-button{background:#677278 !important;border-radius:0 !important}.is-today .pika-button{color:#00359f !important}.is-endrange.is-today .pika-button,.is-startrange.is-today .pika-button{color:white !important}.is-selected.is-today .pika-button{color:white !important}.is-today .pika-button:hover{color:white !important}.is-selected .pika-button,.has-event .pika-button{background:#00359f !important;box-shadow:none;border-radius:0 !important}.pika-button:hover,.pika-row.pick-whole-week:hover .pika-button{border-radius:0 !important}.pika-button:hover,.pika-row.pick-whole-week:hover .pika-button{background:#677278 !important}.is-disabled .pika-button{color:#677278 !important}.is-inrange .pika-button{background:#cedcff !important}.org-main-menu{-ms-flex-negative:0;flex-shrink:0;padding:16px 20px 16px 16px;font-size:14px;font-size:.875rem;background-color:#fff;border-bottom:1px solid #d3dade}@media screen and (min-width:45em){.org-main-menu{height:100vh;padding-bottom:90px;min-width:14rem;max-width:16rem;position:-webkit-sticky;position:sticky;top:0;overflow-y:auto;border-bottom:0;border-right:1px solid #d3dade}}.org-main-menu-item{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:justify;justify-content:space-between;margin-left:-16px;margin-right:-20px}.org-main-menu-item:hover{background-color:#f5f8f9}.org-main-menu-item a{-ms-flex:1 1 auto;flex:1 1 auto;min-width:0;min-height:0;padding:3px 0 3px 36px;color:#202b30;text-decoration:none;background-size:16px;background-repeat:no-repeat;background-position:14px 50%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.org-main-menu-item--dashboard a{background-image:url('data:image/svg+xml;utf8,')}.org-main-menu-item--project a{background-image:url('data:image/svg+xml;utf8,')}.org-main-menu-item--secret a{background-image:url('data:image/svg+xml;utf8,')}.org-main-menu-item--notification a{background-image:url('data:image/svg+xml;utf8,')}.org-main-menu-item--people a{background-image:url('data:image/svg+xml;utf8,')}.org-main-menu-item--billing a{background-image:url('data:image/svg+xml;utf8,')}.org-main-menu-item--settings a{background-image:url('data:image/svg+xml;utf8,')}.org-main-menu-item--more a{background-image:url('data:image/svg+xml;utf8,');color:#96a0a6}.org-main-menu-item--less a{background-image:url('data:image/svg+xml;utf8,');color:#96a0a6}.org-main-menu-item--dashboard.org-main-menu-item--selected a{background-image:url('data:image/svg+xml;utf8,')}.org-main-menu-item--project.org-main-menu-item--selected a{background-image:url('data:image/svg+xml;utf8,')}.org-main-menu-item--secret.org-main-menu-item--selected a{background-image:url('data:image/svg+xml;utf8,')}.org-main-menu-item--notification.org-main-menu-item--selected a{background-image:url('data:image/svg+xml;utf8,')}.org-main-menu-item--people.org-main-menu-item--selected a{background-image:url('data:image/svg+xml;utf8,')}.org-main-menu-item--billing.org-main-menu-item--selected a{background-image:url('data:image/svg+xml;utf8,')}.org-main-menu-item--settings.org-main-menu-item--selected a{background-image:url('data:image/svg+xml;utf8,')}.org-main-menu-item a:hover{color:#202b30}.org-main-menu-item a:focus{outline:1px dotted currentColor}.org-main-menu-item-action{-ms-flex-negative:0;flex-shrink:0;opacity:0;transition:opacity .1s ease-in;cursor:pointer;width:14px;padding:0 20px 0 12px;background-size:16px;background-repeat:no-repeat;background-position:4px 50%}.org-main-menu-item:hover .org-main-menu-item-action,.org-main-menu-item:focus .org-main-menu-item-action,.org-main-menu-item:active .org-main-menu-item-action{opacity:1;transition:opacity .1s ease-in}.org-main-menu-container-starred .org-main-menu-item-action{background-image:url('data:image/svg+xml;utf8,')}.org-main-menu-container-starred .org-main-menu-item-action:hover{background-image:url('data:image/svg+xml;utf8,')}.org-main-menu-container-projects .org-main-menu-item-action,.org-main-menu-container-dashboards .org-main-menu-item-action{background-image:url('data:image/svg+xml;utf8,')}.org-main-menu-container-projects .org-main-menu-item-action:hover,.org-main-menu-container-dashboards .org-main-menu-item-action:hover{background-image:url('data:image/svg+xml;utf8,')}.org-main-menu-item--selected,.org-main-menu-item--selected:hover{background-color:#00359f}.org-main-menu-item--selected a,.org-main-menu-item--selected a:hover,.org-main-menu-item--selected a:focus{color:white}.org-main-menu-item--working .org-main-menu-item-action,.org-main-menu-item--working .org-main-menu-item-action:hover{background-image:url('../images/spinner-2.svg');background-size:18px;background-position:3px 50%;opacity:1}.c-insights-speed-chart{position:relative}.c-insights-speed-chart .duration{fill:none;stroke:#00a569;stroke-width:3}.c-insights-speed-chart .duration-failure{fill:none;stroke:#e53935;stroke-width:3}.c-insights-speed-chart .deviation{fill:#8658d6;opacity:.1}.c-insights-speed-chart .axis{font-size:12px;color:#999;shape-rendering:crispEdges}.c-insights-speed-chart .axis path{fill:none}.c-insights-speed-chart .axis line{fill:none}.c-insights-speed-chart .focus-line{fill:none;stroke:#8658d6;stroke-width:1px;shape-rendering:crispEdges}.c-insights-speed-chart .focus-circle{fill:black}.c-insights-speed-chart .tick line{stroke:rgba(0,0,0,.05)}.c-insights-speed-chart .overlay{fill:none;stroke:none;pointer-events:all}.c-insights-speed-chart .tooltip{display:none;font-size:10px;color:white;background-color:rgba(0,0,0,1);padding:8px;border-radius:4px}.c-insights-failure-rate-chart .axis{font-size:12px;color:#999;shape-rendering:crispEdges}.c-insights-failure-rate-chart .axis path{fill:none}.c-insights-failure-rate-chart .axis line{fill:none}.c-insights-failure-rate-chart .focus-line{fill:none;stroke:#e5e8ea;stroke-width:1px;shape-rendering:crispEdges}.c-insights-failure-rate-chart .focus-circle{fill:black}.c-insights-failure-rate-chart .tick line{stroke:rgba(0,0,0,.05)}.c-insights-failure-rate-chart .overlay{fill:none;stroke:none;pointer-events:all}.c-insights-failure-rate-chart .tooltip{display:none;font-size:10px;color:white;background-color:black;padding:8px;border-radius:4px}.c-insights-failure-rate-chart .passed{fill:#00a569}.c-insights-frequency-chart .axis{font-size:12px;color:#999;shape-rendering:crispEdges}.c-insights-frequency-chart .axis path{fill:none}.c-insights-frequency-chart .axis line{fill:none}.c-insights-frequency-chart .focus-line{fill:none;stroke:#e5e8ea;stroke-width:1px;shape-rendering:crispEdges}.c-insights-frequency-chart .focus-circle{fill:black}.c-insights-frequency-chart .tick line{stroke:rgba(0,0,0,.05)}.c-insights-frequency-chart .overlay{fill:none;stroke:none;pointer-events:all}.c-insights-frequency-chart .tooltip{display:none;font-size:10px;color:white;background-color:black;padding:8px;border-radius:4px}.c-insights-frequency-chart .passed{fill:#00a569}.c-insights-tab:hover{background-color:#e5e8ea}.c-insights-tab.c-insights-tab-active{background-color:#00a569;color:white}.c-insights-tab.c-insights-tab-active div{color:white !important}.c-insights-tab.c-insights-tab-active svg path{fill:white}/*! TACHYONS v4.9.1 | http://tachyons.io *//*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,footer,header,nav,section{display:block}h1{font-size:2em;margin:.67em 0}figcaption,figure,main{display:block}figure{margin:1em 40px}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent;-webkit-text-decoration-skip:objects}abbr[title]{border-bottom:0;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:inherit}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}dfn{font-style:italic}mark{background-color:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-0.25em}sup{top:-0.5em}audio,video{display:inline-block}audio:not([controls]){display:none;height:0}img{border-style:none}svg:not(:root){overflow:hidden}button,input,optgroup,select,textarea{font-family:sans-serif;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}button,html [type="button"],[type="reset"],[type="submit"]{-webkit-appearance:button}button::-moz-focus-inner,[type="button"]::-moz-focus-inner,[type="reset"]::-moz-focus-inner,[type="submit"]::-moz-focus-inner{border-style:none;padding:0}button:-moz-focusring,[type="button"]:-moz-focusring,[type="reset"]:-moz-focusring,[type="submit"]:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{display:inline-block;vertical-align:baseline}textarea{overflow:auto}[type="checkbox"],[type="radio"]{box-sizing:border-box;padding:0}[type="number"]::-webkit-inner-spin-button,[type="number"]::-webkit-outer-spin-button{height:auto}[type="search"]{-webkit-appearance:textfield;outline-offset:-2px}[type="search"]::-webkit-search-cancel-button,[type="search"]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details,menu{display:block}summary{display:list-item}canvas{display:inline-block}template{display:none}[hidden]{display:none}html,body,div,article,aside,section,main,nav,footer,header,form,fieldset,legend,pre,code,a,h1,h2,h3,h4,h5,h6,p,ul,ol,li,dl,dt,dd,blockquote,figcaption,figure,textarea,table,td,th,tr,input[type="email"],input[type="number"],input[type="password"],input[type="tel"],input[type="text"],input[type="url"],.border-box{box-sizing:border-box}img{max-width:100%}.outline{outline:1px solid}.outline-transparent{outline:1px solid transparent}.outline-0{outline:0}@media screen and (min-width:30em){.outline-ns{outline:1px solid}.outline-transparent-ns{outline:1px solid transparent}.outline-0-ns{outline:0}}@media screen and (min-width:45em){.outline-m{outline:1px solid}.outline-transparent-m{outline:1px solid transparent}.outline-0-m{outline:0}}@media screen and (min-width:60em){.outline-l{outline:1px solid}.outline-transparent-l{outline:1px solid transparent}.outline-0-l{outline:0}}.ba{border-style:solid;border-width:1px}.bt{border-top-style:solid;border-top-width:1px}.br{border-right-style:solid;border-right-width:1px}.bb{border-bottom-style:solid;border-bottom-width:1px}.bl{border-left-style:solid;border-left-width:1px}.bn{border-style:none;border-width:0}@media screen and (min-width:30em){.ba-ns{border-style:solid;border-width:1px}.bt-ns{border-top-style:solid;border-top-width:1px}.br-ns{border-right-style:solid;border-right-width:1px}.bb-ns{border-bottom-style:solid;border-bottom-width:1px}.bl-ns{border-left-style:solid;border-left-width:1px}.bn-ns{border-style:none;border-width:0}}@media screen and (min-width:45em){.ba-m{border-style:solid;border-width:1px}.bt-m{border-top-style:solid;border-top-width:1px}.br-m{border-right-style:solid;border-right-width:1px}.bb-m{border-bottom-style:solid;border-bottom-width:1px}.bl-m{border-left-style:solid;border-left-width:1px}.bn-m{border-style:none;border-width:0}}@media screen and (min-width:60em){.ba-l{border-style:solid;border-width:1px}.bt-l{border-top-style:solid;border-top-width:1px}.br-l{border-right-style:solid;border-right-width:1px}.bb-l{border-bottom-style:solid;border-bottom-width:1px}.bl-l{border-left-style:solid;border-left-width:1px}.bn-l{border-style:none;border-width:0}}.b--transparent{border-color:transparent}.b--inherit{border-color:inherit}.b--white{border-color:#FFF}.b--black{border-color:#000}.b--gray{border-color:#677278}.b--mid-gray{border-color:#96a0a6}.b--light-gray{border-color:#b5bcc0}.b--lighter-gray{border-color:#d3dade}.b--lightest-gray{border-color:#e5e8ea}.b--dark-gray{border-color:#202b30}.b--red{border-color:#e53935}.b--light-red{border-color:#ef9a9a}.b--green{border-color:#00a569}.b--indigo{border-color:#1570ff}.b--dark-indigo{border-color:#00359f}.b--orange{border-color:#fd7e14}.b--purple{border-color:#8658d6}.b--dark-purple{border-color:#5122a5}.b--dark-brown{border-color:#974510}.hover-b--dark-gray:hover,.hover-b--dark-gray:focus{border-color:#202b30}.hover-b--gray:hover,.hover-b--gray:focus{border-color:#677278}.hover-b--mid-gray:hover,.hover-b--mid-gray:focus{border-color:#96a0a6}.hover-b--light-gray:hover,.hover-b--light-gray:focus{border-color:#b5bcc0}.hover-b--lighter-gray:hover,.hover-b--lighter-gray:focus{border-color:#d3dade}.hover-b--black-15:hover,.hover-b--black-15:focus{border-color:rgba(0,0,0,.15)}.hover-b--black-20:hover,.hover-b--black-20:focus{border-color:rgba(0,0,0,.2)}.hover-b--green:hover,.hover-b--green:focus{border-color:#00a569}.hover-b--red:hover,.hover-b--red:focus{border-color:#e53935}.hover-b--orange:hover,.hover-b--orange:focus{border-color:#fd7e14}.b--white-90{border-color:rgba(255,255,255,.9)}.b--white-80{border-color:rgba(255,255,255,.8)}.b--white-70{border-color:rgba(255,255,255,.7)}.b--white-60{border-color:rgba(255,255,255,.6)}.b--white-50{border-color:rgba(255,255,255,.5)}.b--white-40{border-color:rgba(255,255,255,.4)}.b--white-30{border-color:rgba(255,255,255,.3)}.b--white-20{border-color:rgba(255,255,255,.2)}.b--white-10{border-color:rgba(255,255,255,.1)}.b--white-05{border-color:rgba(255,255,255,.05)}.b--white-025{border-color:rgba(255,255,255,.025)}.b--white-0125{border-color:rgba(255,255,255,.0125)}.b--black-50{border-color:rgba(0,0,0,.5)}.b--black-40{border-color:rgba(0,0,0,.4)}.b--black-30{border-color:rgba(0,0,0,.3)}.b--black-20{border-color:rgba(0,0,0,.2)}.b--black-15{border-color:rgba(0,0,0,.15)}.b--black-10{border-color:rgba(0,0,0,.1)}.b--black-075{border-color:rgba(0,0,0,.075)}.b--black-05{border-color:rgba(0,0,0,.05)}.br0{border-radius:0}.br1{border-radius:.125rem}.br2{border-radius:.25rem}.br3{border-radius:.5rem}.br4{border-radius:1rem}.br-100{border-radius:100%}.br-pill{border-radius:9999px}.br--bottom{border-top-left-radius:0;border-top-right-radius:0}.br--top{border-bottom-left-radius:0;border-bottom-right-radius:0}.br--right{border-top-left-radius:0;border-bottom-left-radius:0}.br--left{border-top-right-radius:0;border-bottom-right-radius:0}.b--dotted{border-style:dotted}.b--dashed{border-style:dashed}.b--solid{border-style:solid}.b--none{border-style:none}.bw0{border-width:0}.bw1{border-width:2px}.bw2{border-width:4px}.bw3{border-width:8px}.bw4{border-width:16px}.bw5{border-width:32px}.bt-0{border-top-width:0}.br-0{border-right-width:0}.bb-0{border-bottom-width:0}.bl-0{border-left-width:0}@media screen and (min-width:30em){.bw0-ns{border-width:0}.bw1-ns{border-width:2px}.bw2-ns{border-width:4px}.bw3-ns{border-width:8px}.bw4-ns{border-width:16px}.bw5-ns{border-width:32px}.bt-0-ns{border-top-width:0}.br-0-ns{border-right-width:0}.bb-0-ns{border-bottom-width:0}.bl-0-ns{border-left-width:0}}@media screen and (min-width:45em){.bw0-m{border-width:0}.bw1-m{border-width:2px}.bw2-m{border-width:4px}.bw3-m{border-width:8px}.bw4-m{border-width:16px}.bw5-m{border-width:32px}.bt-0-m{border-top-width:0}.br-0-m{border-right-width:0}.bb-0-m{border-bottom-width:0}.bl-0-m{border-left-width:0}}@media screen and (min-width:60em){.bw0-l{border-width:0}.bw1-l{border-width:2px}.bw2-l{border-width:4px}.bw3-l{border-width:8px}.bw4-l{border-width:16px}.bw5-l{border-width:32px}.bt-0-l{border-top-width:0}.br-0-l{border-right-width:0}.bb-0-l{border-bottom-width:0}.bl-0-l{border-left-width:0}}.shadow-1{box-shadow:0 1px 3px 0 rgba(0,0,0,.16),0 0 0 1px rgba(0,0,0,.08)}.shadow-2{box-shadow:rgba(0,0,0,.25) 0 8px 30px 3px,rgba(0,0,0,.08) 0 0 0 1px}.shadow-3{box-shadow:0 1px 1px 0 rgba(0,0,0,.16),0 0 0 1px rgba(0,0,0,.1)}@media screen and (min-width:30em){.shadow-1-ns{box-shadow:0 2px 4px 0 rgba(0,0,0,.16),0 0 0 1px rgba(0,0,0,.08)}.shadow-2-ns{box-shadow:rgba(0,0,0,.25) 0 8px 30px 3px,rgba(0,0,0,.08) 0 0 0 1px}.shadow-3-ns{box-shadow:0 1px 1px 0 rgba(0,0,0,.16),0 0 0 1px rgba(0,0,0,.1)}}@media screen and (min-width:45em){.shadow-1-m{box-shadow:0 2px 4px 0 rgba(0,0,0,.16),0 0 0 1px rgba(0,0,0,.08)}.shadow-2-m{box-shadow:rgba(0,0,0,.25) 0 8px 30px 3px,rgba(0,0,0,.08) 0 0 0 1px}.shadow-3-m{box-shadow:0 1px 1px 0 rgba(0,0,0,.16),0 0 0 1px rgba(0,0,0,.1)}}@media screen and (min-width:60em){.shadow-1-l{box-shadow:0 2px 4px 0 rgba(0,0,0,.16),0 0 0 1px rgba(0,0,0,.08)}.shadow-2-l{box-shadow:rgba(0,0,0,.25) 0 8px 30px 3px,rgba(0,0,0,.08) 0 0 0 1px}.shadow-3-l{box-shadow:0 1px 1px 0 rgba(0,0,0,.16),0 0 0 1px rgba(0,0,0,.1)}}.top-0{top:0}.right-0{right:0}.bottom-0{bottom:0}.left-0{left:0}.top-1{top:16px;top:1rem}.right-1{right:16px;right:1rem}.bottom-1{bottom:16px;bottom:1rem}.left-1{left:16px;left:1rem}.top-2{top:32px;top:2rem}.right-2{right:32px;right:2rem}.bottom-2{bottom:32px;bottom:2rem}.left-2{left:32px;left:2rem}.top--1{top:-16px;top:-1rem}.right--1{right:-16px;right:-1rem}.bottom--1{bottom:-16px;bottom:-1rem}.left--1{left:-16px;left:-1rem}.top--2{top:-32px;top:-2rem}.right--2{right:-32px;right:-2rem}.bottom--2{bottom:-32px;bottom:-2rem}.left--2{left:-32px;left:-2rem}.absolute--fill{top:0;right:0;bottom:0;left:0}.cf:before,.cf:after{content:" ";display:table}.cf:after{clear:both}.cf{*zoom:1}.cl{clear:left}.cr{clear:right}.cb{clear:both}.cn{clear:none}.flex{display:-ms-flexbox;display:flex}.inline-flex{display:-ms-inline-flexbox;display:inline-flex}.flex-auto{-ms-flex:1 1 auto;flex:1 1 auto;min-width:0;min-height:0}.flex-none{-ms-flex:none;flex:none}.flex-column{-ms-flex-direction:column;flex-direction:column}.flex-row{-ms-flex-direction:row;flex-direction:row}.flex-wrap{-ms-flex-wrap:wrap;flex-wrap:wrap}.flex-nowrap{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.flex-wrap-reverse{-ms-flex-wrap:wrap-reverse;flex-wrap:wrap-reverse}.flex-column-reverse{-ms-flex-direction:column-reverse;flex-direction:column-reverse}.flex-row-reverse{-ms-flex-direction:row-reverse;flex-direction:row-reverse}.items-start{-ms-flex-align:start;align-items:flex-start}.items-end{-ms-flex-align:end;align-items:flex-end}.items-center{-ms-flex-align:center;align-items:center}.items-baseline{-ms-flex-align:baseline;align-items:baseline}.items-stretch{-ms-flex-align:stretch;align-items:stretch}.self-start{-ms-flex-item-align:start;align-self:flex-start}.self-end{-ms-flex-item-align:end;align-self:flex-end}.self-center{-ms-flex-item-align:center;-ms-grid-row-align:center;align-self:center}.self-baseline{-ms-flex-item-align:baseline;align-self:baseline}.self-stretch{-ms-flex-item-align:stretch;-ms-grid-row-align:stretch;align-self:stretch}.justify-start{-ms-flex-pack:start;justify-content:flex-start}.justify-end{-ms-flex-pack:end;justify-content:flex-end}.justify-center{-ms-flex-pack:center;justify-content:center}.justify-between{-ms-flex-pack:justify;justify-content:space-between}.justify-around{-ms-flex-pack:distribute;justify-content:space-around}.content-start{-ms-flex-line-pack:start;align-content:flex-start}.content-end{-ms-flex-line-pack:end;align-content:flex-end}.content-center{-ms-flex-line-pack:center;align-content:center}.content-between{-ms-flex-line-pack:justify;align-content:space-between}.content-around{-ms-flex-line-pack:distribute;align-content:space-around}.content-stretch{-ms-flex-line-pack:stretch;align-content:stretch}.order-0{-ms-flex-order:0;order:0}.order-1{-ms-flex-order:1;order:1}.order-2{-ms-flex-order:2;order:2}.order-3{-ms-flex-order:3;order:3}.order-4{-ms-flex-order:4;order:4}.order-5{-ms-flex-order:5;order:5}.order-6{-ms-flex-order:6;order:6}.order-7{-ms-flex-order:7;order:7}.order-8{-ms-flex-order:8;order:8}.order-last{-ms-flex-order:99999;order:99999}.flex-grow-0{-ms-flex-positive:0;flex-grow:0}.flex-grow-1{-ms-flex-positive:1;flex-grow:1}.flex-shrink-0{-ms-flex-negative:0;flex-shrink:0}.flex-shrink-1{-ms-flex-negative:1;flex-shrink:1}@media screen and (min-width:30em){.flex-ns{display:-ms-flexbox;display:flex}.inline-flex-ns{display:-ms-inline-flexbox;display:inline-flex}.flex-auto-ns{-ms-flex:1 1 auto;flex:1 1 auto;min-width:0;min-height:0}.flex-none-ns{-ms-flex:none;flex:none}.flex-column-ns{-ms-flex-direction:column;flex-direction:column}.flex-row-ns{-ms-flex-direction:row;flex-direction:row}.flex-wrap-ns{-ms-flex-wrap:wrap;flex-wrap:wrap}.flex-nowrap-ns{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.flex-wrap-reverse-ns{-ms-flex-wrap:wrap-reverse;flex-wrap:wrap-reverse}.flex-column-reverse-ns{-ms-flex-direction:column-reverse;flex-direction:column-reverse}.flex-row-reverse-ns{-ms-flex-direction:row-reverse;flex-direction:row-reverse}.items-start-ns{-ms-flex-align:start;align-items:flex-start}.items-end-ns{-ms-flex-align:end;align-items:flex-end}.items-center-ns{-ms-flex-align:center;align-items:center}.items-baseline-ns{-ms-flex-align:baseline;align-items:baseline}.items-stretch-ns{-ms-flex-align:stretch;align-items:stretch}.self-start-ns{-ms-flex-item-align:start;align-self:flex-start}.self-end-ns{-ms-flex-item-align:end;align-self:flex-end}.self-center-ns{-ms-flex-item-align:center;-ms-grid-row-align:center;align-self:center}.self-baseline-ns{-ms-flex-item-align:baseline;align-self:baseline}.self-stretch-ns{-ms-flex-item-align:stretch;-ms-grid-row-align:stretch;align-self:stretch}.justify-start-ns{-ms-flex-pack:start;justify-content:flex-start}.justify-end-ns{-ms-flex-pack:end;justify-content:flex-end}.justify-center-ns{-ms-flex-pack:center;justify-content:center}.justify-between-ns{-ms-flex-pack:justify;justify-content:space-between}.justify-around-ns{-ms-flex-pack:distribute;justify-content:space-around}.content-start-ns{-ms-flex-line-pack:start;align-content:flex-start}.content-end-ns{-ms-flex-line-pack:end;align-content:flex-end}.content-center-ns{-ms-flex-line-pack:center;align-content:center}.content-between-ns{-ms-flex-line-pack:justify;align-content:space-between}.content-around-ns{-ms-flex-line-pack:distribute;align-content:space-around}.content-stretch-ns{-ms-flex-line-pack:stretch;align-content:stretch}.order-0-ns{-ms-flex-order:0;order:0}.order-1-ns{-ms-flex-order:1;order:1}.order-2-ns{-ms-flex-order:2;order:2}.order-3-ns{-ms-flex-order:3;order:3}.order-4-ns{-ms-flex-order:4;order:4}.order-5-ns{-ms-flex-order:5;order:5}.order-6-ns{-ms-flex-order:6;order:6}.order-7-ns{-ms-flex-order:7;order:7}.order-8-ns{-ms-flex-order:8;order:8}.order-last-ns{-ms-flex-order:99999;order:99999}.flex-grow-0-ns{-ms-flex-positive:0;flex-grow:0}.flex-grow-1-ns{-ms-flex-positive:1;flex-grow:1}.flex-shrink-0-ns{-ms-flex-negative:0;flex-shrink:0}.flex-shrink-1-ns{-ms-flex-negative:1;flex-shrink:1}}@media screen and (min-width:45em){.flex-m{display:-ms-flexbox;display:flex}.inline-flex-m{display:-ms-inline-flexbox;display:inline-flex}.flex-auto-m{-ms-flex:1 1 auto;flex:1 1 auto;min-width:0;min-height:0}.flex-none-m{-ms-flex:none;flex:none}.flex-column-m{-ms-flex-direction:column;flex-direction:column}.flex-row-m{-ms-flex-direction:row;flex-direction:row}.flex-wrap-m{-ms-flex-wrap:wrap;flex-wrap:wrap}.flex-nowrap-m{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.flex-wrap-reverse-m{-ms-flex-wrap:wrap-reverse;flex-wrap:wrap-reverse}.flex-column-reverse-m{-ms-flex-direction:column-reverse;flex-direction:column-reverse}.flex-row-reverse-m{-ms-flex-direction:row-reverse;flex-direction:row-reverse}.items-start-m{-ms-flex-align:start;align-items:flex-start}.items-end-m{-ms-flex-align:end;align-items:flex-end}.items-center-m{-ms-flex-align:center;align-items:center}.items-baseline-m{-ms-flex-align:baseline;align-items:baseline}.items-stretch-m{-ms-flex-align:stretch;align-items:stretch}.self-start-m{-ms-flex-item-align:start;align-self:flex-start}.self-end-m{-ms-flex-item-align:end;align-self:flex-end}.self-center-m{-ms-flex-item-align:center;-ms-grid-row-align:center;align-self:center}.self-baseline-m{-ms-flex-item-align:baseline;align-self:baseline}.self-stretch-m{-ms-flex-item-align:stretch;-ms-grid-row-align:stretch;align-self:stretch}.justify-start-m{-ms-flex-pack:start;justify-content:flex-start}.justify-end-m{-ms-flex-pack:end;justify-content:flex-end}.justify-center-m{-ms-flex-pack:center;justify-content:center}.justify-between-m{-ms-flex-pack:justify;justify-content:space-between}.justify-around-m{-ms-flex-pack:distribute;justify-content:space-around}.content-start-m{-ms-flex-line-pack:start;align-content:flex-start}.content-end-m{-ms-flex-line-pack:end;align-content:flex-end}.content-center-m{-ms-flex-line-pack:center;align-content:center}.content-between-m{-ms-flex-line-pack:justify;align-content:space-between}.content-around-m{-ms-flex-line-pack:distribute;align-content:space-around}.content-stretch-m{-ms-flex-line-pack:stretch;align-content:stretch}.order-0-m{-ms-flex-order:0;order:0}.order-1-m{-ms-flex-order:1;order:1}.order-2-m{-ms-flex-order:2;order:2}.order-3-m{-ms-flex-order:3;order:3}.order-4-m{-ms-flex-order:4;order:4}.order-5-m{-ms-flex-order:5;order:5}.order-6-m{-ms-flex-order:6;order:6}.order-7-m{-ms-flex-order:7;order:7}.order-8-m{-ms-flex-order:8;order:8}.order-last-m{-ms-flex-order:99999;order:99999}.flex-grow-0-m{-ms-flex-positive:0;flex-grow:0}.flex-grow-1-m{-ms-flex-positive:1;flex-grow:1}.flex-shrink-0-m{-ms-flex-negative:0;flex-shrink:0}.flex-shrink-1-m{-ms-flex-negative:1;flex-shrink:1}}@media screen and (min-width:60em){.flex-l{display:-ms-flexbox;display:flex}.inline-flex-l{display:-ms-inline-flexbox;display:inline-flex}.flex-auto-l{-ms-flex:1 1 auto;flex:1 1 auto;min-width:0;min-height:0}.flex-none-l{-ms-flex:none;flex:none}.flex-column-l{-ms-flex-direction:column;flex-direction:column}.flex-row-l{-ms-flex-direction:row;flex-direction:row}.flex-wrap-l{-ms-flex-wrap:wrap;flex-wrap:wrap}.flex-nowrap-l{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.flex-wrap-reverse-l{-ms-flex-wrap:wrap-reverse;flex-wrap:wrap-reverse}.flex-column-reverse-l{-ms-flex-direction:column-reverse;flex-direction:column-reverse}.flex-row-reverse-l{-ms-flex-direction:row-reverse;flex-direction:row-reverse}.items-start-l{-ms-flex-align:start;align-items:flex-start}.items-end-l{-ms-flex-align:end;align-items:flex-end}.items-center-l{-ms-flex-align:center;align-items:center}.items-baseline-l{-ms-flex-align:baseline;align-items:baseline}.items-stretch-l{-ms-flex-align:stretch;align-items:stretch}.self-start-l{-ms-flex-item-align:start;align-self:flex-start}.self-end-l{-ms-flex-item-align:end;align-self:flex-end}.self-center-l{-ms-flex-item-align:center;-ms-grid-row-align:center;align-self:center}.self-baseline-l{-ms-flex-item-align:baseline;align-self:baseline}.self-stretch-l{-ms-flex-item-align:stretch;-ms-grid-row-align:stretch;align-self:stretch}.justify-start-l{-ms-flex-pack:start;justify-content:flex-start}.justify-end-l{-ms-flex-pack:end;justify-content:flex-end}.justify-center-l{-ms-flex-pack:center;justify-content:center}.justify-between-l{-ms-flex-pack:justify;justify-content:space-between}.justify-around-l{-ms-flex-pack:distribute;justify-content:space-around}.content-start-l{-ms-flex-line-pack:start;align-content:flex-start}.content-end-l{-ms-flex-line-pack:end;align-content:flex-end}.content-center-l{-ms-flex-line-pack:center;align-content:center}.content-between-l{-ms-flex-line-pack:justify;align-content:space-between}.content-around-l{-ms-flex-line-pack:distribute;align-content:space-around}.content-stretch-l{-ms-flex-line-pack:stretch;align-content:stretch}.order-0-l{-ms-flex-order:0;order:0}.order-1-l{-ms-flex-order:1;order:1}.order-2-l{-ms-flex-order:2;order:2}.order-3-l{-ms-flex-order:3;order:3}.order-4-l{-ms-flex-order:4;order:4}.order-5-l{-ms-flex-order:5;order:5}.order-6-l{-ms-flex-order:6;order:6}.order-7-l{-ms-flex-order:7;order:7}.order-8-l{-ms-flex-order:8;order:8}.order-last-l{-ms-flex-order:99999;order:99999}.flex-grow-0-l{-ms-flex-positive:0;flex-grow:0}.flex-grow-1-l{-ms-flex-positive:1;flex-grow:1}.flex-shrink-0-l{-ms-flex-negative:0;flex-shrink:0}.flex-shrink-1-l{-ms-flex-negative:1;flex-shrink:1}}.dn{display:none}.di{display:inline}.db{display:block}.dib{display:inline-block}.dt--fixed{table-layout:fixed;width:100%}@media screen and (min-width:30em){.dn-ns{display:none}.di-ns{display:inline}.db-ns{display:block}.dib-ns{display:inline-block}.dt--fixed-ns{table-layout:fixed;width:100%}}@media screen and (min-width:45em){.dn-m{display:none}.di-m{display:inline}.db-m{display:block}.dib-m{display:inline-block}.dt--fixed-m{table-layout:fixed;width:100%}}@media screen and (min-width:60em){.dn-l{display:none}.di-l{display:inline}.db-l{display:block}.dib-l{display:inline-block}.dt--fixed-l{table-layout:fixed;width:100%}}.fl{float:left;_display:inline}.fr{float:right;_display:inline}.fn{float:none}@media screen and (min-width:30em){.fl-ns{float:left;_display:inline}.fr-ns{float:right;_display:inline}.fn-ns{float:none}}@media screen and (min-width:45em){.fl-m{float:left;_display:inline}.fr-m{float:right;_display:inline}.fn-m{float:none}}@media screen and (min-width:60em){.fl-l{float:left;_display:inline}.fr-l{float:right;_display:inline}.fn-l{float:none}}.sans-serif{font-family:'Fakt Pro',-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif}.serif{font-family:serif}.system-sans-serif{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif}.system-serif{font-family:serif}code,.code,pre{font-family:"Jetbrains Mono","SFMono-Regular",Consolas,"Liberation Mono",Menlo,Courier,monospace}.i{font-style:italic}.fs-normal{font-style:normal}.normal{font-weight:normal}.b{font-weight:bold}.fw1{font-weight:100}.fw2{font-weight:200}.fw3{font-weight:300}.fw4{font-weight:400}.fw5{font-weight:500}.fw6{font-weight:600}.fw7{font-weight:700}.fw8{font-weight:800}.fw9{font-weight:900}.input-reset{-webkit-appearance:none;-moz-appearance:none}.button-reset::-moz-focus-inner,.input-reset::-moz-focus-inner{border:0;padding:0}.h1{height:16px;height:1rem}.h2{height:32px;height:2rem}.h3{height:64px;height:4rem}.h4{height:128px;height:8rem}.h5{height:256px;height:16rem}.h6{height:512px;height:32rem}.vh-25{height:25vh}.vh-50{height:50vh}.vh-75{height:75vh}.vh-100{height:100vh}.min-vh-100{min-height:100vh}.h-auto{height:auto}.h-inherit{height:inherit}@media screen and (min-width:30em){.h1-ns{height:1rem}.h2-ns{height:2rem}.h3-ns{height:4rem}.h4-ns{height:8rem}.h5-ns{height:16rem}.h6-ns{height:32rem}.h-25-ns{height:25%}.h-50-ns{height:50%}.h-75-ns{height:75%}.h-100-ns{height:100%}.min-h-100-ns{min-height:100%}.vh-25-ns{height:25vh}.vh-50-ns{height:50vh}.vh-75-ns{height:75vh}.vh-100-ns{height:100vh}.min-vh-100-ns{min-height:100vh}.h-auto-ns{height:auto}.h-inherit-ns{height:inherit}}@media screen and (min-width:45em){.h1-m{height:1rem}.h2-m{height:2rem}.h3-m{height:4rem}.h4-m{height:8rem}.h5-m{height:16rem}.h6-m{height:32rem}.h-25-m{height:25%}.h-50-m{height:50%}.h-75-m{height:75%}.h-100-m{height:100%}.min-h-100-m{min-height:100%}.vh-25-m{height:25vh}.vh-50-m{height:50vh}.vh-75-m{height:75vh}.vh-100-m{height:100vh}.min-vh-100-m{min-height:100vh}.h-auto-m{height:auto}.h-inherit-m{height:inherit}}@media screen and (min-width:60em){.h1-l{height:1rem}.h2-l{height:2rem}.h3-l{height:4rem}.h4-l{height:8rem}.h5-l{height:16rem}.h6-l{height:32rem}.h-25-l{height:25%}.h-50-l{height:50%}.h-75-l{height:75%}.h-100-l{height:100%}.min-h-100-l{min-height:100%}.vh-25-l{height:25vh}.vh-50-l{height:50vh}.vh-75-l{height:75vh}.vh-100-l{height:100vh}.min-vh-100-l{min-height:100vh}.h-auto-l{height:auto}.h-inherit-l{height:inherit}}.tracked{letter-spacing:.1em}.tracked-tight{letter-spacing:-.05em}.tracked-mega{letter-spacing:.25em}.lh-solid{line-height:1}.lh-title{line-height:1.25}.lh-copy{line-height:1.5}.lh-loose{line-height:1.75}.link{text-decoration:none}.link:focus{outline:1px dotted currentColor}.list{list-style-type:none}.mw-100{max-width:100%}.mw1{max-width:16px;max-width:1rem}.mw2{max-width:32px;max-width:2rem}.mw3{max-width:64px;max-width:4rem}.mw4{max-width:128px;max-width:8rem}.mw5{max-width:256px;max-width:16rem}.mw6{max-width:512px;max-width:32rem}.mw7{max-width:768px;max-width:48rem}.mw8{max-width:1024px;max-width:64rem}.mw9{max-width:1344px;max-width:84rem}.mw-none{max-width:none}@media screen and (min-width:30em){.mw-100-ns{max-width:100%}.mw1-ns{max-width:1rem}.mw2-ns{max-width:2rem}.mw3-ns{max-width:4rem}.mw4-ns{max-width:8rem}.mw5-ns{max-width:16rem}.mw6-ns{max-width:32rem}.mw7-ns{max-width:48rem}.mw8-ns{max-width:64rem}.mw9-ns{max-width:84rem}.mw-none-ns{max-width:none}}@media screen and (min-width:45em){.mw-100-m{max-width:100%}.mw1-m{max-width:1rem}.mw2-m{max-width:2rem}.mw3-m{max-width:4rem}.mw4-m{max-width:8rem}.mw5-m{max-width:16rem}.mw6-m{max-width:32rem}.mw7-m{max-width:48rem}.mw8-m{max-width:64rem}.mw9-m{max-width:84rem}.mw-none-m{max-width:none}}@media screen and (min-width:60em){.mw-100-l{max-width:100%}.mw1-l{max-width:1rem}.mw2-l{max-width:2rem}.mw3-l{max-width:4rem}.mw4-l{max-width:8rem}.mw5-l{max-width:16rem}.mw6-l{max-width:32rem}.mw7-l{max-width:48rem}.mw8-l{max-width:64rem}.mw9-l{max-width:84rem}.mw-none-l{max-width:none}}.w1{width:16px;width:1rem}.w2{width:32px;width:2rem}.w3{width:64px;width:4rem}.w4{width:128px;width:8rem}.w5{width:256px;width:16rem}.w6{width:320px;width:20rem}.w-10{width:10%}.w-20{width:20%}.w-25{width:25%}.w-30{width:30%}.w-33{width:33%}.w-34{width:34%}.w-40{width:40%}.w-50{width:50%}.w-60{width:60%}.w-70{width:70%}.w-75{width:75%}.w-80{width:80%}.w-90{width:90%}.w-100{width:100%}.w-third{width:33.33333%}.w-two-thirds{width:66.66667%}.w-auto{width:auto}@media screen and (min-width:30em){.w1-ns{width:1rem}.w2-ns{width:2rem}.w3-ns{width:4rem}.w4-ns{width:8rem}.w5-ns{width:16rem}.w6-ns{width:20rem}.w-10-ns{width:10%}.w-20-ns{width:20%}.w-25-ns{width:25%}.w-30-ns{width:30%}.w-33-ns{width:33%}.w-34-ns{width:34%}.w-40-ns{width:40%}.w-50-ns{width:50%}.w-60-ns{width:60%}.w-70-ns{width:70%}.w-75-ns{width:75%}.w-80-ns{width:80%}.w-90-ns{width:90%}.w-100-ns{width:100%}.w-third-ns{width:33.33333%}.w-two-thirds-ns{width:66.66667%}.w-auto-ns{width:auto}}@media screen and (min-width:45em){.w1-m{width:1rem}.w2-m{width:2rem}.w3-m{width:4rem}.w4-m{width:8rem}.w5-m{width:16rem}.w6-m{width:20rem}.w-10-m{width:10%}.w-20-m{width:20%}.w-25-m{width:25%}.w-30-m{width:30%}.w-33-m{width:33%}.w-34-m{width:34%}.w-40-m{width:40%}.w-50-m{width:50%}.w-60-m{width:60%}.w-70-m{width:70%}.w-75-m{width:75%}.w-80-m{width:80%}.w-90-m{width:90%}.w-100-m{width:100%}.w-third-m{width:33.33333%}.w-two-thirds-m{width:66.66667%}.w-auto-m{width:auto}}@media screen and (min-width:60em){.w1-l{width:1rem}.w2-l{width:2rem}.w3-l{width:4rem}.w4-l{width:8rem}.w5-l{width:16rem}.w6-l{width:20rem}.w-10-l{width:10%}.w-20-l{width:20%}.w-25-l{width:25%}.w-30-l{width:30%}.w-33-l{width:33%}.w-34-l{width:34%}.w-40-l{width:40%}.w-50-l{width:50%}.w-60-l{width:60%}.w-70-l{width:70%}.w-75-l{width:75%}.w-80-l{width:80%}.w-90-l{width:90%}.w-100-l{width:100%}.w-third-l{width:33.33333%}.w-two-thirds-l{width:66.66667%}.w-auto-l{width:auto}}.overflow-visible{overflow:visible}.overflow-hidden{overflow:hidden}.overflow-scroll{overflow:scroll}.overflow-auto{overflow:auto}.overflow-x-visible{overflow-x:visible}.overflow-x-hidden{overflow-x:hidden}.overflow-x-scroll{overflow-x:scroll}.overflow-x-auto{overflow-x:auto}.overflow-y-visible{overflow-y:visible}.overflow-y-hidden{overflow-y:hidden}.overflow-y-scroll{overflow-y:scroll}.overflow-y-auto{overflow-y:auto}@media screen and (min-width:30em){.overflow-visible-ns{overflow:visible}.overflow-hidden-ns{overflow:hidden}.overflow-scroll-ns{overflow:scroll}.overflow-auto-ns{overflow:auto}.overflow-x-visible-ns{overflow-x:visible}.overflow-x-hidden-ns{overflow-x:hidden}.overflow-x-scroll-ns{overflow-x:scroll}.overflow-x-auto-ns{overflow-x:auto}.overflow-y-visible-ns{overflow-y:visible}.overflow-y-hidden-ns{overflow-y:hidden}.overflow-y-scroll-ns{overflow-y:scroll}.overflow-y-auto-ns{overflow-y:auto}}@media screen and (min-width:45em){.overflow-visible-m{overflow:visible}.overflow-hidden-m{overflow:hidden}.overflow-scroll-m{overflow:scroll}.overflow-auto-m{overflow:auto}.overflow-x-visible-m{overflow-x:visible}.overflow-x-hidden-m{overflow-x:hidden}.overflow-x-scroll-m{overflow-x:scroll}.overflow-x-auto-m{overflow-x:auto}.overflow-y-visible-m{overflow-y:visible}.overflow-y-hidden-m{overflow-y:hidden}.overflow-y-scroll-m{overflow-y:scroll}.overflow-y-auto-m{overflow-y:auto}}@media screen and (min-width:60em){.overflow-visible-l{overflow:visible}.overflow-hidden-l{overflow:hidden}.overflow-scroll-l{overflow:scroll}.overflow-auto-l{overflow:auto}.overflow-x-visible-l{overflow-x:visible}.overflow-x-hidden-l{overflow-x:hidden}.overflow-x-scroll-l{overflow-x:scroll}.overflow-x-auto-l{overflow-x:auto}.overflow-y-visible-l{overflow-y:visible}.overflow-y-hidden-l{overflow-y:hidden}.overflow-y-scroll-l{overflow-y:scroll}.overflow-y-auto-l{overflow-y:auto}}.static{position:static}.relative{position:relative}.absolute{position:absolute}.fixed{position:fixed}@media screen and (min-width:30em){.static-ns{position:static}.relative-ns{position:relative}.absolute-ns{position:absolute}.fixed-ns{position:fixed}}@media screen and (min-width:45em){.static-m{position:static}.relative-m{position:relative}.absolute-m{position:absolute}.fixed-m{position:fixed}}@media screen and (min-width:60em){.static-l{position:static}.relative-l{position:relative}.absolute-l{position:absolute}.fixed-l{position:fixed}}.o-100{opacity:1}.o-90{opacity:.9}.o-80{opacity:.8}.o-70{opacity:.7}.o-60{opacity:.6}.o-50{opacity:.5}.o-40{opacity:.4}.o-30{opacity:.3}.o-20{opacity:.2}.o-10{opacity:.1}.o-05{opacity:.05}.o-025{opacity:.025}.o-0{opacity:0}.hover-o-100:hover{opacity:1}.hover-o-90:hover{opacity:.9}.hover-o-80:hover{opacity:.8}.hover-o-70:hover{opacity:.7}.hover-o-60:hover{opacity:.6}.hover-o-50:hover{opacity:.5}.hover-o-40:hover{opacity:.4}.hover-o-30:hover{opacity:.3}.hover-o-20:hover{opacity:.2}.hover-o-10:hover{opacity:.1}.hover-o-05:hover{opacity:.05}.hover-o-025:hover{opacity:.025}.hover-o-0:hover{opacity:0}.black{color:#000}.white{color:#FFF}.transparent{color:transparent}.bg-black{background-color:#000}.bg-white{background-color:#FFF}.bg-transparent{background-color:transparent}.dark-gray{color:#202b30}.dim-gray{color:#495358}.gray{color:#677278}.mid-gray{color:#96a0a6}.light-gray{color:#b5bcc0}.lighter-gray{color:#d3dade}.lightest-gray{color:#e5e8ea}.washed-gray{color:#f5f8f9}.near-white{color:#f7fafb}.bg-dark-gray{background-color:#202b30}.bg-dim-gray{background-color:#495358}.bg-gray{background-color:#677278}.bg-mid-gray{background-color:#96a0a6}.bg-light-gray{background-color:#b5bcc0}.bg-lighter-gray{background-color:#d3dade}.bg-lightest-gray{background-color:#e5e8ea}.bg-washed-gray{background-color:#f5f8f9}.bg-near-white{background-color:#f7fafb}.dark-green{color:#007343}.green{color:#00a569}.lightest-green{color:#cef1c8}.bg-dark-green{background-color:#007343}.bg-green{background-color:#00a569}.bg-lightest-green{background-color:#cef1c8}.bg-washed-green{background-color:#e2f5e0}.bg-flash-lightest-green{animation:flash-bg-lightest-green 2s}@keyframes flash-bg-lightest-green{0%,80%{background-color:#cef1c8}100%{background-color:transparent}}.bg-flash-lightest-yellow{animation:flash-bg-lightest-yellow 2s}@keyframes flash-bg-lightest-yellow{0%,80%{background-color:#fff3bf}100%{background-color:transparent}}.dark-red{color:#b71c1c}.red{color:#e53935}.lightest-red{color:#fdd}.bg-dark-red{background-color:#b71c1c}.bg-red{background-color:#e53935}.bg-lightest-red{background-color:#fdd}.bg-washed-red{background-color:#ffecec}.dark-indigo{color:#00359f}.indigo{color:#1570ff}.lightest-indigo{color:#cedcff}.washed-indigo{color:#f2f5fd}.bg-dark-indigo{background-color:#00359f}.bg-indigo{background-color:#1570ff}.bg-lightest-indigo{background-color:#cedcff}.bg-washed-indigo{background-color:#f2f5fd}.blue{color:#2196f3}.link-blue{color:#00359f}.bg-link-blue{background-color:#00359f}.bg-blue{background-color:#2196f3}.bg-lighter-blue{background-color:#b0e3fd}.bg-lightest-blue{background-color:#c7edff}.bg-washed-blue{background-color:#eff8ff}.dark-purple{color:#5122a5}.purple{color:#8658d6}.lightest-purple{color:#e3d5ff}.washed-purple{color:#f3ecff}.bg-dark-purple{background-color:#5122a5}.bg-purple{background-color:#8658d6}.bg-lightest-purple{background-color:#e3d5ff}.bg-washed-purple{background-color:#f3ecff}.yellow{color:#fbc335}.lightest-yellow{color:#fff3bf}.washed-yellow{color:#fffae4}.bg-yellow{background-color:#fbc335}.bg-lightest-yellow{background-color:#fff3bf}.bg-washed-yellow{background-color:#fffae4}.dark-orange{color:#b85d00}.orange{color:#fd7e14}.lightest-orange{color:#ffe1bd}.washed-orange{color:#ffeeda}.bg-dark-orange{background-color:#b85d00}.bg-orange{background-color:#fd7e14}.bg-lightest-orange{background-color:#ffe1bd}.bg-washed-orange{background-color:#ffeeda}.dark-brown{color:#974510}.lightest-brown{color:#f6f3ec}.washed-brown{color:#fffef9}.bg-dark-brown{background-color:#974510}.bg-lightest-brown{background-color:#f6f3ec}.bg-washed-brown{background-color:#fffef9}.magenta{color:#e91e63}.bg-magenta{background-color:#e91e63}.cyan{color:#00acc1}.bg-cyan{background-color:#00acc1}.black-90{color:rgba(0,0,0,.9)}.black-80{color:rgba(0,0,0,.8)}.black-70{color:rgba(0,0,0,.7)}.black-60{color:rgba(0,0,0,.6)}.black-50{color:rgba(0,0,0,.5)}.black-40{color:rgba(0,0,0,.4)}.black-30{color:rgba(0,0,0,.3)}.black-20{color:rgba(0,0,0,.2)}.black-10{color:rgba(0,0,0,.1)}.black-05{color:rgba(0,0,0,.05)}.white-90{color:rgba(255,255,255,.9)}.white-80{color:rgba(255,255,255,.8)}.white-70{color:rgba(255,255,255,.7)}.white-60{color:rgba(255,255,255,.6)}.white-50{color:rgba(255,255,255,.5)}.white-40{color:rgba(255,255,255,.4)}.white-30{color:rgba(255,255,255,.3)}.white-20{color:rgba(255,255,255,.2)}.white-10{color:rgba(255,255,255,.1)}.bg-black-90{background-color:rgba(0,0,0,.9)}.bg-black-80{background-color:rgba(0,0,0,.8)}.bg-black-70{background-color:rgba(0,0,0,.7)}.bg-black-60{background-color:rgba(0,0,0,.6)}.bg-black-50{background-color:rgba(0,0,0,.5)}.bg-black-40{background-color:rgba(0,0,0,.4)}.bg-black-30{background-color:rgba(0,0,0,.3)}.bg-black-20{background-color:rgba(0,0,0,.2)}.bg-black-10{background-color:rgba(0,0,0,.1)}.bg-black-05{background-color:rgba(0,0,0,.05)}.bg-black-025{background-color:rgba(0,0,0,.025)}.bg-white-90{background-color:rgba(255,255,255,.9)}.bg-white-80{background-color:rgba(255,255,255,.8)}.bg-white-70{background-color:rgba(255,255,255,.7)}.bg-white-60{background-color:rgba(255,255,255,.6)}.bg-white-50{background-color:rgba(255,255,255,.5)}.bg-white-40{background-color:rgba(255,255,255,.4)}.bg-white-30{background-color:rgba(255,255,255,.3)}.bg-white-20{background-color:rgba(255,255,255,.2)}.bg-white-10{background-color:rgba(255,255,255,.1)}.hover-black:hover,.hover-black:focus{color:#000}.hover-white:hover,.hover-white:focus{color:#FFF}.hover-black-90:hover,.hover-black-90:focus{color:rgba(0,0,0,.9)}.hover-black-80:hover,.hover-black-80:focus{color:rgba(0,0,0,.8)}.hover-black-70:hover,.hover-black-70:focus{color:rgba(0,0,0,.7)}.hover-black-60:hover,.hover-black-60:focus{color:rgba(0,0,0,.6)}.hover-black-50:hover,.hover-black-50:focus{color:rgba(0,0,0,.5)}.hover-black-40:hover,.hover-black-40:focus{color:rgba(0,0,0,.4)}.hover-black-30:hover,.hover-black-30:focus{color:rgba(0,0,0,.3)}.hover-black-20:hover,.hover-black-20:focus{color:rgba(0,0,0,.2)}.hover-black-10:hover,.hover-black-10:focus{color:rgba(0,0,0,.1)}.hover-white-90:hover,.hover-white-90:focus{color:rgba(255,255,255,.9)}.hover-white-80:hover,.hover-white-80:focus{color:rgba(255,255,255,.8)}.hover-white-70:hover,.hover-white-70:focus{color:rgba(255,255,255,.7)}.hover-white-60:hover,.hover-white-60:focus{color:rgba(255,255,255,.6)}.hover-white-50:hover,.hover-white-50:focus{color:rgba(255,255,255,.5)}.hover-white-40:hover,.hover-white-40:focus{color:rgba(255,255,255,.4)}.hover-white-30:hover,.hover-white-30:focus{color:rgba(255,255,255,.3)}.hover-white-20:hover,.hover-white-20:focus{color:rgba(255,255,255,.2)}.hover-white-10:hover,.hover-white-10:focus{color:rgba(255,255,255,.1)}.hover-bg-black:hover,.hover-bg-black:focus{background-color:#000}.hover-bg-white:hover,.hover-bg-white:focus{background-color:#FFF}.hover-bg-transparent:hover,.hover-bg-transparent:focus{background-color:transparent}.hover-bg-black-90:hover,.hover-bg-black-90:focus{background-color:rgba(0,0,0,.9)}.hover-bg-black-80:hover,.hover-bg-black-80:focus{background-color:rgba(0,0,0,.8)}.hover-bg-black-70:hover,.hover-bg-black-70:focus{background-color:rgba(0,0,0,.7)}.hover-bg-black-60:hover,.hover-bg-black-60:focus{background-color:rgba(0,0,0,.6)}.hover-bg-black-50:hover,.hover-bg-black-50:focus{background-color:rgba(0,0,0,.5)}.hover-bg-black-40:hover,.hover-bg-black-40:focus{background-color:rgba(0,0,0,.4)}.hover-bg-black-30:hover,.hover-bg-black-30:focus{background-color:rgba(0,0,0,.3)}.hover-bg-black-20:hover,.hover-bg-black-20:focus{background-color:rgba(0,0,0,.2)}.hover-bg-black-10:hover,.hover-bg-black-10:focus{background-color:rgba(0,0,0,.1)}.hover-bg-white-90:hover,.hover-bg-white-90:focus{background-color:rgba(255,255,255,.9)}.hover-bg-white-80:hover,.hover-bg-white-80:focus{background-color:rgba(255,255,255,.8)}.hover-bg-white-70:hover,.hover-bg-white-70:focus{background-color:rgba(255,255,255,.7)}.hover-bg-white-60:hover,.hover-bg-white-60:focus{background-color:rgba(255,255,255,.6)}.hover-bg-white-50:hover,.hover-bg-white-50:focus{background-color:rgba(255,255,255,.5)}.hover-bg-white-40:hover,.hover-bg-white-40:focus{background-color:rgba(255,255,255,.4)}.hover-bg-white-30:hover,.hover-bg-white-30:focus{background-color:rgba(255,255,255,.3)}.hover-bg-white-20:hover,.hover-bg-white-20:focus{background-color:rgba(255,255,255,.2)}.hover-bg-white-10:hover,.hover-bg-white-10:focus{background-color:rgba(255,255,255,.1)}.hover-bg-black-05:hover,.hover-bg-black-05:focus{background-color:rgba(0,0,0,.05)}.hover-dark-gray:hover,.hover-dark-gray:focus{color:#202b30}.hover-dim-gray:hover,.hover-dim-gray:focus{color:#495358}.hover-gray:hover,.hover-gray:focus{color:#677278}.hover-mid-gray:hover,.hover-mid-gray:focus{color:#96a0a6}.hover-light-gray:hover,.hover-light-gray:focus{color:#b5bcc0}.hover-lighter-gray:hover,.hover-lighter-gray:focus{color:#d3dade}.hover-lightest-gray:hover,.hover-lightest-gray:focus{color:#e5e8ea}.hover-washed-gray:hover,.hover-washed-gray:focus{color:#f5f8f9}.hover-bg-dark-gray:hover,.hover-bg-dark-gray:focus{background-color:#202b30}.hover-bg-dim-gray:hover,.hover-bg-dim-gray:focus{background-color:#495358}.hover-bg-gray:hover,.hover-bg-gray:focus{background-color:#677278}.hover-bg-mid-gray:hover,.hover-bg-mid-gray:focus{background-color:#96a0a6}.hover-bg-light-gray:hover,.hover-bg-light-gray:focus{background-color:#b5bcc0}.hover-bg-lighter-gray:hover,.hover-bg-lighter-gray:focus{background-color:#d3dade}.hover-bg-lightest-gray:hover,.hover-bg-lightest-gray:focus{background-color:#e5e8ea}.hover-bg-washed-gray:hover,.hover-bg-washed-gray:focus{background-color:#f5f8f9}.hover-bg-near-white:hover,.hover-bg-near-white:focus{background-color:#f7fafb}.hover-dark-green:hover,.hover-dark-green:focus{color:#007343}.hover-green:hover,.hover-green:focus{color:#00a569}.hover-lightest-green:hover,.hover-lightest-green:focus{color:#cef1c8}.hover-bg-dark-green:hover,.hover-bg-dark-green:focus{background-color:#007343}.hover-bg-green:hover,.hover-bg-green:focus{background-color:#00a569}.hover-bg-lightest-green:hover,.hover-bg-lightest-green:focus{background-color:#cef1c8}.hover-bg-washed-green:hover,.hover-bg-washed-green:focus{background-color:#e2f5e0}.hover-dark-red:hover,.hover-dark-red:focus{color:#b71c1c}.hover-red:hover,.hover-red:focus{color:#e53935}.hover-lightest-red:hover,.hover-lightest-red:focus{color:#fdd}.hover-bg-dark-red:hover,.hover-bg-dark-red:focus{background-color:#b71c1c}.hover-bg-red:hover,.hover-bg-red:focus{background-color:#e53935}.hover-bg-lightest-red:hover,.hover-bg-lightest-red:focus{background-color:#fdd}.hover-bg-washed-red:hover,.hover-bg-washed-red:focus{background-color:#ffecec}.hover-link-blue:hover,.hover-link-blue:focus{color:#00359f}.hover-bg-link-blue:hover,.hover-bg-link-blue:focus{background-color:#00359f}.hover-bg-light-blue:hover,.hover-bg-light-blue:focus{background-color:var(--light-blue)}.hover-bg-lighter-blue:hover,.hover-bg-lighter-blue:focus{background-color:#b0e3fd}.hover-bg-lightest-blue:hover,.hover-bg-lightest-blue:focus{background-color:#c7edff}.hover-dark-indigo:hover,.hover-dark-indigo:focus{color:#00359f}.hover-bg-dark-indigo:hover,.hover-bg-dark-indigo:focus{background-color:#00359f}.hover-bg-indigo:hover,.hover-bg-indigo:focus{background-color:#1570ff}.hover-bg-lightest-indigo:hover,.hover-bg-lightest-indigo:focus{background-color:#cedcff}.hover-bg-washed-indigo:hover,.hover-bg-washed-indigo:focus{background-color:#f2f5fd}.hover-dark-purple:hover,.hover-dark-purple:focus{color:#5122a5}.hover-bg-dark-purple:hover,.hover-bg-dark-purple:focus{background-color:#5122a5}.hover-purple:hover,.hover-purple:focus{color:#8658d6}.hover-bg-purple:hover,.hover-bg-purple:focus{background-color:#8658d6}.hover-bg-lightest-purple:hover,.hover-bg-lightest-purple:focus{background-color:#e3d5ff}.hover-bg-washed-purple:hover,.hover-bg-washed-purple:focus{background-color:#f3ecff}.hover-orange:hover,.hover-orange:focus{color:#fd7e14}.hover-lightest-orange:hover,.hover-lightest-orange:focus{color:#ffe1bd}.hover-washed-orange:hover,.hover-washed-orange:focus{color:#ffeeda}.hover-bg-orange:hover,.hover-bg-orange:focus{background-color:#fd7e14}.hover-bg-lightest-orange:hover,.hover-bg-lightest-orange:focus{background-color:#ffe1bd}.hover-bg-washed-orange:hover,.hover-bg-washed-orange:focus{background-color:#ffeeda}.hover-yellow:hover,.hover-yellow:focus{color:#fbc335}.hover-lightest-yellow:hover,.hover-lightest-yellow:focus{color:#fff3bf}.hover-washed-yellow:hover,.hover-washed-yellow:focus{color:#fffae4}.hover-bg-yellow:hover,.hover-bg-yellow:focus{background-color:#fbc335}.hover-bg-lightest-yellow:hover,.hover-bg-lightest-yellow:focus{background-color:#fff3bf}.hover-bg-washed-yellow:hover,.hover-bg-washed-yellow:focus{background-color:#fffae4}.hover-dark-brown:hover,.hover-dark-brown:focus{color:#974510}.hover-bg-dark-brown:hover,.hover-bg-dark-brown:focus{background-color:#974510}.hover-lightest-brown:hover,.hover-lightest-brown:focus{color:#f6f3ec}.hover-bg-lightest-brown:hover,.hover-bg-lightest-brown:focus{background-color:#f6f3ec}.hover-washed-brown:hover,.hover-washed-brown:focus{color:#fffef9}.hover-bg-washed-brown:hover,.hover-bg-washed-brown:focus{background-color:#fffef9}.hover-inherit:hover,.hover-inherit:focus{color:inherit}.hover-bg-inherit:hover,.hover-bg-inherit:focus{background-color:inherit}.pa0{padding:0}.pa1{padding:4px;padding:.25rem}.pa2{padding:8px;padding:.5rem}.pa3{padding:16px;padding:1rem}.pa4{padding:32px;padding:2rem}.pa5{padding:64px;padding:4rem}.pa6{padding:128px;padding:8rem}.pa7{padding:256px;padding:16rem}.pl0{padding-left:0}.pl1{padding-left:4px;padding-left:.25rem}.pl2{padding-left:8px;padding-left:.5rem}.pl3{padding-left:16px;padding-left:1rem}.pl4{padding-left:32px;padding-left:2rem}.pl5{padding-left:64px;padding-left:4rem}.pl6{padding-left:128px;padding-left:8rem}.pl7{padding-left:256px;padding-left:16rem}.pr0{padding-right:0}.pr1{padding-right:4px;padding-right:.25rem}.pr2{padding-right:8px;padding-right:.5rem}.pr3{padding-right:16px;padding-right:1rem}.pr4{padding-right:32px;padding-right:2rem}.pr5{padding-right:64px;padding-right:4rem}.pr6{padding-right:128px;padding-right:8rem}.pr7{padding-right:256px;padding-right:16rem}.pb0{padding-bottom:0}.pb1{padding-bottom:4px;padding-bottom:.25rem}.pb2{padding-bottom:8px;padding-bottom:.5rem}.pb3{padding-bottom:16px;padding-bottom:1rem}.pb4{padding-bottom:32px;padding-bottom:2rem}.pb5{padding-bottom:64px;padding-bottom:4rem}.pb6{padding-bottom:128px;padding-bottom:8rem}.pb7{padding-bottom:256px;padding-bottom:16rem}.pt0{padding-top:0}.pt1{padding-top:4px;padding-top:.25rem}.pt2{padding-top:8px;padding-top:.5rem}.pt3{padding-top:16px;padding-top:1rem}.pt4{padding-top:32px;padding-top:2rem}.pt5{padding-top:64px;padding-top:4rem}.pt6{padding-top:128px;padding-top:8rem}.pt7{padding-top:256px;padding-top:16rem}.pv0{padding-top:0;padding-bottom:0}.pv1{padding-top:4px;padding-top:.25rem;padding-bottom:4px;padding-bottom:.25rem}.pv2{padding-top:8px;padding-top:.5rem;padding-bottom:8px;padding-bottom:.5rem}.pv3{padding-top:16px;padding-top:1rem;padding-bottom:16px;padding-bottom:1rem}.pv4{padding-top:32px;padding-top:2rem;padding-bottom:32px;padding-bottom:2rem}.pv5{padding-top:64px;padding-top:4rem;padding-bottom:64px;padding-bottom:4rem}.pv6{padding-top:128px;padding-top:8rem;padding-bottom:128px;padding-bottom:8rem}.pv7{padding-top:256px;padding-top:16rem;padding-bottom:256px;padding-bottom:16rem}.ph0{padding-left:0;padding-right:0}.ph1{padding-left:4px;padding-left:.25rem;padding-right:4px;padding-right:.25rem}.ph2{padding-left:8px;padding-left:.5rem;padding-right:8px;padding-right:.5rem}.ph3{padding-left:16px;padding-left:1rem;padding-right:16px;padding-right:1rem}.ph4{padding-left:32px;padding-left:2rem;padding-right:32px;padding-right:2rem}.ph5{padding-left:64px;padding-left:4rem;padding-right:64px;padding-right:4rem}.ph6{padding-left:128px;padding-left:8rem;padding-right:128px;padding-right:8rem}.ph7{padding-left:256px;padding-left:16rem;padding-right:256px;padding-right:16rem}.ma0{margin:0}.ma1{margin:4px;margin:.25rem}.ma2{margin:8px;margin:.5rem}.ma3{margin:16px;margin:1rem}.ma4{margin:32px;margin:2rem}.ma5{margin:64px;margin:4rem}.ma6{margin:128px;margin:8rem}.ma7{margin:256px;margin:16rem}.ml0{margin-left:0}.ml1{margin-left:4px;margin-left:.25rem}.ml2{margin-left:8px;margin-left:.5rem}.ml3{margin-left:16px;margin-left:1rem}.ml4{margin-left:32px;margin-left:2rem}.ml5{margin-left:64px;margin-left:4rem}.ml6{margin-left:128px;margin-left:8rem}.ml7{margin-left:256px;margin-left:16rem}.mr0{margin-right:0}.mr1{margin-right:4px;margin-right:.25rem}.mr2{margin-right:8px;margin-right:.5rem}.mr3{margin-right:16px;margin-right:1rem}.mr4{margin-right:32px;margin-right:2rem}.mr5{margin-right:64px;margin-right:4rem}.mr6{margin-right:128px;margin-right:8rem}.mr7{margin-right:256px;margin-right:16rem}.mb0{margin-bottom:0}.mb1{margin-bottom:4px;margin-bottom:.25rem}.mb2{margin-bottom:8px;margin-bottom:.5rem}.mb3{margin-bottom:16px;margin-bottom:1rem}.mb4{margin-bottom:32px;margin-bottom:2rem}.mb5{margin-bottom:64px;margin-bottom:4rem}.mb6{margin-bottom:128px;margin-bottom:8rem}.mb7{margin-bottom:256px;margin-bottom:16rem}.mt0{margin-top:0}.mt1{margin-top:4px;margin-top:.25rem}.mt2{margin-top:8px;margin-top:.5rem}.mt3{margin-top:16px;margin-top:1rem}.mt4{margin-top:32px;margin-top:2rem}.mt5{margin-top:64px;margin-top:4rem}.mt6{margin-top:128px;margin-top:8rem}.mt7{margin-top:256px;margin-top:16rem}.mv0{margin-top:0;margin-bottom:0}.mv1{margin-top:4px;margin-top:.25rem;margin-bottom:4px;margin-bottom:.25rem}.mv2{margin-top:8px;margin-top:.5rem;margin-bottom:8px;margin-bottom:.5rem}.mv3{margin-top:16px;margin-top:1rem;margin-bottom:16px;margin-bottom:1rem}.mv4{margin-top:32px;margin-top:2rem;margin-bottom:32px;margin-bottom:2rem}.mv5{margin-top:64px;margin-top:4rem;margin-bottom:64px;margin-bottom:4rem}.mv6{margin-top:128px;margin-top:8rem;margin-bottom:128px;margin-bottom:8rem}.mv7{margin-top:256px;margin-top:16rem;margin-bottom:256px;margin-bottom:16rem}.mh0{margin-left:0;margin-right:0}.mh1{margin-left:4px;margin-left:.25rem;margin-right:4px;margin-right:.25rem}.mh2{margin-left:8px;margin-left:.5rem;margin-right:8px;margin-right:.5rem}.mh3{margin-left:16px;margin-left:1rem;margin-right:16px;margin-right:1rem}.mh4{margin-left:32px;margin-left:2rem;margin-right:32px;margin-right:2rem}.mh5{margin-left:64px;margin-left:4rem;margin-right:64px;margin-right:4rem}.mh6{margin-left:128px;margin-left:8rem;margin-right:128px;margin-right:8rem}.mh7{margin-left:256px;margin-left:16rem;margin-right:256px;margin-right:16rem}@media screen and (min-width:30em){.pa0-ns{padding:0}.pa1-ns{padding:.25rem}.pa2-ns{padding:.5rem}.pa3-ns{padding:1rem}.pa4-ns{padding:2rem}.pa5-ns{padding:4rem}.pa6-ns{padding:8rem}.pa7-ns{padding:16rem}.pl0-ns{padding-left:0}.pl1-ns{padding-left:.25rem}.pl2-ns{padding-left:.5rem}.pl3-ns{padding-left:1rem}.pl4-ns{padding-left:2rem}.pl5-ns{padding-left:4rem}.pl6-ns{padding-left:8rem}.pl7-ns{padding-left:16rem}.pr0-ns{padding-right:0}.pr1-ns{padding-right:.25rem}.pr2-ns{padding-right:.5rem}.pr3-ns{padding-right:1rem}.pr4-ns{padding-right:2rem}.pr5-ns{padding-right:4rem}.pr6-ns{padding-right:8rem}.pr7-ns{padding-right:16rem}.pb0-ns{padding-bottom:0}.pb1-ns{padding-bottom:.25rem}.pb2-ns{padding-bottom:.5rem}.pb3-ns{padding-bottom:1rem}.pb4-ns{padding-bottom:2rem}.pb5-ns{padding-bottom:4rem}.pb6-ns{padding-bottom:8rem}.pb7-ns{padding-bottom:16rem}.pt0-ns{padding-top:0}.pt1-ns{padding-top:.25rem}.pt2-ns{padding-top:.5rem}.pt3-ns{padding-top:1rem}.pt4-ns{padding-top:2rem}.pt5-ns{padding-top:4rem}.pt6-ns{padding-top:8rem}.pt7-ns{padding-top:16rem}.pv0-ns{padding-top:0;padding-bottom:0}.pv1-ns{padding-top:.25rem;padding-bottom:.25rem}.pv2-ns{padding-top:.5rem;padding-bottom:.5rem}.pv3-ns{padding-top:1rem;padding-bottom:1rem}.pv4-ns{padding-top:2rem;padding-bottom:2rem}.pv5-ns{padding-top:4rem;padding-bottom:4rem}.pv6-ns{padding-top:8rem;padding-bottom:8rem}.pv7-ns{padding-top:16rem;padding-bottom:16rem}.ph0-ns{padding-left:0;padding-right:0}.ph1-ns{padding-left:.25rem;padding-right:.25rem}.ph2-ns{padding-left:.5rem;padding-right:.5rem}.ph3-ns{padding-left:1rem;padding-right:1rem}.ph4-ns{padding-left:2rem;padding-right:2rem}.ph5-ns{padding-left:4rem;padding-right:4rem}.ph6-ns{padding-left:8rem;padding-right:8rem}.ph7-ns{padding-left:16rem;padding-right:16rem}.ma0-ns{margin:0}.ma1-ns{margin:.25rem}.ma2-ns{margin:.5rem}.ma3-ns{margin:1rem}.ma4-ns{margin:2rem}.ma5-ns{margin:4rem}.ma6-ns{margin:8rem}.ma7-ns{margin:16rem}.ml0-ns{margin-left:0}.ml1-ns{margin-left:.25rem}.ml2-ns{margin-left:.5rem}.ml3-ns{margin-left:1rem}.ml4-ns{margin-left:2rem}.ml5-ns{margin-left:4rem}.ml6-ns{margin-left:8rem}.ml7-ns{margin-left:16rem}.mr0-ns{margin-right:0}.mr1-ns{margin-right:.25rem}.mr2-ns{margin-right:.5rem}.mr3-ns{margin-right:1rem}.mr4-ns{margin-right:2rem}.mr5-ns{margin-right:4rem}.mr6-ns{margin-right:8rem}.mr7-ns{margin-right:16rem}.mb0-ns{margin-bottom:0}.mb1-ns{margin-bottom:.25rem}.mb2-ns{margin-bottom:.5rem}.mb3-ns{margin-bottom:1rem}.mb4-ns{margin-bottom:2rem}.mb5-ns{margin-bottom:4rem}.mb6-ns{margin-bottom:8rem}.mb7-ns{margin-bottom:16rem}.mt0-ns{margin-top:0}.mt1-ns{margin-top:.25rem}.mt2-ns{margin-top:.5rem}.mt3-ns{margin-top:1rem}.mt4-ns{margin-top:2rem}.mt5-ns{margin-top:4rem}.mt6-ns{margin-top:8rem}.mt7-ns{margin-top:16rem}.mv0-ns{margin-top:0;margin-bottom:0}.mv1-ns{margin-top:.25rem;margin-bottom:.25rem}.mv2-ns{margin-top:.5rem;margin-bottom:.5rem}.mv3-ns{margin-top:1rem;margin-bottom:1rem}.mv4-ns{margin-top:2rem;margin-bottom:2rem}.mv5-ns{margin-top:4rem;margin-bottom:4rem}.mv6-ns{margin-top:8rem;margin-bottom:8rem}.mv7-ns{margin-top:16rem;margin-bottom:16rem}.mh0-ns{margin-left:0;margin-right:0}.mh1-ns{margin-left:.25rem;margin-right:.25rem}.mh2-ns{margin-left:.5rem;margin-right:.5rem}.mh3-ns{margin-left:1rem;margin-right:1rem}.mh4-ns{margin-left:2rem;margin-right:2rem}.mh5-ns{margin-left:4rem;margin-right:4rem}.mh6-ns{margin-left:8rem;margin-right:8rem}.mh7-ns{margin-left:16rem;margin-right:16rem}}@media screen and (min-width:45em){.pa0-m{padding:0}.pa1-m{padding:.25rem}.pa2-m{padding:.5rem}.pa3-m{padding:1rem}.pa4-m{padding:2rem}.pa5-m{padding:4rem}.pa6-m{padding:8rem}.pa7-m{padding:16rem}.pl0-m{padding-left:0}.pl1-m{padding-left:.25rem}.pl2-m{padding-left:.5rem}.pl3-m{padding-left:1rem}.pl4-m{padding-left:2rem}.pl5-m{padding-left:4rem}.pl6-m{padding-left:8rem}.pl7-m{padding-left:16rem}.pr0-m{padding-right:0}.pr1-m{padding-right:.25rem}.pr2-m{padding-right:.5rem}.pr3-m{padding-right:1rem}.pr4-m{padding-right:2rem}.pr5-m{padding-right:4rem}.pr6-m{padding-right:8rem}.pr7-m{padding-right:16rem}.pb0-m{padding-bottom:0}.pb1-m{padding-bottom:.25rem}.pb2-m{padding-bottom:.5rem}.pb3-m{padding-bottom:1rem}.pb4-m{padding-bottom:2rem}.pb5-m{padding-bottom:4rem}.pb6-m{padding-bottom:8rem}.pb7-m{padding-bottom:16rem}.pt0-m{padding-top:0}.pt1-m{padding-top:.25rem}.pt2-m{padding-top:.5rem}.pt3-m{padding-top:1rem}.pt4-m{padding-top:2rem}.pt5-m{padding-top:4rem}.pt6-m{padding-top:8rem}.pt7-m{padding-top:16rem}.pv0-m{padding-top:0;padding-bottom:0}.pv1-m{padding-top:.25rem;padding-bottom:.25rem}.pv2-m{padding-top:.5rem;padding-bottom:.5rem}.pv3-m{padding-top:1rem;padding-bottom:1rem}.pv4-m{padding-top:2rem;padding-bottom:2rem}.pv5-m{padding-top:4rem;padding-bottom:4rem}.pv6-m{padding-top:8rem;padding-bottom:8rem}.pv7-m{padding-top:16rem;padding-bottom:16rem}.ph0-m{padding-left:0;padding-right:0}.ph1-m{padding-left:.25rem;padding-right:.25rem}.ph2-m{padding-left:.5rem;padding-right:.5rem}.ph3-m{padding-left:1rem;padding-right:1rem}.ph4-m{padding-left:2rem;padding-right:2rem}.ph5-m{padding-left:4rem;padding-right:4rem}.ph6-m{padding-left:8rem;padding-right:8rem}.ph7-m{padding-left:16rem;padding-right:16rem}.ma0-m{margin:0}.ma1-m{margin:.25rem}.ma2-m{margin:.5rem}.ma3-m{margin:1rem}.ma4-m{margin:2rem}.ma5-m{margin:4rem}.ma6-m{margin:8rem}.ma7-m{margin:16rem}.ml0-m{margin-left:0}.ml1-m{margin-left:.25rem}.ml2-m{margin-left:.5rem}.ml3-m{margin-left:1rem}.ml4-m{margin-left:2rem}.ml5-m{margin-left:4rem}.ml6-m{margin-left:8rem}.ml7-m{margin-left:16rem}.mr0-m{margin-right:0}.mr1-m{margin-right:.25rem}.mr2-m{margin-right:.5rem}.mr3-m{margin-right:1rem}.mr4-m{margin-right:2rem}.mr5-m{margin-right:4rem}.mr6-m{margin-right:8rem}.mr7-m{margin-right:16rem}.mb0-m{margin-bottom:0}.mb1-m{margin-bottom:.25rem}.mb2-m{margin-bottom:.5rem}.mb3-m{margin-bottom:1rem}.mb4-m{margin-bottom:2rem}.mb5-m{margin-bottom:4rem}.mb6-m{margin-bottom:8rem}.mb7-m{margin-bottom:16rem}.mt0-m{margin-top:0}.mt1-m{margin-top:.25rem}.mt2-m{margin-top:.5rem}.mt3-m{margin-top:1rem}.mt4-m{margin-top:2rem}.mt5-m{margin-top:4rem}.mt6-m{margin-top:8rem}.mt7-m{margin-top:16rem}.mv0-m{margin-top:0;margin-bottom:0}.mv1-m{margin-top:.25rem;margin-bottom:.25rem}.mv2-m{margin-top:.5rem;margin-bottom:.5rem}.mv3-m{margin-top:1rem;margin-bottom:1rem}.mv4-m{margin-top:2rem;margin-bottom:2rem}.mv5-m{margin-top:4rem;margin-bottom:4rem}.mv6-m{margin-top:8rem;margin-bottom:8rem}.mv7-m{margin-top:16rem;margin-bottom:16rem}.mh0-m{margin-left:0;margin-right:0}.mh1-m{margin-left:.25rem;margin-right:.25rem}.mh2-m{margin-left:.5rem;margin-right:.5rem}.mh3-m{margin-left:1rem;margin-right:1rem}.mh4-m{margin-left:2rem;margin-right:2rem}.mh5-m{margin-left:4rem;margin-right:4rem}.mh6-m{margin-left:8rem;margin-right:8rem}.mh7-m{margin-left:16rem;margin-right:16rem}}@media screen and (min-width:60em){.pa0-l{padding:0}.pa1-l{padding:.25rem}.pa2-l{padding:.5rem}.pa3-l{padding:1rem}.pa4-l{padding:2rem}.pa5-l{padding:4rem}.pa6-l{padding:8rem}.pa7-l{padding:16rem}.pl0-l{padding-left:0}.pl1-l{padding-left:.25rem}.pl2-l{padding-left:.5rem}.pl3-l{padding-left:1rem}.pl4-l{padding-left:2rem}.pl5-l{padding-left:4rem}.pl6-l{padding-left:8rem}.pl7-l{padding-left:16rem}.pr0-l{padding-right:0}.pr1-l{padding-right:.25rem}.pr2-l{padding-right:.5rem}.pr3-l{padding-right:1rem}.pr4-l{padding-right:2rem}.pr5-l{padding-right:4rem}.pr6-l{padding-right:8rem}.pr7-l{padding-right:16rem}.pb0-l{padding-bottom:0}.pb1-l{padding-bottom:.25rem}.pb2-l{padding-bottom:.5rem}.pb3-l{padding-bottom:1rem}.pb4-l{padding-bottom:2rem}.pb5-l{padding-bottom:4rem}.pb6-l{padding-bottom:8rem}.pb7-l{padding-bottom:16rem}.pt0-l{padding-top:0}.pt1-l{padding-top:.25rem}.pt2-l{padding-top:.5rem}.pt3-l{padding-top:1rem}.pt4-l{padding-top:2rem}.pt5-l{padding-top:4rem}.pt6-l{padding-top:8rem}.pt7-l{padding-top:16rem}.pv0-l{padding-top:0;padding-bottom:0}.pv1-l{padding-top:.25rem;padding-bottom:.25rem}.pv2-l{padding-top:.5rem;padding-bottom:.5rem}.pv3-l{padding-top:1rem;padding-bottom:1rem}.pv4-l{padding-top:2rem;padding-bottom:2rem}.pv5-l{padding-top:4rem;padding-bottom:4rem}.pv6-l{padding-top:8rem;padding-bottom:8rem}.pv7-l{padding-top:16rem;padding-bottom:16rem}.ph0-l{padding-left:0;padding-right:0}.ph1-l{padding-left:.25rem;padding-right:.25rem}.ph2-l{padding-left:.5rem;padding-right:.5rem}.ph3-l{padding-left:1rem;padding-right:1rem}.ph4-l{padding-left:2rem;padding-right:2rem}.ph5-l{padding-left:4rem;padding-right:4rem}.ph6-l{padding-left:8rem;padding-right:8rem}.ph7-l{padding-left:16rem;padding-right:16rem}.ma0-l{margin:0}.ma1-l{margin:.25rem}.ma2-l{margin:.5rem}.ma3-l{margin:1rem}.ma4-l{margin:2rem}.ma5-l{margin:4rem}.ma6-l{margin:8rem}.ma7-l{margin:16rem}.ml0-l{margin-left:0}.ml1-l{margin-left:.25rem}.ml2-l{margin-left:.5rem}.ml3-l{margin-left:1rem}.ml4-l{margin-left:2rem}.ml5-l{margin-left:4rem}.ml6-l{margin-left:8rem}.ml7-l{margin-left:16rem}.mr0-l{margin-right:0}.mr1-l{margin-right:.25rem}.mr2-l{margin-right:.5rem}.mr3-l{margin-right:1rem}.mr4-l{margin-right:2rem}.mr5-l{margin-right:4rem}.mr6-l{margin-right:8rem}.mr7-l{margin-right:16rem}.mb0-l{margin-bottom:0}.mb1-l{margin-bottom:.25rem}.mb2-l{margin-bottom:.5rem}.mb3-l{margin-bottom:1rem}.mb4-l{margin-bottom:2rem}.mb5-l{margin-bottom:4rem}.mb6-l{margin-bottom:8rem}.mb7-l{margin-bottom:16rem}.mt0-l{margin-top:0}.mt1-l{margin-top:.25rem}.mt2-l{margin-top:.5rem}.mt3-l{margin-top:1rem}.mt4-l{margin-top:2rem}.mt5-l{margin-top:4rem}.mt6-l{margin-top:8rem}.mt7-l{margin-top:16rem}.mv0-l{margin-top:0;margin-bottom:0}.mv1-l{margin-top:.25rem;margin-bottom:.25rem}.mv2-l{margin-top:.5rem;margin-bottom:.5rem}.mv3-l{margin-top:1rem;margin-bottom:1rem}.mv4-l{margin-top:2rem;margin-bottom:2rem}.mv5-l{margin-top:4rem;margin-bottom:4rem}.mv6-l{margin-top:8rem;margin-bottom:8rem}.mv7-l{margin-top:16rem;margin-bottom:16rem}.mh0-l{margin-left:0;margin-right:0}.mh1-l{margin-left:.25rem;margin-right:.25rem}.mh2-l{margin-left:.5rem;margin-right:.5rem}.mh3-l{margin-left:1rem;margin-right:1rem}.mh4-l{margin-left:2rem;margin-right:2rem}.mh5-l{margin-left:4rem;margin-right:4rem}.mh6-l{margin-left:8rem;margin-right:8rem}.mh7-l{margin-left:16rem;margin-right:16rem}}.na1{margin:-4px;margin:-.25rem}.na2{margin:-8px;margin:-.5rem}.na3{margin:-16px;margin:-1rem}.na4{margin:-32px;margin:-2rem}.na5{margin:-64px;margin:-4rem}.na6{margin:-128px;margin:-8rem}.na7{margin:-256px;margin:-16rem}.nl1{margin-left:-4px;margin-left:-.25rem}.nl2{margin-left:-8px;margin-left:-.5rem}.nl3{margin-left:-16px;margin-left:-1rem}.nl4{margin-left:-32px;margin-left:-2rem}.nl5{margin-left:-64px;margin-left:-4rem}.nl6{margin-left:-128px;margin-left:-8rem}.nl7{margin-left:-256px;margin-left:-16rem}.nr1{margin-right:-4px;margin-right:-.25rem}.nr2{margin-right:-8px;margin-right:-.5rem}.nr3{margin-right:-16px;margin-right:-1rem}.nr4{margin-right:-32px;margin-right:-2rem}.nr5{margin-right:-64px;margin-right:-4rem}.nr6{margin-right:-128px;margin-right:-8rem}.nr7{margin-right:-256px;margin-right:-16rem}.nb1{margin-bottom:-4px;margin-bottom:-.25rem}.nb2{margin-bottom:-8px;margin-bottom:-.5rem}.nb3{margin-bottom:-16px;margin-bottom:-1rem}.nb4{margin-bottom:-32px;margin-bottom:-2rem}.nb5{margin-bottom:-64px;margin-bottom:-4rem}.nb6{margin-bottom:-128px;margin-bottom:-8rem}.nb7{margin-bottom:-256px;margin-bottom:-16rem}.nt1{margin-top:-4px;margin-top:-.25rem}.nt2{margin-top:-8px;margin-top:-.5rem}.nt3{margin-top:-16px;margin-top:-1rem}.nt4{margin-top:-32px;margin-top:-2rem}.nt5{margin-top:-64px;margin-top:-4rem}.nt6{margin-top:-128px;margin-top:-8rem}.nt7{margin-top:-256px;margin-top:-16rem}.nh0{margin-left:-0;margin-right:-0}.nh1{margin-left:-4px;margin-left:-.25rem;margin-right:-4px;margin-right:-.25rem}.nh2{margin-left:-8px;margin-left:-.5rem;margin-right:-8px;margin-right:-.5rem}.nh3{margin-left:-16px;margin-left:-1rem;margin-right:-16px;margin-right:-1rem}.nh4{margin-left:-32px;margin-left:-2rem;margin-right:-32px;margin-right:-2rem}.nh5{margin-left:-64px;margin-left:-4rem;margin-right:-64px;margin-right:-4rem}.nh6{margin-left:-128px;margin-left:-8rem;margin-right:-128px;margin-right:-8rem}.nh7{margin-left:-256px;margin-left:-16rem;margin-right:-256px;margin-right:-16rem}@media screen and (min-width:30em){.na1-ns{margin:-.25rem}.na2-ns{margin:-.5rem}.na3-ns{margin:-1rem}.na4-ns{margin:-2rem}.na5-ns{margin:-4rem}.na6-ns{margin:-8rem}.na7-ns{margin:-16rem}.nl1-ns{margin-left:-.25rem}.nl2-ns{margin-left:-.5rem}.nl3-ns{margin-left:-1rem}.nl4-ns{margin-left:-2rem}.nl5-ns{margin-left:-4rem}.nl6-ns{margin-left:-8rem}.nl7-ns{margin-left:-16rem}.nr1-ns{margin-right:-.25rem}.nr2-ns{margin-right:-.5rem}.nr3-ns{margin-right:-1rem}.nr4-ns{margin-right:-2rem}.nr5-ns{margin-right:-4rem}.nr6-ns{margin-right:-8rem}.nr7-ns{margin-right:-16rem}.nb1-ns{margin-bottom:-.25rem}.nb2-ns{margin-bottom:-.5rem}.nb3-ns{margin-bottom:-1rem}.nb4-ns{margin-bottom:-2rem}.nb5-ns{margin-bottom:-4rem}.nb6-ns{margin-bottom:-8rem}.nb7-ns{margin-bottom:-16rem}.nt1-ns{margin-top:-.25rem}.nt2-ns{margin-top:-.5rem}.nt3-ns{margin-top:-1rem}.nt4-ns{margin-top:-2rem}.nt5-ns{margin-top:-4rem}.nt6-ns{margin-top:-8rem}.nt7-ns{margin-top:-16rem}.nh0-ns{margin-left:-0;margin-right:-0}.nh1-ns{margin-left:-.25rem;margin-right:-.25rem}.nh2-ns{margin-left:-.5rem;margin-right:-.5rem}.nh3-ns{margin-left:-1rem;margin-right:-1rem}.nh4-ns{margin-left:-2rem;margin-right:-2rem}.nh5-ns{margin-left:-4rem;margin-right:-4rem}.nh6-ns{margin-left:-8rem;margin-right:-8rem}.nh7-ns{margin-left:-16rem;margin-right:-16rem}}@media screen and (min-width:45em){.na1-m{margin:-.25rem}.na2-m{margin:-.5rem}.na3-m{margin:-1rem}.na4-m{margin:-2rem}.na5-m{margin:-4rem}.na6-m{margin:-8rem}.na7-m{margin:-16rem}.nl1-m{margin-left:-.25rem}.nl2-m{margin-left:-.5rem}.nl3-m{margin-left:-1rem}.nl4-m{margin-left:-2rem}.nl5-m{margin-left:-4rem}.nl6-m{margin-left:-8rem}.nl7-m{margin-left:-16rem}.nr1-m{margin-right:-.25rem}.nr2-m{margin-right:-.5rem}.nr3-m{margin-right:-1rem}.nr4-m{margin-right:-2rem}.nr5-m{margin-right:-4rem}.nr6-m{margin-right:-8rem}.nr7-m{margin-right:-16rem}.nb1-m{margin-bottom:-.25rem}.nb2-m{margin-bottom:-.5rem}.nb3-m{margin-bottom:-1rem}.nb4-m{margin-bottom:-2rem}.nb5-m{margin-bottom:-4rem}.nb6-m{margin-bottom:-8rem}.nb7-m{margin-bottom:-16rem}.nt1-m{margin-top:-.25rem}.nt2-m{margin-top:-.5rem}.nt3-m{margin-top:-1rem}.nt4-m{margin-top:-2rem}.nt5-m{margin-top:-4rem}.nt6-m{margin-top:-8rem}.nt7-m{margin-top:-16rem}.nh0-m{margin-left:-0;margin-right:-0}.nh1-m{margin-left:-.25rem;margin-right:-.25rem}.nh2-m{margin-left:-.5rem;margin-right:-.5rem}.nh3-m{margin-left:-1rem;margin-right:-1rem}.nh4-m{margin-left:-2rem;margin-right:-2rem}.nh5-m{margin-left:-4rem;margin-right:-4rem}.nh6-m{margin-left:-8rem;margin-right:-8rem}.nh7-m{margin-left:-16rem;margin-right:-16rem}}@media screen and (min-width:60em){.na1-l{margin:-.25rem}.na2-l{margin:-.5rem}.na3-l{margin:-1rem}.na4-l{margin:-2rem}.na5-l{margin:-4rem}.na6-l{margin:-8rem}.na7-l{margin:-16rem}.nl1-l{margin-left:-.25rem}.nl2-l{margin-left:-.5rem}.nl3-l{margin-left:-1rem}.nl4-l{margin-left:-2rem}.nl5-l{margin-left:-4rem}.nl6-l{margin-left:-8rem}.nl7-l{margin-left:-16rem}.nr1-l{margin-right:-.25rem}.nr2-l{margin-right:-.5rem}.nr3-l{margin-right:-1rem}.nr4-l{margin-right:-2rem}.nr5-l{margin-right:-4rem}.nr6-l{margin-right:-8rem}.nr7-l{margin-right:-16rem}.nb1-l{margin-bottom:-.25rem}.nb2-l{margin-bottom:-.5rem}.nb3-l{margin-bottom:-1rem}.nb4-l{margin-bottom:-2rem}.nb5-l{margin-bottom:-4rem}.nb6-l{margin-bottom:-8rem}.nb7-l{margin-bottom:-16rem}.nt1-l{margin-top:-.25rem}.nt2-l{margin-top:-.5rem}.nt3-l{margin-top:-1rem}.nt4-l{margin-top:-2rem}.nt5-l{margin-top:-4rem}.nt6-l{margin-top:-8rem}.nt7-l{margin-top:-16rem}.nh0-l{margin-left:-0;margin-right:-0}.nh1-l{margin-left:-.25rem;margin-right:-.25rem}.nh2-l{margin-left:-.5rem;margin-right:-.5rem}.nh3-l{margin-left:-1rem;margin-right:-1rem}.nh4-l{margin-left:-2rem;margin-right:-2rem}.nh5-l{margin-left:-4rem;margin-right:-4rem}.nh6-l{margin-left:-8rem;margin-right:-8rem}.nh7-l{margin-left:-16rem;margin-right:-16rem}}.collapse{border-collapse:collapse;border-spacing:0}.striped--lightest-gray:nth-child(odd){background-color:#e5e8ea}.striped--near-white:nth-child(odd){background-color:#f5f8f9}.stripe-light:nth-child(odd){background-color:rgba(255,255,255,.1)}.stripe-dark:nth-child(odd){background-color:rgba(0,0,0,.1)}.line-table{border-collapse:collapse;border-spacing:0}.line-table td,.line-table th{vertical-align:top;border-bottom:1px solid #e5e8ea;padding:4px 10px}.line-table tr:first-child td,.line-table tr:first-child th{border-top:1px solid #e5e8ea}.line-table tr:last-child td{border-bottom:0}.line-table th{text-align:left;color:#677278;font-weight:normal;background:#f5f8f9}.strike{text-decoration:line-through}.underline{text-decoration:underline}.no-underline{text-decoration:none}.tl{text-align:left}.tr{text-align:right}.tc{text-align:center}@media screen and (min-width:30em){.tl-ns{text-align:left}.tr-ns{text-align:right}.tc-ns{text-align:center}}@media screen and (min-width:45em){.tl-m{text-align:left}.tr-m{text-align:right}.tc-m{text-align:center}}@media screen and (min-width:60em){.tl-l{text-align:left}.tr-l{text-align:right}.tc-l{text-align:center}}.ttc{text-transform:capitalize}.ttl{text-transform:lowercase}.ttu{text-transform:uppercase}.ttn{text-transform:none}.f-6,.f-headline,.f00{font-size:48px;font-size:3rem}.f-5,.f-subheadline,.f0{font-size:28px;font-size:1.75rem}.f1{font-size:26px;font-size:1.625rem}.f2{font-size:22px;font-size:1.375rem}.f3{font-size:19px;font-size:1.1875rem}.f4{font-size:16px;font-size:1rem}.f5{font-size:15px;font-size:.9375rem}.f6{font-size:14px;font-size:.875rem}.f7{font-size:13px;font-size:.8125rem}@media screen and (min-width:30em){.f-6-ns,.f-headline-ns,.f00-ns{font-size:3rem}.f-5-ns,.f-subheadline-ns,.f0-ns{font-size:1.75rem}.f1-ns{font-size:1.625rem}.f2-ns{font-size:1.375rem}.f3-ns{font-size:1.1875rem}.f4-ns{font-size:1rem}.f5-ns{font-size:.9375rem}.f6-ns{font-size:.875rem}.f7-ns{font-size:.8125rem}}@media screen and (min-width:45em){.f-6-m,.f-headline-m,.f00-m{font-size:3rem}.f-5-m,.f-subheadline-m,.f0-m{font-size:1.75rem}.f1-m{font-size:1.625rem}.f2-m{font-size:1.375rem}.f3-m{font-size:1.1875rem}.f4-m{font-size:1rem}.f5-m{font-size:.9375rem}.f6-m{font-size:.875rem}.f7-m{font-size:.8125rem}}@media screen and (min-width:60em){.f-6-l,.f-headline-l,.f00-l{font-size:3rem}.f-5-l,.f-subheadline-l,.f0-l{font-size:1.75rem}.f1-l{font-size:1.625rem}.f2-l{font-size:1.375rem}.f3-l{font-size:1.1875rem}.f4-l{font-size:1rem}.f5-l{font-size:.9375rem}.f6-l{font-size:.875rem}.f7-l{font-size:.8125rem}}.measure{max-width:30em}.measure-wide{max-width:34em}.measure-narrow{max-width:20em}.truncate{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}@media screen and (min-width:30em){.measure-ns{max-width:30em}.measure-wide-ns{max-width:34em}.measure-narrow-ns{max-width:20em}.truncate-ns{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}}@media screen and (min-width:45em){.measure-m{max-width:30em}.measure-wide-m{max-width:34em}.measure-narrow-m{max-width:20em}.truncate-m{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}}@media screen and (min-width:60em){.measure-l{max-width:30em}.measure-wide-l{max-width:34em}.measure-narrow-l{max-width:20em}.truncate-l{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}}.center{margin-right:auto;margin-left:auto}@media screen and (min-width:30em){.center-ns{margin-right:auto;margin-left:auto}}@media screen and (min-width:45em){.center-m{margin-right:auto;margin-left:auto}}@media screen and (min-width:60em){.center-l{margin-right:auto;margin-left:auto}}.hidden{visibility:hidden}.clip{position:fixed !important;_position:absolute !important;clip:rect(1px 1px 1px 1px);clip:rect(1px,1px,1px,1px)}@media screen and (min-width:30em){.hidden-ns{visibility:hidden}.clip-ns{position:fixed !important;_position:absolute !important;clip:rect(1px 1px 1px 1px);clip:rect(1px,1px,1px,1px)}}@media screen and (min-width:45em){.hidden-m{visibility:hidden}.clip-m{position:fixed !important;_position:absolute !important;clip:rect(1px 1px 1px 1px);clip:rect(1px,1px,1px,1px)}}@media screen and (min-width:60em){.hidden-l{visibility:hidden}.clip-l{position:fixed !important;_position:absolute !important;clip:rect(1px 1px 1px 1px);clip:rect(1px,1px,1px,1px)}}.ws-normal{white-space:normal}.nowrap{white-space:nowrap}.pre{white-space:pre}.pre-wrap{white-space:pre-wrap}@media screen and (min-width:30em){.ws-normal-ns{white-space:normal}.nowrap-ns{white-space:nowrap}.pre-ns{white-space:pre}}@media screen and (min-width:45em){.ws-normal-m{white-space:normal}.nowrap-m{white-space:nowrap}.pre-m{white-space:pre}}@media screen and (min-width:60em){.ws-normal-l{white-space:normal}.nowrap-l{white-space:nowrap}.pre-l{white-space:pre}}.word-normal{word-break:normal}.word-wrap{word-break:break-all;-webkit-hyphens:auto;-ms-hyphens:auto;hyphens:auto}.word-nowrap{word-break:keep-all}@media screen and (min-width:30em){.word-normal-ns{word-break:normal}.word-wrap-ns{word-break:break-all;-webkit-hyphens:auto;-ms-hyphens:auto;hyphens:auto}.word-nowrap-ns{word-break:keep-all}}@media screen and (min-width:45em){.word-normal-m{word-break:normal}.word-wrap-m{word-break:break-all;-webkit-hyphens:auto;-ms-hyphens:auto;hyphens:auto}.word-nowrap-m{word-break:keep-all}}@media screen and (min-width:60em){.word-normal-l{word-break:normal}.word-wrap-l{word-break:break-all;-webkit-hyphens:auto;-ms-hyphens:auto;hyphens:auto}.word-nowrap-l{word-break:keep-all}}.v-base{vertical-align:baseline}.v-mid{vertical-align:middle}.v-top{vertical-align:top}.v-btm{vertical-align:bottom}@media screen and (min-width:30em){.v-base-ns{vertical-align:baseline}.v-mid-ns{vertical-align:middle}.v-top-ns{vertical-align:top}.v-btm-ns{vertical-align:bottom}}@media screen and (min-width:45em){.v-base-m{vertical-align:baseline}.v-mid-m{vertical-align:middle}.v-top-m{vertical-align:top}.v-btm-m{vertical-align:bottom}}@media screen and (min-width:60em){.v-base-l{vertical-align:baseline}.v-mid-l{vertical-align:middle}.v-top-l{vertical-align:top}.v-btm-l{vertical-align:bottom}}.hide-child .child{opacity:0}.hide-child:hover .child,.hide-child:focus .child,.hide-child:active .child{opacity:1}.underline-hover:hover,.underline-hover:focus{text-decoration:underline}.grow{-moz-osx-font-smoothing:grayscale;-webkit-backface-visibility:hidden;backface-visibility:hidden;transform:translateZ(0);transition:transform .25s ease-out}.grow:hover,.grow:focus{transform:scale(1.05)}.grow:active{transform:scale(.90)}.grow-large{-moz-osx-font-smoothing:grayscale;-webkit-backface-visibility:hidden;backface-visibility:hidden;transform:translateZ(0);transition:transform .25s ease-in-out}.grow-large:hover,.grow-large:focus{transform:scale(1.2)}.grow-large:active{transform:scale(.95)}.pointer:hover{cursor:pointer}.cursor-disabled:hover{cursor:not-allowed}.shadow-hover:hover{box-shadow:0 3px 10px 0 rgba(0,0,0,.2),0 0 0 1px rgba(0,0,0,.1);transition:all .15s}.bg-animate,.bg-animate:hover,.bg-animate:focus{transition:background-color .075s ease-in-out}.z-0{z-index:0}.z-1{z-index:1}.z-2{z-index:2}.z-3{z-index:3}.z-4{z-index:4}.z-5{z-index:5}.z-999{z-index:999}.z-9999{z-index:9999}.z-max{z-index:2147483647}.z-inherit{z-index:inherit}.z-initial{z-index:auto;z-index:initial}.z-unset{z-index:unset}.tnum{-webkit-font-feature-settings:'tnum';font-feature-settings:'tnum'}.debug *{outline:1px solid gold}.debug-white *{outline:1px solid white}.debug-black *{outline:1px solid black}.debug-grid{background:transparent url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAAFElEQVR4AWPAC97/9x0eCsAEPgwAVLshdpENIxcAAAAASUVORK5CYII=) repeat top left}.debug-grid-16{background:transparent url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAMklEQVR4AWOgCLz/b0epAa6UGuBOqQHOQHLUgFEDnAbcBZ4UGwDOkiCnkIhdgNgNxAYAiYlD+8sEuo8AAAAASUVORK5CYII=) repeat top left}.debug-grid-8-solid{background:white url(data:image/gif;base64,R0lGODdhCAAIAPEAAADw/wDx/////wAAACwAAAAACAAIAAACDZQvgaeb/lxbAIKA8y0AOw==) repeat top left}.debug-grid-16-solid{background:white url(data:image/gif;base64,R0lGODdhEAAQAPEAAADw/wDx/xXy/////ywAAAAAEAAQAAACIZyPKckYDQFsb6ZqD85jZ2+BkwiRFKehhqQCQgDHcgwEBQA7) repeat top left}html{height:100%}body{font-family:'Fakt Pro',-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;line-height:1.5;font-size:16px;font-size:1rem;color:#202b30;min-height:100%}a{color:#00359f}summary:focus{outline:0}h1,h2,h3,h4,h5,h6,hgroup,ul,ol,dd,p,figure,pre,table,fieldset,hr{margin-top:0;margin-bottom:16px;margin-bottom:1rem}h1,h2,h3,h4,h5,h6,strong,.b{font-weight:600}button,input,select,textarea{font-family:'Fakt Pro',-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif}kbd{font-family:'Fakt Pro',-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;background-color:#FFF;border:1px solid #b5bcc0;box-shadow:1px 1px 0 #b5bcc0,inset 1px 1px white;border-radius:999px;display:inline-block;font-size:.85em;line-height:1;padding:2px 6px;white-space:nowrap} diff --git a/front/assets/css/app-semaphore.css b/front/assets/css/app-semaphore.css index fd4a56665..49988f443 100644 --- a/front/assets/css/app-semaphore.css +++ b/front/assets/css/app-semaphore.css @@ -2624,7 +2624,7 @@ template { } /* Modules */ /* - + BOX SIZING */ @@ -2656,7 +2656,7 @@ blockquote, figcaption, figure, textarea, -table, +table, td, th, tr, @@ -2795,6 +2795,8 @@ img { max-width: 100%; } .b--indigo { border-color: #1570ff; } .b--dark-indigo { border-color: #00359f; } .b--orange { border-color: #fd7e14; } +.b--yellow { border-color: #FBC335; } +.b--blue { border-color: #2196F3; } .b--purple { border-color: #8658d6; } .b--dark-purple { border-color: #5122a5; } .b--dark-brown { border-color: #974510; } @@ -2895,7 +2897,7 @@ img { max-width: 100%; } border-top-right-radius: 0; border-bottom-right-radius: 0; } -/* +/* @media (--breakpoint-not-small) { .br0-ns { border-radius: 0; } .br1-ns { border-radius: .125rem; } @@ -3000,7 +3002,7 @@ img { max-width: 100%; } .b--dashed { border-style: dashed; } .b--solid { border-style: solid; } .b--none { border-style: none; } -/* +/* @media (--breakpoint-not-small) { .b--dotted-ns { border-style: dotted; } .b--dashed-ns { border-style: dashed; } @@ -3192,7 +3194,7 @@ img { max-width: 100%; } bottom: 0; left: 0; } -/* +/* @media (--breakpoint-not-small) { .top-0-ns { top: 0; } .left-0-ns { left: 0; } @@ -3798,7 +3800,7 @@ code, .code, pre { */ .i { font-style: italic; } .fs-normal { font-style: normal; } -/* +/* @media (--breakpoint-not-small) { .i-ns { font-style: italic; } .fs-normal-ns { font-style: normal; } @@ -3850,7 +3852,7 @@ code, .code, pre { .fw7 { font-weight: 700; } .fw8 { font-weight: 800; } .fw9 { font-weight: 900; } -/* +/* @media (--breakpoint-not-small) { .normal-ns { font-weight: normal; } .b-ns { font-weight: bold; } @@ -3896,7 +3898,7 @@ code, .code, pre { /* FORMS - + */ .input-reset { -webkit-appearance: none; @@ -4037,7 +4039,7 @@ code, .code, pre { .tracked { letter-spacing: .1em; } .tracked-tight { letter-spacing: -.05em; } .tracked-mega { letter-spacing: .25em; } -/* +/* @media (--breakpoint-not-small) { .tracked-ns { letter-spacing: .1em; } .tracked-tight-ns { letter-spacing: -.05em; } @@ -4585,6 +4587,7 @@ code, .code, pre { .bg-washed-purple { background-color: #f3ecff; } /* Yellows */ .yellow { color: #FBC335; } +.gold { color: #FBC335; } .lightest-yellow { color: #fff3bf; } .washed-yellow { color: #fffae4; } .bg-yellow { background-color: #FBC335; } @@ -6326,7 +6329,7 @@ code, .code, pre { .ttl { text-transform: lowercase; } .ttu { text-transform: uppercase; } .ttn { text-transform: none; } -/* +/* @media (--breakpoint-not-small) { .ttc-ns { text-transform: capitalize; } .ttl-ns { text-transform: lowercase; } @@ -7063,4 +7066,4 @@ kbd { line-height: 1; padding: 2px 6px; white-space: nowrap; -} \ No newline at end of file +} diff --git a/front/assets/css/app.css b/front/assets/css/app.css index db1849409..42db35208 100644 --- a/front/assets/css/app.css +++ b/front/assets/css/app.css @@ -464,4 +464,23 @@ sem-popover { -moz-user-select: none; -ms-user-select: none; user-select: none; -} \ No newline at end of file +} + +.material-symbols-outlined { + font-variation-settings: + 'FILL' 0, + 'wght' 300, + 'GRAD' 0, + 'opsz' 20 +} +.material-symbols-outlined.fill { + font-variation-settings: + 'FILL' 1, + 'wght' 300, + 'GRAD' 0, + 'opsz' 20 +} +.material-symbols-outlined.md-18 { font-size: 18px; } +.material-symbols-outlined.md-24 { font-size: 24px; } +.material-symbols-outlined.md-36 { font-size: 36px; } +.material-symbols-outlined.md-48 { font-size: 48px; } diff --git a/front/assets/css/main.css b/front/assets/css/main.css new file mode 100644 index 000000000..fbf599721 --- /dev/null +++ b/front/assets/css/main.css @@ -0,0 +1,15 @@ +/* Vendor library styles */ +@import "tippy.js/dist/tippy.css"; +@import "tippy.js/dist/svg-arrow.css"; + +@import 'tom-select/dist/css/tom-select.min.css'; + +@import 'pikaday/css/pikaday.css'; + +@import 'billboard.js/dist/billboard.min.css'; + +@import "github-markdown-css/github-markdown-light.css"; + +/* Main CSS entry point - combines all CSS files */ +@import "./app-semaphore.css"; +@import "./app.css"; diff --git a/front/assets/js/app.js b/front/assets/js/app.js index 4f477a8b3..d2fd32f45 100644 --- a/front/assets/js/app.js +++ b/front/assets/js/app.js @@ -1,5 +1,4 @@ import "phoenix_html"; -import "../css/app.css"; import $ from "jquery"; import { install } from '@github/hotkey'; @@ -67,6 +66,7 @@ import { default as Agents} from "./agents"; import { default as AddPeople } from "./people/add_people"; import { default as EditPerson } from "./people/edit_person"; import { default as SyncPeople } from "./people/sync_people"; +import { default as ServiceAccounts } from "./service_accounts"; import { default as Report } from "./report"; import { InitializingScreen } from "./project_onboarding/initializing"; @@ -295,12 +295,23 @@ export var App = { GroupManagement.init(); new Star(); - const addPeopleAppRoot = document.getElementById("add-people"); - if (addPeopleAppRoot) { - AddPeople({ - dom: addPeopleAppRoot, - config: addPeopleAppRoot.dataset, - }); + + // Initialize Preact apps + const serviceAccountsEl = document.getElementById("service-accounts"); + if (serviceAccountsEl) { + const config = JSON.parse(serviceAccountsEl.dataset.config); + ServiceAccounts({ dom: serviceAccountsEl, config }); + } + + const addPeopleEl = document.getElementById("add-people"); + if (addPeopleEl) { + AddPeople({ dom: addPeopleEl, config: addPeopleEl.dataset }); + } + + const syncPeopleEl = document.querySelector(".app-sync-people"); + if (syncPeopleEl) { + const config = JSON.parse(syncPeopleEl.dataset.config); + SyncPeople({ dom: syncPeopleEl, config }); } document.querySelectorAll(".app-edit-person").forEach((editPersonAppRoot) => { @@ -517,6 +528,7 @@ export var App = { window.Notice.init(); + $(document).on("click", ".x-select-on-click", function (event) { event.currentTarget.setSelectionRange(0, event.currentTarget.value.length); }); diff --git a/front/assets/js/billing/pages/compact_spendings_page.tsx b/front/assets/js/billing/pages/compact_spendings_page.tsx index 9264e7f06..ec90942c0 100644 --- a/front/assets/js/billing/pages/compact_spendings_page.tsx +++ b/front/assets/js/billing/pages/compact_spendings_page.tsx @@ -143,7 +143,7 @@ const PlanInfo = ({ spending }: { spending?: types.Spendings.Spending, }) => { case types.Spendings.PlanType.Flat: return `Unlimited minutes, fixed annual charge.`; case types.Spendings.PlanType.Grandfathered: - return `Fixed montly subscription from Semaphore Classic.`; + return `Fixed monthly subscription from Semaphore Classic.`; } }; diff --git a/front/assets/js/blocked.js b/front/assets/js/blocked.js index ae7878b44..0d1ee12f5 100644 --- a/front/assets/js/blocked.js +++ b/front/assets/js/blocked.js @@ -112,7 +112,7 @@ export var Blocked = { }, afterBuildHandler(branch, workflowId, checkUrl) { - var query = [`branch=${branch}`, `workflow_id=${workflowId}`].join("&") + var query = [`branch=${encodeURIComponent(branch)}`, `workflow_id=${encodeURIComponent(workflowId)}`].join("&") var url = checkUrl + "?" + query console.log(`Checking workflows ${url}`) diff --git a/front/assets/js/dashboard/interval_selector.js b/front/assets/js/dashboard/interval_selector.js index b9b3b931a..34f3b19a5 100644 --- a/front/assets/js/dashboard/interval_selector.js +++ b/front/assets/js/dashboard/interval_selector.js @@ -1,7 +1,6 @@ import $ from "jquery"; // live on click event import pikaday from 'pikaday'; -import 'pikaday/css/pikaday.css'; import querystringify from 'querystringify'; export class IntervalSelector { diff --git a/front/assets/js/deployments/components/subjects.js b/front/assets/js/deployments/components/subjects.js index e4eea0fb6..24d410f8f 100644 --- a/front/assets/js/deployments/components/subjects.js +++ b/front/assets/js/deployments/components/subjects.js @@ -4,7 +4,7 @@ export default { } } -import 'tom-select/dist/css/tom-select.min.css' + import TomSelect from 'tom-select' class SubjectsComponent { diff --git a/front/assets/js/deployments/history_page.js b/front/assets/js/deployments/history_page.js index c87dd59a9..19d9a64dd 100644 --- a/front/assets/js/deployments/history_page.js +++ b/front/assets/js/deployments/history_page.js @@ -2,7 +2,6 @@ import { QueryList } from "../query_list" import { Props } from "../props" import _ from "lodash" -import 'pikaday/css/pikaday.css'; import pikaday from 'pikaday'; export default { diff --git a/front/assets/js/edit_notification.js b/front/assets/js/edit_notification.js index 4ba7e9985..c0087fe37 100644 --- a/front/assets/js/edit_notification.js +++ b/front/assets/js/edit_notification.js @@ -29,6 +29,9 @@ export var EditNotification = { class="form-control w-100" placeholder="e.g. my-project, /hotfix-*/, /.*/" >

Comma separated, regular expressions allowed

+

+ Note: Regardless of the regex patterns specified, notifications will only be sent for projects to which the creator of this notification has access. +

diff --git a/front/assets/js/flaky_tests/components/disruption_history_chart.tsx b/front/assets/js/flaky_tests/components/disruption_history_chart.tsx index d52c08527..fec4af8bf 100644 --- a/front/assets/js/flaky_tests/components/disruption_history_chart.tsx +++ b/front/assets/js/flaky_tests/components/disruption_history_chart.tsx @@ -1,6 +1,5 @@ import { createRef } from "preact"; import bb, { bar } from "billboard.js"; -import 'billboard.js/dist/billboard.min.css'; import { HistoryItem } from "../types/flaky_test_item"; import { useEffect } from "preact/hooks"; diff --git a/front/assets/js/flaky_tests/components/history_chart.tsx b/front/assets/js/flaky_tests/components/history_chart.tsx index 9bcbb8a4a..02884a2cd 100644 --- a/front/assets/js/flaky_tests/components/history_chart.tsx +++ b/front/assets/js/flaky_tests/components/history_chart.tsx @@ -1,6 +1,5 @@ import { Fragment, createRef } from "preact"; import bb, { bar } from "billboard.js"; -import 'billboard.js/dist/billboard.min.css'; import { HistoryItem } from "../types/flaky_test_item"; import { useEffect } from "preact/hooks"; import { ChartHelpers } from "js/toolbox"; diff --git a/front/assets/js/flaky_tests/components/top_flaky_charts.tsx b/front/assets/js/flaky_tests/components/top_flaky_charts.tsx index a6563f0f6..2cda33e42 100644 --- a/front/assets/js/flaky_tests/components/top_flaky_charts.tsx +++ b/front/assets/js/flaky_tests/components/top_flaky_charts.tsx @@ -1,6 +1,5 @@ import * as stores from "../stores"; -import 'billboard.js/dist/billboard.min.css'; import { Status } from "../types"; import { LoadingIndicator } from "./loading_indicator"; import { Message } from "./flaky_test_table"; diff --git a/front/assets/js/flaky_tests/pages/flaky_tests_page.tsx b/front/assets/js/flaky_tests/pages/flaky_tests_page.tsx index bb338d7f9..8813d1019 100644 --- a/front/assets/js/flaky_tests/pages/flaky_tests_page.tsx +++ b/front/assets/js/flaky_tests/pages/flaky_tests_page.tsx @@ -6,8 +6,6 @@ import * as types from "../types"; // @ts-ignore import { Notice } from "js/notice"; import * as components from "../components"; -import 'tippy.js/dist/tippy.css'; // optional -import 'tippy.js/themes/light.css'; import { RequestStatus, Status } from "../types"; import { FetchData } from "../network/request"; import { FlakyTestItem, HistoryItem } from "../types/flaky_test_item"; diff --git a/front/assets/js/groups/group_management.js b/front/assets/js/groups/group_management.js index d8e1da2b7..9aa09e711 100644 --- a/front/assets/js/groups/group_management.js +++ b/front/assets/js/groups/group_management.js @@ -91,7 +91,7 @@ export var GroupManagement = { }) .catch(error => { console.error("Error while fetching group members: " + error) - Notice.error("An error occured while fetching group members. " + + Notice.error("An error occurred while fetching group members. " + "If this issue persists, please check console for any logs and contact our support team.") }) }, @@ -136,7 +136,7 @@ export var GroupManagement = { .catch(e =>{ toggleSpinner() console.error("Error while adding members to the the group: " + e) - Notice.error("An error occured while adding members to the group. Please check console for any logs and contact our support team.") + Notice.error("An error occurred while adding members to the group. Please check console for any logs and contact our support team.") }) }, @@ -169,7 +169,7 @@ export var GroupManagement = { }) .catch(e =>{ console.error("Error while creating a group: " + e) - Notice.error("An error occured while creating a group. Please check console for any logs and contact our support team.") + Notice.error("An error occurred while creating a group. Please check console for any logs and contact our support team.") }) }, diff --git a/front/assets/js/insights/components/custom_dashboards.tsx b/front/assets/js/insights/components/custom_dashboards.tsx index 39f1d7710..1c2522d1e 100644 --- a/front/assets/js/insights/components/custom_dashboards.tsx +++ b/front/assets/js/insights/components/custom_dashboards.tsx @@ -16,8 +16,6 @@ import { DashboardItemCard } from './dashboard_item_card'; import { InsightsType, typeByMetric } from '../types/insights_type'; import { empty_custom_dashboard } from './zero_state/empty_custom_dashboard'; import Tippy from '@tippyjs/react'; -import 'tippy.js/dist/tippy.css'; // optional -import 'tippy.js/themes/light.css'; import { handleMetricDatePickerChanged } from "../util/event_handlers"; import * as stores from "../stores"; diff --git a/front/assets/js/insights/components/dashboard_item_card.tsx b/front/assets/js/insights/components/dashboard_item_card.tsx index 4e8bf7d72..64348eb27 100644 --- a/front/assets/js/insights/components/dashboard_item_card.tsx +++ b/front/assets/js/insights/components/dashboard_item_card.tsx @@ -2,8 +2,6 @@ import { DashboardItem } from '../types/dashboard'; import { InsightsType, typeByMetric } from '../types/insights_type'; import * as customCharts from './custom_charts'; import Tippy from '@tippyjs/react'; -import 'tippy.js/dist/tippy.css'; // optional -import 'tippy.js/themes/light.css'; import { useState } from 'preact/hooks'; import { metricFromNumber } from "../util/metric"; diff --git a/front/assets/js/insights/components/navigation.tsx b/front/assets/js/insights/components/navigation.tsx index 9b0f6ed78..283a07579 100644 --- a/front/assets/js/insights/components/navigation.tsx +++ b/front/assets/js/insights/components/navigation.tsx @@ -4,8 +4,6 @@ import { NavLink } from 'react-router-dom'; import * as stores from '../stores'; import { State } from '../stores/dashboards'; import Tippy from '@tippyjs/react'; -import 'tippy.js/dist/tippy.css'; // optional -import 'tippy.js/themes/light.css'; interface Props { diff --git a/front/assets/js/job_logs/render.spec/40000_events.json b/front/assets/js/job_logs/render.spec/40000_events.json index d61ef26e5..28826ef75 100644 --- a/front/assets/js/job_logs/render.spec/40000_events.json +++ b/front/assets/js/job_logs/render.spec/40000_events.json @@ -1 +1 @@ -{ "events": [{"event":"job_started","timestamp":1607098013},{"event":"cmd_started","timestamp":1607098013,"directive":"Exporting environment variables"},{"event":"cmd_output","timestamp":1607098013,"output":"Exporting TERM\n"},{"event":"cmd_output","timestamp":1607098013,"output":"Exporting PAGER\n"},{"event":"cmd_output","timestamp":1607098013,"output":"Exporting DISPLAY\n"},{"event":"cmd_output","timestamp":1607098013,"output":"Exporting CI\n"},{"event":"cmd_output","timestamp":1607098013,"output":"Exporting SEMAPHORE\n"},{"event":"cmd_output","timestamp":1607098013,"output":"Exporting SEMAPHORE_PROJECT_NAME\n"},{"event":"cmd_output","timestamp":1607098013,"output":"Exporting SEMAPHORE_PROJECT_ID\n"},{"event":"cmd_output","timestamp":1607098013,"output":"Exporting SEMAPHORE_JOB_NAME\n"},{"event":"cmd_output","timestamp":1607098013,"output":"Exporting SEMAPHORE_JOB_ID\n"},{"event":"cmd_output","timestamp":1607098013,"output":"Exporting SEMAPHORE_AGENT_MACHINE_TYPE\n"},{"event":"cmd_output","timestamp":1607098013,"output":"Exporting SEMAPHORE_AGENT_MACHINE_OS_IMAGE\n"},{"event":"cmd_output","timestamp":1607098013,"output":"Exporting SEMAPHORE_AGENT_MACHINE_ENVIRONMENT_TYPE\n"},{"event":"cmd_output","timestamp":1607098013,"output":"Exporting SEMAPHORE_ORGANIZATION_URL\n"},{"event":"cmd_output","timestamp":1607098013,"output":"Exporting SEMAPHORE_ARTIFACT_TOKEN\n"},{"event":"cmd_output","timestamp":1607098013,"output":"Exporting SSH_PRIVATE_KEY_PATH\n"},{"event":"cmd_output","timestamp":1607098013,"output":"Exporting SEMAPHORE_CACHE_PRIVATE_KEY_PATH\n"},{"event":"cmd_output","timestamp":1607098013,"output":"Exporting SEMAPHORE_CACHE_USERNAME\n"},{"event":"cmd_output","timestamp":1607098013,"output":"Exporting SEMAPHORE_CACHE_URL\n"},{"event":"cmd_output","timestamp":1607098013,"output":"Exporting SEMAPHORE_GIT_URL\n"},{"event":"cmd_output","timestamp":1607098013,"output":"Exporting SEMAPHORE_GIT_DIR\n"},{"event":"cmd_output","timestamp":1607098013,"output":"Exporting SEMAPHORE_GIT_SHA\n"},{"event":"cmd_output","timestamp":1607098013,"output":"Exporting SEMAPHORE_GIT_REPO_SLUG\n"},{"event":"cmd_output","timestamp":1607098013,"output":"Exporting SEMAPHORE_GIT_REF\n"},{"event":"cmd_output","timestamp":1607098013,"output":"Exporting SEMAPHORE_GIT_COMMIT_RANGE\n"},{"event":"cmd_output","timestamp":1607098013,"output":"Exporting SEMAPHORE_GIT_REF_TYPE\n"},{"event":"cmd_output","timestamp":1607098013,"output":"Exporting SEMAPHORE_GIT_BRANCH\n"},{"event":"cmd_output","timestamp":1607098013,"output":"Exporting DOCKER_USERNAME\n"},{"event":"cmd_output","timestamp":1607098013,"output":"Exporting DOCKER_PASSWORD\n"},{"event":"cmd_output","timestamp":1607098013,"output":"Exporting SEMAPHORE_WORKFLOW_ID\n"},{"event":"cmd_output","timestamp":1607098013,"output":"Exporting SEMAPHORE_WORKFLOW_NUMBER\n"},{"event":"cmd_output","timestamp":1607098013,"output":"Exporting SEMAPHORE_WORKFLOW_RERUN\n"},{"event":"cmd_output","timestamp":1607098013,"output":"Exporting SEMAPHORE_WORKFLOW_TRIGGERED_BY_HOOK\n"},{"event":"cmd_output","timestamp":1607098013,"output":"Exporting SEMAPHORE_WORKFLOW_HOOK_SOURCE\n"},{"event":"cmd_output","timestamp":1607098013,"output":"Exporting SEMAPHORE_WORKFLOW_TRIGGERED_BY_SCHEDULE\n"},{"event":"cmd_output","timestamp":1607098013,"output":"Exporting SEMAPHORE_WORKFLOW_TRIGGERED_BY_API\n"},{"event":"cmd_output","timestamp":1607098013,"output":"Exporting SEMAPHORE_PIPELINE_ARTEFACT_ID\n"},{"event":"cmd_output","timestamp":1607098013,"output":"Exporting SEMAPHORE_PIPELINE_ID\n"},{"event":"cmd_output","timestamp":1607098013,"output":"Exporting SEMAPHORE_PIPELINE_RERUN\n"},{"event":"cmd_output","timestamp":1607098013,"output":"Exporting SEMAPHORE_PIPELINE_PROMOTION\n"},{"event":"cmd_output","timestamp":1607098013,"output":"Exporting SEMAPHORE_PIPELINE_PROMOTED_BY\n"},{"event":"cmd_output","timestamp":1607098013,"output":"Exporting SEMAPHORE_PIPELINE_0_ARTEFACT_ID\n"},{"event":"cmd_finished","timestamp":1607098013,"directive":"Exporting environment variables","exit_code":0,"started_at":1607098013,"finished_at":1607098013},{"event":"cmd_started","timestamp":1607098013,"directive":"Injecting Files"},{"event":"cmd_output","timestamp":1607098013,"output":"Injecting /home/semaphore/.ssh/semaphore_cache_key with file mode 0600\n"},{"event":"cmd_output","timestamp":1607098013,"output":"Injecting .ssh/id_rsa with file mode 0600\n"},{"event":"cmd_finished","timestamp":1607098013,"directive":"Injecting Files","exit_code":0,"started_at":1607098013,"finished_at":1607098013},{"event":"cmd_started","timestamp":1607098013,"directive":"Setting up the Semaphore toolbox"},{"event":"cmd_output","timestamp":1607098013,"output":"Running: curl --retry 5 -L https://storage.googleapis.com/semaphore-toolbox/toolbox-370ee9f29606c3cac78364b94487ccc1.zip -o /tmp/toolbox.zip && unzip /tmp/toolbox.zip -d /tmp && mv /tmp/toolbox ~/.toolbox && bash ~/.toolbox/install-toolbox && source ~/.toolbox/toolbox && echo 'source ~/.toolbox/toolbox' >> ~/.bash_profile && if [ -f /etc/init.d/xvfb ]; then /etc/init.d/xvfb start; fi\n"},{"event":"cmd_output","timestamp":1607098013,"output":" % Total % Received % Xferd Average Speed Time Time Time Current\n "},{"event":"cmd_output","timestamp":1607098013,"output":" Dload Upload Total Spent Left Speed\n\r 0 0 0 0 0 0 0 "},{"event":"cmd_output","timestamp":1607098013,"output":" 0 --:--:-- --:--:-- --:--:-- 0\r100 413k 100 413k 0 0 4261k 0 --:--:-- --:--"},{"event":"cmd_output","timestamp":1607098013,"output":":-- --:--:-- 4261k\nArchive: /tmp/toolbox.zip\n creating: /tmp/toolbox/\n inflating: /tmp/toolbo"},{"event":"cmd_output","timestamp":1607098013,"output":"x/libcheckout \n extracting: /tmp/toolbox/artifacts \n inflating: /tmp/toolbox/cache \n inf"},{"event":"cmd_output","timestamp":1607098013,"output":"lating: /tmp/toolbox/retry \n creating: /tmp/toolbox/tests/\n inflating: /tmp/toolbox/tests/"},{"event":"cmd_output","timestamp":1607098013,"output":"cache.bats \n inflating: /tmp/toolbox/tests/libcheckout.bats \n inflating: /tmp/toolbox/tests/ma"},{"event":"cmd_output","timestamp":1607098013,"output":"cOS_cache.bats \n inflating: /tmp/toolbox/tests/base.bats \n inflating: /tmp/toolbox/tests/macOS"},{"event":"cmd_output","timestamp":1607098013,"output":"_autocache.bats \n creating: /tmp/toolbox/tests/support/\n creating: /tmp/toolbox/tests/support"},{"event":"cmd_output","timestamp":1607098013,"output":"/bats-support/\n creating: /tmp/toolbox/tests/support/bats-assert/\n creating: /tmp/toolbox/test"},{"event":"cmd_output","timestamp":1607098013,"output":"s/support/bats-core/\n extracting: /tmp/toolbox/tests/test_helper \n inflating: /tmp/toolbox/tests"},{"event":"cmd_output","timestamp":1607098013,"output":"/install_package.bats \n inflating: /tmp/toolbox/tests/autocache.bats \n inflating: /tmp/toolbox"},{"event":"cmd_output","timestamp":1607098013,"output":"/sem-install \n inflating: /tmp/toolbox/.gitmodules \n inflating: /tmp/toolbox/README.md \n in"},{"event":"cmd_output","timestamp":1607098013,"output":"flating: /tmp/toolbox/install-package \n extracting: /tmp/toolbox/.gitignore \n inflating: /tmp/t"},{"event":"cmd_output","timestamp":1607098013,"output":"oolbox/sem-service \n inflating: /tmp/toolbox/toolbox \n inflating: /tmp/toolbox/libchecksum "},{"event":"cmd_output","timestamp":1607098013,"output":"\n inflating: /tmp/toolbox/sem-service-check-params \n inflating: /tmp/toolbox/install-toolbox \r"},{"event":"cmd_output","timestamp":1607098013,"output":"\n inflating: /tmp/toolbox/sem-version \n creating: /tmp/toolbox/.git/\n inflating: /tmp/toolbox"},{"event":"cmd_output","timestamp":1607098013,"output":"/.git/config \n creating: /tmp/toolbox/.git/objects/\n creating: /tmp/toolbox/.git/objects/pack"},{"event":"cmd_output","timestamp":1607098013,"output":"/\n inflating: /tmp/toolbox/.git/objects/pack/pack-8ef742abca08b24f2a4aad3b1de285112ea61683.pack \r"},{"event":"cmd_output","timestamp":1607098013,"output":"\n inflating: /tmp/toolbox/.git/objects/pack/pack-8ef742abca08b24f2a4aad3b1de285112ea61683.idx \n "},{"event":"cmd_output","timestamp":1607098013,"output":" creating: /tmp/toolbox/.git/objects/info/\n extracting: /tmp/toolbox/.git/HEAD \n creating: /tmp"},{"event":"cmd_output","timestamp":1607098013,"output":"/toolbox/.git/info/\n inflating: /tmp/toolbox/.git/info/exclude \n creating: /tmp/toolbox/.git/l"},{"event":"cmd_output","timestamp":1607098013,"output":"ogs/\n inflating: /tmp/toolbox/.git/logs/HEAD \n creating: /tmp/toolbox/.git/logs/refs/\n crea"},{"event":"cmd_output","timestamp":1607098013,"output":"ting: /tmp/toolbox/.git/logs/refs/heads/\n inflating: /tmp/toolbox/.git/logs/refs/heads/master \n "},{"event":"cmd_output","timestamp":1607098013,"output":" creating: /tmp/toolbox/.git/logs/refs/remotes/\n creating: /tmp/toolbox/.git/logs/refs/remotes/o"},{"event":"cmd_output","timestamp":1607098013,"output":"rigin/\n inflating: /tmp/toolbox/.git/logs/refs/remotes/origin/HEAD \n inflating: /tmp/toolbox/.g"},{"event":"cmd_output","timestamp":1607098013,"output":"it/description \n creating: /tmp/toolbox/.git/hooks/\n inflating: /tmp/toolbox/.git/hooks/commit"},{"event":"cmd_output","timestamp":1607098013,"output":"-msg.sample \n inflating: /tmp/toolbox/.git/hooks/pre-rebase.sample \n inflating: /tmp/toolbox/."},{"event":"cmd_output","timestamp":1607098013,"output":"git/hooks/pre-commit.sample \n inflating: /tmp/toolbox/.git/hooks/applypatch-msg.sample \n infla"},{"event":"cmd_output","timestamp":1607098013,"output":"ting: /tmp/toolbox/.git/hooks/fsmonitor-watchman.sample \n inflating: /tmp/toolbox/.git/hooks/pre-"},{"event":"cmd_output","timestamp":1607098013,"output":"receive.sample \n inflating: /tmp/toolbox/.git/hooks/prepare-commit-msg.sample \n inflating: /tm"},{"event":"cmd_output","timestamp":1607098013,"output":"p/toolbox/.git/hooks/post-update.sample \n inflating: /tmp/toolbox/.git/hooks/pre-applypatch.sampl"},{"event":"cmd_output","timestamp":1607098013,"output":"e \n inflating: /tmp/toolbox/.git/hooks/pre-push.sample \n inflating: /tmp/toolbox/.git/hooks/up"},{"event":"cmd_output","timestamp":1607098013,"output":"date.sample \n creating: /tmp/toolbox/.git/refs/\n creating: /tmp/toolbox/.git/refs/heads/\n ex"},{"event":"cmd_output","timestamp":1607098013,"output":"tracting: /tmp/toolbox/.git/refs/heads/master \n creating: /tmp/toolbox/.git/refs/tags/\n creat"},{"event":"cmd_output","timestamp":1607098013,"output":"ing: /tmp/toolbox/.git/refs/remotes/\n creating: /tmp/toolbox/.git/refs/remotes/origin/\n extracti"},{"event":"cmd_output","timestamp":1607098013,"output":"ng: /tmp/toolbox/.git/refs/remotes/origin/HEAD \n inflating: /tmp/toolbox/.git/index \n creatin"},{"event":"cmd_output","timestamp":1607098013,"output":"g: /tmp/toolbox/.git/branches/\n inflating: /tmp/toolbox/.git/packed-refs \n inflating: /tmp/tool"},{"event":"cmd_output","timestamp":1607098013,"output":"box/system-metrics-collector \n inflating: /tmp/toolbox/sem-dockerize \n inflating: /tmp/toolbox"},{"event":"cmd_output","timestamp":1607098013,"output":"/ssh-session-cli \n creating: /tmp/toolbox/.semaphore/\n inflating: /tmp/toolbox/.semaphore/sema"},{"event":"cmd_output","timestamp":1607098013,"output":"phore.yml \nretry installed\nssh-session-cli installed\ncache installed\nsem-service installed\nsem"},{"event":"cmd_output","timestamp":1607098014,"output":"-dockerize installed\nsem-service-check-params installed\ninstall-package installed\nInstalling the "},{"event":"cmd_output","timestamp":1607098014,"output":"artifacts CLI\nUsing http://packages.semaphoreci.com/v0.2.8/artifact_Linux_x86_64.tar.gz\nartifacts "},{"event":"cmd_output","timestamp":1607098014,"output":"installed\nStarting to collect System Metrics in /tmp/system-metrics\nStarting virtual X frame buffe"},{"event":"cmd_output","timestamp":1607098014,"output":"r: Xvfb.\n"},{"event":"cmd_finished","timestamp":1607098014,"directive":"Setting up the Semaphore toolbox","exit_code":0,"started_at":1607098013,"finished_at":1607098014},{"event":"cmd_started","timestamp":1607098014,"directive":"Starting an ssh-agent"},{"event":"cmd_output","timestamp":1607098014,"output":"Running: eval `ssh-agent` && echo 'eval $(ssh-agent) >/dev/null' >> ~/.bash_profile && echo 'yes' > /tmp/sempahore-user-commands-have-started\n"},{"event":"cmd_output","timestamp":1607098014,"output":"Agent pid 2414\n"},{"event":"cmd_finished","timestamp":1607098014,"directive":"Starting an ssh-agent","exit_code":0,"started_at":1607098014,"finished_at":1607098014},{"event":"cmd_started","timestamp":1607098014,"directive":"Connecting to cache"},{"event":"cmd_output","timestamp":1607098014,"output":"Running: ssh-keyscan -p 29920 -H 94.130.239.239 >> /home/semaphore/.ssh/known_hosts && ssh-add /home/semaphore/.ssh/semaphore_cache_key\n"},{"event":"cmd_output","timestamp":1607098014,"output":"# 94.130.239.239:29920 SSH-2.0-OpenSSH_7.6p1 Ubuntu-4ubuntu0.3\n# 94.130.239.239:29920 SSH-2.0-OpenS"},{"event":"cmd_output","timestamp":1607098014,"output":"SH_7.6p1 Ubuntu-4ubuntu0.3\n# 94.130.239.239:29920 SSH-2.0-OpenSSH_7.6p1 Ubuntu-4ubuntu0.3\nIdentity"},{"event":"cmd_output","timestamp":1607098014,"output":" added: /home/semaphore/.ssh/semaphore_cache_key (/home/semaphore/.ssh/semaphore_cache_key)\n"},{"event":"cmd_finished","timestamp":1607098014,"directive":"Connecting to cache","exit_code":0,"started_at":1607098014,"finished_at":1607098014},{"event":"cmd_started","timestamp":1607098014,"directive":"echo $DOCKER_PASSWORD | docker login --username \"$DOCKER_USERNAME\" --password-stdin"},{"event":"cmd_output","timestamp":1607098015,"output":"WARNING! Your password will be stored unencrypted in /home/semaphore/.docker/config.json.\nConfigure"},{"event":"cmd_output","timestamp":1607098015,"output":" a credential helper to remove this warning. See\nhttps://docs.docker.com/engine/reference/commandli"},{"event":"cmd_output","timestamp":1607098016,"output":"ne/login/#credentials-store\n\nLogin Succeeded\n"},{"event":"cmd_finished","timestamp":1607098016,"directive":"echo $DOCKER_PASSWORD | docker login --username \"$DOCKER_USERNAME\" --password-stdin","exit_code":0,"started_at":1607098014,"finished_at":1607098016},{"event":"cmd_started","timestamp":1607098016,"directive":"checkout"},{"event":"cmd_output","timestamp":1607098018,"output":"Performing shallow clone with depth: 50\nHEAD is now at e3cc76b Merge pull request #110 from rendere"},{"event":"cmd_output","timestamp":1607098018,"output":"dtext/fetch-changes-before-checkout\n"},{"event":"cmd_finished","timestamp":1607098018,"directive":"checkout","exit_code":0,"started_at":1607098016,"finished_at":1607098018},{"event":"cmd_started","timestamp":1607098018,"directive":"cd plumber/ppl"},{"event":"cmd_finished","timestamp":1607098018,"directive":"cd plumber/ppl","exit_code":0,"started_at":1607098018,"finished_at":1607098018},{"event":"cmd_started","timestamp":1607098018,"directive":"cache restore ppl-deps-test-$(checksum mix.lock),ppl-deps-test-"},{"event":"cmd_output","timestamp":1607098018,"output":"HIT: ppl-deps-test-2724a3e1c8cae66605d99cc5b389082e, using key ppl-deps-test-2724a3e1c8cae66605d99cc"},{"event":"cmd_output","timestamp":1607098019,"output":"5b389082e\nCache download time: 1 seconds\nRestored: deps/\n"},{"event":"cmd_finished","timestamp":1607098019,"directive":"cache restore ppl-deps-test-$(checksum mix.lock),ppl-deps-test-","exit_code":0,"started_at":1607098018,"finished_at":1607098019},{"event":"cmd_started","timestamp":1607098019,"directive":"cache restore ppl-build-test-$(checksum mix.lock),ppl-build-test-"},{"event":"cmd_output","timestamp":1607098020,"output":"HIT: ppl-build-test-2724a3e1c8cae66605d99cc5b389082e, using key ppl-build-test-2724a3e1c8cae66605d99"},{"event":"cmd_output","timestamp":1607098021,"output":"cc5b389082e\nCache download time: 1 seconds\nRestored: _build/\n"},{"event":"cmd_finished","timestamp":1607098021,"directive":"cache restore ppl-build-test-$(checksum mix.lock),ppl-build-test-","exit_code":0,"started_at":1607098019,"finished_at":1607098021},{"event":"cmd_started","timestamp":1607098021,"directive":"cd ../task_api_referent"},{"event":"cmd_finished","timestamp":1607098021,"directive":"cd ../task_api_referent","exit_code":0,"started_at":1607098021,"finished_at":1607098021},{"event":"cmd_started","timestamp":1607098021,"directive":"make image.run-detached USER=root"},{"event":"cmd_output","timestamp":1607098021,"output":"make build MIX_ENV=prod\nmake[1]: Entering directory '/home/semaphore/alles/plumber/task_api_referen"},{"event":"cmd_output","timestamp":1607098021,"output":"t'\nmake console CMD=\"mix do local.hex --force, local.rebar --force, deps.get, compile\"\nmake[2]: En"},{"event":"cmd_output","timestamp":1607098021,"output":"tering directory '/home/semaphore/alles/plumber/task_api_referent'\nmkdir -p home_dir\ndocker run --"},{"event":"cmd_output","timestamp":1607098021,"output":"network=host -e APP_ENV= -e MIX_ENV=prod -v $PWD/home_dir:/home/dev -v $PWD/..:/home/dev/repo --rm "},{"event":"cmd_output","timestamp":1607098021,"output":"--workdir=/home/dev/repo/task_api_referent --user=root -it renderedtext/elixir-dev:1.6.5-v2 mix do l"},{"event":"cmd_output","timestamp":1607098021,"output":"ocal.hex --force, local.rebar --force, deps.get, compile\nUnable to find image 'renderedtext/elixir-"},{"event":"cmd_output","timestamp":1607098023,"output":"dev:1.6.5-v2' locally\n1.6.5-v2: Pulling from renderedtext/elixir-dev\n\n\u001b[1A\u001b[2K\rcc1a78bfd46b: Pull"},{"event":"cmd_output","timestamp":1607098023,"output":"ing fs layer \r\u001b[1B\n\u001b[1A\u001b[2K\r6861473222a6: Pulling fs layer \r\u001b[1B\n\u001b[1A\u001b[2K\r7e0b9c3b5ae0: Pulling fs"},{"event":"cmd_output","timestamp":1607098023,"output":" layer \r\u001b[1B\n\u001b[1A\u001b[2K\r3ec98735f56f: Pulling fs layer \r\u001b[1B\n\u001b[1A\u001b[2K\r9b311b87a021: Pulling fs layer"},{"event":"cmd_output","timestamp":1607098023,"output":" \r\u001b[1B\n\u001b[1A\u001b[2K\r987a30f8af92: Pulling fs layer \r\u001b[1B\n\u001b[1A\u001b[2K\rfdc81c59203f: Pulling fs layer \r\u001b[1B"},{"event":"cmd_output","timestamp":1607098023,"output":"\n\u001b[1A\u001b[2K\r84732a75fcaa: Pulling fs layer \r\u001b[1B\n\u001b[1A\u001b[2K\rdbcab08679b9: Pulling fs layer \r\u001b[1B\n\u001b[1A"},{"event":"cmd_output","timestamp":1607098023,"output":"\u001b[2K\r954ea967a4b6: Pulling fs layer \r\u001b[1B\n\u001b[1A\u001b[2K\r85964177ed50: Pulling fs layer \r\u001b[1B\n\u001b[1A\u001b[2K\r9"},{"event":"cmd_output","timestamp":1607098023,"output":"5369df2fe13: Pulling fs layer \r\u001b[1B\n\u001b[1A\u001b[2K\r5de0a90a1599: Pulling fs layer \r\u001b[1B\n\u001b[1A\u001b[2K\rb3e4ec7"},{"event":"cmd_output","timestamp":1607098023,"output":"ba407: Pulling fs layer \r\u001b[1B\u001b[10A\u001b[2K\r9b311b87a021: Waiting \r\u001b[10B\u001b[9A\u001b[2K\r987a30f8af92: Waiting \r\u001b"},{"event":"cmd_output","timestamp":1607098023,"output":"[9B\u001b[8A\u001b[2K\rfdc81c59203f: Waiting \r\u001b[8B\u001b[6A\u001b[2K\rdbcab08679b9: Waiting \r\u001b[6B\u001b[5A\u001b[2K\r954ea967a4b6: Wa"},{"event":"cmd_output","timestamp":1607098023,"output":"iting \r\u001b[5B\u001b[4A\u001b[2K\r85964177ed50: Waiting \r\u001b[4B\u001b[3A\u001b[2K\r95369df2fe13: Waiting \r\u001b[3B\u001b[2A\u001b[2K\r5de0a90a"},{"event":"cmd_output","timestamp":1607098023,"output":"1599: Waiting \r\u001b[2B\u001b[1A\u001b[2K\rb3e4ec7ba407: Waiting \r\u001b[1B\u001b[7A\u001b[2K\r84732a75fcaa: Waiting \r\u001b[7B\u001b[11A\u001b[2K"},{"event":"cmd_output","timestamp":1607098023,"output":"\r3ec98735f56f: Waiting \r\u001b[11B\u001b[12A\u001b[2K\r7e0b9c3b5ae0: Downloading 44.03kB/4.336MB\r\u001b[12B\u001b[13A\u001b[2K\r686"},{"event":"cmd_output","timestamp":1607098023,"output":"1473222a6: Downloading 109.9kB/10.77MB\r\u001b[13B\u001b[14A\u001b[2K\rcc1a78bfd46b: Downloading 457.7kB/45.32MB\r\u001b["},{"event":"cmd_output","timestamp":1607098023,"output":"14B\u001b[12A\u001b[2K\r7e0b9c3b5ae0: Download complete \r\u001b[12B\u001b[13A\u001b[2K\r6861473222a6: Downloading 3.898MB/10.7"},{"event":"cmd_output","timestamp":1607098023,"output":"7MB\r\u001b[13B\u001b[14A\u001b[2K\rcc1a78bfd46b: Downloading 5.995MB/45.32MB\r\u001b[14B\u001b[13A\u001b[2K\r6861473222a6: Downloadi"},{"event":"cmd_output","timestamp":1607098023,"output":"ng 7.572MB/10.77MB\r\u001b[13B\u001b[14A\u001b[2K\rcc1a78bfd46b: Downloading 15.19MB/45.32MB\r\u001b[14B\u001b[13A\u001b[2K\r6861473"},{"event":"cmd_output","timestamp":1607098023,"output":"222a6: Downloading 9.53MB/10.77MB\r\u001b[13B\u001b[14A\u001b[2K\rcc1a78bfd46b: Downloading 22.52MB/45.32MB\r\u001b[14B\u001b"},{"event":"cmd_output","timestamp":1607098023,"output":"[13A\u001b[2K\r6861473222a6: Download complete \r\u001b[13B\u001b[14A\u001b[2K\rcc1a78bfd46b: Downloading 33.54MB/45.32MB\r"},{"event":"cmd_output","timestamp":1607098024,"output":"\u001b[14B\u001b[11A\u001b[2K\r3ec98735f56f: Downloading 506.2kB/50.03MB\r\u001b[11B\u001b[14A\u001b[2K\rcc1a78bfd46b: Downloading "},{"event":"cmd_output","timestamp":1607098024,"output":"36.75MB/45.32MB\r\u001b[14B\u001b[14A\u001b[2K\rcc1a78bfd46b: Downloading 40.43MB/45.32MB\r\u001b[14B\u001b[11A\u001b[2K\r3ec98735f56"},{"event":"cmd_output","timestamp":1607098024,"output":"f: Downloading 3.554MB/50.03MB\r\u001b[11B\u001b[14A\u001b[2K\rcc1a78bfd46b: Verifying Checksum \r\u001b[14B\u001b[14A\u001b[2K\rcc1a"},{"event":"cmd_output","timestamp":1607098024,"output":"78bfd46b: Download complete \r\u001b[14B\u001b[11A\u001b[2K\r3ec98735f56f: Downloading 8.121MB/50.03MB\r\u001b[11B\u001b[14A\u001b[2"},{"event":"cmd_output","timestamp":1607098024,"output":"K\rcc1a78bfd46b: Extracting 458.8kB/45.32MB\r\u001b[14B\u001b[11A\u001b[2K\r3ec98735f56f: Downloading 12.2MB/50.03M"},{"event":"cmd_output","timestamp":1607098024,"output":"B\r\u001b[11B\u001b[14A\u001b[2K\rcc1a78bfd46b: Extracting 2.294MB/45.32MB\r\u001b[14B\u001b[11A\u001b[2K\r3ec98735f56f: Downloading "},{"event":"cmd_output","timestamp":1607098024,"output":" 22.4MB/50.03MB\r\u001b[11B\u001b[14A\u001b[2K\rcc1a78bfd46b: Extracting 4.588MB/45.32MB\r\u001b[14B\u001b[11A\u001b[2K\r3ec98735f56"},{"event":"cmd_output","timestamp":1607098024,"output":"f: Downloading 23.92MB/50.03MB\r\u001b[11B\u001b[10A\u001b[2K\r9b311b87a021: Downloading 526.7kB/213.2MB\r\u001b[10B\u001b[14A"},{"event":"cmd_output","timestamp":1607098024,"output":"\u001b[2K\rcc1a78bfd46b: Extracting 7.34MB/45.32MB\r\u001b[14B\u001b[11A\u001b[2K\r3ec98735f56f: Downloading 29.01MB/50."},{"event":"cmd_output","timestamp":1607098024,"output":"03MB\r\u001b[11B\u001b[10A\u001b[2K\r9b311b87a021: Downloading 4.291MB/213.2MB\r\u001b[10B\u001b[14A\u001b[2K\rcc1a78bfd46b: Extracti"},{"event":"cmd_output","timestamp":1607098024,"output":"ng 9.175MB/45.32MB\r\u001b[14B\u001b[9A\u001b[2K\r987a30f8af92: Downloading 539.9kB/137.1MB\r\u001b[9B\u001b[11A\u001b[2K\r3ec98735f"},{"event":"cmd_output","timestamp":1607098024,"output":"56f: Downloading 33.11MB/50.03MB\r\u001b[11B\u001b[10A\u001b[2K\r9b311b87a021: Downloading 10.18MB/213.2MB\r\u001b[10B\u001b[1"},{"event":"cmd_output","timestamp":1607098024,"output":"4A\u001b[2K\rcc1a78bfd46b: Extracting 11.01MB/45.32MB\r\u001b[14B\u001b[11A\u001b[2K\r3ec98735f56f: Downloading 37.19MB/5"},{"event":"cmd_output","timestamp":1607098025,"output":"0.03MB\r\u001b[11B\u001b[9A\u001b[2K\r987a30f8af92: Downloading 3.226MB/137.1MB\r\u001b[9B\u001b[14A\u001b[2K\rcc1a78bfd46b: Extracti"},{"event":"cmd_output","timestamp":1607098025,"output":"ng 12.39MB/45.32MB\r\u001b[14B\u001b[10A\u001b[2K\r9b311b87a021: Downloading 18.2MB/213.2MB\r\u001b[10B\u001b[11A\u001b[2K\r3ec9873"},{"event":"cmd_output","timestamp":1607098025,"output":"5f56f: Downloading 43.79MB/50.03MB\r\u001b[11B\u001b[9A\u001b[2K\r987a30f8af92: Downloading 5.376MB/137.1MB\r\u001b[9B\u001b[1"},{"event":"cmd_output","timestamp":1607098025,"output":"4A\u001b[2K\rcc1a78bfd46b: Extracting 14.22MB/45.32MB\r\u001b[14B\u001b[10A\u001b[2K\r9b311b87a021: Downloading 20.33MB/2"},{"event":"cmd_output","timestamp":1607098025,"output":"13.2MB\r\u001b[10B\u001b[11A\u001b[2K\r3ec98735f56f: Downloading 48.36MB/50.03MB\r\u001b[11B\u001b[9A\u001b[2K\r987a30f8af92: Downloa"},{"event":"cmd_output","timestamp":1607098025,"output":"ding 9.128MB/137.1MB\r\u001b[9B\u001b[11A\u001b[2K\r3ec98735f56f: Verifying Checksum \r\u001b[11B\u001b[11A\u001b[2K\r3ec98735f56f: D"},{"event":"cmd_output","timestamp":1607098025,"output":"ownload complete \r\u001b[11B\u001b[14A\u001b[2K\rcc1a78bfd46b: Extracting 15.6MB/45.32MB\r\u001b[14B\u001b[10A\u001b[2K\r9b311b87a0"},{"event":"cmd_output","timestamp":1607098025,"output":"21: Downloading 24.1MB/213.2MB\r\u001b[10B\u001b[9A\u001b[2K\r987a30f8af92: Downloading 12.86MB/137.1MB\r\u001b[9B\u001b[14A\u001b"},{"event":"cmd_output","timestamp":1607098025,"output":"[2K\rcc1a78bfd46b: Extracting 17.43MB/45.32MB\r\u001b[14B\u001b[10A\u001b[2K\r9b311b87a021: Downloading 29.45MB/213."},{"event":"cmd_output","timestamp":1607098025,"output":"2MB\r\u001b[10B\u001b[9A\u001b[2K\r987a30f8af92: Downloading 17.68MB/137.1MB\r\u001b[9B\u001b[14A\u001b[2K\rcc1a78bfd46b: Extracting "},{"event":"cmd_output","timestamp":1607098025,"output":" 18.81MB/45.32MB\r\u001b[14B\u001b[10A\u001b[2K\r9b311b87a021: Downloading 36.96MB/213.2MB\r\u001b[10B\u001b[9A\u001b[2K\r987a30f8af9"},{"event":"cmd_output","timestamp":1607098025,"output":"2: Downloading 21.4MB/137.1MB\r\u001b[9B\u001b[14A\u001b[2K\rcc1a78bfd46b: Extracting 20.64MB/45.32MB\r\u001b[14B\u001b[10A\u001b["},{"event":"cmd_output","timestamp":1607098025,"output":"2K\r9b311b87a021: Downloading 42.83MB/213.2MB\r\u001b[10B\u001b[9A\u001b[2K\r987a30f8af92: Downloading 27.29MB/137.1"},{"event":"cmd_output","timestamp":1607098025,"output":"MB\r\u001b[9B\u001b[10A\u001b[2K\r9b311b87a021: Downloading 46.56MB/213.2MB\r\u001b[10B\u001b[9A\u001b[2K\r987a30f8af92: Downloading "},{"event":"cmd_output","timestamp":1607098025,"output":" 33.22MB/137.1MB\r\u001b[9B\u001b[8A\u001b[2K\rfdc81c59203f: Downloading 3.12kB/202kB\r\u001b[8B\u001b[8A\u001b[2K\rfdc81c59203f: Do"},{"event":"cmd_output","timestamp":1607098025,"output":"wnloading 202kB/202kB\r\u001b[8B\u001b[8A\u001b[2K\rfdc81c59203f: Verifying Checksum \r\u001b[8B\u001b[8A\u001b[2K\rfdc81c59203f: D"},{"event":"cmd_output","timestamp":1607098025,"output":"ownload complete \r\u001b[8B\u001b[14A\u001b[2K\rcc1a78bfd46b: Extracting 21.56MB/45.32MB\r\u001b[14B\u001b[10A\u001b[2K\r9b311b87a02"},{"event":"cmd_output","timestamp":1607098025,"output":"1: Downloading 53.53MB/213.2MB\r\u001b[10B\u001b[9A\u001b[2K\r987a30f8af92: Downloading 38.05MB/137.1MB\r\u001b[9B\u001b[14A\u001b["},{"event":"cmd_output","timestamp":1607098025,"output":"2K\rcc1a78bfd46b: Extracting 22.94MB/45.32MB\r\u001b[14B\u001b[10A\u001b[2K\r9b311b87a021: Downloading 56.21MB/213.2"},{"event":"cmd_output","timestamp":1607098025,"output":"MB\r\u001b[10B\u001b[9A\u001b[2K\r987a30f8af92: Downloading 44.49MB/137.1MB\r\u001b[9B\u001b[14A\u001b[2K\rcc1a78bfd46b: Extracting "},{"event":"cmd_output","timestamp":1607098026,"output":"27.53MB/45.32MB\r\u001b[14B\u001b[9A\u001b[2K\r987a30f8af92: Downloading 49.31MB/137.1MB\r\u001b[9B\u001b[10A\u001b[2K\r9b311b87a021:"},{"event":"cmd_output","timestamp":1607098026,"output":" Downloading 63.7MB/213.2MB\r\u001b[10B\u001b[14A\u001b[2K\rcc1a78bfd46b: Extracting 30.28MB/45.32MB\r\u001b[14B\u001b[10A\u001b[2"},{"event":"cmd_output","timestamp":1607098026,"output":"K\r9b311b87a021: Downloading 69.61MB/213.2MB\r\u001b[10B\u001b[9A\u001b[2K\r987a30f8af92: Downloading 56.77MB/137.1M"},{"event":"cmd_output","timestamp":1607098026,"output":"B\r\u001b[9B\u001b[10A\u001b[2K\r9b311b87a021: Downloading 76.05MB/213.2MB\r\u001b[10B\u001b[9A\u001b[2K\r987a30f8af92: Downloading "},{"event":"cmd_output","timestamp":1607098026,"output":"61.09MB/137.1MB\r\u001b[9B\u001b[14A\u001b[2K\rcc1a78bfd46b: Extracting 32.11MB/45.32MB\r\u001b[14B\u001b[7A\u001b[2K\r84732a75fcaa: "},{"event":"cmd_output","timestamp":1607098026,"output":"Downloading 33.08kB/3.269MB\r\u001b[7B\u001b[10A\u001b[2K\r9b311b87a021: Downloading 78.2MB/213.2MB\r\u001b[10B\u001b[9A\u001b[2K\r"},{"event":"cmd_output","timestamp":1607098026,"output":"987a30f8af92: Downloading 65.91MB/137.1MB\r\u001b[9B\u001b[7A\u001b[2K\r84732a75fcaa: Downloading 670.9kB/3.269MB\r\u001b"},{"event":"cmd_output","timestamp":1607098026,"output":"[7B\u001b[14A\u001b[2K\rcc1a78bfd46b: Extracting 32.57MB/45.32MB\r\u001b[14B\u001b[10A\u001b[2K\r9b311b87a021: Downloading 80."},{"event":"cmd_output","timestamp":1607098026,"output":"88MB/213.2MB\r\u001b[10B\u001b[9A\u001b[2K\r987a30f8af92: Downloading 69.11MB/137.1MB\r\u001b[9B\u001b[7A\u001b[2K\r84732a75fcaa: Dow"},{"event":"cmd_output","timestamp":1607098026,"output":"nloading 2.407MB/3.269MB\r\u001b[7B\u001b[7A\u001b[2K\r84732a75fcaa: Verifying Checksum \r\u001b[7B\u001b[7A\u001b[2K\r84732a75fcaa: "},{"event":"cmd_output","timestamp":1607098026,"output":"Download complete \r\u001b[7B\u001b[10A\u001b[2K\r9b311b87a021: Downloading 83.55MB/213.2MB\r\u001b[10B\u001b[14A\u001b[2K\rcc1a78bfd"},{"event":"cmd_output","timestamp":1607098026,"output":"46b: Extracting 33.03MB/45.32MB\r\u001b[14B\u001b[9A\u001b[2K\r987a30f8af92: Downloading 71.79MB/137.1MB\r\u001b[9B\u001b[10A\u001b"},{"event":"cmd_output","timestamp":1607098026,"output":"[2K\r9b311b87a021: Downloading 88.95MB/213.2MB\r\u001b[10B\u001b[9A\u001b[2K\r987a30f8af92: Downloading 75.58MB/137."},{"event":"cmd_output","timestamp":1607098026,"output":"1MB\r\u001b[9B\u001b[10A\u001b[2K\r9b311b87a021: Downloading 92.7MB/213.2MB\r\u001b[10B\u001b[14A\u001b[2K\rcc1a78bfd46b: Extracting"},{"event":"cmd_output","timestamp":1607098026,"output":" 33.95MB/45.32MB\r\u001b[14B\u001b[9A\u001b[2K\r987a30f8af92: Downloading 82.55MB/137.1MB\r\u001b[9B\u001b[10A\u001b[2K\r9b311b87a02"},{"event":"cmd_output","timestamp":1607098026,"output":"1: Downloading 97.5MB/213.2MB\r\u001b[10B\u001b[9A\u001b[2K\r987a30f8af92: Downloading 88.44MB/137.1MB\r\u001b[9B\u001b[14A\u001b["},{"event":"cmd_output","timestamp":1607098026,"output":"2K\rcc1a78bfd46b: Extracting 34.41MB/45.32MB\r\u001b[14B\u001b[10A\u001b[2K\r9b311b87a021: Downloading 100.7MB/213.2"},{"event":"cmd_output","timestamp":1607098027,"output":"MB\r\u001b[10B\u001b[9A\u001b[2K\r987a30f8af92: Downloading 93.8MB/137.1MB\r\u001b[9B\u001b[14A\u001b[2K\rcc1a78bfd46b: Extracting "},{"event":"cmd_output","timestamp":1607098027,"output":"34.87MB/45.32MB\r\u001b[14B\u001b[10A\u001b[2K\r9b311b87a021: Downloading 108.2MB/213.2MB\r\u001b[10B\u001b[9A\u001b[2K\r987a30f8af92"},{"event":"cmd_output","timestamp":1607098027,"output":": Downloading 100.8MB/137.1MB\r\u001b[9B\u001b[6A\u001b[2K\rdbcab08679b9: Downloading 63.44kB/6.005MB\r\u001b[6B\u001b[14A\u001b[2K"},{"event":"cmd_output","timestamp":1607098027,"output":"\rcc1a78bfd46b: Extracting 36.24MB/45.32MB\r\u001b[14B\u001b[10A\u001b[2K\r9b311b87a021: Downloading 114.1MB/213.2MB"},{"event":"cmd_output","timestamp":1607098027,"output":"\r\u001b[10B\u001b[6A\u001b[2K\rdbcab08679b9: Downloading 637.4kB/6.005MB\r\u001b[6B\u001b[9A\u001b[2K\r987a30f8af92: Downloading 10"},{"event":"cmd_output","timestamp":1607098027,"output":"6.2MB/137.1MB\r\u001b[9B\u001b[10A\u001b[2K\r9b311b87a021: Downloading 116.2MB/213.2MB\r\u001b[10B\u001b[14A\u001b[2K\rcc1a78bfd46b: "},{"event":"cmd_output","timestamp":1607098027,"output":"Extracting 37.16MB/45.32MB\r\u001b[14B\u001b[9A\u001b[2K\r987a30f8af92: Downloading 108.8MB/137.1MB\r\u001b[9B\u001b[6A\u001b[2K\rdb"},{"event":"cmd_output","timestamp":1607098027,"output":"cab08679b9: Downloading 2.223MB/6.005MB\r\u001b[6B\u001b[10A\u001b[2K\r9b311b87a021: Downloading 121.6MB/213.2MB\r\u001b["},{"event":"cmd_output","timestamp":1607098027,"output":"10B\u001b[14A\u001b[2K\rcc1a78bfd46b: Extracting 37.62MB/45.32MB\r\u001b[14B\u001b[6A\u001b[2K\rdbcab08679b9: Downloading 3.40"},{"event":"cmd_output","timestamp":1607098027,"output":"6MB/6.005MB\r\u001b[6B\u001b[9A\u001b[2K\r987a30f8af92: Downloading 115.8MB/137.1MB\r\u001b[9B\u001b[10A\u001b[2K\r9b311b87a021: Down"},{"event":"cmd_output","timestamp":1607098027,"output":"loading 130.2MB/213.2MB\r\u001b[10B\u001b[14A\u001b[2K\rcc1a78bfd46b: Extracting 39.91MB/45.32MB\r\u001b[14B\u001b[9A\u001b[2K\r987a"},{"event":"cmd_output","timestamp":1607098027,"output":"30f8af92: Downloading 119.6MB/137.1MB\r\u001b[9B\u001b[6A\u001b[2K\rdbcab08679b9: Downloading 4.328MB/6.005MB\r\u001b[6B\u001b"},{"event":"cmd_output","timestamp":1607098027,"output":"[10A\u001b[2K\r9b311b87a021: Downloading 136.1MB/213.2MB\r\u001b[10B\u001b[6A\u001b[2K\rdbcab08679b9: Downloading 5.319MB"},{"event":"cmd_output","timestamp":1607098027,"output":"/6.005MB\r\u001b[6B\u001b[9A\u001b[2K\r987a30f8af92: Downloading 122.3MB/137.1MB\r\u001b[9B\u001b[14A\u001b[2K\rcc1a78bfd46b: Extract"},{"event":"cmd_output","timestamp":1607098027,"output":"ing 41.29MB/45.32MB\r\u001b[14B\u001b[6A\u001b[2K\rdbcab08679b9: Verifying Checksum \r\u001b[6B\u001b[6A\u001b[2K\rdbcab08679b9: Down"},{"event":"cmd_output","timestamp":1607098027,"output":"load complete \r\u001b[6B\u001b[10A\u001b[2K\r9b311b87a021: Downloading 142.5MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021:"},{"event":"cmd_output","timestamp":1607098027,"output":" Downloading 146.2MB/213.2MB\r\u001b[10B\u001b[9A\u001b[2K\r987a30f8af92: Downloading 124.9MB/137.1MB\r\u001b[9B\u001b[14A\u001b[2K"},{"event":"cmd_output","timestamp":1607098028,"output":"\rcc1a78bfd46b: Extracting 42.21MB/45.32MB\r\u001b[14B\u001b[10A\u001b[2K\r9b311b87a021: Downloading 151.6MB/213.2MB"},{"event":"cmd_output","timestamp":1607098028,"output":"\r\u001b[10B\u001b[9A\u001b[2K\r987a30f8af92: Downloading 130.8MB/137.1MB\r\u001b[9B\u001b[14A\u001b[2K\rcc1a78bfd46b: Extracting 42"},{"event":"cmd_output","timestamp":1607098028,"output":".66MB/45.32MB\r\u001b[14B\u001b[10A\u001b[2K\r9b311b87a021: Downloading 158.1MB/213.2MB\r\u001b[10B\u001b[9A\u001b[2K\r987a30f8af92: "},{"event":"cmd_output","timestamp":1607098028,"output":"Downloading 136.2MB/137.1MB\r\u001b[9B\u001b[9A\u001b[2K\r987a30f8af92: Verifying Checksum \r\u001b[9B\u001b[9A\u001b[2K\r987a30f8af9"},{"event":"cmd_output","timestamp":1607098028,"output":"2: Download complete \r\u001b[9B\u001b[10A\u001b[2K\r9b311b87a021: Downloading 162.3MB/213.2MB\r\u001b[10B\u001b[14A\u001b[2K\rcc1a78"},{"event":"cmd_output","timestamp":1607098028,"output":"bfd46b: Extracting 43.12MB/45.32MB\r\u001b[14B\u001b[10A\u001b[2K\r9b311b87a021: Downloading 167.2MB/213.2MB\r\u001b[10B\u001b"},{"event":"cmd_output","timestamp":1607098028,"output":"[5A\u001b[2K\r954ea967a4b6: Downloading 14.07kB/1.361MB\r\u001b[5B\u001b[5A\u001b[2K\r954ea967a4b6: Verifying Checksum \r\u001b["},{"event":"cmd_output","timestamp":1607098028,"output":"5B\u001b[5A\u001b[2K\r954ea967a4b6: Download complete \r\u001b[5B\u001b[14A\u001b[2K\rcc1a78bfd46b: Extracting 44.04MB/45.32MB\r"},{"event":"cmd_output","timestamp":1607098028,"output":"\u001b[14B\u001b[10A\u001b[2K\r9b311b87a021: Downloading 174.7MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Downloading "},{"event":"cmd_output","timestamp":1607098028,"output":"178.5MB/213.2MB\r\u001b[10B\u001b[14A\u001b[2K\rcc1a78bfd46b: Extracting 44.5MB/45.32MB\r\u001b[14B\u001b[10A\u001b[2K\r9b311b87a021"},{"event":"cmd_output","timestamp":1607098028,"output":": Downloading 183.3MB/213.2MB\r\u001b[10B\u001b[4A\u001b[2K\r85964177ed50: Downloading 426B/4.295kB\r\u001b[4B\u001b[4A\u001b[2K"},{"event":"cmd_output","timestamp":1607098028,"output":"\r85964177ed50: Downloading 4.295kB/4.295kB\r\u001b[4B\u001b[4A\u001b[2K\r85964177ed50: Verifying Checksum \r\u001b[4B\u001b[4A\u001b"},{"event":"cmd_output","timestamp":1607098028,"output":"[2K\r85964177ed50: Download complete \r\u001b[4B\u001b[10A\u001b[2K\r9b311b87a021: Downloading 189.7MB/213.2MB\r\u001b[10B\u001b"},{"event":"cmd_output","timestamp":1607098028,"output":"[14A\u001b[2K\rcc1a78bfd46b: Extracting 45.32MB/45.32MB\r\u001b[14B\u001b[10A\u001b[2K\r9b311b87a021: Downloading 198.3MB"},{"event":"cmd_output","timestamp":1607098028,"output":"/213.2MB\r\u001b[10B\u001b[3A\u001b[2K\r95369df2fe13: Downloading 426B/2.158kB\r\u001b[3B\u001b[3A\u001b[2K\r95369df2fe13: Downloa"},{"event":"cmd_output","timestamp":1607098028,"output":"ding 2.158kB/2.158kB\r\u001b[3B\u001b[3A\u001b[2K\r95369df2fe13: Verifying Checksum \r\u001b[3B\u001b[3A\u001b[2K\r95369df2fe13: Down"},{"event":"cmd_output","timestamp":1607098028,"output":"load complete \r\u001b[3B\u001b[14A\u001b[2K\rcc1a78bfd46b: Pull complete \r\u001b[14B\u001b[10A\u001b[2K\r9b311b87a021: Downloading "},{"event":"cmd_output","timestamp":1607098028,"output":"208.5MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Verifying Checksum \r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Downlo"},{"event":"cmd_output","timestamp":1607098029,"output":"ad complete \r\u001b[10B\u001b[13A\u001b[2K\r6861473222a6: Extracting 131.1kB/10.77MB\r\u001b[13B\u001b[13A\u001b[2K\r6861473222a6: E"},{"event":"cmd_output","timestamp":1607098029,"output":"xtracting 262.1kB/10.77MB\r\u001b[13B\u001b[2A\u001b[2K\r5de0a90a1599: Downloading 48.14kB/4.685MB\r\u001b[2B\u001b[13A\u001b[2K\r68"},{"event":"cmd_output","timestamp":1607098029,"output":"61473222a6: Extracting 3.408MB/10.77MB\r\u001b[13B\u001b[2A\u001b[2K\r5de0a90a1599: Verifying Checksum \r\u001b[2B\u001b[2A\u001b[2K"},{"event":"cmd_output","timestamp":1607098029,"output":"\r5de0a90a1599: Download complete \r\u001b[2B\u001b[1A\u001b[2K\rb3e4ec7ba407: Downloading 427B/658B\r\u001b[1B\u001b[1A\u001b[2K\r"},{"event":"cmd_output","timestamp":1607098029,"output":"b3e4ec7ba407: Downloading 658B/658B\r\u001b[1B\u001b[1A\u001b[2K\rb3e4ec7ba407: Verifying Checksum \r\u001b[1B\u001b[1A\u001b[2K\r"},{"event":"cmd_output","timestamp":1607098029,"output":"b3e4ec7ba407: Download complete \r\u001b[1B\u001b[13A\u001b[2K\r6861473222a6: Extracting 7.078MB/10.77MB\r\u001b[13B\u001b[13A\u001b"},{"event":"cmd_output","timestamp":1607098029,"output":"[2K\r6861473222a6: Extracting 10.35MB/10.77MB\r\u001b[13B\u001b[13A\u001b[2K\r6861473222a6: Extracting 10.77MB/10.77"},{"event":"cmd_output","timestamp":1607098029,"output":"MB\r\u001b[13B\u001b[13A\u001b[2K\r6861473222a6: Pull complete \r\u001b[13B\u001b[12A\u001b[2K\r7e0b9c3b5ae0: Extracting 65.54kB/4.33"},{"event":"cmd_output","timestamp":1607098029,"output":"6MB\r\u001b[12B\u001b[12A\u001b[2K\r7e0b9c3b5ae0: Extracting 1.835MB/4.336MB\r\u001b[12B\u001b[12A\u001b[2K\r7e0b9c3b5ae0: Extracting"},{"event":"cmd_output","timestamp":1607098029,"output":" 4.336MB/4.336MB\r\u001b[12B\u001b[12A\u001b[2K\r7e0b9c3b5ae0: Pull complete \r\u001b[12B\u001b[11A\u001b[2K\r3ec98735f56f: Extractin"},{"event":"cmd_output","timestamp":1607098030,"output":"g 524.3kB/50.03MB\r\u001b[11B\u001b[11A\u001b[2K\r3ec98735f56f: Extracting 4.194MB/50.03MB\r\u001b[11B\u001b[11A\u001b[2K\r3ec98735f"},{"event":"cmd_output","timestamp":1607098030,"output":"56f: Extracting 7.34MB/50.03MB\r\u001b[11B\u001b[11A\u001b[2K\r3ec98735f56f: Extracting 11.01MB/50.03MB\r\u001b[11B\u001b[11A"},{"event":"cmd_output","timestamp":1607098030,"output":"\u001b[2K\r3ec98735f56f: Extracting 14.16MB/50.03MB\r\u001b[11B\u001b[11A\u001b[2K\r3ec98735f56f: Extracting 16.78MB/50.0"},{"event":"cmd_output","timestamp":1607098030,"output":"3MB\r\u001b[11B\u001b[11A\u001b[2K\r3ec98735f56f: Extracting 18.35MB/50.03MB\r\u001b[11B\u001b[11A\u001b[2K\r3ec98735f56f: Extracting"},{"event":"cmd_output","timestamp":1607098030,"output":" 19.92MB/50.03MB\r\u001b[11B\u001b[11A\u001b[2K\r3ec98735f56f: Extracting 22.02MB/50.03MB\r\u001b[11B\u001b[11A\u001b[2K\r3ec98735f5"},{"event":"cmd_output","timestamp":1607098031,"output":"6f: Extracting 24.12MB/50.03MB\r\u001b[11B\u001b[11A\u001b[2K\r3ec98735f56f: Extracting 26.74MB/50.03MB\r\u001b[11B\u001b[11A\u001b"},{"event":"cmd_output","timestamp":1607098031,"output":"[2K\r3ec98735f56f: Extracting 28.84MB/50.03MB\r\u001b[11B\u001b[11A\u001b[2K\r3ec98735f56f: Extracting 31.98MB/50.03"},{"event":"cmd_output","timestamp":1607098031,"output":"MB\r\u001b[11B\u001b[11A\u001b[2K\r3ec98735f56f: Extracting 34.6MB/50.03MB\r\u001b[11B\u001b[11A\u001b[2K\r3ec98735f56f: Extracting "},{"event":"cmd_output","timestamp":1607098031,"output":" 36.18MB/50.03MB\r\u001b[11B\u001b[11A\u001b[2K\r3ec98735f56f: Extracting 39.85MB/50.03MB\r\u001b[11B\u001b[11A\u001b[2K\r3ec98735f56"},{"event":"cmd_output","timestamp":1607098032,"output":"f: Extracting 42.47MB/50.03MB\r\u001b[11B\u001b[11A\u001b[2K\r3ec98735f56f: Extracting 45.61MB/50.03MB\r\u001b[11B\u001b[11A\u001b["},{"event":"cmd_output","timestamp":1607098032,"output":"2K\r3ec98735f56f: Extracting 47.19MB/50.03MB\r\u001b[11B\u001b[11A\u001b[2K\r3ec98735f56f: Extracting 48.76MB/50.03M"},{"event":"cmd_output","timestamp":1607098032,"output":"B\r\u001b[11B\u001b[11A\u001b[2K\r3ec98735f56f: Extracting 49.81MB/50.03MB\r\u001b[11B\u001b[11A\u001b[2K\r3ec98735f56f: Extracting "},{"event":"cmd_output","timestamp":1607098032,"output":"50.03MB/50.03MB\r\u001b[11B\u001b[11A\u001b[2K\r3ec98735f56f: Pull complete \r\u001b[11B\u001b[10A\u001b[2K\r9b311b87a021: Extracting "},{"event":"cmd_output","timestamp":1607098033,"output":" 557.1kB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Extracting 2.228MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a02"},{"event":"cmd_output","timestamp":1607098033,"output":"1: Extracting 6.128MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Extracting 9.47MB/213.2MB\r\u001b[10B\u001b[10A\u001b["},{"event":"cmd_output","timestamp":1607098033,"output":"2K\r9b311b87a021: Extracting 10.58MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Extracting 11.7MB/213.2M"},{"event":"cmd_output","timestamp":1607098033,"output":"B\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Extracting 12.81MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Extracting "},{"event":"cmd_output","timestamp":1607098034,"output":"13.93MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Extracting 15.6MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021"},{"event":"cmd_output","timestamp":1607098034,"output":": Extracting 19.5MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Extracting 23.4MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2"},{"event":"cmd_output","timestamp":1607098034,"output":"K\r9b311b87a021: Extracting 24.51MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Extracting 30.08MB/213.2MB"},{"event":"cmd_output","timestamp":1607098034,"output":"\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Extracting 33.42MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Extracting 3"},{"event":"cmd_output","timestamp":1607098034,"output":"5.09MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Extracting 38.44MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021:"},{"event":"cmd_output","timestamp":1607098035,"output":" Extracting 42.34MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Extracting 46.79MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K"},{"event":"cmd_output","timestamp":1607098035,"output":"\r9b311b87a021: Extracting 50.14MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Extracting 51.81MB/213.2MB\r"},{"event":"cmd_output","timestamp":1607098035,"output":"\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Extracting 54.03MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Extracting 56"},{"event":"cmd_output","timestamp":1607098035,"output":".26MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Extracting 58.49MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: "},{"event":"cmd_output","timestamp":1607098035,"output":"Extracting 61.83MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Extracting 66.29MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r"},{"event":"cmd_output","timestamp":1607098035,"output":"9b311b87a021: Extracting 70.19MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Extracting 74.09MB/213.2MB\r\u001b"},{"event":"cmd_output","timestamp":1607098036,"output":"[10B\u001b[10A\u001b[2K\r9b311b87a021: Extracting 76.87MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Extracting 78."},{"event":"cmd_output","timestamp":1607098036,"output":"54MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Extracting 79.66MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: E"},{"event":"cmd_output","timestamp":1607098036,"output":"xtracting 81.33MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Extracting 83MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9"},{"event":"cmd_output","timestamp":1607098036,"output":"b311b87a021: Extracting 86.34MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Extracting 90.24MB/213.2MB\r\u001b["},{"event":"cmd_output","timestamp":1607098037,"output":"10B\u001b[10A\u001b[2K\r9b311b87a021: Extracting 93.03MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Extracting 96.3"},{"event":"cmd_output","timestamp":1607098037,"output":"7MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Extracting 99.71MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Ex"},{"event":"cmd_output","timestamp":1607098037,"output":"tracting 103.6MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Extracting 107MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b"},{"event":"cmd_output","timestamp":1607098037,"output":"311b87a021: Extracting 110.3MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Extracting 112MB/213.2MB\r\u001b[1"},{"event":"cmd_output","timestamp":1607098037,"output":"0B\u001b[10A\u001b[2K\r9b311b87a021: Extracting 113.1MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Extracting 114.8"},{"event":"cmd_output","timestamp":1607098037,"output":"MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Extracting 116.4MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Ext"},{"event":"cmd_output","timestamp":1607098038,"output":"racting 118.7MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Extracting 121.4MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b3"},{"event":"cmd_output","timestamp":1607098038,"output":"11b87a021: Extracting 124.8MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Extracting 126.5MB/213.2MB\r\u001b[10"},{"event":"cmd_output","timestamp":1607098038,"output":"B\u001b[10A\u001b[2K\r9b311b87a021: Extracting 128.1MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Extracting 130.9M"},{"event":"cmd_output","timestamp":1607098038,"output":"B/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Extracting 133.7MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Extr"},{"event":"cmd_output","timestamp":1607098039,"output":"acting 137MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Extracting 139.3MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b31"},{"event":"cmd_output","timestamp":1607098039,"output":"1b87a021: Extracting 141.5MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Extracting 148.2MB/213.2MB\r\u001b[10B"},{"event":"cmd_output","timestamp":1607098039,"output":"\u001b[10A\u001b[2K\r9b311b87a021: Extracting 151.5MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Extracting 159.9MB"},{"event":"cmd_output","timestamp":1607098039,"output":"/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Extracting 169.3MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Extra"},{"event":"cmd_output","timestamp":1607098039,"output":"cting 174.4MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Extracting 178.3MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311"},{"event":"cmd_output","timestamp":1607098040,"output":"b87a021: Extracting 179.9MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Extracting 181MB/213.2MB\r\u001b[10B\u001b"},{"event":"cmd_output","timestamp":1607098040,"output":"[10A\u001b[2K\r9b311b87a021: Extracting 183.3MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Extracting 183.8MB/"},{"event":"cmd_output","timestamp":1607098040,"output":"213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Extracting 188.8MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Extrac"},{"event":"cmd_output","timestamp":1607098040,"output":"ting 191.6MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Extracting 192.7MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b"},{"event":"cmd_output","timestamp":1607098041,"output":"87a021: Extracting 194.4MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Extracting 196.6MB/213.2MB\r\u001b[10B\u001b["},{"event":"cmd_output","timestamp":1607098041,"output":"10A\u001b[2K\r9b311b87a021: Extracting 198.3MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Extracting 200.5MB/2"},{"event":"cmd_output","timestamp":1607098041,"output":"13.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Extracting 202.8MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Extract"},{"event":"cmd_output","timestamp":1607098041,"output":"ing 205MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Extracting 207.2MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b8"},{"event":"cmd_output","timestamp":1607098041,"output":"7a021: Extracting 210MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Extracting 211.1MB/213.2MB\r\u001b[10B\u001b[1"},{"event":"cmd_output","timestamp":1607098042,"output":"0A\u001b[2K\r9b311b87a021: Extracting 212.2MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Extracting 213.2MB/21"},{"event":"cmd_output","timestamp":1607098042,"output":"3.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Pull complete \r\u001b[10B\u001b[9A\u001b[2K\r987a30f8af92: Extracting 557.1kB/13"},{"event":"cmd_output","timestamp":1607098042,"output":"7.1MB\r\u001b[9B\u001b[9A\u001b[2K\r987a30f8af92: Extracting 12.26MB/137.1MB\r\u001b[9B\u001b[9A\u001b[2K\r987a30f8af92: Extracting "},{"event":"cmd_output","timestamp":1607098042,"output":"24.51MB/137.1MB\r\u001b[9B\u001b[9A\u001b[2K\r987a30f8af92: Extracting 35.65MB/137.1MB\r\u001b[9B\u001b[9A\u001b[2K\r987a30f8af92: Ex"},{"event":"cmd_output","timestamp":1607098042,"output":"tracting 47.35MB/137.1MB\r\u001b[9B\u001b[9A\u001b[2K\r987a30f8af92: Extracting 60.16MB/137.1MB\r\u001b[9B\u001b[9A\u001b[2K\r987a30"},{"event":"cmd_output","timestamp":1607098043,"output":"f8af92: Extracting 69.63MB/137.1MB\r\u001b[9B\u001b[9A\u001b[2K\r987a30f8af92: Extracting 71.86MB/137.1MB\r\u001b[9B\u001b[9A\u001b"},{"event":"cmd_output","timestamp":1607098043,"output":"[2K\r987a30f8af92: Extracting 73.53MB/137.1MB\r\u001b[9B\u001b[9A\u001b[2K\r987a30f8af92: Extracting 74.65MB/137.1MB"},{"event":"cmd_output","timestamp":1607098043,"output":"\r\u001b[9B\u001b[9A\u001b[2K\r987a30f8af92: Extracting 76.32MB/137.1MB\r\u001b[9B\u001b[9A\u001b[2K\r987a30f8af92: Extracting 78.54"},{"event":"cmd_output","timestamp":1607098043,"output":"MB/137.1MB\r\u001b[9B\u001b[9A\u001b[2K\r987a30f8af92: Extracting 81.89MB/137.1MB\r\u001b[9B\u001b[9A\u001b[2K\r987a30f8af92: Extract"},{"event":"cmd_output","timestamp":1607098044,"output":"ing 84.67MB/137.1MB\r\u001b[9B\u001b[9A\u001b[2K\r987a30f8af92: Extracting 88.01MB/137.1MB\r\u001b[9B\u001b[9A\u001b[2K\r987a30f8af9"},{"event":"cmd_output","timestamp":1607098044,"output":"2: Extracting 89.13MB/137.1MB\r\u001b[9B\u001b[9A\u001b[2K\r987a30f8af92: Extracting 90.24MB/137.1MB\r\u001b[9B\u001b[9A\u001b[2K\r9"},{"event":"cmd_output","timestamp":1607098044,"output":"87a30f8af92: Extracting 91.36MB/137.1MB\r\u001b[9B\u001b[9A\u001b[2K\r987a30f8af92: Extracting 94.14MB/137.1MB\r\u001b[9B"},{"event":"cmd_output","timestamp":1607098044,"output":"\u001b[9A\u001b[2K\r987a30f8af92: Extracting 96.37MB/137.1MB\r\u001b[9B\u001b[9A\u001b[2K\r987a30f8af92: Extracting 99.71MB/13"},{"event":"cmd_output","timestamp":1607098044,"output":"7.1MB\r\u001b[9B\u001b[9A\u001b[2K\r987a30f8af92: Extracting 101.9MB/137.1MB\r\u001b[9B\u001b[9A\u001b[2K\r987a30f8af92: Extracting "},{"event":"cmd_output","timestamp":1607098045,"output":"106.4MB/137.1MB\r\u001b[9B\u001b[9A\u001b[2K\r987a30f8af92: Extracting 110.3MB/137.1MB\r\u001b[9B\u001b[9A\u001b[2K\r987a30f8af92: Ex"},{"event":"cmd_output","timestamp":1607098045,"output":"tracting 110.9MB/137.1MB\r\u001b[9B\u001b[9A\u001b[2K\r987a30f8af92: Extracting 111.4MB/137.1MB\r\u001b[9B\u001b[9A\u001b[2K\r987a30"},{"event":"cmd_output","timestamp":1607098045,"output":"f8af92: Extracting 114.8MB/137.1MB\r\u001b[9B\u001b[9A\u001b[2K\r987a30f8af92: Extracting 117.5MB/137.1MB\r\u001b[9B\u001b[9A\u001b"},{"event":"cmd_output","timestamp":1607098045,"output":"[2K\r987a30f8af92: Extracting 120.3MB/137.1MB\r\u001b[9B\u001b[9A\u001b[2K\r987a30f8af92: Extracting 124.8MB/137.1MB"},{"event":"cmd_output","timestamp":1607098045,"output":"\r\u001b[9B\u001b[9A\u001b[2K\r987a30f8af92: Extracting 129.2MB/137.1MB\r\u001b[9B\u001b[9A\u001b[2K\r987a30f8af92: Extracting 133.1"},{"event":"cmd_output","timestamp":1607098046,"output":"MB/137.1MB\r\u001b[9B\u001b[9A\u001b[2K\r987a30f8af92: Extracting 137MB/137.1MB\r\u001b[9B\u001b[9A\u001b[2K\r987a30f8af92: Extract"},{"event":"cmd_output","timestamp":1607098046,"output":"ing 137.1MB/137.1MB\r\u001b[9B\u001b[9A\u001b[2K\r987a30f8af92: Pull complete \r\u001b[9B\u001b[8A\u001b[2K\rfdc81c59203f: Extracting"},{"event":"cmd_output","timestamp":1607098046,"output":" 32.77kB/202kB\r\u001b[8B\u001b[8A\u001b[2K\rfdc81c59203f: Extracting 202kB/202kB\r\u001b[8B\u001b[8A\u001b[2K\rfdc81c59203f: Extr"},{"event":"cmd_output","timestamp":1607098046,"output":"acting 202kB/202kB\r\u001b[8B\u001b[8A\u001b[2K\rfdc81c59203f: Pull complete \r\u001b[8B\u001b[7A\u001b[2K\r84732a75fcaa: Extractin"},{"event":"cmd_output","timestamp":1607098046,"output":"g 32.77kB/3.269MB\r\u001b[7B\u001b[7A\u001b[2K\r84732a75fcaa: Extracting 3.269MB/3.269MB\r\u001b[7B\u001b[7A\u001b[2K\r84732a75fcaa:"},{"event":"cmd_output","timestamp":1607098046,"output":" Pull complete \r\u001b[7B\u001b[6A\u001b[2K\rdbcab08679b9: Extracting 65.54kB/6.005MB\r\u001b[6B\u001b[6A\u001b[2K\rdbcab08679b9: Ex"},{"event":"cmd_output","timestamp":1607098046,"output":"tracting 2.097MB/6.005MB\r\u001b[6B\u001b[6A\u001b[2K\rdbcab08679b9: Extracting 4.784MB/6.005MB\r\u001b[6B\u001b[6A\u001b[2K\rdbcab0"},{"event":"cmd_output","timestamp":1607098046,"output":"8679b9: Extracting 6.005MB/6.005MB\r\u001b[6B\u001b[6A\u001b[2K\rdbcab08679b9: Pull complete \r\u001b[6B\u001b[5A\u001b[2K\r954ea967a"},{"event":"cmd_output","timestamp":1607098046,"output":"4b6: Extracting 32.77kB/1.361MB\r\u001b[5B\u001b[5A\u001b[2K\r954ea967a4b6: Extracting 1.049MB/1.361MB\r\u001b[5B\u001b[5A\u001b[2K"},{"event":"cmd_output","timestamp":1607098046,"output":"\r954ea967a4b6: Extracting 1.361MB/1.361MB\r\u001b[5B\u001b[5A\u001b[2K\r954ea967a4b6: Extracting 1.361MB/1.361MB\r\u001b["},{"event":"cmd_output","timestamp":1607098046,"output":"5B\u001b[5A\u001b[2K\r954ea967a4b6: Pull complete \r\u001b[5B\u001b[4A\u001b[2K\r85964177ed50: Extracting 4.295kB/4.295kB\r\u001b[4B\u001b"},{"event":"cmd_output","timestamp":1607098046,"output":"[4A\u001b[2K\r85964177ed50: Extracting 4.295kB/4.295kB\r\u001b[4B\u001b[4A\u001b[2K\r85964177ed50: Pull complete \r\u001b[4B\u001b[3A"},{"event":"cmd_output","timestamp":1607098046,"output":"\u001b[2K\r95369df2fe13: Extracting 2.158kB/2.158kB\r\u001b[3B\u001b[3A\u001b[2K\r95369df2fe13: Extracting 2.158kB/2.158k"},{"event":"cmd_output","timestamp":1607098047,"output":"B\r\u001b[3B\u001b[3A\u001b[2K\r95369df2fe13: Pull complete \r\u001b[3B\u001b[2A\u001b[2K\r5de0a90a1599: Extracting 65.54kB/4.685MB\r\u001b"},{"event":"cmd_output","timestamp":1607098047,"output":"[2B\u001b[2A\u001b[2K\r5de0a90a1599: Extracting 262.1kB/4.685MB\r\u001b[2B\u001b[2A\u001b[2K\r5de0a90a1599: Extracting 2.359MB"},{"event":"cmd_output","timestamp":1607098047,"output":"/4.685MB\r\u001b[2B\u001b[2A\u001b[2K\r5de0a90a1599: Extracting 4.26MB/4.685MB\r\u001b[2B\u001b[2A\u001b[2K\r5de0a90a1599: Extractin"},{"event":"cmd_output","timestamp":1607098047,"output":"g 4.685MB/4.685MB\r\u001b[2B\u001b[2A\u001b[2K\r5de0a90a1599: Pull complete \r\u001b[2B\u001b[1A\u001b[2K\rb3e4ec7ba407: Extracting "},{"event":"cmd_output","timestamp":1607098047,"output":" 658B/658B\r\u001b[1B\u001b[1A\u001b[2K\rb3e4ec7ba407: Extracting 658B/658B\r\u001b[1B\u001b[1A\u001b[2K\rb3e4ec7ba407: Pull com"},{"event":"cmd_output","timestamp":1607098047,"output":"plete \r\u001b[1BDigest: sha256:a91d1eb2e24fe4c9f60cf370890148aaa5d5096899064144d1b56b2033909a7b\nStatus: "},{"event":"cmd_output","timestamp":1607098050,"output":"Downloaded newer image for renderedtext/elixir-dev:1.6.5-v2\n\u001b[32m* creating \u001b[0m/home/dev/.mix/arch"},{"event":"cmd_output","timestamp":1607098050,"output":"ives/hex-0.20.6\u001b[0m\n\u001b[32m* creating \u001b[0m/home/dev/.mix/rebar\u001b[0m\n\u001b[32m* creating \u001b[0m/home/dev/.mi"},{"event":"cmd_output","timestamp":1607098051,"output":"x/rebar3\u001b[0m\n* Getting sys2app (https://github.com/renderedtext/sys2app.git)\nremote: Enumerating o"},{"event":"cmd_output","timestamp":1607098051,"output":"bjects: 41, done. \nremote: Total 41 (delta 0), reused 0 (delta 0), pack-reused 41 \n*"},{"event":"cmd_output","timestamp":1607098052,"output":" Getting util (https://github.com/renderedtext/elixir-util.git)\nremote: Enumerating objects: 10, do"},{"event":"cmd_output","timestamp":1607098052,"output":"ne. \nremote: Counting objects: 10% (1/10) \rremote: Counting objects: 20% (2/10) "},{"event":"cmd_output","timestamp":1607098052,"output":" \rremote: Counting objects: 30% (3/10) \rremote: Counting objects: 40% (4/10) \rrem"},{"event":"cmd_output","timestamp":1607098052,"output":"ote: Counting objects: 50% (5/10) \rremote: Counting objects: 60% (6/10) \rremote: Cou"},{"event":"cmd_output","timestamp":1607098052,"output":"nting objects: 70% (7/10) \rremote: Counting objects: 80% (8/10) \rremote: Counting ob"},{"event":"cmd_output","timestamp":1607098052,"output":"jects: 90% (9/10) \rremote: Counting objects: 100% (10/10) \rremote: Counting objects: "},{"event":"cmd_output","timestamp":1607098052,"output":"100% (10/10), done. \nremote: Compressing objects: 12% (1/8) \rremote: Compressing obj"},{"event":"cmd_output","timestamp":1607098052,"output":"ects: 25% (2/8) \rremote: Compressing objects: 37% (3/8) \rremote: Compressing objects"},{"event":"cmd_output","timestamp":1607098052,"output":": 50% (4/8) \rremote: Compressing objects: 62% (5/8) \rremote: Compressing objects: 7"},{"event":"cmd_output","timestamp":1607098052,"output":"5% (6/8) \rremote: Compressing objects: 87% (7/8) \rremote: Compressing objects: 100% ("},{"event":"cmd_output","timestamp":1607098052,"output":"8/8) \rremote: Compressing objects: 100% (8/8), done. \nReceiving objects: 0% (1/150)"},{"event":"cmd_output","timestamp":1607098052,"output":" \rReceiving objects: 1% (2/150) \rReceiving objects: 2% (3/150) \rReceiving objects: 3% (5"},{"event":"cmd_output","timestamp":1607098052,"output":"/150) \rReceiving objects: 4% (6/150) \rReceiving objects: 5% (8/150) \rReceiving objects: "},{"event":"cmd_output","timestamp":1607098052,"output":"6% (9/150) \rReceiving objects: 7% (11/150) \rReceiving objects: 8% (12/150) \rReceiving obje"},{"event":"cmd_output","timestamp":1607098052,"output":"cts: 9% (14/150) \rReceiving objects: 10% (15/150) \rReceiving objects: 11% (17/150) \rReceiv"},{"event":"cmd_output","timestamp":1607098052,"output":"ing objects: 12% (18/150) \rReceiving objects: 13% (20/150) \rReceiving objects: 14% (21/150) "},{"event":"cmd_output","timestamp":1607098052,"output":" \rReceiving objects: 15% (23/150) \rReceiving objects: 16% (24/150) \rReceiving objects: 17% (2"},{"event":"cmd_output","timestamp":1607098052,"output":"6/150) \rReceiving objects: 18% (27/150) \rReceiving objects: 19% (29/150) \rReceiving objects:"},{"event":"cmd_output","timestamp":1607098052,"output":" 20% (30/150) \rReceiving objects: 21% (32/150) \rReceiving objects: 22% (33/150) \rReceiving "},{"event":"cmd_output","timestamp":1607098052,"output":"objects: 23% (35/150) \rReceiving objects: 24% (36/150) \rReceiving objects: 25% (38/150) \rRe"},{"event":"cmd_output","timestamp":1607098052,"output":"ceiving objects: 26% (39/150) \rReceiving objects: 27% (41/150) \rReceiving objects: 28% (42/15"},{"event":"cmd_output","timestamp":1607098052,"output":"0) \rReceiving objects: 29% (44/150) \rReceiving objects: 30% (45/150) \rReceiving objects: 31"},{"event":"cmd_output","timestamp":1607098052,"output":"% (47/150) \rReceiving objects: 32% (48/150) \rReceiving objects: 33% (50/150) \rReceiving obje"},{"event":"cmd_output","timestamp":1607098052,"output":"cts: 34% (51/150) \rReceiving objects: 35% (53/150) \rReceiving objects: 36% (54/150) \rReceiv"},{"event":"cmd_output","timestamp":1607098052,"output":"ing objects: 37% (56/150) \rReceiving objects: 38% (57/150) \rReceiving objects: 39% (59/150) "},{"event":"cmd_output","timestamp":1607098052,"output":" \rReceiving objects: 40% (60/150) \rReceiving objects: 41% (62/150) \rReceiving objects: 42% (6"},{"event":"cmd_output","timestamp":1607098052,"output":"3/150) \rReceiving objects: 43% (65/150) \rReceiving objects: 44% (66/150) \rReceiving objects:"},{"event":"cmd_output","timestamp":1607098052,"output":" 45% (68/150) \rReceiving objects: 46% (69/150) \rReceiving objects: 47% (71/150) \rReceiving "},{"event":"cmd_output","timestamp":1607098052,"output":"objects: 48% (72/150) \rReceiving objects: 49% (74/150) \rReceiving objects: 50% (75/150) \rRe"},{"event":"cmd_output","timestamp":1607098052,"output":"ceiving objects: 51% (77/150) \rReceiving objects: 52% (78/150) \rReceiving objects: 53% (80/15"},{"event":"cmd_output","timestamp":1607098052,"output":"0) \rReceiving objects: 54% (81/150) \rReceiving objects: 55% (83/150) \rReceiving objects: 56"},{"event":"cmd_output","timestamp":1607098052,"output":"% (84/150) \rremote: Total 150 (delta 1), reused 2 (delta 0), pack-reused 140 \nReceiving ob"},{"event":"cmd_output","timestamp":1607098052,"output":"jects: 57% (86/150) \rReceiving objects: 58% (87/150) \rReceiving objects: 59% (89/150) \rRece"},{"event":"cmd_output","timestamp":1607098052,"output":"iving objects: 60% (90/150) \rReceiving objects: 61% (92/150) \rReceiving objects: 62% (93/150)"},{"event":"cmd_output","timestamp":1607098052,"output":" \rReceiving objects: 63% (95/150) \rReceiving objects: 64% (96/150) \rReceiving objects: 65% "},{"event":"cmd_output","timestamp":1607098052,"output":"(98/150) \rReceiving objects: 66% (99/150) \rReceiving objects: 67% (101/150) \rReceiving objec"},{"event":"cmd_output","timestamp":1607098052,"output":"ts: 68% (102/150) \rReceiving objects: 69% (104/150) \rReceiving objects: 70% (105/150) \rRece"},{"event":"cmd_output","timestamp":1607098052,"output":"iving objects: 71% (107/150) \rReceiving objects: 72% (108/150) \rReceiving objects: 73% (110/1"},{"event":"cmd_output","timestamp":1607098052,"output":"50) \rReceiving objects: 74% (111/150) \rReceiving objects: 75% (113/150) \rReceiving objects: "},{"event":"cmd_output","timestamp":1607098052,"output":" 76% (114/150) \rReceiving objects: 77% (116/150) \rReceiving objects: 78% (117/150) \rReceivin"},{"event":"cmd_output","timestamp":1607098052,"output":"g objects: 79% (119/150) \rReceiving objects: 80% (120/150) \rReceiving objects: 81% (122/150) "},{"event":"cmd_output","timestamp":1607098052,"output":" \rReceiving objects: 82% (123/150) \rReceiving objects: 83% (125/150) \rReceiving objects: 84%"},{"event":"cmd_output","timestamp":1607098052,"output":" (126/150) \rReceiving objects: 85% (128/150) \rReceiving objects: 86% (129/150) \rReceiving ob"},{"event":"cmd_output","timestamp":1607098052,"output":"jects: 87% (131/150) \rReceiving objects: 88% (132/150) \rReceiving objects: 89% (134/150) \rR"},{"event":"cmd_output","timestamp":1607098052,"output":"eceiving objects: 90% (135/150) \rReceiving objects: 91% (137/150) \rReceiving objects: 92% (13"},{"event":"cmd_output","timestamp":1607098052,"output":"8/150) \rReceiving objects: 93% (140/150) \rReceiving objects: 94% (141/150) \rReceiving object"},{"event":"cmd_output","timestamp":1607098052,"output":"s: 95% (143/150) \rReceiving objects: 96% (144/150) \rReceiving objects: 97% (146/150) \rRecei"},{"event":"cmd_output","timestamp":1607098052,"output":"ving objects: 98% (147/150) \rReceiving objects: 99% (149/150) \rReceiving objects: 100% (150/15"},{"event":"cmd_output","timestamp":1607098052,"output":"0) \rReceiving objects: 100% (150/150), 33.16 KiB | 0 bytes/s, done.\nResolving deltas: 0% (0/75)"},{"event":"cmd_output","timestamp":1607098052,"output":" \rResolving deltas: 1% (1/75) \rResolving deltas: 2% (2/75) \rResolving deltas: 4% (3/75) "},{"event":"cmd_output","timestamp":1607098052,"output":" \rResolving deltas: 9% (7/75) \rResolving deltas: 10% (8/75) \rResolving deltas: 24% (18/75) "},{"event":"cmd_output","timestamp":1607098052,"output":" \rResolving deltas: 38% (29/75) \rResolving deltas: 41% (31/75) \rResolving deltas: 42% (32/75"},{"event":"cmd_output","timestamp":1607098052,"output":") \rResolving deltas: 44% (33/75) \rResolving deltas: 57% (43/75) \rResolving deltas: 72% (54/"},{"event":"cmd_output","timestamp":1607098052,"output":"75) \rResolving deltas: 73% (55/75) \rResolving deltas: 80% (60/75) \rResolving deltas: 85% (6"},{"event":"cmd_output","timestamp":1607098052,"output":"4/75) \rResolving deltas: 86% (65/75) \rResolving deltas: 100% (75/75) \rResolving deltas: 100% "},{"event":"cmd_output","timestamp":1607098053,"output":"(75/75), done.\n* Getting log_tee (https://github.com/renderedtext/log-tee.git)\nremote: Enumerating"},{"event":"cmd_output","timestamp":1607098053,"output":" objects: 20, done. \nremote: Total 20 (delta 0), reused 0 (delta 0), pack-reused 20 \r"},{"event":"cmd_output","timestamp":1607098054,"output":"\n* Getting watchman (https://github.com/renderedtext/ex-watchman.git)\nremote: Enumerating objects: "},{"event":"cmd_output","timestamp":1607098054,"output":"30, done. \nremote: Counting objects: 3% (1/30) \rremote: Counting objects: 6% (2/3"},{"event":"cmd_output","timestamp":1607098054,"output":"0) \rremote: Counting objects: 10% (3/30) \rremote: Counting objects: 13% (4/30) "},{"event":"cmd_output","timestamp":1607098054,"output":" \rremote: Counting objects: 16% (5/30) \rremote: Counting objects: 20% (6/30) \rremot"},{"event":"cmd_output","timestamp":1607098054,"output":"e: Counting objects: 23% (7/30) \rremote: Counting objects: 26% (8/30) \rremote: Count"},{"event":"cmd_output","timestamp":1607098054,"output":"ing objects: 30% (9/30) \rremote: Counting objects: 33% (10/30) \rremote: Counting obj"},{"event":"cmd_output","timestamp":1607098054,"output":"ects: 36% (11/30) \rremote: Counting objects: 40% (12/30) \rremote: Counting objects: "},{"event":"cmd_output","timestamp":1607098054,"output":" 43% (13/30) \rremote: Counting objects: 46% (14/30) \rremote: Counting objects: 50% ("},{"event":"cmd_output","timestamp":1607098054,"output":"15/30) \rremote: Counting objects: 53% (16/30) \rremote: Counting objects: 56% (17/30)"},{"event":"cmd_output","timestamp":1607098054,"output":" \rremote: Counting objects: 60% (18/30) \rremote: Counting objects: 63% (19/30) "},{"event":"cmd_output","timestamp":1607098054,"output":" \rremote: Counting objects: 66% (20/30) \rremote: Counting objects: 70% (21/30) \rrem"},{"event":"cmd_output","timestamp":1607098054,"output":"ote: Counting objects: 73% (22/30) \rremote: Counting objects: 76% (23/30) \rremote: C"},{"event":"cmd_output","timestamp":1607098054,"output":"ounting objects: 80% (24/30) \rremote: Counting objects: 83% (25/30) \rremote: Countin"},{"event":"cmd_output","timestamp":1607098054,"output":"g objects: 86% (26/30) \rremote: Counting objects: 90% (27/30) \rremote: Counting obje"},{"event":"cmd_output","timestamp":1607098054,"output":"cts: 93% (28/30) \rremote: Counting objects: 96% (29/30) \rremote: Counting objects: 1"},{"event":"cmd_output","timestamp":1607098054,"output":"00% (30/30) \rremote: Counting objects: 100% (30/30), done. \nremote: Compressing objec"},{"event":"cmd_output","timestamp":1607098054,"output":"ts: 4% (1/22) \rremote: Compressing objects: 9% (2/22) \rremote: Compressing objects"},{"event":"cmd_output","timestamp":1607098054,"output":": 13% (3/22) \rremote: Compressing objects: 18% (4/22) \rremote: Compressing objects: "},{"event":"cmd_output","timestamp":1607098054,"output":" 22% (5/22) \rremote: Compressing objects: 27% (6/22) \rremote: Compressing objects: 3"},{"event":"cmd_output","timestamp":1607098054,"output":"1% (7/22) \rremote: Compressing objects: 36% (8/22) \rremote: Compressing objects: 40%"},{"event":"cmd_output","timestamp":1607098054,"output":" (9/22) \rremote: Compressing objects: 45% (10/22) \rremote: Compressing objects: 50% "},{"event":"cmd_output","timestamp":1607098054,"output":"(11/22) \rremote: Compressing objects: 54% (12/22) \rremote: Compressing objects: 59% "},{"event":"cmd_output","timestamp":1607098054,"output":"(13/22) \rremote: Compressing objects: 63% (14/22) \rremote: Compressing objects: 68% "},{"event":"cmd_output","timestamp":1607098054,"output":"(15/22) \rremote: Compressing objects: 72% (16/22) \rremote: Compressing objects: 77% "},{"event":"cmd_output","timestamp":1607098054,"output":"(17/22) \rremote: Compressing objects: 81% (18/22) \rremote: Compressing objects: 86% "},{"event":"cmd_output","timestamp":1607098054,"output":"(19/22) \rremote: Compressing objects: 90% (20/22) \rremote: Compressing objects: 95% "},{"event":"cmd_output","timestamp":1607098054,"output":"(21/22) \rremote: Compressing objects: 100% (22/22) \rremote: Compressing objects: 100% "},{"event":"cmd_output","timestamp":1607098054,"output":"(22/22), done. \nReceiving objects: 0% (1/343) \rReceiving objects: 1% (4/343) \rReceiv"},{"event":"cmd_output","timestamp":1607098054,"output":"ing objects: 2% (7/343) \rReceiving objects: 3% (11/343) \rReceiving objects: 4% (14/343) "},{"event":"cmd_output","timestamp":1607098054,"output":"\rReceiving objects: 5% (18/343) \rReceiving objects: 6% (21/343) \rReceiving objects: 7% (25"},{"event":"cmd_output","timestamp":1607098054,"output":"/343) \rReceiving objects: 8% (28/343) \rReceiving objects: 9% (31/343) \rReceiving objects: "},{"event":"cmd_output","timestamp":1607098054,"output":" 10% (35/343) \rReceiving objects: 11% (38/343) \rReceiving objects: 12% (42/343) \rReceiving o"},{"event":"cmd_output","timestamp":1607098054,"output":"bjects: 13% (45/343) \rReceiving objects: 14% (49/343) \rReceiving objects: 15% (52/343) \rRec"},{"event":"cmd_output","timestamp":1607098054,"output":"eiving objects: 16% (55/343) \rReceiving objects: 17% (59/343) \rReceiving objects: 18% (62/343"},{"event":"cmd_output","timestamp":1607098054,"output":") \rReceiving objects: 19% (66/343) \rReceiving objects: 20% (69/343) \rReceiving objects: 21%"},{"event":"cmd_output","timestamp":1607098054,"output":" (73/343) \rReceiving objects: 22% (76/343) \rReceiving objects: 23% (79/343) \rReceiving objec"},{"event":"cmd_output","timestamp":1607098054,"output":"ts: 24% (83/343) \rReceiving objects: 25% (86/343) \rReceiving objects: 26% (90/343) \rReceivi"},{"event":"cmd_output","timestamp":1607098054,"output":"ng objects: 27% (93/343) \rReceiving objects: 28% (97/343) \rReceiving objects: 29% (100/343) "},{"event":"cmd_output","timestamp":1607098054,"output":" \rReceiving objects: 30% (103/343) \rReceiving objects: 31% (107/343) \rReceiving objects: 32% "},{"event":"cmd_output","timestamp":1607098054,"output":"(110/343) \rReceiving objects: 33% (114/343) \rReceiving objects: 34% (117/343) \rReceiving obj"},{"event":"cmd_output","timestamp":1607098054,"output":"ects: 35% (121/343) \rReceiving objects: 36% (124/343) \rReceiving objects: 37% (127/343) \rRe"},{"event":"cmd_output","timestamp":1607098054,"output":"ceiving objects: 38% (131/343) \rReceiving objects: 39% (134/343) \rReceiving objects: 40% (138"},{"event":"cmd_output","timestamp":1607098054,"output":"/343) \rReceiving objects: 41% (141/343) \rReceiving objects: 42% (145/343) \rReceiving objects"},{"event":"cmd_output","timestamp":1607098054,"output":": 43% (148/343) \rReceiving objects: 44% (151/343) \rReceiving objects: 45% (155/343) \rReceiv"},{"event":"cmd_output","timestamp":1607098054,"output":"ing objects: 46% (158/343) \rReceiving objects: 47% (162/343) \rReceiving objects: 48% (165/343"},{"event":"cmd_output","timestamp":1607098054,"output":") \rReceiving objects: 49% (169/343) \rReceiving objects: 50% (172/343) \rReceiving objects: 5"},{"event":"cmd_output","timestamp":1607098054,"output":"1% (175/343) \rReceiving objects: 52% (179/343) \rReceiving objects: 53% (182/343) \rReceiving "},{"event":"cmd_output","timestamp":1607098054,"output":"objects: 54% (186/343) \rReceiving objects: 55% (189/343) \rReceiving objects: 56% (193/343) "},{"event":"cmd_output","timestamp":1607098054,"output":"\rReceiving objects: 57% (196/343) \rReceiving objects: 58% (199/343) \rReceiving objects: 59% ("},{"event":"cmd_output","timestamp":1607098054,"output":"203/343) \rReceiving objects: 60% (206/343) \rReceiving objects: 61% (210/343) \rReceiving obje"},{"event":"cmd_output","timestamp":1607098054,"output":"cts: 62% (213/343) \rReceiving objects: 63% (217/343) \rReceiving objects: 64% (220/343) \rRec"},{"event":"cmd_output","timestamp":1607098054,"output":"eiving objects: 65% (223/343) \rReceiving objects: 66% (227/343) \rReceiving objects: 67% (230/"},{"event":"cmd_output","timestamp":1607098054,"output":"343) \rReceiving objects: 68% (234/343) \rReceiving objects: 69% (237/343) \rReceiving objects:"},{"event":"cmd_output","timestamp":1607098054,"output":" 70% (241/343) \rReceiving objects: 71% (244/343) \rReceiving objects: 72% (247/343) \rReceivi"},{"event":"cmd_output","timestamp":1607098054,"output":"ng objects: 73% (251/343) \rReceiving objects: 74% (254/343) \rReceiving objects: 75% (258/343)"},{"event":"cmd_output","timestamp":1607098054,"output":" \rReceiving objects: 76% (261/343) \rReceiving objects: 77% (265/343) \rReceiving objects: 78"},{"event":"cmd_output","timestamp":1607098054,"output":"% (268/343) \rReceiving objects: 79% (271/343) \rReceiving objects: 80% (275/343) \rReceiving o"},{"event":"cmd_output","timestamp":1607098054,"output":"bjects: 81% (278/343) \rReceiving objects: 82% (282/343) \rReceiving objects: 83% (285/343) \r"},{"event":"cmd_output","timestamp":1607098054,"output":"Receiving objects: 84% (289/343) \rReceiving objects: 85% (292/343) \rReceiving objects: 86% (2"},{"event":"cmd_output","timestamp":1607098054,"output":"95/343) \rReceiving objects: 87% (299/343) \rReceiving objects: 88% (302/343) \rReceiving objec"},{"event":"cmd_output","timestamp":1607098054,"output":"ts: 89% (306/343) \rReceiving objects: 90% (309/343) \rReceiving objects: 91% (313/343) \rRece"},{"event":"cmd_output","timestamp":1607098054,"output":"iving objects: 92% (316/343) \rReceiving objects: 93% (319/343) \rReceiving objects: 94% (323/3"},{"event":"cmd_output","timestamp":1607098054,"output":"43) \rReceiving objects: 95% (326/343) \rremote: Total 343 (delta 9), reused 17 (delta 6), pack-r"},{"event":"cmd_output","timestamp":1607098054,"output":"eused 313 \nReceiving objects: 96% (330/343) \rReceiving objects: 97% (333/343) \rReceivi"},{"event":"cmd_output","timestamp":1607098054,"output":"ng objects: 98% (337/343) \rReceiving objects: 99% (340/343) \rReceiving objects: 100% (343/343)"},{"event":"cmd_output","timestamp":1607098054,"output":" \rReceiving objects: 100% (343/343), 51.43 KiB | 0 bytes/s, done.\nResolving deltas: 0% (0/145) "},{"event":"cmd_output","timestamp":1607098054,"output":" \rResolving deltas: 4% (6/145) \rResolving deltas: 6% (9/145) \rResolving deltas: 9% (14/14"},{"event":"cmd_output","timestamp":1607098054,"output":"5) \rResolving deltas: 12% (18/145) \rResolving deltas: 13% (19/145) \rResolving deltas: 17% ("},{"event":"cmd_output","timestamp":1607098054,"output":"25/145) \rResolving deltas: 20% (29/145) \rResolving deltas: 21% (31/145) \rResolving deltas: "},{"event":"cmd_output","timestamp":1607098054,"output":"24% (36/145) \rResolving deltas: 25% (37/145) \rResolving deltas: 30% (44/145) \rResolving delt"},{"event":"cmd_output","timestamp":1607098054,"output":"as: 32% (47/145) \rResolving deltas: 42% (61/145) \rResolving deltas: 46% (67/145) \rResolving"},{"event":"cmd_output","timestamp":1607098054,"output":" deltas: 57% (83/145) \rResolving deltas: 59% (86/145) \rResolving deltas: 65% (95/145) \rReso"},{"event":"cmd_output","timestamp":1607098054,"output":"lving deltas: 67% (98/145) \rResolving deltas: 76% (111/145) \rResolving deltas: 91% (133/145) "},{"event":"cmd_output","timestamp":1607098054,"output":" \rResolving deltas: 92% (134/145) \rResolving deltas: 93% (136/145) \rResolving deltas: 94% (1"},{"event":"cmd_output","timestamp":1607098054,"output":"37/145) \rResolving deltas: 95% (138/145) \rResolving deltas: 96% (140/145) \rResolving deltas:"},{"event":"cmd_output","timestamp":1607098054,"output":" 97% (142/145) \rResolving deltas: 99% (144/145) \rResolving deltas: 100% (145/145) \rResolving"},{"event":"cmd_output","timestamp":1607098054,"output":" deltas: 100% (145/145), done.\nResolving Hex dependencies...\nDependency resolution completed:\nUnc"},{"event":"cmd_output","timestamp":1607098054,"output":"hanged:\n artificery 0.4.1\n bunt 0.2.0\n cowboy 2.5.0\n cowlib 2.6.0\n credo 0.10.2\n distill"},{"event":"cmd_output","timestamp":1607098054,"output":"ery 2.0.12\n grpc 0.3.1\n gun 1.3.0\n jason 1.1.2\n protobuf 0.5.4\n ranch 1.6.2\n uuid 1.1.8\r"},{"event":"cmd_output","timestamp":1607098055,"output":"\n wormhole 2.3.0\n* Getting distillery (Hex package)\n* Getting credo (Hex package)\n* Getting uuid"},{"event":"cmd_output","timestamp":1607098055,"output":" (Hex package)\n* Getting jason (Hex package)\n* Getting grpc (Hex package)\n* Getting cowboy (Hex p"},{"event":"cmd_output","timestamp":1607098055,"output":"ackage)\n* Getting gun (Hex package)\n* Getting protobuf (Hex package)\n* Getting cowlib (Hex packag"},{"event":"cmd_output","timestamp":1607098055,"output":"e)\n* Getting ranch (Hex package)\n* Getting wormhole (Hex package)\n* Getting bunt (Hex package)\n*"},{"event":"cmd_output","timestamp":1607098055,"output":" Getting artificery (Hex package)\n==> sys2app\nCompiling 2 files (.ex)\nGenerated sys2app app\n==> "},{"event":"cmd_output","timestamp":1607098056,"output":"log_tee\nCompiling 1 file (.ex)\nGenerated log_tee app\n==> wormhole\nCompiling 6 files (.ex)\nGener"},{"event":"cmd_output","timestamp":1607098059,"output":"ated wormhole app\n==> protobuf\nCompiling 21 files (.ex)\nGenerated protobuf app\n===> Compiling ra"},{"event":"cmd_output","timestamp":1607098062,"output":"nch\n==> jason\nCompiling 8 files (.ex)\nGenerated jason app\n==> watchman\nCompiling 6 files (.ex)\r"},{"event":"cmd_output","timestamp":1607098062,"output":"\n\u001b[33mwarning: \u001b[0mvariable \"now\" does not exist and is being expanded to \"now()\", please use parent"},{"event":"cmd_output","timestamp":1607098062,"output":"heses to remove the ambiguity or change the variable name\n lib/watchman/heartbeat.ex:9\n\n\u001b[33mwar"},{"event":"cmd_output","timestamp":1607098062,"output":"ning: \u001b[0mvariable \"now\" does not exist and is being expanded to \"now()\", please use parentheses to "},{"event":"cmd_output","timestamp":1607098062,"output":"remove the ambiguity or change the variable name\n lib/watchman/heartbeat.ex:15\n\n\u001b[33mwarning: \u001b["},{"event":"cmd_output","timestamp":1607098062,"output":"0mvariable \"submit_memory\" does not exist and is being expanded to \"submit_memory()\", please use par"},{"event":"cmd_output","timestamp":1607098062,"output":"entheses to remove the ambiguity or change the variable name\n lib/watchman/system.ex:17\n\n\u001b[33mwa"},{"event":"cmd_output","timestamp":1607098062,"output":"rning: \u001b[0mKernel.to_char_list/1 is deprecated, use Kernel.to_charlist/1\n lib/watchman/server.ex:3"},{"event":"cmd_output","timestamp":1607098062,"output":"6\n\n\u001b[33mwarning: \u001b[0mfunction init/1 required by behaviour GenServer is not implemented (in module"},{"event":"cmd_output","timestamp":1607098062,"output":" Watchman.Server).\n\nWe will inject a default implementation for now:\n\n def init(args) do\n "},{"event":"cmd_output","timestamp":1607098062,"output":" {:ok, args}\n end\n\nYou can copy the implementation above or define your own that converts th"},{"event":"cmd_output","timestamp":1607098062,"output":"e arguments given to GenServer.start_link/3 to the server state.\n\n lib/watchman/server.ex:1\n\nGe"},{"event":"cmd_output","timestamp":1607098074,"output":"nerated watchman app\n===> Compiling cowlib\n===> Compiling cowboy\n==> uuid\nCompiling 1 file (.ex)"},{"event":"cmd_output","timestamp":1607098075,"output":"\nGenerated uuid app\n==> artificery\nCompiling 10 files (.ex)\n\u001b[33mwarning: \u001b[0mmodule attribute @"},{"event":"cmd_output","timestamp":1607098075,"output":"impl was not set for function get/3 callback (specified in Access). This either means you forgot to "},{"event":"cmd_output","timestamp":1607098075,"output":"add the \"@impl true\" annotation before the definition or that you are accidentally overriding this c"},{"event":"cmd_output","timestamp":1607098075,"output":"allback\n lib/command.ex:74\n\nGenerated artificery app\n==> distillery\nCompiling 33 files (.ex)\n"},{"event":"cmd_output","timestamp":1607098079,"output":"Generated distillery app\n==> util\nCompiling 4 files (.ex)\nGenerated util app\n===> Compiling gun\r"},{"event":"cmd_output","timestamp":1607098081,"output":"\n==> grpc\nCompiling 1 file (.erl)\nCompiling 21 files (.ex)\nGenerated grpc app\n==> dependencies\n"},{"event":"cmd_output","timestamp":1607098092,"output":"Generated dependencies app\n==> proto\nCompiling 20 files (.ex)\nGenerated proto app\n==> task_api_r"},{"event":"cmd_output","timestamp":1607098092,"output":"eferent\nCompiling 22 files (.ex)\n\u001b[33mwarning: \u001b[0mvariable \"cmd_ids\" is unused\n lib/task_api_re"},{"event":"cmd_output","timestamp":1607098092,"output":"ferent/runner/job.ex:86\n\n\u001b[33mwarning: \u001b[0mvariable \"env_vars\" is unused\n lib/task_api_referent/"},{"event":"cmd_output","timestamp":1607098092,"output":"runner/job.ex:86\n\n\u001b[33mwarning: \u001b[0mvariable \"job_id\" is unused\n lib/task_api_referent/runner/jo"},{"event":"cmd_output","timestamp":1607098092,"output":"b.ex:86\n\n\u001b[33mwarning: \u001b[0mvariable \"cmd_ids\" is unused\n lib/task_api_referent/runner/job.ex:89\r"},{"event":"cmd_output","timestamp":1607098092,"output":"\n\n\u001b[33mwarning: \u001b[0mvariable \"env_vars\" is unused\n lib/task_api_referent/runner/job.ex:89\n\n\u001b[33"},{"event":"cmd_output","timestamp":1607098092,"output":"mwarning: \u001b[0mvariable \"job_id\" is unused\n lib/task_api_referent/runner/job.ex:89\n\nGenerated tas"},{"event":"cmd_output","timestamp":1607098093,"output":"k_api_referent app\nmake[2]: Leaving directory '/home/semaphore/alles/plumber/task_api_referent'\nma"},{"event":"cmd_output","timestamp":1607098093,"output":"ke[1]: Leaving directory '/home/semaphore/alles/plumber/task_api_referent'\nmake release\nmake[1]: E"},{"event":"cmd_output","timestamp":1607098093,"output":"ntering directory '/home/semaphore/alles/plumber/task_api_referent'\nmake console MIX_ENV=prod CMD=\""},{"event":"cmd_output","timestamp":1607098093,"output":"mix release --verbose\"\nmake[2]: Entering directory '/home/semaphore/alles/plumber/task_api_referent"},{"event":"cmd_output","timestamp":1607098093,"output":"'\nmkdir -p home_dir\ndocker run --network=host -e APP_ENV= -e MIX_ENV=prod -v $PWD/home_dir:/home/"},{"event":"cmd_output","timestamp":1607098093,"output":"dev -v $PWD/..:/home/dev/repo --rm --workdir=/home/dev/repo/task_api_referent --user=root -it render"},{"event":"cmd_output","timestamp":1607098095,"output":"edtext/elixir-dev:1.6.5-v2 mix release --verbose\n\u001b[36m==> Loading configuration..\n\u001b[0m\u001b[0m\u001b[1m\u001b[36"},{"event":"cmd_output","timestamp":1607098095,"output":"m==> Assembling release..\n\u001b[0m\u001b[0m\u001b[1m\u001b[36m==> Building release task_api_referent:0.2.0 using envir"},{"event":"cmd_output","timestamp":1607098095,"output":"onment prod\n\u001b[0m\u001b[0m\u001b[36m==> Discovered applications:\n\u001b[0m\u001b[0m\u001b[36m > \u001b[37mgun-1.3.0\u001b[0m\u001b[0m\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098095,"output":"[0m\u001b[36m\n |\n | from: _build/prod/lib/gun\n\u001b[0m\u001b[0m\u001b[36m | applications:\n | :kernel\n "},{"event":"cmd_output","timestamp":1607098095,"output":"| :stdlib\n | :ssl\n | :cowlib\n\u001b[0m\u001b[0m\u001b[36m | includes: none\n\u001b[0m\u001b[0m\u001b[36m |_"},{"event":"cmd_output","timestamp":1607098095,"output":"____\n\n\u001b[0m\u001b[0m\u001b[36m > \u001b[37mwatchman-0.2.0\u001b[0m\u001b[0m\u001b[0m\u001b[0m\u001b[36m\n |\n | from: _build/prod/lib/w"},{"event":"cmd_output","timestamp":1607098095,"output":"atchman\n\u001b[0m\u001b[0m\u001b[36m | applications:\n | :kernel\n | :stdlib\n | :elixir\n | "},{"event":"cmd_output","timestamp":1607098095,"output":" :logger\n\u001b[0m\u001b[0m\u001b[36m | includes: none\n\u001b[0m\u001b[0m\u001b[36m |_____\n\n\u001b[0m\u001b[0m\u001b[36m > \u001b[37mproto"},{"event":"cmd_output","timestamp":1607098095,"output":"buf-0.5.4\u001b[0m\u001b[0m\u001b[0m\u001b[0m\u001b[36m\n |\n | from: _build/prod/lib/protobuf\n\u001b[0m\u001b[0m\u001b[36m | applicat"},{"event":"cmd_output","timestamp":1607098095,"output":"ions:\n | :kernel\n | :stdlib\n | :elixir\n | :logger\n\u001b[0m\u001b[0m\u001b[36m | inc"},{"event":"cmd_output","timestamp":1607098095,"output":"ludes: none\n\u001b[0m\u001b[0m\u001b[36m |_____\n\n\u001b[0m\u001b[0m\u001b[36m > \u001b[37mwormhole-2.3.0\u001b[0m\u001b[0m\u001b[0m\u001b[0m\u001b[36m\n |"},{"event":"cmd_output","timestamp":1607098095,"output":"\n | from: _build/prod/lib/wormhole\n\u001b[0m\u001b[0m\u001b[36m | applications:\n | :kernel\n | :"},{"event":"cmd_output","timestamp":1607098095,"output":"stdlib\n | :elixir\n | :logger\n\u001b[0m\u001b[0m\u001b[36m | includes: none\n\u001b[0m\u001b[0m\u001b[36m |_____\r"},{"event":"cmd_output","timestamp":1607098095,"output":"\n\n\u001b[0m\u001b[0m\u001b[36m > \u001b[37mutil-0.0.1\u001b[0m\u001b[0m\u001b[0m\u001b[0m\u001b[36m\n |\n | from: _build/prod/lib/util\n\u001b[0m"},{"event":"cmd_output","timestamp":1607098095,"output":"\u001b[0m\u001b[36m | applications:\n | :kernel\n | :stdlib\n | :elixir\n | :logger\r"},{"event":"cmd_output","timestamp":1607098095,"output":"\n | :wormhole\n | :protobuf\n | :watchman\n\u001b[0m\u001b[0m\u001b[36m | includes: none\n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098095,"output":"[0m\u001b[36m |_____\n\n\u001b[0m\u001b[0m\u001b[36m > \u001b[37mkernel-5.4.3\u001b[0m\u001b[0m\u001b[0m\u001b[0m\u001b[36m\n |\n | from: /usr/lo"},{"event":"cmd_output","timestamp":1607098095,"output":"cal/lib/erlang/lib/kernel-5.4.3\n\u001b[0m\u001b[0m\u001b[36m | applications: none\n\u001b[0m\u001b[0m\u001b[36m | includes: n"},{"event":"cmd_output","timestamp":1607098095,"output":"one\n\u001b[0m\u001b[0m\u001b[36m |_____\n\n\u001b[0m\u001b[0m\u001b[36m > \u001b[37martificery-0.4.1\u001b[0m\u001b[0m\u001b[0m\u001b[0m\u001b[36m\n |\n | "},{"event":"cmd_output","timestamp":1607098095,"output":" from: _build/prod/lib/artificery\n\u001b[0m\u001b[0m\u001b[36m | applications:\n | :kernel\n | :stdl"},{"event":"cmd_output","timestamp":1607098095,"output":"ib\n | :elixir\n\u001b[0m\u001b[0m\u001b[36m | includes: none\n\u001b[0m\u001b[0m\u001b[36m |_____\n\n\u001b[0m\u001b[0m\u001b[36m > \u001b["},{"event":"cmd_output","timestamp":1607098095,"output":"37mdistillery-2.0.12\u001b[0m\u001b[0m\u001b[0m\u001b[0m\u001b[36m\n |\n | from: _build/prod/lib/distillery\n\u001b[0m\u001b[0m\u001b[36m"},{"event":"cmd_output","timestamp":1607098095,"output":" | applications:\n | :kernel\n | :stdlib\n | :elixir\n | :runtime_tools\n "},{"event":"cmd_output","timestamp":1607098095,"output":" | :artificery\n\u001b[0m\u001b[0m\u001b[36m | includes: none\n\u001b[0m\u001b[0m\u001b[36m |_____\n\n\u001b[0m\u001b[0m\u001b[36m > \u001b[3"},{"event":"cmd_output","timestamp":1607098095,"output":"7muuid-1.1.8\u001b[0m\u001b[0m\u001b[0m\u001b[0m\u001b[36m\n |\n | from: _build/prod/lib/uuid\n\u001b[0m\u001b[0m\u001b[36m | applicati"},{"event":"cmd_output","timestamp":1607098095,"output":"ons:\n | :kernel\n | :stdlib\n | :elixir\n\u001b[0m\u001b[0m\u001b[36m | includes: none\n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098095,"output":"0m\u001b[36m |_____\n\n\u001b[0m\u001b[0m\u001b[36m > \u001b[37minets-6.5.1\u001b[0m\u001b[0m\u001b[0m\u001b[0m\u001b[36m\n |\n | from: /usr/loca"},{"event":"cmd_output","timestamp":1607098095,"output":"l/lib/erlang/lib/inets-6.5.1\n\u001b[0m\u001b[0m\u001b[36m | applications:\n | :kernel\n | :stdlib\n\u001b"},{"event":"cmd_output","timestamp":1607098095,"output":"[0m\u001b[0m\u001b[36m | includes: none\n\u001b[0m\u001b[0m\u001b[36m |_____\n\n\u001b[0m\u001b[0m\u001b[36m > \u001b[37mruntime_tools-1.12.5"},{"event":"cmd_output","timestamp":1607098095,"output":"\u001b[0m\u001b[0m\u001b[0m\u001b[0m\u001b[36m\n |\n | from: /usr/local/lib/erlang/lib/runtime_tools-1.12.5\n\u001b[0m\u001b[0m\u001b[36m"},{"event":"cmd_output","timestamp":1607098095,"output":" | applications:\n | :kernel\n | :stdlib\n\u001b[0m\u001b[0m\u001b[36m | includes: none\n\u001b[0m\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098095,"output":"36m |_____\n\n\u001b[0m\u001b[0m\u001b[36m > \u001b[37mcowlib-2.6.0\u001b[0m\u001b[0m\u001b[0m\u001b[0m\u001b[36m\n |\n | from: _build/prod/"},{"event":"cmd_output","timestamp":1607098095,"output":"lib/cowlib\n\u001b[0m\u001b[0m\u001b[36m | applications:\n | :kernel\n | :stdlib\n | :crypto\n\u001b"},{"event":"cmd_output","timestamp":1607098095,"output":"[0m\u001b[0m\u001b[36m | includes: none\n\u001b[0m\u001b[0m\u001b[36m |_____\n\n\u001b[0m\u001b[0m\u001b[36m > \u001b[37mstdlib-3.4.5\u001b[0m\u001b[0m"},{"event":"cmd_output","timestamp":1607098095,"output":"\u001b[0m\u001b[0m\u001b[36m\n |\n | from: /usr/local/lib/erlang/lib/stdlib-3.4.5\n\u001b[0m\u001b[0m\u001b[36m | application"},{"event":"cmd_output","timestamp":1607098095,"output":"s:\n | :kernel\n\u001b[0m\u001b[0m\u001b[36m | includes: none\n\u001b[0m\u001b[0m\u001b[36m |_____\n\n\u001b[0m\u001b[0m\u001b[36m > \u001b["},{"event":"cmd_output","timestamp":1607098095,"output":"37mdependencies-0.1.0\u001b[0m\u001b[0m\u001b[0m\u001b[0m\u001b[36m\n |\n | from: _build/prod/lib/dependencies\n\u001b[0m\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098095,"output":"36m | applications:\n | :kernel\n | :stdlib\n | :elixir\n | :logger\n | "},{"event":"cmd_output","timestamp":1607098095,"output":" :log_tee\n | :grpc\n | :uuid\n\u001b[0m\u001b[0m\u001b[36m | includes: none\n\u001b[0m\u001b[0m\u001b[36m |____"},{"event":"cmd_output","timestamp":1607098095,"output":"_\n\n\u001b[0m\u001b[0m\u001b[36m > \u001b[37mproto-0.2.0\u001b[0m\u001b[0m\u001b[0m\u001b[0m\u001b[36m\n |\n | from: _build/prod/lib/proto\n"},{"event":"cmd_output","timestamp":1607098095,"output":"\u001b[0m\u001b[0m\u001b[36m | applications:\n | :kernel\n | :stdlib\n | :elixir\n | :log"},{"event":"cmd_output","timestamp":1607098095,"output":"ger\n | :dependencies\n\u001b[0m\u001b[0m\u001b[36m | includes: none\n\u001b[0m\u001b[0m\u001b[36m |_____\n\n\u001b[0m\u001b[0m\u001b[36"},{"event":"cmd_output","timestamp":1607098095,"output":"m > \u001b[37mcrypto-4.2.2\u001b[0m\u001b[0m\u001b[0m\u001b[0m\u001b[36m\n |\n | from: /usr/local/lib/erlang/lib/crypto-4.2.2\r"},{"event":"cmd_output","timestamp":1607098095,"output":"\n\u001b[0m\u001b[0m\u001b[36m | applications:\n | :kernel\n | :stdlib\n\u001b[0m\u001b[0m\u001b[36m | includes: no"},{"event":"cmd_output","timestamp":1607098095,"output":"ne\n\u001b[0m\u001b[0m\u001b[36m |_____\n\n\u001b[0m\u001b[0m\u001b[36m > \u001b[37masn1-5.0.5\u001b[0m\u001b[0m\u001b[0m\u001b[0m\u001b[36m\n |\n | from: "},{"event":"cmd_output","timestamp":1607098095,"output":"/usr/local/lib/erlang/lib/asn1-5.0.5\n\u001b[0m\u001b[0m\u001b[36m | applications:\n | :kernel\n | :s"},{"event":"cmd_output","timestamp":1607098095,"output":"tdlib\n\u001b[0m\u001b[0m\u001b[36m | includes: none\n\u001b[0m\u001b[0m\u001b[36m |_____\n\n\u001b[0m\u001b[0m\u001b[36m > \u001b[37mpublic_key-1"},{"event":"cmd_output","timestamp":1607098095,"output":".5.2\u001b[0m\u001b[0m\u001b[0m\u001b[0m\u001b[36m\n |\n | from: /usr/local/lib/erlang/lib/public_key-1.5.2\n\u001b[0m\u001b[0m\u001b[36m"},{"event":"cmd_output","timestamp":1607098095,"output":" | applications:\n | :asn1\n | :crypto\n | :kernel\n | :stdlib\n\u001b[0m\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098095,"output":"36m | includes: none\n\u001b[0m\u001b[0m\u001b[36m |_____\n\n\u001b[0m\u001b[0m\u001b[36m > \u001b[37mssl-8.2.6\u001b[0m\u001b[0m\u001b[0m\u001b[0m\u001b[36"},{"event":"cmd_output","timestamp":1607098095,"output":"m\n |\n | from: /usr/local/lib/erlang/lib/ssl-8.2.6\n\u001b[0m\u001b[0m\u001b[36m | applications:\n | :c"},{"event":"cmd_output","timestamp":1607098095,"output":"rypto\n | :public_key\n | :kernel\n | :stdlib\n\u001b[0m\u001b[0m\u001b[36m | includes: none\n\u001b"},{"event":"cmd_output","timestamp":1607098095,"output":"[0m\u001b[0m\u001b[36m |_____\n\n\u001b[0m\u001b[0m\u001b[36m > \u001b[37mranch-1.6.2\u001b[0m\u001b[0m\u001b[0m\u001b[0m\u001b[36m\n |\n | from: _bui"},{"event":"cmd_output","timestamp":1607098095,"output":"ld/prod/lib/ranch\n\u001b[0m\u001b[0m\u001b[36m | applications:\n | :kernel\n | :stdlib\n | :ss"},{"event":"cmd_output","timestamp":1607098095,"output":"l\n\u001b[0m\u001b[0m\u001b[36m | includes: none\n\u001b[0m\u001b[0m\u001b[36m |_____\n\n\u001b[0m\u001b[0m\u001b[36m > \u001b[37mcowboy-2.5.0\u001b[0m"},{"event":"cmd_output","timestamp":1607098095,"output":"\u001b[0m\u001b[0m\u001b[0m\u001b[36m\n |\n | from: _build/prod/lib/cowboy\n\u001b[0m\u001b[0m\u001b[36m | applications:\n | "},{"event":"cmd_output","timestamp":1607098096,"output":" :kernel\n | :stdlib\n | :crypto\n | :cowlib\n | :ranch\n\u001b[0m\u001b[0m\u001b[36m | i"},{"event":"cmd_output","timestamp":1607098096,"output":"ncludes: none\n\u001b[0m\u001b[0m\u001b[36m |_____\n\n\u001b[0m\u001b[0m\u001b[36m > \u001b[37mgrpc-0.3.1\u001b[0m\u001b[0m\u001b[0m\u001b[0m\u001b[36m\n |\n"},{"event":"cmd_output","timestamp":1607098096,"output":" | from: _build/prod/lib/grpc\n\u001b[0m\u001b[0m\u001b[36m | applications:\n | :kernel\n | :stdlib"},{"event":"cmd_output","timestamp":1607098096,"output":"\n | :elixir\n | :logger\n | :protobuf\n | :cowboy\n | :gun\n\u001b[0m\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098096,"output":"[36m | includes: none\n\u001b[0m\u001b[0m\u001b[36m |_____\n\n\u001b[0m\u001b[0m\u001b[36m > \u001b[37mcompiler-7.1.5\u001b[0m\u001b[0m\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098096,"output":"0m\u001b[36m\n |\n | from: /usr/local/lib/erlang/lib/compiler-7.1.5\n\u001b[0m\u001b[0m\u001b[36m | applications:\n"},{"event":"cmd_output","timestamp":1607098096,"output":" | :kernel\n | :stdlib\n\u001b[0m\u001b[0m\u001b[36m | includes: none\n\u001b[0m\u001b[0m\u001b[36m |_____\n\n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098096,"output":"[0m\u001b[36m > \u001b[37mjason-1.1.2\u001b[0m\u001b[0m\u001b[0m\u001b[0m\u001b[36m\n |\n | from: _build/prod/lib/jason\n\u001b[0m\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098096,"output":"36m | applications:\n | :kernel\n | :stdlib\n | :elixir\n\u001b[0m\u001b[0m\u001b[36m | inclu"},{"event":"cmd_output","timestamp":1607098096,"output":"des: none\n\u001b[0m\u001b[0m\u001b[36m |_____\n\n\u001b[0m\u001b[0m\u001b[36m > \u001b[37msasl-3.1.2\u001b[0m\u001b[0m\u001b[0m\u001b[0m\u001b[36m\n |\n | "},{"event":"cmd_output","timestamp":1607098096,"output":" from: /usr/local/lib/erlang/lib/sasl-3.1.2\n\u001b[0m\u001b[0m\u001b[36m | applications:\n | :kernel\n | "},{"event":"cmd_output","timestamp":1607098096,"output":" :stdlib\n\u001b[0m\u001b[0m\u001b[36m | includes: none\n\u001b[0m\u001b[0m\u001b[36m |_____\n\n\u001b[0m\u001b[0m\u001b[36m > \u001b[37miex-1"},{"event":"cmd_output","timestamp":1607098096,"output":".6.5\u001b[0m\u001b[0m\u001b[0m\u001b[0m\u001b[36m\n |\n | from: /usr/local/lib/elixir/bin/../lib/iex\n\u001b[0m\u001b[0m\u001b[36m | a"},{"event":"cmd_output","timestamp":1607098096,"output":"pplications:\n | :kernel\n | :stdlib\n | :elixir\n\u001b[0m\u001b[0m\u001b[36m | includes: none"},{"event":"cmd_output","timestamp":1607098096,"output":"\n\u001b[0m\u001b[0m\u001b[36m |_____\n\n\u001b[0m\u001b[0m\u001b[36m > \u001b[37mmix-1.6.5\u001b[0m\u001b[0m\u001b[0m\u001b[0m\u001b[36m\n |\n | from: /us"},{"event":"cmd_output","timestamp":1607098096,"output":"r/local/lib/elixir/bin/../lib/mix\n\u001b[0m\u001b[0m\u001b[36m | applications:\n | :kernel\n | :stdl"},{"event":"cmd_output","timestamp":1607098096,"output":"ib\n | :elixir\n\u001b[0m\u001b[0m\u001b[36m | includes: none\n\u001b[0m\u001b[0m\u001b[36m |_____\n\n\u001b[0m\u001b[0m\u001b[36m > \u001b["},{"event":"cmd_output","timestamp":1607098096,"output":"37mlog_tee-0.1.0\u001b[0m\u001b[0m\u001b[0m\u001b[0m\u001b[36m\n |\n | from: _build/prod/lib/log_tee\n\u001b[0m\u001b[0m\u001b[36m | ap"},{"event":"cmd_output","timestamp":1607098096,"output":"plications:\n | :kernel\n | :stdlib\n | :elixir\n | :logger\n\u001b[0m\u001b[0m\u001b[36m "},{"event":"cmd_output","timestamp":1607098096,"output":"| includes: none\n\u001b[0m\u001b[0m\u001b[36m |_____\n\n\u001b[0m\u001b[0m\u001b[36m > \u001b[37msys2app-0.1.0\u001b[0m\u001b[0m\u001b[0m\u001b[0m\u001b[36m"},{"event":"cmd_output","timestamp":1607098096,"output":"\n |\n | from: _build/prod/lib/sys2app\n\u001b[0m\u001b[0m\u001b[36m | applications:\n | :kernel\n | "},{"event":"cmd_output","timestamp":1607098096,"output":" :stdlib\n | :elixir\n | :logger\n\u001b[0m\u001b[0m\u001b[36m | includes: none\n\u001b[0m\u001b[0m\u001b[36m |__"},{"event":"cmd_output","timestamp":1607098096,"output":"___\n\n\u001b[0m\u001b[0m\u001b[36m > \u001b[37mlogger-1.6.5\u001b[0m\u001b[0m\u001b[0m\u001b[0m\u001b[36m\n |\n | from: /usr/local/lib/elixi"},{"event":"cmd_output","timestamp":1607098096,"output":"r/bin/../lib/logger\n\u001b[0m\u001b[0m\u001b[36m | applications:\n | :kernel\n | :stdlib\n | :"},{"event":"cmd_output","timestamp":1607098096,"output":"elixir\n\u001b[0m\u001b[0m\u001b[36m | includes: none\n\u001b[0m\u001b[0m\u001b[36m |_____\n\n\u001b[0m\u001b[0m\u001b[36m > \u001b[37mtask_api_re"},{"event":"cmd_output","timestamp":1607098096,"output":"ferent-0.2.0\u001b[0m\u001b[0m\u001b[0m\u001b[0m\u001b[36m\n |\n | from: _build/prod/lib/task_api_referent\n\u001b[0m\u001b[0m\u001b[36m "},{"event":"cmd_output","timestamp":1607098096,"output":" | applications:\n | :kernel\n | :stdlib\n | :elixir\n | :logger\n | "},{"event":"cmd_output","timestamp":1607098096,"output":":sys2app\n | :log_tee\n | :jason\n | :uuid\n | :distillery\n | :util\n"},{"event":"cmd_output","timestamp":1607098096,"output":" | :grpc\n | :proto\n\u001b[0m\u001b[0m\u001b[36m | includes: none\n\u001b[0m\u001b[0m\u001b[36m |_____\n\n\u001b[0m\u001b[0m"},{"event":"cmd_output","timestamp":1607098096,"output":"\u001b[36m > \u001b[37melixir-1.6.5\u001b[0m\u001b[0m\u001b[0m\u001b[0m\u001b[36m\n |\n | from: /usr/local/lib/elixir/bin/../lib/el"},{"event":"cmd_output","timestamp":1607098096,"output":"ixir\n\u001b[0m\u001b[0m\u001b[36m | applications:\n | :kernel\n | :stdlib\n | :compiler\n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098096,"output":"[0m\u001b[36m | includes: none\n\u001b[0m\u001b[0m\u001b[36m |_____\n\n\u001b[0m\u001b[0m\u001b[36m==> Running validation checks..\n"},{"event":"cmd_output","timestamp":1607098096,"output":"\u001b[0m\u001b[0m\u001b[36m > Mix.Releases.Checks.Erts\u001b[0m\u001b[0m\u001b[32m * PASS\n\u001b[0m\u001b[0m\u001b[36m > Mix.Releases.Che"},{"event":"cmd_output","timestamp":1607098096,"output":"cks.Cookie\u001b[0m\u001b[0m\u001b[32m * PASS\n\u001b[0m\u001b[0m\u001b[36m > Mix.Releases.Checks.LoadedOrphanedApps\u001b[0m\u001b[0m\u001b[3"},{"event":"cmd_output","timestamp":1607098096,"output":"2m * PASS\n\u001b[0m\u001b[0m\u001b[36m==> Generated overlay vars:\n\u001b[0m\u001b[0m\u001b[36m release_name=:task_api_referen"},{"event":"cmd_output","timestamp":1607098096,"output":"t\n release_version=\"0.2.0\"\n is_upgrade=false\n upgrade_from=:latest\n dev_mode=false\n"},{"event":"cmd_output","timestamp":1607098096,"output":" include_erts=true\n include_src=false\n include_system_libs=true\n erl_opts=\"\"\n run"},{"event":"cmd_output","timestamp":1607098096,"output":"_erl_env=\"\"\n erts_vsn=\"9.3.1\"\n output_dir=\"_build/prod/rel/task_api_referent\"\n\u001b[0m\u001b[0m\u001b[36m"},{"event":"cmd_output","timestamp":1607098096,"output":"==> Copying applications to _build/prod/rel/task_api_referent\n\u001b[0m\u001b[0m\u001b[36m==> Generating start_erl"},{"event":"cmd_output","timestamp":1607098096,"output":".data\n\u001b[0m\u001b[0m\u001b[36m==> Generating vm.args\n\u001b[0m\u001b[0m\u001b[36m==> Generating sys.config from config/confi"},{"event":"cmd_output","timestamp":1607098096,"output":"g.exs\n\u001b[0m\u001b[0m\u001b[1m\u001b[36m==> Including ERTS 9.3.1 from /usr/local/lib/erlang/erts-9.3.1\n\u001b[0m\u001b[0m\u001b[36"},{"event":"cmd_output","timestamp":1607098097,"output":"m==> Generating boot scripts\n\u001b[0m\u001b[0m\u001b[36m==> Generating RELEASES\n\u001b[0m\u001b[0m\u001b[36m==> Applying overla"},{"event":"cmd_output","timestamp":1607098097,"output":"ys\n\u001b[0m\u001b[0m\u001b[36m==> \u001b[36mApplying \u001b[0mmkdir\u001b[36m overlay\n dst: releases/0.2.0/hooks\u001b[0m\n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098097,"output":"0m\u001b[36m==> \u001b[36mApplying \u001b[0mmkdir\u001b[36m overlay\n dst: releases/0.2.0/hooks/pre_configure.d\u001b[0m\n"},{"event":"cmd_output","timestamp":1607098097,"output":"\u001b[0m\u001b[0m\u001b[36m==> \u001b[36mApplying \u001b[0mmkdir\u001b[36m overlay\n dst: releases/0.2.0/hooks/post_configure."},{"event":"cmd_output","timestamp":1607098097,"output":"d\u001b[0m\n\u001b[0m\u001b[0m\u001b[36m==> \u001b[36mApplying \u001b[0mmkdir\u001b[36m overlay\n dst: releases/0.2.0/hooks/pre_star"},{"event":"cmd_output","timestamp":1607098097,"output":"t.d\u001b[0m\n\u001b[0m\u001b[0m\u001b[36m==> \u001b[36mApplying \u001b[0mmkdir\u001b[36m overlay\n dst: releases/0.2.0/hooks/post_s"},{"event":"cmd_output","timestamp":1607098097,"output":"tart.d\u001b[0m\n\u001b[0m\u001b[0m\u001b[36m==> \u001b[36mApplying \u001b[0mmkdir\u001b[36m overlay\n dst: releases/0.2.0/hooks/pre"},{"event":"cmd_output","timestamp":1607098097,"output":"_stop.d\u001b[0m\n\u001b[0m\u001b[0m\u001b[36m==> \u001b[36mApplying \u001b[0mmkdir\u001b[36m overlay\n dst: releases/0.2.0/hooks/po"},{"event":"cmd_output","timestamp":1607098097,"output":"st_stop.d\u001b[0m\n\u001b[0m\u001b[0m\u001b[36m==> \u001b[36mApplying \u001b[0mmkdir\u001b[36m overlay\n dst: releases/0.2.0/hooks/"},{"event":"cmd_output","timestamp":1607098097,"output":"pre_upgrade.d\u001b[0m\n\u001b[0m\u001b[0m\u001b[36m==> \u001b[36mApplying \u001b[0mmkdir\u001b[36m overlay\n dst: releases/0.2.0/ho"},{"event":"cmd_output","timestamp":1607098097,"output":"oks/post_upgrade.d\u001b[0m\n\u001b[0m\u001b[0m\u001b[36m==> \u001b[36mApplying \u001b[0mcopy\u001b[36m overlay\n src: _build/prod/l"},{"event":"cmd_output","timestamp":1607098097,"output":"ib/distillery/priv/libexec\n dst: releases/0.2.0/libexec\u001b[0m\n\u001b[0m\u001b[0m\u001b[36m==> \u001b[36mApplying \u001b[0m"},{"event":"cmd_output","timestamp":1607098097,"output":"mkdir\u001b[36m overlay\n dst: releases/0.2.0/commands\u001b[0m\n\u001b[0m\u001b[0m\u001b[36m==> \u001b[36mApplying \u001b[0mcopy\u001b[3"},{"event":"cmd_output","timestamp":1607098097,"output":"6m overlay\n src: rel/commands/healthcheck.sh\n dst: releases/0.2.0/commands/healthcheck.sh\u001b[0"},{"event":"cmd_output","timestamp":1607098097,"output":"m\n\u001b[0m\u001b[0m\u001b[1m\u001b[36m==> Packaging release..\n\u001b[0m\u001b[0m\u001b[36m==> Archiving task_api_referent-0.2.0\n\u001b[0"},{"event":"cmd_output","timestamp":1607098097,"output":"m\u001b[0m\u001b[36m==> Writing archive to /home/dev/repo/task_api_referent/_build/prod/rel/task_api_referent/"},{"event":"cmd_output","timestamp":1607098102,"output":"releases/0.2.0/task_api_referent.tar.gz\n\u001b[0m\u001b[0m\u001b[36m==> Updating archive..\n\u001b[0m\u001b[0m\u001b[36m==> Inclu"},{"event":"cmd_output","timestamp":1607098106,"output":"ding system libs from current Erlang installation\n\u001b[0m\u001b[0m\u001b[36m==> Saving archive..\n\u001b[0m\u001b[0m\u001b[36m="},{"event":"cmd_output","timestamp":1607098106,"output":"=> Archive saved!\n\u001b[0m\u001b[0m\u001b[32mRelease successfully built!\n\u001b[0m\u001b[0m\u001b[32mTo start the release you h"},{"event":"cmd_output","timestamp":1607098106,"output":"ave built, you can use one of the following tasks:\n\n\u001b[0m\u001b[0m\u001b[22m # start a shell, like 'iex -S"},{"event":"cmd_output","timestamp":1607098106,"output":" mix'\n\u001b[0m\u001b[0m\u001b[36m > _build/prod/rel/task_api_referent/bin/task_api_referent \u001b[37mconsole\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098106,"output":"0m\u001b[0m\u001b[0m\n\n\u001b[22m # start in the foreground, like 'mix run --no-halt'\n\u001b[0m\u001b[0m\u001b[36m > _buil"},{"event":"cmd_output","timestamp":1607098106,"output":"d/prod/rel/task_api_referent/bin/task_api_referent \u001b[37mforeground\u001b[0m\u001b[0m\u001b[0m\u001b[0m\n\n\u001b[22m # sta"},{"event":"cmd_output","timestamp":1607098106,"output":"rt in the background, must be stopped with the 'stop' command\n\u001b[0m\u001b[0m\u001b[36m > _build/prod/rel/ta"},{"event":"cmd_output","timestamp":1607098106,"output":"sk_api_referent/bin/task_api_referent \u001b[37mstart\u001b[0m\u001b[0m\u001b[0m\u001b[0m\n\n\u001b[32mIf you started a release el"},{"event":"cmd_output","timestamp":1607098106,"output":"sewhere, and wish to connect to it:\n\n\u001b[0m\u001b[0m\u001b[22m # connects a local shell to the running node"},{"event":"cmd_output","timestamp":1607098106,"output":"\n\u001b[0m\u001b[0m\u001b[36m > _build/prod/rel/task_api_referent/bin/task_api_referent \u001b[37mremote_console\u001b[0m"},{"event":"cmd_output","timestamp":1607098106,"output":"\u001b[0m\u001b[0m\u001b[0m\n\n\u001b[22m # connects directly to the running node's console\n\u001b[0m\u001b[0m\u001b[36m > _buil"},{"event":"cmd_output","timestamp":1607098106,"output":"d/prod/rel/task_api_referent/bin/task_api_referent \u001b[37mattach\u001b[0m\u001b[0m\u001b[0m\u001b[0m\n\n\u001b[32mFor a complet"},{"event":"cmd_output","timestamp":1607098106,"output":"e listing of commands and their use:\n\n\u001b[0m\u001b[0m\u001b[36m > _build/prod/rel/task_api_referent/bin/tas"},{"event":"cmd_output","timestamp":1607098106,"output":"k_api_referent \u001b[37mhelp\u001b[0m\u001b[0m\u001b[0m\u001b[0m\nmake[2]: Leaving directory '/home/semaphore/alles/plumber/"},{"event":"cmd_output","timestamp":1607098106,"output":"task_api_referent'\nmkdir -p rel/artifacts\ncp \"_build/prod/rel/task_api_referent/releases/0.2.0/tas"},{"event":"cmd_output","timestamp":1607098106,"output":"k_api_referent.tar.gz\" rel/artifacts/\"task_api_referent-0.2.0.tar.gz\"\nmake[1]: Leaving directory '/"},{"event":"cmd_output","timestamp":1607098106,"output":"home/semaphore/alles/plumber/task_api_referent'\ndocker build \\\n--cache-from renderedtext/task_api_"},{"event":"cmd_output","timestamp":1607098106,"output":"referent:latest \\\n--build-arg APP_NAME=task_api_referent \\\n--build-arg APP_VSN=0.2.0 \\\n-t rende"},{"event":"cmd_output","timestamp":1607098106,"output":"redtext/task_api_referent:e3cc76b-ce6dce3b-f31b-4183-8411-150740f8d548 -t renderedtext/task_api_refe"},{"event":"cmd_output","timestamp":1607098106,"output":"rent:latest \\\n-f Dockerfile \\\n./\nSending build context to Docker daemon 557.1kB\rSending build co"},{"event":"cmd_output","timestamp":1607098107,"output":"ntext to Docker daemon 4.456MB\rSending build context to Docker daemon 22.28MB\rSending build contex"},{"event":"cmd_output","timestamp":1607098107,"output":"t to Docker daemon 32.87MB\rSending build context to Docker daemon 37.88MB\rSending build context to"},{"event":"cmd_output","timestamp":1607098107,"output":" Docker daemon 42.34MB\rSending build context to Docker daemon 49.02MB\rSending build context to Doc"},{"event":"cmd_output","timestamp":1607098107,"output":"ker daemon 61.83MB\rSending build context to Docker daemon 75.76MB\rSending build context to Docker "},{"event":"cmd_output","timestamp":1607098107,"output":"daemon 79.1MB\rSending build context to Docker daemon 86.9MB\rSending build context to Docker daem"},{"event":"cmd_output","timestamp":1607098109,"output":"on 105.3MB\r\r\nStep 1/11 : FROM renderedtext/elixir:1.6.5-v2\n1.6.5-v2: Pulling from renderedtext/el"},{"event":"cmd_output","timestamp":1607098109,"output":"ixir\n\n\u001b[1A\u001b[2K\rcc1a78bfd46b: Already exists \r\u001b[1B\n\u001b[1A\u001b[2K\r6861473222a6: Already exists \r\u001b[1B\n\u001b["},{"event":"cmd_output","timestamp":1607098109,"output":"1A\u001b[2K\r7e0b9c3b5ae0: Already exists \r\u001b[1B\n\u001b[1A\u001b[2K\r3ec98735f56f: Already exists \r\u001b[1B\n\u001b[1A\u001b[2K\r9b3"},{"event":"cmd_output","timestamp":1607098109,"output":"11b87a021: Already exists \r\u001b[1B\n\u001b[1A\u001b[2K\r987a30f8af92: Already exists \r\u001b[1B\n\u001b[1A\u001b[2K\rfdc81c59203f:"},{"event":"cmd_output","timestamp":1607098109,"output":" Already exists \r\u001b[1B\n\u001b[1A\u001b[2K\r84732a75fcaa: Already exists \r\u001b[1B\n\u001b[1A\u001b[2K\rdbcab08679b9: Already e"},{"event":"cmd_output","timestamp":1607098109,"output":"xists \r\u001b[1B\n\u001b[1A\u001b[2K\r954ea967a4b6: Already exists \r\u001b[1B\n\u001b[1A\u001b[2K\r85964177ed50: Already exists \r\u001b[1"},{"event":"cmd_output","timestamp":1607098109,"output":"B\n\u001b[1A\u001b[2K\r95369df2fe13: Already exists \r\u001b[1BDigest: sha256:0df07fcbc3c51730875e3358ea576d01c45175b"},{"event":"cmd_output","timestamp":1607098109,"output":"ecbd89cfb01e624bdec82d8c3\nStatus: Downloaded newer image for renderedtext/elixir:1.6.5-v2\n ---> 1b"},{"event":"cmd_output","timestamp":1607098110,"output":"3a396f450a\nStep 2/11 : USER root\n ---> Running in f05ecd7a88ca\nRemoving intermediate container f0"},{"event":"cmd_output","timestamp":1607098110,"output":"5ecd7a88ca\n ---> 1a954dcdaed4\nStep 3/11 : RUN GRPC_HEALTH_PROBE_VERSION=v0.2.0 && wget -qO/bin"},{"event":"cmd_output","timestamp":1607098110,"output":"/grpc_health_probe https://github.com/grpc-ecosystem/grpc-health-probe/releases/download/${GRPC_HEAL"},{"event":"cmd_output","timestamp":1607098110,"output":"TH_PROBE_VERSION}/grpc_health_probe-linux-amd64 && chmod +x /bin/grpc_health_probe\n ---> Runnin"},{"event":"cmd_output","timestamp":1607098112,"output":"g in 321043934be0\nRemoving intermediate container 321043934be0\n ---> fcae911d61ea\nStep 4/11 : ARG"},{"event":"cmd_output","timestamp":1607098112,"output":" APP_NAME\n ---> Running in 690fc0ee66c9\nRemoving intermediate container 690fc0ee66c9\n ---> afeb38"},{"event":"cmd_output","timestamp":1607098112,"output":"af808f\nStep 5/11 : ARG APP_VSN\n ---> Running in 4a0394efe916\nRemoving intermediate container 4a03"},{"event":"cmd_output","timestamp":1607098113,"output":"94efe916\n ---> 370224a1280b\nStep 6/11 : ENV APP_NAME=${APP_NAME}\n ---> Running in a974a5e10843\nR"},{"event":"cmd_output","timestamp":1607098113,"output":"emoving intermediate container a974a5e10843\n ---> ac1e81771c44\nStep 7/11 : ENV TERM=xterm\n ---> R"},{"event":"cmd_output","timestamp":1607098113,"output":"unning in 13a7a0815ca6\nRemoving intermediate container 13a7a0815ca6\n ---> 54d3f6b51910\nStep 8/11 "},{"event":"cmd_output","timestamp":1607098113,"output":": ENV MIX_ENV=prod\n ---> Running in 8c8305da0606\nRemoving intermediate container 8c8305da0606\n --"},{"event":"cmd_output","timestamp":1607098113,"output":"-> 97cadeecbfea\nStep 9/11 : COPY rel/artifacts/${APP_NAME}-${APP_VSN}.tar.gz ${APP_NAME}.tar.gz\n -"},{"event":"cmd_output","timestamp":1607098113,"output":"--> f571364c9ad0\nStep 10/11 : RUN tar -xzf ${APP_NAME}.tar.gz && rm ${APP_NAME}.tar.gz\n ---> Run"},{"event":"cmd_output","timestamp":1607098115,"output":"ning in cb55134abea7\nRemoving intermediate container cb55134abea7\n ---> 797723f488ad\nStep 11/11 :"},{"event":"cmd_output","timestamp":1607098116,"output":" CMD trap 'exit' INT; bin/${APP_NAME} foreground\n ---> Running in defa67e18897\nRemoving intermedia"},{"event":"cmd_output","timestamp":1607098116,"output":"te container defa67e18897\n ---> 279947463d62\nSuccessfully built 279947463d62\nSuccessfully tagged "},{"event":"cmd_output","timestamp":1607098116,"output":"renderedtext/task_api_referent:e3cc76b-ce6dce3b-f31b-4183-8411-150740f8d548\nSuccessfully tagged ren"},{"event":"cmd_output","timestamp":1607098116,"output":"deredtext/task_api_referent:latest\ndocker run --rm --name task-api-referent -d -p 50051:50051 rende"},{"event":"cmd_output","timestamp":1607098116,"output":"redtext/task_api_referent:e3cc76b-ce6dce3b-f31b-4183-8411-150740f8d548\n5674c41b78468e8f11c6d45b715c"},{"event":"cmd_output","timestamp":1607098116,"output":"d52d86724ddf962a05daef3a712e48fe2d7d\n"},{"event":"cmd_finished","timestamp":1607098116,"directive":"make image.run-detached USER=root","exit_code":0,"started_at":1607098021,"finished_at":1607098116},{"event":"cmd_started","timestamp":1607098116,"directive":"cd ../ppl"},{"event":"cmd_finished","timestamp":1607098116,"directive":"cd ../ppl","exit_code":0,"started_at":1607098116,"finished_at":1607098116},{"event":"cmd_started","timestamp":1607098116,"directive":"make rabbitmq.run"},{"event":"cmd_output","timestamp":1607098116,"output":"docker run -d --rm --name rabbitmq -p 5673:5672 --memory 512m rabbitmq:3.7\nUnable to find image 'ra"},{"event":"cmd_output","timestamp":1607098118,"output":"bbitmq:3.7' locally\n3.7: Pulling from library/rabbitmq\n\n\u001b[1A\u001b[2K\r7595c8c21622: Pulling fs layer \r"},{"event":"cmd_output","timestamp":1607098118,"output":"\u001b[1B\n\u001b[1A\u001b[2K\rd13af8ca898f: Pulling fs layer \r\u001b[1B\n\u001b[1A\u001b[2K\r70799171ddba: Pulling fs layer \r\u001b[1B\n"},{"event":"cmd_output","timestamp":1607098118,"output":"\u001b[1A\u001b[2K\rb6c12202c5ef: Pulling fs layer \r\u001b[1B\n\u001b[1A\u001b[2K\r7c7d7bd9523c: Pulling fs layer \r\u001b[1B\n\u001b[1A\u001b["},{"event":"cmd_output","timestamp":1607098118,"output":"2K\r522a04a12a81: Pulling fs layer \r\u001b[1B\n\u001b[1A\u001b[2K\r465d05ea44a2: Pulling fs layer \r\u001b[1B\n\u001b[1A\u001b[2K\rb06"},{"event":"cmd_output","timestamp":1607098118,"output":"0ed55c3fd: Pulling fs layer \r\u001b[1B\n\u001b[1A\u001b[2K\r874cbe0acbba: Pulling fs layer \r\u001b[1B\n\u001b[1A\u001b[2K\rdfbd1f813"},{"event":"cmd_output","timestamp":1607098118,"output":"a51: Pulling fs layer \r\u001b[1B\u001b[6A\u001b[2K\r7c7d7bd9523c: Waiting \r\u001b[6B\u001b[5A\u001b[2K\r522a04a12a81: Waiting \r\u001b[5B\u001b"},{"event":"cmd_output","timestamp":1607098118,"output":"[4A\u001b[2K\r465d05ea44a2: Waiting \r\u001b[4B\u001b[3A\u001b[2K\rb060ed55c3fd: Waiting \r\u001b[3B\u001b[2A\u001b[2K\r874cbe0acbba: Waitin"},{"event":"cmd_output","timestamp":1607098119,"output":"g \r\u001b[2B\u001b[1A\u001b[2K\rdfbd1f813a51: Waiting \r\u001b[1B\u001b[7A\u001b[2K\rb6c12202c5ef: Waiting \r\u001b[7B\u001b[9A\u001b[2K\rd13af8ca898f"},{"event":"cmd_output","timestamp":1607098119,"output":": Downloading 423B/35.36kB\r\u001b[9B\u001b[9A\u001b[2K\rd13af8ca898f: Downloading 35.36kB/35.36kB\r\u001b[9B\u001b[9A\u001b[2K\r"},{"event":"cmd_output","timestamp":1607098119,"output":"d13af8ca898f: Verifying Checksum \r\u001b[9B\u001b[9A\u001b[2K\rd13af8ca898f: Download complete \r\u001b[9B\u001b[8A\u001b[2K\r7079917"},{"event":"cmd_output","timestamp":1607098119,"output":"1ddba: Downloading 425B/848B\r\u001b[8B\u001b[8A\u001b[2K\r70799171ddba: Downloading 848B/848B\r\u001b[8B\u001b[8A\u001b[2K\r7"},{"event":"cmd_output","timestamp":1607098119,"output":"0799171ddba: Verifying Checksum \r\u001b[8B\u001b[8A\u001b[2K\r70799171ddba: Download complete \r\u001b[8B\u001b[10A\u001b[2K\r7595c8c"},{"event":"cmd_output","timestamp":1607098119,"output":"21622: Downloading 276.9kB/26.7MB\r\u001b[10B\u001b[10A\u001b[2K\r7595c8c21622: Downloading 6.101MB/26.7MB\r\u001b[10B\u001b[1"},{"event":"cmd_output","timestamp":1607098119,"output":"0A\u001b[2K\r7595c8c21622: Downloading 10.57MB/26.7MB\r\u001b[10B\u001b[10A\u001b[2K\r7595c8c21622: Downloading 19.18MB/2"},{"event":"cmd_output","timestamp":1607098119,"output":"6.7MB\r\u001b[10B\u001b[10A\u001b[2K\r7595c8c21622: Verifying Checksum \r\u001b[10B\u001b[10A\u001b[2K\r7595c8c21622: Download complet"},{"event":"cmd_output","timestamp":1607098119,"output":"e \r\u001b[10B\u001b[7A\u001b[2K\rb6c12202c5ef: Downloading 161B/161B\r\u001b[7B\u001b[7A\u001b[2K\rb6c12202c5ef: Verifying Checks"},{"event":"cmd_output","timestamp":1607098119,"output":"um \r\u001b[7B\u001b[7A\u001b[2K\rb6c12202c5ef: Download complete \r\u001b[7B\u001b[6A\u001b[2K\r7c7d7bd9523c: Downloading 8.593kB/77"},{"event":"cmd_output","timestamp":1607098119,"output":"9.7kB\r\u001b[6B\u001b[6A\u001b[2K\r7c7d7bd9523c: Verifying Checksum \r\u001b[6B\u001b[6A\u001b[2K\r7c7d7bd9523c: Download complete \r\u001b"},{"event":"cmd_output","timestamp":1607098119,"output":"[6B\u001b[10A\u001b[2K\r7595c8c21622: Extracting 294.9kB/26.7MB\r\u001b[10B\u001b[10A\u001b[2K\r7595c8c21622: Extracting 2.654"},{"event":"cmd_output","timestamp":1607098119,"output":"MB/26.7MB\r\u001b[10B\u001b[10A\u001b[2K\r7595c8c21622: Extracting 6.783MB/26.7MB\r\u001b[10B\u001b[4A\u001b[2K\r465d05ea44a2: Downlo"},{"event":"cmd_output","timestamp":1607098119,"output":"ading 424B/2.068kB\r\u001b[4B\u001b[4A\u001b[2K\r465d05ea44a2: Downloading 2.068kB/2.068kB\r\u001b[4B\u001b[4A\u001b[2K\r465d05ea"},{"event":"cmd_output","timestamp":1607098119,"output":"44a2: Verifying Checksum \r\u001b[4B\u001b[4A\u001b[2K\r465d05ea44a2: Download complete \r\u001b[4B\u001b[10A\u001b[2K\r7595c8c21622: "},{"event":"cmd_output","timestamp":1607098120,"output":"Extracting 9.732MB/26.7MB\r\u001b[10B\u001b[5A\u001b[2K\r522a04a12a81: Downloading 314.6kB/31.37MB\r\u001b[5B\u001b[3A\u001b[2K\rb06"},{"event":"cmd_output","timestamp":1607098120,"output":"0ed55c3fd: Downloading 109.9kB/10.93MB\r\u001b[3B\u001b[5A\u001b[2K\r522a04a12a81: Downloading 7.719MB/31.37MB\r\u001b[5B"},{"event":"cmd_output","timestamp":1607098120,"output":"\u001b[10A\u001b[2K\r7595c8c21622: Extracting 11.21MB/26.7MB\r\u001b[10B\u001b[3A\u001b[2K\rb060ed55c3fd: Downloading 4.856MB/"},{"event":"cmd_output","timestamp":1607098120,"output":"10.93MB\r\u001b[3B\u001b[5A\u001b[2K\r522a04a12a81: Downloading 12.86MB/31.37MB\r\u001b[5B\u001b[10A\u001b[2K\r7595c8c21622: Extracti"},{"event":"cmd_output","timestamp":1607098120,"output":"ng 12.68MB/26.7MB\r\u001b[10B\u001b[3A\u001b[2K\rb060ed55c3fd: Downloading 10.63MB/10.93MB\r\u001b[3B\u001b[3A\u001b[2K\rb060ed55c3f"},{"event":"cmd_output","timestamp":1607098120,"output":"d: Verifying Checksum \r\u001b[3B\u001b[3A\u001b[2K\rb060ed55c3fd: Download complete \r\u001b[3B\u001b[5A\u001b[2K\r522a04a12a81: Down"},{"event":"cmd_output","timestamp":1607098120,"output":"loading 21.81MB/31.37MB\r\u001b[5B\u001b[10A\u001b[2K\r7595c8c21622: Extracting 15.34MB/26.7MB\r\u001b[10B\u001b[5A\u001b[2K\r522a04"},{"event":"cmd_output","timestamp":1607098120,"output":"a12a81: Downloading 30.88MB/31.37MB\r\u001b[5B\u001b[5A\u001b[2K\r522a04a12a81: Verifying Checksum \r\u001b[5B\u001b[5A\u001b[2K\r522"},{"event":"cmd_output","timestamp":1607098120,"output":"a04a12a81: Download complete \r\u001b[5B\u001b[10A\u001b[2K\r7595c8c21622: Extracting 17.4MB/26.7MB\r\u001b[10B\u001b[2A\u001b[2K\r8"},{"event":"cmd_output","timestamp":1607098120,"output":"74cbe0acbba: Downloading 107B/107B\r\u001b[2B\u001b[2A\u001b[2K\r874cbe0acbba: Verifying Checksum \r\u001b[2B\u001b[2A\u001b[2K\r8"},{"event":"cmd_output","timestamp":1607098120,"output":"74cbe0acbba: Download complete \r\u001b[2B\u001b[10A\u001b[2K\r7595c8c21622: Extracting 22.12MB/26.7MB\r\u001b[10B\u001b[1A\u001b[2K"},{"event":"cmd_output","timestamp":1607098120,"output":"\rdfbd1f813a51: Downloading 425B/4.639kB\r\u001b[1B\u001b[1A\u001b[2K\rdfbd1f813a51: Downloading 4.639kB/4.639kB\r"},{"event":"cmd_output","timestamp":1607098120,"output":"\u001b[1B\u001b[1A\u001b[2K\rdfbd1f813a51: Verifying Checksum \r\u001b[1B\u001b[1A\u001b[2K\rdfbd1f813a51: Download complete \r\u001b[1B\u001b[1"},{"event":"cmd_output","timestamp":1607098120,"output":"0A\u001b[2K\r7595c8c21622: Extracting 24.48MB/26.7MB\r\u001b[10B\u001b[10A\u001b[2K\r7595c8c21622: Extracting 25.95MB/26."},{"event":"cmd_output","timestamp":1607098121,"output":"7MB\r\u001b[10B\u001b[10A\u001b[2K\r7595c8c21622: Extracting 26.7MB/26.7MB\r\u001b[10B\u001b[10A\u001b[2K\r7595c8c21622: Pull comple"},{"event":"cmd_output","timestamp":1607098121,"output":"te \r\u001b[10B\u001b[9A\u001b[2K\rd13af8ca898f: Extracting 32.77kB/35.36kB\r\u001b[9B\u001b[9A\u001b[2K\rd13af8ca898f: Extracting 3"},{"event":"cmd_output","timestamp":1607098121,"output":"5.36kB/35.36kB\r\u001b[9B\u001b[9A\u001b[2K\rd13af8ca898f: Pull complete \r\u001b[9B\u001b[8A\u001b[2K\r70799171ddba: Extracting 8"},{"event":"cmd_output","timestamp":1607098121,"output":"48B/848B\r\u001b[8B\u001b[8A\u001b[2K\r70799171ddba: Extracting 848B/848B\r\u001b[8B\u001b[8A\u001b[2K\r70799171ddba: Pull complet"},{"event":"cmd_output","timestamp":1607098121,"output":"e \r\u001b[8B\u001b[7A\u001b[2K\rb6c12202c5ef: Extracting 161B/161B\r\u001b[7B\u001b[7A\u001b[2K\rb6c12202c5ef: Extracting 161"},{"event":"cmd_output","timestamp":1607098121,"output":"B/161B\r\u001b[7B\u001b[7A\u001b[2K\rb6c12202c5ef: Pull complete \r\u001b[7B\u001b[6A\u001b[2K\r7c7d7bd9523c: Extracting 32.77kB/779."},{"event":"cmd_output","timestamp":1607098121,"output":"7kB\r\u001b[6B\u001b[6A\u001b[2K\r7c7d7bd9523c: Extracting 779.7kB/779.7kB\r\u001b[6B\u001b[6A\u001b[2K\r7c7d7bd9523c: Extracting 77"},{"event":"cmd_output","timestamp":1607098121,"output":"9.7kB/779.7kB\r\u001b[6B\u001b[6A\u001b[2K\r7c7d7bd9523c: Pull complete \r\u001b[6B\u001b[5A\u001b[2K\r522a04a12a81: Extracting 327.7"},{"event":"cmd_output","timestamp":1607098121,"output":"kB/31.37MB\r\u001b[5B\u001b[5A\u001b[2K\r522a04a12a81: Extracting 983kB/31.37MB\r\u001b[5B\u001b[5A\u001b[2K\r522a04a12a81: Extract"},{"event":"cmd_output","timestamp":1607098121,"output":"ing 6.881MB/31.37MB\r\u001b[5B\u001b[5A\u001b[2K\r522a04a12a81: Extracting 10.49MB/31.37MB\r\u001b[5B\u001b[5A\u001b[2K\r522a04a12a8"},{"event":"cmd_output","timestamp":1607098122,"output":"1: Extracting 14.09MB/31.37MB\r\u001b[5B\u001b[5A\u001b[2K\r522a04a12a81: Extracting 15.07MB/31.37MB\r\u001b[5B\u001b[5A\u001b[2K\r5"},{"event":"cmd_output","timestamp":1607098122,"output":"22a04a12a81: Extracting 16.71MB/31.37MB\r\u001b[5B\u001b[5A\u001b[2K\r522a04a12a81: Extracting 18.68MB/31.37MB\r\u001b[5B"},{"event":"cmd_output","timestamp":1607098122,"output":"\u001b[5A\u001b[2K\r522a04a12a81: Extracting 22.94MB/31.37MB\r\u001b[5B\u001b[5A\u001b[2K\r522a04a12a81: Extracting 29.49MB/31"},{"event":"cmd_output","timestamp":1607098122,"output":".37MB\r\u001b[5B\u001b[5A\u001b[2K\r522a04a12a81: Extracting 31.37MB/31.37MB\r\u001b[5B\u001b[5A\u001b[2K\r522a04a12a81: Pull complet"},{"event":"cmd_output","timestamp":1607098122,"output":"e \r\u001b[5B\u001b[4A\u001b[2K\r465d05ea44a2: Extracting 2.068kB/2.068kB\r\u001b[4B\u001b[4A\u001b[2K\r465d05ea44a2: Extracting 2.0"},{"event":"cmd_output","timestamp":1607098122,"output":"68kB/2.068kB\r\u001b[4B\u001b[4A\u001b[2K\r465d05ea44a2: Pull complete \r\u001b[4B\u001b[3A\u001b[2K\rb060ed55c3fd: Extracting 131.1k"},{"event":"cmd_output","timestamp":1607098122,"output":"B/10.93MB\r\u001b[3B\u001b[3A\u001b[2K\rb060ed55c3fd: Extracting 3.539MB/10.93MB\r\u001b[3B\u001b[3A\u001b[2K\rb060ed55c3fd: Extracti"},{"event":"cmd_output","timestamp":1607098122,"output":"ng 10.93MB/10.93MB\r\u001b[3B\u001b[3A\u001b[2K\rb060ed55c3fd: Pull complete \r\u001b[3B\u001b[2A\u001b[2K\r874cbe0acbba: Extracting "},{"event":"cmd_output","timestamp":1607098122,"output":" 107B/107B\r\u001b[2B\u001b[2A\u001b[2K\r874cbe0acbba: Extracting 107B/107B\r\u001b[2B\u001b[2A\u001b[2K\r874cbe0acbba: Pull co"},{"event":"cmd_output","timestamp":1607098122,"output":"mplete \r\u001b[2B\u001b[1A\u001b[2K\rdfbd1f813a51: Extracting 4.639kB/4.639kB\r\u001b[1B\u001b[1A\u001b[2K\rdfbd1f813a51: Extracting"},{"event":"cmd_output","timestamp":1607098122,"output":" 4.639kB/4.639kB\r\u001b[1B\u001b[1A\u001b[2K\rdfbd1f813a51: Pull complete \r\u001b[1BDigest: sha256:487b93521d72b4861aa54"},{"event":"cmd_output","timestamp":1607098123,"output":"cb58b970bd68e5a7c75e194cb56fdf29fc52a5198cd\nStatus: Downloaded newer image for rabbitmq:3.7\nWARNIN"},{"event":"cmd_output","timestamp":1607098123,"output":"G: Your kernel does not support swap limit capabilities or the cgroup is not mounted. Memory limited"},{"event":"cmd_output","timestamp":1607098123,"output":" without swap.\nd480987f4283f982db9a2d84837822acf0c9ae4f86a1f182facbcf53f9460c99\n"},{"event":"cmd_finished","timestamp":1607098123,"directive":"make rabbitmq.run","exit_code":0,"started_at":1607098116,"finished_at":1607098123},{"event":"cmd_started","timestamp":1607098123,"directive":"make _postgres.start"},{"event":"cmd_output","timestamp":1607098123,"output":"docker run -d --rm --name db --network=host postgres:9.6.16\nUnable to find image 'postgres:9.6.16' "},{"event":"cmd_output","timestamp":1607098125,"output":"locally\n9.6.16: Pulling from library/postgres\n\n\u001b[1A\u001b[2K\r619014d83c02: Pulling fs layer \r\u001b[1B\n\u001b[1"},{"event":"cmd_output","timestamp":1607098125,"output":"A\u001b[2K\r7ec0fe6664f6: Pulling fs layer \r\u001b[1B\n\u001b[1A\u001b[2K\r9ca7ba8f7764: Pulling fs layer \r\u001b[1B\n\u001b[1A\u001b[2K\r"},{"event":"cmd_output","timestamp":1607098125,"output":"9e1155d037e2: Pulling fs layer \r\u001b[1B\n\u001b[1A\u001b[2K\rfebcfb7f8870: Pulling fs layer \r\u001b[1B\n\u001b[1A\u001b[2K\r8c78c7"},{"event":"cmd_output","timestamp":1607098125,"output":"9412b5: Pulling fs layer \r\u001b[1B\n\u001b[1A\u001b[2K\r5a35744405c5: Pulling fs layer \r\u001b[1B\n\u001b[1A\u001b[2K\r27717922e067"},{"event":"cmd_output","timestamp":1607098125,"output":": Pulling fs layer \r\u001b[1B\n\u001b[1A\u001b[2K\r577de7c4ffdc: Pulling fs layer \r\u001b[1B\n\u001b[1A\u001b[2K\r1d3482e27d98: Pull"},{"event":"cmd_output","timestamp":1607098125,"output":"ing fs layer \r\u001b[1B\n\u001b[1A\u001b[2K\ra9ff898274ac: Pulling fs layer \r\u001b[1B\n\u001b[1A\u001b[2K\r0f6131782ee2: Pulling fs"},{"event":"cmd_output","timestamp":1607098125,"output":" layer \r\u001b[1B\n\u001b[1A\u001b[2K\r496ebd477eea: Pulling fs layer \r\u001b[1B\n\u001b[1A\u001b[2K\rd7f0da1de185: Pulling fs layer"},{"event":"cmd_output","timestamp":1607098125,"output":" \r\u001b[1B\u001b[11A\u001b[2K\r9e1155d037e2: Waiting \r\u001b[11B\u001b[10A\u001b[2K\rfebcfb7f8870: Waiting \r\u001b[10B\u001b[9A\u001b[2K\r8c78c7941"},{"event":"cmd_output","timestamp":1607098125,"output":"2b5: Waiting \r\u001b[9B\u001b[8A\u001b[2K\r5a35744405c5: Waiting \r\u001b[8B\u001b[7A\u001b[2K\r27717922e067: Waiting \r\u001b[7B\u001b[6A\u001b[2K\r5"},{"event":"cmd_output","timestamp":1607098125,"output":"77de7c4ffdc: Waiting \r\u001b[6B\u001b[5A\u001b[2K\r1d3482e27d98: Waiting \r\u001b[5B\u001b[4A\u001b[2K\ra9ff898274ac: Waiting \r\u001b[4B\u001b["},{"event":"cmd_output","timestamp":1607098125,"output":"3A\u001b[2K\r0f6131782ee2: Waiting \r\u001b[3B\u001b[2A\u001b[2K\r496ebd477eea: Waiting \r\u001b[2B\u001b[1A\u001b[2K\rd7f0da1de185: Waiting"},{"event":"cmd_output","timestamp":1607098125,"output":" \r\u001b[1B\u001b[13A\u001b[2K\r7ec0fe6664f6: Downloading 45.4kB/4.501MB\r\u001b[13B\u001b[14A\u001b[2K\r619014d83c02: Downloading "},{"event":"cmd_output","timestamp":1607098125,"output":" 228.3kB/22.52MB\r\u001b[14B\u001b[12A\u001b[2K\r9ca7ba8f7764: Downloading 423B/1.779kB\r\u001b[12B\u001b[12A\u001b[2K\r9ca7ba8f77"},{"event":"cmd_output","timestamp":1607098125,"output":"64: Downloading 1.779kB/1.779kB\r\u001b[12B\u001b[12A\u001b[2K\r9ca7ba8f7764: Verifying Checksum \r\u001b[12B\u001b[12A\u001b[2K\r9ca"},{"event":"cmd_output","timestamp":1607098125,"output":"7ba8f7764: Download complete \r\u001b[12B\u001b[13A\u001b[2K\r7ec0fe6664f6: Verifying Checksum \r\u001b[13B\u001b[13A\u001b[2K\r7ec0fe"},{"event":"cmd_output","timestamp":1607098126,"output":"6664f6: Download complete \r\u001b[13B\u001b[14A\u001b[2K\r619014d83c02: Downloading 5.508MB/22.52MB\r\u001b[14B\u001b[14A\u001b[2K\r"},{"event":"cmd_output","timestamp":1607098126,"output":"619014d83c02: Downloading 11.06MB/22.52MB\r\u001b[14B\u001b[14A\u001b[2K\r619014d83c02: Downloading 17.3MB/22.52MB"},{"event":"cmd_output","timestamp":1607098126,"output":"\r\u001b[14B\u001b[14A\u001b[2K\r619014d83c02: Downloading 22.39MB/22.52MB\r\u001b[14B\u001b[14A\u001b[2K\r619014d83c02: Verifying Ch"},{"event":"cmd_output","timestamp":1607098126,"output":"ecksum \r\u001b[14B\u001b[14A\u001b[2K\r619014d83c02: Download complete \r\u001b[14B\u001b[14A\u001b[2K\r619014d83c02: Extracting 229"},{"event":"cmd_output","timestamp":1607098126,"output":".4kB/22.52MB\r\u001b[14B\u001b[11A\u001b[2K\r9e1155d037e2: Downloading 14.07kB/1.351MB\r\u001b[11B\u001b[14A\u001b[2K\r619014d83c02: "},{"event":"cmd_output","timestamp":1607098126,"output":"Extracting 1.147MB/22.52MB\r\u001b[14B\u001b[10A\u001b[2K\rfebcfb7f8870: Downloading 63.44kB/6.183MB\r\u001b[10B\u001b[11A\u001b[2K"},{"event":"cmd_output","timestamp":1607098126,"output":"\r9e1155d037e2: Downloading 1.351MB/1.351MB\r\u001b[11B\u001b[11A\u001b[2K\r9e1155d037e2: Verifying Checksum \r\u001b[11B\u001b["},{"event":"cmd_output","timestamp":1607098126,"output":"11A\u001b[2K\r9e1155d037e2: Download complete \r\u001b[11B\u001b[14A\u001b[2K\r619014d83c02: Extracting 2.294MB/22.52MB\r\u001b["},{"event":"cmd_output","timestamp":1607098126,"output":"14B\u001b[10A\u001b[2K\rfebcfb7f8870: Downloading 2.313MB/6.183MB\r\u001b[10B\u001b[14A\u001b[2K\r619014d83c02: Extracting 2.7"},{"event":"cmd_output","timestamp":1607098126,"output":"53MB/22.52MB\r\u001b[14B\u001b[10A\u001b[2K\rfebcfb7f8870: Verifying Checksum \r\u001b[10B\u001b[10A\u001b[2K\rfebcfb7f8870: Download "},{"event":"cmd_output","timestamp":1607098126,"output":"complete \r\u001b[10B\u001b[14A\u001b[2K\r619014d83c02: Extracting 5.505MB/22.52MB\r\u001b[14B\u001b[9A\u001b[2K\r8c78c79412b5: Downl"},{"event":"cmd_output","timestamp":1607098126,"output":"oading 3.117kB/295.6kB\r\u001b[9B\u001b[9A\u001b[2K\r8c78c79412b5: Verifying Checksum \r\u001b[9B\u001b[9A\u001b[2K\r8c78c79412b5: Do"},{"event":"cmd_output","timestamp":1607098126,"output":"wnload complete \r\u001b[9B\u001b[14A\u001b[2K\r619014d83c02: Extracting 7.111MB/22.52MB\r\u001b[14B\u001b[14A\u001b[2K\r619014d83c02"},{"event":"cmd_output","timestamp":1607098127,"output":": Extracting 8.258MB/22.52MB\r\u001b[14B\u001b[14A\u001b[2K\r619014d83c02: Extracting 10.32MB/22.52MB\r\u001b[14B\u001b[7A\u001b[2K"},{"event":"cmd_output","timestamp":1607098127,"output":"\r27717922e067: Downloading 424B/4.79kB\r\u001b[7B\u001b[7A\u001b[2K\r27717922e067: Downloading 4.79kB/4.79kB\r\u001b["},{"event":"cmd_output","timestamp":1607098127,"output":"7B\u001b[7A\u001b[2K\r27717922e067: Verifying Checksum \r\u001b[7B\u001b[7A\u001b[2K\r27717922e067: Download complete \r\u001b[7B\u001b[8A\u001b"},{"event":"cmd_output","timestamp":1607098127,"output":"[2K\r5a35744405c5: Downloading 115B/115B\r\u001b[8B\u001b[8A\u001b[2K\r5a35744405c5: Verifying Checksum \r\u001b[8B\u001b[8A\u001b"},{"event":"cmd_output","timestamp":1607098127,"output":"[2K\r5a35744405c5: Download complete \r\u001b[8B\u001b[14A\u001b[2K\r619014d83c02: Extracting 12.62MB/22.52MB\r\u001b[14B\u001b["},{"event":"cmd_output","timestamp":1607098127,"output":"14A\u001b[2K\r619014d83c02: Extracting 13.99MB/22.52MB\r\u001b[14B\u001b[6A\u001b[2K\r577de7c4ffdc: Downloading 526.8kB/5"},{"event":"cmd_output","timestamp":1607098127,"output":"3.12MB\r\u001b[6B\u001b[14A\u001b[2K\r619014d83c02: Extracting 14.68MB/22.52MB\r\u001b[14B\u001b[6A\u001b[2K\r577de7c4ffdc: Downloadi"},{"event":"cmd_output","timestamp":1607098127,"output":"ng 7.478MB/53.12MB\r\u001b[6B\u001b[6A\u001b[2K\r577de7c4ffdc: Downloading 16.6MB/53.12MB\r\u001b[6B\u001b[14A\u001b[2K\r619014d83c"},{"event":"cmd_output","timestamp":1607098127,"output":"02: Extracting 16.06MB/22.52MB\r\u001b[14B\u001b[5A\u001b[2K\r1d3482e27d98: Downloading 425B/7.823kB\r\u001b[5B\u001b[5A\u001b[2"},{"event":"cmd_output","timestamp":1607098127,"output":"K\r1d3482e27d98: Downloading 7.823kB/7.823kB\r\u001b[5B\u001b[5A\u001b[2K\r1d3482e27d98: Verifying Checksum \r\u001b[5B\u001b[5A"},{"event":"cmd_output","timestamp":1607098127,"output":"\u001b[2K\r1d3482e27d98: Download complete \r\u001b[5B\u001b[6A\u001b[2K\r577de7c4ffdc: Downloading 20.88MB/53.12MB\r\u001b[6B\u001b["},{"event":"cmd_output","timestamp":1607098127,"output":"14A\u001b[2K\r619014d83c02: Extracting 17.2MB/22.52MB\r\u001b[14B\u001b[4A\u001b[2K\ra9ff898274ac: Downloading 130B/1"},{"event":"cmd_output","timestamp":1607098127,"output":"30B\r\u001b[4B\u001b[4A\u001b[2K\ra9ff898274ac: Verifying Checksum \r\u001b[4B\u001b[4A\u001b[2K\ra9ff898274ac: Download complete \r\u001b[4"},{"event":"cmd_output","timestamp":1607098127,"output":"B\u001b[14A\u001b[2K\r619014d83c02: Extracting 18.58MB/22.52MB\r\u001b[14B\u001b[6A\u001b[2K\r577de7c4ffdc: Downloading 24.09M"},{"event":"cmd_output","timestamp":1607098127,"output":"B/53.12MB\r\u001b[6B\u001b[14A\u001b[2K\r619014d83c02: Extracting 19.73MB/22.52MB\r\u001b[14B\u001b[6A\u001b[2K\r577de7c4ffdc: Downlo"},{"event":"cmd_output","timestamp":1607098128,"output":"ading 28.92MB/53.12MB\r\u001b[6B\u001b[6A\u001b[2K\r577de7c4ffdc: Downloading 34.82MB/53.12MB\r\u001b[6B\u001b[3A\u001b[2K\r0f613178"},{"event":"cmd_output","timestamp":1607098128,"output":"2ee2: Downloading 171B/171B\r\u001b[3B\u001b[3A\u001b[2K\r0f6131782ee2: Verifying Checksum \r\u001b[3B\u001b[3A\u001b[2K\r0f613178"},{"event":"cmd_output","timestamp":1607098128,"output":"2ee2: Download complete \r\u001b[3B\u001b[14A\u001b[2K\r619014d83c02: Extracting 20.41MB/22.52MB\r\u001b[14B\u001b[6A\u001b[2K\r577de"},{"event":"cmd_output","timestamp":1607098128,"output":"7c4ffdc: Downloading 42.88MB/53.12MB\r\u001b[6B\u001b[14A\u001b[2K\r619014d83c02: Extracting 21.1MB/22.52MB\r\u001b[14B\u001b"},{"event":"cmd_output","timestamp":1607098128,"output":"[2A\u001b[2K\r496ebd477eea: Downloading 425B/3.844kB\r\u001b[2B\u001b[2A\u001b[2K\r496ebd477eea: Downloading 3.844kB/3"},{"event":"cmd_output","timestamp":1607098128,"output":".844kB\r\u001b[2B\u001b[2A\u001b[2K\r496ebd477eea: Verifying Checksum \r\u001b[2B\u001b[2A\u001b[2K\r496ebd477eea: Download complete \r"},{"event":"cmd_output","timestamp":1607098128,"output":"\u001b[2B\u001b[6A\u001b[2K\r577de7c4ffdc: Downloading 48.76MB/53.12MB\r\u001b[6B\u001b[6A\u001b[2K\r577de7c4ffdc: Downloading 52.5"},{"event":"cmd_output","timestamp":1607098128,"output":"2MB/53.12MB\r\u001b[6B\u001b[6A\u001b[2K\r577de7c4ffdc: Verifying Checksum \r\u001b[6B\u001b[6A\u001b[2K\r577de7c4ffdc: Download compl"},{"event":"cmd_output","timestamp":1607098128,"output":"ete \r\u001b[6B\u001b[14A\u001b[2K\r619014d83c02: Extracting 21.56MB/22.52MB\r\u001b[14B\u001b[1A\u001b[2K\rd7f0da1de185: Downloading"},{"event":"cmd_output","timestamp":1607098128,"output":" 121B/121B\r\u001b[1B\u001b[1A\u001b[2K\rd7f0da1de185: Verifying Checksum \r\u001b[1B\u001b[1A\u001b[2K\rd7f0da1de185: Download co"},{"event":"cmd_output","timestamp":1607098128,"output":"mplete \r\u001b[1B\u001b[14A\u001b[2K\r619014d83c02: Extracting 21.79MB/22.52MB\r\u001b[14B\u001b[14A\u001b[2K\r619014d83c02: Extract"},{"event":"cmd_output","timestamp":1607098128,"output":"ing 22.48MB/22.52MB\r\u001b[14B\u001b[14A\u001b[2K\r619014d83c02: Extracting 22.52MB/22.52MB\r\u001b[14B\u001b[14A\u001b[2K\r619014d"},{"event":"cmd_output","timestamp":1607098128,"output":"83c02: Pull complete \r\u001b[14B\u001b[13A\u001b[2K\r7ec0fe6664f6: Extracting 65.54kB/4.501MB\r\u001b[13B\u001b[13A\u001b[2K\r7ec0fe"},{"event":"cmd_output","timestamp":1607098129,"output":"6664f6: Extracting 393.2kB/4.501MB\r\u001b[13B\u001b[13A\u001b[2K\r7ec0fe6664f6: Extracting 3.342MB/4.501MB\r\u001b[13B\u001b["},{"event":"cmd_output","timestamp":1607098129,"output":"13A\u001b[2K\r7ec0fe6664f6: Extracting 4.501MB/4.501MB\r\u001b[13B\u001b[13A\u001b[2K\r7ec0fe6664f6: Pull complete \r\u001b[13B\u001b"},{"event":"cmd_output","timestamp":1607098129,"output":"[12A\u001b[2K\r9ca7ba8f7764: Extracting 1.779kB/1.779kB\r\u001b[12B\u001b[12A\u001b[2K\r9ca7ba8f7764: Extracting 1.779kB/"},{"event":"cmd_output","timestamp":1607098129,"output":"1.779kB\r\u001b[12B\u001b[12A\u001b[2K\r9ca7ba8f7764: Pull complete \r\u001b[12B\u001b[11A\u001b[2K\r9e1155d037e2: Extracting 32.77kB"},{"event":"cmd_output","timestamp":1607098129,"output":"/1.351MB\r\u001b[11B\u001b[11A\u001b[2K\r9e1155d037e2: Extracting 589.8kB/1.351MB\r\u001b[11B\u001b[11A\u001b[2K\r9e1155d037e2: Extra"},{"event":"cmd_output","timestamp":1607098129,"output":"cting 1.351MB/1.351MB\r\u001b[11B\u001b[11A\u001b[2K\r9e1155d037e2: Pull complete \r\u001b[11B\u001b[10A\u001b[2K\rfebcfb7f8870: Extr"},{"event":"cmd_output","timestamp":1607098129,"output":"acting 65.54kB/6.183MB\r\u001b[10B\u001b[10A\u001b[2K\rfebcfb7f8870: Extracting 458.8kB/6.183MB\r\u001b[10B\u001b[10A\u001b[2K\rfebc"},{"event":"cmd_output","timestamp":1607098129,"output":"fb7f8870: Extracting 2.753MB/6.183MB\r\u001b[10B\u001b[10A\u001b[2K\rfebcfb7f8870: Extracting 3.867MB/6.183MB\r\u001b[10B"},{"event":"cmd_output","timestamp":1607098130,"output":"\u001b[10A\u001b[2K\rfebcfb7f8870: Extracting 4.325MB/6.183MB\r\u001b[10B\u001b[10A\u001b[2K\rfebcfb7f8870: Extracting 5.636MB"},{"event":"cmd_output","timestamp":1607098130,"output":"/6.183MB\r\u001b[10B\u001b[10A\u001b[2K\rfebcfb7f8870: Extracting 6.183MB/6.183MB\r\u001b[10B\u001b[10A\u001b[2K\rfebcfb7f8870: Pull "},{"event":"cmd_output","timestamp":1607098130,"output":"complete \r\u001b[10B\u001b[9A\u001b[2K\r8c78c79412b5: Extracting 32.77kB/295.6kB\r\u001b[9B\u001b[9A\u001b[2K\r8c78c79412b5: Extract"},{"event":"cmd_output","timestamp":1607098130,"output":"ing 295.6kB/295.6kB\r\u001b[9B\u001b[9A\u001b[2K\r8c78c79412b5: Pull complete \r\u001b[9B\u001b[8A\u001b[2K\r5a35744405c5: Extracting"},{"event":"cmd_output","timestamp":1607098130,"output":" 115B/115B\r\u001b[8B\u001b[8A\u001b[2K\r5a35744405c5: Extracting 115B/115B\r\u001b[8B\u001b[8A\u001b[2K\r5a35744405c5: Pull c"},{"event":"cmd_output","timestamp":1607098130,"output":"omplete \r\u001b[8B\u001b[7A\u001b[2K\r27717922e067: Extracting 4.79kB/4.79kB\r\u001b[7B\u001b[7A\u001b[2K\r27717922e067: Extracting"},{"event":"cmd_output","timestamp":1607098130,"output":" 4.79kB/4.79kB\r\u001b[7B\u001b[7A\u001b[2K\r27717922e067: Pull complete \r\u001b[7B\u001b[6A\u001b[2K\r577de7c4ffdc: Extracting 55"},{"event":"cmd_output","timestamp":1607098131,"output":"7.1kB/53.12MB\r\u001b[6B\u001b[6A\u001b[2K\r577de7c4ffdc: Extracting 1.671MB/53.12MB\r\u001b[6B\u001b[6A\u001b[2K\r577de7c4ffdc: Extr"},{"event":"cmd_output","timestamp":1607098131,"output":"acting 3.342MB/53.12MB\r\u001b[6B\u001b[6A\u001b[2K\r577de7c4ffdc: Extracting 6.128MB/53.12MB\r\u001b[6B\u001b[6A\u001b[2K\r577de7c4"},{"event":"cmd_output","timestamp":1607098131,"output":"ffdc: Extracting 8.913MB/53.12MB\r\u001b[6B\u001b[6A\u001b[2K\r577de7c4ffdc: Extracting 10.03MB/53.12MB\r\u001b[6B\u001b[6A\u001b[2"},{"event":"cmd_output","timestamp":1607098131,"output":"K\r577de7c4ffdc: Extracting 11.7MB/53.12MB\r\u001b[6B\u001b[6A\u001b[2K\r577de7c4ffdc: Extracting 12.81MB/53.12MB\r\u001b"},{"event":"cmd_output","timestamp":1607098131,"output":"[6B\u001b[6A\u001b[2K\r577de7c4ffdc: Extracting 14.48MB/53.12MB\r\u001b[6B\u001b[6A\u001b[2K\r577de7c4ffdc: Extracting 17.27MB"},{"event":"cmd_output","timestamp":1607098132,"output":"/53.12MB\r\u001b[6B\u001b[6A\u001b[2K\r577de7c4ffdc: Extracting 20.61MB/53.12MB\r\u001b[6B\u001b[6A\u001b[2K\r577de7c4ffdc: Extractin"},{"event":"cmd_output","timestamp":1607098132,"output":"g 22.84MB/53.12MB\r\u001b[6B\u001b[6A\u001b[2K\r577de7c4ffdc: Extracting 24.51MB/53.12MB\r\u001b[6B\u001b[6A\u001b[2K\r577de7c4ffdc:"},{"event":"cmd_output","timestamp":1607098132,"output":" Extracting 26.18MB/53.12MB\r\u001b[6B\u001b[6A\u001b[2K\r577de7c4ffdc: Extracting 28.41MB/53.12MB\r\u001b[6B\u001b[6A\u001b[2K\r577"},{"event":"cmd_output","timestamp":1607098132,"output":"de7c4ffdc: Extracting 30.64MB/53.12MB\r\u001b[6B\u001b[6A\u001b[2K\r577de7c4ffdc: Extracting 32.87MB/53.12MB\r\u001b[6B\u001b["},{"event":"cmd_output","timestamp":1607098132,"output":"6A\u001b[2K\r577de7c4ffdc: Extracting 35.09MB/53.12MB\r\u001b[6B\u001b[6A\u001b[2K\r577de7c4ffdc: Extracting 36.77MB/53.1"},{"event":"cmd_output","timestamp":1607098133,"output":"2MB\r\u001b[6B\u001b[6A\u001b[2K\r577de7c4ffdc: Extracting 38.44MB/53.12MB\r\u001b[6B\u001b[6A\u001b[2K\r577de7c4ffdc: Extracting 40"},{"event":"cmd_output","timestamp":1607098133,"output":".11MB/53.12MB\r\u001b[6B\u001b[6A\u001b[2K\r577de7c4ffdc: Extracting 40.67MB/53.12MB\r\u001b[6B\u001b[6A\u001b[2K\r577de7c4ffdc: Extr"},{"event":"cmd_output","timestamp":1607098133,"output":"acting 41.78MB/53.12MB\r\u001b[6B\u001b[6A\u001b[2K\r577de7c4ffdc: Extracting 42.89MB/53.12MB\r\u001b[6B\u001b[6A\u001b[2K\r577de7c4"},{"event":"cmd_output","timestamp":1607098134,"output":"ffdc: Extracting 44.01MB/53.12MB\r\u001b[6B\u001b[6A\u001b[2K\r577de7c4ffdc: Extracting 45.12MB/53.12MB\r\u001b[6B\u001b[6A\u001b[2"},{"event":"cmd_output","timestamp":1607098134,"output":"K\r577de7c4ffdc: Extracting 46.24MB/53.12MB\r\u001b[6B\u001b[6A\u001b[2K\r577de7c4ffdc: Extracting 46.79MB/53.12MB\r\u001b"},{"event":"cmd_output","timestamp":1607098134,"output":"[6B\u001b[6A\u001b[2K\r577de7c4ffdc: Extracting 47.91MB/53.12MB\r\u001b[6B\u001b[6A\u001b[2K\r577de7c4ffdc: Extracting 49.02MB"},{"event":"cmd_output","timestamp":1607098134,"output":"/53.12MB\r\u001b[6B\u001b[6A\u001b[2K\r577de7c4ffdc: Extracting 50.14MB/53.12MB\r\u001b[6B\u001b[6A\u001b[2K\r577de7c4ffdc: Extractin"},{"event":"cmd_output","timestamp":1607098135,"output":"g 50.69MB/53.12MB\r\u001b[6B\u001b[6A\u001b[2K\r577de7c4ffdc: Extracting 51.25MB/53.12MB\r\u001b[6B\u001b[6A\u001b[2K\r577de7c4ffdc:"},{"event":"cmd_output","timestamp":1607098135,"output":" Extracting 51.81MB/53.12MB\r\u001b[6B\u001b[6A\u001b[2K\r577de7c4ffdc: Extracting 52.92MB/53.12MB\r\u001b[6B\u001b[6A\u001b[2K\r577"},{"event":"cmd_output","timestamp":1607098135,"output":"de7c4ffdc: Extracting 53.12MB/53.12MB\r\u001b[6B\u001b[6A\u001b[2K\r577de7c4ffdc: Pull complete \r\u001b[6B\u001b[5A\u001b[2K\r1d3482"},{"event":"cmd_output","timestamp":1607098135,"output":"e27d98: Extracting 7.823kB/7.823kB\r\u001b[5B\u001b[5A\u001b[2K\r1d3482e27d98: Extracting 7.823kB/7.823kB\r\u001b[5B\u001b[5A\u001b"},{"event":"cmd_output","timestamp":1607098135,"output":"[2K\r1d3482e27d98: Pull complete \r\u001b[5B\u001b[4A\u001b[2K\ra9ff898274ac: Extracting 130B/130B\r\u001b[4B\u001b[4A\u001b[2K\ra9"},{"event":"cmd_output","timestamp":1607098135,"output":"ff898274ac: Extracting 130B/130B\r\u001b[4B\u001b[4A\u001b[2K\ra9ff898274ac: Pull complete \r\u001b[4B\u001b[3A\u001b[2K\r0f613178"},{"event":"cmd_output","timestamp":1607098135,"output":"2ee2: Extracting 171B/171B\r\u001b[3B\u001b[3A\u001b[2K\r0f6131782ee2: Extracting 171B/171B\r\u001b[3B\u001b[3A\u001b[2K\r0f61"},{"event":"cmd_output","timestamp":1607098135,"output":"31782ee2: Pull complete \r\u001b[3B\u001b[2A\u001b[2K\r496ebd477eea: Extracting 3.844kB/3.844kB\r\u001b[2B\u001b[2A\u001b[2K\r496ebd4"},{"event":"cmd_output","timestamp":1607098135,"output":"77eea: Extracting 3.844kB/3.844kB\r\u001b[2B\u001b[2A\u001b[2K\r496ebd477eea: Pull complete \r\u001b[2B\u001b[1A\u001b[2K\rd7f0da1de1"},{"event":"cmd_output","timestamp":1607098136,"output":"85: Extracting 121B/121B\r\u001b[1B\u001b[1A\u001b[2K\rd7f0da1de185: Extracting 121B/121B\r\u001b[1B\u001b[1A\u001b[2K\rd7f0da"},{"event":"cmd_output","timestamp":1607098136,"output":"1de185: Pull complete \r\u001b[1BDigest: sha256:d6a6badb2b5b22de5e135490a217522cecc2ae90fe35b3329061582756"},{"event":"cmd_output","timestamp":1607098136,"output":"9310a1\nStatus: Downloaded newer image for postgres:9.6.16\neccd06fcebfe226eb2338600bd0197187ef26569"},{"event":"cmd_output","timestamp":1607098142,"output":"af506ec5c3d80d792dc5cc87\n\nWaiting for DB to become operational\nsleep 5\n"},{"event":"cmd_finished","timestamp":1607098142,"directive":"make _postgres.start","exit_code":0,"started_at":1607098123,"finished_at":1607098142},{"event":"cmd_started","timestamp":1607098142,"directive":"make repo_proxy_ref.run USER=root"},{"event":"cmd_output","timestamp":1607098142,"output":"cd ../repo_proxy_ref && make USER=root background\nmake[1]: Entering directory '/home/semaphore/alle"},{"event":"cmd_output","timestamp":1607098142,"output":"s/plumber/repo_proxy_ref'\ndocker run --name repo_proxy_ref --network=host -e APP_ENV= -e MIX_ENV=de"},{"event":"cmd_output","timestamp":1607098142,"output":"v \\\n -e GRPC_PORT=51000 -v $PWD/home_dir:/home/dev -v $PWD/..:/home/dev/repo --rm --workdir=/ho"},{"event":"cmd_output","timestamp":1607098142,"output":"me/dev/repo/repo_proxy_ref --user=root -d renderedtext/elixir-dev:1.6.5-v2 \\\n\t mix do local.hex -"},{"event":"cmd_output","timestamp":1607098142,"output":"-force, local.rebar --force, deps.get, run --no-halt\n2e918cd065e914a6338aca2315e4ccdc66f8318fe79b71"},{"event":"cmd_output","timestamp":1607098142,"output":"fd87e35d49ec5117d4\nmake[1]: Leaving directory '/home/semaphore/alles/plumber/repo_proxy_ref'\n"},{"event":"cmd_finished","timestamp":1607098142,"directive":"make repo_proxy_ref.run USER=root","exit_code":0,"started_at":1607098142,"finished_at":1607098142},{"event":"cmd_started","timestamp":1607098142,"directive":"make console USER=root MIX_ENV=test CMD=\"mix do local.hex --force, local.rebar --force, deps.get, ecto.create, ecto.migrate\""},{"event":"cmd_output","timestamp":1607098142,"output":"docker run --network=host -e MIX_ENV=test -e DB_URL=\"ecto://postgres:PASSWORD@localhost/ppl_repo\" -e"},{"event":"cmd_output","timestamp":1607098142,"output":" DB_PASSWORD=\"postgres\" -e DB_USE_SSL=\"false\" -e BLOCK_DB_URL=\"ecto://postgres:PASSWORD@localhost/bl"},{"event":"cmd_output","timestamp":1607098142,"output":"ock_repo\" -e BLOCK_DB_PASSWORD=\"postgres\" -e BLOCK_DB_USE_SSL=\"false\" -e USER_CREDS_ENC_KEY_1=\"zsef6"},{"event":"cmd_output","timestamp":1607098142,"output":"S7fv98op1qf60M7GfOc3d6I5KvE\" -e GOFER_GRPC_URL=localhost:50055 -e RABBITMQ_URL=\"amqp://localhost:567"},{"event":"cmd_output","timestamp":1607098142,"output":"3\" -e TASK_API_URL=localhost:50051 -e PPL_QUEUE_LIMIT=\"9\" -e IN_FLIGHT_DESCRIBE_LIMIT=\"50\" -e IN_FLI"},{"event":"cmd_output","timestamp":1607098142,"output":"GHT_LIST_LIMIT=\"50\" -e REPO_PROXY_GRPC_URL=localhost:51000 -e PAPARAZZO_URL=localhost:12345 -e REPOH"},{"event":"cmd_output","timestamp":1607098142,"output":"UB_GRPC_URL=localhost:51500 -e USER_GRPC_URL=localhost:51500 -e ARTIFACTHUB_GRPC_URL=localhost:51500"},{"event":"cmd_output","timestamp":1607098142,"output":" -v $PWD/home_dir:/home/dev -v $PWD/..:/home/dev/pipelines --rm --workdir=/home/dev/pipelines/ppl -"},{"event":"cmd_output","timestamp":1607098142,"output":"-user=root -it renderedtext/elixir-dev:1.6.5-v2 mix do local.hex --force, local.rebar --force, deps."},{"event":"cmd_output","timestamp":1607098144,"output":"get, ecto.create, ecto.migrate\n\u001b[32m* creating \u001b[0m/home/dev/.mix/archives/hex-0.20.6\u001b[0m\n\u001b[32m* c"},{"event":"cmd_output","timestamp":1607098146,"output":"reating \u001b[0m/home/dev/.mix/rebar\u001b[0m\n\u001b[32m* creating \u001b[0m/home/dev/.mix/rebar3\u001b[0m\nResolving Hex d"},{"event":"cmd_output","timestamp":1607098146,"output":"ependencies...\nDependency resolution completed:\nUnchanged:\n amqp 1.1.0\n amqp_client 3.7.9\n a"},{"event":"cmd_output","timestamp":1607098146,"output":"rtificery 0.2.6\n bunt 0.2.0\n certifi 2.0.0\n cloak 0.5.0\n connection 1.0.4\n cowboy 2.5.0\n "},{"event":"cmd_output","timestamp":1607098146,"output":" cowlib 2.6.0\n credo 0.9.3\n db_connection 1.1.3\n decimal 1.6.0\n deep_merge 0.1.1\n dialyxir"},{"event":"cmd_output","timestamp":1607098146,"output":" 0.5.1\n distillery 2.0.9\n ecto 2.2.11\n ex_json_schema 0.5.7\n fs 0.9.2\n goldrush 0.1.9\n g"},{"event":"cmd_output","timestamp":1607098146,"output":"rpc 0.3.1\n gun 1.3.0\n hackney 1.10.1\n httpoison 0.13.0\n idna 5.1.0\n jesse 1.4.0\n jsx 2.1"},{"event":"cmd_output","timestamp":1607098146,"output":"0.0\n lager 3.8.0\n meck 0.8.8\n metrics 1.0.1\n mimerl 1.0.2\n mix_test_watch 0.4.1\n mock 0."},{"event":"cmd_output","timestamp":1607098146,"output":"2.1\n observer_cli 1.3.4\n\u001b[33m paginator 0.5.0 RETIRED!\u001b[0m\n\u001b[33m (security) Remote Code Exec"},{"event":"cmd_output","timestamp":1607098146,"output":"ution Vulnerability\u001b[0m\n poison 3.1.0\n poolboy 1.5.1\n postgrex 0.13.5\n protobuf 0.5.2\n rab"},{"event":"cmd_output","timestamp":1607098146,"output":"bit_common 3.7.9\n ranch 1.6.2\n ranch_proxy_protocol 2.1.1\n recon 2.3.6\n scrivener 2.5.0\n s"},{"event":"cmd_output","timestamp":1607098146,"output":"crivener_ecto 1.3.0\n ssl_verify_fun 1.1.1\n unicode_util_compat 0.3.1\n uuid 1.1.7\n vmstats 2."},{"event":"cmd_output","timestamp":1607098147,"output":"2.0\n wormhole 2.2.0\n yamerl 0.5.0\n yaml_elixir 1.3.1\n==> spec\nCompiling 2 files (.ex)\n\u001b[33m"},{"event":"cmd_output","timestamp":1607098147,"output":"warning: \u001b[0mvariable \"pipeline_file\" is unused\n lib/spec/validator.ex:9\n\nGenerated spec app\n=="},{"event":"cmd_output","timestamp":1607098147,"output":"> definition_validator\nCompiling 7 files (.ex)\nGenerated definition_validator app\n==> job_matrix\r"},{"event":"cmd_output","timestamp":1607098149,"output":"\nCompiling 5 files (.ex)\nGenerated job_matrix app\n==> looper\nCompiling 21 files (.ex)\nGenerated "},{"event":"cmd_output","timestamp":1607098168,"output":"looper app\n==> dependencies\nGenerated dependencies app\n==> proto\nCompiling 20 files (.ex)\nGener"},{"event":"cmd_output","timestamp":1607098169,"output":"ated proto app\n==> block\nCompiling 43 files (.ex)\n\u001b[33mwarning: \u001b[0mthe first 4 default arguments"},{"event":"cmd_output","timestamp":1607098169,"output":" in fetch_attribute/5 are never used\n lib/block/code_repo/git_hub.ex:32\n\n\u001b[33mwarning: \u001b[0mvaria"},{"event":"cmd_output","timestamp":1607098170,"output":"ble \"ppl_args\" is unused\n lib/block/task_api_client/schedule_request_formatter.ex:120\n\n\u001b[33mwarn"},{"event":"cmd_output","timestamp":1607098172,"output":"ing: \u001b[0munused alias ToTuple\n lib/block/change_in_resolver.ex:8\n\nGenerated block app\n==> gofer"},{"event":"cmd_output","timestamp":1607098181,"output":"_client\nCompiling 5 files (.ex)\nGenerated gofer_client app\n==> ppl\nCompiling 108 files (.ex)\nGe"},{"event":"cmd_output","timestamp":1607098185,"output":"nerated ppl app\nThe database for Ppl.EctoRepo has been created\n\u001b[22m\n16:09:45.278 [info] == Runn"},{"event":"cmd_output","timestamp":1607098185,"output":"ing Ppl.EctoRepo.Migrations.AddPipelineRequestsTable.change/0 forward\n\u001b[0m\u001b[22m\n16:09:45.279 [info"},{"event":"cmd_output","timestamp":1607098185,"output":"] create table pipeline_requests\n\u001b[0m\u001b[22m\n16:09:45.285 [info] create index unique_request_token"},{"event":"cmd_output","timestamp":1607098185,"output":"_for_ppl_requests\n\u001b[0m\u001b[22m\n16:09:45.288 [info] == Migrated in 0.0s\n\u001b[0m\u001b[22m\n16:09:45.382 [inf"},{"event":"cmd_output","timestamp":1607098185,"output":"o] == Running Ppl.EctoRepo.Migrations.AddPipelineTable.change/0 forward\n\u001b[0m\u001b[22m\n16:09:45.382 [i"},{"event":"cmd_output","timestamp":1607098185,"output":"nfo] create table pipelines\n\u001b[0m\u001b[22m\n16:09:45.402 [info] create index pipelines_in_scheduling_s"},{"event":"cmd_output","timestamp":1607098185,"output":"tate_updated_at_index\n\u001b[0m\u001b[22m\n16:09:45.404 [info] create index one_ppl_per_ppl_request\n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098185,"output":"2m\n16:09:45.407 [info] == Migrated in 0.0s\n\u001b[0m\u001b[22m\n16:09:45.459 [info] == Running Ppl.EctoRep"},{"event":"cmd_output","timestamp":1607098185,"output":"o.Migrations.AddPipelineBlocksTable.change/0 forward\n\u001b[0m\u001b[22m\n16:09:45.459 [info] create table p"},{"event":"cmd_output","timestamp":1607098185,"output":"ipeline_blocks\n\u001b[0m\u001b[22m\n16:09:45.472 [info] create index ppl_id_and_block_index_unique_index\n\u001b["},{"event":"cmd_output","timestamp":1607098185,"output":"0m\u001b[22m\n16:09:45.474 [info] create index pipeline_blocks_in_scheduling_state_updated_at_index\n\u001b[0"},{"event":"cmd_output","timestamp":1607098185,"output":"m\u001b[22m\n16:09:45.476 [info] create index ppl_id_and_name_unique_index\n\u001b[0m\u001b[22m\n16:09:45.478 [inf"},{"event":"cmd_output","timestamp":1607098185,"output":"o] == Migrated in 0.0s\n\u001b[0m\u001b[22m\n16:09:45.528 [info] == Running Ppl.EctoRepo.Migrations.AddPipel"},{"event":"cmd_output","timestamp":1607098185,"output":"ineTracesTable.change/0 forward\n\u001b[0m\u001b[22m\n16:09:45.529 [info] create table pipeline_traces\n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098185,"output":"[22m\n16:09:45.539 [info] create index one_ppl_trace_per_ppl\n\u001b[0m\u001b[22m\n16:09:45.542 [info] == Mi"},{"event":"cmd_output","timestamp":1607098185,"output":"grated in 0.0s\n\u001b[0m\u001b[22m\n16:09:45.590 [info] == Running Ppl.EctoRepo.Migrations.PipelineBlockConn"},{"event":"cmd_output","timestamp":1607098185,"output":"ections.change/0 forward\n\u001b[0m\u001b[22m\n16:09:45.591 [info] create table pipeline_block_connections\n\u001b"},{"event":"cmd_output","timestamp":1607098185,"output":"[0m\u001b[22m\n16:09:45.596 [info] create index pipeline_block_connections_target_dependency_index\n\u001b[0m"},{"event":"cmd_output","timestamp":1607098185,"output":"\u001b[22m\n16:09:45.599 [info] == Migrated in 0.0s\n\u001b[0m\u001b[22m\n16:09:45.655 [info] == Running Ppl.Ecto"},{"event":"cmd_output","timestamp":1607098185,"output":"Repo.Migrations.AddPreviousPplIdsToPipelineRequestsTable.change/0 forward\n\u001b[0m\u001b[22m\n16:09:45.655 ["},{"event":"cmd_output","timestamp":1607098185,"output":"info] alter table pipeline_requests\n\u001b[0m\u001b[22m\n16:09:45.656 [info] == Migrated in 0.0s\n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098185,"output":"\n16:09:45.712 [info] == Running Ppl.EctoRepo.Migrations.AddTerminatedByToPipelinesTable.change/0 f"},{"event":"cmd_output","timestamp":1607098185,"output":"orward\n\u001b[0m\u001b[22m\n16:09:45.712 [info] alter table pipelines\n\u001b[0m\u001b[22m\n16:09:45.719 [info] == Mi"},{"event":"cmd_output","timestamp":1607098185,"output":"grated in 0.0s\n\u001b[0m\u001b[22m\n16:09:45.781 [info] == Running Ppl.EctoRepo.Migrations.AddPipelineOrigin"},{"event":"cmd_output","timestamp":1607098185,"output":"sTable.change/0 forward\n\u001b[0m\u001b[22m\n16:09:45.782 [info] create table pipeline_origins\n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098185,"output":"6:09:45.788 [info] create index one_origin_per_ppl\n\u001b[0m\u001b[22m\n16:09:45.791 [info] == Migrated in "},{"event":"cmd_output","timestamp":1607098185,"output":"0.0s\n\u001b[0m\u001b[22m\n16:09:45.825 [info] == Running Ppl.EctoRepo.Migrations.AddPplArtefactIdToPipelineR"},{"event":"cmd_output","timestamp":1607098185,"output":"equestsTable.up/0 forward\n\u001b[0m\u001b[22m\n16:09:45.825 [info] alter table pipeline_requests\n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098185,"output":"\n16:09:45.845 [info] == Migrated in 0.0s\n\u001b[0m\u001b[22m\n16:09:45.889 [info] == Running Ppl.EctoRepo.M"},{"event":"cmd_output","timestamp":1607098185,"output":"igrations.ChnagePreviousPplIdsToPrevPplArtefactIdsInPipelineRequestsTable.up/0 forward\n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098185,"output":"6:09:45.889 [info] alter table pipeline_requests\n\u001b[0m\u001b[22m\n16:09:45.891 [info] alter table pipel"},{"event":"cmd_output","timestamp":1607098185,"output":"ine_requests\n\u001b[0m\u001b[22m\n16:09:45.892 [info] == Migrated in 0.0s\n\u001b[0m\u001b[22m\n16:09:45.937 [info] ="},{"event":"cmd_output","timestamp":1607098185,"output":"= Running Ppl.EctoRepo.Migrations.AddPplSubInitTable.change/0 forward\n\u001b[0m\u001b[22m\n16:09:45.938 [info"},{"event":"cmd_output","timestamp":1607098185,"output":"] create table pipeline_sub_inits\n\u001b[0m\u001b[22m\n16:09:45.944 [info] create index pipeline_sub_inits_"},{"event":"cmd_output","timestamp":1607098185,"output":"in_scheduling_state_updated_at_index\n\u001b[0m\u001b[22m\n16:09:45.946 [info] create index one_ppl_sub_init_"},{"event":"cmd_output","timestamp":1607098186,"output":"per_ppl_request\n\u001b[0m\u001b[22m\n16:09:45.948 [info] == Migrated in 0.0s\n\u001b[0m\u001b[22m\n16:09:46.010 [info]"},{"event":"cmd_output","timestamp":1607098186,"output":" == Running Ppl.EctoRepo.Migrations.AddDuplicateFieldToPipelineBlocksTable.change/0 forward\n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098186,"output":"22m\n16:09:46.010 [info] alter table pipeline_blocks\n\u001b[0m\u001b[22m\n16:09:46.015 [info] == Migrated i"},{"event":"cmd_output","timestamp":1607098186,"output":"n 0.0s\n\u001b[0m\u001b[22m\n16:09:46.048 [info] == Running Ppl.EctoRepo.Migrations.AddPartialRebuildOfToPipe"},{"event":"cmd_output","timestamp":1607098186,"output":"linesTable.change/0 forward\n\u001b[0m\u001b[22m\n16:09:46.048 [info] alter table pipelines\n\u001b[0m\u001b[22m\n16:09"},{"event":"cmd_output","timestamp":1607098186,"output":":46.056 [info] == Migrated in 0.0s\n\u001b[0m\u001b[22m\n16:09:46.097 [info] == Running Ppl.EctoRepo.Migrati"},{"event":"cmd_output","timestamp":1607098186,"output":"ons.AddDeleteRequestsTable.change/0 forward\n\u001b[0m\u001b[22m\n16:09:46.098 [info] create table delete_req"},{"event":"cmd_output","timestamp":1607098186,"output":"uests\n\u001b[0m\u001b[22m\n16:09:46.104 [info] create index delete_requests_in_scheduling_state_updated_at_i"},{"event":"cmd_output","timestamp":1607098186,"output":"ndex\n\u001b[0m\u001b[22m\n16:09:46.117 [info] create index delete_requests_project_id_index\n\u001b[0m\u001b[22m\n16:0"},{"event":"cmd_output","timestamp":1607098186,"output":"9:46.119 [info] == Migrated in 0.0s\n\u001b[0m\u001b[22m\n16:09:46.172 [info] == Running Ppl.EctoRepo.Migrat"},{"event":"cmd_output","timestamp":1607098186,"output":"ions.AddDeletionRequestedToPipelinesTable.change/0 forward\n\u001b[0m\u001b[22m\n16:09:46.173 [info] alter ta"},{"event":"cmd_output","timestamp":1607098186,"output":"ble pipelines\n\u001b[0m\u001b[22m\n16:09:46.178 [info] create index pipelines_project_id_index\n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098186,"output":"6:09:46.180 [info] == Migrated in 0.0s\n\u001b[0m\u001b[22m\n16:09:46.222 [info] == Running Ppl.EctoRepo.Mig"},{"event":"cmd_output","timestamp":1607098186,"output":"rations.AddDeleteCascadeToFkeyConstraints.up/0 forward\n\u001b[0m\u001b[22m\n16:09:46.222 [info] drop constra"},{"event":"cmd_output","timestamp":1607098186,"output":"int pipelines_ppl_id_fkey from table pipelines\n\u001b[0m\u001b[22m\n16:09:46.223 [info] alter table pipeline"},{"event":"cmd_output","timestamp":1607098186,"output":"s\n\u001b[0m\u001b[22m\n16:09:46.225 [info] drop constraint pipeline_blocks_ppl_id_fkey from table pipeline_b"},{"event":"cmd_output","timestamp":1607098186,"output":"locks\n\u001b[0m\u001b[22m\n16:09:46.225 [info] alter table pipeline_blocks\n\u001b[0m\u001b[22m\n16:09:46.246 [info] "},{"event":"cmd_output","timestamp":1607098186,"output":"drop constraint pipeline_block_connections_dependency_fkey from table pipeline_block_connections\n\u001b["},{"event":"cmd_output","timestamp":1607098186,"output":"0m\u001b[22m\n16:09:46.248 [info] drop constraint pipeline_block_connections_target_fkey from table pipe"},{"event":"cmd_output","timestamp":1607098186,"output":"line_block_connections\n\u001b[0m\u001b[22m\n16:09:46.249 [info] alter table pipeline_block_connections\n\u001b[0m"},{"event":"cmd_output","timestamp":1607098186,"output":"\u001b[22m\n16:09:46.252 [info] drop constraint pipeline_origins_ppl_id_fkey from table pipeline_origins"},{"event":"cmd_output","timestamp":1607098186,"output":"\n\u001b[0m\u001b[22m\n16:09:46.253 [info] alter table pipeline_origins\n\u001b[0m\u001b[22m\n16:09:46.256 [info] drop"},{"event":"cmd_output","timestamp":1607098186,"output":" constraint pipeline_sub_inits_ppl_id_fkey from table pipeline_sub_inits\n\u001b[0m\u001b[22m\n16:09:46.257 [i"},{"event":"cmd_output","timestamp":1607098186,"output":"nfo] alter table pipeline_sub_inits\n\u001b[0m\u001b[22m\n16:09:46.260 [info] drop constraint pipeline_trace"},{"event":"cmd_output","timestamp":1607098186,"output":"s_ppl_id_fkey from table pipeline_traces\n\u001b[0m\u001b[22m\n16:09:46.261 [info] alter table pipeline_trace"},{"event":"cmd_output","timestamp":1607098186,"output":"s\n\u001b[0m\u001b[22m\n16:09:46.264 [info] == Migrated in 0.0s\n\u001b[0m\u001b[22m\n16:09:46.309 [info] == Running P"},{"event":"cmd_output","timestamp":1607098186,"output":"pl.EctoRepo.Migrations.AddTerminateFieldsToDeleteRequestsTable.change/0 forward\n\u001b[0m\u001b[22m\n16:09:46"},{"event":"cmd_output","timestamp":1607098186,"output":".309 [info] alter table delete_requests\n\u001b[0m\u001b[22m\n16:09:46.314 [info] == Migrated in 0.0s\n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098186,"output":"[22m\n16:09:46.348 [info] == Running Ppl.EctoRepo.Migrations.AddFastFailingToPipelinesTable.change/"},{"event":"cmd_output","timestamp":1607098186,"output":"0 forward\n\u001b[0m\u001b[22m\n16:09:46.348 [info] alter table pipelines\n\u001b[0m\u001b[22m\n16:09:46.349 [info] =="},{"event":"cmd_output","timestamp":1607098186,"output":" Migrated in 0.0s\n\u001b[0m\u001b[22m\n16:09:46.382 [info] == Running Ppl.EctoRepo.Migrations.AddExecTimeLim"},{"event":"cmd_output","timestamp":1607098186,"output":"itMinFields.change/0 forward\n\u001b[0m\u001b[22m\n16:09:46.382 [info] alter table pipelines\n\u001b[0m\u001b[22m\n16:0"},{"event":"cmd_output","timestamp":1607098186,"output":"9:46.383 [info] alter table pipeline_blocks\n\u001b[0m\u001b[22m\n16:09:46.383 [info] == Migrated in 0.0s\n\u001b"},{"event":"cmd_output","timestamp":1607098186,"output":"[0m\u001b[22m\n16:09:46.450 [info] == Running Ppl.EctoRepo.Migrations.AddWorkflowIdToPipelineRequestsTab"},{"event":"cmd_output","timestamp":1607098186,"output":"le.up/0 forward\n\u001b[0m\u001b[22m\n16:09:46.451 [info] execute \" UPDATE pipeline_requests AS p1\\n SET re"},{"event":"cmd_output","timestamp":1607098186,"output":"quest_args = p1.request_args ||\\n (SELECT row_to_json(t)\\n FROM\\n (SELECT request_args -"},{"event":"cmd_output","timestamp":1607098186,"output":">>'hook_id' as workflow_id\\n FROM pipeline_requests AS p2\\n WHERE p1.id = p2.id )\\n "},{"event":"cmd_output","timestamp":1607098186,"output":" as t)::jsonb\\n WHERE p1.request_args->>'workflow_id' IS NULL;\\n\"\n\u001b[0m\u001b[22m\n16:09:46.453 [info] "},{"event":"cmd_output","timestamp":1607098186,"output":"== Migrated in 0.0s\n\u001b[0m\u001b[22m\n16:09:46.525 [info] == Running Ppl.EctoRepo.Migrations.ExtractWorkf"},{"event":"cmd_output","timestamp":1607098186,"output":"lowIdFromRequestArgsInPipelineRequestsTable.up/0 forward\n\u001b[0m\u001b[22m\n16:09:46.525 [info] alter tabl"},{"event":"cmd_output","timestamp":1607098186,"output":"e pipeline_requests\n\u001b[0m\u001b[22m\n16:09:46.527 [info] execute \" UPDATE pipeline_requests\\n SET requ"},{"event":"cmd_output","timestamp":1607098186,"output":"est_args = request_args - 'workflow_id';\\n\"\n\u001b[0m\u001b[22m\n16:09:46.529 [info] == Migrated in 0.0s\n\u001b["},{"event":"cmd_output","timestamp":1607098186,"output":"0m\u001b[22m\n16:09:46.585 [info] == Running Ppl.EctoRepo.Migrations.AddExtensionOfToPipelinesTable.chan"},{"event":"cmd_output","timestamp":1607098186,"output":"ge/0 forward\n\u001b[0m\u001b[22m\n16:09:46.585 [info] alter table pipelines\n\u001b[0m\u001b[22m\n16:09:46.592 [info] "},{"event":"cmd_output","timestamp":1607098186,"output":" == Migrated in 0.0s\n\u001b[0m\u001b[22m\n16:09:46.659 [info] == Running Ppl.EctoRepo.Migrations.AddTriggers"},{"event":"cmd_output","timestamp":1607098186,"output":"ForPplStateChangeEvents.up/0 forward\n\u001b[0m\u001b[22m\n16:09:46.660 [info] create table pipeline_state_ch"},{"event":"cmd_output","timestamp":1607098186,"output":"anges\n\u001b[0m\u001b[22m\n16:09:46.667 [info] execute \"CREATE OR REPLACE FUNCTION audit_ppl_created_func()\\"},{"event":"cmd_output","timestamp":1607098186,"output":"n RETURNS TRIGGER AS\\n$BODY$\\n\\nBEGIN\\n INSERT INTO pipeline_state_changes(ppl_id, ppl_state, ppl_c"},{"event":"cmd_output","timestamp":1607098186,"output":"hanged_state_on,\\n inserted_at, updated_at, state)\\n VALUES(NEW.ppl_id, NEW.state, NEW.u"},{"event":"cmd_output","timestamp":1607098186,"output":"pdated_at, now(), now(), 'for_publishing');\\n\\n RETURN NEW;\\nEND;\\n\\n$BODY$\\nLANGUAGE plpgsql;\\n\"\n\u001b"},{"event":"cmd_output","timestamp":1607098186,"output":"[0m\u001b[22m\n16:09:46.672 [info] execute \"CREATE OR REPLACE FUNCTION audit_ppl_state_change_func()\\n "},{"event":"cmd_output","timestamp":1607098186,"output":"RETURNS TRIGGER AS\\n$BODY$\\n\\nBEGIN\\n IF NEW.state <> OLD.state THEN\\n INSERT INTO pipeline_state_ch"},{"event":"cmd_output","timestamp":1607098186,"output":"anges(ppl_id, ppl_state, ppl_changed_state_on,\\n inserted_at, updated_at, state)\\n VALUE"},{"event":"cmd_output","timestamp":1607098186,"output":"S(NEW.ppl_id, NEW.state, NEW.updated_at, now(), now(), 'for_publishing');\\n END IF;\\n\\n RETURN NEW;\\"},{"event":"cmd_output","timestamp":1607098186,"output":"nEND;\\n\\n$BODY$\\nLANGUAGE plpgsql;\\n\"\n\u001b[0m\u001b[22m\n16:09:46.674 [info] execute \"CREATE TRIGGER ppl_c"},{"event":"cmd_output","timestamp":1607098186,"output":"reated\\n AFTER INSERT\\n ON pipelines\\n FOR EACH ROW\\n EXECUTE PROCEDURE audit_ppl_created_func()"},{"event":"cmd_output","timestamp":1607098186,"output":";\\n\"\n\u001b[0m\u001b[22m\n16:09:46.684 [info] execute \"CREATE TRIGGER ppl_state_changes\\n AFTER UPDATE\\n O"},{"event":"cmd_output","timestamp":1607098186,"output":"N pipelines\\n FOR EACH ROW\\n EXECUTE PROCEDURE audit_ppl_state_change_func();\\n\"\n\u001b[0m\u001b[22m\n16:09"},{"event":"cmd_output","timestamp":1607098186,"output":":46.685 [info] == Migrated in 0.0s\n\u001b[0m\u001b[22m\n16:09:46.744 [info] == Running Ppl.EctoRepo.Migrati"},{"event":"cmd_output","timestamp":1607098186,"output":"ons.AddIndexesOnStateField.change/0 forward\n\u001b[0m\u001b[22m\n16:09:46.745 [info] create index pipelines_"},{"event":"cmd_output","timestamp":1607098186,"output":"state_index\n\u001b[0m\u001b[22m\n16:09:46.755 [info] create index pipeline_sub_inits_state_index\n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098186,"output":"\n16:09:46.770 [info] create index pipeline_blocks_state_index\n\u001b[0m\u001b[22m\n16:09:46.776 [info] == M"},{"event":"cmd_output","timestamp":1607098186,"output":"igrated in 0.0s\n\u001b[0m\u001b[22m\n16:09:46.839 [info] == Running Ppl.EctoRepo.Migrations.AddMissingFields"},{"event":"cmd_output","timestamp":1607098186,"output":"ToPipelineStateChangesTable.change/0 forward\n\u001b[0m\u001b[22m\n16:09:46.839 [info] alter table pipeline_s"},{"event":"cmd_output","timestamp":1607098186,"output":"tate_changes\n\u001b[0m\u001b[22m\n16:09:46.846 [info] == Migrated in 0.0s\n\u001b[0m\u001b[22m\n16:09:46.912 [info] ="},{"event":"cmd_output","timestamp":1607098186,"output":"= Running Ppl.EctoRepo.Migrations.AddIndexesForWfApi.change/0 forward\n\u001b[0m\u001b[22m\n16:09:46.913 [info"},{"event":"cmd_output","timestamp":1607098186,"output":"] create index pipeline_requests_request_args___organization_id__index\n\u001b[0m\u001b[22m\n16:09:46.916 [in"},{"event":"cmd_output","timestamp":1607098186,"output":"fo] create index pipeline_requests_request_args___requester_id__index\n\u001b[0m\u001b[22m\n16:09:46.918 [inf"},{"event":"cmd_output","timestamp":1607098186,"output":"o] create index pipeline_requests_wf_id_index\n\u001b[0m\u001b[22m\n16:09:46.932 [info] == Migrated in 0.0s\r"},{"event":"cmd_output","timestamp":1607098186,"output":"\n\u001b[0m\u001b[22m\n16:09:46.980 [info] == Running Ppl.EctoRepo.Migrations.AddMoreIndexesForWfList.change/0"},{"event":"cmd_output","timestamp":1607098186,"output":" forward\n\u001b[0m\u001b[22m\n16:09:46.981 [info] create index pipelines_branch_name_index\n\u001b[0m\u001b[22m\n16:09"},{"event":"cmd_output","timestamp":1607098186,"output":":46.991 [info] create index pipeline_requests_initial_request_index\n\u001b[0m\u001b[22m\n16:09:46.995 [info]"},{"event":"cmd_output","timestamp":1607098187,"output":" == Migrated in 0.0s\n\u001b[0m\u001b[33mwarning: \u001b[0munused alias Repo\n priv/ecto_repo/migrations/20190611"},{"event":"cmd_output","timestamp":1607098187,"output":"230217_add_queue_field_to_pipelines_table.exs:4\n\n\u001b[33mwarning: \u001b[0munused import Ecto.Query\n pri"},{"event":"cmd_output","timestamp":1607098187,"output":"v/ecto_repo/migrations/20190611230217_add_queue_field_to_pipelines_table.exs:3\n\n\u001b[22m\n16:09:47.04"},{"event":"cmd_output","timestamp":1607098187,"output":"7 [info] == Running Ppl.EctoRepo.Migrations.AddQueueFieldToPipelinesTable.change/0 forward\n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098187,"output":"2m\n16:09:47.048 [info] alter table pipelines\n\u001b[0m\u001b[22m\n16:09:47.048 [info] == Migrated in 0.0s\r"},{"event":"cmd_output","timestamp":1607098187,"output":"\n\u001b[0m\u001b[22m\n16:09:47.099 [info] == Running Ppl.EctoRepo.Migrations.FixJsonIndexesOnPipelineRequests"},{"event":"cmd_output","timestamp":1607098187,"output":"Table.up/0 forward\n\u001b[0m\u001b[22m\n16:09:47.100 [info] execute \"DROP INDEX IF EXISTS pipeline_requests_"},{"event":"cmd_output","timestamp":1607098187,"output":"request_args___organization_id__index;\"\n\u001b[0m\u001b[22m\n16:09:47.103 [info] execute \"DROP INDEX IF EXIS"},{"event":"cmd_output","timestamp":1607098187,"output":"TS pipeline_requests_request_args___requester_id__index;\"\n\u001b[0m\u001b[22m\n16:09:47.105 [info] create in"},{"event":"cmd_output","timestamp":1607098187,"output":"dex pipeline_requests_request_args___organization_id__index\n\u001b[0m\u001b[22m\n16:09:47.108 [info] create "},{"event":"cmd_output","timestamp":1607098187,"output":"index pipeline_requests_request_args___requester_id__index\n\u001b[0m\u001b[22m\n16:09:47.111 [info] == Migra"},{"event":"cmd_output","timestamp":1607098187,"output":"ted in 0.0s\n\u001b[0m\u001b[22m\n16:09:47.152 [info] == Running Ppl.EctoRepo.Migrations.AddIndexOnInsertedAt"},{"event":"cmd_output","timestamp":1607098187,"output":"OnPipelineRequestsTable.change/0 forward\n\u001b[0m\u001b[22m\n16:09:47.152 [info] create index pipeline_requ"},{"event":"cmd_output","timestamp":1607098187,"output":"ests_inserted_at_index\n\u001b[0m\u001b[22m\n16:09:47.156 [info] == Migrated in 0.0s\n\u001b[0m\u001b[22m\n16:09:47.201"},{"event":"cmd_output","timestamp":1607098187,"output":" [info] == Running Ppl.EctoRepo.Migrations.AddSourceArgsAndLabelFieldsToPipelines.change/0 forward\r"},{"event":"cmd_output","timestamp":1607098187,"output":"\n\u001b[0m\u001b[22m\n16:09:47.201 [info] alter table pipeline_requests\n\u001b[0m\u001b[22m\n16:09:47.202 [info] alte"},{"event":"cmd_output","timestamp":1607098187,"output":"r table pipelines\n\u001b[0m\u001b[22m\n16:09:47.203 [info] == Migrated in 0.0s\n\u001b[0m\u001b[22m\n16:09:47.247 [inf"},{"event":"cmd_output","timestamp":1607098187,"output":"o] == Running Ppl.EctoRepo.Migrations.AddIndexesOnLabelAndGitRefType.change/0 forward\n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098187,"output":"6:09:47.248 [info] create index pipelines_label_index\n\u001b[0m\u001b[22m\n16:09:47.251 [info] create index"},{"event":"cmd_output","timestamp":1607098187,"output":" pipeline_requests_source_args___git_ref_type__index\n\u001b[0m\u001b[22m\n16:09:47.254 [info] == Migrated in"},{"event":"cmd_output","timestamp":1607098187,"output":" 0.0s\n\u001b[0m\u001b[22m\n16:09:47.291 [info] == Running Ppl.EctoRepo.Migrations.AddAutoCancelFiledToPipeli"},{"event":"cmd_output","timestamp":1607098187,"output":"nesTabel.change/0 forward\n\u001b[0m\u001b[22m\n16:09:47.291 [info] alter table pipelines\n\u001b[0m\u001b[22m\n16:09:4"},{"event":"cmd_output","timestamp":1607098187,"output":"7.291 [info] == Migrated in 0.0s\n\u001b[0m\u001b[22m\n16:09:47.333 [info] == Running Ppl.EctoRepo.Migration"},{"event":"cmd_output","timestamp":1607098187,"output":"s.AddNewQueueModel.change/0 forward\n\u001b[0m\u001b[22m\n16:09:47.334 [info] create table queues\n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098187,"output":"\n16:09:47.338 [info] create index unique_queue_name_for_project\n\u001b[0m\u001b[22m\n16:09:47.341 [info] cr"},{"event":"cmd_output","timestamp":1607098187,"output":"eate index unique_queue_name_for_org\n\u001b[0m\u001b[22m\n16:09:47.343 [info] create index queues_project_id"},{"event":"cmd_output","timestamp":1607098187,"output":"_index\n\u001b[0m\u001b[22m\n16:09:47.345 [info] create index queues_organization_id_index\n\u001b[0m\u001b[22m\n16:09:"},{"event":"cmd_output","timestamp":1607098187,"output":"47.347 [info] alter table pipelines\n\u001b[0m\u001b[22m\n16:09:47.349 [info] == Migrated in 0.0s\n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098187,"output":"\n16:09:47.384 [info] == Running Ppl.EctoRepo.Migrations.RemoveOldQueueFieldFromPipelinesTable.chan"},{"event":"cmd_output","timestamp":1607098187,"output":"ge/0 forward\n\u001b[0m\u001b[22m\n16:09:47.384 [info] alter table pipelines\n\u001b[0m\u001b[22m\n16:09:47.386 [info] "},{"event":"cmd_output","timestamp":1607098187,"output":" == Migrated in 0.0s\n\u001b[0m\u001b[22m\n16:09:47.424 [info] == Running Ppl.EctoRepo.Migrations.AddInserted"},{"event":"cmd_output","timestamp":1607098187,"output":"AtIndexToPipelines.change/0 forward\n\u001b[0m\u001b[22m\n16:09:47.425 [info] create index pipelines_inserted"},{"event":"cmd_output","timestamp":1607098187,"output":"_at_index\n\u001b[0m\u001b[22m\n16:09:47.430 [info] == Migrated in 0.0s\n\u001b[0m\u001b[22m\n16:09:47.466 [info] == R"},{"event":"cmd_output","timestamp":1607098187,"output":"unning Ppl.EctoRepo.Migrations.AddQueueIdIndexToPipelines.change/0 forward\n\u001b[0m\u001b[22m\n16:09:47.467 "},{"event":"cmd_output","timestamp":1607098187,"output":"[info] create index pipelines_queue_id_index\n\u001b[0m\u001b[22m\n16:09:47.472 [info] == Migrated in 0.0s\n"},{"event":"cmd_output","timestamp":1607098187,"output":"\u001b[0m\u001b[22m\n16:09:47.501 [info] == Running Ppl.EctoRepo.Migrations.AddWfNumberToPipelinesTable.chang"},{"event":"cmd_output","timestamp":1607098187,"output":"e/0 forward\n\u001b[0m\u001b[22m\n16:09:47.502 [info] alter table pipelines\n\u001b[0m\u001b[22m\n16:09:47.505 [info] "},{"event":"cmd_output","timestamp":1607098187,"output":"== Migrated in 0.0s\n\u001b[0m\u001b[22m\n16:09:47.537 [info] == Running Ppl.EctoRepo.Migrations.AddInsertedA"},{"event":"cmd_output","timestamp":1607098187,"output":"tAndIdIndexToPipelinesTable.change/0 forward\n\u001b[0m\u001b[22m\n16:09:47.537 [info] create index pipelines"},{"event":"cmd_output","timestamp":1607098187,"output":"_inserted_at_DESC_NULLS_LAST_id_DESC_NULLS_LAST_index\n\u001b[0m\u001b[22m\n16:09:47.540 [info] == Migrated i"},{"event":"cmd_output","timestamp":1607098187,"output":"n 0.0s\n\u001b[0m\u001b[22m\n16:09:47.574 [info] == Running Ppl.EctoRepo.Migrations.AddPrioritiesFieldsForPpl"},{"event":"cmd_output","timestamp":1607098187,"output":"AndBlk.change/0 forward\n\u001b[0m\u001b[22m\n16:09:47.576 [info] alter table pipelines\n\u001b[0m\u001b[22m\n16:09:47."},{"event":"cmd_output","timestamp":1607098187,"output":"578 [info] alter table pipeline_blocks\n\u001b[0m\u001b[22m\n16:09:47.581 [info] == Migrated in 0.0s\n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098187,"output":"22m\n16:09:47.621 [info] == Running Ppl.EctoRepo.Migrations.AddLatestWorkflowsTable.change/0 forwar"},{"event":"cmd_output","timestamp":1607098187,"output":"d\n\u001b[0m\u001b[22m\n16:09:47.622 [info] create table latest_workflows\n\u001b[0m\u001b[22m\n16:09:47.627 [info] cr"},{"event":"cmd_output","timestamp":1607098187,"output":"eate index latest_workflows_organization_id_index\n\u001b[0m\u001b[22m\n16:09:47.630 [info] create index one_"},{"event":"cmd_output","timestamp":1607098187,"output":"wf_per_git_ref_on_project\n\u001b[0m\u001b[22m\n16:09:47.633 [info] == Migrated in 0.0s\n\u001b[0m\u001b[22m\n16:09:47."},{"event":"cmd_output","timestamp":1607098187,"output":"666 [info] == Running Ppl.EctoRepo.Migrations.AddParallelRunToPipelinesTable.change/0 forward\n\u001b[0m"},{"event":"cmd_output","timestamp":1607098187,"output":"\u001b[22m\n16:09:47.667 [info] alter table pipelines\n\u001b[0m\u001b[22m\n16:09:47.668 [info] == Migrated in 0."},{"event":"cmd_output","timestamp":1607098187,"output":"0s\n\u001b[0m\u001b[22m\n16:09:47.704 [info] == Running Ppl.EctoRepo.Migrations.AddComplTaskIdToPipelinesTabl"},{"event":"cmd_output","timestamp":1607098187,"output":"e.change/0 forward\n\u001b[0m\u001b[22m\n16:09:47.704 [info] alter table pipeline_sub_inits\n\u001b[0m\u001b[22m\n16:09"},{"event":"cmd_output","timestamp":1607098187,"output":":47.705 [info] alter table pipelines\n\u001b[0m\u001b[22m\n16:09:47.706 [info] == Migrated in 0.0s\n\u001b[0m"},{"event":"cmd_finished","timestamp":1607098187,"directive":"make console USER=root MIX_ENV=test CMD=\"mix do local.hex --force, local.rebar --force, deps.get, ecto.create, ecto.migrate\"","exit_code":0,"started_at":1607098142,"finished_at":1607098187},{"event":"cmd_started","timestamp":1607098187,"directive":"make console USER=root MIX_ENV=test CMD=\"mix do ecto.create -r Block.EctoRepo, ecto.migrate -r Block.EctoRepo\""},{"event":"cmd_output","timestamp":1607098187,"output":"docker run --network=host -e MIX_ENV=test -e DB_URL=\"ecto://postgres:PASSWORD@localhost/ppl_repo\" -e"},{"event":"cmd_output","timestamp":1607098187,"output":" DB_PASSWORD=\"postgres\" -e DB_USE_SSL=\"false\" -e BLOCK_DB_URL=\"ecto://postgres:PASSWORD@localhost/bl"},{"event":"cmd_output","timestamp":1607098187,"output":"ock_repo\" -e BLOCK_DB_PASSWORD=\"postgres\" -e BLOCK_DB_USE_SSL=\"false\" -e USER_CREDS_ENC_KEY_1=\"zsef6"},{"event":"cmd_output","timestamp":1607098187,"output":"S7fv98op1qf60M7GfOc3d6I5KvE\" -e GOFER_GRPC_URL=localhost:50055 -e RABBITMQ_URL=\"amqp://localhost:567"},{"event":"cmd_output","timestamp":1607098187,"output":"3\" -e TASK_API_URL=localhost:50051 -e PPL_QUEUE_LIMIT=\"9\" -e IN_FLIGHT_DESCRIBE_LIMIT=\"50\" -e IN_FLI"},{"event":"cmd_output","timestamp":1607098187,"output":"GHT_LIST_LIMIT=\"50\" -e REPO_PROXY_GRPC_URL=localhost:51000 -e PAPARAZZO_URL=localhost:12345 -e REPOH"},{"event":"cmd_output","timestamp":1607098187,"output":"UB_GRPC_URL=localhost:51500 -e USER_GRPC_URL=localhost:51500 -e ARTIFACTHUB_GRPC_URL=localhost:51500"},{"event":"cmd_output","timestamp":1607098187,"output":" -v $PWD/home_dir:/home/dev -v $PWD/..:/home/dev/pipelines --rm --workdir=/home/dev/pipelines/ppl -"},{"event":"cmd_output","timestamp":1607098187,"output":"-user=root -it renderedtext/elixir-dev:1.6.5-v2 mix do ecto.create -r Block.EctoRepo, ecto.migrate -"},{"event":"cmd_output","timestamp":1607098192,"output":"r Block.EctoRepo\nThe database for Block.EctoRepo has been created\n\u001b[22m\n16:09:52.692 [info] == R"},{"event":"cmd_output","timestamp":1607098192,"output":"unning Block.EctoRepo.Migrations.AddBlockRequestsTable.change/0 forward\n\u001b[0m\u001b[22m\n16:09:52.692 [in"},{"event":"cmd_output","timestamp":1607098192,"output":"fo] create table block_requests\n\u001b[0m\u001b[22m\n16:09:52.697 [info] create index ppl_id_and_blk_ind_un"},{"event":"cmd_output","timestamp":1607098192,"output":"ique_index\n\u001b[0m\u001b[22m\n16:09:52.715 [info] == Migrated in 0.0s\n\u001b[0m\u001b[22m\n16:09:52.823 [info] == "},{"event":"cmd_output","timestamp":1607098192,"output":"Running Block.EctoRepo.Migrations.AddBlockBuildsTable.change/0 forward\n\u001b[0m\u001b[22m\n16:09:52.823 [inf"},{"event":"cmd_output","timestamp":1607098192,"output":"o] create table block_builds\n\u001b[0m\u001b[22m\n16:09:52.831 [info] create index block_builds_in_scheduli"},{"event":"cmd_output","timestamp":1607098192,"output":"ng_state_updated_at_index\n\u001b[0m\u001b[22m\n16:09:52.834 [info] == Migrated in 0.0s\n\u001b[0m\u001b[22m\n16:09:52."},{"event":"cmd_output","timestamp":1607098192,"output":"875 [info] == Running Block.EctoRepo.Migrations.AddBlocksTable.change/0 forward\n\u001b[0m\u001b[22m\n16:09:5"},{"event":"cmd_output","timestamp":1607098192,"output":"2.876 [info] create table blocks\n\u001b[0m\u001b[22m\n16:09:52.883 [info] create index blocks_in_scheduling"},{"event":"cmd_output","timestamp":1607098192,"output":"_state_updated_at_index\n\u001b[0m\u001b[22m\n16:09:52.886 [info] create index blocks_block_id_index\n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098192,"output":"2m\n16:09:52.888 [info] == Migrated in 0.0s\n\u001b[0m\u001b[22m\n16:09:52.929 [info] == Running Block.EctoR"},{"event":"cmd_output","timestamp":1607098192,"output":"epo.Migrations.AddBlockSubpplsTable.change/0 forward\n\u001b[0m\u001b[22m\n16:09:52.930 [info] create table b"},{"event":"cmd_output","timestamp":1607098192,"output":"lock_subppls\n\u001b[0m\u001b[22m\n16:09:52.939 [info] create index block_subppls_in_scheduling_state_updated"},{"event":"cmd_output","timestamp":1607098192,"output":"_at_index\n\u001b[0m\u001b[22m\n16:09:52.945 [info] == Migrated in 0.0s\n\u001b[0m\u001b[22m\n16:09:52.979 [info] == R"},{"event":"cmd_output","timestamp":1607098192,"output":"unning Block.EctoRepo.Migrations.AddDeleteCascadeToFkeyConstraints.up/0 forward\n\u001b[0m\u001b[22m\n16:09:52"},{"event":"cmd_output","timestamp":1607098192,"output":".980 [info] drop constraint blocks_block_id_fkey from table blocks\n\u001b[0m\u001b[22m\n16:09:52.983 [info] "},{"event":"cmd_output","timestamp":1607098192,"output":" alter table blocks\n\u001b[0m\u001b[22m\n16:09:52.987 [info] drop constraint block_builds_block_id_fkey from"},{"event":"cmd_output","timestamp":1607098192,"output":" table block_builds\n\u001b[0m\u001b[22m\n16:09:52.988 [info] alter table block_builds\n\u001b[0m\u001b[22m\n16:09:52.9"},{"event":"cmd_output","timestamp":1607098192,"output":"93 [info] drop constraint block_subppls_block_id_fkey from table block_subppls\n\u001b[0m\u001b[22m\n16:09:52"},{"event":"cmd_output","timestamp":1607098193,"output":".995 [info] alter table block_subppls\n\u001b[0m\u001b[22m\n16:09:52.998 [info] == Migrated in 0.0s\n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098193,"output":"2m\n16:09:53.083 [info] == Running Block.EctoRepo.Migrations.ChangeBlockBuildsExecutableIdToBuildRe"},{"event":"cmd_output","timestamp":1607098193,"output":"questId.up/0 forward\n\u001b[0m\u001b[22m\n16:09:53.084 [info] alter table block_builds\n\u001b[0m\u001b[22m\n16:09:53."},{"event":"cmd_output","timestamp":1607098193,"output":"097 [info] alter table block_builds\n\u001b[0m\u001b[22m\n16:09:53.099 [info] == Migrated in 0.0s\n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098193,"output":"\n16:09:53.145 [info] == Running Block.EctoRepo.Migrations.AddTaskIdToBlockBuildsTable.up/0 forward"},{"event":"cmd_output","timestamp":1607098193,"output":"\n\u001b[0m\u001b[22m\n16:09:53.146 [info] alter table block_builds\n\u001b[0m\u001b[22m\n16:09:53.152 [info] == Migra"},{"event":"cmd_output","timestamp":1607098193,"output":"ted in 0.0s\n\u001b[0m\u001b[22m\n16:09:53.192 [info] == Running Block.EctoRepo.Migrations.AddIndexOnBlockIdT"},{"event":"cmd_output","timestamp":1607098193,"output":"oBlockBuildsTable.change/0 forward\n\u001b[0m\u001b[22m\n16:09:53.192 [info] create index block_builds_block_"},{"event":"cmd_output","timestamp":1607098193,"output":"id_index\n\u001b[0m\u001b[22m\n16:09:53.206 [info] == Migrated in 0.0s\n\u001b[0m\u001b[22m\n16:09:53.251 [info] == Ru"},{"event":"cmd_output","timestamp":1607098193,"output":"nning Block.EctoRepo.Migrations.AddSourceArgsToBlockRequestTable.change/0 forward\n\u001b[0m\u001b[22m\n16:09:"},{"event":"cmd_output","timestamp":1607098193,"output":"53.251 [info] alter table block_requests\n\u001b[0m\u001b[22m\n16:09:53.252 [info] == Migrated in 0.0s\n\u001b[0m"},{"event":"cmd_output","timestamp":1607098193,"output":"\u001b[22m\n16:09:53.284 [info] == Running Block.EctoRepo.Migrations.AddStateIndexToBlockBuildsTable.cha"},{"event":"cmd_output","timestamp":1607098193,"output":"nge/0 forward\n\u001b[0m\u001b[22m\n16:09:53.285 [info] create index block_builds_state_index\n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098193,"output":"09:53.289 [info] == Migrated in 0.0s\n\u001b[0m"},{"event":"cmd_finished","timestamp":1607098193,"directive":"make console USER=root MIX_ENV=test CMD=\"mix do ecto.create -r Block.EctoRepo, ecto.migrate -r Block.EctoRepo\"","exit_code":0,"started_at":1607098187,"finished_at":1607098193},{"event":"cmd_started","timestamp":1607098193,"directive":"time make integration-test USER=root"},{"event":"cmd_output","timestamp":1607098193,"output":"make console MIX_ENV=test USER=root CMD=\"mix test --only integration\"\nmake[1]: Entering directory '"},{"event":"cmd_output","timestamp":1607098193,"output":"/home/semaphore/alles/plumber/ppl'\ndocker run --network=host -e MIX_ENV=test -e DB_URL=\"ecto://post"},{"event":"cmd_output","timestamp":1607098193,"output":"gres:PASSWORD@localhost/ppl_repo\" -e DB_PASSWORD=\"postgres\" -e DB_USE_SSL=\"false\" -e BLOCK_DB_URL=\"e"},{"event":"cmd_output","timestamp":1607098193,"output":"cto://postgres:PASSWORD@localhost/block_repo\" -e BLOCK_DB_PASSWORD=\"postgres\" -e BLOCK_DB_USE_SSL=\"f"},{"event":"cmd_output","timestamp":1607098193,"output":"alse\" -e USER_CREDS_ENC_KEY_1=\"zsef6S7fv98op1qf60M7GfOc3d6I5KvE\" -e GOFER_GRPC_URL=localhost:50055 -"},{"event":"cmd_output","timestamp":1607098193,"output":"e RABBITMQ_URL=\"amqp://localhost:5673\" -e TASK_API_URL=localhost:50051 -e PPL_QUEUE_LIMIT=\"9\" -e IN_"},{"event":"cmd_output","timestamp":1607098193,"output":"FLIGHT_DESCRIBE_LIMIT=\"50\" -e IN_FLIGHT_LIST_LIMIT=\"50\" -e REPO_PROXY_GRPC_URL=localhost:51000 -e PA"},{"event":"cmd_output","timestamp":1607098193,"output":"PARAZZO_URL=localhost:12345 -e REPOHUB_GRPC_URL=localhost:51500 -e USER_GRPC_URL=localhost:51500 -e "},{"event":"cmd_output","timestamp":1607098193,"output":"ARTIFACTHUB_GRPC_URL=localhost:51500 -v $PWD/home_dir:/home/dev -v $PWD/..:/home/dev/pipelines --rm"},{"event":"cmd_output","timestamp":1607098193,"output":" --workdir=/home/dev/pipelines/ppl --user=root -it renderedtext/elixir-dev:1.6.5-v2 mix test --only "},{"event":"cmd_output","timestamp":1607098196,"output":"integration\n\u001b[22m\n16:09:56.576 [info] Executing sys2app callback: {Ppl.Sys2app, :callback, []}\n\u001b"},{"event":"cmd_output","timestamp":1607098196,"output":"[0m\u001b[22m\n16:09:56.682 [info] Watchman sending metrics to localhost:8125 with prefix 'ppl.test'\n\u001b["},{"event":"cmd_output","timestamp":1607098197,"output":"0m16:09:56.990 [error] Supervisor 'Elixir.Logger.Supervisor' had child 'Elixir.Logger.ErrorHandler' "},{"event":"cmd_output","timestamp":1607098197,"output":"started with 'Elixir.Logger.Watcher':start_link({error_logger,'Elixir.Logger.ErrorHandler',{true,fal"},{"event":"cmd_output","timestamp":1607098197,"output":"se,500}}) at <0.537.0> exit with reason normal in context child_terminated\r\n16:09:57.071 [info] App"},{"event":"cmd_output","timestamp":1607098197,"output":"lication lager started on node nonode@nohost\r\n16:09:57.135 [info] Application xmerl started on node"},{"event":"cmd_output","timestamp":1607098197,"output":" nonode@nohost\r\n16:09:57.153 [info] Application ranch_proxy_protocol started on node nonode@nohost\r"},{"event":"cmd_output","timestamp":1607098197,"output":"\n16:09:57.167 [info] Application recon started on node nonode@nohost\r\n16:09:57.167 [info] Applicat"},{"event":"cmd_output","timestamp":1607098197,"output":"ion rabbit_common started on node nonode@nohost\r\n16:09:57.222 [info] Application amqp_client starte"},{"event":"cmd_output","timestamp":1607098197,"output":"d on node nonode@nohost\r\n16:09:57.222 [info] Application amqp started on node nonode@nohost\r\n16:09"},{"event":"cmd_output","timestamp":1607098197,"output":":57.241 [info] Application tackle started on node nonode@nohost\r\n16:09:57.267 [info] Application co"},{"event":"cmd_output","timestamp":1607098197,"output":"nnection started on node nonode@nohost\r\n16:09:57.306 [info] Application db_connection started on no"},{"event":"cmd_output","timestamp":1607098197,"output":"de nonode@nohost\r\n16:09:57.328 [info] Application decimal started on node nonode@nohost\r\n16:09:57."},{"event":"cmd_output","timestamp":1607098197,"output":"358 [info] Application postgrex started on node nonode@nohost\r\n16:09:57.386 [info] Application pool"},{"event":"cmd_output","timestamp":1607098197,"output":"boy started on node nonode@nohost\r\n16:09:57.402 [info] Application ecto started on node nonode@noho"},{"event":"cmd_output","timestamp":1607098197,"output":"st\r\n16:09:57.413 [info] Application paginator started on node nonode@nohost\r\n16:09:57.506 [info] A"},{"event":"cmd_output","timestamp":1607098197,"output":"pplication runtime_tools started on node nonode@nohost\r\n16:09:57.515 [info] Application artificery "},{"event":"cmd_output","timestamp":1607098197,"output":"started on node nonode@nohost\r\n16:09:57.515 [info] Application distillery started on node nonode@no"},{"event":"cmd_output","timestamp":1607098197,"output":"host\r\n16:09:57.524 [info] Application observer_cli started on node nonode@nohost\r\n16:09:57.533 [in"},{"event":"cmd_output","timestamp":1607098197,"output":"fo] Application cloak started on node nonode@nohost\r\n16:09:57.734 [info] Application yamerl started"},{"event":"cmd_output","timestamp":1607098197,"output":" on node nonode@nohost\r\n16:09:57.746 [info] Application yaml_elixir started on node nonode@nohost\r\r"},{"event":"cmd_output","timestamp":1607098197,"output":"\n16:09:57.775 [info] Application jesse started on node nonode@nohost\r\n16:09:57.803 [info] Applicati"},{"event":"cmd_output","timestamp":1607098197,"output":"on ex_json_schema started on node nonode@nohost\r\n16:09:57.818 [info] Application spec started on no"},{"event":"cmd_output","timestamp":1607098197,"output":"de nonode@nohost\r\n16:09:57.862 [info] Application wormhole started on node nonode@nohost\r\n16:09:57"},{"event":"cmd_output","timestamp":1607098197,"output":".862 [info] Application util started on node nonode@nohost\r\n16:09:57.909 [info] Application definit"},{"event":"cmd_output","timestamp":1607098197,"output":"ion_validator started on node nonode@nohost\r\n16:09:57.923 [info] Application job_matrix started on "},{"event":"cmd_output","timestamp":1607098197,"output":"node nonode@nohost\r\n16:09:57.951 [info] Application log_tee started on node nonode@nohost\r\n16:09:5"},{"event":"cmd_output","timestamp":1607098197,"output":"7.976 [info] Application uuid started on node nonode@nohost\r\n16:09:57.979 [info] Application looper"},{"event":"cmd_output","timestamp":1607098197,"output":" started on node nonode@nohost\r\n16:09:57.988 [info] Application when started on node nonode@nohost\r"},{"event":"cmd_output","timestamp":1607098198,"output":"\n16:09:58.024 [info] Application cowlib started on node nonode@nohost\r\n16:09:58.046 [info] Applica"},{"event":"cmd_output","timestamp":1607098198,"output":"tion cowboy started on node nonode@nohost\r\n16:09:58.066 [info] Application gun started on node nono"},{"event":"cmd_output","timestamp":1607098198,"output":"de@nohost\r\n16:09:58.067 [info] Application grpc started on node nonode@nohost\r\n16:09:58.067 [info]"},{"event":"cmd_output","timestamp":1607098198,"output":" Application dependencies started on node nonode@nohost\r\n16:09:58.078 [info] Application proto star"},{"event":"cmd_output","timestamp":1607098198,"output":"ted on node nonode@nohost\r\n16:09:58.177 [info] Application block started on node nonode@nohost\r\n16"},{"event":"cmd_output","timestamp":1607098198,"output":":09:58.214 [info] Application gofer_client started on node nonode@nohost\r\n16:09:58.230 [info] Appli"},{"event":"cmd_output","timestamp":1607098198,"output":"cation grpc_mock started on node nonode@nohost\r\n16:09:58.240 [info] Application scrivener started o"},{"event":"cmd_output","timestamp":1607098198,"output":"n node nonode@nohost\r\n16:09:58.242 [info] Application scrivener_ecto started on node nonode@nohost\r"},{"event":"cmd_output","timestamp":1607098198,"output":"\n\u001b[22m\n16:09:58.245 [info] Watchman sending metrics to localhost:8125 with prefix 'ppl.test'\n\u001b[0"},{"event":"cmd_output","timestamp":1607098198,"output":"m\u001b[22m\n16:09:58.310 [info] Application watchman exited: :stopped\n\u001b[0m16:09:58.320 [info] Applicat"},{"event":"cmd_output","timestamp":1607098198,"output":"ion watchman exited with reason: stopped\r\n16:09:58.320 [info] Application watchman started on node "},{"event":"cmd_output","timestamp":1607098198,"output":"nonode@nohost\r\n\u001b[22m\n16:09:58.672 [info] Elixir.Ppl.Grpc.ProcessCounter: type: :describe\n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098198,"output":"2m\n16:09:58.673 [info] Elixir.Ppl.Grpc.ProcessCounter: type: :list\n\u001b[0m\u001b[22m\n16:09:58.776 [info]"},{"event":"cmd_output","timestamp":1607098198,"output":" Running Ppl.Admin.Server,Ppl.Grpc.Server,Plumber.WorkflowAPI.Server,Ppl.Grpc.HealthCheck with Cowb"},{"event":"cmd_output","timestamp":1607098198,"output":"oy using http://0.0.0.0:50053\n\u001b[0m16:09:58.777 [info] Application ppl started on node nonode@nohost"},{"event":"cmd_output","timestamp":1607098199,"output":"\r\n16:09:58.843 [info] Application ex_unit started on node nonode@nohost\r\nIncluding tags: [:integra"},{"event":"cmd_output","timestamp":1607098200,"output":"tion]\nExcluding tags: [:test, {:integration, true}]\n\n\u001b[33mwarning: \u001b[0mvariable \"ppl_id_1\" is unu"},{"event":"cmd_output","timestamp":1607098200,"output":"sed\n test/actions_test.exs:239\n\n\u001b[33mwarning: \u001b[0munused alias Result\n test/actions_test.exs:1"},{"event":"cmd_output","timestamp":1607098200,"output":"1\n\n\u001b[33mwarning: \u001b[0munused alias ResultReason\n test/actions_test.exs:11\n\n\u001b[33mwarning: \u001b[0mun"},{"event":"cmd_output","timestamp":1607098200,"output":"used alias State\n test/actions_test.exs:11\n\n\u001b[33mwarning: \u001b[0munused alias Timestamp\n test/act"},{"event":"cmd_output","timestamp":1607098200,"output":"ions_test.exs:10\n\n\u001b[33mwarning: \u001b[0munused alias Result\n test/definition_reviser/global_job_conf"},{"event":"cmd_output","timestamp":1607098200,"output":"ig_test.exs:4\n\n\u001b[33mwarning: \u001b[0munused alias Result\n test/definition_reviser/jobs_godfather_tes"},{"event":"cmd_output","timestamp":1607098200,"output":"t.exs:6\n\n\u001b[33mwarning: \u001b[0munused alias ResultReason\n test/definition_reviser/jobs_godfather_tes"},{"event":"cmd_output","timestamp":1607098200,"output":"t.exs:6\n\n\u001b[33mwarning: \u001b[0munused alias Result\n test/definition_reviser/when_validator_test.exs:"},{"event":"cmd_output","timestamp":1607098200,"output":"5\n\n\u001b[33mwarning: \u001b[0munused alias ResultReason\n test/definition_reviser/when_validator_test.exs:"},{"event":"cmd_output","timestamp":1607098200,"output":"5\n\n\u001b[33mwarning: \u001b[0mvariable \"ppl\" is unused\n test/e2e/auto_cancel_test.exs:23\n\n\u001b[33mwarning:"},{"event":"cmd_output","timestamp":1607098200,"output":" \u001b[0mvariable \"ppl\" is unused\n test/e2e/auto_cancel_test.exs:66\n\n\u001b[33mwarning: \u001b[0mvariable \"ppl"},{"event":"cmd_output","timestamp":1607098200,"output":"\" is unused\n test/e2e/auto_cancel_test.exs:80\n\n\u001b[33mwarning: \u001b[0munused alias Result\n test/e2e"},{"event":"cmd_output","timestamp":1607098200,"output":"/auto_cancel_test.exs:5\n\n\u001b[33mwarning: \u001b[0munused alias ResultReason\n test/e2e/auto_cancel_test."},{"event":"cmd_output","timestamp":1607098201,"output":"exs:5\n\n\u001b[33mwarning: \u001b[0munused alias Result\n test/e2e/compose_style_ci_test.exs:5\n\n\u001b[33mwarni"},{"event":"cmd_output","timestamp":1607098201,"output":"ng: \u001b[0mfunction changes/3 is unused\n test/e2e/change_in_test.exs:401\n\n\u001b[33mwarning: \u001b[0munused "},{"event":"cmd_output","timestamp":1607098201,"output":"alias Result\n test/e2e/free_topology_test.exs:5\n\n\u001b[33mwarning: \u001b[0munused alias Result\n test/e"},{"event":"cmd_output","timestamp":1607098201,"output":"2e/looper_execute_now_test.exs:5\n\n\u001b[33mwarning: \u001b[0munused alias Result\n test/e2e/parallelism_su"},{"event":"cmd_output","timestamp":1607098201,"output":"pport_test.exs:5\n\n\u001b[33mwarning: \u001b[0munused alias ResultReason\n test/e2e/parallelism_support_test"},{"event":"cmd_output","timestamp":1607098201,"output":".exs:5\n\n\u001b[33mwarning: \u001b[0munused alias Result\n test/e2e/task_file_test.exs:5\n\n\u001b[33mwarning: \u001b["},{"event":"cmd_output","timestamp":1607098201,"output":"0munused alias ResultReason\n test/e2e/task_file_test.exs:5\n\n\u001b[33mwarning: \u001b[0mvariable \"pid\" is "},{"event":"cmd_output","timestamp":1607098202,"output":"unused\n test/org_events_consumer_test.exs:54\n\n\u001b[33mwarning: \u001b[0munused alias ResultReason\n tes"},{"event":"cmd_output","timestamp":1607098202,"output":"t/ppl_blocks/model/ppl_block_connections_test.exs:4\n\n\u001b[33mwarning: \u001b[0munused alias State\n test/"},{"event":"cmd_output","timestamp":1607098203,"output":"ppl_blocks/model/ppl_block_connections_test.exs:4\n\n\u001b[33mwarning: \u001b[0munused alias PplsQueries\n t"},{"event":"cmd_output","timestamp":1607098203,"output":"est/ppl_blocks/stm_handler/execution_time_limit_test.exs:6\n\n\u001b[33mwarning: \u001b[0munused alias Result\r"},{"event":"cmd_output","timestamp":1607098203,"output":"\n test/ppl_blocks/stm_handler/filters_test.exs:5\n\n\u001b[33mwarning: \u001b[0mvariable \"n_token\" is unused\r"},{"event":"cmd_output","timestamp":1607098203,"output":"\n test/grpc/server_test.exs:1221\n\n\u001b[33mwarning: \u001b[0mvariable \"req_args\" is unused\n test/ppl_blo"},{"event":"cmd_output","timestamp":1607098203,"output":"cks/stm_handler/run_test.exs:124\n\n\u001b[33mwarning: \u001b[0munused alias PplsQueries\n test/ppl_blocks/st"},{"event":"cmd_output","timestamp":1607098204,"output":"m_handler/run_test.exs:8\n\n\u001b[33mwarning: \u001b[0munused alias Result\n test/ppl_blocks/stm_handler/ski"},{"event":"cmd_output","timestamp":1607098204,"output":"p_block_test.exs:5\n\n\u001b[33mwarning: \u001b[0munused alias PplsQueries\n test/ppl_blocks/stm_handler/stat"},{"event":"cmd_output","timestamp":1607098205,"output":"e_transition_test.exs:4\n\n\u001b[33mwarning: \u001b[0mvariable \"task_id\" is unused\n test/ppl_sub_inits/stm_"},{"event":"cmd_output","timestamp":1607098205,"output":"handler/compilation/task_client_test.exs:42\n\n\u001b[33mwarning: \u001b[0munused alias Result\n test/ppls/be"},{"event":"cmd_output","timestamp":1607098206,"output":"holder_test.exs:4\n\n\u001b[33mwarning: \u001b[0munused alias PplsQueries\n test/ppls/model/ppls_queuing_test"},{"event":"cmd_output","timestamp":1607098206,"output":".exs:6\n\n\u001b[33mwarning: \u001b[0mvariable \"ind\" is unused\n test/ppls/model/ppls_queries_test.exs:345\n\r"},{"event":"cmd_output","timestamp":1607098206,"output":"\n\u001b[33mwarning: \u001b[0mvariable \"ind\" is unused\n test/ppls/model/ppls_queries_test.exs:349\n\n\u001b[33mwar"},{"event":"cmd_output","timestamp":1607098206,"output":"ning: \u001b[0munused alias Credentials\n test/ppls/stm_handler/event_publishing_test.exs:6\n\n\u001b[33mwarn"},{"event":"cmd_output","timestamp":1607098206,"output":"ing: \u001b[0munused alias PipelineService\n test/ppls/stm_handler/event_publishing_test.exs:8\n\n\u001b[33mw"},{"event":"cmd_output","timestamp":1607098206,"output":"arning: \u001b[0munused alias ScheduleRequest\n test/ppls/stm_handler/event_publishing_test.exs:8\n\n\u001b[3"},{"event":"cmd_output","timestamp":1607098206,"output":"3mwarning: \u001b[0mvariable \"ppl\" is unused\n test/ppls/stm_handler/initializing_test.exs:84\n\n\u001b[33mwa"},{"event":"cmd_output","timestamp":1607098207,"output":"rning: \u001b[0mvariable \"ppl\" is unused\n test/ppls/stm_handler/initializing_test.exs:88\n\n\u001b[33mwarnin"},{"event":"cmd_output","timestamp":1607098207,"output":"g: \u001b[0mvariable \"queue\" is unused\n test/queues/model/queues_queries_test.exs:41\n\n\u001b[33mwarning: \u001b"},{"event":"cmd_output","timestamp":1607098207,"output":"[0mvariable \"queue\" is unused\n test/queues/model/queues_queries_test.exs:50\n\n\u001b[33mwarning: \u001b[0mv"},{"event":"cmd_output","timestamp":1607098207,"output":"ariable \"paramas\" is unused\n test/queues/model/queues_queries_test.exs:52\n\n\u001b[33mwarning: \u001b[0mvar"},{"event":"cmd_output","timestamp":1607098207,"output":"iable \"queues\" is unused\n test/queues/model/queues_queries_test.exs:119\n\n\u001b[33mwarning: \u001b[0mvaria"},{"event":"cmd_output","timestamp":1607098207,"output":"ble \"req\" is unused\n test/user_client_test.exs:35\n\n\u001b[33mwarning: \u001b[0mvariable \"next_token\" is un"},{"event":"cmd_output","timestamp":1607098207,"output":"used\n test/workflow/workflow_queries_test.exs:68\n\n\u001b[33mwarning: \u001b[0mvariable \"previous_token\" is"},{"event":"cmd_output","timestamp":1607098207,"output":" unused\n test/workflow/workflow_queries_test.exs:69\n\n\u001b[33mwarning: \u001b[0mvariable \"next_token\" is "},{"event":"cmd_output","timestamp":1607098207,"output":"unused\n test/workflow/workflow_queries_test.exs:125\n\n\u001b[33mwarning: \u001b[0mvariable \"previous_token\""},{"event":"cmd_output","timestamp":1607098207,"output":" is unused\n test/workflow/workflow_queries_test.exs:126\n\n\u001b[33mwarning: \u001b[0mvariable \"next_token\""},{"event":"cmd_output","timestamp":1607098207,"output":" is unused\n test/workflow/workflow_queries_test.exs:178\n\n\u001b[33mwarning: \u001b[0mvariable \"previous_to"},{"event":"cmd_output","timestamp":1607098208,"output":"ken\" is unused\n test/workflow/workflow_queries_test.exs:179\n\n\u001b[33mwarning: \u001b[0mvariable \"message"},{"event":"cmd_output","timestamp":1607098208,"output":"\" is unused\n test/workflow/workflow_api_server_test.exs:602\n\n\u001b[33mwarning: \u001b[0mvariable \"tot_ent"},{"event":"cmd_output","timestamp":1607098208,"output":"ries\" is unused\n test/workflow/workflow_api_server_test.exs:651\n\n\u001b[33mwarning: \u001b[0mvariable \"tot"},{"event":"cmd_output","timestamp":1607098208,"output":"_pages\" is unused\n test/workflow/workflow_api_server_test.exs:651\n\n\u001b[33mwarning: \u001b[0mvariable \"t"},{"event":"cmd_output","timestamp":1607098208,"output":"ot_pages\" is unused\n test/workflow/workflow_api_server_test.exs:658\n\n\u001b[33mwarning: \u001b[0mvariable "},{"event":"cmd_output","timestamp":1607098208,"output":"\"tot_entries\" is unused\n test/workflow/workflow_api_server_test.exs:659\n\n\u001b[33mwarning: \u001b[0mvaria"},{"event":"cmd_output","timestamp":1607098208,"output":"ble \"ind\" is unused\n test/workflow/workflow_api_server_test.exs:681\n\n\u001b[33mwarning: \u001b[0mvariable "},{"event":"cmd_output","timestamp":1607098208,"output":"\"token\" is unused\n test/workflow/workflow_api_server_test.exs:841\n\n\u001b[33mwarning: \u001b[0mvariable \"a"},{"event":"cmd_output","timestamp":1607098208,"output":"\" is unused\n test/workflow/workflow_api_server_test.exs:846\n\n\u001b[33mwarning: \u001b[0mvariable \"i\" is u"},{"event":"cmd_output","timestamp":1607098208,"output":"nused\n test/workflow/workflow_api_server_test.exs:847\n\n\u001b[33mwarning: \u001b[0mvariable \"a\" is unused\r"},{"event":"cmd_output","timestamp":1607098208,"output":"\n test/workflow/workflow_api_server_test.exs:852\n\n\u001b[33mwarning: \u001b[0mvariable \"i\" is unused\n tes"},{"event":"cmd_output","timestamp":1607098208,"output":"t/workflow/workflow_api_server_test.exs:853\n\n\u001b[33mwarning: \u001b[0mvariable \"token\" is unused\n test/"},{"event":"cmd_output","timestamp":1607098208,"output":"workflow/workflow_api_server_test.exs:863\n\n\u001b[33mwarning: \u001b[0mvariable \"a\" is unused\n test/workfl"},{"event":"cmd_output","timestamp":1607098208,"output":"ow/workflow_api_server_test.exs:868\n\n\u001b[33mwarning: \u001b[0mvariable \"i\" is unused\n test/workflow/wor"},{"event":"cmd_output","timestamp":1607098208,"output":"kflow_api_server_test.exs:869\n\n\u001b[33mwarning: \u001b[0mvariable \"a\" is unused\n test/workflow/workflow_"},{"event":"cmd_output","timestamp":1607098208,"output":"api_server_test.exs:874\n\n\u001b[33mwarning: \u001b[0mvariable \"i\" is unused\n test/workflow/workflow_api_se"},{"event":"cmd_output","timestamp":1607098208,"output":"rver_test.exs:875\n\n\nPlumber.WorkflowAPI.Server.Test\n * test gRPC list() - filter by requester_i"},{"event":"cmd_output","timestamp":1607098208,"output":"d\r * test gRPC list() - filter by requester_id (skipped)\n * test gRPC list_grouped() - returns la"},{"event":"cmd_output","timestamp":1607098208,"output":"test workflow per distinct label when given valid params\u001b[22m\n16:10:08.715 [info] Request: 'run: %"},{"event":"cmd_output","timestamp":1607098208,"output":"{\"branch_id\" => \"9c4b8feb-415b-4637-ac1e-e82bcf8bd02f\", \"branch_name\" => \"master\", \"client_id\" => \"f"},{"event":"cmd_output","timestamp":1607098208,"output":"bc724dd-5ca0-47df-8b7d-2b6be1bd9ee7\", \"commit_sha\" => \"75891a4469\", \"definition_file\" => \"\", \"hook_i"},{"event":"cmd_output","timestamp":1607098208,"output":"d\" => \"branch\", \"label\" => \"master-0\", \"organization_id\" => \"30948249-89ce-4b01-bbf0-13c50974a1d0\", "},{"event":"cmd_output","timestamp":1607098208,"output":"\"owner\" => \"rt\", \"project_id\" => \"list_grouped\", \"repo_name\" => \"2_basic\", \"request_token\" => \"2debe"},{"event":"cmd_output","timestamp":1607098208,"output":"920-364b-11eb-ba5a-5254005464e2\", \"requester_id\" => \"6b5b6b2c-b619-435d-a60d-549e852d6d02\", \"service"},{"event":"cmd_output","timestamp":1607098208,"output":"\" => \"local\", \"snapshot_id\" => \"\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"tr"},{"event":"cmd_output","timestamp":1607098208,"output":"iggered_by\" => \"hook\", \"wf_id\" => \"c77a4d68-886d-441f-b080-96d2ff13ff51\"}\n\u001b[0m\u001b[22m\n16:10:08.821 ["},{"event":"cmd_output","timestamp":1607098208,"output":"info] ppl_id: f8417768-647c-4f8c-9f21-79ee3579d746, type: PplRequests, event: persisted schedule re"},{"event":"cmd_output","timestamp":1607098208,"output":"quest with request_token: 2debe920-364b-11eb-ba5a-5254005464e2, origin: Elixir.Ppl.PplRequests.Model"},{"event":"cmd_output","timestamp":1607098208,"output":".PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:08.831 [info] ppl_id: f8417768-647c"},{"event":"cmd_output","timestamp":1607098208,"output":"-4f8c-9f21-79ee3579d746, type: Ppls, state: initializing, event: initializing, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098208,"output":"igin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:08.865 [info] "},{"event":"cmd_output","timestamp":1607098208,"output":"Project list_grouped and branch masterlatest_wf details updated: \"wf_id: c77a4d68-886d-441f-b080-96d"},{"event":"cmd_output","timestamp":1607098208,"output":"2ff13ff51, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:10:08.891 [info] Persisted ppl_sub_init for pipeline with p"},{"event":"cmd_output","timestamp":1607098208,"output":"pl_id: f8417768-647c-4f8c-9f21-79ee3579d746: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Sche"},{"event":"cmd_output","timestamp":1607098208,"output":"ma.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 1, in_"},{"event":"cmd_output","timestamp":1607098208,"output":"scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:10:08.871101], pipeline_reque"},{"event":"cmd_output","timestamp":1607098208,"output":"sts: #Ecto.Association.NotLoaded, ppl_id: \"f8417768-64"},{"event":"cmd_output","timestamp":1607098208,"output":"7c-4f8c-9f21-79ee3579d746\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", te"},{"event":"cmd_output","timestamp":1607098208,"output":"rminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:08.871112]}\n\u001b[0m"},{"event":"cmd_output","timestamp":1607098208,"output":"\u001b[22m\n16:10:08.948 [info] Request: 'run: %{\"branch_id\" => \"1c59eb04-df20-445f-8298-656a653fa20a\", "},{"event":"cmd_output","timestamp":1607098208,"output":"\"branch_name\" => \"master\", \"client_id\" => \"cdaaed5d-7796-4cf4-80d8-af557c194661\", \"commit_sha\" => \"7"},{"event":"cmd_output","timestamp":1607098208,"output":"5891a4469\", \"definition_file\" => \"\", \"hook_id\" => \"branch\", \"label\" => \"master-1\", \"organization_id\""},{"event":"cmd_output","timestamp":1607098208,"output":" => \"b58fea44-f79c-4966-8292-b315d6a60b77\", \"owner\" => \"rt\", \"project_id\" => \"list_grouped\", \"repo_n"},{"event":"cmd_output","timestamp":1607098208,"output":"ame\" => \"2_basic\", \"request_token\" => \"2e21dcba-364b-11eb-89af-5254005464e2\", \"requester_id\" => \"464"},{"event":"cmd_output","timestamp":1607098208,"output":"6b699-5433-40bb-915a-4710d96ad488\", \"service\" => \"local\", \"snapshot_id\" => \"\", \"suppressed_attribute"},{"event":"cmd_output","timestamp":1607098208,"output":"s\" => [\"access_token\", \"client_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"4edd00bc-2608-4a49-8c"},{"event":"cmd_output","timestamp":1607098208,"output":"b6-15e2e1441ddd\"}\n\u001b[0m\u001b[22m\n16:10:08.971 [info] ppl_id: 451f2dd4-1ce5-4dae-ba53-aa4aaf0e0daf, typ"},{"event":"cmd_output","timestamp":1607098208,"output":"e: PplRequests, event: persisted schedule request with request_token: 2e21dcba-364b-11eb-89af-525400"},{"event":"cmd_output","timestamp":1607098208,"output":"5464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098208,"output":"\n16:10:08.978 [info] ppl_id: 451f2dd4-1ce5-4dae-ba53-aa4aaf0e0daf, type: Ppls, state: initializing"},{"event":"cmd_output","timestamp":1607098208,"output":", event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response"},{"event":"cmd_output","timestamp":1607098208,"output":"/2(L124), \n\u001b[0m\u001b[22m\n16:10:08.986 [info] Project list_grouped and branch masterlatest_wf details "},{"event":"cmd_output","timestamp":1607098208,"output":"updated: \"wf_id: 4edd00bc-2608-4a49-8cb6-15e2e1441ddd, wf_number: 2\"\n\u001b[0m\u001b[22m\n16:10:08.988 [info]"},{"event":"cmd_output","timestamp":1607098208,"output":" Persisted ppl_sub_init for pipeline with ppl_id: 451f2dd4-1ce5-4dae-ba53-aa4aaf0e0daf: %Ppl.PplSub"},{"event":"cmd_output","timestamp":1607098208,"output":"Inits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task"},{"event":"cmd_output","timestamp":1607098208,"output":"_id: nil, error_description: nil, id: 2, in_scheduling: false, init_type: \"regular\", inserted_at: ~N"},{"event":"cmd_output","timestamp":1607098208,"output":"[2020-12-04 16:10:08.986263], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"451f2dd4-1ce5-4dae-ba53-aa4aaf0e0daf\", recovery_count: 0, result: n"},{"event":"cmd_output","timestamp":1607098208,"output":"il, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updat"},{"event":"cmd_output","timestamp":1607098209,"output":"ed_at: ~N[2020-12-04 16:10:08.986558]}\n\u001b[0m\u001b[22m\n16:10:09.000 [info] Request: 'run: %{\"branch_id\""},{"event":"cmd_output","timestamp":1607098209,"output":" => \"ec85fbe3-5680-4f96-b19c-6f0e3a87aa94\", \"branch_name\" => \"master\", \"client_id\" => \"10e2e55d-4f21"},{"event":"cmd_output","timestamp":1607098209,"output":"-4dc2-9771-ca4c27ac8872\", \"commit_sha\" => \"75891a4469\", \"definition_file\" => \"\", \"hook_id\" => \"branc"},{"event":"cmd_output","timestamp":1607098209,"output":"h\", \"label\" => \"master-2\", \"organization_id\" => \"5e760a3b-1af0-4ab9-929a-61f7a03f5455\", \"owner\" => \""},{"event":"cmd_output","timestamp":1607098209,"output":"rt\", \"project_id\" => \"list_grouped\", \"repo_name\" => \"2_basic\", \"request_token\" => \"2e2ae08a-364b-11e"},{"event":"cmd_output","timestamp":1607098209,"output":"b-9899-5254005464e2\", \"requester_id\" => \"f6744f2b-9177-4927-93fe-b304e4dd6dce\", \"service\" => \"local\""},{"event":"cmd_output","timestamp":1607098209,"output":", \"snapshot_id\" => \"\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"triggered_by\" "},{"event":"cmd_output","timestamp":1607098209,"output":"=> \"hook\", \"wf_id\" => \"e1fbe5c2-6f58-4a66-b109-5e98168d571e\"}\n\u001b[0m\u001b[22m\n16:10:09.024 [info] ppl_i"},{"event":"cmd_output","timestamp":1607098209,"output":"d: 744f7a59-b743-4cb8-8756-33d133517971, type: PplRequests, event: persisted schedule request with r"},{"event":"cmd_output","timestamp":1607098209,"output":"equest_token: 2e2ae08a-364b-11eb-9899-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequests"},{"event":"cmd_output","timestamp":1607098209,"output":"Queries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:09.030 [info] ppl_id: 744f7a59-b743-4cb8-8756-3"},{"event":"cmd_output","timestamp":1607098209,"output":"3d133517971, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098209,"output":".Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:09.035 [info] Project list"},{"event":"cmd_output","timestamp":1607098209,"output":"_grouped and branch masterlatest_wf details updated: \"wf_id: e1fbe5c2-6f58-4a66-b109-5e98168d571e, w"},{"event":"cmd_output","timestamp":1607098209,"output":"f_number: 3\"\n\u001b[0m\u001b[22m\n16:10:09.036 [info] Persisted ppl_sub_init for pipeline with ppl_id: 744f7"},{"event":"cmd_output","timestamp":1607098209,"output":"a59-b743-4cb8-8756-33d133517971: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<"},{"event":"cmd_output","timestamp":1607098209,"output":":loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 3, in_scheduling: "},{"event":"cmd_output","timestamp":1607098209,"output":"false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:10:09.035693], pipeline_requests: #Ecto.A"},{"event":"cmd_output","timestamp":1607098209,"output":"ssociation.NotLoaded, ppl_id: \"744f7a59-b743-4cb8-8756"},{"event":"cmd_output","timestamp":1607098209,"output":"-33d133517971\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_requ"},{"event":"cmd_output","timestamp":1607098209,"output":"est: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:09.035703]}\n\u001b[0m\u001b[22m\n16:10"},{"event":"cmd_output","timestamp":1607098209,"output":":09.049 [info] Request: 'run: %{\"branch_id\" => \"c97e428c-5f65-44b9-a8ab-c54cb2bd4ffc\", \"branch_name"},{"event":"cmd_output","timestamp":1607098209,"output":"\" => \"master\", \"client_id\" => \"72cade68-3ef1-4ce0-8668-42f2d49de55e\", \"commit_sha\" => \"75891a4469\", "},{"event":"cmd_output","timestamp":1607098209,"output":"\"definition_file\" => \"\", \"hook_id\" => \"branch\", \"label\" => \"master-3\", \"organization_id\" => \"8121c90"},{"event":"cmd_output","timestamp":1607098209,"output":"d-b801-4324-864e-778a3506e996\", \"owner\" => \"rt\", \"project_id\" => \"list_grouped\", \"repo_name\" => \"2_b"},{"event":"cmd_output","timestamp":1607098209,"output":"asic\", \"request_token\" => \"2e32a158-364b-11eb-9e9d-5254005464e2\", \"requester_id\" => \"25385111-06de-4"},{"event":"cmd_output","timestamp":1607098209,"output":"fb0-84b5-d869571ad675\", \"service\" => \"local\", \"snapshot_id\" => \"\", \"suppressed_attributes\" => [\"acce"},{"event":"cmd_output","timestamp":1607098209,"output":"ss_token\", \"client_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"87fc1500-4c15-4cce-a8a9-76864fd46"},{"event":"cmd_output","timestamp":1607098209,"output":"c1a\"}\n\u001b[0m\u001b[22m\n16:10:09.078 [info] ppl_id: 10f8d5f9-e0fb-4ba9-b509-b2d99bd16f14, type: PplReques"},{"event":"cmd_output","timestamp":1607098209,"output":"ts, event: persisted schedule request with request_token: 2e32a158-364b-11eb-9e9d-5254005464e2, orig"},{"event":"cmd_output","timestamp":1607098209,"output":"in: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:09.0"},{"event":"cmd_output","timestamp":1607098209,"output":"84 [info] ppl_id: 10f8d5f9-e0fb-4ba9-b509-b2d99bd16f14, type: Ppls, state: initializing, event: ini"},{"event":"cmd_output","timestamp":1607098209,"output":"tializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n"},{"event":"cmd_output","timestamp":1607098209,"output":"\u001b[0m\u001b[22m\n16:10:09.088 [info] Project list_grouped and branch masterlatest_wf details updated: \"wf"},{"event":"cmd_output","timestamp":1607098209,"output":"_id: 87fc1500-4c15-4cce-a8a9-76864fd46c1a, wf_number: 4\"\n\u001b[0m\u001b[22m\n16:10:09.090 [info] Persisted "},{"event":"cmd_output","timestamp":1607098209,"output":"ppl_sub_init for pipeline with ppl_id: 10f8d5f9-e0fb-4ba9-b509-b2d99bd16f14: %Ppl.PplSubInits.Model."},{"event":"cmd_output","timestamp":1607098209,"output":"PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, er"},{"event":"cmd_output","timestamp":1607098209,"output":"ror_description: nil, id: 4, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 "},{"event":"cmd_output","timestamp":1607098209,"output":"16:10:09.088572], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"10f8d5f9-e0fb-4ba9-b509-b2d99bd16f14\", recovery_count: 0, result: nil, result_r"},{"event":"cmd_output","timestamp":1607098209,"output":"eason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[20"},{"event":"cmd_output","timestamp":1607098209,"output":"20-12-04 16:10:09.088582]}\n\u001b[0m\u001b[22m\n16:10:09.103 [info] Request: 'run: %{\"branch_id\" => \"8df2b45"},{"event":"cmd_output","timestamp":1607098209,"output":"2-731b-42a5-af6a-b15047ca8141\", \"branch_name\" => \"master\", \"client_id\" => \"e0e76f68-a151-4c2c-bc06-e"},{"event":"cmd_output","timestamp":1607098209,"output":"2b87d1cc12b\", \"commit_sha\" => \"75891a4469\", \"definition_file\" => \"\", \"hook_id\" => \"branch\", \"label\" "},{"event":"cmd_output","timestamp":1607098209,"output":"=> \"master-4\", \"organization_id\" => \"0f4680df-d5b5-4d05-8d26-8da0059fe091\", \"owner\" => \"rt\", \"projec"},{"event":"cmd_output","timestamp":1607098209,"output":"t_id\" => \"list_grouped\", \"repo_name\" => \"2_basic\", \"request_token\" => \"2e3ab2ee-364b-11eb-90e2-52540"},{"event":"cmd_output","timestamp":1607098209,"output":"05464e2\", \"requester_id\" => \"7917bdd9-4013-4a6f-be85-70e6d898a237\", \"service\" => \"local\", \"snapshot_"},{"event":"cmd_output","timestamp":1607098209,"output":"id\" => \"\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"triggered_by\" => \"hook\", \""},{"event":"cmd_output","timestamp":1607098209,"output":"wf_id\" => \"446c1759-cc53-46c5-8131-c36674b524f0\"}\n\u001b[0m\u001b[22m\n16:10:09.143 [info] ppl_id: a156cb57-"},{"event":"cmd_output","timestamp":1607098209,"output":"e802-46aa-b3bd-1ef79b3be293, type: PplRequests, event: persisted schedule request with request_token"},{"event":"cmd_output","timestamp":1607098209,"output":": 2e3ab2ee-364b-11eb-90e2-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.proc"},{"event":"cmd_output","timestamp":1607098209,"output":"ess_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:09.149 [info] ppl_id: a156cb57-e802-46aa-b3bd-1ef79b3be293,"},{"event":"cmd_output","timestamp":1607098209,"output":" type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Mo"},{"event":"cmd_output","timestamp":1607098209,"output":"del.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:09.154 [info] Project list_grouped and"},{"event":"cmd_output","timestamp":1607098209,"output":" branch masterlatest_wf details updated: \"wf_id: 446c1759-cc53-46c5-8131-c36674b524f0, wf_number: 5\""},{"event":"cmd_output","timestamp":1607098209,"output":"\n\u001b[0m\u001b[22m\n16:10:09.157 [info] Persisted ppl_sub_init for pipeline with ppl_id: a156cb57-e802-46a"},{"event":"cmd_output","timestamp":1607098209,"output":"a-b3bd-1ef79b3be293: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pi"},{"event":"cmd_output","timestamp":1607098209,"output":"peline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 5, in_scheduling: false, init_"},{"event":"cmd_output","timestamp":1607098209,"output":"type: \"regular\", inserted_at: ~N[2020-12-04 16:10:09.154892], pipeline_requests: #Ecto.Association.N"},{"event":"cmd_output","timestamp":1607098209,"output":"otLoaded, ppl_id: \"a156cb57-e802-46aa-b3bd-1ef79b3be29"},{"event":"cmd_output","timestamp":1607098209,"output":"3\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, te"},{"event":"cmd_output","timestamp":1607098209,"output":"rminate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:09.154906]}\n\u001b[0m\u001b[22m\n16:10:09.173 [inf"},{"event":"cmd_output","timestamp":1607098209,"output":"o] Request: 'run: %{\"branch_id\" => \"72ed8c86-c851-455c-82eb-fb8a7ab158c8\", \"branch_name\" => \"master"},{"event":"cmd_output","timestamp":1607098209,"output":"\", \"client_id\" => \"08d37d52-c423-40ad-9036-9a4878804798\", \"commit_sha\" => \"75891a4469\", \"definition_"},{"event":"cmd_output","timestamp":1607098209,"output":"file\" => \"\", \"hook_id\" => \"branch\", \"label\" => \"master-5\", \"organization_id\" => \"d259e5e2-6978-48af-"},{"event":"cmd_output","timestamp":1607098209,"output":"ae0e-c7eee9b3f49a\", \"owner\" => \"rt\", \"project_id\" => \"list_grouped\", \"repo_name\" => \"2_basic\", \"requ"},{"event":"cmd_output","timestamp":1607098209,"output":"est_token\" => \"2e4567ac-364b-11eb-a763-5254005464e2\", \"requester_id\" => \"0a1e6a23-ee57-4571-89c5-389"},{"event":"cmd_output","timestamp":1607098209,"output":"3f3e5d6e6\", \"service\" => \"local\", \"snapshot_id\" => \"\", \"suppressed_attributes\" => [\"access_token\", \""},{"event":"cmd_output","timestamp":1607098209,"output":"client_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"a3c2949d-3959-4c48-9bbd-78700f47de3a\"}\n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098209,"output":"[22m\n16:10:09.204 [info] ppl_id: ad902bad-7a6c-4a0e-944b-675869cac0fc, type: PplRequests, event: p"},{"event":"cmd_output","timestamp":1607098209,"output":"ersisted schedule request with request_token: 2e4567ac-364b-11eb-a763-5254005464e2, origin: Elixir.P"},{"event":"cmd_output","timestamp":1607098209,"output":"pl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:09.211 [info] p"},{"event":"cmd_output","timestamp":1607098209,"output":"pl_id: ad902bad-7a6c-4a0e-944b-675869cac0fc, type: Ppls, state: initializing, event: initializing, r"},{"event":"cmd_output","timestamp":1607098209,"output":"ecovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098209,"output":"6:10:09.216 [info] Project list_grouped and branch masterlatest_wf details updated: \"wf_id: a3c2949"},{"event":"cmd_output","timestamp":1607098209,"output":"d-3959-4c48-9bbd-78700f47de3a, wf_number: 6\"\n\u001b[0m\u001b[22m\n16:10:09.220 [info] Persisted ppl_sub_init"},{"event":"cmd_output","timestamp":1607098209,"output":" for pipeline with ppl_id: ad902bad-7a6c-4a0e-944b-675869cac0fc: %Ppl.PplSubInits.Model.PplSubInits{"},{"event":"cmd_output","timestamp":1607098209,"output":"__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_descript"},{"event":"cmd_output","timestamp":1607098209,"output":"ion: nil, id: 6, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:10:09.218"},{"event":"cmd_output","timestamp":1607098209,"output":"588], pipeline_requests: #Ecto.Association.NotLoaded, "},{"event":"cmd_output","timestamp":1607098209,"output":"ppl_id: \"ad902bad-7a6c-4a0e-944b-675869cac0fc\", recovery_count: 0, result: nil, result_reason: nil, "},{"event":"cmd_output","timestamp":1607098209,"output":"state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:"},{"event":"cmd_output","timestamp":1607098209,"output":"10:09.218602]}\n\u001b[0m\u001b[22m\n16:10:09.239 [info] Request: 'run: %{\"branch_id\" => \"0e8ba7c4-b92a-401f-"},{"event":"cmd_output","timestamp":1607098209,"output":"8822-b00fb852bf60\", \"branch_name\" => \"master\", \"client_id\" => \"6d7e45b4-f3ef-443e-b16f-c6b1b045fcf7\""},{"event":"cmd_output","timestamp":1607098209,"output":", \"commit_sha\" => \"75891a4469\", \"definition_file\" => \"\", \"hook_id\" => \"tag\", \"label\" => \"refs/tags/v"},{"event":"cmd_output","timestamp":1607098209,"output":"1.6\", \"organization_id\" => \"bd002e52-69ff-4bbb-b930-769a19cbcec9\", \"owner\" => \"rt\", \"project_id\" => "},{"event":"cmd_output","timestamp":1607098209,"output":"\"list_grouped\", \"repo_name\" => \"2_basic\", \"request_token\" => \"2e4eccfc-364b-11eb-97d7-5254005464e2\","},{"event":"cmd_output","timestamp":1607098209,"output":" \"requester_id\" => \"b67797b8-ed13-40c0-aeff-fc695782f941\", \"service\" => \"local\", \"snapshot_id\" => \"\""},{"event":"cmd_output","timestamp":1607098209,"output":", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" =>"},{"event":"cmd_output","timestamp":1607098209,"output":" \"00fa8079-0135-446e-8365-ec59cfd88778\"}\n\u001b[0m\u001b[22m\n16:10:09.272 [info] ppl_id: f3948fcc-c38d-4cfa"},{"event":"cmd_output","timestamp":1607098209,"output":"-a202-3e631e236c7c, type: PplRequests, event: persisted schedule request with request_token: 2e4eccf"},{"event":"cmd_output","timestamp":1607098209,"output":"c-364b-11eb-97d7-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_respo"},{"event":"cmd_output","timestamp":1607098209,"output":"nse/2(L55), \n\u001b[0m\u001b[22m\n16:10:09.278 [info] ppl_id: f3948fcc-c38d-4cfa-a202-3e631e236c7c, type: Pp"},{"event":"cmd_output","timestamp":1607098209,"output":"ls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQ"},{"event":"cmd_output","timestamp":1607098209,"output":"ueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:09.283 [info] Project list_grouped and branch m"},{"event":"cmd_output","timestamp":1607098209,"output":"asterlatest_wf details updated: \"wf_id: 00fa8079-0135-446e-8365-ec59cfd88778, wf_number: 7\"\n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098209,"output":"2m\n16:10:09.285 [info] Persisted ppl_sub_init for pipeline with ppl_id: f3948fcc-c38d-4cfa-a202-3e"},{"event":"cmd_output","timestamp":1607098209,"output":"631e236c7c: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_su"},{"event":"cmd_output","timestamp":1607098209,"output":"b_inits\">, compile_task_id: nil, error_description: nil, id: 7, in_scheduling: false, init_type: \"re"},{"event":"cmd_output","timestamp":1607098209,"output":"gular\", inserted_at: ~N[2020-12-04 16:10:09.283755], pipeline_requests: #Ecto.Association.NotLoaded<"},{"event":"cmd_output","timestamp":1607098209,"output":"association :pipeline_requests is not loaded>, ppl_id: \"f3948fcc-c38d-4cfa-a202-3e631e236c7c\", recov"},{"event":"cmd_output","timestamp":1607098209,"output":"ery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_r"},{"event":"cmd_output","timestamp":1607098209,"output":"equest_desc: nil, updated_at: ~N[2020-12-04 16:10:09.283767]}\n\u001b[0m\u001b[22m\n16:10:09.304 [info] Reque"},{"event":"cmd_output","timestamp":1607098209,"output":"st: 'run: %{\"branch_id\" => \"64751c95-9ece-402d-a367-22d04f8b65db\", \"branch_name\" => \"master\", \"clien"},{"event":"cmd_output","timestamp":1607098209,"output":"t_id\" => \"ac2bf3d5-1720-4e11-838f-19bf6dda6259\", \"commit_sha\" => \"75891a4469\", \"definition_file\" => "},{"event":"cmd_output","timestamp":1607098209,"output":"\"\", \"hook_id\" => \"tag\", \"label\" => \"refs/tags/v1.7\", \"organization_id\" => \"be43d966-c642-4587-b667-8"},{"event":"cmd_output","timestamp":1607098209,"output":"630a4d24d1d\", \"owner\" => \"rt\", \"project_id\" => \"list_grouped\", \"repo_name\" => \"2_basic\", \"request_to"},{"event":"cmd_output","timestamp":1607098209,"output":"ken\" => \"2e5955aa-364b-11eb-a2f0-5254005464e2\", \"requester_id\" => \"d1bc841f-f6e0-4d95-b4b1-266afc145"},{"event":"cmd_output","timestamp":1607098209,"output":"f68\", \"service\" => \"local\", \"snapshot_id\" => \"\", \"suppressed_attributes\" => [\"access_token\", \"client"},{"event":"cmd_output","timestamp":1607098209,"output":"_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"04efe8d9-d8bd-4c2c-8f43-9454be652105\"}\n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098209,"output":"16:10:09.339 [info] ppl_id: 9c52e284-86f8-496a-bb60-679230b02f4f, type: PplRequests, event: persist"},{"event":"cmd_output","timestamp":1607098209,"output":"ed schedule request with request_token: 2e5955aa-364b-11eb-a2f0-5254005464e2, origin: Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098209,"output":"Requests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:09.346 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098209,"output":" 9c52e284-86f8-496a-bb60-679230b02f4f, type: Ppls, state: initializing, event: initializing, recover"},{"event":"cmd_output","timestamp":1607098209,"output":"y_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:0"},{"event":"cmd_output","timestamp":1607098209,"output":"9.354 [info] Project list_grouped and branch masterlatest_wf details updated: \"wf_id: 04efe8d9-d8bd"},{"event":"cmd_output","timestamp":1607098209,"output":"-4c2c-8f43-9454be652105, wf_number: 8\"\n\u001b[0m\u001b[22m\n16:10:09.357 [info] Persisted ppl_sub_init for p"},{"event":"cmd_output","timestamp":1607098209,"output":"ipeline with ppl_id: 9c52e284-86f8-496a-bb60-679230b02f4f: %Ppl.PplSubInits.Model.PplSubInits{__meta"},{"event":"cmd_output","timestamp":1607098209,"output":"__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: n"},{"event":"cmd_output","timestamp":1607098209,"output":"il, id: 8, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:10:09.355319], "},{"event":"cmd_output","timestamp":1607098209,"output":"pipeline_requests: #Ecto.Association.NotLoaded, ppl_id"},{"event":"cmd_output","timestamp":1607098209,"output":": \"9c52e284-86f8-496a-bb60-679230b02f4f\", recovery_count: 0, result: nil, result_reason: nil, state:"},{"event":"cmd_output","timestamp":1607098209,"output":" \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:09."},{"event":"cmd_output","timestamp":1607098209,"output":"355333]}\n\u001b[0m\u001b[22m\n16:10:09.373 [info] Request: 'run: %{\"branch_id\" => \"b928f08d-4412-46d0-96a3-5"},{"event":"cmd_output","timestamp":1607098209,"output":"9c5b5c63862\", \"branch_name\" => \"master\", \"client_id\" => \"97642005-a9c3-4fb0-abd7-379e9db880c2\", \"com"},{"event":"cmd_output","timestamp":1607098209,"output":"mit_sha\" => \"75891a4469\", \"definition_file\" => \"\", \"hook_id\" => \"tag\", \"label\" => \"refs/tags/v1.8\", "},{"event":"cmd_output","timestamp":1607098209,"output":"\"organization_id\" => \"6fc58770-a07a-44aa-894c-ca6d23c3578d\", \"owner\" => \"rt\", \"project_id\" => \"list_"},{"event":"cmd_output","timestamp":1607098209,"output":"grouped\", \"repo_name\" => \"2_basic\", \"request_token\" => \"2e635622-364b-11eb-a079-5254005464e2\", \"requ"},{"event":"cmd_output","timestamp":1607098209,"output":"ester_id\" => \"98576140-c75c-4422-8aff-8f31ba198def\", \"service\" => \"local\", \"snapshot_id\" => \"\", \"sup"},{"event":"cmd_output","timestamp":1607098209,"output":"pressed_attributes\" => [\"access_token\", \"client_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"1225"},{"event":"cmd_output","timestamp":1607098209,"output":"f9ca-13a7-4cd9-84b4-89366fbd7c2e\"}\n\u001b[0m\u001b[22m\n16:10:09.407 [info] ppl_id: 6d621a6a-b251-4df8-833c-"},{"event":"cmd_output","timestamp":1607098209,"output":"890b56e41b2b, type: PplRequests, event: persisted schedule request with request_token: 2e635622-364b"},{"event":"cmd_output","timestamp":1607098209,"output":"-11eb-a079-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2("},{"event":"cmd_output","timestamp":1607098209,"output":"L55), \n\u001b[0m\u001b[22m\n16:10:09.415 [info] ppl_id: 6d621a6a-b251-4df8-833c-890b56e41b2b, type: Ppls, st"},{"event":"cmd_output","timestamp":1607098209,"output":"ate: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries"},{"event":"cmd_output","timestamp":1607098209,"output":".process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:09.422 [info] Project list_grouped and branch masterl"},{"event":"cmd_output","timestamp":1607098209,"output":"atest_wf details updated: \"wf_id: 1225f9ca-13a7-4cd9-84b4-89366fbd7c2e, wf_number: 9\"\n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098209,"output":":10:09.427 [info] Persisted ppl_sub_init for pipeline with ppl_id: 6d621a6a-b251-4df8-833c-890b56e4"},{"event":"cmd_output","timestamp":1607098209,"output":"1b2b: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_init"},{"event":"cmd_output","timestamp":1607098209,"output":"s\">, compile_task_id: nil, error_description: nil, id: 9, in_scheduling: false, init_type: \"regular\""},{"event":"cmd_output","timestamp":1607098209,"output":", inserted_at: ~N[2020-12-04 16:10:09.424662], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"6d621a6a-b251-4df8-833c-890b56e41b2b\", recovery_co"},{"event":"cmd_output","timestamp":1607098209,"output":"unt: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request"},{"event":"cmd_output","timestamp":1607098209,"output":"_desc: nil, updated_at: ~N[2020-12-04 16:10:09.424676]}\n\u001b[0m\u001b[22m\n16:10:09.451 [info] Request: 'r"},{"event":"cmd_output","timestamp":1607098209,"output":"un: %{\"branch_id\" => \"49eda626-7de2-4741-bd0b-716e5485faa6\", \"branch_name\" => \"master\", \"client_id\" "},{"event":"cmd_output","timestamp":1607098209,"output":"=> \"34ec7840-cdba-4e83-98d5-865d7efdf1d1\", \"commit_sha\" => \"75891a4469\", \"definition_file\" => \"\", \"h"},{"event":"cmd_output","timestamp":1607098209,"output":"ook_id\" => \"tag\", \"label\" => \"refs/tags/v1.9\", \"organization_id\" => \"91fa9a1e-c317-47ca-91bf-e6651ca"},{"event":"cmd_output","timestamp":1607098209,"output":"cea93\", \"owner\" => \"rt\", \"project_id\" => \"list_grouped\", \"repo_name\" => \"2_basic\", \"request_token\" ="},{"event":"cmd_output","timestamp":1607098209,"output":"> \"2e6f02d8-364b-11eb-8775-5254005464e2\", \"requester_id\" => \"c8b5da22-7c5d-4494-9cd9-fea8abf6207d\", "},{"event":"cmd_output","timestamp":1607098209,"output":"\"service\" => \"local\", \"snapshot_id\" => \"\", \"suppressed_attributes\" => [\"access_token\", \"client_secre"},{"event":"cmd_output","timestamp":1607098209,"output":"t\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"d63f9324-430a-4adc-9af2-f11c5e1a9c9a\"}\n\u001b[0m\u001b[22m\n16:10:"},{"event":"cmd_output","timestamp":1607098209,"output":"09.490 [info] ppl_id: b3db881a-96cd-4172-b05f-dd75d21e74db, type: PplRequests, event: persisted sch"},{"event":"cmd_output","timestamp":1607098209,"output":"edule request with request_token: 2e6f02d8-364b-11eb-8775-5254005464e2, origin: Elixir.Ppl.PplReques"},{"event":"cmd_output","timestamp":1607098209,"output":"ts.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:09.500 [info] ppl_id: b3db8"},{"event":"cmd_output","timestamp":1607098209,"output":"81a-96cd-4172-b05f-dd75d21e74db, type: Ppls, state: initializing, event: initializing, recovery_coun"},{"event":"cmd_output","timestamp":1607098209,"output":"t: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:09.510 "},{"event":"cmd_output","timestamp":1607098209,"output":"[info] Project list_grouped and branch masterlatest_wf details updated: \"wf_id: d63f9324-430a-4adc-"},{"event":"cmd_output","timestamp":1607098209,"output":"9af2-f11c5e1a9c9a, wf_number: 10\"\n\u001b[0m\u001b[22m\n16:10:09.514 [info] Persisted ppl_sub_init for pipeli"},{"event":"cmd_output","timestamp":1607098209,"output":"ne with ppl_id: b3db881a-96cd-4172-b05f-dd75d21e74db: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #"},{"event":"cmd_output","timestamp":1607098209,"output":"Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, i"},{"event":"cmd_output","timestamp":1607098209,"output":"d: 10, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:10:09.512566], pipe"},{"event":"cmd_output","timestamp":1607098209,"output":"line_requests: #Ecto.Association.NotLoaded, ppl_id: \"b"},{"event":"cmd_output","timestamp":1607098209,"output":"3db881a-96cd-4172-b05f-dd75d21e74db\", recovery_count: 0, result: nil, result_reason: nil, state: \"cr"},{"event":"cmd_output","timestamp":1607098209,"output":"eated\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:09.5125"},{"event":"cmd_output","timestamp":1607098209,"output":"80]}\n\u001b[0m\u001b[22m\n16:10:09.527 [info] Request: 'run: %{\"branch_id\" => \"5f8704d1-cd4a-457a-b69b-23274"},{"event":"cmd_output","timestamp":1607098209,"output":"42893e9\", \"branch_name\" => \"master\", \"client_id\" => \"33d1eaa6-1144-42a8-b26f-012ee078e16f\", \"commit_"},{"event":"cmd_output","timestamp":1607098209,"output":"sha\" => \"75891a4469\", \"definition_file\" => \"\", \"hook_id\" => \"tag\", \"label\" => \"refs/tags/v1.10\", \"or"},{"event":"cmd_output","timestamp":1607098209,"output":"ganization_id\" => \"b1868eee-fa76-4031-ad26-8f82a1d83f2f\", \"owner\" => \"rt\", \"project_id\" => \"list_gro"},{"event":"cmd_output","timestamp":1607098209,"output":"uped\", \"repo_name\" => \"2_basic\", \"request_token\" => \"2e7b8c06-364b-11eb-b11b-5254005464e2\", \"request"},{"event":"cmd_output","timestamp":1607098209,"output":"er_id\" => \"8112e829-c7a3-4b53-9c3f-3c056f07042a\", \"service\" => \"local\", \"snapshot_id\" => \"\", \"suppre"},{"event":"cmd_output","timestamp":1607098209,"output":"ssed_attributes\" => [\"access_token\", \"client_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"6da220f"},{"event":"cmd_output","timestamp":1607098209,"output":"4-d705-4f73-805d-ce2db2bd3b1b\"}\n\u001b[0m\u001b[22m\n16:10:09.559 [info] ppl_id: 6ed662cb-2593-40e8-ba32-ff3"},{"event":"cmd_output","timestamp":1607098209,"output":"981693ad2, type: PplRequests, event: persisted schedule request with request_token: 2e7b8c06-364b-11"},{"event":"cmd_output","timestamp":1607098209,"output":"eb-b11b-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55"},{"event":"cmd_output","timestamp":1607098209,"output":"), \n\u001b[0m\u001b[22m\n16:10:09.562 [info] ppl_id: 6ed662cb-2593-40e8-ba32-ff3981693ad2, type: Ppls, state"},{"event":"cmd_output","timestamp":1607098209,"output":": initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.pr"},{"event":"cmd_output","timestamp":1607098209,"output":"ocess_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:09.566 [info] Project list_grouped and branch masterlate"},{"event":"cmd_output","timestamp":1607098209,"output":"st_wf details updated: \"wf_id: 6da220f4-d705-4f73-805d-ce2db2bd3b1b, wf_number: 11\"\n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098209,"output":"0:09.575 [info] Persisted ppl_sub_init for pipeline with ppl_id: 6ed662cb-2593-40e8-ba32-ff3981693a"},{"event":"cmd_output","timestamp":1607098209,"output":"d2: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\""},{"event":"cmd_output","timestamp":1607098209,"output":">, compile_task_id: nil, error_description: nil, id: 11, in_scheduling: false, init_type: \"regular\","},{"event":"cmd_output","timestamp":1607098209,"output":" inserted_at: ~N[2020-12-04 16:10:09.566918], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"6ed662cb-2593-40e8-ba32-ff3981693ad2\", recovery_cou"},{"event":"cmd_output","timestamp":1607098209,"output":"nt: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_"},{"event":"cmd_output","timestamp":1607098209,"output":"desc: nil, updated_at: ~N[2020-12-04 16:10:09.566927]}\n\u001b[0m\u001b[22m\n16:10:09.591 [info] Request: 'ru"},{"event":"cmd_output","timestamp":1607098209,"output":"n: %{\"branch_id\" => \"4256ff01-2e0f-4b94-8ba2-4b52fe9512f3\", \"branch_name\" => \"master\", \"client_id\" ="},{"event":"cmd_output","timestamp":1607098209,"output":"> \"ea63b5f7-17a4-47b1-b75d-ee393aab894c\", \"commit_sha\" => \"75891a4469\", \"definition_file\" => \"\", \"ho"},{"event":"cmd_output","timestamp":1607098209,"output":"ok_id\" => \"tag\", \"label\" => \"refs/tags/v1.11\", \"organization_id\" => \"c4ebc2b9-0a96-4e48-a5a2-fb3566d"},{"event":"cmd_output","timestamp":1607098209,"output":"f5bf7\", \"owner\" => \"rt\", \"project_id\" => \"list_grouped\", \"repo_name\" => \"2_basic\", \"request_token\" ="},{"event":"cmd_output","timestamp":1607098209,"output":"> \"2e847262-364b-11eb-b12b-5254005464e2\", \"requester_id\" => \"55fb322b-f188-4db3-b64e-6a802d94b33b\", "},{"event":"cmd_output","timestamp":1607098209,"output":"\"service\" => \"local\", \"snapshot_id\" => \"\", \"suppressed_attributes\" => [\"access_token\", \"client_secre"},{"event":"cmd_output","timestamp":1607098209,"output":"t\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"2b8f9921-04b3-4eda-9a37-bfbe2d035fdb\"}\n\u001b[0m\u001b[22m\n16:10:"},{"event":"cmd_output","timestamp":1607098209,"output":"09.622 [info] ppl_id: 2483651c-19f5-4776-9786-44f6100dbdc1, type: PplRequests, event: persisted sch"},{"event":"cmd_output","timestamp":1607098209,"output":"edule request with request_token: 2e847262-364b-11eb-b12b-5254005464e2, origin: Elixir.Ppl.PplReques"},{"event":"cmd_output","timestamp":1607098209,"output":"ts.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:09.626 [info] ppl_id: 24836"},{"event":"cmd_output","timestamp":1607098209,"output":"51c-19f5-4776-9786-44f6100dbdc1, type: Ppls, state: initializing, event: initializing, recovery_coun"},{"event":"cmd_output","timestamp":1607098209,"output":"t: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:09.630 "},{"event":"cmd_output","timestamp":1607098209,"output":"[info] Project list_grouped and branch masterlatest_wf details updated: \"wf_id: 2b8f9921-04b3-4eda-"},{"event":"cmd_output","timestamp":1607098209,"output":"9a37-bfbe2d035fdb, wf_number: 12\"\n\u001b[0m\u001b[22m\n16:10:09.632 [info] Persisted ppl_sub_init for pipeli"},{"event":"cmd_output","timestamp":1607098209,"output":"ne with ppl_id: 2483651c-19f5-4776-9786-44f6100dbdc1: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #"},{"event":"cmd_output","timestamp":1607098209,"output":"Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, i"},{"event":"cmd_output","timestamp":1607098209,"output":"d: 12, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:10:09.630400], pipe"},{"event":"cmd_output","timestamp":1607098209,"output":"line_requests: #Ecto.Association.NotLoaded, ppl_id: \"2"},{"event":"cmd_output","timestamp":1607098209,"output":"483651c-19f5-4776-9786-44f6100dbdc1\", recovery_count: 0, result: nil, result_reason: nil, state: \"cr"},{"event":"cmd_output","timestamp":1607098209,"output":"eated\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:09.6307"},{"event":"cmd_output","timestamp":1607098209,"output":"91]}\n\u001b[0m\u001b[22m\n16:10:09.667 [info] Request: 'run: %{\"branch_id\" => \"6ff825cc-d33b-4f1d-9e07-44fbf"},{"event":"cmd_output","timestamp":1607098209,"output":"62ee3a8\", \"branch_name\" => \"master\", \"client_id\" => \"edc79119-d9bc-4ec9-acd2-5d9b3bbdf39d\", \"commit_"},{"event":"cmd_output","timestamp":1607098209,"output":"sha\" => \"75891a4469\", \"definition_file\" => \"\", \"hook_id\" => \"pr\", \"label\" => \"pull-request-1212\", \"o"},{"event":"cmd_output","timestamp":1607098209,"output":"rganization_id\" => \"05a613aa-3625-49c8-887c-30dec00b5c83\", \"owner\" => \"rt\", \"project_id\" => \"list_gr"},{"event":"cmd_output","timestamp":1607098209,"output":"ouped\", \"repo_name\" => \"2_basic\", \"request_token\" => \"2e90e876-364b-11eb-87a2-5254005464e2\", \"reques"},{"event":"cmd_output","timestamp":1607098209,"output":"ter_id\" => \"877b3179-18c3-42fc-ae9a-31928e3a32df\", \"service\" => \"local\", \"snapshot_id\" => \"\", \"suppr"},{"event":"cmd_output","timestamp":1607098209,"output":"essed_attributes\" => [\"access_token\", \"client_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"a410ba"},{"event":"cmd_output","timestamp":1607098209,"output":"80-84e0-44b1-9a0d-5a782a46a079\"}\n\u001b[0m\u001b[22m\n16:10:09.701 [info] ppl_id: 3d6f1f89-3cd1-47de-892c-df"},{"event":"cmd_output","timestamp":1607098209,"output":"fdcea48d92, type: PplRequests, event: persisted schedule request with request_token: 2e90e876-364b-1"},{"event":"cmd_output","timestamp":1607098209,"output":"1eb-87a2-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L5"},{"event":"cmd_output","timestamp":1607098209,"output":"5), \n\u001b[0m\u001b[22m\n16:10:09.704 [info] ppl_id: 3d6f1f89-3cd1-47de-892c-dffdcea48d92, type: Ppls, stat"},{"event":"cmd_output","timestamp":1607098209,"output":"e: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.p"},{"event":"cmd_output","timestamp":1607098209,"output":"rocess_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:09.711 [info] Project list_grouped and branch masterlat"},{"event":"cmd_output","timestamp":1607098209,"output":"est_wf details updated: \"wf_id: a410ba80-84e0-44b1-9a0d-5a782a46a079, wf_number: 13\"\n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098209,"output":"10:09.713 [info] Persisted ppl_sub_init for pipeline with ppl_id: 3d6f1f89-3cd1-47de-892c-dffdcea48"},{"event":"cmd_output","timestamp":1607098209,"output":"d92: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits"},{"event":"cmd_output","timestamp":1607098209,"output":"\">, compile_task_id: nil, error_description: nil, id: 13, in_scheduling: false, init_type: \"regular\""},{"event":"cmd_output","timestamp":1607098209,"output":", inserted_at: ~N[2020-12-04 16:10:09.711869], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"3d6f1f89-3cd1-47de-892c-dffdcea48d92\", recovery_co"},{"event":"cmd_output","timestamp":1607098209,"output":"unt: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request"},{"event":"cmd_output","timestamp":1607098209,"output":"_desc: nil, updated_at: ~N[2020-12-04 16:10:09.711882]}\n\u001b[0m\u001b[22m\n16:10:09.722 [info] Request: 'r"},{"event":"cmd_output","timestamp":1607098209,"output":"un: %{\"branch_id\" => \"522a793f-6c36-4450-a9e8-af194b1bcce4\", \"branch_name\" => \"master\", \"client_id\" "},{"event":"cmd_output","timestamp":1607098209,"output":"=> \"3babcafe-80c3-45a5-a4de-7b5064824f7a\", \"commit_sha\" => \"75891a4469\", \"definition_file\" => \"\", \"h"},{"event":"cmd_output","timestamp":1607098209,"output":"ook_id\" => \"pr\", \"label\" => \"pull-request-1213\", \"organization_id\" => \"072eeff9-12f3-4240-9a96-070a4"},{"event":"cmd_output","timestamp":1607098209,"output":"eef4acd\", \"owner\" => \"rt\", \"project_id\" => \"list_grouped\", \"repo_name\" => \"2_basic\", \"request_token\""},{"event":"cmd_output","timestamp":1607098209,"output":" => \"2e99673a-364b-11eb-becf-5254005464e2\", \"requester_id\" => \"cf6bb630-48a0-4f91-8eed-b2c1ec9e887c\""},{"event":"cmd_output","timestamp":1607098209,"output":", \"service\" => \"local\", \"snapshot_id\" => \"\", \"suppressed_attributes\" => [\"access_token\", \"client_sec"},{"event":"cmd_output","timestamp":1607098209,"output":"ret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"503c1592-081d-46a7-bef2-e1170490d8d7\"}\n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098209,"output":"0:09.753 [info] ppl_id: b4243f3a-3b21-43bd-acc5-01a28e7e74c0, type: PplRequests, event: persisted s"},{"event":"cmd_output","timestamp":1607098209,"output":"chedule request with request_token: 2e99673a-364b-11eb-becf-5254005464e2, origin: Elixir.Ppl.PplRequ"},{"event":"cmd_output","timestamp":1607098209,"output":"ests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:09.756 [info] ppl_id: b42"},{"event":"cmd_output","timestamp":1607098209,"output":"43f3a-3b21-43bd-acc5-01a28e7e74c0, type: Ppls, state: initializing, event: initializing, recovery_co"},{"event":"cmd_output","timestamp":1607098209,"output":"unt: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:09.76"},{"event":"cmd_output","timestamp":1607098209,"output":"0 [info] Project list_grouped and branch masterlatest_wf details updated: \"wf_id: 503c1592-081d-46a"},{"event":"cmd_output","timestamp":1607098209,"output":"7-bef2-e1170490d8d7, wf_number: 14\"\n\u001b[0m\u001b[22m\n16:10:09.762 [info] Persisted ppl_sub_init for pipe"},{"event":"cmd_output","timestamp":1607098209,"output":"line with ppl_id: b4243f3a-3b21-43bd-acc5-01a28e7e74c0: %Ppl.PplSubInits.Model.PplSubInits{__meta__:"},{"event":"cmd_output","timestamp":1607098209,"output":" #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil,"},{"event":"cmd_output","timestamp":1607098209,"output":" id: 14, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:10:09.760761], pi"},{"event":"cmd_output","timestamp":1607098209,"output":"peline_requests: #Ecto.Association.NotLoaded, ppl_id: "},{"event":"cmd_output","timestamp":1607098209,"output":"\"b4243f3a-3b21-43bd-acc5-01a28e7e74c0\", recovery_count: 0, result: nil, result_reason: nil, state: \""},{"event":"cmd_output","timestamp":1607098209,"output":"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:09.76"},{"event":"cmd_output","timestamp":1607098209,"output":"0774]}\n\u001b[0m\u001b[22m\n16:10:09.777 [info] Request: 'run: %{\"branch_id\" => \"b4f1b79d-26a5-4d29-914b-0f7"},{"event":"cmd_output","timestamp":1607098209,"output":"1b80bc4ca\", \"branch_name\" => \"master\", \"client_id\" => \"ce80a270-b055-4a0c-86a8-91744f2d019f\", \"commi"},{"event":"cmd_output","timestamp":1607098209,"output":"t_sha\" => \"75891a4469\", \"definition_file\" => \"\", \"hook_id\" => \"pr\", \"label\" => \"pull-request-1214\", "},{"event":"cmd_output","timestamp":1607098209,"output":"\"organization_id\" => \"67470fc1-2f66-4d82-9087-2e680b9fd9b1\", \"owner\" => \"rt\", \"project_id\" => \"list_"},{"event":"cmd_output","timestamp":1607098209,"output":"grouped\", \"repo_name\" => \"2_basic\", \"request_token\" => \"2ea0d286-364b-11eb-89a7-5254005464e2\", \"requ"},{"event":"cmd_output","timestamp":1607098209,"output":"ester_id\" => \"8ae64a9f-d75e-4a1b-a330-88358806907a\", \"service\" => \"local\", \"snapshot_id\" => \"\", \"sup"},{"event":"cmd_output","timestamp":1607098209,"output":"pressed_attributes\" => [\"access_token\", \"client_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"6ad2"},{"event":"cmd_output","timestamp":1607098209,"output":"95e7-cef1-4191-8e01-a2c117ae61f7\"}\n\u001b[0m\u001b[22m\n16:10:09.803 [info] ppl_id: bed3964b-51e8-4281-88d7-"},{"event":"cmd_output","timestamp":1607098209,"output":"b3e5d9a27910, type: PplRequests, event: persisted schedule request with request_token: 2ea0d286-364b"},{"event":"cmd_output","timestamp":1607098209,"output":"-11eb-89a7-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2("},{"event":"cmd_output","timestamp":1607098209,"output":"L55), \n\u001b[0m\u001b[22m\n16:10:09.806 [info] ppl_id: bed3964b-51e8-4281-88d7-b3e5d9a27910, type: Ppls, st"},{"event":"cmd_output","timestamp":1607098209,"output":"ate: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries"},{"event":"cmd_output","timestamp":1607098209,"output":".process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:09.810 [info] Project list_grouped and branch masterl"},{"event":"cmd_output","timestamp":1607098209,"output":"atest_wf details updated: \"wf_id: 6ad295e7-cef1-4191-8e01-a2c117ae61f7, wf_number: 15\"\n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098209,"output":"6:10:09.812 [info] Persisted ppl_sub_init for pipeline with ppl_id: bed3964b-51e8-4281-88d7-b3e5d9a"},{"event":"cmd_output","timestamp":1607098209,"output":"27910: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_ini"},{"event":"cmd_output","timestamp":1607098209,"output":"ts\">, compile_task_id: nil, error_description: nil, id: 15, in_scheduling: false, init_type: \"regula"},{"event":"cmd_output","timestamp":1607098209,"output":"r\", inserted_at: ~N[2020-12-04 16:10:09.811751], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"bed3964b-51e8-4281-88d7-b3e5d9a27910\", recovery_"},{"event":"cmd_output","timestamp":1607098209,"output":"count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_reque"},{"event":"cmd_output","timestamp":1607098209,"output":"st_desc: nil, updated_at: ~N[2020-12-04 16:10:09.811764]}\n\u001b[0m\u001b[22m\n16:10:09.823 [info] Request: "},{"event":"cmd_output","timestamp":1607098209,"output":"'run: %{\"branch_id\" => \"3ff35b0f-db2a-4522-be12-81038d3bf5ee\", \"branch_name\" => \"master\", \"client_id"},{"event":"cmd_output","timestamp":1607098209,"output":"\" => \"3d2f0a6b-377d-481e-8946-d26a95d2288d\", \"commit_sha\" => \"75891a4469\", \"definition_file\" => \"\", "},{"event":"cmd_output","timestamp":1607098209,"output":"\"hook_id\" => \"pr\", \"label\" => \"pull-request-1215\", \"organization_id\" => \"47aade49-d28a-45ad-86c1-230"},{"event":"cmd_output","timestamp":1607098209,"output":"a7ca8e479\", \"owner\" => \"rt\", \"project_id\" => \"list_grouped\", \"repo_name\" => \"2_basic\", \"request_toke"},{"event":"cmd_output","timestamp":1607098209,"output":"n\" => \"2ea8c0a4-364b-11eb-8b1f-5254005464e2\", \"requester_id\" => \"b7cbd06c-0103-447f-bb18-8c667fdb3b3"},{"event":"cmd_output","timestamp":1607098209,"output":"6\", \"service\" => \"local\", \"snapshot_id\" => \"\", \"suppressed_attributes\" => [\"access_token\", \"client_s"},{"event":"cmd_output","timestamp":1607098209,"output":"ecret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"1d39fb62-c3c3-4977-b378-f07cb971417c\"}\n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098209,"output":":10:09.852 [info] ppl_id: 1f64866a-4595-426a-8815-3319a63fb026, type: PplRequests, event: persisted"},{"event":"cmd_output","timestamp":1607098209,"output":" schedule request with request_token: 2ea8c0a4-364b-11eb-8b1f-5254005464e2, origin: Elixir.Ppl.PplRe"},{"event":"cmd_output","timestamp":1607098209,"output":"quests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:09.855 [info] ppl_id: 1"},{"event":"cmd_output","timestamp":1607098209,"output":"f64866a-4595-426a-8815-3319a63fb026, type: Ppls, state: initializing, event: initializing, recovery_"},{"event":"cmd_output","timestamp":1607098209,"output":"count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:09."},{"event":"cmd_output","timestamp":1607098209,"output":"858 [info] Project list_grouped and branch masterlatest_wf details updated: \"wf_id: 1d39fb62-c3c3-4"},{"event":"cmd_output","timestamp":1607098209,"output":"977-b378-f07cb971417c, wf_number: 16\"\n\u001b[0m\u001b[22m\n16:10:09.859 [info] Persisted ppl_sub_init for pi"},{"event":"cmd_output","timestamp":1607098209,"output":"peline with ppl_id: 1f64866a-4595-426a-8815-3319a63fb026: %Ppl.PplSubInits.Model.PplSubInits{__meta_"},{"event":"cmd_output","timestamp":1607098209,"output":"_: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: ni"},{"event":"cmd_output","timestamp":1607098209,"output":"l, id: 16, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:10:09.858204], "},{"event":"cmd_output","timestamp":1607098209,"output":"pipeline_requests: #Ecto.Association.NotLoaded, ppl_id"},{"event":"cmd_output","timestamp":1607098209,"output":": \"1f64866a-4595-426a-8815-3319a63fb026\", recovery_count: 0, result: nil, result_reason: nil, state:"},{"event":"cmd_output","timestamp":1607098209,"output":" \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:09."},{"event":"cmd_output","timestamp":1607098209,"output":"858211]}\n\u001b[0m\u001b[22m\n16:10:09.873 [info] Request: 'run: %{\"branch_id\" => \"d161231d-9370-4923-aef4-e"},{"event":"cmd_output","timestamp":1607098209,"output":"e40ff0ce7d6\", \"branch_name\" => \"master\", \"client_id\" => \"d6d83e33-4ca9-4d36-b7ff-c3222a2b1a7c\", \"com"},{"event":"cmd_output","timestamp":1607098209,"output":"mit_sha\" => \"75891a4469\", \"definition_file\" => \"\", \"hook_id\" => \"pr\", \"label\" => \"pull-request-1216\""},{"event":"cmd_output","timestamp":1607098209,"output":", \"organization_id\" => \"d40c9a54-5c9e-4f68-aa48-21124aeea3c5\", \"owner\" => \"rt\", \"project_id\" => \"lis"},{"event":"cmd_output","timestamp":1607098209,"output":"t_grouped\", \"repo_name\" => \"2_basic\", \"request_token\" => \"2eb07b96-364b-11eb-b93b-5254005464e2\", \"re"},{"event":"cmd_output","timestamp":1607098209,"output":"quester_id\" => \"6f9dc19c-8aa7-4989-b7ea-b1d55d39f688\", \"service\" => \"local\", \"snapshot_id\" => \"\", \"s"},{"event":"cmd_output","timestamp":1607098209,"output":"uppressed_attributes\" => [\"access_token\", \"client_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"18"},{"event":"cmd_output","timestamp":1607098209,"output":"8f9bd0-15cc-42b1-bf23-f92e60b8553a\"}\n\u001b[0m\u001b[22m\n16:10:09.899 [info] ppl_id: c1b2009c-e56b-4a07-a90"},{"event":"cmd_output","timestamp":1607098209,"output":"1-2d7a7aa73213, type: PplRequests, event: persisted schedule request with request_token: 2eb07b96-36"},{"event":"cmd_output","timestamp":1607098209,"output":"4b-11eb-b93b-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/"},{"event":"cmd_output","timestamp":1607098209,"output":"2(L55), \n\u001b[0m\u001b[22m\n16:10:09.902 [info] ppl_id: c1b2009c-e56b-4a07-a901-2d7a7aa73213, type: Ppls, "},{"event":"cmd_output","timestamp":1607098209,"output":"state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueri"},{"event":"cmd_output","timestamp":1607098209,"output":"es.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:09.905 [info] Project list_grouped and branch maste"},{"event":"cmd_output","timestamp":1607098209,"output":"rlatest_wf details updated: \"wf_id: 188f9bd0-15cc-42b1-bf23-f92e60b8553a, wf_number: 17\"\n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098209,"output":"\n16:10:09.906 [info] Persisted ppl_sub_init for pipeline with ppl_id: c1b2009c-e56b-4a07-a901-2d7a7"},{"event":"cmd_output","timestamp":1607098209,"output":"aa73213: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_i"},{"event":"cmd_output","timestamp":1607098209,"output":"nits\">, compile_task_id: nil, error_description: nil, id: 17, in_scheduling: false, init_type: \"regu"},{"event":"cmd_output","timestamp":1607098209,"output":"lar\", inserted_at: ~N[2020-12-04 16:10:09.905348], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"c1b2009c-e56b-4a07-a901-2d7a7aa73213\", recover"},{"event":"cmd_output","timestamp":1607098209,"output":"y_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_req"},{"event":"cmd_output","timestamp":1607098209,"output":"uest_desc: nil, updated_at: ~N[2020-12-04 16:10:09.905357]}\n\u001b[0m\u001b[22m\n16:10:09.922 [info] Request"},{"event":"cmd_output","timestamp":1607098209,"output":": 'run: %{\"branch_id\" => \"d2a7d45e-832a-4606-bd7b-717915a05604\", \"branch_name\" => \"master\", \"client_"},{"event":"cmd_output","timestamp":1607098209,"output":"id\" => \"7f784e5b-f1ed-4cff-929d-7cd0765cd704\", \"commit_sha\" => \"75891a4469\", \"definition_file\" => \"\""},{"event":"cmd_output","timestamp":1607098209,"output":", \"hook_id\" => \"pr\", \"label\" => \"pull-request-1217\", \"organization_id\" => \"1df28f74-cf88-4565-bc39-8"},{"event":"cmd_output","timestamp":1607098209,"output":"12327892f89\", \"owner\" => \"rt\", \"project_id\" => \"list_grouped\", \"repo_name\" => \"2_basic\", \"request_to"},{"event":"cmd_output","timestamp":1607098209,"output":"ken\" => \"2eb700ec-364b-11eb-8230-5254005464e2\", \"requester_id\" => \"20f92186-37b9-4d2d-9c91-cf4297a3b"},{"event":"cmd_output","timestamp":1607098209,"output":"ed9\", \"service\" => \"local\", \"snapshot_id\" => \"\", \"suppressed_attributes\" => [\"access_token\", \"client"},{"event":"cmd_output","timestamp":1607098209,"output":"_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"21afacde-9d2d-4d5b-9071-1c73498dc13b\"}\n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098209,"output":"16:10:09.961 [info] ppl_id: ad6a27bb-db7b-4838-826e-1da6e6c54e11, type: PplRequests, event: persist"},{"event":"cmd_output","timestamp":1607098209,"output":"ed schedule request with request_token: 2eb700ec-364b-11eb-8230-5254005464e2, origin: Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098209,"output":"Requests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:09.963 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098209,"output":" ad6a27bb-db7b-4838-826e-1da6e6c54e11, type: Ppls, state: initializing, event: initializing, recover"},{"event":"cmd_output","timestamp":1607098209,"output":"y_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:0"},{"event":"cmd_output","timestamp":1607098209,"output":"9.967 [info] Project list_grouped and branch masterlatest_wf details updated: \"wf_id: 21afacde-9d2d"},{"event":"cmd_output","timestamp":1607098209,"output":"-4d5b-9071-1c73498dc13b, wf_number: 18\"\n\u001b[0m\u001b[22m\n16:10:09.969 [info] Persisted ppl_sub_init for "},{"event":"cmd_output","timestamp":1607098209,"output":"pipeline with ppl_id: ad6a27bb-db7b-4838-826e-1da6e6c54e11: %Ppl.PplSubInits.Model.PplSubInits{__met"},{"event":"cmd_output","timestamp":1607098209,"output":"a__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: "},{"event":"cmd_output","timestamp":1607098209,"output":"nil, id: 18, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:10:09.967351]"},{"event":"cmd_output","timestamp":1607098209,"output":", pipeline_requests: #Ecto.Association.NotLoaded, ppl_"},{"event":"cmd_output","timestamp":1607098209,"output":"id: \"ad6a27bb-db7b-4838-826e-1da6e6c54e11\", recovery_count: 0, result: nil, result_reason: nil, stat"},{"event":"cmd_output","timestamp":1607098209,"output":"e: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:0"},{"event":"cmd_output","timestamp":1607098209,"output":"9.967376]}\n\u001b[0m\u001b[22m\n16:10:09.984 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.Initiali"},{"event":"cmd_output","timestamp":1607098209,"output":"zingState with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"P"},{"event":"cmd_output","timestamp":1607098209,"output":"pl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: "},{"event":"cmd_output","timestamp":1607098209,"output":"[\"initializing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observ"},{"event":"cmd_output","timestamp":1607098209,"output":"ed_state: \"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingS"},{"event":"cmd_output","timestamp":1607098209,"output":"tate.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result,"},{"event":"cmd_output","timestamp":1607098209,"output":" :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:0"},{"event":"cmd_output","timestamp":1607098209,"output":"9.988 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls"},{"event":"cmd_output","timestamp":1607098209,"output":".STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHand"},{"event":"cmd_output","timestamp":1607098209,"output":"ler-PendingState\"]}, recurring args: %{allowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], co"},{"event":"cmd_output","timestamp":1607098209,"output":"oling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publisher_cb: #Fun"},{"event":"cmd_output","timestamp":1607098209,"output":"ction<0.8493005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, "},{"event":"cmd_output","timestamp":1607098209,"output":":terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model."},{"event":"cmd_output","timestamp":1607098209,"output":"Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:10:09.993 [info] Periodic from module Eli"},{"event":"cmd_output","timestamp":1607098209,"output":"xir.Ppl.Ppls.STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 10"},{"event":"cmd_output","timestamp":1607098209,"output":"0 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %"},{"event":"cmd_output","timestamp":1607098209,"output":"{allowed_states: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model"},{"event":"cmd_output","timestamp":1607098209,"output":".Ppls, observed_state: \"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.Queui"},{"event":"cmd_output","timestamp":1607098209,"output":"ngState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :resu"},{"event":"cmd_output","timestamp":1607098209,"output":"lt, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098209,"output":"0:09.997 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl.P"},{"event":"cmd_output","timestamp":1607098209,"output":"pls.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMH"},{"event":"cmd_output","timestamp":1607098209,"output":"andler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_t"},{"event":"cmd_output","timestamp":1607098209,"output":"ime_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"running\", publisher_cb: #Function<"},{"event":"cmd_output","timestamp":1607098209,"output":"0.74670282/1 in Ppl.Ppls.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :term"},{"event":"cmd_output","timestamp":1607098209,"output":"inate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls,"},{"event":"cmd_output","timestamp":1607098210,"output":" task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:10:10.004 [info] Periodic from module Elixir.P"},{"event":"cmd_output","timestamp":1607098210,"output":"pl.Ppls.STMHandler.StoppingState with name Elixir.Ppl.Ppls.STMHandler.StoppingState :: period: 100 m"},{"event":"cmd_output","timestamp":1607098210,"output":"s, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring args: %{a"},{"event":"cmd_output","timestamp":1607098210,"output":"llowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, obser"},{"event":"cmd_output","timestamp":1607098210,"output":"ved_state: \"stopping\", publisher_cb: #Function<0.71803493/1 in Ppl.Ppls.STMHandler.StoppingState.arg"},{"event":"cmd_output","timestamp":1607098210,"output":"s/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recove"},{"event":"cmd_output","timestamp":1607098210,"output":"ry_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:10.005 [i"},{"event":"cmd_output","timestamp":1607098210,"output":"nfo] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSu"},{"event":"cmd_output","timestamp":1607098210,"output":"bInits.STMHandler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSub"},{"event":"cmd_output","timestamp":1607098210,"output":"Inits-STMHandler-CreatedState\"]}, recurring args: %{allowed_states: [\"fetching\", \"done\"], cooling_ti"},{"event":"cmd_output","timestamp":1607098210,"output":"me_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"created\", publisher_cb"},{"event":"cmd_output","timestamp":1607098210,"output":": :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :rec"},{"event":"cmd_output","timestamp":1607098210,"output":"overy_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098210,"output":"\n16:10:10.010 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.FetchingState with nam"},{"event":"cmd_output","timestamp":1607098210,"output":"e Elixir.Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wak"},{"event":"cmd_output","timestamp":1607098210,"output":"e_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %{allowed_states: [\"regular_in"},{"event":"cmd_output","timestamp":1607098210,"output":"it\", \"compilation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits,"},{"event":"cmd_output","timestamp":1607098210,"output":" observed_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_re"},{"event":"cmd_output","timestamp":1607098210,"output":"quest, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSub"},{"event":"cmd_output","timestamp":1607098210,"output":"Inits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:10.015 [info] Periodic from module Elixir.Ppl.PplS"},{"event":"cmd_output","timestamp":1607098210,"output":"ubInits.STMHandler.CompilationState with name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: "},{"event":"cmd_output","timestamp":1607098210,"output":"period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\""},{"event":"cmd_output","timestamp":1607098210,"output":"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_t"},{"event":"cmd_output","timestamp":1607098210,"output":"ime_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"compilation\", publis"},{"event":"cmd_output","timestamp":1607098210,"output":"her_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result"},{"event":"cmd_output","timestamp":1607098210,"output":", :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0"},{"event":"cmd_output","timestamp":1607098210,"output":"m\u001b[22m\n16:10:10.020 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState"},{"event":"cmd_output","timestamp":1607098210,"output":" with name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl."},{"event":"cmd_output","timestamp":1607098210,"output":"beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurring args: %{allowed_state"},{"event":"cmd_output","timestamp":1607098210,"output":"s: [\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: "},{"event":"cmd_output","timestamp":1607098210,"output":"\"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updat"},{"event":"cmd_output","timestamp":1607098210,"output":"ed_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_s"},{"event":"cmd_output","timestamp":1607098210,"output":"upervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:10.024 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHand"},{"event":"cmd_output","timestamp":1607098210,"output":"ler.InitializingState with name Elixir.Ppl.PplBlocks.STMHandler.InitializingState :: period: 100 ms,"},{"event":"cmd_output","timestamp":1607098210,"output":" metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-InitializingState\"]}, recurring ar"},{"event":"cmd_output","timestamp":1607098210,"output":"gs: %{allowed_states: [\"initializing\", \"waiting\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.P"},{"event":"cmd_output","timestamp":1607098210,"output":"plBlocks.Model.PplBlocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, r"},{"event":"cmd_output","timestamp":1607098210,"output":"eturning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_i"},{"event":"cmd_output","timestamp":1607098210,"output":"ndex], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:10.030 [info"},{"event":"cmd_output","timestamp":1607098210,"output":"] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks."},{"event":"cmd_output","timestamp":1607098210,"output":"STMHandler.WaitingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-ST"},{"event":"cmd_output","timestamp":1607098210,"output":"MHandler-WaitingState\"]}, recurring args: %{allowed_states: [\"waiting\", \"running\", \"done\"], cooling_"},{"event":"cmd_output","timestamp":1607098210,"output":"time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"waiting\", publisher_cb: "},{"event":"cmd_output","timestamp":1607098210,"output":"#Function<0.8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, returnin"},{"event":"cmd_output","timestamp":1607098210,"output":"g: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], "},{"event":"cmd_output","timestamp":1607098210,"output":"schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:10.034 [info] Peri"},{"event":"cmd_output","timestamp":1607098210,"output":"odic from module Elixir.Ppl.PplBlocks.STMHandler.RunningState with name Elixir.Ppl.PplBlocks.STMHand"},{"event":"cmd_output","timestamp":1607098210,"output":"ler.RunningState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandle"},{"event":"cmd_output","timestamp":1607098210,"output":"r-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_s"},{"event":"cmd_output","timestamp":1607098210,"output":"ec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"running\", publisher_cb: #Func"},{"event":"cmd_output","timestamp":1607098210,"output":"tion<0.28166834/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: ["},{"event":"cmd_output","timestamp":1607098210,"output":":id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :bloc"},{"event":"cmd_output","timestamp":1607098210,"output":"k_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:10.039 [info"},{"event":"cmd_output","timestamp":1607098210,"output":"] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.StoppingState with name Elixir.Ppl.PplBlocks"},{"event":"cmd_output","timestamp":1607098210,"output":".STMHandler.StoppingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-"},{"event":"cmd_output","timestamp":1607098210,"output":"STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_se"},{"event":"cmd_output","timestamp":1607098210,"output":"c: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"stopping\", publisher_cb: #Func"},{"event":"cmd_output","timestamp":1607098210,"output":"tion<0.104215991/1 in Ppl.PplBlocks.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning:"},{"event":"cmd_output","timestamp":1607098210,"output":" [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :bl"},{"event":"cmd_output","timestamp":1607098210,"output":"ock_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:10.045 [in"},{"event":"cmd_output","timestamp":1607098210,"output":"fo] Periodic from module Elixir.Block.Blocks.STMHandler.InitializingState with name Elixir.Block.Bl"},{"event":"cmd_output","timestamp":1607098210,"output":"ocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-B"},{"event":"cmd_output","timestamp":1607098210,"output":"locks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], coolin"},{"event":"cmd_output","timestamp":1607098210,"output":"g_time_sec: 0, initial_query: Block.Blocks.Model.Blocks, observed_state: \"initializing\", publisher_c"},{"event":"cmd_output","timestamp":1607098210,"output":"b: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_"},{"event":"cmd_output","timestamp":1607098210,"output":"count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:10.0"},{"event":"cmd_output","timestamp":1607098210,"output":"50 [info] Periodic from module Elixir.Block.Blocks.STMHandler.RunningState with name Elixir.Block.B"},{"event":"cmd_output","timestamp":1607098210,"output":"locks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Block"},{"event":"cmd_output","timestamp":1607098210,"output":"s-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], coo"},{"event":"cmd_output","timestamp":1607098210,"output":"ling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"running\", publisher_cb"},{"event":"cmd_output","timestamp":1607098210,"output":": :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_c"},{"event":"cmd_output","timestamp":1607098210,"output":"ount, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:10.05"},{"event":"cmd_output","timestamp":1607098210,"output":"5 [info] Periodic from module Elixir.Block.Blocks.STMHandler.StoppingState with name Elixir.Block.B"},{"event":"cmd_output","timestamp":1607098210,"output":"locks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Bloc"},{"event":"cmd_output","timestamp":1607098210,"output":"ks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time"},{"event":"cmd_output","timestamp":1607098210,"output":"_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"stopping\", publisher_cb: :skip,"},{"event":"cmd_output","timestamp":1607098210,"output":" repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :b"},{"event":"cmd_output","timestamp":1607098210,"output":"lock_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:10.059 [info]"},{"event":"cmd_output","timestamp":1607098210,"output":" Periodic from module Elixir.Block.Tasks.STMHandler.PendingState with name Elixir.Block.Tasks.STMHa"},{"event":"cmd_output","timestamp":1607098210,"output":"ndler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler"},{"event":"cmd_output","timestamp":1607098210,"output":"-PendingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initia"},{"event":"cmd_output","timestamp":1607098210,"output":"l_query: Block.Tasks.Model.Tasks, observed_state: \"pending\", publisher_cb: :skip, repo: Block.EctoRe"},{"event":"cmd_output","timestamp":1607098210,"output":"po, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id, :build_req"},{"event":"cmd_output","timestamp":1607098210,"output":"uest_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:10.065 [info] "},{"event":"cmd_output","timestamp":1607098210,"output":"Periodic from module Elixir.Block.Tasks.STMHandler.RunningState with name Elixir.Block.Tasks.STMHand"},{"event":"cmd_output","timestamp":1607098210,"output":"ler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-R"},{"event":"cmd_output","timestamp":1607098210,"output":"unningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec:"},{"event":"cmd_output","timestamp":1607098210,"output":" -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"running\", publisher_cb: :skip, repo: B"},{"event":"cmd_output","timestamp":1607098210,"output":"lock.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id]"},{"event":"cmd_output","timestamp":1607098210,"output":", schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:10.069 [info] Periodic"},{"event":"cmd_output","timestamp":1607098210,"output":" from module Elixir.Block.Tasks.STMHandler.StoppingState with name Elixir.Block.Tasks.STMHandler.Sto"},{"event":"cmd_output","timestamp":1607098210,"output":"ppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-Stoppin"},{"event":"cmd_output","timestamp":1607098210,"output":"gState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_que"},{"event":"cmd_output","timestamp":1607098210,"output":"ry: Block.Tasks.Model.Tasks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, "},{"event":"cmd_output","timestamp":1607098210,"output":"returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block"},{"event":"cmd_output","timestamp":1607098210,"output":".Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:10.193 [info] ppl_id: f8417768-647c-4"},{"event":"cmd_output","timestamp":1607098210,"output":"f8c-9f21-79ee3579d746, type: PplRequests, event: persisted source_args for pipeline: f8417768-647c-4"},{"event":"cmd_output","timestamp":1607098210,"output":"f8c-9f21-79ee3579d746, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89),"},{"event":"cmd_output","timestamp":1607098210,"output":" \n\u001b[0m\u001b[22m\n16:10:10.198 [info] ppl_id: f8417768-647c-4f8c-9f21-79ee3579d746, type: PplSubInits, "},{"event":"cmd_output","timestamp":1607098210,"output":"state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state"},{"event":"cmd_output","timestamp":1607098210,"output":"_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:10.316 [info] ppl_id: 451f2dd4-1ce5-4dae-ba53-aa4aaf0e0daf, type"},{"event":"cmd_output","timestamp":1607098210,"output":": PplRequests, event: persisted source_args for pipeline: 451f2dd4-1ce5-4dae-ba53-aa4aaf0e0daf, orig"},{"event":"cmd_output","timestamp":1607098210,"output":"in: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:10.319 "},{"event":"cmd_output","timestamp":1607098210,"output":"[info] ppl_id: 451f2dd4-1ce5-4dae-ba53-aa4aaf0e0daf, type: PplSubInits, state: fetching, event: exi"},{"event":"cmd_output","timestamp":1607098210,"output":"t_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098210,"output":"\n16:10:10.359 [info] ppl_id: f8417768-647c-4f8c-9f21-79ee3579d746, type: PplSubInits, state: regul"},{"event":"cmd_output","timestamp":1607098210,"output":"ar_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/"},{"event":"cmd_output","timestamp":1607098210,"output":"1(L90), \n\u001b[0m\u001b[22m\n16:10:10.396 [info] ppl_id: 451f2dd4-1ce5-4dae-ba53-aa4aaf0e0daf, type: PplSub"},{"event":"cmd_output","timestamp":1607098210,"output":"Inits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Imp"},{"event":"cmd_output","timestamp":1607098210,"output":"l.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:10.433 [info] ppl_id: 744f7a59-b743-4cb8-8756-33d1335"},{"event":"cmd_output","timestamp":1607098210,"output":"17971, type: PplRequests, event: persisted source_args for pipeline: 744f7a59-b743-4cb8-8756-33d1335"},{"event":"cmd_output","timestamp":1607098210,"output":"17971, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098210,"output":":10:10.437 [info] ppl_id: 744f7a59-b743-4cb8-8756-33d133517971, type: PplSubInits, state: fetching,"},{"event":"cmd_output","timestamp":1607098210,"output":" event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), "},{"event":"cmd_output","timestamp":1607098210,"output":"\n\u001b[0m\u001b[22m\n16:10:10.479 [info] ppl_id: 744f7a59-b743-4cb8-8756-33d133517971, type: PplSubInits, s"},{"event":"cmd_output","timestamp":1607098210,"output":"tate: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_st"},{"event":"cmd_output","timestamp":1607098210,"output":"ate_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:10.534 [info] ppl_id: f8417768-647c-4f8c-9f21-79ee3579d746, t"},{"event":"cmd_output","timestamp":1607098210,"output":"ype: PplRequests, event: persisted definition for request with request_token: 2debe920-364b-11eb-ba5"},{"event":"cmd_output","timestamp":1607098210,"output":"a-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n"},{"event":"cmd_output","timestamp":1607098210,"output":"\u001b[0m\u001b[22m\n16:10:10.543 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Sche"},{"event":"cmd_output","timestamp":1607098210,"output":"ma.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:10:10.541933], name: \"master-0-.semaph"},{"event":"cmd_output","timestamp":1607098210,"output":"ore/semaphore.yml\", organization_id: \"30948249-89ce-4b01-bbf0-13c50974a1d0\", project_id: \"list_group"},{"event":"cmd_output","timestamp":1607098210,"output":"ed\", queue_id: \"b9769577-bc8d-4652-96f7-f610b939bbd8\", scope: \"project\", updated_at: ~N[2020-12-04 1"},{"event":"cmd_output","timestamp":1607098210,"output":"6:10:10.541944], user_generated: false}}\n\u001b[0m\u001b[22m\n16:10:10.561 [info] ppl_id: 10f8d5f9-e0fb-4ba9"},{"event":"cmd_output","timestamp":1607098210,"output":"-b509-b2d99bd16f14, type: PplRequests, event: persisted source_args for pipeline: 10f8d5f9-e0fb-4ba9"},{"event":"cmd_output","timestamp":1607098210,"output":"-b509-b2d99bd16f14, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n"},{"event":"cmd_output","timestamp":1607098210,"output":"\u001b[0m\u001b[22m\n16:10:10.567 [info] ppl_id: 10f8d5f9-e0fb-4ba9-b509-b2d99bd16f14, type: PplSubInits, sta"},{"event":"cmd_output","timestamp":1607098210,"output":"te: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_ch"},{"event":"cmd_output","timestamp":1607098210,"output":"ange/1(L90), \n\u001b[0m\u001b[22m\n16:10:10.567 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHan"},{"event":"cmd_output","timestamp":1607098210,"output":"dler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:10.567 [info] ppl_id: f8417768-647c-4f8c-"},{"event":"cmd_output","timestamp":1607098210,"output":"9f21-79ee3579d746, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_co"},{"event":"cmd_output","timestamp":1607098210,"output":"unt: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098210,"output":"10:10.571 [info] ppl_id: f8417768-647c-4f8c-9f21-79ee3579d746, type: PplSubInits, state: done, resu"},{"event":"cmd_output","timestamp":1607098210,"output":"lt: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chan"},{"event":"cmd_output","timestamp":1607098210,"output":"ge/1(L90), \n\u001b[0m\u001b[22m\n16:10:10.587 [info] ppl_id: f8417768-647c-4f8c-9f21-79ee3579d746, type: Ppl"},{"event":"cmd_output","timestamp":1607098210,"output":"Blocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Lo"},{"event":"cmd_output","timestamp":1607098210,"output":"oper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:10.598 [info] ppl_id: f8417768-647c-4f8c-"},{"event":"cmd_output","timestamp":1607098210,"output":"9f21-79ee3579d746, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098210,"output":"ixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:10.623 [info] ppl_id: 10f8d5f9-e0f"},{"event":"cmd_output","timestamp":1607098210,"output":"b-4ba9-b509-b2d99bd16f14, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098210,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:10.632 [info] p"},{"event":"cmd_output","timestamp":1607098210,"output":"pl_id: f8417768-647c-4f8c-9f21-79ee3579d746, type: Ppls, state: queuing, event: exit_scheduling, rec"},{"event":"cmd_output","timestamp":1607098210,"output":"overy_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:10.645 [i"},{"event":"cmd_output","timestamp":1607098210,"output":"nfo] ppl_id: 451f2dd4-1ce5-4dae-ba53-aa4aaf0e0daf, type: PplRequests, event: persisted definition f"},{"event":"cmd_output","timestamp":1607098210,"output":"or request with request_token: 2e21dcba-364b-11eb-89af-5254005464e2, origin: Elixir.Ppl.PplRequests."},{"event":"cmd_output","timestamp":1607098210,"output":"Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:10.649 [info] Queue persisted"},{"event":"cmd_output","timestamp":1607098210,"output":": {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N"},{"event":"cmd_output","timestamp":1607098210,"output":"[2020-12-04 16:10:10.646834], name: \"master-1-.semaphore/semaphore.yml\", organization_id: \"b58fea44-"},{"event":"cmd_output","timestamp":1607098210,"output":"f79c-4966-8292-b315d6a60b77\", project_id: \"list_grouped\", queue_id: \"e9b81dd1-76fa-4571-ad10-8c82772"},{"event":"cmd_output","timestamp":1607098210,"output":"5965d\", scope: \"project\", updated_at: ~N[2020-12-04 16:10:10.646845], user_generated: false}}\n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098210,"output":"[22m\n16:10:10.651 [info] ppl_id: f8417768-647c-4f8c-9f21-79ee3579d746, type: Ppls, state: running,"},{"event":"cmd_output","timestamp":1607098210,"output":" event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), "},{"event":"cmd_output","timestamp":1607098210,"output":"\n\u001b[0m\u001b[22m\n16:10:10.657 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularI"},{"event":"cmd_output","timestamp":1607098210,"output":"nitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:10.657 [info] ppl_id: 451f2dd4-1ce5-4dae-ba53-aa4aaf0e"},{"event":"cmd_output","timestamp":1607098210,"output":"0daf, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098210,"output":"n: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:10.661 [in"},{"event":"cmd_output","timestamp":1607098210,"output":"fo] ppl_id: 451f2dd4-1ce5-4dae-ba53-aa4aaf0e0daf, type: PplSubInits, state: done, result: passed, e"},{"event":"cmd_output","timestamp":1607098210,"output":"vent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n"},{"event":"cmd_output","timestamp":1607098210,"output":"\u001b[0m\u001b[22m\n16:10:10.663 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"f84"},{"event":"cmd_output","timestamp":1607098210,"output":"17768-647c-4f8c-9f21-79ee3579d746\"\n\u001b[0m\u001b[22m\n16:10:10.683 [info] ppl_id: 451f2dd4-1ce5-4dae-ba53-"},{"event":"cmd_output","timestamp":1607098210,"output":"aa4aaf0e0daf, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098210,"output":"Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:10.689 [info] ppl_id: 451f2dd4-1ce5-4da"},{"event":"cmd_output","timestamp":1607098210,"output":"e-ba53-aa4aaf0e0daf, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recove"},{"event":"cmd_output","timestamp":1607098210,"output":"ry_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:10.695 [info"},{"event":"cmd_output","timestamp":1607098210,"output":"] ppl_id: a156cb57-e802-46aa-b3bd-1ef79b3be293, type: PplRequests, event: persisted source_args for"},{"event":"cmd_output","timestamp":1607098210,"output":" pipeline: a156cb57-e802-46aa-b3bd-1ef79b3be293, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQue"},{"event":"cmd_output","timestamp":1607098210,"output":"ries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:10.703 [info] ppl_id: a156cb57-e802-46aa-b3bd-1ef79b3"},{"event":"cmd_output","timestamp":1607098210,"output":"be293, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098210,"output":".Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:10.724 [info] ppl_id: 451f2dd4-1ce5-4d"},{"event":"cmd_output","timestamp":1607098210,"output":"ae-ba53-aa4aaf0e0daf, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098210,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:10.750 [info] ppl_id: 744f7a59-"},{"event":"cmd_output","timestamp":1607098210,"output":"b743-4cb8-8756-33d133517971, type: PplRequests, event: persisted definition for request with request"},{"event":"cmd_output","timestamp":1607098210,"output":"_token: 2e2ae08a-364b-11eb-9899-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQuerie"},{"event":"cmd_output","timestamp":1607098210,"output":"s.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:10.755 [info] ppl_id: 451f2dd4-1ce5-4dae-ba53-aa4aaf"},{"event":"cmd_output","timestamp":1607098210,"output":"0e0daf, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper"},{"event":"cmd_output","timestamp":1607098210,"output":".STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:10.757 [info] Queue persisted: {:ok, %Ppl.Que"},{"event":"cmd_output","timestamp":1607098210,"output":"ues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:1"},{"event":"cmd_output","timestamp":1607098210,"output":"0:10.753563], name: \"master-2-.semaphore/semaphore.yml\", organization_id: \"5e760a3b-1af0-4ab9-929a-6"},{"event":"cmd_output","timestamp":1607098210,"output":"1f7a03f5455\", project_id: \"list_grouped\", queue_id: \"c317e27c-6fd0-4c59-a8f8-10a6101af7f2\", scope: \""},{"event":"cmd_output","timestamp":1607098210,"output":"project\", updated_at: ~N[2020-12-04 16:10:10.753576], user_generated: false}}\n\u001b[0m\u001b[22m\n16:10:10.7"},{"event":"cmd_output","timestamp":1607098210,"output":"67 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105"},{"event":"cmd_output","timestamp":1607098210,"output":"), \n\u001b[0m\u001b[22m\n16:10:10.767 [info] ppl_id: 744f7a59-b743-4cb8-8756-33d133517971, type: PplBlocks, "},{"event":"cmd_output","timestamp":1607098210,"output":"block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubIni"},{"event":"cmd_output","timestamp":1607098210,"output":"ts.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:10.772 [info] ppl_id: 744f7a59-b"},{"event":"cmd_output","timestamp":1607098210,"output":"743-4cb8-8756-33d133517971, type: PplSubInits, state: done, result: passed, event: exit_scheduling, "},{"event":"cmd_output","timestamp":1607098210,"output":"recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:10.776"},{"event":"cmd_output","timestamp":1607098210,"output":" [info] ppl_id: a156cb57-e802-46aa-b3bd-1ef79b3be293, type: PplSubInits, state: regular_init, event"},{"event":"cmd_output","timestamp":1607098210,"output":": exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098210,"output":"\u001b[22m\n16:10:10.788 [info] block_id: 048ba67f-e313-4eae-b41c-244356000e80, type: BlockRequests, eve"},{"event":"cmd_output","timestamp":1607098210,"output":"nt: persisted block run request from ppl f8417768-647c-4f8c-9f21-79ee3579d746 for block 0, origin: E"},{"event":"cmd_output","timestamp":1607098210,"output":"lixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:10."},{"event":"cmd_output","timestamp":1607098210,"output":"790 [info] ppl_id: 744f7a59-b743-4cb8-8756-33d133517971, type: PplBlocks, block_index: 0, state: wa"},{"event":"cmd_output","timestamp":1607098210,"output":"iting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1("},{"event":"cmd_output","timestamp":1607098210,"output":"L90), \n\u001b[0m\u001b[22m\n16:10:10.798 [info] ppl_id: 744f7a59-b743-4cb8-8756-33d133517971, type: Ppls, st"},{"event":"cmd_output","timestamp":1607098210,"output":"ate: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_ch"},{"event":"cmd_output","timestamp":1607098210,"output":"ange/1(L90), \n\u001b[0m\u001b[22m\n16:10:10.801 [info] block_id: 048ba67f-e313-4eae-b41c-244356000e80, type:"},{"event":"cmd_output","timestamp":1607098210,"output":" Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Mo"},{"event":"cmd_output","timestamp":1607098210,"output":"del.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:10.814 [info] Block 0 of pipeline with id: f841"},{"event":"cmd_output","timestamp":1607098210,"output":"7768-647c-4f8c-9f21-79ee3579d746 scheduled in block service with id: : \"048ba67f-e313-4eae-b41c-2443"},{"event":"cmd_output","timestamp":1607098210,"output":"56000e80\"\n\u001b[0m\u001b[22m\n16:10:10.832 [info] ppl_id: f8417768-647c-4f8c-9f21-79ee3579d746, type: PplBl"},{"event":"cmd_output","timestamp":1607098210,"output":"ocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loop"},{"event":"cmd_output","timestamp":1607098210,"output":"er.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:10.839 [info] ppl_id: 744f7a59-b743-4cb8-87"},{"event":"cmd_output","timestamp":1607098210,"output":"56-33d133517971, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098210,"output":"ir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:10.847 [info] ppl_id: ad902bad-7a6c-"},{"event":"cmd_output","timestamp":1607098210,"output":"4a0e-944b-675869cac0fc, type: PplRequests, event: persisted source_args for pipeline: ad902bad-7a6c-"},{"event":"cmd_output","timestamp":1607098210,"output":"4a0e-944b-675869cac0fc, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89)"},{"event":"cmd_output","timestamp":1607098210,"output":", \n\u001b[0m\u001b[22m\n16:10:10.851 [info] ppl_id: 10f8d5f9-e0fb-4ba9-b509-b2d99bd16f14, type: PplRequests,"},{"event":"cmd_output","timestamp":1607098210,"output":" event: persisted definition for request with request_token: 2e32a158-364b-11eb-9e9d-5254005464e2, o"},{"event":"cmd_output","timestamp":1607098210,"output":"rigin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:"},{"event":"cmd_output","timestamp":1607098210,"output":"10.852 [info] ppl_id: ad902bad-7a6c-4a0e-944b-675869cac0fc, type: PplSubInits, state: fetching, eve"},{"event":"cmd_output","timestamp":1607098210,"output":"nt: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b["},{"event":"cmd_output","timestamp":1607098210,"output":"0m\u001b[22m\n16:10:10.859 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema"},{"event":"cmd_output","timestamp":1607098210,"output":".Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:10:10.855350], name: \"master-3-.semaphor"},{"event":"cmd_output","timestamp":1607098210,"output":"e/semaphore.yml\", organization_id: \"8121c90d-b801-4324-864e-778a3506e996\", project_id: \"list_grouped"},{"event":"cmd_output","timestamp":1607098210,"output":"\", queue_id: \"e50ab3c2-a172-4dc3-80db-736a66f6f20c\", scope: \"project\", updated_at: ~N[2020-12-04 16:"},{"event":"cmd_output","timestamp":1607098210,"output":"10:10.855359], user_generated: false}}\n\u001b[0m\u001b[22m\n16:10:10.866 [info] ppl_id: 744f7a59-b743-4cb8-8"},{"event":"cmd_output","timestamp":1607098210,"output":"756-33d133517971, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098210,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:10.869 [info] event: created, origi"},{"event":"cmd_output","timestamp":1607098210,"output":"n: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:10.870 [in"},{"event":"cmd_output","timestamp":1607098210,"output":"fo] ppl_id: 10f8d5f9-e0fb-4ba9-b509-b2d99bd16f14, type: PplBlocks, block_index: 0, state: initializ"},{"event":"cmd_output","timestamp":1607098210,"output":"ing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.a"},{"event":"cmd_output","timestamp":1607098210,"output":"ll_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:10.872 [info] ppl_id: 10f8d5f9-e0fb-4ba9-b509-b2d99bd16f14, type"},{"event":"cmd_output","timestamp":1607098210,"output":": PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098210,"output":"r.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:10.897 [info] ppl_id: 10f8d5f9-e0fb-4"},{"event":"cmd_output","timestamp":1607098210,"output":"ba9-b509-b2d99bd16f14, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098210,"output":": Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:10.898 [info] ppl_id: 10f8d5f9"},{"event":"cmd_output","timestamp":1607098210,"output":"-e0fb-4ba9-b509-b2d99bd16f14, type: PplBlocks, block_index: 0, state: waiting, event: exit_schedulin"},{"event":"cmd_output","timestamp":1607098210,"output":"g, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:10."},{"event":"cmd_output","timestamp":1607098210,"output":"912 [info] ppl_id: 10f8d5f9-e0fb-4ba9-b509-b2d99bd16f14, type: Ppls, state: queuing, event: exit_sc"},{"event":"cmd_output","timestamp":1607098210,"output":"heduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098210,"output":":10:10.926 [info] ppl_id: 10f8d5f9-e0fb-4ba9-b509-b2d99bd16f14, type: Ppls, state: running, event: "},{"event":"cmd_output","timestamp":1607098210,"output":"exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098210,"output":"22m\n16:10:10.937 [info] ppl_id: ad902bad-7a6c-4a0e-944b-675869cac0fc, type: PplSubInits, state: re"},{"event":"cmd_output","timestamp":1607098210,"output":"gular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chan"},{"event":"cmd_output","timestamp":1607098210,"output":"ge/1(L90), \n\u001b[0m\u001b[22m\n16:10:10.951 [info] ppl_id: a156cb57-e802-46aa-b3bd-1ef79b3be293, type: Ppl"},{"event":"cmd_output","timestamp":1607098210,"output":"Requests, event: persisted definition for request with request_token: 2e3ab2ee-364b-11eb-90e2-525400"},{"event":"cmd_output","timestamp":1607098210,"output":"5464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098210,"output":"m\n16:10:10.952 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"10f8d5f9-e0"},{"event":"cmd_output","timestamp":1607098210,"output":"fb-4ba9-b509-b2d99bd16f14\"\n\u001b[0m\u001b[22m\n16:10:10.961 [info] Queue persisted: {:ok, %Ppl.Queues.Model"},{"event":"cmd_output","timestamp":1607098210,"output":".Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:10:10.9561"},{"event":"cmd_output","timestamp":1607098210,"output":"26], name: \"master-4-.semaphore/semaphore.yml\", organization_id: \"0f4680df-d5b5-4d05-8d26-8da0059fe0"},{"event":"cmd_output","timestamp":1607098210,"output":"91\", project_id: \"list_grouped\", queue_id: \"1b1b85b7-d710-49ba-8e91-deead36d1d1e\", scope: \"project\","},{"event":"cmd_output","timestamp":1607098210,"output":" updated_at: ~N[2020-12-04 16:10:10.956178], user_generated: false}}\n\u001b[0m\u001b[22m\n16:10:10.974 [info]"},{"event":"cmd_output","timestamp":1607098210,"output":" event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098210,"output":"\u001b[22m\n16:10:10.974 [info] ppl_id: a156cb57-e802-46aa-b3bd-1ef79b3be293, type: PplBlocks, block_ind"},{"event":"cmd_output","timestamp":1607098210,"output":"ex: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHan"},{"event":"cmd_output","timestamp":1607098210,"output":"dler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:10.976 [info] block_id: a1f7745d-6b77-433"},{"event":"cmd_output","timestamp":1607098210,"output":"9-a98e-e37df46a689a, type: BlockRequests, event: persisted block run request from ppl 10f8d5f9-e0fb-"},{"event":"cmd_output","timestamp":1607098210,"output":"4ba9-b509-b2d99bd16f14 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.pr"},{"event":"cmd_output","timestamp":1607098210,"output":"ocess_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:10.977 [info] ppl_id: f3948fcc-c38d-4cfa-a202-3e631e236c7"},{"event":"cmd_output","timestamp":1607098210,"output":"c, type: PplRequests, event: persisted source_args for pipeline: f3948fcc-c38d-4cfa-a202-3e631e236c7"},{"event":"cmd_output","timestamp":1607098210,"output":"c, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:"},{"event":"cmd_output","timestamp":1607098210,"output":"10.980 [info] block_id: 048ba67f-e313-4eae-b41c-244356000e80, type: BlockRequests, event: persisted"},{"event":"cmd_output","timestamp":1607098210,"output":" build and sub_ppl details for block_request: 048ba67f-e313-4eae-b41c-244356000e80, origin: Elixir.B"},{"event":"cmd_output","timestamp":1607098210,"output":"lock.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:10.981 [info] "},{"event":"cmd_output","timestamp":1607098210,"output":" ppl_id: a156cb57-e802-46aa-b3bd-1ef79b3be293, type: PplSubInits, state: done, result: passed, event"},{"event":"cmd_output","timestamp":1607098210,"output":": exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098210,"output":"\u001b[22m\n16:10:10.983 [info] block_id: a1f7745d-6b77-4339-a98e-e37df46a689a, type: Blocks, state: ini"},{"event":"cmd_output","timestamp":1607098210,"output":"tializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.i"},{"event":"cmd_output","timestamp":1607098210,"output":"nsert/1(L43), \n\u001b[0m\u001b[22m\n16:10:10.988 [info] Block 0 of pipeline with id: 10f8d5f9-e0fb-4ba9-b509"},{"event":"cmd_output","timestamp":1607098210,"output":"-b2d99bd16f14 scheduled in block service with id: : \"a1f7745d-6b77-4339-a98e-e37df46a689a\"\n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098210,"output":"m\n16:10:10.989 [info] ppl_id: f3948fcc-c38d-4cfa-a202-3e631e236c7c, type: PplSubInits, state: fetc"},{"event":"cmd_output","timestamp":1607098210,"output":"hing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098211,"output":"90), \n\u001b[0m\u001b[22m\n16:10:10.999 [info] ppl_id: 10f8d5f9-e0fb-4ba9-b509-b2d99bd16f14, type: PplBlocks"},{"event":"cmd_output","timestamp":1607098211,"output":", block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.S"},{"event":"cmd_output","timestamp":1607098211,"output":"TM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.002 [info] ppl_id: a156cb57-e802-46aa-b3bd-1"},{"event":"cmd_output","timestamp":1607098211,"output":"ef79b3be293, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count"},{"event":"cmd_output","timestamp":1607098211,"output":": 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.005 [info] block"},{"event":"cmd_output","timestamp":1607098211,"output":"_id: 048ba67f-e313-4eae-b41c-244356000e80, type: Tasks, state: pending, event: created, recovery_cou"},{"event":"cmd_output","timestamp":1607098211,"output":"nt: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:"},{"event":"cmd_output","timestamp":1607098211,"output":"11.012 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"744f7a59-b743-4cb8-8"},{"event":"cmd_output","timestamp":1607098211,"output":"756-33d133517971\"\n\u001b[0m\u001b[22m\n16:10:11.016 [info] ppl_id: a156cb57-e802-46aa-b3bd-1ef79b3be293, typ"},{"event":"cmd_output","timestamp":1607098211,"output":"e: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.l"},{"event":"cmd_output","timestamp":1607098211,"output":"og_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.024 [info] block_id: 048ba67f-e313-4eae-b41c-24435600"},{"event":"cmd_output","timestamp":1607098211,"output":"0e80, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper"},{"event":"cmd_output","timestamp":1607098211,"output":".STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.035 [info] block_id: e3f76ecc-4d93-402e-bb"},{"event":"cmd_output","timestamp":1607098211,"output":"37-a5cfc4624bba, type: BlockRequests, event: persisted block run request from ppl 744f7a59-b743-4cb8"},{"event":"cmd_output","timestamp":1607098211,"output":"-8756-33d133517971 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.proces"},{"event":"cmd_output","timestamp":1607098211,"output":"s_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:11.046 [info] block_id: e3f76ecc-4d93-402e-bb37-a5cfc4624bba,"},{"event":"cmd_output","timestamp":1607098211,"output":" type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blo"},{"event":"cmd_output","timestamp":1607098211,"output":"cks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:11.054 [info] ppl_id: a156cb57-e802-46aa-"},{"event":"cmd_output","timestamp":1607098211,"output":"b3bd-1ef79b3be293, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098211,"output":"ixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.059 [info] Block 0 of pipeline "},{"event":"cmd_output","timestamp":1607098211,"output":"with id: 744f7a59-b743-4cb8-8756-33d133517971 scheduled in block service with id: : \"e3f76ecc-4d93-4"},{"event":"cmd_output","timestamp":1607098211,"output":"02e-bb37-a5cfc4624bba\"\n\u001b[0m\u001b[22m\n16:10:11.072 [info] ppl_id: 744f7a59-b743-4cb8-8756-33d133517971"},{"event":"cmd_output","timestamp":1607098211,"output":", type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098211,"output":": Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.073 [info] block_id: a1f774"},{"event":"cmd_output","timestamp":1607098211,"output":"5d-6b77-4339-a98e-e37df46a689a, type: BlockRequests, event: persisted build and sub_ppl details for "},{"event":"cmd_output","timestamp":1607098211,"output":"block_request: a1f7745d-6b77-4339-a98e-e37df46a689a, origin: Elixir.Block.BlockRequests.Model.BlockR"},{"event":"cmd_output","timestamp":1607098211,"output":"equestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:11.084 [info] PplBlocks WaitingState STM is "},{"event":"cmd_output","timestamp":1607098211,"output":"scheduling block 0 from pipeline: \"451f2dd4-1ce5-4dae-ba53-aa4aaf0e0daf\"\n\u001b[0m\u001b[22m\n16:10:11.090 [i"},{"event":"cmd_output","timestamp":1607098211,"output":"nfo] block_id: a1f7745d-6b77-4339-a98e-e37df46a689a, type: Tasks, state: pending, event: created, r"},{"event":"cmd_output","timestamp":1607098211,"output":"ecovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098211,"output":"22m\n16:10:11.101 [info] ppl_id: f3948fcc-c38d-4cfa-a202-3e631e236c7c, type: PplSubInits, state: re"},{"event":"cmd_output","timestamp":1607098211,"output":"gular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chan"},{"event":"cmd_output","timestamp":1607098211,"output":"ge/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.103 [info] block_id: a1f7745d-6b77-4339-a98e-e37df46a689a, type: B"},{"event":"cmd_output","timestamp":1607098211,"output":"locks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098211,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.104 [info] ppl_id: a156cb57-e802-46aa-b3bd-1ef79b3be293"},{"event":"cmd_output","timestamp":1607098211,"output":", type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.I"},{"event":"cmd_output","timestamp":1607098211,"output":"mpl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.122 [info] block_id: d2cebf47-5fdc-410e-945b-39f"},{"event":"cmd_output","timestamp":1607098211,"output":"345e04a5d, type: BlockRequests, event: persisted block run request from ppl 451f2dd4-1ce5-4dae-ba53-"},{"event":"cmd_output","timestamp":1607098211,"output":"aa4aaf0e0daf for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_resp"},{"event":"cmd_output","timestamp":1607098211,"output":"onse/4(L35), \n\u001b[0m\u001b[22m\n16:10:11.126 [info] ppl_id: ad902bad-7a6c-4a0e-944b-675869cac0fc, type: P"},{"event":"cmd_output","timestamp":1607098211,"output":"plRequests, event: persisted definition for request with request_token: 2e4567ac-364b-11eb-a763-5254"},{"event":"cmd_output","timestamp":1607098211,"output":"005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098211,"output":"22m\n16:10:11.136 [info] ppl_id: 9c52e284-86f8-496a-bb60-679230b02f4f, type: PplRequests, event: pe"},{"event":"cmd_output","timestamp":1607098211,"output":"rsisted source_args for pipeline: 9c52e284-86f8-496a-bb60-679230b02f4f, origin: Elixir.Ppl.PplReques"},{"event":"cmd_output","timestamp":1607098211,"output":"ts.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:11.140 [info] ppl_id: 9c52e284"},{"event":"cmd_output","timestamp":1607098211,"output":"-86f8-496a-bb60-679230b02f4f, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098211,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.140 [info] b"},{"event":"cmd_output","timestamp":1607098211,"output":"lock_id: d2cebf47-5fdc-410e-945b-39f345e04a5d, type: Blocks, state: initializing, event: initializin"},{"event":"cmd_output","timestamp":1607098211,"output":"g, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098211,"output":":10:11.148 [info] block_id: e3f76ecc-4d93-402e-bb37-a5cfc4624bba, type: BlockRequests, event: persi"},{"event":"cmd_output","timestamp":1607098211,"output":"sted build and sub_ppl details for block_request: e3f76ecc-4d93-402e-bb37-a5cfc4624bba, origin: Elix"},{"event":"cmd_output","timestamp":1607098211,"output":"ir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:11.150 [in"},{"event":"cmd_output","timestamp":1607098211,"output":"fo] Block 0 of pipeline with id: 451f2dd4-1ce5-4dae-ba53-aa4aaf0e0daf scheduled in block service wi"},{"event":"cmd_output","timestamp":1607098211,"output":"th id: : \"d2cebf47-5fdc-410e-945b-39f345e04a5d\"\n\u001b[0m\u001b[22m\n16:10:11.151 [info] Queue persisted: {:"},{"event":"cmd_output","timestamp":1607098211,"output":"ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[202"},{"event":"cmd_output","timestamp":1607098211,"output":"0-12-04 16:10:11.142567], name: \"master-5-.semaphore/semaphore.yml\", organization_id: \"d259e5e2-6978"},{"event":"cmd_output","timestamp":1607098211,"output":"-48af-ae0e-c7eee9b3f49a\", project_id: \"list_grouped\", queue_id: \"2967a6de-752a-423a-a11b-0c9546ab989"},{"event":"cmd_output","timestamp":1607098211,"output":"9\", scope: \"project\", updated_at: ~N[2020-12-04 16:10:11.142578], user_generated: false}}\n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098211,"output":"\n16:10:11.154 [info] block_id: e3f76ecc-4d93-402e-bb37-a5cfc4624bba, type: Tasks, state: pending, "},{"event":"cmd_output","timestamp":1607098211,"output":"event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/"},{"event":"cmd_output","timestamp":1607098211,"output":"1(L167), \n\u001b[0m\u001b[22m\n16:10:11.160 [info] ppl_id: 451f2dd4-1ce5-4dae-ba53-aa4aaf0e0daf, type: PplBl"},{"event":"cmd_output","timestamp":1607098211,"output":"ocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loop"},{"event":"cmd_output","timestamp":1607098211,"output":"er.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.162 [info] block_id: e3f76ecc-4d93-402e-"},{"event":"cmd_output","timestamp":1607098211,"output":"bb37-a5cfc4624bba, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098211,"output":"Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.164 [info] event: created, or"},{"event":"cmd_output","timestamp":1607098211,"output":"igin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:11.164 "},{"event":"cmd_output","timestamp":1607098211,"output":"[info] ppl_id: ad902bad-7a6c-4a0e-944b-675869cac0fc, type: PplBlocks, block_index: 0, state: initia"},{"event":"cmd_output","timestamp":1607098211,"output":"lizing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitStat"},{"event":"cmd_output","timestamp":1607098211,"output":"e.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:11.168 [info] ppl_id: ad902bad-7a6c-4a0e-944b-675869cac0fc, t"},{"event":"cmd_output","timestamp":1607098211,"output":"ype: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098211,"output":"ixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.181 [info] PplBlocks WaitingSta"},{"event":"cmd_output","timestamp":1607098211,"output":"te STM is scheduling block 0 from pipeline: \"a156cb57-e802-46aa-b3bd-1ef79b3be293\"\n\u001b[0m\u001b[22m\n16:10"},{"event":"cmd_output","timestamp":1607098211,"output":":11.187 [info] block_id: d2cebf47-5fdc-410e-945b-39f345e04a5d, type: BlockRequests, event: persiste"},{"event":"cmd_output","timestamp":1607098211,"output":"d build and sub_ppl details for block_request: d2cebf47-5fdc-410e-945b-39f345e04a5d, origin: Elixir."},{"event":"cmd_output","timestamp":1607098211,"output":"Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:11.191 [info]"},{"event":"cmd_output","timestamp":1607098211,"output":" block_id: d2cebf47-5fdc-410e-945b-39f345e04a5d, type: Tasks, state: pending, event: created, recov"},{"event":"cmd_output","timestamp":1607098211,"output":"ery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098211,"output":"\n16:10:11.200 [info] ppl_id: ad902bad-7a6c-4a0e-944b-675869cac0fc, type: PplBlocks, block_index: 0,"},{"event":"cmd_output","timestamp":1607098211,"output":" state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state"},{"event":"cmd_output","timestamp":1607098211,"output":"_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.200 [info] ppl_id: ad902bad-7a6c-4a0e-944b-675869cac0fc, type"},{"event":"cmd_output","timestamp":1607098211,"output":": Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.lo"},{"event":"cmd_output","timestamp":1607098211,"output":"g_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.204 [info] block_id: d2cebf47-5fdc-410e-945b-39f345e04"},{"event":"cmd_output","timestamp":1607098211,"output":"a5d, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper."},{"event":"cmd_output","timestamp":1607098211,"output":"STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.210 [info] block_id: 4ba39d24-b89d-433f-8c3"},{"event":"cmd_output","timestamp":1607098211,"output":"8-bc1efb8bb287, type: BlockRequests, event: persisted block run request from ppl a156cb57-e802-46aa-"},{"event":"cmd_output","timestamp":1607098211,"output":"b3bd-1ef79b3be293 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process"},{"event":"cmd_output","timestamp":1607098211,"output":"_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:11.219 [info] block_id: 4ba39d24-b89d-433f-8c38-bc1efb8bb287, "},{"event":"cmd_output","timestamp":1607098211,"output":"type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Bloc"},{"event":"cmd_output","timestamp":1607098211,"output":"ks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:11.224 [info] Block 0 of pipeline with id:"},{"event":"cmd_output","timestamp":1607098211,"output":" a156cb57-e802-46aa-b3bd-1ef79b3be293 scheduled in block service with id: : \"4ba39d24-b89d-433f-8c38"},{"event":"cmd_output","timestamp":1607098211,"output":"-bc1efb8bb287\"\n\u001b[0m\u001b[22m\n16:10:11.225 [info] ppl_id: ad902bad-7a6c-4a0e-944b-675869cac0fc, type: "},{"event":"cmd_output","timestamp":1607098211,"output":"Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_"},{"event":"cmd_output","timestamp":1607098211,"output":"state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.234 [info] ppl_id: 9c52e284-86f8-496a-bb60-679230b02f4f,"},{"event":"cmd_output","timestamp":1607098211,"output":" type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098211,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.244 [info] ppl_id: a156cb57-e802-46aa"},{"event":"cmd_output","timestamp":1607098211,"output":"-b3bd-1ef79b3be293, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recover"},{"event":"cmd_output","timestamp":1607098211,"output":"y_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.250 [info]"},{"event":"cmd_output","timestamp":1607098211,"output":" ppl_id: f3948fcc-c38d-4cfa-a202-3e631e236c7c, type: PplRequests, event: persisted definition for r"},{"event":"cmd_output","timestamp":1607098211,"output":"equest with request_token: 2e4eccfc-364b-11eb-97d7-5254005464e2, origin: Elixir.Ppl.PplRequests.Mode"},{"event":"cmd_output","timestamp":1607098211,"output":"l.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:11.255 [info] block_id: 4ba39d24-"},{"event":"cmd_output","timestamp":1607098211,"output":"b89d-433f-8c38-bc1efb8bb287, type: BlockRequests, event: persisted build and sub_ppl details for blo"},{"event":"cmd_output","timestamp":1607098211,"output":"ck_request: 4ba39d24-b89d-433f-8c38-bc1efb8bb287, origin: Elixir.Block.BlockRequests.Model.BlockRequ"},{"event":"cmd_output","timestamp":1607098211,"output":"estsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:11.258 [info] block_id: 4ba39d24-b89d-433f-8c38"},{"event":"cmd_output","timestamp":1607098211,"output":"-bc1efb8bb287, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block."},{"event":"cmd_output","timestamp":1607098211,"output":"Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:11.264 [info] ppl_id: ad902"},{"event":"cmd_output","timestamp":1607098211,"output":"bad-7a6c-4a0e-944b-675869cac0fc, type: Ppls, state: running, event: exit_scheduling, recovery_count:"},{"event":"cmd_output","timestamp":1607098211,"output":" 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.265 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098211,"output":": 6d621a6a-b251-4df8-833c-890b56e41b2b, type: PplRequests, event: persisted source_args for pipeline"},{"event":"cmd_output","timestamp":1607098211,"output":": 6d621a6a-b251-4df8-833c-890b56e41b2b, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.inse"},{"event":"cmd_output","timestamp":1607098211,"output":"rt_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:11.265 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{"},{"event":"cmd_output","timestamp":1607098211,"output":"__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:10:11.262947], nam"},{"event":"cmd_output","timestamp":1607098211,"output":"e: \"refs/tags/v1.6-.semaphore/semaphore.yml\", organization_id: \"bd002e52-69ff-4bbb-b930-769a19cbcec9"},{"event":"cmd_output","timestamp":1607098211,"output":"\", project_id: \"list_grouped\", queue_id: \"30937f68-7637-4828-b278-e0a7bd8b2f74\", scope: \"project\", u"},{"event":"cmd_output","timestamp":1607098211,"output":"pdated_at: ~N[2020-12-04 16:10:11.262956], user_generated: false}}\n\u001b[0m\u001b[22m\n16:10:11.268 [info] "},{"event":"cmd_output","timestamp":1607098211,"output":"block_id: 4ba39d24-b89d-433f-8c38-bc1efb8bb287, type: Blocks, state: running, event: exit_scheduling"},{"event":"cmd_output","timestamp":1607098211,"output":", recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.2"},{"event":"cmd_output","timestamp":1607098211,"output":"72 [info] ppl_id: 6d621a6a-b251-4df8-833c-890b56e41b2b, type: PplSubInits, state: fetching, event: "},{"event":"cmd_output","timestamp":1607098211,"output":"exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098211,"output":"22m\n16:10:11.284 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"ad902bad-"},{"event":"cmd_output","timestamp":1607098211,"output":"7a6c-4a0e-944b-675869cac0fc\"\n\u001b[0m\u001b[22m\n16:10:11.288 [info] event: created, origin: Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098211,"output":"SubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:11.288 [info] ppl_id: f394"},{"event":"cmd_output","timestamp":1607098211,"output":"8fcc-c38d-4cfa-a202-3e631e236c7c, type: PplBlocks, block_index: 0, state: initializing, event: creat"},{"event":"cmd_output","timestamp":1607098211,"output":"ed, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \r"},{"event":"cmd_output","timestamp":1607098211,"output":"\n\u001b[0m\u001b[22m\n16:10:11.293 [info] ppl_id: f3948fcc-c38d-4cfa-a202-3e631e236c7c, type: PplSubInits, st"},{"event":"cmd_output","timestamp":1607098211,"output":"ate: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl"},{"event":"cmd_output","timestamp":1607098211,"output":".log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.304 [info] block_id: dabab286-201f-4a55-a36d-10fe0f"},{"event":"cmd_output","timestamp":1607098211,"output":"866b05, type: BlockRequests, event: persisted block run request from ppl ad902bad-7a6c-4a0e-944b-675"},{"event":"cmd_output","timestamp":1607098211,"output":"869cac0fc for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_respons"},{"event":"cmd_output","timestamp":1607098211,"output":"e/4(L35), \n\u001b[0m\u001b[22m\n16:10:11.307 [info] ppl_id: f3948fcc-c38d-4cfa-a202-3e631e236c7c, type: PplB"},{"event":"cmd_output","timestamp":1607098211,"output":"locks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loo"},{"event":"cmd_output","timestamp":1607098211,"output":"per.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.316 [info] block_id: dabab286-201f-4a55"},{"event":"cmd_output","timestamp":1607098211,"output":"-a36d-10fe0f866b05, type: Blocks, state: initializing, event: initializing, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098211,"output":"n: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:11.329 [info] ppl_id: "},{"event":"cmd_output","timestamp":1607098211,"output":"f3948fcc-c38d-4cfa-a202-3e631e236c7c, type: Ppls, state: pending, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098211,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.330 [info] B"},{"event":"cmd_output","timestamp":1607098211,"output":"lock 0 of pipeline with id: ad902bad-7a6c-4a0e-944b-675869cac0fc scheduled in block service with id:"},{"event":"cmd_output","timestamp":1607098211,"output":" : \"dabab286-201f-4a55-a36d-10fe0f866b05\"\n\u001b[0m\u001b[22m\n16:10:11.336 [info] block_id: dabab286-201f-4"},{"event":"cmd_output","timestamp":1607098211,"output":"a55-a36d-10fe0f866b05, type: BlockRequests, event: persisted build and sub_ppl details for block_req"},{"event":"cmd_output","timestamp":1607098211,"output":"uest: dabab286-201f-4a55-a36d-10fe0f866b05, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQu"},{"event":"cmd_output","timestamp":1607098211,"output":"eries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:11.339 [info] ppl_id: ad902bad-7a6c-4a0e-944b-675869c"},{"event":"cmd_output","timestamp":1607098211,"output":"ac0fc, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098211,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.345 [info] ppl_id: 6d6"},{"event":"cmd_output","timestamp":1607098211,"output":"21a6a-b251-4df8-833c-890b56e41b2b, type: PplSubInits, state: regular_init, event: exit_scheduling, r"},{"event":"cmd_output","timestamp":1607098211,"output":"ecovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.348 "},{"event":"cmd_output","timestamp":1607098211,"output":"[info] block_id: dabab286-201f-4a55-a36d-10fe0f866b05, type: Tasks, state: pending, event: created,"},{"event":"cmd_output","timestamp":1607098211,"output":" recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098211,"output":"\u001b[22m\n16:10:11.350 [info] block_id: dabab286-201f-4a55-a36d-10fe0f866b05, type: Blocks, state: run"},{"event":"cmd_output","timestamp":1607098211,"output":"ning, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098211,"output":"90), \n\u001b[0m\u001b[22m\n16:10:11.363 [info] ppl_id: f3948fcc-c38d-4cfa-a202-3e631e236c7c, type: Ppls, sta"},{"event":"cmd_output","timestamp":1607098211,"output":"te: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_cha"},{"event":"cmd_output","timestamp":1607098211,"output":"nge/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.383 [info] ppl_id: 9c52e284-86f8-496a-bb60-679230b02f4f, type: Pp"},{"event":"cmd_output","timestamp":1607098211,"output":"lRequests, event: persisted definition for request with request_token: 2e5955aa-364b-11eb-a2f0-52540"},{"event":"cmd_output","timestamp":1607098211,"output":"05464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098211,"output":"2m\n16:10:11.389 [info] ppl_id: f3948fcc-c38d-4cfa-a202-3e631e236c7c, type: Ppls, state: running, e"},{"event":"cmd_output","timestamp":1607098211,"output":"vent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n"},{"event":"cmd_output","timestamp":1607098211,"output":"\u001b[0m\u001b[22m\n16:10:11.390 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Sche"},{"event":"cmd_output","timestamp":1607098211,"output":"ma.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:10:11.387429], name: \"refs/tags/v1.7-."},{"event":"cmd_output","timestamp":1607098211,"output":"semaphore/semaphore.yml\", organization_id: \"be43d966-c642-4587-b667-8630a4d24d1d\", project_id: \"list"},{"event":"cmd_output","timestamp":1607098211,"output":"_grouped\", queue_id: \"f0cec1f5-ac7b-48eb-bab8-b57ba6251bee\", scope: \"project\", updated_at: ~N[2020-1"},{"event":"cmd_output","timestamp":1607098211,"output":"2-04 16:10:11.387440], user_generated: false}}\n\u001b[0m\u001b[22m\n16:10:11.402 [info] PplBlocks WaitingSta"},{"event":"cmd_output","timestamp":1607098211,"output":"te STM is scheduling block 0 from pipeline: \"f3948fcc-c38d-4cfa-a202-3e631e236c7c\"\n\u001b[0m\u001b[22m\n16:10"},{"event":"cmd_output","timestamp":1607098211,"output":":11.405 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1"},{"event":"cmd_output","timestamp":1607098211,"output":"(L105), \n\u001b[0m\u001b[22m\n16:10:11.405 [info] ppl_id: 9c52e284-86f8-496a-bb60-679230b02f4f, type: PplBlo"},{"event":"cmd_output","timestamp":1607098211,"output":"cks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplS"},{"event":"cmd_output","timestamp":1607098211,"output":"ubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:11.407 [info] ppl_id: 9c52e"},{"event":"cmd_output","timestamp":1607098211,"output":"284-86f8-496a-bb60-679230b02f4f, type: PplSubInits, state: done, result: passed, event: exit_schedul"},{"event":"cmd_output","timestamp":1607098211,"output":"ing, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:1"},{"event":"cmd_output","timestamp":1607098211,"output":"1.408 [info] ppl_id: b3db881a-96cd-4172-b05f-dd75d21e74db, type: PplRequests, event: persisted sour"},{"event":"cmd_output","timestamp":1607098211,"output":"ce_args for pipeline: b3db881a-96cd-4172-b05f-dd75d21e74db, origin: Elixir.Ppl.PplRequests.Model.Ppl"},{"event":"cmd_output","timestamp":1607098211,"output":"RequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:11.414 [info] block_id: 0c41a4d2-eeb4-470c"},{"event":"cmd_output","timestamp":1607098211,"output":"-9cc1-fe45f44fd780, type: BlockRequests, event: persisted block run request from ppl f3948fcc-c38d-4"},{"event":"cmd_output","timestamp":1607098211,"output":"cfa-a202-3e631e236c7c for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.pro"},{"event":"cmd_output","timestamp":1607098211,"output":"cess_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:11.418 [info] block_id: 0c41a4d2-eeb4-470c-9cc1-fe45f44fd7"},{"event":"cmd_output","timestamp":1607098211,"output":"80, type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block."},{"event":"cmd_output","timestamp":1607098211,"output":"Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:11.423 [info] ppl_id: b3db881a-96cd-41"},{"event":"cmd_output","timestamp":1607098211,"output":"72-b05f-dd75d21e74db, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098211,"output":" origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.423 [info] Block 0 o"},{"event":"cmd_output","timestamp":1607098211,"output":"f pipeline with id: f3948fcc-c38d-4cfa-a202-3e631e236c7c scheduled in block service with id: : \"0c41"},{"event":"cmd_output","timestamp":1607098211,"output":"a4d2-eeb4-470c-9cc1-fe45f44fd780\"\n\u001b[0m\u001b[22m\n16:10:11.429 [info] ppl_id: f3948fcc-c38d-4cfa-a202-3"},{"event":"cmd_output","timestamp":1607098211,"output":"e631e236c7c, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count"},{"event":"cmd_output","timestamp":1607098211,"output":": 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.433 [info] block"},{"event":"cmd_output","timestamp":1607098211,"output":"_id: 0c41a4d2-eeb4-470c-9cc1-fe45f44fd780, type: BlockRequests, event: persisted build and sub_ppl d"},{"event":"cmd_output","timestamp":1607098211,"output":"etails for block_request: 0c41a4d2-eeb4-470c-9cc1-fe45f44fd780, origin: Elixir.Block.BlockRequests.M"},{"event":"cmd_output","timestamp":1607098211,"output":"odel.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:11.434 [info] ppl_id: 9c52e284-86"},{"event":"cmd_output","timestamp":1607098211,"output":"f8-496a-bb60-679230b02f4f, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098211,"output":"igin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.437 [info] ppl_id: 9c52"},{"event":"cmd_output","timestamp":1607098211,"output":"e284-86f8-496a-bb60-679230b02f4f, type: PplBlocks, block_index: 0, state: waiting, event: exit_sched"},{"event":"cmd_output","timestamp":1607098211,"output":"uling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10"},{"event":"cmd_output","timestamp":1607098211,"output":":11.439 [info] block_id: 0c41a4d2-eeb4-470c-9cc1-fe45f44fd780, type: Tasks, state: pending, event: "},{"event":"cmd_output","timestamp":1607098211,"output":"created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167)"},{"event":"cmd_output","timestamp":1607098211,"output":", \n\u001b[0m\u001b[22m\n16:10:11.443 [info] block_id: 0c41a4d2-eeb4-470c-9cc1-fe45f44fd780, type: Blocks, st"},{"event":"cmd_output","timestamp":1607098211,"output":"ate: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_ch"},{"event":"cmd_output","timestamp":1607098211,"output":"ange/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.454 [info] ppl_id: 9c52e284-86f8-496a-bb60-679230b02f4f, type: P"},{"event":"cmd_output","timestamp":1607098211,"output":"pls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_s"},{"event":"cmd_output","timestamp":1607098211,"output":"tate_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.481 [info] ppl_id: 6d621a6a-b251-4df8-833c-890b56e41b2b, "},{"event":"cmd_output","timestamp":1607098211,"output":"type: PplRequests, event: persisted definition for request with request_token: 2e635622-364b-11eb-a0"},{"event":"cmd_output","timestamp":1607098211,"output":"79-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \r"},{"event":"cmd_output","timestamp":1607098211,"output":"\n\u001b[0m\u001b[22m\n16:10:11.485 [info] ppl_id: b3db881a-96cd-4172-b05f-dd75d21e74db, type: PplSubInits, st"},{"event":"cmd_output","timestamp":1607098211,"output":"ate: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_sta"},{"event":"cmd_output","timestamp":1607098211,"output":"te_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.489 [info] ppl_id: 9c52e284-86f8-496a-bb60-679230b02f4f, ty"},{"event":"cmd_output","timestamp":1607098211,"output":"pe: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl."},{"event":"cmd_output","timestamp":1607098211,"output":"log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.492 [info] Queue persisted: {:ok, %Ppl.Queues.Model."},{"event":"cmd_output","timestamp":1607098211,"output":"Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:10:11.48991"},{"event":"cmd_output","timestamp":1607098211,"output":"7], name: \"refs/tags/v1.8-.semaphore/semaphore.yml\", organization_id: \"6fc58770-a07a-44aa-894c-ca6d2"},{"event":"cmd_output","timestamp":1607098211,"output":"3c3578d\", project_id: \"list_grouped\", queue_id: \"ea1053f0-f267-4f90-b99c-c4df42f154e3\", scope: \"proj"},{"event":"cmd_output","timestamp":1607098211,"output":"ect\", updated_at: ~N[2020-12-04 16:10:11.489930], user_generated: false}}\n\u001b[0m\u001b[22m\n16:10:11.501 ["},{"event":"cmd_output","timestamp":1607098211,"output":"info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \r"},{"event":"cmd_output","timestamp":1607098211,"output":"\n\u001b[0m\u001b[22m\n16:10:11.501 [info] ppl_id: 6d621a6a-b251-4df8-833c-890b56e41b2b, type: PplBlocks, bloc"},{"event":"cmd_output","timestamp":1607098211,"output":"k_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.S"},{"event":"cmd_output","timestamp":1607098211,"output":"TMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:11.503 [info] PplBlocks WaitingState"},{"event":"cmd_output","timestamp":1607098211,"output":" STM is scheduling block 0 from pipeline: \"9c52e284-86f8-496a-bb60-679230b02f4f\"\n\u001b[0m\u001b[22m\n16:10:1"},{"event":"cmd_output","timestamp":1607098211,"output":"1.507 [info] ppl_id: 6d621a6a-b251-4df8-833c-890b56e41b2b, type: PplSubInits, state: done, result: "},{"event":"cmd_output","timestamp":1607098211,"output":"passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1"},{"event":"cmd_output","timestamp":1607098211,"output":"(L90), \n\u001b[0m\u001b[22m\n16:10:11.518 [info] block_id: 66450015-b75e-4d47-871b-19e00cab4eb3, type: Block"},{"event":"cmd_output","timestamp":1607098211,"output":"Requests, event: persisted block run request from ppl 9c52e284-86f8-496a-bb60-679230b02f4f for block"},{"event":"cmd_output","timestamp":1607098211,"output":" 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098211,"output":"2m\n16:10:11.519 [info] ppl_id: 6d621a6a-b251-4df8-833c-890b56e41b2b, type: PplBlocks, block_index:"},{"event":"cmd_output","timestamp":1607098211,"output":" 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_st"},{"event":"cmd_output","timestamp":1607098211,"output":"ate_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.527 [info] block_id: 66450015-b75e-4d47-871b-19e00cab4eb3,"},{"event":"cmd_output","timestamp":1607098211,"output":" type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blo"},{"event":"cmd_output","timestamp":1607098211,"output":"cks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:11.530 [info] Block 0 of pipeline with id"},{"event":"cmd_output","timestamp":1607098211,"output":": 9c52e284-86f8-496a-bb60-679230b02f4f scheduled in block service with id: : \"66450015-b75e-4d47-871"},{"event":"cmd_output","timestamp":1607098211,"output":"b-19e00cab4eb3\"\n\u001b[0m\u001b[22m\n16:10:11.534 [info] ppl_id: 6d621a6a-b251-4df8-833c-890b56e41b2b, type:"},{"event":"cmd_output","timestamp":1607098211,"output":" Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098211,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.541 [info] ppl_id: 9c52e284-86f8-496a-bb60-679230b02f4f"},{"event":"cmd_output","timestamp":1607098211,"output":", type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098211,"output":": Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.549 [info] block_id: 664500"},{"event":"cmd_output","timestamp":1607098211,"output":"15-b75e-4d47-871b-19e00cab4eb3, type: BlockRequests, event: persisted build and sub_ppl details for "},{"event":"cmd_output","timestamp":1607098211,"output":"block_request: 66450015-b75e-4d47-871b-19e00cab4eb3, origin: Elixir.Block.BlockRequests.Model.BlockR"},{"event":"cmd_output","timestamp":1607098211,"output":"equestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:11.552 [info] block_id: 66450015-b75e-4d47-8"},{"event":"cmd_output","timestamp":1607098211,"output":"71b-19e00cab4eb3, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Blo"},{"event":"cmd_output","timestamp":1607098211,"output":"ck.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:11.557 [info] block_id: "},{"event":"cmd_output","timestamp":1607098211,"output":"66450015-b75e-4d47-871b-19e00cab4eb3, type: Blocks, state: running, event: exit_scheduling, recovery"},{"event":"cmd_output","timestamp":1607098211,"output":"_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.564 [info] "},{"event":"cmd_output","timestamp":1607098211,"output":" ppl_id: 6d621a6a-b251-4df8-833c-890b56e41b2b, type: Ppls, state: queuing, event: exit_scheduling, r"},{"event":"cmd_output","timestamp":1607098211,"output":"ecovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.567 "},{"event":"cmd_output","timestamp":1607098211,"output":"[info] ppl_id: 6ed662cb-2593-40e8-ba32-ff3981693ad2, type: PplRequests, event: persisted source_arg"},{"event":"cmd_output","timestamp":1607098211,"output":"s for pipeline: 6ed662cb-2593-40e8-ba32-ff3981693ad2, origin: Elixir.Ppl.PplRequests.Model.PplReques"},{"event":"cmd_output","timestamp":1607098211,"output":"tsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:11.573 [info] ppl_id: 6ed662cb-2593-40e8-ba32-ff"},{"event":"cmd_output","timestamp":1607098211,"output":"3981693ad2, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: E"},{"event":"cmd_output","timestamp":1607098211,"output":"lixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.585 [info] ppl_id: 6d621a6a-b2"},{"event":"cmd_output","timestamp":1607098211,"output":"51-4df8-833c-890b56e41b2b, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098211,"output":"igin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.597 [info] PplBlocks Wa"},{"event":"cmd_output","timestamp":1607098211,"output":"itingState STM is scheduling block 0 from pipeline: \"6d621a6a-b251-4df8-833c-890b56e41b2b\"\n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098211,"output":"m\n16:10:11.600 [info] block_id: 048ba67f-e313-4eae-b41c-244356000e80, type: Tasks, state: running,"},{"event":"cmd_output","timestamp":1607098211,"output":" event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), "},{"event":"cmd_output","timestamp":1607098211,"output":"\n\u001b[0m\u001b[22m\n16:10:11.618 [info] ppl_id: b3db881a-96cd-4172-b05f-dd75d21e74db, type: PplRequests, e"},{"event":"cmd_output","timestamp":1607098211,"output":"vent: persisted definition for request with request_token: 2e6f02d8-364b-11eb-8775-5254005464e2, ori"},{"event":"cmd_output","timestamp":1607098211,"output":"gin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:11"},{"event":"cmd_output","timestamp":1607098211,"output":".624 [info] block_id: bb7b1055-4070-4b96-872a-79e9361a80a9, type: BlockRequests, event: persisted b"},{"event":"cmd_output","timestamp":1607098211,"output":"lock run request from ppl 6d621a6a-b251-4df8-833c-890b56e41b2b for block 0, origin: Elixir.Block.Blo"},{"event":"cmd_output","timestamp":1607098211,"output":"ckRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:11.636 [info] blo"},{"event":"cmd_output","timestamp":1607098211,"output":"ck_id: bb7b1055-4070-4b96-872a-79e9361a80a9, type: Blocks, state: initializing, event: initializing,"},{"event":"cmd_output","timestamp":1607098211,"output":" recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098211,"output":"0:11.637 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:lo"},{"event":"cmd_output","timestamp":1607098211,"output":"aded, \"queues\">, inserted_at: ~N[2020-12-04 16:10:11.628429], name: \"refs/tags/v1.9-.semaphore/semap"},{"event":"cmd_output","timestamp":1607098211,"output":"hore.yml\", organization_id: \"91fa9a1e-c317-47ca-91bf-e6651cacea93\", project_id: \"list_grouped\", queu"},{"event":"cmd_output","timestamp":1607098211,"output":"e_id: \"242f35e1-496f-4772-a115-4c023b6b567b\", scope: \"project\", updated_at: ~N[2020-12-04 16:10:11.6"},{"event":"cmd_output","timestamp":1607098211,"output":"28442], user_generated: false}}\n\u001b[0m\u001b[22m\n16:10:11.645 [info] Block 0 of pipeline with id: 6d621a"},{"event":"cmd_output","timestamp":1607098211,"output":"6a-b251-4df8-833c-890b56e41b2b scheduled in block service with id: : \"bb7b1055-4070-4b96-872a-79e936"},{"event":"cmd_output","timestamp":1607098211,"output":"1a80a9\"\n\u001b[0m\u001b[22m\n16:10:11.650 [info] ppl_id: 6d621a6a-b251-4df8-833c-890b56e41b2b, type: PplBloc"},{"event":"cmd_output","timestamp":1607098211,"output":"ks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper"},{"event":"cmd_output","timestamp":1607098211,"output":".STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.655 [info] block_id: bb7b1055-4070-4b96-87"},{"event":"cmd_output","timestamp":1607098211,"output":"2a-79e9361a80a9, type: BlockRequests, event: persisted build and sub_ppl details for block_request: "},{"event":"cmd_output","timestamp":1607098211,"output":"bb7b1055-4070-4b96-872a-79e9361a80a9, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries."},{"event":"cmd_output","timestamp":1607098211,"output":"insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:11.662 [info] block_id: a1f7745d-6b77-4339-a98e-e37df46a689"},{"event":"cmd_output","timestamp":1607098211,"output":"a, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM"},{"event":"cmd_output","timestamp":1607098211,"output":".Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.662 [info] ppl_id: 6ed662cb-2593-40e8-ba32-ff3"},{"event":"cmd_output","timestamp":1607098211,"output":"981693ad2, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098211,"output":": Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.668 [info] event: created, "},{"event":"cmd_output","timestamp":1607098211,"output":"origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:11.66"},{"event":"cmd_output","timestamp":1607098211,"output":"8 [info] ppl_id: b3db881a-96cd-4172-b05f-dd75d21e74db, type: PplBlocks, block_index: 0, state: init"},{"event":"cmd_output","timestamp":1607098211,"output":"ializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitSt"},{"event":"cmd_output","timestamp":1607098211,"output":"ate.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:11.671 [info] block_id: bb7b1055-4070-4b96-872a-79e9361a80a"},{"event":"cmd_output","timestamp":1607098211,"output":"9, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHa"},{"event":"cmd_output","timestamp":1607098211,"output":"ndler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:11.675 [info] block_id: bb7b1055-4070-4"},{"event":"cmd_output","timestamp":1607098211,"output":"b96-872a-79e9361a80a9, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098211,"output":"in: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.680 [info] ppl_id: b3db88"},{"event":"cmd_output","timestamp":1607098211,"output":"1a-96cd-4172-b05f-dd75d21e74db, type: PplSubInits, state: done, result: passed, event: exit_scheduli"},{"event":"cmd_output","timestamp":1607098211,"output":"ng, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11"},{"event":"cmd_output","timestamp":1607098211,"output":".704 [info] ppl_id: b3db881a-96cd-4172-b05f-dd75d21e74db, type: Ppls, state: pending, event: exit_s"},{"event":"cmd_output","timestamp":1607098211,"output":"cheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098211,"output":"6:10:11.711 [info] ppl_id: 2483651c-19f5-4776-9786-44f6100dbdc1, type: PplRequests, event: persiste"},{"event":"cmd_output","timestamp":1607098211,"output":"d source_args for pipeline: 2483651c-19f5-4776-9786-44f6100dbdc1, origin: Elixir.Ppl.PplRequests.Mod"},{"event":"cmd_output","timestamp":1607098211,"output":"el.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:11.713 [info] ppl_id: b3db881a-96cd-"},{"event":"cmd_output","timestamp":1607098211,"output":"4172-b05f-dd75d21e74db, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, rec"},{"event":"cmd_output","timestamp":1607098211,"output":"overy_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.719 [i"},{"event":"cmd_output","timestamp":1607098211,"output":"nfo] ppl_id: 2483651c-19f5-4776-9786-44f6100dbdc1, type: PplSubInits, state: fetching, event: exit_"},{"event":"cmd_output","timestamp":1607098211,"output":"scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098211,"output":"16:10:11.727 [info] block_id: e3f76ecc-4d93-402e-bb37-a5cfc4624bba, type: Tasks, state: running, ev"},{"event":"cmd_output","timestamp":1607098211,"output":"ent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b"},{"event":"cmd_output","timestamp":1607098211,"output":"[0m\u001b[22m\n16:10:11.737 [info] ppl_id: b3db881a-96cd-4172-b05f-dd75d21e74db, type: Ppls, state: queu"},{"event":"cmd_output","timestamp":1607098211,"output":"ing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L9"},{"event":"cmd_output","timestamp":1607098211,"output":"0), \n\u001b[0m\u001b[22m\n16:10:11.766 [info] block_id: d2cebf47-5fdc-410e-945b-39f345e04a5d, type: Tasks, s"},{"event":"cmd_output","timestamp":1607098211,"output":"tate: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098211,"output":"hange/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.773 [info] ppl_id: b3db881a-96cd-4172-b05f-dd75d21e74db, type: "},{"event":"cmd_output","timestamp":1607098211,"output":"Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_"},{"event":"cmd_output","timestamp":1607098211,"output":"state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.792 [info] PplBlocks WaitingState STM is scheduling bloc"},{"event":"cmd_output","timestamp":1607098211,"output":"k 0 from pipeline: \"b3db881a-96cd-4172-b05f-dd75d21e74db\"\n\u001b[0m\u001b[22m\n16:10:11.796 [info] block_id:"},{"event":"cmd_output","timestamp":1607098211,"output":" 4ba39d24-b89d-433f-8c38-bc1efb8bb287, type: Tasks, state: running, event: exit_scheduling, recovery"},{"event":"cmd_output","timestamp":1607098211,"output":"_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.798 [info] "},{"event":"cmd_output","timestamp":1607098211,"output":" ppl_id: 2483651c-19f5-4776-9786-44f6100dbdc1, type: PplSubInits, state: regular_init, event: exit_s"},{"event":"cmd_output","timestamp":1607098211,"output":"cheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098211,"output":"6:10:11.805 [info] ppl_id: 6ed662cb-2593-40e8-ba32-ff3981693ad2, type: PplRequests, event: persiste"},{"event":"cmd_output","timestamp":1607098211,"output":"d definition for request with request_token: 2e7b8c06-364b-11eb-b11b-5254005464e2, origin: Elixir.Pp"},{"event":"cmd_output","timestamp":1607098211,"output":"l.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:11.806 [info] b"},{"event":"cmd_output","timestamp":1607098211,"output":"lock_id: 9163706b-16eb-4f3d-a5d1-f0ca4c376a43, type: BlockRequests, event: persisted block run reque"},{"event":"cmd_output","timestamp":1607098211,"output":"st from ppl b3db881a-96cd-4172-b05f-dd75d21e74db for block 0, origin: Elixir.Block.BlockRequests.Mod"},{"event":"cmd_output","timestamp":1607098211,"output":"el.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:11.808 [info] block_id: 9163706"},{"event":"cmd_output","timestamp":1607098211,"output":"b-16eb-4f3d-a5d1-f0ca4c376a43, type: Blocks, state: initializing, event: initializing, recovery_coun"},{"event":"cmd_output","timestamp":1607098211,"output":"t: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:11.816 [info"},{"event":"cmd_output","timestamp":1607098211,"output":"] Block 0 of pipeline with id: b3db881a-96cd-4172-b05f-dd75d21e74db scheduled in block service with"},{"event":"cmd_output","timestamp":1607098211,"output":" id: : \"9163706b-16eb-4f3d-a5d1-f0ca4c376a43\"\n\u001b[0m\u001b[22m\n16:10:11.816 [info] Queue persisted: {:ok"},{"event":"cmd_output","timestamp":1607098211,"output":", %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-"},{"event":"cmd_output","timestamp":1607098211,"output":"12-04 16:10:11.809368], name: \"refs/tags/v1.10-.semaphore/semaphore.yml\", organization_id: \"b1868eee"},{"event":"cmd_output","timestamp":1607098211,"output":"-fa76-4031-ad26-8f82a1d83f2f\", project_id: \"list_grouped\", queue_id: \"22d8f140-0815-45e9-94aa-b62fc5"},{"event":"cmd_output","timestamp":1607098211,"output":"242da7\", scope: \"project\", updated_at: ~N[2020-12-04 16:10:11.809381], user_generated: false}}\n\u001b[0m"},{"event":"cmd_output","timestamp":1607098211,"output":"\u001b[22m\n16:10:11.825 [info] block_id: dabab286-201f-4a55-a36d-10fe0f866b05, type: Tasks, state: runn"},{"event":"cmd_output","timestamp":1607098211,"output":"ing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L9"},{"event":"cmd_output","timestamp":1607098211,"output":"0), \n\u001b[0m\u001b[22m\n16:10:11.825 [info] ppl_id: b3db881a-96cd-4172-b05f-dd75d21e74db, type: PplBlocks,"},{"event":"cmd_output","timestamp":1607098211,"output":" block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.ST"},{"event":"cmd_output","timestamp":1607098211,"output":"M.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.828 [info] block_id: 048ba67f-e313-4eae-b41c-"},{"event":"cmd_output","timestamp":1607098211,"output":"244356000e80, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Lo"},{"event":"cmd_output","timestamp":1607098211,"output":"oper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.830 [info] event: created, origin: Eli"},{"event":"cmd_output","timestamp":1607098211,"output":"xir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:11.830 [info] p"},{"event":"cmd_output","timestamp":1607098211,"output":"pl_id: 6ed662cb-2593-40e8-ba32-ff3981693ad2, type: PplBlocks, block_index: 0, state: initializing, e"},{"event":"cmd_output","timestamp":1607098211,"output":"vent: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?"},{"event":"cmd_output","timestamp":1607098211,"output":"/1(L105), \n\u001b[0m\u001b[22m\n16:10:11.833 [info] ppl_id: 6ed662cb-2593-40e8-ba32-ff3981693ad2, type: PplS"},{"event":"cmd_output","timestamp":1607098211,"output":"ubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loop"},{"event":"cmd_output","timestamp":1607098211,"output":"er.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.837 [info] block_id: 9163706b-16eb-4f3d-"},{"event":"cmd_output","timestamp":1607098211,"output":"a5d1-f0ca4c376a43, type: BlockRequests, event: persisted build and sub_ppl details for block_request"},{"event":"cmd_output","timestamp":1607098211,"output":": 9163706b-16eb-4f3d-a5d1-f0ca4c376a43, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQuerie"},{"event":"cmd_output","timestamp":1607098211,"output":"s.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:11.841 [info] block_id: 9163706b-16eb-4f3d-a5d1-f0ca4c376"},{"event":"cmd_output","timestamp":1607098211,"output":"a43, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STM"},{"event":"cmd_output","timestamp":1607098211,"output":"Handler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:11.845 [info] block_id: 9163706b-16eb"},{"event":"cmd_output","timestamp":1607098211,"output":"-4f3d-a5d1-f0ca4c376a43, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098211,"output":"igin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.861 [info] ppl_id: 6ed6"},{"event":"cmd_output","timestamp":1607098211,"output":"62cb-2593-40e8-ba32-ff3981693ad2, type: PplBlocks, block_index: 0, state: waiting, event: exit_sched"},{"event":"cmd_output","timestamp":1607098211,"output":"uling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10"},{"event":"cmd_output","timestamp":1607098211,"output":":11.866 [info] block_id: 048ba67f-e313-4eae-b41c-244356000e80, type: Blocks, state: done, event: ex"},{"event":"cmd_output","timestamp":1607098211,"output":"it_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098211,"output":"m\n16:10:11.867 [info] ppl_id: 3d6f1f89-3cd1-47de-892c-dffdcea48d92, type: PplRequests, event: pers"},{"event":"cmd_output","timestamp":1607098211,"output":"isted source_args for pipeline: 3d6f1f89-3cd1-47de-892c-dffdcea48d92, origin: Elixir.Ppl.PplRequests"},{"event":"cmd_output","timestamp":1607098211,"output":".Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:11.870 [info] ppl_id: 3d6f1f89-3"},{"event":"cmd_output","timestamp":1607098211,"output":"cd1-47de-892c-dffdcea48d92, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_cou"},{"event":"cmd_output","timestamp":1607098211,"output":"nt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.873 [info] blo"},{"event":"cmd_output","timestamp":1607098211,"output":"ck_id: 0c41a4d2-eeb4-470c-9cc1-fe45f44fd780, type: Tasks, state: running, event: exit_scheduling, re"},{"event":"cmd_output","timestamp":1607098211,"output":"covery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.885 ["},{"event":"cmd_output","timestamp":1607098211,"output":"info] ppl_id: 6ed662cb-2593-40e8-ba32-ff3981693ad2, type: Ppls, state: pending, event: exit_schedul"},{"event":"cmd_output","timestamp":1607098211,"output":"ing, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:1"},{"event":"cmd_output","timestamp":1607098211,"output":"1.900 [info] block_id: 66450015-b75e-4d47-871b-19e00cab4eb3, type: Tasks, state: running, event: ex"},{"event":"cmd_output","timestamp":1607098211,"output":"it_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098211,"output":"m\n16:10:11.928 [info] ppl_id: 2483651c-19f5-4776-9786-44f6100dbdc1, type: PplRequests, event: pers"},{"event":"cmd_output","timestamp":1607098211,"output":"isted definition for request with request_token: 2e847262-364b-11eb-b12b-5254005464e2, origin: Elixi"},{"event":"cmd_output","timestamp":1607098211,"output":"r.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:11.929 [info"},{"event":"cmd_output","timestamp":1607098211,"output":"] ppl_id: 6ed662cb-2593-40e8-ba32-ff3981693ad2, type: Ppls, state: queuing, event: exit_scheduling,"},{"event":"cmd_output","timestamp":1607098211,"output":" recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.95"},{"event":"cmd_output","timestamp":1607098211,"output":"5 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \""},{"event":"cmd_output","timestamp":1607098211,"output":"queues\">, inserted_at: ~N[2020-12-04 16:10:11.953795], name: \"refs/tags/v1.11-.semaphore/semaphore.y"},{"event":"cmd_output","timestamp":1607098211,"output":"ml\", organization_id: \"c4ebc2b9-0a96-4e48-a5a2-fb3566df5bf7\", project_id: \"list_grouped\", queue_id: "},{"event":"cmd_output","timestamp":1607098211,"output":"\"44e32996-7019-4bf5-b7f8-8758d468ab1a\", scope: \"project\", updated_at: ~N[2020-12-04 16:10:11.953808]"},{"event":"cmd_output","timestamp":1607098211,"output":", user_generated: false}}\n\u001b[0m\u001b[22m\n16:10:11.959 [info] block_id: bb7b1055-4070-4b96-872a-79e9361"},{"event":"cmd_output","timestamp":1607098211,"output":"a80a9, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper"},{"event":"cmd_output","timestamp":1607098211,"output":".STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.985 [info] ppl_id: f8417768-647c-4f8c-9f21"},{"event":"cmd_output","timestamp":1607098211,"output":"-79ee3579d746, block_id: 048ba67f-e313-4eae-b41c-244356000e80, type: PplBlocks, block_index: 0, stat"},{"event":"cmd_output","timestamp":1607098211,"output":"e: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.l"},{"event":"cmd_output","timestamp":1607098211,"output":"og_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.985 [info] block_id: a1f7745d-6b77-4339-a98e-e37df46a"},{"event":"cmd_output","timestamp":1607098211,"output":"689a, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM"},{"event":"cmd_output","timestamp":1607098211,"output":".Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.990 [info] event: created, origin: Elixir.Ppl."},{"event":"cmd_output","timestamp":1607098211,"output":"PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:11.990 [info] ppl_id: 2"},{"event":"cmd_output","timestamp":1607098211,"output":"483651c-19f5-4776-9786-44f6100dbdc1, type: PplBlocks, block_index: 0, state: initializing, event: cr"},{"event":"cmd_output","timestamp":1607098211,"output":"eated, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105)"},{"event":"cmd_output","timestamp":1607098212,"output":", \n\u001b[0m\u001b[22m\n16:10:12.010 [info] ppl_id: 2483651c-19f5-4776-9786-44f6100dbdc1, type: PplSubInits,"},{"event":"cmd_output","timestamp":1607098212,"output":" state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.I"},{"event":"cmd_output","timestamp":1607098212,"output":"mpl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.011 [info] ppl_id: 6ed662cb-2593-40e8-ba32-ff398"},{"event":"cmd_output","timestamp":1607098212,"output":"1693ad2, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loope"},{"event":"cmd_output","timestamp":1607098212,"output":"r.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.014 [info] block_id: a1f7745d-6b77-4339-a"},{"event":"cmd_output","timestamp":1607098212,"output":"98e-e37df46a689a, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098212,"output":"ir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.023 [info] block_id: 9163706b-16e"},{"event":"cmd_output","timestamp":1607098212,"output":"b-4f3d-a5d1-f0ca4c376a43, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098212,"output":"igin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.026 [info] ppl_id: 3d6f"},{"event":"cmd_output","timestamp":1607098212,"output":"1f89-3cd1-47de-892c-dffdcea48d92, type: PplSubInits, state: regular_init, event: exit_scheduling, re"},{"event":"cmd_output","timestamp":1607098212,"output":"covery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.026 ["},{"event":"cmd_output","timestamp":1607098212,"output":"info] ppl_id: b4243f3a-3b21-43bd-acc5-01a28e7e74c0, type: PplRequests, event: persisted source_args"},{"event":"cmd_output","timestamp":1607098212,"output":" for pipeline: b4243f3a-3b21-43bd-acc5-01a28e7e74c0, origin: Elixir.Ppl.PplRequests.Model.PplRequest"},{"event":"cmd_output","timestamp":1607098212,"output":"sQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:12.042 [info] PplBlocks WaitingState STM is sched"},{"event":"cmd_output","timestamp":1607098212,"output":"uling block 0 from pipeline: \"6ed662cb-2593-40e8-ba32-ff3981693ad2\"\n\u001b[0m\u001b[22m\n16:10:12.043 [info] "},{"event":"cmd_output","timestamp":1607098212,"output":" ppl_id: b4243f3a-3b21-43bd-acc5-01a28e7e74c0, type: PplSubInits, state: fetching, event: exit_sched"},{"event":"cmd_output","timestamp":1607098212,"output":"uling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10"},{"event":"cmd_output","timestamp":1607098212,"output":":12.051 [info] ppl_id: 10f8d5f9-e0fb-4ba9-b509-b2d99bd16f14, block_id: a1f7745d-6b77-4339-a98e-e37d"},{"event":"cmd_output","timestamp":1607098212,"output":"f46a689a, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, reco"},{"event":"cmd_output","timestamp":1607098212,"output":"very_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.055 [in"},{"event":"cmd_output","timestamp":1607098212,"output":"fo] ppl_id: 2483651c-19f5-4776-9786-44f6100dbdc1, type: Ppls, state: pending, event: exit_schedulin"},{"event":"cmd_output","timestamp":1607098212,"output":"g, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12."},{"event":"cmd_output","timestamp":1607098212,"output":"059 [info] ppl_id: 2483651c-19f5-4776-9786-44f6100dbdc1, type: PplBlocks, block_index: 0, state: wa"},{"event":"cmd_output","timestamp":1607098212,"output":"iting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1("},{"event":"cmd_output","timestamp":1607098212,"output":"L90), \n\u001b[0m\u001b[22m\n16:10:12.067 [info] block_id: e2af100f-d6f6-4073-b5d8-7888f2ed28de, type: BlockR"},{"event":"cmd_output","timestamp":1607098212,"output":"equests, event: persisted block run request from ppl 6ed662cb-2593-40e8-ba32-ff3981693ad2 for block "},{"event":"cmd_output","timestamp":1607098212,"output":"0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098212,"output":"m\n16:10:12.073 [info] block_id: e2af100f-d6f6-4073-b5d8-7888f2ed28de, type: Blocks, state: initial"},{"event":"cmd_output","timestamp":1607098212,"output":"izing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.inser"},{"event":"cmd_output","timestamp":1607098212,"output":"t/1(L43), \n\u001b[0m\u001b[22m\n16:10:12.081 [info] Block 0 of pipeline with id: 6ed662cb-2593-40e8-ba32-ff3"},{"event":"cmd_output","timestamp":1607098212,"output":"981693ad2 scheduled in block service with id: : \"e2af100f-d6f6-4073-b5d8-7888f2ed28de\"\n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098212,"output":"6:10:12.084 [info] ppl_id: 2483651c-19f5-4776-9786-44f6100dbdc1, type: Ppls, state: queuing, event:"},{"event":"cmd_output","timestamp":1607098212,"output":" exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098212,"output":"[22m\n16:10:12.092 [info] ppl_id: 6ed662cb-2593-40e8-ba32-ff3981693ad2, type: PplBlocks, block_inde"},{"event":"cmd_output","timestamp":1607098212,"output":"x: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_"},{"event":"cmd_output","timestamp":1607098212,"output":"state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.105 [info] block_id: e2af100f-d6f6-4073-b5d8-7888f2ed28d"},{"event":"cmd_output","timestamp":1607098212,"output":"e, type: BlockRequests, event: persisted build and sub_ppl details for block_request: e2af100f-d6f6-"},{"event":"cmd_output","timestamp":1607098212,"output":"4073-b5d8-7888f2ed28de, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2"},{"event":"cmd_output","timestamp":1607098212,"output":"(L41), \n\u001b[0m\u001b[22m\n16:10:12.116 [info] block_id: e2af100f-d6f6-4073-b5d8-7888f2ed28de, type: Tasks"},{"event":"cmd_output","timestamp":1607098212,"output":", state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.Initiali"},{"event":"cmd_output","timestamp":1607098212,"output":"zingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:12.125 [info] ppl_id: 3d6f1f89-3cd1-47de-892c-dffdcea"},{"event":"cmd_output","timestamp":1607098212,"output":"48d92, type: PplRequests, event: persisted definition for request with request_token: 2e90e876-364b-"},{"event":"cmd_output","timestamp":1607098212,"output":"11eb-87a2-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3("},{"event":"cmd_output","timestamp":1607098212,"output":"L76), \n\u001b[0m\u001b[22m\n16:10:12.127 [info] block_id: e2af100f-d6f6-4073-b5d8-7888f2ed28de, type: Blocks"},{"event":"cmd_output","timestamp":1607098212,"output":", state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_stat"},{"event":"cmd_output","timestamp":1607098212,"output":"e_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.131 [info] ppl_id: f8417768-647c-4f8c-9f21-79ee3579d746, typ"},{"event":"cmd_output","timestamp":1607098212,"output":"e: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loop"},{"event":"cmd_output","timestamp":1607098212,"output":"er.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.131 [info] ppl_id: 2483651c-19f5-4776-97"},{"event":"cmd_output","timestamp":1607098212,"output":"86-44f6100dbdc1, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098212,"output":"ir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.135 [info] block_id: e3f76ecc-4d9"},{"event":"cmd_output","timestamp":1607098212,"output":"3-402e-bb37-a5cfc4624bba, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098212,"output":"n: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.138 [info] Queue persisted"},{"event":"cmd_output","timestamp":1607098212,"output":": {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N"},{"event":"cmd_output","timestamp":1607098212,"output":"[2020-12-04 16:10:12.132243], name: \"pull-request-1212-.semaphore/semaphore.yml\", organization_id: \""},{"event":"cmd_output","timestamp":1607098212,"output":"05a613aa-3625-49c8-887c-30dec00b5c83\", project_id: \"list_grouped\", queue_id: \"e4ef84e5-c5c1-4c6b-9e1"},{"event":"cmd_output","timestamp":1607098212,"output":"c-2bf2c3ddc37f\", scope: \"project\", updated_at: ~N[2020-12-04 16:10:12.132254], user_generated: false"},{"event":"cmd_output","timestamp":1607098212,"output":"}}\n\u001b[0m\u001b[22m\n16:10:12.150 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: "},{"event":"cmd_output","timestamp":1607098212,"output":"\"2483651c-19f5-4776-9786-44f6100dbdc1\"\n\u001b[0m\u001b[22m\n16:10:12.150 [info] block_id: e3f76ecc-4d93-402e"},{"event":"cmd_output","timestamp":1607098212,"output":"-bb37-a5cfc4624bba, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098212,"output":"ixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.154 [info] ppl_id: b4243f3a-3b2"},{"event":"cmd_output","timestamp":1607098212,"output":"1-43bd-acc5-01a28e7e74c0, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098212,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.163 [info] e"},{"event":"cmd_output","timestamp":1607098212,"output":"vent: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098212,"output":"2m\n16:10:12.163 [info] ppl_id: 3d6f1f89-3cd1-47de-892c-dffdcea48d92, type: PplBlocks, block_index:"},{"event":"cmd_output","timestamp":1607098212,"output":" 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandle"},{"event":"cmd_output","timestamp":1607098212,"output":"r.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:12.165 [info] ppl_id: 3d6f1f89-3cd1-47de-892"},{"event":"cmd_output","timestamp":1607098212,"output":"c-dffdcea48d92, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_cou"},{"event":"cmd_output","timestamp":1607098212,"output":"nt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.168 [info] blo"},{"event":"cmd_output","timestamp":1607098212,"output":"ck_id: 64162418-2a04-4863-8ed5-251d2a4f6f95, type: BlockRequests, event: persisted block run request"},{"event":"cmd_output","timestamp":1607098212,"output":" from ppl 2483651c-19f5-4776-9786-44f6100dbdc1 for block 0, origin: Elixir.Block.BlockRequests.Model"},{"event":"cmd_output","timestamp":1607098212,"output":".BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:12.171 [info] block_id: e2af100f-"},{"event":"cmd_output","timestamp":1607098212,"output":"d6f6-4073-b5d8-7888f2ed28de, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098212,"output":" origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.181 [info] block_id:"},{"event":"cmd_output","timestamp":1607098212,"output":" 64162418-2a04-4863-8ed5-251d2a4f6f95, type: Blocks, state: initializing, event: initializing, recov"},{"event":"cmd_output","timestamp":1607098212,"output":"ery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:12.1"},{"event":"cmd_output","timestamp":1607098212,"output":"84 [info] ppl_id: bed3964b-51e8-4281-88d7-b3e5d9a27910, type: PplRequests, event: persisted source_"},{"event":"cmd_output","timestamp":1607098212,"output":"args for pipeline: bed3964b-51e8-4281-88d7-b3e5d9a27910, origin: Elixir.Ppl.PplRequests.Model.PplReq"},{"event":"cmd_output","timestamp":1607098212,"output":"uestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:12.185 [info] ppl_id: 3d6f1f89-3cd1-47de-892c"},{"event":"cmd_output","timestamp":1607098212,"output":"-dffdcea48d92, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098212,"output":".Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.186 [info] Block 0 of pipeline with"},{"event":"cmd_output","timestamp":1607098212,"output":" id: 2483651c-19f5-4776-9786-44f6100dbdc1 scheduled in block service with id: : \"64162418-2a04-4863-"},{"event":"cmd_output","timestamp":1607098212,"output":"8ed5-251d2a4f6f95\"\n\u001b[0m\u001b[22m\n16:10:12.190 [info] ppl_id: bed3964b-51e8-4281-88d7-b3e5d9a27910, ty"},{"event":"cmd_output","timestamp":1607098212,"output":"pe: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.S"},{"event":"cmd_output","timestamp":1607098212,"output":"TM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.193 [info] ppl_id: 744f7a59-b743-4cb8-8756-3"},{"event":"cmd_output","timestamp":1607098212,"output":"3d133517971, block_id: e3f76ecc-4d93-402e-bb37-a5cfc4624bba, type: PplBlocks, block_index: 0, state:"},{"event":"cmd_output","timestamp":1607098212,"output":" done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098212,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.198 [info] ppl_id: 2483651c-19f5-4776-9786-44f6100dbdc1"},{"event":"cmd_output","timestamp":1607098212,"output":", type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098212,"output":": Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.200 [info] ppl_id: 3d6f1f89"},{"event":"cmd_output","timestamp":1607098212,"output":"-3cd1-47de-892c-dffdcea48d92, type: PplBlocks, block_index: 0, state: waiting, event: exit_schedulin"},{"event":"cmd_output","timestamp":1607098212,"output":"g, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12."},{"event":"cmd_output","timestamp":1607098212,"output":"205 [info] block_id: 64162418-2a04-4863-8ed5-251d2a4f6f95, type: BlockRequests, event: persisted bu"},{"event":"cmd_output","timestamp":1607098212,"output":"ild and sub_ppl details for block_request: 64162418-2a04-4863-8ed5-251d2a4f6f95, origin: Elixir.Bloc"},{"event":"cmd_output","timestamp":1607098212,"output":"k.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:12.211 [info] bl"},{"event":"cmd_output","timestamp":1607098212,"output":"ock_id: 64162418-2a04-4863-8ed5-251d2a4f6f95, type: Tasks, state: pending, event: created, recovery_"},{"event":"cmd_output","timestamp":1607098212,"output":"count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098212,"output":"10:12.218 [info] ppl_id: 10f8d5f9-e0fb-4ba9-b509-b2d99bd16f14, type: Ppls, state: done, result: pas"},{"event":"cmd_output","timestamp":1607098212,"output":"sed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L9"},{"event":"cmd_output","timestamp":1607098212,"output":"0), \n\u001b[0m\u001b[22m\n16:10:12.226 [info] block_id: 64162418-2a04-4863-8ed5-251d2a4f6f95, type: Blocks, "},{"event":"cmd_output","timestamp":1607098212,"output":"state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_"},{"event":"cmd_output","timestamp":1607098212,"output":"change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.228 [info] ppl_id: 3d6f1f89-3cd1-47de-892c-dffdcea48d92, type:"},{"event":"cmd_output","timestamp":1607098212,"output":" Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098212,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.267 [info] block_id: 64162418-2a04-4863-8ed5-251d2a4f6f"},{"event":"cmd_output","timestamp":1607098212,"output":"95, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.ST"},{"event":"cmd_output","timestamp":1607098212,"output":"M.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.283 [info] ppl_id: 3d6f1f89-3cd1-47de-892c-df"},{"event":"cmd_output","timestamp":1607098212,"output":"fdcea48d92, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Lo"},{"event":"cmd_output","timestamp":1607098212,"output":"oper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.292 [info] block_id: d2cebf47-5fdc-410"},{"event":"cmd_output","timestamp":1607098212,"output":"e-945b-39f345e04a5d, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098212,"output":"ixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.293 [info] ppl_id: bed3964b-51e"},{"event":"cmd_output","timestamp":1607098212,"output":"8-4281-88d7-b3e5d9a27910, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098212,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.308 [info] P"},{"event":"cmd_output","timestamp":1607098212,"output":"plBlocks WaitingState STM is scheduling block 0 from pipeline: \"3d6f1f89-3cd1-47de-892c-dffdcea48d92"},{"event":"cmd_output","timestamp":1607098212,"output":"\"\n\u001b[0m\u001b[22m\n16:10:12.312 [info] block_id: d2cebf47-5fdc-410e-945b-39f345e04a5d, type: Blocks, sta"},{"event":"cmd_output","timestamp":1607098212,"output":"te: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change"},{"event":"cmd_output","timestamp":1607098212,"output":"/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.313 [info] ppl_id: b4243f3a-3b21-43bd-acc5-01a28e7e74c0, type: PplRe"},{"event":"cmd_output","timestamp":1607098212,"output":"quests, event: persisted definition for request with request_token: 2e99673a-364b-11eb-becf-52540054"},{"event":"cmd_output","timestamp":1607098212,"output":"64e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098212,"output":"\n16:10:12.319 [info] ppl_id: 1f64866a-4595-426a-8815-3319a63fb026, type: PplRequests, event: persis"},{"event":"cmd_output","timestamp":1607098212,"output":"ted source_args for pipeline: 1f64866a-4595-426a-8815-3319a63fb026, origin: Elixir.Ppl.PplRequests.M"},{"event":"cmd_output","timestamp":1607098212,"output":"odel.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:12.327 [info] ppl_id: 1f64866a-459"},{"event":"cmd_output","timestamp":1607098212,"output":"5-426a-8815-3319a63fb026, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count"},{"event":"cmd_output","timestamp":1607098212,"output":": 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.329 [info] Queue"},{"event":"cmd_output","timestamp":1607098212,"output":" persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inser"},{"event":"cmd_output","timestamp":1607098212,"output":"ted_at: ~N[2020-12-04 16:10:12.321865], name: \"pull-request-1213-.semaphore/semaphore.yml\", organiza"},{"event":"cmd_output","timestamp":1607098212,"output":"tion_id: \"072eeff9-12f3-4240-9a96-070a4eef4acd\", project_id: \"list_grouped\", queue_id: \"33d6e456-4bf"},{"event":"cmd_output","timestamp":1607098212,"output":"d-4998-8de2-30d3d0657696\", scope: \"project\", updated_at: ~N[2020-12-04 16:10:12.321878], user_genera"},{"event":"cmd_output","timestamp":1607098212,"output":"ted: false}}\n\u001b[0m\u001b[22m\n16:10:12.336 [info] ppl_id: 451f2dd4-1ce5-4dae-ba53-aa4aaf0e0daf, block_id"},{"event":"cmd_output","timestamp":1607098212,"output":": d2cebf47-5fdc-410e-945b-39f345e04a5d, type: PplBlocks, block_index: 0, state: done, result: passed"},{"event":"cmd_output","timestamp":1607098212,"output":", event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90),"},{"event":"cmd_output","timestamp":1607098212,"output":" \n\u001b[0m\u001b[22m\n16:10:12.338 [info] block_id: 6551f60c-4f3c-47d4-8c55-0e872b6100d5, type: BlockReques"},{"event":"cmd_output","timestamp":1607098212,"output":"ts, event: persisted block run request from ppl 3d6f1f89-3cd1-47de-892c-dffdcea48d92 for block 0, or"},{"event":"cmd_output","timestamp":1607098212,"output":"igin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098212,"output":":10:12.342 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok"},{"event":"cmd_output","timestamp":1607098212,"output":"?/1(L105), \n\u001b[0m\u001b[22m\n16:10:12.342 [info] ppl_id: b4243f3a-3b21-43bd-acc5-01a28e7e74c0, type: Ppl"},{"event":"cmd_output","timestamp":1607098212,"output":"Blocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.P"},{"event":"cmd_output","timestamp":1607098212,"output":"plSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:12.343 [info] block_id: "},{"event":"cmd_output","timestamp":1607098212,"output":"6551f60c-4f3c-47d4-8c55-0e872b6100d5, type: Blocks, state: initializing, event: initializing, recove"},{"event":"cmd_output","timestamp":1607098212,"output":"ry_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:12.34"},{"event":"cmd_output","timestamp":1607098212,"output":"7 [info] ppl_id: b4243f3a-3b21-43bd-acc5-01a28e7e74c0, type: PplSubInits, state: done, result: pass"},{"event":"cmd_output","timestamp":1607098212,"output":"ed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90"},{"event":"cmd_output","timestamp":1607098212,"output":"), \n\u001b[0m\u001b[22m\n16:10:12.354 [info] ppl_id: 744f7a59-b743-4cb8-8756-33d133517971, type: Ppls, state"},{"event":"cmd_output","timestamp":1607098212,"output":": done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.lo"},{"event":"cmd_output","timestamp":1607098212,"output":"g_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.355 [info] Block 0 of pipeline with id: 3d6f1f89-3cd1-"},{"event":"cmd_output","timestamp":1607098212,"output":"47de-892c-dffdcea48d92 scheduled in block service with id: : \"6551f60c-4f3c-47d4-8c55-0e872b6100d5\"\r"},{"event":"cmd_output","timestamp":1607098212,"output":"\n\u001b[0m\u001b[22m\n16:10:12.370 [info] block_id: 6551f60c-4f3c-47d4-8c55-0e872b6100d5, type: BlockRequests"},{"event":"cmd_output","timestamp":1607098212,"output":", event: persisted build and sub_ppl details for block_request: 6551f60c-4f3c-47d4-8c55-0e872b6100d5"},{"event":"cmd_output","timestamp":1607098212,"output":", origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098212,"output":":10:12.377 [info] ppl_id: 3d6f1f89-3cd1-47de-892c-dffdcea48d92, type: PplBlocks, block_index: 0, st"},{"event":"cmd_output","timestamp":1607098212,"output":"ate: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_ch"},{"event":"cmd_output","timestamp":1607098212,"output":"ange/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.385 [info] block_id: 6551f60c-4f3c-47d4-8c55-0e872b6100d5, type:"},{"event":"cmd_output","timestamp":1607098212,"output":" Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.In"},{"event":"cmd_output","timestamp":1607098212,"output":"itializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:12.386 [info] ppl_id: b4243f3a-3b21-43bd-acc5-0"},{"event":"cmd_output","timestamp":1607098212,"output":"1a28e7e74c0, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count"},{"event":"cmd_output","timestamp":1607098212,"output":": 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.396 [info] ppl_i"},{"event":"cmd_output","timestamp":1607098212,"output":"d: b4243f3a-3b21-43bd-acc5-01a28e7e74c0, type: Ppls, state: pending, event: exit_scheduling, recover"},{"event":"cmd_output","timestamp":1607098212,"output":"y_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.399 [info]"},{"event":"cmd_output","timestamp":1607098212,"output":" block_id: 6551f60c-4f3c-47d4-8c55-0e872b6100d5, type: Blocks, state: running, event: exit_scheduli"},{"event":"cmd_output","timestamp":1607098212,"output":"ng, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12"},{"event":"cmd_output","timestamp":1607098212,"output":".403 [info] ppl_id: 1f64866a-4595-426a-8815-3319a63fb026, type: PplSubInits, state: regular_init, e"},{"event":"cmd_output","timestamp":1607098212,"output":"vent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n"},{"event":"cmd_output","timestamp":1607098212,"output":"\u001b[0m\u001b[22m\n16:10:12.433 [info] ppl_id: 451f2dd4-1ce5-4dae-ba53-aa4aaf0e0daf, type: Ppls, state: don"},{"event":"cmd_output","timestamp":1607098212,"output":"e, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_sta"},{"event":"cmd_output","timestamp":1607098212,"output":"te_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.438 [info] block_id: 4ba39d24-b89d-433f-8c38-bc1efb8bb287, "},{"event":"cmd_output","timestamp":1607098212,"output":"type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl."},{"event":"cmd_output","timestamp":1607098212,"output":"log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.447 [info] block_id: 6551f60c-4f3c-47d4-8c55-0e872b6"},{"event":"cmd_output","timestamp":1607098212,"output":"100d5, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper"},{"event":"cmd_output","timestamp":1607098212,"output":".STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.447 [info] ppl_id: b4243f3a-3b21-43bd-acc5"},{"event":"cmd_output","timestamp":1607098212,"output":"-01a28e7e74c0, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098212,"output":".Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.457 [info] ppl_id: c1b2009c-e56b-4a"},{"event":"cmd_output","timestamp":1607098212,"output":"07-a901-2d7a7aa73213, type: PplRequests, event: persisted source_args for pipeline: c1b2009c-e56b-4a"},{"event":"cmd_output","timestamp":1607098212,"output":"07-a901-2d7a7aa73213, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), "},{"event":"cmd_output","timestamp":1607098212,"output":"\n\u001b[0m\u001b[22m\n16:10:12.459 [info] block_id: 4ba39d24-b89d-433f-8c38-bc1efb8bb287, type: Blocks, stat"},{"event":"cmd_output","timestamp":1607098212,"output":"e: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/"},{"event":"cmd_output","timestamp":1607098212,"output":"1(L90), \n\u001b[0m\u001b[22m\n16:10:12.459 [info] ppl_id: bed3964b-51e8-4281-88d7-b3e5d9a27910, type: PplReq"},{"event":"cmd_output","timestamp":1607098212,"output":"uests, event: persisted definition for request with request_token: 2ea0d286-364b-11eb-89a7-525400546"},{"event":"cmd_output","timestamp":1607098212,"output":"4e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098212,"output":"16:10:12.467 [info] ppl_id: c1b2009c-e56b-4a07-a901-2d7a7aa73213, type: PplSubInits, state: fetchin"},{"event":"cmd_output","timestamp":1607098212,"output":"g, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90)"},{"event":"cmd_output","timestamp":1607098212,"output":", \n\u001b[0m\u001b[22m\n16:10:12.468 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto."},{"event":"cmd_output","timestamp":1607098212,"output":"Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:10:12.465027], name: \"pull-request"},{"event":"cmd_output","timestamp":1607098212,"output":"-1214-.semaphore/semaphore.yml\", organization_id: \"67470fc1-2f66-4d82-9087-2e680b9fd9b1\", project_id"},{"event":"cmd_output","timestamp":1607098212,"output":": \"list_grouped\", queue_id: \"1394a7cd-e53b-4556-9429-99e69e1438f7\", scope: \"project\", updated_at: ~N"},{"event":"cmd_output","timestamp":1607098212,"output":"[2020-12-04 16:10:12.465036], user_generated: false}}\n\u001b[0m\u001b[22m\n16:10:12.476 [info] ppl_id: b4243"},{"event":"cmd_output","timestamp":1607098212,"output":"f3a-3b21-43bd-acc5-01a28e7e74c0, type: Ppls, state: running, event: exit_scheduling, recovery_count:"},{"event":"cmd_output","timestamp":1607098212,"output":" 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.480 [info] event:"},{"event":"cmd_output","timestamp":1607098212,"output":" created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098212,"output":"6:10:12.480 [info] ppl_id: bed3964b-51e8-4281-88d7-b3e5d9a27910, type: PplBlocks, block_index: 0, s"},{"event":"cmd_output","timestamp":1607098212,"output":"tate: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.Reg"},{"event":"cmd_output","timestamp":1607098212,"output":"ularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:12.480 [info] ppl_id: a156cb57-e802-46aa-b3bd-1ef"},{"event":"cmd_output","timestamp":1607098212,"output":"79b3be293, block_id: 4ba39d24-b89d-433f-8c38-bc1efb8bb287, type: PplBlocks, block_index: 0, state: d"},{"event":"cmd_output","timestamp":1607098212,"output":"one, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_s"},{"event":"cmd_output","timestamp":1607098212,"output":"tate_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.484 [info] ppl_id: bed3964b-51e8-4281-88d7-b3e5d9a27910, "},{"event":"cmd_output","timestamp":1607098212,"output":"type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: E"},{"event":"cmd_output","timestamp":1607098212,"output":"lixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.491 [info] PplBlocks WaitingSt"},{"event":"cmd_output","timestamp":1607098212,"output":"ate STM is scheduling block 0 from pipeline: \"b4243f3a-3b21-43bd-acc5-01a28e7e74c0\"\n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098212,"output":"0:12.511 [info] ppl_id: bed3964b-51e8-4281-88d7-b3e5d9a27910, type: Ppls, state: pending, event: ex"},{"event":"cmd_output","timestamp":1607098212,"output":"it_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098212,"output":"m\n16:10:12.515 [info] block_id: 6e8f066e-c405-4102-8dcb-ad61e19189a5, type: BlockRequests, event: "},{"event":"cmd_output","timestamp":1607098212,"output":"persisted block run request from ppl b4243f3a-3b21-43bd-acc5-01a28e7e74c0 for block 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098212,"output":"r.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:12.516 "},{"event":"cmd_output","timestamp":1607098212,"output":"[info] ppl_id: bed3964b-51e8-4281-88d7-b3e5d9a27910, type: PplBlocks, block_index: 0, state: waitin"},{"event":"cmd_output","timestamp":1607098212,"output":"g, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90)"},{"event":"cmd_output","timestamp":1607098212,"output":", \n\u001b[0m\u001b[22m\n16:10:12.519 [info] ppl_id: c1b2009c-e56b-4a07-a901-2d7a7aa73213, type: PplSubInits,"},{"event":"cmd_output","timestamp":1607098212,"output":" state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_"},{"event":"cmd_output","timestamp":1607098212,"output":"state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.522 [info] ppl_id: a156cb57-e802-46aa-b3bd-1ef79b3be293,"},{"event":"cmd_output","timestamp":1607098212,"output":" type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098212,"output":"Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.524 [info] block_id: 6e8f066e-c405-4"},{"event":"cmd_output","timestamp":1607098212,"output":"102-8dcb-ad61e19189a5, type: Blocks, state: initializing, event: initializing, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098212,"output":"igin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:12.532 [info] Block"},{"event":"cmd_output","timestamp":1607098212,"output":" 0 of pipeline with id: b4243f3a-3b21-43bd-acc5-01a28e7e74c0 scheduled in block service with id: : \""},{"event":"cmd_output","timestamp":1607098212,"output":"6e8f066e-c405-4102-8dcb-ad61e19189a5\"\n\u001b[0m\u001b[22m\n16:10:12.536 [info] ppl_id: bed3964b-51e8-4281-88"},{"event":"cmd_output","timestamp":1607098212,"output":"d7-b3e5d9a27910, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098212,"output":"ir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.540 [info] ppl_id: b4243f3a-3b21-"},{"event":"cmd_output","timestamp":1607098212,"output":"43bd-acc5-01a28e7e74c0, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, rec"},{"event":"cmd_output","timestamp":1607098212,"output":"overy_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.542 [i"},{"event":"cmd_output","timestamp":1607098212,"output":"nfo] block_id: 6e8f066e-c405-4102-8dcb-ad61e19189a5, type: BlockRequests, event: persisted build an"},{"event":"cmd_output","timestamp":1607098212,"output":"d sub_ppl details for block_request: 6e8f066e-c405-4102-8dcb-ad61e19189a5, origin: Elixir.Block.Bloc"},{"event":"cmd_output","timestamp":1607098212,"output":"kRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:12.552 [info] block_id"},{"event":"cmd_output","timestamp":1607098212,"output":": 6e8f066e-c405-4102-8dcb-ad61e19189a5, type: Tasks, state: pending, event: created, recovery_count:"},{"event":"cmd_output","timestamp":1607098212,"output":" 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:12."},{"event":"cmd_output","timestamp":1607098212,"output":"560 [info] block_id: 6e8f066e-c405-4102-8dcb-ad61e19189a5, type: Blocks, state: running, event: exi"},{"event":"cmd_output","timestamp":1607098212,"output":"t_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098212,"output":"\n16:10:12.568 [info] block_id: dabab286-201f-4a55-a36d-10fe0f866b05, type: Tasks, state: done, eve"},{"event":"cmd_output","timestamp":1607098212,"output":"nt: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b["},{"event":"cmd_output","timestamp":1607098212,"output":"0m\u001b[22m\n16:10:12.568 [info] ppl_id: bed3964b-51e8-4281-88d7-b3e5d9a27910, type: Ppls, state: runni"},{"event":"cmd_output","timestamp":1607098212,"output":"ng, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90"},{"event":"cmd_output","timestamp":1607098212,"output":"), \n\u001b[0m\u001b[22m\n16:10:12.591 [info] ppl_id: 1f64866a-4595-426a-8815-3319a63fb026, type: PplRequests"},{"event":"cmd_output","timestamp":1607098212,"output":", event: persisted definition for request with request_token: 2ea8c0a4-364b-11eb-8b1f-5254005464e2, "},{"event":"cmd_output","timestamp":1607098212,"output":"origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10"},{"event":"cmd_output","timestamp":1607098212,"output":":12.593 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"bed3964b-51e8-4281-"},{"event":"cmd_output","timestamp":1607098212,"output":"88d7-b3e5d9a27910\"\n\u001b[0m\u001b[22m\n16:10:12.593 [info] block_id: 6e8f066e-c405-4102-8dcb-ad61e19189a5, "},{"event":"cmd_output","timestamp":1607098212,"output":"type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Im"},{"event":"cmd_output","timestamp":1607098212,"output":"pl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.600 [info] ppl_id: ad6a27bb-db7b-4838-826e-1da6e6"},{"event":"cmd_output","timestamp":1607098212,"output":"c54e11, type: PplRequests, event: persisted source_args for pipeline: ad6a27bb-db7b-4838-826e-1da6e6"},{"event":"cmd_output","timestamp":1607098212,"output":"c54e11, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098212,"output":"6:10:12.602 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<"},{"event":"cmd_output","timestamp":1607098212,"output":":loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:10:12.595992], name: \"pull-request-1215-.semaphore"},{"event":"cmd_output","timestamp":1607098212,"output":"/semaphore.yml\", organization_id: \"47aade49-d28a-45ad-86c1-230a7ca8e479\", project_id: \"list_grouped\""},{"event":"cmd_output","timestamp":1607098212,"output":", queue_id: \"a23c9bb2-4af5-4277-bf74-b80b912fe300\", scope: \"project\", updated_at: ~N[2020-12-04 16:1"},{"event":"cmd_output","timestamp":1607098212,"output":"0:12.596002], user_generated: false}}\n\u001b[0m\u001b[22m\n16:10:12.607 [info] block_id: dabab286-201f-4a55-"},{"event":"cmd_output","timestamp":1607098212,"output":"a36d-10fe0f866b05, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098212,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.610 [info] ppl_id: ad6a27bb-db7b"},{"event":"cmd_output","timestamp":1607098212,"output":"-4838-826e-1da6e6c54e11, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count:"},{"event":"cmd_output","timestamp":1607098212,"output":" 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.613 [info] block_"},{"event":"cmd_output","timestamp":1607098212,"output":"id: 7cde9aed-161c-4f47-b44d-fb8b27ebb7ae, type: BlockRequests, event: persisted block run request fr"},{"event":"cmd_output","timestamp":1607098212,"output":"om ppl bed3964b-51e8-4281-88d7-b3e5d9a27910 for block 0, origin: Elixir.Block.BlockRequests.Model.Bl"},{"event":"cmd_output","timestamp":1607098212,"output":"ockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:12.615 [info] event: created, origin"},{"event":"cmd_output","timestamp":1607098212,"output":": Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:12.615 [inf"},{"event":"cmd_output","timestamp":1607098212,"output":"o] ppl_id: 1f64866a-4595-426a-8815-3319a63fb026, type: PplBlocks, block_index: 0, state: initializi"},{"event":"cmd_output","timestamp":1607098212,"output":"ng, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.al"},{"event":"cmd_output","timestamp":1607098212,"output":"l_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:12.618 [info] ppl_id: 1f64866a-4595-426a-8815-3319a63fb026, type:"},{"event":"cmd_output","timestamp":1607098212,"output":" PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098212,"output":".Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.625 [info] block_id: 7cde9aed-161c-"},{"event":"cmd_output","timestamp":1607098212,"output":"4f47-b44d-fb8b27ebb7ae, type: Blocks, state: initializing, event: initializing, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098212,"output":"rigin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:12.629 [info] ppl_"},{"event":"cmd_output","timestamp":1607098212,"output":"id: ad902bad-7a6c-4a0e-944b-675869cac0fc, block_id: dabab286-201f-4a55-a36d-10fe0f866b05, type: PplB"},{"event":"cmd_output","timestamp":1607098212,"output":"locks, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098212,"output":"n: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.636 [info] Block 0 of pipe"},{"event":"cmd_output","timestamp":1607098212,"output":"line with id: bed3964b-51e8-4281-88d7-b3e5d9a27910 scheduled in block service with id: : \"7cde9aed-1"},{"event":"cmd_output","timestamp":1607098212,"output":"61c-4f47-b44d-fb8b27ebb7ae\"\n\u001b[0m\u001b[22m\n16:10:12.643 [info] ppl_id: bed3964b-51e8-4281-88d7-b3e5d9a"},{"event":"cmd_output","timestamp":1607098212,"output":"27910, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098212,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.646 [info] ppl_id: 1f6"},{"event":"cmd_output","timestamp":1607098212,"output":"4866a-4595-426a-8815-3319a63fb026, type: Ppls, state: pending, event: exit_scheduling, recovery_coun"},{"event":"cmd_output","timestamp":1607098212,"output":"t: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.653 [info] bloc"},{"event":"cmd_output","timestamp":1607098212,"output":"k_id: 7cde9aed-161c-4f47-b44d-fb8b27ebb7ae, type: BlockRequests, event: persisted build and sub_ppl "},{"event":"cmd_output","timestamp":1607098212,"output":"details for block_request: 7cde9aed-161c-4f47-b44d-fb8b27ebb7ae, origin: Elixir.Block.BlockRequests."},{"event":"cmd_output","timestamp":1607098212,"output":"Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:12.660 [info] ppl_id: 1f64866a-4"},{"event":"cmd_output","timestamp":1607098212,"output":"595-426a-8815-3319a63fb026, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling,"},{"event":"cmd_output","timestamp":1607098212,"output":" recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.66"},{"event":"cmd_output","timestamp":1607098212,"output":"5 [info] block_id: 7cde9aed-161c-4f47-b44d-fb8b27ebb7ae, type: Tasks, state: pending, event: create"},{"event":"cmd_output","timestamp":1607098212,"output":"d, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b["},{"event":"cmd_output","timestamp":1607098212,"output":"0m\u001b[22m\n16:10:12.670 [info] block_id: 7cde9aed-161c-4f47-b44d-fb8b27ebb7ae, type: Blocks, state: r"},{"event":"cmd_output","timestamp":1607098212,"output":"unning, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1"},{"event":"cmd_output","timestamp":1607098212,"output":"(L90), \n\u001b[0m\u001b[22m\n16:10:12.684 [info] ppl_id: 1f64866a-4595-426a-8815-3319a63fb026, type: Ppls, s"},{"event":"cmd_output","timestamp":1607098212,"output":"tate: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098212,"output":"hange/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.689 [info] ppl_id: ad6a27bb-db7b-4838-826e-1da6e6c54e11, type: "},{"event":"cmd_output","timestamp":1607098212,"output":"PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.S"},{"event":"cmd_output","timestamp":1607098212,"output":"TM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.694 [info] ppl_id: ad902bad-7a6c-4a0e-944b-6"},{"event":"cmd_output","timestamp":1607098212,"output":"75869cac0fc, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098212,"output":"gin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.717 [info] block_id: 7cd"},{"event":"cmd_output","timestamp":1607098212,"output":"e9aed-161c-4f47-b44d-fb8b27ebb7ae, type: Tasks, state: running, event: exit_scheduling, recovery_cou"},{"event":"cmd_output","timestamp":1607098212,"output":"nt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.718 [info] blo"},{"event":"cmd_output","timestamp":1607098212,"output":"ck_id: 0c41a4d2-eeb4-470c-9cc1-fe45f44fd780, type: Tasks, state: done, event: exit_scheduling, recov"},{"event":"cmd_output","timestamp":1607098212,"output":"ery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.728 [inf"},{"event":"cmd_output","timestamp":1607098212,"output":"o] ppl_id: 1f64866a-4595-426a-8815-3319a63fb026, type: Ppls, state: running, event: exit_scheduling"},{"event":"cmd_output","timestamp":1607098212,"output":", recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.7"},{"event":"cmd_output","timestamp":1607098212,"output":"40 [info] block_id: 0c41a4d2-eeb4-470c-9cc1-fe45f44fd780, type: Blocks, state: done, event: exit_sc"},{"event":"cmd_output","timestamp":1607098212,"output":"heduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098212,"output":":10:12.741 [info] ppl_id: c1b2009c-e56b-4a07-a901-2d7a7aa73213, type: PplRequests, event: persisted"},{"event":"cmd_output","timestamp":1607098212,"output":" definition for request with request_token: 2eb07b96-364b-11eb-b93b-5254005464e2, origin: Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098212,"output":".PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:12.741 [info] Pp"},{"event":"cmd_output","timestamp":1607098212,"output":"lBlocks WaitingState STM is scheduling block 0 from pipeline: \"1f64866a-4595-426a-8815-3319a63fb026\""},{"event":"cmd_output","timestamp":1607098212,"output":"\n\u001b[0m\u001b[22m\n16:10:12.756 [info] block_id: 0dad97ba-efbb-42eb-a004-b49657eabbcc, type: BlockRequest"},{"event":"cmd_output","timestamp":1607098212,"output":"s, event: persisted block run request from ppl 1f64866a-4595-426a-8815-3319a63fb026 for block 0, ori"},{"event":"cmd_output","timestamp":1607098212,"output":"gin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098212,"output":"10:12.758 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:l"},{"event":"cmd_output","timestamp":1607098212,"output":"oaded, \"queues\">, inserted_at: ~N[2020-12-04 16:10:12.750858], name: \"pull-request-1216-.semaphore/s"},{"event":"cmd_output","timestamp":1607098212,"output":"emaphore.yml\", organization_id: \"d40c9a54-5c9e-4f68-aa48-21124aeea3c5\", project_id: \"list_grouped\", "},{"event":"cmd_output","timestamp":1607098212,"output":"queue_id: \"9af3a155-3a6a-4660-9045-c86387cdf2c3\", scope: \"project\", updated_at: ~N[2020-12-04 16:10:"},{"event":"cmd_output","timestamp":1607098212,"output":"12.750870], user_generated: false}}\n\u001b[0m\u001b[22m\n16:10:12.760 [info] block_id: 0dad97ba-efbb-42eb-a0"},{"event":"cmd_output","timestamp":1607098212,"output":"04-b49657eabbcc, type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098212,"output":"Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:12.764 [info] event: crea"},{"event":"cmd_output","timestamp":1607098212,"output":"ted, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:"},{"event":"cmd_output","timestamp":1607098212,"output":"12.764 [info] ppl_id: c1b2009c-e56b-4a07-a901-2d7a7aa73213, type: PplBlocks, block_index: 0, state:"},{"event":"cmd_output","timestamp":1607098212,"output":" initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularI"},{"event":"cmd_output","timestamp":1607098212,"output":"nitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:12.766 [info] Block 0 of pipeline with id: 1f64866a-45"},{"event":"cmd_output","timestamp":1607098212,"output":"95-426a-8815-3319a63fb026 scheduled in block service with id: : \"0dad97ba-efbb-42eb-a004-b49657eabbc"},{"event":"cmd_output","timestamp":1607098212,"output":"c\"\n\u001b[0m\u001b[22m\n16:10:12.768 [info] ppl_id: c1b2009c-e56b-4a07-a901-2d7a7aa73213, type: PplSubInits,"},{"event":"cmd_output","timestamp":1607098212,"output":" state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.I"},{"event":"cmd_output","timestamp":1607098212,"output":"mpl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.777 [info] ppl_id: 1f64866a-4595-426a-8815-3319a"},{"event":"cmd_output","timestamp":1607098212,"output":"63fb026, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098212,"output":" origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.778 [info] ppl_id: f"},{"event":"cmd_output","timestamp":1607098212,"output":"3948fcc-c38d-4cfa-a202-3e631e236c7c, block_id: 0c41a4d2-eeb4-470c-9cc1-fe45f44fd780, type: PplBlocks"},{"event":"cmd_output","timestamp":1607098212,"output":", block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098212,"output":"ixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.780 [info] block_id: 0dad97ba-e"},{"event":"cmd_output","timestamp":1607098212,"output":"fbb-42eb-a004-b49657eabbcc, type: BlockRequests, event: persisted build and sub_ppl details for bloc"},{"event":"cmd_output","timestamp":1607098212,"output":"k_request: 0dad97ba-efbb-42eb-a004-b49657eabbcc, origin: Elixir.Block.BlockRequests.Model.BlockReque"},{"event":"cmd_output","timestamp":1607098212,"output":"stsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:12.784 [info] ppl_id: c1b2009c-e56b-4a07-a901-2d"},{"event":"cmd_output","timestamp":1607098212,"output":"7a7aa73213, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count:"},{"event":"cmd_output","timestamp":1607098212,"output":" 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.784 [info] block_"},{"event":"cmd_output","timestamp":1607098212,"output":"id: 0dad97ba-efbb-42eb-a004-b49657eabbcc, type: Tasks, state: pending, event: created, recovery_coun"},{"event":"cmd_output","timestamp":1607098212,"output":"t: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:1"},{"event":"cmd_output","timestamp":1607098212,"output":"2.786 [info] ppl_id: c1b2009c-e56b-4a07-a901-2d7a7aa73213, type: Ppls, state: pending, event: exit_"},{"event":"cmd_output","timestamp":1607098212,"output":"scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098212,"output":"16:10:12.789 [info] block_id: 0dad97ba-efbb-42eb-a004-b49657eabbcc, type: Blocks, state: running, e"},{"event":"cmd_output","timestamp":1607098212,"output":"vent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n"},{"event":"cmd_output","timestamp":1607098212,"output":"\u001b[0m\u001b[22m\n16:10:12.810 [info] ppl_id: c1b2009c-e56b-4a07-a901-2d7a7aa73213, type: Ppls, state: que"},{"event":"cmd_output","timestamp":1607098212,"output":"uing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098212,"output":"90), \n\u001b[0m\u001b[22m\n16:10:12.820 [info] ppl_id: f3948fcc-c38d-4cfa-a202-3e631e236c7c, type: Ppls, sta"},{"event":"cmd_output","timestamp":1607098212,"output":"te: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl."},{"event":"cmd_output","timestamp":1607098212,"output":"log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.823 [info] block_id: 0dad97ba-efbb-42eb-a004-b49657e"},{"event":"cmd_output","timestamp":1607098212,"output":"abbcc, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper"},{"event":"cmd_output","timestamp":1607098212,"output":".STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.849 [info] block_id: 66450015-b75e-4d47-87"},{"event":"cmd_output","timestamp":1607098212,"output":"1b-19e00cab4eb3, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098212,"output":".Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.850 [info] ppl_id: ad6a27bb-db7b-48"},{"event":"cmd_output","timestamp":1607098212,"output":"38-826e-1da6e6c54e11, type: PplRequests, event: persisted definition for request with request_token:"},{"event":"cmd_output","timestamp":1607098212,"output":" 2eb700ec-364b-11eb-8230-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.inser"},{"event":"cmd_output","timestamp":1607098212,"output":"t_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:12.853 [info] ppl_id: c1b2009c-e56b-4a07-a901-2d7a7aa73213,"},{"event":"cmd_output","timestamp":1607098212,"output":" type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Im"},{"event":"cmd_output","timestamp":1607098212,"output":"pl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.858 [info] Queue persisted: {:ok, %Ppl.Queues.Mod"},{"event":"cmd_output","timestamp":1607098212,"output":"el.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:10:12.85"},{"event":"cmd_output","timestamp":1607098212,"output":"6910], name: \"pull-request-1217-.semaphore/semaphore.yml\", organization_id: \"1df28f74-cf88-4565-bc39"},{"event":"cmd_output","timestamp":1607098212,"output":"-812327892f89\", project_id: \"list_grouped\", queue_id: \"5ec5fda9-db48-4f67-b332-adebead4b495\", scope:"},{"event":"cmd_output","timestamp":1607098212,"output":" \"project\", updated_at: ~N[2020-12-04 16:10:12.856920], user_generated: false}}\n\u001b[0m\u001b[22m\n16:10:12"},{"event":"cmd_output","timestamp":1607098212,"output":".867 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"c1b2009c-e56b-4a07-a90"},{"event":"cmd_output","timestamp":1607098212,"output":"1-2d7a7aa73213\"\n\u001b[0m\u001b[22m\n16:10:12.867 [info] block_id: 66450015-b75e-4d47-871b-19e00cab4eb3, typ"},{"event":"cmd_output","timestamp":1607098212,"output":"e: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.lo"},{"event":"cmd_output","timestamp":1607098212,"output":"g_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.872 [info] event: created, origin: Elixir.Ppl.PplSubIn"},{"event":"cmd_output","timestamp":1607098212,"output":"its.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:12.872 [info] ppl_id: ad6a27bb-"},{"event":"cmd_output","timestamp":1607098212,"output":"db7b-4838-826e-1da6e6c54e11, type: PplBlocks, block_index: 0, state: initializing, event: created, r"},{"event":"cmd_output","timestamp":1607098212,"output":"ecovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098212,"output":"\u001b[22m\n16:10:12.874 [info] ppl_id: ad6a27bb-db7b-4838-826e-1da6e6c54e11, type: PplSubInits, state: "},{"event":"cmd_output","timestamp":1607098212,"output":"done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_"},{"event":"cmd_output","timestamp":1607098212,"output":"state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.881 [info] block_id: a8aadc29-d11f-4b75-a468-337d81b6110"},{"event":"cmd_output","timestamp":1607098212,"output":"2, type: BlockRequests, event: persisted block run request from ppl c1b2009c-e56b-4a07-a901-2d7a7aa7"},{"event":"cmd_output","timestamp":1607098212,"output":"3213 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L"},{"event":"cmd_output","timestamp":1607098212,"output":"35), \n\u001b[0m\u001b[22m\n16:10:12.884 [info] block_id: a8aadc29-d11f-4b75-a468-337d81b61102, type: Blocks,"},{"event":"cmd_output","timestamp":1607098212,"output":" state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.Bloc"},{"event":"cmd_output","timestamp":1607098212,"output":"ksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:12.891 [info] Block 0 of pipeline with id: c1b2009c-e56"},{"event":"cmd_output","timestamp":1607098212,"output":"b-4a07-a901-2d7a7aa73213 scheduled in block service with id: : \"a8aadc29-d11f-4b75-a468-337d81b61102"},{"event":"cmd_output","timestamp":1607098212,"output":"\"\n\u001b[0m\u001b[22m\n16:10:12.897 [info] ppl_id: c1b2009c-e56b-4a07-a901-2d7a7aa73213, type: PplBlocks, bl"},{"event":"cmd_output","timestamp":1607098212,"output":"ock_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.I"},{"event":"cmd_output","timestamp":1607098212,"output":"mpl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.899 [info] ppl_id: ad6a27bb-db7b-4838-826e-1da6e"},{"event":"cmd_output","timestamp":1607098212,"output":"6c54e11, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098212,"output":" origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.900 [info] block_id:"},{"event":"cmd_output","timestamp":1607098212,"output":" a8aadc29-d11f-4b75-a468-337d81b61102, type: BlockRequests, event: persisted build and sub_ppl detai"},{"event":"cmd_output","timestamp":1607098212,"output":"ls for block_request: a8aadc29-d11f-4b75-a468-337d81b61102, origin: Elixir.Block.BlockRequests.Model"},{"event":"cmd_output","timestamp":1607098212,"output":".BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:12.901 [info] ppl_id: 9c52e284-86f8-4"},{"event":"cmd_output","timestamp":1607098212,"output":"96a-bb60-679230b02f4f, block_id: 66450015-b75e-4d47-871b-19e00cab4eb3, type: PplBlocks, block_index:"},{"event":"cmd_output","timestamp":1607098212,"output":" 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.ST"},{"event":"cmd_output","timestamp":1607098212,"output":"M.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.907 [info] ppl_id: ad6a27bb-db7b-4838-826e-1d"},{"event":"cmd_output","timestamp":1607098212,"output":"a6e6c54e11, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Lo"},{"event":"cmd_output","timestamp":1607098212,"output":"oper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.909 [info] block_id: a8aadc29-d11f-4b7"},{"event":"cmd_output","timestamp":1607098212,"output":"5-a468-337d81b61102, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098212,"output":"Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:12.915 [info] block_i"},{"event":"cmd_output","timestamp":1607098212,"output":"d: a8aadc29-d11f-4b75-a468-337d81b61102, type: Blocks, state: running, event: exit_scheduling, recov"},{"event":"cmd_output","timestamp":1607098212,"output":"ery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.928 [inf"},{"event":"cmd_output","timestamp":1607098212,"output":"o] ppl_id: ad6a27bb-db7b-4838-826e-1da6e6c54e11, type: Ppls, state: queuing, event: exit_scheduling"},{"event":"cmd_output","timestamp":1607098212,"output":", recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.9"},{"event":"cmd_output","timestamp":1607098212,"output":"46 [info] block_id: a8aadc29-d11f-4b75-a468-337d81b61102, type: Tasks, state: running, event: exit_"},{"event":"cmd_output","timestamp":1607098212,"output":"scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098212,"output":"16:10:12.950 [info] ppl_id: 9c52e284-86f8-496a-bb60-679230b02f4f, type: Ppls, state: done, result: "},{"event":"cmd_output","timestamp":1607098212,"output":"passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1"},{"event":"cmd_output","timestamp":1607098212,"output":"(L90), \n\u001b[0m\u001b[22m\n16:10:12.954 [info] ppl_id: ad6a27bb-db7b-4838-826e-1da6e6c54e11, type: Ppls, s"},{"event":"cmd_output","timestamp":1607098212,"output":"tate: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098212,"output":"hange/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.964 [info] block_id: bb7b1055-4070-4b96-872a-79e9361a80a9, type"},{"event":"cmd_output","timestamp":1607098212,"output":": Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_"},{"event":"cmd_output","timestamp":1607098212,"output":"state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.968 [info] PplBlocks WaitingState STM is scheduling bloc"},{"event":"cmd_output","timestamp":1607098212,"output":"k 0 from pipeline: \"ad6a27bb-db7b-4838-826e-1da6e6c54e11\"\n\u001b[0m\u001b[22m\n16:10:12.973 [info] block_id:"},{"event":"cmd_output","timestamp":1607098212,"output":" bb7b1055-4070-4b96-872a-79e9361a80a9, type: Blocks, state: done, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098212,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.974 [info] b"},{"event":"cmd_output","timestamp":1607098212,"output":"lock_id: 66ac3348-e236-4de5-bdc4-6d6500e111ed, type: BlockRequests, event: persisted block run reque"},{"event":"cmd_output","timestamp":1607098212,"output":"st from ppl ad6a27bb-db7b-4838-826e-1da6e6c54e11 for block 0, origin: Elixir.Block.BlockRequests.Mod"},{"event":"cmd_output","timestamp":1607098212,"output":"el.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:12.977 [info] block_id: 66ac334"},{"event":"cmd_output","timestamp":1607098212,"output":"8-e236-4de5-bdc4-6d6500e111ed, type: Blocks, state: initializing, event: initializing, recovery_coun"},{"event":"cmd_output","timestamp":1607098212,"output":"t: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:12.981 [info"},{"event":"cmd_output","timestamp":1607098212,"output":"] Block 0 of pipeline with id: ad6a27bb-db7b-4838-826e-1da6e6c54e11 scheduled in block service with"},{"event":"cmd_output","timestamp":1607098212,"output":" id: : \"66ac3348-e236-4de5-bdc4-6d6500e111ed\"\n\u001b[0m\u001b[22m\n16:10:12.984 [info] block_id: 66ac3348-e2"},{"event":"cmd_output","timestamp":1607098212,"output":"36-4de5-bdc4-6d6500e111ed, type: BlockRequests, event: persisted build and sub_ppl details for block"},{"event":"cmd_output","timestamp":1607098212,"output":"_request: 66ac3348-e236-4de5-bdc4-6d6500e111ed, origin: Elixir.Block.BlockRequests.Model.BlockReques"},{"event":"cmd_output","timestamp":1607098212,"output":"tsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:12.986 [info] ppl_id: ad6a27bb-db7b-4838-826e-1da"},{"event":"cmd_output","timestamp":1607098212,"output":"6e6c54e11, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: "},{"event":"cmd_output","timestamp":1607098212,"output":"0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.987 [info] block_i"},{"event":"cmd_output","timestamp":1607098212,"output":"d: 66ac3348-e236-4de5-bdc4-6d6500e111ed, type: Tasks, state: pending, event: created, recovery_count"},{"event":"cmd_output","timestamp":1607098212,"output":": 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:12"},{"event":"cmd_output","timestamp":1607098212,"output":".988 [info] ppl_id: 6d621a6a-b251-4df8-833c-890b56e41b2b, block_id: bb7b1055-4070-4b96-872a-79e9361"},{"event":"cmd_output","timestamp":1607098212,"output":"a80a9, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, recover"},{"event":"cmd_output","timestamp":1607098212,"output":"y_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.991 [info]"},{"event":"cmd_output","timestamp":1607098212,"output":" block_id: 66ac3348-e236-4de5-bdc4-6d6500e111ed, type: Blocks, state: running, event: exit_scheduli"},{"event":"cmd_output","timestamp":1607098213,"output":"ng, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:13"},{"event":"cmd_output","timestamp":1607098213,"output":".011 [info] ppl_id: 6d621a6a-b251-4df8-833c-890b56e41b2b, type: Ppls, state: done, result: passed, "},{"event":"cmd_output","timestamp":1607098213,"output":"event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \r"},{"event":"cmd_output","timestamp":1607098213,"output":"\n\u001b[0m\u001b[22m\n16:10:13.019 [info] block_id: 66ac3348-e236-4de5-bdc4-6d6500e111ed, type: Tasks, state:"},{"event":"cmd_output","timestamp":1607098213,"output":" running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change"},{"event":"cmd_output","timestamp":1607098213,"output":"/1(L90), \n\u001b[0m\u001b[22m\n16:10:13.071 [info] block_id: 9163706b-16eb-4f3d-a5d1-f0ca4c376a43, type: Tas"},{"event":"cmd_output","timestamp":1607098213,"output":"ks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state"},{"event":"cmd_output","timestamp":1607098213,"output":"_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:13.080 [info] block_id: 9163706b-16eb-4f3d-a5d1-f0ca4c376a43, ty"},{"event":"cmd_output","timestamp":1607098213,"output":"pe: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.l"},{"event":"cmd_output","timestamp":1607098213,"output":"og_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:13.089 [info] ppl_id: b3db881a-96cd-4172-b05f-dd75d21e74"},{"event":"cmd_output","timestamp":1607098213,"output":"db, block_id: 9163706b-16eb-4f3d-a5d1-f0ca4c376a43, type: PplBlocks, block_index: 0, state: done, re"},{"event":"cmd_output","timestamp":1607098213,"output":"sult: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_ch"},{"event":"cmd_output","timestamp":1607098213,"output":"ange/1(L90), \n\u001b[0m\u001b[22m\n16:10:13.097 [info] ppl_id: b3db881a-96cd-4172-b05f-dd75d21e74db, type: P"},{"event":"cmd_output","timestamp":1607098213,"output":"pls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.S"},{"event":"cmd_output","timestamp":1607098213,"output":"TM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:13.194 [info] block_id: e2af100f-d6f6-4073-b5d8"},{"event":"cmd_output","timestamp":1607098213,"output":"-7888f2ed28de, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098213,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:13.199 [info] block_id: e2af100f-d6f6-40"},{"event":"cmd_output","timestamp":1607098213,"output":"73-b5d8-7888f2ed28de, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098213,"output":"Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:13.208 [info] ppl_id: 6ed662cb-2"},{"event":"cmd_output","timestamp":1607098213,"output":"593-40e8-ba32-ff3981693ad2, block_id: e2af100f-d6f6-4073-b5d8-7888f2ed28de, type: PplBlocks, block_i"},{"event":"cmd_output","timestamp":1607098213,"output":"ndex: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loop"},{"event":"cmd_output","timestamp":1607098213,"output":"er.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:13.217 [info] ppl_id: 6ed662cb-2593-40e8-ba"},{"event":"cmd_output","timestamp":1607098213,"output":"32-ff3981693ad2, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098213,"output":" origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:13.305 [info] block_id:"},{"event":"cmd_output","timestamp":1607098213,"output":" 64162418-2a04-4863-8ed5-251d2a4f6f95, type: Tasks, state: done, event: exit_scheduling, recovery_co"},{"event":"cmd_output","timestamp":1607098213,"output":"unt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:13.312 [info] bl"},{"event":"cmd_output","timestamp":1607098213,"output":"ock_id: 64162418-2a04-4863-8ed5-251d2a4f6f95, type: Blocks, state: done, event: exit_scheduling, rec"},{"event":"cmd_output","timestamp":1607098213,"output":"overy_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:13.327 [i"},{"event":"cmd_output","timestamp":1607098213,"output":"nfo] ppl_id: 2483651c-19f5-4776-9786-44f6100dbdc1, block_id: 64162418-2a04-4863-8ed5-251d2a4f6f95, "},{"event":"cmd_output","timestamp":1607098213,"output":"type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count"},{"event":"cmd_output","timestamp":1607098213,"output":": 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:13.345 [info] ppl_i"},{"event":"cmd_output","timestamp":1607098213,"output":"d: 2483651c-19f5-4776-9786-44f6100dbdc1, type: Ppls, state: done, result: passed, event: exit_schedu"},{"event":"cmd_output","timestamp":1607098213,"output":"ling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:"},{"event":"cmd_output","timestamp":1607098213,"output":"13.415 [info] block_id: 6551f60c-4f3c-47d4-8c55-0e872b6100d5, type: Tasks, state: done, event: exit"},{"event":"cmd_output","timestamp":1607098213,"output":"_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098213,"output":"\n16:10:13.431 [info] block_id: 6551f60c-4f3c-47d4-8c55-0e872b6100d5, type: Blocks, state: done, eve"},{"event":"cmd_output","timestamp":1607098213,"output":"nt: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b["},{"event":"cmd_output","timestamp":1607098213,"output":"0m\u001b[22m\n16:10:13.445 [info] ppl_id: 3d6f1f89-3cd1-47de-892c-dffdcea48d92, block_id: 6551f60c-4f3c-"},{"event":"cmd_output","timestamp":1607098213,"output":"47d4-8c55-0e872b6100d5, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_sc"},{"event":"cmd_output","timestamp":1607098213,"output":"heduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098213,"output":":10:13.464 [info] ppl_id: 3d6f1f89-3cd1-47de-892c-dffdcea48d92, type: Ppls, state: done, result: pa"},{"event":"cmd_output","timestamp":1607098213,"output":"ssed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098213,"output":"90), \n\u001b[0m\u001b[22m\n16:10:13.527 [info] block_id: 6e8f066e-c405-4102-8dcb-ad61e19189a5, type: Tasks, "},{"event":"cmd_output","timestamp":1607098213,"output":"state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_cha"},{"event":"cmd_output","timestamp":1607098213,"output":"nge/1(L90), \n\u001b[0m\u001b[22m\n16:10:13.541 [info] block_id: 6e8f066e-c405-4102-8dcb-ad61e19189a5, type: "},{"event":"cmd_output","timestamp":1607098213,"output":"Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_s"},{"event":"cmd_output","timestamp":1607098213,"output":"tate_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:13.550 [info] ppl_id: b4243f3a-3b21-43bd-acc5-01a28e7e74c0, "},{"event":"cmd_output","timestamp":1607098213,"output":"block_id: 6e8f066e-c405-4102-8dcb-ad61e19189a5, type: PplBlocks, block_index: 0, state: done, result"},{"event":"cmd_output","timestamp":1607098213,"output":": passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change"},{"event":"cmd_output","timestamp":1607098213,"output":"/1(L90), \n\u001b[0m\u001b[22m\n16:10:13.588 [info] ppl_id: b4243f3a-3b21-43bd-acc5-01a28e7e74c0, type: Ppls,"},{"event":"cmd_output","timestamp":1607098213,"output":" state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.I"},{"event":"cmd_output","timestamp":1607098213,"output":"mpl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:13.640 [info] block_id: 7cde9aed-161c-4f47-b44d-fb8"},{"event":"cmd_output","timestamp":1607098213,"output":"b27ebb7ae, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loope"},{"event":"cmd_output","timestamp":1607098213,"output":"r.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:13.648 [info] block_id: 7cde9aed-161c-4f47-b"},{"event":"cmd_output","timestamp":1607098213,"output":"44d-fb8b27ebb7ae, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098213,"output":"ir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:13.662 [info] ppl_id: bed3964b-51e8-"},{"event":"cmd_output","timestamp":1607098213,"output":"4281-88d7-b3e5d9a27910, block_id: 7cde9aed-161c-4f47-b44d-fb8b27ebb7ae, type: PplBlocks, block_index"},{"event":"cmd_output","timestamp":1607098213,"output":": 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.S"},{"event":"cmd_output","timestamp":1607098213,"output":"TM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:13.682 [info] ppl_id: bed3964b-51e8-4281-88d7-b"},{"event":"cmd_output","timestamp":1607098213,"output":"3e5d9a27910, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098213,"output":"gin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:13.752 [info] block_id: 0da"},{"event":"cmd_output","timestamp":1607098213,"output":"d97ba-efbb-42eb-a004-b49657eabbcc, type: Tasks, state: done, event: exit_scheduling, recovery_count:"},{"event":"cmd_output","timestamp":1607098213,"output":" 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:13.760 [info] block_"},{"event":"cmd_output","timestamp":1607098213,"output":"id: 0dad97ba-efbb-42eb-a004-b49657eabbcc, type: Blocks, state: done, event: exit_scheduling, recover"},{"event":"cmd_output","timestamp":1607098213,"output":"y_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:13.772 [info]"},{"event":"cmd_output","timestamp":1607098213,"output":" ppl_id: 1f64866a-4595-426a-8815-3319a63fb026, block_id: 0dad97ba-efbb-42eb-a004-b49657eabbcc, type"},{"event":"cmd_output","timestamp":1607098213,"output":": PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098213,"output":" origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:13.791 [info] ppl_id: 1"},{"event":"cmd_output","timestamp":1607098213,"output":"f64866a-4595-426a-8815-3319a63fb026, type: Ppls, state: done, result: passed, event: exit_scheduling"},{"event":"cmd_output","timestamp":1607098213,"output":", recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:13.8"},{"event":"cmd_output","timestamp":1607098213,"output":"60 [info] block_id: a8aadc29-d11f-4b75-a468-337d81b61102, type: Tasks, state: done, event: exit_sch"},{"event":"cmd_output","timestamp":1607098213,"output":"eduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098213,"output":"10:13.866 [info] block_id: a8aadc29-d11f-4b75-a468-337d81b61102, type: Blocks, state: done, event: "},{"event":"cmd_output","timestamp":1607098213,"output":"exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098213,"output":"22m\n16:10:13.874 [info] ppl_id: c1b2009c-e56b-4a07-a901-2d7a7aa73213, block_id: a8aadc29-d11f-4b75"},{"event":"cmd_output","timestamp":1607098213,"output":"-a468-337d81b61102, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_schedu"},{"event":"cmd_output","timestamp":1607098213,"output":"ling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:"},{"event":"cmd_output","timestamp":1607098213,"output":"13.896 [info] ppl_id: c1b2009c-e56b-4a07-a901-2d7a7aa73213, type: Ppls, state: done, result: passed"},{"event":"cmd_output","timestamp":1607098213,"output":", event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90),"},{"event":"cmd_output","timestamp":1607098213,"output":" \n\u001b[0m\u001b[22m\n16:10:13.970 [info] block_id: 66ac3348-e236-4de5-bdc4-6d6500e111ed, type: Tasks, stat"},{"event":"cmd_output","timestamp":1607098213,"output":"e: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/"},{"event":"cmd_output","timestamp":1607098213,"output":"1(L90), \n\u001b[0m\u001b[22m\n16:10:13.977 [info] block_id: 66ac3348-e236-4de5-bdc4-6d6500e111ed, type: Bloc"},{"event":"cmd_output","timestamp":1607098213,"output":"ks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state"},{"event":"cmd_output","timestamp":1607098213,"output":"_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:13.991 [info] ppl_id: ad6a27bb-db7b-4838-826e-1da6e6c54e11, bloc"},{"event":"cmd_output","timestamp":1607098213,"output":"k_id: 66ac3348-e236-4de5-bdc4-6d6500e111ed, type: PplBlocks, block_index: 0, state: done, result: pa"},{"event":"cmd_output","timestamp":1607098213,"output":"ssed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098214,"output":"90), \n\u001b[0m\u001b[22m\n16:10:14.004 [info] ppl_id: ad6a27bb-db7b-4838-826e-1da6e6c54e11, type: Ppls, sta"},{"event":"cmd_output","timestamp":1607098214,"output":"te: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl."},{"event":"cmd_output","timestamp":1607098214,"output":"log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test gRPC list_grouped() - returns latest workflow per dist"},{"event":"cmd_output","timestamp":1607098214,"output":"inct label when given valid params (5691.8ms)\u001b[0m\n * test gRPC terminate() - suceeds when given va"},{"event":"cmd_output","timestamp":1607098214,"output":"lid params\u001b[22m\n16:10:14.260 [info] Request: 'run: %{\"branch_id\" => \"6f59f9c8-a70d-45b1-982e-3f258"},{"event":"cmd_output","timestamp":1607098214,"output":"3c0db62\", \"branch_name\" => \"e7e3f871-b8d5-46b3-9fba-f88b50def38d\", \"client_id\" => \"328c742132e5407ab"},{"event":"cmd_output","timestamp":1607098214,"output":"d7d\", \"commit_sha\" => \"efbd0ae9-56c9-4f09-b6fa-fb6fe73cb0de\", \"definition_file\" => \"\", \"hook_id\" => "},{"event":"cmd_output","timestamp":1607098214,"output":"\"80bd1b89-9cdc-4fd9-a172-056f6c660683\", \"label\" => \"\", \"organization_id\" => \"3e7960c6-6bfd-4474-97bd"},{"event":"cmd_output","timestamp":1607098214,"output":"-da16d4520000\", \"owner\" => \"20e6e89c-0efe-4933-9a5a-c57076aa5501\", \"project_id\" => \"b5adf06f-2f7b-4b"},{"event":"cmd_output","timestamp":1607098214,"output":"06-815f-5ed4d9e54e3a\", \"repo_name\" => \"10_schedule_extension\", \"request_token\" => \"295d4120-d310-480"},{"event":"cmd_output","timestamp":1607098214,"output":"1-ad6a-63afcc612c5f\", \"requester_id\" => \"abc0cbad-1c5b-441e-95bb-907414b6dfbe\", \"service\" => \"local\""},{"event":"cmd_output","timestamp":1607098214,"output":", \"snapshot_id\" => \"\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"triggered_by\" "},{"event":"cmd_output","timestamp":1607098214,"output":"=> \"hook\", \"wf_id\" => \"1266003a-7adc-4853-9f88-7c2b45e95b82\"}\n\u001b[0m\u001b[22m\n16:10:14.283 [info] ppl_i"},{"event":"cmd_output","timestamp":1607098214,"output":"d: a0e57883-cdba-4e6e-a6ee-266aa53a8690, type: PplRequests, event: persisted schedule request with r"},{"event":"cmd_output","timestamp":1607098214,"output":"equest_token: 295d4120-d310-4801-ad6a-63afcc612c5f, origin: Elixir.Ppl.PplRequests.Model.PplRequests"},{"event":"cmd_output","timestamp":1607098214,"output":"Queries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:14.287 [info] ppl_id: a0e57883-cdba-4e6e-a6ee-2"},{"event":"cmd_output","timestamp":1607098214,"output":"66aa53a8690, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098214,"output":".Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:14.292 [info] Project b5ad"},{"event":"cmd_output","timestamp":1607098214,"output":"f06f-2f7b-4b06-815f-5ed4d9e54e3a and branch e7e3f871-b8d5-46b3-9fba-f88b50def38dlatest_wf details up"},{"event":"cmd_output","timestamp":1607098214,"output":"dated: \"wf_id: 1266003a-7adc-4853-9f88-7c2b45e95b82, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:10:14.294 [info] "},{"event":"cmd_output","timestamp":1607098214,"output":"Persisted ppl_sub_init for pipeline with ppl_id: a0e57883-cdba-4e6e-a6ee-266aa53a8690: %Ppl.PplSubIn"},{"event":"cmd_output","timestamp":1607098214,"output":"its.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_i"},{"event":"cmd_output","timestamp":1607098214,"output":"d: nil, error_description: nil, id: 19, in_scheduling: false, init_type: \"regular\", inserted_at: ~N["},{"event":"cmd_output","timestamp":1607098214,"output":"2020-12-04 16:10:14.292593], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"a0e57883-cdba-4e6e-a6ee-266aa53a8690\", recovery_count: 0, result: ni"},{"event":"cmd_output","timestamp":1607098214,"output":"l, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, update"},{"event":"cmd_output","timestamp":1607098214,"output":"d_at: ~N[2020-12-04 16:10:14.292642]}\n\u001b[0m\u001b[22m\n16:10:14.312 [info] Request: 'run: %{\"auto_promot"},{"event":"cmd_output","timestamp":1607098214,"output":"ed\" => false, \"branch_id\" => \"6f59f9c8-a70d-45b1-982e-3f2583c0db62\", \"branch_name\" => \"e7e3f871-b8d5"},{"event":"cmd_output","timestamp":1607098214,"output":"-46b3-9fba-f88b50def38d\", \"client_id\" => \"328c742132e5407abd7d\", \"commit_sha\" => \"efbd0ae9-56c9-4f09"},{"event":"cmd_output","timestamp":1607098214,"output":"-b6fa-fb6fe73cb0de\", \"definition_file\" => \"\", \"env_vars\" => [], \"extension_of\" => \"a0e57883-cdba-4e6"},{"event":"cmd_output","timestamp":1607098214,"output":"e-a6ee-266aa53a8690\", \"file_name\" => \"../foo/bar/test.yml\", \"hook_id\" => \"80bd1b89-9cdc-4fd9-a172-05"},{"event":"cmd_output","timestamp":1607098214,"output":"6f6c660683\", \"label\" => \"\", \"organization_id\" => \"3e7960c6-6bfd-4474-97bd-da16d4520000\", \"owner\" => "},{"event":"cmd_output","timestamp":1607098214,"output":"\"20e6e89c-0efe-4933-9a5a-c57076aa5501\", \"prev_ppl_artefact_ids\" => [\"a0e57883-cdba-4e6e-a6ee-266aa53"},{"event":"cmd_output","timestamp":1607098214,"output":"a8690\"], \"project_id\" => \"b5adf06f-2f7b-4b06-815f-5ed4d9e54e3a\", \"promoter_id\" => \"\", \"repo_name\" =>"},{"event":"cmd_output","timestamp":1607098214,"output":" \"10_schedule_extension\", \"request_token\" => \"28d7aa43-b89d-4ddb-818a-07c1443aeb23\", \"requester_id\" "},{"event":"cmd_output","timestamp":1607098214,"output":"=> \"abc0cbad-1c5b-441e-95bb-907414b6dfbe\", \"service\" => \"local\", \"snapshot_id\" => \"\", \"suppressed_at"},{"event":"cmd_output","timestamp":1607098214,"output":"tributes\" => [\"access_token\", \"client_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"1266003a-7adc-"},{"event":"cmd_output","timestamp":1607098214,"output":"4853-9f88-7c2b45e95b82\", \"wf_number\" => 1, \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:10:14.315 ["},{"event":"cmd_output","timestamp":1607098214,"output":"info] ppl_id: 6c375d9f-73a2-4996-9770-351282ca050e, type: PplRequests, event: persisted schedule re"},{"event":"cmd_output","timestamp":1607098214,"output":"quest with request_token: 28d7aa43-b89d-4ddb-818a-07c1443aeb23, origin: Elixir.Ppl.PplRequests.Model"},{"event":"cmd_output","timestamp":1607098214,"output":".PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:14.318 [info] ppl_id: 6c375d9f-73a2"},{"event":"cmd_output","timestamp":1607098214,"output":"-4996-9770-351282ca050e, type: Ppls, state: initializing, event: initializing, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098214,"output":"igin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:14.321 [info] "},{"event":"cmd_output","timestamp":1607098214,"output":"Persisted ppl_sub_init for pipeline with ppl_id: 6c375d9f-73a2-4996-9770-351282ca050e: %Ppl.PplSubIn"},{"event":"cmd_output","timestamp":1607098214,"output":"its.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_i"},{"event":"cmd_output","timestamp":1607098214,"output":"d: nil, error_description: nil, id: 20, in_scheduling: false, init_type: \"regular\", inserted_at: ~N["},{"event":"cmd_output","timestamp":1607098214,"output":"2020-12-04 16:10:14.320316], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"6c375d9f-73a2-4996-9770-351282ca050e\", recovery_count: 0, result: ni"},{"event":"cmd_output","timestamp":1607098214,"output":"l, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, update"},{"event":"cmd_output","timestamp":1607098214,"output":"d_at: ~N[2020-12-04 16:10:14.320326]}\n\u001b[0m\u001b[22m\n16:10:14.333 [info] Periodic from module Elixir.P"},{"event":"cmd_output","timestamp":1607098214,"output":"pl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: perio"},{"event":"cmd_output","timestamp":1607098214,"output":"d: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurri"},{"event":"cmd_output","timestamp":1607098214,"output":"ng args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: "},{"event":"cmd_output","timestamp":1607098214,"output":"Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Pp"},{"event":"cmd_output","timestamp":1607098214,"output":"ls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :u"},{"event":"cmd_output","timestamp":1607098214,"output":"pdated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor:"},{"event":"cmd_output","timestamp":1607098214,"output":" :skip}\n\u001b[0m\u001b[22m\n16:10:14.335 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingStat"},{"event":"cmd_output","timestamp":1607098214,"output":"e with name Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-w"},{"event":"cmd_output","timestamp":1607098214,"output":"ake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"pending\", \"queui"},{"event":"cmd_output","timestamp":1607098214,"output":"ng\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"p"},{"event":"cmd_output","timestamp":1607098214,"output":"ending\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl."},{"event":"cmd_output","timestamp":1607098214,"output":"EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_i"},{"event":"cmd_output","timestamp":1607098214,"output":"d], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:10:14.336 [info"},{"event":"cmd_output","timestamp":1607098214,"output":"] Periodic from module Elixir.Ppl.Ppls.STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandler"},{"event":"cmd_output","timestamp":1607098214,"output":".QueuingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Queuing"},{"event":"cmd_output","timestamp":1607098214,"output":"State\"]}, recurring args: %{allowed_states: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, in"},{"event":"cmd_output","timestamp":1607098214,"output":"itial_query: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", publisher_cb: #Function<0.125102843/1 i"},{"event":"cmd_output","timestamp":1607098214,"output":"n Ppl.Ppls.STMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request,"},{"event":"cmd_output","timestamp":1607098214,"output":" :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervis"},{"event":"cmd_output","timestamp":1607098214,"output":"or: :skip}\n\u001b[0m\u001b[22m\n16:10:14.337 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.C"},{"event":"cmd_output","timestamp":1607098214,"output":"reatedState with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 100 ms, metric_name:"},{"event":"cmd_output","timestamp":1607098214,"output":" {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args: %{allowed_st"},{"event":"cmd_output","timestamp":1607098214,"output":"ates: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, o"},{"event":"cmd_output","timestamp":1607098214,"output":"bserved_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_reque"},{"event":"cmd_output","timestamp":1607098214,"output":"st, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubIni"},{"event":"cmd_output","timestamp":1607098214,"output":"ts, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:14.338 [info] Periodic from module Elixir.Ppl.PplSubI"},{"event":"cmd_output","timestamp":1607098214,"output":"nits.STMHandler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler.FetchingState :: period: 1"},{"event":"cmd_output","timestamp":1607098214,"output":"00 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurrin"},{"event":"cmd_output","timestamp":1607098214,"output":"g args: %{allowed_states: [\"regular_init\", \"compilation\", \"done\"], cooling_time_sec: -2, initial_que"},{"event":"cmd_output","timestamp":1607098214,"output":"ry: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fetching\", publisher_cb: :skip, repo: Ppl.Ec"},{"event":"cmd_output","timestamp":1607098214,"output":"toRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id]"},{"event":"cmd_output","timestamp":1607098214,"output":", schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:14.339 [info]"},{"event":"cmd_output","timestamp":1607098214,"output":" Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CompilationState with name Elixir.Ppl.PplSu"},{"event":"cmd_output","timestamp":1607098214,"output":"bInits.STMHandler.CompilationState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Pp"},{"event":"cmd_output","timestamp":1607098214,"output":"lSubInits-STMHandler-CompilationState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compil"},{"event":"cmd_output","timestamp":1607098214,"output":"ation\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits,"},{"event":"cmd_output","timestamp":1607098214,"output":" observed_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate"},{"event":"cmd_output","timestamp":1607098214,"output":"_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.Ppl"},{"event":"cmd_output","timestamp":1607098214,"output":"SubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:14.340 [info] Periodic from module Elixir.Ppl.P"},{"event":"cmd_output","timestamp":1607098214,"output":"plSubInits.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState "},{"event":"cmd_output","timestamp":1607098214,"output":":: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitSta"},{"event":"cmd_output","timestamp":1607098214,"output":"te\"]}, recurring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubIni"},{"event":"cmd_output","timestamp":1607098214,"output":"ts.Model.PplSubInits, observed_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, retur"},{"event":"cmd_output","timestamp":1607098214,"output":"ning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl"},{"event":"cmd_output","timestamp":1607098214,"output":".PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:14.449 [info] ppl_id: a0e"},{"event":"cmd_output","timestamp":1607098214,"output":"57883-cdba-4e6e-a6ee-266aa53a8690, type: PplRequests, event: persisted source_args for pipeline: a0e"},{"event":"cmd_output","timestamp":1607098214,"output":"57883-cdba-4e6e-a6ee-266aa53a8690, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_so"},{"event":"cmd_output","timestamp":1607098214,"output":"urce/2(L89), \n\u001b[0m\u001b[22m\n16:10:14.459 [info] ppl_id: a0e57883-cdba-4e6e-a6ee-266aa53a8690, type: P"},{"event":"cmd_output","timestamp":1607098214,"output":"plSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Im"},{"event":"cmd_output","timestamp":1607098214,"output":"pl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:14.483 [info] ppl_id: a0e57883-cdba-4e6e-a6ee-266aa5"},{"event":"cmd_output","timestamp":1607098214,"output":"3a8690, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: E"},{"event":"cmd_output","timestamp":1607098214,"output":"lixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:14.514 [info] ppl_id: a0e57883-cd"},{"event":"cmd_output","timestamp":1607098214,"output":"ba-4e6e-a6ee-266aa53a8690, type: PplRequests, event: persisted definition for request with request_t"},{"event":"cmd_output","timestamp":1607098214,"output":"oken: 295d4120-d310-4801-ad6a-63afcc612c5f, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries."},{"event":"cmd_output","timestamp":1607098214,"output":"insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:14.523 [info] Queue persisted: {:ok, %Ppl.Queues.Model"},{"event":"cmd_output","timestamp":1607098214,"output":".Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:10:14.5218"},{"event":"cmd_output","timestamp":1607098214,"output":"22], name: \"-.semaphore/semaphore.yml\", organization_id: \"3e7960c6-6bfd-4474-97bd-da16d4520000\", pro"},{"event":"cmd_output","timestamp":1607098214,"output":"ject_id: \"b5adf06f-2f7b-4b06-815f-5ed4d9e54e3a\", queue_id: \"9d007eb2-f6bd-467c-b6b8-4281890480c1\", s"},{"event":"cmd_output","timestamp":1607098214,"output":"cope: \"project\", updated_at: ~N[2020-12-04 16:10:14.521834], user_generated: false}}\n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098214,"output":"10:14.545 [info] ppl_id: not_available, event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.R"},{"event":"cmd_output","timestamp":1607098214,"output":"egularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:14.545 [info] event: created, origin: Elixir.Pp"},{"event":"cmd_output","timestamp":1607098214,"output":"l.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:14.545 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098214,"output":" a0e57883-cdba-4e6e-a6ee-266aa53a8690, type: PplBlocks, block_index: 0, state: initializing, event: "},{"event":"cmd_output","timestamp":1607098214,"output":"created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L10"},{"event":"cmd_output","timestamp":1607098214,"output":"5), \n\u001b[0m\u001b[22m\n16:10:14.545 [info] ppl_id: a0e57883-cdba-4e6e-a6ee-266aa53a8690, type: PplBlocks,"},{"event":"cmd_output","timestamp":1607098214,"output":" block_index: 1, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubIn"},{"event":"cmd_output","timestamp":1607098214,"output":"its.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:14.552 [info] ppl_id: a0e57883-"},{"event":"cmd_output","timestamp":1607098214,"output":"cdba-4e6e-a6ee-266aa53a8690, type: PplSubInits, state: done, result: passed, event: exit_scheduling,"},{"event":"cmd_output","timestamp":1607098214,"output":" recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:14.56"},{"event":"cmd_output","timestamp":1607098214,"output":"8 [info] ppl_id: 6c375d9f-73a2-4996-9770-351282ca050e, type: PplRequests, event: persisted source_a"},{"event":"cmd_output","timestamp":1607098214,"output":"rgs for pipeline: 6c375d9f-73a2-4996-9770-351282ca050e, origin: Elixir.Ppl.PplRequests.Model.PplRequ"},{"event":"cmd_output","timestamp":1607098214,"output":"estsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:14.570 [info] ppl_id: a0e57883-cdba-4e6e-a6ee-"},{"event":"cmd_output","timestamp":1607098214,"output":"266aa53a8690, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098214,"output":"Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:14.571 [info] ppl_id: 6c375d9f-73a2-499"},{"event":"cmd_output","timestamp":1607098214,"output":"6-9770-351282ca050e, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098214,"output":"origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:14.591 [info] ppl_id: a0"},{"event":"cmd_output","timestamp":1607098214,"output":"e57883-cdba-4e6e-a6ee-266aa53a8690, type: Ppls, state: queuing, event: exit_scheduling, recovery_cou"},{"event":"cmd_output","timestamp":1607098214,"output":"nt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:14.603 [info] ppl"},{"event":"cmd_output","timestamp":1607098214,"output":"_id: a0e57883-cdba-4e6e-a6ee-266aa53a8690, type: Ppls, state: running, event: exit_scheduling, recov"},{"event":"cmd_output","timestamp":1607098214,"output":"ery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:14.615 [inf"},{"event":"cmd_output","timestamp":1607098214,"output":"o] ppl_id: 6c375d9f-73a2-4996-9770-351282ca050e, type: PplSubInits, state: regular_init, event: exi"},{"event":"cmd_output","timestamp":1607098214,"output":"t_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098214,"output":"\n16:10:14.652 [info] ppl_id: 6c375d9f-73a2-4996-9770-351282ca050e, type: PplRequests, event: persi"},{"event":"cmd_output","timestamp":1607098214,"output":"sted definition for request with request_token: 28d7aa43-b89d-4ddb-818a-07c1443aeb23, origin: Elixir"},{"event":"cmd_output","timestamp":1607098214,"output":".Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:14.660 [info]"},{"event":"cmd_output","timestamp":1607098214,"output":" Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">"},{"event":"cmd_output","timestamp":1607098214,"output":", inserted_at: ~N[2020-12-04 16:10:14.658569], name: \"-foo/bar/test.yml\", organization_id: \"3e7960c6"},{"event":"cmd_output","timestamp":1607098214,"output":"-6bfd-4474-97bd-da16d4520000\", project_id: \"b5adf06f-2f7b-4b06-815f-5ed4d9e54e3a\", queue_id: \"7cdc17"},{"event":"cmd_output","timestamp":1607098214,"output":"ad-b41f-4a46-9d2e-6c45408f3839\", scope: \"project\", updated_at: ~N[2020-12-04 16:10:14.658581], user_"},{"event":"cmd_output","timestamp":1607098214,"output":"generated: false}}\n\u001b[0m\u001b[22m\n16:10:14.668 [info] ppl_id: not_available, event: created, origin: E"},{"event":"cmd_output","timestamp":1607098214,"output":"lixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:14.668 [info] "},{"event":"cmd_output","timestamp":1607098214,"output":" event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098214,"output":"[22m\n16:10:14.668 [info] ppl_id: 6c375d9f-73a2-4996-9770-351282ca050e, type: PplBlocks, block_inde"},{"event":"cmd_output","timestamp":1607098214,"output":"x: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHand"},{"event":"cmd_output","timestamp":1607098214,"output":"ler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:14.668 [info] ppl_id: 6c375d9f-73a2-4996-9"},{"event":"cmd_output","timestamp":1607098214,"output":"770-351282ca050e, type: PplBlocks, block_index: 1, state: initializing, event: created, recovery_cou"},{"event":"cmd_output","timestamp":1607098214,"output":"nt: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098214,"output":"0:14.671 [info] ppl_id: 6c375d9f-73a2-4996-9770-351282ca050e, type: PplSubInits, state: done, resul"},{"event":"cmd_output","timestamp":1607098214,"output":"t: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chang"},{"event":"cmd_output","timestamp":1607098214,"output":"e/1(L90), \n\u001b[0m\u001b[22m\n16:10:14.685 [info] ppl_id: 6c375d9f-73a2-4996-9770-351282ca050e, type: Ppls"},{"event":"cmd_output","timestamp":1607098214,"output":", state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_stat"},{"event":"cmd_output","timestamp":1607098214,"output":"e_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:14.697 [info] ppl_id: 6c375d9f-73a2-4996-9770-351282ca050e, typ"},{"event":"cmd_output","timestamp":1607098214,"output":"e: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.l"},{"event":"cmd_output","timestamp":1607098214,"output":"og_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:14.712 [info] ppl_id: 6c375d9f-73a2-4996-9770-351282ca05"},{"event":"cmd_output","timestamp":1607098214,"output":"0e, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM"},{"event":"cmd_output","timestamp":1607098214,"output":".Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:14.772 [info] Periodic from module Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098214,"output":"s.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHandler.RunningState :: period: 100 ms, metri"},{"event":"cmd_output","timestamp":1607098214,"output":"c_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring args: %{allowed_st"},{"event":"cmd_output","timestamp":1607098214,"output":"ates: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, obs"},{"event":"cmd_output","timestamp":1607098214,"output":"erved_state: \"running\", publisher_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler.RunningState.arg"},{"event":"cmd_output","timestamp":1607098214,"output":"s/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recove"},{"event":"cmd_output","timestamp":1607098214,"output":"ry_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098214,"output":":10:14.773 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.StoppingState with name Elixir.Pp"},{"event":"cmd_output","timestamp":1607098214,"output":"l.Ppls.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-"},{"event":"cmd_output","timestamp":1607098214,"output":"STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_se"},{"event":"cmd_output","timestamp":1607098214,"output":"c: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"stopping\", publisher_cb: #Function<0.718"},{"event":"cmd_output","timestamp":1607098214,"output":"03493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminat"},{"event":"cmd_output","timestamp":1607098214,"output":"e_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, tas"},{"event":"cmd_output","timestamp":1607098214,"output":"k_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:14.775 [info] Periodic from module Elixir.Ppl.PplBlocks.STMH"},{"event":"cmd_output","timestamp":1607098214,"output":"andler.InitializingState with name Elixir.Ppl.PplBlocks.STMHandler.InitializingState :: period: 100 "},{"event":"cmd_output","timestamp":1607098214,"output":"ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-InitializingState\"]}, recurring"},{"event":"cmd_output","timestamp":1607098214,"output":" args: %{allowed_states: [\"initializing\", \"waiting\", \"done\"], cooling_time_sec: 0, initial_query: Pp"},{"event":"cmd_output","timestamp":1607098214,"output":"l.PplBlocks.Model.PplBlocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo"},{"event":"cmd_output","timestamp":1607098214,"output":", returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :bloc"},{"event":"cmd_output","timestamp":1607098214,"output":"k_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:14.776 [i"},{"event":"cmd_output","timestamp":1607098214,"output":"nfo] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.WaitingState with name Elixir.Ppl.PplBloc"},{"event":"cmd_output","timestamp":1607098214,"output":"ks.STMHandler.WaitingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks"},{"event":"cmd_output","timestamp":1607098214,"output":"-STMHandler-WaitingState\"]}, recurring args: %{allowed_states: [\"waiting\", \"running\", \"done\"], cooli"},{"event":"cmd_output","timestamp":1607098214,"output":"ng_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"waiting\", publisher_c"},{"event":"cmd_output","timestamp":1607098214,"output":"b: #Function<0.8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, retur"},{"event":"cmd_output","timestamp":1607098214,"output":"ning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index"},{"event":"cmd_output","timestamp":1607098214,"output":"], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:14.929 [info] p"},{"event":"cmd_output","timestamp":1607098214,"output":"pl_id: a0e57883-cdba-4e6e-a6ee-266aa53a8690, type: PplBlocks, block_index: 0, state: waiting, event:"},{"event":"cmd_output","timestamp":1607098214,"output":" exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098214,"output":"[22m\n16:10:14.933 [info] ppl_id: a0e57883-cdba-4e6e-a6ee-266aa53a8690, type: Ppls, state: stopping"},{"event":"cmd_output","timestamp":1607098214,"output":", event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90),"},{"event":"cmd_output","timestamp":1607098214,"output":" \n\u001b[0m\u001b[22m\n16:10:14.944 [info] ppl_id: a0e57883-cdba-4e6e-a6ee-266aa53a8690, type: PplBlocks, bl"},{"event":"cmd_output","timestamp":1607098214,"output":"ock_index: 0, state: done, result: canceled, event: exit_scheduling, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098214,"output":"ir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:14.951 [info] ppl_id: a0e57883-cdba-"},{"event":"cmd_output","timestamp":1607098214,"output":"4e6e-a6ee-266aa53a8690, type: PplBlocks, block_index: 1, state: done, result: canceled, event: exit_"},{"event":"cmd_output","timestamp":1607098214,"output":"scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098214,"output":"16:10:14.965 [info] ppl_id: a0e57883-cdba-4e6e-a6ee-266aa53a8690, type: Ppls, state: done, result: "},{"event":"cmd_output","timestamp":1607098214,"output":"stopped, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/"},{"event":"cmd_output","timestamp":1607098215,"output":"1(L90), \n\u001b[0m\u001b[22m\n16:10:15.036 [info] ppl_id: 6c375d9f-73a2-4996-9770-351282ca050e, type: PplBlo"},{"event":"cmd_output","timestamp":1607098215,"output":"cks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loope"},{"event":"cmd_output","timestamp":1607098215,"output":"r.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:15.052 [info] ppl_id: 6c375d9f-73a2-4996-977"},{"event":"cmd_output","timestamp":1607098215,"output":"0-351282ca050e, type: Ppls, state: stopping, event: exit_scheduling, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098215,"output":"ir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:15.065 [info] ppl_id: 6c375d9f-73a2-"},{"event":"cmd_output","timestamp":1607098215,"output":"4996-9770-351282ca050e, type: PplBlocks, block_index: 0, state: done, result: canceled, event: exit_"},{"event":"cmd_output","timestamp":1607098215,"output":"scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098215,"output":"16:10:15.084 [info] ppl_id: 6c375d9f-73a2-4996-9770-351282ca050e, type: PplBlocks, block_index: 1, "},{"event":"cmd_output","timestamp":1607098215,"output":"state: done, result: canceled, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM."},{"event":"cmd_output","timestamp":1607098215,"output":"Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:15.100 [info] ppl_id: 6c375d9f-73a2-4996-9770-3512"},{"event":"cmd_output","timestamp":1607098215,"output":"82ca050e, type: Ppls, state: done, result: stopped, event: exit_scheduling, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098215,"output":"n: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:15.210 [info] Request: 'parti"},{"event":"cmd_output","timestamp":1607098215,"output":"al_rebuild', request: %{ppl_id: \"a0e57883-cdba-4e6e-a6ee-266aa53a8690\", request_token: \"af6de0c0-3c7"},{"event":"cmd_output","timestamp":1607098215,"output":"7-4c9c-b035-f1b51046c489\", user_id: \"\"}\n\u001b[0m\u001b[22m\n16:10:15.214 [info] ppl_id: 2498e2c9-1b09-4a26-"},{"event":"cmd_output","timestamp":1607098215,"output":"a00a-0ca19c41a8c0, type: PplRequests, event: persisted schedule request with request_token: af6de0c0"},{"event":"cmd_output","timestamp":1607098215,"output":"-3c77-4c9c-b035-f1b51046c489, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_respon"},{"event":"cmd_output","timestamp":1607098215,"output":"se/2(L55), \n\u001b[0m\u001b[22m\n16:10:15.216 [info] ppl_id: 2498e2c9-1b09-4a26-a00a-0ca19c41a8c0, type: Ppl"},{"event":"cmd_output","timestamp":1607098215,"output":"s, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQu"},{"event":"cmd_output","timestamp":1607098215,"output":"eries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:15.223 [info] Persisted ppl_sub_init for pipelin"},{"event":"cmd_output","timestamp":1607098215,"output":"e with ppl_id: 2498e2c9-1b09-4a26-a00a-0ca19c41a8c0: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #E"},{"event":"cmd_output","timestamp":1607098215,"output":"cto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id"},{"event":"cmd_output","timestamp":1607098215,"output":": 21, in_scheduling: false, init_type: \"rebuild\", inserted_at: ~N[2020-12-04 16:10:15.222029], pipel"},{"event":"cmd_output","timestamp":1607098215,"output":"ine_requests: #Ecto.Association.NotLoaded, ppl_id: \"24"},{"event":"cmd_output","timestamp":1607098215,"output":"98e2c9-1b09-4a26-a00a-0ca19c41a8c0\", recovery_count: 0, result: nil, result_reason: nil, state: \"cre"},{"event":"cmd_output","timestamp":1607098215,"output":"ated\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:15.22204"},{"event":"cmd_output","timestamp":1607098215,"output":"3]}\n\u001b[0m\u001b[22m\n16:10:15.258 [info] Request: 'schedule with definition: %{\"auto_promoted\" => false,"},{"event":"cmd_output","timestamp":1607098215,"output":" \"branch_id\" => \"6f59f9c8-a70d-45b1-982e-3f2583c0db62\", \"branch_name\" => \"e7e3f871-b8d5-46b3-9fba-f8"},{"event":"cmd_output","timestamp":1607098215,"output":"8b50def38d\", \"client_id\" => \"328c742132e5407abd7d\", \"commit_sha\" => \"efbd0ae9-56c9-4f09-b6fa-fb6fe73"},{"event":"cmd_output","timestamp":1607098215,"output":"cb0de\", \"definition_file\" => \"\", \"env_vars\" => [], \"extension_of\" => \"a0e57883-cdba-4e6e-a6ee-266aa5"},{"event":"cmd_output","timestamp":1607098215,"output":"3a8690\", \"file_name\" => \"test.yml\", \"hook_id\" => \"80bd1b89-9cdc-4fd9-a172-056f6c660683\", \"label\" => "},{"event":"cmd_output","timestamp":1607098215,"output":"\"\", \"organization_id\" => \"3e7960c6-6bfd-4474-97bd-da16d4520000\", \"owner\" => \"20e6e89c-0efe-4933-9a5a"},{"event":"cmd_output","timestamp":1607098215,"output":"-c57076aa5501\", \"project_id\" => \"b5adf06f-2f7b-4b06-815f-5ed4d9e54e3a\", \"promoter_id\" => \"\", \"repo_n"},{"event":"cmd_output","timestamp":1607098215,"output":"ame\" => \"10_schedule_extension\", \"request_token\" => \"b42f0cd8-aa8b-4bfb-8a6f-58c87f784559\", \"request"},{"event":"cmd_output","timestamp":1607098215,"output":"er_id\" => \"abc0cbad-1c5b-441e-95bb-907414b6dfbe\", \"service\" => \"local\", \"snapshot_id\" => \"\", \"suppre"},{"event":"cmd_output","timestamp":1607098215,"output":"ssed_attributes\" => [\"access_token\", \"client_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"1266003"},{"event":"cmd_output","timestamp":1607098215,"output":"a-7adc-4853-9f88-7c2b45e95b82\", \"wf_number\" => 1, \"working_dir\" => \"foo/bar\"}\n\u001b[0m\u001b[22m\n16:10:15.2"},{"event":"cmd_output","timestamp":1607098215,"output":"61 [info] ppl_id: 51569548-46c8-443d-bb23-a081fcb556f5, type: PplRequests, event: persisted schedul"},{"event":"cmd_output","timestamp":1607098215,"output":"e request with request_token: b42f0cd8-aa8b-4bfb-8a6f-58c87f784559, origin: Elixir.Ppl.PplRequests.M"},{"event":"cmd_output","timestamp":1607098215,"output":"odel.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:15.263 [info] ppl_id: 51569548-"},{"event":"cmd_output","timestamp":1607098215,"output":"46c8-443d-bb23-a081fcb556f5, type: Ppls, state: initializing, event: initializing, recovery_count: 0"},{"event":"cmd_output","timestamp":1607098215,"output":", origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:15.267 [inf"},{"event":"cmd_output","timestamp":1607098215,"output":"o] Persisted ppl_sub_init for pipeline with ppl_id: 51569548-46c8-443d-bb23-a081fcb556f5: %Ppl.PplS"},{"event":"cmd_output","timestamp":1607098215,"output":"ubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_ta"},{"event":"cmd_output","timestamp":1607098215,"output":"sk_id: nil, error_description: nil, id: 22, in_scheduling: false, init_type: \"regular\", inserted_at:"},{"event":"cmd_output","timestamp":1607098215,"output":" ~N[2020-12-04 16:10:15.266049], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"51569548-46c8-443d-bb23-a081fcb556f5\", recovery_count: 0, result"},{"event":"cmd_output","timestamp":1607098215,"output":": nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, up"},{"event":"cmd_output","timestamp":1607098215,"output":"dated_at: ~N[2020-12-04 16:10:15.266062]}\n\u001b[0m\u001b[22m\n16:10:15.272 [info] ppl_id: 51569548-46c8-443"},{"event":"cmd_output","timestamp":1607098215,"output":"d-bb23-a081fcb556f5, type: PplRequests, event: persisted definition for request with request_token: "},{"event":"cmd_output","timestamp":1607098215,"output":"b42f0cd8-aa8b-4bfb-8a6f-58c87f784559, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert"},{"event":"cmd_output","timestamp":1607098215,"output":"_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:15.281 [info] Periodic from module Elixir.Ppl.Ppls.STMHandle"},{"event":"cmd_output","timestamp":1607098215,"output":"r.InitializingState with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms, metric"},{"event":"cmd_output","timestamp":1607098215,"output":"_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %{allowe"},{"event":"cmd_output","timestamp":1607098215,"output":"d_states: [\"initializing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Pp"},{"event":"cmd_output","timestamp":1607098215,"output":"ls, observed_state: \"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.Ini"},{"event":"cmd_output","timestamp":1607098215,"output":"tializingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state"},{"event":"cmd_output","timestamp":1607098215,"output":", :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098215,"output":"m\n16:10:15.282 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingState with name Elixi"},{"event":"cmd_output","timestamp":1607098215,"output":"r.Ppl.Ppls.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Pp"},{"event":"cmd_output","timestamp":1607098215,"output":"ls-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"pending\", \"queuing\", \"running\", \""},{"event":"cmd_output","timestamp":1607098215,"output":"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publishe"},{"event":"cmd_output","timestamp":1607098215,"output":"r_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, returni"},{"event":"cmd_output","timestamp":1607098215,"output":"ng: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.P"},{"event":"cmd_output","timestamp":1607098215,"output":"pls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:10:15.282 [info] Periodic from "},{"event":"cmd_output","timestamp":1607098215,"output":"module Elixir.Ppl.Ppls.STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandler.QueuingState :: "},{"event":"cmd_output","timestamp":1607098215,"output":"period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurri"},{"event":"cmd_output","timestamp":1607098215,"output":"ng args: %{allowed_states: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, initial_query: Ppl."},{"event":"cmd_output","timestamp":1607098215,"output":"Ppls.Model.Ppls, observed_state: \"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHan"},{"event":"cmd_output","timestamp":1607098215,"output":"dler.QueuingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :st"},{"event":"cmd_output","timestamp":1607098215,"output":"ate, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098215,"output":"[22m\n16:10:15.282 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedState with "},{"event":"cmd_output","timestamp":1607098215,"output":"name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.beholder-w"},{"event":"cmd_output","timestamp":1607098215,"output":"ake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args: %{allowed_states: [\"fetching\""},{"event":"cmd_output","timestamp":1607098215,"output":", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"c"},{"event":"cmd_output","timestamp":1607098215,"output":"reated\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, "},{"event":"cmd_output","timestamp":1607098215,"output":":state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervis"},{"event":"cmd_output","timestamp":1607098215,"output":"or: :skip}\n\u001b[0m\u001b[22m\n16:10:15.283 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.F"},{"event":"cmd_output","timestamp":1607098215,"output":"etchingState with name Elixir.Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 ms, metric_nam"},{"event":"cmd_output","timestamp":1607098215,"output":"e: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %{allowed"},{"event":"cmd_output","timestamp":1607098215,"output":"_states: [\"regular_init\", \"compilation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubIni"},{"event":"cmd_output","timestamp":1607098215,"output":"ts.Model.PplSubInits, observed_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning"},{"event":"cmd_output","timestamp":1607098215,"output":": [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098215,"output":"SubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:15.283 [info] Periodic from m"},{"event":"cmd_output","timestamp":1607098215,"output":"odule Elixir.Ppl.PplSubInits.STMHandler.CompilationState with name Elixir.Ppl.PplSubInits.STMHandler"},{"event":"cmd_output","timestamp":1607098215,"output":".CompilationState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHand"},{"event":"cmd_output","timestamp":1607098215,"output":"ler-CompilationState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"stopping"},{"event":"cmd_output","timestamp":1607098215,"output":"\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: "},{"event":"cmd_output","timestamp":1607098215,"output":"\"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :update"},{"event":"cmd_output","timestamp":1607098215,"output":"d_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_su"},{"event":"cmd_output","timestamp":1607098215,"output":"pervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:15.283 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHan"},{"event":"cmd_output","timestamp":1607098215,"output":"dler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period: 100 ms"},{"event":"cmd_output","timestamp":1607098215,"output":", metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurring "},{"event":"cmd_output","timestamp":1607098215,"output":"args: %{allowed_states: [\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubIn"},{"event":"cmd_output","timestamp":1607098215,"output":"its, observed_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :term"},{"event":"cmd_output","timestamp":1607098215,"output":"inate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Mode"},{"event":"cmd_output","timestamp":1607098215,"output":"l.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:15.398 [info] ppl_id: 2498e2c9-1b09-4a26-a"},{"event":"cmd_output","timestamp":1607098215,"output":"00a-0ca19c41a8c0, type: PplRequests, event: persisted source_args for pipeline: 2498e2c9-1b09-4a26-a"},{"event":"cmd_output","timestamp":1607098215,"output":"00a-0ca19c41a8c0, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b["},{"event":"cmd_output","timestamp":1607098215,"output":"0m\u001b[22m\n16:10:15.402 [info] ppl_id: 2498e2c9-1b09-4a26-a00a-0ca19c41a8c0, type: PplSubInits, state"},{"event":"cmd_output","timestamp":1607098215,"output":": fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chan"},{"event":"cmd_output","timestamp":1607098215,"output":"ge/1(L90), \n\u001b[0m\u001b[22m\n16:10:15.457 [info] ppl_id: 2498e2c9-1b09-4a26-a00a-0ca19c41a8c0, type: Ppl"},{"event":"cmd_output","timestamp":1607098215,"output":"SubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM."},{"event":"cmd_output","timestamp":1607098215,"output":"Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:15.498 [info] ppl_id: 2498e2c9-1b09-4a26-a00a-0ca1"},{"event":"cmd_output","timestamp":1607098215,"output":"9c41a8c0, type: PplRequests, event: persisted definition for request with request_token: af6de0c0-3c"},{"event":"cmd_output","timestamp":1607098215,"output":"77-4c9c-b035-f1b51046c489, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition"},{"event":"cmd_output","timestamp":1607098215,"output":"/3(L76), \n\u001b[0m\u001b[22m\n16:10:15.518 [info] ppl_id: not_available, event: created, origin: Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098215,"output":".PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:15.518 [info] event: c"},{"event":"cmd_output","timestamp":1607098215,"output":"reated, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098215,"output":"10:15.518 [info] ppl_id: 2498e2c9-1b09-4a26-a00a-0ca19c41a8c0, type: PplBlocks, block_index: 0, sta"},{"event":"cmd_output","timestamp":1607098215,"output":"te: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.Regul"},{"event":"cmd_output","timestamp":1607098215,"output":"arInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:15.518 [info] ppl_id: 2498e2c9-1b09-4a26-a00a-0ca19"},{"event":"cmd_output","timestamp":1607098215,"output":"c41a8c0, type: PplBlocks, block_index: 1, state: initializing, event: created, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098215,"output":"igin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:15.519 "},{"event":"cmd_output","timestamp":1607098215,"output":"[info] ppl_id: 51569548-46c8-443d-bb23-a081fcb556f5, type: PplRequests, event: persisted source_arg"},{"event":"cmd_output","timestamp":1607098215,"output":"s for pipeline: 51569548-46c8-443d-bb23-a081fcb556f5, origin: Elixir.Ppl.PplRequests.Model.PplReques"},{"event":"cmd_output","timestamp":1607098215,"output":"tsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:15.539 [info] ppl_id: 2498e2c9-1b09-4a26-a00a-0c"},{"event":"cmd_output","timestamp":1607098215,"output":"a19c41a8c0, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: "},{"event":"cmd_output","timestamp":1607098215,"output":"0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:15.540 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098215,"output":" 51569548-46c8-443d-bb23-a081fcb556f5, type: PplSubInits, state: fetching, event: exit_scheduling, r"},{"event":"cmd_output","timestamp":1607098215,"output":"ecovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:15.555 "},{"event":"cmd_output","timestamp":1607098215,"output":"[info] ppl_id: 2498e2c9-1b09-4a26-a00a-0ca19c41a8c0, type: Ppls, state: pending, event: exit_schedu"},{"event":"cmd_output","timestamp":1607098215,"output":"ling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:"},{"event":"cmd_output","timestamp":1607098215,"output":"15.571 [info] ppl_id: 2498e2c9-1b09-4a26-a00a-0ca19c41a8c0, type: Ppls, state: queuing, event: exit"},{"event":"cmd_output","timestamp":1607098215,"output":"_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098215,"output":"\n16:10:15.581 [info] ppl_id: 51569548-46c8-443d-bb23-a081fcb556f5, type: PplSubInits, state: regula"},{"event":"cmd_output","timestamp":1607098215,"output":"r_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1"},{"event":"cmd_output","timestamp":1607098215,"output":"(L90), \n\u001b[0m\u001b[22m\n16:10:15.583 [info] ppl_id: 2498e2c9-1b09-4a26-a00a-0ca19c41a8c0, type: Ppls, s"},{"event":"cmd_output","timestamp":1607098215,"output":"tate: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098215,"output":"hange/1(L90), \n\u001b[0m\u001b[22m\n16:10:15.646 [info] ppl_id: 51569548-46c8-443d-bb23-a081fcb556f5, type: "},{"event":"cmd_output","timestamp":1607098215,"output":"PplRequests, event: persisted definition for request with request_token: b42f0cd8-aa8b-4bfb-8a6f-58c"},{"event":"cmd_output","timestamp":1607098215,"output":"87f784559, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098215,"output":"[22m\n16:10:15.664 [info] ppl_id: not_available, event: created, origin: Elixir.Ppl.PplSubInits.STM"},{"event":"cmd_output","timestamp":1607098215,"output":"Handler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:15.664 [info] event: created, origin: "},{"event":"cmd_output","timestamp":1607098215,"output":"Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:15.664 [info]"},{"event":"cmd_output","timestamp":1607098215,"output":" ppl_id: 51569548-46c8-443d-bb23-a081fcb556f5, type: PplBlocks, block_index: 0, state: initializing"},{"event":"cmd_output","timestamp":1607098215,"output":", event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_"},{"event":"cmd_output","timestamp":1607098215,"output":"ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:15.664 [info] ppl_id: 51569548-46c8-443d-bb23-a081fcb556f5, type: P"},{"event":"cmd_output","timestamp":1607098215,"output":"plBlocks, block_index: 1, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098215,"output":".PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:15.668 [info] ppl_id: "},{"event":"cmd_output","timestamp":1607098215,"output":"51569548-46c8-443d-bb23-a081fcb556f5, type: PplSubInits, state: done, result: passed, event: exit_sc"},{"event":"cmd_output","timestamp":1607098215,"output":"heduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098215,"output":":10:15.681 [info] ppl_id: 51569548-46c8-443d-bb23-a081fcb556f5, type: Ppls, state: pending, event: "},{"event":"cmd_output","timestamp":1607098215,"output":"exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098215,"output":"22m\n16:10:15.708 [info] ppl_id: 51569548-46c8-443d-bb23-a081fcb556f5, type: Ppls, state: queuing, "},{"event":"cmd_output","timestamp":1607098215,"output":"event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \r"},{"event":"cmd_output","timestamp":1607098215,"output":"\n\u001b[0m\u001b[22m\n16:10:15.720 [info] ppl_id: 51569548-46c8-443d-bb23-a081fcb556f5, type: Ppls, state: ru"},{"event":"cmd_output","timestamp":1607098215,"output":"nning, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1("},{"event":"cmd_output","timestamp":1607098215,"output":"L90), \n\u001b[0m\u001b[22m\n16:10:15.816 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.RunningState"},{"event":"cmd_output","timestamp":1607098215,"output":" with name Elixir.Ppl.Ppls.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wa"},{"event":"cmd_output","timestamp":1607098215,"output":"ke_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stoppi"},{"event":"cmd_output","timestamp":1607098215,"output":"ng\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"running\", p"},{"event":"cmd_output","timestamp":1607098215,"output":"ublisher_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo,"},{"event":"cmd_output","timestamp":1607098215,"output":" returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schem"},{"event":"cmd_output","timestamp":1607098215,"output":"a: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:10:15.817 [info] Period"},{"event":"cmd_output","timestamp":1607098215,"output":"ic from module Elixir.Ppl.Ppls.STMHandler.StoppingState with name Elixir.Ppl.Ppls.STMHandler.Stoppin"},{"event":"cmd_output","timestamp":1607098215,"output":"gState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-StoppingState\""},{"event":"cmd_output","timestamp":1607098215,"output":"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl"},{"event":"cmd_output","timestamp":1607098215,"output":".Ppls.Model.Ppls, observed_state: \"stopping\", publisher_cb: #Function<0.71803493/1 in Ppl.Ppls.STMHa"},{"event":"cmd_output","timestamp":1607098215,"output":"ndler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :"},{"event":"cmd_output","timestamp":1607098215,"output":"state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0"},{"event":"cmd_output","timestamp":1607098215,"output":"m\u001b[22m\n16:10:15.817 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.InitializingState "},{"event":"cmd_output","timestamp":1607098215,"output":"with name Elixir.Ppl.PplBlocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.be"},{"event":"cmd_output","timestamp":1607098215,"output":"holder-wake_up\", [\"Ppl-PplBlocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: "},{"event":"cmd_output","timestamp":1607098215,"output":"[\"initializing\", \"waiting\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBloc"},{"event":"cmd_output","timestamp":1607098215,"output":"ks, observed_state: \"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :termi"},{"event":"cmd_output","timestamp":1607098215,"output":"nate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098215,"output":"Blocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:15.818 [info] Periodic from modul"},{"event":"cmd_output","timestamp":1607098215,"output":"e Elixir.Ppl.PplBlocks.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler.WaitingStat"},{"event":"cmd_output","timestamp":1607098215,"output":"e :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\""},{"event":"cmd_output","timestamp":1607098215,"output":"]}, recurring args: %{allowed_states: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 0, initial_q"},{"event":"cmd_output","timestamp":1607098215,"output":"uery: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"waiting\", publisher_cb: #Function<0.8975022/1 "},{"event":"cmd_output","timestamp":1607098215,"output":"in Ppl.PplBlocks.STMHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_re"},{"event":"cmd_output","timestamp":1607098215,"output":"quest, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks."},{"event":"cmd_output","timestamp":1607098215,"output":"Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:15.928 [info] ppl_id: 2498e2c9-1b09-4a26"},{"event":"cmd_output","timestamp":1607098215,"output":"-a00a-0ca19c41a8c0, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recover"},{"event":"cmd_output","timestamp":1607098215,"output":"y_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:15.938 [info]"},{"event":"cmd_output","timestamp":1607098215,"output":" ppl_id: 2498e2c9-1b09-4a26-a00a-0ca19c41a8c0, type: Ppls, state: stopping, event: exit_scheduling,"},{"event":"cmd_output","timestamp":1607098215,"output":" recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:15.94"},{"event":"cmd_output","timestamp":1607098215,"output":"8 [info] ppl_id: 2498e2c9-1b09-4a26-a00a-0ca19c41a8c0, type: PplBlocks, block_index: 0, state: done"},{"event":"cmd_output","timestamp":1607098215,"output":", result: canceled, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_st"},{"event":"cmd_output","timestamp":1607098215,"output":"ate_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:15.956 [info] ppl_id: 2498e2c9-1b09-4a26-a00a-0ca19c41a8c0, t"},{"event":"cmd_output","timestamp":1607098215,"output":"ype: PplBlocks, block_index: 1, state: done, result: canceled, event: exit_scheduling, recovery_coun"},{"event":"cmd_output","timestamp":1607098215,"output":"t: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:15.965 [info] ppl_"},{"event":"cmd_output","timestamp":1607098215,"output":"id: 2498e2c9-1b09-4a26-a00a-0ca19c41a8c0, type: Ppls, state: done, result: stopped, event: exit_sche"},{"event":"cmd_output","timestamp":1607098216,"output":"duling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098216,"output":"0:16.038 [info] ppl_id: 51569548-46c8-443d-bb23-a081fcb556f5, type: PplBlocks, block_index: 0, stat"},{"event":"cmd_output","timestamp":1607098216,"output":"e: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chan"},{"event":"cmd_output","timestamp":1607098216,"output":"ge/1(L90), \n\u001b[0m\u001b[22m\n16:10:16.062 [info] ppl_id: 51569548-46c8-443d-bb23-a081fcb556f5, type: Ppl"},{"event":"cmd_output","timestamp":1607098216,"output":"s, state: stopping, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_st"},{"event":"cmd_output","timestamp":1607098216,"output":"ate_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:16.079 [info] ppl_id: 51569548-46c8-443d-bb23-a081fcb556f5, t"},{"event":"cmd_output","timestamp":1607098216,"output":"ype: PplBlocks, block_index: 0, state: done, result: canceled, event: exit_scheduling, recovery_coun"},{"event":"cmd_output","timestamp":1607098216,"output":"t: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:16.083 [info] ppl_"},{"event":"cmd_output","timestamp":1607098216,"output":"id: 51569548-46c8-443d-bb23-a081fcb556f5, type: PplBlocks, block_index: 1, state: done, result: canc"},{"event":"cmd_output","timestamp":1607098216,"output":"eled, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098216,"output":"90), \n\u001b[0m\u001b[22m\n16:10:16.093 [info] ppl_id: 51569548-46c8-443d-bb23-a081fcb556f5, type: Ppls, sta"},{"event":"cmd_output","timestamp":1607098216,"output":"te: done, result: stopped, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl"},{"event":"cmd_output","timestamp":1607098216,"output":".log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test gRPC terminate() - suceeds when given valid params (1"},{"event":"cmd_output","timestamp":1607098216,"output":"976.6ms)\u001b[0m\n * test gRPC list_keyset() - filtering by triggers\r * test gRPC list_keyset() - filt"},{"event":"cmd_output","timestamp":1607098216,"output":"ering by triggers (skipped)\n * test gRPC get_project_id() - failes when wf_id is omitted\r * test "},{"event":"cmd_output","timestamp":1607098216,"output":"gRPC get_project_id() - failes when wf_id is omitted (skipped)\n * test gRPC reschedule() - fails w"},{"event":"cmd_output","timestamp":1607098216,"output":"hen project deletion was already requested\r * test gRPC reschedule() - fails when project deletion "},{"event":"cmd_output","timestamp":1607098216,"output":"was already requested (skipped)\n * test gRPC schedule() - refuse if project deletion was requested"},{"event":"cmd_output","timestamp":1607098216,"output":"\r * test gRPC schedule() - refuse if project deletion was requested (skipped)\n * test gRPC termin"},{"event":"cmd_output","timestamp":1607098216,"output":"ate() - fails when non-existing workflow id is given\r * test gRPC terminate() - fails when non-exis"},{"event":"cmd_output","timestamp":1607098216,"output":"ting workflow id is given (skipped)\n * test gRPC schedule() - success (GitHub repo, master)\r * t"},{"event":"cmd_output","timestamp":1607098216,"output":"est gRPC schedule() - success (GitHub repo, master) (skipped)\n * test gRPC list() - succeeds when"},{"event":"cmd_output","timestamp":1607098216,"output":" given valid params\r * test gRPC list() - succeeds when given valid params (skipped)\n * test gRPC"},{"event":"cmd_output","timestamp":1607098216,"output":" list_grouped_ks() - refuse request when there are to many unfinished ones\r * test gRPC list_groupe"},{"event":"cmd_output","timestamp":1607098216,"output":"d_ks() - refuse request when there are to many unfinished ones (skipped)\n * test gRPC list() - ref"},{"event":"cmd_output","timestamp":1607098216,"output":"use request when there are to many unfinished ones\r * test gRPC list() - refuse request when there "},{"event":"cmd_output","timestamp":1607098216,"output":"are to many unfinished ones (skipped)\n * test gRPC get_path() - works for all combinations of requ"},{"event":"cmd_output","timestamp":1607098216,"output":"est params\u001b[22m\n16:10:16.222 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingSt"},{"event":"cmd_output","timestamp":1607098216,"output":"ate with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beh"},{"event":"cmd_output","timestamp":1607098216,"output":"older-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"init"},{"event":"cmd_output","timestamp":1607098216,"output":"ializing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_sta"},{"event":"cmd_output","timestamp":1607098216,"output":"te: \"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.a"},{"event":"cmd_output","timestamp":1607098216,"output":"rgs/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :reco"},{"event":"cmd_output","timestamp":1607098216,"output":"very_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:16.223 "},{"event":"cmd_output","timestamp":1607098216,"output":"[info] Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHa"},{"event":"cmd_output","timestamp":1607098216,"output":"ndler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Pe"},{"event":"cmd_output","timestamp":1607098216,"output":"ndingState\"]}, recurring args: %{allowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_"},{"event":"cmd_output","timestamp":1607098216,"output":"time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publisher_cb: #Function<"},{"event":"cmd_output","timestamp":1607098216,"output":"0.8493005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :termi"},{"event":"cmd_output","timestamp":1607098216,"output":"nate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, "},{"event":"cmd_output","timestamp":1607098216,"output":"task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:10:16.223 [info] Periodic from module Elixir.Pp"},{"event":"cmd_output","timestamp":1607098216,"output":"l.Ppls.STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, "},{"event":"cmd_output","timestamp":1607098216,"output":"metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{allow"},{"event":"cmd_output","timestamp":1607098216,"output":"ed_states: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls,"},{"event":"cmd_output","timestamp":1607098216,"output":" observed_state: \"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingStat"},{"event":"cmd_output","timestamp":1607098216,"output":"e.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :r"},{"event":"cmd_output","timestamp":1607098216,"output":"ecovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:16.2"},{"event":"cmd_output","timestamp":1607098216,"output":"24 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl.Ppls.ST"},{"event":"cmd_output","timestamp":1607098216,"output":"MHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler"},{"event":"cmd_output","timestamp":1607098216,"output":"-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_se"},{"event":"cmd_output","timestamp":1607098216,"output":"c: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"running\", publisher_cb: #Function<0.7467"},{"event":"cmd_output","timestamp":1607098216,"output":"0282/1 in Ppl.Ppls.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_"},{"event":"cmd_output","timestamp":1607098216,"output":"request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_"},{"event":"cmd_output","timestamp":1607098216,"output":"supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:10:16.224 [info] Periodic from module Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098216,"output":"s.STMHandler.StoppingState with name Elixir.Ppl.Ppls.STMHandler.StoppingState :: period: 100 ms, met"},{"event":"cmd_output","timestamp":1607098216,"output":"ric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring args: %{allowed"},{"event":"cmd_output","timestamp":1607098216,"output":"_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_st"},{"event":"cmd_output","timestamp":1607098216,"output":"ate: \"stopping\", publisher_cb: #Function<0.71803493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, "},{"event":"cmd_output","timestamp":1607098216,"output":"repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_cou"},{"event":"cmd_output","timestamp":1607098216,"output":"nt, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:16.225 [info] "},{"event":"cmd_output","timestamp":1607098216,"output":"Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits"},{"event":"cmd_output","timestamp":1607098216,"output":".STMHandler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-"},{"event":"cmd_output","timestamp":1607098216,"output":"STMHandler-CreatedState\"]}, recurring args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec"},{"event":"cmd_output","timestamp":1607098216,"output":": 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"created\", publisher_cb: :ski"},{"event":"cmd_output","timestamp":1607098216,"output":"p, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_"},{"event":"cmd_output","timestamp":1607098216,"output":"count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098216,"output":"0:16.225 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elix"},{"event":"cmd_output","timestamp":1607098216,"output":"ir.Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\","},{"event":"cmd_output","timestamp":1607098216,"output":" [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %{allowed_states: [\"regular_init\", \""},{"event":"cmd_output","timestamp":1607098216,"output":"compilation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, obser"},{"event":"cmd_output","timestamp":1607098216,"output":"ved_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request,"},{"event":"cmd_output","timestamp":1607098216,"output":" :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits,"},{"event":"cmd_output","timestamp":1607098216,"output":" task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:16.226 [info] Periodic from module Elixir.Ppl.PplSubInit"},{"event":"cmd_output","timestamp":1607098216,"output":"s.STMHandler.CompilationState with name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period"},{"event":"cmd_output","timestamp":1607098216,"output":": 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, re"},{"event":"cmd_output","timestamp":1607098216,"output":"curring args: %{allowed_states: [\"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_se"},{"event":"cmd_output","timestamp":1607098216,"output":"c: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"compilation\", publisher_cb"},{"event":"cmd_output","timestamp":1607098216,"output":": :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :rec"},{"event":"cmd_output","timestamp":1607098216,"output":"overy_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098216,"output":"\n16:10:16.226 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with "},{"event":"cmd_output","timestamp":1607098216,"output":"name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.behold"},{"event":"cmd_output","timestamp":1607098216,"output":"er-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurring args: %{allowed_states: [\"d"},{"event":"cmd_output","timestamp":1607098216,"output":"one\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regul"},{"event":"cmd_output","timestamp":1607098216,"output":"ar_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at,"},{"event":"cmd_output","timestamp":1607098216,"output":" :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervi"},{"event":"cmd_output","timestamp":1607098216,"output":"sor: :skip}\n\u001b[0m\u001b[22m\n16:10:16.226 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.In"},{"event":"cmd_output","timestamp":1607098216,"output":"itializingState with name Elixir.Ppl.PplBlocks.STMHandler.InitializingState :: period: 100 ms, metri"},{"event":"cmd_output","timestamp":1607098216,"output":"c_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-InitializingState\"]}, recurring args: %{"},{"event":"cmd_output","timestamp":1607098216,"output":"allowed_states: [\"initializing\", \"waiting\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBloc"},{"event":"cmd_output","timestamp":1607098216,"output":"ks.Model.PplBlocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returni"},{"event":"cmd_output","timestamp":1607098216,"output":"ng: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index],"},{"event":"cmd_output","timestamp":1607098216,"output":" schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:16.227 [info] Per"},{"event":"cmd_output","timestamp":1607098216,"output":"iodic from module Elixir.Ppl.PplBlocks.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks.STMHan"},{"event":"cmd_output","timestamp":1607098216,"output":"dler.WaitingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandl"},{"event":"cmd_output","timestamp":1607098216,"output":"er-WaitingState\"]}, recurring args: %{allowed_states: [\"waiting\", \"running\", \"done\"], cooling_time_s"},{"event":"cmd_output","timestamp":1607098216,"output":"ec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"waiting\", publisher_cb: #Funct"},{"event":"cmd_output","timestamp":1607098216,"output":"ion<0.8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, returning: [:i"},{"event":"cmd_output","timestamp":1607098216,"output":"d, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema"},{"event":"cmd_output","timestamp":1607098216,"output":": Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:16.227 [info] Periodic f"},{"event":"cmd_output","timestamp":1607098216,"output":"rom module Elixir.Ppl.PplBlocks.STMHandler.RunningState with name Elixir.Ppl.PplBlocks.STMHandler.Ru"},{"event":"cmd_output","timestamp":1607098216,"output":"nningState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-Runn"},{"event":"cmd_output","timestamp":1607098216,"output":"ingState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2"},{"event":"cmd_output","timestamp":1607098216,"output":", initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"running\", publisher_cb: #Function<0"},{"event":"cmd_output","timestamp":1607098216,"output":".28166834/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :"},{"event":"cmd_output","timestamp":1607098216,"output":"terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id],"},{"event":"cmd_output","timestamp":1607098216,"output":" schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:16.227 [info] Per"},{"event":"cmd_output","timestamp":1607098216,"output":"iodic from module Elixir.Ppl.PplBlocks.STMHandler.StoppingState with name Elixir.Ppl.PplBlocks.STMHa"},{"event":"cmd_output","timestamp":1607098216,"output":"ndler.StoppingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHan"},{"event":"cmd_output","timestamp":1607098216,"output":"dler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2,"},{"event":"cmd_output","timestamp":1607098216,"output":" initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"stopping\", publisher_cb: #Function<0"},{"event":"cmd_output","timestamp":1607098216,"output":".104215991/1 in Ppl.PplBlocks.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id,"},{"event":"cmd_output","timestamp":1607098216,"output":" :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id"},{"event":"cmd_output","timestamp":1607098216,"output":"], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:16.228 [info] P"},{"event":"cmd_output","timestamp":1607098216,"output":"eriodic from module Elixir.Block.Blocks.STMHandler.InitializingState with name Elixir.Block.Blocks.S"},{"event":"cmd_output","timestamp":1607098216,"output":"TMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-"},{"event":"cmd_output","timestamp":1607098216,"output":"STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time"},{"event":"cmd_output","timestamp":1607098216,"output":"_sec: 0, initial_query: Block.Blocks.Model.Blocks, observed_state: \"initializing\", publisher_cb: :sk"},{"event":"cmd_output","timestamp":1607098216,"output":"ip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count,"},{"event":"cmd_output","timestamp":1607098216,"output":" :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:16.228 [in"},{"event":"cmd_output","timestamp":1607098216,"output":"fo] Periodic from module Elixir.Block.Blocks.STMHandler.RunningState with name Elixir.Block.Blocks."},{"event":"cmd_output","timestamp":1607098216,"output":"STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMH"},{"event":"cmd_output","timestamp":1607098216,"output":"andler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_t"},{"event":"cmd_output","timestamp":1607098216,"output":"ime_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"running\", publisher_cb: :ski"},{"event":"cmd_output","timestamp":1607098216,"output":"p, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, "},{"event":"cmd_output","timestamp":1607098216,"output":":block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:16.228 [inf"},{"event":"cmd_output","timestamp":1607098216,"output":"o] Periodic from module Elixir.Block.Blocks.STMHandler.StoppingState with name Elixir.Block.Blocks."},{"event":"cmd_output","timestamp":1607098216,"output":"STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STM"},{"event":"cmd_output","timestamp":1607098216,"output":"Handler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: "},{"event":"cmd_output","timestamp":1607098216,"output":"-2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"stopping\", publisher_cb: :skip, repo:"},{"event":"cmd_output","timestamp":1607098216,"output":" Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_i"},{"event":"cmd_output","timestamp":1607098216,"output":"d], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:16.229 [info] Peri"},{"event":"cmd_output","timestamp":1607098216,"output":"odic from module Elixir.Block.Tasks.STMHandler.PendingState with name Elixir.Block.Tasks.STMHandler."},{"event":"cmd_output","timestamp":1607098216,"output":"PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-Pendi"},{"event":"cmd_output","timestamp":1607098216,"output":"ngState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_quer"},{"event":"cmd_output","timestamp":1607098216,"output":"y: Block.Tasks.Model.Tasks, observed_state: \"pending\", publisher_cb: :skip, repo: Block.EctoRepo, re"},{"event":"cmd_output","timestamp":1607098216,"output":"turning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id, :build_request_i"},{"event":"cmd_output","timestamp":1607098216,"output":"d], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:16.229 [info] Period"},{"event":"cmd_output","timestamp":1607098216,"output":"ic from module Elixir.Block.Tasks.STMHandler.RunningState with name Elixir.Block.Tasks.STMHandler.Ru"},{"event":"cmd_output","timestamp":1607098216,"output":"nningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-Running"},{"event":"cmd_output","timestamp":1607098216,"output":"State\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, i"},{"event":"cmd_output","timestamp":1607098216,"output":"nitial_query: Block.Tasks.Model.Tasks, observed_state: \"running\", publisher_cb: :skip, repo: Block.E"},{"event":"cmd_output","timestamp":1607098216,"output":"ctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], sche"},{"event":"cmd_output","timestamp":1607098216,"output":"ma: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:16.229 [info] Periodic from "},{"event":"cmd_output","timestamp":1607098216,"output":"module Elixir.Block.Tasks.STMHandler.StoppingState with name Elixir.Block.Tasks.STMHandler.StoppingS"},{"event":"cmd_output","timestamp":1607098216,"output":"tate :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-StoppingState"},{"event":"cmd_output","timestamp":1607098216,"output":"\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Bl"},{"event":"cmd_output","timestamp":1607098216,"output":"ock.Tasks.Model.Tasks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, return"},{"event":"cmd_output","timestamp":1607098216,"output":"ing: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks"},{"event":"cmd_output","timestamp":1607098216,"output":".Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:16.242 [info] Request: 'run: %{\"branch_id\" "},{"event":"cmd_output","timestamp":1607098216,"output":"=> \"bdce0663-1c92-4344-81a5-7b176cb05e4b\", \"branch_name\" => \"master\", \"client_id\" => \"eaeff548-cc76-"},{"event":"cmd_output","timestamp":1607098216,"output":"43c0-985c-0c249e718667\", \"commit_sha\" => \"75891a4469\", \"definition_file\" => \"\", \"hook_id\" => \"327b35"},{"event":"cmd_output","timestamp":1607098216,"output":"90-364b-11eb-810a-5254005464e2\", \"label\" => \"master\", \"organization_id\" => \"fcd76cdb-c637-42a9-a488-"},{"event":"cmd_output","timestamp":1607098216,"output":"93114297b9f9\", \"owner\" => \"rt\", \"project_id\" => \"d4609f23-a69e-4134-abf0-6aca734a1536\", \"repo_name\" "},{"event":"cmd_output","timestamp":1607098216,"output":"=> \"20_workflow_builder\", \"request_token\" => \"327b2258-364b-11eb-ac81-5254005464e2\", \"requester_id\" "},{"event":"cmd_output","timestamp":1607098216,"output":"=> \"0bb5c580-6586-417c-8957-a2695f509d39\", \"service\" => \"local\", \"snapshot_id\" => \"\", \"suppressed_at"},{"event":"cmd_output","timestamp":1607098216,"output":"tributes\" => [\"access_token\", \"client_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"a8344254-b96d-"},{"event":"cmd_output","timestamp":1607098216,"output":"41b3-b239-5a234156ea28\"}\n\u001b[0m\u001b[22m\n16:10:16.270 [info] ppl_id: 8299454d-872f-438a-b91b-76a3fe043c"},{"event":"cmd_output","timestamp":1607098216,"output":"83, type: PplRequests, event: persisted schedule request with request_token: 327b2258-364b-11eb-ac81"},{"event":"cmd_output","timestamp":1607098216,"output":"-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b["},{"event":"cmd_output","timestamp":1607098216,"output":"0m\u001b[22m\n16:10:16.273 [info] ppl_id: 8299454d-872f-438a-b91b-76a3fe043c83, type: Ppls, state: initi"},{"event":"cmd_output","timestamp":1607098216,"output":"alizing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_r"},{"event":"cmd_output","timestamp":1607098216,"output":"esponse/2(L124), \n\u001b[0m\u001b[22m\n16:10:16.277 [info] Project d4609f23-a69e-4134-abf0-6aca734a1536 and "},{"event":"cmd_output","timestamp":1607098216,"output":"branch masterlatest_wf details updated: \"wf_id: a8344254-b96d-41b3-b239-5a234156ea28, wf_number: 1\"\r"},{"event":"cmd_output","timestamp":1607098216,"output":"\n\u001b[0m\u001b[22m\n16:10:16.279 [info] Persisted ppl_sub_init for pipeline with ppl_id: 8299454d-872f-438a"},{"event":"cmd_output","timestamp":1607098216,"output":"-b91b-76a3fe043c83: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pip"},{"event":"cmd_output","timestamp":1607098216,"output":"eline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 23, in_scheduling: false, init_"},{"event":"cmd_output","timestamp":1607098216,"output":"type: \"regular\", inserted_at: ~N[2020-12-04 16:10:16.278123], pipeline_requests: #Ecto.Association.N"},{"event":"cmd_output","timestamp":1607098216,"output":"otLoaded, ppl_id: \"8299454d-872f-438a-b91b-76a3fe043c8"},{"event":"cmd_output","timestamp":1607098216,"output":"3\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, te"},{"event":"cmd_output","timestamp":1607098216,"output":"rminate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:16.278210]}\n\u001b[0m\u001b[22m\n16:10:16.293 [inf"},{"event":"cmd_output","timestamp":1607098216,"output":"o] Request: 'run: %{\"auto_promoted\" => false, \"branch_id\" => \"bdce0663-1c92-4344-81a5-7b176cb05e4b\""},{"event":"cmd_output","timestamp":1607098216,"output":", \"branch_name\" => \"master\", \"client_id\" => \"eaeff548-cc76-43c0-985c-0c249e718667\", \"commit_sha\" => "},{"event":"cmd_output","timestamp":1607098216,"output":"\"75891a4469\", \"definition_file\" => \"\", \"env_vars\" => [], \"extension_of\" => \"8299454d-872f-438a-b91b-"},{"event":"cmd_output","timestamp":1607098216,"output":"76a3fe043c83\", \"file_name\" => \"/foo/bar/test.yml\", \"hook_id\" => \"327b3590-364b-11eb-810a-5254005464e"},{"event":"cmd_output","timestamp":1607098216,"output":"2\", \"label\" => \"master\", \"organization_id\" => \"fcd76cdb-c637-42a9-a488-93114297b9f9\", \"owner\" => \"rt"},{"event":"cmd_output","timestamp":1607098216,"output":"\", \"prev_ppl_artefact_ids\" => [\"8299454d-872f-438a-b91b-76a3fe043c83\"], \"project_id\" => \"d4609f23-a6"},{"event":"cmd_output","timestamp":1607098216,"output":"9e-4134-abf0-6aca734a1536\", \"promoter_id\" => \"\", \"repo_name\" => \"20_workflow_builder\", \"request_toke"},{"event":"cmd_output","timestamp":1607098216,"output":"n\" => \"1a99f7cb-c4da-4362-b553-d7e0e89983a2\", \"requester_id\" => \"0bb5c580-6586-417c-8957-a2695f509d3"},{"event":"cmd_output","timestamp":1607098216,"output":"9\", \"service\" => \"local\", \"snapshot_id\" => \"\", \"suppressed_attributes\" => [\"access_token\", \"client_s"},{"event":"cmd_output","timestamp":1607098216,"output":"ecret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"a8344254-b96d-41b3-b239-5a234156ea28\", \"wf_number\" =>"},{"event":"cmd_output","timestamp":1607098216,"output":" 1, \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:10:16.297 [info] ppl_id: 8299454d-872f-438a-b91b-"},{"event":"cmd_output","timestamp":1607098216,"output":"76a3fe043c83, type: PplRequests, event: persisted source_args for pipeline: 8299454d-872f-438a-b91b-"},{"event":"cmd_output","timestamp":1607098216,"output":"76a3fe043c83, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098216,"output":"22m\n16:10:16.299 [info] ppl_id: 123e6edd-07d1-469a-b899-8a123499bf03, type: PplRequests, event: pe"},{"event":"cmd_output","timestamp":1607098216,"output":"rsisted schedule request with request_token: 1a99f7cb-c4da-4362-b553-d7e0e89983a2, origin: Elixir.Pp"},{"event":"cmd_output","timestamp":1607098216,"output":"l.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:16.300 [info] pp"},{"event":"cmd_output","timestamp":1607098216,"output":"l_id: 8299454d-872f-438a-b91b-76a3fe043c83, type: PplSubInits, state: fetching, event: exit_scheduli"},{"event":"cmd_output","timestamp":1607098216,"output":"ng, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:16"},{"event":"cmd_output","timestamp":1607098216,"output":".302 [info] ppl_id: 123e6edd-07d1-469a-b899-8a123499bf03, type: Ppls, state: initializing, event: i"},{"event":"cmd_output","timestamp":1607098216,"output":"nitializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), "},{"event":"cmd_output","timestamp":1607098216,"output":"\n\u001b[0m\u001b[22m\n16:10:16.305 [info] Persisted ppl_sub_init for pipeline with ppl_id: 123e6edd-07d1-469"},{"event":"cmd_output","timestamp":1607098216,"output":"a-b899-8a123499bf03: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pi"},{"event":"cmd_output","timestamp":1607098216,"output":"peline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 24, in_scheduling: false, init"},{"event":"cmd_output","timestamp":1607098216,"output":"_type: \"regular\", inserted_at: ~N[2020-12-04 16:10:16.303930], pipeline_requests: #Ecto.Association."},{"event":"cmd_output","timestamp":1607098216,"output":"NotLoaded, ppl_id: \"123e6edd-07d1-469a-b899-8a123499bf"},{"event":"cmd_output","timestamp":1607098216,"output":"03\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, t"},{"event":"cmd_output","timestamp":1607098216,"output":"erminate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:16.303941]}\n\u001b[0m\u001b[22m\n16:10:16.320 [in"},{"event":"cmd_output","timestamp":1607098216,"output":"fo] ppl_id: 123e6edd-07d1-469a-b899-8a123499bf03, type: PplRequests, event: persisted source_args f"},{"event":"cmd_output","timestamp":1607098216,"output":"or pipeline: 123e6edd-07d1-469a-b899-8a123499bf03, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQ"},{"event":"cmd_output","timestamp":1607098216,"output":"ueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:16.325 [info] ppl_id: 123e6edd-07d1-469a-b899-8a123"},{"event":"cmd_output","timestamp":1607098216,"output":"499bf03, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098216,"output":"ir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:16.328 [info] ppl_id: 8299454d-872f-"},{"event":"cmd_output","timestamp":1607098216,"output":"438a-b91b-76a3fe043c83, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_cou"},{"event":"cmd_output","timestamp":1607098216,"output":"nt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:16.365 [info] ppl"},{"event":"cmd_output","timestamp":1607098216,"output":"_id: 123e6edd-07d1-469a-b899-8a123499bf03, type: PplSubInits, state: regular_init, event: exit_sched"},{"event":"cmd_output","timestamp":1607098218,"output":"uling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[33m\n16:10"},{"event":"cmd_output","timestamp":1607098218,"output":":18.755 [warn] Elixir.Wormhole{#PID<0.3332.0>}:: callback: {GoferClient.GrpcClient, :create_, [%Int"},{"event":"cmd_output","timestamp":1607098218,"output":"ernalApi.Gofer.CreateRequest{branch_name: \"master\", commit_range: \"1234...4567\", commit_sha: \"75891a"},{"event":"cmd_output","timestamp":1607098218,"output":"4469\", git_ref_type: 0, label: \"master\", pipeline_id: \"8299454d-872f-438a-b91b-76a3fe043c83\", pr_bas"},{"event":"cmd_output","timestamp":1607098218,"output":"e: \"\", pr_sha: \"\", prev_ppl_artefact_ids: [\"8299454d-872f-438a-b91b-76a3fe043c83\"], project_id: \"d46"},{"event":"cmd_output","timestamp":1607098218,"output":"09f23-a69e-4134-abf0-6aca734a1536\", targets: [%InternalApi.Gofer.Target{auto_promote_when: \"\", auto_"},{"event":"cmd_output","timestamp":1607098218,"output":"trigger_on: [], name: \"Extension ppl\", parameter_env_vars: [], pipeline_path: \"/foo/bar/test.yml\"}],"},{"event":"cmd_output","timestamp":1607098218,"output":" working_dir: \".semaphore\", yml_file_name: \"semaphore.yml\"}]}; reason: {:timeout, 2345}\n\u001b[0m\u001b[31m\n"},{"event":"cmd_output","timestamp":1607098218,"output":"16:10:18.756 [error] ppl_id: not_available, event: exit_scheduling, context: {:error, :user_exit_fun"},{"event":"cmd_output","timestamp":1607098218,"output":"ction, {:error, {:timeout, 2345}}, %{item: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema"},{"event":"cmd_output","timestamp":1607098218,"output":".Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: \"\", id: 23, in_sc"},{"event":"cmd_output","timestamp":1607098218,"output":"heduling: true, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:10:16.278123], pipeline_requests"},{"event":"cmd_output","timestamp":1607098218,"output":": #Ecto.Association.NotLoaded, ppl_id: \"8299454d-872f-"},{"event":"cmd_output","timestamp":1607098218,"output":"438a-b91b-76a3fe043c83\", recovery_count: 0, result: nil, result_reason: nil, state: \"regular_init\", "},{"event":"cmd_output","timestamp":1607098218,"output":"terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:16.330700]}}}, "},{"event":"cmd_output","timestamp":1607098218,"output":"origin: Elixir.Looper.STM.Impl.log_state_change/1(L96), \n\u001b[0m\u001b[31m\n16:10:18.757 [error] STM Elixir"},{"event":"cmd_output","timestamp":1607098218,"output":".Ppl.PplSubInits.STMHandler.RegularInitState FAILED: {:error, :user_exit_function, {:error, {:timeou"},{"event":"cmd_output","timestamp":1607098218,"output":"t, 2345}}, %{item: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipe"},{"event":"cmd_output","timestamp":1607098218,"output":"line_sub_inits\">, compile_task_id: nil, error_description: \"\", id: 23, in_scheduling: true, init_typ"},{"event":"cmd_output","timestamp":1607098218,"output":"e: \"regular\", inserted_at: ~N[2020-12-04 16:10:16.278123], pipeline_requests: #Ecto.Association.NotL"},{"event":"cmd_output","timestamp":1607098218,"output":"oaded, ppl_id: \"8299454d-872f-438a-b91b-76a3fe043c83\","},{"event":"cmd_output","timestamp":1607098218,"output":" recovery_count: 0, result: nil, result_reason: nil, state: \"regular_init\", terminate_request: nil, "},{"event":"cmd_output","timestamp":1607098218,"output":"terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:16.330700]}}}\n\u001b[0m\u001b[22m\n16:10:18.782 "},{"event":"cmd_output","timestamp":1607098218,"output":"[info] ppl_id: 123e6edd-07d1-469a-b899-8a123499bf03, type: PplRequests, event: persisted definition"},{"event":"cmd_output","timestamp":1607098218,"output":" for request with request_token: 1a99f7cb-c4da-4362-b553-d7e0e89983a2, origin: Elixir.Ppl.PplRequest"},{"event":"cmd_output","timestamp":1607098218,"output":"s.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:18.786 [info] Queue persist"},{"event":"cmd_output","timestamp":1607098218,"output":"ed: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: "},{"event":"cmd_output","timestamp":1607098218,"output":"~N[2020-12-04 16:10:18.784993], name: \"master-/foo/bar/test.yml\", organization_id: \"fcd76cdb-c637-42"},{"event":"cmd_output","timestamp":1607098218,"output":"a9-a488-93114297b9f9\", project_id: \"d4609f23-a69e-4134-abf0-6aca734a1536\", queue_id: \"380c42d3-df79-"},{"event":"cmd_output","timestamp":1607098218,"output":"47a1-9e24-517bca6912d6\", scope: \"project\", updated_at: ~N[2020-12-04 16:10:18.785004], user_generate"},{"event":"cmd_output","timestamp":1607098218,"output":"d: false}}\n\u001b[0m\u001b[22m\n16:10:18.799 [info] ppl_id: not_available, event: created, origin: Elixir.Pp"},{"event":"cmd_output","timestamp":1607098218,"output":"l.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:18.799 [info] event: "},{"event":"cmd_output","timestamp":1607098218,"output":"created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098218,"output":":10:18.800 [info] ppl_id: 123e6edd-07d1-469a-b899-8a123499bf03, type: PplBlocks, block_index: 0, st"},{"event":"cmd_output","timestamp":1607098218,"output":"ate: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.Regu"},{"event":"cmd_output","timestamp":1607098218,"output":"larInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:18.800 [info] ppl_id: 123e6edd-07d1-469a-b899-8a12"},{"event":"cmd_output","timestamp":1607098218,"output":"3499bf03, type: PplBlocks, block_index: 1, state: initializing, event: created, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098218,"output":"rigin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:18.804"},{"event":"cmd_output","timestamp":1607098218,"output":" [info] ppl_id: 123e6edd-07d1-469a-b899-8a123499bf03, type: PplSubInits, state: done, result: passe"},{"event":"cmd_output","timestamp":1607098218,"output":"d, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90)"},{"event":"cmd_output","timestamp":1607098218,"output":", \n\u001b[0m\u001b[22m\n16:10:18.815 [info] ppl_id: 123e6edd-07d1-469a-b899-8a123499bf03, type: PplBlocks, b"},{"event":"cmd_output","timestamp":1607098218,"output":"lock_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM."},{"event":"cmd_output","timestamp":1607098218,"output":"Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:18.816 [info] ppl_id: 123e6edd-07d1-469a-b899-8a12"},{"event":"cmd_output","timestamp":1607098218,"output":"3499bf03, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loop"},{"event":"cmd_output","timestamp":1607098218,"output":"er.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:18.824 [info] ppl_id: 123e6edd-07d1-469a-b8"},{"event":"cmd_output","timestamp":1607098218,"output":"99-8a123499bf03, type: PplBlocks, block_index: 1, state: waiting, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098218,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:18.824 [info] p"},{"event":"cmd_output","timestamp":1607098218,"output":"pl_id: 123e6edd-07d1-469a-b899-8a123499bf03, type: Ppls, state: queuing, event: exit_scheduling, rec"},{"event":"cmd_output","timestamp":1607098218,"output":"overy_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:18.834 [i"},{"event":"cmd_output","timestamp":1607098218,"output":"nfo] ppl_id: 123e6edd-07d1-469a-b899-8a123499bf03, type: Ppls, state: running, event: exit_scheduli"},{"event":"cmd_output","timestamp":1607098218,"output":"ng, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:18"},{"event":"cmd_output","timestamp":1607098218,"output":".840 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"123e6edd-07d1-469a-b89"},{"event":"cmd_output","timestamp":1607098218,"output":"9-8a123499bf03\"\n\u001b[0m\u001b[22m\n16:10:18.846 [info] block_id: 8ef97f53-1636-40e4-b7c0-9a580aa6768a, typ"},{"event":"cmd_output","timestamp":1607098218,"output":"e: BlockRequests, event: persisted block run request from ppl 123e6edd-07d1-469a-b899-8a123499bf03 f"},{"event":"cmd_output","timestamp":1607098218,"output":"or block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \r"},{"event":"cmd_output","timestamp":1607098218,"output":"\n\u001b[0m\u001b[22m\n16:10:18.854 [info] block_id: 8ef97f53-1636-40e4-b7c0-9a580aa6768a, type: Blocks, state"},{"event":"cmd_output","timestamp":1607098218,"output":": initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQuer"},{"event":"cmd_output","timestamp":1607098218,"output":"ies.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:18.856 [info] Block 0 of pipeline with id: 123e6edd-07d1-469a"},{"event":"cmd_output","timestamp":1607098218,"output":"-b899-8a123499bf03 scheduled in block service with id: : \"8ef97f53-1636-40e4-b7c0-9a580aa6768a\"\n\u001b[0"},{"event":"cmd_output","timestamp":1607098218,"output":"m\u001b[22m\n16:10:18.858 [info] ppl_id: 123e6edd-07d1-469a-b899-8a123499bf03, type: PplBlocks, block_in"},{"event":"cmd_output","timestamp":1607098218,"output":"dex: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.lo"},{"event":"cmd_output","timestamp":1607098218,"output":"g_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:18.862 [info] block_id: 8ef97f53-1636-40e4-b7c0-9a580aa67"},{"event":"cmd_output","timestamp":1607098218,"output":"68a, type: BlockRequests, event: persisted build and sub_ppl details for block_request: 8ef97f53-163"},{"event":"cmd_output","timestamp":1607098218,"output":"6-40e4-b7c0-9a580aa6768a, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build"},{"event":"cmd_output","timestamp":1607098218,"output":"/2(L41), \n\u001b[0m\u001b[22m\n16:10:18.866 [info] block_id: 8ef97f53-1636-40e4-b7c0-9a580aa6768a, type: Tas"},{"event":"cmd_output","timestamp":1607098218,"output":"ks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.Initia"},{"event":"cmd_output","timestamp":1607098218,"output":"lizingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:18.869 [info] block_id: 8ef97f53-1636-40e4-b7c0-9a5"},{"event":"cmd_output","timestamp":1607098218,"output":"80aa6768a, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098218,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:18.888 [info] block_id: 8ef97f53-1636-40"},{"event":"cmd_output","timestamp":1607098218,"output":"e4-b7c0-9a580aa6768a, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098218,"output":": Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:18.930 [info] block_id: 8ef97f"},{"event":"cmd_output","timestamp":1607098218,"output":"53-1636-40e4-b7c0-9a580aa6768a, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098218,"output":" origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:18.939 [info] block_id:"},{"event":"cmd_output","timestamp":1607098218,"output":" 8ef97f53-1636-40e4-b7c0-9a580aa6768a, type: Blocks, state: done, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098218,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:18.951 [info] p"},{"event":"cmd_output","timestamp":1607098218,"output":"pl_id: 123e6edd-07d1-469a-b899-8a123499bf03, block_id: 8ef97f53-1636-40e4-b7c0-9a580aa6768a, type: P"},{"event":"cmd_output","timestamp":1607098218,"output":"plBlocks, block_index: 0, state: done, result: failed, event: exit_scheduling, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098218,"output":"igin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:18.961 [info] PplBlocks Wa"},{"event":"cmd_output","timestamp":1607098218,"output":"itingState STM is scheduling block 1 from pipeline: \"123e6edd-07d1-469a-b899-8a123499bf03\"\n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098218,"output":"m\n16:10:18.971 [info] ppl_id: 123e6edd-07d1-469a-b899-8a123499bf03, type: PplBlocks, block_index: "},{"event":"cmd_output","timestamp":1607098218,"output":"1, state: done, result: canceled, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.S"},{"event":"cmd_output","timestamp":1607098218,"output":"TM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:18.995 [info] ppl_id: 123e6edd-07d1-469a-b899-8"},{"event":"cmd_output","timestamp":1607098218,"output":"a123499bf03, type: Ppls, state: done, result: failed, event: exit_scheduling, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098219,"output":"gin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:19.091 [info] Request: 'par"},{"event":"cmd_output","timestamp":1607098219,"output":"tial_rebuild', request: %{ppl_id: \"123e6edd-07d1-469a-b899-8a123499bf03\", request_token: \"b34f7d26-f"},{"event":"cmd_output","timestamp":1607098219,"output":"227-40e4-bfc7-efc51b57bcd1\", user_id: \"\"}\n\u001b[0m\u001b[22m\n16:10:19.094 [info] ppl_id: 2ce0d223-2beb-480"},{"event":"cmd_output","timestamp":1607098219,"output":"3-9a5e-58ed77a721ea, type: PplRequests, event: persisted schedule request with request_token: b34f7d"},{"event":"cmd_output","timestamp":1607098219,"output":"26-f227-40e4-bfc7-efc51b57bcd1, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_resp"},{"event":"cmd_output","timestamp":1607098219,"output":"onse/2(L55), \n\u001b[0m\u001b[22m\n16:10:19.098 [info] ppl_id: 2ce0d223-2beb-4803-9a5e-58ed77a721ea, type: P"},{"event":"cmd_output","timestamp":1607098219,"output":"pls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.Ppls"},{"event":"cmd_output","timestamp":1607098219,"output":"Queries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:19.101 [info] Persisted ppl_sub_init for pipel"},{"event":"cmd_output","timestamp":1607098219,"output":"ine with ppl_id: 2ce0d223-2beb-4803-9a5e-58ed77a721ea: %Ppl.PplSubInits.Model.PplSubInits{__meta__: "},{"event":"cmd_output","timestamp":1607098219,"output":"#Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, "},{"event":"cmd_output","timestamp":1607098219,"output":"id: 25, in_scheduling: false, init_type: \"rebuild\", inserted_at: ~N[2020-12-04 16:10:19.100109], pip"},{"event":"cmd_output","timestamp":1607098219,"output":"eline_requests: #Ecto.Association.NotLoaded, ppl_id: \""},{"event":"cmd_output","timestamp":1607098219,"output":"2ce0d223-2beb-4803-9a5e-58ed77a721ea\", recovery_count: 0, result: nil, result_reason: nil, state: \"c"},{"event":"cmd_output","timestamp":1607098219,"output":"reated\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:19.100"},{"event":"cmd_output","timestamp":1607098219,"output":"122]}\n\u001b[0m\u001b[22m\n16:10:19.121 [info] ppl_id: 2ce0d223-2beb-4803-9a5e-58ed77a721ea, type: PplReques"},{"event":"cmd_output","timestamp":1607098219,"output":"ts, event: persisted source_args for pipeline: 2ce0d223-2beb-4803-9a5e-58ed77a721ea, origin: Elixir."},{"event":"cmd_output","timestamp":1607098219,"output":"Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:19.123 [info] Req"},{"event":"cmd_output","timestamp":1607098219,"output":"uest: 'run: %{\"auto_promoted\" => false, \"branch_id\" => \"bdce0663-1c92-4344-81a5-7b176cb05e4b\", \"bran"},{"event":"cmd_output","timestamp":1607098219,"output":"ch_name\" => \"master\", \"client_id\" => \"eaeff548-cc76-43c0-985c-0c249e718667\", \"commit_sha\" => \"75891a"},{"event":"cmd_output","timestamp":1607098219,"output":"4469\", \"definition_file\" => \"\", \"env_vars\" => [], \"extension_of\" => \"8299454d-872f-438a-b91b-76a3fe0"},{"event":"cmd_output","timestamp":1607098219,"output":"43c83\", \"file_name\" => \"/foo/bar/test.yml\", \"hook_id\" => \"327b3590-364b-11eb-810a-5254005464e2\", \"la"},{"event":"cmd_output","timestamp":1607098219,"output":"bel\" => \"master\", \"organization_id\" => \"fcd76cdb-c637-42a9-a488-93114297b9f9\", \"owner\" => \"rt\", \"pre"},{"event":"cmd_output","timestamp":1607098219,"output":"v_ppl_artefact_ids\" => [\"8299454d-872f-438a-b91b-76a3fe043c83\"], \"project_id\" => \"d4609f23-a69e-4134"},{"event":"cmd_output","timestamp":1607098219,"output":"-abf0-6aca734a1536\", \"promoter_id\" => \"\", \"repo_name\" => \"20_workflow_builder\", \"request_token\" => \""},{"event":"cmd_output","timestamp":1607098219,"output":"34962d60-1632-43b1-ae23-1de6504ce7e1\", \"requester_id\" => \"0bb5c580-6586-417c-8957-a2695f509d39\", \"se"},{"event":"cmd_output","timestamp":1607098219,"output":"rvice\" => \"local\", \"snapshot_id\" => \"\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"]"},{"event":"cmd_output","timestamp":1607098219,"output":", \"triggered_by\" => \"hook\", \"wf_id\" => \"a8344254-b96d-41b3-b239-5a234156ea28\", \"wf_number\" => 1, \"wo"},{"event":"cmd_output","timestamp":1607098219,"output":"rking_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:10:19.127 [info] ppl_id: 2ce0d223-2beb-4803-9a5e-58ed77a"},{"event":"cmd_output","timestamp":1607098219,"output":"721ea, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098219,"output":".Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:19.128 [info] ppl_id: 15f67058-ec8f-48"},{"event":"cmd_output","timestamp":1607098219,"output":"28-893d-7bf38b94a020, type: PplRequests, event: persisted schedule request with request_token: 34962"},{"event":"cmd_output","timestamp":1607098219,"output":"d60-1632-43b1-ae23-1de6504ce7e1, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_res"},{"event":"cmd_output","timestamp":1607098219,"output":"ponse/2(L55), \n\u001b[0m\u001b[22m\n16:10:19.132 [info] ppl_id: 15f67058-ec8f-4828-893d-7bf38b94a020, type: "},{"event":"cmd_output","timestamp":1607098219,"output":"Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.Ppl"},{"event":"cmd_output","timestamp":1607098219,"output":"sQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:19.135 [info] Persisted ppl_sub_init for pipe"},{"event":"cmd_output","timestamp":1607098219,"output":"line with ppl_id: 15f67058-ec8f-4828-893d-7bf38b94a020: %Ppl.PplSubInits.Model.PplSubInits{__meta__:"},{"event":"cmd_output","timestamp":1607098219,"output":" #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil,"},{"event":"cmd_output","timestamp":1607098219,"output":" id: 26, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:10:19.133869], pi"},{"event":"cmd_output","timestamp":1607098219,"output":"peline_requests: #Ecto.Association.NotLoaded, ppl_id: "},{"event":"cmd_output","timestamp":1607098219,"output":"\"15f67058-ec8f-4828-893d-7bf38b94a020\", recovery_count: 0, result: nil, result_reason: nil, state: \""},{"event":"cmd_output","timestamp":1607098219,"output":"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:19.13"},{"event":"cmd_output","timestamp":1607098219,"output":"3881]}\n\u001b[0m\u001b[22m\n16:10:19.148 [info] ppl_id: 15f67058-ec8f-4828-893d-7bf38b94a020, type: PplReque"},{"event":"cmd_output","timestamp":1607098219,"output":"sts, event: persisted source_args for pipeline: 15f67058-ec8f-4828-893d-7bf38b94a020, origin: Elixir"},{"event":"cmd_output","timestamp":1607098219,"output":".Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:19.151 [info] pp"},{"event":"cmd_output","timestamp":1607098219,"output":"l_id: 15f67058-ec8f-4828-893d-7bf38b94a020, type: PplSubInits, state: fetching, event: exit_scheduli"},{"event":"cmd_output","timestamp":1607098219,"output":"ng, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:19"},{"event":"cmd_output","timestamp":1607098219,"output":".168 [info] ppl_id: 2ce0d223-2beb-4803-9a5e-58ed77a721ea, type: PplSubInits, state: regular_init, e"},{"event":"cmd_output","timestamp":1607098219,"output":"vent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n"},{"event":"cmd_output","timestamp":1607098219,"output":"\u001b[0m\u001b[22m\n16:10:19.192 [info] ppl_id: 15f67058-ec8f-4828-893d-7bf38b94a020, type: PplSubInits, sta"},{"event":"cmd_output","timestamp":1607098219,"output":"te: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_stat"},{"event":"cmd_output","timestamp":1607098219,"output":"e_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:19.215 [info] ppl_id: 2ce0d223-2beb-4803-9a5e-58ed77a721ea, typ"},{"event":"cmd_output","timestamp":1607098219,"output":"e: PplRequests, event: persisted definition for request with request_token: b34f7d26-f227-40e4-bfc7-"},{"event":"cmd_output","timestamp":1607098219,"output":"efc51b57bcd1, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b["},{"event":"cmd_output","timestamp":1607098219,"output":"0m\u001b[22m\n16:10:19.225 [info] ppl_id: not_available, event: created, origin: Elixir.Ppl.PplSubInits."},{"event":"cmd_output","timestamp":1607098219,"output":"STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:19.225 [info] event: created, origi"},{"event":"cmd_output","timestamp":1607098219,"output":"n: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:19.225 [in"},{"event":"cmd_output","timestamp":1607098219,"output":"fo] ppl_id: 2ce0d223-2beb-4803-9a5e-58ed77a721ea, type: PplBlocks, block_index: 0, state: initializ"},{"event":"cmd_output","timestamp":1607098219,"output":"ing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.a"},{"event":"cmd_output","timestamp":1607098219,"output":"ll_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:19.225 [info] ppl_id: 2ce0d223-2beb-4803-9a5e-58ed77a721ea, type"},{"event":"cmd_output","timestamp":1607098219,"output":": PplBlocks, block_index: 1, state: initializing, event: created, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098219,"output":"Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:19.227 [info] ppl_i"},{"event":"cmd_output","timestamp":1607098219,"output":"d: 2ce0d223-2beb-4803-9a5e-58ed77a721ea, type: PplSubInits, state: done, result: passed, event: exit"},{"event":"cmd_output","timestamp":1607098219,"output":"_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098219,"output":"\n16:10:19.236 [info] ppl_id: 2ce0d223-2beb-4803-9a5e-58ed77a721ea, type: Ppls, state: pending, even"},{"event":"cmd_output","timestamp":1607098219,"output":"t: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098219,"output":"m\u001b[22m\n16:10:19.248 [info] ppl_id: 2ce0d223-2beb-4803-9a5e-58ed77a721ea, type: PplBlocks, block_in"},{"event":"cmd_output","timestamp":1607098219,"output":"dex: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.lo"},{"event":"cmd_output","timestamp":1607098219,"output":"g_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:19.254 [info] ppl_id: 2ce0d223-2beb-4803-9a5e-58ed77a721e"},{"event":"cmd_output","timestamp":1607098219,"output":"a, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM."},{"event":"cmd_output","timestamp":1607098219,"output":"Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:19.268 [info] ppl_id: 2ce0d223-2beb-4803-9a5e-58ed"},{"event":"cmd_output","timestamp":1607098219,"output":"77a721ea, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loop"},{"event":"cmd_output","timestamp":1607098219,"output":"er.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:19.269 [info] ppl_id: 2ce0d223-2beb-4803-9a"},{"event":"cmd_output","timestamp":1607098219,"output":"5e-58ed77a721ea, type: PplBlocks, block_index: 1, state: waiting, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098219,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:19.277 [info] P"},{"event":"cmd_output","timestamp":1607098219,"output":"plBlocks WaitingState STM is scheduling block 0 from pipeline: \"2ce0d223-2beb-4803-9a5e-58ed77a721ea"},{"event":"cmd_output","timestamp":1607098219,"output":"\"\n\u001b[0m\u001b[22m\n16:10:19.285 [info] block_id: 6fa0f85b-e3c9-4e4c-814e-782a63897c02, type: BlockReques"},{"event":"cmd_output","timestamp":1607098219,"output":"ts, event: persisted block run request from ppl 2ce0d223-2beb-4803-9a5e-58ed77a721ea for block 0, or"},{"event":"cmd_output","timestamp":1607098219,"output":"igin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098219,"output":":10:19.287 [info] block_id: 6fa0f85b-e3c9-4e4c-814e-782a63897c02, type: Blocks, state: initializing"},{"event":"cmd_output","timestamp":1607098219,"output":", event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L"},{"event":"cmd_output","timestamp":1607098219,"output":"43), \n\u001b[0m\u001b[22m\n16:10:19.290 [info] Block 0 of pipeline with id: 2ce0d223-2beb-4803-9a5e-58ed77a7"},{"event":"cmd_output","timestamp":1607098219,"output":"21ea scheduled in block service with id: : \"6fa0f85b-e3c9-4e4c-814e-782a63897c02\"\n\u001b[0m\u001b[22m\n16:10:"},{"event":"cmd_output","timestamp":1607098219,"output":"19.295 [info] ppl_id: 15f67058-ec8f-4828-893d-7bf38b94a020, type: PplRequests, event: persisted def"},{"event":"cmd_output","timestamp":1607098219,"output":"inition for request with request_token: 34962d60-1632-43b1-ae23-1de6504ce7e1, origin: Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098219,"output":"Requests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:19.296 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098219,"output":": 2ce0d223-2beb-4803-9a5e-58ed77a721ea, type: PplBlocks, block_index: 0, state: running, event: exit"},{"event":"cmd_output","timestamp":1607098219,"output":"_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098219,"output":"\n16:10:19.299 [info] block_id: 6fa0f85b-e3c9-4e4c-814e-782a63897c02, type: BlockRequests, event: pe"},{"event":"cmd_output","timestamp":1607098219,"output":"rsisted build and sub_ppl details for block_request: 6fa0f85b-e3c9-4e4c-814e-782a63897c02, origin: E"},{"event":"cmd_output","timestamp":1607098219,"output":"lixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:19.302 "},{"event":"cmd_output","timestamp":1607098219,"output":"[info] block_id: 6fa0f85b-e3c9-4e4c-814e-782a63897c02, type: Tasks, state: pending, event: created,"},{"event":"cmd_output","timestamp":1607098219,"output":" recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098219,"output":"\u001b[22m\n16:10:19.306 [info] block_id: 6fa0f85b-e3c9-4e4c-814e-782a63897c02, type: Blocks, state: run"},{"event":"cmd_output","timestamp":1607098219,"output":"ning, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098219,"output":"90), \n\u001b[0m\u001b[22m\n16:10:19.312 [info] ppl_id: not_available, event: created, origin: Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098219,"output":"SubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:19.312 [info] event: creat"},{"event":"cmd_output","timestamp":1607098219,"output":"ed, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:1"},{"event":"cmd_output","timestamp":1607098219,"output":"9.312 [info] ppl_id: 15f67058-ec8f-4828-893d-7bf38b94a020, type: PplBlocks, block_index: 0, state: "},{"event":"cmd_output","timestamp":1607098219,"output":"initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularIn"},{"event":"cmd_output","timestamp":1607098219,"output":"itState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:19.312 [info] ppl_id: 15f67058-ec8f-4828-893d-7bf38b94a"},{"event":"cmd_output","timestamp":1607098219,"output":"020, type: PplBlocks, block_index: 1, state: initializing, event: created, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098219,"output":": Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:19.317 [inf"},{"event":"cmd_output","timestamp":1607098219,"output":"o] ppl_id: 15f67058-ec8f-4828-893d-7bf38b94a020, type: PplSubInits, state: done, result: passed, ev"},{"event":"cmd_output","timestamp":1607098219,"output":"ent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b"},{"event":"cmd_output","timestamp":1607098219,"output":"[0m\u001b[22m\n16:10:19.339 [info] block_id: 6fa0f85b-e3c9-4e4c-814e-782a63897c02, type: Tasks, state: r"},{"event":"cmd_output","timestamp":1607098219,"output":"unning, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1"},{"event":"cmd_output","timestamp":1607098219,"output":"(L90), \n\u001b[0m\u001b[22m\n16:10:19.347 [info] ppl_id: 15f67058-ec8f-4828-893d-7bf38b94a020, type: Ppls, s"},{"event":"cmd_output","timestamp":1607098219,"output":"tate: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098219,"output":"hange/1(L90), \n\u001b[0m\u001b[22m\n16:10:19.353 [info] ppl_id: 15f67058-ec8f-4828-893d-7bf38b94a020, type: "},{"event":"cmd_output","timestamp":1607098219,"output":"PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098219,"output":".Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:19.371 [info] block_id: 6fa0f85b-e3c9-"},{"event":"cmd_output","timestamp":1607098219,"output":"4e4c-814e-782a63897c02, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098219,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:19.373 [info] ppl_id: 15f67058-"},{"event":"cmd_output","timestamp":1607098219,"output":"ec8f-4828-893d-7bf38b94a020, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098219,"output":"origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:19.375 [info] ppl_id: 15"},{"event":"cmd_output","timestamp":1607098219,"output":"f67058-ec8f-4828-893d-7bf38b94a020, type: PplBlocks, block_index: 1, state: waiting, event: exit_sch"},{"event":"cmd_output","timestamp":1607098219,"output":"eduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098219,"output":"10:19.383 [info] block_id: 6fa0f85b-e3c9-4e4c-814e-782a63897c02, type: Blocks, state: done, event: "},{"event":"cmd_output","timestamp":1607098219,"output":"exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098219,"output":"22m\n16:10:19.402 [info] ppl_id: 2ce0d223-2beb-4803-9a5e-58ed77a721ea, block_id: 6fa0f85b-e3c9-4e4c"},{"event":"cmd_output","timestamp":1607098219,"output":"-814e-782a63897c02, type: PplBlocks, block_index: 0, state: done, result: failed, event: exit_schedu"},{"event":"cmd_output","timestamp":1607098219,"output":"ling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:"},{"event":"cmd_output","timestamp":1607098219,"output":"19.418 [info] PplBlocks WaitingState STM is scheduling block 1 from pipeline: \"2ce0d223-2beb-4803-9"},{"event":"cmd_output","timestamp":1607098219,"output":"a5e-58ed77a721ea\"\n\u001b[0m\u001b[22m\n16:10:19.429 [info] ppl_id: 2ce0d223-2beb-4803-9a5e-58ed77a721ea, typ"},{"event":"cmd_output","timestamp":1607098219,"output":"e: PplBlocks, block_index: 1, state: done, result: canceled, event: exit_scheduling, recovery_count:"},{"event":"cmd_output","timestamp":1607098219,"output":" 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:19.447 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098219,"output":": 2ce0d223-2beb-4803-9a5e-58ed77a721ea, type: Ppls, state: done, result: failed, event: exit_schedul"},{"event":"cmd_output","timestamp":1607098219,"output":"ing, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:1"},{"event":"cmd_output","timestamp":1607098219,"output":"9.503 [info] ppl_id: 15f67058-ec8f-4828-893d-7bf38b94a020, type: Ppls, state: running, event: exit_"},{"event":"cmd_output","timestamp":1607098219,"output":"scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098219,"output":"16:10:19.521 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"15f67058-ec8f-"},{"event":"cmd_output","timestamp":1607098219,"output":"4828-893d-7bf38b94a020\"\n\u001b[0m\u001b[22m\n16:10:19.530 [info] block_id: 5834a422-646c-4002-ac34-a4abbb7da"},{"event":"cmd_output","timestamp":1607098219,"output":"f7a, type: BlockRequests, event: persisted block run request from ppl 15f67058-ec8f-4828-893d-7bf38b"},{"event":"cmd_output","timestamp":1607098219,"output":"94a020 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4"},{"event":"cmd_output","timestamp":1607098219,"output":"(L35), \n\u001b[0m\u001b[22m\n16:10:19.534 [info] block_id: 5834a422-646c-4002-ac34-a4abbb7daf7a, type: Block"},{"event":"cmd_output","timestamp":1607098219,"output":"s, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.Bl"},{"event":"cmd_output","timestamp":1607098219,"output":"ocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:19.536 [info] Block 0 of pipeline with id: 15f67058-e"},{"event":"cmd_output","timestamp":1607098219,"output":"c8f-4828-893d-7bf38b94a020 scheduled in block service with id: : \"5834a422-646c-4002-ac34-a4abbb7daf"},{"event":"cmd_output","timestamp":1607098219,"output":"7a\"\n\u001b[0m\u001b[22m\n16:10:19.538 [info] ppl_id: 15f67058-ec8f-4828-893d-7bf38b94a020, type: PplBlocks, "},{"event":"cmd_output","timestamp":1607098219,"output":"block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM"},{"event":"cmd_output","timestamp":1607098219,"output":".Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:19.543 [info] block_id: 5834a422-646c-4002-ac34-a"},{"event":"cmd_output","timestamp":1607098219,"output":"4abbb7daf7a, type: BlockRequests, event: persisted build and sub_ppl details for block_request: 5834"},{"event":"cmd_output","timestamp":1607098219,"output":"a422-646c-4002-ac34-a4abbb7daf7a, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.inse"},{"event":"cmd_output","timestamp":1607098219,"output":"rt_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:19.546 [info] block_id: 5834a422-646c-4002-ac34-a4abbb7daf7a, t"},{"event":"cmd_output","timestamp":1607098219,"output":"ype: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandle"},{"event":"cmd_output","timestamp":1607098219,"output":"r.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:19.551 [info] block_id: 5834a422-646c-4002-"},{"event":"cmd_output","timestamp":1607098219,"output":"ac34-a4abbb7daf7a, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098219,"output":"Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:19.572 [info] block_id: 5834a422"},{"event":"cmd_output","timestamp":1607098219,"output":"-646c-4002-ac34-a4abbb7daf7a, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0"},{"event":"cmd_output","timestamp":1607098219,"output":", origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:19.706 [info] block_id"},{"event":"cmd_output","timestamp":1607098219,"output":": 5834a422-646c-4002-ac34-a4abbb7daf7a, type: Tasks, state: done, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098219,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:19.715 [info] b"},{"event":"cmd_output","timestamp":1607098219,"output":"lock_id: 5834a422-646c-4002-ac34-a4abbb7daf7a, type: Blocks, state: done, event: exit_scheduling, re"},{"event":"cmd_output","timestamp":1607098219,"output":"covery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:19.726 ["},{"event":"cmd_output","timestamp":1607098219,"output":"info] ppl_id: 15f67058-ec8f-4828-893d-7bf38b94a020, block_id: 5834a422-646c-4002-ac34-a4abbb7daf7a,"},{"event":"cmd_output","timestamp":1607098219,"output":" type: PplBlocks, block_index: 0, state: done, result: failed, event: exit_scheduling, recovery_coun"},{"event":"cmd_output","timestamp":1607098219,"output":"t: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:19.734 [info] PplB"},{"event":"cmd_output","timestamp":1607098219,"output":"locks WaitingState STM is scheduling block 1 from pipeline: \"15f67058-ec8f-4828-893d-7bf38b94a020\"\n"},{"event":"cmd_output","timestamp":1607098219,"output":"\u001b[0m\u001b[22m\n16:10:19.745 [info] ppl_id: 15f67058-ec8f-4828-893d-7bf38b94a020, type: PplBlocks, block"},{"event":"cmd_output","timestamp":1607098219,"output":"_index: 1, state: done, result: canceled, event: exit_scheduling, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098219,"output":"Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:19.761 [info] ppl_id: 15f67058-ec8f-482"},{"event":"cmd_output","timestamp":1607098219,"output":"8-893d-7bf38b94a020, type: Ppls, state: done, result: failed, event: exit_scheduling, recovery_count"},{"event":"cmd_output","timestamp":1607098219,"output":": 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:19.769 [info] Reque"},{"event":"cmd_output","timestamp":1607098219,"output":"st: 'partial_rebuild', request: %{ppl_id: \"15f67058-ec8f-4828-893d-7bf38b94a020\", request_token: \"fe"},{"event":"cmd_output","timestamp":1607098219,"output":"4a060e-d656-4e5b-9b37-1dad498644c1\", user_id: \"\"}\n\u001b[0m\u001b[22m\n16:10:19.772 [info] ppl_id: a8e827ce-"},{"event":"cmd_output","timestamp":1607098219,"output":"5f3b-4e80-b940-df542b6c54ab, type: PplRequests, event: persisted schedule request with request_token"},{"event":"cmd_output","timestamp":1607098219,"output":": fe4a060e-d656-4e5b-9b37-1dad498644c1, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.proc"},{"event":"cmd_output","timestamp":1607098219,"output":"ess_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:19.775 [info] ppl_id: a8e827ce-5f3b-4e80-b940-df542b6c54ab,"},{"event":"cmd_output","timestamp":1607098219,"output":" type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Mo"},{"event":"cmd_output","timestamp":1607098219,"output":"del.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:19.785 [info] Persisted ppl_sub_init f"},{"event":"cmd_output","timestamp":1607098219,"output":"or pipeline with ppl_id: a8e827ce-5f3b-4e80-b940-df542b6c54ab: %Ppl.PplSubInits.Model.PplSubInits{__"},{"event":"cmd_output","timestamp":1607098219,"output":"meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_descriptio"},{"event":"cmd_output","timestamp":1607098219,"output":"n: nil, id: 27, in_scheduling: false, init_type: \"rebuild\", inserted_at: ~N[2020-12-04 16:10:19.7843"},{"event":"cmd_output","timestamp":1607098219,"output":"44], pipeline_requests: #Ecto.Association.NotLoaded, p"},{"event":"cmd_output","timestamp":1607098219,"output":"pl_id: \"a8e827ce-5f3b-4e80-b940-df542b6c54ab\", recovery_count: 0, result: nil, result_reason: nil, s"},{"event":"cmd_output","timestamp":1607098219,"output":"tate: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:1"},{"event":"cmd_output","timestamp":1607098219,"output":"0:19.784357]}\n\u001b[0m\u001b[22m\n16:10:19.827 [info] ppl_id: a8e827ce-5f3b-4e80-b940-df542b6c54ab, type: P"},{"event":"cmd_output","timestamp":1607098219,"output":"plRequests, event: persisted source_args for pipeline: a8e827ce-5f3b-4e80-b940-df542b6c54ab, origin:"},{"event":"cmd_output","timestamp":1607098219,"output":" Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:19.831 [in"},{"event":"cmd_output","timestamp":1607098219,"output":"fo] ppl_id: a8e827ce-5f3b-4e80-b940-df542b6c54ab, type: PplSubInits, state: fetching, event: exit_s"},{"event":"cmd_output","timestamp":1607098219,"output":"cheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098219,"output":"6:10:19.836 [info] Request: 'run: %{\"auto_promoted\" => false, \"branch_id\" => \"bdce0663-1c92-4344-81"},{"event":"cmd_output","timestamp":1607098219,"output":"a5-7b176cb05e4b\", \"branch_name\" => \"master\", \"client_id\" => \"eaeff548-cc76-43c0-985c-0c249e718667\", "},{"event":"cmd_output","timestamp":1607098219,"output":"\"commit_sha\" => \"75891a4469\", \"definition_file\" => \"\", \"env_vars\" => [], \"extension_of\" => \"2ce0d223"},{"event":"cmd_output","timestamp":1607098219,"output":"-2beb-4803-9a5e-58ed77a721ea\", \"file_name\" => \"/foo/bar/test.yml\", \"hook_id\" => \"327b3590-364b-11eb-"},{"event":"cmd_output","timestamp":1607098219,"output":"810a-5254005464e2\", \"label\" => \"master\", \"organization_id\" => \"fcd76cdb-c637-42a9-a488-93114297b9f9\""},{"event":"cmd_output","timestamp":1607098219,"output":", \"owner\" => \"rt\", \"partially_rerun_by\" => \"\", \"prev_ppl_artefact_ids\" => [\"8299454d-872f-438a-b91b-"},{"event":"cmd_output","timestamp":1607098219,"output":"76a3fe043c83\", \"123e6edd-07d1-469a-b899-8a123499bf03\"], \"project_id\" => \"d4609f23-a69e-4134-abf0-6ac"},{"event":"cmd_output","timestamp":1607098219,"output":"a734a1536\", \"promoter_id\" => \"\", \"repo_name\" => \"20_workflow_builder\", \"request_token\" => \"fae0744b-"},{"event":"cmd_output","timestamp":1607098219,"output":"cafc-464d-8ffc-5fd0238bb797\", \"requester_id\" => \"0bb5c580-6586-417c-8957-a2695f509d39\", \"service\" =>"},{"event":"cmd_output","timestamp":1607098219,"output":" \"local\", \"snapshot_id\" => \"\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"trigge"},{"event":"cmd_output","timestamp":1607098219,"output":"red_by\" => \"hook\", \"wf_id\" => \"a8344254-b96d-41b3-b239-5a234156ea28\", \"wf_number\" => 1, \"working_dir"},{"event":"cmd_output","timestamp":1607098219,"output":"\" => \"/foo/bar\"}\n\u001b[0m\u001b[22m\n16:10:19.839 [info] ppl_id: 5b2e6fd9-e7ce-40ae-a842-ed116add183e, type"},{"event":"cmd_output","timestamp":1607098219,"output":": PplRequests, event: persisted schedule request with request_token: fae0744b-cafc-464d-8ffc-5fd0238"},{"event":"cmd_output","timestamp":1607098219,"output":"bb797, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098219,"output":"\n16:10:19.842 [info] ppl_id: 5b2e6fd9-e7ce-40ae-a842-ed116add183e, type: Ppls, state: initializing,"},{"event":"cmd_output","timestamp":1607098219,"output":" event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/"},{"event":"cmd_output","timestamp":1607098219,"output":"2(L124), \n\u001b[0m\u001b[22m\n16:10:19.846 [info] Persisted ppl_sub_init for pipeline with ppl_id: 5b2e6fd9"},{"event":"cmd_output","timestamp":1607098219,"output":"-e7ce-40ae-a842-ed116add183e: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:lo"},{"event":"cmd_output","timestamp":1607098219,"output":"aded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 28, in_scheduling: fa"},{"event":"cmd_output","timestamp":1607098219,"output":"lse, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:10:19.844277], pipeline_requests: #Ecto.Ass"},{"event":"cmd_output","timestamp":1607098219,"output":"ociation.NotLoaded, ppl_id: \"5b2e6fd9-e7ce-40ae-a842-e"},{"event":"cmd_output","timestamp":1607098219,"output":"d116add183e\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_reques"},{"event":"cmd_output","timestamp":1607098219,"output":"t: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:19.844288]}\n\u001b[0m\u001b[22m\n16:10:1"},{"event":"cmd_output","timestamp":1607098219,"output":"9.867 [info] ppl_id: a8e827ce-5f3b-4e80-b940-df542b6c54ab, type: PplSubInits, state: regular_init, "},{"event":"cmd_output","timestamp":1607098219,"output":"event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \r"},{"event":"cmd_output","timestamp":1607098219,"output":"\n\u001b[0m\u001b[22m\n16:10:19.867 [info] ppl_id: 5b2e6fd9-e7ce-40ae-a842-ed116add183e, type: PplRequests, ev"},{"event":"cmd_output","timestamp":1607098219,"output":"ent: persisted source_args for pipeline: 5b2e6fd9-e7ce-40ae-a842-ed116add183e, origin: Elixir.Ppl.Pp"},{"event":"cmd_output","timestamp":1607098219,"output":"lRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:19.872 [info] ppl_id: 5"},{"event":"cmd_output","timestamp":1607098219,"output":"b2e6fd9-e7ce-40ae-a842-ed116add183e, type: PplSubInits, state: fetching, event: exit_scheduling, rec"},{"event":"cmd_output","timestamp":1607098219,"output":"overy_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test gRPC ge"},{"event":"cmd_output","timestamp":1607098219,"output":"t_path() - works for all combinations of request params (3774.4ms)\u001b[0m\n * test gRPC list() - filte"},{"event":"cmd_output","timestamp":1607098220,"output":"r by label and git_ref_types\u001b[22m\n16:10:20.102 [info] Request: 'run: %{\"branch_id\" => \"eb652664-96"},{"event":"cmd_output","timestamp":1607098220,"output":"1e-4520-b5fa-213f4ec3931e\", \"branch_name\" => \"to_list\", \"client_id\" => \"0b119bd7-8c30-4b95-a555-4ced"},{"event":"cmd_output","timestamp":1607098220,"output":"4b5e9d24\", \"commit_sha\" => \"sha0\", \"definition_file\" => \"\", \"hook_id\" => \"34c8d302-364b-11eb-b58c-52"},{"event":"cmd_output","timestamp":1607098220,"output":"54005464e2\", \"label\" => \"to_list\", \"organization_id\" => \"org1\", \"owner\" => \"rt\", \"project_id\" => \"li"},{"event":"cmd_output","timestamp":1607098220,"output":"st_project\", \"repo_name\" => \"2_basic\", \"request_token\" => \"34c8c4f2-364b-11eb-a929-5254005464e2\", \"r"},{"event":"cmd_output","timestamp":1607098220,"output":"equester_id\" => \"f85008d7-0acb-4086-8ef4-4d575758a530\", \"service\" => \"local\", \"snapshot_id\" => \"\", \""},{"event":"cmd_output","timestamp":1607098220,"output":"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"9"},{"event":"cmd_output","timestamp":1607098220,"output":"e31dd04-98cf-4736-89a0-fa0995e7d7f2\"}\n\u001b[0m\u001b[22m\n16:10:20.152 [info] ppl_id: 13153ca3-89ed-4895-b2"},{"event":"cmd_output","timestamp":1607098220,"output":"b3-3c33eedee019, type: PplRequests, event: persisted schedule request with request_token: 34c8c4f2-3"},{"event":"cmd_output","timestamp":1607098220,"output":"64b-11eb-a929-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response"},{"event":"cmd_output","timestamp":1607098220,"output":"/2(L55), \n\u001b[0m\u001b[22m\n16:10:20.157 [info] ppl_id: 13153ca3-89ed-4895-b2b3-3c33eedee019, type: Ppls,"},{"event":"cmd_output","timestamp":1607098220,"output":" state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQuer"},{"event":"cmd_output","timestamp":1607098220,"output":"ies.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:20.164 [info] Project list_project and branch to_l"},{"event":"cmd_output","timestamp":1607098220,"output":"istlatest_wf details updated: \"wf_id: 9e31dd04-98cf-4736-89a0-fa0995e7d7f2, wf_number: 1\"\n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098220,"output":"\n16:10:20.167 [info] Persisted ppl_sub_init for pipeline with ppl_id: 13153ca3-89ed-4895-b2b3-3c33"},{"event":"cmd_output","timestamp":1607098220,"output":"eedee019: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_"},{"event":"cmd_output","timestamp":1607098220,"output":"inits\">, compile_task_id: nil, error_description: nil, id: 29, in_scheduling: false, init_type: \"reg"},{"event":"cmd_output","timestamp":1607098220,"output":"ular\", inserted_at: ~N[2020-12-04 16:10:20.164689], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"13153ca3-89ed-4895-b2b3-3c33eedee019\", recove"},{"event":"cmd_output","timestamp":1607098220,"output":"ry_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_re"},{"event":"cmd_output","timestamp":1607098220,"output":"quest_desc: nil, updated_at: ~N[2020-12-04 16:10:20.164699]}\n\u001b[0m\u001b[22m\n16:10:20.191 [info] Reques"},{"event":"cmd_output","timestamp":1607098220,"output":"t: 'run: %{\"branch_id\" => \"3f607fb4-8f2a-45e3-98c8-820045dc34fb\", \"branch_name\" => \"refs/tag/v1.0\", "},{"event":"cmd_output","timestamp":1607098220,"output":"\"client_id\" => \"00eb2cd5-7ba8-4902-9e12-4949bcf14d67\", \"commit_sha\" => \"sha0\", \"definition_file\" => "},{"event":"cmd_output","timestamp":1607098220,"output":"\"\", \"hook_id\" => \"tag\", \"label\" => \"v1.0\", \"organization_id\" => \"org1\", \"owner\" => \"rt\", \"project_id"},{"event":"cmd_output","timestamp":1607098220,"output":"\" => \"list_project\", \"repo_name\" => \"2_basic\", \"request_token\" => \"34d4f394-364b-11eb-84f0-525400546"},{"event":"cmd_output","timestamp":1607098220,"output":"4e2\", \"requester_id\" => \"ecb93f84-bcc6-429e-bdb0-06980a9d274e\", \"service\" => \"local\", \"snapshot_id\" "},{"event":"cmd_output","timestamp":1607098220,"output":"=> \"\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"triggered_by\" => \"hook\", \"wf_i"},{"event":"cmd_output","timestamp":1607098220,"output":"d\" => \"298bab75-d2ba-4d91-b2e7-c809306c1421\"}\n\u001b[0m\u001b[22m\n16:10:20.233 [info] ppl_id: 0d6b1690-3999"},{"event":"cmd_output","timestamp":1607098220,"output":"-46f3-bb6a-eeae8f1f0767, type: PplRequests, event: persisted schedule request with request_token: 34"},{"event":"cmd_output","timestamp":1607098220,"output":"d4f394-364b-11eb-84f0-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_"},{"event":"cmd_output","timestamp":1607098220,"output":"response/2(L55), \n\u001b[0m\u001b[22m\n16:10:20.237 [info] ppl_id: 0d6b1690-3999-46f3-bb6a-eeae8f1f0767, typ"},{"event":"cmd_output","timestamp":1607098220,"output":"e: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model."},{"event":"cmd_output","timestamp":1607098220,"output":"PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:20.246 [info] Project list_project and bra"},{"event":"cmd_output","timestamp":1607098220,"output":"nch refs/tag/v1.0latest_wf details updated: \"wf_id: 298bab75-d2ba-4d91-b2e7-c809306c1421, wf_number:"},{"event":"cmd_output","timestamp":1607098220,"output":" 1\"\n\u001b[0m\u001b[22m\n16:10:20.248 [info] Persisted ppl_sub_init for pipeline with ppl_id: 0d6b1690-3999-"},{"event":"cmd_output","timestamp":1607098220,"output":"46f3-bb6a-eeae8f1f0767: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, "},{"event":"cmd_output","timestamp":1607098220,"output":"\"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 30, in_scheduling: false, i"},{"event":"cmd_output","timestamp":1607098220,"output":"nit_type: \"regular\", inserted_at: ~N[2020-12-04 16:10:20.247109], pipeline_requests: #Ecto.Associati"},{"event":"cmd_output","timestamp":1607098220,"output":"on.NotLoaded, ppl_id: \"0d6b1690-3999-46f3-bb6a-eeae8f1"},{"event":"cmd_output","timestamp":1607098220,"output":"f0767\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil"},{"event":"cmd_output","timestamp":1607098220,"output":", terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:20.247118]}\n\u001b[0m\u001b[22m\n16:10:20.258 "},{"event":"cmd_output","timestamp":1607098220,"output":"[info] Request: 'run: %{\"branch_id\" => \"453df03a-bddb-499b-af13-29298c7a2a8c\", \"branch_name\" => \"pu"},{"event":"cmd_output","timestamp":1607098220,"output":"ll-request-123\", \"client_id\" => \"d6a7defd-5716-4cf7-97b2-cfa553085309\", \"commit_sha\" => \"sha0\", \"def"},{"event":"cmd_output","timestamp":1607098220,"output":"inition_file\" => \"\", \"hook_id\" => \"pr\", \"label\" => \"123\", \"organization_id\" => \"org1\", \"owner\" => \"r"},{"event":"cmd_output","timestamp":1607098220,"output":"t\", \"project_id\" => \"list_project\", \"repo_name\" => \"2_basic\", \"request_token\" => \"34e0f4e6-364b-11eb"},{"event":"cmd_output","timestamp":1607098220,"output":"-a328-5254005464e2\", \"requester_id\" => \"f31c946b-da80-4ce7-986b-0f4fc5808713\", \"service\" => \"local\","},{"event":"cmd_output","timestamp":1607098220,"output":" \"snapshot_id\" => \"\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"triggered_by\" ="},{"event":"cmd_output","timestamp":1607098220,"output":"> \"hook\", \"wf_id\" => \"2faeb009-5646-4f6f-8363-d8bc735b6b37\"}\n\u001b[0m\u001b[22m\n16:10:20.299 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098220,"output":": d85a8d6c-636f-403c-94dd-7334ef1f3a97, type: PplRequests, event: persisted schedule request with re"},{"event":"cmd_output","timestamp":1607098220,"output":"quest_token: 34e0f4e6-364b-11eb-a328-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQ"},{"event":"cmd_output","timestamp":1607098220,"output":"ueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:20.303 [info] ppl_id: d85a8d6c-636f-403c-94dd-73"},{"event":"cmd_output","timestamp":1607098220,"output":"34ef1f3a97, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098220,"output":"Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:20.311 [info] Project list_"},{"event":"cmd_output","timestamp":1607098220,"output":"project and pr 123latest_wf details updated: \"wf_id: 2faeb009-5646-4f6f-8363-d8bc735b6b37, wf_number"},{"event":"cmd_output","timestamp":1607098220,"output":": 1\"\n\u001b[0m\u001b[22m\n16:10:20.313 [info] Persisted ppl_sub_init for pipeline with ppl_id: d85a8d6c-636f"},{"event":"cmd_output","timestamp":1607098220,"output":"-403c-94dd-7334ef1f3a97: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded,"},{"event":"cmd_output","timestamp":1607098220,"output":" \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 31, in_scheduling: false, "},{"event":"cmd_output","timestamp":1607098220,"output":"init_type: \"regular\", inserted_at: ~N[2020-12-04 16:10:20.312074], pipeline_requests: #Ecto.Associat"},{"event":"cmd_output","timestamp":1607098220,"output":"ion.NotLoaded, ppl_id: \"d85a8d6c-636f-403c-94dd-7334ef"},{"event":"cmd_output","timestamp":1607098220,"output":"1f3a97\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: ni"},{"event":"cmd_output","timestamp":1607098220,"output":"l, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:20.312086]}\n\u001b[0m\u001b[22m\n16:10:20.317"},{"event":"cmd_output","timestamp":1607098220,"output":" [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls"},{"event":"cmd_output","timestamp":1607098220,"output":".STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-ST"},{"event":"cmd_output","timestamp":1607098220,"output":"MHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"pending\", \"done\"]"},{"event":"cmd_output","timestamp":1607098220,"output":", cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher"},{"event":"cmd_output","timestamp":1607098220,"output":"_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, r"},{"event":"cmd_output","timestamp":1607098220,"output":"eturning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema:"},{"event":"cmd_output","timestamp":1607098220,"output":" Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:20.317 [info] Periodic from module "},{"event":"cmd_output","timestamp":1607098220,"output":"Elixir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler.PendingState :: period:"},{"event":"cmd_output","timestamp":1607098220,"output":" 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args"},{"event":"cmd_output","timestamp":1607098220,"output":": %{allowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: P"},{"event":"cmd_output","timestamp":1607098220,"output":"pl.Ppls.Model.Ppls, observed_state: \"pending\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHa"},{"event":"cmd_output","timestamp":1607098220,"output":"ndler.PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :s"},{"event":"cmd_output","timestamp":1607098220,"output":"tate, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupe"},{"event":"cmd_output","timestamp":1607098220,"output":"rvisor}\n\u001b[0m\u001b[22m\n16:10:20.318 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.QueuingStat"},{"event":"cmd_output","timestamp":1607098220,"output":"e with name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, metric_name: {\"Ppl.beholder-w"},{"event":"cmd_output","timestamp":1607098220,"output":"ake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{allowed_states: [\"queuing\", \"runni"},{"event":"cmd_output","timestamp":1607098220,"output":"ng\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", p"},{"event":"cmd_output","timestamp":1607098220,"output":"ublisher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo"},{"event":"cmd_output","timestamp":1607098220,"output":", returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], sche"},{"event":"cmd_output","timestamp":1607098220,"output":"ma: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:20.318 [info] Periodic from modu"},{"event":"cmd_output","timestamp":1607098220,"output":"le Elixir.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHandler.RunningState :: peri"},{"event":"cmd_output","timestamp":1607098220,"output":"od: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring a"},{"event":"cmd_output","timestamp":1607098220,"output":"rgs: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098220,"output":"s.Model.Ppls, observed_state: \"running\", publisher_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler"},{"event":"cmd_output","timestamp":1607098220,"output":".RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state,"},{"event":"cmd_output","timestamp":1607098220,"output":" :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSuperviso"},{"event":"cmd_output","timestamp":1607098220,"output":"r}\n\u001b[0m\u001b[22m\n16:10:20.319 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.StoppingState wi"},{"event":"cmd_output","timestamp":1607098220,"output":"th name Elixir.Ppl.Ppls.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake"},{"event":"cmd_output","timestamp":1607098220,"output":"_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"]"},{"event":"cmd_output","timestamp":1607098220,"output":", cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"stopping\", publisher_cb"},{"event":"cmd_output","timestamp":1607098220,"output":": #Function<0.71803493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning"},{"event":"cmd_output","timestamp":1607098220,"output":": [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098220,"output":"s.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:20.319 [info] Periodic from module Elixir.P"},{"event":"cmd_output","timestamp":1607098220,"output":"pl.PplSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: p"},{"event":"cmd_output","timestamp":1607098220,"output":"eriod: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, r"},{"event":"cmd_output","timestamp":1607098220,"output":"ecurring args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSu"},{"event":"cmd_output","timestamp":1607098220,"output":"bInits.Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, return"},{"event":"cmd_output","timestamp":1607098220,"output":"ing: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl."},{"event":"cmd_output","timestamp":1607098220,"output":"PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:20.319 [info] Periodic fro"},{"event":"cmd_output","timestamp":1607098220,"output":"m module Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler"},{"event":"cmd_output","timestamp":1607098220,"output":".FetchingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler"},{"event":"cmd_output","timestamp":1607098220,"output":"-FetchingState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"done\"], coolin"},{"event":"cmd_output","timestamp":1607098220,"output":"g_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fetching\", publis"},{"event":"cmd_output","timestamp":1607098220,"output":"her_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result"},{"event":"cmd_output","timestamp":1607098220,"output":", :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0"},{"event":"cmd_output","timestamp":1607098220,"output":"m\u001b[22m\n16:10:20.320 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CompilationState"},{"event":"cmd_output","timestamp":1607098220,"output":" with name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 100 ms, metric_name: {\"Ppl."},{"event":"cmd_output","timestamp":1607098220,"output":"beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurring args: %{allowed_state"},{"event":"cmd_output","timestamp":1607098220,"output":"s: [\"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098220,"output":"SubInits.Model.PplSubInits, observed_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, "},{"event":"cmd_output","timestamp":1607098220,"output":"returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema"},{"event":"cmd_output","timestamp":1607098220,"output":": Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:20.320 [info] Period"},{"event":"cmd_output","timestamp":1607098220,"output":"ic from module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.S"},{"event":"cmd_output","timestamp":1607098220,"output":"TMHandler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInit"},{"event":"cmd_output","timestamp":1607098220,"output":"s-STMHandler-RegularInitState\"]}, recurring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, i"},{"event":"cmd_output","timestamp":1607098220,"output":"nitial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_init\", publisher_cb: :skip"},{"event":"cmd_output","timestamp":1607098220,"output":", repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_c"},{"event":"cmd_output","timestamp":1607098220,"output":"ount, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10"},{"event":"cmd_output","timestamp":1607098220,"output":":20.320 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.InitializingState with name Eli"},{"event":"cmd_output","timestamp":1607098220,"output":"xir.Ppl.PplBlocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_u"},{"event":"cmd_output","timestamp":1607098220,"output":"p\", [\"Ppl-PplBlocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializin"},{"event":"cmd_output","timestamp":1607098220,"output":"g\", \"waiting\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_"},{"event":"cmd_output","timestamp":1607098220,"output":"state: \"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request,"},{"event":"cmd_output","timestamp":1607098220,"output":" :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model."},{"event":"cmd_output","timestamp":1607098220,"output":"PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:20.321 [info] Periodic from module Elixir.Ppl."},{"event":"cmd_output","timestamp":1607098220,"output":"PplBlocks.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler.WaitingState :: period: "},{"event":"cmd_output","timestamp":1607098220,"output":"1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurring"},{"event":"cmd_output","timestamp":1607098220,"output":" args: %{allowed_states: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098220,"output":"Blocks.Model.PplBlocks, observed_state: \"waiting\", publisher_cb: #Function<0.8975022/1 in Ppl.PplBlo"},{"event":"cmd_output","timestamp":1607098220,"output":"cks.STMHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updat"},{"event":"cmd_output","timestamp":1607098220,"output":"ed_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBloc"},{"event":"cmd_output","timestamp":1607098220,"output":"ks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:20.321 [info] Periodic from module Elixir.Ppl.PplBloc"},{"event":"cmd_output","timestamp":1607098220,"output":"ks.STMHandler.RunningState with name Elixir.Ppl.PplBlocks.STMHandler.RunningState :: period: 1000 ms"},{"event":"cmd_output","timestamp":1607098220,"output":", metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, recurring args: "},{"event":"cmd_output","timestamp":1607098220,"output":"%{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlock"},{"event":"cmd_output","timestamp":1607098220,"output":"s.Model.PplBlocks, observed_state: \"running\", publisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks."},{"event":"cmd_output","timestamp":1607098220,"output":"STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_a"},{"event":"cmd_output","timestamp":1607098220,"output":"t, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model."},{"event":"cmd_output","timestamp":1607098220,"output":"PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:20.321 [info] Periodic from module Elixir.Ppl."},{"event":"cmd_output","timestamp":1607098220,"output":"PplBlocks.STMHandler.StoppingState with name Elixir.Ppl.PplBlocks.STMHandler.StoppingState :: period"},{"event":"cmd_output","timestamp":1607098220,"output":": 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurr"},{"event":"cmd_output","timestamp":1607098220,"output":"ing args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks"},{"event":"cmd_output","timestamp":1607098220,"output":".Model.PplBlocks, observed_state: \"stopping\", publisher_cb: #Function<0.104215991/1 in Ppl.PplBlocks"},{"event":"cmd_output","timestamp":1607098220,"output":".STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated"},{"event":"cmd_output","timestamp":1607098220,"output":"_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Mode"},{"event":"cmd_output","timestamp":1607098220,"output":"l.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:20.322 [info] Periodic from module Elixir.Bl"},{"event":"cmd_output","timestamp":1607098220,"output":"ock.Blocks.STMHandler.InitializingState with name Elixir.Block.Blocks.STMHandler.InitializingState :"},{"event":"cmd_output","timestamp":1607098220,"output":": period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-InitializingState\""},{"event":"cmd_output","timestamp":1607098220,"output":"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block"},{"event":"cmd_output","timestamp":1607098220,"output":".Blocks.Model.Blocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Block.EctoRepo, ret"},{"event":"cmd_output","timestamp":1607098220,"output":"urning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Bl"},{"event":"cmd_output","timestamp":1607098220,"output":"ocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:20.322 [info] Periodic from module Eli"},{"event":"cmd_output","timestamp":1607098220,"output":"xir.Block.Blocks.STMHandler.RunningState with name Elixir.Block.Blocks.STMHandler.RunningState :: pe"},{"event":"cmd_output","timestamp":1607098220,"output":"riod: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-RunningState\"]}, recur"},{"event":"cmd_output","timestamp":1607098220,"output":"ring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: B"},{"event":"cmd_output","timestamp":1607098220,"output":"lock.Blocks.Model.Blocks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, retu"},{"event":"cmd_output","timestamp":1607098220,"output":"rning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blo"},{"event":"cmd_output","timestamp":1607098220,"output":"cks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:20.322 [info] Periodic from module Elix"},{"event":"cmd_output","timestamp":1607098220,"output":"ir.Block.Blocks.STMHandler.StoppingState with name Elixir.Block.Blocks.STMHandler.StoppingState :: p"},{"event":"cmd_output","timestamp":1607098220,"output":"eriod: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-StoppingState\"]}, rec"},{"event":"cmd_output","timestamp":1607098220,"output":"urring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Bloc"},{"event":"cmd_output","timestamp":1607098220,"output":"ks.Model.Blocks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: ["},{"event":"cmd_output","timestamp":1607098220,"output":":id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Mode"},{"event":"cmd_output","timestamp":1607098220,"output":"l.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:20.323 [info] Periodic from module Elixir.Block"},{"event":"cmd_output","timestamp":1607098220,"output":".Tasks.STMHandler.PendingState with name Elixir.Block.Tasks.STMHandler.PendingState :: period: 100 m"},{"event":"cmd_output","timestamp":1607098220,"output":"s, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingState\"]}, recurring args: %"},{"event":"cmd_output","timestamp":1607098220,"output":"{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Tasks.Model.Tasks, o"},{"event":"cmd_output","timestamp":1607098220,"output":"bserved_state: \"pending\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_req"},{"event":"cmd_output","timestamp":1607098220,"output":"uest, :updated_at, :state, :recovery_count, :block_id, :build_request_id], schema: Block.Tasks.Model"},{"event":"cmd_output","timestamp":1607098220,"output":".Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:20.323 [info] Periodic from module Elixir.Block.T"},{"event":"cmd_output","timestamp":1607098220,"output":"asks.STMHandler.RunningState with name Elixir.Block.Tasks.STMHandler.RunningState :: period: 100 ms,"},{"event":"cmd_output","timestamp":1607098220,"output":" metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningState\"]}, recurring args: %{a"},{"event":"cmd_output","timestamp":1607098220,"output":"llowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Mod"},{"event":"cmd_output","timestamp":1607098220,"output":"el.Tasks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :te"},{"event":"cmd_output","timestamp":1607098220,"output":"rminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, "},{"event":"cmd_output","timestamp":1607098220,"output":"task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:20.324 [info] Periodic from module Elixir.Block.Tasks.STM"},{"event":"cmd_output","timestamp":1607098220,"output":"Handler.StoppingState with name Elixir.Block.Tasks.STMHandler.StoppingState :: period: 100 ms, metri"},{"event":"cmd_output","timestamp":1607098220,"output":"c_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]}, recurring args: %{allowe"},{"event":"cmd_output","timestamp":1607098220,"output":"d_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observ"},{"event":"cmd_output","timestamp":1607098220,"output":"ed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request"},{"event":"cmd_output","timestamp":1607098220,"output":", :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor"},{"event":"cmd_output","timestamp":1607098220,"output":": :skip}\n\u001b[0m\u001b[22m\n16:10:20.437 [info] ppl_id: 13153ca3-89ed-4895-b2b3-3c33eedee019, type: PplReq"},{"event":"cmd_output","timestamp":1607098220,"output":"uests, event: persisted source_args for pipeline: 13153ca3-89ed-4895-b2b3-3c33eedee019, origin: Elix"},{"event":"cmd_output","timestamp":1607098220,"output":"ir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:20.440 [info] "},{"event":"cmd_output","timestamp":1607098220,"output":"ppl_id: 13153ca3-89ed-4895-b2b3-3c33eedee019, type: PplSubInits, state: fetching, event: exit_schedu"},{"event":"cmd_output","timestamp":1607098220,"output":"ling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:"},{"event":"cmd_output","timestamp":1607098220,"output":"20.475 [info] ppl_id: 13153ca3-89ed-4895-b2b3-3c33eedee019, type: PplSubInits, state: regular_init,"},{"event":"cmd_output","timestamp":1607098220,"output":" event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), "},{"event":"cmd_output","timestamp":1607098220,"output":"\n\u001b[0m\u001b[22m\n16:10:20.527 [info] ppl_id: 13153ca3-89ed-4895-b2b3-3c33eedee019, type: PplRequests, e"},{"event":"cmd_output","timestamp":1607098220,"output":"vent: persisted definition for request with request_token: 34c8c4f2-364b-11eb-a929-5254005464e2, ori"},{"event":"cmd_output","timestamp":1607098220,"output":"gin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:20"},{"event":"cmd_output","timestamp":1607098220,"output":".537 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded"},{"event":"cmd_output","timestamp":1607098220,"output":", \"queues\">, inserted_at: ~N[2020-12-04 16:10:20.530753], name: \"to_list-.semaphore/semaphore.yml\", "},{"event":"cmd_output","timestamp":1607098220,"output":"organization_id: \"org1\", project_id: \"list_project\", queue_id: \"0d8bccbf-62de-4fc7-bde7-7468432e506f"},{"event":"cmd_output","timestamp":1607098220,"output":"\", scope: \"project\", updated_at: ~N[2020-12-04 16:10:20.530765], user_generated: false}}\n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098220,"output":"\n16:10:20.550 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all"},{"event":"cmd_output","timestamp":1607098220,"output":"_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:20.550 [info] ppl_id: 13153ca3-89ed-4895-b2b3-3c33eedee019, type: "},{"event":"cmd_output","timestamp":1607098220,"output":"PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Pp"},{"event":"cmd_output","timestamp":1607098220,"output":"l.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:20.556 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098220,"output":" 13153ca3-89ed-4895-b2b3-3c33eedee019, type: PplSubInits, state: done, result: passed, event: exit_s"},{"event":"cmd_output","timestamp":1607098220,"output":"cheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098220,"output":"6:10:20.558 [info] ppl_id: 0d6b1690-3999-46f3-bb6a-eeae8f1f0767, type: PplRequests, event: persiste"},{"event":"cmd_output","timestamp":1607098220,"output":"d source_args for pipeline: 0d6b1690-3999-46f3-bb6a-eeae8f1f0767, origin: Elixir.Ppl.PplRequests.Mod"},{"event":"cmd_output","timestamp":1607098220,"output":"el.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:20.560 [info] ppl_id: 0d6b1690-3999-"},{"event":"cmd_output","timestamp":1607098220,"output":"46f3-bb6a-eeae8f1f0767, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: "},{"event":"cmd_output","timestamp":1607098220,"output":"0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:20.571 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098220,"output":" 13153ca3-89ed-4895-b2b3-3c33eedee019, type: Ppls, state: pending, event: exit_scheduling, recovery_"},{"event":"cmd_output","timestamp":1607098220,"output":"count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:20.576 [info] "},{"event":"cmd_output","timestamp":1607098220,"output":"ppl_id: 13153ca3-89ed-4895-b2b3-3c33eedee019, type: PplBlocks, block_index: 0, state: waiting, event"},{"event":"cmd_output","timestamp":1607098220,"output":": exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098220,"output":"\u001b[22m\n16:10:20.589 [info] ppl_id: 13153ca3-89ed-4895-b2b3-3c33eedee019, type: Ppls, state: queuing"},{"event":"cmd_output","timestamp":1607098220,"output":", event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90),"},{"event":"cmd_output","timestamp":1607098220,"output":" \n\u001b[0m\u001b[22m\n16:10:20.599 [info] ppl_id: 0d6b1690-3999-46f3-bb6a-eeae8f1f0767, type: PplSubInits, "},{"event":"cmd_output","timestamp":1607098220,"output":"state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_s"},{"event":"cmd_output","timestamp":1607098220,"output":"tate_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:20.604 [info] ppl_id: 13153ca3-89ed-4895-b2b3-3c33eedee019, "},{"event":"cmd_output","timestamp":1607098220,"output":"type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Imp"},{"event":"cmd_output","timestamp":1607098220,"output":"l.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:20.614 [info] PplBlocks WaitingState STM is schedulin"},{"event":"cmd_output","timestamp":1607098220,"output":"g block 0 from pipeline: \"13153ca3-89ed-4895-b2b3-3c33eedee019\"\n\u001b[0m\u001b[22m\n16:10:20.624 [info] blo"},{"event":"cmd_output","timestamp":1607098220,"output":"ck_id: f7127794-25a7-422c-8e7b-433c5b8b0143, type: BlockRequests, event: persisted block run request"},{"event":"cmd_output","timestamp":1607098220,"output":" from ppl 13153ca3-89ed-4895-b2b3-3c33eedee019 for block 0, origin: Elixir.Block.BlockRequests.Model"},{"event":"cmd_output","timestamp":1607098220,"output":".BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:20.629 [info] block_id: f7127794-"},{"event":"cmd_output","timestamp":1607098220,"output":"25a7-422c-8e7b-433c5b8b0143, type: Blocks, state: initializing, event: initializing, recovery_count:"},{"event":"cmd_output","timestamp":1607098220,"output":" 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:20.634 [info] "},{"event":"cmd_output","timestamp":1607098220,"output":" Block 0 of pipeline with id: 13153ca3-89ed-4895-b2b3-3c33eedee019 scheduled in block service with i"},{"event":"cmd_output","timestamp":1607098220,"output":"d: : \"f7127794-25a7-422c-8e7b-433c5b8b0143\"\n\u001b[0m\u001b[22m\n16:10:20.638 [info] ppl_id: 13153ca3-89ed-4"},{"event":"cmd_output","timestamp":1607098220,"output":"895-b2b3-3c33eedee019, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, reco"},{"event":"cmd_output","timestamp":1607098220,"output":"very_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:20.650 [in"},{"event":"cmd_output","timestamp":1607098220,"output":"fo] block_id: f7127794-25a7-422c-8e7b-433c5b8b0143, type: BlockRequests, event: persisted build and"},{"event":"cmd_output","timestamp":1607098220,"output":" sub_ppl details for block_request: f7127794-25a7-422c-8e7b-433c5b8b0143, origin: Elixir.Block.Block"},{"event":"cmd_output","timestamp":1607098220,"output":"Requests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:20.664 [info] block_id:"},{"event":"cmd_output","timestamp":1607098220,"output":" f7127794-25a7-422c-8e7b-433c5b8b0143, type: Tasks, state: pending, event: created, recovery_count: "},{"event":"cmd_output","timestamp":1607098220,"output":"0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:20.6"},{"event":"cmd_output","timestamp":1607098220,"output":"72 [info] block_id: f7127794-25a7-422c-8e7b-433c5b8b0143, type: Blocks, state: running, event: exit"},{"event":"cmd_output","timestamp":1607098220,"output":"_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098220,"output":"\n16:10:20.677 [info] ppl_id: 0d6b1690-3999-46f3-bb6a-eeae8f1f0767, type: PplRequests, event: persis"},{"event":"cmd_output","timestamp":1607098220,"output":"ted definition for request with request_token: 34d4f394-364b-11eb-84f0-5254005464e2, origin: Elixir."},{"event":"cmd_output","timestamp":1607098220,"output":"Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:20.682 [info] "},{"event":"cmd_output","timestamp":1607098220,"output":" Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">,"},{"event":"cmd_output","timestamp":1607098220,"output":" inserted_at: ~N[2020-12-04 16:10:20.680399], name: \"v1.0-.semaphore/semaphore.yml\", organization_id"},{"event":"cmd_output","timestamp":1607098220,"output":": \"org1\", project_id: \"list_project\", queue_id: \"1865e8f9-7295-4a1d-a7ad-92ae6c76d6cd\", scope: \"proj"},{"event":"cmd_output","timestamp":1607098220,"output":"ect\", updated_at: ~N[2020-12-04 16:10:20.680428], user_generated: false}}\n\u001b[0m\u001b[22m\n16:10:20.683 ["},{"event":"cmd_output","timestamp":1607098220,"output":"info] ppl_id: d85a8d6c-636f-403c-94dd-7334ef1f3a97, type: PplRequests, event: persisted source_args"},{"event":"cmd_output","timestamp":1607098220,"output":" for pipeline: d85a8d6c-636f-403c-94dd-7334ef1f3a97, origin: Elixir.Ppl.PplRequests.Model.PplRequest"},{"event":"cmd_output","timestamp":1607098220,"output":"sQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:20.690 [info] event: created, origin: Elixir.Ppl."},{"event":"cmd_output","timestamp":1607098220,"output":"PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:20.690 [info] ppl_id: 0"},{"event":"cmd_output","timestamp":1607098220,"output":"d6b1690-3999-46f3-bb6a-eeae8f1f0767, type: PplBlocks, block_index: 0, state: initializing, event: cr"},{"event":"cmd_output","timestamp":1607098220,"output":"eated, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105)"},{"event":"cmd_output","timestamp":1607098220,"output":", \n\u001b[0m\u001b[22m\n16:10:20.690 [info] ppl_id: d85a8d6c-636f-403c-94dd-7334ef1f3a97, type: PplSubInits,"},{"event":"cmd_output","timestamp":1607098220,"output":" state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_stat"},{"event":"cmd_output","timestamp":1607098220,"output":"e_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:20.694 [info] ppl_id: 0d6b1690-3999-46f3-bb6a-eeae8f1f0767, typ"},{"event":"cmd_output","timestamp":1607098220,"output":"e: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098220,"output":"ir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:20.709 [info] ppl_id: 0d6b1690-3999-"},{"event":"cmd_output","timestamp":1607098220,"output":"46f3-bb6a-eeae8f1f0767, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, rec"},{"event":"cmd_output","timestamp":1607098220,"output":"overy_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:20.711 [i"},{"event":"cmd_output","timestamp":1607098220,"output":"nfo] block_id: f7127794-25a7-422c-8e7b-433c5b8b0143, type: Tasks, state: running, event: exit_sched"},{"event":"cmd_output","timestamp":1607098220,"output":"uling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10"},{"event":"cmd_output","timestamp":1607098220,"output":":20.716 [info] ppl_id: 0d6b1690-3999-46f3-bb6a-eeae8f1f0767, type: Ppls, state: pending, event: exi"},{"event":"cmd_output","timestamp":1607098220,"output":"t_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098220,"output":"\n16:10:20.725 [info] ppl_id: 0d6b1690-3999-46f3-bb6a-eeae8f1f0767, type: Ppls, state: queuing, eve"},{"event":"cmd_output","timestamp":1607098220,"output":"nt: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b["},{"event":"cmd_output","timestamp":1607098220,"output":"0m\u001b[22m\n16:10:20.733 [info] ppl_id: 0d6b1690-3999-46f3-bb6a-eeae8f1f0767, type: Ppls, state: runni"},{"event":"cmd_output","timestamp":1607098220,"output":"ng, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90"},{"event":"cmd_output","timestamp":1607098220,"output":"), \n\u001b[0m\u001b[22m\n16:10:20.734 [info] ppl_id: d85a8d6c-636f-403c-94dd-7334ef1f3a97, type: PplSubInits"},{"event":"cmd_output","timestamp":1607098220,"output":", state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098220,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:20.741 [info] PplBlocks WaitingState STM is scheduling blo"},{"event":"cmd_output","timestamp":1607098220,"output":"ck 0 from pipeline: \"0d6b1690-3999-46f3-bb6a-eeae8f1f0767\"\n\u001b[0m\u001b[22m\n16:10:20.748 [info] block_id"},{"event":"cmd_output","timestamp":1607098220,"output":": 32c41d4b-0576-4e38-8c2a-5245da225ac8, type: BlockRequests, event: persisted block run request from"},{"event":"cmd_output","timestamp":1607098220,"output":" ppl 0d6b1690-3999-46f3-bb6a-eeae8f1f0767 for block 0, origin: Elixir.Block.BlockRequests.Model.Bloc"},{"event":"cmd_output","timestamp":1607098220,"output":"kRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:20.752 [info] block_id: 32c41d4b-0576-"},{"event":"cmd_output","timestamp":1607098220,"output":"4e38-8c2a-5245da225ac8, type: Blocks, state: initializing, event: initializing, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098220,"output":"rigin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:20.756 [info] Bloc"},{"event":"cmd_output","timestamp":1607098220,"output":"k 0 of pipeline with id: 0d6b1690-3999-46f3-bb6a-eeae8f1f0767 scheduled in block service with id: : "},{"event":"cmd_output","timestamp":1607098220,"output":"\"32c41d4b-0576-4e38-8c2a-5245da225ac8\"\n\u001b[0m\u001b[22m\n16:10:20.767 [info] ppl_id: 0d6b1690-3999-46f3-b"},{"event":"cmd_output","timestamp":1607098220,"output":"b6a-eeae8f1f0767, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_"},{"event":"cmd_output","timestamp":1607098220,"output":"count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:20.767 [info] "},{"event":"cmd_output","timestamp":1607098220,"output":"block_id: 32c41d4b-0576-4e38-8c2a-5245da225ac8, type: BlockRequests, event: persisted build and sub_"},{"event":"cmd_output","timestamp":1607098220,"output":"ppl details for block_request: 32c41d4b-0576-4e38-8c2a-5245da225ac8, origin: Elixir.Block.BlockReque"},{"event":"cmd_output","timestamp":1607098220,"output":"sts.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:20.772 [info] block_id: 32c4"},{"event":"cmd_output","timestamp":1607098220,"output":"1d4b-0576-4e38-8c2a-5245da225ac8, type: Tasks, state: pending, event: created, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098220,"output":"igin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:20.775 [i"},{"event":"cmd_output","timestamp":1607098220,"output":"nfo] block_id: f7127794-25a7-422c-8e7b-433c5b8b0143, type: Tasks, state: done, event: exit_scheduli"},{"event":"cmd_output","timestamp":1607098220,"output":"ng, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:20"},{"event":"cmd_output","timestamp":1607098220,"output":".775 [info] block_id: 32c41d4b-0576-4e38-8c2a-5245da225ac8, type: Blocks, state: running, event: ex"},{"event":"cmd_output","timestamp":1607098220,"output":"it_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098220,"output":"m\n16:10:20.784 [info] ppl_id: d85a8d6c-636f-403c-94dd-7334ef1f3a97, type: PplRequests, event: pers"},{"event":"cmd_output","timestamp":1607098220,"output":"isted definition for request with request_token: 34e0f4e6-364b-11eb-a328-5254005464e2, origin: Elixi"},{"event":"cmd_output","timestamp":1607098220,"output":"r.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:20.790 [info"},{"event":"cmd_output","timestamp":1607098220,"output":"] block_id: f7127794-25a7-422c-8e7b-433c5b8b0143, type: Blocks, state: done, event: exit_scheduling"},{"event":"cmd_output","timestamp":1607098220,"output":", recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:20.7"},{"event":"cmd_output","timestamp":1607098220,"output":"96 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, "},{"event":"cmd_output","timestamp":1607098220,"output":"\"queues\">, inserted_at: ~N[2020-12-04 16:10:20.787967], name: \"123-.semaphore/semaphore.yml\", organi"},{"event":"cmd_output","timestamp":1607098220,"output":"zation_id: \"org1\", project_id: \"list_project\", queue_id: \"2db00249-7479-4681-9948-15586dc8d3aa\", sco"},{"event":"cmd_output","timestamp":1607098220,"output":"pe: \"project\", updated_at: ~N[2020-12-04 16:10:20.787977], user_generated: false}}\n\u001b[0m\u001b[22m\n16:10"},{"event":"cmd_output","timestamp":1607098220,"output":":20.807 [info] block_id: 32c41d4b-0576-4e38-8c2a-5245da225ac8, type: Tasks, state: running, event: "},{"event":"cmd_output","timestamp":1607098220,"output":"exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098220,"output":"22m\n16:10:20.810 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState"},{"event":"cmd_output","timestamp":1607098220,"output":".all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:20.810 [info] ppl_id: d85a8d6c-636f-403c-94dd-7334ef1f3a97, ty"},{"event":"cmd_output","timestamp":1607098220,"output":"pe: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098220,"output":"r.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:20.813 [info] ppl"},{"event":"cmd_output","timestamp":1607098220,"output":"_id: d85a8d6c-636f-403c-94dd-7334ef1f3a97, type: PplSubInits, state: done, result: passed, event: ex"},{"event":"cmd_output","timestamp":1607098220,"output":"it_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098220,"output":"m\n16:10:20.813 [info] ppl_id: 13153ca3-89ed-4895-b2b3-3c33eedee019, block_id: f7127794-25a7-422c-8"},{"event":"cmd_output","timestamp":1607098220,"output":"e7b-433c5b8b0143, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduli"},{"event":"cmd_output","timestamp":1607098220,"output":"ng, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:20"},{"event":"cmd_output","timestamp":1607098220,"output":".823 [info] ppl_id: d85a8d6c-636f-403c-94dd-7334ef1f3a97, type: PplBlocks, block_index: 0, state: w"},{"event":"cmd_output","timestamp":1607098220,"output":"aiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1"},{"event":"cmd_output","timestamp":1607098220,"output":"(L90), \n\u001b[0m\u001b[22m\n16:10:20.828 [info] ppl_id: d85a8d6c-636f-403c-94dd-7334ef1f3a97, type: Ppls, s"},{"event":"cmd_output","timestamp":1607098220,"output":"tate: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098220,"output":"hange/1(L90), \n\u001b[0m\u001b[22m\n16:10:20.837 [info] ppl_id: 13153ca3-89ed-4895-b2b3-3c33eedee019, type: "},{"event":"cmd_output","timestamp":1607098220,"output":"Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper."},{"event":"cmd_output","timestamp":1607098220,"output":"STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:20.838 [info] ppl_id: d85a8d6c-636f-403c-94dd-"},{"event":"cmd_output","timestamp":1607098220,"output":"7334ef1f3a97, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098220,"output":"Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:20.849 [info] ppl_id: d85a8d6c-636f-403"},{"event":"cmd_output","timestamp":1607098220,"output":"c-94dd-7334ef1f3a97, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098220,"output":"Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:20.857 [info] PplBlocks WaitingS"},{"event":"cmd_output","timestamp":1607098220,"output":"tate STM is scheduling block 0 from pipeline: \"d85a8d6c-636f-403c-94dd-7334ef1f3a97\"\n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098220,"output":"10:20.870 [info] block_id: 2085d7ed-b7d3-44f4-9c9c-5aee9808e320, type: BlockRequests, event: persis"},{"event":"cmd_output","timestamp":1607098220,"output":"ted block run request from ppl d85a8d6c-636f-403c-94dd-7334ef1f3a97 for block 0, origin: Elixir.Bloc"},{"event":"cmd_output","timestamp":1607098220,"output":"k.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:20.873 [info]"},{"event":"cmd_output","timestamp":1607098220,"output":" block_id: 2085d7ed-b7d3-44f4-9c9c-5aee9808e320, type: Blocks, state: initializing, event: initiali"},{"event":"cmd_output","timestamp":1607098220,"output":"zing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098220,"output":"\n16:10:20.875 [info] Block 0 of pipeline with id: d85a8d6c-636f-403c-94dd-7334ef1f3a97 scheduled in"},{"event":"cmd_output","timestamp":1607098220,"output":" block service with id: : \"2085d7ed-b7d3-44f4-9c9c-5aee9808e320\"\n\u001b[0m\u001b[22m\n16:10:20.883 [info] pp"},{"event":"cmd_output","timestamp":1607098220,"output":"l_id: d85a8d6c-636f-403c-94dd-7334ef1f3a97, type: PplBlocks, block_index: 0, state: running, event: "},{"event":"cmd_output","timestamp":1607098220,"output":"exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098220,"output":"22m\n16:10:20.892 [info] block_id: 2085d7ed-b7d3-44f4-9c9c-5aee9808e320, type: BlockRequests, event"},{"event":"cmd_output","timestamp":1607098220,"output":": persisted build and sub_ppl details for block_request: 2085d7ed-b7d3-44f4-9c9c-5aee9808e320, origi"},{"event":"cmd_output","timestamp":1607098220,"output":"n: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:20."},{"event":"cmd_output","timestamp":1607098220,"output":"893 [info] block_id: 32c41d4b-0576-4e38-8c2a-5245da225ac8, type: Tasks, state: done, event: exit_sc"},{"event":"cmd_output","timestamp":1607098220,"output":"heduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098220,"output":":10:20.896 [info] block_id: 2085d7ed-b7d3-44f4-9c9c-5aee9808e320, type: Tasks, state: pending, even"},{"event":"cmd_output","timestamp":1607098220,"output":"t: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L1"},{"event":"cmd_output","timestamp":1607098220,"output":"67), \n\u001b[0m\u001b[22m\n16:10:20.899 [info] block_id: 2085d7ed-b7d3-44f4-9c9c-5aee9808e320, type: Blocks,"},{"event":"cmd_output","timestamp":1607098220,"output":" state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state"},{"event":"cmd_output","timestamp":1607098220,"output":"_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:20.904 [info] block_id: 32c41d4b-0576-4e38-8c2a-5245da225ac8, ty"},{"event":"cmd_output","timestamp":1607098220,"output":"pe: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.l"},{"event":"cmd_output","timestamp":1607098220,"output":"og_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:20.925 [info] ppl_id: 0d6b1690-3999-46f3-bb6a-eeae8f1f07"},{"event":"cmd_output","timestamp":1607098220,"output":"67, block_id: 32c41d4b-0576-4e38-8c2a-5245da225ac8, type: PplBlocks, block_index: 0, state: done, re"},{"event":"cmd_output","timestamp":1607098220,"output":"sult: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_ch"},{"event":"cmd_output","timestamp":1607098220,"output":"ange/1(L90), \n\u001b[0m\u001b[22m\n16:10:20.937 [info] block_id: 2085d7ed-b7d3-44f4-9c9c-5aee9808e320, type:"},{"event":"cmd_output","timestamp":1607098220,"output":" Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.lo"},{"event":"cmd_output","timestamp":1607098220,"output":"g_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:20.952 [info] ppl_id: 0d6b1690-3999-46f3-bb6a-eeae8f1f076"},{"event":"cmd_output","timestamp":1607098220,"output":"7, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098221,"output":"r.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:21.014 [info] block_id: 2085d7ed-b7d3"},{"event":"cmd_output","timestamp":1607098221,"output":"-44f4-9c9c-5aee9808e320, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098221,"output":": Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:21.035 [info] block_id: 2085d7"},{"event":"cmd_output","timestamp":1607098221,"output":"ed-b7d3-44f4-9c9c-5aee9808e320, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0"},{"event":"cmd_output","timestamp":1607098221,"output":", origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:21.045 [info] ppl_id: "},{"event":"cmd_output","timestamp":1607098221,"output":"d85a8d6c-636f-403c-94dd-7334ef1f3a97, block_id: 2085d7ed-b7d3-44f4-9c9c-5aee9808e320, type: PplBlock"},{"event":"cmd_output","timestamp":1607098221,"output":"s, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: E"},{"event":"cmd_output","timestamp":1607098221,"output":"lixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:21.061 [info] ppl_id: d85a8d6c-63"},{"event":"cmd_output","timestamp":1607098221,"output":"6f-403c-94dd-7334ef1f3a97, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery"},{"event":"cmd_output","timestamp":1607098221,"output":"_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test gRPC list() "},{"event":"cmd_output","timestamp":1607098221,"output":"- filter by label and git_ref_types (1302.5ms)\u001b[0m\n * test gRPC list_grouped() - fails when projec"},{"event":"cmd_output","timestamp":1607098221,"output":"t_id is omitted\r * test gRPC list_grouped() - fails when project_id is omitted (skipped)\n * test "},{"event":"cmd_output","timestamp":1607098221,"output":"gRPC terminate() - fails when requester_id is empty \r * test gRPC terminate() - fails when requeste"},{"event":"cmd_output","timestamp":1607098221,"output":"r_id is empty (skipped)\n * test gRPC schedule() - full v1 specification\r * test gRPC schedule() "},{"event":"cmd_output","timestamp":1607098221,"output":"- full v1 specification (skipped)\n * test gRPC describe() - failes when there is no workflow with "},{"event":"cmd_output","timestamp":1607098221,"output":"given wf_id\r * test gRPC describe() - failes when there is no workflow with given wf_id (skipped)\n"},{"event":"cmd_output","timestamp":1607098221,"output":" * test gRPC list_keyset() - refuse request when there are to many unfinished ones\r * test gRPC li"},{"event":"cmd_output","timestamp":1607098221,"output":"st_keyset() - refuse request when there are to many unfinished ones (skipped)\n * test gRPC describ"},{"event":"cmd_output","timestamp":1607098221,"output":"e() - refuse request when there are to many unfinished ones\r * test gRPC describe() - refuse reques"},{"event":"cmd_output","timestamp":1607098221,"output":"t when there are to many unfinished ones (skipped)\n * test gRPC list_keyset() - failes when proje"},{"event":"cmd_output","timestamp":1607098221,"output":"ct_ids, project_id and organization_id is omitted\r * test gRPC list_keyset() - failes when project"},{"event":"cmd_output","timestamp":1607098221,"output":"_ids, project_id and organization_id is omitted (skipped)\n * test gRPC schedule() - limit exceeded"},{"event":"cmd_output","timestamp":1607098221,"output":"\u001b[22m\n16:10:21.308 [info] Request: 'run: %{\"branch_id\" => \"456\", \"branch_name\" => \"master\", \"clien"},{"event":"cmd_output","timestamp":1607098221,"output":"t_id\" => \"328c742132e5407abd7d\", \"commit_sha\" => \"5ab81e1541ba70f49b1f7af59a252ae64257f5d6\", \"defini"},{"event":"cmd_output","timestamp":1607098221,"output":"tion_file\" => \"\", \"hook_id\" => \"ac4425b8-8470-4e1b-8e23-6b2e0ba9736e\", \"label\" => \"\", \"organization_"},{"event":"cmd_output","timestamp":1607098221,"output":"id\" => \"cd8dc252-8aaa-40ad-8b71-d5a414b9b211\", \"owner\" => \"psr\", \"project_id\" => \"123\", \"repo_name\" "},{"event":"cmd_output","timestamp":1607098221,"output":"=> \"2_basic\", \"request_token\" => \"128b2253-21cc-474d-b008-ba90b3a0c55e\", \"requester_id\" => \"7487326d"},{"event":"cmd_output","timestamp":1607098221,"output":"-409e-46e0-b4d8-4ed61124906d\", \"service\" => \"local\", \"snapshot_id\" => \"\", \"suppressed_attributes\" =>"},{"event":"cmd_output","timestamp":1607098221,"output":" [\"access_token\", \"client_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"66cb70db-e64e-4c1e-9cbf-65"},{"event":"cmd_output","timestamp":1607098221,"output":"8e0caed327\"}\n\u001b[0m\u001b[22m\n16:10:21.350 [info] ppl_id: fc40af89-a0aa-45ca-bb3d-a48f509a3be6, type: Pp"},{"event":"cmd_output","timestamp":1607098221,"output":"lRequests, event: persisted schedule request with request_token: 128b2253-21cc-474d-b008-ba90b3a0c55"},{"event":"cmd_output","timestamp":1607098221,"output":"e, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098221,"output":"10:21.357 [info] ppl_id: fc40af89-a0aa-45ca-bb3d-a48f509a3be6, type: Ppls, state: initializing, eve"},{"event":"cmd_output","timestamp":1607098221,"output":"nt: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L1"},{"event":"cmd_output","timestamp":1607098221,"output":"24), \n\u001b[0m\u001b[22m\n16:10:21.366 [info] Project 123 and branch masterlatest_wf details updated: \"wf_i"},{"event":"cmd_output","timestamp":1607098221,"output":"d: 66cb70db-e64e-4c1e-9cbf-658e0caed327, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:10:21.369 [info] Persisted pp"},{"event":"cmd_output","timestamp":1607098221,"output":"l_sub_init for pipeline with ppl_id: fc40af89-a0aa-45ca-bb3d-a48f509a3be6: %Ppl.PplSubInits.Model.Pp"},{"event":"cmd_output","timestamp":1607098221,"output":"lSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, erro"},{"event":"cmd_output","timestamp":1607098221,"output":"r_description: nil, id: 32, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 1"},{"event":"cmd_output","timestamp":1607098221,"output":"6:10:21.367864], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"fc40af89-a0aa-45ca-bb3d-a48f509a3be6\", recovery_count: 0, result: nil, result_re"},{"event":"cmd_output","timestamp":1607098221,"output":"ason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[202"},{"event":"cmd_output","timestamp":1607098221,"output":"0-12-04 16:10:21.367877]}\n\u001b[0m\u001b[22m\n16:10:21.379 [info] Periodic from module Elixir.Ppl.Ppls.STMH"},{"event":"cmd_output","timestamp":1607098221,"output":"andler.InitializingState with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms, m"},{"event":"cmd_output","timestamp":1607098221,"output":"etric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %{a"},{"event":"cmd_output","timestamp":1607098221,"output":"llowed_states: [\"initializing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Mod"},{"event":"cmd_output","timestamp":1607098221,"output":"el.Ppls, observed_state: \"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandle"},{"event":"cmd_output","timestamp":1607098221,"output":"r.InitializingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :"},{"event":"cmd_output","timestamp":1607098221,"output":"state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0"},{"event":"cmd_output","timestamp":1607098221,"output":"m\u001b[22m\n16:10:21.381 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingState with name "},{"event":"cmd_output","timestamp":1607098221,"output":"Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"P"},{"event":"cmd_output","timestamp":1607098221,"output":"pl-Ppls-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"pending\", \"queuing\", \"runnin"},{"event":"cmd_output","timestamp":1607098221,"output":"g\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", pub"},{"event":"cmd_output","timestamp":1607098221,"output":"lisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, re"},{"event":"cmd_output","timestamp":1607098221,"output":"turning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: "},{"event":"cmd_output","timestamp":1607098221,"output":"Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:10:21.383 [info] Periodic "},{"event":"cmd_output","timestamp":1607098221,"output":"from module Elixir.Ppl.Ppls.STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandler.QueuingStat"},{"event":"cmd_output","timestamp":1607098221,"output":"e :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, re"},{"event":"cmd_output","timestamp":1607098221,"output":"curring args: %{allowed_states: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, initial_query:"},{"event":"cmd_output","timestamp":1607098221,"output":" Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.S"},{"event":"cmd_output","timestamp":1607098221,"output":"TMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at"},{"event":"cmd_output","timestamp":1607098221,"output":", :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n"},{"event":"cmd_output","timestamp":1607098221,"output":"\u001b[0m\u001b[22m\n16:10:21.384 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedState "},{"event":"cmd_output","timestamp":1607098221,"output":"with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.behol"},{"event":"cmd_output","timestamp":1607098221,"output":"der-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args: %{allowed_states: [\"fetc"},{"event":"cmd_output","timestamp":1607098221,"output":"hing\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_stat"},{"event":"cmd_output","timestamp":1607098221,"output":"e: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated"},{"event":"cmd_output","timestamp":1607098221,"output":"_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_sup"},{"event":"cmd_output","timestamp":1607098221,"output":"ervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:21.386 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHand"},{"event":"cmd_output","timestamp":1607098221,"output":"ler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 ms, metri"},{"event":"cmd_output","timestamp":1607098221,"output":"c_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %{al"},{"event":"cmd_output","timestamp":1607098221,"output":"lowed_states: [\"regular_init\", \"compilation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplS"},{"event":"cmd_output","timestamp":1607098221,"output":"ubInits.Model.PplSubInits, observed_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, retu"},{"event":"cmd_output","timestamp":1607098221,"output":"rning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Pp"},{"event":"cmd_output","timestamp":1607098221,"output":"l.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:21.386 [info] Periodic f"},{"event":"cmd_output","timestamp":1607098221,"output":"rom module Elixir.Ppl.PplSubInits.STMHandler.CompilationState with name Elixir.Ppl.PplSubInits.STMHa"},{"event":"cmd_output","timestamp":1607098221,"output":"ndler.CompilationState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-ST"},{"event":"cmd_output","timestamp":1607098221,"output":"MHandler-CompilationState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"sto"},{"event":"cmd_output","timestamp":1607098221,"output":"pping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_st"},{"event":"cmd_output","timestamp":1607098221,"output":"ate: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :u"},{"event":"cmd_output","timestamp":1607098221,"output":"pdated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, ta"},{"event":"cmd_output","timestamp":1607098221,"output":"sk_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:21.386 [info] Periodic from module Elixir.Ppl.PplSubInits.S"},{"event":"cmd_output","timestamp":1607098221,"output":"TMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period: 1"},{"event":"cmd_output","timestamp":1607098221,"output":"00 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recur"},{"event":"cmd_output","timestamp":1607098221,"output":"ring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.Ppl"},{"event":"cmd_output","timestamp":1607098221,"output":"SubInits, observed_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, "},{"event":"cmd_output","timestamp":1607098221,"output":":terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits"},{"event":"cmd_output","timestamp":1607098221,"output":".Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:21.499 [info] ppl_id: fc40af89-a0aa-4"},{"event":"cmd_output","timestamp":1607098221,"output":"5ca-bb3d-a48f509a3be6, type: PplRequests, event: persisted source_args for pipeline: fc40af89-a0aa-4"},{"event":"cmd_output","timestamp":1607098221,"output":"5ca-bb3d-a48f509a3be6, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89),"},{"event":"cmd_output","timestamp":1607098221,"output":" \n\u001b[0m\u001b[22m\n16:10:21.502 [info] ppl_id: fc40af89-a0aa-45ca-bb3d-a48f509a3be6, type: PplSubInits, "},{"event":"cmd_output","timestamp":1607098221,"output":"state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state"},{"event":"cmd_output","timestamp":1607098221,"output":"_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:21.527 [info] ppl_id: fc40af89-a0aa-45ca-bb3d-a48f509a3be6, type"},{"event":"cmd_output","timestamp":1607098221,"output":": PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper"},{"event":"cmd_output","timestamp":1607098221,"output":".STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:21.561 [info] ppl_id: fc40af89-a0aa-45ca-bb3d"},{"event":"cmd_output","timestamp":1607098221,"output":"-a48f509a3be6, type: PplRequests, event: persisted definition for request with request_token: 128b22"},{"event":"cmd_output","timestamp":1607098221,"output":"53-21cc-474d-b008-ba90b3a0c55e, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_defin"},{"event":"cmd_output","timestamp":1607098221,"output":"ition/3(L76), \n\u001b[0m\u001b[22m\n16:10:21.567 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__me"},{"event":"cmd_output","timestamp":1607098221,"output":"ta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:10:21.564641], name: \""},{"event":"cmd_output","timestamp":1607098221,"output":"-.semaphore/semaphore.yml\", organization_id: \"cd8dc252-8aaa-40ad-8b71-d5a414b9b211\", project_id: \"12"},{"event":"cmd_output","timestamp":1607098221,"output":"3\", queue_id: \"366ba127-f85c-4406-88b0-a4e03e0ffbc9\", scope: \"project\", updated_at: ~N[2020-12-04 16"},{"event":"cmd_output","timestamp":1607098221,"output":":10:21.564650], user_generated: false}}\n\u001b[0m\u001b[22m\n16:10:21.580 [info] event: created, origin: Eli"},{"event":"cmd_output","timestamp":1607098221,"output":"xir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:21.580 [info] p"},{"event":"cmd_output","timestamp":1607098221,"output":"pl_id: fc40af89-a0aa-45ca-bb3d-a48f509a3be6, type: PplBlocks, block_index: 0, state: initializing, e"},{"event":"cmd_output","timestamp":1607098221,"output":"vent: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?"},{"event":"cmd_output","timestamp":1607098221,"output":"/1(L105), \n\u001b[0m\u001b[22m\n16:10:21.584 [info] ppl_id: fc40af89-a0aa-45ca-bb3d-a48f509a3be6, type: PplS"},{"event":"cmd_output","timestamp":1607098221,"output":"ubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loop"},{"event":"cmd_output","timestamp":1607098221,"output":"er.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:21.596 [info] ppl_id: fc40af89-a0aa-45ca-bb"},{"event":"cmd_output","timestamp":1607098221,"output":"3d-a48f509a3be6, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098221,"output":"ir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:21.607 [info] ppl_id: fc40af89-a0aa-"},{"event":"cmd_output","timestamp":1607098221,"output":"45ca-bb3d-a48f509a3be6, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098221,"output":"n: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:21.625 [info] ppl_id: fc40af8"},{"event":"cmd_output","timestamp":1607098221,"output":"9-a0aa-45ca-bb3d-a48f509a3be6, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0"},{"event":"cmd_output","timestamp":1607098221,"output":", origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:21.713 [info] Request:"},{"event":"cmd_output","timestamp":1607098221,"output":" 'run: %{\"branch_id\" => \"456\", \"branch_name\" => \"master\", \"client_id\" => \"328c742132e5407abd7d\", \"co"},{"event":"cmd_output","timestamp":1607098221,"output":"mmit_sha\" => \"5ab81e1541ba70f49b1f7af59a252ae64257f5d6\", \"definition_file\" => \"\", \"hook_id\" => \"ac44"},{"event":"cmd_output","timestamp":1607098221,"output":"25b8-8470-4e1b-8e23-6b2e0ba9736e\", \"label\" => \"\", \"organization_id\" => \"91730f61-e50d-4bab-9be2-4e1b"},{"event":"cmd_output","timestamp":1607098221,"output":"c9834afe\", \"owner\" => \"psr\", \"project_id\" => \"123\", \"repo_name\" => \"2_basic\", \"request_token\" => \"3d"},{"event":"cmd_output","timestamp":1607098221,"output":"f16509-888f-4f9a-b01e-3913cac9dc9f\", \"requester_id\" => \"7487326d-409e-46e0-b4d8-4ed61124906d\", \"serv"},{"event":"cmd_output","timestamp":1607098221,"output":"ice\" => \"local\", \"snapshot_id\" => \"\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], "},{"event":"cmd_output","timestamp":1607098221,"output":"\"triggered_by\" => \"hook\", \"wf_id\" => \"f9d6c9a0-0a30-4f61-a9d9-3c14ba112d8d\"}\n\u001b[0m\u001b[22m\n16:10:21.76"},{"event":"cmd_output","timestamp":1607098221,"output":"2 [info] ppl_id: fb350475-4df4-4f56-9806-2656d3358c41, type: PplRequests, event: persisted schedule"},{"event":"cmd_output","timestamp":1607098221,"output":" request with request_token: 3df16509-888f-4f9a-b01e-3913cac9dc9f, origin: Elixir.Ppl.PplRequests.Mo"},{"event":"cmd_output","timestamp":1607098221,"output":"del.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:21.766 [info] ppl_id: fb350475-4"},{"event":"cmd_output","timestamp":1607098221,"output":"df4-4f56-9806-2656d3358c41, type: Ppls, state: initializing, event: initializing, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098221,"output":" origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:21.771 [info"},{"event":"cmd_output","timestamp":1607098221,"output":"] Project 123 and branch masterlatest_wf details updated: \"wf_id: f9d6c9a0-0a30-4f61-a9d9-3c14ba112"},{"event":"cmd_output","timestamp":1607098221,"output":"d8d, wf_number: 2\"\n\u001b[0m\u001b[22m\n16:10:21.773 [info] Persisted ppl_sub_init for pipeline with ppl_id:"},{"event":"cmd_output","timestamp":1607098221,"output":" fb350475-4df4-4f56-9806-2656d3358c41: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Met"},{"event":"cmd_output","timestamp":1607098221,"output":"adata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 33, in_sched"},{"event":"cmd_output","timestamp":1607098221,"output":"uling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:10:21.772488], pipeline_requests: "},{"event":"cmd_output","timestamp":1607098221,"output":"#Ecto.Association.NotLoaded, ppl_id: \"fb350475-4df4-4f"},{"event":"cmd_output","timestamp":1607098221,"output":"56-9806-2656d3358c41\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", termina"},{"event":"cmd_output","timestamp":1607098221,"output":"te_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:21.772502]}\n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098221,"output":"\n16:10:21.805 [info] ppl_id: fb350475-4df4-4f56-9806-2656d3358c41, type: PplRequests, event: persi"},{"event":"cmd_output","timestamp":1607098221,"output":"sted source_args for pipeline: fb350475-4df4-4f56-9806-2656d3358c41, origin: Elixir.Ppl.PplRequests."},{"event":"cmd_output","timestamp":1607098221,"output":"Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:21.809 [info] ppl_id: fb350475-4d"},{"event":"cmd_output","timestamp":1607098221,"output":"f4-4f56-9806-2656d3358c41, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_coun"},{"event":"cmd_output","timestamp":1607098221,"output":"t: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:21.843 [info] ppl_"},{"event":"cmd_output","timestamp":1607098221,"output":"id: fb350475-4df4-4f56-9806-2656d3358c41, type: PplSubInits, state: regular_init, event: exit_schedu"},{"event":"cmd_output","timestamp":1607098221,"output":"ling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:"},{"event":"cmd_output","timestamp":1607098221,"output":"21.874 [info] ppl_id: fb350475-4df4-4f56-9806-2656d3358c41, type: PplRequests, event: persisted def"},{"event":"cmd_output","timestamp":1607098221,"output":"inition for request with request_token: 3df16509-888f-4f9a-b01e-3913cac9dc9f, origin: Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098221,"output":"Requests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:21.894 [info] event:"},{"event":"cmd_output","timestamp":1607098221,"output":" created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098221,"output":"6:10:21.894 [info] ppl_id: fb350475-4df4-4f56-9806-2656d3358c41, type: PplBlocks, block_index: 0, s"},{"event":"cmd_output","timestamp":1607098221,"output":"tate: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.Reg"},{"event":"cmd_output","timestamp":1607098221,"output":"ularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:21.896 [info] ppl_id: fb350475-4df4-4f56-9806-265"},{"event":"cmd_output","timestamp":1607098221,"output":"6d3358c41, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0"},{"event":"cmd_output","timestamp":1607098221,"output":", origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:21.907 [info] ppl_id: "},{"event":"cmd_output","timestamp":1607098221,"output":"fb350475-4df4-4f56-9806-2656d3358c41, type: Ppls, state: pending, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098221,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:21.921 [info] p"},{"event":"cmd_output","timestamp":1607098221,"output":"pl_id: fb350475-4df4-4f56-9806-2656d3358c41, type: Ppls, state: queuing, event: exit_scheduling, rec"},{"event":"cmd_output","timestamp":1607098222,"output":"overy_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test gRPC sc"},{"event":"cmd_output","timestamp":1607098222,"output":"hedule() - limit exceeded (822.4ms)\u001b[0m\n * test gRPC reschedule() - fails when there is no workflo"},{"event":"cmd_output","timestamp":1607098222,"output":"w with given wf_id\r * test gRPC reschedule() - fails when there is no workflow with given wf_id (sk"},{"event":"cmd_output","timestamp":1607098222,"output":"ipped)\n * test gRPC reschedule() - succeeds and initial ppl passes\u001b[22m\n16:10:22.206 [info] Requ"},{"event":"cmd_output","timestamp":1607098222,"output":"est: 'run: %{\"branch_id\" => \"84d896bc-cea3-4925-a65d-b3305797ee5b\", \"branch_name\" => \"master\", \"clie"},{"event":"cmd_output","timestamp":1607098222,"output":"nt_id\" => \"65de9ee0-eaef-4ead-8af0-a0195036532d\", \"commit_sha\" => \"75891a4469\", \"definition_file\" =>"},{"event":"cmd_output","timestamp":1607098222,"output":" \"\", \"hook_id\" => \"360a21c6-364b-11eb-adb5-5254005464e2\", \"label\" => \"master\", \"organization_id\" => "},{"event":"cmd_output","timestamp":1607098222,"output":"\"4fb5f989-2c71-4be7-8aea-54a1359a6c6d\", \"owner\" => \"rt\", \"project_id\" => \"e984ca07-2d8c-4256-bca5-18"},{"event":"cmd_output","timestamp":1607098222,"output":"3df8b9e2a0\", \"repo_name\" => \"2_basic\", \"request_token\" => \"360a18ca-364b-11eb-8dd3-5254005464e2\", \"r"},{"event":"cmd_output","timestamp":1607098222,"output":"equester_id\" => \"14c6a54c-06ab-4e05-a789-26517e38a2cd\", \"service\" => \"local\", \"snapshot_id\" => \"\", \""},{"event":"cmd_output","timestamp":1607098222,"output":"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"8"},{"event":"cmd_output","timestamp":1607098222,"output":"871ccfb-6dfc-4141-9232-bdf366c57133\"}\n\u001b[0m\u001b[22m\n16:10:22.239 [info] ppl_id: fc383b10-3e21-451f-94"},{"event":"cmd_output","timestamp":1607098222,"output":"e0-3bd1962c437d, type: PplRequests, event: persisted schedule request with request_token: 360a18ca-3"},{"event":"cmd_output","timestamp":1607098222,"output":"64b-11eb-8dd3-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response"},{"event":"cmd_output","timestamp":1607098222,"output":"/2(L55), \n\u001b[0m\u001b[22m\n16:10:22.243 [info] ppl_id: fc383b10-3e21-451f-94e0-3bd1962c437d, type: Ppls,"},{"event":"cmd_output","timestamp":1607098222,"output":" state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQuer"},{"event":"cmd_output","timestamp":1607098222,"output":"ies.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:22.249 [info] Project e984ca07-2d8c-4256-bca5-183d"},{"event":"cmd_output","timestamp":1607098222,"output":"f8b9e2a0 and branch masterlatest_wf details updated: \"wf_id: 8871ccfb-6dfc-4141-9232-bdf366c57133, w"},{"event":"cmd_output","timestamp":1607098222,"output":"f_number: 1\"\n\u001b[0m\u001b[22m\n16:10:22.251 [info] Persisted ppl_sub_init for pipeline with ppl_id: fc383"},{"event":"cmd_output","timestamp":1607098222,"output":"b10-3e21-451f-94e0-3bd1962c437d: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<"},{"event":"cmd_output","timestamp":1607098222,"output":":loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 34, in_scheduling:"},{"event":"cmd_output","timestamp":1607098222,"output":" false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:10:22.249210], pipeline_requests: #Ecto."},{"event":"cmd_output","timestamp":1607098222,"output":"Association.NotLoaded, ppl_id: \"fc383b10-3e21-451f-94e"},{"event":"cmd_output","timestamp":1607098222,"output":"0-3bd1962c437d\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_req"},{"event":"cmd_output","timestamp":1607098222,"output":"uest: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:22.249217]}\n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098222,"output":"0:22.269 [info] Request: 'run: %{\"branch_id\" => \"84d896bc-cea3-4925-a65d-b3305797ee5b\", \"branch_nam"},{"event":"cmd_output","timestamp":1607098222,"output":"e\" => \"master\", \"client_id\" => \"65de9ee0-eaef-4ead-8af0-a0195036532d\", \"commit_sha\" => \"75891a4469\","},{"event":"cmd_output","timestamp":1607098222,"output":" \"definition_file\" => \"\", \"file_name\" => \"semaphore.yml\", \"hook_id\" => \"360a21c6-364b-11eb-adb5-5254"},{"event":"cmd_output","timestamp":1607098222,"output":"005464e2\", \"label\" => \"master\", \"organization_id\" => \"4fb5f989-2c71-4be7-8aea-54a1359a6c6d\", \"owner\""},{"event":"cmd_output","timestamp":1607098222,"output":" => \"rt\", \"project_id\" => \"e984ca07-2d8c-4256-bca5-183df8b9e2a0\", \"repo_name\" => \"2_basic\", \"request"},{"event":"cmd_output","timestamp":1607098222,"output":"_token\" => \"c912456c-d759-4e11-8109-641805bed347\", \"requester_id\" => \"123\", \"service\" => \"local\", \"s"},{"event":"cmd_output","timestamp":1607098222,"output":"napshot_id\" => \"\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"triggered_by\" => \""},{"event":"cmd_output","timestamp":1607098222,"output":"hook\", \"wf_id\" => \"58ba823f-d7fa-432c-93e7-381cd769e8dd\", \"wf_rebuild_of\" => \"8871ccfb-6dfc-4141-923"},{"event":"cmd_output","timestamp":1607098222,"output":"2-bdf366c57133\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:10:22.273 [info] ppl_id: 9baeb32a-ef"},{"event":"cmd_output","timestamp":1607098222,"output":"fe-470a-bc8f-562f6d3a053f, type: PplRequests, event: persisted schedule request with request_token: "},{"event":"cmd_output","timestamp":1607098222,"output":"c912456c-d759-4e11-8109-641805bed347, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.proces"},{"event":"cmd_output","timestamp":1607098222,"output":"s_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:22.283 [info] ppl_id: 9baeb32a-effe-470a-bc8f-562f6d3a053f, t"},{"event":"cmd_output","timestamp":1607098222,"output":"ype: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Mode"},{"event":"cmd_output","timestamp":1607098222,"output":"l.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:22.287 [info] Project e984ca07-2d8c-4256"},{"event":"cmd_output","timestamp":1607098222,"output":"-bca5-183df8b9e2a0 and branch masterlatest_wf details updated: \"wf_id: 58ba823f-d7fa-432c-93e7-381cd"},{"event":"cmd_output","timestamp":1607098222,"output":"769e8dd, wf_number: 2\"\n\u001b[0m\u001b[22m\n16:10:22.289 [info] Persisted ppl_sub_init for pipeline with ppl"},{"event":"cmd_output","timestamp":1607098222,"output":"_id: 9baeb32a-effe-470a-bc8f-562f6d3a053f: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema"},{"event":"cmd_output","timestamp":1607098222,"output":".Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 35, in_s"},{"event":"cmd_output","timestamp":1607098222,"output":"cheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:10:22.287412], pipeline_reques"},{"event":"cmd_output","timestamp":1607098222,"output":"ts: #Ecto.Association.NotLoaded, ppl_id: \"9baeb32a-eff"},{"event":"cmd_output","timestamp":1607098222,"output":"e-470a-bc8f-562f6d3a053f\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", ter"},{"event":"cmd_output","timestamp":1607098222,"output":"minate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:22.287421]}\n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098222,"output":"[22m\n16:10:22.307 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingState with na"},{"event":"cmd_output","timestamp":1607098222,"output":"me Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_"},{"event":"cmd_output","timestamp":1607098222,"output":"up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", "},{"event":"cmd_output","timestamp":1607098222,"output":"\"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"initia"},{"event":"cmd_output","timestamp":1607098222,"output":"lizing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, rep"},{"event":"cmd_output","timestamp":1607098222,"output":"o: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count,"},{"event":"cmd_output","timestamp":1607098222,"output":" :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:22.307 [info] Per"},{"event":"cmd_output","timestamp":1607098222,"output":"iodic from module Elixir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler.Pendi"},{"event":"cmd_output","timestamp":1607098222,"output":"ngState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\""},{"event":"cmd_output","timestamp":1607098222,"output":"]}, recurring args: %{allowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_sec: 0"},{"event":"cmd_output","timestamp":1607098222,"output":", initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publisher_cb: #Function<0.8493005/1"},{"event":"cmd_output","timestamp":1607098222,"output":" in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_reques"},{"event":"cmd_output","timestamp":1607098222,"output":"t, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_superv"},{"event":"cmd_output","timestamp":1607098222,"output":"isor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:10:22.308 [info] Periodic from module Elixir.Ppl.Ppls.STMH"},{"event":"cmd_output","timestamp":1607098222,"output":"andler.QueuingState with name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, metric_name"},{"event":"cmd_output","timestamp":1607098222,"output":": {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{allowed_states: "},{"event":"cmd_output","timestamp":1607098222,"output":"[\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_s"},{"event":"cmd_output","timestamp":1607098222,"output":"tate: \"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.args/0>, "},{"event":"cmd_output","timestamp":1607098222,"output":"repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_cou"},{"event":"cmd_output","timestamp":1607098222,"output":"nt, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:22.308 [info] "},{"event":"cmd_output","timestamp":1607098222,"output":"Periodic from module Elixir.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHandler.Ru"},{"event":"cmd_output","timestamp":1607098222,"output":"nningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-RunningSta"},{"event":"cmd_output","timestamp":1607098222,"output":"te\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, init"},{"event":"cmd_output","timestamp":1607098222,"output":"ial_query: Ppl.Ppls.Model.Ppls, observed_state: \"running\", publisher_cb: #Function<0.74670282/1 in P"},{"event":"cmd_output","timestamp":1607098222,"output":"pl.Ppls.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :u"},{"event":"cmd_output","timestamp":1607098222,"output":"pdated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor:"},{"event":"cmd_output","timestamp":1607098222,"output":" PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:10:22.308 [info] Periodic from module Elixir.Ppl.Ppls.STMHandle"},{"event":"cmd_output","timestamp":1607098222,"output":"r.StoppingState with name Elixir.Ppl.Ppls.STMHandler.StoppingState :: period: 100 ms, metric_name: {"},{"event":"cmd_output","timestamp":1607098222,"output":"\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\""},{"event":"cmd_output","timestamp":1607098222,"output":"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"stopp"},{"event":"cmd_output","timestamp":1607098222,"output":"ing\", publisher_cb: #Function<0.71803493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, repo: Ppl.E"},{"event":"cmd_output","timestamp":1607098222,"output":"ctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id"},{"event":"cmd_output","timestamp":1607098222,"output":"], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:22.308 [info] Periodic fr"},{"event":"cmd_output","timestamp":1607098222,"output":"om module Elixir.Ppl.PplSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHandler"},{"event":"cmd_output","timestamp":1607098222,"output":".CreatedState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-"},{"event":"cmd_output","timestamp":1607098222,"output":"CreatedState\"]}, recurring args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, initia"},{"event":"cmd_output","timestamp":1607098222,"output":"l_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip, repo: Pp"},{"event":"cmd_output","timestamp":1607098222,"output":"l.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl"},{"event":"cmd_output","timestamp":1607098222,"output":"_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:22.308 [i"},{"event":"cmd_output","timestamp":1607098222,"output":"nfo] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl.PplS"},{"event":"cmd_output","timestamp":1607098222,"output":"ubInits.STMHandler.FetchingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplS"},{"event":"cmd_output","timestamp":1607098222,"output":"ubInits-STMHandler-FetchingState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation"},{"event":"cmd_output","timestamp":1607098222,"output":"\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: "},{"event":"cmd_output","timestamp":1607098222,"output":"\"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_a"},{"event":"cmd_output","timestamp":1607098222,"output":"t, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_super"},{"event":"cmd_output","timestamp":1607098222,"output":"visor: :skip}\n\u001b[0m\u001b[22m\n16:10:22.309 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandle"},{"event":"cmd_output","timestamp":1607098222,"output":"r.CompilationState with name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 100 ms, m"},{"event":"cmd_output","timestamp":1607098222,"output":"etric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurring arg"},{"event":"cmd_output","timestamp":1607098222,"output":"s: %{allowed_states: [\"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2, init"},{"event":"cmd_output","timestamp":1607098222,"output":"ial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"compilation\", publisher_cb: :skip, re"},{"event":"cmd_output","timestamp":1607098222,"output":"po: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count"},{"event":"cmd_output","timestamp":1607098222,"output":", :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:22."},{"event":"cmd_output","timestamp":1607098222,"output":"309 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with name Elixir"},{"event":"cmd_output","timestamp":1607098222,"output":".Ppl.PplSubInits.STMHandler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\""},{"event":"cmd_output","timestamp":1607098222,"output":", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurring args: %{allowed_states: [\"done\"], cool"},{"event":"cmd_output","timestamp":1607098222,"output":"ing_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_init\", p"},{"event":"cmd_output","timestamp":1607098222,"output":"ublisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :r"},{"event":"cmd_output","timestamp":1607098222,"output":"esult, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}"},{"event":"cmd_output","timestamp":1607098222,"output":"\n\u001b[0m\u001b[22m\n16:10:22.309 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.InitializingS"},{"event":"cmd_output","timestamp":1607098222,"output":"tate with name Elixir.Ppl.PplBlocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"P"},{"event":"cmd_output","timestamp":1607098222,"output":"pl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_sta"},{"event":"cmd_output","timestamp":1607098222,"output":"tes: [\"initializing\", \"waiting\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.Pp"},{"event":"cmd_output","timestamp":1607098222,"output":"lBlocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :"},{"event":"cmd_output","timestamp":1607098222,"output":"terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Pp"},{"event":"cmd_output","timestamp":1607098222,"output":"l.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:22.309 [info] Periodic from "},{"event":"cmd_output","timestamp":1607098222,"output":"module Elixir.Ppl.PplBlocks.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler.Waitin"},{"event":"cmd_output","timestamp":1607098222,"output":"gState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingS"},{"event":"cmd_output","timestamp":1607098222,"output":"tate\"]}, recurring args: %{allowed_states: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 0, init"},{"event":"cmd_output","timestamp":1607098222,"output":"ial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"waiting\", publisher_cb: #Function<0.89750"},{"event":"cmd_output","timestamp":1607098222,"output":"22/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :termina"},{"event":"cmd_output","timestamp":1607098222,"output":"te_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBl"},{"event":"cmd_output","timestamp":1607098222,"output":"ocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:22.309 [info] Periodic from module "},{"event":"cmd_output","timestamp":1607098222,"output":"Elixir.Ppl.PplBlocks.STMHandler.RunningState with name Elixir.Ppl.PplBlocks.STMHandler.RunningState "},{"event":"cmd_output","timestamp":1607098222,"output":":: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}"},{"event":"cmd_output","timestamp":1607098222,"output":", recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_q"},{"event":"cmd_output","timestamp":1607098222,"output":"uery: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"running\", publisher_cb: #Function<0.28166834/1"},{"event":"cmd_output","timestamp":1607098222,"output":" in Ppl.PplBlocks.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_r"},{"event":"cmd_output","timestamp":1607098222,"output":"equest, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Pp"},{"event":"cmd_output","timestamp":1607098222,"output":"l.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:22.309 [info] Periodic from "},{"event":"cmd_output","timestamp":1607098222,"output":"module Elixir.Ppl.PplBlocks.STMHandler.StoppingState with name Elixir.Ppl.PplBlocks.STMHandler.Stopp"},{"event":"cmd_output","timestamp":1607098222,"output":"ingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-Stoppi"},{"event":"cmd_output","timestamp":1607098222,"output":"ngState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_qu"},{"event":"cmd_output","timestamp":1607098222,"output":"ery: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"stopping\", publisher_cb: #Function<0.104215991/"},{"event":"cmd_output","timestamp":1607098222,"output":"1 in Ppl.PplBlocks.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate"},{"event":"cmd_output","timestamp":1607098222,"output":"_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: "},{"event":"cmd_output","timestamp":1607098222,"output":"Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:22.310 [info] Periodic fro"},{"event":"cmd_output","timestamp":1607098222,"output":"m module Elixir.Block.Blocks.STMHandler.InitializingState with name Elixir.Block.Blocks.STMHandler.I"},{"event":"cmd_output","timestamp":1607098222,"output":"nitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-"},{"event":"cmd_output","timestamp":1607098222,"output":"InitializingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, in"},{"event":"cmd_output","timestamp":1607098222,"output":"itial_query: Block.Blocks.Model.Blocks, observed_state: \"initializing\", publisher_cb: :skip, repo: B"},{"event":"cmd_output","timestamp":1607098222,"output":"lock.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id]"},{"event":"cmd_output","timestamp":1607098222,"output":", schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:22.310 [info] Period"},{"event":"cmd_output","timestamp":1607098222,"output":"ic from module Elixir.Block.Blocks.STMHandler.RunningState with name Elixir.Block.Blocks.STMHandler."},{"event":"cmd_output","timestamp":1607098222,"output":"RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-Runn"},{"event":"cmd_output","timestamp":1607098222,"output":"ingState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2"},{"event":"cmd_output","timestamp":1607098222,"output":", initial_query: Block.Blocks.Model.Blocks, observed_state: \"running\", publisher_cb: :skip, repo: Bl"},{"event":"cmd_output","timestamp":1607098222,"output":"ock.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id],"},{"event":"cmd_output","timestamp":1607098222,"output":" schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:22.310 [info] Periodi"},{"event":"cmd_output","timestamp":1607098222,"output":"c from module Elixir.Block.Blocks.STMHandler.StoppingState with name Elixir.Block.Blocks.STMHandler."},{"event":"cmd_output","timestamp":1607098222,"output":"StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-Sto"},{"event":"cmd_output","timestamp":1607098222,"output":"ppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial"},{"event":"cmd_output","timestamp":1607098222,"output":"_query: Block.Blocks.Model.Blocks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.Ecto"},{"event":"cmd_output","timestamp":1607098222,"output":"Repo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema:"},{"event":"cmd_output","timestamp":1607098222,"output":" Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:22.311 [info] Periodic from m"},{"event":"cmd_output","timestamp":1607098222,"output":"odule Elixir.Block.Tasks.STMHandler.PendingState with name Elixir.Block.Tasks.STMHandler.PendingStat"},{"event":"cmd_output","timestamp":1607098222,"output":"e :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingState\"]},"},{"event":"cmd_output","timestamp":1607098222,"output":" recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Ta"},{"event":"cmd_output","timestamp":1607098222,"output":"sks.Model.Tasks, observed_state: \"pending\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:"},{"event":"cmd_output","timestamp":1607098222,"output":"id, :terminate_request, :updated_at, :state, :recovery_count, :block_id, :build_request_id], schema:"},{"event":"cmd_output","timestamp":1607098222,"output":" Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:22.311 [info] Periodic from mod"},{"event":"cmd_output","timestamp":1607098222,"output":"ule Elixir.Block.Tasks.STMHandler.RunningState with name Elixir.Block.Tasks.STMHandler.RunningState "},{"event":"cmd_output","timestamp":1607098222,"output":":: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningState\"]}, r"},{"event":"cmd_output","timestamp":1607098222,"output":"ecurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_quer"},{"event":"cmd_output","timestamp":1607098222,"output":"y: Block.Tasks.Model.Tasks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, re"},{"event":"cmd_output","timestamp":1607098222,"output":"turning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.T"},{"event":"cmd_output","timestamp":1607098222,"output":"asks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:22.311 [info] Periodic from module Elix"},{"event":"cmd_output","timestamp":1607098222,"output":"ir.Block.Tasks.STMHandler.StoppingState with name Elixir.Block.Tasks.STMHandler.StoppingState :: per"},{"event":"cmd_output","timestamp":1607098222,"output":"iod: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]}, recurr"},{"event":"cmd_output","timestamp":1607098222,"output":"ing args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.M"},{"event":"cmd_output","timestamp":1607098222,"output":"odel.Tasks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, "},{"event":"cmd_output","timestamp":1607098222,"output":":terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Task"},{"event":"cmd_output","timestamp":1607098222,"output":"s, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:22.436 [info] ppl_id: fc383b10-3e21-451f-94e0-3bd1962c"},{"event":"cmd_output","timestamp":1607098222,"output":"437d, type: PplRequests, event: persisted source_args for pipeline: fc383b10-3e21-451f-94e0-3bd1962c"},{"event":"cmd_output","timestamp":1607098222,"output":"437d, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098222,"output":"10:22.439 [info] ppl_id: fc383b10-3e21-451f-94e0-3bd1962c437d, type: PplSubInits, state: fetching, "},{"event":"cmd_output","timestamp":1607098222,"output":"event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \r"},{"event":"cmd_output","timestamp":1607098222,"output":"\n\u001b[0m\u001b[22m\n16:10:22.467 [info] ppl_id: fc383b10-3e21-451f-94e0-3bd1962c437d, type: PplSubInits, st"},{"event":"cmd_output","timestamp":1607098222,"output":"ate: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_sta"},{"event":"cmd_output","timestamp":1607098222,"output":"te_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:22.501 [info] ppl_id: fc383b10-3e21-451f-94e0-3bd1962c437d, ty"},{"event":"cmd_output","timestamp":1607098222,"output":"pe: PplRequests, event: persisted definition for request with request_token: 360a18ca-364b-11eb-8dd3"},{"event":"cmd_output","timestamp":1607098222,"output":"-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b"},{"event":"cmd_output","timestamp":1607098222,"output":"[0m\u001b[22m\n16:10:22.513 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schem"},{"event":"cmd_output","timestamp":1607098222,"output":"a.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:10:22.511352], name: \"master-.semaphore"},{"event":"cmd_output","timestamp":1607098222,"output":"/semaphore.yml\", organization_id: \"4fb5f989-2c71-4be7-8aea-54a1359a6c6d\", project_id: \"e984ca07-2d8c"},{"event":"cmd_output","timestamp":1607098222,"output":"-4256-bca5-183df8b9e2a0\", queue_id: \"2a5dcaac-8185-4e55-b8e7-4f003df2260d\", scope: \"project\", update"},{"event":"cmd_output","timestamp":1607098222,"output":"d_at: ~N[2020-12-04 16:10:22.511365], user_generated: false}}\n\u001b[0m\u001b[22m\n16:10:22.520 [info] event"},{"event":"cmd_output","timestamp":1607098222,"output":": created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098222,"output":"16:10:22.520 [info] ppl_id: fc383b10-3e21-451f-94e0-3bd1962c437d, type: PplBlocks, block_index: 0, "},{"event":"cmd_output","timestamp":1607098222,"output":"state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.Re"},{"event":"cmd_output","timestamp":1607098222,"output":"gularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:22.525 [info] ppl_id: fc383b10-3e21-451f-94e0-3b"},{"event":"cmd_output","timestamp":1607098222,"output":"d1962c437d, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: "},{"event":"cmd_output","timestamp":1607098222,"output":"0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:22.546 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098222,"output":" fc383b10-3e21-451f-94e0-3bd1962c437d, type: PplBlocks, block_index: 0, state: waiting, event: exit_"},{"event":"cmd_output","timestamp":1607098222,"output":"scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098222,"output":"16:10:22.546 [info] ppl_id: fc383b10-3e21-451f-94e0-3bd1962c437d, type: Ppls, state: pending, event"},{"event":"cmd_output","timestamp":1607098222,"output":": exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098222,"output":"\u001b[22m\n16:10:22.564 [info] ppl_id: 9baeb32a-effe-470a-bc8f-562f6d3a053f, type: PplRequests, event: "},{"event":"cmd_output","timestamp":1607098222,"output":"persisted source_args for pipeline: 9baeb32a-effe-470a-bc8f-562f6d3a053f, origin: Elixir.Ppl.PplRequ"},{"event":"cmd_output","timestamp":1607098222,"output":"ests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:22.566 [info] ppl_id: fc383b"},{"event":"cmd_output","timestamp":1607098222,"output":"10-3e21-451f-94e0-3bd1962c437d, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: "},{"event":"cmd_output","timestamp":1607098222,"output":"0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:22.568 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098222,"output":" 9baeb32a-effe-470a-bc8f-562f6d3a053f, type: PplSubInits, state: fetching, event: exit_scheduling, r"},{"event":"cmd_output","timestamp":1607098222,"output":"ecovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:22.580 "},{"event":"cmd_output","timestamp":1607098222,"output":"[info] ppl_id: fc383b10-3e21-451f-94e0-3bd1962c437d, type: Ppls, state: running, event: exit_schedu"},{"event":"cmd_output","timestamp":1607098222,"output":"ling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:"},{"event":"cmd_output","timestamp":1607098222,"output":"22.593 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"fc383b10-3e21-451f-9"},{"event":"cmd_output","timestamp":1607098222,"output":"4e0-3bd1962c437d\"\n\u001b[0m\u001b[22m\n16:10:22.606 [info] ppl_id: 9baeb32a-effe-470a-bc8f-562f6d3a053f, typ"},{"event":"cmd_output","timestamp":1607098222,"output":"e: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loope"},{"event":"cmd_output","timestamp":1607098222,"output":"r.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:22.611 [info] block_id: 28333314-40c5-4fd9-9"},{"event":"cmd_output","timestamp":1607098222,"output":"9d9-5a01b0365e09, type: BlockRequests, event: persisted block run request from ppl fc383b10-3e21-451"},{"event":"cmd_output","timestamp":1607098222,"output":"f-94e0-3bd1962c437d for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.proce"},{"event":"cmd_output","timestamp":1607098222,"output":"ss_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:22.618 [info] block_id: 28333314-40c5-4fd9-99d9-5a01b0365e09"},{"event":"cmd_output","timestamp":1607098222,"output":", type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Bl"},{"event":"cmd_output","timestamp":1607098222,"output":"ocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:22.624 [info] Block 0 of pipeline with i"},{"event":"cmd_output","timestamp":1607098222,"output":"d: fc383b10-3e21-451f-94e0-3bd1962c437d scheduled in block service with id: : \"28333314-40c5-4fd9-99"},{"event":"cmd_output","timestamp":1607098222,"output":"d9-5a01b0365e09\"\n\u001b[0m\u001b[22m\n16:10:22.631 [info] ppl_id: fc383b10-3e21-451f-94e0-3bd1962c437d, type"},{"event":"cmd_output","timestamp":1607098222,"output":": PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098222,"output":"ir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:22.638 [info] block_id: 28333314-40c"},{"event":"cmd_output","timestamp":1607098222,"output":"5-4fd9-99d9-5a01b0365e09, type: BlockRequests, event: persisted build and sub_ppl details for block_"},{"event":"cmd_output","timestamp":1607098222,"output":"request: 28333314-40c5-4fd9-99d9-5a01b0365e09, origin: Elixir.Block.BlockRequests.Model.BlockRequest"},{"event":"cmd_output","timestamp":1607098222,"output":"sQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:22.644 [info] block_id: 28333314-40c5-4fd9-99d9-5a"},{"event":"cmd_output","timestamp":1607098222,"output":"01b0365e09, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blo"},{"event":"cmd_output","timestamp":1607098222,"output":"cks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:22.651 [info] block_id: 283333"},{"event":"cmd_output","timestamp":1607098222,"output":"14-40c5-4fd9-99d9-5a01b0365e09, type: Blocks, state: running, event: exit_scheduling, recovery_count"},{"event":"cmd_output","timestamp":1607098222,"output":": 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:22.661 [info] ppl_i"},{"event":"cmd_output","timestamp":1607098222,"output":"d: 9baeb32a-effe-470a-bc8f-562f6d3a053f, type: PplRequests, event: persisted definition for request "},{"event":"cmd_output","timestamp":1607098222,"output":"with request_token: c912456c-d759-4e11-8109-641805bed347, origin: Elixir.Ppl.PplRequests.Model.PplRe"},{"event":"cmd_output","timestamp":1607098222,"output":"questsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:22.675 [info] event: created, origin: El"},{"event":"cmd_output","timestamp":1607098222,"output":"ixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:22.675 [info] "},{"event":"cmd_output","timestamp":1607098222,"output":"ppl_id: 9baeb32a-effe-470a-bc8f-562f6d3a053f, type: PplBlocks, block_index: 0, state: initializing, "},{"event":"cmd_output","timestamp":1607098222,"output":"event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok"},{"event":"cmd_output","timestamp":1607098222,"output":"?/1(L105), \n\u001b[0m\u001b[22m\n16:10:22.678 [info] ppl_id: 9baeb32a-effe-470a-bc8f-562f6d3a053f, type: Ppl"},{"event":"cmd_output","timestamp":1607098222,"output":"SubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loo"},{"event":"cmd_output","timestamp":1607098222,"output":"per.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:22.691 [info] block_id: 28333314-40c5-4fd9"},{"event":"cmd_output","timestamp":1607098222,"output":"-99d9-5a01b0365e09, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098222,"output":"Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:22.697 [info] ppl_id: 9baeb32a-e"},{"event":"cmd_output","timestamp":1607098222,"output":"ffe-470a-bc8f-562f6d3a053f, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098222,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:22.701 [info] ppl_id: 9ba"},{"event":"cmd_output","timestamp":1607098222,"output":"eb32a-effe-470a-bc8f-562f6d3a053f, type: PplBlocks, block_index: 0, state: waiting, event: exit_sche"},{"event":"cmd_output","timestamp":1607098222,"output":"duling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098222,"output":"0:22.713 [info] ppl_id: 9baeb32a-effe-470a-bc8f-562f6d3a053f, type: Ppls, state: queuing, event: ex"},{"event":"cmd_output","timestamp":1607098222,"output":"it_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098222,"output":"m\n16:10:22.768 [info] block_id: 28333314-40c5-4fd9-99d9-5a01b0365e09, type: Tasks, state: done, ev"},{"event":"cmd_output","timestamp":1607098222,"output":"ent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b"},{"event":"cmd_output","timestamp":1607098222,"output":"[0m\u001b[22m\n16:10:22.782 [info] block_id: 28333314-40c5-4fd9-99d9-5a01b0365e09, type: Blocks, state: "},{"event":"cmd_output","timestamp":1607098222,"output":"done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098222,"output":"90), \n\u001b[0m\u001b[22m\n16:10:22.805 [info] ppl_id: fc383b10-3e21-451f-94e0-3bd1962c437d, block_id: 28333"},{"event":"cmd_output","timestamp":1607098222,"output":"314-40c5-4fd9-99d9-5a01b0365e09, type: PplBlocks, block_index: 0, state: done, result: passed, event"},{"event":"cmd_output","timestamp":1607098222,"output":": exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098222,"output":"\u001b[22m\n16:10:22.829 [info] ppl_id: fc383b10-3e21-451f-94e0-3bd1962c437d, type: Ppls, state: done, r"},{"event":"cmd_output","timestamp":1607098222,"output":"esult: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098222,"output":"hange/1(L90), \n\u001b[0m\u001b[22m\n16:10:22.868 [info] ppl_id: 9baeb32a-effe-470a-bc8f-562f6d3a053f, type: "},{"event":"cmd_output","timestamp":1607098222,"output":"Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_"},{"event":"cmd_output","timestamp":1607098222,"output":"state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:22.879 [info] PplBlocks WaitingState STM is scheduling bloc"},{"event":"cmd_output","timestamp":1607098222,"output":"k 0 from pipeline: \"9baeb32a-effe-470a-bc8f-562f6d3a053f\"\n\u001b[0m\u001b[22m\n16:10:22.893 [info] block_id:"},{"event":"cmd_output","timestamp":1607098222,"output":" e3176301-dd41-46c4-85e2-4f8fe35a1c8d, type: BlockRequests, event: persisted block run request from "},{"event":"cmd_output","timestamp":1607098222,"output":"ppl 9baeb32a-effe-470a-bc8f-562f6d3a053f for block 0, origin: Elixir.Block.BlockRequests.Model.Block"},{"event":"cmd_output","timestamp":1607098222,"output":"RequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:22.897 [info] block_id: e3176301-dd41-4"},{"event":"cmd_output","timestamp":1607098222,"output":"6c4-85e2-4f8fe35a1c8d, type: Blocks, state: initializing, event: initializing, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098222,"output":"igin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:22.898 [info] Block"},{"event":"cmd_output","timestamp":1607098222,"output":" 0 of pipeline with id: 9baeb32a-effe-470a-bc8f-562f6d3a053f scheduled in block service with id: : \""},{"event":"cmd_output","timestamp":1607098222,"output":"e3176301-dd41-46c4-85e2-4f8fe35a1c8d\"\n\u001b[0m\u001b[22m\n16:10:22.906 [info] ppl_id: 9baeb32a-effe-470a-bc"},{"event":"cmd_output","timestamp":1607098222,"output":"8f-562f6d3a053f, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098222,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:22.908 [info] b"},{"event":"cmd_output","timestamp":1607098222,"output":"lock_id: e3176301-dd41-46c4-85e2-4f8fe35a1c8d, type: BlockRequests, event: persisted build and sub_p"},{"event":"cmd_output","timestamp":1607098222,"output":"pl details for block_request: e3176301-dd41-46c4-85e2-4f8fe35a1c8d, origin: Elixir.Block.BlockReques"},{"event":"cmd_output","timestamp":1607098222,"output":"ts.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:22.912 [info] block_id: e3176"},{"event":"cmd_output","timestamp":1607098222,"output":"301-dd41-46c4-85e2-4f8fe35a1c8d, type: Tasks, state: pending, event: created, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098222,"output":"gin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:22.921 [in"},{"event":"cmd_output","timestamp":1607098222,"output":"fo] block_id: e3176301-dd41-46c4-85e2-4f8fe35a1c8d, type: Blocks, state: running, event: exit_sched"},{"event":"cmd_output","timestamp":1607098222,"output":"uling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10"},{"event":"cmd_output","timestamp":1607098222,"output":":22.942 [info] block_id: e3176301-dd41-46c4-85e2-4f8fe35a1c8d, type: Tasks, state: running, event: "},{"event":"cmd_output","timestamp":1607098222,"output":"exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098222,"output":"22m\n16:10:22.991 [info] block_id: e3176301-dd41-46c4-85e2-4f8fe35a1c8d, type: Tasks, state: done, "},{"event":"cmd_output","timestamp":1607098222,"output":"event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \r"},{"event":"cmd_output","timestamp":1607098223,"output":"\n\u001b[0m\u001b[22m\n16:10:23.003 [info] block_id: e3176301-dd41-46c4-85e2-4f8fe35a1c8d, type: Blocks, state"},{"event":"cmd_output","timestamp":1607098223,"output":": done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1"},{"event":"cmd_output","timestamp":1607098223,"output":"(L90), \n\u001b[0m\u001b[22m\n16:10:23.018 [info] ppl_id: 9baeb32a-effe-470a-bc8f-562f6d3a053f, block_id: e31"},{"event":"cmd_output","timestamp":1607098223,"output":"76301-dd41-46c4-85e2-4f8fe35a1c8d, type: PplBlocks, block_index: 0, state: done, result: passed, eve"},{"event":"cmd_output","timestamp":1607098223,"output":"nt: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b["},{"event":"cmd_output","timestamp":1607098223,"output":"0m\u001b[22m\n16:10:23.045 [info] ppl_id: 9baeb32a-effe-470a-bc8f-562f6d3a053f, type: Ppls, state: done,"},{"event":"cmd_output","timestamp":1607098223,"output":" result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state"},{"event":"cmd_output","timestamp":1607098223,"output":"_change/1(L90), \n\u001b[0m\u001b[32m\r * test gRPC reschedule() - succeeds and initial ppl passes (1129.2ms)\u001b"},{"event":"cmd_output","timestamp":1607098223,"output":"[0m\n * test gRPC terminate() - fails when wf_id is empty \r * test gRPC terminate() - fails when w"},{"event":"cmd_output","timestamp":1607098223,"output":"f_id is empty (skipped)\n * test gRPC list_latest_workflows() - successfully walk the list in both"},{"event":"cmd_output","timestamp":1607098223,"output":" directions\u001b[22m\n16:10:23.285 [info] Request: 'run: %{\"branch_id\" => \"efb4aec9-6dcb-4196-a652-047d"},{"event":"cmd_output","timestamp":1607098223,"output":"a8e10230\", \"branch_name\" => \"master-0\", \"client_id\" => \"3b479ad1-7ff8-4bcf-b830-32e1d6c5807e\", \"comm"},{"event":"cmd_output","timestamp":1607098223,"output":"it_sha\" => \"75891a4469\", \"definition_file\" => \"\", \"hook_id\" => \"branch\", \"label\" => \"master-0\", \"org"},{"event":"cmd_output","timestamp":1607098223,"output":"anization_id\" => \"bf04a99c-87ae-4e9d-8696-e3fb2cb6830d\", \"owner\" => \"rt\", \"project_id\" => \"list_late"},{"event":"cmd_output","timestamp":1607098223,"output":"st_workflows\", \"repo_name\" => \"2_basic\", \"request_token\" => \"36ae7dd4-364b-11eb-806e-5254005464e2\", "},{"event":"cmd_output","timestamp":1607098223,"output":"\"requester_id\" => \"57d65426-e421-42dd-8f07-803140452bab\", \"service\" => \"local\", \"snapshot_id\" => \"\","},{"event":"cmd_output","timestamp":1607098223,"output":" \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => "},{"event":"cmd_output","timestamp":1607098223,"output":"\"1ac94079-0cdf-4fc1-9f10-6c079a684b5f\"}\n\u001b[0m\u001b[22m\n16:10:23.316 [info] ppl_id: 74221866-6c83-4c23-"},{"event":"cmd_output","timestamp":1607098223,"output":"918c-f039ff445450, type: PplRequests, event: persisted schedule request with request_token: 36ae7dd4"},{"event":"cmd_output","timestamp":1607098223,"output":"-364b-11eb-806e-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_respon"},{"event":"cmd_output","timestamp":1607098223,"output":"se/2(L55), \n\u001b[0m\u001b[22m\n16:10:23.320 [info] ppl_id: 74221866-6c83-4c23-918c-f039ff445450, type: Ppl"},{"event":"cmd_output","timestamp":1607098223,"output":"s, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQu"},{"event":"cmd_output","timestamp":1607098223,"output":"eries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:23.328 [info] Project list_latest_workflows and "},{"event":"cmd_output","timestamp":1607098223,"output":"branch master-0latest_wf details updated: \"wf_id: 1ac94079-0cdf-4fc1-9f10-6c079a684b5f, wf_number: 1"},{"event":"cmd_output","timestamp":1607098223,"output":"\"\n\u001b[0m\u001b[22m\n16:10:23.332 [info] Persisted ppl_sub_init for pipeline with ppl_id: 74221866-6c83-4c"},{"event":"cmd_output","timestamp":1607098223,"output":"23-918c-f039ff445450: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"p"},{"event":"cmd_output","timestamp":1607098223,"output":"ipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 36, in_scheduling: false, ini"},{"event":"cmd_output","timestamp":1607098223,"output":"t_type: \"regular\", inserted_at: ~N[2020-12-04 16:10:23.330463], pipeline_requests: #Ecto.Association"},{"event":"cmd_output","timestamp":1607098223,"output":".NotLoaded, ppl_id: \"74221866-6c83-4c23-918c-f039ff445"},{"event":"cmd_output","timestamp":1607098223,"output":"450\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, "},{"event":"cmd_output","timestamp":1607098223,"output":"terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:23.330477]}\n\u001b[0m\u001b[22m\n16:10:23.358 [i"},{"event":"cmd_output","timestamp":1607098223,"output":"nfo] Request: 'run: %{\"branch_id\" => \"3e342e32-f808-4e49-b92f-a829631eaa14\", \"branch_name\" => \"mast"},{"event":"cmd_output","timestamp":1607098223,"output":"er-1\", \"client_id\" => \"1f18b8b2-f5cd-4bf8-8db9-1814225d417d\", \"commit_sha\" => \"75891a4469\", \"definit"},{"event":"cmd_output","timestamp":1607098223,"output":"ion_file\" => \"\", \"hook_id\" => \"branch\", \"label\" => \"master-1\", \"organization_id\" => \"d549e2ae-7bbd-4"},{"event":"cmd_output","timestamp":1607098223,"output":"c76-9468-6f142e37cacc\", \"owner\" => \"rt\", \"project_id\" => \"list_latest_workflows\", \"repo_name\" => \"2_"},{"event":"cmd_output","timestamp":1607098223,"output":"basic\", \"request_token\" => \"36b90420-364b-11eb-a92a-5254005464e2\", \"requester_id\" => \"61966dfc-9d3d-"},{"event":"cmd_output","timestamp":1607098223,"output":"4799-a0aa-662f16ae9ea6\", \"service\" => \"local\", \"snapshot_id\" => \"\", \"suppressed_attributes\" => [\"acc"},{"event":"cmd_output","timestamp":1607098223,"output":"ess_token\", \"client_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"fe15093b-ce49-4f74-b149-f151b84e"},{"event":"cmd_output","timestamp":1607098223,"output":"b99d\"}\n\u001b[0m\u001b[22m\n16:10:23.399 [info] ppl_id: d1cb87af-47a7-4e12-a38c-e22ead8748d4, type: PplReque"},{"event":"cmd_output","timestamp":1607098223,"output":"sts, event: persisted schedule request with request_token: 36b90420-364b-11eb-a92a-5254005464e2, ori"},{"event":"cmd_output","timestamp":1607098223,"output":"gin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:23."},{"event":"cmd_output","timestamp":1607098223,"output":"404 [info] ppl_id: d1cb87af-47a7-4e12-a38c-e22ead8748d4, type: Ppls, state: initializing, event: in"},{"event":"cmd_output","timestamp":1607098223,"output":"itializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \r"},{"event":"cmd_output","timestamp":1607098223,"output":"\n\u001b[0m\u001b[22m\n16:10:23.409 [info] Project list_latest_workflows and branch master-1latest_wf details "},{"event":"cmd_output","timestamp":1607098223,"output":"updated: \"wf_id: fe15093b-ce49-4f74-b149-f151b84eb99d, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:10:23.411 [info]"},{"event":"cmd_output","timestamp":1607098223,"output":" Persisted ppl_sub_init for pipeline with ppl_id: d1cb87af-47a7-4e12-a38c-e22ead8748d4: %Ppl.PplSub"},{"event":"cmd_output","timestamp":1607098223,"output":"Inits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task"},{"event":"cmd_output","timestamp":1607098223,"output":"_id: nil, error_description: nil, id: 37, in_scheduling: false, init_type: \"regular\", inserted_at: ~"},{"event":"cmd_output","timestamp":1607098223,"output":"N[2020-12-04 16:10:23.409820], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"d1cb87af-47a7-4e12-a38c-e22ead8748d4\", recovery_count: 0, result: "},{"event":"cmd_output","timestamp":1607098223,"output":"nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, upda"},{"event":"cmd_output","timestamp":1607098223,"output":"ted_at: ~N[2020-12-04 16:10:23.409831]}\n\u001b[0m\u001b[22m\n16:10:23.426 [info] Request: 'run: %{\"branch_id"},{"event":"cmd_output","timestamp":1607098223,"output":"\" => \"92cf1700-378c-4a21-b2df-e4e6044f838a\", \"branch_name\" => \"master-2\", \"client_id\" => \"e2cd2032-a"},{"event":"cmd_output","timestamp":1607098223,"output":"cb3-4946-9cfc-443d74ac7795\", \"commit_sha\" => \"75891a4469\", \"definition_file\" => \"\", \"hook_id\" => \"br"},{"event":"cmd_output","timestamp":1607098223,"output":"anch\", \"label\" => \"master-2\", \"organization_id\" => \"8752f975-63c0-407a-86d9-a1bad39a49bf\", \"owner\" ="},{"event":"cmd_output","timestamp":1607098223,"output":"> \"rt\", \"project_id\" => \"list_latest_workflows\", \"repo_name\" => \"2_basic\", \"request_token\" => \"36c3b"},{"event":"cmd_output","timestamp":1607098223,"output":"604-364b-11eb-92e6-5254005464e2\", \"requester_id\" => \"bacdf663-ca4f-4530-b541-b5213c1c505a\", \"service"},{"event":"cmd_output","timestamp":1607098223,"output":"\" => \"local\", \"snapshot_id\" => \"\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"tr"},{"event":"cmd_output","timestamp":1607098223,"output":"iggered_by\" => \"hook\", \"wf_id\" => \"473acbee-76c2-4279-be1b-59b41a5ac606\"}\n\u001b[0m\u001b[22m\n16:10:23.459 ["},{"event":"cmd_output","timestamp":1607098223,"output":"info] ppl_id: edb8fd0b-5585-4011-9b4f-7438e2333f69, type: PplRequests, event: persisted schedule re"},{"event":"cmd_output","timestamp":1607098223,"output":"quest with request_token: 36c3b604-364b-11eb-92e6-5254005464e2, origin: Elixir.Ppl.PplRequests.Model"},{"event":"cmd_output","timestamp":1607098223,"output":".PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:23.462 [info] ppl_id: edb8fd0b-5585"},{"event":"cmd_output","timestamp":1607098223,"output":"-4011-9b4f-7438e2333f69, type: Ppls, state: initializing, event: initializing, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098223,"output":"igin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:23.472 [info] "},{"event":"cmd_output","timestamp":1607098223,"output":"Project list_latest_workflows and branch master-2latest_wf details updated: \"wf_id: 473acbee-76c2-42"},{"event":"cmd_output","timestamp":1607098223,"output":"79-be1b-59b41a5ac606, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:10:23.474 [info] Persisted ppl_sub_init for pipe"},{"event":"cmd_output","timestamp":1607098223,"output":"line with ppl_id: edb8fd0b-5585-4011-9b4f-7438e2333f69: %Ppl.PplSubInits.Model.PplSubInits{__meta__:"},{"event":"cmd_output","timestamp":1607098223,"output":" #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil,"},{"event":"cmd_output","timestamp":1607098223,"output":" id: 38, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:10:23.472538], pi"},{"event":"cmd_output","timestamp":1607098223,"output":"peline_requests: #Ecto.Association.NotLoaded, ppl_id: "},{"event":"cmd_output","timestamp":1607098223,"output":"\"edb8fd0b-5585-4011-9b4f-7438e2333f69\", recovery_count: 0, result: nil, result_reason: nil, state: \""},{"event":"cmd_output","timestamp":1607098223,"output":"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:23.47"},{"event":"cmd_output","timestamp":1607098223,"output":"2552]}\n\u001b[0m\u001b[22m\n16:10:23.485 [info] Request: 'run: %{\"branch_id\" => \"6775ceea-d8b6-48e3-bc18-256"},{"event":"cmd_output","timestamp":1607098223,"output":"c797adf15\", \"branch_name\" => \"master-3\", \"client_id\" => \"0bdd78fd-683d-42b3-9390-f59bc81026e7\", \"com"},{"event":"cmd_output","timestamp":1607098223,"output":"mit_sha\" => \"75891a4469\", \"definition_file\" => \"\", \"hook_id\" => \"branch\", \"label\" => \"master-3\", \"or"},{"event":"cmd_output","timestamp":1607098223,"output":"ganization_id\" => \"4f21ee19-9652-4e98-b0cb-85f1ac8f74d5\", \"owner\" => \"rt\", \"project_id\" => \"list_lat"},{"event":"cmd_output","timestamp":1607098223,"output":"est_workflows\", \"repo_name\" => \"2_basic\", \"request_token\" => \"36cd662c-364b-11eb-9259-5254005464e2\","},{"event":"cmd_output","timestamp":1607098223,"output":" \"requester_id\" => \"0297a54b-8afe-43db-97ef-1d1c5cca9077\", \"service\" => \"local\", \"snapshot_id\" => \"\""},{"event":"cmd_output","timestamp":1607098223,"output":", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" =>"},{"event":"cmd_output","timestamp":1607098223,"output":" \"61e53be7-ecbf-4666-9fa8-581620f0d604\"}\n\u001b[0m\u001b[22m\n16:10:23.507 [info] ppl_id: 87dc30ef-6275-4b2b"},{"event":"cmd_output","timestamp":1607098223,"output":"-9807-f32f91179bfe, type: PplRequests, event: persisted schedule request with request_token: 36cd662"},{"event":"cmd_output","timestamp":1607098223,"output":"c-364b-11eb-9259-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_respo"},{"event":"cmd_output","timestamp":1607098223,"output":"nse/2(L55), \n\u001b[0m\u001b[22m\n16:10:23.509 [info] ppl_id: 87dc30ef-6275-4b2b-9807-f32f91179bfe, type: Pp"},{"event":"cmd_output","timestamp":1607098223,"output":"ls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQ"},{"event":"cmd_output","timestamp":1607098223,"output":"ueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:23.513 [info] Project list_latest_workflows and"},{"event":"cmd_output","timestamp":1607098223,"output":" branch master-3latest_wf details updated: \"wf_id: 61e53be7-ecbf-4666-9fa8-581620f0d604, wf_number: "},{"event":"cmd_output","timestamp":1607098223,"output":"1\"\n\u001b[0m\u001b[22m\n16:10:23.515 [info] Persisted ppl_sub_init for pipeline with ppl_id: 87dc30ef-6275-4"},{"event":"cmd_output","timestamp":1607098223,"output":"b2b-9807-f32f91179bfe: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \""},{"event":"cmd_output","timestamp":1607098223,"output":"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 39, in_scheduling: false, in"},{"event":"cmd_output","timestamp":1607098223,"output":"it_type: \"regular\", inserted_at: ~N[2020-12-04 16:10:23.514187], pipeline_requests: #Ecto.Associatio"},{"event":"cmd_output","timestamp":1607098223,"output":"n.NotLoaded, ppl_id: \"87dc30ef-6275-4b2b-9807-f32f9117"},{"event":"cmd_output","timestamp":1607098223,"output":"9bfe\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil,"},{"event":"cmd_output","timestamp":1607098223,"output":" terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:23.514197]}\n\u001b[0m\u001b[22m\n16:10:23.527 ["},{"event":"cmd_output","timestamp":1607098223,"output":"info] Request: 'run: %{\"branch_id\" => \"a57e05e8-4e92-4ca4-828d-05205b6f7a6d\", \"branch_name\" => \"mas"},{"event":"cmd_output","timestamp":1607098223,"output":"ter-4\", \"client_id\" => \"e4c2d5a0-acc7-49a7-bcd5-b8e403704165\", \"commit_sha\" => \"75891a4469\", \"defini"},{"event":"cmd_output","timestamp":1607098223,"output":"tion_file\" => \"\", \"hook_id\" => \"branch\", \"label\" => \"master-4\", \"organization_id\" => \"ccbfb857-f38e-"},{"event":"cmd_output","timestamp":1607098223,"output":"4bd5-9898-a785821fea82\", \"owner\" => \"rt\", \"project_id\" => \"list_latest_workflows\", \"repo_name\" => \"2"},{"event":"cmd_output","timestamp":1607098223,"output":"_basic\", \"request_token\" => \"36d389da-364b-11eb-a3dc-5254005464e2\", \"requester_id\" => \"8c5df7c3-eb11"},{"event":"cmd_output","timestamp":1607098223,"output":"-4433-8ab8-3c45d339b36d\", \"service\" => \"local\", \"snapshot_id\" => \"\", \"suppressed_attributes\" => [\"ac"},{"event":"cmd_output","timestamp":1607098223,"output":"cess_token\", \"client_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"3d59d823-7199-454a-8d13-fda6115"},{"event":"cmd_output","timestamp":1607098223,"output":"15d3f\"}\n\u001b[0m\u001b[22m\n16:10:23.552 [info] ppl_id: 01a5ce37-52c9-4069-bdb1-27f51289e77e, type: PplRequ"},{"event":"cmd_output","timestamp":1607098223,"output":"ests, event: persisted schedule request with request_token: 36d389da-364b-11eb-a3dc-5254005464e2, or"},{"event":"cmd_output","timestamp":1607098223,"output":"igin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:23"},{"event":"cmd_output","timestamp":1607098223,"output":".555 [info] ppl_id: 01a5ce37-52c9-4069-bdb1-27f51289e77e, type: Ppls, state: initializing, event: i"},{"event":"cmd_output","timestamp":1607098223,"output":"nitializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), "},{"event":"cmd_output","timestamp":1607098223,"output":"\n\u001b[0m\u001b[22m\n16:10:23.561 [info] Project list_latest_workflows and branch master-4latest_wf details"},{"event":"cmd_output","timestamp":1607098223,"output":" updated: \"wf_id: 3d59d823-7199-454a-8d13-fda611515d3f, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:10:23.563 [info"},{"event":"cmd_output","timestamp":1607098223,"output":"] Persisted ppl_sub_init for pipeline with ppl_id: 01a5ce37-52c9-4069-bdb1-27f51289e77e: %Ppl.PplSu"},{"event":"cmd_output","timestamp":1607098223,"output":"bInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_tas"},{"event":"cmd_output","timestamp":1607098223,"output":"k_id: nil, error_description: nil, id: 40, in_scheduling: false, init_type: \"regular\", inserted_at: "},{"event":"cmd_output","timestamp":1607098223,"output":"~N[2020-12-04 16:10:23.561263], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"01a5ce37-52c9-4069-bdb1-27f51289e77e\", recovery_count: 0, result:"},{"event":"cmd_output","timestamp":1607098223,"output":" nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, upd"},{"event":"cmd_output","timestamp":1607098223,"output":"ated_at: ~N[2020-12-04 16:10:23.561272]}\n\u001b[0m\u001b[22m\n16:10:23.572 [info] Request: 'run: %{\"branch_i"},{"event":"cmd_output","timestamp":1607098223,"output":"d\" => \"35c0e1de-7542-4496-8ae4-e41a9314bba5\", \"branch_name\" => \"master-5\", \"client_id\" => \"46b0b539-"},{"event":"cmd_output","timestamp":1607098223,"output":"157f-42d1-9a9d-ce4f260d66dd\", \"commit_sha\" => \"75891a4469\", \"definition_file\" => \"\", \"hook_id\" => \"b"},{"event":"cmd_output","timestamp":1607098223,"output":"ranch\", \"label\" => \"master-5\", \"organization_id\" => \"eeb6fe95-fef8-4c8b-99b3-26e9d4efab63\", \"owner\" "},{"event":"cmd_output","timestamp":1607098223,"output":"=> \"rt\", \"project_id\" => \"list_latest_workflows\", \"repo_name\" => \"2_basic\", \"request_token\" => \"36da"},{"event":"cmd_output","timestamp":1607098223,"output":"cef2-364b-11eb-bc84-5254005464e2\", \"requester_id\" => \"f23bc061-a4af-4c84-bcf2-a7f774cd0060\", \"servic"},{"event":"cmd_output","timestamp":1607098223,"output":"e\" => \"local\", \"snapshot_id\" => \"\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"t"},{"event":"cmd_output","timestamp":1607098223,"output":"riggered_by\" => \"hook\", \"wf_id\" => \"19f65fb3-e807-45af-9328-d8db948783b4\"}\n\u001b[0m\u001b[22m\n16:10:23.596 "},{"event":"cmd_output","timestamp":1607098223,"output":"[info] ppl_id: 026dd4fe-f373-4822-b79d-5d6351d3cc75, type: PplRequests, event: persisted schedule r"},{"event":"cmd_output","timestamp":1607098223,"output":"equest with request_token: 36dacef2-364b-11eb-bc84-5254005464e2, origin: Elixir.Ppl.PplRequests.Mode"},{"event":"cmd_output","timestamp":1607098223,"output":"l.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:23.600 [info] ppl_id: 026dd4fe-f37"},{"event":"cmd_output","timestamp":1607098223,"output":"3-4822-b79d-5d6351d3cc75, type: Ppls, state: initializing, event: initializing, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098223,"output":"rigin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:23.606 [info] "},{"event":"cmd_output","timestamp":1607098223,"output":" Project list_latest_workflows and branch master-5latest_wf details updated: \"wf_id: 19f65fb3-e807-4"},{"event":"cmd_output","timestamp":1607098223,"output":"5af-9328-d8db948783b4, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:10:23.608 [info] Persisted ppl_sub_init for pip"},{"event":"cmd_output","timestamp":1607098223,"output":"eline with ppl_id: 026dd4fe-f373-4822-b79d-5d6351d3cc75: %Ppl.PplSubInits.Model.PplSubInits{__meta__"},{"event":"cmd_output","timestamp":1607098223,"output":": #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil"},{"event":"cmd_output","timestamp":1607098223,"output":", id: 41, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:10:23.606838], p"},{"event":"cmd_output","timestamp":1607098223,"output":"ipeline_requests: #Ecto.Association.NotLoaded, ppl_id:"},{"event":"cmd_output","timestamp":1607098223,"output":" \"026dd4fe-f373-4822-b79d-5d6351d3cc75\", recovery_count: 0, result: nil, result_reason: nil, state: "},{"event":"cmd_output","timestamp":1607098223,"output":"\"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:23.6"},{"event":"cmd_output","timestamp":1607098223,"output":"07325]}\n\u001b[0m\u001b[22m\n16:10:23.617 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.Initializin"},{"event":"cmd_output","timestamp":1607098223,"output":"gState with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl."},{"event":"cmd_output","timestamp":1607098223,"output":"beholder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"i"},{"event":"cmd_output","timestamp":1607098223,"output":"nitializing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_"},{"event":"cmd_output","timestamp":1607098223,"output":"state: \"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingStat"},{"event":"cmd_output","timestamp":1607098223,"output":"e.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :r"},{"event":"cmd_output","timestamp":1607098223,"output":"ecovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:23.6"},{"event":"cmd_output","timestamp":1607098223,"output":"18 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.ST"},{"event":"cmd_output","timestamp":1607098223,"output":"MHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler"},{"event":"cmd_output","timestamp":1607098223,"output":"-PendingState\"]}, recurring args: %{allowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], cooli"},{"event":"cmd_output","timestamp":1607098223,"output":"ng_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publisher_cb: #Functi"},{"event":"cmd_output","timestamp":1607098223,"output":"on<0.8493005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :te"},{"event":"cmd_output","timestamp":1607098223,"output":"rminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppl"},{"event":"cmd_output","timestamp":1607098223,"output":"s, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:10:23.619 [info] Periodic from module Elixir"},{"event":"cmd_output","timestamp":1607098223,"output":".Ppl.Ppls.STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 m"},{"event":"cmd_output","timestamp":1607098223,"output":"s, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{al"},{"event":"cmd_output","timestamp":1607098223,"output":"lowed_states: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Pp"},{"event":"cmd_output","timestamp":1607098223,"output":"ls, observed_state: \"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingS"},{"event":"cmd_output","timestamp":1607098223,"output":"tate.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result,"},{"event":"cmd_output","timestamp":1607098223,"output":" :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:2"},{"event":"cmd_output","timestamp":1607098223,"output":"3.620 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl.Ppls"},{"event":"cmd_output","timestamp":1607098223,"output":".STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHand"},{"event":"cmd_output","timestamp":1607098223,"output":"ler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time"},{"event":"cmd_output","timestamp":1607098223,"output":"_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"running\", publisher_cb: #Function<0.7"},{"event":"cmd_output","timestamp":1607098223,"output":"4670282/1 in Ppl.Ppls.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :termina"},{"event":"cmd_output","timestamp":1607098223,"output":"te_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, ta"},{"event":"cmd_output","timestamp":1607098223,"output":"sk_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:10:23.621 [info] Periodic from module Elixir.Ppl."},{"event":"cmd_output","timestamp":1607098223,"output":"Ppls.STMHandler.StoppingState with name Elixir.Ppl.Ppls.STMHandler.StoppingState :: period: 100 ms, "},{"event":"cmd_output","timestamp":1607098223,"output":"metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring args: %{allo"},{"event":"cmd_output","timestamp":1607098223,"output":"wed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed"},{"event":"cmd_output","timestamp":1607098223,"output":"_state: \"stopping\", publisher_cb: #Function<0.71803493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0"},{"event":"cmd_output","timestamp":1607098223,"output":">, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_"},{"event":"cmd_output","timestamp":1607098223,"output":"count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:23.621 [info"},{"event":"cmd_output","timestamp":1607098223,"output":"] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubIn"},{"event":"cmd_output","timestamp":1607098223,"output":"its.STMHandler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubIni"},{"event":"cmd_output","timestamp":1607098223,"output":"ts-STMHandler-CreatedState\"]}, recurring args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_"},{"event":"cmd_output","timestamp":1607098223,"output":"sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"created\", publisher_cb: :"},{"event":"cmd_output","timestamp":1607098223,"output":"skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recove"},{"event":"cmd_output","timestamp":1607098223,"output":"ry_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098223,"output":"6:10:23.622 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name E"},{"event":"cmd_output","timestamp":1607098223,"output":"lixir.Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_u"},{"event":"cmd_output","timestamp":1607098223,"output":"p\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %{allowed_states: [\"regular_init\""},{"event":"cmd_output","timestamp":1607098223,"output":", \"compilation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, ob"},{"event":"cmd_output","timestamp":1607098223,"output":"served_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_reque"},{"event":"cmd_output","timestamp":1607098223,"output":"st, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubIni"},{"event":"cmd_output","timestamp":1607098223,"output":"ts, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:23.623 [info] Periodic from module Elixir.Ppl.PplSubI"},{"event":"cmd_output","timestamp":1607098223,"output":"nits.STMHandler.CompilationState with name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: per"},{"event":"cmd_output","timestamp":1607098223,"output":"iod: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]},"},{"event":"cmd_output","timestamp":1607098223,"output":" recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time"},{"event":"cmd_output","timestamp":1607098223,"output":"_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"compilation\", publisher"},{"event":"cmd_output","timestamp":1607098223,"output":"_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :"},{"event":"cmd_output","timestamp":1607098223,"output":"recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098223,"output":"22m\n16:10:23.623 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState wi"},{"event":"cmd_output","timestamp":1607098223,"output":"th name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beh"},{"event":"cmd_output","timestamp":1607098223,"output":"older-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurring args: %{allowed_states: "},{"event":"cmd_output","timestamp":1607098223,"output":"[\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"re"},{"event":"cmd_output","timestamp":1607098223,"output":"gular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_"},{"event":"cmd_output","timestamp":1607098223,"output":"at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supe"},{"event":"cmd_output","timestamp":1607098223,"output":"rvisor: :skip}\n\u001b[0m\u001b[22m\n16:10:23.624 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler"},{"event":"cmd_output","timestamp":1607098223,"output":".InitializingState with name Elixir.Ppl.PplBlocks.STMHandler.InitializingState :: period: 100 ms, me"},{"event":"cmd_output","timestamp":1607098223,"output":"tric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-InitializingState\"]}, recurring args:"},{"event":"cmd_output","timestamp":1607098223,"output":" %{allowed_states: [\"initializing\", \"waiting\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplB"},{"event":"cmd_output","timestamp":1607098223,"output":"locks.Model.PplBlocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, retu"},{"event":"cmd_output","timestamp":1607098223,"output":"rning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_inde"},{"event":"cmd_output","timestamp":1607098223,"output":"x], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:23.625 [info] "},{"event":"cmd_output","timestamp":1607098223,"output":"Periodic from module Elixir.Ppl.PplBlocks.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks.STM"},{"event":"cmd_output","timestamp":1607098223,"output":"Handler.WaitingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHa"},{"event":"cmd_output","timestamp":1607098223,"output":"ndler-WaitingState\"]}, recurring args: %{allowed_states: [\"waiting\", \"running\", \"done\"], cooling_tim"},{"event":"cmd_output","timestamp":1607098223,"output":"e_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"waiting\", publisher_cb: #Fu"},{"event":"cmd_output","timestamp":1607098223,"output":"nction<0.8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, returning: "},{"event":"cmd_output","timestamp":1607098223,"output":"[:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], sch"},{"event":"cmd_output","timestamp":1607098223,"output":"ema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:23.626 [info] Periodi"},{"event":"cmd_output","timestamp":1607098223,"output":"c from module Elixir.Ppl.PplBlocks.STMHandler.RunningState with name Elixir.Ppl.PplBlocks.STMHandler"},{"event":"cmd_output","timestamp":1607098223,"output":".RunningState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-R"},{"event":"cmd_output","timestamp":1607098223,"output":"unningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec:"},{"event":"cmd_output","timestamp":1607098223,"output":" -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"running\", publisher_cb: #Functio"},{"event":"cmd_output","timestamp":1607098223,"output":"n<0.28166834/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id"},{"event":"cmd_output","timestamp":1607098223,"output":", :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_i"},{"event":"cmd_output","timestamp":1607098223,"output":"d], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:23.626 [info] "},{"event":"cmd_output","timestamp":1607098223,"output":"Periodic from module Elixir.Ppl.PplBlocks.STMHandler.StoppingState with name Elixir.Ppl.PplBlocks.ST"},{"event":"cmd_output","timestamp":1607098223,"output":"MHandler.StoppingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STM"},{"event":"cmd_output","timestamp":1607098223,"output":"Handler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: "},{"event":"cmd_output","timestamp":1607098223,"output":"-2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"stopping\", publisher_cb: #Functio"},{"event":"cmd_output","timestamp":1607098223,"output":"n<0.104215991/1 in Ppl.PplBlocks.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:"},{"event":"cmd_output","timestamp":1607098223,"output":"id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block"},{"event":"cmd_output","timestamp":1607098223,"output":"_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:23.627 [info]"},{"event":"cmd_output","timestamp":1607098223,"output":" Periodic from module Elixir.Block.Blocks.STMHandler.InitializingState with name Elixir.Block.Block"},{"event":"cmd_output","timestamp":1607098223,"output":"s.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Bloc"},{"event":"cmd_output","timestamp":1607098223,"output":"ks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_t"},{"event":"cmd_output","timestamp":1607098223,"output":"ime_sec: 0, initial_query: Block.Blocks.Model.Blocks, observed_state: \"initializing\", publisher_cb: "},{"event":"cmd_output","timestamp":1607098223,"output":":skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_cou"},{"event":"cmd_output","timestamp":1607098223,"output":"nt, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:23.627 "},{"event":"cmd_output","timestamp":1607098223,"output":"[info] Periodic from module Elixir.Block.Blocks.STMHandler.RunningState with name Elixir.Block.Bloc"},{"event":"cmd_output","timestamp":1607098223,"output":"ks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-S"},{"event":"cmd_output","timestamp":1607098223,"output":"TMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], coolin"},{"event":"cmd_output","timestamp":1607098223,"output":"g_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"running\", publisher_cb: :"},{"event":"cmd_output","timestamp":1607098223,"output":"skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_coun"},{"event":"cmd_output","timestamp":1607098223,"output":"t, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:23.627 ["},{"event":"cmd_output","timestamp":1607098223,"output":"info] Periodic from module Elixir.Block.Blocks.STMHandler.StoppingState with name Elixir.Block.Bloc"},{"event":"cmd_output","timestamp":1607098223,"output":"ks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-"},{"event":"cmd_output","timestamp":1607098223,"output":"STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_se"},{"event":"cmd_output","timestamp":1607098223,"output":"c: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"stopping\", publisher_cb: :skip, re"},{"event":"cmd_output","timestamp":1607098223,"output":"po: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :bloc"},{"event":"cmd_output","timestamp":1607098223,"output":"k_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:23.628 [info] P"},{"event":"cmd_output","timestamp":1607098223,"output":"eriodic from module Elixir.Block.Tasks.STMHandler.PendingState with name Elixir.Block.Tasks.STMHandl"},{"event":"cmd_output","timestamp":1607098223,"output":"er.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-Pe"},{"event":"cmd_output","timestamp":1607098223,"output":"ndingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_q"},{"event":"cmd_output","timestamp":1607098223,"output":"uery: Block.Tasks.Model.Tasks, observed_state: \"pending\", publisher_cb: :skip, repo: Block.EctoRepo,"},{"event":"cmd_output","timestamp":1607098223,"output":" returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id, :build_reques"},{"event":"cmd_output","timestamp":1607098223,"output":"t_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:23.628 [info] Per"},{"event":"cmd_output","timestamp":1607098223,"output":"iodic from module Elixir.Block.Tasks.STMHandler.RunningState with name Elixir.Block.Tasks.STMHandler"},{"event":"cmd_output","timestamp":1607098223,"output":".RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-Runn"},{"event":"cmd_output","timestamp":1607098223,"output":"ingState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2"},{"event":"cmd_output","timestamp":1607098223,"output":", initial_query: Block.Tasks.Model.Tasks, observed_state: \"running\", publisher_cb: :skip, repo: Bloc"},{"event":"cmd_output","timestamp":1607098223,"output":"k.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], s"},{"event":"cmd_output","timestamp":1607098223,"output":"chema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:23.629 [info] Periodic fr"},{"event":"cmd_output","timestamp":1607098223,"output":"om module Elixir.Block.Tasks.STMHandler.StoppingState with name Elixir.Block.Tasks.STMHandler.Stoppi"},{"event":"cmd_output","timestamp":1607098223,"output":"ngState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-StoppingSt"},{"event":"cmd_output","timestamp":1607098223,"output":"ate\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query:"},{"event":"cmd_output","timestamp":1607098223,"output":" Block.Tasks.Model.Tasks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, ret"},{"event":"cmd_output","timestamp":1607098223,"output":"urning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Ta"},{"event":"cmd_output","timestamp":1607098223,"output":"sks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:23.753 [info] ppl_id: 74221866-6c83-4c23"},{"event":"cmd_output","timestamp":1607098223,"output":"-918c-f039ff445450, type: PplRequests, event: persisted source_args for pipeline: 74221866-6c83-4c23"},{"event":"cmd_output","timestamp":1607098223,"output":"-918c-f039ff445450, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n"},{"event":"cmd_output","timestamp":1607098223,"output":"\u001b[0m\u001b[22m\n16:10:23.756 [info] ppl_id: 74221866-6c83-4c23-918c-f039ff445450, type: PplSubInits, sta"},{"event":"cmd_output","timestamp":1607098223,"output":"te: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_ch"},{"event":"cmd_output","timestamp":1607098223,"output":"ange/1(L90), \n\u001b[0m\u001b[22m\n16:10:23.790 [info] ppl_id: 74221866-6c83-4c23-918c-f039ff445450, type: P"},{"event":"cmd_output","timestamp":1607098223,"output":"plSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.ST"},{"event":"cmd_output","timestamp":1607098223,"output":"M.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:23.838 [info] ppl_id: 74221866-6c83-4c23-918c-f0"},{"event":"cmd_output","timestamp":1607098223,"output":"39ff445450, type: PplRequests, event: persisted definition for request with request_token: 36ae7dd4-"},{"event":"cmd_output","timestamp":1607098223,"output":"364b-11eb-806e-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definiti"},{"event":"cmd_output","timestamp":1607098223,"output":"on/3(L76), \n\u001b[0m\u001b[22m\n16:10:23.855 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta_"},{"event":"cmd_output","timestamp":1607098223,"output":"_: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:10:23.853456], name: \"mas"},{"event":"cmd_output","timestamp":1607098223,"output":"ter-0-.semaphore/semaphore.yml\", organization_id: \"bf04a99c-87ae-4e9d-8696-e3fb2cb6830d\", project_id"},{"event":"cmd_output","timestamp":1607098223,"output":": \"list_latest_workflows\", queue_id: \"7af6fff0-4b4b-438b-b671-d3deb1acee02\", scope: \"project\", updat"},{"event":"cmd_output","timestamp":1607098223,"output":"ed_at: ~N[2020-12-04 16:10:23.853469], user_generated: false}}\n\u001b[0m\u001b[22m\n16:10:23.863 [info] even"},{"event":"cmd_output","timestamp":1607098223,"output":"t: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098223,"output":"\n16:10:23.863 [info] ppl_id: 74221866-6c83-4c23-918c-f039ff445450, type: PplBlocks, block_index: 0,"},{"event":"cmd_output","timestamp":1607098223,"output":" state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.R"},{"event":"cmd_output","timestamp":1607098223,"output":"egularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:23.866 [info] ppl_id: 74221866-6c83-4c23-918c-f"},{"event":"cmd_output","timestamp":1607098223,"output":"039ff445450, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count:"},{"event":"cmd_output","timestamp":1607098223,"output":" 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:23.878 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098223,"output":": d1cb87af-47a7-4e12-a38c-e22ead8748d4, type: PplRequests, event: persisted source_args for pipeline"},{"event":"cmd_output","timestamp":1607098223,"output":": d1cb87af-47a7-4e12-a38c-e22ead8748d4, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.inse"},{"event":"cmd_output","timestamp":1607098223,"output":"rt_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:23.881 [info] ppl_id: d1cb87af-47a7-4e12-a38c-e22ead8748d4, ty"},{"event":"cmd_output","timestamp":1607098223,"output":"pe: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.S"},{"event":"cmd_output","timestamp":1607098223,"output":"TM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:23.884 [info] ppl_id: 74221866-6c83-4c23-918c-f"},{"event":"cmd_output","timestamp":1607098223,"output":"039ff445450, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count"},{"event":"cmd_output","timestamp":1607098223,"output":": 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:23.886 [info] ppl_i"},{"event":"cmd_output","timestamp":1607098223,"output":"d: 74221866-6c83-4c23-918c-f039ff445450, type: Ppls, state: pending, event: exit_scheduling, recover"},{"event":"cmd_output","timestamp":1607098223,"output":"y_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:23.902 [info]"},{"event":"cmd_output","timestamp":1607098223,"output":" ppl_id: 74221866-6c83-4c23-918c-f039ff445450, type: Ppls, state: queuing, event: exit_scheduling, "},{"event":"cmd_output","timestamp":1607098223,"output":"recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:23.915"},{"event":"cmd_output","timestamp":1607098223,"output":" [info] ppl_id: 74221866-6c83-4c23-918c-f039ff445450, type: Ppls, state: running, event: exit_sched"},{"event":"cmd_output","timestamp":1607098223,"output":"uling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10"},{"event":"cmd_output","timestamp":1607098223,"output":":23.925 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"74221866-6c83-4c23-"},{"event":"cmd_output","timestamp":1607098223,"output":"918c-f039ff445450\"\n\u001b[0m\u001b[22m\n16:10:23.926 [info] ppl_id: d1cb87af-47a7-4e12-a38c-e22ead8748d4, ty"},{"event":"cmd_output","timestamp":1607098223,"output":"pe: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loop"},{"event":"cmd_output","timestamp":1607098223,"output":"er.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:23.934 [info] block_id: b766a689-ea3f-4303-"},{"event":"cmd_output","timestamp":1607098223,"output":"8740-bdde7dbe5211, type: BlockRequests, event: persisted block run request from ppl 74221866-6c83-4c"},{"event":"cmd_output","timestamp":1607098223,"output":"23-918c-f039ff445450 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.proc"},{"event":"cmd_output","timestamp":1607098223,"output":"ess_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:23.936 [info] block_id: b766a689-ea3f-4303-8740-bdde7dbe521"},{"event":"cmd_output","timestamp":1607098223,"output":"1, type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.B"},{"event":"cmd_output","timestamp":1607098223,"output":"locks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:23.942 [info] Block 0 of pipeline with "},{"event":"cmd_output","timestamp":1607098223,"output":"id: 74221866-6c83-4c23-918c-f039ff445450 scheduled in block service with id: : \"b766a689-ea3f-4303-8"},{"event":"cmd_output","timestamp":1607098223,"output":"740-bdde7dbe5211\"\n\u001b[0m\u001b[22m\n16:10:23.945 [info] ppl_id: 74221866-6c83-4c23-918c-f039ff445450, typ"},{"event":"cmd_output","timestamp":1607098223,"output":"e: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098223,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:23.952 [info] block_id: b766a689-ea"},{"event":"cmd_output","timestamp":1607098223,"output":"3f-4303-8740-bdde7dbe5211, type: BlockRequests, event: persisted build and sub_ppl details for block"},{"event":"cmd_output","timestamp":1607098223,"output":"_request: b766a689-ea3f-4303-8740-bdde7dbe5211, origin: Elixir.Block.BlockRequests.Model.BlockReques"},{"event":"cmd_output","timestamp":1607098223,"output":"tsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:23.960 [info] block_id: b766a689-ea3f-4303-8740-b"},{"event":"cmd_output","timestamp":1607098223,"output":"dde7dbe5211, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Bl"},{"event":"cmd_output","timestamp":1607098223,"output":"ocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:23.965 [info] block_id: b766a"},{"event":"cmd_output","timestamp":1607098223,"output":"689-ea3f-4303-8740-bdde7dbe5211, type: Blocks, state: running, event: exit_scheduling, recovery_coun"},{"event":"cmd_output","timestamp":1607098223,"output":"t: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:23.990 [info] ppl_"},{"event":"cmd_output","timestamp":1607098223,"output":"id: d1cb87af-47a7-4e12-a38c-e22ead8748d4, type: PplRequests, event: persisted definition for request"},{"event":"cmd_output","timestamp":1607098223,"output":" with request_token: 36b90420-364b-11eb-a92a-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplR"},{"event":"cmd_output","timestamp":1607098223,"output":"equestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:23.995 [info] block_id: b766a689-ea3f-4"},{"event":"cmd_output","timestamp":1607098223,"output":"303-8740-bdde7dbe5211, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098224,"output":"n: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:24.000 [info] Queue persisted"},{"event":"cmd_output","timestamp":1607098224,"output":": {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N"},{"event":"cmd_output","timestamp":1607098224,"output":"[2020-12-04 16:10:23.997643], name: \"master-1-.semaphore/semaphore.yml\", organization_id: \"d549e2ae-"},{"event":"cmd_output","timestamp":1607098224,"output":"7bbd-4c76-9468-6f142e37cacc\", project_id: \"list_latest_workflows\", queue_id: \"bfb6a942-ea3e-4b97-bee"},{"event":"cmd_output","timestamp":1607098224,"output":"7-b9a8906205cd\", scope: \"project\", updated_at: ~N[2020-12-04 16:10:23.997656], user_generated: false"},{"event":"cmd_output","timestamp":1607098224,"output":"}}\n\u001b[0m\u001b[22m\n16:10:24.005 [info] ppl_id: edb8fd0b-5585-4011-9b4f-7438e2333f69, type: PplRequests,"},{"event":"cmd_output","timestamp":1607098224,"output":" event: persisted source_args for pipeline: edb8fd0b-5585-4011-9b4f-7438e2333f69, origin: Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098224,"output":".PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:24.008 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098224,"output":": edb8fd0b-5585-4011-9b4f-7438e2333f69, type: PplSubInits, state: fetching, event: exit_scheduling, "},{"event":"cmd_output","timestamp":1607098224,"output":"recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:24.013"},{"event":"cmd_output","timestamp":1607098224,"output":" [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105),"},{"event":"cmd_output","timestamp":1607098224,"output":" \n\u001b[0m\u001b[22m\n16:10:24.013 [info] ppl_id: d1cb87af-47a7-4e12-a38c-e22ead8748d4, type: PplBlocks, bl"},{"event":"cmd_output","timestamp":1607098224,"output":"ock_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits"},{"event":"cmd_output","timestamp":1607098224,"output":".STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:24.016 [info] ppl_id: d1cb87af-47a"},{"event":"cmd_output","timestamp":1607098224,"output":"7-4e12-a38c-e22ead8748d4, type: PplSubInits, state: done, result: passed, event: exit_scheduling, re"},{"event":"cmd_output","timestamp":1607098224,"output":"covery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:24.028 ["},{"event":"cmd_output","timestamp":1607098224,"output":"info] ppl_id: d1cb87af-47a7-4e12-a38c-e22ead8748d4, type: PplBlocks, block_index: 0, state: waiting"},{"event":"cmd_output","timestamp":1607098224,"output":", event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90),"},{"event":"cmd_output","timestamp":1607098224,"output":" \n\u001b[0m\u001b[22m\n16:10:24.032 [info] ppl_id: d1cb87af-47a7-4e12-a38c-e22ead8748d4, type: Ppls, state: "},{"event":"cmd_output","timestamp":1607098224,"output":"pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/"},{"event":"cmd_output","timestamp":1607098224,"output":"1(L90), \n\u001b[0m\u001b[22m\n16:10:24.043 [info] ppl_id: d1cb87af-47a7-4e12-a38c-e22ead8748d4, type: Ppls, "},{"event":"cmd_output","timestamp":1607098224,"output":"state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_"},{"event":"cmd_output","timestamp":1607098224,"output":"change/1(L90), \n\u001b[0m\u001b[22m\n16:10:24.046 [info] ppl_id: edb8fd0b-5585-4011-9b4f-7438e2333f69, type:"},{"event":"cmd_output","timestamp":1607098224,"output":" PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper."},{"event":"cmd_output","timestamp":1607098224,"output":"STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:24.064 [info] ppl_id: d1cb87af-47a7-4e12-a38c-"},{"event":"cmd_output","timestamp":1607098224,"output":"e22ead8748d4, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098224,"output":"Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:24.071 [info] block_id: b766a689-ea3f-4"},{"event":"cmd_output","timestamp":1607098224,"output":"303-8740-bdde7dbe5211, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098224,"output":"Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:24.084 [info] PplBlocks WaitingS"},{"event":"cmd_output","timestamp":1607098224,"output":"tate STM is scheduling block 0 from pipeline: \"d1cb87af-47a7-4e12-a38c-e22ead8748d4\"\n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098224,"output":"10:24.084 [info] block_id: b766a689-ea3f-4303-8740-bdde7dbe5211, type: Blocks, state: done, event: "},{"event":"cmd_output","timestamp":1607098224,"output":"exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098224,"output":"22m\n16:10:24.097 [info] block_id: 532ef73c-4a26-4b07-b318-c764997b8b8f, type: BlockRequests, event"},{"event":"cmd_output","timestamp":1607098224,"output":": persisted block run request from ppl d1cb87af-47a7-4e12-a38c-e22ead8748d4 for block 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098224,"output":"xir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:24.10"},{"event":"cmd_output","timestamp":1607098224,"output":"2 [info] block_id: 532ef73c-4a26-4b07-b318-c764997b8b8f, type: Blocks, state: initializing, event: "},{"event":"cmd_output","timestamp":1607098224,"output":"initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b["},{"event":"cmd_output","timestamp":1607098224,"output":"0m\u001b[22m\n16:10:24.102 [info] ppl_id: edb8fd0b-5585-4011-9b4f-7438e2333f69, type: PplRequests, event"},{"event":"cmd_output","timestamp":1607098224,"output":": persisted definition for request with request_token: 36c3b604-364b-11eb-92e6-5254005464e2, origin:"},{"event":"cmd_output","timestamp":1607098224,"output":" Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:24.104"},{"event":"cmd_output","timestamp":1607098224,"output":" [info] ppl_id: 74221866-6c83-4c23-918c-f039ff445450, block_id: b766a689-ea3f-4303-8740-bdde7dbe521"},{"event":"cmd_output","timestamp":1607098224,"output":"1, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_co"},{"event":"cmd_output","timestamp":1607098224,"output":"unt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:24.105 [info] Bl"},{"event":"cmd_output","timestamp":1607098224,"output":"ock 0 of pipeline with id: d1cb87af-47a7-4e12-a38c-e22ead8748d4 scheduled in block service with id: "},{"event":"cmd_output","timestamp":1607098224,"output":": \"532ef73c-4a26-4b07-b318-c764997b8b8f\"\n\u001b[0m\u001b[22m\n16:10:24.108 [info] Queue persisted: {:ok, %Pp"},{"event":"cmd_output","timestamp":1607098224,"output":"l.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04"},{"event":"cmd_output","timestamp":1607098224,"output":" 16:10:24.106825], name: \"master-2-.semaphore/semaphore.yml\", organization_id: \"8752f975-63c0-407a-8"},{"event":"cmd_output","timestamp":1607098224,"output":"6d9-a1bad39a49bf\", project_id: \"list_latest_workflows\", queue_id: \"bb046d67-c800-4230-ae1c-6266a2098"},{"event":"cmd_output","timestamp":1607098224,"output":"816\", scope: \"project\", updated_at: ~N[2020-12-04 16:10:24.106834], user_generated: false}}\n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098224,"output":"2m\n16:10:24.110 [info] ppl_id: d1cb87af-47a7-4e12-a38c-e22ead8748d4, type: PplBlocks, block_index:"},{"event":"cmd_output","timestamp":1607098224,"output":" 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_st"},{"event":"cmd_output","timestamp":1607098224,"output":"ate_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:24.118 [info] block_id: 532ef73c-4a26-4b07-b318-c764997b8b8f,"},{"event":"cmd_output","timestamp":1607098224,"output":" type: BlockRequests, event: persisted build and sub_ppl details for block_request: 532ef73c-4a26-4b"},{"event":"cmd_output","timestamp":1607098224,"output":"07-b318-c764997b8b8f, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L"},{"event":"cmd_output","timestamp":1607098224,"output":"41), \n\u001b[0m\u001b[22m\n16:10:24.121 [info] ppl_id: 87dc30ef-6275-4b2b-9807-f32f91179bfe, type: PplReques"},{"event":"cmd_output","timestamp":1607098224,"output":"ts, event: persisted source_args for pipeline: 87dc30ef-6275-4b2b-9807-f32f91179bfe, origin: Elixir."},{"event":"cmd_output","timestamp":1607098224,"output":"Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:24.121 [info] eve"},{"event":"cmd_output","timestamp":1607098224,"output":"nt: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098224,"output":"\n16:10:24.121 [info] ppl_id: edb8fd0b-5585-4011-9b4f-7438e2333f69, type: PplBlocks, block_index: 0"},{"event":"cmd_output","timestamp":1607098224,"output":", state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler."},{"event":"cmd_output","timestamp":1607098224,"output":"RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:24.125 [info] block_id: 532ef73c-4a26-4b07-b31"},{"event":"cmd_output","timestamp":1607098224,"output":"8-c764997b8b8f, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block"},{"event":"cmd_output","timestamp":1607098224,"output":".Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:24.125 [info] ppl_id: 87dc"},{"event":"cmd_output","timestamp":1607098224,"output":"30ef-6275-4b2b-9807-f32f91179bfe, type: PplSubInits, state: fetching, event: exit_scheduling, recove"},{"event":"cmd_output","timestamp":1607098224,"output":"ry_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:24.126 [info"},{"event":"cmd_output","timestamp":1607098224,"output":"] ppl_id: edb8fd0b-5585-4011-9b4f-7438e2333f69, type: PplSubInits, state: done, result: passed, eve"},{"event":"cmd_output","timestamp":1607098224,"output":"nt: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b["},{"event":"cmd_output","timestamp":1607098224,"output":"0m\u001b[22m\n16:10:24.129 [info] block_id: 532ef73c-4a26-4b07-b318-c764997b8b8f, type: Blocks, state: r"},{"event":"cmd_output","timestamp":1607098224,"output":"unning, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1"},{"event":"cmd_output","timestamp":1607098224,"output":"(L90), \n\u001b[0m\u001b[22m\n16:10:24.135 [info] ppl_id: 74221866-6c83-4c23-918c-f039ff445450, type: Ppls, s"},{"event":"cmd_output","timestamp":1607098224,"output":"tate: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Imp"},{"event":"cmd_output","timestamp":1607098224,"output":"l.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:24.143 [info] ppl_id: edb8fd0b-5585-4011-9b4f-7438e23"},{"event":"cmd_output","timestamp":1607098224,"output":"33f69, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper."},{"event":"cmd_output","timestamp":1607098224,"output":"STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:24.147 [info] ppl_id: edb8fd0b-5585-4011-9b4f-"},{"event":"cmd_output","timestamp":1607098224,"output":"7438e2333f69, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_coun"},{"event":"cmd_output","timestamp":1607098224,"output":"t: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:24.159 [info] bloc"},{"event":"cmd_output","timestamp":1607098224,"output":"k_id: 532ef73c-4a26-4b07-b318-c764997b8b8f, type: Tasks, state: running, event: exit_scheduling, rec"},{"event":"cmd_output","timestamp":1607098224,"output":"overy_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:24.165 [i"},{"event":"cmd_output","timestamp":1607098224,"output":"nfo] ppl_id: 87dc30ef-6275-4b2b-9807-f32f91179bfe, type: PplSubInits, state: regular_init, event: e"},{"event":"cmd_output","timestamp":1607098224,"output":"xit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098224,"output":"2m\n16:10:24.167 [info] ppl_id: edb8fd0b-5585-4011-9b4f-7438e2333f69, type: Ppls, state: queuing, e"},{"event":"cmd_output","timestamp":1607098224,"output":"vent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n"},{"event":"cmd_output","timestamp":1607098224,"output":"\u001b[0m\u001b[22m\n16:10:24.192 [info] block_id: 532ef73c-4a26-4b07-b318-c764997b8b8f, type: Tasks, state: "},{"event":"cmd_output","timestamp":1607098224,"output":"done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098224,"output":"90), \n\u001b[0m\u001b[22m\n16:10:24.195 [info] ppl_id: edb8fd0b-5585-4011-9b4f-7438e2333f69, type: Ppls, sta"},{"event":"cmd_output","timestamp":1607098224,"output":"te: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_cha"},{"event":"cmd_output","timestamp":1607098224,"output":"nge/1(L90), \n\u001b[0m\u001b[22m\n16:10:24.211 [info] block_id: 532ef73c-4a26-4b07-b318-c764997b8b8f, type: "},{"event":"cmd_output","timestamp":1607098224,"output":"Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_s"},{"event":"cmd_output","timestamp":1607098224,"output":"tate_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:24.211 [info] PplBlocks WaitingState STM is scheduling block"},{"event":"cmd_output","timestamp":1607098224,"output":" 0 from pipeline: \"edb8fd0b-5585-4011-9b4f-7438e2333f69\"\n\u001b[0m\u001b[22m\n16:10:24.214 [info] ppl_id: 87"},{"event":"cmd_output","timestamp":1607098224,"output":"dc30ef-6275-4b2b-9807-f32f91179bfe, type: PplRequests, event: persisted definition for request with "},{"event":"cmd_output","timestamp":1607098224,"output":"request_token: 36cd662c-364b-11eb-9259-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequest"},{"event":"cmd_output","timestamp":1607098224,"output":"sQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:24.220 [info] Queue persisted: {:ok, %Ppl.Que"},{"event":"cmd_output","timestamp":1607098224,"output":"ues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:1"},{"event":"cmd_output","timestamp":1607098224,"output":"0:24.217982], name: \"master-3-.semaphore/semaphore.yml\", organization_id: \"4f21ee19-9652-4e98-b0cb-8"},{"event":"cmd_output","timestamp":1607098224,"output":"5f1ac8f74d5\", project_id: \"list_latest_workflows\", queue_id: \"80b209b1-e536-4b5e-8d3e-d1617a25aeb4\","},{"event":"cmd_output","timestamp":1607098224,"output":" scope: \"project\", updated_at: ~N[2020-12-04 16:10:24.217993], user_generated: false}}\n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098224,"output":"6:10:24.222 [info] block_id: 4b28f03d-b3d3-4e6b-ae08-bc0febdebed3, type: BlockRequests, event: pers"},{"event":"cmd_output","timestamp":1607098224,"output":"isted block run request from ppl edb8fd0b-5585-4011-9b4f-7438e2333f69 for block 0, origin: Elixir.Bl"},{"event":"cmd_output","timestamp":1607098224,"output":"ock.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:24.225 [inf"},{"event":"cmd_output","timestamp":1607098224,"output":"o] block_id: 4b28f03d-b3d3-4e6b-ae08-bc0febdebed3, type: Blocks, state: initializing, event: initia"},{"event":"cmd_output","timestamp":1607098224,"output":"lizing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098224,"output":"m\n16:10:24.231 [info] Block 0 of pipeline with id: edb8fd0b-5585-4011-9b4f-7438e2333f69 scheduled "},{"event":"cmd_output","timestamp":1607098224,"output":"in block service with id: : \"4b28f03d-b3d3-4e6b-ae08-bc0febdebed3\"\n\u001b[0m\u001b[22m\n16:10:24.231 [info] "},{"event":"cmd_output","timestamp":1607098224,"output":"event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098224,"output":"22m\n16:10:24.231 [info] ppl_id: 87dc30ef-6275-4b2b-9807-f32f91179bfe, type: PplBlocks, block_index"},{"event":"cmd_output","timestamp":1607098224,"output":": 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandl"},{"event":"cmd_output","timestamp":1607098224,"output":"er.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:24.233 [info] ppl_id: d1cb87af-47a7-4e12-a3"},{"event":"cmd_output","timestamp":1607098224,"output":"8c-e22ead8748d4, block_id: 532ef73c-4a26-4b07-b318-c764997b8b8f, type: PplBlocks, block_index: 0, st"},{"event":"cmd_output","timestamp":1607098224,"output":"ate: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl"},{"event":"cmd_output","timestamp":1607098224,"output":".log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:24.234 [info] ppl_id: 87dc30ef-6275-4b2b-9807-f32f9117"},{"event":"cmd_output","timestamp":1607098224,"output":"9bfe, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098224,"output":"gin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:24.245 [info] block_id: 4b2"},{"event":"cmd_output","timestamp":1607098224,"output":"8f03d-b3d3-4e6b-ae08-bc0febdebed3, type: BlockRequests, event: persisted build and sub_ppl details f"},{"event":"cmd_output","timestamp":1607098224,"output":"or block_request: 4b28f03d-b3d3-4e6b-ae08-bc0febdebed3, origin: Elixir.Block.BlockRequests.Model.Blo"},{"event":"cmd_output","timestamp":1607098224,"output":"ckRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:24.246 [info] ppl_id: edb8fd0b-5585-4011-"},{"event":"cmd_output","timestamp":1607098224,"output":"9b4f-7438e2333f69, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery"},{"event":"cmd_output","timestamp":1607098224,"output":"_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:24.248 [info] "},{"event":"cmd_output","timestamp":1607098224,"output":" ppl_id: 01a5ce37-52c9-4069-bdb1-27f51289e77e, type: PplRequests, event: persisted source_args for p"},{"event":"cmd_output","timestamp":1607098224,"output":"ipeline: 01a5ce37-52c9-4069-bdb1-27f51289e77e, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueri"},{"event":"cmd_output","timestamp":1607098224,"output":"es.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:24.255 [info] ppl_id: 01a5ce37-52c9-4069-bdb1-27f51289e"},{"event":"cmd_output","timestamp":1607098224,"output":"77e, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098224,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:24.258 [info] block_id: 4b28f03d-b3d3-4e"},{"event":"cmd_output","timestamp":1607098224,"output":"6b-ae08-bc0febdebed3, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098224,"output":".Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:24.259 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098224,"output":": 87dc30ef-6275-4b2b-9807-f32f91179bfe, type: Ppls, state: pending, event: exit_scheduling, recovery"},{"event":"cmd_output","timestamp":1607098224,"output":"_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:24.264 [info] "},{"event":"cmd_output","timestamp":1607098224,"output":" block_id: 4b28f03d-b3d3-4e6b-ae08-bc0febdebed3, type: Blocks, state: running, event: exit_schedulin"},{"event":"cmd_output","timestamp":1607098224,"output":"g, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:24."},{"event":"cmd_output","timestamp":1607098224,"output":"264 [info] ppl_id: 87dc30ef-6275-4b2b-9807-f32f91179bfe, type: PplBlocks, block_index: 0, state: wa"},{"event":"cmd_output","timestamp":1607098224,"output":"iting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1("},{"event":"cmd_output","timestamp":1607098224,"output":"L90), \n\u001b[0m\u001b[22m\n16:10:24.278 [info] ppl_id: 87dc30ef-6275-4b2b-9807-f32f91179bfe, type: Ppls, st"},{"event":"cmd_output","timestamp":1607098224,"output":"ate: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_ch"},{"event":"cmd_output","timestamp":1607098224,"output":"ange/1(L90), \n\u001b[0m\u001b[22m\n16:10:24.282 [info] ppl_id: d1cb87af-47a7-4e12-a38c-e22ead8748d4, type: P"},{"event":"cmd_output","timestamp":1607098224,"output":"pls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.S"},{"event":"cmd_output","timestamp":1607098224,"output":"TM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:24.305 [info] block_id: 4b28f03d-b3d3-4e6b-ae08"},{"event":"cmd_output","timestamp":1607098224,"output":"-bc0febdebed3, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098224,"output":"r.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:24.310 [info] ppl_id: 01a5ce37-52c9-4"},{"event":"cmd_output","timestamp":1607098224,"output":"069-bdb1-27f51289e77e, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_coun"},{"event":"cmd_output","timestamp":1607098224,"output":"t: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:24.310 [info] ppl_"},{"event":"cmd_output","timestamp":1607098224,"output":"id: 87dc30ef-6275-4b2b-9807-f32f91179bfe, type: Ppls, state: running, event: exit_scheduling, recove"},{"event":"cmd_output","timestamp":1607098224,"output":"ry_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:24.325 [info"},{"event":"cmd_output","timestamp":1607098224,"output":"] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"87dc30ef-6275-4b2b-9807-f32f9117"},{"event":"cmd_output","timestamp":1607098224,"output":"9bfe\"\n\u001b[0m\u001b[22m\n16:10:24.336 [info] block_id: 8a87fc0c-8601-49df-ba36-0724d8956bb5, type: BlockRe"},{"event":"cmd_output","timestamp":1607098224,"output":"quests, event: persisted block run request from ppl 87dc30ef-6275-4b2b-9807-f32f91179bfe for block 0"},{"event":"cmd_output","timestamp":1607098224,"output":", origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098224,"output":"\n16:10:24.341 [info] block_id: 8a87fc0c-8601-49df-ba36-0724d8956bb5, type: Blocks, state: initiali"},{"event":"cmd_output","timestamp":1607098224,"output":"zing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert"},{"event":"cmd_output","timestamp":1607098224,"output":"/1(L43), \n\u001b[0m\u001b[22m\n16:10:24.345 [info] Block 0 of pipeline with id: 87dc30ef-6275-4b2b-9807-f32f"},{"event":"cmd_output","timestamp":1607098224,"output":"91179bfe scheduled in block service with id: : \"8a87fc0c-8601-49df-ba36-0724d8956bb5\"\n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098224,"output":":10:24.349 [info] ppl_id: 87dc30ef-6275-4b2b-9807-f32f91179bfe, type: PplBlocks, block_index: 0, st"},{"event":"cmd_output","timestamp":1607098224,"output":"ate: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_ch"},{"event":"cmd_output","timestamp":1607098224,"output":"ange/1(L90), \n\u001b[0m\u001b[22m\n16:10:24.351 [info] block_id: 8a87fc0c-8601-49df-ba36-0724d8956bb5, type:"},{"event":"cmd_output","timestamp":1607098224,"output":" BlockRequests, event: persisted build and sub_ppl details for block_request: 8a87fc0c-8601-49df-ba3"},{"event":"cmd_output","timestamp":1607098224,"output":"6-0724d8956bb5, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \r"},{"event":"cmd_output","timestamp":1607098224,"output":"\n\u001b[0m\u001b[22m\n16:10:24.355 [info] block_id: 8a87fc0c-8601-49df-ba36-0724d8956bb5, type: Tasks, state:"},{"event":"cmd_output","timestamp":1607098224,"output":" pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingStat"},{"event":"cmd_output","timestamp":1607098224,"output":"e.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:24.359 [info] block_id: 8a87fc0c-8601-49df-ba36-0724d8956bb5,"},{"event":"cmd_output","timestamp":1607098224,"output":" type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM."},{"event":"cmd_output","timestamp":1607098224,"output":"Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:24.371 [info] ppl_id: 026dd4fe-f373-4822-b79d-5d63"},{"event":"cmd_output","timestamp":1607098224,"output":"51d3cc75, type: PplRequests, event: persisted source_args for pipeline: 026dd4fe-f373-4822-b79d-5d63"},{"event":"cmd_output","timestamp":1607098224,"output":"51d3cc75, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098224,"output":"\n16:10:24.376 [info] ppl_id: 026dd4fe-f373-4822-b79d-5d6351d3cc75, type: PplSubInits, state: fetchi"},{"event":"cmd_output","timestamp":1607098224,"output":"ng, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90"},{"event":"cmd_output","timestamp":1607098224,"output":"), \n\u001b[0m\u001b[22m\n16:10:24.380 [info] ppl_id: 01a5ce37-52c9-4069-bdb1-27f51289e77e, type: PplRequests"},{"event":"cmd_output","timestamp":1607098224,"output":", event: persisted definition for request with request_token: 36d389da-364b-11eb-a3dc-5254005464e2, "},{"event":"cmd_output","timestamp":1607098224,"output":"origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10"},{"event":"cmd_output","timestamp":1607098224,"output":":24.393 [info] block_id: 8a87fc0c-8601-49df-ba36-0724d8956bb5, type: Tasks, state: running, event: "},{"event":"cmd_output","timestamp":1607098224,"output":"exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098224,"output":"22m\n16:10:24.394 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Met"},{"event":"cmd_output","timestamp":1607098224,"output":"adata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:10:24.392345], name: \"master-4-.semaphore/se"},{"event":"cmd_output","timestamp":1607098224,"output":"maphore.yml\", organization_id: \"ccbfb857-f38e-4bd5-9898-a785821fea82\", project_id: \"list_latest_work"},{"event":"cmd_output","timestamp":1607098224,"output":"flows\", queue_id: \"afb9f4c6-b2d3-41bd-b5e0-1ef716b6b052\", scope: \"project\", updated_at: ~N[2020-12-0"},{"event":"cmd_output","timestamp":1607098224,"output":"4 16:10:24.392358], user_generated: false}}\n\u001b[0m\u001b[22m\n16:10:24.404 [info] event: created, origin:"},{"event":"cmd_output","timestamp":1607098224,"output":" Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:24.404 [info"},{"event":"cmd_output","timestamp":1607098224,"output":"] ppl_id: 01a5ce37-52c9-4069-bdb1-27f51289e77e, type: PplBlocks, block_index: 0, state: initializin"},{"event":"cmd_output","timestamp":1607098224,"output":"g, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all"},{"event":"cmd_output","timestamp":1607098224,"output":"_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:24.408 [info] ppl_id: 01a5ce37-52c9-4069-bdb1-27f51289e77e, type: "},{"event":"cmd_output","timestamp":1607098224,"output":"PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098224,"output":"Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:24.421 [info] block_id: 4b28f03d-b3d3-4"},{"event":"cmd_output","timestamp":1607098224,"output":"e6b-ae08-bc0febdebed3, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098224,"output":"Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:24.430 [info] ppl_id: 01a5ce37-5"},{"event":"cmd_output","timestamp":1607098224,"output":"2c9-4069-bdb1-27f51289e77e, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098224,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:24.430 [info] block_id: 4"},{"event":"cmd_output","timestamp":1607098224,"output":"b28f03d-b3d3-4e6b-ae08-bc0febdebed3, type: Blocks, state: done, event: exit_scheduling, recovery_cou"},{"event":"cmd_output","timestamp":1607098224,"output":"nt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:24.431 [info] ppl"},{"event":"cmd_output","timestamp":1607098224,"output":"_id: 01a5ce37-52c9-4069-bdb1-27f51289e77e, type: PplBlocks, block_index: 0, state: waiting, event: e"},{"event":"cmd_output","timestamp":1607098224,"output":"xit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098224,"output":"2m\n16:10:24.431 [info] ppl_id: 026dd4fe-f373-4822-b79d-5d6351d3cc75, type: PplSubInits, state: reg"},{"event":"cmd_output","timestamp":1607098224,"output":"ular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chang"},{"event":"cmd_output","timestamp":1607098224,"output":"e/1(L90), \n\u001b[0m\u001b[22m\n16:10:24.455 [info] ppl_id: edb8fd0b-5585-4011-9b4f-7438e2333f69, block_id: "},{"event":"cmd_output","timestamp":1607098224,"output":"4b28f03d-b3d3-4e6b-ae08-bc0febdebed3, type: PplBlocks, block_index: 0, state: done, result: passed, "},{"event":"cmd_output","timestamp":1607098224,"output":"event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \r"},{"event":"cmd_output","timestamp":1607098224,"output":"\n\u001b[0m\u001b[22m\n16:10:24.455 [info] ppl_id: 01a5ce37-52c9-4069-bdb1-27f51289e77e, type: Ppls, state: qu"},{"event":"cmd_output","timestamp":1607098224,"output":"euing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1("},{"event":"cmd_output","timestamp":1607098224,"output":"L90), \n\u001b[0m\u001b[22m\n16:10:24.475 [info] ppl_id: 01a5ce37-52c9-4069-bdb1-27f51289e77e, type: Ppls, st"},{"event":"cmd_output","timestamp":1607098224,"output":"ate: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_ch"},{"event":"cmd_output","timestamp":1607098224,"output":"ange/1(L90), \n\u001b[0m\u001b[22m\n16:10:24.478 [info] ppl_id: 026dd4fe-f373-4822-b79d-5d6351d3cc75, type: P"},{"event":"cmd_output","timestamp":1607098224,"output":"plRequests, event: persisted definition for request with request_token: 36dacef2-364b-11eb-bc84-5254"},{"event":"cmd_output","timestamp":1607098224,"output":"005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098224,"output":"22m\n16:10:24.483 [info] ppl_id: edb8fd0b-5585-4011-9b4f-7438e2333f69, type: Ppls, state: done, res"},{"event":"cmd_output","timestamp":1607098224,"output":"ult: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_cha"},{"event":"cmd_output","timestamp":1607098224,"output":"nge/1(L90), \n\u001b[0m\u001b[22m\n16:10:24.484 [info] PplBlocks WaitingState STM is scheduling block 0 from "},{"event":"cmd_output","timestamp":1607098224,"output":"pipeline: \"01a5ce37-52c9-4069-bdb1-27f51289e77e\"\n\u001b[0m\u001b[22m\n16:10:24.486 [info] Queue persisted: {"},{"event":"cmd_output","timestamp":1607098224,"output":":ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[20"},{"event":"cmd_output","timestamp":1607098224,"output":"20-12-04 16:10:24.482666], name: \"master-5-.semaphore/semaphore.yml\", organization_id: \"eeb6fe95-fef"},{"event":"cmd_output","timestamp":1607098224,"output":"8-4c8b-99b3-26e9d4efab63\", project_id: \"list_latest_workflows\", queue_id: \"b26bc48b-ea4c-4375-9365-7"},{"event":"cmd_output","timestamp":1607098224,"output":"a00f33a24d8\", scope: \"project\", updated_at: ~N[2020-12-04 16:10:24.482677], user_generated: false}}\r"},{"event":"cmd_output","timestamp":1607098224,"output":"\n\u001b[0m\u001b[22m\n16:10:24.493 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularIn"},{"event":"cmd_output","timestamp":1607098224,"output":"itState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:24.493 [info] ppl_id: 026dd4fe-f373-4822-b79d-5d6351d3c"},{"event":"cmd_output","timestamp":1607098224,"output":"c75, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098224,"output":": Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:24.496 [inf"},{"event":"cmd_output","timestamp":1607098224,"output":"o] block_id: c6a2cb20-4e93-45db-974f-4b2da273663b, type: BlockRequests, event: persisted block run "},{"event":"cmd_output","timestamp":1607098224,"output":"request from ppl 01a5ce37-52c9-4069-bdb1-27f51289e77e for block 0, origin: Elixir.Block.BlockRequest"},{"event":"cmd_output","timestamp":1607098224,"output":"s.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:24.496 [info] ppl_id: 026d"},{"event":"cmd_output","timestamp":1607098224,"output":"d4fe-f373-4822-b79d-5d6351d3cc75, type: PplSubInits, state: done, result: passed, event: exit_schedu"},{"event":"cmd_output","timestamp":1607098224,"output":"ling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:"},{"event":"cmd_output","timestamp":1607098224,"output":"24.500 [info] block_id: c6a2cb20-4e93-45db-974f-4b2da273663b, type: Blocks, state: initializing, ev"},{"event":"cmd_output","timestamp":1607098224,"output":"ent: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43),"},{"event":"cmd_output","timestamp":1607098224,"output":" \n\u001b[0m\u001b[22m\n16:10:24.502 [info] Block 0 of pipeline with id: 01a5ce37-52c9-4069-bdb1-27f51289e77e"},{"event":"cmd_output","timestamp":1607098224,"output":" scheduled in block service with id: : \"c6a2cb20-4e93-45db-974f-4b2da273663b\"\n\u001b[0m\u001b[22m\n16:10:24.5"},{"event":"cmd_output","timestamp":1607098224,"output":"05 [info] ppl_id: 026dd4fe-f373-4822-b79d-5d6351d3cc75, type: PplBlocks, block_index: 0, state: wai"},{"event":"cmd_output","timestamp":1607098224,"output":"ting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098224,"output":"90), \n\u001b[0m\u001b[22m\n16:10:24.506 [info] ppl_id: 01a5ce37-52c9-4069-bdb1-27f51289e77e, type: PplBlocks"},{"event":"cmd_output","timestamp":1607098224,"output":", block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.S"},{"event":"cmd_output","timestamp":1607098224,"output":"TM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:24.510 [info] ppl_id: 026dd4fe-f373-4822-b79d-5"},{"event":"cmd_output","timestamp":1607098224,"output":"d6351d3cc75, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098224,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:24.510 [info] block_id: c6a2cb20-4e93-45"},{"event":"cmd_output","timestamp":1607098224,"output":"db-974f-4b2da273663b, type: BlockRequests, event: persisted build and sub_ppl details for block_requ"},{"event":"cmd_output","timestamp":1607098224,"output":"est: c6a2cb20-4e93-45db-974f-4b2da273663b, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQue"},{"event":"cmd_output","timestamp":1607098224,"output":"ries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:24.513 [info] block_id: c6a2cb20-4e93-45db-974f-4b2da2"},{"event":"cmd_output","timestamp":1607098224,"output":"73663b, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks."},{"event":"cmd_output","timestamp":1607098224,"output":"STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:24.517 [info] block_id: c6a2cb20-4"},{"event":"cmd_output","timestamp":1607098224,"output":"e93-45db-974f-4b2da273663b, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098224,"output":" origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:24.522 [info] ppl_id: 0"},{"event":"cmd_output","timestamp":1607098224,"output":"26dd4fe-f373-4822-b79d-5d6351d3cc75, type: Ppls, state: queuing, event: exit_scheduling, recovery_co"},{"event":"cmd_output","timestamp":1607098224,"output":"unt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:24.548 [info] bl"},{"event":"cmd_output","timestamp":1607098224,"output":"ock_id: c6a2cb20-4e93-45db-974f-4b2da273663b, type: Tasks, state: running, event: exit_scheduling, r"},{"event":"cmd_output","timestamp":1607098224,"output":"ecovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:24.550 "},{"event":"cmd_output","timestamp":1607098224,"output":"[info] block_id: 8a87fc0c-8601-49df-ba36-0724d8956bb5, type: Tasks, state: done, event: exit_schedu"},{"event":"cmd_output","timestamp":1607098224,"output":"ling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:"},{"event":"cmd_output","timestamp":1607098224,"output":"24.555 [info] ppl_id: 026dd4fe-f373-4822-b79d-5d6351d3cc75, type: Ppls, state: running, event: exit"},{"event":"cmd_output","timestamp":1607098224,"output":"_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098224,"output":"\n16:10:24.561 [info] block_id: 8a87fc0c-8601-49df-ba36-0724d8956bb5, type: Blocks, state: done, eve"},{"event":"cmd_output","timestamp":1607098224,"output":"nt: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b["},{"event":"cmd_output","timestamp":1607098224,"output":"0m\u001b[22m\n16:10:24.562 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"026dd"},{"event":"cmd_output","timestamp":1607098224,"output":"4fe-f373-4822-b79d-5d6351d3cc75\"\n\u001b[0m\u001b[22m\n16:10:24.571 [info] block_id: df1544b4-8c7f-4187-8f1e-"},{"event":"cmd_output","timestamp":1607098224,"output":"e7cf241690bc, type: BlockRequests, event: persisted block run request from ppl 026dd4fe-f373-4822-b7"},{"event":"cmd_output","timestamp":1607098224,"output":"9d-5d6351d3cc75 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_r"},{"event":"cmd_output","timestamp":1607098224,"output":"esponse/4(L35), \n\u001b[0m\u001b[22m\n16:10:24.575 [info] block_id: df1544b4-8c7f-4187-8f1e-e7cf241690bc, ty"},{"event":"cmd_output","timestamp":1607098224,"output":"pe: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks"},{"event":"cmd_output","timestamp":1607098224,"output":".Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:24.581 [info] Block 0 of pipeline with id: 0"},{"event":"cmd_output","timestamp":1607098224,"output":"26dd4fe-f373-4822-b79d-5d6351d3cc75 scheduled in block service with id: : \"df1544b4-8c7f-4187-8f1e-e"},{"event":"cmd_output","timestamp":1607098224,"output":"7cf241690bc\"\n\u001b[0m\u001b[22m\n16:10:24.588 [info] ppl_id: 026dd4fe-f373-4822-b79d-5d6351d3cc75, type: Pp"},{"event":"cmd_output","timestamp":1607098224,"output":"lBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098224,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:24.588 [info] ppl_id: 87dc30ef-6275-4b2b"},{"event":"cmd_output","timestamp":1607098224,"output":"-9807-f32f91179bfe, block_id: 8a87fc0c-8601-49df-ba36-0724d8956bb5, type: PplBlocks, block_index: 0,"},{"event":"cmd_output","timestamp":1607098224,"output":" state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.I"},{"event":"cmd_output","timestamp":1607098224,"output":"mpl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:24.590 [info] block_id: df1544b4-8c7f-4187-8f1e-e7c"},{"event":"cmd_output","timestamp":1607098224,"output":"f241690bc, type: BlockRequests, event: persisted build and sub_ppl details for block_request: df1544"},{"event":"cmd_output","timestamp":1607098224,"output":"b4-8c7f-4187-8f1e-e7cf241690bc, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert"},{"event":"cmd_output","timestamp":1607098224,"output":"_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:24.593 [info] block_id: df1544b4-8c7f-4187-8f1e-e7cf241690bc, typ"},{"event":"cmd_output","timestamp":1607098224,"output":"e: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler."},{"event":"cmd_output","timestamp":1607098224,"output":"InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:24.599 [info] block_id: df1544b4-8c7f-4187-8f"},{"event":"cmd_output","timestamp":1607098224,"output":"1e-e7cf241690bc, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098224,"output":"ixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:24.622 [info] block_id: df1544b4-8"},{"event":"cmd_output","timestamp":1607098224,"output":"c7f-4187-8f1e-e7cf241690bc, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098224,"output":"origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:24.630 [info] ppl_id: 87"},{"event":"cmd_output","timestamp":1607098224,"output":"dc30ef-6275-4b2b-9807-f32f91179bfe, type: Ppls, state: done, result: passed, event: exit_scheduling,"},{"event":"cmd_output","timestamp":1607098224,"output":" recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:24.66"},{"event":"cmd_output","timestamp":1607098224,"output":"0 [info] block_id: c6a2cb20-4e93-45db-974f-4b2da273663b, type: Tasks, state: done, event: exit_sche"},{"event":"cmd_output","timestamp":1607098224,"output":"duling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098224,"output":"0:24.667 [info] block_id: c6a2cb20-4e93-45db-974f-4b2da273663b, type: Blocks, state: done, event: e"},{"event":"cmd_output","timestamp":1607098224,"output":"xit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098224,"output":"2m\n16:10:24.676 [info] ppl_id: 01a5ce37-52c9-4069-bdb1-27f51289e77e, block_id: c6a2cb20-4e93-45db-"},{"event":"cmd_output","timestamp":1607098224,"output":"974f-4b2da273663b, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_schedul"},{"event":"cmd_output","timestamp":1607098224,"output":"ing, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:2"},{"event":"cmd_output","timestamp":1607098224,"output":"4.690 [info] ppl_id: 01a5ce37-52c9-4069-bdb1-27f51289e77e, type: Ppls, state: done, result: passed,"},{"event":"cmd_output","timestamp":1607098224,"output":" event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), "},{"event":"cmd_output","timestamp":1607098224,"output":"\n\u001b[0m\u001b[22m\n16:10:24.773 [info] block_id: df1544b4-8c7f-4187-8f1e-e7cf241690bc, type: Tasks, state"},{"event":"cmd_output","timestamp":1607098224,"output":": done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1"},{"event":"cmd_output","timestamp":1607098224,"output":"(L90), \n\u001b[0m\u001b[22m\n16:10:24.793 [info] block_id: df1544b4-8c7f-4187-8f1e-e7cf241690bc, type: Block"},{"event":"cmd_output","timestamp":1607098224,"output":"s, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_"},{"event":"cmd_output","timestamp":1607098224,"output":"change/1(L90), \n\u001b[0m\u001b[22m\n16:10:24.802 [info] ppl_id: 026dd4fe-f373-4822-b79d-5d6351d3cc75, block"},{"event":"cmd_output","timestamp":1607098224,"output":"_id: df1544b4-8c7f-4187-8f1e-e7cf241690bc, type: PplBlocks, block_index: 0, state: done, result: pas"},{"event":"cmd_output","timestamp":1607098224,"output":"sed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L9"},{"event":"cmd_output","timestamp":1607098224,"output":"0), \n\u001b[0m\u001b[22m\n16:10:24.823 [info] ppl_id: 026dd4fe-f373-4822-b79d-5d6351d3cc75, type: Ppls, stat"},{"event":"cmd_output","timestamp":1607098224,"output":"e: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.l"},{"event":"cmd_output","timestamp":1607098224,"output":"og_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test gRPC list_latest_workflows() - successfully walk the li"},{"event":"cmd_output","timestamp":1607098224,"output":"st in both directions (1793.7ms)\u001b[0m\n * test gRPC list() - filter by created_before(after)\r * tes"},{"event":"cmd_output","timestamp":1607098224,"output":"t gRPC list() - filter by created_before(after) (skipped)\n * test gRPC list_latest_workflows() - f"},{"event":"cmd_output","timestamp":1607098224,"output":"ails when project_id is omitted\r * test gRPC list_latest_workflows() - fails when project_id is omi"},{"event":"cmd_output","timestamp":1607098224,"output":"tted (skipped)\n * test gRPC describe() - failes when wf_id is omitted\r * test gRPC describe() - f"},{"event":"cmd_output","timestamp":1607098224,"output":"ailes when wf_id is omitted (skipped)\n * test gRPC list_latest_workflows() - returns latest workfl"},{"event":"cmd_output","timestamp":1607098225,"output":"ow per distinct label when given valid params\u001b[22m\n16:10:25.043 [info] Request: 'run: %{\"branch_id"},{"event":"cmd_output","timestamp":1607098225,"output":"\" => \"0156633b-defa-4843-ad30-50c927ba2049\", \"branch_name\" => \"master-0\", \"client_id\" => \"931a562e-6"},{"event":"cmd_output","timestamp":1607098225,"output":"833-4df1-8315-696b6f46364e\", \"commit_sha\" => \"75891a4469\", \"definition_file\" => \"\", \"hook_id\" => \"br"},{"event":"cmd_output","timestamp":1607098225,"output":"anch\", \"label\" => \"master-0\", \"organization_id\" => \"f698ed1c-e751-477e-87e9-3da85a73f016\", \"owner\" ="},{"event":"cmd_output","timestamp":1607098225,"output":"> \"rt\", \"project_id\" => \"list_latest_workflows\", \"repo_name\" => \"2_basic\", \"request_token\" => \"37ba9"},{"event":"cmd_output","timestamp":1607098225,"output":"7c6-364b-11eb-bdfd-5254005464e2\", \"requester_id\" => \"b0eb046c-b69c-4bf8-bfab-982a8d581679\", \"service"},{"event":"cmd_output","timestamp":1607098225,"output":"\" => \"local\", \"snapshot_id\" => \"\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"tr"},{"event":"cmd_output","timestamp":1607098225,"output":"iggered_by\" => \"hook\", \"wf_id\" => \"c9aacc56-20df-4dc7-81ea-5627cf29d0e2\"}\n\u001b[0m\u001b[22m\n16:10:25.087 ["},{"event":"cmd_output","timestamp":1607098225,"output":"info] ppl_id: f5396772-58c0-481c-8130-725aacbff447, type: PplRequests, event: persisted schedule re"},{"event":"cmd_output","timestamp":1607098225,"output":"quest with request_token: 37ba97c6-364b-11eb-bdfd-5254005464e2, origin: Elixir.Ppl.PplRequests.Model"},{"event":"cmd_output","timestamp":1607098225,"output":".PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:25.092 [info] ppl_id: f5396772-58c0"},{"event":"cmd_output","timestamp":1607098225,"output":"-481c-8130-725aacbff447, type: Ppls, state: initializing, event: initializing, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098225,"output":"igin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:25.096 [info] "},{"event":"cmd_output","timestamp":1607098225,"output":"Project list_latest_workflows and branch master-0latest_wf details updated: \"wf_id: c9aacc56-20df-4d"},{"event":"cmd_output","timestamp":1607098225,"output":"c7-81ea-5627cf29d0e2, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:10:25.098 [info] Persisted ppl_sub_init for pipe"},{"event":"cmd_output","timestamp":1607098225,"output":"line with ppl_id: f5396772-58c0-481c-8130-725aacbff447: %Ppl.PplSubInits.Model.PplSubInits{__meta__:"},{"event":"cmd_output","timestamp":1607098225,"output":" #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil,"},{"event":"cmd_output","timestamp":1607098225,"output":" id: 42, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:10:25.096862], pi"},{"event":"cmd_output","timestamp":1607098225,"output":"peline_requests: #Ecto.Association.NotLoaded, ppl_id: "},{"event":"cmd_output","timestamp":1607098225,"output":"\"f5396772-58c0-481c-8130-725aacbff447\", recovery_count: 0, result: nil, result_reason: nil, state: \""},{"event":"cmd_output","timestamp":1607098225,"output":"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:25.09"},{"event":"cmd_output","timestamp":1607098225,"output":"6873]}\n\u001b[0m\u001b[22m\n16:10:25.113 [info] Request: 'run: %{\"branch_id\" => \"6bf7910e-4c7f-43f8-ae7a-cd5"},{"event":"cmd_output","timestamp":1607098225,"output":"e48682da9\", \"branch_name\" => \"master-1\", \"client_id\" => \"72b1221a-a5b2-4ff0-bd80-b74d257cc5b0\", \"com"},{"event":"cmd_output","timestamp":1607098225,"output":"mit_sha\" => \"75891a4469\", \"definition_file\" => \"\", \"hook_id\" => \"branch\", \"label\" => \"master-1\", \"or"},{"event":"cmd_output","timestamp":1607098225,"output":"ganization_id\" => \"33f7fdda-7d85-4a67-aca7-0f1c8c8c22f8\", \"owner\" => \"rt\", \"project_id\" => \"list_lat"},{"event":"cmd_output","timestamp":1607098225,"output":"est_workflows\", \"repo_name\" => \"2_basic\", \"request_token\" => \"37c56e44-364b-11eb-a0ad-5254005464e2\","},{"event":"cmd_output","timestamp":1607098225,"output":" \"requester_id\" => \"8258125d-99e5-4c83-86d7-d220b143910e\", \"service\" => \"local\", \"snapshot_id\" => \"\""},{"event":"cmd_output","timestamp":1607098225,"output":", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" =>"},{"event":"cmd_output","timestamp":1607098225,"output":" \"753e1eda-97e8-4c4a-ba28-1d9067405a3e\"}\n\u001b[0m\u001b[22m\n16:10:25.151 [info] ppl_id: 412d7e9e-9129-49cd"},{"event":"cmd_output","timestamp":1607098225,"output":"-8696-b96d8d5116ac, type: PplRequests, event: persisted schedule request with request_token: 37c56e4"},{"event":"cmd_output","timestamp":1607098225,"output":"4-364b-11eb-a0ad-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_respo"},{"event":"cmd_output","timestamp":1607098225,"output":"nse/2(L55), \n\u001b[0m\u001b[22m\n16:10:25.155 [info] ppl_id: 412d7e9e-9129-49cd-8696-b96d8d5116ac, type: Pp"},{"event":"cmd_output","timestamp":1607098225,"output":"ls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQ"},{"event":"cmd_output","timestamp":1607098225,"output":"ueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:25.160 [info] Project list_latest_workflows and"},{"event":"cmd_output","timestamp":1607098225,"output":" branch master-1latest_wf details updated: \"wf_id: 753e1eda-97e8-4c4a-ba28-1d9067405a3e, wf_number: "},{"event":"cmd_output","timestamp":1607098225,"output":"1\"\n\u001b[0m\u001b[22m\n16:10:25.162 [info] Persisted ppl_sub_init for pipeline with ppl_id: 412d7e9e-9129-4"},{"event":"cmd_output","timestamp":1607098225,"output":"9cd-8696-b96d8d5116ac: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \""},{"event":"cmd_output","timestamp":1607098225,"output":"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 43, in_scheduling: false, in"},{"event":"cmd_output","timestamp":1607098225,"output":"it_type: \"regular\", inserted_at: ~N[2020-12-04 16:10:25.160532], pipeline_requests: #Ecto.Associatio"},{"event":"cmd_output","timestamp":1607098225,"output":"n.NotLoaded, ppl_id: \"412d7e9e-9129-49cd-8696-b96d8d51"},{"event":"cmd_output","timestamp":1607098225,"output":"16ac\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil,"},{"event":"cmd_output","timestamp":1607098225,"output":" terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:25.160542]}\n\u001b[0m\u001b[22m\n16:10:25.175 ["},{"event":"cmd_output","timestamp":1607098225,"output":"info] Request: 'run: %{\"branch_id\" => \"1128a3d1-ca53-4664-b9e7-a0f0df224d9a\", \"branch_name\" => \"mas"},{"event":"cmd_output","timestamp":1607098225,"output":"ter-2\", \"client_id\" => \"afd64196-cc11-4757-a72b-7d5a51d37eb5\", \"commit_sha\" => \"75891a4469\", \"defini"},{"event":"cmd_output","timestamp":1607098225,"output":"tion_file\" => \"\", \"hook_id\" => \"branch\", \"label\" => \"master-2\", \"organization_id\" => \"825486ea-62a5-"},{"event":"cmd_output","timestamp":1607098225,"output":"48c2-8816-01df44ef3bd5\", \"owner\" => \"rt\", \"project_id\" => \"list_latest_workflows\", \"repo_name\" => \"2"},{"event":"cmd_output","timestamp":1607098225,"output":"_basic\", \"request_token\" => \"37cf0382-364b-11eb-a070-5254005464e2\", \"requester_id\" => \"36d7a3b8-7a9e"},{"event":"cmd_output","timestamp":1607098225,"output":"-438a-a551-10b6aeab3257\", \"service\" => \"local\", \"snapshot_id\" => \"\", \"suppressed_attributes\" => [\"ac"},{"event":"cmd_output","timestamp":1607098225,"output":"cess_token\", \"client_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"6df6c437-544d-44bf-bf0c-634372d"},{"event":"cmd_output","timestamp":1607098225,"output":"c217b\"}\n\u001b[0m\u001b[22m\n16:10:25.228 [info] ppl_id: f96f00e2-7b5a-45e9-8980-70ca0822092d, type: PplRequ"},{"event":"cmd_output","timestamp":1607098225,"output":"ests, event: persisted schedule request with request_token: 37cf0382-364b-11eb-a070-5254005464e2, or"},{"event":"cmd_output","timestamp":1607098225,"output":"igin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:25"},{"event":"cmd_output","timestamp":1607098225,"output":".232 [info] ppl_id: f96f00e2-7b5a-45e9-8980-70ca0822092d, type: Ppls, state: initializing, event: i"},{"event":"cmd_output","timestamp":1607098225,"output":"nitializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), "},{"event":"cmd_output","timestamp":1607098225,"output":"\n\u001b[0m\u001b[22m\n16:10:25.242 [info] Project list_latest_workflows and branch master-2latest_wf details"},{"event":"cmd_output","timestamp":1607098225,"output":" updated: \"wf_id: 6df6c437-544d-44bf-bf0c-634372dc217b, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:10:25.244 [info"},{"event":"cmd_output","timestamp":1607098225,"output":"] Persisted ppl_sub_init for pipeline with ppl_id: f96f00e2-7b5a-45e9-8980-70ca0822092d: %Ppl.PplSu"},{"event":"cmd_output","timestamp":1607098225,"output":"bInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_tas"},{"event":"cmd_output","timestamp":1607098225,"output":"k_id: nil, error_description: nil, id: 44, in_scheduling: false, init_type: \"regular\", inserted_at: "},{"event":"cmd_output","timestamp":1607098225,"output":"~N[2020-12-04 16:10:25.242582], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"f96f00e2-7b5a-45e9-8980-70ca0822092d\", recovery_count: 0, result:"},{"event":"cmd_output","timestamp":1607098225,"output":" nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, upd"},{"event":"cmd_output","timestamp":1607098225,"output":"ated_at: ~N[2020-12-04 16:10:25.242593]}\n\u001b[0m\u001b[22m\n16:10:25.257 [info] Request: 'run: %{\"branch_i"},{"event":"cmd_output","timestamp":1607098225,"output":"d\" => \"091cfbc1-5a01-4c15-a3cf-3c5d25b125d9\", \"branch_name\" => \"master-3\", \"client_id\" => \"b7ca83fe-"},{"event":"cmd_output","timestamp":1607098225,"output":"b4b6-4187-86a1-26f24be77f30\", \"commit_sha\" => \"75891a4469\", \"definition_file\" => \"\", \"hook_id\" => \"b"},{"event":"cmd_output","timestamp":1607098225,"output":"ranch\", \"label\" => \"master-3\", \"organization_id\" => \"e0633a04-53a9-49d0-8625-62e1ae96d34b\", \"owner\" "},{"event":"cmd_output","timestamp":1607098225,"output":"=> \"rt\", \"project_id\" => \"list_latest_workflows\", \"repo_name\" => \"2_basic\", \"request_token\" => \"37db"},{"event":"cmd_output","timestamp":1607098225,"output":"a9f2-364b-11eb-b41e-5254005464e2\", \"requester_id\" => \"fe015c4c-5a38-4b21-817c-333791d60d3a\", \"servic"},{"event":"cmd_output","timestamp":1607098225,"output":"e\" => \"local\", \"snapshot_id\" => \"\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"t"},{"event":"cmd_output","timestamp":1607098225,"output":"riggered_by\" => \"hook\", \"wf_id\" => \"8e241a08-82e5-457d-8337-e7ff48547ee0\"}\n\u001b[0m\u001b[22m\n16:10:25.287 "},{"event":"cmd_output","timestamp":1607098225,"output":"[info] ppl_id: f6d30615-e614-472a-9d30-db5da1993c88, type: PplRequests, event: persisted schedule r"},{"event":"cmd_output","timestamp":1607098225,"output":"equest with request_token: 37dba9f2-364b-11eb-b41e-5254005464e2, origin: Elixir.Ppl.PplRequests.Mode"},{"event":"cmd_output","timestamp":1607098225,"output":"l.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:25.289 [info] ppl_id: f6d30615-e61"},{"event":"cmd_output","timestamp":1607098225,"output":"4-472a-9d30-db5da1993c88, type: Ppls, state: initializing, event: initializing, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098225,"output":"rigin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:25.294 [info] "},{"event":"cmd_output","timestamp":1607098225,"output":" Project list_latest_workflows and branch master-3latest_wf details updated: \"wf_id: 8e241a08-82e5-4"},{"event":"cmd_output","timestamp":1607098225,"output":"57d-8337-e7ff48547ee0, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:10:25.296 [info] Persisted ppl_sub_init for pip"},{"event":"cmd_output","timestamp":1607098225,"output":"eline with ppl_id: f6d30615-e614-472a-9d30-db5da1993c88: %Ppl.PplSubInits.Model.PplSubInits{__meta__"},{"event":"cmd_output","timestamp":1607098225,"output":": #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil"},{"event":"cmd_output","timestamp":1607098225,"output":", id: 45, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:10:25.294967], p"},{"event":"cmd_output","timestamp":1607098225,"output":"ipeline_requests: #Ecto.Association.NotLoaded, ppl_id:"},{"event":"cmd_output","timestamp":1607098225,"output":" \"f6d30615-e614-472a-9d30-db5da1993c88\", recovery_count: 0, result: nil, result_reason: nil, state: "},{"event":"cmd_output","timestamp":1607098225,"output":"\"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:25.2"},{"event":"cmd_output","timestamp":1607098225,"output":"94979]}\n\u001b[0m\u001b[22m\n16:10:25.314 [info] Request: 'run: %{\"branch_id\" => \"67f0d072-fcc0-4b81-aab3-28"},{"event":"cmd_output","timestamp":1607098225,"output":"cb505367c0\", \"branch_name\" => \"master-4\", \"client_id\" => \"ac1c9e3d-c474-4af0-bd1a-0d07c95663cf\", \"co"},{"event":"cmd_output","timestamp":1607098225,"output":"mmit_sha\" => \"75891a4469\", \"definition_file\" => \"\", \"hook_id\" => \"branch\", \"label\" => \"master-4\", \"o"},{"event":"cmd_output","timestamp":1607098225,"output":"rganization_id\" => \"ada8fd2f-56a8-46b4-9e24-25af0ffee056\", \"owner\" => \"rt\", \"project_id\" => \"list_la"},{"event":"cmd_output","timestamp":1607098225,"output":"test_workflows\", \"repo_name\" => \"2_basic\", \"request_token\" => \"37e36840-364b-11eb-9595-5254005464e2\""},{"event":"cmd_output","timestamp":1607098225,"output":", \"requester_id\" => \"0becdabf-0dad-4a38-9c57-a4e4788653c0\", \"service\" => \"local\", \"snapshot_id\" => \""},{"event":"cmd_output","timestamp":1607098225,"output":"\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" ="},{"event":"cmd_output","timestamp":1607098225,"output":"> \"2a6b7ea3-d70d-4a0d-a700-531112a71383\"}\n\u001b[0m\u001b[22m\n16:10:25.345 [info] ppl_id: ddfb0ae5-8b17-454"},{"event":"cmd_output","timestamp":1607098225,"output":"1-b560-c0ea49c3c69e, type: PplRequests, event: persisted schedule request with request_token: 37e368"},{"event":"cmd_output","timestamp":1607098225,"output":"40-364b-11eb-9595-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_resp"},{"event":"cmd_output","timestamp":1607098225,"output":"onse/2(L55), \n\u001b[0m\u001b[22m\n16:10:25.348 [info] ppl_id: ddfb0ae5-8b17-4541-b560-c0ea49c3c69e, type: P"},{"event":"cmd_output","timestamp":1607098225,"output":"pls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.Ppls"},{"event":"cmd_output","timestamp":1607098225,"output":"Queries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:25.354 [info] Project list_latest_workflows an"},{"event":"cmd_output","timestamp":1607098225,"output":"d branch master-4latest_wf details updated: \"wf_id: 2a6b7ea3-d70d-4a0d-a700-531112a71383, wf_number:"},{"event":"cmd_output","timestamp":1607098225,"output":" 1\"\n\u001b[0m\u001b[22m\n16:10:25.356 [info] Persisted ppl_sub_init for pipeline with ppl_id: ddfb0ae5-8b17-"},{"event":"cmd_output","timestamp":1607098225,"output":"4541-b560-c0ea49c3c69e: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, "},{"event":"cmd_output","timestamp":1607098225,"output":"\"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 46, in_scheduling: false, i"},{"event":"cmd_output","timestamp":1607098225,"output":"nit_type: \"regular\", inserted_at: ~N[2020-12-04 16:10:25.354405], pipeline_requests: #Ecto.Associati"},{"event":"cmd_output","timestamp":1607098225,"output":"on.NotLoaded, ppl_id: \"ddfb0ae5-8b17-4541-b560-c0ea49c"},{"event":"cmd_output","timestamp":1607098225,"output":"3c69e\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil"},{"event":"cmd_output","timestamp":1607098225,"output":", terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:25.354415]}\n\u001b[0m\u001b[22m\n16:10:25.384 "},{"event":"cmd_output","timestamp":1607098225,"output":"[info] Request: 'run: %{\"branch_id\" => \"4a0edb47-f44f-42b1-a201-408e368ede83\", \"branch_name\" => \"ma"},{"event":"cmd_output","timestamp":1607098225,"output":"ster-5\", \"client_id\" => \"dc67897d-3d1c-4d29-be84-91530670b760\", \"commit_sha\" => \"75891a4469\", \"defin"},{"event":"cmd_output","timestamp":1607098225,"output":"ition_file\" => \"\", \"hook_id\" => \"branch\", \"label\" => \"master-5\", \"organization_id\" => \"4df20b80-27e8"},{"event":"cmd_output","timestamp":1607098225,"output":"-4b39-82f2-b4ba86012c2b\", \"owner\" => \"rt\", \"project_id\" => \"list_latest_workflows\", \"repo_name\" => \""},{"event":"cmd_output","timestamp":1607098225,"output":"2_basic\", \"request_token\" => \"37eccf8e-364b-11eb-8be2-5254005464e2\", \"requester_id\" => \"b6cd5bab-dd7"},{"event":"cmd_output","timestamp":1607098225,"output":"a-43dd-8515-534767b3712f\", \"service\" => \"local\", \"snapshot_id\" => \"\", \"suppressed_attributes\" => [\"a"},{"event":"cmd_output","timestamp":1607098225,"output":"ccess_token\", \"client_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"227ee8c6-11d3-41ed-a557-aa5f28"},{"event":"cmd_output","timestamp":1607098225,"output":"d6e2a1\"}\n\u001b[0m\u001b[22m\n16:10:25.414 [info] ppl_id: 85e10f98-2a77-46e9-99bc-033714d2ae8b, type: PplReq"},{"event":"cmd_output","timestamp":1607098225,"output":"uests, event: persisted schedule request with request_token: 37eccf8e-364b-11eb-8be2-5254005464e2, o"},{"event":"cmd_output","timestamp":1607098225,"output":"rigin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:2"},{"event":"cmd_output","timestamp":1607098225,"output":"5.418 [info] ppl_id: 85e10f98-2a77-46e9-99bc-033714d2ae8b, type: Ppls, state: initializing, event: "},{"event":"cmd_output","timestamp":1607098225,"output":"initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124),"},{"event":"cmd_output","timestamp":1607098225,"output":" \n\u001b[0m\u001b[22m\n16:10:25.424 [info] Project list_latest_workflows and branch master-5latest_wf detail"},{"event":"cmd_output","timestamp":1607098225,"output":"s updated: \"wf_id: 227ee8c6-11d3-41ed-a557-aa5f28d6e2a1, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:10:25.427 [inf"},{"event":"cmd_output","timestamp":1607098225,"output":"o] Persisted ppl_sub_init for pipeline with ppl_id: 85e10f98-2a77-46e9-99bc-033714d2ae8b: %Ppl.PplS"},{"event":"cmd_output","timestamp":1607098225,"output":"ubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_ta"},{"event":"cmd_output","timestamp":1607098225,"output":"sk_id: nil, error_description: nil, id: 47, in_scheduling: false, init_type: \"regular\", inserted_at:"},{"event":"cmd_output","timestamp":1607098225,"output":" ~N[2020-12-04 16:10:25.425023], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"85e10f98-2a77-46e9-99bc-033714d2ae8b\", recovery_count: 0, result"},{"event":"cmd_output","timestamp":1607098225,"output":": nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, up"},{"event":"cmd_output","timestamp":1607098225,"output":"dated_at: ~N[2020-12-04 16:10:25.425035]}\n\u001b[0m\u001b[22m\n16:10:25.439 [info] Request: 'run: %{\"branch_"},{"event":"cmd_output","timestamp":1607098225,"output":"id\" => \"6d8dee7e-251f-4313-80ee-2d70e8edcfe4\", \"branch_name\" => \"refs/tags/v1.6\", \"client_id\" => \"d3"},{"event":"cmd_output","timestamp":1607098225,"output":"561421-e3f7-4425-b5a0-4c7fa6bbe20f\", \"commit_sha\" => \"75891a4469\", \"definition_file\" => \"\", \"hook_id"},{"event":"cmd_output","timestamp":1607098225,"output":"\" => \"tag\", \"label\" => \"refs/tags/v1.6\", \"organization_id\" => \"ab92b451-8785-4a17-aeab-9462f6803183\""},{"event":"cmd_output","timestamp":1607098225,"output":", \"owner\" => \"rt\", \"project_id\" => \"list_latest_workflows\", \"repo_name\" => \"2_basic\", \"request_token"},{"event":"cmd_output","timestamp":1607098225,"output":"\" => \"37f76f98-364b-11eb-a2d1-5254005464e2\", \"requester_id\" => \"b271e290-a207-4bd2-b6e5-9689a4f1d237"},{"event":"cmd_output","timestamp":1607098225,"output":"\", \"service\" => \"local\", \"snapshot_id\" => \"\", \"suppressed_attributes\" => [\"access_token\", \"client_se"},{"event":"cmd_output","timestamp":1607098225,"output":"cret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"5af94c5e-e1ff-47c2-9430-c1e4cdde888f\"}\n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098225,"output":"10:25.471 [info] ppl_id: a8ec42e4-8ae2-4228-912a-34d54eaa5dd4, type: PplRequests, event: persisted "},{"event":"cmd_output","timestamp":1607098225,"output":"schedule request with request_token: 37f76f98-364b-11eb-a2d1-5254005464e2, origin: Elixir.Ppl.PplReq"},{"event":"cmd_output","timestamp":1607098225,"output":"uests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:25.476 [info] ppl_id: a8"},{"event":"cmd_output","timestamp":1607098225,"output":"ec42e4-8ae2-4228-912a-34d54eaa5dd4, type: Ppls, state: initializing, event: initializing, recovery_c"},{"event":"cmd_output","timestamp":1607098225,"output":"ount: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:25.4"},{"event":"cmd_output","timestamp":1607098225,"output":"84 [info] Project list_latest_workflows and tag v1.6latest_wf details updated: \"wf_id: 5af94c5e-e1f"},{"event":"cmd_output","timestamp":1607098225,"output":"f-47c2-9430-c1e4cdde888f, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:10:25.486 [info] Persisted ppl_sub_init for "},{"event":"cmd_output","timestamp":1607098225,"output":"pipeline with ppl_id: a8ec42e4-8ae2-4228-912a-34d54eaa5dd4: %Ppl.PplSubInits.Model.PplSubInits{__met"},{"event":"cmd_output","timestamp":1607098225,"output":"a__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: "},{"event":"cmd_output","timestamp":1607098225,"output":"nil, id: 48, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:10:25.484551]"},{"event":"cmd_output","timestamp":1607098225,"output":", pipeline_requests: #Ecto.Association.NotLoaded, ppl_"},{"event":"cmd_output","timestamp":1607098225,"output":"id: \"a8ec42e4-8ae2-4228-912a-34d54eaa5dd4\", recovery_count: 0, result: nil, result_reason: nil, stat"},{"event":"cmd_output","timestamp":1607098225,"output":"e: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:2"},{"event":"cmd_output","timestamp":1607098225,"output":"5.484558]}\n\u001b[0m\u001b[22m\n16:10:25.498 [info] Request: 'run: %{\"branch_id\" => \"505a1eac-16d3-4211-b95f"},{"event":"cmd_output","timestamp":1607098225,"output":"-7b6aeb2ba23b\", \"branch_name\" => \"refs/tags/v1.7\", \"client_id\" => \"72e85e7c-65f2-43a1-82ae-c7a8ffa62"},{"event":"cmd_output","timestamp":1607098225,"output":"5d5\", \"commit_sha\" => \"75891a4469\", \"definition_file\" => \"\", \"hook_id\" => \"tag\", \"label\" => \"refs/ta"},{"event":"cmd_output","timestamp":1607098225,"output":"gs/v1.7\", \"organization_id\" => \"51265280-6a58-447a-8508-ce56266dab8f\", \"owner\" => \"rt\", \"project_id\""},{"event":"cmd_output","timestamp":1607098225,"output":" => \"list_latest_workflows\", \"repo_name\" => \"2_basic\", \"request_token\" => \"38004c58-364b-11eb-b74c-5"},{"event":"cmd_output","timestamp":1607098225,"output":"254005464e2\", \"requester_id\" => \"c242abdb-6563-497a-9502-fb4caa99db92\", \"service\" => \"local\", \"snaps"},{"event":"cmd_output","timestamp":1607098225,"output":"hot_id\" => \"\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"triggered_by\" => \"hook"},{"event":"cmd_output","timestamp":1607098225,"output":"\", \"wf_id\" => \"7c1c69b6-e26c-4918-a2e5-2492369715a3\"}\n\u001b[0m\u001b[22m\n16:10:25.535 [info] ppl_id: 541b6"},{"event":"cmd_output","timestamp":1607098225,"output":"bd0-fe78-407d-b0b5-ba30acbfd3a6, type: PplRequests, event: persisted schedule request with request_t"},{"event":"cmd_output","timestamp":1607098225,"output":"oken: 38004c58-364b-11eb-b74c-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries."},{"event":"cmd_output","timestamp":1607098225,"output":"process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:25.537 [info] ppl_id: 541b6bd0-fe78-407d-b0b5-ba30acbfd"},{"event":"cmd_output","timestamp":1607098225,"output":"3a6, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098225,"output":"s.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:25.550 [info] Project list_latest_"},{"event":"cmd_output","timestamp":1607098225,"output":"workflows and tag v1.7latest_wf details updated: \"wf_id: 7c1c69b6-e26c-4918-a2e5-2492369715a3, wf_nu"},{"event":"cmd_output","timestamp":1607098225,"output":"mber: 1\"\n\u001b[0m\u001b[22m\n16:10:25.552 [info] Persisted ppl_sub_init for pipeline with ppl_id: 541b6bd0-"},{"event":"cmd_output","timestamp":1607098225,"output":"fe78-407d-b0b5-ba30acbfd3a6: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loa"},{"event":"cmd_output","timestamp":1607098225,"output":"ded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 49, in_scheduling: fal"},{"event":"cmd_output","timestamp":1607098225,"output":"se, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:10:25.550673], pipeline_requests: #Ecto.Asso"},{"event":"cmd_output","timestamp":1607098225,"output":"ciation.NotLoaded, ppl_id: \"541b6bd0-fe78-407d-b0b5-ba"},{"event":"cmd_output","timestamp":1607098225,"output":"30acbfd3a6\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request"},{"event":"cmd_output","timestamp":1607098225,"output":": nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:25.550684]}\n\u001b[0m\u001b[22m\n16:10:25"},{"event":"cmd_output","timestamp":1607098225,"output":".563 [info] Request: 'run: %{\"branch_id\" => \"5cc019ec-6714-4b10-8e78-d518631cbe75\", \"branch_name\" ="},{"event":"cmd_output","timestamp":1607098225,"output":"> \"refs/tags/v1.8\", \"client_id\" => \"d63c4336-9b78-49dc-894e-442212c458b4\", \"commit_sha\" => \"75891a44"},{"event":"cmd_output","timestamp":1607098225,"output":"69\", \"definition_file\" => \"\", \"hook_id\" => \"tag\", \"label\" => \"refs/tags/v1.8\", \"organization_id\" => "},{"event":"cmd_output","timestamp":1607098225,"output":"\"f3e0daf3-f206-4c67-af90-e13991489c74\", \"owner\" => \"rt\", \"project_id\" => \"list_latest_workflows\", \"r"},{"event":"cmd_output","timestamp":1607098225,"output":"epo_name\" => \"2_basic\", \"request_token\" => \"380a5b1c-364b-11eb-b896-5254005464e2\", \"requester_id\" =>"},{"event":"cmd_output","timestamp":1607098225,"output":" \"3c36abab-35b0-45ba-b8d8-c39ee816a81d\", \"service\" => \"local\", \"snapshot_id\" => \"\", \"suppressed_attr"},{"event":"cmd_output","timestamp":1607098225,"output":"ibutes\" => [\"access_token\", \"client_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"68586936-f618-45"},{"event":"cmd_output","timestamp":1607098225,"output":"03-9513-afb4c73e9f0f\"}\n\u001b[0m\u001b[22m\n16:10:25.588 [info] ppl_id: a5cb0326-8258-4105-8629-7906eca809d8"},{"event":"cmd_output","timestamp":1607098225,"output":", type: PplRequests, event: persisted schedule request with request_token: 380a5b1c-364b-11eb-b896-5"},{"event":"cmd_output","timestamp":1607098225,"output":"254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098225,"output":"\u001b[22m\n16:10:25.591 [info] ppl_id: a5cb0326-8258-4105-8629-7906eca809d8, type: Ppls, state: initial"},{"event":"cmd_output","timestamp":1607098225,"output":"izing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_res"},{"event":"cmd_output","timestamp":1607098225,"output":"ponse/2(L124), \n\u001b[0m\u001b[22m\n16:10:25.598 [info] Project list_latest_workflows and tag v1.8latest_wf"},{"event":"cmd_output","timestamp":1607098225,"output":" details updated: \"wf_id: 68586936-f618-4503-9513-afb4c73e9f0f, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:10:25.6"},{"event":"cmd_output","timestamp":1607098225,"output":"00 [info] Persisted ppl_sub_init for pipeline with ppl_id: a5cb0326-8258-4105-8629-7906eca809d8: %P"},{"event":"cmd_output","timestamp":1607098225,"output":"pl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, com"},{"event":"cmd_output","timestamp":1607098225,"output":"pile_task_id: nil, error_description: nil, id: 50, in_scheduling: false, init_type: \"regular\", inser"},{"event":"cmd_output","timestamp":1607098225,"output":"ted_at: ~N[2020-12-04 16:10:25.598586], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"a5cb0326-8258-4105-8629-7906eca809d8\", recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098225,"output":" result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: "},{"event":"cmd_output","timestamp":1607098225,"output":"nil, updated_at: ~N[2020-12-04 16:10:25.598597]}\n\u001b[0m\u001b[22m\n16:10:25.616 [info] Request: 'run: %{\""},{"event":"cmd_output","timestamp":1607098225,"output":"branch_id\" => \"7b517b61-bcdc-41a2-9f83-1a2a510d446b\", \"branch_name\" => \"refs/tags/v1.9\", \"client_id\""},{"event":"cmd_output","timestamp":1607098225,"output":" => \"2ac62a3f-99f4-43b8-a9b9-2d1798851aa4\", \"commit_sha\" => \"75891a4469\", \"definition_file\" => \"\", \""},{"event":"cmd_output","timestamp":1607098225,"output":"hook_id\" => \"tag\", \"label\" => \"refs/tags/v1.9\", \"organization_id\" => \"423fdbe6-d1ce-4fda-b66b-8e8d81"},{"event":"cmd_output","timestamp":1607098225,"output":"ed7aae\", \"owner\" => \"rt\", \"project_id\" => \"list_latest_workflows\", \"repo_name\" => \"2_basic\", \"reques"},{"event":"cmd_output","timestamp":1607098225,"output":"t_token\" => \"3811a75a-364b-11eb-93bf-5254005464e2\", \"requester_id\" => \"af09608c-b182-4f3e-96b9-c04cc"},{"event":"cmd_output","timestamp":1607098225,"output":"2adf361\", \"service\" => \"local\", \"snapshot_id\" => \"\", \"suppressed_attributes\" => [\"access_token\", \"cl"},{"event":"cmd_output","timestamp":1607098225,"output":"ient_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"e03a7561-0272-400c-b047-08c12ed7e849\"}\n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098225,"output":"2m\n16:10:25.641 [info] ppl_id: 0eb6501c-842d-40eb-8c2b-b346bf437ff8, type: PplRequests, event: per"},{"event":"cmd_output","timestamp":1607098225,"output":"sisted schedule request with request_token: 3811a75a-364b-11eb-93bf-5254005464e2, origin: Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098225,"output":".PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:25.645 [info] ppl"},{"event":"cmd_output","timestamp":1607098225,"output":"_id: 0eb6501c-842d-40eb-8c2b-b346bf437ff8, type: Ppls, state: initializing, event: initializing, rec"},{"event":"cmd_output","timestamp":1607098225,"output":"overy_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098225,"output":"10:25.652 [info] Project list_latest_workflows and tag v1.9latest_wf details updated: \"wf_id: e03a7"},{"event":"cmd_output","timestamp":1607098225,"output":"561-0272-400c-b047-08c12ed7e849, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:10:25.654 [info] Persisted ppl_sub_in"},{"event":"cmd_output","timestamp":1607098225,"output":"it for pipeline with ppl_id: 0eb6501c-842d-40eb-8c2b-b346bf437ff8: %Ppl.PplSubInits.Model.PplSubInit"},{"event":"cmd_output","timestamp":1607098225,"output":"s{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_descri"},{"event":"cmd_output","timestamp":1607098225,"output":"ption: nil, id: 51, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:10:25."},{"event":"cmd_output","timestamp":1607098225,"output":"653531], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"0eb6501c-842d-40eb-8c2b-b346bf437ff8\", recovery_count: 0, result: nil, result_reason: ni"},{"event":"cmd_output","timestamp":1607098225,"output":"l, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 "},{"event":"cmd_output","timestamp":1607098225,"output":"16:10:25.653538]}\n\u001b[0m\u001b[22m\n16:10:25.666 [info] Request: 'run: %{\"branch_id\" => \"5ca01a7b-7859-43"},{"event":"cmd_output","timestamp":1607098225,"output":"8d-ae9c-1611bee610e3\", \"branch_name\" => \"refs/tags/v1.10\", \"client_id\" => \"76ef4c7d-8e81-4d06-a0d8-c"},{"event":"cmd_output","timestamp":1607098225,"output":"a600dc3bb53\", \"commit_sha\" => \"75891a4469\", \"definition_file\" => \"\", \"hook_id\" => \"tag\", \"label\" => "},{"event":"cmd_output","timestamp":1607098225,"output":"\"refs/tags/v1.10\", \"organization_id\" => \"f7fe9682-a292-437c-9526-2b7f37f883f0\", \"owner\" => \"rt\", \"pr"},{"event":"cmd_output","timestamp":1607098225,"output":"oject_id\" => \"list_latest_workflows\", \"repo_name\" => \"2_basic\", \"request_token\" => \"381a376c-364b-11"},{"event":"cmd_output","timestamp":1607098225,"output":"eb-a96c-5254005464e2\", \"requester_id\" => \"05d46c4a-bbea-4f66-96fa-243730a1e476\", \"service\" => \"local"},{"event":"cmd_output","timestamp":1607098225,"output":"\", \"snapshot_id\" => \"\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"triggered_by\""},{"event":"cmd_output","timestamp":1607098225,"output":" => \"hook\", \"wf_id\" => \"fa8a5b73-6002-4fcb-adc9-b9b88275457d\"}\n\u001b[0m\u001b[22m\n16:10:25.697 [info] ppl_"},{"event":"cmd_output","timestamp":1607098225,"output":"id: 2ad8f743-eb7f-4f0d-bf04-d2673b0b326e, type: PplRequests, event: persisted schedule request with "},{"event":"cmd_output","timestamp":1607098225,"output":"request_token: 381a376c-364b-11eb-a96c-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequest"},{"event":"cmd_output","timestamp":1607098225,"output":"sQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:25.700 [info] ppl_id: 2ad8f743-eb7f-4f0d-bf04-"},{"event":"cmd_output","timestamp":1607098225,"output":"d2673b0b326e, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098225,"output":"r.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:25.705 [info] Project lis"},{"event":"cmd_output","timestamp":1607098225,"output":"t_latest_workflows and tag v1.10latest_wf details updated: \"wf_id: fa8a5b73-6002-4fcb-adc9-b9b882754"},{"event":"cmd_output","timestamp":1607098225,"output":"57d, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:10:25.707 [info] Persisted ppl_sub_init for pipeline with ppl_id:"},{"event":"cmd_output","timestamp":1607098225,"output":" 2ad8f743-eb7f-4f0d-bf04-d2673b0b326e: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Met"},{"event":"cmd_output","timestamp":1607098225,"output":"adata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 52, in_sched"},{"event":"cmd_output","timestamp":1607098225,"output":"uling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:10:25.705588], pipeline_requests: "},{"event":"cmd_output","timestamp":1607098225,"output":"#Ecto.Association.NotLoaded, ppl_id: \"2ad8f743-eb7f-4f"},{"event":"cmd_output","timestamp":1607098225,"output":"0d-bf04-d2673b0b326e\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", termina"},{"event":"cmd_output","timestamp":1607098225,"output":"te_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:25.705597]}\n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098225,"output":"\n16:10:25.719 [info] Request: 'run: %{\"branch_id\" => \"bdabfa8a-a04d-4af7-a9a2-235aecdfb531\", \"bran"},{"event":"cmd_output","timestamp":1607098225,"output":"ch_name\" => \"refs/tags/v1.11\", \"client_id\" => \"54a94d8e-067a-4e7c-b36e-3d843b049e09\", \"commit_sha\" ="},{"event":"cmd_output","timestamp":1607098225,"output":"> \"75891a4469\", \"definition_file\" => \"\", \"hook_id\" => \"tag\", \"label\" => \"refs/tags/v1.11\", \"organiza"},{"event":"cmd_output","timestamp":1607098225,"output":"tion_id\" => \"7a25c8c5-16ee-44cd-8517-550404a3a571\", \"owner\" => \"rt\", \"project_id\" => \"list_latest_wo"},{"event":"cmd_output","timestamp":1607098225,"output":"rkflows\", \"repo_name\" => \"2_basic\", \"request_token\" => \"38225924-364b-11eb-a771-5254005464e2\", \"requ"},{"event":"cmd_output","timestamp":1607098225,"output":"ester_id\" => \"e3d6e94e-c1cc-4339-8173-d3555a5d5986\", \"service\" => \"local\", \"snapshot_id\" => \"\", \"sup"},{"event":"cmd_output","timestamp":1607098225,"output":"pressed_attributes\" => [\"access_token\", \"client_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"f185"},{"event":"cmd_output","timestamp":1607098225,"output":"b1c4-d22d-4a63-a846-6ca53e9df193\"}\n\u001b[0m\u001b[22m\n16:10:25.754 [info] ppl_id: 36f110fc-b9d0-4a09-9976-"},{"event":"cmd_output","timestamp":1607098225,"output":"cc956a044f8e, type: PplRequests, event: persisted schedule request with request_token: 38225924-364b"},{"event":"cmd_output","timestamp":1607098225,"output":"-11eb-a771-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2("},{"event":"cmd_output","timestamp":1607098225,"output":"L55), \n\u001b[0m\u001b[22m\n16:10:25.758 [info] ppl_id: 36f110fc-b9d0-4a09-9976-cc956a044f8e, type: Ppls, st"},{"event":"cmd_output","timestamp":1607098225,"output":"ate: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries"},{"event":"cmd_output","timestamp":1607098225,"output":".process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:25.762 [info] Project list_latest_workflows and tag v"},{"event":"cmd_output","timestamp":1607098225,"output":"1.11latest_wf details updated: \"wf_id: f185b1c4-d22d-4a63-a846-6ca53e9df193, wf_number: 1\"\n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098225,"output":"m\n16:10:25.764 [info] Persisted ppl_sub_init for pipeline with ppl_id: 36f110fc-b9d0-4a09-9976-cc9"},{"event":"cmd_output","timestamp":1607098225,"output":"56a044f8e: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub"},{"event":"cmd_output","timestamp":1607098225,"output":"_inits\">, compile_task_id: nil, error_description: nil, id: 53, in_scheduling: false, init_type: \"re"},{"event":"cmd_output","timestamp":1607098225,"output":"gular\", inserted_at: ~N[2020-12-04 16:10:25.762779], pipeline_requests: #Ecto.Association.NotLoaded<"},{"event":"cmd_output","timestamp":1607098225,"output":"association :pipeline_requests is not loaded>, ppl_id: \"36f110fc-b9d0-4a09-9976-cc956a044f8e\", recov"},{"event":"cmd_output","timestamp":1607098225,"output":"ery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_r"},{"event":"cmd_output","timestamp":1607098225,"output":"equest_desc: nil, updated_at: ~N[2020-12-04 16:10:25.762791]}\n\u001b[0m\u001b[22m\n16:10:25.773 [info] Reque"},{"event":"cmd_output","timestamp":1607098225,"output":"st: 'run: %{\"branch_id\" => \"cc610181-fc06-43bf-8b69-33840a9ec040\", \"branch_name\" => \"pull-request-12"},{"event":"cmd_output","timestamp":1607098225,"output":"12\", \"client_id\" => \"8977e657-735c-4ff6-9b55-d1edefdd5b5e\", \"commit_sha\" => \"75891a4469\", \"definitio"},{"event":"cmd_output","timestamp":1607098225,"output":"n_file\" => \"\", \"hook_id\" => \"pr\", \"label\" => \"pull-request-1212\", \"organization_id\" => \"28770b22-ff5"},{"event":"cmd_output","timestamp":1607098225,"output":"7-4825-b706-3be0dbf95d04\", \"owner\" => \"rt\", \"project_id\" => \"list_latest_workflows\", \"repo_name\" => "},{"event":"cmd_output","timestamp":1607098225,"output":"\"2_basic\", \"request_token\" => \"382a7c3a-364b-11eb-95f8-5254005464e2\", \"requester_id\" => \"c581f4a7-4a"},{"event":"cmd_output","timestamp":1607098225,"output":"d0-40dd-a86d-3150290fb7f3\", \"service\" => \"local\", \"snapshot_id\" => \"\", \"suppressed_attributes\" => [\""},{"event":"cmd_output","timestamp":1607098225,"output":"access_token\", \"client_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"f51f8645-b254-420e-a38c-50c5c"},{"event":"cmd_output","timestamp":1607098225,"output":"c1e4914\"}\n\u001b[0m\u001b[22m\n16:10:25.819 [info] ppl_id: b862d192-f56c-46b8-9b40-99170c360c7a, type: PplRe"},{"event":"cmd_output","timestamp":1607098225,"output":"quests, event: persisted schedule request with request_token: 382a7c3a-364b-11eb-95f8-5254005464e2, "},{"event":"cmd_output","timestamp":1607098225,"output":"origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:"},{"event":"cmd_output","timestamp":1607098225,"output":"25.826 [info] ppl_id: b862d192-f56c-46b8-9b40-99170c360c7a, type: Ppls, state: initializing, event:"},{"event":"cmd_output","timestamp":1607098225,"output":" initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124)"},{"event":"cmd_output","timestamp":1607098225,"output":", \n\u001b[0m\u001b[22m\n16:10:25.834 [info] Project list_latest_workflows and pr 1212latest_wf details updat"},{"event":"cmd_output","timestamp":1607098225,"output":"ed: \"wf_id: f51f8645-b254-420e-a38c-50c5cc1e4914, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:10:25.836 [info] Per"},{"event":"cmd_output","timestamp":1607098225,"output":"sisted ppl_sub_init for pipeline with ppl_id: b862d192-f56c-46b8-9b40-99170c360c7a: %Ppl.PplSubInits"},{"event":"cmd_output","timestamp":1607098225,"output":".Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: "},{"event":"cmd_output","timestamp":1607098225,"output":"nil, error_description: nil, id: 54, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[202"},{"event":"cmd_output","timestamp":1607098225,"output":"0-12-04 16:10:25.835695], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"b862d192-f56c-46b8-9b40-99170c360c7a\", recovery_count: 0, result: nil, "},{"event":"cmd_output","timestamp":1607098225,"output":"result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_a"},{"event":"cmd_output","timestamp":1607098225,"output":"t: ~N[2020-12-04 16:10:25.835707]}\n\u001b[0m\u001b[22m\n16:10:25.854 [info] Request: 'run: %{\"branch_id\" => "},{"event":"cmd_output","timestamp":1607098225,"output":"\"bcc2865e-fe14-4b37-b398-7a5f6878bdf1\", \"branch_name\" => \"pull-request-1213\", \"client_id\" => \"a627d3"},{"event":"cmd_output","timestamp":1607098225,"output":"8b-f27f-48ff-90a4-5a312fb3b6e4\", \"commit_sha\" => \"75891a4469\", \"definition_file\" => \"\", \"hook_id\" =>"},{"event":"cmd_output","timestamp":1607098225,"output":" \"pr\", \"label\" => \"pull-request-1213\", \"organization_id\" => \"b3fe3814-9c96-463f-8117-81f2f540b99b\", "},{"event":"cmd_output","timestamp":1607098225,"output":"\"owner\" => \"rt\", \"project_id\" => \"list_latest_workflows\", \"repo_name\" => \"2_basic\", \"request_token\" "},{"event":"cmd_output","timestamp":1607098225,"output":"=> \"3836c616-364b-11eb-92eb-5254005464e2\", \"requester_id\" => \"d1700e50-4f78-4443-9226-80f99b26d933\","},{"event":"cmd_output","timestamp":1607098225,"output":" \"service\" => \"local\", \"snapshot_id\" => \"\", \"suppressed_attributes\" => [\"access_token\", \"client_secr"},{"event":"cmd_output","timestamp":1607098225,"output":"et\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"5b31cabc-0676-48e7-b250-ef27cc339889\"}\n\u001b[0m\u001b[22m\n16:10"},{"event":"cmd_output","timestamp":1607098225,"output":":25.879 [info] ppl_id: 608dc11e-6529-4912-9121-813bb4723eb4, type: PplRequests, event: persisted sc"},{"event":"cmd_output","timestamp":1607098225,"output":"hedule request with request_token: 3836c616-364b-11eb-92eb-5254005464e2, origin: Elixir.Ppl.PplReque"},{"event":"cmd_output","timestamp":1607098225,"output":"sts.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:25.881 [info] ppl_id: 608d"},{"event":"cmd_output","timestamp":1607098225,"output":"c11e-6529-4912-9121-813bb4723eb4, type: Ppls, state: initializing, event: initializing, recovery_cou"},{"event":"cmd_output","timestamp":1607098225,"output":"nt: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:25.886"},{"event":"cmd_output","timestamp":1607098225,"output":" [info] Project list_latest_workflows and pr 1213latest_wf details updated: \"wf_id: 5b31cabc-0676-4"},{"event":"cmd_output","timestamp":1607098225,"output":"8e7-b250-ef27cc339889, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:10:25.887 [info] Persisted ppl_sub_init for pip"},{"event":"cmd_output","timestamp":1607098225,"output":"eline with ppl_id: 608dc11e-6529-4912-9121-813bb4723eb4: %Ppl.PplSubInits.Model.PplSubInits{__meta__"},{"event":"cmd_output","timestamp":1607098225,"output":": #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil"},{"event":"cmd_output","timestamp":1607098225,"output":", id: 55, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:10:25.886170], p"},{"event":"cmd_output","timestamp":1607098225,"output":"ipeline_requests: #Ecto.Association.NotLoaded, ppl_id:"},{"event":"cmd_output","timestamp":1607098225,"output":" \"608dc11e-6529-4912-9121-813bb4723eb4\", recovery_count: 0, result: nil, result_reason: nil, state: "},{"event":"cmd_output","timestamp":1607098225,"output":"\"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:25.8"},{"event":"cmd_output","timestamp":1607098225,"output":"86181]}\n\u001b[0m\u001b[22m\n16:10:25.896 [info] Request: 'run: %{\"branch_id\" => \"4537912b-c7fd-47d6-8e6a-a3"},{"event":"cmd_output","timestamp":1607098225,"output":"cf635c78e6\", \"branch_name\" => \"pull-request-1214\", \"client_id\" => \"d1cc1402-49dc-4b9e-ae99-71d6fba21"},{"event":"cmd_output","timestamp":1607098225,"output":"af2\", \"commit_sha\" => \"75891a4469\", \"definition_file\" => \"\", \"hook_id\" => \"pr\", \"label\" => \"pull-req"},{"event":"cmd_output","timestamp":1607098225,"output":"uest-1214\", \"organization_id\" => \"e66dd4bb-b5c4-4b65-8797-7227c6ae307b\", \"owner\" => \"rt\", \"project_i"},{"event":"cmd_output","timestamp":1607098225,"output":"d\" => \"list_latest_workflows\", \"repo_name\" => \"2_basic\", \"request_token\" => \"383d6e80-364b-11eb-9505"},{"event":"cmd_output","timestamp":1607098225,"output":"-5254005464e2\", \"requester_id\" => \"ce32f563-29e4-45ce-9d77-737b154d655a\", \"service\" => \"local\", \"sna"},{"event":"cmd_output","timestamp":1607098225,"output":"pshot_id\" => \"\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"triggered_by\" => \"ho"},{"event":"cmd_output","timestamp":1607098225,"output":"ok\", \"wf_id\" => \"f7880b29-6bc1-4e16-a40a-1f37e6b3bb06\"}\n\u001b[0m\u001b[22m\n16:10:25.920 [info] ppl_id: 0a0"},{"event":"cmd_output","timestamp":1607098225,"output":"c3dd8-589a-4ee7-a8b4-a960b430b2c7, type: PplRequests, event: persisted schedule request with request"},{"event":"cmd_output","timestamp":1607098225,"output":"_token: 383d6e80-364b-11eb-9505-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQuerie"},{"event":"cmd_output","timestamp":1607098225,"output":"s.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:25.922 [info] ppl_id: 0a0c3dd8-589a-4ee7-a8b4-a960b43"},{"event":"cmd_output","timestamp":1607098225,"output":"0b2c7, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.P"},{"event":"cmd_output","timestamp":1607098225,"output":"pls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:25.925 [info] Project list_lates"},{"event":"cmd_output","timestamp":1607098225,"output":"t_workflows and pr 1214latest_wf details updated: \"wf_id: f7880b29-6bc1-4e16-a40a-1f37e6b3bb06, wf_n"},{"event":"cmd_output","timestamp":1607098225,"output":"umber: 1\"\n\u001b[0m\u001b[22m\n16:10:25.927 [info] Persisted ppl_sub_init for pipeline with ppl_id: 0a0c3dd8"},{"event":"cmd_output","timestamp":1607098225,"output":"-589a-4ee7-a8b4-a960b430b2c7: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:lo"},{"event":"cmd_output","timestamp":1607098225,"output":"aded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 56, in_scheduling: fa"},{"event":"cmd_output","timestamp":1607098225,"output":"lse, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:10:25.926416], pipeline_requests: #Ecto.Ass"},{"event":"cmd_output","timestamp":1607098225,"output":"ociation.NotLoaded, ppl_id: \"0a0c3dd8-589a-4ee7-a8b4-a"},{"event":"cmd_output","timestamp":1607098225,"output":"960b430b2c7\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_reques"},{"event":"cmd_output","timestamp":1607098225,"output":"t: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:25.926425]}\n\u001b[0m\u001b[22m\n16:10:2"},{"event":"cmd_output","timestamp":1607098225,"output":"5.934 [info] Request: 'run: %{\"branch_id\" => \"30ac4aa0-06d3-4047-a304-4c39ad1dfaa1\", \"branch_name\" "},{"event":"cmd_output","timestamp":1607098225,"output":"=> \"pull-request-1215\", \"client_id\" => \"3acd1561-98d1-43cb-b28f-36ffea8f37d3\", \"commit_sha\" => \"7589"},{"event":"cmd_output","timestamp":1607098225,"output":"1a4469\", \"definition_file\" => \"\", \"hook_id\" => \"pr\", \"label\" => \"pull-request-1215\", \"organization_i"},{"event":"cmd_output","timestamp":1607098225,"output":"d\" => \"fd289d3d-1888-4069-a601-b2a74002999c\", \"owner\" => \"rt\", \"project_id\" => \"list_latest_workflow"},{"event":"cmd_output","timestamp":1607098225,"output":"s\", \"repo_name\" => \"2_basic\", \"request_token\" => \"38433860-364b-11eb-9bd2-5254005464e2\", \"requester_"},{"event":"cmd_output","timestamp":1607098225,"output":"id\" => \"3bf05ec6-c226-4da1-85bd-3d1a0e496dc4\", \"service\" => \"local\", \"snapshot_id\" => \"\", \"suppresse"},{"event":"cmd_output","timestamp":1607098225,"output":"d_attributes\" => [\"access_token\", \"client_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"ec1891a0-7"},{"event":"cmd_output","timestamp":1607098225,"output":"19c-4ae9-80bd-1294012d371d\"}\n\u001b[0m\u001b[22m\n16:10:25.957 [info] ppl_id: 6d84b04f-3a70-4304-bdbb-42129b"},{"event":"cmd_output","timestamp":1607098225,"output":"e868a7, type: PplRequests, event: persisted schedule request with request_token: 38433860-364b-11eb-"},{"event":"cmd_output","timestamp":1607098225,"output":"9bd2-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), "},{"event":"cmd_output","timestamp":1607098225,"output":"\n\u001b[0m\u001b[22m\n16:10:25.960 [info] ppl_id: 6d84b04f-3a70-4304-bdbb-42129be868a7, type: Ppls, state: i"},{"event":"cmd_output","timestamp":1607098225,"output":"nitializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.proce"},{"event":"cmd_output","timestamp":1607098225,"output":"ss_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:25.964 [info] Project list_latest_workflows and pr 1215late"},{"event":"cmd_output","timestamp":1607098225,"output":"st_wf details updated: \"wf_id: ec1891a0-719c-4ae9-80bd-1294012d371d, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:10"},{"event":"cmd_output","timestamp":1607098225,"output":":25.966 [info] Persisted ppl_sub_init for pipeline with ppl_id: 6d84b04f-3a70-4304-bdbb-42129be868a"},{"event":"cmd_output","timestamp":1607098225,"output":"7: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">"},{"event":"cmd_output","timestamp":1607098225,"output":", compile_task_id: nil, error_description: nil, id: 57, in_scheduling: false, init_type: \"regular\", "},{"event":"cmd_output","timestamp":1607098225,"output":"inserted_at: ~N[2020-12-04 16:10:25.964730], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"6d84b04f-3a70-4304-bdbb-42129be868a7\", recovery_coun"},{"event":"cmd_output","timestamp":1607098225,"output":"t: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_d"},{"event":"cmd_output","timestamp":1607098225,"output":"esc: nil, updated_at: ~N[2020-12-04 16:10:25.964740]}\n\u001b[0m\u001b[22m\n16:10:25.975 [info] Request: 'run"},{"event":"cmd_output","timestamp":1607098225,"output":": %{\"branch_id\" => \"a9c3ef23-aa74-46dd-9bcc-dcd1c08854da\", \"branch_name\" => \"pull-request-1216\", \"cl"},{"event":"cmd_output","timestamp":1607098225,"output":"ient_id\" => \"19a8bd34-a9bb-4e07-8810-1c643c8e1cc4\", \"commit_sha\" => \"75891a4469\", \"definition_file\" "},{"event":"cmd_output","timestamp":1607098225,"output":"=> \"\", \"hook_id\" => \"pr\", \"label\" => \"pull-request-1216\", \"organization_id\" => \"87b991a2-9e63-44e2-a"},{"event":"cmd_output","timestamp":1607098225,"output":"557-1b12410d69ab\", \"owner\" => \"rt\", \"project_id\" => \"list_latest_workflows\", \"repo_name\" => \"2_basic"},{"event":"cmd_output","timestamp":1607098225,"output":"\", \"request_token\" => \"38496230-364b-11eb-ab50-5254005464e2\", \"requester_id\" => \"8e9821de-db74-49a6-"},{"event":"cmd_output","timestamp":1607098225,"output":"a083-6ff81a2e0c29\", \"service\" => \"local\", \"snapshot_id\" => \"\", \"suppressed_attributes\" => [\"access_t"},{"event":"cmd_output","timestamp":1607098225,"output":"oken\", \"client_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"339634d9-5712-447c-a904-861b4621f52c\""},{"event":"cmd_output","timestamp":1607098225,"output":"}\n\u001b[0m\u001b[22m\n16:10:25.998 [info] ppl_id: c3c8dc93-eccb-4a42-9eee-90e7d3cfd455, type: PplRequests, "},{"event":"cmd_output","timestamp":1607098225,"output":"event: persisted schedule request with request_token: 38496230-364b-11eb-ab50-5254005464e2, origin: "},{"event":"cmd_output","timestamp":1607098226,"output":"Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:26.001 ["},{"event":"cmd_output","timestamp":1607098226,"output":"info] ppl_id: c3c8dc93-eccb-4a42-9eee-90e7d3cfd455, type: Ppls, state: initializing, event: initial"},{"event":"cmd_output","timestamp":1607098226,"output":"izing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098226,"output":"\u001b[22m\n16:10:26.006 [info] Project list_latest_workflows and pr 1216latest_wf details updated: \"wf_"},{"event":"cmd_output","timestamp":1607098226,"output":"id: 339634d9-5712-447c-a904-861b4621f52c, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:10:26.007 [info] Persisted p"},{"event":"cmd_output","timestamp":1607098226,"output":"pl_sub_init for pipeline with ppl_id: c3c8dc93-eccb-4a42-9eee-90e7d3cfd455: %Ppl.PplSubInits.Model.P"},{"event":"cmd_output","timestamp":1607098226,"output":"plSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, err"},{"event":"cmd_output","timestamp":1607098226,"output":"or_description: nil, id: 58, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 "},{"event":"cmd_output","timestamp":1607098226,"output":"16:10:26.006845], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"c3c8dc93-eccb-4a42-9eee-90e7d3cfd455\", recovery_count: 0, result: nil, result_r"},{"event":"cmd_output","timestamp":1607098226,"output":"eason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[20"},{"event":"cmd_output","timestamp":1607098226,"output":"20-12-04 16:10:26.006856]}\n\u001b[0m\u001b[22m\n16:10:26.015 [info] Request: 'run: %{\"branch_id\" => \"aa98842"},{"event":"cmd_output","timestamp":1607098226,"output":"0-2971-4ab2-804d-5330fba3dd03\", \"branch_name\" => \"pull-request-1217\", \"client_id\" => \"a4998017-b593-"},{"event":"cmd_output","timestamp":1607098226,"output":"4d06-a92b-1b1c317f0424\", \"commit_sha\" => \"75891a4469\", \"definition_file\" => \"\", \"hook_id\" => \"pr\", \""},{"event":"cmd_output","timestamp":1607098226,"output":"label\" => \"pull-request-1217\", \"organization_id\" => \"17bbc787-159e-467c-9f9d-75b96b8c60f2\", \"owner\" "},{"event":"cmd_output","timestamp":1607098226,"output":"=> \"rt\", \"project_id\" => \"list_latest_workflows\", \"repo_name\" => \"2_basic\", \"request_token\" => \"384f"},{"event":"cmd_output","timestamp":1607098226,"output":"9f2e-364b-11eb-9848-5254005464e2\", \"requester_id\" => \"f9ffb43b-8ef0-43fc-9159-44f193e97938\", \"servic"},{"event":"cmd_output","timestamp":1607098226,"output":"e\" => \"local\", \"snapshot_id\" => \"\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"t"},{"event":"cmd_output","timestamp":1607098226,"output":"riggered_by\" => \"hook\", \"wf_id\" => \"0ee0e8bd-7f79-4224-aa2f-e2514f36e34e\"}\n\u001b[0m\u001b[22m\n16:10:26.039 "},{"event":"cmd_output","timestamp":1607098226,"output":"[info] ppl_id: eaba441e-9d94-4f55-8648-26b773c73488, type: PplRequests, event: persisted schedule r"},{"event":"cmd_output","timestamp":1607098226,"output":"equest with request_token: 384f9f2e-364b-11eb-9848-5254005464e2, origin: Elixir.Ppl.PplRequests.Mode"},{"event":"cmd_output","timestamp":1607098226,"output":"l.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:26.041 [info] ppl_id: eaba441e-9d9"},{"event":"cmd_output","timestamp":1607098226,"output":"4-4f55-8648-26b773c73488, type: Ppls, state: initializing, event: initializing, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098226,"output":"rigin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:26.045 [info] "},{"event":"cmd_output","timestamp":1607098226,"output":" Project list_latest_workflows and pr 1217latest_wf details updated: \"wf_id: 0ee0e8bd-7f79-4224-aa2f"},{"event":"cmd_output","timestamp":1607098226,"output":"-e2514f36e34e, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:10:26.046 [info] Persisted ppl_sub_init for pipeline wi"},{"event":"cmd_output","timestamp":1607098226,"output":"th ppl_id: eaba441e-9d94-4f55-8648-26b773c73488: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto."},{"event":"cmd_output","timestamp":1607098226,"output":"Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 59"},{"event":"cmd_output","timestamp":1607098226,"output":", in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:10:26.045476], pipeline_"},{"event":"cmd_output","timestamp":1607098226,"output":"requests: #Ecto.Association.NotLoaded, ppl_id: \"eaba44"},{"event":"cmd_output","timestamp":1607098226,"output":"1e-9d94-4f55-8648-26b773c73488\", recovery_count: 0, result: nil, result_reason: nil, state: \"created"},{"event":"cmd_output","timestamp":1607098226,"output":"\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:26.045483]}\r"},{"event":"cmd_output","timestamp":1607098226,"output":"\n\u001b[0m\u001b[22m\n16:10:26.052 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingState w"},{"event":"cmd_output","timestamp":1607098226,"output":"ith name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder"},{"event":"cmd_output","timestamp":1607098226,"output":"-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializ"},{"event":"cmd_output","timestamp":1607098226,"output":"ing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \""},{"event":"cmd_output","timestamp":1607098226,"output":"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0"},{"event":"cmd_output","timestamp":1607098226,"output":">, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_"},{"event":"cmd_output","timestamp":1607098226,"output":"count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:26.053 [info"},{"event":"cmd_output","timestamp":1607098226,"output":"] Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler"},{"event":"cmd_output","timestamp":1607098226,"output":".PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Pending"},{"event":"cmd_output","timestamp":1607098226,"output":"State\"]}, recurring args: %{allowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_"},{"event":"cmd_output","timestamp":1607098226,"output":"sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publisher_cb: #Function<0.849"},{"event":"cmd_output","timestamp":1607098226,"output":"3005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_"},{"event":"cmd_output","timestamp":1607098226,"output":"request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_"},{"event":"cmd_output","timestamp":1607098226,"output":"supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:10:26.054 [info] Periodic from module Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098226,"output":"s.STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, metri"},{"event":"cmd_output","timestamp":1607098226,"output":"c_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{allowed_st"},{"event":"cmd_output","timestamp":1607098226,"output":"ates: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, obse"},{"event":"cmd_output","timestamp":1607098226,"output":"rved_state: \"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.arg"},{"event":"cmd_output","timestamp":1607098226,"output":"s/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recove"},{"event":"cmd_output","timestamp":1607098226,"output":"ry_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:26.054 [i"},{"event":"cmd_output","timestamp":1607098226,"output":"nfo] Periodic from module Elixir.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHand"},{"event":"cmd_output","timestamp":1607098226,"output":"ler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Runn"},{"event":"cmd_output","timestamp":1607098226,"output":"ingState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2"},{"event":"cmd_output","timestamp":1607098226,"output":", initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"running\", publisher_cb: #Function<0.74670282/"},{"event":"cmd_output","timestamp":1607098226,"output":"1 in Ppl.Ppls.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_reque"},{"event":"cmd_output","timestamp":1607098226,"output":"st, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_super"},{"event":"cmd_output","timestamp":1607098226,"output":"visor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:10:26.055 [info] Periodic from module Elixir.Ppl.Ppls.STM"},{"event":"cmd_output","timestamp":1607098226,"output":"Handler.StoppingState with name Elixir.Ppl.Ppls.STMHandler.StoppingState :: period: 100 ms, metric_n"},{"event":"cmd_output","timestamp":1607098226,"output":"ame: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring args: %{allowed_stat"},{"event":"cmd_output","timestamp":1607098226,"output":"es: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: "},{"event":"cmd_output","timestamp":1607098226,"output":"\"stopping\", publisher_cb: #Function<0.71803493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, repo:"},{"event":"cmd_output","timestamp":1607098226,"output":" Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :"},{"event":"cmd_output","timestamp":1607098226,"output":"ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:26.055 [info] Perio"},{"event":"cmd_output","timestamp":1607098226,"output":"dic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMH"},{"event":"cmd_output","timestamp":1607098226,"output":"andler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHa"},{"event":"cmd_output","timestamp":1607098226,"output":"ndler-CreatedState\"]}, recurring args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, "},{"event":"cmd_output","timestamp":1607098226,"output":"initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip, re"},{"event":"cmd_output","timestamp":1607098226,"output":"po: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count"},{"event":"cmd_output","timestamp":1607098226,"output":", :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:26."},{"event":"cmd_output","timestamp":1607098226,"output":"055 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Pp"},{"event":"cmd_output","timestamp":1607098226,"output":"l.PplSubInits.STMHandler.FetchingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Pp"},{"event":"cmd_output","timestamp":1607098226,"output":"l-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compi"},{"event":"cmd_output","timestamp":1607098226,"output":"lation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_s"},{"event":"cmd_output","timestamp":1607098226,"output":"tate: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :upd"},{"event":"cmd_output","timestamp":1607098226,"output":"ated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task"},{"event":"cmd_output","timestamp":1607098226,"output":"_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:26.055 [info] Periodic from module Elixir.Ppl.PplSubInits.STM"},{"event":"cmd_output","timestamp":1607098226,"output":"Handler.CompilationState with name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 100"},{"event":"cmd_output","timestamp":1607098226,"output":" ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurri"},{"event":"cmd_output","timestamp":1607098226,"output":"ng args: %{allowed_states: [\"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2"},{"event":"cmd_output","timestamp":1607098226,"output":", initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"compilation\", publisher_cb: :sk"},{"event":"cmd_output","timestamp":1607098226,"output":"ip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery"},{"event":"cmd_output","timestamp":1607098226,"output":"_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098226,"output":"10:26.056 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with name "},{"event":"cmd_output","timestamp":1607098226,"output":"Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wa"},{"event":"cmd_output","timestamp":1607098226,"output":"ke_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurring args: %{allowed_states: [\"done\"]"},{"event":"cmd_output","timestamp":1607098226,"output":", cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_in"},{"event":"cmd_output","timestamp":1607098226,"output":"it\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :sta"},{"event":"cmd_output","timestamp":1607098226,"output":"te, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: "},{"event":"cmd_output","timestamp":1607098226,"output":":skip}\n\u001b[0m\u001b[22m\n16:10:26.059 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.Initial"},{"event":"cmd_output","timestamp":1607098226,"output":"izingState with name Elixir.Ppl.PplBlocks.STMHandler.InitializingState :: period: 100 ms, metric_nam"},{"event":"cmd_output","timestamp":1607098226,"output":"e: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-InitializingState\"]}, recurring args: %{allow"},{"event":"cmd_output","timestamp":1607098226,"output":"ed_states: [\"initializing\", \"waiting\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Mo"},{"event":"cmd_output","timestamp":1607098226,"output":"del.PplBlocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: ["},{"event":"cmd_output","timestamp":1607098226,"output":":id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], sche"},{"event":"cmd_output","timestamp":1607098226,"output":"ma: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:26.059 [info] Periodic"},{"event":"cmd_output","timestamp":1607098226,"output":" from module Elixir.Ppl.PplBlocks.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler."},{"event":"cmd_output","timestamp":1607098226,"output":"WaitingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-Wa"},{"event":"cmd_output","timestamp":1607098226,"output":"itingState\"]}, recurring args: %{allowed_states: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 0"},{"event":"cmd_output","timestamp":1607098226,"output":", initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"waiting\", publisher_cb: #Function<0"},{"event":"cmd_output","timestamp":1607098226,"output":".8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :t"},{"event":"cmd_output","timestamp":1607098226,"output":"erminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl"},{"event":"cmd_output","timestamp":1607098226,"output":".PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:26.060 [info] Periodic from m"},{"event":"cmd_output","timestamp":1607098226,"output":"odule Elixir.Ppl.PplBlocks.STMHandler.RunningState with name Elixir.Ppl.PplBlocks.STMHandler.Running"},{"event":"cmd_output","timestamp":1607098226,"output":"State :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningSt"},{"event":"cmd_output","timestamp":1607098226,"output":"ate\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, ini"},{"event":"cmd_output","timestamp":1607098226,"output":"tial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"running\", publisher_cb: #Function<0.2816"},{"event":"cmd_output","timestamp":1607098226,"output":"6834/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :termi"},{"event":"cmd_output","timestamp":1607098226,"output":"nate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], sche"},{"event":"cmd_output","timestamp":1607098226,"output":"ma: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:26.060 [info] Periodic"},{"event":"cmd_output","timestamp":1607098226,"output":" from module Elixir.Ppl.PplBlocks.STMHandler.StoppingState with name Elixir.Ppl.PplBlocks.STMHandler"},{"event":"cmd_output","timestamp":1607098226,"output":".StoppingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-"},{"event":"cmd_output","timestamp":1607098226,"output":"StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, init"},{"event":"cmd_output","timestamp":1607098226,"output":"ial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"stopping\", publisher_cb: #Function<0.1042"},{"event":"cmd_output","timestamp":1607098226,"output":"15991/1 in Ppl.PplBlocks.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :ter"},{"event":"cmd_output","timestamp":1607098226,"output":"minate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], sc"},{"event":"cmd_output","timestamp":1607098226,"output":"hema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:26.061 [info] Period"},{"event":"cmd_output","timestamp":1607098226,"output":"ic from module Elixir.Block.Blocks.STMHandler.InitializingState with name Elixir.Block.Blocks.STMHan"},{"event":"cmd_output","timestamp":1607098226,"output":"dler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHa"},{"event":"cmd_output","timestamp":1607098226,"output":"ndler-InitializingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec:"},{"event":"cmd_output","timestamp":1607098226,"output":" 0, initial_query: Block.Blocks.Model.Blocks, observed_state: \"initializing\", publisher_cb: :skip, r"},{"event":"cmd_output","timestamp":1607098226,"output":"epo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :blo"},{"event":"cmd_output","timestamp":1607098226,"output":"ck_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:26.062 [info] "},{"event":"cmd_output","timestamp":1607098226,"output":"Periodic from module Elixir.Block.Blocks.STMHandler.RunningState with name Elixir.Block.Blocks.STMHa"},{"event":"cmd_output","timestamp":1607098226,"output":"ndler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandle"},{"event":"cmd_output","timestamp":1607098226,"output":"r-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_s"},{"event":"cmd_output","timestamp":1607098226,"output":"ec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"running\", publisher_cb: :skip, re"},{"event":"cmd_output","timestamp":1607098226,"output":"po: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :bloc"},{"event":"cmd_output","timestamp":1607098226,"output":"k_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:26.062 [info] P"},{"event":"cmd_output","timestamp":1607098226,"output":"eriodic from module Elixir.Block.Blocks.STMHandler.StoppingState with name Elixir.Block.Blocks.STMHa"},{"event":"cmd_output","timestamp":1607098226,"output":"ndler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandl"},{"event":"cmd_output","timestamp":1607098226,"output":"er-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, i"},{"event":"cmd_output","timestamp":1607098226,"output":"nitial_query: Block.Blocks.Model.Blocks, observed_state: \"stopping\", publisher_cb: :skip, repo: Bloc"},{"event":"cmd_output","timestamp":1607098226,"output":"k.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], s"},{"event":"cmd_output","timestamp":1607098226,"output":"chema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:26.064 [info] Periodic "},{"event":"cmd_output","timestamp":1607098226,"output":"from module Elixir.Block.Tasks.STMHandler.PendingState with name Elixir.Block.Tasks.STMHandler.Pendi"},{"event":"cmd_output","timestamp":1607098226,"output":"ngState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingSta"},{"event":"cmd_output","timestamp":1607098226,"output":"te\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Bl"},{"event":"cmd_output","timestamp":1607098226,"output":"ock.Tasks.Model.Tasks, observed_state: \"pending\", publisher_cb: :skip, repo: Block.EctoRepo, returni"},{"event":"cmd_output","timestamp":1607098226,"output":"ng: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id, :build_request_id], s"},{"event":"cmd_output","timestamp":1607098226,"output":"chema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:26.064 [info] Periodic fr"},{"event":"cmd_output","timestamp":1607098226,"output":"om module Elixir.Block.Tasks.STMHandler.RunningState with name Elixir.Block.Tasks.STMHandler.Running"},{"event":"cmd_output","timestamp":1607098226,"output":"State :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningState"},{"event":"cmd_output","timestamp":1607098226,"output":"\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initia"},{"event":"cmd_output","timestamp":1607098226,"output":"l_query: Block.Tasks.Model.Tasks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRe"},{"event":"cmd_output","timestamp":1607098226,"output":"po, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: B"},{"event":"cmd_output","timestamp":1607098226,"output":"lock.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:26.065 [info] Periodic from modul"},{"event":"cmd_output","timestamp":1607098226,"output":"e Elixir.Block.Tasks.STMHandler.StoppingState with name Elixir.Block.Tasks.STMHandler.StoppingState "},{"event":"cmd_output","timestamp":1607098226,"output":":: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]}, "},{"event":"cmd_output","timestamp":1607098226,"output":"recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.T"},{"event":"cmd_output","timestamp":1607098226,"output":"asks.Model.Tasks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: "},{"event":"cmd_output","timestamp":1607098226,"output":"[:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Mode"},{"event":"cmd_output","timestamp":1607098226,"output":"l.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:26.177 [info] ppl_id: f5396772-58c0-481c-8130-72"},{"event":"cmd_output","timestamp":1607098226,"output":"5aacbff447, type: PplRequests, event: persisted source_args for pipeline: f5396772-58c0-481c-8130-72"},{"event":"cmd_output","timestamp":1607098226,"output":"5aacbff447, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098226,"output":"m\n16:10:26.181 [info] ppl_id: f5396772-58c0-481c-8130-725aacbff447, type: PplSubInits, state: fetc"},{"event":"cmd_output","timestamp":1607098226,"output":"hing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098226,"output":"90), \n\u001b[0m\u001b[22m\n16:10:26.220 [info] ppl_id: f5396772-58c0-481c-8130-725aacbff447, type: PplSubIni"},{"event":"cmd_output","timestamp":1607098226,"output":"ts, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.l"},{"event":"cmd_output","timestamp":1607098226,"output":"og_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:26.250 [info] ppl_id: f5396772-58c0-481c-8130-725aacbff4"},{"event":"cmd_output","timestamp":1607098226,"output":"47, type: PplRequests, event: persisted definition for request with request_token: 37ba97c6-364b-11e"},{"event":"cmd_output","timestamp":1607098226,"output":"b-bdfd-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76"},{"event":"cmd_output","timestamp":1607098226,"output":"), \n\u001b[0m\u001b[22m\n16:10:26.255 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto"},{"event":"cmd_output","timestamp":1607098226,"output":".Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:10:26.253394], name: \"master-0-.s"},{"event":"cmd_output","timestamp":1607098226,"output":"emaphore/semaphore.yml\", organization_id: \"f698ed1c-e751-477e-87e9-3da85a73f016\", project_id: \"list_"},{"event":"cmd_output","timestamp":1607098226,"output":"latest_workflows\", queue_id: \"12e6d36b-87c7-4976-a133-9ebfb1abe928\", scope: \"project\", updated_at: ~"},{"event":"cmd_output","timestamp":1607098226,"output":"N[2020-12-04 16:10:26.253407], user_generated: false}}\n\u001b[0m\u001b[22m\n16:10:26.260 [info] event: creat"},{"event":"cmd_output","timestamp":1607098226,"output":"ed, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:2"},{"event":"cmd_output","timestamp":1607098226,"output":"6.260 [info] ppl_id: f5396772-58c0-481c-8130-725aacbff447, type: PplBlocks, block_index: 0, state: "},{"event":"cmd_output","timestamp":1607098226,"output":"initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularIn"},{"event":"cmd_output","timestamp":1607098226,"output":"itState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:26.265 [info] ppl_id: f5396772-58c0-481c-8130-725aacbff"},{"event":"cmd_output","timestamp":1607098226,"output":"447, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098226,"output":"in: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:26.280 [info] ppl_id: f53967"},{"event":"cmd_output","timestamp":1607098226,"output":"72-58c0-481c-8130-725aacbff447, type: PplBlocks, block_index: 0, state: waiting, event: exit_schedul"},{"event":"cmd_output","timestamp":1607098226,"output":"ing, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:2"},{"event":"cmd_output","timestamp":1607098226,"output":"6.287 [info] ppl_id: f5396772-58c0-481c-8130-725aacbff447, type: Ppls, state: pending, event: exit_"},{"event":"cmd_output","timestamp":1607098226,"output":"scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098226,"output":"16:10:26.300 [info] ppl_id: 412d7e9e-9129-49cd-8696-b96d8d5116ac, type: PplRequests, event: persist"},{"event":"cmd_output","timestamp":1607098226,"output":"ed source_args for pipeline: 412d7e9e-9129-49cd-8696-b96d8d5116ac, origin: Elixir.Ppl.PplRequests.Mo"},{"event":"cmd_output","timestamp":1607098226,"output":"del.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:26.302 [info] ppl_id: f5396772-58c0"},{"event":"cmd_output","timestamp":1607098226,"output":"-481c-8130-725aacbff447, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098226,"output":"in: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:26.308 [info] ppl_id: 412d7e"},{"event":"cmd_output","timestamp":1607098226,"output":"9e-9129-49cd-8696-b96d8d5116ac, type: PplSubInits, state: fetching, event: exit_scheduling, recovery"},{"event":"cmd_output","timestamp":1607098226,"output":"_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:26.319 [info] "},{"event":"cmd_output","timestamp":1607098226,"output":" ppl_id: f5396772-58c0-481c-8130-725aacbff447, type: Ppls, state: running, event: exit_scheduling, r"},{"event":"cmd_output","timestamp":1607098226,"output":"ecovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:26.330 "},{"event":"cmd_output","timestamp":1607098226,"output":"[info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"f5396772-58c0-481c-8130-725"},{"event":"cmd_output","timestamp":1607098226,"output":"aacbff447\"\n\u001b[0m\u001b[22m\n16:10:26.342 [info] block_id: 631fad26-2462-46d4-a6c4-f4a4e80141fc, type: Bl"},{"event":"cmd_output","timestamp":1607098226,"output":"ockRequests, event: persisted block run request from ppl f5396772-58c0-481c-8130-725aacbff447 for bl"},{"event":"cmd_output","timestamp":1607098226,"output":"ock 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098226,"output":"\u001b[22m\n16:10:26.346 [info] ppl_id: 412d7e9e-9129-49cd-8696-b96d8d5116ac, type: PplSubInits, state: "},{"event":"cmd_output","timestamp":1607098226,"output":"regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_ch"},{"event":"cmd_output","timestamp":1607098226,"output":"ange/1(L90), \n\u001b[0m\u001b[22m\n16:10:26.346 [info] block_id: 631fad26-2462-46d4-a6c4-f4a4e80141fc, type:"},{"event":"cmd_output","timestamp":1607098226,"output":" Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Mo"},{"event":"cmd_output","timestamp":1607098226,"output":"del.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:26.352 [info] Block 0 of pipeline with id: f539"},{"event":"cmd_output","timestamp":1607098226,"output":"6772-58c0-481c-8130-725aacbff447 scheduled in block service with id: : \"631fad26-2462-46d4-a6c4-f4a4"},{"event":"cmd_output","timestamp":1607098226,"output":"e80141fc\"\n\u001b[0m\u001b[22m\n16:10:26.360 [info] block_id: 631fad26-2462-46d4-a6c4-f4a4e80141fc, type: Blo"},{"event":"cmd_output","timestamp":1607098226,"output":"ckRequests, event: persisted build and sub_ppl details for block_request: 631fad26-2462-46d4-a6c4-f4"},{"event":"cmd_output","timestamp":1607098226,"output":"a4e80141fc, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098226,"output":"m\u001b[22m\n16:10:26.360 [info] ppl_id: f5396772-58c0-481c-8130-725aacbff447, type: PplBlocks, block_in"},{"event":"cmd_output","timestamp":1607098226,"output":"dex: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.lo"},{"event":"cmd_output","timestamp":1607098226,"output":"g_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:26.364 [info] block_id: 631fad26-2462-46d4-a6c4-f4a4e8014"},{"event":"cmd_output","timestamp":1607098226,"output":"1fc, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STM"},{"event":"cmd_output","timestamp":1607098226,"output":"Handler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:26.371 [info] block_id: 631fad26-2462"},{"event":"cmd_output","timestamp":1607098226,"output":"-46d4-a6c4-f4a4e80141fc, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098226,"output":"igin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:26.404 [info] block_id: 63"},{"event":"cmd_output","timestamp":1607098226,"output":"1fad26-2462-46d4-a6c4-f4a4e80141fc, type: Tasks, state: running, event: exit_scheduling, recovery_co"},{"event":"cmd_output","timestamp":1607098226,"output":"unt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:26.407 [info] pp"},{"event":"cmd_output","timestamp":1607098226,"output":"l_id: 412d7e9e-9129-49cd-8696-b96d8d5116ac, type: PplRequests, event: persisted definition for reque"},{"event":"cmd_output","timestamp":1607098226,"output":"st with request_token: 37c56e44-364b-11eb-a0ad-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.Pp"},{"event":"cmd_output","timestamp":1607098226,"output":"lRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:26.413 [info] Queue persisted: {:ok, "},{"event":"cmd_output","timestamp":1607098226,"output":"%Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12"},{"event":"cmd_output","timestamp":1607098226,"output":"-04 16:10:26.411181], name: \"master-1-.semaphore/semaphore.yml\", organization_id: \"33f7fdda-7d85-4a6"},{"event":"cmd_output","timestamp":1607098226,"output":"7-aca7-0f1c8c8c22f8\", project_id: \"list_latest_workflows\", queue_id: \"ad4da8d9-4279-42ed-bd14-a66db6"},{"event":"cmd_output","timestamp":1607098226,"output":"6014df\", scope: \"project\", updated_at: ~N[2020-12-04 16:10:26.411194], user_generated: false}}\n\u001b[0m"},{"event":"cmd_output","timestamp":1607098226,"output":"\u001b[22m\n16:10:26.418 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitSta"},{"event":"cmd_output","timestamp":1607098226,"output":"te.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:26.418 [info] ppl_id: 412d7e9e-9129-49cd-8696-b96d8d5116ac, "},{"event":"cmd_output","timestamp":1607098226,"output":"type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098226,"output":"xir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:26.421 [info] p"},{"event":"cmd_output","timestamp":1607098226,"output":"pl_id: 412d7e9e-9129-49cd-8696-b96d8d5116ac, type: PplSubInits, state: done, result: passed, event: "},{"event":"cmd_output","timestamp":1607098226,"output":"exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098226,"output":"22m\n16:10:26.423 [info] ppl_id: f96f00e2-7b5a-45e9-8980-70ca0822092d, type: PplRequests, event: pe"},{"event":"cmd_output","timestamp":1607098226,"output":"rsisted source_args for pipeline: f96f00e2-7b5a-45e9-8980-70ca0822092d, origin: Elixir.Ppl.PplReques"},{"event":"cmd_output","timestamp":1607098226,"output":"ts.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:26.430 [info] ppl_id: f96f00e2"},{"event":"cmd_output","timestamp":1607098226,"output":"-7b5a-45e9-8980-70ca0822092d, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098226,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:26.434 [info] p"},{"event":"cmd_output","timestamp":1607098226,"output":"pl_id: 412d7e9e-9129-49cd-8696-b96d8d5116ac, type: PplBlocks, block_index: 0, state: waiting, event:"},{"event":"cmd_output","timestamp":1607098226,"output":" exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098226,"output":"[22m\n16:10:26.434 [info] ppl_id: 412d7e9e-9129-49cd-8696-b96d8d5116ac, type: Ppls, state: pending,"},{"event":"cmd_output","timestamp":1607098226,"output":" event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), "},{"event":"cmd_output","timestamp":1607098226,"output":"\n\u001b[0m\u001b[22m\n16:10:26.446 [info] ppl_id: 412d7e9e-9129-49cd-8696-b96d8d5116ac, type: Ppls, state: q"},{"event":"cmd_output","timestamp":1607098226,"output":"ueuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1"},{"event":"cmd_output","timestamp":1607098226,"output":"(L90), \n\u001b[0m\u001b[22m\n16:10:26.463 [info] ppl_id: 412d7e9e-9129-49cd-8696-b96d8d5116ac, type: Ppls, s"},{"event":"cmd_output","timestamp":1607098226,"output":"tate: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098226,"output":"hange/1(L90), \n\u001b[0m\u001b[22m\n16:10:26.464 [info] ppl_id: f96f00e2-7b5a-45e9-8980-70ca0822092d, type: "},{"event":"cmd_output","timestamp":1607098226,"output":"PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.S"},{"event":"cmd_output","timestamp":1607098226,"output":"TM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:26.473 [info] PplBlocks WaitingState STM is sch"},{"event":"cmd_output","timestamp":1607098226,"output":"eduling block 0 from pipeline: \"412d7e9e-9129-49cd-8696-b96d8d5116ac\"\n\u001b[0m\u001b[22m\n16:10:26.483 [info"},{"event":"cmd_output","timestamp":1607098226,"output":"] block_id: 3b781860-6bd5-40fc-b3de-cfc947a0c16e, type: BlockRequests, event: persisted block run r"},{"event":"cmd_output","timestamp":1607098226,"output":"equest from ppl 412d7e9e-9129-49cd-8696-b96d8d5116ac for block 0, origin: Elixir.Block.BlockRequests"},{"event":"cmd_output","timestamp":1607098226,"output":".Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:26.487 [info] block_id: 3b7"},{"event":"cmd_output","timestamp":1607098226,"output":"81860-6bd5-40fc-b3de-cfc947a0c16e, type: Blocks, state: initializing, event: initializing, recovery_"},{"event":"cmd_output","timestamp":1607098226,"output":"count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:26.493 ["},{"event":"cmd_output","timestamp":1607098226,"output":"info] Block 0 of pipeline with id: 412d7e9e-9129-49cd-8696-b96d8d5116ac scheduled in block service "},{"event":"cmd_output","timestamp":1607098226,"output":"with id: : \"3b781860-6bd5-40fc-b3de-cfc947a0c16e\"\n\u001b[0m\u001b[22m\n16:10:26.507 [info] block_id: 3b78186"},{"event":"cmd_output","timestamp":1607098226,"output":"0-6bd5-40fc-b3de-cfc947a0c16e, type: BlockRequests, event: persisted build and sub_ppl details for b"},{"event":"cmd_output","timestamp":1607098226,"output":"lock_request: 3b781860-6bd5-40fc-b3de-cfc947a0c16e, origin: Elixir.Block.BlockRequests.Model.BlockRe"},{"event":"cmd_output","timestamp":1607098226,"output":"questsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:26.507 [info] ppl_id: 412d7e9e-9129-49cd-8696"},{"event":"cmd_output","timestamp":1607098226,"output":"-b96d8d5116ac, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_cou"},{"event":"cmd_output","timestamp":1607098226,"output":"nt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:26.509 [info] blo"},{"event":"cmd_output","timestamp":1607098226,"output":"ck_id: 631fad26-2462-46d4-a6c4-f4a4e80141fc, type: Tasks, state: done, event: exit_scheduling, recov"},{"event":"cmd_output","timestamp":1607098226,"output":"ery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:26.511 [inf"},{"event":"cmd_output","timestamp":1607098226,"output":"o] block_id: 3b781860-6bd5-40fc-b3de-cfc947a0c16e, type: Tasks, state: pending, event: created, rec"},{"event":"cmd_output","timestamp":1607098226,"output":"overy_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098226,"output":"m\n16:10:26.520 [info] block_id: 3b781860-6bd5-40fc-b3de-cfc947a0c16e, type: Blocks, state: running"},{"event":"cmd_output","timestamp":1607098226,"output":", event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90),"},{"event":"cmd_output","timestamp":1607098226,"output":" \n\u001b[0m\u001b[22m\n16:10:26.529 [info] ppl_id: f96f00e2-7b5a-45e9-8980-70ca0822092d, type: PplRequests, "},{"event":"cmd_output","timestamp":1607098226,"output":"event: persisted definition for request with request_token: 37cf0382-364b-11eb-a070-5254005464e2, or"},{"event":"cmd_output","timestamp":1607098226,"output":"igin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:2"},{"event":"cmd_output","timestamp":1607098226,"output":"6.531 [info] block_id: 631fad26-2462-46d4-a6c4-f4a4e80141fc, type: Blocks, state: done, event: exit"},{"event":"cmd_output","timestamp":1607098226,"output":"_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098226,"output":"\n16:10:26.551 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadat"},{"event":"cmd_output","timestamp":1607098226,"output":"a<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:10:26.542463], name: \"master-2-.semaphore/semaph"},{"event":"cmd_output","timestamp":1607098226,"output":"ore.yml\", organization_id: \"825486ea-62a5-48c2-8816-01df44ef3bd5\", project_id: \"list_latest_workflow"},{"event":"cmd_output","timestamp":1607098226,"output":"s\", queue_id: \"538ec78c-89cc-4900-8e09-a3d807d1c50e\", scope: \"project\", updated_at: ~N[2020-12-04 16"},{"event":"cmd_output","timestamp":1607098226,"output":":10:26.542476], user_generated: false}}\n\u001b[0m\u001b[22m\n16:10:26.552 [info] block_id: 3b781860-6bd5-40f"},{"event":"cmd_output","timestamp":1607098226,"output":"c-b3de-cfc947a0c16e, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098226,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:26.561 [info] event: created, o"},{"event":"cmd_output","timestamp":1607098226,"output":"rigin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:26.562"},{"event":"cmd_output","timestamp":1607098226,"output":" [info] ppl_id: f96f00e2-7b5a-45e9-8980-70ca0822092d, type: PplBlocks, block_index: 0, state: initi"},{"event":"cmd_output","timestamp":1607098226,"output":"alizing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitSta"},{"event":"cmd_output","timestamp":1607098226,"output":"te.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:26.564 [info] ppl_id: f6d30615-e614-472a-9d30-db5da1993c88, "},{"event":"cmd_output","timestamp":1607098226,"output":"type: PplRequests, event: persisted source_args for pipeline: f6d30615-e614-472a-9d30-db5da1993c88, "},{"event":"cmd_output","timestamp":1607098226,"output":"origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:26."},{"event":"cmd_output","timestamp":1607098226,"output":"564 [info] ppl_id: f96f00e2-7b5a-45e9-8980-70ca0822092d, type: PplSubInits, state: done, result: pa"},{"event":"cmd_output","timestamp":1607098226,"output":"ssed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098226,"output":"90), \n\u001b[0m\u001b[22m\n16:10:26.564 [info] ppl_id: f5396772-58c0-481c-8130-725aacbff447, block_id: 631fa"},{"event":"cmd_output","timestamp":1607098226,"output":"d26-2462-46d4-a6c4-f4a4e80141fc, type: PplBlocks, block_index: 0, state: done, result: passed, event"},{"event":"cmd_output","timestamp":1607098226,"output":": exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098226,"output":"\u001b[22m\n16:10:26.568 [info] ppl_id: f6d30615-e614-472a-9d30-db5da1993c88, type: PplSubInits, state: "},{"event":"cmd_output","timestamp":1607098226,"output":"fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change"},{"event":"cmd_output","timestamp":1607098226,"output":"/1(L90), \n\u001b[0m\u001b[22m\n16:10:26.584 [info] ppl_id: f96f00e2-7b5a-45e9-8980-70ca0822092d, type: Ppls,"},{"event":"cmd_output","timestamp":1607098226,"output":" state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state"},{"event":"cmd_output","timestamp":1607098226,"output":"_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:26.593 [info] ppl_id: f96f00e2-7b5a-45e9-8980-70ca0822092d, type"},{"event":"cmd_output","timestamp":1607098226,"output":": PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098226,"output":"ir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:26.597 [info] ppl_id: f96f00e2-7b5a-"},{"event":"cmd_output","timestamp":1607098226,"output":"45e9-8980-70ca0822092d, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098226,"output":"n: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:26.607 [info] ppl_id: f539677"},{"event":"cmd_output","timestamp":1607098226,"output":"2-58c0-481c-8130-725aacbff447, type: Ppls, state: done, result: passed, event: exit_scheduling, reco"},{"event":"cmd_output","timestamp":1607098226,"output":"very_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:26.621 [in"},{"event":"cmd_output","timestamp":1607098226,"output":"fo] ppl_id: f96f00e2-7b5a-45e9-8980-70ca0822092d, type: Ppls, state: running, event: exit_schedulin"},{"event":"cmd_output","timestamp":1607098226,"output":"g, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:26."},{"event":"cmd_output","timestamp":1607098226,"output":"630 [info] ppl_id: f6d30615-e614-472a-9d30-db5da1993c88, type: PplSubInits, state: regular_init, ev"},{"event":"cmd_output","timestamp":1607098226,"output":"ent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b"},{"event":"cmd_output","timestamp":1607098226,"output":"[0m\u001b[22m\n16:10:26.633 [info] block_id: 3b781860-6bd5-40fc-b3de-cfc947a0c16e, type: Tasks, state: d"},{"event":"cmd_output","timestamp":1607098226,"output":"one, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L9"},{"event":"cmd_output","timestamp":1607098226,"output":"0), \n\u001b[0m\u001b[22m\n16:10:26.642 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline"},{"event":"cmd_output","timestamp":1607098226,"output":": \"f96f00e2-7b5a-45e9-8980-70ca0822092d\"\n\u001b[0m\u001b[22m\n16:10:26.647 [info] block_id: 3b781860-6bd5-40"},{"event":"cmd_output","timestamp":1607098226,"output":"fc-b3de-cfc947a0c16e, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098226,"output":"Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:26.665 [info] block_id: 363daef8"},{"event":"cmd_output","timestamp":1607098226,"output":"-252c-454f-b2d2-4b2d1750a938, type: BlockRequests, event: persisted block run request from ppl f96f0"},{"event":"cmd_output","timestamp":1607098226,"output":"0e2-7b5a-45e9-8980-70ca0822092d for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQ"},{"event":"cmd_output","timestamp":1607098226,"output":"ueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:26.668 [info] block_id: 363daef8-252c-454f-b2d2-"},{"event":"cmd_output","timestamp":1607098226,"output":"4b2d1750a938, type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098226,"output":"xir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:26.676 [info] Block 0 of pip"},{"event":"cmd_output","timestamp":1607098226,"output":"eline with id: f96f00e2-7b5a-45e9-8980-70ca0822092d scheduled in block service with id: : \"363daef8-"},{"event":"cmd_output","timestamp":1607098226,"output":"252c-454f-b2d2-4b2d1750a938\"\n\u001b[0m\u001b[22m\n16:10:26.677 [info] ppl_id: 412d7e9e-9129-49cd-8696-b96d8d"},{"event":"cmd_output","timestamp":1607098226,"output":"5116ac, block_id: 3b781860-6bd5-40fc-b3de-cfc947a0c16e, type: PplBlocks, block_index: 0, state: done"},{"event":"cmd_output","timestamp":1607098226,"output":", result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_stat"},{"event":"cmd_output","timestamp":1607098226,"output":"e_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:26.685 [info] ppl_id: f96f00e2-7b5a-45e9-8980-70ca0822092d, typ"},{"event":"cmd_output","timestamp":1607098226,"output":"e: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098226,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:26.685 [info] block_id: 363daef8-25"},{"event":"cmd_output","timestamp":1607098226,"output":"2c-454f-b2d2-4b2d1750a938, type: BlockRequests, event: persisted build and sub_ppl details for block"},{"event":"cmd_output","timestamp":1607098226,"output":"_request: 363daef8-252c-454f-b2d2-4b2d1750a938, origin: Elixir.Block.BlockRequests.Model.BlockReques"},{"event":"cmd_output","timestamp":1607098226,"output":"tsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:26.692 [info] block_id: 363daef8-252c-454f-b2d2-4"},{"event":"cmd_output","timestamp":1607098226,"output":"b2d1750a938, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Bl"},{"event":"cmd_output","timestamp":1607098226,"output":"ocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:26.699 [info] ppl_id: ddfb0ae"},{"event":"cmd_output","timestamp":1607098226,"output":"5-8b17-4541-b560-c0ea49c3c69e, type: PplRequests, event: persisted source_args for pipeline: ddfb0ae"},{"event":"cmd_output","timestamp":1607098226,"output":"5-8b17-4541-b560-c0ea49c3c69e, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source"},{"event":"cmd_output","timestamp":1607098226,"output":"/2(L89), \n\u001b[0m\u001b[22m\n16:10:26.702 [info] block_id: 363daef8-252c-454f-b2d2-4b2d1750a938, type: Blo"},{"event":"cmd_output","timestamp":1607098226,"output":"cks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_s"},{"event":"cmd_output","timestamp":1607098226,"output":"tate_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:26.704 [info] ppl_id: f6d30615-e614-472a-9d30-db5da1993c88, "},{"event":"cmd_output","timestamp":1607098226,"output":"type: PplRequests, event: persisted definition for request with request_token: 37dba9f2-364b-11eb-b4"},{"event":"cmd_output","timestamp":1607098226,"output":"1e-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \r"},{"event":"cmd_output","timestamp":1607098226,"output":"\n\u001b[0m\u001b[22m\n16:10:26.706 [info] ppl_id: ddfb0ae5-8b17-4541-b560-c0ea49c3c69e, type: PplSubInits, st"},{"event":"cmd_output","timestamp":1607098226,"output":"ate: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098226,"output":"hange/1(L90), \n\u001b[0m\u001b[22m\n16:10:26.711 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__me"},{"event":"cmd_output","timestamp":1607098226,"output":"ta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:10:26.709923], name: \""},{"event":"cmd_output","timestamp":1607098226,"output":"master-3-.semaphore/semaphore.yml\", organization_id: \"e0633a04-53a9-49d0-8625-62e1ae96d34b\", project"},{"event":"cmd_output","timestamp":1607098226,"output":"_id: \"list_latest_workflows\", queue_id: \"59099f06-7cc3-425b-97a1-7aed14c87e61\", scope: \"project\", up"},{"event":"cmd_output","timestamp":1607098226,"output":"dated_at: ~N[2020-12-04 16:10:26.709936], user_generated: false}}\n\u001b[0m\u001b[22m\n16:10:26.735 [info] e"},{"event":"cmd_output","timestamp":1607098226,"output":"vent: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098226,"output":"2m\n16:10:26.735 [info] ppl_id: f6d30615-e614-472a-9d30-db5da1993c88, type: PplBlocks, block_index:"},{"event":"cmd_output","timestamp":1607098226,"output":" 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandle"},{"event":"cmd_output","timestamp":1607098226,"output":"r.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:26.738 [info] ppl_id: f6d30615-e614-472a-9d3"},{"event":"cmd_output","timestamp":1607098226,"output":"0-db5da1993c88, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_cou"},{"event":"cmd_output","timestamp":1607098226,"output":"nt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:26.745 [info] ppl"},{"event":"cmd_output","timestamp":1607098226,"output":"_id: 412d7e9e-9129-49cd-8696-b96d8d5116ac, type: Ppls, state: done, result: passed, event: exit_sche"},{"event":"cmd_output","timestamp":1607098226,"output":"duling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098226,"output":"0:26.746 [info] block_id: 363daef8-252c-454f-b2d2-4b2d1750a938, type: Tasks, state: running, event:"},{"event":"cmd_output","timestamp":1607098226,"output":" exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098226,"output":"[22m\n16:10:26.759 [info] block_id: 363daef8-252c-454f-b2d2-4b2d1750a938, type: Tasks, state: done,"},{"event":"cmd_output","timestamp":1607098226,"output":" event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), "},{"event":"cmd_output","timestamp":1607098226,"output":"\n\u001b[0m\u001b[22m\n16:10:26.761 [info] ppl_id: f6d30615-e614-472a-9d30-db5da1993c88, type: PplBlocks, blo"},{"event":"cmd_output","timestamp":1607098226,"output":"ck_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Im"},{"event":"cmd_output","timestamp":1607098226,"output":"pl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:26.762 [info] ppl_id: f6d30615-e614-472a-9d30-db5da1"},{"event":"cmd_output","timestamp":1607098226,"output":"993c88, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper"},{"event":"cmd_output","timestamp":1607098226,"output":".STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:26.772 [info] block_id: 363daef8-252c-454f-b2"},{"event":"cmd_output","timestamp":1607098226,"output":"d2-4b2d1750a938, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098226,"output":"r.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:26.782 [info] ppl_id: ddfb0ae5-8b17-4"},{"event":"cmd_output","timestamp":1607098226,"output":"541-b560-c0ea49c3c69e, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_coun"},{"event":"cmd_output","timestamp":1607098226,"output":"t: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:26.783 [info] ppl_"},{"event":"cmd_output","timestamp":1607098226,"output":"id: f6d30615-e614-472a-9d30-db5da1993c88, type: Ppls, state: queuing, event: exit_scheduling, recove"},{"event":"cmd_output","timestamp":1607098226,"output":"ry_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:26.796 [info"},{"event":"cmd_output","timestamp":1607098226,"output":"] ppl_id: f96f00e2-7b5a-45e9-8980-70ca0822092d, block_id: 363daef8-252c-454f-b2d2-4b2d1750a938, typ"},{"event":"cmd_output","timestamp":1607098226,"output":"e: PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0"},{"event":"cmd_output","timestamp":1607098226,"output":", origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:26.811 [info] ppl_id: "},{"event":"cmd_output","timestamp":1607098226,"output":"f6d30615-e614-472a-9d30-db5da1993c88, type: Ppls, state: running, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098226,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:26.825 [info] P"},{"event":"cmd_output","timestamp":1607098226,"output":"plBlocks WaitingState STM is scheduling block 0 from pipeline: \"f6d30615-e614-472a-9d30-db5da1993c88"},{"event":"cmd_output","timestamp":1607098226,"output":"\"\n\u001b[0m\u001b[22m\n16:10:26.833 [info] ppl_id: ddfb0ae5-8b17-4541-b560-c0ea49c3c69e, type: PplRequests, "},{"event":"cmd_output","timestamp":1607098226,"output":"event: persisted definition for request with request_token: 37e36840-364b-11eb-9595-5254005464e2, or"},{"event":"cmd_output","timestamp":1607098226,"output":"igin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:2"},{"event":"cmd_output","timestamp":1607098226,"output":"6.839 [info] ppl_id: 85e10f98-2a77-46e9-99bc-033714d2ae8b, type: PplRequests, event: persisted sour"},{"event":"cmd_output","timestamp":1607098226,"output":"ce_args for pipeline: 85e10f98-2a77-46e9-99bc-033714d2ae8b, origin: Elixir.Ppl.PplRequests.Model.Ppl"},{"event":"cmd_output","timestamp":1607098226,"output":"RequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:26.839 [info] ppl_id: f96f00e2-7b5a-45e9-8"},{"event":"cmd_output","timestamp":1607098226,"output":"980-70ca0822092d, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0"},{"event":"cmd_output","timestamp":1607098226,"output":", origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:26.843 [info] Queue pe"},{"event":"cmd_output","timestamp":1607098226,"output":"rsisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted"},{"event":"cmd_output","timestamp":1607098226,"output":"_at: ~N[2020-12-04 16:10:26.839329], name: \"master-4-.semaphore/semaphore.yml\", organization_id: \"ad"},{"event":"cmd_output","timestamp":1607098226,"output":"a8fd2f-56a8-46b4-9e24-25af0ffee056\", project_id: \"list_latest_workflows\", queue_id: \"f536b6f0-2ac5-4"},{"event":"cmd_output","timestamp":1607098226,"output":"fd8-8ca2-4cd69a52c0b8\", scope: \"project\", updated_at: ~N[2020-12-04 16:10:26.839338], user_generated"},{"event":"cmd_output","timestamp":1607098226,"output":": false}}\n\u001b[0m\u001b[22m\n16:10:26.844 [info] block_id: f0224140-bb1b-4d77-af18-e8700cf390b1, type: Blo"},{"event":"cmd_output","timestamp":1607098226,"output":"ckRequests, event: persisted block run request from ppl f6d30615-e614-472a-9d30-db5da1993c88 for blo"},{"event":"cmd_output","timestamp":1607098226,"output":"ck 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098226,"output":"[22m\n16:10:26.846 [info] ppl_id: 85e10f98-2a77-46e9-99bc-033714d2ae8b, type: PplSubInits, state: f"},{"event":"cmd_output","timestamp":1607098226,"output":"etching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/"},{"event":"cmd_output","timestamp":1607098226,"output":"1(L90), \n\u001b[0m\u001b[22m\n16:10:26.849 [info] block_id: f0224140-bb1b-4d77-af18-e8700cf390b1, type: Bloc"},{"event":"cmd_output","timestamp":1607098226,"output":"ks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.B"},{"event":"cmd_output","timestamp":1607098226,"output":"locksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:26.852 [info] Block 0 of pipeline with id: f6d30615-"},{"event":"cmd_output","timestamp":1607098226,"output":"e614-472a-9d30-db5da1993c88 scheduled in block service with id: : \"f0224140-bb1b-4d77-af18-e8700cf39"},{"event":"cmd_output","timestamp":1607098226,"output":"0b1\"\n\u001b[0m\u001b[22m\n16:10:26.854 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.Regu"},{"event":"cmd_output","timestamp":1607098226,"output":"larInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:26.854 [info] ppl_id: ddfb0ae5-8b17-4541-b560-c0ea"},{"event":"cmd_output","timestamp":1607098226,"output":"49c3c69e, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098226,"output":"rigin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:26.859"},{"event":"cmd_output","timestamp":1607098226,"output":" [info] ppl_id: ddfb0ae5-8b17-4541-b560-c0ea49c3c69e, type: PplSubInits, state: done, result: passe"},{"event":"cmd_output","timestamp":1607098226,"output":"d, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90)"},{"event":"cmd_output","timestamp":1607098226,"output":", \n\u001b[0m\u001b[22m\n16:10:26.860 [info] block_id: f0224140-bb1b-4d77-af18-e8700cf390b1, type: BlockReque"},{"event":"cmd_output","timestamp":1607098226,"output":"sts, event: persisted build and sub_ppl details for block_request: f0224140-bb1b-4d77-af18-e8700cf39"},{"event":"cmd_output","timestamp":1607098226,"output":"0b1, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098226,"output":"\n16:10:26.857 [info] ppl_id: f6d30615-e614-472a-9d30-db5da1993c88, type: PplBlocks, block_index: 0,"},{"event":"cmd_output","timestamp":1607098226,"output":" state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state"},{"event":"cmd_output","timestamp":1607098226,"output":"_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:26.871 [info] block_id: f0224140-bb1b-4d77-af18-e8700cf390b1, ty"},{"event":"cmd_output","timestamp":1607098226,"output":"pe: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler"},{"event":"cmd_output","timestamp":1607098226,"output":".InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:26.879 [info] block_id: f0224140-bb1b-4d77-a"},{"event":"cmd_output","timestamp":1607098226,"output":"f18-e8700cf390b1, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: E"},{"event":"cmd_output","timestamp":1607098226,"output":"lixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:26.880 [info] ppl_id: ddfb0ae5-8b"},{"event":"cmd_output","timestamp":1607098226,"output":"17-4541-b560-c0ea49c3c69e, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, "},{"event":"cmd_output","timestamp":1607098226,"output":"recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:26.894"},{"event":"cmd_output","timestamp":1607098226,"output":" [info] ppl_id: ddfb0ae5-8b17-4541-b560-c0ea49c3c69e, type: Ppls, state: pending, event: exit_sched"},{"event":"cmd_output","timestamp":1607098226,"output":"uling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10"},{"event":"cmd_output","timestamp":1607098226,"output":":26.903 [info] block_id: f0224140-bb1b-4d77-af18-e8700cf390b1, type: Tasks, state: running, event: "},{"event":"cmd_output","timestamp":1607098226,"output":"exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098226,"output":"22m\n16:10:26.914 [info] ppl_id: 85e10f98-2a77-46e9-99bc-033714d2ae8b, type: PplSubInits, state: re"},{"event":"cmd_output","timestamp":1607098226,"output":"gular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chan"},{"event":"cmd_output","timestamp":1607098226,"output":"ge/1(L90), \n\u001b[0m\u001b[22m\n16:10:26.915 [info] ppl_id: ddfb0ae5-8b17-4541-b560-c0ea49c3c69e, type: Ppl"},{"event":"cmd_output","timestamp":1607098226,"output":"s, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_sta"},{"event":"cmd_output","timestamp":1607098226,"output":"te_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:26.930 [info] ppl_id: ddfb0ae5-8b17-4541-b560-c0ea49c3c69e, ty"},{"event":"cmd_output","timestamp":1607098226,"output":"pe: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl."},{"event":"cmd_output","timestamp":1607098226,"output":"log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:26.940 [info] PplBlocks WaitingState STM is scheduling "},{"event":"cmd_output","timestamp":1607098226,"output":"block 0 from pipeline: \"ddfb0ae5-8b17-4541-b560-c0ea49c3c69e\"\n\u001b[0m\u001b[22m\n16:10:26.947 [info] block"},{"event":"cmd_output","timestamp":1607098226,"output":"_id: 423a767e-0b31-4763-a8fe-35399d826278, type: BlockRequests, event: persisted block run request f"},{"event":"cmd_output","timestamp":1607098226,"output":"rom ppl ddfb0ae5-8b17-4541-b560-c0ea49c3c69e for block 0, origin: Elixir.Block.BlockRequests.Model.B"},{"event":"cmd_output","timestamp":1607098226,"output":"lockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:26.949 [info] block_id: 423a767e-0b"},{"event":"cmd_output","timestamp":1607098226,"output":"31-4763-a8fe-35399d826278, type: Blocks, state: initializing, event: initializing, recovery_count: 0"},{"event":"cmd_output","timestamp":1607098226,"output":", origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:26.953 [info] B"},{"event":"cmd_output","timestamp":1607098226,"output":"lock 0 of pipeline with id: ddfb0ae5-8b17-4541-b560-c0ea49c3c69e scheduled in block service with id:"},{"event":"cmd_output","timestamp":1607098226,"output":" : \"423a767e-0b31-4763-a8fe-35399d826278\"\n\u001b[0m\u001b[22m\n16:10:26.958 [info] block_id: 423a767e-0b31-4"},{"event":"cmd_output","timestamp":1607098226,"output":"763-a8fe-35399d826278, type: BlockRequests, event: persisted build and sub_ppl details for block_req"},{"event":"cmd_output","timestamp":1607098226,"output":"uest: 423a767e-0b31-4763-a8fe-35399d826278, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQu"},{"event":"cmd_output","timestamp":1607098226,"output":"eries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:26.958 [info] ppl_id: ddfb0ae5-8b17-4541-b560-c0ea49c"},{"event":"cmd_output","timestamp":1607098226,"output":"3c69e, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098226,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:26.963 [info] ppl_id: 85e"},{"event":"cmd_output","timestamp":1607098226,"output":"10f98-2a77-46e9-99bc-033714d2ae8b, type: PplRequests, event: persisted definition for request with r"},{"event":"cmd_output","timestamp":1607098226,"output":"equest_token: 37eccf8e-364b-11eb-8be2-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequests"},{"event":"cmd_output","timestamp":1607098226,"output":"Queries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:26.964 [info] block_id: 423a767e-0b31-4763-a8f"},{"event":"cmd_output","timestamp":1607098226,"output":"e-35399d826278, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block"},{"event":"cmd_output","timestamp":1607098226,"output":".Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:26.967 [info] block_id: 42"},{"event":"cmd_output","timestamp":1607098226,"output":"3a767e-0b31-4763-a8fe-35399d826278, type: Blocks, state: running, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098226,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:26.970 [info] Q"},{"event":"cmd_output","timestamp":1607098226,"output":"ueue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, i"},{"event":"cmd_output","timestamp":1607098226,"output":"nserted_at: ~N[2020-12-04 16:10:26.966476], name: \"master-5-.semaphore/semaphore.yml\", organization_"},{"event":"cmd_output","timestamp":1607098226,"output":"id: \"4df20b80-27e8-4b39-82f2-b4ba86012c2b\", project_id: \"list_latest_workflows\", queue_id: \"50011247"},{"event":"cmd_output","timestamp":1607098226,"output":"-19b9-4778-bc1b-cb5b80f5018c\", scope: \"project\", updated_at: ~N[2020-12-04 16:10:26.966488], user_ge"},{"event":"cmd_output","timestamp":1607098226,"output":"nerated: false}}\n\u001b[0m\u001b[22m\n16:10:26.970 [info] ppl_id: a8ec42e4-8ae2-4228-912a-34d54eaa5dd4, type"},{"event":"cmd_output","timestamp":1607098226,"output":": PplRequests, event: persisted source_args for pipeline: a8ec42e4-8ae2-4228-912a-34d54eaa5dd4, orig"},{"event":"cmd_output","timestamp":1607098226,"output":"in: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:26.977 "},{"event":"cmd_output","timestamp":1607098226,"output":"[info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), "},{"event":"cmd_output","timestamp":1607098226,"output":"\n\u001b[0m\u001b[22m\n16:10:26.977 [info] ppl_id: 85e10f98-2a77-46e9-99bc-033714d2ae8b, type: PplBlocks, blo"},{"event":"cmd_output","timestamp":1607098226,"output":"ck_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits."},{"event":"cmd_output","timestamp":1607098226,"output":"STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:26.979 [info] ppl_id: a8ec42e4-8ae2"},{"event":"cmd_output","timestamp":1607098226,"output":"-4228-912a-34d54eaa5dd4, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count:"},{"event":"cmd_output","timestamp":1607098226,"output":" 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:26.980 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098226,"output":": 85e10f98-2a77-46e9-99bc-033714d2ae8b, type: PplSubInits, state: done, result: passed, event: exit_"},{"event":"cmd_output","timestamp":1607098226,"output":"scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098226,"output":"16:10:26.995 [info] block_id: 423a767e-0b31-4763-a8fe-35399d826278, type: Tasks, state: running, ev"},{"event":"cmd_output","timestamp":1607098226,"output":"ent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b"},{"event":"cmd_output","timestamp":1607098227,"output":"[0m\u001b[22m\n16:10:27.001 [info] ppl_id: 85e10f98-2a77-46e9-99bc-033714d2ae8b, type: PplBlocks, block_"},{"event":"cmd_output","timestamp":1607098227,"output":"index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl."},{"event":"cmd_output","timestamp":1607098227,"output":"log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.004 [info] block_id: f0224140-bb1b-4d77-af18-e8700cf"},{"event":"cmd_output","timestamp":1607098227,"output":"390b1, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.ST"},{"event":"cmd_output","timestamp":1607098227,"output":"M.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.013 [info] block_id: f0224140-bb1b-4d77-af18-"},{"event":"cmd_output","timestamp":1607098227,"output":"e8700cf390b1, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098227,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.019 [info] ppl_id: 85e10f98-2a77-46e9"},{"event":"cmd_output","timestamp":1607098227,"output":"-99bc-033714d2ae8b, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: E"},{"event":"cmd_output","timestamp":1607098227,"output":"lixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.042 [info] ppl_id: f6d30615-e6"},{"event":"cmd_output","timestamp":1607098227,"output":"14-472a-9d30-db5da1993c88, block_id: f0224140-bb1b-4d77-af18-e8700cf390b1, type: PplBlocks, block_in"},{"event":"cmd_output","timestamp":1607098227,"output":"dex: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loope"},{"event":"cmd_output","timestamp":1607098227,"output":"r.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.048 [info] ppl_id: a8ec42e4-8ae2-4228-912"},{"event":"cmd_output","timestamp":1607098227,"output":"a-34d54eaa5dd4, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098227,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.051 [info] ppl_id: 85e"},{"event":"cmd_output","timestamp":1607098227,"output":"10f98-2a77-46e9-99bc-033714d2ae8b, type: Ppls, state: queuing, event: exit_scheduling, recovery_coun"},{"event":"cmd_output","timestamp":1607098227,"output":"t: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.078 [info] ppl_"},{"event":"cmd_output","timestamp":1607098227,"output":"id: 85e10f98-2a77-46e9-99bc-033714d2ae8b, type: Ppls, state: running, event: exit_scheduling, recove"},{"event":"cmd_output","timestamp":1607098227,"output":"ry_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.084 [info"},{"event":"cmd_output","timestamp":1607098227,"output":"] ppl_id: f6d30615-e614-472a-9d30-db5da1993c88, type: Ppls, state: done, result: passed, event: exi"},{"event":"cmd_output","timestamp":1607098227,"output":"t_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098227,"output":"\n16:10:27.090 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"85e10f98-2a7"},{"event":"cmd_output","timestamp":1607098227,"output":"7-46e9-99bc-033714d2ae8b\"\n\u001b[0m\u001b[22m\n16:10:27.097 [info] block_id: 51eebc29-10f4-44f9-92b0-c0fd568"},{"event":"cmd_output","timestamp":1607098227,"output":"c8b2b, type: BlockRequests, event: persisted block run request from ppl 85e10f98-2a77-46e9-99bc-0337"},{"event":"cmd_output","timestamp":1607098227,"output":"14d2ae8b for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response"},{"event":"cmd_output","timestamp":1607098227,"output":"/4(L35), \n\u001b[0m\u001b[22m\n16:10:27.101 [info] ppl_id: 541b6bd0-fe78-407d-b0b5-ba30acbfd3a6, type: PplRe"},{"event":"cmd_output","timestamp":1607098227,"output":"quests, event: persisted source_args for pipeline: 541b6bd0-fe78-407d-b0b5-ba30acbfd3a6, origin: Eli"},{"event":"cmd_output","timestamp":1607098227,"output":"xir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:27.104 [info] "},{"event":"cmd_output","timestamp":1607098227,"output":" block_id: 51eebc29-10f4-44f9-92b0-c0fd568c8b2b, type: Blocks, state: initializing, event: initializ"},{"event":"cmd_output","timestamp":1607098227,"output":"ing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098227,"output":"16:10:27.105 [info] ppl_id: 541b6bd0-fe78-407d-b0b5-ba30acbfd3a6, type: PplSubInits, state: fetchin"},{"event":"cmd_output","timestamp":1607098227,"output":"g, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90)"},{"event":"cmd_output","timestamp":1607098227,"output":", \n\u001b[0m\u001b[22m\n16:10:27.111 [info] Block 0 of pipeline with id: 85e10f98-2a77-46e9-99bc-033714d2ae8"},{"event":"cmd_output","timestamp":1607098227,"output":"b scheduled in block service with id: : \"51eebc29-10f4-44f9-92b0-c0fd568c8b2b\"\n\u001b[0m\u001b[22m\n16:10:27."},{"event":"cmd_output","timestamp":1607098227,"output":"115 [info] block_id: 51eebc29-10f4-44f9-92b0-c0fd568c8b2b, type: BlockRequests, event: persisted bu"},{"event":"cmd_output","timestamp":1607098227,"output":"ild and sub_ppl details for block_request: 51eebc29-10f4-44f9-92b0-c0fd568c8b2b, origin: Elixir.Bloc"},{"event":"cmd_output","timestamp":1607098227,"output":"k.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:27.115 [info] pp"},{"event":"cmd_output","timestamp":1607098227,"output":"l_id: 85e10f98-2a77-46e9-99bc-033714d2ae8b, type: PplBlocks, block_index: 0, state: running, event: "},{"event":"cmd_output","timestamp":1607098227,"output":"exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098227,"output":"22m\n16:10:27.119 [info] ppl_id: a8ec42e4-8ae2-4228-912a-34d54eaa5dd4, type: PplRequests, event: pe"},{"event":"cmd_output","timestamp":1607098227,"output":"rsisted definition for request with request_token: 37f76f98-364b-11eb-a2d1-5254005464e2, origin: Eli"},{"event":"cmd_output","timestamp":1607098227,"output":"xir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:27.119 [in"},{"event":"cmd_output","timestamp":1607098227,"output":"fo] block_id: 51eebc29-10f4-44f9-92b0-c0fd568c8b2b, type: Tasks, state: pending, event: created, re"},{"event":"cmd_output","timestamp":1607098227,"output":"covery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098227,"output":"2m\n16:10:27.121 [info] block_id: 51eebc29-10f4-44f9-92b0-c0fd568c8b2b, type: Blocks, state: runnin"},{"event":"cmd_output","timestamp":1607098227,"output":"g, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90)"},{"event":"cmd_output","timestamp":1607098227,"output":", \n\u001b[0m\u001b[22m\n16:10:27.135 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto."},{"event":"cmd_output","timestamp":1607098227,"output":"Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:10:27.129534], name: \"refs/tags/v1"},{"event":"cmd_output","timestamp":1607098227,"output":".6-.semaphore/semaphore.yml\", organization_id: \"ab92b451-8785-4a17-aeab-9462f6803183\", project_id: \""},{"event":"cmd_output","timestamp":1607098227,"output":"list_latest_workflows\", queue_id: \"e3f94acc-5105-444f-8f0b-3ca80f282ea4\", scope: \"project\", updated_"},{"event":"cmd_output","timestamp":1607098227,"output":"at: ~N[2020-12-04 16:10:27.129545], user_generated: false}}\n\u001b[0m\u001b[22m\n16:10:27.139 [info] block_i"},{"event":"cmd_output","timestamp":1607098227,"output":"d: 423a767e-0b31-4763-a8fe-35399d826278, type: Tasks, state: done, event: exit_scheduling, recovery_"},{"event":"cmd_output","timestamp":1607098227,"output":"count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.153 [info] "},{"event":"cmd_output","timestamp":1607098227,"output":"event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098227,"output":"22m\n16:10:27.153 [info] ppl_id: a8ec42e4-8ae2-4228-912a-34d54eaa5dd4, type: PplBlocks, block_index"},{"event":"cmd_output","timestamp":1607098227,"output":": 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandl"},{"event":"cmd_output","timestamp":1607098227,"output":"er.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:27.161 [info] ppl_id: a8ec42e4-8ae2-4228-91"},{"event":"cmd_output","timestamp":1607098227,"output":"2a-34d54eaa5dd4, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_co"},{"event":"cmd_output","timestamp":1607098227,"output":"unt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.166 [info] bl"},{"event":"cmd_output","timestamp":1607098227,"output":"ock_id: 423a767e-0b31-4763-a8fe-35399d826278, type: Blocks, state: done, event: exit_scheduling, rec"},{"event":"cmd_output","timestamp":1607098227,"output":"overy_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.168 [i"},{"event":"cmd_output","timestamp":1607098227,"output":"nfo] block_id: 51eebc29-10f4-44f9-92b0-c0fd568c8b2b, type: Tasks, state: running, event: exit_sched"},{"event":"cmd_output","timestamp":1607098227,"output":"uling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10"},{"event":"cmd_output","timestamp":1607098227,"output":":27.180 [info] ppl_id: 541b6bd0-fe78-407d-b0b5-ba30acbfd3a6, type: PplSubInits, state: regular_init"},{"event":"cmd_output","timestamp":1607098227,"output":", event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90),"},{"event":"cmd_output","timestamp":1607098227,"output":" \n\u001b[0m\u001b[22m\n16:10:27.184 [info] ppl_id: ddfb0ae5-8b17-4541-b560-c0ea49c3c69e, block_id: 423a767e-"},{"event":"cmd_output","timestamp":1607098227,"output":"0b31-4763-a8fe-35399d826278, type: PplBlocks, block_index: 0, state: done, result: passed, event: ex"},{"event":"cmd_output","timestamp":1607098227,"output":"it_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098227,"output":"m\n16:10:27.185 [info] ppl_id: a8ec42e4-8ae2-4228-912a-34d54eaa5dd4, type: PplBlocks, block_index: "},{"event":"cmd_output","timestamp":1607098227,"output":"0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_sta"},{"event":"cmd_output","timestamp":1607098227,"output":"te_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.200 [info] ppl_id: a8ec42e4-8ae2-4228-912a-34d54eaa5dd4, ty"},{"event":"cmd_output","timestamp":1607098227,"output":"pe: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl."},{"event":"cmd_output","timestamp":1607098227,"output":"log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.219 [info] ppl_id: a8ec42e4-8ae2-4228-912a-34d54eaa5"},{"event":"cmd_output","timestamp":1607098227,"output":"dd4, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.ST"},{"event":"cmd_output","timestamp":1607098227,"output":"M.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.222 [info] ppl_id: ddfb0ae5-8b17-4541-b560-c0"},{"event":"cmd_output","timestamp":1607098227,"output":"ea49c3c69e, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098227,"output":"in: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.228 [info] ppl_id: 541b6b"},{"event":"cmd_output","timestamp":1607098227,"output":"d0-fe78-407d-b0b5-ba30acbfd3a6, type: PplRequests, event: persisted definition for request with requ"},{"event":"cmd_output","timestamp":1607098227,"output":"est_token: 38004c58-364b-11eb-b74c-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQue"},{"event":"cmd_output","timestamp":1607098227,"output":"ries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:27.229 [info] ppl_id: a5cb0326-8258-4105-8629-790"},{"event":"cmd_output","timestamp":1607098227,"output":"6eca809d8, type: PplRequests, event: persisted source_args for pipeline: a5cb0326-8258-4105-8629-790"},{"event":"cmd_output","timestamp":1607098227,"output":"6eca809d8, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098227,"output":"\n16:10:27.232 [info] ppl_id: a5cb0326-8258-4105-8629-7906eca809d8, type: PplSubInits, state: fetch"},{"event":"cmd_output","timestamp":1607098227,"output":"ing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L9"},{"event":"cmd_output","timestamp":1607098227,"output":"0), \n\u001b[0m\u001b[22m\n16:10:27.234 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ect"},{"event":"cmd_output","timestamp":1607098227,"output":"o.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:10:27.231947], name: \"refs/tags/"},{"event":"cmd_output","timestamp":1607098227,"output":"v1.7-.semaphore/semaphore.yml\", organization_id: \"51265280-6a58-447a-8508-ce56266dab8f\", project_id:"},{"event":"cmd_output","timestamp":1607098227,"output":" \"list_latest_workflows\", queue_id: \"fd57b3c8-33f5-450f-aefb-227b51de7457\", scope: \"project\", update"},{"event":"cmd_output","timestamp":1607098227,"output":"d_at: ~N[2020-12-04 16:10:27.231960], user_generated: false}}\n\u001b[0m\u001b[22m\n16:10:27.242 [info] ppl_i"},{"event":"cmd_output","timestamp":1607098227,"output":"d: a8ec42e4-8ae2-4228-912a-34d54eaa5dd4, type: Ppls, state: running, event: exit_scheduling, recover"},{"event":"cmd_output","timestamp":1607098227,"output":"y_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.244 [info]"},{"event":"cmd_output","timestamp":1607098227,"output":" event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098227,"output":"\u001b[22m\n16:10:27.244 [info] ppl_id: 541b6bd0-fe78-407d-b0b5-ba30acbfd3a6, type: PplBlocks, block_ind"},{"event":"cmd_output","timestamp":1607098227,"output":"ex: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHan"},{"event":"cmd_output","timestamp":1607098227,"output":"dler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:27.249 [info] ppl_id: 541b6bd0-fe78-407d-"},{"event":"cmd_output","timestamp":1607098227,"output":"b0b5-ba30acbfd3a6, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_"},{"event":"cmd_output","timestamp":1607098227,"output":"count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.255 [info] "},{"event":"cmd_output","timestamp":1607098227,"output":"PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"a8ec42e4-8ae2-4228-912a-34d54eaa5dd"},{"event":"cmd_output","timestamp":1607098227,"output":"4\"\n\u001b[0m\u001b[22m\n16:10:27.271 [info] ppl_id: 541b6bd0-fe78-407d-b0b5-ba30acbfd3a6, type: Ppls, state:"},{"event":"cmd_output","timestamp":1607098227,"output":" pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change"},{"event":"cmd_output","timestamp":1607098227,"output":"/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.273 [info] block_id: 51eebc29-10f4-44f9-92b0-c0fd568c8b2b, type: Tas"},{"event":"cmd_output","timestamp":1607098227,"output":"ks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state"},{"event":"cmd_output","timestamp":1607098227,"output":"_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.280 [info] ppl_id: 541b6bd0-fe78-407d-b0b5-ba30acbfd3a6, type"},{"event":"cmd_output","timestamp":1607098227,"output":": PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098227,"output":"ir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.280 [info] block_id: 92f9ca29-772"},{"event":"cmd_output","timestamp":1607098227,"output":"4-4940-b740-cedd3f6eeaa4, type: BlockRequests, event: persisted block run request from ppl a8ec42e4-"},{"event":"cmd_output","timestamp":1607098227,"output":"8ae2-4228-912a-34d54eaa5dd4 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueri"},{"event":"cmd_output","timestamp":1607098227,"output":"es.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:27.283 [info] block_id: 92f9ca29-7724-4940-b740-cedd"},{"event":"cmd_output","timestamp":1607098227,"output":"3f6eeaa4, type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098227,"output":"Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:27.293 [info] block_id: 51eebc29"},{"event":"cmd_output","timestamp":1607098227,"output":"-10f4-44f9-92b0-c0fd568c8b2b, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098227,"output":"origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.294 [info] Block 0 of"},{"event":"cmd_output","timestamp":1607098227,"output":" pipeline with id: a8ec42e4-8ae2-4228-912a-34d54eaa5dd4 scheduled in block service with id: : \"92f9c"},{"event":"cmd_output","timestamp":1607098227,"output":"a29-7724-4940-b740-cedd3f6eeaa4\"\n\u001b[0m\u001b[22m\n16:10:27.301 [info] block_id: 92f9ca29-7724-4940-b740-"},{"event":"cmd_output","timestamp":1607098227,"output":"cedd3f6eeaa4, type: BlockRequests, event: persisted build and sub_ppl details for block_request: 92f"},{"event":"cmd_output","timestamp":1607098227,"output":"9ca29-7724-4940-b740-cedd3f6eeaa4, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.ins"},{"event":"cmd_output","timestamp":1607098227,"output":"ert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:27.306 [info] ppl_id: a8ec42e4-8ae2-4228-912a-34d54eaa5dd4, ty"},{"event":"cmd_output","timestamp":1607098227,"output":"pe: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098227,"output":"ixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.306 [info] block_id: 92f9ca29-7"},{"event":"cmd_output","timestamp":1607098227,"output":"724-4940-b740-cedd3f6eeaa4, type: Tasks, state: pending, event: created, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098227,"output":"Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:27.311 [info] "},{"event":"cmd_output","timestamp":1607098227,"output":"ppl_id: 541b6bd0-fe78-407d-b0b5-ba30acbfd3a6, type: Ppls, state: queuing, event: exit_scheduling, re"},{"event":"cmd_output","timestamp":1607098227,"output":"covery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.311 ["},{"event":"cmd_output","timestamp":1607098227,"output":"info] block_id: 92f9ca29-7724-4940-b740-cedd3f6eeaa4, type: Blocks, state: running, event: exit_sch"},{"event":"cmd_output","timestamp":1607098227,"output":"eduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098227,"output":"10:27.319 [info] ppl_id: a5cb0326-8258-4105-8629-7906eca809d8, type: PplSubInits, state: regular_in"},{"event":"cmd_output","timestamp":1607098227,"output":"it, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90"},{"event":"cmd_output","timestamp":1607098227,"output":"), \n\u001b[0m\u001b[22m\n16:10:27.331 [info] ppl_id: 85e10f98-2a77-46e9-99bc-033714d2ae8b, block_id: 51eebc2"},{"event":"cmd_output","timestamp":1607098227,"output":"9-10f4-44f9-92b0-c0fd568c8b2b, type: PplBlocks, block_index: 0, state: done, result: passed, event: "},{"event":"cmd_output","timestamp":1607098227,"output":"exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098227,"output":"22m\n16:10:27.343 [info] block_id: 92f9ca29-7724-4940-b740-cedd3f6eeaa4, type: Tasks, state: runnin"},{"event":"cmd_output","timestamp":1607098227,"output":"g, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90)"},{"event":"cmd_output","timestamp":1607098227,"output":", \n\u001b[0m\u001b[22m\n16:10:27.358 [info] ppl_id: 541b6bd0-fe78-407d-b0b5-ba30acbfd3a6, type: Ppls, state:"},{"event":"cmd_output","timestamp":1607098227,"output":" running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change"},{"event":"cmd_output","timestamp":1607098227,"output":"/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.367 [info] ppl_id: 0eb6501c-842d-40eb-8c2b-b346bf437ff8, type: PplRe"},{"event":"cmd_output","timestamp":1607098227,"output":"quests, event: persisted source_args for pipeline: 0eb6501c-842d-40eb-8c2b-b346bf437ff8, origin: Eli"},{"event":"cmd_output","timestamp":1607098227,"output":"xir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:27.375 [info] "},{"event":"cmd_output","timestamp":1607098227,"output":" ppl_id: 0eb6501c-842d-40eb-8c2b-b346bf437ff8, type: PplSubInits, state: fetching, event: exit_sched"},{"event":"cmd_output","timestamp":1607098227,"output":"uling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10"},{"event":"cmd_output","timestamp":1607098227,"output":":27.375 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"541b6bd0-fe78-407d-"},{"event":"cmd_output","timestamp":1607098227,"output":"b0b5-ba30acbfd3a6\"\n\u001b[0m\u001b[22m\n16:10:27.391 [info] ppl_id: 85e10f98-2a77-46e9-99bc-033714d2ae8b, ty"},{"event":"cmd_output","timestamp":1607098227,"output":"pe: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loo"},{"event":"cmd_output","timestamp":1607098227,"output":"per.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.393 [info] ppl_id: a5cb0326-8258-4105-8"},{"event":"cmd_output","timestamp":1607098227,"output":"629-7906eca809d8, type: PplRequests, event: persisted definition for request with request_token: 380"},{"event":"cmd_output","timestamp":1607098227,"output":"a5b1c-364b-11eb-b896-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_de"},{"event":"cmd_output","timestamp":1607098227,"output":"finition/3(L76), \n\u001b[0m\u001b[22m\n16:10:27.395 [info] block_id: 92f9ca29-7724-4940-b740-cedd3f6eeaa4, t"},{"event":"cmd_output","timestamp":1607098227,"output":"ype: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.l"},{"event":"cmd_output","timestamp":1607098227,"output":"og_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.402 [info] block_id: 203fca1d-f700-4f87-bc6c-1dfb9294"},{"event":"cmd_output","timestamp":1607098227,"output":"0427, type: BlockRequests, event: persisted block run request from ppl 541b6bd0-fe78-407d-b0b5-ba30a"},{"event":"cmd_output","timestamp":1607098227,"output":"cbfd3a6 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/"},{"event":"cmd_output","timestamp":1607098227,"output":"4(L35), \n\u001b[0m\u001b[22m\n16:10:27.406 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: "},{"event":"cmd_output","timestamp":1607098227,"output":"#Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:10:27.399090], name: \"refs/t"},{"event":"cmd_output","timestamp":1607098227,"output":"ags/v1.8-.semaphore/semaphore.yml\", organization_id: \"f3e0daf3-f206-4c67-af90-e13991489c74\", project"},{"event":"cmd_output","timestamp":1607098227,"output":"_id: \"list_latest_workflows\", queue_id: \"cab8e23b-66e5-47c5-9497-3e45dd6bde14\", scope: \"project\", up"},{"event":"cmd_output","timestamp":1607098227,"output":"dated_at: ~N[2020-12-04 16:10:27.399102], user_generated: false}}\n\u001b[0m\u001b[22m\n16:10:27.406 [info] b"},{"event":"cmd_output","timestamp":1607098227,"output":"lock_id: 92f9ca29-7724-4940-b740-cedd3f6eeaa4, type: Blocks, state: done, event: exit_scheduling, re"},{"event":"cmd_output","timestamp":1607098227,"output":"covery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.411 ["},{"event":"cmd_output","timestamp":1607098227,"output":"info] block_id: 203fca1d-f700-4f87-bc6c-1dfb92940427, type: Blocks, state: initializing, event: ini"},{"event":"cmd_output","timestamp":1607098227,"output":"tializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098227,"output":"[22m\n16:10:27.421 [info] Block 0 of pipeline with id: 541b6bd0-fe78-407d-b0b5-ba30acbfd3a6 schedul"},{"event":"cmd_output","timestamp":1607098227,"output":"ed in block service with id: : \"203fca1d-f700-4f87-bc6c-1dfb92940427\"\n\u001b[0m\u001b[22m\n16:10:27.426 [info"},{"event":"cmd_output","timestamp":1607098227,"output":"] block_id: 203fca1d-f700-4f87-bc6c-1dfb92940427, type: BlockRequests, event: persisted build and s"},{"event":"cmd_output","timestamp":1607098227,"output":"ub_ppl details for block_request: 203fca1d-f700-4f87-bc6c-1dfb92940427, origin: Elixir.Block.BlockRe"},{"event":"cmd_output","timestamp":1607098227,"output":"quests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:27.429 [info] block_id: 2"},{"event":"cmd_output","timestamp":1607098227,"output":"03fca1d-f700-4f87-bc6c-1dfb92940427, type: Tasks, state: pending, event: created, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098227,"output":" origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:27.430"},{"event":"cmd_output","timestamp":1607098227,"output":" [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105),"},{"event":"cmd_output","timestamp":1607098227,"output":" \n\u001b[0m\u001b[22m\n16:10:27.430 [info] ppl_id: a5cb0326-8258-4105-8629-7906eca809d8, type: PplBlocks, bl"},{"event":"cmd_output","timestamp":1607098227,"output":"ock_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits"},{"event":"cmd_output","timestamp":1607098227,"output":".STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:27.432 [info] block_id: 203fca1d-f"},{"event":"cmd_output","timestamp":1607098227,"output":"700-4f87-bc6c-1dfb92940427, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098227,"output":" origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.436 [info] ppl_id: a"},{"event":"cmd_output","timestamp":1607098227,"output":"5cb0326-8258-4105-8629-7906eca809d8, type: PplSubInits, state: done, result: passed, event: exit_sch"},{"event":"cmd_output","timestamp":1607098227,"output":"eduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098227,"output":"10:27.438 [info] ppl_id: 541b6bd0-fe78-407d-b0b5-ba30acbfd3a6, type: PplBlocks, block_index: 0, sta"},{"event":"cmd_output","timestamp":1607098227,"output":"te: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_cha"},{"event":"cmd_output","timestamp":1607098227,"output":"nge/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.438 [info] ppl_id: a8ec42e4-8ae2-4228-912a-34d54eaa5dd4, block_id"},{"event":"cmd_output","timestamp":1607098227,"output":": 92f9ca29-7724-4940-b740-cedd3f6eeaa4, type: PplBlocks, block_index: 0, state: done, result: passed"},{"event":"cmd_output","timestamp":1607098227,"output":", event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90),"},{"event":"cmd_output","timestamp":1607098227,"output":" \n\u001b[0m\u001b[22m\n16:10:27.449 [info] ppl_id: 0eb6501c-842d-40eb-8c2b-b346bf437ff8, type: PplSubInits, "},{"event":"cmd_output","timestamp":1607098227,"output":"state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_s"},{"event":"cmd_output","timestamp":1607098227,"output":"tate_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.464 [info] ppl_id: a5cb0326-8258-4105-8629-7906eca809d8, "},{"event":"cmd_output","timestamp":1607098227,"output":"type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098227,"output":"Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.471 [info] block_id: 203fca1d"},{"event":"cmd_output","timestamp":1607098227,"output":"-f700-4f87-bc6c-1dfb92940427, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0"},{"event":"cmd_output","timestamp":1607098227,"output":", origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.477 [info] ppl_id: "},{"event":"cmd_output","timestamp":1607098227,"output":"a8ec42e4-8ae2-4228-912a-34d54eaa5dd4, type: Ppls, state: done, result: passed, event: exit_schedulin"},{"event":"cmd_output","timestamp":1607098227,"output":"g, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27."},{"event":"cmd_output","timestamp":1607098227,"output":"484 [info] ppl_id: a5cb0326-8258-4105-8629-7906eca809d8, type: Ppls, state: pending, event: exit_sc"},{"event":"cmd_output","timestamp":1607098227,"output":"heduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098227,"output":":10:27.494 [info] ppl_id: 2ad8f743-eb7f-4f0d-bf04-d2673b0b326e, type: PplRequests, event: persisted"},{"event":"cmd_output","timestamp":1607098227,"output":" source_args for pipeline: 2ad8f743-eb7f-4f0d-bf04-d2673b0b326e, origin: Elixir.Ppl.PplRequests.Mode"},{"event":"cmd_output","timestamp":1607098227,"output":"l.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:27.500 [info] ppl_id: 2ad8f743-eb7f-4"},{"event":"cmd_output","timestamp":1607098227,"output":"f0d-bf04-d2673b0b326e, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0"},{"event":"cmd_output","timestamp":1607098227,"output":", origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.516 [info] ppl_id: "},{"event":"cmd_output","timestamp":1607098227,"output":"a5cb0326-8258-4105-8629-7906eca809d8, type: Ppls, state: queuing, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098227,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.525 [info] p"},{"event":"cmd_output","timestamp":1607098227,"output":"pl_id: 0eb6501c-842d-40eb-8c2b-b346bf437ff8, type: PplRequests, event: persisted definition for requ"},{"event":"cmd_output","timestamp":1607098227,"output":"est with request_token: 3811a75a-364b-11eb-93bf-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.P"},{"event":"cmd_output","timestamp":1607098227,"output":"plRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:27.530 [info] block_id: 203fca1d-f70"},{"event":"cmd_output","timestamp":1607098227,"output":"0-4f87-bc6c-1dfb92940427, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098227,"output":"n: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.532 [info] Queue persisted"},{"event":"cmd_output","timestamp":1607098227,"output":": {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N"},{"event":"cmd_output","timestamp":1607098227,"output":"[2020-12-04 16:10:27.528662], name: \"refs/tags/v1.9-.semaphore/semaphore.yml\", organization_id: \"423"},{"event":"cmd_output","timestamp":1607098227,"output":"fdbe6-d1ce-4fda-b66b-8e8d81ed7aae\", project_id: \"list_latest_workflows\", queue_id: \"91fc1a48-9094-44"},{"event":"cmd_output","timestamp":1607098227,"output":"fd-8eae-f5610df8d984\", scope: \"project\", updated_at: ~N[2020-12-04 16:10:27.528674], user_generated:"},{"event":"cmd_output","timestamp":1607098227,"output":" false}}\n\u001b[0m\u001b[22m\n16:10:27.537 [info] ppl_id: a5cb0326-8258-4105-8629-7906eca809d8, type: Ppls, "},{"event":"cmd_output","timestamp":1607098227,"output":"state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_"},{"event":"cmd_output","timestamp":1607098227,"output":"change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.543 [info] block_id: 203fca1d-f700-4f87-bc6c-1dfb92940427, typ"},{"event":"cmd_output","timestamp":1607098227,"output":"e: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.lo"},{"event":"cmd_output","timestamp":1607098227,"output":"g_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.545 [info] PplBlocks WaitingState STM is scheduling bl"},{"event":"cmd_output","timestamp":1607098227,"output":"ock 0 from pipeline: \"a5cb0326-8258-4105-8629-7906eca809d8\"\n\u001b[0m\u001b[22m\n16:10:27.549 [info] event: "},{"event":"cmd_output","timestamp":1607098227,"output":"created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098227,"output":":10:27.549 [info] ppl_id: 0eb6501c-842d-40eb-8c2b-b346bf437ff8, type: PplBlocks, block_index: 0, st"},{"event":"cmd_output","timestamp":1607098227,"output":"ate: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.Regu"},{"event":"cmd_output","timestamp":1607098227,"output":"larInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:27.553 [info] ppl_id: 0eb6501c-842d-40eb-8c2b-b346"},{"event":"cmd_output","timestamp":1607098227,"output":"bf437ff8, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098227,"output":" origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.554 [info] ppl_id: 2"},{"event":"cmd_output","timestamp":1607098227,"output":"ad8f743-eb7f-4f0d-bf04-d2673b0b326e, type: PplSubInits, state: regular_init, event: exit_scheduling,"},{"event":"cmd_output","timestamp":1607098227,"output":" recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.55"},{"event":"cmd_output","timestamp":1607098227,"output":"6 [info] block_id: 86cf8b1d-63aa-41d5-8d8d-a2f232beade2, type: BlockRequests, event: persisted bloc"},{"event":"cmd_output","timestamp":1607098227,"output":"k run request from ppl a5cb0326-8258-4105-8629-7906eca809d8 for block 0, origin: Elixir.Block.BlockR"},{"event":"cmd_output","timestamp":1607098227,"output":"equests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:27.558 [info] block_"},{"event":"cmd_output","timestamp":1607098227,"output":"id: 86cf8b1d-63aa-41d5-8d8d-a2f232beade2, type: Blocks, state: initializing, event: initializing, re"},{"event":"cmd_output","timestamp":1607098227,"output":"covery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:2"},{"event":"cmd_output","timestamp":1607098227,"output":"7.565 [info] Block 0 of pipeline with id: a5cb0326-8258-4105-8629-7906eca809d8 scheduled in block s"},{"event":"cmd_output","timestamp":1607098227,"output":"ervice with id: : \"86cf8b1d-63aa-41d5-8d8d-a2f232beade2\"\n\u001b[0m\u001b[22m\n16:10:27.570 [info] block_id: "},{"event":"cmd_output","timestamp":1607098227,"output":"86cf8b1d-63aa-41d5-8d8d-a2f232beade2, type: BlockRequests, event: persisted build and sub_ppl detail"},{"event":"cmd_output","timestamp":1607098227,"output":"s for block_request: 86cf8b1d-63aa-41d5-8d8d-a2f232beade2, origin: Elixir.Block.BlockRequests.Model."},{"event":"cmd_output","timestamp":1607098227,"output":"BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:27.573 [info] block_id: 86cf8b1d-63aa-"},{"event":"cmd_output","timestamp":1607098227,"output":"41d5-8d8d-a2f232beade2, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098227,"output":"ir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:27.574 [info] ppl_"},{"event":"cmd_output","timestamp":1607098227,"output":"id: 541b6bd0-fe78-407d-b0b5-ba30acbfd3a6, block_id: 203fca1d-f700-4f87-bc6c-1dfb92940427, type: PplB"},{"event":"cmd_output","timestamp":1607098227,"output":"locks, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098227,"output":"n: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.578 [info] ppl_id: 0eb6501"},{"event":"cmd_output","timestamp":1607098227,"output":"c-842d-40eb-8c2b-b346bf437ff8, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduli"},{"event":"cmd_output","timestamp":1607098227,"output":"ng, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27"},{"event":"cmd_output","timestamp":1607098227,"output":".579 [info] ppl_id: a5cb0326-8258-4105-8629-7906eca809d8, type: PplBlocks, block_index: 0, state: r"},{"event":"cmd_output","timestamp":1607098227,"output":"unning, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1"},{"event":"cmd_output","timestamp":1607098227,"output":"(L90), \n\u001b[0m\u001b[22m\n16:10:27.580 [info] ppl_id: 0eb6501c-842d-40eb-8c2b-b346bf437ff8, type: Ppls, s"},{"event":"cmd_output","timestamp":1607098227,"output":"tate: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098227,"output":"hange/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.580 [info] block_id: 86cf8b1d-63aa-41d5-8d8d-a2f232beade2, type"},{"event":"cmd_output","timestamp":1607098227,"output":": Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl."},{"event":"cmd_output","timestamp":1607098227,"output":"log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.619 [info] ppl_id: 0eb6501c-842d-40eb-8c2b-b346bf437"},{"event":"cmd_output","timestamp":1607098227,"output":"ff8, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.ST"},{"event":"cmd_output","timestamp":1607098227,"output":"M.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.628 [info] block_id: 86cf8b1d-63aa-41d5-8d8d-"},{"event":"cmd_output","timestamp":1607098227,"output":"a2f232beade2, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098227,"output":".Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.635 [info] ppl_id: 2ad8f743-eb7f-4f"},{"event":"cmd_output","timestamp":1607098227,"output":"0d-bf04-d2673b0b326e, type: PplRequests, event: persisted definition for request with request_token:"},{"event":"cmd_output","timestamp":1607098227,"output":" 381a376c-364b-11eb-a96c-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.inser"},{"event":"cmd_output","timestamp":1607098227,"output":"t_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:27.637 [info] ppl_id: 36f110fc-b9d0-4a09-9976-cc956a044f8e,"},{"event":"cmd_output","timestamp":1607098227,"output":" type: PplRequests, event: persisted source_args for pipeline: 36f110fc-b9d0-4a09-9976-cc956a044f8e,"},{"event":"cmd_output","timestamp":1607098227,"output":" origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:27"},{"event":"cmd_output","timestamp":1607098227,"output":".639 [info] ppl_id: 541b6bd0-fe78-407d-b0b5-ba30acbfd3a6, type: Ppls, state: done, result: passed, "},{"event":"cmd_output","timestamp":1607098227,"output":"event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \r"},{"event":"cmd_output","timestamp":1607098227,"output":"\n\u001b[0m\u001b[22m\n16:10:27.644 [info] ppl_id: 0eb6501c-842d-40eb-8c2b-b346bf437ff8, type: Ppls, state: ru"},{"event":"cmd_output","timestamp":1607098227,"output":"nning, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1("},{"event":"cmd_output","timestamp":1607098227,"output":"L90), \n\u001b[0m\u001b[22m\n16:10:27.647 [info] ppl_id: 36f110fc-b9d0-4a09-9976-cc956a044f8e, type: PplSubIn"},{"event":"cmd_output","timestamp":1607098227,"output":"its, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_"},{"event":"cmd_output","timestamp":1607098227,"output":"state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.649 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queu"},{"event":"cmd_output","timestamp":1607098227,"output":"es{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:10:27.642404], "},{"event":"cmd_output","timestamp":1607098227,"output":"name: \"refs/tags/v1.10-.semaphore/semaphore.yml\", organization_id: \"f7fe9682-a292-437c-9526-2b7f37f8"},{"event":"cmd_output","timestamp":1607098227,"output":"83f0\", project_id: \"list_latest_workflows\", queue_id: \"470e09f9-f5b5-482c-8147-bb452140bb2b\", scope:"},{"event":"cmd_output","timestamp":1607098227,"output":" \"project\", updated_at: ~N[2020-12-04 16:10:27.642418], user_generated: false}}\n\u001b[0m\u001b[22m\n16:10:27"},{"event":"cmd_output","timestamp":1607098227,"output":".659 [info] block_id: 86cf8b1d-63aa-41d5-8d8d-a2f232beade2, type: Tasks, state: done, event: exit_s"},{"event":"cmd_output","timestamp":1607098227,"output":"cheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098227,"output":"6:10:27.662 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"0eb6501c-842d-4"},{"event":"cmd_output","timestamp":1607098227,"output":"0eb-8c2b-b346bf437ff8\"\n\u001b[0m\u001b[22m\n16:10:27.669 [info] event: created, origin: Elixir.Ppl.PplSubIni"},{"event":"cmd_output","timestamp":1607098227,"output":"ts.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:27.669 [info] ppl_id: 2ad8f743-e"},{"event":"cmd_output","timestamp":1607098227,"output":"b7f-4f0d-bf04-d2673b0b326e, type: PplBlocks, block_index: 0, state: initializing, event: created, re"},{"event":"cmd_output","timestamp":1607098227,"output":"covery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098227,"output":"[22m\n16:10:27.672 [info] block_id: 86cf8b1d-63aa-41d5-8d8d-a2f232beade2, type: Blocks, state: done"},{"event":"cmd_output","timestamp":1607098227,"output":", event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90),"},{"event":"cmd_output","timestamp":1607098227,"output":" \n\u001b[0m\u001b[22m\n16:10:27.674 [info] ppl_id: 2ad8f743-eb7f-4f0d-bf04-d2673b0b326e, type: PplSubInits, "},{"event":"cmd_output","timestamp":1607098227,"output":"state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Im"},{"event":"cmd_output","timestamp":1607098227,"output":"pl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.687 [info] block_id: 569a3f4d-bf65-42cf-931b-6481"},{"event":"cmd_output","timestamp":1607098227,"output":"5e5faa40, type: BlockRequests, event: persisted block run request from ppl 0eb6501c-842d-40eb-8c2b-b"},{"event":"cmd_output","timestamp":1607098227,"output":"346bf437ff8 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_respo"},{"event":"cmd_output","timestamp":1607098227,"output":"nse/4(L35), \n\u001b[0m\u001b[22m\n16:10:27.695 [info] ppl_id: 2ad8f743-eb7f-4f0d-bf04-d2673b0b326e, type: Pp"},{"event":"cmd_output","timestamp":1607098227,"output":"lBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098227,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.695 [info] block_id: 569a3f4d-bf65-42"},{"event":"cmd_output","timestamp":1607098227,"output":"cf-931b-64815e5faa40, type: Blocks, state: initializing, event: initializing, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098227,"output":"gin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:27.703 [info] block_"},{"event":"cmd_output","timestamp":1607098227,"output":"id: 569a3f4d-bf65-42cf-931b-64815e5faa40, type: BlockRequests, event: persisted build and sub_ppl de"},{"event":"cmd_output","timestamp":1607098227,"output":"tails for block_request: 569a3f4d-bf65-42cf-931b-64815e5faa40, origin: Elixir.Block.BlockRequests.Mo"},{"event":"cmd_output","timestamp":1607098227,"output":"del.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:27.704 [info] ppl_id: 2ad8f743-eb7"},{"event":"cmd_output","timestamp":1607098227,"output":"f-4f0d-bf04-d2673b0b326e, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098227,"output":"gin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.704 [info] Block 0 of pi"},{"event":"cmd_output","timestamp":1607098227,"output":"peline with id: 0eb6501c-842d-40eb-8c2b-b346bf437ff8 scheduled in block service with id: : \"569a3f4d"},{"event":"cmd_output","timestamp":1607098227,"output":"-bf65-42cf-931b-64815e5faa40\"\n\u001b[0m\u001b[22m\n16:10:27.707 [info] ppl_id: a5cb0326-8258-4105-8629-7906e"},{"event":"cmd_output","timestamp":1607098227,"output":"ca809d8, block_id: 86cf8b1d-63aa-41d5-8d8d-a2f232beade2, type: PplBlocks, block_index: 0, state: don"},{"event":"cmd_output","timestamp":1607098227,"output":"e, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_sta"},{"event":"cmd_output","timestamp":1607098227,"output":"te_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.708 [info] block_id: 569a3f4d-bf65-42cf-931b-64815e5faa40, "},{"event":"cmd_output","timestamp":1607098227,"output":"type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandl"},{"event":"cmd_output","timestamp":1607098227,"output":"er.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:27.711 [info] ppl_id: 0eb6501c-842d-40eb-8"},{"event":"cmd_output","timestamp":1607098227,"output":"c2b-b346bf437ff8, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_"},{"event":"cmd_output","timestamp":1607098227,"output":"count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.716 [info] "},{"event":"cmd_output","timestamp":1607098227,"output":"block_id: 569a3f4d-bf65-42cf-931b-64815e5faa40, type: Blocks, state: running, event: exit_scheduling"},{"event":"cmd_output","timestamp":1607098227,"output":", recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.7"},{"event":"cmd_output","timestamp":1607098227,"output":"22 [info] ppl_id: 36f110fc-b9d0-4a09-9976-cc956a044f8e, type: PplSubInits, state: regular_init, eve"},{"event":"cmd_output","timestamp":1607098227,"output":"nt: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b["},{"event":"cmd_output","timestamp":1607098227,"output":"0m\u001b[22m\n16:10:27.733 [info] ppl_id: 2ad8f743-eb7f-4f0d-bf04-d2673b0b326e, type: Ppls, state: queui"},{"event":"cmd_output","timestamp":1607098227,"output":"ng, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90"},{"event":"cmd_output","timestamp":1607098227,"output":"), \n\u001b[0m\u001b[22m\n16:10:27.751 [info] block_id: 569a3f4d-bf65-42cf-931b-64815e5faa40, type: Tasks, st"},{"event":"cmd_output","timestamp":1607098227,"output":"ate: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_ch"},{"event":"cmd_output","timestamp":1607098227,"output":"ange/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.764 [info] ppl_id: a5cb0326-8258-4105-8629-7906eca809d8, type: P"},{"event":"cmd_output","timestamp":1607098227,"output":"pls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.S"},{"event":"cmd_output","timestamp":1607098227,"output":"TM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.768 [info] ppl_id: b862d192-f56c-46b8-9b40-9"},{"event":"cmd_output","timestamp":1607098227,"output":"9170c360c7a, type: PplRequests, event: persisted source_args for pipeline: b862d192-f56c-46b8-9b40-9"},{"event":"cmd_output","timestamp":1607098227,"output":"9170c360c7a, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098227,"output":"2m\n16:10:27.773 [info] ppl_id: b862d192-f56c-46b8-9b40-99170c360c7a, type: PplSubInits, state: fet"},{"event":"cmd_output","timestamp":1607098227,"output":"ching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1("},{"event":"cmd_output","timestamp":1607098227,"output":"L90), \n\u001b[0m\u001b[22m\n16:10:27.780 [info] ppl_id: 2ad8f743-eb7f-4f0d-bf04-d2673b0b326e, type: Ppls, st"},{"event":"cmd_output","timestamp":1607098227,"output":"ate: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_ch"},{"event":"cmd_output","timestamp":1607098227,"output":"ange/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.799 [info] block_id: 569a3f4d-bf65-42cf-931b-64815e5faa40, type:"},{"event":"cmd_output","timestamp":1607098227,"output":" Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_s"},{"event":"cmd_output","timestamp":1607098227,"output":"tate_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.807 [info] block_id: 569a3f4d-bf65-42cf-931b-64815e5faa40"},{"event":"cmd_output","timestamp":1607098227,"output":", type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Im"},{"event":"cmd_output","timestamp":1607098227,"output":"pl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.807 [info] PplBlocks WaitingState STM is scheduli"},{"event":"cmd_output","timestamp":1607098227,"output":"ng block 0 from pipeline: \"2ad8f743-eb7f-4f0d-bf04-d2673b0b326e\"\n\u001b[0m\u001b[22m\n16:10:27.815 [info] pp"},{"event":"cmd_output","timestamp":1607098227,"output":"l_id: 36f110fc-b9d0-4a09-9976-cc956a044f8e, type: PplRequests, event: persisted definition for reque"},{"event":"cmd_output","timestamp":1607098227,"output":"st with request_token: 38225924-364b-11eb-a771-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.Pp"},{"event":"cmd_output","timestamp":1607098227,"output":"lRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:27.823 [info] block_id: 08bf3a40-95fd"},{"event":"cmd_output","timestamp":1607098227,"output":"-4081-88d2-5debf81a5af4, type: BlockRequests, event: persisted block run request from ppl 2ad8f743-e"},{"event":"cmd_output","timestamp":1607098227,"output":"b7f-4f0d-bf04-d2673b0b326e for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQuerie"},{"event":"cmd_output","timestamp":1607098227,"output":"s.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:27.824 [info] Queue persisted: {:ok, %Ppl.Queues.Mode"},{"event":"cmd_output","timestamp":1607098227,"output":"l.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:10:27.820"},{"event":"cmd_output","timestamp":1607098227,"output":"875], name: \"refs/tags/v1.11-.semaphore/semaphore.yml\", organization_id: \"7a25c8c5-16ee-44cd-8517-55"},{"event":"cmd_output","timestamp":1607098227,"output":"0404a3a571\", project_id: \"list_latest_workflows\", queue_id: \"2789595d-13e4-47d1-9e03-aaadab4bcc26\", "},{"event":"cmd_output","timestamp":1607098227,"output":"scope: \"project\", updated_at: ~N[2020-12-04 16:10:27.820884], user_generated: false}}\n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098227,"output":":10:27.825 [info] ppl_id: 0eb6501c-842d-40eb-8c2b-b346bf437ff8, block_id: 569a3f4d-bf65-42cf-931b-6"},{"event":"cmd_output","timestamp":1607098227,"output":"4815e5faa40, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, r"},{"event":"cmd_output","timestamp":1607098227,"output":"ecovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.827 "},{"event":"cmd_output","timestamp":1607098227,"output":"[info] block_id: 08bf3a40-95fd-4081-88d2-5debf81a5af4, type: Blocks, state: initializing, event: in"},{"event":"cmd_output","timestamp":1607098227,"output":"itializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098227,"output":"\u001b[22m\n16:10:27.829 [info] Block 0 of pipeline with id: 2ad8f743-eb7f-4f0d-bf04-d2673b0b326e schedu"},{"event":"cmd_output","timestamp":1607098227,"output":"led in block service with id: : \"08bf3a40-95fd-4081-88d2-5debf81a5af4\"\n\u001b[0m\u001b[22m\n16:10:27.835 [inf"},{"event":"cmd_output","timestamp":1607098227,"output":"o] ppl_id: 2ad8f743-eb7f-4f0d-bf04-d2673b0b326e, type: PplBlocks, block_index: 0, state: running, e"},{"event":"cmd_output","timestamp":1607098227,"output":"vent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n"},{"event":"cmd_output","timestamp":1607098227,"output":"\u001b[0m\u001b[22m\n16:10:27.841 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularIni"},{"event":"cmd_output","timestamp":1607098227,"output":"tState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:27.841 [info] ppl_id: 36f110fc-b9d0-4a09-9976-cc956a044f"},{"event":"cmd_output","timestamp":1607098227,"output":"8e, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098227,"output":" Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:27.842 [info"},{"event":"cmd_output","timestamp":1607098227,"output":"] block_id: 08bf3a40-95fd-4081-88d2-5debf81a5af4, type: BlockRequests, event: persisted build and s"},{"event":"cmd_output","timestamp":1607098227,"output":"ub_ppl details for block_request: 08bf3a40-95fd-4081-88d2-5debf81a5af4, origin: Elixir.Block.BlockRe"},{"event":"cmd_output","timestamp":1607098227,"output":"quests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:27.845 [info] block_id: 0"},{"event":"cmd_output","timestamp":1607098227,"output":"8bf3a40-95fd-4081-88d2-5debf81a5af4, type: Tasks, state: pending, event: created, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098227,"output":" origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:27.847"},{"event":"cmd_output","timestamp":1607098227,"output":" [info] ppl_id: b862d192-f56c-46b8-9b40-99170c360c7a, type: PplSubInits, state: regular_init, event"},{"event":"cmd_output","timestamp":1607098227,"output":": exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098227,"output":"\u001b[22m\n16:10:27.847 [info] ppl_id: 36f110fc-b9d0-4a09-9976-cc956a044f8e, type: PplSubInits, state: "},{"event":"cmd_output","timestamp":1607098227,"output":"done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_"},{"event":"cmd_output","timestamp":1607098227,"output":"state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.850 [info] block_id: 08bf3a40-95fd-4081-88d2-5debf81a5af"},{"event":"cmd_output","timestamp":1607098227,"output":"4, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.ST"},{"event":"cmd_output","timestamp":1607098227,"output":"M.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.862 [info] ppl_id: 36f110fc-b9d0-4a09-9976-cc"},{"event":"cmd_output","timestamp":1607098227,"output":"956a044f8e, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count:"},{"event":"cmd_output","timestamp":1607098227,"output":" 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.883 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098227,"output":": 36f110fc-b9d0-4a09-9976-cc956a044f8e, type: Ppls, state: pending, event: exit_scheduling, recovery"},{"event":"cmd_output","timestamp":1607098227,"output":"_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.889 [info] "},{"event":"cmd_output","timestamp":1607098227,"output":" ppl_id: 0eb6501c-842d-40eb-8c2b-b346bf437ff8, type: Ppls, state: done, result: passed, event: exit_"},{"event":"cmd_output","timestamp":1607098227,"output":"scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098227,"output":"16:10:27.890 [info] block_id: 08bf3a40-95fd-4081-88d2-5debf81a5af4, type: Tasks, state: running, ev"},{"event":"cmd_output","timestamp":1607098227,"output":"ent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b"},{"event":"cmd_output","timestamp":1607098227,"output":"[0m\u001b[22m\n16:10:27.905 [info] ppl_id: 608dc11e-6529-4912-9121-813bb4723eb4, type: PplRequests, even"},{"event":"cmd_output","timestamp":1607098227,"output":"t: persisted source_args for pipeline: 608dc11e-6529-4912-9121-813bb4723eb4, origin: Elixir.Ppl.PplR"},{"event":"cmd_output","timestamp":1607098227,"output":"equests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:27.910 [info] ppl_id: 608"},{"event":"cmd_output","timestamp":1607098227,"output":"dc11e-6529-4912-9121-813bb4723eb4, type: PplSubInits, state: fetching, event: exit_scheduling, recov"},{"event":"cmd_output","timestamp":1607098227,"output":"ery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.911 [inf"},{"event":"cmd_output","timestamp":1607098227,"output":"o] ppl_id: 36f110fc-b9d0-4a09-9976-cc956a044f8e, type: Ppls, state: queuing, event: exit_scheduling"},{"event":"cmd_output","timestamp":1607098227,"output":", recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.9"},{"event":"cmd_output","timestamp":1607098227,"output":"15 [info] ppl_id: b862d192-f56c-46b8-9b40-99170c360c7a, type: PplRequests, event: persisted definit"},{"event":"cmd_output","timestamp":1607098227,"output":"ion for request with request_token: 382a7c3a-364b-11eb-95f8-5254005464e2, origin: Elixir.Ppl.PplRequ"},{"event":"cmd_output","timestamp":1607098227,"output":"ests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:27.924 [info] Queue pers"},{"event":"cmd_output","timestamp":1607098227,"output":"isted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_a"},{"event":"cmd_output","timestamp":1607098227,"output":"t: ~N[2020-12-04 16:10:27.921326], name: \"pull-request-1212-.semaphore/semaphore.yml\", organization_"},{"event":"cmd_output","timestamp":1607098227,"output":"id: \"28770b22-ff57-4825-b706-3be0dbf95d04\", project_id: \"list_latest_workflows\", queue_id: \"28e46f2a"},{"event":"cmd_output","timestamp":1607098227,"output":"-79cd-4ab7-8ea0-980a40f68238\", scope: \"project\", updated_at: ~N[2020-12-04 16:10:27.921334], user_ge"},{"event":"cmd_output","timestamp":1607098227,"output":"nerated: false}}\n\u001b[0m\u001b[22m\n16:10:27.927 [info] block_id: 08bf3a40-95fd-4081-88d2-5debf81a5af4, ty"},{"event":"cmd_output","timestamp":1607098227,"output":"pe: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.lo"},{"event":"cmd_output","timestamp":1607098227,"output":"g_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.934 [info] block_id: 08bf3a40-95fd-4081-88d2-5debf81a5"},{"event":"cmd_output","timestamp":1607098227,"output":"af4, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM"},{"event":"cmd_output","timestamp":1607098227,"output":".Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.939 [info] ppl_id: 36f110fc-b9d0-4a09-9976-cc9"},{"event":"cmd_output","timestamp":1607098227,"output":"56a044f8e, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loo"},{"event":"cmd_output","timestamp":1607098227,"output":"per.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.945 [info] event: created, origin: Elix"},{"event":"cmd_output","timestamp":1607098227,"output":"ir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:27.945 [info] pp"},{"event":"cmd_output","timestamp":1607098227,"output":"l_id: b862d192-f56c-46b8-9b40-99170c360c7a, type: PplBlocks, block_index: 0, state: initializing, ev"},{"event":"cmd_output","timestamp":1607098227,"output":"ent: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/"},{"event":"cmd_output","timestamp":1607098227,"output":"1(L105), \n\u001b[0m\u001b[22m\n16:10:27.949 [info] ppl_id: 2ad8f743-eb7f-4f0d-bf04-d2673b0b326e, block_id: 0"},{"event":"cmd_output","timestamp":1607098227,"output":"8bf3a40-95fd-4081-88d2-5debf81a5af4, type: PplBlocks, block_index: 0, state: done, result: passed, e"},{"event":"cmd_output","timestamp":1607098227,"output":"vent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n"},{"event":"cmd_output","timestamp":1607098227,"output":"\u001b[0m\u001b[22m\n16:10:27.950 [info] ppl_id: b862d192-f56c-46b8-9b40-99170c360c7a, type: PplSubInits, sta"},{"event":"cmd_output","timestamp":1607098227,"output":"te: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl."},{"event":"cmd_output","timestamp":1607098227,"output":"log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.963 [info] ppl_id: 608dc11e-6529-4912-9121-813bb4723"},{"event":"cmd_output","timestamp":1607098227,"output":"eb4, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098227,"output":"ir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.964 [info] ppl_id: b862d192-f56c-"},{"event":"cmd_output","timestamp":1607098227,"output":"46b8-9b40-99170c360c7a, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098227,"output":"n: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.966 [info] PplBlocks Waiti"},{"event":"cmd_output","timestamp":1607098227,"output":"ngState STM is scheduling block 0 from pipeline: \"36f110fc-b9d0-4a09-9976-cc956a044f8e\"\n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098227,"output":"16:10:27.970 [info] ppl_id: b862d192-f56c-46b8-9b40-99170c360c7a, type: PplBlocks, block_index: 0, "},{"event":"cmd_output","timestamp":1607098227,"output":"state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_"},{"event":"cmd_output","timestamp":1607098227,"output":"change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.979 [info] ppl_id: b862d192-f56c-46b8-9b40-99170c360c7a, type:"},{"event":"cmd_output","timestamp":1607098227,"output":" Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098227,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.983 [info] block_id: 8a86ca5d-96d3-47b0-aba0-67236b88da"},{"event":"cmd_output","timestamp":1607098227,"output":"56, type: BlockRequests, event: persisted block run request from ppl 36f110fc-b9d0-4a09-9976-cc956a0"},{"event":"cmd_output","timestamp":1607098227,"output":"44f8e for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4("},{"event":"cmd_output","timestamp":1607098227,"output":"L35), \n\u001b[0m\u001b[22m\n16:10:27.987 [info] block_id: 8a86ca5d-96d3-47b0-aba0-67236b88da56, type: Blocks"},{"event":"cmd_output","timestamp":1607098227,"output":", state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.Blo"},{"event":"cmd_output","timestamp":1607098227,"output":"cksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:27.992 [info] ppl_id: 2ad8f743-eb7f-4f0d-bf04-d2673b0b"},{"event":"cmd_output","timestamp":1607098227,"output":"326e, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098227,"output":"ixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.996 [info] Block 0 of pipeline "},{"event":"cmd_output","timestamp":1607098227,"output":"with id: 36f110fc-b9d0-4a09-9976-cc956a044f8e scheduled in block service with id: : \"8a86ca5d-96d3-4"},{"event":"cmd_output","timestamp":1607098228,"output":"7b0-aba0-67236b88da56\"\n\u001b[0m\u001b[22m\n16:10:28.000 [info] ppl_id: 36f110fc-b9d0-4a09-9976-cc956a044f8e"},{"event":"cmd_output","timestamp":1607098228,"output":", type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098228,"output":": Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.003 [info] block_id: 8a86ca"},{"event":"cmd_output","timestamp":1607098228,"output":"5d-96d3-47b0-aba0-67236b88da56, type: BlockRequests, event: persisted build and sub_ppl details for "},{"event":"cmd_output","timestamp":1607098228,"output":"block_request: 8a86ca5d-96d3-47b0-aba0-67236b88da56, origin: Elixir.Block.BlockRequests.Model.BlockR"},{"event":"cmd_output","timestamp":1607098228,"output":"equestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:28.008 [info] block_id: 8a86ca5d-96d3-47b0-a"},{"event":"cmd_output","timestamp":1607098228,"output":"ba0-67236b88da56, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Blo"},{"event":"cmd_output","timestamp":1607098228,"output":"ck.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:28.012 [info] ppl_id: 60"},{"event":"cmd_output","timestamp":1607098228,"output":"8dc11e-6529-4912-9121-813bb4723eb4, type: PplRequests, event: persisted definition for request with "},{"event":"cmd_output","timestamp":1607098228,"output":"request_token: 3836c616-364b-11eb-92eb-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequest"},{"event":"cmd_output","timestamp":1607098228,"output":"sQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:28.012 [info] block_id: 8a86ca5d-96d3-47b0-ab"},{"event":"cmd_output","timestamp":1607098228,"output":"a0-67236b88da56, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098228,"output":"ixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.012 [info] ppl_id: b862d192-f56"},{"event":"cmd_output","timestamp":1607098228,"output":"c-46b8-9b40-99170c360c7a, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098228,"output":"gin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.018 [info] Queue persist"},{"event":"cmd_output","timestamp":1607098228,"output":"ed: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: "},{"event":"cmd_output","timestamp":1607098228,"output":"~N[2020-12-04 16:10:28.017150], name: \"pull-request-1213-.semaphore/semaphore.yml\", organization_id:"},{"event":"cmd_output","timestamp":1607098228,"output":" \"b3fe3814-9c96-463f-8117-81f2f540b99b\", project_id: \"list_latest_workflows\", queue_id: \"ae2269ea-97"},{"event":"cmd_output","timestamp":1607098228,"output":"aa-410a-b821-755f07eb8774\", scope: \"project\", updated_at: ~N[2020-12-04 16:10:28.017158], user_gener"},{"event":"cmd_output","timestamp":1607098228,"output":"ated: false}}\n\u001b[0m\u001b[22m\n16:10:28.027 [info] PplBlocks WaitingState STM is scheduling block 0 from"},{"event":"cmd_output","timestamp":1607098228,"output":" pipeline: \"b862d192-f56c-46b8-9b40-99170c360c7a\"\n\u001b[0m\u001b[22m\n16:10:28.031 [info] event: created, o"},{"event":"cmd_output","timestamp":1607098228,"output":"rigin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:28.031"},{"event":"cmd_output","timestamp":1607098228,"output":" [info] ppl_id: 608dc11e-6529-4912-9121-813bb4723eb4, type: PplBlocks, block_index: 0, state: initi"},{"event":"cmd_output","timestamp":1607098228,"output":"alizing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitSta"},{"event":"cmd_output","timestamp":1607098228,"output":"te.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:28.035 [info] ppl_id: 608dc11e-6529-4912-9121-813bb4723eb4, "},{"event":"cmd_output","timestamp":1607098228,"output":"type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: E"},{"event":"cmd_output","timestamp":1607098228,"output":"lixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.038 [info] ppl_id: 0a0c3dd8-58"},{"event":"cmd_output","timestamp":1607098228,"output":"9a-4ee7-a8b4-a960b430b2c7, type: PplRequests, event: persisted source_args for pipeline: 0a0c3dd8-58"},{"event":"cmd_output","timestamp":1607098228,"output":"9a-4ee7-a8b4-a960b430b2c7, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L"},{"event":"cmd_output","timestamp":1607098228,"output":"89), \n\u001b[0m\u001b[22m\n16:10:28.039 [info] block_id: 8a86ca5d-96d3-47b0-aba0-67236b88da56, type: Tasks, "},{"event":"cmd_output","timestamp":1607098228,"output":"state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_"},{"event":"cmd_output","timestamp":1607098228,"output":"change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.043 [info] block_id: d0805991-c64a-4528-b53c-e92e9dd0b635, typ"},{"event":"cmd_output","timestamp":1607098228,"output":"e: BlockRequests, event: persisted block run request from ppl b862d192-f56c-46b8-9b40-99170c360c7a f"},{"event":"cmd_output","timestamp":1607098228,"output":"or block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \r"},{"event":"cmd_output","timestamp":1607098228,"output":"\n\u001b[0m\u001b[22m\n16:10:28.047 [info] ppl_id: 0a0c3dd8-589a-4ee7-a8b4-a960b430b2c7, type: PplSubInits, st"},{"event":"cmd_output","timestamp":1607098228,"output":"ate: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098228,"output":"hange/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.047 [info] block_id: d0805991-c64a-4528-b53c-e92e9dd0b635, type"},{"event":"cmd_output","timestamp":1607098228,"output":": Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.M"},{"event":"cmd_output","timestamp":1607098228,"output":"odel.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:28.051 [info] Block 0 of pipeline with id: b86"},{"event":"cmd_output","timestamp":1607098228,"output":"2d192-f56c-46b8-9b40-99170c360c7a scheduled in block service with id: : \"d0805991-c64a-4528-b53c-e92"},{"event":"cmd_output","timestamp":1607098228,"output":"e9dd0b635\"\n\u001b[0m\u001b[22m\n16:10:28.054 [info] ppl_id: 608dc11e-6529-4912-9121-813bb4723eb4, type: PplB"},{"event":"cmd_output","timestamp":1607098228,"output":"locks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loo"},{"event":"cmd_output","timestamp":1607098228,"output":"per.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.057 [info] ppl_id: b862d192-f56c-46b8-9"},{"event":"cmd_output","timestamp":1607098228,"output":"b40-99170c360c7a, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_"},{"event":"cmd_output","timestamp":1607098228,"output":"count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.066 [info] "},{"event":"cmd_output","timestamp":1607098228,"output":"ppl_id: 608dc11e-6529-4912-9121-813bb4723eb4, type: Ppls, state: pending, event: exit_scheduling, re"},{"event":"cmd_output","timestamp":1607098228,"output":"covery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.066 ["},{"event":"cmd_output","timestamp":1607098228,"output":"info] block_id: d0805991-c64a-4528-b53c-e92e9dd0b635, type: BlockRequests, event: persisted build a"},{"event":"cmd_output","timestamp":1607098228,"output":"nd sub_ppl details for block_request: d0805991-c64a-4528-b53c-e92e9dd0b635, origin: Elixir.Block.Blo"},{"event":"cmd_output","timestamp":1607098228,"output":"ckRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:28.068 [info] block_i"},{"event":"cmd_output","timestamp":1607098228,"output":"d: d0805991-c64a-4528-b53c-e92e9dd0b635, type: Tasks, state: pending, event: created, recovery_count"},{"event":"cmd_output","timestamp":1607098228,"output":": 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:28"},{"event":"cmd_output","timestamp":1607098228,"output":".070 [info] block_id: d0805991-c64a-4528-b53c-e92e9dd0b635, type: Blocks, state: running, event: ex"},{"event":"cmd_output","timestamp":1607098228,"output":"it_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098228,"output":"m\n16:10:28.099 [info] ppl_id: 608dc11e-6529-4912-9121-813bb4723eb4, type: Ppls, state: queuing, ev"},{"event":"cmd_output","timestamp":1607098228,"output":"ent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b"},{"event":"cmd_output","timestamp":1607098228,"output":"[0m\u001b[22m\n16:10:28.102 [info] block_id: d0805991-c64a-4528-b53c-e92e9dd0b635, type: Tasks, state: r"},{"event":"cmd_output","timestamp":1607098228,"output":"unning, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1"},{"event":"cmd_output","timestamp":1607098228,"output":"(L90), \n\u001b[0m\u001b[22m\n16:10:28.106 [info] ppl_id: 0a0c3dd8-589a-4ee7-a8b4-a960b430b2c7, type: PplSubI"},{"event":"cmd_output","timestamp":1607098228,"output":"nits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl"},{"event":"cmd_output","timestamp":1607098228,"output":".log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.118 [info] ppl_id: 608dc11e-6529-4912-9121-813bb472"},{"event":"cmd_output","timestamp":1607098228,"output":"3eb4, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.S"},{"event":"cmd_output","timestamp":1607098228,"output":"TM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.126 [info] PplBlocks WaitingState STM is sch"},{"event":"cmd_output","timestamp":1607098228,"output":"eduling block 0 from pipeline: \"608dc11e-6529-4912-9121-813bb4723eb4\"\n\u001b[0m\u001b[22m\n16:10:28.132 [info"},{"event":"cmd_output","timestamp":1607098228,"output":"] block_id: cea5cd5a-6ca8-4eb7-8397-6dde9468ad1f, type: BlockRequests, event: persisted block run r"},{"event":"cmd_output","timestamp":1607098228,"output":"equest from ppl 608dc11e-6529-4912-9121-813bb4723eb4 for block 0, origin: Elixir.Block.BlockRequests"},{"event":"cmd_output","timestamp":1607098228,"output":".Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:28.134 [info] block_id: cea"},{"event":"cmd_output","timestamp":1607098228,"output":"5cd5a-6ca8-4eb7-8397-6dde9468ad1f, type: Blocks, state: initializing, event: initializing, recovery_"},{"event":"cmd_output","timestamp":1607098228,"output":"count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:28.139 ["},{"event":"cmd_output","timestamp":1607098228,"output":"info] Block 0 of pipeline with id: 608dc11e-6529-4912-9121-813bb4723eb4 scheduled in block service "},{"event":"cmd_output","timestamp":1607098228,"output":"with id: : \"cea5cd5a-6ca8-4eb7-8397-6dde9468ad1f\"\n\u001b[0m\u001b[22m\n16:10:28.145 [info] ppl_id: 608dc11e-"},{"event":"cmd_output","timestamp":1607098228,"output":"6529-4912-9121-813bb4723eb4, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling"},{"event":"cmd_output","timestamp":1607098228,"output":", recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.1"},{"event":"cmd_output","timestamp":1607098228,"output":"45 [info] block_id: cea5cd5a-6ca8-4eb7-8397-6dde9468ad1f, type: BlockRequests, event: persisted bui"},{"event":"cmd_output","timestamp":1607098228,"output":"ld and sub_ppl details for block_request: cea5cd5a-6ca8-4eb7-8397-6dde9468ad1f, origin: Elixir.Block"},{"event":"cmd_output","timestamp":1607098228,"output":".BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:28.150 [info] ppl"},{"event":"cmd_output","timestamp":1607098228,"output":"_id: 0a0c3dd8-589a-4ee7-a8b4-a960b430b2c7, type: PplRequests, event: persisted definition for reques"},{"event":"cmd_output","timestamp":1607098228,"output":"t with request_token: 383d6e80-364b-11eb-9505-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.Ppl"},{"event":"cmd_output","timestamp":1607098228,"output":"RequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:28.154 [info] block_id: cea5cd5a-6ca8-"},{"event":"cmd_output","timestamp":1607098228,"output":"4eb7-8397-6dde9468ad1f, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098228,"output":"ir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:28.160 [info] bloc"},{"event":"cmd_output","timestamp":1607098228,"output":"k_id: cea5cd5a-6ca8-4eb7-8397-6dde9468ad1f, type: Blocks, state: running, event: exit_scheduling, re"},{"event":"cmd_output","timestamp":1607098228,"output":"covery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.160 ["},{"event":"cmd_output","timestamp":1607098228,"output":"info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"que"},{"event":"cmd_output","timestamp":1607098228,"output":"ues\">, inserted_at: ~N[2020-12-04 16:10:28.158031], name: \"pull-request-1214-.semaphore/semaphore.ym"},{"event":"cmd_output","timestamp":1607098228,"output":"l\", organization_id: \"e66dd4bb-b5c4-4b65-8797-7227c6ae307b\", project_id: \"list_latest_workflows\", qu"},{"event":"cmd_output","timestamp":1607098228,"output":"eue_id: \"be180f24-3431-4f8c-9bd7-96cf62c94594\", scope: \"project\", updated_at: ~N[2020-12-04 16:10:28"},{"event":"cmd_output","timestamp":1607098228,"output":".158043], user_generated: false}}\n\u001b[0m\u001b[22m\n16:10:28.166 [info] block_id: 8a86ca5d-96d3-47b0-aba0"},{"event":"cmd_output","timestamp":1607098228,"output":"-67236b88da56, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098228,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.167 [info] event: created, origin: El"},{"event":"cmd_output","timestamp":1607098228,"output":"ixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:28.167 [info] "},{"event":"cmd_output","timestamp":1607098228,"output":"ppl_id: 0a0c3dd8-589a-4ee7-a8b4-a960b430b2c7, type: PplBlocks, block_index: 0, state: initializing, "},{"event":"cmd_output","timestamp":1607098228,"output":"event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok"},{"event":"cmd_output","timestamp":1607098228,"output":"?/1(L105), \n\u001b[0m\u001b[22m\n16:10:28.171 [info] ppl_id: 6d84b04f-3a70-4304-bdbb-42129be868a7, type: Ppl"},{"event":"cmd_output","timestamp":1607098228,"output":"Requests, event: persisted source_args for pipeline: 6d84b04f-3a70-4304-bdbb-42129be868a7, origin: E"},{"event":"cmd_output","timestamp":1607098228,"output":"lixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:28.172 [info"},{"event":"cmd_output","timestamp":1607098228,"output":"] ppl_id: 0a0c3dd8-589a-4ee7-a8b4-a960b430b2c7, type: PplSubInits, state: done, result: passed, eve"},{"event":"cmd_output","timestamp":1607098228,"output":"nt: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b["},{"event":"cmd_output","timestamp":1607098228,"output":"0m\u001b[22m\n16:10:28.184 [info] block_id: 8a86ca5d-96d3-47b0-aba0-67236b88da56, type: Blocks, state: d"},{"event":"cmd_output","timestamp":1607098228,"output":"one, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L9"},{"event":"cmd_output","timestamp":1607098228,"output":"0), \n\u001b[0m\u001b[22m\n16:10:28.186 [info] ppl_id: 6d84b04f-3a70-4304-bdbb-42129be868a7, type: PplSubInit"},{"event":"cmd_output","timestamp":1607098228,"output":"s, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_st"},{"event":"cmd_output","timestamp":1607098228,"output":"ate_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.194 [info] block_id: cea5cd5a-6ca8-4eb7-8397-6dde9468ad1f,"},{"event":"cmd_output","timestamp":1607098228,"output":" type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.I"},{"event":"cmd_output","timestamp":1607098228,"output":"mpl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.202 [info] ppl_id: 0a0c3dd8-589a-4ee7-a8b4-a960b"},{"event":"cmd_output","timestamp":1607098228,"output":"430b2c7, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loope"},{"event":"cmd_output","timestamp":1607098228,"output":"r.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.205 [info] ppl_id: 0a0c3dd8-589a-4ee7-a8b"},{"event":"cmd_output","timestamp":1607098228,"output":"4-a960b430b2c7, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_co"},{"event":"cmd_output","timestamp":1607098228,"output":"unt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.216 [info] pp"},{"event":"cmd_output","timestamp":1607098228,"output":"l_id: 36f110fc-b9d0-4a09-9976-cc956a044f8e, block_id: 8a86ca5d-96d3-47b0-aba0-67236b88da56, type: Pp"},{"event":"cmd_output","timestamp":1607098228,"output":"lBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098228,"output":"gin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.227 [info] ppl_id: 0a0c3"},{"event":"cmd_output","timestamp":1607098228,"output":"dd8-589a-4ee7-a8b4-a960b430b2c7, type: Ppls, state: queuing, event: exit_scheduling, recovery_count:"},{"event":"cmd_output","timestamp":1607098228,"output":" 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.233 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098228,"output":": 6d84b04f-3a70-4304-bdbb-42129be868a7, type: PplSubInits, state: regular_init, event: exit_scheduli"},{"event":"cmd_output","timestamp":1607098228,"output":"ng, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28"},{"event":"cmd_output","timestamp":1607098228,"output":".237 [info] ppl_id: 0a0c3dd8-589a-4ee7-a8b4-a960b430b2c7, type: Ppls, state: running, event: exit_s"},{"event":"cmd_output","timestamp":1607098228,"output":"cheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098228,"output":"6:10:28.243 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"0a0c3dd8-589a-4"},{"event":"cmd_output","timestamp":1607098228,"output":"ee7-a8b4-a960b430b2c7\"\n\u001b[0m\u001b[22m\n16:10:28.245 [info] ppl_id: 36f110fc-b9d0-4a09-9976-cc956a044f8e"},{"event":"cmd_output","timestamp":1607098228,"output":", type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098228,"output":".Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.251 [info] block_id: f36ccb28-b7f0-"},{"event":"cmd_output","timestamp":1607098228,"output":"4de4-9f14-135e2aa20a67, type: BlockRequests, event: persisted block run request from ppl 0a0c3dd8-58"},{"event":"cmd_output","timestamp":1607098228,"output":"9a-4ee7-a8b4-a960b430b2c7 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries"},{"event":"cmd_output","timestamp":1607098228,"output":".process_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:28.253 [info] block_id: f36ccb28-b7f0-4de4-9f14-135e2a"},{"event":"cmd_output","timestamp":1607098228,"output":"a20a67, type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Bl"},{"event":"cmd_output","timestamp":1607098228,"output":"ock.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:28.256 [info] Block 0 of pipeline "},{"event":"cmd_output","timestamp":1607098228,"output":"with id: 0a0c3dd8-589a-4ee7-a8b4-a960b430b2c7 scheduled in block service with id: : \"f36ccb28-b7f0-4"},{"event":"cmd_output","timestamp":1607098228,"output":"de4-9f14-135e2aa20a67\"\n\u001b[0m\u001b[22m\n16:10:28.260 [info] block_id: f36ccb28-b7f0-4de4-9f14-135e2aa20a"},{"event":"cmd_output","timestamp":1607098228,"output":"67, type: BlockRequests, event: persisted build and sub_ppl details for block_request: f36ccb28-b7f0"},{"event":"cmd_output","timestamp":1607098228,"output":"-4de4-9f14-135e2aa20a67, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/"},{"event":"cmd_output","timestamp":1607098228,"output":"2(L41), \n\u001b[0m\u001b[22m\n16:10:28.260 [info] ppl_id: 0a0c3dd8-589a-4ee7-a8b4-a960b430b2c7, type: PplBlo"},{"event":"cmd_output","timestamp":1607098228,"output":"cks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loope"},{"event":"cmd_output","timestamp":1607098228,"output":"r.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.263 [info] block_id: f36ccb28-b7f0-4de4-9"},{"event":"cmd_output","timestamp":1607098228,"output":"f14-135e2aa20a67, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Blo"},{"event":"cmd_output","timestamp":1607098228,"output":"ck.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:28.265 [info] block_id: "},{"event":"cmd_output","timestamp":1607098228,"output":"f36ccb28-b7f0-4de4-9f14-135e2aa20a67, type: Blocks, state: running, event: exit_scheduling, recovery"},{"event":"cmd_output","timestamp":1607098228,"output":"_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.290 [info] "},{"event":"cmd_output","timestamp":1607098228,"output":" block_id: f36ccb28-b7f0-4de4-9f14-135e2aa20a67, type: Tasks, state: running, event: exit_scheduling"},{"event":"cmd_output","timestamp":1607098228,"output":", recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.2"},{"event":"cmd_output","timestamp":1607098228,"output":"92 [info] ppl_id: 6d84b04f-3a70-4304-bdbb-42129be868a7, type: PplRequests, event: persisted definit"},{"event":"cmd_output","timestamp":1607098228,"output":"ion for request with request_token: 38433860-364b-11eb-9bd2-5254005464e2, origin: Elixir.Ppl.PplRequ"},{"event":"cmd_output","timestamp":1607098228,"output":"ests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:28.300 [info] block_id: "},{"event":"cmd_output","timestamp":1607098228,"output":"d0805991-c64a-4528-b53c-e92e9dd0b635, type: Tasks, state: done, event: exit_scheduling, recovery_cou"},{"event":"cmd_output","timestamp":1607098228,"output":"nt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.306 [info] ppl"},{"event":"cmd_output","timestamp":1607098228,"output":"_id: c3c8dc93-eccb-4a42-9eee-90e7d3cfd455, type: PplRequests, event: persisted source_args for pipel"},{"event":"cmd_output","timestamp":1607098228,"output":"ine: c3c8dc93-eccb-4a42-9eee-90e7d3cfd455, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.i"},{"event":"cmd_output","timestamp":1607098228,"output":"nsert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:28.306 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queu"},{"event":"cmd_output","timestamp":1607098228,"output":"es{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:10:28.299610], "},{"event":"cmd_output","timestamp":1607098228,"output":"name: \"pull-request-1215-.semaphore/semaphore.yml\", organization_id: \"fd289d3d-1888-4069-a601-b2a740"},{"event":"cmd_output","timestamp":1607098228,"output":"02999c\", project_id: \"list_latest_workflows\", queue_id: \"9acbd8d1-52d8-436b-a700-bcfe3bf00c86\", scop"},{"event":"cmd_output","timestamp":1607098228,"output":"e: \"project\", updated_at: ~N[2020-12-04 16:10:28.299623], user_generated: false}}\n\u001b[0m\u001b[22m\n16:10:"},{"event":"cmd_output","timestamp":1607098228,"output":"28.311 [info] block_id: d0805991-c64a-4528-b53c-e92e9dd0b635, type: Blocks, state: done, event: exi"},{"event":"cmd_output","timestamp":1607098228,"output":"t_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098228,"output":"\n16:10:28.312 [info] ppl_id: c3c8dc93-eccb-4a42-9eee-90e7d3cfd455, type: PplSubInits, state: fetch"},{"event":"cmd_output","timestamp":1607098228,"output":"ing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L9"},{"event":"cmd_output","timestamp":1607098228,"output":"0), \n\u001b[0m\u001b[22m\n16:10:28.324 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.Regu"},{"event":"cmd_output","timestamp":1607098228,"output":"larInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:28.324 [info] ppl_id: 6d84b04f-3a70-4304-bdbb-4212"},{"event":"cmd_output","timestamp":1607098228,"output":"9be868a7, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098228,"output":"rigin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:28.327"},{"event":"cmd_output","timestamp":1607098228,"output":" [info] ppl_id: 6d84b04f-3a70-4304-bdbb-42129be868a7, type: PplSubInits, state: done, result: passe"},{"event":"cmd_output","timestamp":1607098228,"output":"d, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90)"},{"event":"cmd_output","timestamp":1607098228,"output":", \n\u001b[0m\u001b[22m\n16:10:28.341 [info] ppl_id: 6d84b04f-3a70-4304-bdbb-42129be868a7, type: PplBlocks, b"},{"event":"cmd_output","timestamp":1607098228,"output":"lock_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM."},{"event":"cmd_output","timestamp":1607098228,"output":"Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.345 [info] ppl_id: b862d192-f56c-46b8-9b40-9917"},{"event":"cmd_output","timestamp":1607098228,"output":"0c360c7a, block_id: d0805991-c64a-4528-b53c-e92e9dd0b635, type: PplBlocks, block_index: 0, state: do"},{"event":"cmd_output","timestamp":1607098228,"output":"ne, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_st"},{"event":"cmd_output","timestamp":1607098228,"output":"ate_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.354 [info] ppl_id: 6d84b04f-3a70-4304-bdbb-42129be868a7, t"},{"event":"cmd_output","timestamp":1607098228,"output":"ype: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl"},{"event":"cmd_output","timestamp":1607098228,"output":".log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.366 [info] ppl_id: c3c8dc93-eccb-4a42-9eee-90e7d3cf"},{"event":"cmd_output","timestamp":1607098228,"output":"d455, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098228,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.370 [info] ppl_id: b862d192-f56c"},{"event":"cmd_output","timestamp":1607098228,"output":"-46b8-9b40-99170c360c7a, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098228,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.375 [info] p"},{"event":"cmd_output","timestamp":1607098228,"output":"pl_id: 6d84b04f-3a70-4304-bdbb-42129be868a7, type: Ppls, state: queuing, event: exit_scheduling, rec"},{"event":"cmd_output","timestamp":1607098228,"output":"overy_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.389 [i"},{"event":"cmd_output","timestamp":1607098228,"output":"nfo] ppl_id: 6d84b04f-3a70-4304-bdbb-42129be868a7, type: Ppls, state: running, event: exit_scheduli"},{"event":"cmd_output","timestamp":1607098228,"output":"ng, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28"},{"event":"cmd_output","timestamp":1607098228,"output":".402 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"6d84b04f-3a70-4304-bdb"},{"event":"cmd_output","timestamp":1607098228,"output":"b-42129be868a7\"\n\u001b[0m\u001b[22m\n16:10:28.417 [info] block_id: da87f7ed-fe56-44cb-ac2c-c9b80fd8c604, typ"},{"event":"cmd_output","timestamp":1607098228,"output":"e: BlockRequests, event: persisted block run request from ppl 6d84b04f-3a70-4304-bdbb-42129be868a7 f"},{"event":"cmd_output","timestamp":1607098228,"output":"or block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \r"},{"event":"cmd_output","timestamp":1607098228,"output":"\n\u001b[0m\u001b[22m\n16:10:28.424 [info] ppl_id: c3c8dc93-eccb-4a42-9eee-90e7d3cfd455, type: PplRequests, ev"},{"event":"cmd_output","timestamp":1607098228,"output":"ent: persisted definition for request with request_token: 38496230-364b-11eb-ab50-5254005464e2, orig"},{"event":"cmd_output","timestamp":1607098228,"output":"in: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:28."},{"event":"cmd_output","timestamp":1607098228,"output":"426 [info] block_id: cea5cd5a-6ca8-4eb7-8397-6dde9468ad1f, type: Tasks, state: done, event: exit_sc"},{"event":"cmd_output","timestamp":1607098228,"output":"heduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098228,"output":":10:28.426 [info] block_id: da87f7ed-fe56-44cb-ac2c-c9b80fd8c604, type: Blocks, state: initializing"},{"event":"cmd_output","timestamp":1607098228,"output":", event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L"},{"event":"cmd_output","timestamp":1607098228,"output":"43), \n\u001b[0m\u001b[22m\n16:10:28.433 [info] ppl_id: eaba441e-9d94-4f55-8648-26b773c73488, type: PplReques"},{"event":"cmd_output","timestamp":1607098228,"output":"ts, event: persisted source_args for pipeline: eaba441e-9d94-4f55-8648-26b773c73488, origin: Elixir."},{"event":"cmd_output","timestamp":1607098228,"output":"Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:28.437 [info] Que"},{"event":"cmd_output","timestamp":1607098228,"output":"ue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, ins"},{"event":"cmd_output","timestamp":1607098228,"output":"erted_at: ~N[2020-12-04 16:10:28.430983], name: \"pull-request-1216-.semaphore/semaphore.yml\", organi"},{"event":"cmd_output","timestamp":1607098228,"output":"zation_id: \"87b991a2-9e63-44e2-a557-1b12410d69ab\", project_id: \"list_latest_workflows\", queue_id: \"6"},{"event":"cmd_output","timestamp":1607098228,"output":"9324df5-7196-4fde-b7db-7366927dec6a\", scope: \"project\", updated_at: ~N[2020-12-04 16:10:28.430996], "},{"event":"cmd_output","timestamp":1607098228,"output":"user_generated: false}}\n\u001b[0m\u001b[22m\n16:10:28.438 [info] Block 0 of pipeline with id: 6d84b04f-3a70-"},{"event":"cmd_output","timestamp":1607098228,"output":"4304-bdbb-42129be868a7 scheduled in block service with id: : \"da87f7ed-fe56-44cb-ac2c-c9b80fd8c604\"\r"},{"event":"cmd_output","timestamp":1607098228,"output":"\n\u001b[0m\u001b[22m\n16:10:28.440 [info] ppl_id: eaba441e-9d94-4f55-8648-26b773c73488, type: PplSubInits, st"},{"event":"cmd_output","timestamp":1607098228,"output":"ate: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098228,"output":"hange/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.442 [info] block_id: da87f7ed-fe56-44cb-ac2c-c9b80fd8c604, type"},{"event":"cmd_output","timestamp":1607098228,"output":": BlockRequests, event: persisted build and sub_ppl details for block_request: da87f7ed-fe56-44cb-ac"},{"event":"cmd_output","timestamp":1607098228,"output":"2c-c9b80fd8c604, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), "},{"event":"cmd_output","timestamp":1607098228,"output":"\n\u001b[0m\u001b[22m\n16:10:28.445 [info] block_id: cea5cd5a-6ca8-4eb7-8397-6dde9468ad1f, type: Blocks, stat"},{"event":"cmd_output","timestamp":1607098228,"output":"e: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/"},{"event":"cmd_output","timestamp":1607098228,"output":"1(L90), \n\u001b[0m\u001b[22m\n16:10:28.447 [info] block_id: da87f7ed-fe56-44cb-ac2c-c9b80fd8c604, type: Task"},{"event":"cmd_output","timestamp":1607098228,"output":"s, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.Initial"},{"event":"cmd_output","timestamp":1607098228,"output":"izingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:28.453 [info] block_id: da87f7ed-fe56-44cb-ac2c-c9b8"},{"event":"cmd_output","timestamp":1607098228,"output":"0fd8c604, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Lo"},{"event":"cmd_output","timestamp":1607098228,"output":"oper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.454 [info] ppl_id: 6d84b04f-3a70-4304-"},{"event":"cmd_output","timestamp":1607098228,"output":"bdbb-42129be868a7, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery"},{"event":"cmd_output","timestamp":1607098228,"output":"_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.455 [info] "},{"event":"cmd_output","timestamp":1607098228,"output":" event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098228,"output":"[22m\n16:10:28.456 [info] ppl_id: c3c8dc93-eccb-4a42-9eee-90e7d3cfd455, type: PplBlocks, block_inde"},{"event":"cmd_output","timestamp":1607098228,"output":"x: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHand"},{"event":"cmd_output","timestamp":1607098228,"output":"ler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:28.461 [info] ppl_id: c3c8dc93-eccb-4a42-9"},{"event":"cmd_output","timestamp":1607098228,"output":"eee-90e7d3cfd455, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098228,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.481 [info] p"},{"event":"cmd_output","timestamp":1607098228,"output":"pl_id: 608dc11e-6529-4912-9121-813bb4723eb4, block_id: cea5cd5a-6ca8-4eb7-8397-6dde9468ad1f, type: P"},{"event":"cmd_output","timestamp":1607098228,"output":"plBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098228,"output":"igin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.490 [info] ppl_id: c3c8"},{"event":"cmd_output","timestamp":1607098228,"output":"dc93-eccb-4a42-9eee-90e7d3cfd455, type: PplBlocks, block_index: 0, state: waiting, event: exit_sched"},{"event":"cmd_output","timestamp":1607098228,"output":"uling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10"},{"event":"cmd_output","timestamp":1607098228,"output":":28.491 [info] ppl_id: c3c8dc93-eccb-4a42-9eee-90e7d3cfd455, type: Ppls, state: pending, event: exi"},{"event":"cmd_output","timestamp":1607098228,"output":"t_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098228,"output":"\n16:10:28.497 [info] block_id: da87f7ed-fe56-44cb-ac2c-c9b80fd8c604, type: Tasks, state: running, "},{"event":"cmd_output","timestamp":1607098228,"output":"event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \r"},{"event":"cmd_output","timestamp":1607098228,"output":"\n\u001b[0m\u001b[22m\n16:10:28.512 [info] ppl_id: eaba441e-9d94-4f55-8648-26b773c73488, type: PplSubInits, st"},{"event":"cmd_output","timestamp":1607098228,"output":"ate: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_sta"},{"event":"cmd_output","timestamp":1607098228,"output":"te_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.516 [info] ppl_id: c3c8dc93-eccb-4a42-9eee-90e7d3cfd455, ty"},{"event":"cmd_output","timestamp":1607098228,"output":"pe: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl."},{"event":"cmd_output","timestamp":1607098228,"output":"log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.524 [info] ppl_id: 608dc11e-6529-4912-9121-813bb4723"},{"event":"cmd_output","timestamp":1607098228,"output":"eb4, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098228,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.542 [info] block_id: f36ccb28-b7"},{"event":"cmd_output","timestamp":1607098228,"output":"f0-4de4-9f14-135e2aa20a67, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098228,"output":"in: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.549 [info] ppl_id: c3c8dc"},{"event":"cmd_output","timestamp":1607098228,"output":"93-eccb-4a42-9eee-90e7d3cfd455, type: Ppls, state: running, event: exit_scheduling, recovery_count: "},{"event":"cmd_output","timestamp":1607098228,"output":"0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.553 [info] block_i"},{"event":"cmd_output","timestamp":1607098228,"output":"d: f36ccb28-b7f0-4de4-9f14-135e2aa20a67, type: Blocks, state: done, event: exit_scheduling, recovery"},{"event":"cmd_output","timestamp":1607098228,"output":"_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.559 [info] "},{"event":"cmd_output","timestamp":1607098228,"output":" ppl_id: eaba441e-9d94-4f55-8648-26b773c73488, type: PplRequests, event: persisted definition for re"},{"event":"cmd_output","timestamp":1607098228,"output":"quest with request_token: 384f9f2e-364b-11eb-9848-5254005464e2, origin: Elixir.Ppl.PplRequests.Model"},{"event":"cmd_output","timestamp":1607098228,"output":".PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:28.563 [info] PplBlocks WaitingSta"},{"event":"cmd_output","timestamp":1607098228,"output":"te STM is scheduling block 0 from pipeline: \"c3c8dc93-eccb-4a42-9eee-90e7d3cfd455\"\n\u001b[0m\u001b[22m\n16:10"},{"event":"cmd_output","timestamp":1607098228,"output":":28.565 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loa"},{"event":"cmd_output","timestamp":1607098228,"output":"ded, \"queues\">, inserted_at: ~N[2020-12-04 16:10:28.561746], name: \"pull-request-1217-.semaphore/sem"},{"event":"cmd_output","timestamp":1607098228,"output":"aphore.yml\", organization_id: \"17bbc787-159e-467c-9f9d-75b96b8c60f2\", project_id: \"list_latest_workf"},{"event":"cmd_output","timestamp":1607098228,"output":"lows\", queue_id: \"469906f5-f7f1-4361-ba8f-11e9e537aa82\", scope: \"project\", updated_at: ~N[2020-12-04"},{"event":"cmd_output","timestamp":1607098228,"output":" 16:10:28.561759], user_generated: false}}\n\u001b[0m\u001b[22m\n16:10:28.570 [info] block_id: 0494100d-85c6-"},{"event":"cmd_output","timestamp":1607098228,"output":"45a0-a408-9d259ac70fb2, type: BlockRequests, event: persisted block run request from ppl c3c8dc93-ec"},{"event":"cmd_output","timestamp":1607098228,"output":"cb-4a42-9eee-90e7d3cfd455 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries"},{"event":"cmd_output","timestamp":1607098228,"output":".process_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:28.574 [info] event: created, origin: Elixir.Ppl.PplSu"},{"event":"cmd_output","timestamp":1607098228,"output":"bInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:28.574 [info] ppl_id: eaba44"},{"event":"cmd_output","timestamp":1607098228,"output":"1e-9d94-4f55-8648-26b773c73488, type: PplBlocks, block_index: 0, state: initializing, event: created"},{"event":"cmd_output","timestamp":1607098228,"output":", recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b"},{"event":"cmd_output","timestamp":1607098228,"output":"[0m\u001b[22m\n16:10:28.575 [info] ppl_id: 0a0c3dd8-589a-4ee7-a8b4-a960b430b2c7, block_id: f36ccb28-b7f0"},{"event":"cmd_output","timestamp":1607098228,"output":"-4de4-9f14-135e2aa20a67, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_s"},{"event":"cmd_output","timestamp":1607098228,"output":"cheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098228,"output":"6:10:28.576 [info] block_id: 0494100d-85c6-45a0-a408-9d259ac70fb2, type: Blocks, state: initializin"},{"event":"cmd_output","timestamp":1607098228,"output":"g, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1("},{"event":"cmd_output","timestamp":1607098228,"output":"L43), \n\u001b[0m\u001b[22m\n16:10:28.580 [info] ppl_id: eaba441e-9d94-4f55-8648-26b773c73488, type: PplSubIn"},{"event":"cmd_output","timestamp":1607098228,"output":"its, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.S"},{"event":"cmd_output","timestamp":1607098228,"output":"TM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.585 [info] Block 0 of pipeline with id: c3c8"},{"event":"cmd_output","timestamp":1607098228,"output":"dc93-eccb-4a42-9eee-90e7d3cfd455 scheduled in block service with id: : \"0494100d-85c6-45a0-a408-9d25"},{"event":"cmd_output","timestamp":1607098228,"output":"9ac70fb2\"\n\u001b[0m\u001b[22m\n16:10:28.592 [info] ppl_id: c3c8dc93-eccb-4a42-9eee-90e7d3cfd455, type: PplBl"},{"event":"cmd_output","timestamp":1607098228,"output":"ocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loop"},{"event":"cmd_output","timestamp":1607098228,"output":"er.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.592 [info] block_id: 0494100d-85c6-45a0-"},{"event":"cmd_output","timestamp":1607098228,"output":"a408-9d259ac70fb2, type: BlockRequests, event: persisted build and sub_ppl details for block_request"},{"event":"cmd_output","timestamp":1607098228,"output":": 0494100d-85c6-45a0-a408-9d259ac70fb2, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQuerie"},{"event":"cmd_output","timestamp":1607098228,"output":"s.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:28.599 [info] ppl_id: eaba441e-9d94-4f55-8648-26b773c7348"},{"event":"cmd_output","timestamp":1607098228,"output":"8, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM."},{"event":"cmd_output","timestamp":1607098228,"output":"Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.603 [info] block_id: 0494100d-85c6-45a0-a408-9d"},{"event":"cmd_output","timestamp":1607098228,"output":"259ac70fb2, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blo"},{"event":"cmd_output","timestamp":1607098228,"output":"cks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:28.604 [info] ppl_id: eaba441e"},{"event":"cmd_output","timestamp":1607098228,"output":"-9d94-4f55-8648-26b773c73488, type: PplBlocks, block_index: 0, state: waiting, event: exit_schedulin"},{"event":"cmd_output","timestamp":1607098228,"output":"g, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28."},{"event":"cmd_output","timestamp":1607098228,"output":"606 [info] block_id: 0494100d-85c6-45a0-a408-9d259ac70fb2, type: Blocks, state: running, event: exi"},{"event":"cmd_output","timestamp":1607098228,"output":"t_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098228,"output":"\n16:10:28.614 [info] ppl_id: 0a0c3dd8-589a-4ee7-a8b4-a960b430b2c7, type: Ppls, state: done, result"},{"event":"cmd_output","timestamp":1607098228,"output":": passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change"},{"event":"cmd_output","timestamp":1607098228,"output":"/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.631 [info] ppl_id: eaba441e-9d94-4f55-8648-26b773c73488, type: Ppls,"},{"event":"cmd_output","timestamp":1607098228,"output":" state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state"},{"event":"cmd_output","timestamp":1607098228,"output":"_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.634 [info] block_id: 0494100d-85c6-45a0-a408-9d259ac70fb2, ty"},{"event":"cmd_output","timestamp":1607098228,"output":"pe: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl"},{"event":"cmd_output","timestamp":1607098228,"output":".log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.647 [info] ppl_id: eaba441e-9d94-4f55-8648-26b773c7"},{"event":"cmd_output","timestamp":1607098228,"output":"3488, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.S"},{"event":"cmd_output","timestamp":1607098228,"output":"TM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.660 [info] PplBlocks WaitingState STM is sch"},{"event":"cmd_output","timestamp":1607098228,"output":"eduling block 0 from pipeline: \"eaba441e-9d94-4f55-8648-26b773c73488\"\n\u001b[0m\u001b[22m\n16:10:28.665 [info"},{"event":"cmd_output","timestamp":1607098228,"output":"] block_id: da87f7ed-fe56-44cb-ac2c-c9b80fd8c604, type: Tasks, state: done, event: exit_scheduling,"},{"event":"cmd_output","timestamp":1607098228,"output":" recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.66"},{"event":"cmd_output","timestamp":1607098228,"output":"9 [info] block_id: c60d6438-e77f-469f-b073-8fe80026b7d9, type: BlockRequests, event: persisted bloc"},{"event":"cmd_output","timestamp":1607098228,"output":"k run request from ppl eaba441e-9d94-4f55-8648-26b773c73488 for block 0, origin: Elixir.Block.BlockR"},{"event":"cmd_output","timestamp":1607098228,"output":"equests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:28.672 [info] block_"},{"event":"cmd_output","timestamp":1607098228,"output":"id: c60d6438-e77f-469f-b073-8fe80026b7d9, type: Blocks, state: initializing, event: initializing, re"},{"event":"cmd_output","timestamp":1607098228,"output":"covery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:2"},{"event":"cmd_output","timestamp":1607098228,"output":"8.674 [info] block_id: da87f7ed-fe56-44cb-ac2c-c9b80fd8c604, type: Blocks, state: done, event: exit"},{"event":"cmd_output","timestamp":1607098228,"output":"_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098228,"output":"\n16:10:28.676 [info] Block 0 of pipeline with id: eaba441e-9d94-4f55-8648-26b773c73488 scheduled in"},{"event":"cmd_output","timestamp":1607098228,"output":" block service with id: : \"c60d6438-e77f-469f-b073-8fe80026b7d9\"\n\u001b[0m\u001b[22m\n16:10:28.681 [info] pp"},{"event":"cmd_output","timestamp":1607098228,"output":"l_id: eaba441e-9d94-4f55-8648-26b773c73488, type: PplBlocks, block_index: 0, state: running, event: "},{"event":"cmd_output","timestamp":1607098228,"output":"exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098228,"output":"22m\n16:10:28.682 [info] block_id: c60d6438-e77f-469f-b073-8fe80026b7d9, type: BlockRequests, event"},{"event":"cmd_output","timestamp":1607098228,"output":": persisted build and sub_ppl details for block_request: c60d6438-e77f-469f-b073-8fe80026b7d9, origi"},{"event":"cmd_output","timestamp":1607098228,"output":"n: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:28."},{"event":"cmd_output","timestamp":1607098228,"output":"685 [info] block_id: c60d6438-e77f-469f-b073-8fe80026b7d9, type: Tasks, state: pending, event: crea"},{"event":"cmd_output","timestamp":1607098228,"output":"ted, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n"},{"event":"cmd_output","timestamp":1607098228,"output":"\u001b[0m\u001b[22m\n16:10:28.686 [info] ppl_id: 6d84b04f-3a70-4304-bdbb-42129be868a7, block_id: da87f7ed-fe5"},{"event":"cmd_output","timestamp":1607098228,"output":"6-44cb-ac2c-c9b80fd8c604, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_"},{"event":"cmd_output","timestamp":1607098228,"output":"scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098228,"output":"16:10:28.689 [info] block_id: c60d6438-e77f-469f-b073-8fe80026b7d9, type: Blocks, state: running, e"},{"event":"cmd_output","timestamp":1607098228,"output":"vent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n"},{"event":"cmd_output","timestamp":1607098228,"output":"\u001b[0m\u001b[22m\n16:10:28.712 [info] ppl_id: 6d84b04f-3a70-4304-bdbb-42129be868a7, type: Ppls, state: don"},{"event":"cmd_output","timestamp":1607098228,"output":"e, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_sta"},{"event":"cmd_output","timestamp":1607098228,"output":"te_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.716 [info] block_id: c60d6438-e77f-469f-b073-8fe80026b7d9, "},{"event":"cmd_output","timestamp":1607098228,"output":"type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Im"},{"event":"cmd_output","timestamp":1607098228,"output":"pl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.777 [info] block_id: 0494100d-85c6-45a0-a408-9d25"},{"event":"cmd_output","timestamp":1607098228,"output":"9ac70fb2, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper"},{"event":"cmd_output","timestamp":1607098228,"output":".STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.783 [info] block_id: 0494100d-85c6-45a0-a4"},{"event":"cmd_output","timestamp":1607098228,"output":"08-9d259ac70fb2, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098228,"output":"r.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.792 [info] ppl_id: c3c8dc93-eccb-4"},{"event":"cmd_output","timestamp":1607098228,"output":"a42-9eee-90e7d3cfd455, block_id: 0494100d-85c6-45a0-a408-9d259ac70fb2, type: PplBlocks, block_index:"},{"event":"cmd_output","timestamp":1607098228,"output":" 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.ST"},{"event":"cmd_output","timestamp":1607098228,"output":"M.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.807 [info] ppl_id: c3c8dc93-eccb-4a42-9eee-90"},{"event":"cmd_output","timestamp":1607098228,"output":"e7d3cfd455, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098228,"output":"in: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.888 [info] block_id: c60d"},{"event":"cmd_output","timestamp":1607098228,"output":"6438-e77f-469f-b073-8fe80026b7d9, type: Tasks, state: done, event: exit_scheduling, recovery_count: "},{"event":"cmd_output","timestamp":1607098228,"output":"0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.894 [info] block_i"},{"event":"cmd_output","timestamp":1607098228,"output":"d: c60d6438-e77f-469f-b073-8fe80026b7d9, type: Blocks, state: done, event: exit_scheduling, recovery"},{"event":"cmd_output","timestamp":1607098228,"output":"_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.901 [info] "},{"event":"cmd_output","timestamp":1607098228,"output":" ppl_id: eaba441e-9d94-4f55-8648-26b773c73488, block_id: c60d6438-e77f-469f-b073-8fe80026b7d9, type:"},{"event":"cmd_output","timestamp":1607098228,"output":" PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098228,"output":"origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.914 [info] ppl_id: ea"},{"event":"cmd_output","timestamp":1607098228,"output":"ba441e-9d94-4f55-8648-26b773c73488, type: Ppls, state: done, result: passed, event: exit_scheduling,"},{"event":"cmd_output","timestamp":1607098228,"output":" recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test gRP"},{"event":"cmd_output","timestamp":1607098228,"output":"C list_latest_workflows() - returns latest workflow per distinct label when given valid params (3991"},{"event":"cmd_output","timestamp":1607098229,"output":".3ms)\u001b[0m\n * test gRPC reschedule() - limit exceeded\u001b[22m\n16:10:29.084 [info] Request: 'run: %{\""},{"event":"cmd_output","timestamp":1607098229,"output":"branch_id\" => \"aa82461f-61eb-489d-97ca-4ac819c9b0e5\", \"branch_name\" => \"master\", \"client_id\" => \"a50"},{"event":"cmd_output","timestamp":1607098229,"output":"a5c53-9c48-4265-88b1-e94dddc5ca88\", \"commit_sha\" => \"75891a4469\", \"definition_file\" => \"\", \"hook_id\""},{"event":"cmd_output","timestamp":1607098229,"output":" => \"3a233e50-364b-11eb-94bb-5254005464e2\", \"label\" => \"master\", \"organization_id\" => \"e8f27a39-d336"},{"event":"cmd_output","timestamp":1607098229,"output":"-4f12-a056-645e5c1657ea\", \"owner\" => \"rt\", \"project_id\" => \"to-queue\", \"repo_name\" => \"2_basic\", \"re"},{"event":"cmd_output","timestamp":1607098229,"output":"quest_token\" => \"3a23334c-364b-11eb-b39d-5254005464e2\", \"requester_id\" => \"d93e17de-3dbd-4c9d-85f2-9"},{"event":"cmd_output","timestamp":1607098229,"output":"16be2b2a363\", \"service\" => \"local\", \"snapshot_id\" => \"\", \"suppressed_attributes\" => [\"access_token\","},{"event":"cmd_output","timestamp":1607098229,"output":" \"client_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"63e6437e-bcac-4f98-8ec2-c75b4c7cb169\"}\n\u001b[0"},{"event":"cmd_output","timestamp":1607098229,"output":"m\u001b[22m\n16:10:29.145 [info] ppl_id: 248ae406-5d75-4953-b21c-8c9c0315780e, type: PplRequests, event:"},{"event":"cmd_output","timestamp":1607098229,"output":" persisted schedule request with request_token: 3a23334c-364b-11eb-b39d-5254005464e2, origin: Elixir"},{"event":"cmd_output","timestamp":1607098229,"output":".Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:29.159 [info] "},{"event":"cmd_output","timestamp":1607098229,"output":" ppl_id: 248ae406-5d75-4953-b21c-8c9c0315780e, type: Ppls, state: initializing, event: initializing,"},{"event":"cmd_output","timestamp":1607098229,"output":" recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098229,"output":"\n16:10:29.166 [info] Project to-queue and branch masterlatest_wf details updated: \"wf_id: 63e6437e-"},{"event":"cmd_output","timestamp":1607098229,"output":"bcac-4f98-8ec2-c75b4c7cb169, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:10:29.169 [info] Persisted ppl_sub_init f"},{"event":"cmd_output","timestamp":1607098229,"output":"or pipeline with ppl_id: 248ae406-5d75-4953-b21c-8c9c0315780e: %Ppl.PplSubInits.Model.PplSubInits{__"},{"event":"cmd_output","timestamp":1607098229,"output":"meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_descriptio"},{"event":"cmd_output","timestamp":1607098229,"output":"n: nil, id: 60, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:10:29.1682"},{"event":"cmd_output","timestamp":1607098229,"output":"55], pipeline_requests: #Ecto.Association.NotLoaded, p"},{"event":"cmd_output","timestamp":1607098229,"output":"pl_id: \"248ae406-5d75-4953-b21c-8c9c0315780e\", recovery_count: 0, result: nil, result_reason: nil, s"},{"event":"cmd_output","timestamp":1607098229,"output":"tate: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:1"},{"event":"cmd_output","timestamp":1607098229,"output":"0:29.168265]}\n\u001b[0m\u001b[22m\n16:10:29.181 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.Initi"},{"event":"cmd_output","timestamp":1607098229,"output":"alizingState with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms, metric_name: "},{"event":"cmd_output","timestamp":1607098229,"output":"{\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %{allowed_state"},{"event":"cmd_output","timestamp":1607098229,"output":"s: [\"initializing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, obs"},{"event":"cmd_output","timestamp":1607098229,"output":"erved_state: \"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.Initializi"},{"event":"cmd_output","timestamp":1607098229,"output":"ngState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :resu"},{"event":"cmd_output","timestamp":1607098229,"output":"lt, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098229,"output":"0:29.182 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.P"},{"event":"cmd_output","timestamp":1607098229,"output":"pls.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMH"},{"event":"cmd_output","timestamp":1607098229,"output":"andler-PendingState\"]}, recurring args: %{allowed_states: [\"pending\", \"queuing\", \"running\", \"done\"],"},{"event":"cmd_output","timestamp":1607098229,"output":" cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publisher_cb: #"},{"event":"cmd_output","timestamp":1607098229,"output":"Function<0.8493005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:i"},{"event":"cmd_output","timestamp":1607098229,"output":"d, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Mod"},{"event":"cmd_output","timestamp":1607098229,"output":"el.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:10:29.182 [info] Periodic from module "},{"event":"cmd_output","timestamp":1607098229,"output":"Elixir.Ppl.Ppls.STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period:"},{"event":"cmd_output","timestamp":1607098229,"output":" 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args"},{"event":"cmd_output","timestamp":1607098229,"output":": %{allowed_states: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Mo"},{"event":"cmd_output","timestamp":1607098229,"output":"del.Ppls, observed_state: \"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.Qu"},{"event":"cmd_output","timestamp":1607098229,"output":"euingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :r"},{"event":"cmd_output","timestamp":1607098229,"output":"esult, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098229,"output":"6:10:29.183 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedState with name El"},{"event":"cmd_output","timestamp":1607098229,"output":"ixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\""},{"event":"cmd_output","timestamp":1607098229,"output":", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args: %{allowed_states: [\"fetching\", \"done"},{"event":"cmd_output","timestamp":1607098229,"output":"\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"created\""},{"event":"cmd_output","timestamp":1607098229,"output":", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state,"},{"event":"cmd_output","timestamp":1607098229,"output":" :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :sk"},{"event":"cmd_output","timestamp":1607098229,"output":"ip}\n\u001b[0m\u001b[22m\n16:10:29.183 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.Fetching"},{"event":"cmd_output","timestamp":1607098229,"output":"State with name Elixir.Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 ms, metric_name: {\"Pp"},{"event":"cmd_output","timestamp":1607098229,"output":"l.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %{allowed_states"},{"event":"cmd_output","timestamp":1607098229,"output":": [\"regular_init\", \"compilation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Mode"},{"event":"cmd_output","timestamp":1607098229,"output":"l.PplSubInits, observed_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id,"},{"event":"cmd_output","timestamp":1607098229,"output":" :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInit"},{"event":"cmd_output","timestamp":1607098229,"output":"s.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:29.183 [info] Periodic from module E"},{"event":"cmd_output","timestamp":1607098229,"output":"lixir.Ppl.PplSubInits.STMHandler.CompilationState with name Elixir.Ppl.PplSubInits.STMHandler.Compil"},{"event":"cmd_output","timestamp":1607098229,"output":"ationState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-Com"},{"event":"cmd_output","timestamp":1607098229,"output":"pilationState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"stopping\", \"don"},{"event":"cmd_output","timestamp":1607098229,"output":"e\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"compil"},{"event":"cmd_output","timestamp":1607098229,"output":"ation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :"},{"event":"cmd_output","timestamp":1607098229,"output":"state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_superviso"},{"event":"cmd_output","timestamp":1607098229,"output":"r: :skip}\n\u001b[0m\u001b[22m\n16:10:29.184 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.Re"},{"event":"cmd_output","timestamp":1607098229,"output":"gularInitState with name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period: 100 ms, metri"},{"event":"cmd_output","timestamp":1607098229,"output":"c_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurring args: %"},{"event":"cmd_output","timestamp":1607098229,"output":"{allowed_states: [\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, ob"},{"event":"cmd_output","timestamp":1607098229,"output":"served_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_r"},{"event":"cmd_output","timestamp":1607098229,"output":"equest, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSu"},{"event":"cmd_output","timestamp":1607098229,"output":"bInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:29.314 [info] ppl_id: 248ae406-5d75-4953-b21c-8c9"},{"event":"cmd_output","timestamp":1607098229,"output":"c0315780e, type: PplRequests, event: persisted source_args for pipeline: 248ae406-5d75-4953-b21c-8c9"},{"event":"cmd_output","timestamp":1607098229,"output":"c0315780e, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098229,"output":"\n16:10:29.318 [info] ppl_id: 248ae406-5d75-4953-b21c-8c9c0315780e, type: PplSubInits, state: fetch"},{"event":"cmd_output","timestamp":1607098229,"output":"ing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L9"},{"event":"cmd_output","timestamp":1607098229,"output":"0), \n\u001b[0m\u001b[22m\n16:10:29.347 [info] ppl_id: 248ae406-5d75-4953-b21c-8c9c0315780e, type: PplSubInit"},{"event":"cmd_output","timestamp":1607098229,"output":"s, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.lo"},{"event":"cmd_output","timestamp":1607098229,"output":"g_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:29.381 [info] ppl_id: 248ae406-5d75-4953-b21c-8c9c0315780"},{"event":"cmd_output","timestamp":1607098229,"output":"e, type: PplRequests, event: persisted definition for request with request_token: 3a23334c-364b-11eb"},{"event":"cmd_output","timestamp":1607098229,"output":"-b39d-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76)"},{"event":"cmd_output","timestamp":1607098229,"output":", \n\u001b[0m\u001b[22m\n16:10:29.391 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto."},{"event":"cmd_output","timestamp":1607098229,"output":"Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:10:29.383958], name: \"master-.sema"},{"event":"cmd_output","timestamp":1607098229,"output":"phore/semaphore.yml\", organization_id: \"e8f27a39-d336-4f12-a056-645e5c1657ea\", project_id: \"to-queue"},{"event":"cmd_output","timestamp":1607098229,"output":"\", queue_id: \"bfa3cb39-0a5f-4204-8131-e89c97ff9d4b\", scope: \"project\", updated_at: ~N[2020-12-04 16:"},{"event":"cmd_output","timestamp":1607098229,"output":"10:29.383973], user_generated: false}}\n\u001b[0m\u001b[22m\n16:10:29.401 [info] event: created, origin: Elix"},{"event":"cmd_output","timestamp":1607098229,"output":"ir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:29.401 [info] pp"},{"event":"cmd_output","timestamp":1607098229,"output":"l_id: 248ae406-5d75-4953-b21c-8c9c0315780e, type: PplBlocks, block_index: 0, state: initializing, ev"},{"event":"cmd_output","timestamp":1607098229,"output":"ent: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/"},{"event":"cmd_output","timestamp":1607098229,"output":"1(L105), \n\u001b[0m\u001b[22m\n16:10:29.405 [info] ppl_id: 248ae406-5d75-4953-b21c-8c9c0315780e, type: PplSu"},{"event":"cmd_output","timestamp":1607098229,"output":"bInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loope"},{"event":"cmd_output","timestamp":1607098229,"output":"r.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:29.415 [info] ppl_id: 248ae406-5d75-4953-b21"},{"event":"cmd_output","timestamp":1607098229,"output":"c-8c9c0315780e, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098229,"output":"r.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:29.433 [info] ppl_id: 248ae406-5d75-4"},{"event":"cmd_output","timestamp":1607098229,"output":"953-b21c-8c9c0315780e, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098229,"output":": Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:29.450 [info] ppl_id: 248ae406"},{"event":"cmd_output","timestamp":1607098229,"output":"-5d75-4953-b21c-8c9c0315780e, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098229,"output":" origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:29.511 [info] Request: "},{"event":"cmd_output","timestamp":1607098229,"output":"'run: %{\"branch_id\" => \"8232aaee-6cda-4bbc-84d2-842b0cd818db\", \"branch_name\" => \"master\", \"client_id"},{"event":"cmd_output","timestamp":1607098229,"output":"\" => \"12f72c49-334e-4e81-918c-ef4e341c132b\", \"commit_sha\" => \"75891a4469\", \"definition_file\" => \"\", "},{"event":"cmd_output","timestamp":1607098229,"output":"\"hook_id\" => \"3a649666-364b-11eb-8156-5254005464e2\", \"label\" => \"master\", \"organization_id\" => \"46d3"},{"event":"cmd_output","timestamp":1607098229,"output":"8963-0d4a-4b0c-8ab3-3ea20ec7f1ea\", \"owner\" => \"rt\", \"project_id\" => \"to-queue\", \"repo_name\" => \"2_ba"},{"event":"cmd_output","timestamp":1607098229,"output":"sic\", \"request_token\" => \"3a648ad6-364b-11eb-a770-5254005464e2\", \"requester_id\" => \"a34f0514-9ca9-46"},{"event":"cmd_output","timestamp":1607098229,"output":"d1-a684-1649567c4b2d\", \"service\" => \"local\", \"snapshot_id\" => \"\", \"suppressed_attributes\" => [\"acces"},{"event":"cmd_output","timestamp":1607098229,"output":"s_token\", \"client_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"dc339ad7-20d2-432f-8046-d1609f6f3c"},{"event":"cmd_output","timestamp":1607098229,"output":"40\"}\n\u001b[0m\u001b[22m\n16:10:29.568 [info] ppl_id: 940e1761-b198-4278-8b5d-1dcfe6054716, type: PplRequest"},{"event":"cmd_output","timestamp":1607098229,"output":"s, event: persisted schedule request with request_token: 3a648ad6-364b-11eb-a770-5254005464e2, origi"},{"event":"cmd_output","timestamp":1607098229,"output":"n: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:29.57"},{"event":"cmd_output","timestamp":1607098229,"output":"0 [info] ppl_id: 940e1761-b198-4278-8b5d-1dcfe6054716, type: Ppls, state: initializing, event: init"},{"event":"cmd_output","timestamp":1607098229,"output":"ializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b"},{"event":"cmd_output","timestamp":1607098229,"output":"[0m\u001b[22m\n16:10:29.574 [info] Project to-queue and branch masterlatest_wf details updated: \"wf_id: "},{"event":"cmd_output","timestamp":1607098229,"output":"dc339ad7-20d2-432f-8046-d1609f6f3c40, wf_number: 2\"\n\u001b[0m\u001b[22m\n16:10:29.576 [info] Persisted ppl_s"},{"event":"cmd_output","timestamp":1607098229,"output":"ub_init for pipeline with ppl_id: 940e1761-b198-4278-8b5d-1dcfe6054716: %Ppl.PplSubInits.Model.PplSu"},{"event":"cmd_output","timestamp":1607098229,"output":"bInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_d"},{"event":"cmd_output","timestamp":1607098229,"output":"escription: nil, id: 61, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:1"},{"event":"cmd_output","timestamp":1607098229,"output":"0:29.574835], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"940e1761-b198-4278-8b5d-1dcfe6054716\", recovery_count: 0, result: nil, result_reaso"},{"event":"cmd_output","timestamp":1607098229,"output":"n: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-1"},{"event":"cmd_output","timestamp":1607098229,"output":"2-04 16:10:29.574845]}\n\u001b[0m\u001b[22m\n16:10:29.594 [info] ppl_id: 940e1761-b198-4278-8b5d-1dcfe6054716"},{"event":"cmd_output","timestamp":1607098229,"output":", type: PplRequests, event: persisted source_args for pipeline: 940e1761-b198-4278-8b5d-1dcfe6054716"},{"event":"cmd_output","timestamp":1607098229,"output":", origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:2"},{"event":"cmd_output","timestamp":1607098229,"output":"9.597 [info] ppl_id: 940e1761-b198-4278-8b5d-1dcfe6054716, type: PplSubInits, state: fetching, even"},{"event":"cmd_output","timestamp":1607098229,"output":"t: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098229,"output":"m\u001b[22m\n16:10:29.620 [info] ppl_id: 940e1761-b198-4278-8b5d-1dcfe6054716, type: PplSubInits, state:"},{"event":"cmd_output","timestamp":1607098229,"output":" regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098229,"output":"hange/1(L90), \n\u001b[0m\u001b[22m\n16:10:29.644 [info] ppl_id: 940e1761-b198-4278-8b5d-1dcfe6054716, type: "},{"event":"cmd_output","timestamp":1607098229,"output":"PplRequests, event: persisted definition for request with request_token: 3a648ad6-364b-11eb-a770-525"},{"event":"cmd_output","timestamp":1607098229,"output":"4005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098229,"output":"[22m\n16:10:29.667 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitStat"},{"event":"cmd_output","timestamp":1607098229,"output":"e.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:29.668 [info] ppl_id: 940e1761-b198-4278-8b5d-1dcfe6054716, t"},{"event":"cmd_output","timestamp":1607098229,"output":"ype: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098229,"output":"ir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:29.670 [info] pp"},{"event":"cmd_output","timestamp":1607098229,"output":"l_id: 940e1761-b198-4278-8b5d-1dcfe6054716, type: PplSubInits, state: done, result: passed, event: e"},{"event":"cmd_output","timestamp":1607098229,"output":"xit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098229,"output":"2m\n16:10:29.678 [info] ppl_id: 940e1761-b198-4278-8b5d-1dcfe6054716, type: Ppls, state: pending, e"},{"event":"cmd_output","timestamp":1607098229,"output":"vent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n"},{"event":"cmd_output","timestamp":1607098229,"output":"\u001b[0m\u001b[22m\n16:10:29.694 [info] ppl_id: 940e1761-b198-4278-8b5d-1dcfe6054716, type: Ppls, state: que"},{"event":"cmd_output","timestamp":1607098229,"output":"uing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098229,"output":"90), \n\u001b[0m\u001b[32m\r * test gRPC reschedule() - limit exceeded (844.1ms)\u001b[0m\n * test gRPC describe()"},{"event":"cmd_output","timestamp":1607098229,"output":" - succedes when given valid params\r * test gRPC describe() - succedes when given valid params (ski"},{"event":"cmd_output","timestamp":1607098229,"output":"pped)\n * test gRPC list_labels() - fails when project_id is omitted\r * test gRPC list_labels() - "},{"event":"cmd_output","timestamp":1607098229,"output":"fails when project_id is omitted (skipped)\n * test gRPC list_keyset() - succeeds when given valid "},{"event":"cmd_output","timestamp":1607098229,"output":"params\r * test gRPC list_keyset() - succeeds when given valid params (skipped)\n * test gRPC get_p"},{"event":"cmd_output","timestamp":1607098229,"output":"roject_id() - succedes when given valid wf_id\r * test gRPC get_project_id() - succedes when given v"},{"event":"cmd_output","timestamp":1607098229,"output":"alid wf_id (skipped)\n * test gRPC list() - failes when project_ids, project_id and organization_i"},{"event":"cmd_output","timestamp":1607098229,"output":"d is omitted\r * test gRPC list() - failes when project_ids, project_id and organization_id is omit"},{"event":"cmd_output","timestamp":1607098229,"output":"ted (skipped)\n * test gRPC list_grouped_ks() - returns latest workflow per distinct label when giv"},{"event":"cmd_output","timestamp":1607098229,"output":"en valid params\u001b[22m\n16:10:29.915 [info] Request: 'run: %{\"branch_id\" => \"4f53840a-9ed2-476e-9f9e-"},{"event":"cmd_output","timestamp":1607098229,"output":"770d1449e801\", \"branch_name\" => \"master\", \"client_id\" => \"7d10e8c7-0adf-4745-9513-afedb72ff31f\", \"co"},{"event":"cmd_output","timestamp":1607098229,"output":"mmit_sha\" => \"75891a4469\", \"definition_file\" => \"\", \"hook_id\" => \"branch\", \"label\" => \"master-0\", \"o"},{"event":"cmd_output","timestamp":1607098229,"output":"rganization_id\" => \"3068e1a1-6eb8-4b03-8b50-928fa9e86e87\", \"owner\" => \"rt\", \"project_id\" => \"list_gr"},{"event":"cmd_output","timestamp":1607098229,"output":"ouped_ks\", \"repo_name\" => \"2_basic\", \"request_token\" => \"3aa241aa-364b-11eb-94b3-5254005464e2\", \"req"},{"event":"cmd_output","timestamp":1607098229,"output":"uester_id\" => \"1bf655f8-1e5c-4adf-a17e-bc7b5a8f3fab\", \"service\" => \"local\", \"snapshot_id\" => \"\", \"su"},{"event":"cmd_output","timestamp":1607098229,"output":"ppressed_attributes\" => [\"access_token\", \"client_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"472"},{"event":"cmd_output","timestamp":1607098229,"output":"0139f-4ec6-499d-9791-b76e44a67f96\"}\n\u001b[0m\u001b[22m\n16:10:29.945 [info] ppl_id: e3a9c4c7-02e5-4ff9-9ff5"},{"event":"cmd_output","timestamp":1607098229,"output":"-4b33ed789a05, type: PplRequests, event: persisted schedule request with request_token: 3aa241aa-364"},{"event":"cmd_output","timestamp":1607098229,"output":"b-11eb-94b3-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2"},{"event":"cmd_output","timestamp":1607098229,"output":"(L55), \n\u001b[0m\u001b[22m\n16:10:29.949 [info] ppl_id: e3a9c4c7-02e5-4ff9-9ff5-4b33ed789a05, type: Ppls, s"},{"event":"cmd_output","timestamp":1607098229,"output":"tate: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQuerie"},{"event":"cmd_output","timestamp":1607098229,"output":"s.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:29.954 [info] Project list_grouped_ks and branch mas"},{"event":"cmd_output","timestamp":1607098229,"output":"terlatest_wf details updated: \"wf_id: 4720139f-4ec6-499d-9791-b76e44a67f96, wf_number: 1\"\n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098229,"output":"\n16:10:29.957 [info] Persisted ppl_sub_init for pipeline with ppl_id: e3a9c4c7-02e5-4ff9-9ff5-4b33"},{"event":"cmd_output","timestamp":1607098229,"output":"ed789a05: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_"},{"event":"cmd_output","timestamp":1607098229,"output":"inits\">, compile_task_id: nil, error_description: nil, id: 62, in_scheduling: false, init_type: \"reg"},{"event":"cmd_output","timestamp":1607098229,"output":"ular\", inserted_at: ~N[2020-12-04 16:10:29.955933], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"e3a9c4c7-02e5-4ff9-9ff5-4b33ed789a05\", recove"},{"event":"cmd_output","timestamp":1607098229,"output":"ry_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_re"},{"event":"cmd_output","timestamp":1607098229,"output":"quest_desc: nil, updated_at: ~N[2020-12-04 16:10:29.955942]}\n\u001b[0m\u001b[22m\n16:10:29.968 [info] Reques"},{"event":"cmd_output","timestamp":1607098229,"output":"t: 'run: %{\"branch_id\" => \"5131b933-79e7-4831-9906-36d730c69dbf\", \"branch_name\" => \"master\", \"client"},{"event":"cmd_output","timestamp":1607098229,"output":"_id\" => \"3beb5dc4-1fd6-4132-bfbd-a78868d57721\", \"commit_sha\" => \"75891a4469\", \"definition_file\" => \""},{"event":"cmd_output","timestamp":1607098229,"output":"\", \"hook_id\" => \"branch\", \"label\" => \"master-1\", \"organization_id\" => \"34fc9efd-66b1-498a-a46f-98f8b"},{"event":"cmd_output","timestamp":1607098229,"output":"acc7b0e\", \"owner\" => \"rt\", \"project_id\" => \"list_grouped_ks\", \"repo_name\" => \"2_basic\", \"request_tok"},{"event":"cmd_output","timestamp":1607098229,"output":"en\" => \"3aaa917a-364b-11eb-99b4-5254005464e2\", \"requester_id\" => \"a8a30e1b-a31d-4a27-8fa1-bb013db8bf"},{"event":"cmd_output","timestamp":1607098229,"output":"44\", \"service\" => \"local\", \"snapshot_id\" => \"\", \"suppressed_attributes\" => [\"access_token\", \"client_"},{"event":"cmd_output","timestamp":1607098230,"output":"secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"fa436d2e-c0d3-49d3-8503-2b65b2200a2c\"}\n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098230,"output":"6:10:30.006 [info] ppl_id: 64ee8488-bea7-473e-b5b0-f45461ecbcc2, type: PplRequests, event: persiste"},{"event":"cmd_output","timestamp":1607098230,"output":"d schedule request with request_token: 3aaa917a-364b-11eb-99b4-5254005464e2, origin: Elixir.Ppl.PplR"},{"event":"cmd_output","timestamp":1607098230,"output":"equests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:30.012 [info] ppl_id: "},{"event":"cmd_output","timestamp":1607098230,"output":"64ee8488-bea7-473e-b5b0-f45461ecbcc2, type: Ppls, state: initializing, event: initializing, recovery"},{"event":"cmd_output","timestamp":1607098230,"output":"_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:30"},{"event":"cmd_output","timestamp":1607098230,"output":".014 [info] Project list_grouped_ks and branch masterlatest_wf details updated: \"wf_id: fa436d2e-c0"},{"event":"cmd_output","timestamp":1607098230,"output":"d3-49d3-8503-2b65b2200a2c, wf_number: 2\"\n\u001b[0m\u001b[22m\n16:10:30.016 [info] Persisted ppl_sub_init for"},{"event":"cmd_output","timestamp":1607098230,"output":" pipeline with ppl_id: 64ee8488-bea7-473e-b5b0-f45461ecbcc2: %Ppl.PplSubInits.Model.PplSubInits{__me"},{"event":"cmd_output","timestamp":1607098230,"output":"ta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description:"},{"event":"cmd_output","timestamp":1607098230,"output":" nil, id: 63, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:10:30.014930"},{"event":"cmd_output","timestamp":1607098230,"output":"], pipeline_requests: #Ecto.Association.NotLoaded, ppl"},{"event":"cmd_output","timestamp":1607098230,"output":"_id: \"64ee8488-bea7-473e-b5b0-f45461ecbcc2\", recovery_count: 0, result: nil, result_reason: nil, sta"},{"event":"cmd_output","timestamp":1607098230,"output":"te: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:"},{"event":"cmd_output","timestamp":1607098230,"output":"30.014938]}\n\u001b[0m\u001b[22m\n16:10:30.025 [info] Request: 'run: %{\"branch_id\" => \"e800d1db-cd6b-4419-910"},{"event":"cmd_output","timestamp":1607098230,"output":"7-c9270ae61d08\", \"branch_name\" => \"master\", \"client_id\" => \"10d8f97e-1a5d-4f6a-a638-9c8a8bf23321\", \""},{"event":"cmd_output","timestamp":1607098230,"output":"commit_sha\" => \"75891a4469\", \"definition_file\" => \"\", \"hook_id\" => \"branch\", \"label\" => \"master-2\", "},{"event":"cmd_output","timestamp":1607098230,"output":"\"organization_id\" => \"ebc1a532-6fb1-443c-a0b5-b21b3d9f1f56\", \"owner\" => \"rt\", \"project_id\" => \"list_"},{"event":"cmd_output","timestamp":1607098230,"output":"grouped_ks\", \"repo_name\" => \"2_basic\", \"request_token\" => \"3ab344be-364b-11eb-982d-5254005464e2\", \"r"},{"event":"cmd_output","timestamp":1607098230,"output":"equester_id\" => \"6cb166a0-73d3-4194-a70e-dcb6e6a8a12a\", \"service\" => \"local\", \"snapshot_id\" => \"\", \""},{"event":"cmd_output","timestamp":1607098230,"output":"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"6"},{"event":"cmd_output","timestamp":1607098230,"output":"99d53da-47ac-4020-9afd-5a9231a9542e\"}\n\u001b[0m\u001b[22m\n16:10:30.049 [info] ppl_id: f724d2a2-4bc3-4d5a-bf"},{"event":"cmd_output","timestamp":1607098230,"output":"10-dd079113c0d3, type: PplRequests, event: persisted schedule request with request_token: 3ab344be-3"},{"event":"cmd_output","timestamp":1607098230,"output":"64b-11eb-982d-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response"},{"event":"cmd_output","timestamp":1607098230,"output":"/2(L55), \n\u001b[0m\u001b[22m\n16:10:30.053 [info] ppl_id: f724d2a2-4bc3-4d5a-bf10-dd079113c0d3, type: Ppls,"},{"event":"cmd_output","timestamp":1607098230,"output":" state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQuer"},{"event":"cmd_output","timestamp":1607098230,"output":"ies.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:30.056 [info] Project list_grouped_ks and branch m"},{"event":"cmd_output","timestamp":1607098230,"output":"asterlatest_wf details updated: \"wf_id: 699d53da-47ac-4020-9afd-5a9231a9542e, wf_number: 3\"\n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098230,"output":"2m\n16:10:30.057 [info] Persisted ppl_sub_init for pipeline with ppl_id: f724d2a2-4bc3-4d5a-bf10-dd"},{"event":"cmd_output","timestamp":1607098230,"output":"079113c0d3: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_su"},{"event":"cmd_output","timestamp":1607098230,"output":"b_inits\">, compile_task_id: nil, error_description: nil, id: 64, in_scheduling: false, init_type: \"r"},{"event":"cmd_output","timestamp":1607098230,"output":"egular\", inserted_at: ~N[2020-12-04 16:10:30.056366], pipeline_requests: #Ecto.Association.NotLoaded"},{"event":"cmd_output","timestamp":1607098230,"output":", ppl_id: \"f724d2a2-4bc3-4d5a-bf10-dd079113c0d3\", reco"},{"event":"cmd_output","timestamp":1607098230,"output":"very_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_"},{"event":"cmd_output","timestamp":1607098230,"output":"request_desc: nil, updated_at: ~N[2020-12-04 16:10:30.056376]}\n\u001b[0m\u001b[22m\n16:10:30.074 [info] Requ"},{"event":"cmd_output","timestamp":1607098230,"output":"est: 'run: %{\"branch_id\" => \"886bc65f-9df7-452a-a65a-a8f19df912e6\", \"branch_name\" => \"master\", \"clie"},{"event":"cmd_output","timestamp":1607098230,"output":"nt_id\" => \"44813b70-0543-41c0-b833-15fffd966cdb\", \"commit_sha\" => \"75891a4469\", \"definition_file\" =>"},{"event":"cmd_output","timestamp":1607098230,"output":" \"\", \"hook_id\" => \"branch\", \"label\" => \"master-3\", \"organization_id\" => \"842bf3f2-194b-49e0-a2d8-bc9"},{"event":"cmd_output","timestamp":1607098230,"output":"9ae4f1429\", \"owner\" => \"rt\", \"project_id\" => \"list_grouped_ks\", \"repo_name\" => \"2_basic\", \"request_t"},{"event":"cmd_output","timestamp":1607098230,"output":"oken\" => \"3ab9b056-364b-11eb-95f2-5254005464e2\", \"requester_id\" => \"a2db6a49-6eeb-4d07-92b8-0e229f45"},{"event":"cmd_output","timestamp":1607098230,"output":"8c89\", \"service\" => \"local\", \"snapshot_id\" => \"\", \"suppressed_attributes\" => [\"access_token\", \"clien"},{"event":"cmd_output","timestamp":1607098230,"output":"t_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"7fefd8e8-8a07-4d54-ac88-14b47f72f662\"}\n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098230,"output":"\n16:10:30.106 [info] ppl_id: 5b6df62b-edb4-468c-8034-d92349521525, type: PplRequests, event: persis"},{"event":"cmd_output","timestamp":1607098230,"output":"ted schedule request with request_token: 3ab9b056-364b-11eb-95f2-5254005464e2, origin: Elixir.Ppl.Pp"},{"event":"cmd_output","timestamp":1607098230,"output":"lRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:30.114 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098230,"output":": 5b6df62b-edb4-468c-8034-d92349521525, type: Ppls, state: initializing, event: initializing, recove"},{"event":"cmd_output","timestamp":1607098230,"output":"ry_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:"},{"event":"cmd_output","timestamp":1607098230,"output":"30.118 [info] Project list_grouped_ks and branch masterlatest_wf details updated: \"wf_id: 7fefd8e8-"},{"event":"cmd_output","timestamp":1607098230,"output":"8a07-4d54-ac88-14b47f72f662, wf_number: 4\"\n\u001b[0m\u001b[22m\n16:10:30.120 [info] Persisted ppl_sub_init f"},{"event":"cmd_output","timestamp":1607098230,"output":"or pipeline with ppl_id: 5b6df62b-edb4-468c-8034-d92349521525: %Ppl.PplSubInits.Model.PplSubInits{__"},{"event":"cmd_output","timestamp":1607098230,"output":"meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_descriptio"},{"event":"cmd_output","timestamp":1607098230,"output":"n: nil, id: 65, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:10:30.1194"},{"event":"cmd_output","timestamp":1607098230,"output":"93], pipeline_requests: #Ecto.Association.NotLoaded, p"},{"event":"cmd_output","timestamp":1607098230,"output":"pl_id: \"5b6df62b-edb4-468c-8034-d92349521525\", recovery_count: 0, result: nil, result_reason: nil, s"},{"event":"cmd_output","timestamp":1607098230,"output":"tate: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:1"},{"event":"cmd_output","timestamp":1607098230,"output":"0:30.119503]}\n\u001b[0m\u001b[22m\n16:10:30.132 [info] Request: 'run: %{\"branch_id\" => \"0e93a33f-846d-4fb6-8"},{"event":"cmd_output","timestamp":1607098230,"output":"033-a6c9548b362e\", \"branch_name\" => \"master\", \"client_id\" => \"e13b5e60-d564-4837-9992-c6ec6d8dc566\","},{"event":"cmd_output","timestamp":1607098230,"output":" \"commit_sha\" => \"75891a4469\", \"definition_file\" => \"\", \"hook_id\" => \"branch\", \"label\" => \"master-4\""},{"event":"cmd_output","timestamp":1607098230,"output":", \"organization_id\" => \"178c5a12-8c4f-4225-b5b3-a24bc7d9b3c5\", \"owner\" => \"rt\", \"project_id\" => \"lis"},{"event":"cmd_output","timestamp":1607098230,"output":"t_grouped_ks\", \"repo_name\" => \"2_basic\", \"request_token\" => \"3ac3cd48-364b-11eb-94d5-5254005464e2\", "},{"event":"cmd_output","timestamp":1607098230,"output":"\"requester_id\" => \"f14e9810-1f83-4749-ad54-ec35536fa203\", \"service\" => \"local\", \"snapshot_id\" => \"\","},{"event":"cmd_output","timestamp":1607098230,"output":" \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => "},{"event":"cmd_output","timestamp":1607098230,"output":"\"9c2f7291-2f79-49e6-88b2-104ccf36147f\"}\n\u001b[0m\u001b[22m\n16:10:30.162 [info] ppl_id: 1ab2a87a-e96b-4175-"},{"event":"cmd_output","timestamp":1607098230,"output":"95ae-8425f6480900, type: PplRequests, event: persisted schedule request with request_token: 3ac3cd48"},{"event":"cmd_output","timestamp":1607098230,"output":"-364b-11eb-94d5-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_respon"},{"event":"cmd_output","timestamp":1607098230,"output":"se/2(L55), \n\u001b[0m\u001b[22m\n16:10:30.167 [info] ppl_id: 1ab2a87a-e96b-4175-95ae-8425f6480900, type: Ppl"},{"event":"cmd_output","timestamp":1607098230,"output":"s, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQu"},{"event":"cmd_output","timestamp":1607098230,"output":"eries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:30.171 [info] Project list_grouped_ks and branch"},{"event":"cmd_output","timestamp":1607098230,"output":" masterlatest_wf details updated: \"wf_id: 9c2f7291-2f79-49e6-88b2-104ccf36147f, wf_number: 5\"\n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098230,"output":"[22m\n16:10:30.173 [info] Persisted ppl_sub_init for pipeline with ppl_id: 1ab2a87a-e96b-4175-95ae-"},{"event":"cmd_output","timestamp":1607098230,"output":"8425f6480900: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_"},{"event":"cmd_output","timestamp":1607098230,"output":"sub_inits\">, compile_task_id: nil, error_description: nil, id: 66, in_scheduling: false, init_type: "},{"event":"cmd_output","timestamp":1607098230,"output":"\"regular\", inserted_at: ~N[2020-12-04 16:10:30.171223], pipeline_requests: #Ecto.Association.NotLoad"},{"event":"cmd_output","timestamp":1607098230,"output":"ed, ppl_id: \"1ab2a87a-e96b-4175-95ae-8425f6480900\", re"},{"event":"cmd_output","timestamp":1607098230,"output":"covery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminat"},{"event":"cmd_output","timestamp":1607098230,"output":"e_request_desc: nil, updated_at: ~N[2020-12-04 16:10:30.171234]}\n\u001b[0m\u001b[22m\n16:10:30.187 [info] Re"},{"event":"cmd_output","timestamp":1607098230,"output":"quest: 'run: %{\"branch_id\" => \"e0c8a260-a931-44b8-b27f-84d4a80573b7\", \"branch_name\" => \"master\", \"cl"},{"event":"cmd_output","timestamp":1607098230,"output":"ient_id\" => \"bbfbb334-b3ce-4f9f-a1ba-55c7f331f747\", \"commit_sha\" => \"75891a4469\", \"definition_file\" "},{"event":"cmd_output","timestamp":1607098230,"output":"=> \"\", \"hook_id\" => \"branch\", \"label\" => \"master-5\", \"organization_id\" => \"6619b4ea-e2c7-46b2-b50c-5"},{"event":"cmd_output","timestamp":1607098230,"output":"f68f36ff8d0\", \"owner\" => \"rt\", \"project_id\" => \"list_grouped_ks\", \"repo_name\" => \"2_basic\", \"request"},{"event":"cmd_output","timestamp":1607098230,"output":"_token\" => \"3acbd664-364b-11eb-b611-5254005464e2\", \"requester_id\" => \"452b12cb-6cb0-477a-80d2-d2e948"},{"event":"cmd_output","timestamp":1607098230,"output":"6a4f83\", \"service\" => \"local\", \"snapshot_id\" => \"\", \"suppressed_attributes\" => [\"access_token\", \"cli"},{"event":"cmd_output","timestamp":1607098230,"output":"ent_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"4f722896-995b-4841-8039-33f2fa3b5931\"}\n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098230,"output":"m\n16:10:30.230 [info] ppl_id: 7b998d12-d0cc-4c15-9bb9-1393c2495d28, type: PplRequests, event: pers"},{"event":"cmd_output","timestamp":1607098230,"output":"isted schedule request with request_token: 3acbd664-364b-11eb-b611-5254005464e2, origin: Elixir.Ppl."},{"event":"cmd_output","timestamp":1607098230,"output":"PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:30.234 [info] ppl_"},{"event":"cmd_output","timestamp":1607098230,"output":"id: 7b998d12-d0cc-4c15-9bb9-1393c2495d28, type: Ppls, state: initializing, event: initializing, reco"},{"event":"cmd_output","timestamp":1607098230,"output":"very_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098230,"output":"0:30.238 [info] Project list_grouped_ks and branch masterlatest_wf details updated: \"wf_id: 4f72289"},{"event":"cmd_output","timestamp":1607098230,"output":"6-995b-4841-8039-33f2fa3b5931, wf_number: 6\"\n\u001b[0m\u001b[22m\n16:10:30.240 [info] Persisted ppl_sub_init"},{"event":"cmd_output","timestamp":1607098230,"output":" for pipeline with ppl_id: 7b998d12-d0cc-4c15-9bb9-1393c2495d28: %Ppl.PplSubInits.Model.PplSubInits{"},{"event":"cmd_output","timestamp":1607098230,"output":"__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_descript"},{"event":"cmd_output","timestamp":1607098230,"output":"ion: nil, id: 67, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:10:30.23"},{"event":"cmd_output","timestamp":1607098230,"output":"8259], pipeline_requests: #Ecto.Association.NotLoaded,"},{"event":"cmd_output","timestamp":1607098230,"output":" ppl_id: \"7b998d12-d0cc-4c15-9bb9-1393c2495d28\", recovery_count: 0, result: nil, result_reason: nil,"},{"event":"cmd_output","timestamp":1607098230,"output":" state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16"},{"event":"cmd_output","timestamp":1607098230,"output":":10:30.238270]}\n\u001b[0m\u001b[22m\n16:10:30.250 [info] Request: 'run: %{\"branch_id\" => \"4279e772-b32b-466f"},{"event":"cmd_output","timestamp":1607098230,"output":"-a5c5-1cc4830c36ce\", \"branch_name\" => \"master\", \"client_id\" => \"9d0a7318-2d92-4068-913f-f2068db3cbb2"},{"event":"cmd_output","timestamp":1607098230,"output":"\", \"commit_sha\" => \"75891a4469\", \"definition_file\" => \"\", \"hook_id\" => \"tag\", \"label\" => \"refs/tags/"},{"event":"cmd_output","timestamp":1607098230,"output":"v1.6\", \"organization_id\" => \"b8060f78-e967-487e-ab8c-9ce3d2af3c68\", \"owner\" => \"rt\", \"project_id\" =>"},{"event":"cmd_output","timestamp":1607098230,"output":" \"list_grouped_ks\", \"repo_name\" => \"2_basic\", \"request_token\" => \"3ad5b71a-364b-11eb-88ce-5254005464"},{"event":"cmd_output","timestamp":1607098230,"output":"e2\", \"requester_id\" => \"cedac838-4d7e-4be3-96d1-504e3864d17c\", \"service\" => \"local\", \"snapshot_id\" ="},{"event":"cmd_output","timestamp":1607098230,"output":"> \"\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"triggered_by\" => \"hook\", \"wf_id"},{"event":"cmd_output","timestamp":1607098230,"output":"\" => \"29503d13-dee2-44e8-87ae-dda0ce1ab1e3\"}\n\u001b[0m\u001b[22m\n16:10:30.280 [info] ppl_id: bbc8c9bd-c984-"},{"event":"cmd_output","timestamp":1607098230,"output":"4943-ad96-adcb06e6b4d4, type: PplRequests, event: persisted schedule request with request_token: 3ad"},{"event":"cmd_output","timestamp":1607098230,"output":"5b71a-364b-11eb-88ce-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_r"},{"event":"cmd_output","timestamp":1607098230,"output":"esponse/2(L55), \n\u001b[0m\u001b[22m\n16:10:30.284 [info] ppl_id: bbc8c9bd-c984-4943-ad96-adcb06e6b4d4, type"},{"event":"cmd_output","timestamp":1607098230,"output":": Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.P"},{"event":"cmd_output","timestamp":1607098230,"output":"plsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:30.289 [info] Project list_grouped_ks and b"},{"event":"cmd_output","timestamp":1607098230,"output":"ranch masterlatest_wf details updated: \"wf_id: 29503d13-dee2-44e8-87ae-dda0ce1ab1e3, wf_number: 7\"\n"},{"event":"cmd_output","timestamp":1607098230,"output":"\u001b[0m\u001b[22m\n16:10:30.292 [info] Persisted ppl_sub_init for pipeline with ppl_id: bbc8c9bd-c984-4943-"},{"event":"cmd_output","timestamp":1607098230,"output":"ad96-adcb06e6b4d4: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipe"},{"event":"cmd_output","timestamp":1607098230,"output":"line_sub_inits\">, compile_task_id: nil, error_description: nil, id: 68, in_scheduling: false, init_t"},{"event":"cmd_output","timestamp":1607098230,"output":"ype: \"regular\", inserted_at: ~N[2020-12-04 16:10:30.290482], pipeline_requests: #Ecto.Association.No"},{"event":"cmd_output","timestamp":1607098230,"output":"tLoaded, ppl_id: \"bbc8c9bd-c984-4943-ad96-adcb06e6b4d4"},{"event":"cmd_output","timestamp":1607098230,"output":"\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, ter"},{"event":"cmd_output","timestamp":1607098230,"output":"minate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:30.290494]}\n\u001b[0m\u001b[22m\n16:10:30.306 [info"},{"event":"cmd_output","timestamp":1607098230,"output":"] Request: 'run: %{\"branch_id\" => \"8b8bbe10-a7b3-4358-a646-feeb6398896b\", \"branch_name\" => \"master\""},{"event":"cmd_output","timestamp":1607098230,"output":", \"client_id\" => \"83a81f7e-3f56-465f-980d-c41888463a4e\", \"commit_sha\" => \"75891a4469\", \"definition_f"},{"event":"cmd_output","timestamp":1607098230,"output":"ile\" => \"\", \"hook_id\" => \"tag\", \"label\" => \"refs/tags/v1.7\", \"organization_id\" => \"508ccf74-5449-4ad"},{"event":"cmd_output","timestamp":1607098230,"output":"3-aa70-d00231bd83aa\", \"owner\" => \"rt\", \"project_id\" => \"list_grouped_ks\", \"repo_name\" => \"2_basic\", "},{"event":"cmd_output","timestamp":1607098230,"output":"\"request_token\" => \"3ade20b2-364b-11eb-8379-5254005464e2\", \"requester_id\" => \"f0653670-1286-4f04-895"},{"event":"cmd_output","timestamp":1607098230,"output":"4-f84601650375\", \"service\" => \"local\", \"snapshot_id\" => \"\", \"suppressed_attributes\" => [\"access_toke"},{"event":"cmd_output","timestamp":1607098230,"output":"n\", \"client_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"22c46dcb-6980-4d29-b604-92ee8039a767\"}\n"},{"event":"cmd_output","timestamp":1607098230,"output":"\u001b[0m\u001b[22m\n16:10:30.337 [info] ppl_id: cfafd963-cc5d-4c5a-ba9e-d57db9329973, type: PplRequests, eve"},{"event":"cmd_output","timestamp":1607098230,"output":"nt: persisted schedule request with request_token: 3ade20b2-364b-11eb-8379-5254005464e2, origin: Eli"},{"event":"cmd_output","timestamp":1607098230,"output":"xir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:30.341 [inf"},{"event":"cmd_output","timestamp":1607098230,"output":"o] ppl_id: cfafd963-cc5d-4c5a-ba9e-d57db9329973, type: Ppls, state: initializing, event: initializi"},{"event":"cmd_output","timestamp":1607098230,"output":"ng, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098230,"output":"2m\n16:10:30.346 [info] Project list_grouped_ks and branch masterlatest_wf details updated: \"wf_id:"},{"event":"cmd_output","timestamp":1607098230,"output":" 22c46dcb-6980-4d29-b604-92ee8039a767, wf_number: 8\"\n\u001b[0m\u001b[22m\n16:10:30.349 [info] Persisted ppl_"},{"event":"cmd_output","timestamp":1607098230,"output":"sub_init for pipeline with ppl_id: cfafd963-cc5d-4c5a-ba9e-d57db9329973: %Ppl.PplSubInits.Model.PplS"},{"event":"cmd_output","timestamp":1607098230,"output":"ubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_"},{"event":"cmd_output","timestamp":1607098230,"output":"description: nil, id: 69, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:"},{"event":"cmd_output","timestamp":1607098230,"output":"10:30.348001], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"cfafd963-cc5d-4c5a-ba9e-d57db9329973\", recovery_count: 0, result: nil, result_reas"},{"event":"cmd_output","timestamp":1607098230,"output":"on: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-"},{"event":"cmd_output","timestamp":1607098230,"output":"12-04 16:10:30.348015]}\n\u001b[0m\u001b[22m\n16:10:30.364 [info] Request: 'run: %{\"branch_id\" => \"4ceaf452-d"},{"event":"cmd_output","timestamp":1607098230,"output":"b59-4f10-a7cb-faf2431f3048\", \"branch_name\" => \"master\", \"client_id\" => \"f4e31d3e-ba6f-4253-951d-d4cf"},{"event":"cmd_output","timestamp":1607098230,"output":"23894c17\", \"commit_sha\" => \"75891a4469\", \"definition_file\" => \"\", \"hook_id\" => \"tag\", \"label\" => \"re"},{"event":"cmd_output","timestamp":1607098230,"output":"fs/tags/v1.8\", \"organization_id\" => \"1a7111de-fb91-4fdf-9836-97f0221b500b\", \"owner\" => \"rt\", \"projec"},{"event":"cmd_output","timestamp":1607098230,"output":"t_id\" => \"list_grouped_ks\", \"repo_name\" => \"2_basic\", \"request_token\" => \"3ae6f19c-364b-11eb-91d2-52"},{"event":"cmd_output","timestamp":1607098230,"output":"54005464e2\", \"requester_id\" => \"453eb303-c1ff-4c35-909d-9ababc2b7d4e\", \"service\" => \"local\", \"snapsh"},{"event":"cmd_output","timestamp":1607098230,"output":"ot_id\" => \"\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"triggered_by\" => \"hook\""},{"event":"cmd_output","timestamp":1607098230,"output":", \"wf_id\" => \"a2e95e5f-fdb1-4184-a898-ff1bc4677af7\"}\n\u001b[0m\u001b[22m\n16:10:30.395 [info] ppl_id: dbfcdf"},{"event":"cmd_output","timestamp":1607098230,"output":"51-3c83-4a4d-a645-035067649428, type: PplRequests, event: persisted schedule request with request_to"},{"event":"cmd_output","timestamp":1607098230,"output":"ken: 3ae6f19c-364b-11eb-91d2-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.p"},{"event":"cmd_output","timestamp":1607098230,"output":"rocess_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:30.399 [info] ppl_id: dbfcdf51-3c83-4a4d-a645-0350676494"},{"event":"cmd_output","timestamp":1607098230,"output":"28, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls"},{"event":"cmd_output","timestamp":1607098230,"output":".Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:30.403 [info] Project list_grouped_"},{"event":"cmd_output","timestamp":1607098230,"output":"ks and branch masterlatest_wf details updated: \"wf_id: a2e95e5f-fdb1-4184-a898-ff1bc4677af7, wf_numb"},{"event":"cmd_output","timestamp":1607098230,"output":"er: 9\"\n\u001b[0m\u001b[22m\n16:10:30.405 [info] Persisted ppl_sub_init for pipeline with ppl_id: dbfcdf51-3c"},{"event":"cmd_output","timestamp":1607098230,"output":"83-4a4d-a645-035067649428: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loade"},{"event":"cmd_output","timestamp":1607098230,"output":"d, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 70, in_scheduling: false"},{"event":"cmd_output","timestamp":1607098230,"output":", init_type: \"regular\", inserted_at: ~N[2020-12-04 16:10:30.403220], pipeline_requests: #Ecto.Associ"},{"event":"cmd_output","timestamp":1607098230,"output":"ation.NotLoaded, ppl_id: \"dbfcdf51-3c83-4a4d-a645-0350"},{"event":"cmd_output","timestamp":1607098230,"output":"67649428\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: "},{"event":"cmd_output","timestamp":1607098230,"output":"nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:30.403229]}\n\u001b[0m\u001b[22m\n16:10:30.4"},{"event":"cmd_output","timestamp":1607098230,"output":"14 [info] Request: 'run: %{\"branch_id\" => \"239fdb5a-d4f0-4d99-aafc-ea1c91e4cff8\", \"branch_name\" => "},{"event":"cmd_output","timestamp":1607098230,"output":"\"master\", \"client_id\" => \"81a78b51-79d8-4501-a64b-212a5e363a56\", \"commit_sha\" => \"75891a4469\", \"defi"},{"event":"cmd_output","timestamp":1607098230,"output":"nition_file\" => \"\", \"hook_id\" => \"tag\", \"label\" => \"refs/tags/v1.9\", \"organization_id\" => \"717b50d6-"},{"event":"cmd_output","timestamp":1607098230,"output":"1947-4ad5-85c3-61bc813c984f\", \"owner\" => \"rt\", \"project_id\" => \"list_grouped_ks\", \"repo_name\" => \"2_"},{"event":"cmd_output","timestamp":1607098230,"output":"basic\", \"request_token\" => \"3aeeccf0-364b-11eb-a84e-5254005464e2\", \"requester_id\" => \"b5c21a69-3e90-"},{"event":"cmd_output","timestamp":1607098230,"output":"4a7f-b648-95badc42af83\", \"service\" => \"local\", \"snapshot_id\" => \"\", \"suppressed_attributes\" => [\"acc"},{"event":"cmd_output","timestamp":1607098230,"output":"ess_token\", \"client_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"75a3d1b1-92ac-4aaa-8283-dd739b6d"},{"event":"cmd_output","timestamp":1607098230,"output":"724f\"}\n\u001b[0m\u001b[22m\n16:10:30.445 [info] ppl_id: 122a2a60-c45e-4a43-baa6-937d4dd2b879, type: PplReque"},{"event":"cmd_output","timestamp":1607098230,"output":"sts, event: persisted schedule request with request_token: 3aeeccf0-364b-11eb-a84e-5254005464e2, ori"},{"event":"cmd_output","timestamp":1607098230,"output":"gin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:30."},{"event":"cmd_output","timestamp":1607098230,"output":"449 [info] ppl_id: 122a2a60-c45e-4a43-baa6-937d4dd2b879, type: Ppls, state: initializing, event: in"},{"event":"cmd_output","timestamp":1607098230,"output":"itializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \r"},{"event":"cmd_output","timestamp":1607098230,"output":"\n\u001b[0m\u001b[22m\n16:10:30.454 [info] Project list_grouped_ks and branch masterlatest_wf details updated:"},{"event":"cmd_output","timestamp":1607098230,"output":" \"wf_id: 75a3d1b1-92ac-4aaa-8283-dd739b6d724f, wf_number: 10\"\n\u001b[0m\u001b[22m\n16:10:30.457 [info] Persi"},{"event":"cmd_output","timestamp":1607098230,"output":"sted ppl_sub_init for pipeline with ppl_id: 122a2a60-c45e-4a43-baa6-937d4dd2b879: %Ppl.PplSubInits.M"},{"event":"cmd_output","timestamp":1607098230,"output":"odel.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: ni"},{"event":"cmd_output","timestamp":1607098230,"output":"l, error_description: nil, id: 71, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-"},{"event":"cmd_output","timestamp":1607098230,"output":"12-04 16:10:30.455652], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"122a2a60-c45e-4a43-baa6-937d4dd2b879\", recovery_count: 0, result: nil, re"},{"event":"cmd_output","timestamp":1607098230,"output":"sult_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at:"},{"event":"cmd_output","timestamp":1607098230,"output":" ~N[2020-12-04 16:10:30.455665]}\n\u001b[0m\u001b[22m\n16:10:30.466 [info] Request: 'run: %{\"branch_id\" => \"1"},{"event":"cmd_output","timestamp":1607098230,"output":"a000ce8-fd80-4db0-913e-88ed05aa9c81\", \"branch_name\" => \"master\", \"client_id\" => \"66bd7125-9b07-4ee4-"},{"event":"cmd_output","timestamp":1607098230,"output":"b846-a9a08440ba4c\", \"commit_sha\" => \"75891a4469\", \"definition_file\" => \"\", \"hook_id\" => \"tag\", \"labe"},{"event":"cmd_output","timestamp":1607098230,"output":"l\" => \"refs/tags/v1.10\", \"organization_id\" => \"e3c90ed9-473b-4264-8174-46e4378b45c4\", \"owner\" => \"rt"},{"event":"cmd_output","timestamp":1607098230,"output":"\", \"project_id\" => \"list_grouped_ks\", \"repo_name\" => \"2_basic\", \"request_token\" => \"3af6c478-364b-11"},{"event":"cmd_output","timestamp":1607098230,"output":"eb-bba2-5254005464e2\", \"requester_id\" => \"24ab63d2-2b09-4416-af4e-cc74ee960ff2\", \"service\" => \"local"},{"event":"cmd_output","timestamp":1607098230,"output":"\", \"snapshot_id\" => \"\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"triggered_by\""},{"event":"cmd_output","timestamp":1607098230,"output":" => \"hook\", \"wf_id\" => \"959ce5f3-6e1c-45b6-896a-3cd268ca272a\"}\n\u001b[0m\u001b[22m\n16:10:30.487 [info] ppl_"},{"event":"cmd_output","timestamp":1607098230,"output":"id: 2ca25cfc-4a35-4375-8efe-76f3163c59ee, type: PplRequests, event: persisted schedule request with "},{"event":"cmd_output","timestamp":1607098230,"output":"request_token: 3af6c478-364b-11eb-bba2-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequest"},{"event":"cmd_output","timestamp":1607098230,"output":"sQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:30.489 [info] ppl_id: 2ca25cfc-4a35-4375-8efe-"},{"event":"cmd_output","timestamp":1607098230,"output":"76f3163c59ee, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098230,"output":"r.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:30.492 [info] Project lis"},{"event":"cmd_output","timestamp":1607098230,"output":"t_grouped_ks and branch masterlatest_wf details updated: \"wf_id: 959ce5f3-6e1c-45b6-896a-3cd268ca272"},{"event":"cmd_output","timestamp":1607098230,"output":"a, wf_number: 11\"\n\u001b[0m\u001b[22m\n16:10:30.493 [info] Persisted ppl_sub_init for pipeline with ppl_id: "},{"event":"cmd_output","timestamp":1607098230,"output":"2ca25cfc-4a35-4375-8efe-76f3163c59ee: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Meta"},{"event":"cmd_output","timestamp":1607098230,"output":"data<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 72, in_schedu"},{"event":"cmd_output","timestamp":1607098230,"output":"ling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:10:30.492446], pipeline_requests: #"},{"event":"cmd_output","timestamp":1607098230,"output":"Ecto.Association.NotLoaded, ppl_id: \"2ca25cfc-4a35-437"},{"event":"cmd_output","timestamp":1607098230,"output":"5-8efe-76f3163c59ee\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminat"},{"event":"cmd_output","timestamp":1607098230,"output":"e_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:30.492455]}\n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098230,"output":"\n16:10:30.500 [info] Request: 'run: %{\"branch_id\" => \"212d2f53-c8bc-486a-a8d6-a2fe43a8f0ba\", \"branc"},{"event":"cmd_output","timestamp":1607098230,"output":"h_name\" => \"master\", \"client_id\" => \"1a0c9e6d-cd3a-4d61-a2be-711a04a1b671\", \"commit_sha\" => \"75891a4"},{"event":"cmd_output","timestamp":1607098230,"output":"469\", \"definition_file\" => \"\", \"hook_id\" => \"tag\", \"label\" => \"refs/tags/v1.11\", \"organization_id\" ="},{"event":"cmd_output","timestamp":1607098230,"output":"> \"46ee7156-0f30-4b1c-8c41-5dcb1a18b916\", \"owner\" => \"rt\", \"project_id\" => \"list_grouped_ks\", \"repo_"},{"event":"cmd_output","timestamp":1607098230,"output":"name\" => \"2_basic\", \"request_token\" => \"3afbeff2-364b-11eb-94a6-5254005464e2\", \"requester_id\" => \"29"},{"event":"cmd_output","timestamp":1607098230,"output":"d70865-8b20-496a-ab26-ec55c6ea4810\", \"service\" => \"local\", \"snapshot_id\" => \"\", \"suppressed_attribut"},{"event":"cmd_output","timestamp":1607098230,"output":"es\" => [\"access_token\", \"client_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"a28ab400-6d2c-4bac-b"},{"event":"cmd_output","timestamp":1607098230,"output":"cd0-a42f37add71c\"}\n\u001b[0m\u001b[22m\n16:10:30.521 [info] ppl_id: 781110ae-292e-4deb-85e8-7c35907ee65a, ty"},{"event":"cmd_output","timestamp":1607098230,"output":"pe: PplRequests, event: persisted schedule request with request_token: 3afbeff2-364b-11eb-94a6-52540"},{"event":"cmd_output","timestamp":1607098230,"output":"05464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098230,"output":"m\n16:10:30.524 [info] ppl_id: 781110ae-292e-4deb-85e8-7c35907ee65a, type: Ppls, state: initializin"},{"event":"cmd_output","timestamp":1607098230,"output":"g, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_respons"},{"event":"cmd_output","timestamp":1607098230,"output":"e/2(L124), \n\u001b[0m\u001b[22m\n16:10:30.527 [info] Project list_grouped_ks and branch masterlatest_wf deta"},{"event":"cmd_output","timestamp":1607098230,"output":"ils updated: \"wf_id: a28ab400-6d2c-4bac-bcd0-a42f37add71c, wf_number: 12\"\n\u001b[0m\u001b[22m\n16:10:30.528 ["},{"event":"cmd_output","timestamp":1607098230,"output":"info] Persisted ppl_sub_init for pipeline with ppl_id: 781110ae-292e-4deb-85e8-7c35907ee65a: %Ppl.P"},{"event":"cmd_output","timestamp":1607098230,"output":"plSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile"},{"event":"cmd_output","timestamp":1607098230,"output":"_task_id: nil, error_description: nil, id: 73, in_scheduling: false, init_type: \"regular\", inserted_"},{"event":"cmd_output","timestamp":1607098230,"output":"at: ~N[2020-12-04 16:10:30.527638], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"781110ae-292e-4deb-85e8-7c35907ee65a\", recovery_count: 0, res"},{"event":"cmd_output","timestamp":1607098230,"output":"ult: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil,"},{"event":"cmd_output","timestamp":1607098230,"output":" updated_at: ~N[2020-12-04 16:10:30.527647]}\n\u001b[0m\u001b[22m\n16:10:30.535 [info] Request: 'run: %{\"bran"},{"event":"cmd_output","timestamp":1607098230,"output":"ch_id\" => \"b54d82d4-7eca-47a3-93fa-85c72048bcab\", \"branch_name\" => \"master\", \"client_id\" => \"b7f9229"},{"event":"cmd_output","timestamp":1607098230,"output":"d-08b6-4f0d-8ee1-ff5c751a64b6\", \"commit_sha\" => \"75891a4469\", \"definition_file\" => \"\", \"hook_id\" => "},{"event":"cmd_output","timestamp":1607098230,"output":"\"pr\", \"label\" => \"pull-request-1212\", \"organization_id\" => \"14a5b091-9a4d-42e5-ab35-4d0dd2c62b3f\", \""},{"event":"cmd_output","timestamp":1607098230,"output":"owner\" => \"rt\", \"project_id\" => \"list_grouped_ks\", \"repo_name\" => \"2_basic\", \"request_token\" => \"3b0"},{"event":"cmd_output","timestamp":1607098230,"output":"16720-364b-11eb-a915-5254005464e2\", \"requester_id\" => \"7b8dab51-2615-46d5-8106-47225740e8de\", \"servi"},{"event":"cmd_output","timestamp":1607098230,"output":"ce\" => \"local\", \"snapshot_id\" => \"\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \""},{"event":"cmd_output","timestamp":1607098230,"output":"triggered_by\" => \"hook\", \"wf_id\" => \"e657ad40-850e-4e51-b535-0d7d3933880c\"}\n\u001b[0m\u001b[22m\n16:10:30.579"},{"event":"cmd_output","timestamp":1607098230,"output":" [info] ppl_id: 3bb0af1f-a347-463e-abf1-40b45aadd842, type: PplRequests, event: persisted schedule "},{"event":"cmd_output","timestamp":1607098230,"output":"request with request_token: 3b016720-364b-11eb-a915-5254005464e2, origin: Elixir.Ppl.PplRequests.Mod"},{"event":"cmd_output","timestamp":1607098230,"output":"el.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:30.581 [info] ppl_id: 3bb0af1f-a3"},{"event":"cmd_output","timestamp":1607098230,"output":"47-463e-abf1-40b45aadd842, type: Ppls, state: initializing, event: initializing, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098230,"output":"origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:30.584 [info]"},{"event":"cmd_output","timestamp":1607098230,"output":" Project list_grouped_ks and branch masterlatest_wf details updated: \"wf_id: e657ad40-850e-4e51-b53"},{"event":"cmd_output","timestamp":1607098230,"output":"5-0d7d3933880c, wf_number: 13\"\n\u001b[0m\u001b[22m\n16:10:30.586 [info] Persisted ppl_sub_init for pipeline "},{"event":"cmd_output","timestamp":1607098230,"output":"with ppl_id: 3bb0af1f-a347-463e-abf1-40b45aadd842: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ect"},{"event":"cmd_output","timestamp":1607098230,"output":"o.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: "},{"event":"cmd_output","timestamp":1607098230,"output":"74, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:10:30.584694], pipelin"},{"event":"cmd_output","timestamp":1607098230,"output":"e_requests: #Ecto.Association.NotLoaded, ppl_id: \"3bb0"},{"event":"cmd_output","timestamp":1607098230,"output":"af1f-a347-463e-abf1-40b45aadd842\", recovery_count: 0, result: nil, result_reason: nil, state: \"creat"},{"event":"cmd_output","timestamp":1607098230,"output":"ed\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:30.584700]"},{"event":"cmd_output","timestamp":1607098230,"output":"}\n\u001b[0m\u001b[22m\n16:10:30.593 [info] Request: 'run: %{\"branch_id\" => \"f922098a-f5e6-44e4-9877-b9db9b1c"},{"event":"cmd_output","timestamp":1607098230,"output":"5fa7\", \"branch_name\" => \"master\", \"client_id\" => \"160a46ec-e663-4837-8b00-77cdef4b6e86\", \"commit_sha"},{"event":"cmd_output","timestamp":1607098230,"output":"\" => \"75891a4469\", \"definition_file\" => \"\", \"hook_id\" => \"pr\", \"label\" => \"pull-request-1213\", \"orga"},{"event":"cmd_output","timestamp":1607098230,"output":"nization_id\" => \"ffa8028d-2e3a-4ac8-aeb6-75f30f6bb69f\", \"owner\" => \"rt\", \"project_id\" => \"list_group"},{"event":"cmd_output","timestamp":1607098230,"output":"ed_ks\", \"repo_name\" => \"2_basic\", \"request_token\" => \"3b0a2b44-364b-11eb-a119-5254005464e2\", \"reques"},{"event":"cmd_output","timestamp":1607098230,"output":"ter_id\" => \"7314218b-99c6-4433-a88a-a6c40c8cee03\", \"service\" => \"local\", \"snapshot_id\" => \"\", \"suppr"},{"event":"cmd_output","timestamp":1607098230,"output":"essed_attributes\" => [\"access_token\", \"client_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"c032b8"},{"event":"cmd_output","timestamp":1607098230,"output":"97-4697-4a00-8c45-f84c3622e12f\"}\n\u001b[0m\u001b[22m\n16:10:30.613 [info] ppl_id: 3dfbf506-8b31-45a8-9a07-17"},{"event":"cmd_output","timestamp":1607098230,"output":"1cd6636cea, type: PplRequests, event: persisted schedule request with request_token: 3b0a2b44-364b-1"},{"event":"cmd_output","timestamp":1607098230,"output":"1eb-a119-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L5"},{"event":"cmd_output","timestamp":1607098230,"output":"5), \n\u001b[0m\u001b[22m\n16:10:30.615 [info] ppl_id: 3dfbf506-8b31-45a8-9a07-171cd6636cea, type: Ppls, stat"},{"event":"cmd_output","timestamp":1607098230,"output":"e: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.p"},{"event":"cmd_output","timestamp":1607098230,"output":"rocess_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:30.617 [info] Project list_grouped_ks and branch master"},{"event":"cmd_output","timestamp":1607098230,"output":"latest_wf details updated: \"wf_id: c032b897-4697-4a00-8c45-f84c3622e12f, wf_number: 14\"\n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098230,"output":"16:10:30.618 [info] Persisted ppl_sub_init for pipeline with ppl_id: 3dfbf506-8b31-45a8-9a07-171cd6"},{"event":"cmd_output","timestamp":1607098230,"output":"636cea: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_in"},{"event":"cmd_output","timestamp":1607098230,"output":"its\">, compile_task_id: nil, error_description: nil, id: 75, in_scheduling: false, init_type: \"regul"},{"event":"cmd_output","timestamp":1607098230,"output":"ar\", inserted_at: ~N[2020-12-04 16:10:30.617735], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"3dfbf506-8b31-45a8-9a07-171cd6636cea\", recovery"},{"event":"cmd_output","timestamp":1607098230,"output":"_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_requ"},{"event":"cmd_output","timestamp":1607098230,"output":"est_desc: nil, updated_at: ~N[2020-12-04 16:10:30.617745]}\n\u001b[0m\u001b[22m\n16:10:30.625 [info] Request:"},{"event":"cmd_output","timestamp":1607098230,"output":" 'run: %{\"branch_id\" => \"e48dab10-1d5f-4088-be79-f227f68a3199\", \"branch_name\" => \"master\", \"client_i"},{"event":"cmd_output","timestamp":1607098230,"output":"d\" => \"482bbcab-3b20-4346-af06-eaeb3e952527\", \"commit_sha\" => \"75891a4469\", \"definition_file\" => \"\","},{"event":"cmd_output","timestamp":1607098230,"output":" \"hook_id\" => \"pr\", \"label\" => \"pull-request-1214\", \"organization_id\" => \"4d76d855-a7cf-42a4-b27b-81"},{"event":"cmd_output","timestamp":1607098230,"output":"b8003b1f3e\", \"owner\" => \"rt\", \"project_id\" => \"list_grouped_ks\", \"repo_name\" => \"2_basic\", \"request_"},{"event":"cmd_output","timestamp":1607098230,"output":"token\" => \"3b0f1690-364b-11eb-b29d-5254005464e2\", \"requester_id\" => \"e94a7bc8-9d07-4b05-80ac-56f133c"},{"event":"cmd_output","timestamp":1607098230,"output":"e8247\", \"service\" => \"local\", \"snapshot_id\" => \"\", \"suppressed_attributes\" => [\"access_token\", \"clie"},{"event":"cmd_output","timestamp":1607098230,"output":"nt_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"c64edb25-d545-42e5-b9b4-a11aa0a8f0d0\"}\n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098230,"output":"\n16:10:30.646 [info] ppl_id: c47a6c5b-5f4c-4e18-978f-cbddae202121, type: PplRequests, event: persi"},{"event":"cmd_output","timestamp":1607098230,"output":"sted schedule request with request_token: 3b0f1690-364b-11eb-b29d-5254005464e2, origin: Elixir.Ppl.P"},{"event":"cmd_output","timestamp":1607098230,"output":"plRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:30.647 [info] ppl_i"},{"event":"cmd_output","timestamp":1607098230,"output":"d: c47a6c5b-5f4c-4e18-978f-cbddae202121, type: Ppls, state: initializing, event: initializing, recov"},{"event":"cmd_output","timestamp":1607098230,"output":"ery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10"},{"event":"cmd_output","timestamp":1607098230,"output":":30.651 [info] Project list_grouped_ks and branch masterlatest_wf details updated: \"wf_id: c64edb25"},{"event":"cmd_output","timestamp":1607098230,"output":"-d545-42e5-b9b4-a11aa0a8f0d0, wf_number: 15\"\n\u001b[0m\u001b[22m\n16:10:30.653 [info] Persisted ppl_sub_init"},{"event":"cmd_output","timestamp":1607098230,"output":" for pipeline with ppl_id: c47a6c5b-5f4c-4e18-978f-cbddae202121: %Ppl.PplSubInits.Model.PplSubInits{"},{"event":"cmd_output","timestamp":1607098230,"output":"__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_descript"},{"event":"cmd_output","timestamp":1607098230,"output":"ion: nil, id: 76, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:10:30.65"},{"event":"cmd_output","timestamp":1607098230,"output":"1526], pipeline_requests: #Ecto.Association.NotLoaded,"},{"event":"cmd_output","timestamp":1607098230,"output":" ppl_id: \"c47a6c5b-5f4c-4e18-978f-cbddae202121\", recovery_count: 0, result: nil, result_reason: nil,"},{"event":"cmd_output","timestamp":1607098230,"output":" state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16"},{"event":"cmd_output","timestamp":1607098230,"output":":10:30.651574]}\n\u001b[0m\u001b[22m\n16:10:30.661 [info] Request: 'run: %{\"branch_id\" => \"58a217f7-290a-4d9f"},{"event":"cmd_output","timestamp":1607098230,"output":"-b458-e3256622d446\", \"branch_name\" => \"master\", \"client_id\" => \"66892687-9d93-4f51-822d-8f2a9535728b"},{"event":"cmd_output","timestamp":1607098230,"output":"\", \"commit_sha\" => \"75891a4469\", \"definition_file\" => \"\", \"hook_id\" => \"pr\", \"label\" => \"pull-reques"},{"event":"cmd_output","timestamp":1607098230,"output":"t-1215\", \"organization_id\" => \"1e0889a5-04ae-4843-8795-41912575b37e\", \"owner\" => \"rt\", \"project_id\" "},{"event":"cmd_output","timestamp":1607098230,"output":"=> \"list_grouped_ks\", \"repo_name\" => \"2_basic\", \"request_token\" => \"3b14720c-364b-11eb-93ba-52540054"},{"event":"cmd_output","timestamp":1607098230,"output":"64e2\", \"requester_id\" => \"db03692b-6f96-4cd2-8b31-454641106d45\", \"service\" => \"local\", \"snapshot_id\""},{"event":"cmd_output","timestamp":1607098230,"output":" => \"\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"triggered_by\" => \"hook\", \"wf_"},{"event":"cmd_output","timestamp":1607098230,"output":"id\" => \"6f0bebdd-b4dc-4610-9fe6-07e76683fd10\"}\n\u001b[0m\u001b[22m\n16:10:30.697 [info] ppl_id: 19229cb7-c8e"},{"event":"cmd_output","timestamp":1607098230,"output":"d-49ff-9108-cb147b957f1f, type: PplRequests, event: persisted schedule request with request_token: 3"},{"event":"cmd_output","timestamp":1607098230,"output":"b14720c-364b-11eb-93ba-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process"},{"event":"cmd_output","timestamp":1607098230,"output":"_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:30.701 [info] ppl_id: 19229cb7-c8ed-49ff-9108-cb147b957f1f, ty"},{"event":"cmd_output","timestamp":1607098230,"output":"pe: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model"},{"event":"cmd_output","timestamp":1607098230,"output":".PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:30.704 [info] Project list_grouped_ks and"},{"event":"cmd_output","timestamp":1607098230,"output":" branch masterlatest_wf details updated: \"wf_id: 6f0bebdd-b4dc-4610-9fe6-07e76683fd10, wf_number: 16"},{"event":"cmd_output","timestamp":1607098230,"output":"\"\n\u001b[0m\u001b[22m\n16:10:30.706 [info] Persisted ppl_sub_init for pipeline with ppl_id: 19229cb7-c8ed-49"},{"event":"cmd_output","timestamp":1607098230,"output":"ff-9108-cb147b957f1f: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"p"},{"event":"cmd_output","timestamp":1607098230,"output":"ipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 77, in_scheduling: false, ini"},{"event":"cmd_output","timestamp":1607098230,"output":"t_type: \"regular\", inserted_at: ~N[2020-12-04 16:10:30.705116], pipeline_requests: #Ecto.Association"},{"event":"cmd_output","timestamp":1607098230,"output":".NotLoaded, ppl_id: \"19229cb7-c8ed-49ff-9108-cb147b957"},{"event":"cmd_output","timestamp":1607098230,"output":"f1f\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, "},{"event":"cmd_output","timestamp":1607098230,"output":"terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:30.705128]}\n\u001b[0m\u001b[22m\n16:10:30.716 [i"},{"event":"cmd_output","timestamp":1607098230,"output":"nfo] Request: 'run: %{\"branch_id\" => \"edebf825-0297-4576-a53f-93589f1d8f24\", \"branch_name\" => \"mast"},{"event":"cmd_output","timestamp":1607098230,"output":"er\", \"client_id\" => \"66921023-4e4a-4c13-a175-cf3c01b15390\", \"commit_sha\" => \"75891a4469\", \"definitio"},{"event":"cmd_output","timestamp":1607098230,"output":"n_file\" => \"\", \"hook_id\" => \"pr\", \"label\" => \"pull-request-1216\", \"organization_id\" => \"6739c179-a3a"},{"event":"cmd_output","timestamp":1607098230,"output":"e-4d00-948c-77538236b1a7\", \"owner\" => \"rt\", \"project_id\" => \"list_grouped_ks\", \"repo_name\" => \"2_bas"},{"event":"cmd_output","timestamp":1607098230,"output":"ic\", \"request_token\" => \"3b1cc92a-364b-11eb-82d1-5254005464e2\", \"requester_id\" => \"72e500d0-bbe1-436"},{"event":"cmd_output","timestamp":1607098230,"output":"a-936a-46239815401b\", \"service\" => \"local\", \"snapshot_id\" => \"\", \"suppressed_attributes\" => [\"access"},{"event":"cmd_output","timestamp":1607098230,"output":"_token\", \"client_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"f36d1c46-ce2a-4d5f-8759-f72ff8f0f90"},{"event":"cmd_output","timestamp":1607098230,"output":"8\"}\n\u001b[0m\u001b[22m\n16:10:30.745 [info] ppl_id: f50e3d3c-2dfc-4506-8aa0-b5c8f42e800b, type: PplRequests"},{"event":"cmd_output","timestamp":1607098230,"output":", event: persisted schedule request with request_token: 3b1cc92a-364b-11eb-82d1-5254005464e2, origin"},{"event":"cmd_output","timestamp":1607098230,"output":": Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:30.747"},{"event":"cmd_output","timestamp":1607098230,"output":" [info] ppl_id: f50e3d3c-2dfc-4506-8aa0-b5c8f42e800b, type: Ppls, state: initializing, event: initi"},{"event":"cmd_output","timestamp":1607098230,"output":"alizing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b["},{"event":"cmd_output","timestamp":1607098230,"output":"0m\u001b[22m\n16:10:30.749 [info] Project list_grouped_ks and branch masterlatest_wf details updated: \"w"},{"event":"cmd_output","timestamp":1607098230,"output":"f_id: f36d1c46-ce2a-4d5f-8759-f72ff8f0f908, wf_number: 17\"\n\u001b[0m\u001b[22m\n16:10:30.751 [info] Persiste"},{"event":"cmd_output","timestamp":1607098230,"output":"d ppl_sub_init for pipeline with ppl_id: f50e3d3c-2dfc-4506-8aa0-b5c8f42e800b: %Ppl.PplSubInits.Mode"},{"event":"cmd_output","timestamp":1607098230,"output":"l.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, "},{"event":"cmd_output","timestamp":1607098230,"output":"error_description: nil, id: 78, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-"},{"event":"cmd_output","timestamp":1607098230,"output":"04 16:10:30.750038], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"f50e3d3c-2dfc-4506-8aa0-b5c8f42e800b\", recovery_count: 0, result: nil, resul"},{"event":"cmd_output","timestamp":1607098230,"output":"t_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N"},{"event":"cmd_output","timestamp":1607098230,"output":"[2020-12-04 16:10:30.750047]}\n\u001b[0m\u001b[22m\n16:10:30.759 [info] Request: 'run: %{\"branch_id\" => \"2d0e"},{"event":"cmd_output","timestamp":1607098230,"output":"363b-c266-419c-8c3b-2cb64a350e6a\", \"branch_name\" => \"master\", \"client_id\" => \"af20b748-db09-4c38-989"},{"event":"cmd_output","timestamp":1607098230,"output":"5-70c42f399545\", \"commit_sha\" => \"75891a4469\", \"definition_file\" => \"\", \"hook_id\" => \"pr\", \"label\" ="},{"event":"cmd_output","timestamp":1607098230,"output":"> \"pull-request-1217\", \"organization_id\" => \"845bdda1-9554-4a36-86d9-fdcad8e2a96c\", \"owner\" => \"rt\","},{"event":"cmd_output","timestamp":1607098230,"output":" \"project_id\" => \"list_grouped_ks\", \"repo_name\" => \"2_basic\", \"request_token\" => \"3b2373ba-364b-11eb"},{"event":"cmd_output","timestamp":1607098230,"output":"-9d1e-5254005464e2\", \"requester_id\" => \"3ee76d0f-566d-4b97-a575-1b40b28c3d5f\", \"service\" => \"local\","},{"event":"cmd_output","timestamp":1607098230,"output":" \"snapshot_id\" => \"\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"triggered_by\" ="},{"event":"cmd_output","timestamp":1607098230,"output":"> \"hook\", \"wf_id\" => \"9b173947-d2c5-482c-9d1c-41937c7eccb5\"}\n\u001b[0m\u001b[22m\n16:10:30.800 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098230,"output":": 7d08a45d-2e14-4bcb-b6f2-76c101a6a72a, type: PplRequests, event: persisted schedule request with re"},{"event":"cmd_output","timestamp":1607098230,"output":"quest_token: 3b2373ba-364b-11eb-9d1e-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQ"},{"event":"cmd_output","timestamp":1607098230,"output":"ueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:30.802 [info] ppl_id: 7d08a45d-2e14-4bcb-b6f2-76"},{"event":"cmd_output","timestamp":1607098230,"output":"c101a6a72a, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098230,"output":"Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:30.806 [info] Project list_"},{"event":"cmd_output","timestamp":1607098230,"output":"grouped_ks and branch masterlatest_wf details updated: \"wf_id: 9b173947-d2c5-482c-9d1c-41937c7eccb5,"},{"event":"cmd_output","timestamp":1607098230,"output":" wf_number: 18\"\n\u001b[0m\u001b[22m\n16:10:30.807 [info] Persisted ppl_sub_init for pipeline with ppl_id: 7d"},{"event":"cmd_output","timestamp":1607098230,"output":"08a45d-2e14-4bcb-b6f2-76c101a6a72a: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metada"},{"event":"cmd_output","timestamp":1607098230,"output":"ta<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 79, in_scheduli"},{"event":"cmd_output","timestamp":1607098230,"output":"ng: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:10:30.806754], pipeline_requests: #Ec"},{"event":"cmd_output","timestamp":1607098230,"output":"to.Association.NotLoaded, ppl_id: \"7d08a45d-2e14-4bcb-"},{"event":"cmd_output","timestamp":1607098230,"output":"b6f2-76c101a6a72a\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_"},{"event":"cmd_output","timestamp":1607098230,"output":"request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:30.806768]}\n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098230,"output":"6:10:30.813 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingState with name Elix"},{"event":"cmd_output","timestamp":1607098230,"output":"ir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\""},{"event":"cmd_output","timestamp":1607098230,"output":"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"pendin"},{"event":"cmd_output","timestamp":1607098230,"output":"g\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\""},{"event":"cmd_output","timestamp":1607098230,"output":", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl."},{"event":"cmd_output","timestamp":1607098230,"output":"EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_i"},{"event":"cmd_output","timestamp":1607098230,"output":"d], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:30.814 [info] Periodic f"},{"event":"cmd_output","timestamp":1607098230,"output":"rom module Elixir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler.PendingState"},{"event":"cmd_output","timestamp":1607098230,"output":" :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, rec"},{"event":"cmd_output","timestamp":1607098230,"output":"urring args: %{allowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_sec: 0, initi"},{"event":"cmd_output","timestamp":1607098230,"output":"al_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publisher_cb: #Function<0.8493005/1 in Ppl"},{"event":"cmd_output","timestamp":1607098230,"output":".Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :upd"},{"event":"cmd_output","timestamp":1607098230,"output":"ated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: P"},{"event":"cmd_output","timestamp":1607098230,"output":"plsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:10:30.814 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler."},{"event":"cmd_output","timestamp":1607098230,"output":"QueuingState with name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, metric_name: {\"Ppl"},{"event":"cmd_output","timestamp":1607098230,"output":".beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{allowed_states: [\"queui"},{"event":"cmd_output","timestamp":1607098230,"output":"ng\", \"running\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \""},{"event":"cmd_output","timestamp":1607098230,"output":"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.args/0>, repo: P"},{"event":"cmd_output","timestamp":1607098230,"output":"pl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :pp"},{"event":"cmd_output","timestamp":1607098230,"output":"l_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:30.815 [info] Periodi"},{"event":"cmd_output","timestamp":1607098230,"output":"c from module Elixir.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHandler.RunningSt"},{"event":"cmd_output","timestamp":1607098230,"output":"ate :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, "},{"event":"cmd_output","timestamp":1607098230,"output":"recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_que"},{"event":"cmd_output","timestamp":1607098230,"output":"ry: Ppl.Ppls.Model.Ppls, observed_state: \"running\", publisher_cb: #Function<0.74670282/1 in Ppl.Ppls"},{"event":"cmd_output","timestamp":1607098230,"output":".STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_"},{"event":"cmd_output","timestamp":1607098230,"output":"at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTa"},{"event":"cmd_output","timestamp":1607098230,"output":"skSupervisor}\n\u001b[0m\u001b[22m\n16:10:30.816 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.Stopp"},{"event":"cmd_output","timestamp":1607098230,"output":"ingState with name Elixir.Ppl.Ppls.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.be"},{"event":"cmd_output","timestamp":1607098230,"output":"holder-wake_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stoppin"},{"event":"cmd_output","timestamp":1607098230,"output":"g\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"stopping\", p"},{"event":"cmd_output","timestamp":1607098230,"output":"ublisher_cb: #Function<0.71803493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo"},{"event":"cmd_output","timestamp":1607098230,"output":", returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], sche"},{"event":"cmd_output","timestamp":1607098230,"output":"ma: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:30.817 [info] Periodic from modu"},{"event":"cmd_output","timestamp":1607098230,"output":"le Elixir.Ppl.PplSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHandler.Create"},{"event":"cmd_output","timestamp":1607098230,"output":"dState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-Created"},{"event":"cmd_output","timestamp":1607098230,"output":"State\"]}, recurring args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query"},{"event":"cmd_output","timestamp":1607098230,"output":": Ppl.PplSubInits.Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoR"},{"event":"cmd_output","timestamp":1607098230,"output":"epo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], s"},{"event":"cmd_output","timestamp":1607098230,"output":"chema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:30.818 [info] P"},{"event":"cmd_output","timestamp":1607098230,"output":"eriodic from module Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl.PplSubInits"},{"event":"cmd_output","timestamp":1607098230,"output":".STMHandler.FetchingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits"},{"event":"cmd_output","timestamp":1607098230,"output":"-STMHandler-FetchingState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"don"},{"event":"cmd_output","timestamp":1607098230,"output":"e\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fetchi"},{"event":"cmd_output","timestamp":1607098230,"output":"ng\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :sta"},{"event":"cmd_output","timestamp":1607098230,"output":"te, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: "},{"event":"cmd_output","timestamp":1607098230,"output":":skip}\n\u001b[0m\u001b[22m\n16:10:30.819 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.Compi"},{"event":"cmd_output","timestamp":1607098230,"output":"lationState with name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 100 ms, metric_n"},{"event":"cmd_output","timestamp":1607098230,"output":"ame: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurring args: %{al"},{"event":"cmd_output","timestamp":1607098230,"output":"lowed_states: [\"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_que"},{"event":"cmd_output","timestamp":1607098230,"output":"ry: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"compilation\", publisher_cb: :skip, repo: Ppl"},{"event":"cmd_output","timestamp":1607098230,"output":".EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_"},{"event":"cmd_output","timestamp":1607098230,"output":"id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:30.821 [in"},{"event":"cmd_output","timestamp":1607098230,"output":"fo] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with name Elixir.Ppl.Pp"},{"event":"cmd_output","timestamp":1607098230,"output":"lSubInits.STMHandler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl"},{"event":"cmd_output","timestamp":1607098230,"output":"-PplSubInits-STMHandler-RegularInitState\"]}, recurring args: %{allowed_states: [\"done\"], cooling_tim"},{"event":"cmd_output","timestamp":1607098230,"output":"e_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_init\", publishe"},{"event":"cmd_output","timestamp":1607098230,"output":"r_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, "},{"event":"cmd_output","timestamp":1607098230,"output":":recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098230,"output":"[22m\n16:10:30.822 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.InitializingState wi"},{"event":"cmd_output","timestamp":1607098230,"output":"th name Elixir.Ppl.PplBlocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beho"},{"event":"cmd_output","timestamp":1607098230,"output":"lder-wake_up\", [\"Ppl-PplBlocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\""},{"event":"cmd_output","timestamp":1607098230,"output":"initializing\", \"waiting\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks"},{"event":"cmd_output","timestamp":1607098230,"output":", observed_state: \"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :termina"},{"event":"cmd_output","timestamp":1607098230,"output":"te_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBl"},{"event":"cmd_output","timestamp":1607098230,"output":"ocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:30.823 [info] Periodic from module "},{"event":"cmd_output","timestamp":1607098230,"output":"Elixir.Ppl.PplBlocks.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler.WaitingState "},{"event":"cmd_output","timestamp":1607098230,"output":":: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}"},{"event":"cmd_output","timestamp":1607098230,"output":", recurring args: %{allowed_states: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 0, initial_que"},{"event":"cmd_output","timestamp":1607098230,"output":"ry: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"waiting\", publisher_cb: #Function<0.8975022/1 in"},{"event":"cmd_output","timestamp":1607098230,"output":" Ppl.PplBlocks.STMHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_requ"},{"event":"cmd_output","timestamp":1607098230,"output":"est, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Mo"},{"event":"cmd_output","timestamp":1607098230,"output":"del.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:30.824 [info] Periodic from module Elixir."},{"event":"cmd_output","timestamp":1607098230,"output":"Ppl.PplBlocks.STMHandler.RunningState with name Elixir.Ppl.PplBlocks.STMHandler.RunningState :: peri"},{"event":"cmd_output","timestamp":1607098230,"output":"od: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, recur"},{"event":"cmd_output","timestamp":1607098230,"output":"ring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: P"},{"event":"cmd_output","timestamp":1607098230,"output":"pl.PplBlocks.Model.PplBlocks, observed_state: \"running\", publisher_cb: #Function<0.28166834/1 in Ppl"},{"event":"cmd_output","timestamp":1607098230,"output":".PplBlocks.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request,"},{"event":"cmd_output","timestamp":1607098230,"output":" :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBl"},{"event":"cmd_output","timestamp":1607098230,"output":"ocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:30.825 [info] Periodic from module "},{"event":"cmd_output","timestamp":1607098230,"output":"Elixir.Ppl.PplBlocks.STMHandler.StoppingState with name Elixir.Ppl.PplBlocks.STMHandler.StoppingStat"},{"event":"cmd_output","timestamp":1607098230,"output":"e :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-StoppingState"},{"event":"cmd_output","timestamp":1607098230,"output":"\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Pp"},{"event":"cmd_output","timestamp":1607098230,"output":"l.PplBlocks.Model.PplBlocks, observed_state: \"stopping\", publisher_cb: #Function<0.104215991/1 in Pp"},{"event":"cmd_output","timestamp":1607098230,"output":"l.PplBlocks.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_reques"},{"event":"cmd_output","timestamp":1607098230,"output":"t, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098230,"output":"Blocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:30.826 [info] Periodic from modul"},{"event":"cmd_output","timestamp":1607098230,"output":"e Elixir.Block.Blocks.STMHandler.InitializingState with name Elixir.Block.Blocks.STMHandler.Initiali"},{"event":"cmd_output","timestamp":1607098230,"output":"zingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-Initial"},{"event":"cmd_output","timestamp":1607098230,"output":"izingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_q"},{"event":"cmd_output","timestamp":1607098230,"output":"uery: Block.Blocks.Model.Blocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Block.Ec"},{"event":"cmd_output","timestamp":1607098230,"output":"toRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schem"},{"event":"cmd_output","timestamp":1607098230,"output":"a: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:30.827 [info] Periodic from"},{"event":"cmd_output","timestamp":1607098230,"output":" module Elixir.Block.Blocks.STMHandler.RunningState with name Elixir.Block.Blocks.STMHandler.Running"},{"event":"cmd_output","timestamp":1607098230,"output":"State :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-RunningStat"},{"event":"cmd_output","timestamp":1607098230,"output":"e\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initi"},{"event":"cmd_output","timestamp":1607098230,"output":"al_query: Block.Blocks.Model.Blocks, observed_state: \"running\", publisher_cb: :skip, repo: Block.Ect"},{"event":"cmd_output","timestamp":1607098230,"output":"oRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema"},{"event":"cmd_output","timestamp":1607098230,"output":": Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:30.827 [info] Periodic from "},{"event":"cmd_output","timestamp":1607098230,"output":"module Elixir.Block.Blocks.STMHandler.StoppingState with name Elixir.Block.Blocks.STMHandler.Stoppin"},{"event":"cmd_output","timestamp":1607098230,"output":"gState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-StoppingSt"},{"event":"cmd_output","timestamp":1607098230,"output":"ate\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query:"},{"event":"cmd_output","timestamp":1607098230,"output":" Block.Blocks.Model.Blocks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, r"},{"event":"cmd_output","timestamp":1607098230,"output":"eturning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block."},{"event":"cmd_output","timestamp":1607098230,"output":"Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:30.829 [info] Periodic from module E"},{"event":"cmd_output","timestamp":1607098230,"output":"lixir.Block.Tasks.STMHandler.PendingState with name Elixir.Block.Tasks.STMHandler.PendingState :: pe"},{"event":"cmd_output","timestamp":1607098230,"output":"riod: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingState\"]}, recurr"},{"event":"cmd_output","timestamp":1607098230,"output":"ing args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Tasks.Mod"},{"event":"cmd_output","timestamp":1607098230,"output":"el.Tasks, observed_state: \"pending\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :te"},{"event":"cmd_output","timestamp":1607098230,"output":"rminate_request, :updated_at, :state, :recovery_count, :block_id, :build_request_id], schema: Block."},{"event":"cmd_output","timestamp":1607098230,"output":"Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:30.829 [info] Periodic from module Eli"},{"event":"cmd_output","timestamp":1607098230,"output":"xir.Block.Tasks.STMHandler.RunningState with name Elixir.Block.Tasks.STMHandler.RunningState :: peri"},{"event":"cmd_output","timestamp":1607098230,"output":"od: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningState\"]}, recurrin"},{"event":"cmd_output","timestamp":1607098230,"output":"g args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Bloc"},{"event":"cmd_output","timestamp":1607098230,"output":"k.Tasks.Model.Tasks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning"},{"event":"cmd_output","timestamp":1607098230,"output":": [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Mo"},{"event":"cmd_output","timestamp":1607098230,"output":"del.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:30.831 [info] Periodic from module Elixir.Bloc"},{"event":"cmd_output","timestamp":1607098230,"output":"k.Tasks.STMHandler.StoppingState with name Elixir.Block.Tasks.STMHandler.StoppingState :: period: 10"},{"event":"cmd_output","timestamp":1607098230,"output":"0 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]}, recurring arg"},{"event":"cmd_output","timestamp":1607098230,"output":"s: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Ta"},{"event":"cmd_output","timestamp":1607098230,"output":"sks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :termin"},{"event":"cmd_output","timestamp":1607098230,"output":"ate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task"},{"event":"cmd_output","timestamp":1607098230,"output":"_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:30.935 [info] ppl_id: e3a9c4c7-02e5-4ff9-9ff5-4b33ed789a05, t"},{"event":"cmd_output","timestamp":1607098230,"output":"ype: PplRequests, event: persisted source_args for pipeline: e3a9c4c7-02e5-4ff9-9ff5-4b33ed789a05, o"},{"event":"cmd_output","timestamp":1607098230,"output":"rigin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:30.9"},{"event":"cmd_output","timestamp":1607098230,"output":"40 [info] ppl_id: e3a9c4c7-02e5-4ff9-9ff5-4b33ed789a05, type: PplSubInits, state: fetching, event: "},{"event":"cmd_output","timestamp":1607098230,"output":"exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098230,"output":"22m\n16:10:30.966 [info] ppl_id: e3a9c4c7-02e5-4ff9-9ff5-4b33ed789a05, type: PplSubInits, state: re"},{"event":"cmd_output","timestamp":1607098230,"output":"gular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chan"},{"event":"cmd_output","timestamp":1607098230,"output":"ge/1(L90), \n\u001b[0m\u001b[22m\n16:10:30.990 [info] ppl_id: e3a9c4c7-02e5-4ff9-9ff5-4b33ed789a05, type: Ppl"},{"event":"cmd_output","timestamp":1607098230,"output":"Requests, event: persisted definition for request with request_token: 3aa241aa-364b-11eb-94b3-525400"},{"event":"cmd_output","timestamp":1607098230,"output":"5464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098230,"output":"m\n16:10:30.993 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metad"},{"event":"cmd_output","timestamp":1607098230,"output":"ata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:10:30.992485], name: \"master-0-.semaphore/sema"},{"event":"cmd_output","timestamp":1607098230,"output":"phore.yml\", organization_id: \"3068e1a1-6eb8-4b03-8b50-928fa9e86e87\", project_id: \"list_grouped_ks\", "},{"event":"cmd_output","timestamp":1607098230,"output":"queue_id: \"74e5296b-947d-4db9-aba5-0fffadb8a3b3\", scope: \"project\", updated_at: ~N[2020-12-04 16:10:"},{"event":"cmd_output","timestamp":1607098231,"output":"30.992497], user_generated: false}}\n\u001b[0m\u001b[22m\n16:10:31.007 [info] event: created, origin: Elixir."},{"event":"cmd_output","timestamp":1607098231,"output":"Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:31.007 [info] ppl_i"},{"event":"cmd_output","timestamp":1607098231,"output":"d: e3a9c4c7-02e5-4ff9-9ff5-4b33ed789a05, type: PplBlocks, block_index: 0, state: initializing, event"},{"event":"cmd_output","timestamp":1607098231,"output":": created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L"},{"event":"cmd_output","timestamp":1607098231,"output":"105), \n\u001b[0m\u001b[22m\n16:10:31.009 [info] ppl_id: e3a9c4c7-02e5-4ff9-9ff5-4b33ed789a05, type: PplSubIn"},{"event":"cmd_output","timestamp":1607098231,"output":"its, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.S"},{"event":"cmd_output","timestamp":1607098231,"output":"TM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.017 [info] ppl_id: e3a9c4c7-02e5-4ff9-9ff5-4"},{"event":"cmd_output","timestamp":1607098231,"output":"b33ed789a05, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098231,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.024 [info] ppl_id: e3a9c4c7-02e5-4ff9"},{"event":"cmd_output","timestamp":1607098231,"output":"-9ff5-4b33ed789a05, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recover"},{"event":"cmd_output","timestamp":1607098231,"output":"y_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.035 [info]"},{"event":"cmd_output","timestamp":1607098231,"output":" ppl_id: e3a9c4c7-02e5-4ff9-9ff5-4b33ed789a05, type: Ppls, state: queuing, event: exit_scheduling, "},{"event":"cmd_output","timestamp":1607098231,"output":"recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.052"},{"event":"cmd_output","timestamp":1607098231,"output":" [info] ppl_id: 64ee8488-bea7-473e-b5b0-f45461ecbcc2, type: PplRequests, event: persisted source_ar"},{"event":"cmd_output","timestamp":1607098231,"output":"gs for pipeline: 64ee8488-bea7-473e-b5b0-f45461ecbcc2, origin: Elixir.Ppl.PplRequests.Model.PplReque"},{"event":"cmd_output","timestamp":1607098231,"output":"stsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:31.053 [info] ppl_id: e3a9c4c7-02e5-4ff9-9ff5-4"},{"event":"cmd_output","timestamp":1607098231,"output":"b33ed789a05, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098231,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.056 [info] ppl_id: 64ee8488-bea7-473e"},{"event":"cmd_output","timestamp":1607098231,"output":"-b5b0-f45461ecbcc2, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098231,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.064 [info] PplBlocks W"},{"event":"cmd_output","timestamp":1607098231,"output":"aitingState STM is scheduling block 0 from pipeline: \"e3a9c4c7-02e5-4ff9-9ff5-4b33ed789a05\"\n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098231,"output":"2m\n16:10:31.070 [info] block_id: f2c9baea-bb19-4741-a128-eb4eddae0e40, type: BlockRequests, event:"},{"event":"cmd_output","timestamp":1607098231,"output":" persisted block run request from ppl e3a9c4c7-02e5-4ff9-9ff5-4b33ed789a05 for block 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098231,"output":"ir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:31.072"},{"event":"cmd_output","timestamp":1607098231,"output":" [info] block_id: f2c9baea-bb19-4741-a128-eb4eddae0e40, type: Blocks, state: initializing, event: i"},{"event":"cmd_output","timestamp":1607098231,"output":"nitializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098231,"output":"m\u001b[22m\n16:10:31.074 [info] Block 0 of pipeline with id: e3a9c4c7-02e5-4ff9-9ff5-4b33ed789a05 sched"},{"event":"cmd_output","timestamp":1607098231,"output":"uled in block service with id: : \"f2c9baea-bb19-4741-a128-eb4eddae0e40\"\n\u001b[0m\u001b[22m\n16:10:31.078 [in"},{"event":"cmd_output","timestamp":1607098231,"output":"fo] ppl_id: e3a9c4c7-02e5-4ff9-9ff5-4b33ed789a05, type: PplBlocks, block_index: 0, state: running, "},{"event":"cmd_output","timestamp":1607098231,"output":"event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \r"},{"event":"cmd_output","timestamp":1607098231,"output":"\n\u001b[0m\u001b[22m\n16:10:31.082 [info] block_id: f2c9baea-bb19-4741-a128-eb4eddae0e40, type: BlockRequests"},{"event":"cmd_output","timestamp":1607098231,"output":", event: persisted build and sub_ppl details for block_request: f2c9baea-bb19-4741-a128-eb4eddae0e40"},{"event":"cmd_output","timestamp":1607098231,"output":", origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098231,"output":":10:31.085 [info] ppl_id: 64ee8488-bea7-473e-b5b0-f45461ecbcc2, type: PplSubInits, state: regular_i"},{"event":"cmd_output","timestamp":1607098231,"output":"nit, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L9"},{"event":"cmd_output","timestamp":1607098231,"output":"0), \n\u001b[0m\u001b[22m\n16:10:31.085 [info] block_id: f2c9baea-bb19-4741-a128-eb4eddae0e40, type: Tasks, s"},{"event":"cmd_output","timestamp":1607098231,"output":"tate: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.Initializin"},{"event":"cmd_output","timestamp":1607098231,"output":"gState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:31.089 [info] block_id: f2c9baea-bb19-4741-a128-eb4eddae"},{"event":"cmd_output","timestamp":1607098231,"output":"0e40, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper"},{"event":"cmd_output","timestamp":1607098231,"output":".STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.106 [info] block_id: f2c9baea-bb19-4741-a1"},{"event":"cmd_output","timestamp":1607098231,"output":"28-eb4eddae0e40, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098231,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.122 [info] ppl_id: 64ee8488-bea7"},{"event":"cmd_output","timestamp":1607098231,"output":"-473e-b5b0-f45461ecbcc2, type: PplRequests, event: persisted definition for request with request_tok"},{"event":"cmd_output","timestamp":1607098231,"output":"en: 3aaa917a-364b-11eb-99b4-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.in"},{"event":"cmd_output","timestamp":1607098231,"output":"sert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:31.128 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Q"},{"event":"cmd_output","timestamp":1607098231,"output":"ueues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:10:31.127337"},{"event":"cmd_output","timestamp":1607098231,"output":"], name: \"master-1-.semaphore/semaphore.yml\", organization_id: \"34fc9efd-66b1-498a-a46f-98f8bacc7b0e"},{"event":"cmd_output","timestamp":1607098231,"output":"\", project_id: \"list_grouped_ks\", queue_id: \"95cfa36b-a455-4633-b898-4b147a16ddaa\", scope: \"project\""},{"event":"cmd_output","timestamp":1607098231,"output":", updated_at: ~N[2020-12-04 16:10:31.127351], user_generated: false}}\n\u001b[0m\u001b[22m\n16:10:31.132 [info"},{"event":"cmd_output","timestamp":1607098231,"output":"] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098231,"output":"m\u001b[22m\n16:10:31.132 [info] ppl_id: 64ee8488-bea7-473e-b5b0-f45461ecbcc2, type: PplBlocks, block_in"},{"event":"cmd_output","timestamp":1607098231,"output":"dex: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHa"},{"event":"cmd_output","timestamp":1607098231,"output":"ndler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:31.135 [info] ppl_id: 64ee8488-bea7-473e"},{"event":"cmd_output","timestamp":1607098231,"output":"-b5b0-f45461ecbcc2, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery"},{"event":"cmd_output","timestamp":1607098231,"output":"_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.152 [info] "},{"event":"cmd_output","timestamp":1607098231,"output":" ppl_id: 64ee8488-bea7-473e-b5b0-f45461ecbcc2, type: PplBlocks, block_index: 0, state: waiting, even"},{"event":"cmd_output","timestamp":1607098231,"output":"t: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098231,"output":"m\u001b[22m\n16:10:31.160 [info] ppl_id: 64ee8488-bea7-473e-b5b0-f45461ecbcc2, type: Ppls, state: pendin"},{"event":"cmd_output","timestamp":1607098231,"output":"g, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90)"},{"event":"cmd_output","timestamp":1607098231,"output":", \n\u001b[0m\u001b[22m\n16:10:31.168 [info] block_id: f2c9baea-bb19-4741-a128-eb4eddae0e40, type: Tasks, sta"},{"event":"cmd_output","timestamp":1607098231,"output":"te: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change"},{"event":"cmd_output","timestamp":1607098231,"output":"/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.172 [info] ppl_id: f724d2a2-4bc3-4d5a-bf10-dd079113c0d3, type: PplRe"},{"event":"cmd_output","timestamp":1607098231,"output":"quests, event: persisted source_args for pipeline: f724d2a2-4bc3-4d5a-bf10-dd079113c0d3, origin: Eli"},{"event":"cmd_output","timestamp":1607098231,"output":"xir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:31.176 [info] "},{"event":"cmd_output","timestamp":1607098231,"output":" ppl_id: f724d2a2-4bc3-4d5a-bf10-dd079113c0d3, type: PplSubInits, state: fetching, event: exit_sched"},{"event":"cmd_output","timestamp":1607098231,"output":"uling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10"},{"event":"cmd_output","timestamp":1607098231,"output":":31.178 [info] ppl_id: 64ee8488-bea7-473e-b5b0-f45461ecbcc2, type: Ppls, state: queuing, event: exi"},{"event":"cmd_output","timestamp":1607098231,"output":"t_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098231,"output":"\n16:10:31.182 [info] block_id: f2c9baea-bb19-4741-a128-eb4eddae0e40, type: Blocks, state: done, ev"},{"event":"cmd_output","timestamp":1607098231,"output":"ent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b"},{"event":"cmd_output","timestamp":1607098231,"output":"[0m\u001b[22m\n16:10:31.198 [info] ppl_id: 64ee8488-bea7-473e-b5b0-f45461ecbcc2, type: Ppls, state: runn"},{"event":"cmd_output","timestamp":1607098231,"output":"ing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L9"},{"event":"cmd_output","timestamp":1607098231,"output":"0), \n\u001b[0m\u001b[22m\n16:10:31.199 [info] ppl_id: e3a9c4c7-02e5-4ff9-9ff5-4b33ed789a05, block_id: f2c9ba"},{"event":"cmd_output","timestamp":1607098231,"output":"ea-bb19-4741-a128-eb4eddae0e40, type: PplBlocks, block_index: 0, state: done, result: passed, event:"},{"event":"cmd_output","timestamp":1607098231,"output":" exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098231,"output":"[22m\n16:10:31.215 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"64ee8488"},{"event":"cmd_output","timestamp":1607098231,"output":"-bea7-473e-b5b0-f45461ecbcc2\"\n\u001b[0m\u001b[22m\n16:10:31.226 [info] block_id: b48a7d41-8e36-48a1-be22-daa"},{"event":"cmd_output","timestamp":1607098231,"output":"520cf9ce5, type: BlockRequests, event: persisted block run request from ppl 64ee8488-bea7-473e-b5b0-"},{"event":"cmd_output","timestamp":1607098231,"output":"f45461ecbcc2 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_resp"},{"event":"cmd_output","timestamp":1607098231,"output":"onse/4(L35), \n\u001b[0m\u001b[22m\n16:10:31.230 [info] block_id: b48a7d41-8e36-48a1-be22-daa520cf9ce5, type:"},{"event":"cmd_output","timestamp":1607098231,"output":" Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Mo"},{"event":"cmd_output","timestamp":1607098231,"output":"del.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:31.232 [info] ppl_id: e3a9c4c7-02e5-4ff9-9ff5-4"},{"event":"cmd_output","timestamp":1607098231,"output":"b33ed789a05, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098231,"output":"gin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.233 [info] ppl_id: f724d"},{"event":"cmd_output","timestamp":1607098231,"output":"2a2-4bc3-4d5a-bf10-dd079113c0d3, type: PplSubInits, state: regular_init, event: exit_scheduling, rec"},{"event":"cmd_output","timestamp":1607098231,"output":"overy_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.239 [i"},{"event":"cmd_output","timestamp":1607098231,"output":"nfo] Block 0 of pipeline with id: 64ee8488-bea7-473e-b5b0-f45461ecbcc2 scheduled in block service w"},{"event":"cmd_output","timestamp":1607098231,"output":"ith id: : \"b48a7d41-8e36-48a1-be22-daa520cf9ce5\"\n\u001b[0m\u001b[22m\n16:10:31.242 [info] ppl_id: 64ee8488-b"},{"event":"cmd_output","timestamp":1607098231,"output":"ea7-473e-b5b0-f45461ecbcc2, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling,"},{"event":"cmd_output","timestamp":1607098231,"output":" recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.24"},{"event":"cmd_output","timestamp":1607098231,"output":"7 [info] block_id: b48a7d41-8e36-48a1-be22-daa520cf9ce5, type: BlockRequests, event: persisted buil"},{"event":"cmd_output","timestamp":1607098231,"output":"d and sub_ppl details for block_request: b48a7d41-8e36-48a1-be22-daa520cf9ce5, origin: Elixir.Block."},{"event":"cmd_output","timestamp":1607098231,"output":"BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:31.254 [info] bloc"},{"event":"cmd_output","timestamp":1607098231,"output":"k_id: b48a7d41-8e36-48a1-be22-daa520cf9ce5, type: Tasks, state: pending, event: created, recovery_co"},{"event":"cmd_output","timestamp":1607098231,"output":"unt: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10"},{"event":"cmd_output","timestamp":1607098231,"output":":31.259 [info] block_id: b48a7d41-8e36-48a1-be22-daa520cf9ce5, type: Blocks, state: running, event:"},{"event":"cmd_output","timestamp":1607098231,"output":" exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098231,"output":"[22m\n16:10:31.285 [info] ppl_id: f724d2a2-4bc3-4d5a-bf10-dd079113c0d3, type: PplRequests, event: p"},{"event":"cmd_output","timestamp":1607098231,"output":"ersisted definition for request with request_token: 3ab344be-364b-11eb-982d-5254005464e2, origin: El"},{"event":"cmd_output","timestamp":1607098231,"output":"ixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:31.291 [i"},{"event":"cmd_output","timestamp":1607098231,"output":"nfo] block_id: b48a7d41-8e36-48a1-be22-daa520cf9ce5, type: Tasks, state: running, event: exit_sched"},{"event":"cmd_output","timestamp":1607098231,"output":"uling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10"},{"event":"cmd_output","timestamp":1607098231,"output":":31.293 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loa"},{"event":"cmd_output","timestamp":1607098231,"output":"ded, \"queues\">, inserted_at: ~N[2020-12-04 16:10:31.289189], name: \"master-2-.semaphore/semaphore.ym"},{"event":"cmd_output","timestamp":1607098231,"output":"l\", organization_id: \"ebc1a532-6fb1-443c-a0b5-b21b3d9f1f56\", project_id: \"list_grouped_ks\", queue_id"},{"event":"cmd_output","timestamp":1607098231,"output":": \"cdd4606e-332d-435a-a545-ea4c64b9637b\", scope: \"project\", updated_at: ~N[2020-12-04 16:10:31.28919"},{"event":"cmd_output","timestamp":1607098231,"output":"9], user_generated: false}}\n\u001b[0m\u001b[22m\n16:10:31.299 [info] event: created, origin: Elixir.Ppl.PplS"},{"event":"cmd_output","timestamp":1607098231,"output":"ubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:31.299 [info] ppl_id: f724d"},{"event":"cmd_output","timestamp":1607098231,"output":"2a2-4bc3-4d5a-bf10-dd079113c0d3, type: PplBlocks, block_index: 0, state: initializing, event: create"},{"event":"cmd_output","timestamp":1607098231,"output":"d, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n"},{"event":"cmd_output","timestamp":1607098231,"output":"\u001b[0m\u001b[22m\n16:10:31.301 [info] ppl_id: 5b6df62b-edb4-468c-8034-d92349521525, type: PplRequests, eve"},{"event":"cmd_output","timestamp":1607098231,"output":"nt: persisted source_args for pipeline: 5b6df62b-edb4-468c-8034-d92349521525, origin: Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098231,"output":"Requests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:31.303 [info] ppl_id: f7"},{"event":"cmd_output","timestamp":1607098231,"output":"24d2a2-4bc3-4d5a-bf10-dd079113c0d3, type: PplSubInits, state: done, result: passed, event: exit_sche"},{"event":"cmd_output","timestamp":1607098231,"output":"duling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098231,"output":"0:31.305 [info] ppl_id: 5b6df62b-edb4-468c-8034-d92349521525, type: PplSubInits, state: fetching, e"},{"event":"cmd_output","timestamp":1607098231,"output":"vent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n"},{"event":"cmd_output","timestamp":1607098231,"output":"\u001b[0m\u001b[22m\n16:10:31.313 [info] ppl_id: f724d2a2-4bc3-4d5a-bf10-dd079113c0d3, type: PplBlocks, block"},{"event":"cmd_output","timestamp":1607098231,"output":"_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl"},{"event":"cmd_output","timestamp":1607098231,"output":".log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.314 [info] ppl_id: f724d2a2-4bc3-4d5a-bf10-dd079113"},{"event":"cmd_output","timestamp":1607098231,"output":"c0d3, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.S"},{"event":"cmd_output","timestamp":1607098231,"output":"TM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.321 [info] ppl_id: f724d2a2-4bc3-4d5a-bf10-d"},{"event":"cmd_output","timestamp":1607098231,"output":"d079113c0d3, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098231,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.332 [info] ppl_id: f724d2a2-4bc3-4d5a"},{"event":"cmd_output","timestamp":1607098231,"output":"-bf10-dd079113c0d3, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: E"},{"event":"cmd_output","timestamp":1607098231,"output":"lixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.340 [info] PplBlocks WaitingSt"},{"event":"cmd_output","timestamp":1607098231,"output":"ate STM is scheduling block 0 from pipeline: \"f724d2a2-4bc3-4d5a-bf10-dd079113c0d3\"\n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098231,"output":"0:31.345 [info] ppl_id: 5b6df62b-edb4-468c-8034-d92349521525, type: PplSubInits, state: regular_ini"},{"event":"cmd_output","timestamp":1607098231,"output":"t, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90)"},{"event":"cmd_output","timestamp":1607098231,"output":", \n\u001b[0m\u001b[22m\n16:10:31.346 [info] block_id: 8e5418c8-c60a-40cc-ab0b-db99cd5ec11f, type: BlockReque"},{"event":"cmd_output","timestamp":1607098231,"output":"sts, event: persisted block run request from ppl f724d2a2-4bc3-4d5a-bf10-dd079113c0d3 for block 0, o"},{"event":"cmd_output","timestamp":1607098231,"output":"rigin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098231,"output":"6:10:31.349 [info] block_id: 8e5418c8-c60a-40cc-ab0b-db99cd5ec11f, type: Blocks, state: initializin"},{"event":"cmd_output","timestamp":1607098231,"output":"g, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1("},{"event":"cmd_output","timestamp":1607098231,"output":"L43), \n\u001b[0m\u001b[22m\n16:10:31.352 [info] Block 0 of pipeline with id: f724d2a2-4bc3-4d5a-bf10-dd07911"},{"event":"cmd_output","timestamp":1607098231,"output":"3c0d3 scheduled in block service with id: : \"8e5418c8-c60a-40cc-ab0b-db99cd5ec11f\"\n\u001b[0m\u001b[22m\n16:10"},{"event":"cmd_output","timestamp":1607098231,"output":":31.354 [info] ppl_id: f724d2a2-4bc3-4d5a-bf10-dd079113c0d3, type: PplBlocks, block_index: 0, state"},{"event":"cmd_output","timestamp":1607098231,"output":": running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chang"},{"event":"cmd_output","timestamp":1607098231,"output":"e/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.360 [info] block_id: 8e5418c8-c60a-40cc-ab0b-db99cd5ec11f, type: Bl"},{"event":"cmd_output","timestamp":1607098231,"output":"ockRequests, event: persisted build and sub_ppl details for block_request: 8e5418c8-c60a-40cc-ab0b-d"},{"event":"cmd_output","timestamp":1607098231,"output":"b99cd5ec11f, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b["},{"event":"cmd_output","timestamp":1607098231,"output":"0m\u001b[22m\n16:10:31.365 [info] block_id: 8e5418c8-c60a-40cc-ab0b-db99cd5ec11f, type: Tasks, state: pe"},{"event":"cmd_output","timestamp":1607098231,"output":"nding, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.a"},{"event":"cmd_output","timestamp":1607098231,"output":"ll_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:31.369 [info] block_id: 8e5418c8-c60a-40cc-ab0b-db99cd5ec11f, ty"},{"event":"cmd_output","timestamp":1607098231,"output":"pe: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Imp"},{"event":"cmd_output","timestamp":1607098231,"output":"l.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.389 [info] block_id: 8e5418c8-c60a-40cc-ab0b-db99c"},{"event":"cmd_output","timestamp":1607098231,"output":"d5ec11f, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loop"},{"event":"cmd_output","timestamp":1607098231,"output":"er.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.392 [info] ppl_id: 5b6df62b-edb4-468c-80"},{"event":"cmd_output","timestamp":1607098231,"output":"34-d92349521525, type: PplRequests, event: persisted definition for request with request_token: 3ab9"},{"event":"cmd_output","timestamp":1607098231,"output":"b056-364b-11eb-95f2-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_def"},{"event":"cmd_output","timestamp":1607098231,"output":"inition/3(L76), \n\u001b[0m\u001b[22m\n16:10:31.399 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__"},{"event":"cmd_output","timestamp":1607098231,"output":"meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:10:31.397876], name:"},{"event":"cmd_output","timestamp":1607098231,"output":" \"master-3-.semaphore/semaphore.yml\", organization_id: \"842bf3f2-194b-49e0-a2d8-bc99ae4f1429\", proje"},{"event":"cmd_output","timestamp":1607098231,"output":"ct_id: \"list_grouped_ks\", queue_id: \"408ccb2f-8d80-44b6-9898-1b982cd18f2f\", scope: \"project\", update"},{"event":"cmd_output","timestamp":1607098231,"output":"d_at: ~N[2020-12-04 16:10:31.397890], user_generated: false}}\n\u001b[0m\u001b[22m\n16:10:31.401 [info] block"},{"event":"cmd_output","timestamp":1607098231,"output":"_id: b48a7d41-8e36-48a1-be22-daa520cf9ce5, type: Tasks, state: done, event: exit_scheduling, recover"},{"event":"cmd_output","timestamp":1607098231,"output":"y_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.408 [info]"},{"event":"cmd_output","timestamp":1607098231,"output":" event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098231,"output":"\u001b[22m\n16:10:31.408 [info] ppl_id: 5b6df62b-edb4-468c-8034-d92349521525, type: PplBlocks, block_ind"},{"event":"cmd_output","timestamp":1607098231,"output":"ex: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHan"},{"event":"cmd_output","timestamp":1607098231,"output":"dler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:31.411 [info] ppl_id: 5b6df62b-edb4-468c-"},{"event":"cmd_output","timestamp":1607098231,"output":"8034-d92349521525, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_"},{"event":"cmd_output","timestamp":1607098231,"output":"count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.422 [info] "},{"event":"cmd_output","timestamp":1607098231,"output":"ppl_id: 1ab2a87a-e96b-4175-95ae-8425f6480900, type: PplRequests, event: persisted source_args for pi"},{"event":"cmd_output","timestamp":1607098231,"output":"peline: 1ab2a87a-e96b-4175-95ae-8425f6480900, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQuerie"},{"event":"cmd_output","timestamp":1607098231,"output":"s.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:31.426 [info] block_id: b48a7d41-8e36-48a1-be22-daa520cf"},{"event":"cmd_output","timestamp":1607098231,"output":"9ce5, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.ST"},{"event":"cmd_output","timestamp":1607098231,"output":"M.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.429 [info] ppl_id: 5b6df62b-edb4-468c-8034-d9"},{"event":"cmd_output","timestamp":1607098231,"output":"2349521525, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count:"},{"event":"cmd_output","timestamp":1607098231,"output":" 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.431 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098231,"output":": 1ab2a87a-e96b-4175-95ae-8425f6480900, type: PplSubInits, state: fetching, event: exit_scheduling, "},{"event":"cmd_output","timestamp":1607098231,"output":"recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.435"},{"event":"cmd_output","timestamp":1607098231,"output":" [info] ppl_id: 5b6df62b-edb4-468c-8034-d92349521525, type: Ppls, state: pending, event: exit_sched"},{"event":"cmd_output","timestamp":1607098231,"output":"uling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10"},{"event":"cmd_output","timestamp":1607098231,"output":":31.444 [info] ppl_id: 64ee8488-bea7-473e-b5b0-f45461ecbcc2, block_id: b48a7d41-8e36-48a1-be22-daa5"},{"event":"cmd_output","timestamp":1607098231,"output":"20cf9ce5, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, reco"},{"event":"cmd_output","timestamp":1607098231,"output":"very_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.453 [in"},{"event":"cmd_output","timestamp":1607098231,"output":"fo] ppl_id: 5b6df62b-edb4-468c-8034-d92349521525, type: Ppls, state: queuing, event: exit_schedulin"},{"event":"cmd_output","timestamp":1607098231,"output":"g, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31."},{"event":"cmd_output","timestamp":1607098231,"output":"464 [info] ppl_id: 1ab2a87a-e96b-4175-95ae-8425f6480900, type: PplSubInits, state: regular_init, ev"},{"event":"cmd_output","timestamp":1607098231,"output":"ent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b"},{"event":"cmd_output","timestamp":1607098231,"output":"[0m\u001b[22m\n16:10:31.472 [info] ppl_id: 5b6df62b-edb4-468c-8034-d92349521525, type: Ppls, state: runn"},{"event":"cmd_output","timestamp":1607098231,"output":"ing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L9"},{"event":"cmd_output","timestamp":1607098231,"output":"0), \n\u001b[0m\u001b[22m\n16:10:31.479 [info] ppl_id: 64ee8488-bea7-473e-b5b0-f45461ecbcc2, type: Ppls, stat"},{"event":"cmd_output","timestamp":1607098231,"output":"e: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.l"},{"event":"cmd_output","timestamp":1607098231,"output":"og_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.486 [info] PplBlocks WaitingState STM is scheduling b"},{"event":"cmd_output","timestamp":1607098231,"output":"lock 0 from pipeline: \"5b6df62b-edb4-468c-8034-d92349521525\"\n\u001b[0m\u001b[22m\n16:10:31.494 [info] block_"},{"event":"cmd_output","timestamp":1607098231,"output":"id: 0df82246-a3eb-4061-b70f-75f56e42c36f, type: BlockRequests, event: persisted block run request fr"},{"event":"cmd_output","timestamp":1607098231,"output":"om ppl 5b6df62b-edb4-468c-8034-d92349521525 for block 0, origin: Elixir.Block.BlockRequests.Model.Bl"},{"event":"cmd_output","timestamp":1607098231,"output":"ockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:31.496 [info] block_id: 0df82246-a3e"},{"event":"cmd_output","timestamp":1607098231,"output":"b-4061-b70f-75f56e42c36f, type: Blocks, state: initializing, event: initializing, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098231,"output":" origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:31.500 [info] Bl"},{"event":"cmd_output","timestamp":1607098231,"output":"ock 0 of pipeline with id: 5b6df62b-edb4-468c-8034-d92349521525 scheduled in block service with id: "},{"event":"cmd_output","timestamp":1607098231,"output":": \"0df82246-a3eb-4061-b70f-75f56e42c36f\"\n\u001b[0m\u001b[22m\n16:10:31.504 [info] ppl_id: 5b6df62b-edb4-468c"},{"event":"cmd_output","timestamp":1607098231,"output":"-8034-d92349521525, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recover"},{"event":"cmd_output","timestamp":1607098231,"output":"y_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.507 [info]"},{"event":"cmd_output","timestamp":1607098231,"output":" block_id: 0df82246-a3eb-4061-b70f-75f56e42c36f, type: BlockRequests, event: persisted build and su"},{"event":"cmd_output","timestamp":1607098231,"output":"b_ppl details for block_request: 0df82246-a3eb-4061-b70f-75f56e42c36f, origin: Elixir.Block.BlockReq"},{"event":"cmd_output","timestamp":1607098231,"output":"uests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:31.510 [info] block_id: 0d"},{"event":"cmd_output","timestamp":1607098231,"output":"f82246-a3eb-4061-b70f-75f56e42c36f, type: Tasks, state: pending, event: created, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098231,"output":"origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:31.513 "},{"event":"cmd_output","timestamp":1607098231,"output":"[info] block_id: 0df82246-a3eb-4061-b70f-75f56e42c36f, type: Blocks, state: running, event: exit_sc"},{"event":"cmd_output","timestamp":1607098231,"output":"heduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098231,"output":":10:31.517 [info] ppl_id: 1ab2a87a-e96b-4175-95ae-8425f6480900, type: PplRequests, event: persisted"},{"event":"cmd_output","timestamp":1607098231,"output":" definition for request with request_token: 3ac3cd48-364b-11eb-94d5-5254005464e2, origin: Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098231,"output":".PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:31.528 [info] Qu"},{"event":"cmd_output","timestamp":1607098231,"output":"eue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, in"},{"event":"cmd_output","timestamp":1607098231,"output":"serted_at: ~N[2020-12-04 16:10:31.524403], name: \"master-4-.semaphore/semaphore.yml\", organization_i"},{"event":"cmd_output","timestamp":1607098231,"output":"d: \"178c5a12-8c4f-4225-b5b3-a24bc7d9b3c5\", project_id: \"list_grouped_ks\", queue_id: \"2e4ceab7-03f4-4"},{"event":"cmd_output","timestamp":1607098231,"output":"c6a-aef9-6edac83cd5d3\", scope: \"project\", updated_at: ~N[2020-12-04 16:10:31.524416], user_generated"},{"event":"cmd_output","timestamp":1607098231,"output":": false}}\n\u001b[0m\u001b[22m\n16:10:31.530 [info] block_id: 8e5418c8-c60a-40cc-ab0b-db99cd5ec11f, type: Tas"},{"event":"cmd_output","timestamp":1607098231,"output":"ks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state"},{"event":"cmd_output","timestamp":1607098231,"output":"_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.547 [info] block_id: 0df82246-a3eb-4061-b70f-75f56e42c36f, ty"},{"event":"cmd_output","timestamp":1607098231,"output":"pe: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl"},{"event":"cmd_output","timestamp":1607098231,"output":".log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.552 [info] block_id: 8e5418c8-c60a-40cc-ab0b-db99cd"},{"event":"cmd_output","timestamp":1607098231,"output":"5ec11f, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper."},{"event":"cmd_output","timestamp":1607098231,"output":"STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.556 [info] event: created, origin: Elixir.P"},{"event":"cmd_output","timestamp":1607098231,"output":"pl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:31.556 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098231,"output":": 1ab2a87a-e96b-4175-95ae-8425f6480900, type: PplBlocks, block_index: 0, state: initializing, event:"},{"event":"cmd_output","timestamp":1607098231,"output":" created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L1"},{"event":"cmd_output","timestamp":1607098231,"output":"05), \n\u001b[0m\u001b[22m\n16:10:31.558 [info] ppl_id: 7b998d12-d0cc-4c15-9bb9-1393c2495d28, type: PplReques"},{"event":"cmd_output","timestamp":1607098231,"output":"ts, event: persisted source_args for pipeline: 7b998d12-d0cc-4c15-9bb9-1393c2495d28, origin: Elixir."},{"event":"cmd_output","timestamp":1607098231,"output":"Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:31.559 [info] ppl"},{"event":"cmd_output","timestamp":1607098231,"output":"_id: 1ab2a87a-e96b-4175-95ae-8425f6480900, type: PplSubInits, state: done, result: passed, event: ex"},{"event":"cmd_output","timestamp":1607098231,"output":"it_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098231,"output":"m\n16:10:31.563 [info] ppl_id: 7b998d12-d0cc-4c15-9bb9-1393c2495d28, type: PplSubInits, state: fetc"},{"event":"cmd_output","timestamp":1607098231,"output":"hing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098231,"output":"90), \n\u001b[0m\u001b[22m\n16:10:31.574 [info] ppl_id: f724d2a2-4bc3-4d5a-bf10-dd079113c0d3, block_id: 8e541"},{"event":"cmd_output","timestamp":1607098231,"output":"8c8-c60a-40cc-ab0b-db99cd5ec11f, type: PplBlocks, block_index: 0, state: done, result: passed, event"},{"event":"cmd_output","timestamp":1607098231,"output":": exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098231,"output":"\u001b[22m\n16:10:31.586 [info] ppl_id: 1ab2a87a-e96b-4175-95ae-8425f6480900, type: PplBlocks, block_ind"},{"event":"cmd_output","timestamp":1607098231,"output":"ex: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098231,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.587 [info] ppl_id: 1ab2a87a-e96b-4175-95ae-8425f6480900"},{"event":"cmd_output","timestamp":1607098231,"output":", type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.I"},{"event":"cmd_output","timestamp":1607098231,"output":"mpl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.602 [info] ppl_id: f724d2a2-4bc3-4d5a-bf10-dd079"},{"event":"cmd_output","timestamp":1607098231,"output":"113c0d3, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098231,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.603 [info] ppl_id: 1ab2a87a-"},{"event":"cmd_output","timestamp":1607098231,"output":"e96b-4175-95ae-8425f6480900, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098231,"output":"origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.605 [info] ppl_id: 7b"},{"event":"cmd_output","timestamp":1607098231,"output":"998d12-d0cc-4c15-9bb9-1393c2495d28, type: PplSubInits, state: regular_init, event: exit_scheduling, "},{"event":"cmd_output","timestamp":1607098231,"output":"recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.614"},{"event":"cmd_output","timestamp":1607098231,"output":" [info] ppl_id: 1ab2a87a-e96b-4175-95ae-8425f6480900, type: Ppls, state: running, event: exit_sched"},{"event":"cmd_output","timestamp":1607098231,"output":"uling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10"},{"event":"cmd_output","timestamp":1607098231,"output":":31.621 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"1ab2a87a-e96b-4175-"},{"event":"cmd_output","timestamp":1607098231,"output":"95ae-8425f6480900\"\n\u001b[0m\u001b[22m\n16:10:31.627 [info] block_id: dc1c31f7-e067-4163-af81-3d7278150aba, "},{"event":"cmd_output","timestamp":1607098231,"output":"type: BlockRequests, event: persisted block run request from ppl 1ab2a87a-e96b-4175-95ae-8425f648090"},{"event":"cmd_output","timestamp":1607098231,"output":"0 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35)"},{"event":"cmd_output","timestamp":1607098231,"output":", \n\u001b[0m\u001b[22m\n16:10:31.629 [info] block_id: dc1c31f7-e067-4163-af81-3d7278150aba, type: Blocks, st"},{"event":"cmd_output","timestamp":1607098231,"output":"ate: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQ"},{"event":"cmd_output","timestamp":1607098231,"output":"ueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:31.634 [info] ppl_id: 7b998d12-d0cc-4c15-9bb9-1393c2495d28"},{"event":"cmd_output","timestamp":1607098231,"output":", type: PplRequests, event: persisted definition for request with request_token: 3acbd664-364b-11eb-"},{"event":"cmd_output","timestamp":1607098231,"output":"b611-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76),"},{"event":"cmd_output","timestamp":1607098231,"output":" \n\u001b[0m\u001b[22m\n16:10:31.635 [info] Block 0 of pipeline with id: 1ab2a87a-e96b-4175-95ae-8425f6480900"},{"event":"cmd_output","timestamp":1607098231,"output":" scheduled in block service with id: : \"dc1c31f7-e067-4163-af81-3d7278150aba\"\n\u001b[0m\u001b[22m\n16:10:31.6"},{"event":"cmd_output","timestamp":1607098231,"output":"37 [info] block_id: dc1c31f7-e067-4163-af81-3d7278150aba, type: BlockRequests, event: persisted bui"},{"event":"cmd_output","timestamp":1607098231,"output":"ld and sub_ppl details for block_request: dc1c31f7-e067-4163-af81-3d7278150aba, origin: Elixir.Block"},{"event":"cmd_output","timestamp":1607098231,"output":".BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:31.638 [info] ppl"},{"event":"cmd_output","timestamp":1607098231,"output":"_id: 1ab2a87a-e96b-4175-95ae-8425f6480900, type: PplBlocks, block_index: 0, state: running, event: e"},{"event":"cmd_output","timestamp":1607098231,"output":"xit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098231,"output":"2m\n16:10:31.640 [info] block_id: dc1c31f7-e067-4163-af81-3d7278150aba, type: Tasks, state: pending"},{"event":"cmd_output","timestamp":1607098231,"output":", event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok"},{"event":"cmd_output","timestamp":1607098231,"output":"?/1(L167), \n\u001b[0m\u001b[22m\n16:10:31.643 [info] block_id: dc1c31f7-e067-4163-af81-3d7278150aba, type: B"},{"event":"cmd_output","timestamp":1607098231,"output":"locks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098231,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.644 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Que"},{"event":"cmd_output","timestamp":1607098231,"output":"ues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:10:31.639872],"},{"event":"cmd_output","timestamp":1607098231,"output":" name: \"master-5-.semaphore/semaphore.yml\", organization_id: \"6619b4ea-e2c7-46b2-b50c-5f68f36ff8d0\","},{"event":"cmd_output","timestamp":1607098231,"output":" project_id: \"list_grouped_ks\", queue_id: \"533dd22f-5429-4c35-aa8e-8b75afc44e3f\", scope: \"project\", "},{"event":"cmd_output","timestamp":1607098231,"output":"updated_at: ~N[2020-12-04 16:10:31.639879], user_generated: false}}\n\u001b[0m\u001b[22m\n16:10:31.649 [info] "},{"event":"cmd_output","timestamp":1607098231,"output":" block_id: 0df82246-a3eb-4061-b70f-75f56e42c36f, type: Tasks, state: done, event: exit_scheduling, r"},{"event":"cmd_output","timestamp":1607098231,"output":"ecovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.651 "},{"event":"cmd_output","timestamp":1607098231,"output":"[info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), "},{"event":"cmd_output","timestamp":1607098231,"output":"\n\u001b[0m\u001b[22m\n16:10:31.651 [info] ppl_id: 7b998d12-d0cc-4c15-9bb9-1393c2495d28, type: PplBlocks, blo"},{"event":"cmd_output","timestamp":1607098231,"output":"ck_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits."},{"event":"cmd_output","timestamp":1607098231,"output":"STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:31.653 [info] ppl_id: 7b998d12-d0cc"},{"event":"cmd_output","timestamp":1607098231,"output":"-4c15-9bb9-1393c2495d28, type: PplSubInits, state: done, result: passed, event: exit_scheduling, rec"},{"event":"cmd_output","timestamp":1607098231,"output":"overy_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.663 [i"},{"event":"cmd_output","timestamp":1607098231,"output":"nfo] block_id: 0df82246-a3eb-4061-b70f-75f56e42c36f, type: Blocks, state: done, event: exit_schedul"},{"event":"cmd_output","timestamp":1607098231,"output":"ing, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:3"},{"event":"cmd_output","timestamp":1607098231,"output":"1.672 [info] block_id: dc1c31f7-e067-4163-af81-3d7278150aba, type: Tasks, state: running, event: ex"},{"event":"cmd_output","timestamp":1607098231,"output":"it_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098231,"output":"m\n16:10:31.674 [info] ppl_id: 7b998d12-d0cc-4c15-9bb9-1393c2495d28, type: PplBlocks, block_index: "},{"event":"cmd_output","timestamp":1607098231,"output":"0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_sta"},{"event":"cmd_output","timestamp":1607098231,"output":"te_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.680 [info] ppl_id: 7b998d12-d0cc-4c15-9bb9-1393c2495d28, ty"},{"event":"cmd_output","timestamp":1607098231,"output":"pe: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl."},{"event":"cmd_output","timestamp":1607098231,"output":"log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.690 [info] ppl_id: 5b6df62b-edb4-468c-8034-d92349521"},{"event":"cmd_output","timestamp":1607098231,"output":"525, block_id: 0df82246-a3eb-4061-b70f-75f56e42c36f, type: PplBlocks, block_index: 0, state: done, r"},{"event":"cmd_output","timestamp":1607098231,"output":"esult: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098231,"output":"hange/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.695 [info] ppl_id: bbc8c9bd-c984-4943-ad96-adcb06e6b4d4, type: "},{"event":"cmd_output","timestamp":1607098231,"output":"PplRequests, event: persisted source_args for pipeline: bbc8c9bd-c984-4943-ad96-adcb06e6b4d4, origin"},{"event":"cmd_output","timestamp":1607098231,"output":": Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:31.698 [i"},{"event":"cmd_output","timestamp":1607098231,"output":"nfo] ppl_id: 7b998d12-d0cc-4c15-9bb9-1393c2495d28, type: Ppls, state: queuing, event: exit_scheduli"},{"event":"cmd_output","timestamp":1607098231,"output":"ng, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31"},{"event":"cmd_output","timestamp":1607098231,"output":".701 [info] ppl_id: bbc8c9bd-c984-4943-ad96-adcb06e6b4d4, type: PplSubInits, state: fetching, event"},{"event":"cmd_output","timestamp":1607098231,"output":": exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098231,"output":"\u001b[22m\n16:10:31.709 [info] ppl_id: 5b6df62b-edb4-468c-8034-d92349521525, type: Ppls, state: done, r"},{"event":"cmd_output","timestamp":1607098231,"output":"esult: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098231,"output":"hange/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.716 [info] ppl_id: 7b998d12-d0cc-4c15-9bb9-1393c2495d28, type: "},{"event":"cmd_output","timestamp":1607098231,"output":"Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_"},{"event":"cmd_output","timestamp":1607098231,"output":"state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.728 [info] PplBlocks WaitingState STM is scheduling bloc"},{"event":"cmd_output","timestamp":1607098231,"output":"k 0 from pipeline: \"7b998d12-d0cc-4c15-9bb9-1393c2495d28\"\n\u001b[0m\u001b[22m\n16:10:31.737 [info] ppl_id: b"},{"event":"cmd_output","timestamp":1607098231,"output":"bc8c9bd-c984-4943-ad96-adcb06e6b4d4, type: PplSubInits, state: regular_init, event: exit_scheduling,"},{"event":"cmd_output","timestamp":1607098231,"output":" recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.73"},{"event":"cmd_output","timestamp":1607098231,"output":"8 [info] block_id: 8dd5bbf5-5b0c-4915-bcf0-a9030654d1f0, type: BlockRequests, event: persisted bloc"},{"event":"cmd_output","timestamp":1607098231,"output":"k run request from ppl 7b998d12-d0cc-4c15-9bb9-1393c2495d28 for block 0, origin: Elixir.Block.BlockR"},{"event":"cmd_output","timestamp":1607098231,"output":"equests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:31.746 [info] block_"},{"event":"cmd_output","timestamp":1607098231,"output":"id: 8dd5bbf5-5b0c-4915-bcf0-a9030654d1f0, type: Blocks, state: initializing, event: initializing, re"},{"event":"cmd_output","timestamp":1607098231,"output":"covery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:3"},{"event":"cmd_output","timestamp":1607098231,"output":"1.749 [info] Block 0 of pipeline with id: 7b998d12-d0cc-4c15-9bb9-1393c2495d28 scheduled in block s"},{"event":"cmd_output","timestamp":1607098231,"output":"ervice with id: : \"8dd5bbf5-5b0c-4915-bcf0-a9030654d1f0\"\n\u001b[0m\u001b[22m\n16:10:31.757 [info] ppl_id: 7b"},{"event":"cmd_output","timestamp":1607098231,"output":"998d12-d0cc-4c15-9bb9-1393c2495d28, type: PplBlocks, block_index: 0, state: running, event: exit_sch"},{"event":"cmd_output","timestamp":1607098231,"output":"eduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098231,"output":"10:31.762 [info] block_id: 8dd5bbf5-5b0c-4915-bcf0-a9030654d1f0, type: BlockRequests, event: persis"},{"event":"cmd_output","timestamp":1607098231,"output":"ted build and sub_ppl details for block_request: 8dd5bbf5-5b0c-4915-bcf0-a9030654d1f0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098231,"output":"r.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:31.768 [inf"},{"event":"cmd_output","timestamp":1607098231,"output":"o] block_id: 8dd5bbf5-5b0c-4915-bcf0-a9030654d1f0, type: Tasks, state: pending, event: created, rec"},{"event":"cmd_output","timestamp":1607098231,"output":"overy_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098231,"output":"m\n16:10:31.774 [info] block_id: 8dd5bbf5-5b0c-4915-bcf0-a9030654d1f0, type: Blocks, state: running"},{"event":"cmd_output","timestamp":1607098231,"output":", event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90),"},{"event":"cmd_output","timestamp":1607098231,"output":" \n\u001b[0m\u001b[22m\n16:10:31.789 [info] block_id: dc1c31f7-e067-4163-af81-3d7278150aba, type: Tasks, stat"},{"event":"cmd_output","timestamp":1607098231,"output":"e: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/"},{"event":"cmd_output","timestamp":1607098231,"output":"1(L90), \n\u001b[0m\u001b[22m\n16:10:31.810 [info] block_id: dc1c31f7-e067-4163-af81-3d7278150aba, type: Bloc"},{"event":"cmd_output","timestamp":1607098231,"output":"ks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state"},{"event":"cmd_output","timestamp":1607098231,"output":"_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.812 [info] ppl_id: bbc8c9bd-c984-4943-ad96-adcb06e6b4d4, type"},{"event":"cmd_output","timestamp":1607098231,"output":": PplRequests, event: persisted definition for request with request_token: 3ad5b71a-364b-11eb-88ce-5"},{"event":"cmd_output","timestamp":1607098231,"output":"254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098231,"output":"m\u001b[22m\n16:10:31.814 [info] block_id: 8dd5bbf5-5b0c-4915-bcf0-a9030654d1f0, type: Tasks, state: run"},{"event":"cmd_output","timestamp":1607098231,"output":"ning, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098231,"output":"90), \n\u001b[0m\u001b[22m\n16:10:31.823 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ec"},{"event":"cmd_output","timestamp":1607098231,"output":"to.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:10:31.819176], name: \"refs/tags"},{"event":"cmd_output","timestamp":1607098231,"output":"/v1.6-.semaphore/semaphore.yml\", organization_id: \"b8060f78-e967-487e-ab8c-9ce3d2af3c68\", project_id"},{"event":"cmd_output","timestamp":1607098231,"output":": \"list_grouped_ks\", queue_id: \"acbec1a5-c768-4962-938a-b7b490f4e43e\", scope: \"project\", updated_at:"},{"event":"cmd_output","timestamp":1607098231,"output":" ~N[2020-12-04 16:10:31.819185], user_generated: false}}\n\u001b[0m\u001b[22m\n16:10:31.834 [info] ppl_id: 1a"},{"event":"cmd_output","timestamp":1607098231,"output":"b2a87a-e96b-4175-95ae-8425f6480900, block_id: dc1c31f7-e067-4163-af81-3d7278150aba, type: PplBlocks,"},{"event":"cmd_output","timestamp":1607098231,"output":" block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098231,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.836 [info] ppl_id: cfafd963-cc5d"},{"event":"cmd_output","timestamp":1607098231,"output":"-4c5a-ba9e-d57db9329973, type: PplRequests, event: persisted source_args for pipeline: cfafd963-cc5d"},{"event":"cmd_output","timestamp":1607098231,"output":"-4c5a-ba9e-d57db9329973, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89"},{"event":"cmd_output","timestamp":1607098231,"output":"), \n\u001b[0m\u001b[22m\n16:10:31.839 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.Regul"},{"event":"cmd_output","timestamp":1607098231,"output":"arInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:31.839 [info] ppl_id: bbc8c9bd-c984-4943-ad96-adcb0"},{"event":"cmd_output","timestamp":1607098231,"output":"6e6b4d4, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098231,"output":"igin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:31.839 "},{"event":"cmd_output","timestamp":1607098231,"output":"[info] ppl_id: cfafd963-cc5d-4c5a-ba9e-d57db9329973, type: PplSubInits, state: fetching, event: exi"},{"event":"cmd_output","timestamp":1607098231,"output":"t_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098231,"output":"\n16:10:31.842 [info] ppl_id: bbc8c9bd-c984-4943-ad96-adcb06e6b4d4, type: PplSubInits, state: done,"},{"event":"cmd_output","timestamp":1607098231,"output":" result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state"},{"event":"cmd_output","timestamp":1607098231,"output":"_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.864 [info] ppl_id: bbc8c9bd-c984-4943-ad96-adcb06e6b4d4, type"},{"event":"cmd_output","timestamp":1607098231,"output":": Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.lo"},{"event":"cmd_output","timestamp":1607098231,"output":"g_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.865 [info] ppl_id: bbc8c9bd-c984-4943-ad96-adcb06e6b4d"},{"event":"cmd_output","timestamp":1607098231,"output":"4, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098231,"output":"n: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.877 [info] ppl_id: 1ab2a87"},{"event":"cmd_output","timestamp":1607098231,"output":"a-e96b-4175-95ae-8425f6480900, type: Ppls, state: done, result: passed, event: exit_scheduling, reco"},{"event":"cmd_output","timestamp":1607098231,"output":"very_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.886 [in"},{"event":"cmd_output","timestamp":1607098231,"output":"fo] ppl_id: cfafd963-cc5d-4c5a-ba9e-d57db9329973, type: PplSubInits, state: regular_init, event: ex"},{"event":"cmd_output","timestamp":1607098231,"output":"it_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098231,"output":"m\n16:10:31.888 [info] ppl_id: bbc8c9bd-c984-4943-ad96-adcb06e6b4d4, type: Ppls, state: queuing, ev"},{"event":"cmd_output","timestamp":1607098231,"output":"ent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b"},{"event":"cmd_output","timestamp":1607098231,"output":"[0m\u001b[22m\n16:10:31.909 [info] ppl_id: bbc8c9bd-c984-4943-ad96-adcb06e6b4d4, type: Ppls, state: runn"},{"event":"cmd_output","timestamp":1607098231,"output":"ing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L9"},{"event":"cmd_output","timestamp":1607098231,"output":"0), \n\u001b[0m\u001b[22m\n16:10:31.915 [info] block_id: 8dd5bbf5-5b0c-4915-bcf0-a9030654d1f0, type: Tasks, s"},{"event":"cmd_output","timestamp":1607098231,"output":"tate: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chan"},{"event":"cmd_output","timestamp":1607098231,"output":"ge/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.925 [info] PplBlocks WaitingState STM is scheduling block 0 from p"},{"event":"cmd_output","timestamp":1607098231,"output":"ipeline: \"bbc8c9bd-c984-4943-ad96-adcb06e6b4d4\"\n\u001b[0m\u001b[22m\n16:10:31.931 [info] block_id: 8dd5bbf5-"},{"event":"cmd_output","timestamp":1607098231,"output":"5b0c-4915-bcf0-a9030654d1f0, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098231,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.937 [info] block_id: c"},{"event":"cmd_output","timestamp":1607098231,"output":"bcfe90e-ea12-4c29-9b98-c6378f1b437a, type: BlockRequests, event: persisted block run request from pp"},{"event":"cmd_output","timestamp":1607098231,"output":"l bbc8c9bd-c984-4943-ad96-adcb06e6b4d4 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRe"},{"event":"cmd_output","timestamp":1607098231,"output":"questsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:31.942 [info] block_id: cbcfe90e-ea12-4c2"},{"event":"cmd_output","timestamp":1607098231,"output":"9-9b98-c6378f1b437a, type: Blocks, state: initializing, event: initializing, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098231,"output":"in: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:31.945 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098231,"output":" cfafd963-cc5d-4c5a-ba9e-d57db9329973, type: PplRequests, event: persisted definition for request wi"},{"event":"cmd_output","timestamp":1607098231,"output":"th request_token: 3ade20b2-364b-11eb-8379-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequ"},{"event":"cmd_output","timestamp":1607098231,"output":"estsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:31.947 [info] Block 0 of pipeline with id:"},{"event":"cmd_output","timestamp":1607098231,"output":" bbc8c9bd-c984-4943-ad96-adcb06e6b4d4 scheduled in block service with id: : \"cbcfe90e-ea12-4c29-9b98"},{"event":"cmd_output","timestamp":1607098231,"output":"-c6378f1b437a\"\n\u001b[0m\u001b[22m\n16:10:31.952 [info] ppl_id: bbc8c9bd-c984-4943-ad96-adcb06e6b4d4, type: "},{"event":"cmd_output","timestamp":1607098231,"output":"PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098231,"output":".Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.956 [info] ppl_id: 7b998d12-d0cc-4c"},{"event":"cmd_output","timestamp":1607098231,"output":"15-9bb9-1393c2495d28, block_id: 8dd5bbf5-5b0c-4915-bcf0-a9030654d1f0, type: PplBlocks, block_index: "},{"event":"cmd_output","timestamp":1607098231,"output":"0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM"},{"event":"cmd_output","timestamp":1607098231,"output":".Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.959 [info] block_id: cbcfe90e-ea12-4c29-9b98-c"},{"event":"cmd_output","timestamp":1607098231,"output":"6378f1b437a, type: BlockRequests, event: persisted build and sub_ppl details for block_request: cbcf"},{"event":"cmd_output","timestamp":1607098231,"output":"e90e-ea12-4c29-9b98-c6378f1b437a, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.inse"},{"event":"cmd_output","timestamp":1607098231,"output":"rt_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:31.960 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{_"},{"event":"cmd_output","timestamp":1607098231,"output":"_meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:10:31.956080], name"},{"event":"cmd_output","timestamp":1607098231,"output":": \"refs/tags/v1.7-.semaphore/semaphore.yml\", organization_id: \"508ccf74-5449-4ad3-aa70-d00231bd83aa\""},{"event":"cmd_output","timestamp":1607098231,"output":", project_id: \"list_grouped_ks\", queue_id: \"f6c10f13-5a3f-4495-8567-9fb227ec23aa\", scope: \"project\","},{"event":"cmd_output","timestamp":1607098231,"output":" updated_at: ~N[2020-12-04 16:10:31.956093], user_generated: false}}\n\u001b[0m\u001b[22m\n16:10:31.965 [info]"},{"event":"cmd_output","timestamp":1607098231,"output":" block_id: cbcfe90e-ea12-4c29-9b98-c6378f1b437a, type: Tasks, state: pending, event: created, recov"},{"event":"cmd_output","timestamp":1607098231,"output":"ery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098231,"output":"\n16:10:31.975 [info] ppl_id: dbfcdf51-3c83-4a4d-a645-035067649428, type: PplRequests, event: persis"},{"event":"cmd_output","timestamp":1607098231,"output":"ted source_args for pipeline: dbfcdf51-3c83-4a4d-a645-035067649428, origin: Elixir.Ppl.PplRequests.M"},{"event":"cmd_output","timestamp":1607098231,"output":"odel.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:31.978 [info] event: created, orig"},{"event":"cmd_output","timestamp":1607098231,"output":"in: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:31.978 [i"},{"event":"cmd_output","timestamp":1607098231,"output":"nfo] ppl_id: cfafd963-cc5d-4c5a-ba9e-d57db9329973, type: PplBlocks, block_index: 0, state: initiali"},{"event":"cmd_output","timestamp":1607098231,"output":"zing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState."},{"event":"cmd_output","timestamp":1607098231,"output":"all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:31.982 [info] block_id: cbcfe90e-ea12-4c29-9b98-c6378f1b437a, t"},{"event":"cmd_output","timestamp":1607098231,"output":"ype: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Im"},{"event":"cmd_output","timestamp":1607098231,"output":"pl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.983 [info] ppl_id: cfafd963-cc5d-4c5a-ba9e-d57db9"},{"event":"cmd_output","timestamp":1607098231,"output":"329973, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098231,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.983 [info] ppl_id: dbf"},{"event":"cmd_output","timestamp":1607098231,"output":"cdf51-3c83-4a4d-a645-035067649428, type: PplSubInits, state: fetching, event: exit_scheduling, recov"},{"event":"cmd_output","timestamp":1607098231,"output":"ery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.984 [inf"},{"event":"cmd_output","timestamp":1607098231,"output":"o] ppl_id: 7b998d12-d0cc-4c15-9bb9-1393c2495d28, type: Ppls, state: done, result: passed, event: ex"},{"event":"cmd_output","timestamp":1607098231,"output":"it_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098231,"output":"m\n16:10:31.998 [info] ppl_id: cfafd963-cc5d-4c5a-ba9e-d57db9329973, type: PplBlocks, block_index: "},{"event":"cmd_output","timestamp":1607098231,"output":"0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_sta"},{"event":"cmd_output","timestamp":1607098232,"output":"te_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.019 [info] block_id: cbcfe90e-ea12-4c29-9b98-c6378f1b437a, "},{"event":"cmd_output","timestamp":1607098232,"output":"type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Im"},{"event":"cmd_output","timestamp":1607098232,"output":"pl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.028 [info] ppl_id: dbfcdf51-3c83-4a4d-a645-035067"},{"event":"cmd_output","timestamp":1607098232,"output":"649428, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: E"},{"event":"cmd_output","timestamp":1607098232,"output":"lixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.033 [info] ppl_id: cfafd963-cc"},{"event":"cmd_output","timestamp":1607098232,"output":"5d-4c5a-ba9e-d57db9329973, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098232,"output":"igin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.039 [info] block_id: cb"},{"event":"cmd_output","timestamp":1607098232,"output":"cfe90e-ea12-4c29-9b98-c6378f1b437a, type: Tasks, state: done, event: exit_scheduling, recovery_count"},{"event":"cmd_output","timestamp":1607098232,"output":": 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.048 [info] ppl_i"},{"event":"cmd_output","timestamp":1607098232,"output":"d: cfafd963-cc5d-4c5a-ba9e-d57db9329973, type: Ppls, state: queuing, event: exit_scheduling, recover"},{"event":"cmd_output","timestamp":1607098232,"output":"y_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.053 [info]"},{"event":"cmd_output","timestamp":1607098232,"output":" block_id: cbcfe90e-ea12-4c29-9b98-c6378f1b437a, type: Blocks, state: done, event: exit_scheduling,"},{"event":"cmd_output","timestamp":1607098232,"output":" recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.06"},{"event":"cmd_output","timestamp":1607098232,"output":"6 [info] ppl_id: dbfcdf51-3c83-4a4d-a645-035067649428, type: PplRequests, event: persisted definiti"},{"event":"cmd_output","timestamp":1607098232,"output":"on for request with request_token: 3ae6f19c-364b-11eb-91d2-5254005464e2, origin: Elixir.Ppl.PplReque"},{"event":"cmd_output","timestamp":1607098232,"output":"sts.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:32.067 [info] ppl_id: bbc"},{"event":"cmd_output","timestamp":1607098232,"output":"8c9bd-c984-4943-ad96-adcb06e6b4d4, block_id: cbcfe90e-ea12-4c29-9b98-c6378f1b437a, type: PplBlocks, "},{"event":"cmd_output","timestamp":1607098232,"output":"block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098232,"output":"ir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.071 [info] ppl_id: cfafd963-cc5d-"},{"event":"cmd_output","timestamp":1607098232,"output":"4c5a-ba9e-d57db9329973, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098232,"output":"n: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.074 [info] Queue persisted"},{"event":"cmd_output","timestamp":1607098232,"output":": {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N"},{"event":"cmd_output","timestamp":1607098232,"output":"[2020-12-04 16:10:32.070940], name: \"refs/tags/v1.8-.semaphore/semaphore.yml\", organization_id: \"1a7"},{"event":"cmd_output","timestamp":1607098232,"output":"111de-fb91-4fdf-9836-97f0221b500b\", project_id: \"list_grouped_ks\", queue_id: \"832ddb8c-d72d-4069-8b3"},{"event":"cmd_output","timestamp":1607098232,"output":"3-7421d83928b9\", scope: \"project\", updated_at: ~N[2020-12-04 16:10:32.070951], user_generated: false"},{"event":"cmd_output","timestamp":1607098232,"output":"}}\n\u001b[0m\u001b[22m\n16:10:32.080 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: "},{"event":"cmd_output","timestamp":1607098232,"output":"\"cfafd963-cc5d-4c5a-ba9e-d57db9329973\"\n\u001b[0m\u001b[22m\n16:10:32.089 [info] event: created, origin: Elix"},{"event":"cmd_output","timestamp":1607098232,"output":"ir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:32.089 [info] pp"},{"event":"cmd_output","timestamp":1607098232,"output":"l_id: dbfcdf51-3c83-4a4d-a645-035067649428, type: PplBlocks, block_index: 0, state: initializing, ev"},{"event":"cmd_output","timestamp":1607098232,"output":"ent: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/"},{"event":"cmd_output","timestamp":1607098232,"output":"1(L105), \n\u001b[0m\u001b[22m\n16:10:32.095 [info] ppl_id: dbfcdf51-3c83-4a4d-a645-035067649428, type: PplSu"},{"event":"cmd_output","timestamp":1607098232,"output":"bInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loope"},{"event":"cmd_output","timestamp":1607098232,"output":"r.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.098 [info] block_id: 4d35def6-6f84-4c03-b"},{"event":"cmd_output","timestamp":1607098232,"output":"d6f-b03d275c0ad3, type: BlockRequests, event: persisted block run request from ppl cfafd963-cc5d-4c5"},{"event":"cmd_output","timestamp":1607098232,"output":"a-ba9e-d57db9329973 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.proce"},{"event":"cmd_output","timestamp":1607098232,"output":"ss_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:32.099 [info] ppl_id: bbc8c9bd-c984-4943-ad96-adcb06e6b4d4, "},{"event":"cmd_output","timestamp":1607098232,"output":"type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098232,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.100 [info] ppl_id: 122a2a60-c45e-4a43"},{"event":"cmd_output","timestamp":1607098232,"output":"-baa6-937d4dd2b879, type: PplRequests, event: persisted source_args for pipeline: 122a2a60-c45e-4a43"},{"event":"cmd_output","timestamp":1607098232,"output":"-baa6-937d4dd2b879, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n"},{"event":"cmd_output","timestamp":1607098232,"output":"\u001b[0m\u001b[22m\n16:10:32.103 [info] block_id: 4d35def6-6f84-4c03-bd6f-b03d275c0ad3, type: Blocks, state:"},{"event":"cmd_output","timestamp":1607098232,"output":" initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueri"},{"event":"cmd_output","timestamp":1607098232,"output":"es.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:32.107 [info] ppl_id: 122a2a60-c45e-4a43-baa6-937d4dd2b879, ty"},{"event":"cmd_output","timestamp":1607098232,"output":"pe: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.S"},{"event":"cmd_output","timestamp":1607098232,"output":"TM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.111 [info] ppl_id: dbfcdf51-3c83-4a4d-a645-0"},{"event":"cmd_output","timestamp":1607098232,"output":"35067649428, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098232,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.112 [info] Block 0 of pipeline with i"},{"event":"cmd_output","timestamp":1607098232,"output":"d: cfafd963-cc5d-4c5a-ba9e-d57db9329973 scheduled in block service with id: : \"4d35def6-6f84-4c03-bd"},{"event":"cmd_output","timestamp":1607098232,"output":"6f-b03d275c0ad3\"\n\u001b[0m\u001b[22m\n16:10:32.120 [info] ppl_id: cfafd963-cc5d-4c5a-ba9e-d57db9329973, type"},{"event":"cmd_output","timestamp":1607098232,"output":": PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098232,"output":"ir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.120 [info] ppl_id: dbfcdf51-3c83-"},{"event":"cmd_output","timestamp":1607098232,"output":"4a4d-a645-035067649428, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, rec"},{"event":"cmd_output","timestamp":1607098232,"output":"overy_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.132 [i"},{"event":"cmd_output","timestamp":1607098232,"output":"nfo] block_id: 4d35def6-6f84-4c03-bd6f-b03d275c0ad3, type: BlockRequests, event: persisted build an"},{"event":"cmd_output","timestamp":1607098232,"output":"d sub_ppl details for block_request: 4d35def6-6f84-4c03-bd6f-b03d275c0ad3, origin: Elixir.Block.Bloc"},{"event":"cmd_output","timestamp":1607098232,"output":"kRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:32.133 [info] ppl_id: "},{"event":"cmd_output","timestamp":1607098232,"output":"dbfcdf51-3c83-4a4d-a645-035067649428, type: Ppls, state: queuing, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098232,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.138 [info] b"},{"event":"cmd_output","timestamp":1607098232,"output":"lock_id: 4d35def6-6f84-4c03-bd6f-b03d275c0ad3, type: Tasks, state: pending, event: created, recovery"},{"event":"cmd_output","timestamp":1607098232,"output":"_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098232,"output":":10:32.145 [info] block_id: 4d35def6-6f84-4c03-bd6f-b03d275c0ad3, type: Blocks, state: running, eve"},{"event":"cmd_output","timestamp":1607098232,"output":"nt: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b["},{"event":"cmd_output","timestamp":1607098232,"output":"0m\u001b[22m\n16:10:32.154 [info] ppl_id: dbfcdf51-3c83-4a4d-a645-035067649428, type: Ppls, state: runni"},{"event":"cmd_output","timestamp":1607098232,"output":"ng, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90"},{"event":"cmd_output","timestamp":1607098232,"output":"), \n\u001b[0m\u001b[22m\n16:10:32.156 [info] ppl_id: 122a2a60-c45e-4a43-baa6-937d4dd2b879, type: PplSubInits"},{"event":"cmd_output","timestamp":1607098232,"output":", state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098232,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.162 [info] PplBlocks WaitingState STM is scheduling blo"},{"event":"cmd_output","timestamp":1607098232,"output":"ck 0 from pipeline: \"dbfcdf51-3c83-4a4d-a645-035067649428\"\n\u001b[0m\u001b[22m\n16:10:32.181 [info] block_id"},{"event":"cmd_output","timestamp":1607098232,"output":": 3a9b20db-8ede-4115-ba77-a19daf566cb9, type: BlockRequests, event: persisted block run request from"},{"event":"cmd_output","timestamp":1607098232,"output":" ppl dbfcdf51-3c83-4a4d-a645-035067649428 for block 0, origin: Elixir.Block.BlockRequests.Model.Bloc"},{"event":"cmd_output","timestamp":1607098232,"output":"kRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:32.187 [info] block_id: 4d35def6-6f84-"},{"event":"cmd_output","timestamp":1607098232,"output":"4c03-bd6f-b03d275c0ad3, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098232,"output":"in: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.187 [info] block_id: 3a9b"},{"event":"cmd_output","timestamp":1607098232,"output":"20db-8ede-4115-ba77-a19daf566cb9, type: Blocks, state: initializing, event: initializing, recovery_c"},{"event":"cmd_output","timestamp":1607098232,"output":"ount: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:32.191 [i"},{"event":"cmd_output","timestamp":1607098232,"output":"nfo] Block 0 of pipeline with id: dbfcdf51-3c83-4a4d-a645-035067649428 scheduled in block service w"},{"event":"cmd_output","timestamp":1607098232,"output":"ith id: : \"3a9b20db-8ede-4115-ba77-a19daf566cb9\"\n\u001b[0m\u001b[22m\n16:10:32.196 [info] ppl_id: dbfcdf51-3"},{"event":"cmd_output","timestamp":1607098232,"output":"c83-4a4d-a645-035067649428, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling,"},{"event":"cmd_output","timestamp":1607098232,"output":" recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.19"},{"event":"cmd_output","timestamp":1607098232,"output":"9 [info] block_id: 3a9b20db-8ede-4115-ba77-a19daf566cb9, type: BlockRequests, event: persisted buil"},{"event":"cmd_output","timestamp":1607098232,"output":"d and sub_ppl details for block_request: 3a9b20db-8ede-4115-ba77-a19daf566cb9, origin: Elixir.Block."},{"event":"cmd_output","timestamp":1607098232,"output":"BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:32.202 [info] bloc"},{"event":"cmd_output","timestamp":1607098232,"output":"k_id: 3a9b20db-8ede-4115-ba77-a19daf566cb9, type: Tasks, state: pending, event: created, recovery_co"},{"event":"cmd_output","timestamp":1607098232,"output":"unt: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10"},{"event":"cmd_output","timestamp":1607098232,"output":":32.205 [info] block_id: 3a9b20db-8ede-4115-ba77-a19daf566cb9, type: Blocks, state: running, event:"},{"event":"cmd_output","timestamp":1607098232,"output":" exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098232,"output":"[22m\n16:10:32.208 [info] ppl_id: 122a2a60-c45e-4a43-baa6-937d4dd2b879, type: PplRequests, event: p"},{"event":"cmd_output","timestamp":1607098232,"output":"ersisted definition for request with request_token: 3aeeccf0-364b-11eb-a84e-5254005464e2, origin: El"},{"event":"cmd_output","timestamp":1607098232,"output":"ixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:32.215 [i"},{"event":"cmd_output","timestamp":1607098232,"output":"nfo] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queu"},{"event":"cmd_output","timestamp":1607098232,"output":"es\">, inserted_at: ~N[2020-12-04 16:10:32.212968], name: \"refs/tags/v1.9-.semaphore/semaphore.yml\", "},{"event":"cmd_output","timestamp":1607098232,"output":"organization_id: \"717b50d6-1947-4ad5-85c3-61bc813c984f\", project_id: \"list_grouped_ks\", queue_id: \"7"},{"event":"cmd_output","timestamp":1607098232,"output":"506c306-476f-479f-803e-066e2fe1555c\", scope: \"project\", updated_at: ~N[2020-12-04 16:10:32.212978], "},{"event":"cmd_output","timestamp":1607098232,"output":"user_generated: false}}\n\u001b[0m\u001b[22m\n16:10:32.219 [info] ppl_id: 2ca25cfc-4a35-4375-8efe-76f3163c59e"},{"event":"cmd_output","timestamp":1607098232,"output":"e, type: PplRequests, event: persisted source_args for pipeline: 2ca25cfc-4a35-4375-8efe-76f3163c59e"},{"event":"cmd_output","timestamp":1607098232,"output":"e, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:"},{"event":"cmd_output","timestamp":1607098232,"output":"32.219 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1("},{"event":"cmd_output","timestamp":1607098232,"output":"L105), \n\u001b[0m\u001b[22m\n16:10:32.219 [info] ppl_id: 122a2a60-c45e-4a43-baa6-937d4dd2b879, type: PplBloc"},{"event":"cmd_output","timestamp":1607098232,"output":"ks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSu"},{"event":"cmd_output","timestamp":1607098232,"output":"bInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:32.222 [info] ppl_id: 2ca25c"},{"event":"cmd_output","timestamp":1607098232,"output":"fc-4a35-4375-8efe-76f3163c59ee, type: PplSubInits, state: fetching, event: exit_scheduling, recovery"},{"event":"cmd_output","timestamp":1607098232,"output":"_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.224 [info] "},{"event":"cmd_output","timestamp":1607098232,"output":" ppl_id: 122a2a60-c45e-4a43-baa6-937d4dd2b879, type: PplSubInits, state: done, result: passed, event"},{"event":"cmd_output","timestamp":1607098232,"output":": exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098232,"output":"\u001b[22m\n16:10:32.245 [info] block_id: 3a9b20db-8ede-4115-ba77-a19daf566cb9, type: Tasks, state: runn"},{"event":"cmd_output","timestamp":1607098232,"output":"ing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L9"},{"event":"cmd_output","timestamp":1607098232,"output":"0), \n\u001b[0m\u001b[22m\n16:10:32.246 [info] ppl_id: 122a2a60-c45e-4a43-baa6-937d4dd2b879, type: PplBlocks,"},{"event":"cmd_output","timestamp":1607098232,"output":" block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.ST"},{"event":"cmd_output","timestamp":1607098232,"output":"M.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.248 [info] ppl_id: 122a2a60-c45e-4a43-baa6-93"},{"event":"cmd_output","timestamp":1607098232,"output":"7d4dd2b879, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Lo"},{"event":"cmd_output","timestamp":1607098232,"output":"oper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.266 [info] ppl_id: 2ca25cfc-4a35-4375-"},{"event":"cmd_output","timestamp":1607098232,"output":"8efe-76f3163c59ee, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0"},{"event":"cmd_output","timestamp":1607098232,"output":", origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.268 [info] ppl_id: "},{"event":"cmd_output","timestamp":1607098232,"output":"122a2a60-c45e-4a43-baa6-937d4dd2b879, type: Ppls, state: queuing, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098232,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.268 [info] b"},{"event":"cmd_output","timestamp":1607098232,"output":"lock_id: 4d35def6-6f84-4c03-bd6f-b03d275c0ad3, type: Tasks, state: done, event: exit_scheduling, rec"},{"event":"cmd_output","timestamp":1607098232,"output":"overy_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.279 [i"},{"event":"cmd_output","timestamp":1607098232,"output":"nfo] block_id: 4d35def6-6f84-4c03-bd6f-b03d275c0ad3, type: Blocks, state: done, event: exit_schedul"},{"event":"cmd_output","timestamp":1607098232,"output":"ing, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:3"},{"event":"cmd_output","timestamp":1607098232,"output":"2.290 [info] ppl_id: 122a2a60-c45e-4a43-baa6-937d4dd2b879, type: Ppls, state: running, event: exit_"},{"event":"cmd_output","timestamp":1607098232,"output":"scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098232,"output":"16:10:32.294 [info] ppl_id: cfafd963-cc5d-4c5a-ba9e-d57db9329973, block_id: 4d35def6-6f84-4c03-bd6f"},{"event":"cmd_output","timestamp":1607098232,"output":"-b03d275c0ad3, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling,"},{"event":"cmd_output","timestamp":1607098232,"output":" recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.30"},{"event":"cmd_output","timestamp":1607098232,"output":"0 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"122a2a60-c45e-4a43-baa6-9"},{"event":"cmd_output","timestamp":1607098232,"output":"37d4dd2b879\"\n\u001b[0m\u001b[22m\n16:10:32.307 [info] ppl_id: 2ca25cfc-4a35-4375-8efe-76f3163c59ee, type: Pp"},{"event":"cmd_output","timestamp":1607098232,"output":"lRequests, event: persisted definition for request with request_token: 3af6c478-364b-11eb-bba2-52540"},{"event":"cmd_output","timestamp":1607098232,"output":"05464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098232,"output":"2m\n16:10:32.312 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Meta"},{"event":"cmd_output","timestamp":1607098232,"output":"data<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:10:32.310375], name: \"refs/tags/v1.10-.semaph"},{"event":"cmd_output","timestamp":1607098232,"output":"ore/semaphore.yml\", organization_id: \"e3c90ed9-473b-4264-8174-46e4378b45c4\", project_id: \"list_group"},{"event":"cmd_output","timestamp":1607098232,"output":"ed_ks\", queue_id: \"b81faa9a-ff2b-4f79-b4eb-306c77dcd284\", scope: \"project\", updated_at: ~N[2020-12-0"},{"event":"cmd_output","timestamp":1607098232,"output":"4 16:10:32.310385], user_generated: false}}\n\u001b[0m\u001b[22m\n16:10:32.316 [info] block_id: 6012c31f-d0cb"},{"event":"cmd_output","timestamp":1607098232,"output":"-4120-8636-afeca6ab6d91, type: BlockRequests, event: persisted block run request from ppl 122a2a60-c"},{"event":"cmd_output","timestamp":1607098232,"output":"45e-4a43-baa6-937d4dd2b879 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQuerie"},{"event":"cmd_output","timestamp":1607098232,"output":"s.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:32.320 [info] event: created, origin: Elixir.Ppl.PplS"},{"event":"cmd_output","timestamp":1607098232,"output":"ubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:32.320 [info] ppl_id: 2ca25"},{"event":"cmd_output","timestamp":1607098232,"output":"cfc-4a35-4375-8efe-76f3163c59ee, type: PplBlocks, block_index: 0, state: initializing, event: create"},{"event":"cmd_output","timestamp":1607098232,"output":"d, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n"},{"event":"cmd_output","timestamp":1607098232,"output":"\u001b[0m\u001b[22m\n16:10:32.323 [info] ppl_id: 2ca25cfc-4a35-4375-8efe-76f3163c59ee, type: PplSubInits, sta"},{"event":"cmd_output","timestamp":1607098232,"output":"te: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl."},{"event":"cmd_output","timestamp":1607098232,"output":"log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.324 [info] ppl_id: cfafd963-cc5d-4c5a-ba9e-d57db9329"},{"event":"cmd_output","timestamp":1607098232,"output":"973, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098232,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.327 [info] block_id: 6012c31f-d0"},{"event":"cmd_output","timestamp":1607098232,"output":"cb-4120-8636-afeca6ab6d91, type: Blocks, state: initializing, event: initializing, recovery_count: 0"},{"event":"cmd_output","timestamp":1607098232,"output":", origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:32.330 [info] B"},{"event":"cmd_output","timestamp":1607098232,"output":"lock 0 of pipeline with id: 122a2a60-c45e-4a43-baa6-937d4dd2b879 scheduled in block service with id:"},{"event":"cmd_output","timestamp":1607098232,"output":" : \"6012c31f-d0cb-4120-8636-afeca6ab6d91\"\n\u001b[0m\u001b[22m\n16:10:32.334 [info] ppl_id: 122a2a60-c45e-4a4"},{"event":"cmd_output","timestamp":1607098232,"output":"3-baa6-937d4dd2b879, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recove"},{"event":"cmd_output","timestamp":1607098232,"output":"ry_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.338 [info"},{"event":"cmd_output","timestamp":1607098232,"output":"] ppl_id: 781110ae-292e-4deb-85e8-7c35907ee65a, type: PplRequests, event: persisted source_args for"},{"event":"cmd_output","timestamp":1607098232,"output":" pipeline: 781110ae-292e-4deb-85e8-7c35907ee65a, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQue"},{"event":"cmd_output","timestamp":1607098232,"output":"ries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:32.341 [info] block_id: 6012c31f-d0cb-4120-8636-afeca"},{"event":"cmd_output","timestamp":1607098232,"output":"6ab6d91, type: BlockRequests, event: persisted build and sub_ppl details for block_request: 6012c31f"},{"event":"cmd_output","timestamp":1607098232,"output":"-d0cb-4120-8636-afeca6ab6d91, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_b"},{"event":"cmd_output","timestamp":1607098232,"output":"uild/2(L41), \n\u001b[0m\u001b[22m\n16:10:32.345 [info] block_id: 6012c31f-d0cb-4120-8636-afeca6ab6d91, type:"},{"event":"cmd_output","timestamp":1607098232,"output":" Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.In"},{"event":"cmd_output","timestamp":1607098232,"output":"itializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:32.346 [info] ppl_id: 2ca25cfc-4a35-4375-8efe-7"},{"event":"cmd_output","timestamp":1607098232,"output":"6f3163c59ee, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098232,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.348 [info] ppl_id: 781110ae-292e-4deb"},{"event":"cmd_output","timestamp":1607098232,"output":"-85e8-7c35907ee65a, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098232,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.351 [info] block_id: 6"},{"event":"cmd_output","timestamp":1607098232,"output":"012c31f-d0cb-4120-8636-afeca6ab6d91, type: Blocks, state: running, event: exit_scheduling, recovery_"},{"event":"cmd_output","timestamp":1607098232,"output":"count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.352 [info] "},{"event":"cmd_output","timestamp":1607098232,"output":"ppl_id: 2ca25cfc-4a35-4375-8efe-76f3163c59ee, type: PplBlocks, block_index: 0, state: waiting, event"},{"event":"cmd_output","timestamp":1607098232,"output":": exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098232,"output":"\u001b[22m\n16:10:32.377 [info] block_id: 6012c31f-d0cb-4120-8636-afeca6ab6d91, type: Tasks, state: runn"},{"event":"cmd_output","timestamp":1607098232,"output":"ing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L9"},{"event":"cmd_output","timestamp":1607098232,"output":"0), \n\u001b[0m\u001b[22m\n16:10:32.381 [info] ppl_id: 2ca25cfc-4a35-4375-8efe-76f3163c59ee, type: Ppls, stat"},{"event":"cmd_output","timestamp":1607098232,"output":"e: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chan"},{"event":"cmd_output","timestamp":1607098232,"output":"ge/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.393 [info] ppl_id: 781110ae-292e-4deb-85e8-7c35907ee65a, type: Ppl"},{"event":"cmd_output","timestamp":1607098232,"output":"SubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM."},{"event":"cmd_output","timestamp":1607098232,"output":"Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.402 [info] block_id: 3a9b20db-8ede-4115-ba77-a1"},{"event":"cmd_output","timestamp":1607098232,"output":"9daf566cb9, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loop"},{"event":"cmd_output","timestamp":1607098232,"output":"er.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.403 [info] ppl_id: 2ca25cfc-4a35-4375-8e"},{"event":"cmd_output","timestamp":1607098232,"output":"fe-76f3163c59ee, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098232,"output":"ir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.411 [info] block_id: 3a9b20db-8ed"},{"event":"cmd_output","timestamp":1607098232,"output":"e-4115-ba77-a19daf566cb9, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098232,"output":"in: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.419 [info] PplBlocks Wait"},{"event":"cmd_output","timestamp":1607098232,"output":"ingState STM is scheduling block 0 from pipeline: \"2ca25cfc-4a35-4375-8efe-76f3163c59ee\"\n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098232,"output":"\n16:10:32.429 [info] ppl_id: dbfcdf51-3c83-4a4d-a645-035067649428, block_id: 3a9b20db-8ede-4115-ba7"},{"event":"cmd_output","timestamp":1607098232,"output":"7-a19daf566cb9, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling"},{"event":"cmd_output","timestamp":1607098232,"output":", recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.4"},{"event":"cmd_output","timestamp":1607098232,"output":"32 [info] block_id: 9855eba8-14f8-43e6-b8f4-a0f1e7a0e7cf, type: BlockRequests, event: persisted blo"},{"event":"cmd_output","timestamp":1607098232,"output":"ck run request from ppl 2ca25cfc-4a35-4375-8efe-76f3163c59ee for block 0, origin: Elixir.Block.Block"},{"event":"cmd_output","timestamp":1607098232,"output":"Requests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:32.439 [info] block"},{"event":"cmd_output","timestamp":1607098232,"output":"_id: 9855eba8-14f8-43e6-b8f4-a0f1e7a0e7cf, type: Blocks, state: initializing, event: initializing, r"},{"event":"cmd_output","timestamp":1607098232,"output":"ecovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:"},{"event":"cmd_output","timestamp":1607098232,"output":"32.443 [info] Block 0 of pipeline with id: 2ca25cfc-4a35-4375-8efe-76f3163c59ee scheduled in block "},{"event":"cmd_output","timestamp":1607098232,"output":"service with id: : \"9855eba8-14f8-43e6-b8f4-a0f1e7a0e7cf\"\n\u001b[0m\u001b[22m\n16:10:32.446 [info] ppl_id: 2"},{"event":"cmd_output","timestamp":1607098232,"output":"ca25cfc-4a35-4375-8efe-76f3163c59ee, type: PplBlocks, block_index: 0, state: running, event: exit_sc"},{"event":"cmd_output","timestamp":1607098232,"output":"heduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098232,"output":":10:32.448 [info] block_id: 9855eba8-14f8-43e6-b8f4-a0f1e7a0e7cf, type: BlockRequests, event: persi"},{"event":"cmd_output","timestamp":1607098232,"output":"sted build and sub_ppl details for block_request: 9855eba8-14f8-43e6-b8f4-a0f1e7a0e7cf, origin: Elix"},{"event":"cmd_output","timestamp":1607098232,"output":"ir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:32.449 [in"},{"event":"cmd_output","timestamp":1607098232,"output":"fo] ppl_id: 781110ae-292e-4deb-85e8-7c35907ee65a, type: PplRequests, event: persisted definition fo"},{"event":"cmd_output","timestamp":1607098232,"output":"r request with request_token: 3afbeff2-364b-11eb-94a6-5254005464e2, origin: Elixir.Ppl.PplRequests.M"},{"event":"cmd_output","timestamp":1607098232,"output":"odel.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:32.454 [info] block_id: 9855eb"},{"event":"cmd_output","timestamp":1607098232,"output":"a8-14f8-43e6-b8f4-a0f1e7a0e7cf, type: Tasks, state: pending, event: created, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098232,"output":"in: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:32.455 [inf"},{"event":"cmd_output","timestamp":1607098232,"output":"o] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues"},{"event":"cmd_output","timestamp":1607098232,"output":"\">, inserted_at: ~N[2020-12-04 16:10:32.454095], name: \"refs/tags/v1.11-.semaphore/semaphore.yml\", o"},{"event":"cmd_output","timestamp":1607098232,"output":"rganization_id: \"46ee7156-0f30-4b1c-8c41-5dcb1a18b916\", project_id: \"list_grouped_ks\", queue_id: \"5f"},{"event":"cmd_output","timestamp":1607098232,"output":"b15fc4-12da-4c1b-a355-59e94fa836a4\", scope: \"project\", updated_at: ~N[2020-12-04 16:10:32.454106], u"},{"event":"cmd_output","timestamp":1607098232,"output":"ser_generated: false}}\n\u001b[0m\u001b[22m\n16:10:32.459 [info] block_id: 9855eba8-14f8-43e6-b8f4-a0f1e7a0e7"},{"event":"cmd_output","timestamp":1607098232,"output":"cf, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.S"},{"event":"cmd_output","timestamp":1607098232,"output":"TM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.460 [info] ppl_id: dbfcdf51-3c83-4a4d-a645-0"},{"event":"cmd_output","timestamp":1607098232,"output":"35067649428, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098232,"output":"gin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.462 [info] event: create"},{"event":"cmd_output","timestamp":1607098232,"output":"d, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:32"},{"event":"cmd_output","timestamp":1607098232,"output":".462 [info] ppl_id: 781110ae-292e-4deb-85e8-7c35907ee65a, type: PplBlocks, block_index: 0, state: i"},{"event":"cmd_output","timestamp":1607098232,"output":"nitializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularIni"},{"event":"cmd_output","timestamp":1607098232,"output":"tState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:32.467 [info] ppl_id: 781110ae-292e-4deb-85e8-7c35907ee6"},{"event":"cmd_output","timestamp":1607098232,"output":"5a, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098232,"output":"n: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.470 [info] ppl_id: 3bb0af1"},{"event":"cmd_output","timestamp":1607098232,"output":"f-a347-463e-abf1-40b45aadd842, type: PplRequests, event: persisted source_args for pipeline: 3bb0af1"},{"event":"cmd_output","timestamp":1607098232,"output":"f-a347-463e-abf1-40b45aadd842, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source"},{"event":"cmd_output","timestamp":1607098232,"output":"/2(L89), \n\u001b[0m\u001b[22m\n16:10:32.475 [info] ppl_id: 781110ae-292e-4deb-85e8-7c35907ee65a, type: PplBl"},{"event":"cmd_output","timestamp":1607098232,"output":"ocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loop"},{"event":"cmd_output","timestamp":1607098232,"output":"er.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.476 [info] ppl_id: 3bb0af1f-a347-463e-ab"},{"event":"cmd_output","timestamp":1607098232,"output":"f1-40b45aadd842, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098232,"output":"in: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.484 [info] block_id: 9855"},{"event":"cmd_output","timestamp":1607098232,"output":"eba8-14f8-43e6-b8f4-a0f1e7a0e7cf, type: Tasks, state: running, event: exit_scheduling, recovery_coun"},{"event":"cmd_output","timestamp":1607098232,"output":"t: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.489 [info] ppl_"},{"event":"cmd_output","timestamp":1607098232,"output":"id: 781110ae-292e-4deb-85e8-7c35907ee65a, type: Ppls, state: pending, event: exit_scheduling, recove"},{"event":"cmd_output","timestamp":1607098232,"output":"ry_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.498 [info"},{"event":"cmd_output","timestamp":1607098232,"output":"] ppl_id: 781110ae-292e-4deb-85e8-7c35907ee65a, type: Ppls, state: queuing, event: exit_scheduling,"},{"event":"cmd_output","timestamp":1607098232,"output":" recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.51"},{"event":"cmd_output","timestamp":1607098232,"output":"2 [info] ppl_id: 3bb0af1f-a347-463e-abf1-40b45aadd842, type: PplSubInits, state: regular_init, even"},{"event":"cmd_output","timestamp":1607098232,"output":"t: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098232,"output":"m\u001b[22m\n16:10:32.523 [info] block_id: 6012c31f-d0cb-4120-8636-afeca6ab6d91, type: Tasks, state: don"},{"event":"cmd_output","timestamp":1607098232,"output":"e, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90)"},{"event":"cmd_output","timestamp":1607098232,"output":", \n\u001b[0m\u001b[22m\n16:10:32.526 [info] ppl_id: 781110ae-292e-4deb-85e8-7c35907ee65a, type: Ppls, state:"},{"event":"cmd_output","timestamp":1607098232,"output":" running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change"},{"event":"cmd_output","timestamp":1607098232,"output":"/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.532 [info] block_id: 6012c31f-d0cb-4120-8636-afeca6ab6d91, type: Blo"},{"event":"cmd_output","timestamp":1607098232,"output":"cks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_stat"},{"event":"cmd_output","timestamp":1607098232,"output":"e_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.539 [info] PplBlocks WaitingState STM is scheduling block 0 "},{"event":"cmd_output","timestamp":1607098232,"output":"from pipeline: \"781110ae-292e-4deb-85e8-7c35907ee65a\"\n\u001b[0m\u001b[22m\n16:10:32.548 [info] block_id: 57f"},{"event":"cmd_output","timestamp":1607098232,"output":"304bf-3ddb-4b29-8217-fdbe1c5c3dae, type: BlockRequests, event: persisted block run request from ppl "},{"event":"cmd_output","timestamp":1607098232,"output":"781110ae-292e-4deb-85e8-7c35907ee65a for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequ"},{"event":"cmd_output","timestamp":1607098232,"output":"estsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:32.549 [info] ppl_id: 122a2a60-c45e-4a43-ba"},{"event":"cmd_output","timestamp":1607098232,"output":"a6-937d4dd2b879, block_id: 6012c31f-d0cb-4120-8636-afeca6ab6d91, type: PplBlocks, block_index: 0, st"},{"event":"cmd_output","timestamp":1607098232,"output":"ate: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl"},{"event":"cmd_output","timestamp":1607098232,"output":".log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.549 [info] block_id: 57f304bf-3ddb-4b29-8217-fdbe1c"},{"event":"cmd_output","timestamp":1607098232,"output":"5c3dae, type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Bl"},{"event":"cmd_output","timestamp":1607098232,"output":"ock.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:32.555 [info] block_id: 57f304bf-3"},{"event":"cmd_output","timestamp":1607098232,"output":"ddb-4b29-8217-fdbe1c5c3dae, type: BlockRequests, event: persisted build and sub_ppl details for bloc"},{"event":"cmd_output","timestamp":1607098232,"output":"k_request: 57f304bf-3ddb-4b29-8217-fdbe1c5c3dae, origin: Elixir.Block.BlockRequests.Model.BlockReque"},{"event":"cmd_output","timestamp":1607098232,"output":"stsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:32.556 [info] Block 0 of pipeline with id: 78111"},{"event":"cmd_output","timestamp":1607098232,"output":"0ae-292e-4deb-85e8-7c35907ee65a scheduled in block service with id: : \"57f304bf-3ddb-4b29-8217-fdbe1"},{"event":"cmd_output","timestamp":1607098232,"output":"c5c3dae\"\n\u001b[0m\u001b[22m\n16:10:32.560 [info] ppl_id: 781110ae-292e-4deb-85e8-7c35907ee65a, type: PplBlo"},{"event":"cmd_output","timestamp":1607098232,"output":"cks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loope"},{"event":"cmd_output","timestamp":1607098232,"output":"r.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.564 [info] block_id: 57f304bf-3ddb-4b29-8"},{"event":"cmd_output","timestamp":1607098232,"output":"217-fdbe1c5c3dae, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Blo"},{"event":"cmd_output","timestamp":1607098232,"output":"ck.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:32.566 [info] block_id: "},{"event":"cmd_output","timestamp":1607098232,"output":"57f304bf-3ddb-4b29-8217-fdbe1c5c3dae, type: Blocks, state: running, event: exit_scheduling, recovery"},{"event":"cmd_output","timestamp":1607098232,"output":"_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.568 [info] "},{"event":"cmd_output","timestamp":1607098232,"output":" ppl_id: 3bb0af1f-a347-463e-abf1-40b45aadd842, type: PplRequests, event: persisted definition for re"},{"event":"cmd_output","timestamp":1607098232,"output":"quest with request_token: 3b016720-364b-11eb-a915-5254005464e2, origin: Elixir.Ppl.PplRequests.Model"},{"event":"cmd_output","timestamp":1607098232,"output":".PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:32.572 [info] Queue persisted: {:o"},{"event":"cmd_output","timestamp":1607098232,"output":"k, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020"},{"event":"cmd_output","timestamp":1607098232,"output":"-12-04 16:10:32.570170], name: \"pull-request-1212-.semaphore/semaphore.yml\", organization_id: \"14a5b"},{"event":"cmd_output","timestamp":1607098232,"output":"091-9a4d-42e5-ab35-4d0dd2c62b3f\", project_id: \"list_grouped_ks\", queue_id: \"4aa0fbbc-4a75-4a5a-9943-"},{"event":"cmd_output","timestamp":1607098232,"output":"23f5bc78336a\", scope: \"project\", updated_at: ~N[2020-12-04 16:10:32.570181], user_generated: false}}"},{"event":"cmd_output","timestamp":1607098232,"output":"\n\u001b[0m\u001b[22m\n16:10:32.584 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularI"},{"event":"cmd_output","timestamp":1607098232,"output":"nitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:32.584 [info] ppl_id: 3bb0af1f-a347-463e-abf1-40b45aad"},{"event":"cmd_output","timestamp":1607098232,"output":"d842, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098232,"output":"n: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:32.587 [in"},{"event":"cmd_output","timestamp":1607098232,"output":"fo] ppl_id: 122a2a60-c45e-4a43-baa6-937d4dd2b879, type: Ppls, state: done, result: passed, event: e"},{"event":"cmd_output","timestamp":1607098232,"output":"xit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098232,"output":"2m\n16:10:32.588 [info] ppl_id: 3bb0af1f-a347-463e-abf1-40b45aadd842, type: PplSubInits, state: don"},{"event":"cmd_output","timestamp":1607098232,"output":"e, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_sta"},{"event":"cmd_output","timestamp":1607098232,"output":"te_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.596 [info] ppl_id: 3dfbf506-8b31-45a8-9a07-171cd6636cea, ty"},{"event":"cmd_output","timestamp":1607098232,"output":"pe: PplRequests, event: persisted source_args for pipeline: 3dfbf506-8b31-45a8-9a07-171cd6636cea, or"},{"event":"cmd_output","timestamp":1607098232,"output":"igin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:32.59"},{"event":"cmd_output","timestamp":1607098232,"output":"7 [info] block_id: 57f304bf-3ddb-4b29-8217-fdbe1c5c3dae, type: Tasks, state: running, event: exit_s"},{"event":"cmd_output","timestamp":1607098232,"output":"cheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098232,"output":"6:10:32.600 [info] ppl_id: 3bb0af1f-a347-463e-abf1-40b45aadd842, type: PplBlocks, block_index: 0, s"},{"event":"cmd_output","timestamp":1607098232,"output":"tate: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098232,"output":"hange/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.600 [info] ppl_id: 3bb0af1f-a347-463e-abf1-40b45aadd842, type: "},{"event":"cmd_output","timestamp":1607098232,"output":"Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_"},{"event":"cmd_output","timestamp":1607098232,"output":"state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.603 [info] ppl_id: 3dfbf506-8b31-45a8-9a07-171cd6636cea,"},{"event":"cmd_output","timestamp":1607098232,"output":" type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loope"},{"event":"cmd_output","timestamp":1607098232,"output":"r.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.611 [info] ppl_id: 3bb0af1f-a347-463e-abf"},{"event":"cmd_output","timestamp":1607098232,"output":"1-40b45aadd842, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098232,"output":"r.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.623 [info] ppl_id: 3bb0af1f-a347-4"},{"event":"cmd_output","timestamp":1607098232,"output":"63e-abf1-40b45aadd842, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098232,"output":": Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.633 [info] PplBlocks Waitin"},{"event":"cmd_output","timestamp":1607098232,"output":"gState STM is scheduling block 0 from pipeline: \"3bb0af1f-a347-463e-abf1-40b45aadd842\"\n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098232,"output":"6:10:32.640 [info] block_id: 9855eba8-14f8-43e6-b8f4-a0f1e7a0e7cf, type: Tasks, state: done, event:"},{"event":"cmd_output","timestamp":1607098232,"output":" exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098232,"output":"[22m\n16:10:32.641 [info] ppl_id: 3dfbf506-8b31-45a8-9a07-171cd6636cea, type: PplSubInits, state: r"},{"event":"cmd_output","timestamp":1607098232,"output":"egular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_cha"},{"event":"cmd_output","timestamp":1607098232,"output":"nge/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.644 [info] block_id: 870a8cfb-672f-46f9-a21c-dd869061cdb6, type: "},{"event":"cmd_output","timestamp":1607098232,"output":"BlockRequests, event: persisted block run request from ppl 3bb0af1f-a347-463e-abf1-40b45aadd842 for "},{"event":"cmd_output","timestamp":1607098232,"output":"block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b["},{"event":"cmd_output","timestamp":1607098232,"output":"0m\u001b[22m\n16:10:32.647 [info] block_id: 870a8cfb-672f-46f9-a21c-dd869061cdb6, type: Blocks, state: i"},{"event":"cmd_output","timestamp":1607098232,"output":"nitializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries"},{"event":"cmd_output","timestamp":1607098232,"output":".insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:32.649 [info] block_id: 9855eba8-14f8-43e6-b8f4-a0f1e7a0e7cf, ty"},{"event":"cmd_output","timestamp":1607098232,"output":"pe: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.l"},{"event":"cmd_output","timestamp":1607098232,"output":"og_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.651 [info] Block 0 of pipeline with id: 3bb0af1f-a347"},{"event":"cmd_output","timestamp":1607098232,"output":"-463e-abf1-40b45aadd842 scheduled in block service with id: : \"870a8cfb-672f-46f9-a21c-dd869061cdb6\""},{"event":"cmd_output","timestamp":1607098232,"output":"\n\u001b[0m\u001b[22m\n16:10:32.657 [info] ppl_id: 3bb0af1f-a347-463e-abf1-40b45aadd842, type: PplBlocks, blo"},{"event":"cmd_output","timestamp":1607098232,"output":"ck_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Im"},{"event":"cmd_output","timestamp":1607098232,"output":"pl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.662 [info] block_id: 870a8cfb-672f-46f9-a21c-dd86"},{"event":"cmd_output","timestamp":1607098232,"output":"9061cdb6, type: BlockRequests, event: persisted build and sub_ppl details for block_request: 870a8cf"},{"event":"cmd_output","timestamp":1607098232,"output":"b-672f-46f9-a21c-dd869061cdb6, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_"},{"event":"cmd_output","timestamp":1607098232,"output":"build/2(L41), \n\u001b[0m\u001b[22m\n16:10:32.664 [info] block_id: 870a8cfb-672f-46f9-a21c-dd869061cdb6, type"},{"event":"cmd_output","timestamp":1607098232,"output":": Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.I"},{"event":"cmd_output","timestamp":1607098232,"output":"nitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:32.667 [info] block_id: 870a8cfb-672f-46f9-a21"},{"event":"cmd_output","timestamp":1607098232,"output":"c-dd869061cdb6, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098232,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.668 [info] ppl_id: 2ca25cfc-4a35"},{"event":"cmd_output","timestamp":1607098232,"output":"-4375-8efe-76f3163c59ee, block_id: 9855eba8-14f8-43e6-b8f4-a0f1e7a0e7cf, type: PplBlocks, block_inde"},{"event":"cmd_output","timestamp":1607098232,"output":"x: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper."},{"event":"cmd_output","timestamp":1607098232,"output":"STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.687 [info] block_id: 870a8cfb-672f-46f9-a21"},{"event":"cmd_output","timestamp":1607098232,"output":"c-dd869061cdb6, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098232,"output":"ir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.693 [info] ppl_id: 3dfbf506-8b31-"},{"event":"cmd_output","timestamp":1607098232,"output":"45a8-9a07-171cd6636cea, type: PplRequests, event: persisted definition for request with request_toke"},{"event":"cmd_output","timestamp":1607098232,"output":"n: 3b0a2b44-364b-11eb-a119-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.ins"},{"event":"cmd_output","timestamp":1607098232,"output":"ert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:32.694 [info] ppl_id: 2ca25cfc-4a35-4375-8efe-76f3163c59e"},{"event":"cmd_output","timestamp":1607098232,"output":"e, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098232,"output":"r.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.698 [info] Queue persisted: {:ok, "},{"event":"cmd_output","timestamp":1607098232,"output":"%Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12"},{"event":"cmd_output","timestamp":1607098232,"output":"-04 16:10:32.696444], name: \"pull-request-1213-.semaphore/semaphore.yml\", organization_id: \"ffa8028d"},{"event":"cmd_output","timestamp":1607098232,"output":"-2e3a-4ac8-aeb6-75f30f6bb69f\", project_id: \"list_grouped_ks\", queue_id: \"a9173681-6c16-4dc5-a399-efb"},{"event":"cmd_output","timestamp":1607098232,"output":"2c73f1991\", scope: \"project\", updated_at: ~N[2020-12-04 16:10:32.696494], user_generated: false}}\n\u001b"},{"event":"cmd_output","timestamp":1607098232,"output":"[0m\u001b[22m\n16:10:32.703 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInit"},{"event":"cmd_output","timestamp":1607098232,"output":"State.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:32.703 [info] ppl_id: 3dfbf506-8b31-45a8-9a07-171cd6636ce"},{"event":"cmd_output","timestamp":1607098232,"output":"a, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098232,"output":"Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:32.705 [info]"},{"event":"cmd_output","timestamp":1607098232,"output":" ppl_id: 3dfbf506-8b31-45a8-9a07-171cd6636cea, type: PplSubInits, state: done, result: passed, even"},{"event":"cmd_output","timestamp":1607098232,"output":"t: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098232,"output":"m\u001b[22m\n16:10:32.714 [info] ppl_id: 3dfbf506-8b31-45a8-9a07-171cd6636cea, type: PplBlocks, block_in"},{"event":"cmd_output","timestamp":1607098232,"output":"dex: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.lo"},{"event":"cmd_output","timestamp":1607098232,"output":"g_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.714 [info] ppl_id: 3dfbf506-8b31-45a8-9a07-171cd6636ce"},{"event":"cmd_output","timestamp":1607098232,"output":"a, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM."},{"event":"cmd_output","timestamp":1607098232,"output":"Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.716 [info] ppl_id: c47a6c5b-5f4c-4e18-978f-cbdd"},{"event":"cmd_output","timestamp":1607098232,"output":"ae202121, type: PplRequests, event: persisted source_args for pipeline: c47a6c5b-5f4c-4e18-978f-cbdd"},{"event":"cmd_output","timestamp":1607098232,"output":"ae202121, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098232,"output":"\n16:10:32.719 [info] ppl_id: c47a6c5b-5f4c-4e18-978f-cbddae202121, type: PplSubInits, state: fetchi"},{"event":"cmd_output","timestamp":1607098232,"output":"ng, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90"},{"event":"cmd_output","timestamp":1607098232,"output":"), \n\u001b[0m\u001b[22m\n16:10:32.726 [info] ppl_id: 3dfbf506-8b31-45a8-9a07-171cd6636cea, type: Ppls, state"},{"event":"cmd_output","timestamp":1607098232,"output":": queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chang"},{"event":"cmd_output","timestamp":1607098232,"output":"e/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.739 [info] ppl_id: 3dfbf506-8b31-45a8-9a07-171cd6636cea, type: Ppls"},{"event":"cmd_output","timestamp":1607098232,"output":", state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_stat"},{"event":"cmd_output","timestamp":1607098232,"output":"e_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.749 [info] PplBlocks WaitingState STM is scheduling block 0 "},{"event":"cmd_output","timestamp":1607098232,"output":"from pipeline: \"3dfbf506-8b31-45a8-9a07-171cd6636cea\"\n\u001b[0m\u001b[22m\n16:10:32.753 [info] ppl_id: c47a6"},{"event":"cmd_output","timestamp":1607098232,"output":"c5b-5f4c-4e18-978f-cbddae202121, type: PplSubInits, state: regular_init, event: exit_scheduling, rec"},{"event":"cmd_output","timestamp":1607098232,"output":"overy_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.761 [i"},{"event":"cmd_output","timestamp":1607098232,"output":"nfo] block_id: 57f304bf-3ddb-4b29-8217-fdbe1c5c3dae, type: Tasks, state: done, event: exit_scheduli"},{"event":"cmd_output","timestamp":1607098232,"output":"ng, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32"},{"event":"cmd_output","timestamp":1607098232,"output":".761 [info] block_id: b5008f04-4173-4abb-a4da-25ff8f698db3, type: BlockRequests, event: persisted b"},{"event":"cmd_output","timestamp":1607098232,"output":"lock run request from ppl 3dfbf506-8b31-45a8-9a07-171cd6636cea for block 0, origin: Elixir.Block.Blo"},{"event":"cmd_output","timestamp":1607098232,"output":"ckRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:32.767 [info] blo"},{"event":"cmd_output","timestamp":1607098232,"output":"ck_id: b5008f04-4173-4abb-a4da-25ff8f698db3, type: Blocks, state: initializing, event: initializing,"},{"event":"cmd_output","timestamp":1607098232,"output":" recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098232,"output":"0:32.772 [info] Block 0 of pipeline with id: 3dfbf506-8b31-45a8-9a07-171cd6636cea scheduled in bloc"},{"event":"cmd_output","timestamp":1607098232,"output":"k service with id: : \"b5008f04-4173-4abb-a4da-25ff8f698db3\"\n\u001b[0m\u001b[22m\n16:10:32.775 [info] block_i"},{"event":"cmd_output","timestamp":1607098232,"output":"d: 57f304bf-3ddb-4b29-8217-fdbe1c5c3dae, type: Blocks, state: done, event: exit_scheduling, recovery"},{"event":"cmd_output","timestamp":1607098232,"output":"_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.776 [info] "},{"event":"cmd_output","timestamp":1607098232,"output":" ppl_id: 3dfbf506-8b31-45a8-9a07-171cd6636cea, type: PplBlocks, block_index: 0, state: running, even"},{"event":"cmd_output","timestamp":1607098232,"output":"t: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098232,"output":"m\u001b[22m\n16:10:32.779 [info] block_id: b5008f04-4173-4abb-a4da-25ff8f698db3, type: BlockRequests, ev"},{"event":"cmd_output","timestamp":1607098232,"output":"ent: persisted build and sub_ppl details for block_request: b5008f04-4173-4abb-a4da-25ff8f698db3, or"},{"event":"cmd_output","timestamp":1607098232,"output":"igin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:"},{"event":"cmd_output","timestamp":1607098232,"output":"32.783 [info] block_id: b5008f04-4173-4abb-a4da-25ff8f698db3, type: Tasks, state: pending, event: c"},{"event":"cmd_output","timestamp":1607098232,"output":"reated, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167),"},{"event":"cmd_output","timestamp":1607098232,"output":" \n\u001b[0m\u001b[22m\n16:10:32.793 [info] block_id: b5008f04-4173-4abb-a4da-25ff8f698db3, type: Blocks, sta"},{"event":"cmd_output","timestamp":1607098232,"output":"te: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_cha"},{"event":"cmd_output","timestamp":1607098232,"output":"nge/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.798 [info] ppl_id: 781110ae-292e-4deb-85e8-7c35907ee65a, block_id"},{"event":"cmd_output","timestamp":1607098232,"output":": 57f304bf-3ddb-4b29-8217-fdbe1c5c3dae, type: PplBlocks, block_index: 0, state: done, result: passed"},{"event":"cmd_output","timestamp":1607098232,"output":", event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90),"},{"event":"cmd_output","timestamp":1607098232,"output":" \n\u001b[0m\u001b[22m\n16:10:32.798 [info] ppl_id: c47a6c5b-5f4c-4e18-978f-cbddae202121, type: PplRequests, "},{"event":"cmd_output","timestamp":1607098232,"output":"event: persisted definition for request with request_token: 3b0f1690-364b-11eb-b29d-5254005464e2, or"},{"event":"cmd_output","timestamp":1607098232,"output":"igin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:3"},{"event":"cmd_output","timestamp":1607098232,"output":"2.807 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loade"},{"event":"cmd_output","timestamp":1607098232,"output":"d, \"queues\">, inserted_at: ~N[2020-12-04 16:10:32.802828], name: \"pull-request-1214-.semaphore/semap"},{"event":"cmd_output","timestamp":1607098232,"output":"hore.yml\", organization_id: \"4d76d855-a7cf-42a4-b27b-81b8003b1f3e\", project_id: \"list_grouped_ks\", q"},{"event":"cmd_output","timestamp":1607098232,"output":"ueue_id: \"488ce41d-2701-4440-bf32-16e2b8feab6b\", scope: \"project\", updated_at: ~N[2020-12-04 16:10:3"},{"event":"cmd_output","timestamp":1607098232,"output":"2.802872], user_generated: false}}\n\u001b[0m\u001b[22m\n16:10:32.823 [info] event: created, origin: Elixir.P"},{"event":"cmd_output","timestamp":1607098232,"output":"pl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:32.823 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098232,"output":": c47a6c5b-5f4c-4e18-978f-cbddae202121, type: PplBlocks, block_index: 0, state: initializing, event:"},{"event":"cmd_output","timestamp":1607098232,"output":" created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L1"},{"event":"cmd_output","timestamp":1607098232,"output":"05), \n\u001b[0m\u001b[22m\n16:10:32.826 [info] ppl_id: c47a6c5b-5f4c-4e18-978f-cbddae202121, type: PplSubIni"},{"event":"cmd_output","timestamp":1607098232,"output":"ts, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.ST"},{"event":"cmd_output","timestamp":1607098232,"output":"M.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.832 [info] ppl_id: 781110ae-292e-4deb-85e8-7c"},{"event":"cmd_output","timestamp":1607098232,"output":"35907ee65a, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098232,"output":"in: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.833 [info] block_id: b500"},{"event":"cmd_output","timestamp":1607098232,"output":"8f04-4173-4abb-a4da-25ff8f698db3, type: Tasks, state: running, event: exit_scheduling, recovery_coun"},{"event":"cmd_output","timestamp":1607098232,"output":"t: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.844 [info] ppl_"},{"event":"cmd_output","timestamp":1607098232,"output":"id: c47a6c5b-5f4c-4e18-978f-cbddae202121, type: PplBlocks, block_index: 0, state: waiting, event: ex"},{"event":"cmd_output","timestamp":1607098232,"output":"it_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098232,"output":"m\n16:10:32.847 [info] ppl_id: 19229cb7-c8ed-49ff-9108-cb147b957f1f, type: PplRequests, event: pers"},{"event":"cmd_output","timestamp":1607098232,"output":"isted source_args for pipeline: 19229cb7-c8ed-49ff-9108-cb147b957f1f, origin: Elixir.Ppl.PplRequests"},{"event":"cmd_output","timestamp":1607098232,"output":".Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:32.848 [info] ppl_id: c47a6c5b-5"},{"event":"cmd_output","timestamp":1607098232,"output":"f4c-4e18-978f-cbddae202121, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098232,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.849 [info] ppl_id: 192"},{"event":"cmd_output","timestamp":1607098232,"output":"29cb7-c8ed-49ff-9108-cb147b957f1f, type: PplSubInits, state: fetching, event: exit_scheduling, recov"},{"event":"cmd_output","timestamp":1607098232,"output":"ery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.859 [inf"},{"event":"cmd_output","timestamp":1607098232,"output":"o] ppl_id: c47a6c5b-5f4c-4e18-978f-cbddae202121, type: Ppls, state: queuing, event: exit_scheduling"},{"event":"cmd_output","timestamp":1607098232,"output":", recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.8"},{"event":"cmd_output","timestamp":1607098232,"output":"79 [info] block_id: 870a8cfb-672f-46f9-a21c-dd869061cdb6, type: Tasks, state: done, event: exit_sch"},{"event":"cmd_output","timestamp":1607098232,"output":"eduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098232,"output":"10:32.880 [info] ppl_id: 19229cb7-c8ed-49ff-9108-cb147b957f1f, type: PplSubInits, state: regular_in"},{"event":"cmd_output","timestamp":1607098232,"output":"it, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90"},{"event":"cmd_output","timestamp":1607098232,"output":"), \n\u001b[0m\u001b[22m\n16:10:32.888 [info] block_id: 870a8cfb-672f-46f9-a21c-dd869061cdb6, type: Blocks, s"},{"event":"cmd_output","timestamp":1607098232,"output":"tate: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chan"},{"event":"cmd_output","timestamp":1607098232,"output":"ge/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.891 [info] ppl_id: c47a6c5b-5f4c-4e18-978f-cbddae202121, type: Ppl"},{"event":"cmd_output","timestamp":1607098232,"output":"s, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_sta"},{"event":"cmd_output","timestamp":1607098232,"output":"te_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.904 [info] PplBlocks WaitingState STM is scheduling block 0"},{"event":"cmd_output","timestamp":1607098232,"output":" from pipeline: \"c47a6c5b-5f4c-4e18-978f-cbddae202121\"\n\u001b[0m\u001b[22m\n16:10:32.912 [info] ppl_id: 3bb0"},{"event":"cmd_output","timestamp":1607098232,"output":"af1f-a347-463e-abf1-40b45aadd842, block_id: 870a8cfb-672f-46f9-a21c-dd869061cdb6, type: PplBlocks, b"},{"event":"cmd_output","timestamp":1607098232,"output":"lock_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098232,"output":"r.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.915 [info] block_id: a6f33dc0-5455"},{"event":"cmd_output","timestamp":1607098232,"output":"-4d79-9620-39587a3e5c2f, type: BlockRequests, event: persisted block run request from ppl c47a6c5b-5"},{"event":"cmd_output","timestamp":1607098232,"output":"f4c-4e18-978f-cbddae202121 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQuerie"},{"event":"cmd_output","timestamp":1607098232,"output":"s.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:32.917 [info] block_id: a6f33dc0-5455-4d79-9620-39587"},{"event":"cmd_output","timestamp":1607098232,"output":"a3e5c2f, type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.B"},{"event":"cmd_output","timestamp":1607098232,"output":"lock.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:32.924 [info] Block 0 of pipeline"},{"event":"cmd_output","timestamp":1607098232,"output":" with id: c47a6c5b-5f4c-4e18-978f-cbddae202121 scheduled in block service with id: : \"a6f33dc0-5455-"},{"event":"cmd_output","timestamp":1607098232,"output":"4d79-9620-39587a3e5c2f\"\n\u001b[0m\u001b[22m\n16:10:32.930 [info] block_id: a6f33dc0-5455-4d79-9620-39587a3e5"},{"event":"cmd_output","timestamp":1607098232,"output":"c2f, type: BlockRequests, event: persisted build and sub_ppl details for block_request: a6f33dc0-545"},{"event":"cmd_output","timestamp":1607098232,"output":"5-4d79-9620-39587a3e5c2f, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build"},{"event":"cmd_output","timestamp":1607098232,"output":"/2(L41), \n\u001b[0m\u001b[22m\n16:10:32.931 [info] ppl_id: c47a6c5b-5f4c-4e18-978f-cbddae202121, type: PplBl"},{"event":"cmd_output","timestamp":1607098232,"output":"ocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loop"},{"event":"cmd_output","timestamp":1607098232,"output":"er.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.933 [info] block_id: a6f33dc0-5455-4d79-"},{"event":"cmd_output","timestamp":1607098232,"output":"9620-39587a3e5c2f, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Bl"},{"event":"cmd_output","timestamp":1607098232,"output":"ock.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:32.940 [info] block_id:"},{"event":"cmd_output","timestamp":1607098232,"output":" a6f33dc0-5455-4d79-9620-39587a3e5c2f, type: Blocks, state: running, event: exit_scheduling, recover"},{"event":"cmd_output","timestamp":1607098232,"output":"y_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.946 [info]"},{"event":"cmd_output","timestamp":1607098232,"output":" ppl_id: 19229cb7-c8ed-49ff-9108-cb147b957f1f, type: PplRequests, event: persisted definition for r"},{"event":"cmd_output","timestamp":1607098232,"output":"equest with request_token: 3b14720c-364b-11eb-93ba-5254005464e2, origin: Elixir.Ppl.PplRequests.Mode"},{"event":"cmd_output","timestamp":1607098232,"output":"l.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:32.946 [info] ppl_id: 3bb0af1f-a3"},{"event":"cmd_output","timestamp":1607098232,"output":"47-463e-abf1-40b45aadd842, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery"},{"event":"cmd_output","timestamp":1607098232,"output":"_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.958 [info] "},{"event":"cmd_output","timestamp":1607098232,"output":" Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">,"},{"event":"cmd_output","timestamp":1607098232,"output":" inserted_at: ~N[2020-12-04 16:10:32.951490], name: \"pull-request-1215-.semaphore/semaphore.yml\", or"},{"event":"cmd_output","timestamp":1607098232,"output":"ganization_id: \"1e0889a5-04ae-4843-8795-41912575b37e\", project_id: \"list_grouped_ks\", queue_id: \"9a3"},{"event":"cmd_output","timestamp":1607098232,"output":"2fbdc-ed5f-42b1-90a7-b9b2d920e1ee\", scope: \"project\", updated_at: ~N[2020-12-04 16:10:32.951504], us"},{"event":"cmd_output","timestamp":1607098232,"output":"er_generated: false}}\n\u001b[0m\u001b[22m\n16:10:32.964 [info] block_id: a6f33dc0-5455-4d79-9620-39587a3e5c2"},{"event":"cmd_output","timestamp":1607098232,"output":"f, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM"},{"event":"cmd_output","timestamp":1607098232,"output":".Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.967 [info] event: created, origin: Elixir.Ppl."},{"event":"cmd_output","timestamp":1607098232,"output":"PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:32.967 [info] ppl_id: 1"},{"event":"cmd_output","timestamp":1607098232,"output":"9229cb7-c8ed-49ff-9108-cb147b957f1f, type: PplBlocks, block_index: 0, state: initializing, event: cr"},{"event":"cmd_output","timestamp":1607098232,"output":"eated, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105)"},{"event":"cmd_output","timestamp":1607098232,"output":", \n\u001b[0m\u001b[22m\n16:10:32.973 [info] ppl_id: 19229cb7-c8ed-49ff-9108-cb147b957f1f, type: PplSubInits,"},{"event":"cmd_output","timestamp":1607098232,"output":" state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.I"},{"event":"cmd_output","timestamp":1607098232,"output":"mpl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.977 [info] ppl_id: f50e3d3c-2dfc-4506-8aa0-b5c8f"},{"event":"cmd_output","timestamp":1607098232,"output":"42e800b, type: PplRequests, event: persisted source_args for pipeline: f50e3d3c-2dfc-4506-8aa0-b5c8f"},{"event":"cmd_output","timestamp":1607098232,"output":"42e800b, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098232,"output":"16:10:32.980 [info] ppl_id: f50e3d3c-2dfc-4506-8aa0-b5c8f42e800b, type: PplSubInits, state: fetchin"},{"event":"cmd_output","timestamp":1607098232,"output":"g, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90)"},{"event":"cmd_output","timestamp":1607098232,"output":", \n\u001b[0m\u001b[22m\n16:10:32.993 [info] ppl_id: 19229cb7-c8ed-49ff-9108-cb147b957f1f, type: PplBlocks, b"},{"event":"cmd_output","timestamp":1607098232,"output":"lock_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM."},{"event":"cmd_output","timestamp":1607098233,"output":"Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:33.002 [info] block_id: b5008f04-4173-4abb-a4da-25"},{"event":"cmd_output","timestamp":1607098233,"output":"ff8f698db3, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loop"},{"event":"cmd_output","timestamp":1607098233,"output":"er.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:33.004 [info] ppl_id: 19229cb7-c8ed-49ff-91"},{"event":"cmd_output","timestamp":1607098233,"output":"08-cb147b957f1f, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098233,"output":"ir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:33.012 [info] block_id: b5008f04-417"},{"event":"cmd_output","timestamp":1607098233,"output":"3-4abb-a4da-25ff8f698db3, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098233,"output":"in: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:33.014 [info] ppl_id: f50e3d"},{"event":"cmd_output","timestamp":1607098233,"output":"3c-2dfc-4506-8aa0-b5c8f42e800b, type: PplSubInits, state: regular_init, event: exit_scheduling, reco"},{"event":"cmd_output","timestamp":1607098233,"output":"very_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:33.018 [in"},{"event":"cmd_output","timestamp":1607098233,"output":"fo] ppl_id: 19229cb7-c8ed-49ff-9108-cb147b957f1f, type: Ppls, state: queuing, event: exit_schedulin"},{"event":"cmd_output","timestamp":1607098233,"output":"g, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:33."},{"event":"cmd_output","timestamp":1607098233,"output":"027 [info] ppl_id: 3dfbf506-8b31-45a8-9a07-171cd6636cea, block_id: b5008f04-4173-4abb-a4da-25ff8f69"},{"event":"cmd_output","timestamp":1607098233,"output":"8db3, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery"},{"event":"cmd_output","timestamp":1607098233,"output":"_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:33.043 [info] "},{"event":"cmd_output","timestamp":1607098233,"output":" ppl_id: 19229cb7-c8ed-49ff-9108-cb147b957f1f, type: Ppls, state: running, event: exit_scheduling, r"},{"event":"cmd_output","timestamp":1607098233,"output":"ecovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:33.050 "},{"event":"cmd_output","timestamp":1607098233,"output":"[info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"19229cb7-c8ed-49ff-9108-cb1"},{"event":"cmd_output","timestamp":1607098233,"output":"47b957f1f\"\n\u001b[0m\u001b[22m\n16:10:33.057 [info] ppl_id: 3dfbf506-8b31-45a8-9a07-171cd6636cea, type: Ppls"},{"event":"cmd_output","timestamp":1607098233,"output":", state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM."},{"event":"cmd_output","timestamp":1607098233,"output":"Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:33.060 [info] block_id: 495b98d5-7c81-4a55-a97e-fe"},{"event":"cmd_output","timestamp":1607098233,"output":"476a419726, type: BlockRequests, event: persisted block run request from ppl 19229cb7-c8ed-49ff-9108"},{"event":"cmd_output","timestamp":1607098233,"output":"-cb147b957f1f for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_res"},{"event":"cmd_output","timestamp":1607098233,"output":"ponse/4(L35), \n\u001b[0m\u001b[22m\n16:10:33.063 [info] block_id: 495b98d5-7c81-4a55-a97e-fe476a419726, type"},{"event":"cmd_output","timestamp":1607098233,"output":": Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.M"},{"event":"cmd_output","timestamp":1607098233,"output":"odel.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:33.064 [info] ppl_id: f50e3d3c-2dfc-4506-8aa0-"},{"event":"cmd_output","timestamp":1607098233,"output":"b5c8f42e800b, type: PplRequests, event: persisted definition for request with request_token: 3b1cc92"},{"event":"cmd_output","timestamp":1607098233,"output":"a-364b-11eb-82d1-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_defini"},{"event":"cmd_output","timestamp":1607098233,"output":"tion/3(L76), \n\u001b[0m\u001b[22m\n16:10:33.066 [info] Block 0 of pipeline with id: 19229cb7-c8ed-49ff-9108-"},{"event":"cmd_output","timestamp":1607098233,"output":"cb147b957f1f scheduled in block service with id: : \"495b98d5-7c81-4a55-a97e-fe476a419726\"\n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098233,"output":"\n16:10:33.068 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metada"},{"event":"cmd_output","timestamp":1607098233,"output":"ta<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:10:33.066153], name: \"pull-request-1216-.semaph"},{"event":"cmd_output","timestamp":1607098233,"output":"ore/semaphore.yml\", organization_id: \"6739c179-a3ae-4d00-948c-77538236b1a7\", project_id: \"list_group"},{"event":"cmd_output","timestamp":1607098233,"output":"ed_ks\", queue_id: \"f2feac84-2972-4607-ae03-a81f55e294b0\", scope: \"project\", updated_at: ~N[2020-12-0"},{"event":"cmd_output","timestamp":1607098233,"output":"4 16:10:33.066163], user_generated: false}}\n\u001b[0m\u001b[22m\n16:10:33.069 [info] ppl_id: 19229cb7-c8ed-4"},{"event":"cmd_output","timestamp":1607098233,"output":"9ff-9108-cb147b957f1f, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, reco"},{"event":"cmd_output","timestamp":1607098233,"output":"very_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:33.071 [in"},{"event":"cmd_output","timestamp":1607098233,"output":"fo] block_id: 495b98d5-7c81-4a55-a97e-fe476a419726, type: BlockRequests, event: persisted build and"},{"event":"cmd_output","timestamp":1607098233,"output":" sub_ppl details for block_request: 495b98d5-7c81-4a55-a97e-fe476a419726, origin: Elixir.Block.Block"},{"event":"cmd_output","timestamp":1607098233,"output":"Requests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:33.073 [info] block_id:"},{"event":"cmd_output","timestamp":1607098233,"output":" 495b98d5-7c81-4a55-a97e-fe476a419726, type: Tasks, state: pending, event: created, recovery_count: "},{"event":"cmd_output","timestamp":1607098233,"output":"0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:33.0"},{"event":"cmd_output","timestamp":1607098233,"output":"74 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105"},{"event":"cmd_output","timestamp":1607098233,"output":"), \n\u001b[0m\u001b[22m\n16:10:33.074 [info] ppl_id: f50e3d3c-2dfc-4506-8aa0-b5c8f42e800b, type: PplBlocks, "},{"event":"cmd_output","timestamp":1607098233,"output":"block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubIni"},{"event":"cmd_output","timestamp":1607098233,"output":"ts.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:33.075 [info] block_id: 495b98d5"},{"event":"cmd_output","timestamp":1607098233,"output":"-7c81-4a55-a97e-fe476a419726, type: Blocks, state: running, event: exit_scheduling, recovery_count: "},{"event":"cmd_output","timestamp":1607098233,"output":"0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:33.076 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098233,"output":" f50e3d3c-2dfc-4506-8aa0-b5c8f42e800b, type: PplSubInits, state: done, result: passed, event: exit_s"},{"event":"cmd_output","timestamp":1607098233,"output":"cheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098233,"output":"6:10:33.087 [info] ppl_id: f50e3d3c-2dfc-4506-8aa0-b5c8f42e800b, type: PplBlocks, block_index: 0, s"},{"event":"cmd_output","timestamp":1607098233,"output":"tate: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098233,"output":"hange/1(L90), \n\u001b[0m\u001b[22m\n16:10:33.098 [info] ppl_id: f50e3d3c-2dfc-4506-8aa0-b5c8f42e800b, type: "},{"event":"cmd_output","timestamp":1607098233,"output":"Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_"},{"event":"cmd_output","timestamp":1607098233,"output":"state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:33.099 [info] block_id: 495b98d5-7c81-4a55-a97e-fe476a41972"},{"event":"cmd_output","timestamp":1607098233,"output":"6, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM"},{"event":"cmd_output","timestamp":1607098233,"output":".Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:33.106 [info] ppl_id: 7d08a45d-2e14-4bcb-b6f2-76c"},{"event":"cmd_output","timestamp":1607098233,"output":"101a6a72a, type: PplRequests, event: persisted source_args for pipeline: 7d08a45d-2e14-4bcb-b6f2-76c"},{"event":"cmd_output","timestamp":1607098233,"output":"101a6a72a, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098233,"output":"\n16:10:33.110 [info] ppl_id: 7d08a45d-2e14-4bcb-b6f2-76c101a6a72a, type: PplSubInits, state: fetch"},{"event":"cmd_output","timestamp":1607098233,"output":"ing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L9"},{"event":"cmd_output","timestamp":1607098233,"output":"0), \n\u001b[0m\u001b[22m\n16:10:33.113 [info] ppl_id: f50e3d3c-2dfc-4506-8aa0-b5c8f42e800b, type: Ppls, stat"},{"event":"cmd_output","timestamp":1607098233,"output":"e: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chan"},{"event":"cmd_output","timestamp":1607098233,"output":"ge/1(L90), \n\u001b[0m\u001b[22m\n16:10:33.125 [info] block_id: a6f33dc0-5455-4d79-9620-39587a3e5c2f, type: T"},{"event":"cmd_output","timestamp":1607098233,"output":"asks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_sta"},{"event":"cmd_output","timestamp":1607098233,"output":"te_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:33.131 [info] ppl_id: f50e3d3c-2dfc-4506-8aa0-b5c8f42e800b, ty"},{"event":"cmd_output","timestamp":1607098233,"output":"pe: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl."},{"event":"cmd_output","timestamp":1607098233,"output":"log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:33.136 [info] block_id: a6f33dc0-5455-4d79-9620-39587a3"},{"event":"cmd_output","timestamp":1607098233,"output":"e5c2f, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.S"},{"event":"cmd_output","timestamp":1607098233,"output":"TM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:33.146 [info] PplBlocks WaitingState STM is sch"},{"event":"cmd_output","timestamp":1607098233,"output":"eduling block 0 from pipeline: \"f50e3d3c-2dfc-4506-8aa0-b5c8f42e800b\"\n\u001b[0m\u001b[22m\n16:10:33.151 [info"},{"event":"cmd_output","timestamp":1607098233,"output":"] ppl_id: c47a6c5b-5f4c-4e18-978f-cbddae202121, block_id: a6f33dc0-5455-4d79-9620-39587a3e5c2f, typ"},{"event":"cmd_output","timestamp":1607098233,"output":"e: PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0"},{"event":"cmd_output","timestamp":1607098233,"output":", origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:33.154 [info] ppl_id: "},{"event":"cmd_output","timestamp":1607098233,"output":"7d08a45d-2e14-4bcb-b6f2-76c101a6a72a, type: PplSubInits, state: regular_init, event: exit_scheduling"},{"event":"cmd_output","timestamp":1607098233,"output":", recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:33.1"},{"event":"cmd_output","timestamp":1607098233,"output":"57 [info] block_id: 5b583069-cc08-4bc8-a9ec-9f41304b7ccc, type: BlockRequests, event: persisted blo"},{"event":"cmd_output","timestamp":1607098233,"output":"ck run request from ppl f50e3d3c-2dfc-4506-8aa0-b5c8f42e800b for block 0, origin: Elixir.Block.Block"},{"event":"cmd_output","timestamp":1607098233,"output":"Requests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:33.160 [info] block"},{"event":"cmd_output","timestamp":1607098233,"output":"_id: 5b583069-cc08-4bc8-a9ec-9f41304b7ccc, type: Blocks, state: initializing, event: initializing, r"},{"event":"cmd_output","timestamp":1607098233,"output":"ecovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:"},{"event":"cmd_output","timestamp":1607098233,"output":"33.162 [info] Block 0 of pipeline with id: f50e3d3c-2dfc-4506-8aa0-b5c8f42e800b scheduled in block "},{"event":"cmd_output","timestamp":1607098233,"output":"service with id: : \"5b583069-cc08-4bc8-a9ec-9f41304b7ccc\"\n\u001b[0m\u001b[22m\n16:10:33.165 [info] ppl_id: f"},{"event":"cmd_output","timestamp":1607098233,"output":"50e3d3c-2dfc-4506-8aa0-b5c8f42e800b, type: PplBlocks, block_index: 0, state: running, event: exit_sc"},{"event":"cmd_output","timestamp":1607098233,"output":"heduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098233,"output":":10:33.172 [info] block_id: 5b583069-cc08-4bc8-a9ec-9f41304b7ccc, type: BlockRequests, event: persi"},{"event":"cmd_output","timestamp":1607098233,"output":"sted build and sub_ppl details for block_request: 5b583069-cc08-4bc8-a9ec-9f41304b7ccc, origin: Elix"},{"event":"cmd_output","timestamp":1607098233,"output":"ir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:33.176 [in"},{"event":"cmd_output","timestamp":1607098233,"output":"fo] block_id: 5b583069-cc08-4bc8-a9ec-9f41304b7ccc, type: Tasks, state: pending, event: created, re"},{"event":"cmd_output","timestamp":1607098233,"output":"covery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098233,"output":"2m\n16:10:33.176 [info] ppl_id: c47a6c5b-5f4c-4e18-978f-cbddae202121, type: Ppls, state: done, resu"},{"event":"cmd_output","timestamp":1607098233,"output":"lt: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chan"},{"event":"cmd_output","timestamp":1607098233,"output":"ge/1(L90), \n\u001b[0m\u001b[22m\n16:10:33.179 [info] block_id: 5b583069-cc08-4bc8-a9ec-9f41304b7ccc, type: B"},{"event":"cmd_output","timestamp":1607098233,"output":"locks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098233,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:33.193 [info] ppl_id: 7d08a45d-2e14-4bcb-b6f2-76c101a6a72a"},{"event":"cmd_output","timestamp":1607098233,"output":", type: PplRequests, event: persisted definition for request with request_token: 3b2373ba-364b-11eb-"},{"event":"cmd_output","timestamp":1607098233,"output":"9d1e-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76),"},{"event":"cmd_output","timestamp":1607098233,"output":" \n\u001b[0m\u001b[22m\n16:10:33.197 [info] block_id: 5b583069-cc08-4bc8-a9ec-9f41304b7ccc, type: Tasks, stat"},{"event":"cmd_output","timestamp":1607098233,"output":"e: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chan"},{"event":"cmd_output","timestamp":1607098233,"output":"ge/1(L90), \n\u001b[0m\u001b[22m\n16:10:33.197 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta_"},{"event":"cmd_output","timestamp":1607098233,"output":"_: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:10:33.195632], name: \"pul"},{"event":"cmd_output","timestamp":1607098233,"output":"l-request-1217-.semaphore/semaphore.yml\", organization_id: \"845bdda1-9554-4a36-86d9-fdcad8e2a96c\", p"},{"event":"cmd_output","timestamp":1607098233,"output":"roject_id: \"list_grouped_ks\", queue_id: \"3947afae-968e-433a-8dc9-49062147c168\", scope: \"project\", up"},{"event":"cmd_output","timestamp":1607098233,"output":"dated_at: ~N[2020-12-04 16:10:33.195640], user_generated: false}}\n\u001b[0m\u001b[22m\n16:10:33.200 [info] e"},{"event":"cmd_output","timestamp":1607098233,"output":"vent: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098233,"output":"2m\n16:10:33.200 [info] ppl_id: 7d08a45d-2e14-4bcb-b6f2-76c101a6a72a, type: PplBlocks, block_index:"},{"event":"cmd_output","timestamp":1607098233,"output":" 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandle"},{"event":"cmd_output","timestamp":1607098233,"output":"r.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:33.204 [info] ppl_id: 7d08a45d-2e14-4bcb-b6f"},{"event":"cmd_output","timestamp":1607098233,"output":"2-76c101a6a72a, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_cou"},{"event":"cmd_output","timestamp":1607098233,"output":"nt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:33.210 [info] ppl"},{"event":"cmd_output","timestamp":1607098233,"output":"_id: 7d08a45d-2e14-4bcb-b6f2-76c101a6a72a, type: PplBlocks, block_index: 0, state: waiting, event: e"},{"event":"cmd_output","timestamp":1607098233,"output":"xit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098233,"output":"2m\n16:10:33.211 [info] ppl_id: 7d08a45d-2e14-4bcb-b6f2-76c101a6a72a, type: Ppls, state: pending, e"},{"event":"cmd_output","timestamp":1607098233,"output":"vent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n"},{"event":"cmd_output","timestamp":1607098233,"output":"\u001b[0m\u001b[22m\n16:10:33.218 [info] ppl_id: 7d08a45d-2e14-4bcb-b6f2-76c101a6a72a, type: Ppls, state: que"},{"event":"cmd_output","timestamp":1607098233,"output":"uing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098233,"output":"90), \n\u001b[0m\u001b[22m\n16:10:33.227 [info] ppl_id: 7d08a45d-2e14-4bcb-b6f2-76c101a6a72a, type: Ppls, sta"},{"event":"cmd_output","timestamp":1607098233,"output":"te: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_cha"},{"event":"cmd_output","timestamp":1607098233,"output":"nge/1(L90), \n\u001b[0m\u001b[22m\n16:10:33.235 [info] PplBlocks WaitingState STM is scheduling block 0 from "},{"event":"cmd_output","timestamp":1607098233,"output":"pipeline: \"7d08a45d-2e14-4bcb-b6f2-76c101a6a72a\"\n\u001b[0m\u001b[22m\n16:10:33.249 [info] block_id: 495b98d5"},{"event":"cmd_output","timestamp":1607098233,"output":"-7c81-4a55-a97e-fe476a419726, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098233,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:33.249 [info] block_id: 3"},{"event":"cmd_output","timestamp":1607098233,"output":"8e7c476-91ff-424d-afbc-8eeff829cc00, type: BlockRequests, event: persisted block run request from pp"},{"event":"cmd_output","timestamp":1607098233,"output":"l 7d08a45d-2e14-4bcb-b6f2-76c101a6a72a for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRe"},{"event":"cmd_output","timestamp":1607098233,"output":"questsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:33.252 [info] block_id: 38e7c476-91ff-424"},{"event":"cmd_output","timestamp":1607098233,"output":"d-afbc-8eeff829cc00, type: Blocks, state: initializing, event: initializing, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098233,"output":"in: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:33.254 [info] Block 0"},{"event":"cmd_output","timestamp":1607098233,"output":" of pipeline with id: 7d08a45d-2e14-4bcb-b6f2-76c101a6a72a scheduled in block service with id: : \"38"},{"event":"cmd_output","timestamp":1607098233,"output":"e7c476-91ff-424d-afbc-8eeff829cc00\"\n\u001b[0m\u001b[22m\n16:10:33.257 [info] ppl_id: 7d08a45d-2e14-4bcb-b6f2"},{"event":"cmd_output","timestamp":1607098233,"output":"-76c101a6a72a, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_cou"},{"event":"cmd_output","timestamp":1607098233,"output":"nt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:33.259 [info] blo"},{"event":"cmd_output","timestamp":1607098233,"output":"ck_id: 495b98d5-7c81-4a55-a97e-fe476a419726, type: Blocks, state: done, event: exit_scheduling, reco"},{"event":"cmd_output","timestamp":1607098233,"output":"very_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:33.260 [in"},{"event":"cmd_output","timestamp":1607098233,"output":"fo] block_id: 38e7c476-91ff-424d-afbc-8eeff829cc00, type: BlockRequests, event: persisted build and"},{"event":"cmd_output","timestamp":1607098233,"output":" sub_ppl details for block_request: 38e7c476-91ff-424d-afbc-8eeff829cc00, origin: Elixir.Block.Block"},{"event":"cmd_output","timestamp":1607098233,"output":"Requests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:33.262 [info] block_id:"},{"event":"cmd_output","timestamp":1607098233,"output":" 38e7c476-91ff-424d-afbc-8eeff829cc00, type: Tasks, state: pending, event: created, recovery_count: "},{"event":"cmd_output","timestamp":1607098233,"output":"0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:33.2"},{"event":"cmd_output","timestamp":1607098233,"output":"65 [info] block_id: 38e7c476-91ff-424d-afbc-8eeff829cc00, type: Blocks, state: running, event: exit"},{"event":"cmd_output","timestamp":1607098233,"output":"_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098233,"output":"\n16:10:33.272 [info] ppl_id: 19229cb7-c8ed-49ff-9108-cb147b957f1f, block_id: 495b98d5-7c81-4a55-a97"},{"event":"cmd_output","timestamp":1607098233,"output":"e-fe476a419726, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling"},{"event":"cmd_output","timestamp":1607098233,"output":", recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:33.2"},{"event":"cmd_output","timestamp":1607098233,"output":"85 [info] block_id: 38e7c476-91ff-424d-afbc-8eeff829cc00, type: Tasks, state: running, event: exit_"},{"event":"cmd_output","timestamp":1607098233,"output":"scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098233,"output":"16:10:33.289 [info] ppl_id: 19229cb7-c8ed-49ff-9108-cb147b957f1f, type: Ppls, state: done, result: "},{"event":"cmd_output","timestamp":1607098233,"output":"passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1"},{"event":"cmd_output","timestamp":1607098233,"output":"(L90), \n\u001b[0m\u001b[22m\n16:10:33.362 [info] block_id: 5b583069-cc08-4bc8-a9ec-9f41304b7ccc, type: Tasks"},{"event":"cmd_output","timestamp":1607098233,"output":", state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098233,"output":"hange/1(L90), \n\u001b[0m\u001b[22m\n16:10:33.370 [info] block_id: 5b583069-cc08-4bc8-a9ec-9f41304b7ccc, type"},{"event":"cmd_output","timestamp":1607098233,"output":": Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098233,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:33.380 [info] ppl_id: f50e3d3c-2dfc-4506-8aa0-b5c8f42e800b"},{"event":"cmd_output","timestamp":1607098233,"output":", block_id: 5b583069-cc08-4bc8-a9ec-9f41304b7ccc, type: PplBlocks, block_index: 0, state: done, resu"},{"event":"cmd_output","timestamp":1607098233,"output":"lt: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chan"},{"event":"cmd_output","timestamp":1607098233,"output":"ge/1(L90), \n\u001b[0m\u001b[22m\n16:10:33.393 [info] ppl_id: f50e3d3c-2dfc-4506-8aa0-b5c8f42e800b, type: Ppl"},{"event":"cmd_output","timestamp":1607098233,"output":"s, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM"},{"event":"cmd_output","timestamp":1607098233,"output":".Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:33.474 [info] block_id: 38e7c476-91ff-424d-afbc-8"},{"event":"cmd_output","timestamp":1607098233,"output":"eeff829cc00, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loo"},{"event":"cmd_output","timestamp":1607098233,"output":"per.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:33.482 [info] block_id: 38e7c476-91ff-424d"},{"event":"cmd_output","timestamp":1607098233,"output":"-afbc-8eeff829cc00, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098233,"output":"ixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:33.491 [info] ppl_id: 7d08a45d-2e1"},{"event":"cmd_output","timestamp":1607098233,"output":"4-4bcb-b6f2-76c101a6a72a, block_id: 38e7c476-91ff-424d-afbc-8eeff829cc00, type: PplBlocks, block_ind"},{"event":"cmd_output","timestamp":1607098233,"output":"ex: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper"},{"event":"cmd_output","timestamp":1607098233,"output":".STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:33.510 [info] ppl_id: 7d08a45d-2e14-4bcb-b6f2"},{"event":"cmd_output","timestamp":1607098233,"output":"-76c101a6a72a, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098233,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test gRPC list_grouped_ks() -"},{"event":"cmd_output","timestamp":1607098233,"output":" returns latest workflow per distinct label when given valid params (3777.7ms)\u001b[0m\n * test gRPC sc"},{"event":"cmd_output","timestamp":1607098233,"output":"hedule() - success (GitHub repo, non-default branch)\r * test gRPC schedule() - success (GitHub re"},{"event":"cmd_output","timestamp":1607098233,"output":"po, non-default branch) (skipped)\n * test gRPC list_grouped() - refuse request when there are to m"},{"event":"cmd_output","timestamp":1607098233,"output":"any unfinished ones\r * test gRPC list_grouped() - refuse request when there are to many unfinished "},{"event":"cmd_output","timestamp":1607098233,"output":"ones (skipped)\n * test gRPC list_grouped_ks() - fails when project_id is omitted\r * test gRPC lis"},{"event":"cmd_output","timestamp":1607098233,"output":"t_grouped_ks() - fails when project_id is omitted (skipped)\n * test gRPC list() - fails when crea"},{"event":"cmd_output","timestamp":1607098233,"output":"ted_after is after created_before\r * test gRPC list() - fails when created_after is after created_"},{"event":"cmd_output","timestamp":1607098233,"output":"before (skipped)\n * test gRPC create() - create workflow\r * test gRPC create() - create workflow "},{"event":"cmd_output","timestamp":1607098233,"output":"(skipped)\n * test gRPC list_latest_workflows() - refuse request when there are to many unfinished "},{"event":"cmd_output","timestamp":1607098233,"output":"ones\r * test gRPC list_latest_workflows() - refuse request when there are to many unfinished ones ("},{"event":"cmd_output","timestamp":1607098233,"output":"skipped)\n * test gRPC get_project_id() - failes when there is no workflow with given wf_id\r * tes"},{"event":"cmd_output","timestamp":1607098233,"output":"t gRPC get_project_id() - failes when there is no workflow with given wf_id (skipped)\n * test gRPC"},{"event":"cmd_output","timestamp":1607098233,"output":" list_labels() - refuse request when there are to many unfinished ones\r * test gRPC list_labels() -"},{"event":"cmd_output","timestamp":1607098233,"output":" refuse request when there are to many unfinished ones (skipped)\n * test gRPC list_labels() - reru"},{"event":"cmd_output","timestamp":1607098233,"output":"rns distinct label values when given valid params\r * test gRPC list_labels() - rerurns distinct lab"},{"event":"cmd_output","timestamp":1607098233,"output":"el values when given valid params (skipped)\n * test gRPC schedule() - empty request_token\r * test"},{"event":"cmd_output","timestamp":1607098233,"output":" gRPC schedule() - empty request_token (skipped)\n * test gRPC list() - filter by branch_name\r * t"},{"event":"cmd_output","timestamp":1607098233,"output":"est gRPC list() - filter by branch_name (skipped)\n * test gRPC list_grouped_ks() - successfully wa"},{"event":"cmd_output","timestamp":1607098233,"output":"lk the list in both directions\u001b[22m\n16:10:33.681 [info] Request: 'run: %{\"branch_id\" => \"9f4bdf23-"},{"event":"cmd_output","timestamp":1607098233,"output":"6d61-4824-a6b0-182579747ab0\", \"branch_name\" => \"master\", \"client_id\" => \"b6132054-dcbd-4f1b-8f02-76b"},{"event":"cmd_output","timestamp":1607098233,"output":"0ad09b95c\", \"commit_sha\" => \"75891a4469\", \"definition_file\" => \"\", \"hook_id\" => \"branch\", \"label\" =>"},{"event":"cmd_output","timestamp":1607098233,"output":" \"master-0\", \"organization_id\" => \"c702e632-3522-4db8-ba9c-aa1db5a1c76a\", \"owner\" => \"rt\", \"project_"},{"event":"cmd_output","timestamp":1607098233,"output":"id\" => \"list_grouped_ks\", \"repo_name\" => \"2_basic\", \"request_token\" => \"3ce0f4a2-364b-11eb-a9b8-5254"},{"event":"cmd_output","timestamp":1607098233,"output":"005464e2\", \"requester_id\" => \"69d4e7b7-e3e0-4dff-8ca1-4e40b86d3c37\", \"service\" => \"local\", \"snapshot"},{"event":"cmd_output","timestamp":1607098233,"output":"_id\" => \"\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"triggered_by\" => \"hook\", "},{"event":"cmd_output","timestamp":1607098233,"output":"\"wf_id\" => \"4fdb5557-5a42-4474-a38c-5ef59932dc62\"}\n\u001b[0m\u001b[22m\n16:10:33.711 [info] ppl_id: 5506b60b"},{"event":"cmd_output","timestamp":1607098233,"output":"-833c-4fd8-b2e9-a25d951ae2a8, type: PplRequests, event: persisted schedule request with request_toke"},{"event":"cmd_output","timestamp":1607098233,"output":"n: 3ce0f4a2-364b-11eb-a9b8-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.pro"},{"event":"cmd_output","timestamp":1607098233,"output":"cess_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:33.715 [info] ppl_id: 5506b60b-833c-4fd8-b2e9-a25d951ae2a8"},{"event":"cmd_output","timestamp":1607098233,"output":", type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.M"},{"event":"cmd_output","timestamp":1607098233,"output":"odel.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:33.721 [info] Project list_grouped_ks"},{"event":"cmd_output","timestamp":1607098233,"output":" and branch masterlatest_wf details updated: \"wf_id: 4fdb5557-5a42-4474-a38c-5ef59932dc62, wf_number"},{"event":"cmd_output","timestamp":1607098233,"output":": 1\"\n\u001b[0m\u001b[22m\n16:10:33.723 [info] Persisted ppl_sub_init for pipeline with ppl_id: 5506b60b-833c"},{"event":"cmd_output","timestamp":1607098233,"output":"-4fd8-b2e9-a25d951ae2a8: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded,"},{"event":"cmd_output","timestamp":1607098233,"output":" \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 80, in_scheduling: false, "},{"event":"cmd_output","timestamp":1607098233,"output":"init_type: \"regular\", inserted_at: ~N[2020-12-04 16:10:33.721183], pipeline_requests: #Ecto.Associat"},{"event":"cmd_output","timestamp":1607098233,"output":"ion.NotLoaded, ppl_id: \"5506b60b-833c-4fd8-b2e9-a25d95"},{"event":"cmd_output","timestamp":1607098233,"output":"1ae2a8\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: ni"},{"event":"cmd_output","timestamp":1607098233,"output":"l, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:33.721194]}\n\u001b[0m\u001b[22m\n16:10:33.733"},{"event":"cmd_output","timestamp":1607098233,"output":" [info] Request: 'run: %{\"branch_id\" => \"3d140d91-b99f-4196-af7c-8a192b44ecb9\", \"branch_name\" => \"m"},{"event":"cmd_output","timestamp":1607098233,"output":"aster\", \"client_id\" => \"6865de5e-ffaf-4911-a104-6c294fcf4028\", \"commit_sha\" => \"75891a4469\", \"defini"},{"event":"cmd_output","timestamp":1607098233,"output":"tion_file\" => \"\", \"hook_id\" => \"branch\", \"label\" => \"master-1\", \"organization_id\" => \"9d33cbf8-09ee-"},{"event":"cmd_output","timestamp":1607098233,"output":"4d90-a08d-32fe8b5196c1\", \"owner\" => \"rt\", \"project_id\" => \"list_grouped_ks\", \"repo_name\" => \"2_basic"},{"event":"cmd_output","timestamp":1607098233,"output":"\", \"request_token\" => \"3ce8fd50-364b-11eb-a031-5254005464e2\", \"requester_id\" => \"61be74db-98be-446a-"},{"event":"cmd_output","timestamp":1607098233,"output":"896e-70b3e8f5e741\", \"service\" => \"local\", \"snapshot_id\" => \"\", \"suppressed_attributes\" => [\"access_t"},{"event":"cmd_output","timestamp":1607098233,"output":"oken\", \"client_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"f24766b9-79e1-4ed5-bcfc-15390e48ca9c\""},{"event":"cmd_output","timestamp":1607098233,"output":"}\n\u001b[0m\u001b[22m\n16:10:33.778 [info] ppl_id: a973f903-0ded-4a12-82dd-9a0a1488beb0, type: PplRequests, "},{"event":"cmd_output","timestamp":1607098233,"output":"event: persisted schedule request with request_token: 3ce8fd50-364b-11eb-a031-5254005464e2, origin: "},{"event":"cmd_output","timestamp":1607098233,"output":"Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:33.782 ["},{"event":"cmd_output","timestamp":1607098233,"output":"info] ppl_id: a973f903-0ded-4a12-82dd-9a0a1488beb0, type: Ppls, state: initializing, event: initial"},{"event":"cmd_output","timestamp":1607098233,"output":"izing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098233,"output":"\u001b[22m\n16:10:33.785 [info] Project list_grouped_ks and branch masterlatest_wf details updated: \"wf_"},{"event":"cmd_output","timestamp":1607098233,"output":"id: f24766b9-79e1-4ed5-bcfc-15390e48ca9c, wf_number: 2\"\n\u001b[0m\u001b[22m\n16:10:33.788 [info] Persisted p"},{"event":"cmd_output","timestamp":1607098233,"output":"pl_sub_init for pipeline with ppl_id: a973f903-0ded-4a12-82dd-9a0a1488beb0: %Ppl.PplSubInits.Model.P"},{"event":"cmd_output","timestamp":1607098233,"output":"plSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, err"},{"event":"cmd_output","timestamp":1607098233,"output":"or_description: nil, id: 81, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 "},{"event":"cmd_output","timestamp":1607098233,"output":"16:10:33.786043], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"a973f903-0ded-4a12-82dd-9a0a1488beb0\", recovery_count: 0, result: nil, result_r"},{"event":"cmd_output","timestamp":1607098233,"output":"eason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[20"},{"event":"cmd_output","timestamp":1607098233,"output":"20-12-04 16:10:33.786053]}\n\u001b[0m\u001b[22m\n16:10:33.806 [info] Request: 'run: %{\"branch_id\" => \"f90e1e9"},{"event":"cmd_output","timestamp":1607098233,"output":"d-1c4b-4bdd-a13e-33b1200a359c\", \"branch_name\" => \"master\", \"client_id\" => \"f5065d8d-f714-4317-aacd-e"},{"event":"cmd_output","timestamp":1607098233,"output":"83e62079f1d\", \"commit_sha\" => \"75891a4469\", \"definition_file\" => \"\", \"hook_id\" => \"branch\", \"label\" "},{"event":"cmd_output","timestamp":1607098233,"output":"=> \"master-2\", \"organization_id\" => \"763c79be-7de4-4489-9f0b-757283357586\", \"owner\" => \"rt\", \"projec"},{"event":"cmd_output","timestamp":1607098233,"output":"t_id\" => \"list_grouped_ks\", \"repo_name\" => \"2_basic\", \"request_token\" => \"3cf323f2-364b-11eb-a41c-52"},{"event":"cmd_output","timestamp":1607098233,"output":"54005464e2\", \"requester_id\" => \"1fa993da-efc2-49eb-bb35-1ad498a41952\", \"service\" => \"local\", \"snapsh"},{"event":"cmd_output","timestamp":1607098233,"output":"ot_id\" => \"\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"triggered_by\" => \"hook\""},{"event":"cmd_output","timestamp":1607098233,"output":", \"wf_id\" => \"9da9c829-c3bf-410e-9b92-7e0ef5e685ff\"}\n\u001b[0m\u001b[22m\n16:10:33.847 [info] ppl_id: 328dba"},{"event":"cmd_output","timestamp":1607098233,"output":"5f-d505-4e3d-8b24-50ef232eeb51, type: PplRequests, event: persisted schedule request with request_to"},{"event":"cmd_output","timestamp":1607098233,"output":"ken: 3cf323f2-364b-11eb-a41c-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.p"},{"event":"cmd_output","timestamp":1607098233,"output":"rocess_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:33.851 [info] ppl_id: 328dba5f-d505-4e3d-8b24-50ef232eeb"},{"event":"cmd_output","timestamp":1607098233,"output":"51, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls"},{"event":"cmd_output","timestamp":1607098233,"output":".Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:33.854 [info] Project list_grouped_"},{"event":"cmd_output","timestamp":1607098233,"output":"ks and branch masterlatest_wf details updated: \"wf_id: 9da9c829-c3bf-410e-9b92-7e0ef5e685ff, wf_numb"},{"event":"cmd_output","timestamp":1607098233,"output":"er: 3\"\n\u001b[0m\u001b[22m\n16:10:33.857 [info] Persisted ppl_sub_init for pipeline with ppl_id: 328dba5f-d5"},{"event":"cmd_output","timestamp":1607098233,"output":"05-4e3d-8b24-50ef232eeb51: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loade"},{"event":"cmd_output","timestamp":1607098233,"output":"d, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 82, in_scheduling: false"},{"event":"cmd_output","timestamp":1607098233,"output":", init_type: \"regular\", inserted_at: ~N[2020-12-04 16:10:33.855043], pipeline_requests: #Ecto.Associ"},{"event":"cmd_output","timestamp":1607098233,"output":"ation.NotLoaded, ppl_id: \"328dba5f-d505-4e3d-8b24-50ef"},{"event":"cmd_output","timestamp":1607098233,"output":"232eeb51\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: "},{"event":"cmd_output","timestamp":1607098233,"output":"nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:33.855055]}\n\u001b[0m\u001b[22m\n16:10:33.8"},{"event":"cmd_output","timestamp":1607098233,"output":"70 [info] Request: 'run: %{\"branch_id\" => \"c9742a93-32e7-4bf4-bd52-6c4aa3619fb1\", \"branch_name\" => "},{"event":"cmd_output","timestamp":1607098233,"output":"\"master\", \"client_id\" => \"1cab82dd-a6f9-4758-a938-693c4d76f510\", \"commit_sha\" => \"75891a4469\", \"defi"},{"event":"cmd_output","timestamp":1607098233,"output":"nition_file\" => \"\", \"hook_id\" => \"branch\", \"label\" => \"master-3\", \"organization_id\" => \"d7e2ba5d-30e"},{"event":"cmd_output","timestamp":1607098233,"output":"7-4992-b15c-719f1be42bfa\", \"owner\" => \"rt\", \"project_id\" => \"list_grouped_ks\", \"repo_name\" => \"2_bas"},{"event":"cmd_output","timestamp":1607098233,"output":"ic\", \"request_token\" => \"3cfdce92-364b-11eb-8653-5254005464e2\", \"requester_id\" => \"43464261-55e4-498"},{"event":"cmd_output","timestamp":1607098233,"output":"f-8e47-3831839d7241\", \"service\" => \"local\", \"snapshot_id\" => \"\", \"suppressed_attributes\" => [\"access"},{"event":"cmd_output","timestamp":1607098233,"output":"_token\", \"client_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"be3e4cb2-4ade-434a-82a7-6dfe78842e3"},{"event":"cmd_output","timestamp":1607098233,"output":"7\"}\n\u001b[0m\u001b[22m\n16:10:33.915 [info] ppl_id: a5652339-427d-4d00-8eb6-93d37d7b15d7, type: PplRequests"},{"event":"cmd_output","timestamp":1607098233,"output":", event: persisted schedule request with request_token: 3cfdce92-364b-11eb-8653-5254005464e2, origin"},{"event":"cmd_output","timestamp":1607098233,"output":": Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:33.920"},{"event":"cmd_output","timestamp":1607098233,"output":" [info] ppl_id: a5652339-427d-4d00-8eb6-93d37d7b15d7, type: Ppls, state: initializing, event: initi"},{"event":"cmd_output","timestamp":1607098233,"output":"alizing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b["},{"event":"cmd_output","timestamp":1607098233,"output":"0m\u001b[22m\n16:10:33.925 [info] Project list_grouped_ks and branch masterlatest_wf details updated: \"w"},{"event":"cmd_output","timestamp":1607098233,"output":"f_id: be3e4cb2-4ade-434a-82a7-6dfe78842e37, wf_number: 4\"\n\u001b[0m\u001b[22m\n16:10:33.928 [info] Persisted"},{"event":"cmd_output","timestamp":1607098233,"output":" ppl_sub_init for pipeline with ppl_id: a5652339-427d-4d00-8eb6-93d37d7b15d7: %Ppl.PplSubInits.Model"},{"event":"cmd_output","timestamp":1607098233,"output":".PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, e"},{"event":"cmd_output","timestamp":1607098233,"output":"rror_description: nil, id: 83, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-0"},{"event":"cmd_output","timestamp":1607098233,"output":"4 16:10:33.925944], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"a5652339-427d-4d00-8eb6-93d37d7b15d7\", recovery_count: 0, result: nil, result"},{"event":"cmd_output","timestamp":1607098233,"output":"_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N["},{"event":"cmd_output","timestamp":1607098233,"output":"2020-12-04 16:10:33.925957]}\n\u001b[0m\u001b[22m\n16:10:33.949 [info] Request: 'run: %{\"branch_id\" => \"f9e4e"},{"event":"cmd_output","timestamp":1607098233,"output":"65a-4993-4dc4-a426-2cebfd69d822\", \"branch_name\" => \"master\", \"client_id\" => \"3aa85cf2-57a2-4c63-9ec7"},{"event":"cmd_output","timestamp":1607098233,"output":"-d6eb685c7d35\", \"commit_sha\" => \"75891a4469\", \"definition_file\" => \"\", \"hook_id\" => \"branch\", \"label"},{"event":"cmd_output","timestamp":1607098233,"output":"\" => \"master-4\", \"organization_id\" => \"b2e6f579-d7a1-4bc4-860c-c802b865dafe\", \"owner\" => \"rt\", \"proj"},{"event":"cmd_output","timestamp":1607098233,"output":"ect_id\" => \"list_grouped_ks\", \"repo_name\" => \"2_basic\", \"request_token\" => \"3d090df2-364b-11eb-ad83-"},{"event":"cmd_output","timestamp":1607098233,"output":"5254005464e2\", \"requester_id\" => \"b74a727a-a35c-4762-82a5-50961d62dfd9\", \"service\" => \"local\", \"snap"},{"event":"cmd_output","timestamp":1607098233,"output":"shot_id\" => \"\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"triggered_by\" => \"hoo"},{"event":"cmd_output","timestamp":1607098233,"output":"k\", \"wf_id\" => \"906b848f-5179-4b9f-8a1a-3557766471e2\"}\n\u001b[0m\u001b[22m\n16:10:33.982 [info] ppl_id: 98ce"},{"event":"cmd_output","timestamp":1607098233,"output":"822b-eac8-4236-803c-894b9978a3c3, type: PplRequests, event: persisted schedule request with request_"},{"event":"cmd_output","timestamp":1607098233,"output":"token: 3d090df2-364b-11eb-ad83-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries"},{"event":"cmd_output","timestamp":1607098233,"output":".process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:33.985 [info] ppl_id: 98ce822b-eac8-4236-803c-894b9978"},{"event":"cmd_output","timestamp":1607098233,"output":"a3c3, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Pp"},{"event":"cmd_output","timestamp":1607098233,"output":"ls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:33.989 [info] Project list_groupe"},{"event":"cmd_output","timestamp":1607098233,"output":"d_ks and branch masterlatest_wf details updated: \"wf_id: 906b848f-5179-4b9f-8a1a-3557766471e2, wf_nu"},{"event":"cmd_output","timestamp":1607098233,"output":"mber: 5\"\n\u001b[0m\u001b[22m\n16:10:33.991 [info] Persisted ppl_sub_init for pipeline with ppl_id: 98ce822b-"},{"event":"cmd_output","timestamp":1607098233,"output":"eac8-4236-803c-894b9978a3c3: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loa"},{"event":"cmd_output","timestamp":1607098233,"output":"ded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 84, in_scheduling: fal"},{"event":"cmd_output","timestamp":1607098233,"output":"se, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:10:33.989647], pipeline_requests: #Ecto.Asso"},{"event":"cmd_output","timestamp":1607098233,"output":"ciation.NotLoaded, ppl_id: \"98ce822b-eac8-4236-803c-89"},{"event":"cmd_output","timestamp":1607098233,"output":"4b9978a3c3\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request"},{"event":"cmd_output","timestamp":1607098234,"output":": nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:33.989660]}\n\u001b[0m\u001b[22m\n16:10:34"},{"event":"cmd_output","timestamp":1607098234,"output":".003 [info] Request: 'run: %{\"branch_id\" => \"e5947cde-2f86-4bb3-b025-05f1bd7a167f\", \"branch_name\" ="},{"event":"cmd_output","timestamp":1607098234,"output":"> \"master\", \"client_id\" => \"c19d3700-bbb0-4645-b84a-5ef3e3f08f7a\", \"commit_sha\" => \"75891a4469\", \"de"},{"event":"cmd_output","timestamp":1607098234,"output":"finition_file\" => \"\", \"hook_id\" => \"branch\", \"label\" => \"master-5\", \"organization_id\" => \"60b95f81-c"},{"event":"cmd_output","timestamp":1607098234,"output":"3eb-46d8-b972-2ae54ee6a868\", \"owner\" => \"rt\", \"project_id\" => \"list_grouped_ks\", \"repo_name\" => \"2_b"},{"event":"cmd_output","timestamp":1607098234,"output":"asic\", \"request_token\" => \"3d12531c-364b-11eb-b094-5254005464e2\", \"requester_id\" => \"bc13e008-f9d0-4"},{"event":"cmd_output","timestamp":1607098234,"output":"3b2-ac72-473a78bb5650\", \"service\" => \"local\", \"snapshot_id\" => \"\", \"suppressed_attributes\" => [\"acce"},{"event":"cmd_output","timestamp":1607098234,"output":"ss_token\", \"client_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"41d6ee87-2e19-4d6c-85ad-3ae6c24a8"},{"event":"cmd_output","timestamp":1607098234,"output":"462\"}\n\u001b[0m\u001b[22m\n16:10:34.036 [info] ppl_id: 0dbec12c-cbb1-4901-81fb-9fe26b2d121a, type: PplReques"},{"event":"cmd_output","timestamp":1607098234,"output":"ts, event: persisted schedule request with request_token: 3d12531c-364b-11eb-b094-5254005464e2, orig"},{"event":"cmd_output","timestamp":1607098234,"output":"in: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:34.0"},{"event":"cmd_output","timestamp":1607098234,"output":"39 [info] ppl_id: 0dbec12c-cbb1-4901-81fb-9fe26b2d121a, type: Ppls, state: initializing, event: ini"},{"event":"cmd_output","timestamp":1607098234,"output":"tializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n"},{"event":"cmd_output","timestamp":1607098234,"output":"\u001b[0m\u001b[22m\n16:10:34.043 [info] Project list_grouped_ks and branch masterlatest_wf details updated: "},{"event":"cmd_output","timestamp":1607098234,"output":"\"wf_id: 41d6ee87-2e19-4d6c-85ad-3ae6c24a8462, wf_number: 6\"\n\u001b[0m\u001b[22m\n16:10:34.045 [info] Persist"},{"event":"cmd_output","timestamp":1607098234,"output":"ed ppl_sub_init for pipeline with ppl_id: 0dbec12c-cbb1-4901-81fb-9fe26b2d121a: %Ppl.PplSubInits.Mod"},{"event":"cmd_output","timestamp":1607098234,"output":"el.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil,"},{"event":"cmd_output","timestamp":1607098234,"output":" error_description: nil, id: 85, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12"},{"event":"cmd_output","timestamp":1607098234,"output":"-04 16:10:34.043310], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"0dbec12c-cbb1-4901-81fb-9fe26b2d121a\", recovery_count: 0, result: nil, resu"},{"event":"cmd_output","timestamp":1607098234,"output":"lt_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~"},{"event":"cmd_output","timestamp":1607098234,"output":"N[2020-12-04 16:10:34.043321]}\n\u001b[0m\u001b[22m\n16:10:34.051 [info] Periodic from module Elixir.Ppl.Ppls"},{"event":"cmd_output","timestamp":1607098234,"output":".STMHandler.InitializingState with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 "},{"event":"cmd_output","timestamp":1607098234,"output":"ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args"},{"event":"cmd_output","timestamp":1607098234,"output":": %{allowed_states: [\"initializing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098234,"output":"s.Model.Ppls, observed_state: \"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMH"},{"event":"cmd_output","timestamp":1607098234,"output":"andler.InitializingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_"},{"event":"cmd_output","timestamp":1607098234,"output":"at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}"},{"event":"cmd_output","timestamp":1607098234,"output":"\n\u001b[0m\u001b[22m\n16:10:34.052 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingState with "},{"event":"cmd_output","timestamp":1607098234,"output":"name Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\""},{"event":"cmd_output","timestamp":1607098234,"output":", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"pending\", \"queuing\", \"r"},{"event":"cmd_output","timestamp":1607098234,"output":"unning\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\""},{"event":"cmd_output","timestamp":1607098234,"output":", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRep"},{"event":"cmd_output","timestamp":1607098234,"output":"o, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], sch"},{"event":"cmd_output","timestamp":1607098234,"output":"ema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:10:34.052 [info] Peri"},{"event":"cmd_output","timestamp":1607098234,"output":"odic from module Elixir.Ppl.Ppls.STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandler.Queuin"},{"event":"cmd_output","timestamp":1607098234,"output":"gState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]"},{"event":"cmd_output","timestamp":1607098234,"output":"}, recurring args: %{allowed_states: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, initial_q"},{"event":"cmd_output","timestamp":1607098234,"output":"uery: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.P"},{"event":"cmd_output","timestamp":1607098234,"output":"pls.STMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updat"},{"event":"cmd_output","timestamp":1607098234,"output":"ed_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :sk"},{"event":"cmd_output","timestamp":1607098234,"output":"ip}\n\u001b[0m\u001b[22m\n16:10:34.053 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.RunningState wi"},{"event":"cmd_output","timestamp":1607098234,"output":"th name Elixir.Ppl.Ppls.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_"},{"event":"cmd_output","timestamp":1607098234,"output":"up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\""},{"event":"cmd_output","timestamp":1607098234,"output":", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"running\", publ"},{"event":"cmd_output","timestamp":1607098234,"output":"isher_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, re"},{"event":"cmd_output","timestamp":1607098234,"output":"turning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: "},{"event":"cmd_output","timestamp":1607098234,"output":"Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:10:34.053 [info] Periodic "},{"event":"cmd_output","timestamp":1607098234,"output":"from module Elixir.Ppl.Ppls.STMHandler.StoppingState with name Elixir.Ppl.Ppls.STMHandler.StoppingSt"},{"event":"cmd_output","timestamp":1607098234,"output":"ate :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]},"},{"event":"cmd_output","timestamp":1607098234,"output":" recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Pp"},{"event":"cmd_output","timestamp":1607098234,"output":"ls.Model.Ppls, observed_state: \"stopping\", publisher_cb: #Function<0.71803493/1 in Ppl.Ppls.STMHandl"},{"event":"cmd_output","timestamp":1607098234,"output":"er.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :sta"},{"event":"cmd_output","timestamp":1607098234,"output":"te, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098234,"output":"22m\n16:10:34.053 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedState with n"},{"event":"cmd_output","timestamp":1607098234,"output":"ame Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.beholder-wa"},{"event":"cmd_output","timestamp":1607098234,"output":"ke_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args: %{allowed_states: [\"fetching\","},{"event":"cmd_output","timestamp":1607098234,"output":" \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"cr"},{"event":"cmd_output","timestamp":1607098234,"output":"eated\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :"},{"event":"cmd_output","timestamp":1607098234,"output":"state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_superviso"},{"event":"cmd_output","timestamp":1607098234,"output":"r: :skip}\n\u001b[0m\u001b[22m\n16:10:34.054 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.Fe"},{"event":"cmd_output","timestamp":1607098234,"output":"tchingState with name Elixir.Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 ms, metric_name"},{"event":"cmd_output","timestamp":1607098234,"output":": {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %{allowed_"},{"event":"cmd_output","timestamp":1607098234,"output":"states: [\"regular_init\", \"compilation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInit"},{"event":"cmd_output","timestamp":1607098234,"output":"s.Model.PplSubInits, observed_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning:"},{"event":"cmd_output","timestamp":1607098234,"output":" [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplS"},{"event":"cmd_output","timestamp":1607098234,"output":"ubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:34.054 [info] Periodic from mo"},{"event":"cmd_output","timestamp":1607098234,"output":"dule Elixir.Ppl.PplSubInits.STMHandler.CompilationState with name Elixir.Ppl.PplSubInits.STMHandler."},{"event":"cmd_output","timestamp":1607098234,"output":"CompilationState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandl"},{"event":"cmd_output","timestamp":1607098234,"output":"er-CompilationState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"stopping\""},{"event":"cmd_output","timestamp":1607098234,"output":", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \""},{"event":"cmd_output","timestamp":1607098234,"output":"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated"},{"event":"cmd_output","timestamp":1607098234,"output":"_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_sup"},{"event":"cmd_output","timestamp":1607098234,"output":"ervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:34.054 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHand"},{"event":"cmd_output","timestamp":1607098234,"output":"ler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period: 100 ms,"},{"event":"cmd_output","timestamp":1607098234,"output":" metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurring a"},{"event":"cmd_output","timestamp":1607098234,"output":"rgs: %{allowed_states: [\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubIni"},{"event":"cmd_output","timestamp":1607098234,"output":"ts, observed_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :termi"},{"event":"cmd_output","timestamp":1607098234,"output":"nate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model"},{"event":"cmd_output","timestamp":1607098234,"output":".PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:34.055 [info] Periodic from module Elixir.P"},{"event":"cmd_output","timestamp":1607098234,"output":"pl.PplBlocks.STMHandler.InitializingState with name Elixir.Ppl.PplBlocks.STMHandler.InitializingStat"},{"event":"cmd_output","timestamp":1607098234,"output":"e :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-InitializingSt"},{"event":"cmd_output","timestamp":1607098234,"output":"ate\"]}, recurring args: %{allowed_states: [\"initializing\", \"waiting\", \"done\"], cooling_time_sec: 0, "},{"event":"cmd_output","timestamp":1607098234,"output":"initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"initializing\", publisher_cb: :skip, r"},{"event":"cmd_output","timestamp":1607098234,"output":"epo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_coun"},{"event":"cmd_output","timestamp":1607098234,"output":"t, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098234,"output":"\n16:10:34.055 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.WaitingState with name E"},{"event":"cmd_output","timestamp":1607098234,"output":"lixir.Ppl.PplBlocks.STMHandler.WaitingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\""},{"event":"cmd_output","timestamp":1607098234,"output":", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurring args: %{allowed_states: [\"waiting\", \"running"},{"event":"cmd_output","timestamp":1607098234,"output":"\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"wait"},{"event":"cmd_output","timestamp":1607098234,"output":"ing\", publisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>, repo: Pp"},{"event":"cmd_output","timestamp":1607098234,"output":"l.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl"},{"event":"cmd_output","timestamp":1607098234,"output":"_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10"},{"event":"cmd_output","timestamp":1607098234,"output":":34.055 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.RunningState with name Elixir.P"},{"event":"cmd_output","timestamp":1607098234,"output":"pl.PplBlocks.STMHandler.RunningState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl"},{"event":"cmd_output","timestamp":1607098234,"output":"-PplBlocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"do"},{"event":"cmd_output","timestamp":1607098234,"output":"ne\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"running\","},{"event":"cmd_output","timestamp":1607098234,"output":" publisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0>, repo: Ppl.Ec"},{"event":"cmd_output","timestamp":1607098234,"output":"toRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id,"},{"event":"cmd_output","timestamp":1607098234,"output":" :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098234,"output":"\n16:10:34.055 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.StoppingState with name "},{"event":"cmd_output","timestamp":1607098234,"output":"Elixir.Ppl.PplBlocks.STMHandler.StoppingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_u"},{"event":"cmd_output","timestamp":1607098234,"output":"p\", [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"don"},{"event":"cmd_output","timestamp":1607098234,"output":"e\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"stopping\","},{"event":"cmd_output","timestamp":1607098234,"output":" publisher_cb: #Function<0.104215991/1 in Ppl.PplBlocks.STMHandler.StoppingState.args/0>, repo: Ppl."},{"event":"cmd_output","timestamp":1607098234,"output":"EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_i"},{"event":"cmd_output","timestamp":1607098234,"output":"d, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098234,"output":"2m\n16:10:34.055 [info] Periodic from module Elixir.Block.Blocks.STMHandler.InitializingState with "},{"event":"cmd_output","timestamp":1607098234,"output":"name Elixir.Block.Blocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder"},{"event":"cmd_output","timestamp":1607098234,"output":"-wake_up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"runni"},{"event":"cmd_output","timestamp":1607098234,"output":"ng\", \"done\"], cooling_time_sec: 0, initial_query: Block.Blocks.Model.Blocks, observed_state: \"initia"},{"event":"cmd_output","timestamp":1607098234,"output":"lizing\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at"},{"event":"cmd_output","timestamp":1607098234,"output":", :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b"},{"event":"cmd_output","timestamp":1607098234,"output":"[0m\u001b[22m\n16:10:34.055 [info] Periodic from module Elixir.Block.Blocks.STMHandler.RunningState with"},{"event":"cmd_output","timestamp":1607098234,"output":" name Elixir.Block.Blocks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wak"},{"event":"cmd_output","timestamp":1607098234,"output":"e_up\", [\"Block-Blocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"sto"},{"event":"cmd_output","timestamp":1607098234,"output":"pping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"ru"},{"event":"cmd_output","timestamp":1607098234,"output":"nning\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at,"},{"event":"cmd_output","timestamp":1607098234,"output":" :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b["},{"event":"cmd_output","timestamp":1607098234,"output":"0m\u001b[22m\n16:10:34.056 [info] Periodic from module Elixir.Block.Blocks.STMHandler.StoppingState with"},{"event":"cmd_output","timestamp":1607098234,"output":" name Elixir.Block.Blocks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wa"},{"event":"cmd_output","timestamp":1607098234,"output":"ke_up\", [\"Block-Blocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \""},{"event":"cmd_output","timestamp":1607098234,"output":"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"stopping\", "},{"event":"cmd_output","timestamp":1607098234,"output":"publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state,"},{"event":"cmd_output","timestamp":1607098234,"output":" :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098234,"output":"\n16:10:34.056 [info] Periodic from module Elixir.Block.Tasks.STMHandler.PendingState with name Elix"},{"event":"cmd_output","timestamp":1607098234,"output":"ir.Block.Tasks.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Bl"},{"event":"cmd_output","timestamp":1607098234,"output":"ock-Tasks-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling"},{"event":"cmd_output","timestamp":1607098234,"output":"_time_sec: 0, initial_query: Block.Tasks.Model.Tasks, observed_state: \"pending\", publisher_cb: :skip"},{"event":"cmd_output","timestamp":1607098234,"output":", repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :"},{"event":"cmd_output","timestamp":1607098234,"output":"block_id, :build_request_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098234,"output":"6:10:34.056 [info] Periodic from module Elixir.Block.Tasks.STMHandler.RunningState with name Elixir"},{"event":"cmd_output","timestamp":1607098234,"output":".Block.Tasks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Bloc"},{"event":"cmd_output","timestamp":1607098234,"output":"k-Tasks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\""},{"event":"cmd_output","timestamp":1607098234,"output":"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"running\", publishe"},{"event":"cmd_output","timestamp":1607098234,"output":"r_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recove"},{"event":"cmd_output","timestamp":1607098234,"output":"ry_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:34."},{"event":"cmd_output","timestamp":1607098234,"output":"056 [info] Periodic from module Elixir.Block.Tasks.STMHandler.StoppingState with name Elixir.Block."},{"event":"cmd_output","timestamp":1607098234,"output":"Tasks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Task"},{"event":"cmd_output","timestamp":1607098234,"output":"s-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_"},{"event":"cmd_output","timestamp":1607098234,"output":"sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"stopping\", publisher_cb: :skip, re"},{"event":"cmd_output","timestamp":1607098234,"output":"po: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :bloc"},{"event":"cmd_output","timestamp":1607098234,"output":"k_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:34.177 [info] ppl"},{"event":"cmd_output","timestamp":1607098234,"output":"_id: 5506b60b-833c-4fd8-b2e9-a25d951ae2a8, type: PplRequests, event: persisted source_args for pipel"},{"event":"cmd_output","timestamp":1607098234,"output":"ine: 5506b60b-833c-4fd8-b2e9-a25d951ae2a8, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.i"},{"event":"cmd_output","timestamp":1607098234,"output":"nsert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:34.181 [info] ppl_id: 5506b60b-833c-4fd8-b2e9-a25d951ae2a8,"},{"event":"cmd_output","timestamp":1607098234,"output":" type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loope"},{"event":"cmd_output","timestamp":1607098234,"output":"r.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:34.215 [info] ppl_id: 5506b60b-833c-4fd8-b2e"},{"event":"cmd_output","timestamp":1607098234,"output":"9-a25d951ae2a8, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098234,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:34.245 [info] ppl_id: 550"},{"event":"cmd_output","timestamp":1607098234,"output":"6b60b-833c-4fd8-b2e9-a25d951ae2a8, type: PplRequests, event: persisted definition for request with r"},{"event":"cmd_output","timestamp":1607098234,"output":"equest_token: 3ce0f4a2-364b-11eb-a9b8-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequests"},{"event":"cmd_output","timestamp":1607098234,"output":"Queries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:34.254 [info] Queue persisted: {:ok, %Ppl.Queu"},{"event":"cmd_output","timestamp":1607098234,"output":"es.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:10"},{"event":"cmd_output","timestamp":1607098234,"output":":34.252029], name: \"master-0-.semaphore/semaphore.yml\", organization_id: \"c702e632-3522-4db8-ba9c-aa"},{"event":"cmd_output","timestamp":1607098234,"output":"1db5a1c76a\", project_id: \"list_grouped_ks\", queue_id: \"6e6231e7-43d6-41ba-92a2-7392df2967dd\", scope:"},{"event":"cmd_output","timestamp":1607098234,"output":" \"project\", updated_at: ~N[2020-12-04 16:10:34.252043], user_generated: false}}\n\u001b[0m\u001b[22m\n16:10:34"},{"event":"cmd_output","timestamp":1607098234,"output":".261 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L1"},{"event":"cmd_output","timestamp":1607098234,"output":"05), \n\u001b[0m\u001b[22m\n16:10:34.261 [info] ppl_id: 5506b60b-833c-4fd8-b2e9-a25d951ae2a8, type: PplBlocks"},{"event":"cmd_output","timestamp":1607098234,"output":", block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubI"},{"event":"cmd_output","timestamp":1607098234,"output":"nits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:34.264 [info] ppl_id: 5506b60b"},{"event":"cmd_output","timestamp":1607098234,"output":"-833c-4fd8-b2e9-a25d951ae2a8, type: PplSubInits, state: done, result: passed, event: exit_scheduling"},{"event":"cmd_output","timestamp":1607098234,"output":", recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:34.2"},{"event":"cmd_output","timestamp":1607098234,"output":"81 [info] ppl_id: 5506b60b-833c-4fd8-b2e9-a25d951ae2a8, type: PplBlocks, block_index: 0, state: wai"},{"event":"cmd_output","timestamp":1607098234,"output":"ting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098234,"output":"90), \n\u001b[0m\u001b[22m\n16:10:34.286 [info] ppl_id: 5506b60b-833c-4fd8-b2e9-a25d951ae2a8, type: Ppls, sta"},{"event":"cmd_output","timestamp":1607098234,"output":"te: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_cha"},{"event":"cmd_output","timestamp":1607098234,"output":"nge/1(L90), \n\u001b[0m\u001b[22m\n16:10:34.300 [info] ppl_id: a973f903-0ded-4a12-82dd-9a0a1488beb0, type: Pp"},{"event":"cmd_output","timestamp":1607098234,"output":"lRequests, event: persisted source_args for pipeline: a973f903-0ded-4a12-82dd-9a0a1488beb0, origin: "},{"event":"cmd_output","timestamp":1607098234,"output":"Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:34.304 [inf"},{"event":"cmd_output","timestamp":1607098234,"output":"o] ppl_id: 5506b60b-833c-4fd8-b2e9-a25d951ae2a8, type: Ppls, state: queuing, event: exit_scheduling"},{"event":"cmd_output","timestamp":1607098234,"output":", recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:34.3"},{"event":"cmd_output","timestamp":1607098234,"output":"05 [info] ppl_id: a973f903-0ded-4a12-82dd-9a0a1488beb0, type: PplSubInits, state: fetching, event: "},{"event":"cmd_output","timestamp":1607098234,"output":"exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098234,"output":"22m\n16:10:34.323 [info] ppl_id: 5506b60b-833c-4fd8-b2e9-a25d951ae2a8, type: Ppls, state: running, "},{"event":"cmd_output","timestamp":1607098234,"output":"event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \r"},{"event":"cmd_output","timestamp":1607098234,"output":"\n\u001b[0m\u001b[22m\n16:10:34.332 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"55"},{"event":"cmd_output","timestamp":1607098234,"output":"06b60b-833c-4fd8-b2e9-a25d951ae2a8\"\n\u001b[0m\u001b[22m\n16:10:34.342 [info] block_id: de1530ef-66fe-44da-b6"},{"event":"cmd_output","timestamp":1607098234,"output":"df-03bb2aad8437, type: BlockRequests, event: persisted block run request from ppl 5506b60b-833c-4fd8"},{"event":"cmd_output","timestamp":1607098234,"output":"-b2e9-a25d951ae2a8 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.proces"},{"event":"cmd_output","timestamp":1607098234,"output":"s_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:34.346 [info] block_id: de1530ef-66fe-44da-b6df-03bb2aad8437,"},{"event":"cmd_output","timestamp":1607098234,"output":" type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blo"},{"event":"cmd_output","timestamp":1607098234,"output":"cks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:34.348 [info] ppl_id: a973f903-0ded-4a12-"},{"event":"cmd_output","timestamp":1607098234,"output":"82dd-9a0a1488beb0, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0"},{"event":"cmd_output","timestamp":1607098234,"output":", origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:34.352 [info] Block 0 "},{"event":"cmd_output","timestamp":1607098234,"output":"of pipeline with id: 5506b60b-833c-4fd8-b2e9-a25d951ae2a8 scheduled in block service with id: : \"de1"},{"event":"cmd_output","timestamp":1607098234,"output":"530ef-66fe-44da-b6df-03bb2aad8437\"\n\u001b[0m\u001b[22m\n16:10:34.358 [info] ppl_id: 5506b60b-833c-4fd8-b2e9-"},{"event":"cmd_output","timestamp":1607098234,"output":"a25d951ae2a8, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_coun"},{"event":"cmd_output","timestamp":1607098234,"output":"t: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:34.365 [info] bloc"},{"event":"cmd_output","timestamp":1607098234,"output":"k_id: de1530ef-66fe-44da-b6df-03bb2aad8437, type: BlockRequests, event: persisted build and sub_ppl "},{"event":"cmd_output","timestamp":1607098234,"output":"details for block_request: de1530ef-66fe-44da-b6df-03bb2aad8437, origin: Elixir.Block.BlockRequests."},{"event":"cmd_output","timestamp":1607098234,"output":"Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:34.374 [info] block_id: de1530ef"},{"event":"cmd_output","timestamp":1607098234,"output":"-66fe-44da-b6df-03bb2aad8437, type: Tasks, state: pending, event: created, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098234,"output":": Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:34.380 [info]"},{"event":"cmd_output","timestamp":1607098234,"output":" block_id: de1530ef-66fe-44da-b6df-03bb2aad8437, type: Blocks, state: running, event: exit_scheduli"},{"event":"cmd_output","timestamp":1607098234,"output":"ng, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:34"},{"event":"cmd_output","timestamp":1607098234,"output":".412 [info] ppl_id: a973f903-0ded-4a12-82dd-9a0a1488beb0, type: PplRequests, event: persisted defin"},{"event":"cmd_output","timestamp":1607098234,"output":"ition for request with request_token: 3ce8fd50-364b-11eb-a031-5254005464e2, origin: Elixir.Ppl.PplRe"},{"event":"cmd_output","timestamp":1607098234,"output":"quests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:34.417 [info] Queue pe"},{"event":"cmd_output","timestamp":1607098234,"output":"rsisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted"},{"event":"cmd_output","timestamp":1607098234,"output":"_at: ~N[2020-12-04 16:10:34.415584], name: \"master-1-.semaphore/semaphore.yml\", organization_id: \"9d"},{"event":"cmd_output","timestamp":1607098234,"output":"33cbf8-09ee-4d90-a08d-32fe8b5196c1\", project_id: \"list_grouped_ks\", queue_id: \"480d22dc-cde9-47a6-9a"},{"event":"cmd_output","timestamp":1607098234,"output":"0e-ed2944c54f98\", scope: \"project\", updated_at: ~N[2020-12-04 16:10:34.415597], user_generated: fals"},{"event":"cmd_output","timestamp":1607098234,"output":"e}}\n\u001b[0m\u001b[22m\n16:10:34.417 [info] block_id: de1530ef-66fe-44da-b6df-03bb2aad8437, type: Tasks, st"},{"event":"cmd_output","timestamp":1607098234,"output":"ate: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_ch"},{"event":"cmd_output","timestamp":1607098234,"output":"ange/1(L90), \n\u001b[0m\u001b[22m\n16:10:34.427 [info] ppl_id: 328dba5f-d505-4e3d-8b24-50ef232eeb51, type: P"},{"event":"cmd_output","timestamp":1607098234,"output":"plRequests, event: persisted source_args for pipeline: 328dba5f-d505-4e3d-8b24-50ef232eeb51, origin:"},{"event":"cmd_output","timestamp":1607098234,"output":" Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:34.428 [in"},{"event":"cmd_output","timestamp":1607098234,"output":"fo] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b"},{"event":"cmd_output","timestamp":1607098234,"output":"[0m\u001b[22m\n16:10:34.428 [info] ppl_id: a973f903-0ded-4a12-82dd-9a0a1488beb0, type: PplBlocks, block_"},{"event":"cmd_output","timestamp":1607098234,"output":"index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STM"},{"event":"cmd_output","timestamp":1607098234,"output":"Handler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:34.432 [info] ppl_id: a973f903-0ded-4a"},{"event":"cmd_output","timestamp":1607098234,"output":"12-82dd-9a0a1488beb0, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recove"},{"event":"cmd_output","timestamp":1607098234,"output":"ry_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:34.432 [info"},{"event":"cmd_output","timestamp":1607098234,"output":"] ppl_id: 328dba5f-d505-4e3d-8b24-50ef232eeb51, type: PplSubInits, state: fetching, event: exit_sch"},{"event":"cmd_output","timestamp":1607098234,"output":"eduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098234,"output":"10:34.447 [info] ppl_id: a973f903-0ded-4a12-82dd-9a0a1488beb0, type: PplBlocks, block_index: 0, sta"},{"event":"cmd_output","timestamp":1607098234,"output":"te: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_cha"},{"event":"cmd_output","timestamp":1607098234,"output":"nge/1(L90), \n\u001b[0m\u001b[22m\n16:10:34.450 [info] ppl_id: a973f903-0ded-4a12-82dd-9a0a1488beb0, type: Pp"},{"event":"cmd_output","timestamp":1607098234,"output":"ls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_st"},{"event":"cmd_output","timestamp":1607098234,"output":"ate_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:34.462 [info] ppl_id: a973f903-0ded-4a12-82dd-9a0a1488beb0, t"},{"event":"cmd_output","timestamp":1607098234,"output":"ype: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl"},{"event":"cmd_output","timestamp":1607098234,"output":".log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:34.473 [info] ppl_id: 328dba5f-d505-4e3d-8b24-50ef232e"},{"event":"cmd_output","timestamp":1607098234,"output":"eb51, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098234,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:34.479 [info] ppl_id: a973f903-0ded"},{"event":"cmd_output","timestamp":1607098234,"output":"-4a12-82dd-9a0a1488beb0, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098234,"output":"in: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:34.487 [info] PplBlocks Wait"},{"event":"cmd_output","timestamp":1607098234,"output":"ingState STM is scheduling block 0 from pipeline: \"a973f903-0ded-4a12-82dd-9a0a1488beb0\"\n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098234,"output":"\n16:10:34.502 [info] block_id: 74d16058-ae51-4182-b158-1a41d99611d0, type: BlockRequests, event: pe"},{"event":"cmd_output","timestamp":1607098234,"output":"rsisted block run request from ppl a973f903-0ded-4a12-82dd-9a0a1488beb0 for block 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098234,"output":"Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:34.512 [i"},{"event":"cmd_output","timestamp":1607098234,"output":"nfo] block_id: 74d16058-ae51-4182-b158-1a41d99611d0, type: Blocks, state: initializing, event: init"},{"event":"cmd_output","timestamp":1607098234,"output":"ializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098234,"output":"22m\n16:10:34.514 [info] block_id: de1530ef-66fe-44da-b6df-03bb2aad8437, type: Tasks, state: done, "},{"event":"cmd_output","timestamp":1607098234,"output":"event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \r"},{"event":"cmd_output","timestamp":1607098234,"output":"\n\u001b[0m\u001b[22m\n16:10:34.520 [info] Block 0 of pipeline with id: a973f903-0ded-4a12-82dd-9a0a1488beb0 s"},{"event":"cmd_output","timestamp":1607098234,"output":"cheduled in block service with id: : \"74d16058-ae51-4182-b158-1a41d99611d0\"\n\u001b[0m\u001b[22m\n16:10:34.526"},{"event":"cmd_output","timestamp":1607098234,"output":" [info] block_id: de1530ef-66fe-44da-b6df-03bb2aad8437, type: Blocks, state: done, event: exit_sche"},{"event":"cmd_output","timestamp":1607098234,"output":"duling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098234,"output":"0:34.527 [info] ppl_id: a973f903-0ded-4a12-82dd-9a0a1488beb0, type: PplBlocks, block_index: 0, stat"},{"event":"cmd_output","timestamp":1607098234,"output":"e: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chan"},{"event":"cmd_output","timestamp":1607098234,"output":"ge/1(L90), \n\u001b[0m\u001b[22m\n16:10:34.528 [info] block_id: 74d16058-ae51-4182-b158-1a41d99611d0, type: B"},{"event":"cmd_output","timestamp":1607098234,"output":"lockRequests, event: persisted build and sub_ppl details for block_request: 74d16058-ae51-4182-b158-"},{"event":"cmd_output","timestamp":1607098234,"output":"1a41d99611d0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b"},{"event":"cmd_output","timestamp":1607098234,"output":"[0m\u001b[22m\n16:10:34.532 [info] block_id: 74d16058-ae51-4182-b158-1a41d99611d0, type: Tasks, state: p"},{"event":"cmd_output","timestamp":1607098234,"output":"ending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState."},{"event":"cmd_output","timestamp":1607098234,"output":"all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:34.537 [info] block_id: 74d16058-ae51-4182-b158-1a41d99611d0, t"},{"event":"cmd_output","timestamp":1607098234,"output":"ype: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Im"},{"event":"cmd_output","timestamp":1607098234,"output":"pl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:34.552 [info] ppl_id: 328dba5f-d505-4e3d-8b24-50ef23"},{"event":"cmd_output","timestamp":1607098234,"output":"2eeb51, type: PplRequests, event: persisted definition for request with request_token: 3cf323f2-364b"},{"event":"cmd_output","timestamp":1607098234,"output":"-11eb-a41c-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3"},{"event":"cmd_output","timestamp":1607098234,"output":"(L76), \n\u001b[0m\u001b[22m\n16:10:34.559 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #"},{"event":"cmd_output","timestamp":1607098234,"output":"Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:10:34.556139], name: \"master-"},{"event":"cmd_output","timestamp":1607098234,"output":"2-.semaphore/semaphore.yml\", organization_id: \"763c79be-7de4-4489-9f0b-757283357586\", project_id: \"l"},{"event":"cmd_output","timestamp":1607098234,"output":"ist_grouped_ks\", queue_id: \"7ebc94b6-6bc8-4fb4-a33a-991b9ff6594d\", scope: \"project\", updated_at: ~N["},{"event":"cmd_output","timestamp":1607098234,"output":"2020-12-04 16:10:34.556152], user_generated: false}}\n\u001b[0m\u001b[22m\n16:10:34.563 [info] ppl_id: a56523"},{"event":"cmd_output","timestamp":1607098234,"output":"39-427d-4d00-8eb6-93d37d7b15d7, type: PplRequests, event: persisted source_args for pipeline: a56523"},{"event":"cmd_output","timestamp":1607098234,"output":"39-427d-4d00-8eb6-93d37d7b15d7, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_sourc"},{"event":"cmd_output","timestamp":1607098234,"output":"e/2(L89), \n\u001b[0m\u001b[22m\n16:10:34.569 [info] ppl_id: 5506b60b-833c-4fd8-b2e9-a25d951ae2a8, block_id: "},{"event":"cmd_output","timestamp":1607098234,"output":"de1530ef-66fe-44da-b6df-03bb2aad8437, type: PplBlocks, block_index: 0, state: done, result: passed, "},{"event":"cmd_output","timestamp":1607098234,"output":"event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \r"},{"event":"cmd_output","timestamp":1607098234,"output":"\n\u001b[0m\u001b[22m\n16:10:34.570 [info] ppl_id: a5652339-427d-4d00-8eb6-93d37d7b15d7, type: PplSubInits, st"},{"event":"cmd_output","timestamp":1607098234,"output":"ate: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098234,"output":"hange/1(L90), \n\u001b[0m\u001b[22m\n16:10:34.570 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHa"},{"event":"cmd_output","timestamp":1607098234,"output":"ndler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:34.570 [info] ppl_id: 328dba5f-d505-4e3d"},{"event":"cmd_output","timestamp":1607098234,"output":"-8b24-50ef232eeb51, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_c"},{"event":"cmd_output","timestamp":1607098234,"output":"ount: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098234,"output":":10:34.574 [info] ppl_id: 328dba5f-d505-4e3d-8b24-50ef232eeb51, type: PplSubInits, state: done, res"},{"event":"cmd_output","timestamp":1607098234,"output":"ult: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_cha"},{"event":"cmd_output","timestamp":1607098234,"output":"nge/1(L90), \n\u001b[0m\u001b[22m\n16:10:34.575 [info] block_id: 74d16058-ae51-4182-b158-1a41d99611d0, type: "},{"event":"cmd_output","timestamp":1607098234,"output":"Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098234,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:34.596 [info] ppl_id: 328dba5f-d505-4e3d-8b24-50ef232eeb51"},{"event":"cmd_output","timestamp":1607098234,"output":", type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098234,"output":": Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:34.600 [info] ppl_id: 328dba5f"},{"event":"cmd_output","timestamp":1607098234,"output":"-d505-4e3d-8b24-50ef232eeb51, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098234,"output":" origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:34.613 [info] ppl_id: 5"},{"event":"cmd_output","timestamp":1607098234,"output":"506b60b-833c-4fd8-b2e9-a25d951ae2a8, type: Ppls, state: done, result: passed, event: exit_scheduling"},{"event":"cmd_output","timestamp":1607098234,"output":", recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:34.6"},{"event":"cmd_output","timestamp":1607098234,"output":"23 [info] ppl_id: 328dba5f-d505-4e3d-8b24-50ef232eeb51, type: Ppls, state: queuing, event: exit_sch"},{"event":"cmd_output","timestamp":1607098234,"output":"eduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098234,"output":"10:34.636 [info] ppl_id: a5652339-427d-4d00-8eb6-93d37d7b15d7, type: PplSubInits, state: regular_in"},{"event":"cmd_output","timestamp":1607098234,"output":"it, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90"},{"event":"cmd_output","timestamp":1607098234,"output":"), \n\u001b[0m\u001b[22m\n16:10:34.645 [info] block_id: 74d16058-ae51-4182-b158-1a41d99611d0, type: Tasks, st"},{"event":"cmd_output","timestamp":1607098234,"output":"ate: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chang"},{"event":"cmd_output","timestamp":1607098234,"output":"e/1(L90), \n\u001b[0m\u001b[22m\n16:10:34.650 [info] ppl_id: 328dba5f-d505-4e3d-8b24-50ef232eeb51, type: Ppls"},{"event":"cmd_output","timestamp":1607098234,"output":", state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_stat"},{"event":"cmd_output","timestamp":1607098234,"output":"e_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:34.658 [info] block_id: 74d16058-ae51-4182-b158-1a41d99611d0, t"},{"event":"cmd_output","timestamp":1607098234,"output":"ype: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl."},{"event":"cmd_output","timestamp":1607098234,"output":"log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:34.666 [info] PplBlocks WaitingState STM is scheduling "},{"event":"cmd_output","timestamp":1607098234,"output":"block 0 from pipeline: \"328dba5f-d505-4e3d-8b24-50ef232eeb51\"\n\u001b[0m\u001b[22m\n16:10:34.683 [info] block"},{"event":"cmd_output","timestamp":1607098234,"output":"_id: 88442ef2-7cda-4d64-949d-c56556dee54f, type: BlockRequests, event: persisted block run request f"},{"event":"cmd_output","timestamp":1607098234,"output":"rom ppl 328dba5f-d505-4e3d-8b24-50ef232eeb51 for block 0, origin: Elixir.Block.BlockRequests.Model.B"},{"event":"cmd_output","timestamp":1607098234,"output":"lockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:34.684 [info] ppl_id: a973f903-0ded"},{"event":"cmd_output","timestamp":1607098234,"output":"-4a12-82dd-9a0a1488beb0, block_id: 74d16058-ae51-4182-b158-1a41d99611d0, type: PplBlocks, block_inde"},{"event":"cmd_output","timestamp":1607098234,"output":"x: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper."},{"event":"cmd_output","timestamp":1607098234,"output":"STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:34.687 [info] block_id: 88442ef2-7cda-4d64-949"},{"event":"cmd_output","timestamp":1607098234,"output":"d-c56556dee54f, type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: E"},{"event":"cmd_output","timestamp":1607098234,"output":"lixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:34.690 [info] Block 0 of p"},{"event":"cmd_output","timestamp":1607098234,"output":"ipeline with id: 328dba5f-d505-4e3d-8b24-50ef232eeb51 scheduled in block service with id: : \"88442ef"},{"event":"cmd_output","timestamp":1607098234,"output":"2-7cda-4d64-949d-c56556dee54f\"\n\u001b[0m\u001b[22m\n16:10:34.705 [info] ppl_id: 328dba5f-d505-4e3d-8b24-50ef"},{"event":"cmd_output","timestamp":1607098234,"output":"232eeb51, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0"},{"event":"cmd_output","timestamp":1607098234,"output":", origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:34.706 [info] ppl_id: "},{"event":"cmd_output","timestamp":1607098234,"output":"a5652339-427d-4d00-8eb6-93d37d7b15d7, type: PplRequests, event: persisted definition for request wit"},{"event":"cmd_output","timestamp":1607098234,"output":"h request_token: 3cfdce92-364b-11eb-8653-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplReque"},{"event":"cmd_output","timestamp":1607098234,"output":"stsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:34.712 [info] ppl_id: 98ce822b-eac8-4236-80"},{"event":"cmd_output","timestamp":1607098234,"output":"3c-894b9978a3c3, type: PplRequests, event: persisted source_args for pipeline: 98ce822b-eac8-4236-80"},{"event":"cmd_output","timestamp":1607098234,"output":"3c-894b9978a3c3, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098234,"output":"m\u001b[22m\n16:10:34.714 [info] block_id: 88442ef2-7cda-4d64-949d-c56556dee54f, type: BlockRequests, ev"},{"event":"cmd_output","timestamp":1607098234,"output":"ent: persisted build and sub_ppl details for block_request: 88442ef2-7cda-4d64-949d-c56556dee54f, or"},{"event":"cmd_output","timestamp":1607098234,"output":"igin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:"},{"event":"cmd_output","timestamp":1607098234,"output":"34.717 [info] block_id: 88442ef2-7cda-4d64-949d-c56556dee54f, type: Tasks, state: pending, event: c"},{"event":"cmd_output","timestamp":1607098234,"output":"reated, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167),"},{"event":"cmd_output","timestamp":1607098234,"output":" \n\u001b[0m\u001b[22m\n16:10:34.719 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.S"},{"event":"cmd_output","timestamp":1607098234,"output":"chema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:10:34.715782], name: \"master-3-.sem"},{"event":"cmd_output","timestamp":1607098234,"output":"aphore/semaphore.yml\", organization_id: \"d7e2ba5d-30e7-4992-b15c-719f1be42bfa\", project_id: \"list_gr"},{"event":"cmd_output","timestamp":1607098234,"output":"ouped_ks\", queue_id: \"0fbe19db-30d8-4fbe-8f05-12f8f246c765\", scope: \"project\", updated_at: ~N[2020-1"},{"event":"cmd_output","timestamp":1607098234,"output":"2-04 16:10:34.715790], user_generated: false}}\n\u001b[0m\u001b[22m\n16:10:34.719 [info] ppl_id: 98ce822b-eac"},{"event":"cmd_output","timestamp":1607098234,"output":"8-4236-803c-894b9978a3c3, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count"},{"event":"cmd_output","timestamp":1607098234,"output":": 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:34.721 [info] block"},{"event":"cmd_output","timestamp":1607098234,"output":"_id: 88442ef2-7cda-4d64-949d-c56556dee54f, type: Blocks, state: running, event: exit_scheduling, rec"},{"event":"cmd_output","timestamp":1607098234,"output":"overy_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:34.740 [i"},{"event":"cmd_output","timestamp":1607098234,"output":"nfo] ppl_id: a973f903-0ded-4a12-82dd-9a0a1488beb0, type: Ppls, state: done, result: passed, event: "},{"event":"cmd_output","timestamp":1607098234,"output":"exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098234,"output":"22m\n16:10:34.740 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState"},{"event":"cmd_output","timestamp":1607098234,"output":".all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:34.740 [info] ppl_id: a5652339-427d-4d00-8eb6-93d37d7b15d7, ty"},{"event":"cmd_output","timestamp":1607098234,"output":"pe: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098234,"output":"r.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:34.751 [info] ppl"},{"event":"cmd_output","timestamp":1607098234,"output":"_id: a5652339-427d-4d00-8eb6-93d37d7b15d7, type: PplSubInits, state: done, result: passed, event: ex"},{"event":"cmd_output","timestamp":1607098234,"output":"it_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098234,"output":"m\n16:10:34.759 [info] block_id: 88442ef2-7cda-4d64-949d-c56556dee54f, type: Tasks, state: running,"},{"event":"cmd_output","timestamp":1607098234,"output":" event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), "},{"event":"cmd_output","timestamp":1607098234,"output":"\n\u001b[0m\u001b[22m\n16:10:34.775 [info] ppl_id: a5652339-427d-4d00-8eb6-93d37d7b15d7, type: PplBlocks, blo"},{"event":"cmd_output","timestamp":1607098234,"output":"ck_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Im"},{"event":"cmd_output","timestamp":1607098234,"output":"pl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:34.784 [info] ppl_id: a5652339-427d-4d00-8eb6-93d37d"},{"event":"cmd_output","timestamp":1607098234,"output":"7b15d7, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper"},{"event":"cmd_output","timestamp":1607098234,"output":".STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:34.792 [info] block_id: 88442ef2-7cda-4d64-94"},{"event":"cmd_output","timestamp":1607098234,"output":"9d-c56556dee54f, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098234,"output":".Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:34.799 [info] ppl_id: 98ce822b-eac8-42"},{"event":"cmd_output","timestamp":1607098234,"output":"36-803c-894b9978a3c3, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count"},{"event":"cmd_output","timestamp":1607098234,"output":": 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:34.806 [info] block"},{"event":"cmd_output","timestamp":1607098234,"output":"_id: 88442ef2-7cda-4d64-949d-c56556dee54f, type: Blocks, state: done, event: exit_scheduling, recove"},{"event":"cmd_output","timestamp":1607098234,"output":"ry_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:34.808 [info"},{"event":"cmd_output","timestamp":1607098234,"output":"] ppl_id: a5652339-427d-4d00-8eb6-93d37d7b15d7, type: Ppls, state: queuing, event: exit_scheduling,"},{"event":"cmd_output","timestamp":1607098234,"output":" recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:34.83"},{"event":"cmd_output","timestamp":1607098234,"output":"4 [info] ppl_id: 328dba5f-d505-4e3d-8b24-50ef232eeb51, block_id: 88442ef2-7cda-4d64-949d-c56556dee5"},{"event":"cmd_output","timestamp":1607098234,"output":"4f, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098234,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:34.845 [info] p"},{"event":"cmd_output","timestamp":1607098234,"output":"pl_id: 0dbec12c-cbb1-4901-81fb-9fe26b2d121a, type: PplRequests, event: persisted source_args for pip"},{"event":"cmd_output","timestamp":1607098234,"output":"eline: 0dbec12c-cbb1-4901-81fb-9fe26b2d121a, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries"},{"event":"cmd_output","timestamp":1607098234,"output":".insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:34.850 [info] ppl_id: a5652339-427d-4d00-8eb6-93d37d7b15d"},{"event":"cmd_output","timestamp":1607098234,"output":"7, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM."},{"event":"cmd_output","timestamp":1607098234,"output":"Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:34.855 [info] ppl_id: 0dbec12c-cbb1-4901-81fb-9fe2"},{"event":"cmd_output","timestamp":1607098234,"output":"6b2d121a, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098234,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:34.870 [info] PplBlocks WaitingStat"},{"event":"cmd_output","timestamp":1607098234,"output":"e STM is scheduling block 0 from pipeline: \"a5652339-427d-4d00-8eb6-93d37d7b15d7\"\n\u001b[0m\u001b[22m\n16:10:"},{"event":"cmd_output","timestamp":1607098234,"output":"34.877 [info] ppl_id: 98ce822b-eac8-4236-803c-894b9978a3c3, type: PplRequests, event: persisted def"},{"event":"cmd_output","timestamp":1607098234,"output":"inition for request with request_token: 3d090df2-364b-11eb-ad83-5254005464e2, origin: Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098234,"output":"Requests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:34.878 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098234,"output":": 328dba5f-d505-4e3d-8b24-50ef232eeb51, type: Ppls, state: done, result: passed, event: exit_schedul"},{"event":"cmd_output","timestamp":1607098234,"output":"ing, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:3"},{"event":"cmd_output","timestamp":1607098234,"output":"4.881 [info] block_id: 1275d930-3181-4456-abf2-de8c6e88d828, type: BlockRequests, event: persisted "},{"event":"cmd_output","timestamp":1607098234,"output":"block run request from ppl a5652339-427d-4d00-8eb6-93d37d7b15d7 for block 0, origin: Elixir.Block.Bl"},{"event":"cmd_output","timestamp":1607098234,"output":"ockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:34.884 [info] bl"},{"event":"cmd_output","timestamp":1607098234,"output":"ock_id: 1275d930-3181-4456-abf2-de8c6e88d828, type: Blocks, state: initializing, event: initializing"},{"event":"cmd_output","timestamp":1607098234,"output":", recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098234,"output":"10:34.891 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:l"},{"event":"cmd_output","timestamp":1607098234,"output":"oaded, \"queues\">, inserted_at: ~N[2020-12-04 16:10:34.888340], name: \"master-4-.semaphore/semaphore."},{"event":"cmd_output","timestamp":1607098234,"output":"yml\", organization_id: \"b2e6f579-d7a1-4bc4-860c-c802b865dafe\", project_id: \"list_grouped_ks\", queue_"},{"event":"cmd_output","timestamp":1607098234,"output":"id: \"eb640db7-93a0-441f-9795-e9eded060fc9\", scope: \"project\", updated_at: ~N[2020-12-04 16:10:34.888"},{"event":"cmd_output","timestamp":1607098234,"output":"353], user_generated: false}}\n\u001b[0m\u001b[22m\n16:10:34.893 [info] Block 0 of pipeline with id: a5652339"},{"event":"cmd_output","timestamp":1607098234,"output":"-427d-4d00-8eb6-93d37d7b15d7 scheduled in block service with id: : \"1275d930-3181-4456-abf2-de8c6e88"},{"event":"cmd_output","timestamp":1607098234,"output":"d828\"\n\u001b[0m\u001b[22m\n16:10:34.898 [info] ppl_id: a5652339-427d-4d00-8eb6-93d37d7b15d7, type: PplBlocks"},{"event":"cmd_output","timestamp":1607098234,"output":", block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.S"},{"event":"cmd_output","timestamp":1607098234,"output":"TM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:34.904 [info] block_id: 1275d930-3181-4456-abf2"},{"event":"cmd_output","timestamp":1607098234,"output":"-de8c6e88d828, type: BlockRequests, event: persisted build and sub_ppl details for block_request: 12"},{"event":"cmd_output","timestamp":1607098234,"output":"75d930-3181-4456-abf2-de8c6e88d828, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.in"},{"event":"cmd_output","timestamp":1607098234,"output":"sert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:34.904 [info] event: created, origin: Elixir.Ppl.PplSubInits."},{"event":"cmd_output","timestamp":1607098234,"output":"STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:34.904 [info] ppl_id: 98ce822b-eac8"},{"event":"cmd_output","timestamp":1607098234,"output":"-4236-803c-894b9978a3c3, type: PplBlocks, block_index: 0, state: initializing, event: created, recov"},{"event":"cmd_output","timestamp":1607098234,"output":"ery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098234,"output":"m\n16:10:34.907 [info] ppl_id: 98ce822b-eac8-4236-803c-894b9978a3c3, type: PplSubInits, state: done"},{"event":"cmd_output","timestamp":1607098234,"output":", result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_stat"},{"event":"cmd_output","timestamp":1607098234,"output":"e_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:34.914 [info] block_id: 1275d930-3181-4456-abf2-de8c6e88d828, t"},{"event":"cmd_output","timestamp":1607098234,"output":"ype: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandle"},{"event":"cmd_output","timestamp":1607098234,"output":"r.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:34.923 [info] block_id: 1275d930-3181-4456-"},{"event":"cmd_output","timestamp":1607098234,"output":"abf2-de8c6e88d828, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098234,"output":"Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:34.923 [info] ppl_id: 0dbec12c-c"},{"event":"cmd_output","timestamp":1607098234,"output":"bb1-4901-81fb-9fe26b2d121a, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery"},{"event":"cmd_output","timestamp":1607098234,"output":"_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:34.925 [info] "},{"event":"cmd_output","timestamp":1607098234,"output":" ppl_id: 98ce822b-eac8-4236-803c-894b9978a3c3, type: PplBlocks, block_index: 0, state: waiting, even"},{"event":"cmd_output","timestamp":1607098234,"output":"t: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098234,"output":"m\u001b[22m\n16:10:34.945 [info] ppl_id: 98ce822b-eac8-4236-803c-894b9978a3c3, type: Ppls, state: pendin"},{"event":"cmd_output","timestamp":1607098234,"output":"g, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90)"},{"event":"cmd_output","timestamp":1607098234,"output":", \n\u001b[0m\u001b[22m\n16:10:34.964 [info] block_id: 1275d930-3181-4456-abf2-de8c6e88d828, type: Tasks, sta"},{"event":"cmd_output","timestamp":1607098234,"output":"te: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_cha"},{"event":"cmd_output","timestamp":1607098234,"output":"nge/1(L90), \n\u001b[0m\u001b[22m\n16:10:34.973 [info] ppl_id: 98ce822b-eac8-4236-803c-894b9978a3c3, type: Pp"},{"event":"cmd_output","timestamp":1607098234,"output":"ls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_st"},{"event":"cmd_output","timestamp":1607098234,"output":"ate_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:34.982 [info] ppl_id: 0dbec12c-cbb1-4901-81fb-9fe26b2d121a, t"},{"event":"cmd_output","timestamp":1607098234,"output":"ype: PplRequests, event: persisted definition for request with request_token: 3d12531c-364b-11eb-b09"},{"event":"cmd_output","timestamp":1607098234,"output":"4-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n"},{"event":"cmd_output","timestamp":1607098234,"output":"\u001b[0m\u001b[22m\n16:10:34.983 [info] ppl_id: 98ce822b-eac8-4236-803c-894b9978a3c3, type: Ppls, state: run"},{"event":"cmd_output","timestamp":1607098234,"output":"ning, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098234,"output":"90), \n\u001b[0m\u001b[22m\n16:10:34.990 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ec"},{"event":"cmd_output","timestamp":1607098234,"output":"to.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:10:34.986457], name: \"master-5-"},{"event":"cmd_output","timestamp":1607098234,"output":".semaphore/semaphore.yml\", organization_id: \"60b95f81-c3eb-46d8-b972-2ae54ee6a868\", project_id: \"lis"},{"event":"cmd_output","timestamp":1607098234,"output":"t_grouped_ks\", queue_id: \"ee0b1a08-bc79-41e6-a887-c0daf6e9170a\", scope: \"project\", updated_at: ~N[20"},{"event":"cmd_output","timestamp":1607098234,"output":"20-12-04 16:10:34.986470], user_generated: false}}\n\u001b[0m\u001b[22m\n16:10:34.995 [info] PplBlocks Waitin"},{"event":"cmd_output","timestamp":1607098234,"output":"gState STM is scheduling block 0 from pipeline: \"98ce822b-eac8-4236-803c-894b9978a3c3\"\n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098234,"output":"6:10:34.998 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_o"},{"event":"cmd_output","timestamp":1607098234,"output":"k?/1(L105), \n\u001b[0m\u001b[22m\n16:10:34.998 [info] ppl_id: 0dbec12c-cbb1-4901-81fb-9fe26b2d121a, type: Pp"},{"event":"cmd_output","timestamp":1607098234,"output":"lBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl."},{"event":"cmd_output","timestamp":1607098235,"output":"PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:35.002 [info] ppl_id: 0"},{"event":"cmd_output","timestamp":1607098235,"output":"dbec12c-cbb1-4901-81fb-9fe26b2d121a, type: PplSubInits, state: done, result: passed, event: exit_sch"},{"event":"cmd_output","timestamp":1607098235,"output":"eduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098235,"output":"10:35.008 [info] block_id: 32ed3c95-f556-4326-8ca2-112f4a602170, type: BlockRequests, event: persis"},{"event":"cmd_output","timestamp":1607098235,"output":"ted block run request from ppl 98ce822b-eac8-4236-803c-894b9978a3c3 for block 0, origin: Elixir.Bloc"},{"event":"cmd_output","timestamp":1607098235,"output":"k.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:35.015 [info]"},{"event":"cmd_output","timestamp":1607098235,"output":" ppl_id: 0dbec12c-cbb1-4901-81fb-9fe26b2d121a, type: Ppls, state: pending, event: exit_scheduling, "},{"event":"cmd_output","timestamp":1607098235,"output":"recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:35.021"},{"event":"cmd_output","timestamp":1607098235,"output":" [info] block_id: 32ed3c95-f556-4326-8ca2-112f4a602170, type: Blocks, state: initializing, event: i"},{"event":"cmd_output","timestamp":1607098235,"output":"nitializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098235,"output":"m\u001b[22m\n16:10:35.024 [info] block_id: 1275d930-3181-4456-abf2-de8c6e88d828, type: Tasks, state: don"},{"event":"cmd_output","timestamp":1607098235,"output":"e, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90)"},{"event":"cmd_output","timestamp":1607098235,"output":", \n\u001b[0m\u001b[22m\n16:10:35.027 [info] ppl_id: 0dbec12c-cbb1-4901-81fb-9fe26b2d121a, type: PplBlocks, b"},{"event":"cmd_output","timestamp":1607098235,"output":"lock_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM."},{"event":"cmd_output","timestamp":1607098235,"output":"Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:35.032 [info] Block 0 of pipeline with id: 98ce822"},{"event":"cmd_output","timestamp":1607098235,"output":"b-eac8-4236-803c-894b9978a3c3 scheduled in block service with id: : \"32ed3c95-f556-4326-8ca2-112f4a6"},{"event":"cmd_output","timestamp":1607098235,"output":"02170\"\n\u001b[0m\u001b[22m\n16:10:35.039 [info] ppl_id: 98ce822b-eac8-4236-803c-894b9978a3c3, type: PplBlock"},{"event":"cmd_output","timestamp":1607098235,"output":"s, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper."},{"event":"cmd_output","timestamp":1607098235,"output":"STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:35.040 [info] block_id: 32ed3c95-f556-4326-8ca"},{"event":"cmd_output","timestamp":1607098235,"output":"2-112f4a602170, type: BlockRequests, event: persisted build and sub_ppl details for block_request: 3"},{"event":"cmd_output","timestamp":1607098235,"output":"2ed3c95-f556-4326-8ca2-112f4a602170, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.i"},{"event":"cmd_output","timestamp":1607098235,"output":"nsert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:35.047 [info] block_id: 32ed3c95-f556-4326-8ca2-112f4a602170"},{"event":"cmd_output","timestamp":1607098235,"output":", type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHan"},{"event":"cmd_output","timestamp":1607098235,"output":"dler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:35.049 [info] ppl_id: 0dbec12c-cbb1-4901"},{"event":"cmd_output","timestamp":1607098235,"output":"-81fb-9fe26b2d121a, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: E"},{"event":"cmd_output","timestamp":1607098235,"output":"lixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:35.052 [info] block_id: 1275d930-"},{"event":"cmd_output","timestamp":1607098235,"output":"3181-4456-abf2-de8c6e88d828, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098235,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:35.055 [info] block_id: 3"},{"event":"cmd_output","timestamp":1607098235,"output":"2ed3c95-f556-4326-8ca2-112f4a602170, type: Blocks, state: running, event: exit_scheduling, recovery_"},{"event":"cmd_output","timestamp":1607098235,"output":"count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:35.080 [info] "},{"event":"cmd_output","timestamp":1607098235,"output":"ppl_id: a5652339-427d-4d00-8eb6-93d37d7b15d7, block_id: 1275d930-3181-4456-abf2-de8c6e88d828, type: "},{"event":"cmd_output","timestamp":1607098235,"output":"PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098235,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:35.082 [info] ppl_id: 0db"},{"event":"cmd_output","timestamp":1607098235,"output":"ec12c-cbb1-4901-81fb-9fe26b2d121a, type: Ppls, state: running, event: exit_scheduling, recovery_coun"},{"event":"cmd_output","timestamp":1607098235,"output":"t: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:35.086 [info] bloc"},{"event":"cmd_output","timestamp":1607098235,"output":"k_id: 32ed3c95-f556-4326-8ca2-112f4a602170, type: Tasks, state: running, event: exit_scheduling, rec"},{"event":"cmd_output","timestamp":1607098235,"output":"overy_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:35.093 [i"},{"event":"cmd_output","timestamp":1607098235,"output":"nfo] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"0dbec12c-cbb1-4901-81fb-9fe26"},{"event":"cmd_output","timestamp":1607098235,"output":"b2d121a\"\n\u001b[0m\u001b[22m\n16:10:35.103 [info] block_id: 8432a174-80e0-42d5-9f73-4f5201ba9752, type: Bloc"},{"event":"cmd_output","timestamp":1607098235,"output":"kRequests, event: persisted block run request from ppl 0dbec12c-cbb1-4901-81fb-9fe26b2d121a for bloc"},{"event":"cmd_output","timestamp":1607098235,"output":"k 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098235,"output":"22m\n16:10:35.106 [info] block_id: 8432a174-80e0-42d5-9f73-4f5201ba9752, type: Blocks, state: initi"},{"event":"cmd_output","timestamp":1607098235,"output":"alizing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.ins"},{"event":"cmd_output","timestamp":1607098235,"output":"ert/1(L43), \n\u001b[0m\u001b[22m\n16:10:35.108 [info] Block 0 of pipeline with id: 0dbec12c-cbb1-4901-81fb-9"},{"event":"cmd_output","timestamp":1607098235,"output":"fe26b2d121a scheduled in block service with id: : \"8432a174-80e0-42d5-9f73-4f5201ba9752\"\n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098235,"output":"\n16:10:35.111 [info] ppl_id: 0dbec12c-cbb1-4901-81fb-9fe26b2d121a, type: PplBlocks, block_index: 0,"},{"event":"cmd_output","timestamp":1607098235,"output":" state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state"},{"event":"cmd_output","timestamp":1607098235,"output":"_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:35.116 [info] ppl_id: a5652339-427d-4d00-8eb6-93d37d7b15d7, type"},{"event":"cmd_output","timestamp":1607098235,"output":": Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loope"},{"event":"cmd_output","timestamp":1607098235,"output":"r.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:35.118 [info] block_id: 8432a174-80e0-42d5-9"},{"event":"cmd_output","timestamp":1607098235,"output":"f73-4f5201ba9752, type: BlockRequests, event: persisted build and sub_ppl details for block_request:"},{"event":"cmd_output","timestamp":1607098235,"output":" 8432a174-80e0-42d5-9f73-4f5201ba9752, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries"},{"event":"cmd_output","timestamp":1607098235,"output":".insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:35.121 [info] block_id: 8432a174-80e0-42d5-9f73-4f5201ba97"},{"event":"cmd_output","timestamp":1607098235,"output":"52, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMH"},{"event":"cmd_output","timestamp":1607098235,"output":"andler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:35.124 [info] block_id: 8432a174-80e0-"},{"event":"cmd_output","timestamp":1607098235,"output":"42d5-9f73-4f5201ba9752, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098235,"output":"gin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:35.142 [info] block_id: 843"},{"event":"cmd_output","timestamp":1607098235,"output":"2a174-80e0-42d5-9f73-4f5201ba9752, type: Tasks, state: running, event: exit_scheduling, recovery_cou"},{"event":"cmd_output","timestamp":1607098235,"output":"nt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:35.150 [info] blo"},{"event":"cmd_output","timestamp":1607098235,"output":"ck_id: 32ed3c95-f556-4326-8ca2-112f4a602170, type: Tasks, state: done, event: exit_scheduling, recov"},{"event":"cmd_output","timestamp":1607098235,"output":"ery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:35.158 [inf"},{"event":"cmd_output","timestamp":1607098235,"output":"o] block_id: 32ed3c95-f556-4326-8ca2-112f4a602170, type: Blocks, state: done, event: exit_schedulin"},{"event":"cmd_output","timestamp":1607098235,"output":"g, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:35."},{"event":"cmd_output","timestamp":1607098235,"output":"167 [info] ppl_id: 98ce822b-eac8-4236-803c-894b9978a3c3, block_id: 32ed3c95-f556-4326-8ca2-112f4a60"},{"event":"cmd_output","timestamp":1607098235,"output":"2170, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery"},{"event":"cmd_output","timestamp":1607098235,"output":"_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:35.184 [info] "},{"event":"cmd_output","timestamp":1607098235,"output":" ppl_id: 98ce822b-eac8-4236-803c-894b9978a3c3, type: Ppls, state: done, result: passed, event: exit_"},{"event":"cmd_output","timestamp":1607098235,"output":"scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098235,"output":"16:10:35.262 [info] block_id: 8432a174-80e0-42d5-9f73-4f5201ba9752, type: Tasks, state: done, event"},{"event":"cmd_output","timestamp":1607098235,"output":": exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098235,"output":"\u001b[22m\n16:10:35.270 [info] block_id: 8432a174-80e0-42d5-9f73-4f5201ba9752, type: Blocks, state: don"},{"event":"cmd_output","timestamp":1607098235,"output":"e, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90)"},{"event":"cmd_output","timestamp":1607098235,"output":", \n\u001b[0m\u001b[22m\n16:10:35.280 [info] ppl_id: 0dbec12c-cbb1-4901-81fb-9fe26b2d121a, block_id: 8432a174"},{"event":"cmd_output","timestamp":1607098235,"output":"-80e0-42d5-9f73-4f5201ba9752, type: PplBlocks, block_index: 0, state: done, result: passed, event: e"},{"event":"cmd_output","timestamp":1607098235,"output":"xit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098235,"output":"2m\n16:10:35.296 [info] ppl_id: 0dbec12c-cbb1-4901-81fb-9fe26b2d121a, type: Ppls, state: done, resu"},{"event":"cmd_output","timestamp":1607098235,"output":"lt: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chan"},{"event":"cmd_output","timestamp":1607098235,"output":"ge/1(L90), \n\u001b[0m\u001b[32m\r * test gRPC list_grouped_ks() - successfully walk the list in both directio"},{"event":"cmd_output","timestamp":1607098235,"output":"ns (1774.5ms)\u001b[0m\n\nPpl.WorkflowQueries.Test\n * test get_workflows returns workflows for provided"},{"event":"cmd_output","timestamp":1607098235,"output":" IDs ordered in desc by inserted_at\r * test get_workflows returns workflows for provided IDs ordere"},{"event":"cmd_output","timestamp":1607098235,"output":"d in desc by inserted_at (skipped)\n * test list_keyset returns workflows for everyone's activity i"},{"event":"cmd_output","timestamp":1607098235,"output":"n organization\r * test list_keyset returns workflows for everyone's activity in organization (skipp"},{"event":"cmd_output","timestamp":1607098235,"output":"ed)\n * test list_keyset returns workflows for my work in organization\r * test list_keyset returns"},{"event":"cmd_output","timestamp":1607098235,"output":" workflows for my work in organization (skipped)\n * test list_latest_workflows returns latest work"},{"event":"cmd_output","timestamp":1607098235,"output":"flows for project per each branch\r * test list_latest_workflows returns latest workflows for projec"},{"event":"cmd_output","timestamp":1607098235,"output":"t per each branch (skipped)\n * test list_latest_workflows returns paginated workflows\r * test lis"},{"event":"cmd_output","timestamp":1607098235,"output":"t_latest_workflows returns paginated workflows (skipped)\n * test list_keyset returns workflows for"},{"event":"cmd_output","timestamp":1607098235,"output":" the branch page\r * test list_keyset returns workflows for the branch page (skipped)\n\nTest.Suppor"},{"event":"cmd_output","timestamp":1607098235,"output":"t.WorkflowBuilder.Test\n * test build workflow and get valid description\u001b[22m\n16:10:35.479 [info] "},{"event":"cmd_output","timestamp":1607098235,"output":" Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.STMHand"},{"event":"cmd_output","timestamp":1607098235,"output":"ler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler"},{"event":"cmd_output","timestamp":1607098235,"output":"-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], coolin"},{"event":"cmd_output","timestamp":1607098235,"output":"g_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher_cb: #Fu"},{"event":"cmd_output","timestamp":1607098235,"output":"nction<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, returning"},{"event":"cmd_output","timestamp":1607098235,"output":": [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098235,"output":"s.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:35.479 [info] Periodic from module Elixir.P"},{"event":"cmd_output","timestamp":1607098235,"output":"pl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 100 ms,"},{"event":"cmd_output","timestamp":1607098235,"output":" metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args: %{allo"},{"event":"cmd_output","timestamp":1607098235,"output":"wed_states: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls."},{"event":"cmd_output","timestamp":1607098235,"output":"Model.Ppls, observed_state: \"pending\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler.Pe"},{"event":"cmd_output","timestamp":1607098235,"output":"ndingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :r"},{"event":"cmd_output","timestamp":1607098235,"output":"esult, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\r"},{"event":"cmd_output","timestamp":1607098235,"output":"\n\u001b[0m\u001b[22m\n16:10:35.479 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.QueuingState with n"},{"event":"cmd_output","timestamp":1607098235,"output":"ame Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\","},{"event":"cmd_output","timestamp":1607098235,"output":" [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{allowed_states: [\"queuing\", \"running\", \"do"},{"event":"cmd_output","timestamp":1607098235,"output":"ne\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", publisher"},{"event":"cmd_output","timestamp":1607098235,"output":"_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, return"},{"event":"cmd_output","timestamp":1607098235,"output":"ing: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl."},{"event":"cmd_output","timestamp":1607098235,"output":"Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:35.480 [info] Periodic from module Elixi"},{"event":"cmd_output","timestamp":1607098235,"output":"r.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHandler.RunningState :: period: 100 "},{"event":"cmd_output","timestamp":1607098235,"output":"ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring args: %{a"},{"event":"cmd_output","timestamp":1607098235,"output":"llowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model."},{"event":"cmd_output","timestamp":1607098235,"output":"Ppls, observed_state: \"running\", publisher_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler.Running"},{"event":"cmd_output","timestamp":1607098235,"output":"State.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result"},{"event":"cmd_output","timestamp":1607098235,"output":", :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m"},{"event":"cmd_output","timestamp":1607098235,"output":"\u001b[22m\n16:10:35.480 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.StoppingState with name "},{"event":"cmd_output","timestamp":1607098235,"output":"Elixir.Ppl.Ppls.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\""},{"event":"cmd_output","timestamp":1607098235,"output":"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], coolin"},{"event":"cmd_output","timestamp":1607098235,"output":"g_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"stopping\", publisher_cb: #Funct"},{"event":"cmd_output","timestamp":1607098235,"output":"ion<0.71803493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, "},{"event":"cmd_output","timestamp":1607098235,"output":":terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model."},{"event":"cmd_output","timestamp":1607098235,"output":"Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:35.480 [info] Periodic from module Elixir.Ppl.PplSu"},{"event":"cmd_output","timestamp":1607098235,"output":"bInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 1"},{"event":"cmd_output","timestamp":1607098235,"output":"00 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring"},{"event":"cmd_output","timestamp":1607098235,"output":" args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.M"},{"event":"cmd_output","timestamp":1607098235,"output":"odel.PplSubInits, observed_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:i"},{"event":"cmd_output","timestamp":1607098235,"output":"d, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubIn"},{"event":"cmd_output","timestamp":1607098235,"output":"its.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:35.480 [info] Periodic from module"},{"event":"cmd_output","timestamp":1607098235,"output":" Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler.Fetchin"},{"event":"cmd_output","timestamp":1607098235,"output":"gState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-Fetchin"},{"event":"cmd_output","timestamp":1607098235,"output":"gState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"done\"], cooling_time_s"},{"event":"cmd_output","timestamp":1607098235,"output":"ec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fetching\", publisher_cb: "},{"event":"cmd_output","timestamp":1607098235,"output":":skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recov"},{"event":"cmd_output","timestamp":1607098235,"output":"ery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098235,"output":"16:10:35.481 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CompilationState with na"},{"event":"cmd_output","timestamp":1607098235,"output":"me Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 100 ms, metric_name: {\"Ppl.beholder"},{"event":"cmd_output","timestamp":1607098235,"output":"-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurring args: %{allowed_states: [\"reg"},{"event":"cmd_output","timestamp":1607098235,"output":"ular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits"},{"event":"cmd_output","timestamp":1607098235,"output":".Model.PplSubInits, observed_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returnin"},{"event":"cmd_output","timestamp":1607098235,"output":"g: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Pp"},{"event":"cmd_output","timestamp":1607098235,"output":"lSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:35.481 [info] Periodic from "},{"event":"cmd_output","timestamp":1607098235,"output":"module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHandle"},{"event":"cmd_output","timestamp":1607098235,"output":"r.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHan"},{"event":"cmd_output","timestamp":1607098235,"output":"dler-RegularInitState\"]}, recurring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, initial_q"},{"event":"cmd_output","timestamp":1607098235,"output":"uery: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_init\", publisher_cb: :skip, repo: "},{"event":"cmd_output","timestamp":1607098235,"output":"Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :p"},{"event":"cmd_output","timestamp":1607098235,"output":"pl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:35.481 "},{"event":"cmd_output","timestamp":1607098235,"output":"[info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.InitializingState with name Elixir.Ppl."},{"event":"cmd_output","timestamp":1607098235,"output":"PplBlocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Pp"},{"event":"cmd_output","timestamp":1607098235,"output":"l-PplBlocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"wai"},{"event":"cmd_output","timestamp":1607098235,"output":"ting\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \""},{"event":"cmd_output","timestamp":1607098235,"output":"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :update"},{"event":"cmd_output","timestamp":1607098235,"output":"d_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlock"},{"event":"cmd_output","timestamp":1607098235,"output":"s, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:35.481 [info] Periodic from module Elixir.Ppl.PplBlock"},{"event":"cmd_output","timestamp":1607098235,"output":"s.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler.WaitingState :: period: 1000 ms,"},{"event":"cmd_output","timestamp":1607098235,"output":" metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurring args: %"},{"event":"cmd_output","timestamp":1607098235,"output":"{allowed_states: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.M"},{"event":"cmd_output","timestamp":1607098235,"output":"odel.PplBlocks, observed_state: \"waiting\", publisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.STMH"},{"event":"cmd_output","timestamp":1607098235,"output":"andler.WaitingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :"},{"event":"cmd_output","timestamp":1607098235,"output":"state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task"},{"event":"cmd_output","timestamp":1607098235,"output":"_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:35.481 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHa"},{"event":"cmd_output","timestamp":1607098235,"output":"ndler.RunningState with name Elixir.Ppl.PplBlocks.STMHandler.RunningState :: period: 1000 ms, metric"},{"event":"cmd_output","timestamp":1607098235,"output":"_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, recurring args: %{allowe"},{"event":"cmd_output","timestamp":1607098235,"output":"d_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model."},{"event":"cmd_output","timestamp":1607098235,"output":"PplBlocks, observed_state: \"running\", publisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHandl"},{"event":"cmd_output","timestamp":1607098235,"output":"er.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :stat"},{"event":"cmd_output","timestamp":1607098235,"output":"e, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlock"},{"event":"cmd_output","timestamp":1607098235,"output":"s, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:35.482 [info] Periodic from module Elixir.Ppl.PplBlock"},{"event":"cmd_output","timestamp":1607098235,"output":"s.STMHandler.StoppingState with name Elixir.Ppl.PplBlocks.STMHandler.StoppingState :: period: 1000 m"},{"event":"cmd_output","timestamp":1607098235,"output":"s, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurring args"},{"event":"cmd_output","timestamp":1607098235,"output":": %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.P"},{"event":"cmd_output","timestamp":1607098235,"output":"plBlocks, observed_state: \"stopping\", publisher_cb: #Function<0.104215991/1 in Ppl.PplBlocks.STMHand"},{"event":"cmd_output","timestamp":1607098235,"output":"ler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :st"},{"event":"cmd_output","timestamp":1607098235,"output":"ate, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlo"},{"event":"cmd_output","timestamp":1607098235,"output":"cks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:35.482 [info] Periodic from module Elixir.Block.Bloc"},{"event":"cmd_output","timestamp":1607098235,"output":"ks.STMHandler.InitializingState with name Elixir.Block.Blocks.STMHandler.InitializingState :: period"},{"event":"cmd_output","timestamp":1607098235,"output":": 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, recu"},{"event":"cmd_output","timestamp":1607098235,"output":"rring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Blocks."},{"event":"cmd_output","timestamp":1607098235,"output":"Model.Blocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Block.EctoRepo, returning: "},{"event":"cmd_output","timestamp":1607098235,"output":"[:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Mod"},{"event":"cmd_output","timestamp":1607098235,"output":"el.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:35.483 [info] Periodic from module Elixir.Bloc"},{"event":"cmd_output","timestamp":1607098235,"output":"k.Blocks.STMHandler.RunningState with name Elixir.Block.Blocks.STMHandler.RunningState :: period: 10"},{"event":"cmd_output","timestamp":1607098235,"output":"0 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-RunningState\"]}, recurring arg"},{"event":"cmd_output","timestamp":1607098235,"output":"s: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blo"},{"event":"cmd_output","timestamp":1607098235,"output":"cks.Model.Blocks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: ["},{"event":"cmd_output","timestamp":1607098235,"output":":id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Mode"},{"event":"cmd_output","timestamp":1607098235,"output":"l.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:35.483 [info] Periodic from module Elixir.Block"},{"event":"cmd_output","timestamp":1607098235,"output":".Blocks.STMHandler.StoppingState with name Elixir.Block.Blocks.STMHandler.StoppingState :: period: 1"},{"event":"cmd_output","timestamp":1607098235,"output":"00 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-StoppingState\"]}, recurring a"},{"event":"cmd_output","timestamp":1607098235,"output":"rgs: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model"},{"event":"cmd_output","timestamp":1607098235,"output":".Blocks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :te"},{"event":"cmd_output","timestamp":1607098235,"output":"rminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks"},{"event":"cmd_output","timestamp":1607098235,"output":", task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:35.483 [info] Periodic from module Elixir.Block.Tasks.S"},{"event":"cmd_output","timestamp":1607098235,"output":"TMHandler.PendingState with name Elixir.Block.Tasks.STMHandler.PendingState :: period: 100 ms, metri"},{"event":"cmd_output","timestamp":1607098235,"output":"c_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingState\"]}, recurring args: %{allowed"},{"event":"cmd_output","timestamp":1607098235,"output":"_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Tasks.Model.Tasks, observed_"},{"event":"cmd_output","timestamp":1607098235,"output":"state: \"pending\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :u"},{"event":"cmd_output","timestamp":1607098235,"output":"pdated_at, :state, :recovery_count, :block_id, :build_request_id], schema: Block.Tasks.Model.Tasks, "},{"event":"cmd_output","timestamp":1607098235,"output":"task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:35.483 [info] Periodic from module Elixir.Block.Tasks.STM"},{"event":"cmd_output","timestamp":1607098235,"output":"Handler.RunningState with name Elixir.Block.Tasks.STMHandler.RunningState :: period: 100 ms, metric_"},{"event":"cmd_output","timestamp":1607098235,"output":"name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningState\"]}, recurring args: %{allowed_s"},{"event":"cmd_output","timestamp":1607098235,"output":"tates: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks"},{"event":"cmd_output","timestamp":1607098235,"output":", observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_"},{"event":"cmd_output","timestamp":1607098235,"output":"request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_sup"},{"event":"cmd_output","timestamp":1607098235,"output":"ervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:35.484 [info] Periodic from module Elixir.Block.Tasks.STMHandler."},{"event":"cmd_output","timestamp":1607098235,"output":"StoppingState with name Elixir.Block.Tasks.STMHandler.StoppingState :: period: 100 ms, metric_name: "},{"event":"cmd_output","timestamp":1607098235,"output":"{\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states"},{"event":"cmd_output","timestamp":1607098235,"output":": [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state"},{"event":"cmd_output","timestamp":1607098235,"output":": \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updat"},{"event":"cmd_output","timestamp":1607098235,"output":"ed_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}"},{"event":"cmd_output","timestamp":1607098235,"output":"\n\u001b[0m\u001b[22m\n16:10:35.498 [info] Request: 'run: %{\"branch_id\" => \"0067492c-c752-487a-83bd-83f728c0a"},{"event":"cmd_output","timestamp":1607098235,"output":"881\", \"branch_name\" => \"master\", \"client_id\" => \"f656973c-2b80-41d9-8225-10f9c1539a6b\", \"commit_sha\""},{"event":"cmd_output","timestamp":1607098235,"output":" => \"75891a4469\", \"definition_file\" => \"\", \"hook_id\" => \"3df50aae-364b-11eb-80de-5254005464e2\", \"lab"},{"event":"cmd_output","timestamp":1607098235,"output":"el\" => \"master\", \"organization_id\" => \"06ea8fd0-b2ca-405c-8f2f-1c1df07a164c\", \"owner\" => \"rt\", \"proj"},{"event":"cmd_output","timestamp":1607098235,"output":"ect_id\" => \"2abcdc77-1f38-4719-9d16-f619080758a5\", \"repo_name\" => \"20_workflow_builder\", \"request_to"},{"event":"cmd_output","timestamp":1607098235,"output":"ken\" => \"3df4fee2-364b-11eb-b6c6-5254005464e2\", \"requester_id\" => \"1fa85814-956a-428c-8bb7-119c22cfe"},{"event":"cmd_output","timestamp":1607098235,"output":"cbb\", \"service\" => \"local\", \"snapshot_id\" => \"\", \"suppressed_attributes\" => [\"access_token\", \"client"},{"event":"cmd_output","timestamp":1607098235,"output":"_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"5b8dfc92-d514-4db6-9453-46811748767e\"}\n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098235,"output":"16:10:35.526 [info] ppl_id: f121c029-eef7-40b6-acb8-cfbb452d1024, type: PplRequests, event: persist"},{"event":"cmd_output","timestamp":1607098235,"output":"ed schedule request with request_token: 3df4fee2-364b-11eb-b6c6-5254005464e2, origin: Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098235,"output":"Requests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:35.536 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098235,"output":" f121c029-eef7-40b6-acb8-cfbb452d1024, type: Ppls, state: initializing, event: initializing, recover"},{"event":"cmd_output","timestamp":1607098235,"output":"y_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:3"},{"event":"cmd_output","timestamp":1607098235,"output":"5.542 [info] Project 2abcdc77-1f38-4719-9d16-f619080758a5 and branch masterlatest_wf details update"},{"event":"cmd_output","timestamp":1607098235,"output":"d: \"wf_id: 5b8dfc92-d514-4db6-9453-46811748767e, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:10:35.545 [info] Pers"},{"event":"cmd_output","timestamp":1607098235,"output":"isted ppl_sub_init for pipeline with ppl_id: f121c029-eef7-40b6-acb8-cfbb452d1024: %Ppl.PplSubInits."},{"event":"cmd_output","timestamp":1607098235,"output":"Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: n"},{"event":"cmd_output","timestamp":1607098235,"output":"il, error_description: nil, id: 86, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020"},{"event":"cmd_output","timestamp":1607098235,"output":"-12-04 16:10:35.542463], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"f121c029-eef7-40b6-acb8-cfbb452d1024\", recovery_count: 0, result: nil, r"},{"event":"cmd_output","timestamp":1607098235,"output":"esult_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at"},{"event":"cmd_output","timestamp":1607098235,"output":": ~N[2020-12-04 16:10:35.542475]}\n\u001b[0m\u001b[22m\n16:10:35.570 [info] Request: 'run: %{\"auto_promoted\" "},{"event":"cmd_output","timestamp":1607098235,"output":"=> false, \"branch_id\" => \"0067492c-c752-487a-83bd-83f728c0a881\", \"branch_name\" => \"master\", \"client_"},{"event":"cmd_output","timestamp":1607098235,"output":"id\" => \"f656973c-2b80-41d9-8225-10f9c1539a6b\", \"commit_sha\" => \"75891a4469\", \"definition_file\" => \"\""},{"event":"cmd_output","timestamp":1607098235,"output":", \"env_vars\" => [], \"extension_of\" => \"f121c029-eef7-40b6-acb8-cfbb452d1024\", \"file_name\" => \"/foo/b"},{"event":"cmd_output","timestamp":1607098235,"output":"ar/test.yml\", \"hook_id\" => \"3df50aae-364b-11eb-80de-5254005464e2\", \"label\" => \"master\", \"organizatio"},{"event":"cmd_output","timestamp":1607098235,"output":"n_id\" => \"06ea8fd0-b2ca-405c-8f2f-1c1df07a164c\", \"owner\" => \"rt\", \"prev_ppl_artefact_ids\" => [\"f121c"},{"event":"cmd_output","timestamp":1607098235,"output":"029-eef7-40b6-acb8-cfbb452d1024\"], \"project_id\" => \"2abcdc77-1f38-4719-9d16-f619080758a5\", \"promoter"},{"event":"cmd_output","timestamp":1607098235,"output":"_id\" => \"\", \"repo_name\" => \"20_workflow_builder\", \"request_token\" => \"a675f1c8-c111-4064-b32e-c9a474"},{"event":"cmd_output","timestamp":1607098235,"output":"b82826\", \"requester_id\" => \"1fa85814-956a-428c-8bb7-119c22cfecbb\", \"service\" => \"local\", \"snapshot_i"},{"event":"cmd_output","timestamp":1607098235,"output":"d\" => \"\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"triggered_by\" => \"hook\", \"w"},{"event":"cmd_output","timestamp":1607098235,"output":"f_id\" => \"5b8dfc92-d514-4db6-9453-46811748767e\", \"wf_number\" => 1, \"working_dir\" => \".semaphore\"}\n\u001b"},{"event":"cmd_output","timestamp":1607098235,"output":"[0m\u001b[22m\n16:10:35.574 [info] ppl_id: 00953e87-5d4e-4930-86da-1f3750824697, type: PplRequests, even"},{"event":"cmd_output","timestamp":1607098235,"output":"t: persisted schedule request with request_token: a675f1c8-c111-4064-b32e-c9a474b82826, origin: Elix"},{"event":"cmd_output","timestamp":1607098235,"output":"ir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:35.579 [info"},{"event":"cmd_output","timestamp":1607098235,"output":"] ppl_id: 00953e87-5d4e-4930-86da-1f3750824697, type: Ppls, state: initializing, event: initializin"},{"event":"cmd_output","timestamp":1607098235,"output":"g, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098235,"output":"m\n16:10:35.582 [info] Persisted ppl_sub_init for pipeline with ppl_id: 00953e87-5d4e-4930-86da-1f3"},{"event":"cmd_output","timestamp":1607098235,"output":"750824697: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub"},{"event":"cmd_output","timestamp":1607098235,"output":"_inits\">, compile_task_id: nil, error_description: nil, id: 87, in_scheduling: false, init_type: \"re"},{"event":"cmd_output","timestamp":1607098235,"output":"gular\", inserted_at: ~N[2020-12-04 16:10:35.581164], pipeline_requests: #Ecto.Association.NotLoaded<"},{"event":"cmd_output","timestamp":1607098235,"output":"association :pipeline_requests is not loaded>, ppl_id: \"00953e87-5d4e-4930-86da-1f3750824697\", recov"},{"event":"cmd_output","timestamp":1607098235,"output":"ery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_r"},{"event":"cmd_output","timestamp":1607098235,"output":"equest_desc: nil, updated_at: ~N[2020-12-04 16:10:35.581176]}\n\u001b[0m\u001b[22m\n16:10:35.584 [info] ppl_i"},{"event":"cmd_output","timestamp":1607098235,"output":"d: f121c029-eef7-40b6-acb8-cfbb452d1024, type: PplRequests, event: persisted source_args for pipelin"},{"event":"cmd_output","timestamp":1607098235,"output":"e: f121c029-eef7-40b6-acb8-cfbb452d1024, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.ins"},{"event":"cmd_output","timestamp":1607098235,"output":"ert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:35.602 [info] ppl_id: f121c029-eef7-40b6-acb8-cfbb452d1024, t"},{"event":"cmd_output","timestamp":1607098235,"output":"ype: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper."},{"event":"cmd_output","timestamp":1607098235,"output":"STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:35.614 [info] ppl_id: 00953e87-5d4e-4930-86da-"},{"event":"cmd_output","timestamp":1607098235,"output":"1f3750824697, type: PplRequests, event: persisted source_args for pipeline: 00953e87-5d4e-4930-86da-"},{"event":"cmd_output","timestamp":1607098235,"output":"1f3750824697, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098235,"output":"22m\n16:10:35.617 [info] ppl_id: 00953e87-5d4e-4930-86da-1f3750824697, type: PplSubInits, state: fe"},{"event":"cmd_output","timestamp":1607098235,"output":"tching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1"},{"event":"cmd_output","timestamp":1607098235,"output":"(L90), \n\u001b[0m\u001b[22m\n16:10:35.640 [info] ppl_id: f121c029-eef7-40b6-acb8-cfbb452d1024, type: PplSubI"},{"event":"cmd_output","timestamp":1607098235,"output":"nits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl"},{"event":"cmd_output","timestamp":1607098235,"output":".log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:35.675 [info] ppl_id: 00953e87-5d4e-4930-86da-1f375082"},{"event":"cmd_output","timestamp":1607098235,"output":"4697, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098238,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[33m\n16:10:38.029 [warn] Elixir.Wormhole{#PID<"},{"event":"cmd_output","timestamp":1607098238,"output":"0.9763.0>}:: callback: {GoferClient.GrpcClient, :create_, [%InternalApi.Gofer.CreateRequest{branch_n"},{"event":"cmd_output","timestamp":1607098238,"output":"ame: \"master\", commit_range: \"1234...4567\", commit_sha: \"75891a4469\", git_ref_type: 0, label: \"maste"},{"event":"cmd_output","timestamp":1607098238,"output":"r\", pipeline_id: \"f121c029-eef7-40b6-acb8-cfbb452d1024\", pr_base: \"\", pr_sha: \"\", prev_ppl_artefact_"},{"event":"cmd_output","timestamp":1607098238,"output":"ids: [\"f121c029-eef7-40b6-acb8-cfbb452d1024\"], project_id: \"2abcdc77-1f38-4719-9d16-f619080758a5\", t"},{"event":"cmd_output","timestamp":1607098238,"output":"argets: [%InternalApi.Gofer.Target{auto_promote_when: \"\", auto_trigger_on: [], name: \"Extension ppl\""},{"event":"cmd_output","timestamp":1607098238,"output":", parameter_env_vars: [], pipeline_path: \"/foo/bar/test.yml\"}], working_dir: \".semaphore\", yml_file_"},{"event":"cmd_output","timestamp":1607098238,"output":"name: \"semaphore.yml\"}]}; reason: {:timeout, 2345}\n\u001b[0m\u001b[31m\n16:10:38.031 [error] ppl_id: not_avai"},{"event":"cmd_output","timestamp":1607098238,"output":"lable, event: exit_scheduling, context: {:error, :user_exit_function, {:error, {:timeout, 2345}}, %{"},{"event":"cmd_output","timestamp":1607098238,"output":"item: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_init"},{"event":"cmd_output","timestamp":1607098238,"output":"s\">, compile_task_id: nil, error_description: \"\", id: 86, in_scheduling: true, init_type: \"regular\","},{"event":"cmd_output","timestamp":1607098238,"output":" inserted_at: ~N[2020-12-04 16:10:35.542463], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"f121c029-eef7-40b6-acb8-cfbb452d1024\", recovery_cou"},{"event":"cmd_output","timestamp":1607098238,"output":"nt: 0, result: nil, result_reason: nil, state: \"regular_init\", terminate_request: nil, terminate_req"},{"event":"cmd_output","timestamp":1607098238,"output":"uest_desc: nil, updated_at: ~N[2020-12-04 16:10:35.642044]}}}, origin: Elixir.Looper.STM.Impl.log_st"},{"event":"cmd_output","timestamp":1607098238,"output":"ate_change/1(L96), \n\u001b[0m\u001b[31m\n16:10:38.032 [error] STM Elixir.Ppl.PplSubInits.STMHandler.RegularIn"},{"event":"cmd_output","timestamp":1607098238,"output":"itState FAILED: {:error, :user_exit_function, {:error, {:timeout, 2345}}, %{item: %Ppl.PplSubInits.M"},{"event":"cmd_output","timestamp":1607098238,"output":"odel.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: ni"},{"event":"cmd_output","timestamp":1607098238,"output":"l, error_description: \"\", id: 86, in_scheduling: true, init_type: \"regular\", inserted_at: ~N[2020-12"},{"event":"cmd_output","timestamp":1607098238,"output":"-04 16:10:35.542463], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"f121c029-eef7-40b6-acb8-cfbb452d1024\", recovery_count: 0, result: nil, resu"},{"event":"cmd_output","timestamp":1607098238,"output":"lt_reason: nil, state: \"regular_init\", terminate_request: nil, terminate_request_desc: nil, updated_"},{"event":"cmd_output","timestamp":1607098238,"output":"at: ~N[2020-12-04 16:10:35.642044]}}}\n\u001b[0m\u001b[22m\n16:10:38.064 [info] ppl_id: 00953e87-5d4e-4930-86"},{"event":"cmd_output","timestamp":1607098238,"output":"da-1f3750824697, type: PplRequests, event: persisted definition for request with request_token: a675"},{"event":"cmd_output","timestamp":1607098238,"output":"f1c8-c111-4064-b32e-c9a474b82826, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_def"},{"event":"cmd_output","timestamp":1607098238,"output":"inition/3(L76), \n\u001b[0m\u001b[22m\n16:10:38.067 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__"},{"event":"cmd_output","timestamp":1607098238,"output":"meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:10:38.066099], name:"},{"event":"cmd_output","timestamp":1607098238,"output":" \"master-/foo/bar/test.yml\", organization_id: \"06ea8fd0-b2ca-405c-8f2f-1c1df07a164c\", project_id: \"2"},{"event":"cmd_output","timestamp":1607098238,"output":"abcdc77-1f38-4719-9d16-f619080758a5\", queue_id: \"4f4f60c1-fc2b-46da-977f-a723f3695558\", scope: \"proj"},{"event":"cmd_output","timestamp":1607098238,"output":"ect\", updated_at: ~N[2020-12-04 16:10:38.066109], user_generated: false}}\n\u001b[0m\u001b[22m\n16:10:38.074 ["},{"event":"cmd_output","timestamp":1607098238,"output":"info] ppl_id: not_available, event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitS"},{"event":"cmd_output","timestamp":1607098238,"output":"tate.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:38.074 [info] event: created, origin: Elixir.Ppl.PplSubIni"},{"event":"cmd_output","timestamp":1607098238,"output":"ts.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:38.074 [info] ppl_id: 00953e87-5"},{"event":"cmd_output","timestamp":1607098238,"output":"d4e-4930-86da-1f3750824697, type: PplBlocks, block_index: 0, state: initializing, event: created, re"},{"event":"cmd_output","timestamp":1607098238,"output":"covery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098238,"output":"[22m\n16:10:38.074 [info] ppl_id: 00953e87-5d4e-4930-86da-1f3750824697, type: PplBlocks, block_inde"},{"event":"cmd_output","timestamp":1607098238,"output":"x: 1, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHand"},{"event":"cmd_output","timestamp":1607098238,"output":"ler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:38.080 [info] ppl_id: 00953e87-5d4e-4930-8"},{"event":"cmd_output","timestamp":1607098238,"output":"6da-1f3750824697, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098238,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:38.089 [info] p"},{"event":"cmd_output","timestamp":1607098238,"output":"pl_id: 00953e87-5d4e-4930-86da-1f3750824697, type: PplBlocks, block_index: 0, state: waiting, event:"},{"event":"cmd_output","timestamp":1607098238,"output":" exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098238,"output":"[22m\n16:10:38.096 [info] ppl_id: 00953e87-5d4e-4930-86da-1f3750824697, type: Ppls, state: pending,"},{"event":"cmd_output","timestamp":1607098238,"output":" event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), "},{"event":"cmd_output","timestamp":1607098238,"output":"\n\u001b[0m\u001b[22m\n16:10:38.113 [info] ppl_id: 00953e87-5d4e-4930-86da-1f3750824697, type: PplBlocks, blo"},{"event":"cmd_output","timestamp":1607098238,"output":"ck_index: 1, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Im"},{"event":"cmd_output","timestamp":1607098238,"output":"pl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:38.121 [info] ppl_id: 00953e87-5d4e-4930-86da-1f3750"},{"event":"cmd_output","timestamp":1607098238,"output":"824697, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper"},{"event":"cmd_output","timestamp":1607098238,"output":".STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:38.135 [info] ppl_id: 00953e87-5d4e-4930-86da"},{"event":"cmd_output","timestamp":1607098238,"output":"-1f3750824697, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098238,"output":".Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:38.143 [info] PplBlocks WaitingState S"},{"event":"cmd_output","timestamp":1607098238,"output":"TM is scheduling block 0 from pipeline: \"00953e87-5d4e-4930-86da-1f3750824697\"\n\u001b[0m\u001b[22m\n16:10:38."},{"event":"cmd_output","timestamp":1607098238,"output":"150 [info] block_id: 0f4bbe38-318c-4319-a618-d4b4134cb82b, type: BlockRequests, event: persisted bl"},{"event":"cmd_output","timestamp":1607098238,"output":"ock run request from ppl 00953e87-5d4e-4930-86da-1f3750824697 for block 0, origin: Elixir.Block.Bloc"},{"event":"cmd_output","timestamp":1607098238,"output":"kRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:38.153 [info] bloc"},{"event":"cmd_output","timestamp":1607098238,"output":"k_id: 0f4bbe38-318c-4319-a618-d4b4134cb82b, type: Blocks, state: initializing, event: initializing, "},{"event":"cmd_output","timestamp":1607098238,"output":"recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10"},{"event":"cmd_output","timestamp":1607098238,"output":":38.157 [info] Block 0 of pipeline with id: 00953e87-5d4e-4930-86da-1f3750824697 scheduled in block"},{"event":"cmd_output","timestamp":1607098238,"output":" service with id: : \"0f4bbe38-318c-4319-a618-d4b4134cb82b\"\n\u001b[0m\u001b[22m\n16:10:38.161 [info] block_id"},{"event":"cmd_output","timestamp":1607098238,"output":": 0f4bbe38-318c-4319-a618-d4b4134cb82b, type: BlockRequests, event: persisted build and sub_ppl deta"},{"event":"cmd_output","timestamp":1607098238,"output":"ils for block_request: 0f4bbe38-318c-4319-a618-d4b4134cb82b, origin: Elixir.Block.BlockRequests.Mode"},{"event":"cmd_output","timestamp":1607098238,"output":"l.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:38.163 [info] ppl_id: 00953e87-5d4e-"},{"event":"cmd_output","timestamp":1607098238,"output":"4930-86da-1f3750824697, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, rec"},{"event":"cmd_output","timestamp":1607098238,"output":"overy_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:38.165 [i"},{"event":"cmd_output","timestamp":1607098238,"output":"nfo] block_id: 0f4bbe38-318c-4319-a618-d4b4134cb82b, type: Tasks, state: pending, event: created, r"},{"event":"cmd_output","timestamp":1607098238,"output":"ecovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098238,"output":"22m\n16:10:38.169 [info] block_id: 0f4bbe38-318c-4319-a618-d4b4134cb82b, type: Blocks, state: runni"},{"event":"cmd_output","timestamp":1607098238,"output":"ng, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90"},{"event":"cmd_output","timestamp":1607098238,"output":"), \n\u001b[0m\u001b[22m\n16:10:38.198 [info] block_id: 0f4bbe38-318c-4319-a618-d4b4134cb82b, type: Tasks, st"},{"event":"cmd_output","timestamp":1607098238,"output":"ate: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_ch"},{"event":"cmd_output","timestamp":1607098238,"output":"ange/1(L90), \n\u001b[0m\u001b[22m\n16:10:38.299 [info] block_id: 0f4bbe38-318c-4319-a618-d4b4134cb82b, type:"},{"event":"cmd_output","timestamp":1607098238,"output":" Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_s"},{"event":"cmd_output","timestamp":1607098238,"output":"tate_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:38.308 [info] block_id: 0f4bbe38-318c-4319-a618-d4b4134cb82b"},{"event":"cmd_output","timestamp":1607098238,"output":", type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Im"},{"event":"cmd_output","timestamp":1607098238,"output":"pl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:38.319 [info] ppl_id: 00953e87-5d4e-4930-86da-1f3750"},{"event":"cmd_output","timestamp":1607098238,"output":"824697, block_id: 0f4bbe38-318c-4319-a618-d4b4134cb82b, type: PplBlocks, block_index: 0, state: done"},{"event":"cmd_output","timestamp":1607098238,"output":", result: failed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_stat"},{"event":"cmd_output","timestamp":1607098238,"output":"e_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:38.324 [info] PplBlocks WaitingState STM is scheduling block 1 "},{"event":"cmd_output","timestamp":1607098238,"output":"from pipeline: \"00953e87-5d4e-4930-86da-1f3750824697\"\n\u001b[0m\u001b[22m\n16:10:38.334 [info] ppl_id: 00953"},{"event":"cmd_output","timestamp":1607098238,"output":"e87-5d4e-4930-86da-1f3750824697, type: PplBlocks, block_index: 1, state: done, result: canceled, eve"},{"event":"cmd_output","timestamp":1607098238,"output":"nt: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b["},{"event":"cmd_output","timestamp":1607098238,"output":"0m\u001b[22m\n16:10:38.352 [info] ppl_id: 00953e87-5d4e-4930-86da-1f3750824697, type: Ppls, state: done,"},{"event":"cmd_output","timestamp":1607098238,"output":" result: failed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state"},{"event":"cmd_output","timestamp":1607098238,"output":"_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:38.388 [info] Request: 'partial_rebuild', request: %{ppl_id: \"00"},{"event":"cmd_output","timestamp":1607098238,"output":"953e87-5d4e-4930-86da-1f3750824697\", request_token: \"4c880d6c-5ef6-42cc-b0c5-af03a8eacdfc\", user_id:"},{"event":"cmd_output","timestamp":1607098238,"output":" \"\"}\n\u001b[0m\u001b[22m\n16:10:38.391 [info] ppl_id: cbde28c3-0ffd-4514-af76-82c62d36987f, type: PplRequest"},{"event":"cmd_output","timestamp":1607098238,"output":"s, event: persisted schedule request with request_token: 4c880d6c-5ef6-42cc-b0c5-af03a8eacdfc, origi"},{"event":"cmd_output","timestamp":1607098238,"output":"n: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:38.39"},{"event":"cmd_output","timestamp":1607098238,"output":"3 [info] ppl_id: cbde28c3-0ffd-4514-af76-82c62d36987f, type: Ppls, state: initializing, event: init"},{"event":"cmd_output","timestamp":1607098238,"output":"ializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b"},{"event":"cmd_output","timestamp":1607098238,"output":"[0m\u001b[22m\n16:10:38.395 [info] Persisted ppl_sub_init for pipeline with ppl_id: cbde28c3-0ffd-4514-a"},{"event":"cmd_output","timestamp":1607098238,"output":"f76-82c62d36987f: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipel"},{"event":"cmd_output","timestamp":1607098238,"output":"ine_sub_inits\">, compile_task_id: nil, error_description: nil, id: 88, in_scheduling: false, init_ty"},{"event":"cmd_output","timestamp":1607098238,"output":"pe: \"rebuild\", inserted_at: ~N[2020-12-04 16:10:38.395095], pipeline_requests: #Ecto.Association.Not"},{"event":"cmd_output","timestamp":1607098238,"output":"Loaded, ppl_id: \"cbde28c3-0ffd-4514-af76-82c62d36987f\""},{"event":"cmd_output","timestamp":1607098238,"output":", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, term"},{"event":"cmd_output","timestamp":1607098238,"output":"inate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:38.395104]}\n\u001b[0m\u001b[22m\n16:10:38.407 [info]"},{"event":"cmd_output","timestamp":1607098238,"output":" ppl_id: cbde28c3-0ffd-4514-af76-82c62d36987f, type: PplRequests, event: persisted source_args for "},{"event":"cmd_output","timestamp":1607098238,"output":"pipeline: cbde28c3-0ffd-4514-af76-82c62d36987f, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQuer"},{"event":"cmd_output","timestamp":1607098238,"output":"ies.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:38.409 [info] Request: 'run: %{\"auto_promoted\" => fals"},{"event":"cmd_output","timestamp":1607098238,"output":"e, \"branch_id\" => \"0067492c-c752-487a-83bd-83f728c0a881\", \"branch_name\" => \"master\", \"client_id\" => "},{"event":"cmd_output","timestamp":1607098238,"output":"\"f656973c-2b80-41d9-8225-10f9c1539a6b\", \"commit_sha\" => \"75891a4469\", \"definition_file\" => \"\", \"env_"},{"event":"cmd_output","timestamp":1607098238,"output":"vars\" => [], \"extension_of\" => \"f121c029-eef7-40b6-acb8-cfbb452d1024\", \"file_name\" => \"/foo/bar/test"},{"event":"cmd_output","timestamp":1607098238,"output":".yml\", \"hook_id\" => \"3df50aae-364b-11eb-80de-5254005464e2\", \"label\" => \"master\", \"organization_id\" ="},{"event":"cmd_output","timestamp":1607098238,"output":"> \"06ea8fd0-b2ca-405c-8f2f-1c1df07a164c\", \"owner\" => \"rt\", \"prev_ppl_artefact_ids\" => [\"f121c029-eef"},{"event":"cmd_output","timestamp":1607098238,"output":"7-40b6-acb8-cfbb452d1024\"], \"project_id\" => \"2abcdc77-1f38-4719-9d16-f619080758a5\", \"promoter_id\" =>"},{"event":"cmd_output","timestamp":1607098238,"output":" \"\", \"repo_name\" => \"20_workflow_builder\", \"request_token\" => \"085b3ef9-4688-4cf3-a7cd-df3bf226120b\""},{"event":"cmd_output","timestamp":1607098238,"output":", \"requester_id\" => \"1fa85814-956a-428c-8bb7-119c22cfecbb\", \"service\" => \"local\", \"snapshot_id\" => \""},{"event":"cmd_output","timestamp":1607098238,"output":"\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" ="},{"event":"cmd_output","timestamp":1607098238,"output":"> \"5b8dfc92-d514-4db6-9453-46811748767e\", \"wf_number\" => 1, \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098238,"output":"m\n16:10:38.410 [info] ppl_id: cbde28c3-0ffd-4514-af76-82c62d36987f, type: PplSubInits, state: fetc"},{"event":"cmd_output","timestamp":1607098238,"output":"hing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098238,"output":"90), \n\u001b[0m\u001b[22m\n16:10:38.412 [info] ppl_id: 4fb6bb0c-a78b-4901-ba3c-90d1ac35f833, type: PplReques"},{"event":"cmd_output","timestamp":1607098238,"output":"ts, event: persisted schedule request with request_token: 085b3ef9-4688-4cf3-a7cd-df3bf226120b, orig"},{"event":"cmd_output","timestamp":1607098238,"output":"in: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:38.4"},{"event":"cmd_output","timestamp":1607098238,"output":"16 [info] ppl_id: 4fb6bb0c-a78b-4901-ba3c-90d1ac35f833, type: Ppls, state: initializing, event: ini"},{"event":"cmd_output","timestamp":1607098238,"output":"tializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n"},{"event":"cmd_output","timestamp":1607098238,"output":"\u001b[0m\u001b[22m\n16:10:38.420 [info] Persisted ppl_sub_init for pipeline with ppl_id: 4fb6bb0c-a78b-4901-"},{"event":"cmd_output","timestamp":1607098238,"output":"ba3c-90d1ac35f833: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipe"},{"event":"cmd_output","timestamp":1607098238,"output":"line_sub_inits\">, compile_task_id: nil, error_description: nil, id: 89, in_scheduling: false, init_t"},{"event":"cmd_output","timestamp":1607098238,"output":"ype: \"regular\", inserted_at: ~N[2020-12-04 16:10:38.418882], pipeline_requests: #Ecto.Association.No"},{"event":"cmd_output","timestamp":1607098238,"output":"tLoaded, ppl_id: \"4fb6bb0c-a78b-4901-ba3c-90d1ac35f833"},{"event":"cmd_output","timestamp":1607098238,"output":"\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, ter"},{"event":"cmd_output","timestamp":1607098238,"output":"minate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:38.418892]}\n\u001b[0m\u001b[22m\n16:10:38.437 [info"},{"event":"cmd_output","timestamp":1607098238,"output":"] ppl_id: 4fb6bb0c-a78b-4901-ba3c-90d1ac35f833, type: PplRequests, event: persisted source_args for"},{"event":"cmd_output","timestamp":1607098238,"output":" pipeline: 4fb6bb0c-a78b-4901-ba3c-90d1ac35f833, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQue"},{"event":"cmd_output","timestamp":1607098238,"output":"ries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:38.443 [info] ppl_id: 4fb6bb0c-a78b-4901-ba3c-90d1ac3"},{"event":"cmd_output","timestamp":1607098238,"output":"5f833, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098238,"output":".Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:38.448 [info] ppl_id: cbde28c3-0ffd-45"},{"event":"cmd_output","timestamp":1607098238,"output":"14-af76-82c62d36987f, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count"},{"event":"cmd_output","timestamp":1607098238,"output":": 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:38.481 [info] ppl_i"},{"event":"cmd_output","timestamp":1607098238,"output":"d: 4fb6bb0c-a78b-4901-ba3c-90d1ac35f833, type: PplSubInits, state: regular_init, event: exit_schedul"},{"event":"cmd_output","timestamp":1607098238,"output":"ing, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:3"},{"event":"cmd_output","timestamp":1607098238,"output":"8.491 [info] ppl_id: cbde28c3-0ffd-4514-af76-82c62d36987f, type: PplRequests, event: persisted defi"},{"event":"cmd_output","timestamp":1607098238,"output":"nition for request with request_token: 4c880d6c-5ef6-42cc-b0c5-af03a8eacdfc, origin: Elixir.Ppl.PplR"},{"event":"cmd_output","timestamp":1607098238,"output":"equests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:38.498 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098238,"output":" not_available, event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1"},{"event":"cmd_output","timestamp":1607098238,"output":"(L105), \n\u001b[0m\u001b[22m\n16:10:38.498 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler."},{"event":"cmd_output","timestamp":1607098238,"output":"RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:38.498 [info] ppl_id: cbde28c3-0ffd-4514-af76-"},{"event":"cmd_output","timestamp":1607098238,"output":"82c62d36987f, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: "},{"event":"cmd_output","timestamp":1607098238,"output":"0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:38"},{"event":"cmd_output","timestamp":1607098238,"output":".498 [info] ppl_id: cbde28c3-0ffd-4514-af76-82c62d36987f, type: PplBlocks, block_index: 1, state: i"},{"event":"cmd_output","timestamp":1607098238,"output":"nitializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularIni"},{"event":"cmd_output","timestamp":1607098238,"output":"tState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:38.500 [info] ppl_id: cbde28c3-0ffd-4514-af76-82c62d3698"},{"event":"cmd_output","timestamp":1607098238,"output":"7f, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098238,"output":"n: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:38.512 [info] ppl_id: cbde28c"},{"event":"cmd_output","timestamp":1607098238,"output":"3-0ffd-4514-af76-82c62d36987f, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0"},{"event":"cmd_output","timestamp":1607098238,"output":", origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:38.518 [info] ppl_id: "},{"event":"cmd_output","timestamp":1607098238,"output":"cbde28c3-0ffd-4514-af76-82c62d36987f, type: PplBlocks, block_index: 0, state: waiting, event: exit_s"},{"event":"cmd_output","timestamp":1607098238,"output":"cheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098238,"output":"6:10:38.525 [info] ppl_id: cbde28c3-0ffd-4514-af76-82c62d36987f, type: Ppls, state: queuing, event:"},{"event":"cmd_output","timestamp":1607098238,"output":" exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098238,"output":"[22m\n16:10:38.528 [info] ppl_id: cbde28c3-0ffd-4514-af76-82c62d36987f, type: PplBlocks, block_inde"},{"event":"cmd_output","timestamp":1607098238,"output":"x: 1, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_"},{"event":"cmd_output","timestamp":1607098238,"output":"state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:38.539 [info] ppl_id: cbde28c3-0ffd-4514-af76-82c62d36987f,"},{"event":"cmd_output","timestamp":1607098238,"output":" type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Im"},{"event":"cmd_output","timestamp":1607098238,"output":"pl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:38.547 [info] PplBlocks WaitingState STM is scheduli"},{"event":"cmd_output","timestamp":1607098238,"output":"ng block 0 from pipeline: \"cbde28c3-0ffd-4514-af76-82c62d36987f\"\n\u001b[0m\u001b[22m\n16:10:38.553 [info] pp"},{"event":"cmd_output","timestamp":1607098238,"output":"l_id: 4fb6bb0c-a78b-4901-ba3c-90d1ac35f833, type: PplRequests, event: persisted definition for reque"},{"event":"cmd_output","timestamp":1607098238,"output":"st with request_token: 085b3ef9-4688-4cf3-a7cd-df3bf226120b, origin: Elixir.Ppl.PplRequests.Model.Pp"},{"event":"cmd_output","timestamp":1607098238,"output":"lRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:38.558 [info] block_id: 1b064a55-9466"},{"event":"cmd_output","timestamp":1607098238,"output":"-447b-84f9-4875d273339a, type: BlockRequests, event: persisted block run request from ppl cbde28c3-0"},{"event":"cmd_output","timestamp":1607098238,"output":"ffd-4514-af76-82c62d36987f for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQuerie"},{"event":"cmd_output","timestamp":1607098238,"output":"s.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:38.561 [info] block_id: 1b064a55-9466-447b-84f9-4875d"},{"event":"cmd_output","timestamp":1607098238,"output":"273339a, type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.B"},{"event":"cmd_output","timestamp":1607098238,"output":"lock.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:38.565 [info] Block 0 of pipeline"},{"event":"cmd_output","timestamp":1607098238,"output":" with id: cbde28c3-0ffd-4514-af76-82c62d36987f scheduled in block service with id: : \"1b064a55-9466-"},{"event":"cmd_output","timestamp":1607098238,"output":"447b-84f9-4875d273339a\"\n\u001b[0m\u001b[22m\n16:10:38.567 [info] ppl_id: cbde28c3-0ffd-4514-af76-82c62d36987"},{"event":"cmd_output","timestamp":1607098238,"output":"f, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098238,"output":"n: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:38.568 [info] ppl_id: not_ava"},{"event":"cmd_output","timestamp":1607098238,"output":"ilable, event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), "},{"event":"cmd_output","timestamp":1607098238,"output":"\n\u001b[0m\u001b[22m\n16:10:38.568 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularI"},{"event":"cmd_output","timestamp":1607098238,"output":"nitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:38.568 [info] ppl_id: 4fb6bb0c-a78b-4901-ba3c-90d1ac35"},{"event":"cmd_output","timestamp":1607098238,"output":"f833, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098238,"output":"n: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:38.568 [in"},{"event":"cmd_output","timestamp":1607098238,"output":"fo] ppl_id: 4fb6bb0c-a78b-4901-ba3c-90d1ac35f833, type: PplBlocks, block_index: 1, state: initializ"},{"event":"cmd_output","timestamp":1607098238,"output":"ing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.a"},{"event":"cmd_output","timestamp":1607098238,"output":"ll_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:38.572 [info] block_id: 1b064a55-9466-447b-84f9-4875d273339a, ty"},{"event":"cmd_output","timestamp":1607098238,"output":"pe: BlockRequests, event: persisted build and sub_ppl details for block_request: 1b064a55-9466-447b-"},{"event":"cmd_output","timestamp":1607098238,"output":"84f9-4875d273339a, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41)"},{"event":"cmd_output","timestamp":1607098238,"output":", \n\u001b[0m\u001b[22m\n16:10:38.573 [info] ppl_id: 4fb6bb0c-a78b-4901-ba3c-90d1ac35f833, type: PplSubInits,"},{"event":"cmd_output","timestamp":1607098238,"output":" state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.I"},{"event":"cmd_output","timestamp":1607098238,"output":"mpl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:38.577 [info] block_id: 1b064a55-9466-447b-84f9-487"},{"event":"cmd_output","timestamp":1607098238,"output":"5d273339a, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Bloc"},{"event":"cmd_output","timestamp":1607098238,"output":"ks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:38.580 [info] block_id: 1b064a5"},{"event":"cmd_output","timestamp":1607098238,"output":"5-9466-447b-84f9-4875d273339a, type: Blocks, state: running, event: exit_scheduling, recovery_count:"},{"event":"cmd_output","timestamp":1607098238,"output":" 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:38.590 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098238,"output":": 4fb6bb0c-a78b-4901-ba3c-90d1ac35f833, type: Ppls, state: pending, event: exit_scheduling, recovery"},{"event":"cmd_output","timestamp":1607098238,"output":"_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:38.597 [info] "},{"event":"cmd_output","timestamp":1607098238,"output":" ppl_id: 4fb6bb0c-a78b-4901-ba3c-90d1ac35f833, type: PplBlocks, block_index: 0, state: waiting, even"},{"event":"cmd_output","timestamp":1607098238,"output":"t: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098238,"output":"m\u001b[22m\n16:10:38.609 [info] ppl_id: 4fb6bb0c-a78b-4901-ba3c-90d1ac35f833, type: Ppls, state: queuin"},{"event":"cmd_output","timestamp":1607098238,"output":"g, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90)"},{"event":"cmd_output","timestamp":1607098238,"output":", \n\u001b[0m\u001b[22m\n16:10:38.615 [info] ppl_id: 4fb6bb0c-a78b-4901-ba3c-90d1ac35f833, type: PplBlocks, b"},{"event":"cmd_output","timestamp":1607098238,"output":"lock_index: 1, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM."},{"event":"cmd_output","timestamp":1607098238,"output":"Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:38.619 [info] block_id: 1b064a55-9466-447b-84f9-48"},{"event":"cmd_output","timestamp":1607098238,"output":"75d273339a, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098238,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:38.731 [info] block_id: 1b064a55-9466-44"},{"event":"cmd_output","timestamp":1607098238,"output":"7b-84f9-4875d273339a, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: E"},{"event":"cmd_output","timestamp":1607098238,"output":"lixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:38.738 [info] block_id: 1b064a55-"},{"event":"cmd_output","timestamp":1607098238,"output":"9466-447b-84f9-4875d273339a, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098238,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:38.754 [info] ppl_id: cbd"},{"event":"cmd_output","timestamp":1607098238,"output":"e28c3-0ffd-4514-af76-82c62d36987f, block_id: 1b064a55-9466-447b-84f9-4875d273339a, type: PplBlocks, "},{"event":"cmd_output","timestamp":1607098238,"output":"block_index: 0, state: done, result: failed, event: exit_scheduling, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098238,"output":"ir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:38.764 [info] PplBlocks WaitingState"},{"event":"cmd_output","timestamp":1607098238,"output":" STM is scheduling block 1 from pipeline: \"cbde28c3-0ffd-4514-af76-82c62d36987f\"\n\u001b[0m\u001b[22m\n16:10:3"},{"event":"cmd_output","timestamp":1607098238,"output":"8.774 [info] ppl_id: cbde28c3-0ffd-4514-af76-82c62d36987f, type: PplBlocks, block_index: 1, state: "},{"event":"cmd_output","timestamp":1607098238,"output":"done, result: canceled, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.lo"},{"event":"cmd_output","timestamp":1607098238,"output":"g_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:38.790 [info] ppl_id: cbde28c3-0ffd-4514-af76-82c62d36987"},{"event":"cmd_output","timestamp":1607098238,"output":"f, type: Ppls, state: done, result: failed, event: exit_scheduling, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098238,"output":"r.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:38.874 [info] ppl_id: 4fb6bb0c-a78b-4"},{"event":"cmd_output","timestamp":1607098238,"output":"901-ba3c-90d1ac35f833, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098238,"output":": Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:38.882 [info] PplBlocks Waitin"},{"event":"cmd_output","timestamp":1607098238,"output":"gState STM is scheduling block 0 from pipeline: \"4fb6bb0c-a78b-4901-ba3c-90d1ac35f833\"\n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098238,"output":"6:10:38.890 [info] block_id: b4e2d882-b884-4e4a-aa7d-04be4dc70a78, type: BlockRequests, event: pers"},{"event":"cmd_output","timestamp":1607098238,"output":"isted block run request from ppl 4fb6bb0c-a78b-4901-ba3c-90d1ac35f833 for block 0, origin: Elixir.Bl"},{"event":"cmd_output","timestamp":1607098238,"output":"ock.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:38.892 [inf"},{"event":"cmd_output","timestamp":1607098238,"output":"o] block_id: b4e2d882-b884-4e4a-aa7d-04be4dc70a78, type: Blocks, state: initializing, event: initia"},{"event":"cmd_output","timestamp":1607098238,"output":"lizing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098238,"output":"m\n16:10:38.894 [info] Block 0 of pipeline with id: 4fb6bb0c-a78b-4901-ba3c-90d1ac35f833 scheduled "},{"event":"cmd_output","timestamp":1607098238,"output":"in block service with id: : \"b4e2d882-b884-4e4a-aa7d-04be4dc70a78\"\n\u001b[0m\u001b[22m\n16:10:38.897 [info] "},{"event":"cmd_output","timestamp":1607098238,"output":"ppl_id: 4fb6bb0c-a78b-4901-ba3c-90d1ac35f833, type: PplBlocks, block_index: 0, state: running, event"},{"event":"cmd_output","timestamp":1607098238,"output":": exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098238,"output":"\u001b[22m\n16:10:38.901 [info] block_id: b4e2d882-b884-4e4a-aa7d-04be4dc70a78, type: BlockRequests, eve"},{"event":"cmd_output","timestamp":1607098238,"output":"nt: persisted build and sub_ppl details for block_request: b4e2d882-b884-4e4a-aa7d-04be4dc70a78, ori"},{"event":"cmd_output","timestamp":1607098238,"output":"gin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:3"},{"event":"cmd_output","timestamp":1607098238,"output":"8.903 [info] block_id: b4e2d882-b884-4e4a-aa7d-04be4dc70a78, type: Tasks, state: pending, event: cr"},{"event":"cmd_output","timestamp":1607098238,"output":"eated, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), "},{"event":"cmd_output","timestamp":1607098238,"output":"\n\u001b[0m\u001b[22m\n16:10:38.906 [info] block_id: b4e2d882-b884-4e4a-aa7d-04be4dc70a78, type: Blocks, stat"},{"event":"cmd_output","timestamp":1607098238,"output":"e: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chan"},{"event":"cmd_output","timestamp":1607098238,"output":"ge/1(L90), \n\u001b[0m\u001b[22m\n16:10:38.936 [info] block_id: b4e2d882-b884-4e4a-aa7d-04be4dc70a78, type: T"},{"event":"cmd_output","timestamp":1607098238,"output":"asks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_"},{"event":"cmd_output","timestamp":1607098238,"output":"state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:38.953 [info] block_id: b4e2d882-b884-4e4a-aa7d-04be4dc70a7"},{"event":"cmd_output","timestamp":1607098238,"output":"8, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Im"},{"event":"cmd_output","timestamp":1607098238,"output":"pl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:38.962 [info] block_id: b4e2d882-b884-4e4a-aa7d-04be"},{"event":"cmd_output","timestamp":1607098238,"output":"4dc70a78, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loope"},{"event":"cmd_output","timestamp":1607098238,"output":"r.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:38.972 [info] ppl_id: 4fb6bb0c-a78b-4901-ba3"},{"event":"cmd_output","timestamp":1607098238,"output":"c-90d1ac35f833, block_id: b4e2d882-b884-4e4a-aa7d-04be4dc70a78, type: PplBlocks, block_index: 0, sta"},{"event":"cmd_output","timestamp":1607098238,"output":"te: done, result: failed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl."},{"event":"cmd_output","timestamp":1607098238,"output":"log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:38.980 [info] PplBlocks WaitingState STM is scheduling "},{"event":"cmd_output","timestamp":1607098238,"output":"block 1 from pipeline: \"4fb6bb0c-a78b-4901-ba3c-90d1ac35f833\"\n\u001b[0m\u001b[22m\n16:10:38.991 [info] ppl_i"},{"event":"cmd_output","timestamp":1607098238,"output":"d: 4fb6bb0c-a78b-4901-ba3c-90d1ac35f833, type: PplBlocks, block_index: 1, state: done, result: cance"},{"event":"cmd_output","timestamp":1607098238,"output":"led, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L9"},{"event":"cmd_output","timestamp":1607098239,"output":"0), \n\u001b[0m\u001b[22m\n16:10:39.008 [info] ppl_id: 4fb6bb0c-a78b-4901-ba3c-90d1ac35f833, type: Ppls, stat"},{"event":"cmd_output","timestamp":1607098239,"output":"e: done, result: failed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.l"},{"event":"cmd_output","timestamp":1607098239,"output":"og_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:39.053 [info] Request: 'partial_rebuild', request: %{ppl"},{"event":"cmd_output","timestamp":1607098239,"output":"_id: \"4fb6bb0c-a78b-4901-ba3c-90d1ac35f833\", request_token: \"35faf9bc-704e-4837-b839-1a8e4d9f219e\", "},{"event":"cmd_output","timestamp":1607098239,"output":"user_id: \"\"}\n\u001b[0m\u001b[22m\n16:10:39.056 [info] ppl_id: d9fb36d9-eced-4720-b43e-aaaa5b7514fa, type: Pp"},{"event":"cmd_output","timestamp":1607098239,"output":"lRequests, event: persisted schedule request with request_token: 35faf9bc-704e-4837-b839-1a8e4d9f219"},{"event":"cmd_output","timestamp":1607098239,"output":"e, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098239,"output":"10:39.058 [info] ppl_id: d9fb36d9-eced-4720-b43e-aaaa5b7514fa, type: Ppls, state: initializing, eve"},{"event":"cmd_output","timestamp":1607098239,"output":"nt: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L1"},{"event":"cmd_output","timestamp":1607098239,"output":"24), \n\u001b[0m\u001b[22m\n16:10:39.061 [info] Persisted ppl_sub_init for pipeline with ppl_id: d9fb36d9-ece"},{"event":"cmd_output","timestamp":1607098239,"output":"d-4720-b43e-aaaa5b7514fa: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded"},{"event":"cmd_output","timestamp":1607098239,"output":", \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 90, in_scheduling: false,"},{"event":"cmd_output","timestamp":1607098239,"output":" init_type: \"rebuild\", inserted_at: ~N[2020-12-04 16:10:39.060643], pipeline_requests: #Ecto.Associa"},{"event":"cmd_output","timestamp":1607098239,"output":"tion.NotLoaded, ppl_id: \"d9fb36d9-eced-4720-b43e-aaaa5"},{"event":"cmd_output","timestamp":1607098239,"output":"b7514fa\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: n"},{"event":"cmd_output","timestamp":1607098239,"output":"il, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:39.060656]}\n\u001b[0m\u001b[22m\n16:10:39.07"},{"event":"cmd_output","timestamp":1607098239,"output":"4 [info] ppl_id: d9fb36d9-eced-4720-b43e-aaaa5b7514fa, type: PplRequests, event: persisted source_a"},{"event":"cmd_output","timestamp":1607098239,"output":"rgs for pipeline: d9fb36d9-eced-4720-b43e-aaaa5b7514fa, origin: Elixir.Ppl.PplRequests.Model.PplRequ"},{"event":"cmd_output","timestamp":1607098239,"output":"estsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:39.076 [info] Request: 'run: %{\"auto_promoted\""},{"event":"cmd_output","timestamp":1607098239,"output":" => false, \"branch_id\" => \"0067492c-c752-487a-83bd-83f728c0a881\", \"branch_name\" => \"master\", \"client"},{"event":"cmd_output","timestamp":1607098239,"output":"_id\" => \"f656973c-2b80-41d9-8225-10f9c1539a6b\", \"commit_sha\" => \"75891a4469\", \"definition_file\" => \""},{"event":"cmd_output","timestamp":1607098239,"output":"\", \"env_vars\" => [], \"extension_of\" => \"cbde28c3-0ffd-4514-af76-82c62d36987f\", \"file_name\" => \"/foo/"},{"event":"cmd_output","timestamp":1607098239,"output":"bar/test.yml\", \"hook_id\" => \"3df50aae-364b-11eb-80de-5254005464e2\", \"label\" => \"master\", \"organizati"},{"event":"cmd_output","timestamp":1607098239,"output":"on_id\" => \"06ea8fd0-b2ca-405c-8f2f-1c1df07a164c\", \"owner\" => \"rt\", \"partially_rerun_by\" => \"\", \"prev"},{"event":"cmd_output","timestamp":1607098239,"output":"_ppl_artefact_ids\" => [\"f121c029-eef7-40b6-acb8-cfbb452d1024\", \"00953e87-5d4e-4930-86da-1f3750824697"},{"event":"cmd_output","timestamp":1607098239,"output":"\"], \"project_id\" => \"2abcdc77-1f38-4719-9d16-f619080758a5\", \"promoter_id\" => \"\", \"repo_name\" => \"20_"},{"event":"cmd_output","timestamp":1607098239,"output":"workflow_builder\", \"request_token\" => \"4ae2f707-3b97-4c41-af90-e3bfb069458f\", \"requester_id\" => \"1fa"},{"event":"cmd_output","timestamp":1607098239,"output":"85814-956a-428c-8bb7-119c22cfecbb\", \"service\" => \"local\", \"snapshot_id\" => \"\", \"suppressed_attribute"},{"event":"cmd_output","timestamp":1607098239,"output":"s\" => [\"access_token\", \"client_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"5b8dfc92-d514-4db6-94"},{"event":"cmd_output","timestamp":1607098239,"output":"53-46811748767e\", \"wf_number\" => 1, \"working_dir\" => \"/foo/bar\"}\n\u001b[0m\u001b[22m\n16:10:39.077 [info] pp"},{"event":"cmd_output","timestamp":1607098239,"output":"l_id: d9fb36d9-eced-4720-b43e-aaaa5b7514fa, type: PplSubInits, state: fetching, event: exit_scheduli"},{"event":"cmd_output","timestamp":1607098239,"output":"ng, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:39"},{"event":"cmd_output","timestamp":1607098239,"output":".079 [info] ppl_id: 1f487847-9f40-4962-becb-9888ea2c4f72, type: PplRequests, event: persisted sched"},{"event":"cmd_output","timestamp":1607098239,"output":"ule request with request_token: 4ae2f707-3b97-4c41-af90-e3bfb069458f, origin: Elixir.Ppl.PplRequests"},{"event":"cmd_output","timestamp":1607098239,"output":".Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:39.083 [info] ppl_id: 1f48784"},{"event":"cmd_output","timestamp":1607098239,"output":"7-9f40-4962-becb-9888ea2c4f72, type: Ppls, state: initializing, event: initializing, recovery_count:"},{"event":"cmd_output","timestamp":1607098239,"output":" 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:39.086 [i"},{"event":"cmd_output","timestamp":1607098239,"output":"nfo] Persisted ppl_sub_init for pipeline with ppl_id: 1f487847-9f40-4962-becb-9888ea2c4f72: %Ppl.Pp"},{"event":"cmd_output","timestamp":1607098239,"output":"lSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_"},{"event":"cmd_output","timestamp":1607098239,"output":"task_id: nil, error_description: nil, id: 91, in_scheduling: false, init_type: \"regular\", inserted_a"},{"event":"cmd_output","timestamp":1607098239,"output":"t: ~N[2020-12-04 16:10:39.085432], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"1f487847-9f40-4962-becb-9888ea2c4f72\", recovery_count: 0, resu"},{"event":"cmd_output","timestamp":1607098239,"output":"lt: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, "},{"event":"cmd_output","timestamp":1607098239,"output":"updated_at: ~N[2020-12-04 16:10:39.085442]}\n\u001b[0m\u001b[32m\r * test build workflow and get valid descrip"},{"event":"cmd_output","timestamp":1607098239,"output":"tion (3735.2ms)\u001b[0m\n\nPlumber.WorkflowAPI.WfNumber.Test\n * test wf_number correctly set for all p"},{"event":"cmd_output","timestamp":1607098239,"output":"ipelines form workflows with different topology\u001b[22m\n16:10:39.202 [info] Periodic from module Elix"},{"event":"cmd_output","timestamp":1607098239,"output":"ir.Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: p"},{"event":"cmd_output","timestamp":1607098239,"output":"eriod: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, rec"},{"event":"cmd_output","timestamp":1607098239,"output":"urring args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_que"},{"event":"cmd_output","timestamp":1607098239,"output":"ry: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher_cb: #Function<0.125326080/1 in Pp"},{"event":"cmd_output","timestamp":1607098239,"output":"l.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request"},{"event":"cmd_output","timestamp":1607098239,"output":", :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervi"},{"event":"cmd_output","timestamp":1607098239,"output":"sor: :skip}\n\u001b[0m\u001b[22m\n16:10:39.203 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.Pending"},{"event":"cmd_output","timestamp":1607098239,"output":"State with name Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.behold"},{"event":"cmd_output","timestamp":1607098239,"output":"er-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"pending\", \"q"},{"event":"cmd_output","timestamp":1607098239,"output":"ueuing\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state"},{"event":"cmd_output","timestamp":1607098239,"output":": \"pending\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: "},{"event":"cmd_output","timestamp":1607098239,"output":"Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :p"},{"event":"cmd_output","timestamp":1607098239,"output":"pl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:10:39.203 ["},{"event":"cmd_output","timestamp":1607098239,"output":"info] Periodic from module Elixir.Ppl.Ppls.STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHan"},{"event":"cmd_output","timestamp":1607098239,"output":"dler.QueuingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Que"},{"event":"cmd_output","timestamp":1607098239,"output":"uingState\"]}, recurring args: %{allowed_states: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2"},{"event":"cmd_output","timestamp":1607098239,"output":", initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", publisher_cb: #Function<0.125102843"},{"event":"cmd_output","timestamp":1607098239,"output":"/1 in Ppl.Ppls.STMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_requ"},{"event":"cmd_output","timestamp":1607098239,"output":"est, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supe"},{"event":"cmd_output","timestamp":1607098239,"output":"rvisor: :skip}\n\u001b[0m\u001b[22m\n16:10:39.203 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.Runn"},{"event":"cmd_output","timestamp":1607098239,"output":"ingState with name Elixir.Ppl.Ppls.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beh"},{"event":"cmd_output","timestamp":1607098239,"output":"older-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\","},{"event":"cmd_output","timestamp":1607098239,"output":" \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"run"},{"event":"cmd_output","timestamp":1607098239,"output":"ning\", publisher_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler.RunningState.args/0>, repo: Ppl.E"},{"event":"cmd_output","timestamp":1607098239,"output":"ctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id"},{"event":"cmd_output","timestamp":1607098239,"output":"], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:10:39.203 [info]"},{"event":"cmd_output","timestamp":1607098239,"output":" Periodic from module Elixir.Ppl.Ppls.STMHandler.StoppingState with name Elixir.Ppl.Ppls.STMHandler"},{"event":"cmd_output","timestamp":1607098239,"output":".StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Stoppi"},{"event":"cmd_output","timestamp":1607098239,"output":"ngState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_qu"},{"event":"cmd_output","timestamp":1607098239,"output":"ery: Ppl.Ppls.Model.Ppls, observed_state: \"stopping\", publisher_cb: #Function<0.71803493/1 in Ppl.Pp"},{"event":"cmd_output","timestamp":1607098239,"output":"ls.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updat"},{"event":"cmd_output","timestamp":1607098239,"output":"ed_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :sk"},{"event":"cmd_output","timestamp":1607098239,"output":"ip}\n\u001b[0m\u001b[22m\n16:10:39.203 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedS"},{"event":"cmd_output","timestamp":1607098239,"output":"tate with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 100 ms, metric_name: {\"Ppl."},{"event":"cmd_output","timestamp":1607098239,"output":"beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args: %{allowed_states: ["},{"event":"cmd_output","timestamp":1607098239,"output":"\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed"},{"event":"cmd_output","timestamp":1607098239,"output":"_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :up"},{"event":"cmd_output","timestamp":1607098239,"output":"dated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, tas"},{"event":"cmd_output","timestamp":1607098239,"output":"k_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:39.204 [info] Periodic from module Elixir.Ppl.PplSubInits.ST"},{"event":"cmd_output","timestamp":1607098239,"output":"MHandler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 ms, "},{"event":"cmd_output","timestamp":1607098239,"output":"metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring args:"},{"event":"cmd_output","timestamp":1607098239,"output":" %{allowed_states: [\"regular_init\", \"compilation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl"},{"event":"cmd_output","timestamp":1607098239,"output":".PplSubInits.Model.PplSubInits, observed_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo,"},{"event":"cmd_output","timestamp":1607098239,"output":" returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schem"},{"event":"cmd_output","timestamp":1607098239,"output":"a: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:39.204 [info] Perio"},{"event":"cmd_output","timestamp":1607098239,"output":"dic from module Elixir.Ppl.PplSubInits.STMHandler.CompilationState with name Elixir.Ppl.PplSubInits."},{"event":"cmd_output","timestamp":1607098239,"output":"STMHandler.CompilationState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubIni"},{"event":"cmd_output","timestamp":1607098239,"output":"ts-STMHandler-CompilationState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\","},{"event":"cmd_output","timestamp":1607098239,"output":" \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observ"},{"event":"cmd_output","timestamp":1607098239,"output":"ed_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_reques"},{"event":"cmd_output","timestamp":1607098239,"output":"t, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInit"},{"event":"cmd_output","timestamp":1607098239,"output":"s, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:39.204 [info] Periodic from module Elixir.Ppl.PplSubIn"},{"event":"cmd_output","timestamp":1607098239,"output":"its.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: peri"},{"event":"cmd_output","timestamp":1607098239,"output":"od: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, "},{"event":"cmd_output","timestamp":1607098239,"output":"recurring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Mode"},{"event":"cmd_output","timestamp":1607098239,"output":"l.PplSubInits, observed_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: ["},{"event":"cmd_output","timestamp":1607098239,"output":":id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSub"},{"event":"cmd_output","timestamp":1607098239,"output":"Inits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:39.204 [info] Periodic from modu"},{"event":"cmd_output","timestamp":1607098239,"output":"le Elixir.Ppl.PplBlocks.STMHandler.InitializingState with name Elixir.Ppl.PplBlocks.STMHandler.Initi"},{"event":"cmd_output","timestamp":1607098239,"output":"alizingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-Ini"},{"event":"cmd_output","timestamp":1607098239,"output":"tializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"waiting\", \"done\"], cooling_ti"},{"event":"cmd_output","timestamp":1607098239,"output":"me_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"initializing\", publisher_c"},{"event":"cmd_output","timestamp":1607098239,"output":"b: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :re"},{"event":"cmd_output","timestamp":1607098239,"output":"covery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}"},{"event":"cmd_output","timestamp":1607098239,"output":"\n\u001b[0m\u001b[22m\n16:10:39.205 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.WaitingState "},{"event":"cmd_output","timestamp":1607098239,"output":"with name Elixir.Ppl.PplBlocks.STMHandler.WaitingState :: period: 1000 ms, metric_name: {\"Ppl.behold"},{"event":"cmd_output","timestamp":1607098239,"output":"er-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurring args: %{allowed_states: [\"waiting"},{"event":"cmd_output","timestamp":1607098239,"output":"\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_s"},{"event":"cmd_output","timestamp":1607098239,"output":"tate: \"waiting\", publisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0"},{"event":"cmd_output","timestamp":1607098239,"output":">, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_"},{"event":"cmd_output","timestamp":1607098239,"output":"count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098239,"output":"[22m\n16:10:39.205 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.RunningState with na"},{"event":"cmd_output","timestamp":1607098239,"output":"me Elixir.Ppl.PplBlocks.STMHandler.RunningState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake"},{"event":"cmd_output","timestamp":1607098239,"output":"_up\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"sto"},{"event":"cmd_output","timestamp":1607098239,"output":"pping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state:"},{"event":"cmd_output","timestamp":1607098239,"output":" \"running\", publisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0>, r"},{"event":"cmd_output","timestamp":1607098239,"output":"epo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_coun"},{"event":"cmd_output","timestamp":1607098239,"output":"t, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}"},{"event":"cmd_output","timestamp":1607098239,"output":"\n\u001b[0m\u001b[22m\n16:10:39.205 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.StoppingState"},{"event":"cmd_output","timestamp":1607098239,"output":" with name Elixir.Ppl.PplBlocks.STMHandler.StoppingState :: period: 1000 ms, metric_name: {\"Ppl.beho"},{"event":"cmd_output","timestamp":1607098239,"output":"lder-wake_up\", [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stop"},{"event":"cmd_output","timestamp":1607098239,"output":"ping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: "},{"event":"cmd_output","timestamp":1607098239,"output":"\"stopping\", publisher_cb: #Function<0.104215991/1 in Ppl.PplBlocks.STMHandler.StoppingState.args/0>,"},{"event":"cmd_output","timestamp":1607098239,"output":" repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_co"},{"event":"cmd_output","timestamp":1607098239,"output":"unt, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :ski"},{"event":"cmd_output","timestamp":1607098239,"output":"p}\n\u001b[0m\u001b[22m\n16:10:39.205 [info] Periodic from module Elixir.Block.Blocks.STMHandler.Initializing"},{"event":"cmd_output","timestamp":1607098239,"output":"State with name Elixir.Block.Blocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"P"},{"event":"cmd_output","timestamp":1607098239,"output":"pl.beholder-wake_up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_stat"},{"event":"cmd_output","timestamp":1607098239,"output":"es: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Blocks.Model.Blocks, observed_sta"},{"event":"cmd_output","timestamp":1607098239,"output":"te: \"initializing\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, "},{"event":"cmd_output","timestamp":1607098239,"output":":updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor"},{"event":"cmd_output","timestamp":1607098239,"output":": :skip}\n\u001b[0m\u001b[22m\n16:10:39.205 [info] Periodic from module Elixir.Block.Blocks.STMHandler.Runnin"},{"event":"cmd_output","timestamp":1607098239,"output":"gState with name Elixir.Block.Blocks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.b"},{"event":"cmd_output","timestamp":1607098239,"output":"eholder-wake_up\", [\"Block-Blocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"run"},{"event":"cmd_output","timestamp":1607098239,"output":"ning\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed"},{"event":"cmd_output","timestamp":1607098239,"output":"_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :"},{"event":"cmd_output","timestamp":1607098239,"output":"updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor:"},{"event":"cmd_output","timestamp":1607098239,"output":" :skip}\n\u001b[0m\u001b[22m\n16:10:39.206 [info] Periodic from module Elixir.Block.Blocks.STMHandler.Stoppin"},{"event":"cmd_output","timestamp":1607098239,"output":"gState with name Elixir.Block.Blocks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl."},{"event":"cmd_output","timestamp":1607098239,"output":"beholder-wake_up\", [\"Block-Blocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"s"},{"event":"cmd_output","timestamp":1607098239,"output":"topping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \""},{"event":"cmd_output","timestamp":1607098239,"output":"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_"},{"event":"cmd_output","timestamp":1607098239,"output":"at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\r"},{"event":"cmd_output","timestamp":1607098239,"output":"\n\u001b[0m\u001b[22m\n16:10:39.206 [info] Periodic from module Elixir.Block.Tasks.STMHandler.PendingState wit"},{"event":"cmd_output","timestamp":1607098239,"output":"h name Elixir.Block.Tasks.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wak"},{"event":"cmd_output","timestamp":1607098239,"output":"e_up\", [\"Block-Tasks-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"running\", \"done"},{"event":"cmd_output","timestamp":1607098239,"output":"\"], cooling_time_sec: 0, initial_query: Block.Tasks.Model.Tasks, observed_state: \"pending\", publishe"},{"event":"cmd_output","timestamp":1607098239,"output":"r_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recove"},{"event":"cmd_output","timestamp":1607098239,"output":"ry_count, :block_id, :build_request_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b"},{"event":"cmd_output","timestamp":1607098239,"output":"[0m\u001b[22m\n16:10:39.214 [info] Periodic from module Elixir.Block.Tasks.STMHandler.RunningState with "},{"event":"cmd_output","timestamp":1607098239,"output":"name Elixir.Block.Tasks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_"},{"event":"cmd_output","timestamp":1607098239,"output":"up\", [\"Block-Tasks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stoppi"},{"event":"cmd_output","timestamp":1607098239,"output":"ng\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"running"},{"event":"cmd_output","timestamp":1607098239,"output":"\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :sta"},{"event":"cmd_output","timestamp":1607098239,"output":"te, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098239,"output":"\n16:10:39.215 [info] Periodic from module Elixir.Block.Tasks.STMHandler.StoppingState with name El"},{"event":"cmd_output","timestamp":1607098239,"output":"ixir.Block.Tasks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", ["},{"event":"cmd_output","timestamp":1607098239,"output":"\"Block-Tasks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], co"},{"event":"cmd_output","timestamp":1607098239,"output":"oling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"stopping\", publisher_cb"},{"event":"cmd_output","timestamp":1607098239,"output":": :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_c"},{"event":"cmd_output","timestamp":1607098239,"output":"ount, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:39.226 "},{"event":"cmd_output","timestamp":1607098239,"output":"[info] Request: 'run: %{\"branch_id\" => \"7525e7c8-117b-4936-ad7a-093214a16782\", \"branch_name\" => \"ma"},{"event":"cmd_output","timestamp":1607098239,"output":"ster\", \"client_id\" => \"cdd3e52f-d2ef-4b91-8a7c-21c16b98af29\", \"commit_sha\" => \"75891a4469\", \"definit"},{"event":"cmd_output","timestamp":1607098239,"output":"ion_file\" => \"\", \"hook_id\" => \"402e8732-364b-11eb-a39b-5254005464e2\", \"label\" => \"master\", \"organiza"},{"event":"cmd_output","timestamp":1607098239,"output":"tion_id\" => \"f2e715b5-87e6-4ede-9512-de8dac0ff8ae\", \"owner\" => \"rt\", \"project_id\" => \"wf-number-test"},{"event":"cmd_output","timestamp":1607098239,"output":"-1\", \"repo_name\" => \"20_workflow_builder\", \"request_token\" => \"402e799a-364b-11eb-b1db-5254005464e2\""},{"event":"cmd_output","timestamp":1607098239,"output":", \"requester_id\" => \"f41455ea-c9be-4083-8bdb-a555149fc1ee\", \"service\" => \"local\", \"snapshot_id\" => \""},{"event":"cmd_output","timestamp":1607098239,"output":"\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" ="},{"event":"cmd_output","timestamp":1607098239,"output":"> \"6a04e0f8-3508-47ba-8f2c-6fd017581ca4\"}\n\u001b[0m\u001b[22m\n16:10:39.255 [info] ppl_id: 8fc7b9a0-a6fb-478"},{"event":"cmd_output","timestamp":1607098239,"output":"1-83ab-ee81457901dd, type: PplRequests, event: persisted schedule request with request_token: 402e79"},{"event":"cmd_output","timestamp":1607098239,"output":"9a-364b-11eb-b1db-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_resp"},{"event":"cmd_output","timestamp":1607098239,"output":"onse/2(L55), \n\u001b[0m\u001b[22m\n16:10:39.259 [info] ppl_id: 8fc7b9a0-a6fb-4781-83ab-ee81457901dd, type: P"},{"event":"cmd_output","timestamp":1607098239,"output":"pls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.Ppls"},{"event":"cmd_output","timestamp":1607098239,"output":"Queries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:39.264 [info] Project wf-number-test-1 and bra"},{"event":"cmd_output","timestamp":1607098239,"output":"nch masterlatest_wf details updated: \"wf_id: 6a04e0f8-3508-47ba-8f2c-6fd017581ca4, wf_number: 1\"\n\u001b["},{"event":"cmd_output","timestamp":1607098239,"output":"0m\u001b[22m\n16:10:39.267 [info] Persisted ppl_sub_init for pipeline with ppl_id: 8fc7b9a0-a6fb-4781-83"},{"event":"cmd_output","timestamp":1607098239,"output":"ab-ee81457901dd: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeli"},{"event":"cmd_output","timestamp":1607098239,"output":"ne_sub_inits\">, compile_task_id: nil, error_description: nil, id: 92, in_scheduling: false, init_typ"},{"event":"cmd_output","timestamp":1607098239,"output":"e: \"regular\", inserted_at: ~N[2020-12-04 16:10:39.265990], pipeline_requests: #Ecto.Association.NotL"},{"event":"cmd_output","timestamp":1607098239,"output":"oaded, ppl_id: \"8fc7b9a0-a6fb-4781-83ab-ee81457901dd\","},{"event":"cmd_output","timestamp":1607098239,"output":" recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, termi"},{"event":"cmd_output","timestamp":1607098239,"output":"nate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:39.266003]}\n\u001b[0m\u001b[22m\n16:10:39.287 [info] "},{"event":"cmd_output","timestamp":1607098239,"output":" ppl_id: 8fc7b9a0-a6fb-4781-83ab-ee81457901dd, type: PplRequests, event: persisted source_args for p"},{"event":"cmd_output","timestamp":1607098239,"output":"ipeline: 8fc7b9a0-a6fb-4781-83ab-ee81457901dd, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueri"},{"event":"cmd_output","timestamp":1607098239,"output":"es.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:39.292 [info] Request: 'run: %{\"auto_promoted\" => false"},{"event":"cmd_output","timestamp":1607098239,"output":", \"branch_id\" => \"7525e7c8-117b-4936-ad7a-093214a16782\", \"branch_name\" => \"master\", \"client_id\" => \""},{"event":"cmd_output","timestamp":1607098239,"output":"cdd3e52f-d2ef-4b91-8a7c-21c16b98af29\", \"commit_sha\" => \"75891a4469\", \"definition_file\" => \"\", \"env_v"},{"event":"cmd_output","timestamp":1607098239,"output":"ars\" => [], \"extension_of\" => \"8fc7b9a0-a6fb-4781-83ab-ee81457901dd\", \"file_name\" => \"/foo/bar/test."},{"event":"cmd_output","timestamp":1607098239,"output":"yml\", \"hook_id\" => \"402e8732-364b-11eb-a39b-5254005464e2\", \"label\" => \"master\", \"organization_id\" =>"},{"event":"cmd_output","timestamp":1607098239,"output":" \"f2e715b5-87e6-4ede-9512-de8dac0ff8ae\", \"owner\" => \"rt\", \"prev_ppl_artefact_ids\" => [\"8fc7b9a0-a6fb"},{"event":"cmd_output","timestamp":1607098239,"output":"-4781-83ab-ee81457901dd\"], \"project_id\" => \"wf-number-test-1\", \"promoter_id\" => \"\", \"repo_name\" => \""},{"event":"cmd_output","timestamp":1607098239,"output":"20_workflow_builder\", \"request_token\" => \"4b173de6-a966-44d9-a370-e6bd1f1e5d28\", \"requester_id\" => \""},{"event":"cmd_output","timestamp":1607098239,"output":"f41455ea-c9be-4083-8bdb-a555149fc1ee\", \"service\" => \"local\", \"snapshot_id\" => \"\", \"suppressed_attrib"},{"event":"cmd_output","timestamp":1607098239,"output":"utes\" => [\"access_token\", \"client_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"6a04e0f8-3508-47ba"},{"event":"cmd_output","timestamp":1607098239,"output":"-8f2c-6fd017581ca4\", \"wf_number\" => 1, \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:10:39.294 [info"},{"event":"cmd_output","timestamp":1607098239,"output":"] ppl_id: 8fc7b9a0-a6fb-4781-83ab-ee81457901dd, type: PplSubInits, state: fetching, event: exit_sch"},{"event":"cmd_output","timestamp":1607098239,"output":"eduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098239,"output":"10:39.296 [info] ppl_id: 27489c9b-56fb-41f7-93a1-d8d1b688f6c8, type: PplRequests, event: persisted "},{"event":"cmd_output","timestamp":1607098239,"output":"schedule request with request_token: 4b173de6-a966-44d9-a370-e6bd1f1e5d28, origin: Elixir.Ppl.PplReq"},{"event":"cmd_output","timestamp":1607098239,"output":"uests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:39.299 [info] ppl_id: 27"},{"event":"cmd_output","timestamp":1607098239,"output":"489c9b-56fb-41f7-93a1-d8d1b688f6c8, type: Ppls, state: initializing, event: initializing, recovery_c"},{"event":"cmd_output","timestamp":1607098239,"output":"ount: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:39.3"},{"event":"cmd_output","timestamp":1607098239,"output":"03 [info] Persisted ppl_sub_init for pipeline with ppl_id: 27489c9b-56fb-41f7-93a1-d8d1b688f6c8: %P"},{"event":"cmd_output","timestamp":1607098239,"output":"pl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, com"},{"event":"cmd_output","timestamp":1607098239,"output":"pile_task_id: nil, error_description: nil, id: 93, in_scheduling: false, init_type: \"regular\", inser"},{"event":"cmd_output","timestamp":1607098239,"output":"ted_at: ~N[2020-12-04 16:10:39.301110], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"27489c9b-56fb-41f7-93a1-d8d1b688f6c8\", recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098239,"output":" result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: "},{"event":"cmd_output","timestamp":1607098239,"output":"nil, updated_at: ~N[2020-12-04 16:10:39.301123]}\n\u001b[0m\u001b[22m\n16:10:39.338 [info] ppl_id: 27489c9b-5"},{"event":"cmd_output","timestamp":1607098239,"output":"6fb-41f7-93a1-d8d1b688f6c8, type: PplRequests, event: persisted source_args for pipeline: 27489c9b-5"},{"event":"cmd_output","timestamp":1607098239,"output":"6fb-41f7-93a1-d8d1b688f6c8, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2("},{"event":"cmd_output","timestamp":1607098239,"output":"L89), \n\u001b[0m\u001b[22m\n16:10:39.341 [info] Request: 'run: %{\"branch_id\" => \"5c73bddf-8e02-4c92-ac5e-c71"},{"event":"cmd_output","timestamp":1607098239,"output":"377eadeae\", \"branch_name\" => \"master\", \"client_id\" => \"0ec905ec-f755-4b76-b541-777fdfaca6c5\", \"commi"},{"event":"cmd_output","timestamp":1607098239,"output":"t_sha\" => \"75891a4469\", \"definition_file\" => \"\", \"hook_id\" => \"403ef5b8-364b-11eb-932a-5254005464e2\""},{"event":"cmd_output","timestamp":1607098239,"output":", \"label\" => \"master\", \"organization_id\" => \"eda93824-8999-4936-90a8-6367f24a16dd\", \"owner\" => \"rt\","},{"event":"cmd_output","timestamp":1607098239,"output":" \"project_id\" => \"wf-number-test-1\", \"repo_name\" => \"20_workflow_builder\", \"request_token\" => \"403ed"},{"event":"cmd_output","timestamp":1607098239,"output":"524-364b-11eb-b4d5-5254005464e2\", \"requester_id\" => \"63189e5a-75c1-4b30-87c6-0627dc1eb05f\", \"service"},{"event":"cmd_output","timestamp":1607098239,"output":"\" => \"local\", \"snapshot_id\" => \"\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"tr"},{"event":"cmd_output","timestamp":1607098239,"output":"iggered_by\" => \"hook\", \"wf_id\" => \"1f1752d1-3411-49c1-8bc7-e731913c8599\"}\n\u001b[0m\u001b[22m\n16:10:39.342 ["},{"event":"cmd_output","timestamp":1607098239,"output":"info] ppl_id: 27489c9b-56fb-41f7-93a1-d8d1b688f6c8, type: PplSubInits, state: fetching, event: exit"},{"event":"cmd_output","timestamp":1607098239,"output":"_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098239,"output":"\n16:10:39.349 [info] ppl_id: 8fc7b9a0-a6fb-4781-83ab-ee81457901dd, type: PplSubInits, state: regula"},{"event":"cmd_output","timestamp":1607098239,"output":"r_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1"},{"event":"cmd_output","timestamp":1607098239,"output":"(L90), \n\u001b[0m\u001b[22m\n16:10:39.385 [info] ppl_id: 58163827-b697-4c7b-8faf-bd62f7c7a2d9, type: PplRequ"},{"event":"cmd_output","timestamp":1607098239,"output":"ests, event: persisted schedule request with request_token: 403ed524-364b-11eb-b4d5-5254005464e2, or"},{"event":"cmd_output","timestamp":1607098239,"output":"igin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:39"},{"event":"cmd_output","timestamp":1607098239,"output":".390 [info] ppl_id: 58163827-b697-4c7b-8faf-bd62f7c7a2d9, type: Ppls, state: initializing, event: i"},{"event":"cmd_output","timestamp":1607098239,"output":"nitializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), "},{"event":"cmd_output","timestamp":1607098239,"output":"\n\u001b[0m\u001b[22m\n16:10:39.394 [info] Project wf-number-test-1 and branch masterlatest_wf details update"},{"event":"cmd_output","timestamp":1607098239,"output":"d: \"wf_id: 1f1752d1-3411-49c1-8bc7-e731913c8599, wf_number: 2\"\n\u001b[0m\u001b[22m\n16:10:39.396 [info] Pers"},{"event":"cmd_output","timestamp":1607098239,"output":"isted ppl_sub_init for pipeline with ppl_id: 58163827-b697-4c7b-8faf-bd62f7c7a2d9: %Ppl.PplSubInits."},{"event":"cmd_output","timestamp":1607098239,"output":"Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: n"},{"event":"cmd_output","timestamp":1607098239,"output":"il, error_description: nil, id: 94, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020"},{"event":"cmd_output","timestamp":1607098239,"output":"-12-04 16:10:39.394562], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"58163827-b697-4c7b-8faf-bd62f7c7a2d9\", recovery_count: 0, result: nil, r"},{"event":"cmd_output","timestamp":1607098239,"output":"esult_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at"},{"event":"cmd_output","timestamp":1607098239,"output":": ~N[2020-12-04 16:10:39.394574]}\n\u001b[0m\u001b[22m\n16:10:39.401 [info] ppl_id: 27489c9b-56fb-41f7-93a1-d"},{"event":"cmd_output","timestamp":1607098239,"output":"8d1b688f6c8, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098239,"output":"in: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:39.413 [info] ppl_id: 581638"},{"event":"cmd_output","timestamp":1607098239,"output":"27-b697-4c7b-8faf-bd62f7c7a2d9, type: PplRequests, event: persisted source_args for pipeline: 581638"},{"event":"cmd_output","timestamp":1607098239,"output":"27-b697-4c7b-8faf-bd62f7c7a2d9, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_sourc"},{"event":"cmd_output","timestamp":1607098239,"output":"e/2(L89), \n\u001b[0m\u001b[22m\n16:10:39.425 [info] ppl_id: 58163827-b697-4c7b-8faf-bd62f7c7a2d9, type: PplS"},{"event":"cmd_output","timestamp":1607098239,"output":"ubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl."},{"event":"cmd_output","timestamp":1607098239,"output":"log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:39.451 [info] ppl_id: 8fc7b9a0-a6fb-4781-83ab-ee8145790"},{"event":"cmd_output","timestamp":1607098239,"output":"1dd, type: PplRequests, event: persisted definition for request with request_token: 402e799a-364b-11"},{"event":"cmd_output","timestamp":1607098239,"output":"eb-b1db-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L7"},{"event":"cmd_output","timestamp":1607098239,"output":"6), \n\u001b[0m\u001b[22m\n16:10:39.457 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ect"},{"event":"cmd_output","timestamp":1607098239,"output":"o.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:10:39.455004], name: \"master-.se"},{"event":"cmd_output","timestamp":1607098239,"output":"maphore/semaphore.yml\", organization_id: \"f2e715b5-87e6-4ede-9512-de8dac0ff8ae\", project_id: \"wf-num"},{"event":"cmd_output","timestamp":1607098239,"output":"ber-test-1\", queue_id: \"bf1427ac-8ddc-46c3-82b4-1afd2e1f7066\", scope: \"project\", updated_at: ~N[2020"},{"event":"cmd_output","timestamp":1607098239,"output":"-12-04 16:10:39.455017], user_generated: false}}\n\u001b[0m\u001b[22m\n16:10:39.472 [info] ppl_id: not_availa"},{"event":"cmd_output","timestamp":1607098239,"output":"ble, event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b"},{"event":"cmd_output","timestamp":1607098239,"output":"[0m\u001b[22m\n16:10:39.472 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInit"},{"event":"cmd_output","timestamp":1607098239,"output":"State.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:39.472 [info] ppl_id: 8fc7b9a0-a6fb-4781-83ab-ee81457901d"},{"event":"cmd_output","timestamp":1607098239,"output":"d, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098239,"output":"Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:39.472 [info]"},{"event":"cmd_output","timestamp":1607098239,"output":" ppl_id: 8fc7b9a0-a6fb-4781-83ab-ee81457901dd, type: PplBlocks, block_index: 1, state: initializing"},{"event":"cmd_output","timestamp":1607098239,"output":", event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_"},{"event":"cmd_output","timestamp":1607098239,"output":"ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:39.476 [info] ppl_id: 8fc7b9a0-a6fb-4781-83ab-ee81457901dd, type: P"},{"event":"cmd_output","timestamp":1607098239,"output":"plSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098239,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:39.480 [info] ppl_id: 58163827-b697-4c7b"},{"event":"cmd_output","timestamp":1607098239,"output":"-8faf-bd62f7c7a2d9, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: "},{"event":"cmd_output","timestamp":1607098239,"output":"0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:39.489 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098239,"output":" 8fc7b9a0-a6fb-4781-83ab-ee81457901dd, type: PplBlocks, block_index: 0, state: waiting, event: exit_"},{"event":"cmd_output","timestamp":1607098239,"output":"scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098239,"output":"16:10:39.494 [info] ppl_id: 8fc7b9a0-a6fb-4781-83ab-ee81457901dd, type: Ppls, state: pending, event"},{"event":"cmd_output","timestamp":1607098239,"output":": exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098239,"output":"\u001b[22m\n16:10:39.508 [info] ppl_id: 8fc7b9a0-a6fb-4781-83ab-ee81457901dd, type: Ppls, state: queuing"},{"event":"cmd_output","timestamp":1607098239,"output":", event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90),"},{"event":"cmd_output","timestamp":1607098239,"output":" \n\u001b[0m\u001b[22m\n16:10:39.508 [info] ppl_id: 8fc7b9a0-a6fb-4781-83ab-ee81457901dd, type: PplBlocks, bl"},{"event":"cmd_output","timestamp":1607098239,"output":"ock_index: 1, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.I"},{"event":"cmd_output","timestamp":1607098239,"output":"mpl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:39.524 [info] ppl_id: 8fc7b9a0-a6fb-4781-83ab-ee814"},{"event":"cmd_output","timestamp":1607098239,"output":"57901dd, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loope"},{"event":"cmd_output","timestamp":1607098239,"output":"r.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:39.536 [info] ppl_id: 27489c9b-56fb-41f7-93a"},{"event":"cmd_output","timestamp":1607098239,"output":"1-d8d1b688f6c8, type: PplRequests, event: persisted definition for request with request_token: 4b173"},{"event":"cmd_output","timestamp":1607098239,"output":"de6-a966-44d9-a370-e6bd1f1e5d28, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_defi"},{"event":"cmd_output","timestamp":1607098239,"output":"nition/3(L76), \n\u001b[0m\u001b[22m\n16:10:39.541 [info] PplBlocks WaitingState STM is scheduling block 0 fr"},{"event":"cmd_output","timestamp":1607098239,"output":"om pipeline: \"8fc7b9a0-a6fb-4781-83ab-ee81457901dd\"\n\u001b[0m\u001b[22m\n16:10:39.548 [info] Queue persisted"},{"event":"cmd_output","timestamp":1607098239,"output":": {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N"},{"event":"cmd_output","timestamp":1607098239,"output":"[2020-12-04 16:10:39.546802], name: \"master-/foo/bar/test.yml\", organization_id: \"f2e715b5-87e6-4ede"},{"event":"cmd_output","timestamp":1607098239,"output":"-9512-de8dac0ff8ae\", project_id: \"wf-number-test-1\", queue_id: \"f17e9b57-b1ec-4436-88ff-a428e0be0621"},{"event":"cmd_output","timestamp":1607098239,"output":"\", scope: \"project\", updated_at: ~N[2020-12-04 16:10:39.546832], user_generated: false}}\n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098239,"output":"\n16:10:39.558 [info] block_id: 46dd9526-3715-424b-abbf-bd1242491bf3, type: BlockRequests, event: pe"},{"event":"cmd_output","timestamp":1607098239,"output":"rsisted block run request from ppl 8fc7b9a0-a6fb-4781-83ab-ee81457901dd for block 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098239,"output":"Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:39.563 [i"},{"event":"cmd_output","timestamp":1607098239,"output":"nfo] block_id: 46dd9526-3715-424b-abbf-bd1242491bf3, type: Blocks, state: initializing, event: init"},{"event":"cmd_output","timestamp":1607098239,"output":"ializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098239,"output":"22m\n16:10:39.563 [info] ppl_id: not_available, event: created, origin: Elixir.Ppl.PplSubInits.STMH"},{"event":"cmd_output","timestamp":1607098239,"output":"andler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:39.563 [info] event: created, origin: E"},{"event":"cmd_output","timestamp":1607098239,"output":"lixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:39.563 [info] "},{"event":"cmd_output","timestamp":1607098239,"output":" ppl_id: 27489c9b-56fb-41f7-93a1-d8d1b688f6c8, type: PplBlocks, block_index: 0, state: initializing,"},{"event":"cmd_output","timestamp":1607098239,"output":" event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_o"},{"event":"cmd_output","timestamp":1607098239,"output":"k?/1(L105), \n\u001b[0m\u001b[22m\n16:10:39.563 [info] ppl_id: 27489c9b-56fb-41f7-93a1-d8d1b688f6c8, type: Pp"},{"event":"cmd_output","timestamp":1607098239,"output":"lBlocks, block_index: 1, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl."},{"event":"cmd_output","timestamp":1607098239,"output":"PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:39.567 [info] Block 0 o"},{"event":"cmd_output","timestamp":1607098239,"output":"f pipeline with id: 8fc7b9a0-a6fb-4781-83ab-ee81457901dd scheduled in block service with id: : \"46dd"},{"event":"cmd_output","timestamp":1607098239,"output":"9526-3715-424b-abbf-bd1242491bf3\"\n\u001b[0m\u001b[22m\n16:10:39.568 [info] ppl_id: 27489c9b-56fb-41f7-93a1-d"},{"event":"cmd_output","timestamp":1607098239,"output":"8d1b688f6c8, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count:"},{"event":"cmd_output","timestamp":1607098239,"output":" 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:39.571 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098239,"output":": 8fc7b9a0-a6fb-4781-83ab-ee81457901dd, type: PplBlocks, block_index: 0, state: running, event: exit"},{"event":"cmd_output","timestamp":1607098239,"output":"_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098239,"output":"\n16:10:39.583 [info] block_id: 46dd9526-3715-424b-abbf-bd1242491bf3, type: BlockRequests, event: pe"},{"event":"cmd_output","timestamp":1607098239,"output":"rsisted build and sub_ppl details for block_request: 46dd9526-3715-424b-abbf-bd1242491bf3, origin: E"},{"event":"cmd_output","timestamp":1607098239,"output":"lixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:39.587 "},{"event":"cmd_output","timestamp":1607098239,"output":"[info] ppl_id: 27489c9b-56fb-41f7-93a1-d8d1b688f6c8, type: PplBlocks, block_index: 0, state: waitin"},{"event":"cmd_output","timestamp":1607098239,"output":"g, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90)"},{"event":"cmd_output","timestamp":1607098239,"output":", \n\u001b[0m\u001b[22m\n16:10:39.587 [info] block_id: 46dd9526-3715-424b-abbf-bd1242491bf3, type: Tasks, sta"},{"event":"cmd_output","timestamp":1607098239,"output":"te: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingS"},{"event":"cmd_output","timestamp":1607098239,"output":"tate.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:39.588 [info] ppl_id: 27489c9b-56fb-41f7-93a1-d8d1b688f6c8"},{"event":"cmd_output","timestamp":1607098239,"output":", type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.I"},{"event":"cmd_output","timestamp":1607098239,"output":"mpl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:39.594 [info] block_id: 46dd9526-3715-424b-abbf-bd1"},{"event":"cmd_output","timestamp":1607098239,"output":"242491bf3, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098239,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:39.602 [info] ppl_id: 27489c9b-56fb-41f7"},{"event":"cmd_output","timestamp":1607098239,"output":"-93a1-d8d1b688f6c8, type: PplBlocks, block_index: 1, state: waiting, event: exit_scheduling, recover"},{"event":"cmd_output","timestamp":1607098239,"output":"y_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:39.607 [info]"},{"event":"cmd_output","timestamp":1607098239,"output":" ppl_id: 27489c9b-56fb-41f7-93a1-d8d1b688f6c8, type: Ppls, state: queuing, event: exit_scheduling, "},{"event":"cmd_output","timestamp":1607098239,"output":"recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:39.627"},{"event":"cmd_output","timestamp":1607098239,"output":" [info] block_id: 46dd9526-3715-424b-abbf-bd1242491bf3, type: Tasks, state: running, event: exit_sc"},{"event":"cmd_output","timestamp":1607098239,"output":"heduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098239,"output":":10:39.631 [info] ppl_id: 27489c9b-56fb-41f7-93a1-d8d1b688f6c8, type: Ppls, state: running, event: "},{"event":"cmd_output","timestamp":1607098239,"output":"exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098239,"output":"22m\n16:10:39.636 [info] ppl_id: 58163827-b697-4c7b-8faf-bd62f7c7a2d9, type: PplRequests, event: pe"},{"event":"cmd_output","timestamp":1607098239,"output":"rsisted definition for request with request_token: 403ed524-364b-11eb-b4d5-5254005464e2, origin: Eli"},{"event":"cmd_output","timestamp":1607098239,"output":"xir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:39.647 [in"},{"event":"cmd_output","timestamp":1607098239,"output":"fo] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"27489c9b-56fb-41f7-93a1-d8d1b6"},{"event":"cmd_output","timestamp":1607098239,"output":"88f6c8\"\n\u001b[0m\u001b[22m\n16:10:39.650 [info] ppl_id: not_available, event: created, origin: Elixir.Ppl.P"},{"event":"cmd_output","timestamp":1607098239,"output":"plSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:39.650 [info] event: cre"},{"event":"cmd_output","timestamp":1607098239,"output":"ated, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10"},{"event":"cmd_output","timestamp":1607098239,"output":":39.650 [info] ppl_id: 58163827-b697-4c7b-8faf-bd62f7c7a2d9, type: PplBlocks, block_index: 0, state"},{"event":"cmd_output","timestamp":1607098239,"output":": initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.Regular"},{"event":"cmd_output","timestamp":1607098239,"output":"InitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:39.650 [info] ppl_id: 58163827-b697-4c7b-8faf-bd62f7c"},{"event":"cmd_output","timestamp":1607098239,"output":"7a2d9, type: PplBlocks, block_index: 1, state: initializing, event: created, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098239,"output":"in: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:39.659 [i"},{"event":"cmd_output","timestamp":1607098239,"output":"nfo] ppl_id: 58163827-b697-4c7b-8faf-bd62f7c7a2d9, type: PplSubInits, state: done, result: passed, "},{"event":"cmd_output","timestamp":1607098239,"output":"event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \r"},{"event":"cmd_output","timestamp":1607098239,"output":"\n\u001b[0m\u001b[22m\n16:10:39.668 [info] block_id: 46dd9526-3715-424b-abbf-bd1242491bf3, type: Tasks, state:"},{"event":"cmd_output","timestamp":1607098239,"output":" done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1("},{"event":"cmd_output","timestamp":1607098239,"output":"L90), \n\u001b[0m\u001b[22m\n16:10:39.671 [info] block_id: d5c81813-ecf3-4dba-ad05-71720d88a26d, type: BlockR"},{"event":"cmd_output","timestamp":1607098239,"output":"equests, event: persisted block run request from ppl 27489c9b-56fb-41f7-93a1-d8d1b688f6c8 for block "},{"event":"cmd_output","timestamp":1607098239,"output":"0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098239,"output":"m\n16:10:39.675 [info] ppl_id: 58163827-b697-4c7b-8faf-bd62f7c7a2d9, type: PplBlocks, block_index: "},{"event":"cmd_output","timestamp":1607098239,"output":"0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_sta"},{"event":"cmd_output","timestamp":1607098239,"output":"te_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:39.678 [info] block_id: d5c81813-ecf3-4dba-ad05-71720d88a26d, "},{"event":"cmd_output","timestamp":1607098239,"output":"type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Bloc"},{"event":"cmd_output","timestamp":1607098239,"output":"ks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:39.682 [info] ppl_id: 58163827-b697-4c7b-8"},{"event":"cmd_output","timestamp":1607098239,"output":"faf-bd62f7c7a2d9, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098239,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:39.682 [info] Block 0 of pipeline w"},{"event":"cmd_output","timestamp":1607098239,"output":"ith id: 27489c9b-56fb-41f7-93a1-d8d1b688f6c8 scheduled in block service with id: : \"d5c81813-ecf3-4d"},{"event":"cmd_output","timestamp":1607098239,"output":"ba-ad05-71720d88a26d\"\n\u001b[0m\u001b[22m\n16:10:39.691 [info] ppl_id: 58163827-b697-4c7b-8faf-bd62f7c7a2d9,"},{"event":"cmd_output","timestamp":1607098239,"output":" type: PplBlocks, block_index: 1, state: waiting, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098239,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:39.692 [info] block_id: 46dd952"},{"event":"cmd_output","timestamp":1607098239,"output":"6-3715-424b-abbf-bd1242491bf3, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098239,"output":" origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:39.697 [info] ppl_id: 2"},{"event":"cmd_output","timestamp":1607098239,"output":"7489c9b-56fb-41f7-93a1-d8d1b688f6c8, type: PplBlocks, block_index: 0, state: running, event: exit_sc"},{"event":"cmd_output","timestamp":1607098239,"output":"heduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098239,"output":":10:39.699 [info] block_id: d5c81813-ecf3-4dba-ad05-71720d88a26d, type: BlockRequests, event: persi"},{"event":"cmd_output","timestamp":1607098239,"output":"sted build and sub_ppl details for block_request: d5c81813-ecf3-4dba-ad05-71720d88a26d, origin: Elix"},{"event":"cmd_output","timestamp":1607098239,"output":"ir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:39.702 [in"},{"event":"cmd_output","timestamp":1607098239,"output":"fo] block_id: d5c81813-ecf3-4dba-ad05-71720d88a26d, type: Tasks, state: pending, event: created, re"},{"event":"cmd_output","timestamp":1607098239,"output":"covery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098239,"output":"2m\n16:10:39.710 [info] ppl_id: 58163827-b697-4c7b-8faf-bd62f7c7a2d9, type: Ppls, state: queuing, e"},{"event":"cmd_output","timestamp":1607098239,"output":"vent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n"},{"event":"cmd_output","timestamp":1607098239,"output":"\u001b[0m\u001b[22m\n16:10:39.710 [info] block_id: d5c81813-ecf3-4dba-ad05-71720d88a26d, type: Blocks, state:"},{"event":"cmd_output","timestamp":1607098239,"output":" running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change"},{"event":"cmd_output","timestamp":1607098239,"output":"/1(L90), \n\u001b[0m\u001b[22m\n16:10:39.711 [info] ppl_id: 8fc7b9a0-a6fb-4781-83ab-ee81457901dd, block_id: 4"},{"event":"cmd_output","timestamp":1607098239,"output":"6dd9526-3715-424b-abbf-bd1242491bf3, type: PplBlocks, block_index: 0, state: done, result: failed, e"},{"event":"cmd_output","timestamp":1607098239,"output":"vent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n"},{"event":"cmd_output","timestamp":1607098239,"output":"\u001b[0m\u001b[22m\n16:10:39.725 [info] PplBlocks WaitingState STM is scheduling block 1 from pipeline: \"8fc"},{"event":"cmd_output","timestamp":1607098239,"output":"7b9a0-a6fb-4781-83ab-ee81457901dd\"\n\u001b[0m\u001b[22m\n16:10:39.732 [info] ppl_id: 8fc7b9a0-a6fb-4781-83ab-"},{"event":"cmd_output","timestamp":1607098239,"output":"ee81457901dd, type: PplBlocks, block_index: 1, state: done, result: canceled, event: exit_scheduling"},{"event":"cmd_output","timestamp":1607098239,"output":", recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:39.7"},{"event":"cmd_output","timestamp":1607098239,"output":"52 [info] block_id: d5c81813-ecf3-4dba-ad05-71720d88a26d, type: Tasks, state: running, event: exit_"},{"event":"cmd_output","timestamp":1607098239,"output":"scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098239,"output":"16:10:39.756 [info] ppl_id: 8fc7b9a0-a6fb-4781-83ab-ee81457901dd, type: Ppls, state: done, result: "},{"event":"cmd_output","timestamp":1607098239,"output":"failed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1"},{"event":"cmd_output","timestamp":1607098239,"output":"(L90), \n\u001b[0m\u001b[22m\n16:10:39.782 [info] block_id: d5c81813-ecf3-4dba-ad05-71720d88a26d, type: Tasks"},{"event":"cmd_output","timestamp":1607098239,"output":", state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098239,"output":"hange/1(L90), \n\u001b[0m\u001b[22m\n16:10:39.792 [info] block_id: d5c81813-ecf3-4dba-ad05-71720d88a26d, type"},{"event":"cmd_output","timestamp":1607098239,"output":": Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098239,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:39.804 [info] ppl_id: 27489c9b-56fb-41f7-93a1-d8d1b688f6c8"},{"event":"cmd_output","timestamp":1607098239,"output":", block_id: d5c81813-ecf3-4dba-ad05-71720d88a26d, type: PplBlocks, block_index: 0, state: done, resu"},{"event":"cmd_output","timestamp":1607098239,"output":"lt: failed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chan"},{"event":"cmd_output","timestamp":1607098239,"output":"ge/1(L90), \n\u001b[0m\u001b[22m\n16:10:39.812 [info] PplBlocks WaitingState STM is scheduling block 1 from p"},{"event":"cmd_output","timestamp":1607098239,"output":"ipeline: \"27489c9b-56fb-41f7-93a1-d8d1b688f6c8\"\n\u001b[0m\u001b[22m\n16:10:39.821 [info] ppl_id: 27489c9b-56"},{"event":"cmd_output","timestamp":1607098239,"output":"fb-41f7-93a1-d8d1b688f6c8, type: PplBlocks, block_index: 1, state: done, result: canceled, event: ex"},{"event":"cmd_output","timestamp":1607098239,"output":"it_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098239,"output":"m\n16:10:39.831 [info] ppl_id: 27489c9b-56fb-41f7-93a1-d8d1b688f6c8, type: Ppls, state: done, resul"},{"event":"cmd_output","timestamp":1607098239,"output":"t: failed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chang"},{"event":"cmd_output","timestamp":1607098239,"output":"e/1(L90), \n\u001b[0m\u001b[22m\n16:10:39.866 [info] ppl_id: 58163827-b697-4c7b-8faf-bd62f7c7a2d9, type: Ppls"},{"event":"cmd_output","timestamp":1607098239,"output":", state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_stat"},{"event":"cmd_output","timestamp":1607098239,"output":"e_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:39.873 [info] PplBlocks WaitingState STM is scheduling block 0 "},{"event":"cmd_output","timestamp":1607098239,"output":"from pipeline: \"58163827-b697-4c7b-8faf-bd62f7c7a2d9\"\n\u001b[0m\u001b[22m\n16:10:39.878 [info] block_id: d94"},{"event":"cmd_output","timestamp":1607098239,"output":"8dc10-c7b4-4cdc-baa5-b304fd9588c2, type: BlockRequests, event: persisted block run request from ppl "},{"event":"cmd_output","timestamp":1607098239,"output":"58163827-b697-4c7b-8faf-bd62f7c7a2d9 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequ"},{"event":"cmd_output","timestamp":1607098239,"output":"estsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:39.880 [info] block_id: d948dc10-c7b4-4cdc-"},{"event":"cmd_output","timestamp":1607098239,"output":"baa5-b304fd9588c2, type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098239,"output":": Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:39.882 [info] Block 0 o"},{"event":"cmd_output","timestamp":1607098239,"output":"f pipeline with id: 58163827-b697-4c7b-8faf-bd62f7c7a2d9 scheduled in block service with id: : \"d948"},{"event":"cmd_output","timestamp":1607098239,"output":"dc10-c7b4-4cdc-baa5-b304fd9588c2\"\n\u001b[0m\u001b[22m\n16:10:39.886 [info] ppl_id: 58163827-b697-4c7b-8faf-b"},{"event":"cmd_output","timestamp":1607098239,"output":"d62f7c7a2d9, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count"},{"event":"cmd_output","timestamp":1607098239,"output":": 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:39.889 [info] block"},{"event":"cmd_output","timestamp":1607098239,"output":"_id: d948dc10-c7b4-4cdc-baa5-b304fd9588c2, type: BlockRequests, event: persisted build and sub_ppl d"},{"event":"cmd_output","timestamp":1607098239,"output":"etails for block_request: d948dc10-c7b4-4cdc-baa5-b304fd9588c2, origin: Elixir.Block.BlockRequests.M"},{"event":"cmd_output","timestamp":1607098239,"output":"odel.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:39.891 [info] block_id: d948dc10-"},{"event":"cmd_output","timestamp":1607098239,"output":"c7b4-4cdc-baa5-b304fd9588c2, type: Tasks, state: pending, event: created, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098239,"output":" Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:39.894 [info] "},{"event":"cmd_output","timestamp":1607098239,"output":" block_id: d948dc10-c7b4-4cdc-baa5-b304fd9588c2, type: Blocks, state: running, event: exit_schedulin"},{"event":"cmd_output","timestamp":1607098239,"output":"g, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:39."},{"event":"cmd_output","timestamp":1607098239,"output":"918 [info] block_id: d948dc10-c7b4-4cdc-baa5-b304fd9588c2, type: Tasks, state: running, event: exit"},{"event":"cmd_output","timestamp":1607098240,"output":"_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098240,"output":"\n16:10:40.000 [info] block_id: d948dc10-c7b4-4cdc-baa5-b304fd9588c2, type: Tasks, state: done, even"},{"event":"cmd_output","timestamp":1607098240,"output":"t: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098240,"output":"m\u001b[22m\n16:10:40.013 [info] block_id: d948dc10-c7b4-4cdc-baa5-b304fd9588c2, type: Blocks, state: do"},{"event":"cmd_output","timestamp":1607098240,"output":"ne, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90"},{"event":"cmd_output","timestamp":1607098240,"output":"), \n\u001b[0m\u001b[22m\n16:10:40.020 [info] ppl_id: 58163827-b697-4c7b-8faf-bd62f7c7a2d9, block_id: d948dc1"},{"event":"cmd_output","timestamp":1607098240,"output":"0-c7b4-4cdc-baa5-b304fd9588c2, type: PplBlocks, block_index: 0, state: done, result: failed, event: "},{"event":"cmd_output","timestamp":1607098240,"output":"exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098240,"output":"22m\n16:10:40.025 [info] PplBlocks WaitingState STM is scheduling block 1 from pipeline: \"58163827-"},{"event":"cmd_output","timestamp":1607098240,"output":"b697-4c7b-8faf-bd62f7c7a2d9\"\n\u001b[0m\u001b[22m\n16:10:40.032 [info] ppl_id: 58163827-b697-4c7b-8faf-bd62f7"},{"event":"cmd_output","timestamp":1607098240,"output":"c7a2d9, type: PplBlocks, block_index: 1, state: done, result: canceled, event: exit_scheduling, reco"},{"event":"cmd_output","timestamp":1607098240,"output":"very_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:40.048 [in"},{"event":"cmd_output","timestamp":1607098240,"output":"fo] ppl_id: 58163827-b697-4c7b-8faf-bd62f7c7a2d9, type: Ppls, state: done, result: failed, event: e"},{"event":"cmd_output","timestamp":1607098240,"output":"xit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098240,"output":"2m\n16:10:40.140 [info] Request: 'partial_rebuild', request: %{ppl_id: \"58163827-b697-4c7b-8faf-bd6"},{"event":"cmd_output","timestamp":1607098240,"output":"2f7c7a2d9\", request_token: \"a4cf9e93-44ea-4970-bb66-43cdd2767a3e\", user_id: \"\"}\n\u001b[0m\u001b[22m\n16:10:40"},{"event":"cmd_output","timestamp":1607098240,"output":".143 [info] ppl_id: 316b8600-0017-4651-81e4-8afa7f715e68, type: PplRequests, event: persisted sched"},{"event":"cmd_output","timestamp":1607098240,"output":"ule request with request_token: a4cf9e93-44ea-4970-bb66-43cdd2767a3e, origin: Elixir.Ppl.PplRequests"},{"event":"cmd_output","timestamp":1607098240,"output":".Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:40.145 [info] ppl_id: 316b860"},{"event":"cmd_output","timestamp":1607098240,"output":"0-0017-4651-81e4-8afa7f715e68, type: Ppls, state: initializing, event: initializing, recovery_count:"},{"event":"cmd_output","timestamp":1607098240,"output":" 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:40.149 [i"},{"event":"cmd_output","timestamp":1607098240,"output":"nfo] Persisted ppl_sub_init for pipeline with ppl_id: 316b8600-0017-4651-81e4-8afa7f715e68: %Ppl.Pp"},{"event":"cmd_output","timestamp":1607098240,"output":"lSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_"},{"event":"cmd_output","timestamp":1607098240,"output":"task_id: nil, error_description: nil, id: 95, in_scheduling: false, init_type: \"rebuild\", inserted_a"},{"event":"cmd_output","timestamp":1607098240,"output":"t: ~N[2020-12-04 16:10:40.148755], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"316b8600-0017-4651-81e4-8afa7f715e68\", recovery_count: 0, resu"},{"event":"cmd_output","timestamp":1607098240,"output":"lt: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, "},{"event":"cmd_output","timestamp":1607098240,"output":"updated_at: ~N[2020-12-04 16:10:40.148762]}\n\u001b[0m\u001b[22m\n16:10:40.163 [info] Request: 'run: %{\"branc"},{"event":"cmd_output","timestamp":1607098240,"output":"h_id\" => \"bafc3786-431d-4cf5-89a5-6627292fe1c2\", \"branch_name\" => \"master\", \"client_id\" => \"aeb9d82e"},{"event":"cmd_output","timestamp":1607098240,"output":"-f69e-42cd-8d5f-805575ed014e\", \"commit_sha\" => \"75891a4469\", \"definition_file\" => \"\", \"hook_id\" => \""},{"event":"cmd_output","timestamp":1607098240,"output":"40bd9800-364b-11eb-bb6f-5254005464e2\", \"label\" => \"master\", \"organization_id\" => \"e16db71c-662d-466a"},{"event":"cmd_output","timestamp":1607098240,"output":"-9cfa-d19381184205\", \"owner\" => \"rt\", \"project_id\" => \"wf-number-test-1\", \"repo_name\" => \"20_workflo"},{"event":"cmd_output","timestamp":1607098240,"output":"w_builder\", \"request_token\" => \"40bd8fae-364b-11eb-97a1-5254005464e2\", \"requester_id\" => \"56e63d6e-1"},{"event":"cmd_output","timestamp":1607098240,"output":"952-460e-be83-a25558fda975\", \"service\" => \"local\", \"snapshot_id\" => \"\", \"suppressed_attributes\" => ["},{"event":"cmd_output","timestamp":1607098240,"output":"\"access_token\", \"client_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"74156cb2-5e61-4896-88aa-2d3d"},{"event":"cmd_output","timestamp":1607098240,"output":"e4a559ec\"}\n\u001b[0m\u001b[22m\n16:10:40.166 [info] ppl_id: 316b8600-0017-4651-81e4-8afa7f715e68, type: PplR"},{"event":"cmd_output","timestamp":1607098240,"output":"equests, event: persisted source_args for pipeline: 316b8600-0017-4651-81e4-8afa7f715e68, origin: El"},{"event":"cmd_output","timestamp":1607098240,"output":"ixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:40.169 [info]"},{"event":"cmd_output","timestamp":1607098240,"output":" ppl_id: 316b8600-0017-4651-81e4-8afa7f715e68, type: PplSubInits, state: fetching, event: exit_sche"},{"event":"cmd_output","timestamp":1607098240,"output":"duling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098240,"output":"0:40.189 [info] ppl_id: 316b8600-0017-4651-81e4-8afa7f715e68, type: PplSubInits, state: regular_ini"},{"event":"cmd_output","timestamp":1607098240,"output":"t, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90)"},{"event":"cmd_output","timestamp":1607098240,"output":", \n\u001b[0m\u001b[22m\n16:10:40.207 [info] ppl_id: 7956799c-e6d0-4387-9717-500b725d96b9, type: PplRequests,"},{"event":"cmd_output","timestamp":1607098240,"output":" event: persisted schedule request with request_token: 40bd8fae-364b-11eb-97a1-5254005464e2, origin:"},{"event":"cmd_output","timestamp":1607098240,"output":" Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:40.212 "},{"event":"cmd_output","timestamp":1607098240,"output":"[info] ppl_id: 7956799c-e6d0-4387-9717-500b725d96b9, type: Ppls, state: initializing, event: initia"},{"event":"cmd_output","timestamp":1607098240,"output":"lizing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098240,"output":"m\u001b[22m\n16:10:40.215 [info] Project wf-number-test-1 and branch masterlatest_wf details updated: \"w"},{"event":"cmd_output","timestamp":1607098240,"output":"f_id: 74156cb2-5e61-4896-88aa-2d3de4a559ec, wf_number: 3\"\n\u001b[0m\u001b[22m\n16:10:40.216 [info] Persisted"},{"event":"cmd_output","timestamp":1607098240,"output":" ppl_sub_init for pipeline with ppl_id: 7956799c-e6d0-4387-9717-500b725d96b9: %Ppl.PplSubInits.Model"},{"event":"cmd_output","timestamp":1607098240,"output":".PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, e"},{"event":"cmd_output","timestamp":1607098240,"output":"rror_description: nil, id: 96, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-0"},{"event":"cmd_output","timestamp":1607098240,"output":"4 16:10:40.215276], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"7956799c-e6d0-4387-9717-500b725d96b9\", recovery_count: 0, result: nil, result"},{"event":"cmd_output","timestamp":1607098240,"output":"_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N["},{"event":"cmd_output","timestamp":1607098240,"output":"2020-12-04 16:10:40.215285]}\n\u001b[0m\u001b[22m\n16:10:40.219 [info] ppl_id: 316b8600-0017-4651-81e4-8afa7f"},{"event":"cmd_output","timestamp":1607098240,"output":"715e68, type: PplRequests, event: persisted definition for request with request_token: a4cf9e93-44ea"},{"event":"cmd_output","timestamp":1607098240,"output":"-4970-bb66-43cdd2767a3e, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3"},{"event":"cmd_output","timestamp":1607098240,"output":"(L76), \n\u001b[0m\u001b[22m\n16:10:40.227 [info] ppl_id: not_available, event: created, origin: Elixir.Ppl.P"},{"event":"cmd_output","timestamp":1607098240,"output":"plSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:40.227 [info] event: cre"},{"event":"cmd_output","timestamp":1607098240,"output":"ated, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10"},{"event":"cmd_output","timestamp":1607098240,"output":":40.227 [info] ppl_id: 316b8600-0017-4651-81e4-8afa7f715e68, type: PplBlocks, block_index: 0, state"},{"event":"cmd_output","timestamp":1607098240,"output":": initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.Regular"},{"event":"cmd_output","timestamp":1607098240,"output":"InitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:40.227 [info] ppl_id: 316b8600-0017-4651-81e4-8afa7f7"},{"event":"cmd_output","timestamp":1607098240,"output":"15e68, type: PplBlocks, block_index: 1, state: initializing, event: created, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098240,"output":"in: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:40.229 [i"},{"event":"cmd_output","timestamp":1607098240,"output":"nfo] ppl_id: 7956799c-e6d0-4387-9717-500b725d96b9, type: PplRequests, event: persisted source_args "},{"event":"cmd_output","timestamp":1607098240,"output":"for pipeline: 7956799c-e6d0-4387-9717-500b725d96b9, origin: Elixir.Ppl.PplRequests.Model.PplRequests"},{"event":"cmd_output","timestamp":1607098240,"output":"Queries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:40.231 [info] ppl_id: 7956799c-e6d0-4387-9717-500b"},{"event":"cmd_output","timestamp":1607098240,"output":"725d96b9, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098240,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:40.232 [info] ppl_id: 316b8600-0017"},{"event":"cmd_output","timestamp":1607098240,"output":"-4651-81e4-8afa7f715e68, type: PplSubInits, state: done, result: passed, event: exit_scheduling, rec"},{"event":"cmd_output","timestamp":1607098240,"output":"overy_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:40.233 [i"},{"event":"cmd_output","timestamp":1607098240,"output":"nfo] Request: 'run: %{\"auto_promoted\" => false, \"branch_id\" => \"bafc3786-431d-4cf5-89a5-6627292fe1c"},{"event":"cmd_output","timestamp":1607098240,"output":"2\", \"branch_name\" => \"master\", \"client_id\" => \"aeb9d82e-f69e-42cd-8d5f-805575ed014e\", \"commit_sha\" ="},{"event":"cmd_output","timestamp":1607098240,"output":"> \"75891a4469\", \"definition_file\" => \"\", \"env_vars\" => [], \"extension_of\" => \"7956799c-e6d0-4387-971"},{"event":"cmd_output","timestamp":1607098240,"output":"7-500b725d96b9\", \"file_name\" => \"/foo/bar/test.yml\", \"hook_id\" => \"40bd9800-364b-11eb-bb6f-525400546"},{"event":"cmd_output","timestamp":1607098240,"output":"4e2\", \"label\" => \"master\", \"organization_id\" => \"e16db71c-662d-466a-9cfa-d19381184205\", \"owner\" => \""},{"event":"cmd_output","timestamp":1607098240,"output":"rt\", \"prev_ppl_artefact_ids\" => [\"7956799c-e6d0-4387-9717-500b725d96b9\"], \"project_id\" => \"wf-number"},{"event":"cmd_output","timestamp":1607098240,"output":"-test-1\", \"promoter_id\" => \"\", \"repo_name\" => \"20_workflow_builder\", \"request_token\" => \"6fef0847-c7"},{"event":"cmd_output","timestamp":1607098240,"output":"8c-4cdc-b869-36f3f90fa3c0\", \"requester_id\" => \"56e63d6e-1952-460e-be83-a25558fda975\", \"service\" => \""},{"event":"cmd_output","timestamp":1607098240,"output":"local\", \"snapshot_id\" => \"\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"triggere"},{"event":"cmd_output","timestamp":1607098240,"output":"d_by\" => \"hook\", \"wf_id\" => \"74156cb2-5e61-4896-88aa-2d3de4a559ec\", \"wf_number\" => 3, \"working_dir\" "},{"event":"cmd_output","timestamp":1607098240,"output":"=> \".semaphore\"}\n\u001b[0m\u001b[22m\n16:10:40.235 [info] ppl_id: a6b78bd3-04a9-4d2e-9437-6038a7d6b4c8, type"},{"event":"cmd_output","timestamp":1607098240,"output":": PplRequests, event: persisted schedule request with request_token: 6fef0847-c78c-4cdc-b869-36f3f90"},{"event":"cmd_output","timestamp":1607098240,"output":"fa3c0, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098240,"output":"\n16:10:40.239 [info] ppl_id: a6b78bd3-04a9-4d2e-9437-6038a7d6b4c8, type: Ppls, state: initializing,"},{"event":"cmd_output","timestamp":1607098240,"output":" event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/"},{"event":"cmd_output","timestamp":1607098240,"output":"2(L124), \n\u001b[0m\u001b[22m\n16:10:40.241 [info] Persisted ppl_sub_init for pipeline with ppl_id: a6b78bd3"},{"event":"cmd_output","timestamp":1607098240,"output":"-04a9-4d2e-9437-6038a7d6b4c8: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:lo"},{"event":"cmd_output","timestamp":1607098240,"output":"aded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 97, in_scheduling: fa"},{"event":"cmd_output","timestamp":1607098240,"output":"lse, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:10:40.240194], pipeline_requests: #Ecto.Ass"},{"event":"cmd_output","timestamp":1607098240,"output":"ociation.NotLoaded, ppl_id: \"a6b78bd3-04a9-4d2e-9437-6"},{"event":"cmd_output","timestamp":1607098240,"output":"038a7d6b4c8\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_reques"},{"event":"cmd_output","timestamp":1607098240,"output":"t: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:40.240200]}\n\u001b[0m\u001b[22m\n16:10:4"},{"event":"cmd_output","timestamp":1607098240,"output":"0.245 [info] ppl_id: 316b8600-0017-4651-81e4-8afa7f715e68, type: Ppls, state: pending, event: exit_"},{"event":"cmd_output","timestamp":1607098240,"output":"scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098240,"output":"16:10:40.251 [info] ppl_id: 316b8600-0017-4651-81e4-8afa7f715e68, type: PplBlocks, block_index: 0, "},{"event":"cmd_output","timestamp":1607098240,"output":"state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_"},{"event":"cmd_output","timestamp":1607098240,"output":"change/1(L90), \n\u001b[0m\u001b[22m\n16:10:40.258 [info] ppl_id: 316b8600-0017-4651-81e4-8afa7f715e68, type:"},{"event":"cmd_output","timestamp":1607098240,"output":" Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098240,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:40.267 [info] ppl_id: 316b8600-0017-4651-81e4-8afa7f715e68"},{"event":"cmd_output","timestamp":1607098240,"output":", type: PplBlocks, block_index: 1, state: waiting, event: exit_scheduling, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098240,"output":": Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:40.268 [info] ppl_id: a6b78bd3"},{"event":"cmd_output","timestamp":1607098240,"output":"-04a9-4d2e-9437-6038a7d6b4c8, type: PplRequests, event: persisted source_args for pipeline: a6b78bd3"},{"event":"cmd_output","timestamp":1607098240,"output":"-04a9-4d2e-9437-6038a7d6b4c8, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/"},{"event":"cmd_output","timestamp":1607098240,"output":"2(L89), \n\u001b[0m\u001b[22m\n16:10:40.271 [info] ppl_id: 7956799c-e6d0-4387-9717-500b725d96b9, type: PplSub"},{"event":"cmd_output","timestamp":1607098240,"output":"Inits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Imp"},{"event":"cmd_output","timestamp":1607098240,"output":"l.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:40.275 [info] ppl_id: a6b78bd3-04a9-4d2e-9437-6038a7d"},{"event":"cmd_output","timestamp":1607098240,"output":"6b4c8, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098240,"output":".Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:40.278 [info] ppl_id: 316b8600-0017-46"},{"event":"cmd_output","timestamp":1607098240,"output":"51-81e4-8afa7f715e68, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098240,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:40.291 [info] PplBlocks Waiting"},{"event":"cmd_output","timestamp":1607098240,"output":"State STM is scheduling block 0 from pipeline: \"316b8600-0017-4651-81e4-8afa7f715e68\"\n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098240,"output":":10:40.301 [info] block_id: 905ac0ce-b9fc-4bba-b436-8f41d90dcd96, type: BlockRequests, event: persi"},{"event":"cmd_output","timestamp":1607098240,"output":"sted block run request from ppl 316b8600-0017-4651-81e4-8afa7f715e68 for block 0, origin: Elixir.Blo"},{"event":"cmd_output","timestamp":1607098240,"output":"ck.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:40.305 [info"},{"event":"cmd_output","timestamp":1607098240,"output":"] block_id: 905ac0ce-b9fc-4bba-b436-8f41d90dcd96, type: Blocks, state: initializing, event: initial"},{"event":"cmd_output","timestamp":1607098240,"output":"izing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098240,"output":"\n16:10:40.311 [info] Block 0 of pipeline with id: 316b8600-0017-4651-81e4-8afa7f715e68 scheduled i"},{"event":"cmd_output","timestamp":1607098240,"output":"n block service with id: : \"905ac0ce-b9fc-4bba-b436-8f41d90dcd96\"\n\u001b[0m\u001b[22m\n16:10:40.318 [info] p"},{"event":"cmd_output","timestamp":1607098240,"output":"pl_id: 316b8600-0017-4651-81e4-8afa7f715e68, type: PplBlocks, block_index: 0, state: running, event:"},{"event":"cmd_output","timestamp":1607098240,"output":" exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098240,"output":"[22m\n16:10:40.323 [info] block_id: 905ac0ce-b9fc-4bba-b436-8f41d90dcd96, type: BlockRequests, even"},{"event":"cmd_output","timestamp":1607098240,"output":"t: persisted build and sub_ppl details for block_request: 905ac0ce-b9fc-4bba-b436-8f41d90dcd96, orig"},{"event":"cmd_output","timestamp":1607098240,"output":"in: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:40"},{"event":"cmd_output","timestamp":1607098240,"output":".328 [info] block_id: 905ac0ce-b9fc-4bba-b436-8f41d90dcd96, type: Tasks, state: pending, event: cre"},{"event":"cmd_output","timestamp":1607098240,"output":"ated, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \r"},{"event":"cmd_output","timestamp":1607098240,"output":"\n\u001b[0m\u001b[22m\n16:10:40.332 [info] block_id: 905ac0ce-b9fc-4bba-b436-8f41d90dcd96, type: Blocks, state"},{"event":"cmd_output","timestamp":1607098240,"output":": running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chang"},{"event":"cmd_output","timestamp":1607098240,"output":"e/1(L90), \n\u001b[0m\u001b[22m\n16:10:40.335 [info] ppl_id: a6b78bd3-04a9-4d2e-9437-6038a7d6b4c8, type: PplS"},{"event":"cmd_output","timestamp":1607098240,"output":"ubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.I"},{"event":"cmd_output","timestamp":1607098240,"output":"mpl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:40.354 [info] ppl_id: 7956799c-e6d0-4387-9717-500b7"},{"event":"cmd_output","timestamp":1607098240,"output":"25d96b9, type: PplRequests, event: persisted definition for request with request_token: 40bd8fae-364"},{"event":"cmd_output","timestamp":1607098240,"output":"b-11eb-97a1-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/"},{"event":"cmd_output","timestamp":1607098240,"output":"3(L76), \n\u001b[0m\u001b[22m\n16:10:40.367 [info] block_id: 905ac0ce-b9fc-4bba-b436-8f41d90dcd96, type: Task"},{"event":"cmd_output","timestamp":1607098240,"output":"s, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_sta"},{"event":"cmd_output","timestamp":1607098240,"output":"te_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:40.371 [info] ppl_id: not_available, event: created, origin: E"},{"event":"cmd_output","timestamp":1607098240,"output":"lixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:40.371 [info] "},{"event":"cmd_output","timestamp":1607098240,"output":" event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098240,"output":"[22m\n16:10:40.371 [info] ppl_id: 7956799c-e6d0-4387-9717-500b725d96b9, type: PplBlocks, block_inde"},{"event":"cmd_output","timestamp":1607098240,"output":"x: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHand"},{"event":"cmd_output","timestamp":1607098240,"output":"ler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:40.372 [info] ppl_id: 7956799c-e6d0-4387-9"},{"event":"cmd_output","timestamp":1607098240,"output":"717-500b725d96b9, type: PplBlocks, block_index: 1, state: initializing, event: created, recovery_cou"},{"event":"cmd_output","timestamp":1607098240,"output":"nt: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098240,"output":"0:40.376 [info] ppl_id: 7956799c-e6d0-4387-9717-500b725d96b9, type: PplSubInits, state: done, resul"},{"event":"cmd_output","timestamp":1607098240,"output":"t: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chang"},{"event":"cmd_output","timestamp":1607098240,"output":"e/1(L90), \n\u001b[0m\u001b[22m\n16:10:40.392 [info] ppl_id: 7956799c-e6d0-4387-9717-500b725d96b9, type: Ppls"},{"event":"cmd_output","timestamp":1607098240,"output":", state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_stat"},{"event":"cmd_output","timestamp":1607098240,"output":"e_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:40.392 [info] ppl_id: 7956799c-e6d0-4387-9717-500b725d96b9, typ"},{"event":"cmd_output","timestamp":1607098240,"output":"e: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098240,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:40.407 [info] ppl_id: 7956799c-e6d0"},{"event":"cmd_output","timestamp":1607098240,"output":"-4387-9717-500b725d96b9, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098240,"output":"in: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:40.409 [info] ppl_id: 795679"},{"event":"cmd_output","timestamp":1607098240,"output":"9c-e6d0-4387-9717-500b725d96b9, type: PplBlocks, block_index: 1, state: waiting, event: exit_schedul"},{"event":"cmd_output","timestamp":1607098240,"output":"ing, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:4"},{"event":"cmd_output","timestamp":1607098240,"output":"0.429 [info] block_id: 905ac0ce-b9fc-4bba-b436-8f41d90dcd96, type: Tasks, state: done, event: exit_"},{"event":"cmd_output","timestamp":1607098240,"output":"scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098240,"output":"16:10:40.439 [info] block_id: 905ac0ce-b9fc-4bba-b436-8f41d90dcd96, type: Blocks, state: done, even"},{"event":"cmd_output","timestamp":1607098240,"output":"t: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098240,"output":"m\u001b[22m\n16:10:40.448 [info] ppl_id: a6b78bd3-04a9-4d2e-9437-6038a7d6b4c8, type: PplRequests, event:"},{"event":"cmd_output","timestamp":1607098240,"output":" persisted definition for request with request_token: 6fef0847-c78c-4cdc-b869-36f3f90fa3c0, origin: "},{"event":"cmd_output","timestamp":1607098240,"output":"Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:40.449 "},{"event":"cmd_output","timestamp":1607098240,"output":"[info] ppl_id: 316b8600-0017-4651-81e4-8afa7f715e68, block_id: 905ac0ce-b9fc-4bba-b436-8f41d90dcd96"},{"event":"cmd_output","timestamp":1607098240,"output":", type: PplBlocks, block_index: 0, state: done, result: failed, event: exit_scheduling, recovery_cou"},{"event":"cmd_output","timestamp":1607098240,"output":"nt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:40.460 [info] ppl"},{"event":"cmd_output","timestamp":1607098240,"output":"_id: not_available, event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_o"},{"event":"cmd_output","timestamp":1607098240,"output":"k?/1(L105), \n\u001b[0m\u001b[22m\n16:10:40.460 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHand"},{"event":"cmd_output","timestamp":1607098240,"output":"ler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:40.460 [info] ppl_id: a6b78bd3-04a9-4d2e-9"},{"event":"cmd_output","timestamp":1607098240,"output":"437-6038a7d6b4c8, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_cou"},{"event":"cmd_output","timestamp":1607098240,"output":"nt: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098240,"output":"0:40.460 [info] ppl_id: a6b78bd3-04a9-4d2e-9437-6038a7d6b4c8, type: PplBlocks, block_index: 1, stat"},{"event":"cmd_output","timestamp":1607098240,"output":"e: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.Regula"},{"event":"cmd_output","timestamp":1607098240,"output":"rInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:40.464 [info] PplBlocks WaitingState STM is scheduli"},{"event":"cmd_output","timestamp":1607098240,"output":"ng block 1 from pipeline: \"316b8600-0017-4651-81e4-8afa7f715e68\"\n\u001b[0m\u001b[22m\n16:10:40.468 [info] pp"},{"event":"cmd_output","timestamp":1607098240,"output":"l_id: a6b78bd3-04a9-4d2e-9437-6038a7d6b4c8, type: PplSubInits, state: done, result: passed, event: e"},{"event":"cmd_output","timestamp":1607098240,"output":"xit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098240,"output":"2m\n16:10:40.474 [info] ppl_id: 316b8600-0017-4651-81e4-8afa7f715e68, type: PplBlocks, block_index:"},{"event":"cmd_output","timestamp":1607098240,"output":" 1, state: done, result: canceled, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper."},{"event":"cmd_output","timestamp":1607098240,"output":"STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:40.483 [info] ppl_id: a6b78bd3-04a9-4d2e-9437-"},{"event":"cmd_output","timestamp":1607098240,"output":"6038a7d6b4c8, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098240,"output":"Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:40.485 [info] ppl_id: a6b78bd3-04a9-4d2"},{"event":"cmd_output","timestamp":1607098240,"output":"e-9437-6038a7d6b4c8, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recove"},{"event":"cmd_output","timestamp":1607098240,"output":"ry_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:40.496 [info"},{"event":"cmd_output","timestamp":1607098240,"output":"] ppl_id: a6b78bd3-04a9-4d2e-9437-6038a7d6b4c8, type: Ppls, state: queuing, event: exit_scheduling,"},{"event":"cmd_output","timestamp":1607098240,"output":" recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:40.49"},{"event":"cmd_output","timestamp":1607098240,"output":"7 [info] ppl_id: a6b78bd3-04a9-4d2e-9437-6038a7d6b4c8, type: PplBlocks, block_index: 1, state: wait"},{"event":"cmd_output","timestamp":1607098240,"output":"ing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L9"},{"event":"cmd_output","timestamp":1607098240,"output":"0), \n\u001b[0m\u001b[22m\n16:10:40.505 [info] ppl_id: 316b8600-0017-4651-81e4-8afa7f715e68, type: Ppls, stat"},{"event":"cmd_output","timestamp":1607098240,"output":"e: done, result: failed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.l"},{"event":"cmd_output","timestamp":1607098240,"output":"og_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:40.512 [info] ppl_id: a6b78bd3-04a9-4d2e-9437-6038a7d6b4"},{"event":"cmd_output","timestamp":1607098240,"output":"c8, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM"},{"event":"cmd_output","timestamp":1607098240,"output":".Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:40.520 [info] PplBlocks WaitingState STM is sched"},{"event":"cmd_output","timestamp":1607098240,"output":"uling block 0 from pipeline: \"a6b78bd3-04a9-4d2e-9437-6038a7d6b4c8\"\n\u001b[0m\u001b[22m\n16:10:40.528 [info] "},{"event":"cmd_output","timestamp":1607098240,"output":" block_id: a96c9f93-ca48-4e4b-9d91-098dcdc011e5, type: BlockRequests, event: persisted block run req"},{"event":"cmd_output","timestamp":1607098240,"output":"uest from ppl a6b78bd3-04a9-4d2e-9437-6038a7d6b4c8 for block 0, origin: Elixir.Block.BlockRequests.M"},{"event":"cmd_output","timestamp":1607098240,"output":"odel.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:40.531 [info] block_id: a96c9"},{"event":"cmd_output","timestamp":1607098240,"output":"f93-ca48-4e4b-9d91-098dcdc011e5, type: Blocks, state: initializing, event: initializing, recovery_co"},{"event":"cmd_output","timestamp":1607098240,"output":"unt: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:40.534 [in"},{"event":"cmd_output","timestamp":1607098240,"output":"fo] Block 0 of pipeline with id: a6b78bd3-04a9-4d2e-9437-6038a7d6b4c8 scheduled in block service wi"},{"event":"cmd_output","timestamp":1607098240,"output":"th id: : \"a96c9f93-ca48-4e4b-9d91-098dcdc011e5\"\n\u001b[0m\u001b[22m\n16:10:40.536 [info] ppl_id: 7956799c-e6"},{"event":"cmd_output","timestamp":1607098240,"output":"d0-4387-9717-500b725d96b9, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098240,"output":"igin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:40.538 [info] ppl_id: a6b7"},{"event":"cmd_output","timestamp":1607098240,"output":"8bd3-04a9-4d2e-9437-6038a7d6b4c8, type: PplBlocks, block_index: 0, state: running, event: exit_sched"},{"event":"cmd_output","timestamp":1607098240,"output":"uling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10"},{"event":"cmd_output","timestamp":1607098240,"output":":40.543 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"7956799c-e6d0-4387-"},{"event":"cmd_output","timestamp":1607098240,"output":"9717-500b725d96b9\"\n\u001b[0m\u001b[22m\n16:10:40.546 [info] block_id: a96c9f93-ca48-4e4b-9d91-098dcdc011e5, "},{"event":"cmd_output","timestamp":1607098240,"output":"type: BlockRequests, event: persisted build and sub_ppl details for block_request: a96c9f93-ca48-4e4"},{"event":"cmd_output","timestamp":1607098240,"output":"b-9d91-098dcdc011e5, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L4"},{"event":"cmd_output","timestamp":1607098240,"output":"1), \n\u001b[0m\u001b[22m\n16:10:40.550 [info] block_id: 5068a2af-6dd0-4065-bb0a-cad5de9f92e0, type: BlockReq"},{"event":"cmd_output","timestamp":1607098240,"output":"uests, event: persisted block run request from ppl 7956799c-e6d0-4387-9717-500b725d96b9 for block 0,"},{"event":"cmd_output","timestamp":1607098240,"output":" origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098240,"output":"\n16:10:40.550 [info] block_id: a96c9f93-ca48-4e4b-9d91-098dcdc011e5, type: Tasks, state: pending, e"},{"event":"cmd_output","timestamp":1607098240,"output":"vent: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1"},{"event":"cmd_output","timestamp":1607098240,"output":"(L167), \n\u001b[0m\u001b[22m\n16:10:40.553 [info] block_id: 5068a2af-6dd0-4065-bb0a-cad5de9f92e0, type: Bloc"},{"event":"cmd_output","timestamp":1607098240,"output":"ks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.B"},{"event":"cmd_output","timestamp":1607098240,"output":"locksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:40.555 [info] block_id: a96c9f93-ca48-4e4b-9d91-098d"},{"event":"cmd_output","timestamp":1607098240,"output":"cdc011e5, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Lo"},{"event":"cmd_output","timestamp":1607098240,"output":"oper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:40.555 [info] Block 0 of pipeline with id"},{"event":"cmd_output","timestamp":1607098240,"output":": 7956799c-e6d0-4387-9717-500b725d96b9 scheduled in block service with id: : \"5068a2af-6dd0-4065-bb0"},{"event":"cmd_output","timestamp":1607098240,"output":"a-cad5de9f92e0\"\n\u001b[0m\u001b[22m\n16:10:40.562 [info] ppl_id: 7956799c-e6d0-4387-9717-500b725d96b9, type:"},{"event":"cmd_output","timestamp":1607098240,"output":" PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098240,"output":"r.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:40.568 [info] block_id: 5068a2af-6dd0"},{"event":"cmd_output","timestamp":1607098240,"output":"-4065-bb0a-cad5de9f92e0, type: BlockRequests, event: persisted build and sub_ppl details for block_r"},{"event":"cmd_output","timestamp":1607098240,"output":"equest: 5068a2af-6dd0-4065-bb0a-cad5de9f92e0, origin: Elixir.Block.BlockRequests.Model.BlockRequests"},{"event":"cmd_output","timestamp":1607098240,"output":"Queries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:40.580 [info] block_id: 5068a2af-6dd0-4065-bb0a-cad"},{"event":"cmd_output","timestamp":1607098240,"output":"5de9f92e0, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Bloc"},{"event":"cmd_output","timestamp":1607098240,"output":"ks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:40.582 [info] block_id: a96c9f9"},{"event":"cmd_output","timestamp":1607098240,"output":"3-ca48-4e4b-9d91-098dcdc011e5, type: Tasks, state: running, event: exit_scheduling, recovery_count: "},{"event":"cmd_output","timestamp":1607098240,"output":"0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:40.589 [info] block_i"},{"event":"cmd_output","timestamp":1607098240,"output":"d: 5068a2af-6dd0-4065-bb0a-cad5de9f92e0, type: Blocks, state: running, event: exit_scheduling, recov"},{"event":"cmd_output","timestamp":1607098240,"output":"ery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:40.618 [inf"},{"event":"cmd_output","timestamp":1607098240,"output":"o] block_id: 5068a2af-6dd0-4065-bb0a-cad5de9f92e0, type: Tasks, state: running, event: exit_schedul"},{"event":"cmd_output","timestamp":1607098240,"output":"ing, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:4"},{"event":"cmd_output","timestamp":1607098240,"output":"0.647 [info] block_id: a96c9f93-ca48-4e4b-9d91-098dcdc011e5, type: Tasks, state: done, event: exit_"},{"event":"cmd_output","timestamp":1607098240,"output":"scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098240,"output":"16:10:40.655 [info] block_id: a96c9f93-ca48-4e4b-9d91-098dcdc011e5, type: Blocks, state: done, even"},{"event":"cmd_output","timestamp":1607098240,"output":"t: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098240,"output":"m\u001b[22m\n16:10:40.666 [info] ppl_id: a6b78bd3-04a9-4d2e-9437-6038a7d6b4c8, block_id: a96c9f93-ca48-4"},{"event":"cmd_output","timestamp":1607098240,"output":"e4b-9d91-098dcdc011e5, type: PplBlocks, block_index: 0, state: done, result: failed, event: exit_sch"},{"event":"cmd_output","timestamp":1607098240,"output":"eduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098240,"output":"10:40.678 [info] PplBlocks WaitingState STM is scheduling block 1 from pipeline: \"a6b78bd3-04a9-4d2"},{"event":"cmd_output","timestamp":1607098240,"output":"e-9437-6038a7d6b4c8\"\n\u001b[0m\u001b[22m\n16:10:40.684 [info] ppl_id: a6b78bd3-04a9-4d2e-9437-6038a7d6b4c8, "},{"event":"cmd_output","timestamp":1607098240,"output":"type: PplBlocks, block_index: 1, state: done, result: canceled, event: exit_scheduling, recovery_cou"},{"event":"cmd_output","timestamp":1607098240,"output":"nt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:40.701 [info] ppl"},{"event":"cmd_output","timestamp":1607098240,"output":"_id: a6b78bd3-04a9-4d2e-9437-6038a7d6b4c8, type: Ppls, state: done, result: failed, event: exit_sche"},{"event":"cmd_output","timestamp":1607098240,"output":"duling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098240,"output":"0:40.760 [info] block_id: 5068a2af-6dd0-4065-bb0a-cad5de9f92e0, type: Tasks, state: done, event: ex"},{"event":"cmd_output","timestamp":1607098240,"output":"it_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098240,"output":"m\n16:10:40.767 [info] block_id: 5068a2af-6dd0-4065-bb0a-cad5de9f92e0, type: Blocks, state: done, e"},{"event":"cmd_output","timestamp":1607098240,"output":"vent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n"},{"event":"cmd_output","timestamp":1607098240,"output":"\u001b[0m\u001b[22m\n16:10:40.776 [info] ppl_id: 7956799c-e6d0-4387-9717-500b725d96b9, block_id: 5068a2af-6dd"},{"event":"cmd_output","timestamp":1607098240,"output":"0-4065-bb0a-cad5de9f92e0, type: PplBlocks, block_index: 0, state: done, result: failed, event: exit_"},{"event":"cmd_output","timestamp":1607098240,"output":"scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098240,"output":"16:10:40.783 [info] PplBlocks WaitingState STM is scheduling block 1 from pipeline: \"7956799c-e6d0-"},{"event":"cmd_output","timestamp":1607098240,"output":"4387-9717-500b725d96b9\"\n\u001b[0m\u001b[22m\n16:10:40.788 [info] Request: 'partial_rebuild', request: %{ppl_"},{"event":"cmd_output","timestamp":1607098240,"output":"id: \"a6b78bd3-04a9-4d2e-9437-6038a7d6b4c8\", request_token: \"c45228dc-873d-423f-bc26-53603839fe56\", u"},{"event":"cmd_output","timestamp":1607098240,"output":"ser_id: \"\"}\n\u001b[0m\u001b[22m\n16:10:40.790 [info] ppl_id: 7956799c-e6d0-4387-9717-500b725d96b9, type: Ppl"},{"event":"cmd_output","timestamp":1607098240,"output":"Blocks, block_index: 1, state: done, result: canceled, event: exit_scheduling, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098240,"output":"igin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:40.800 [info] ppl_id: f4dc"},{"event":"cmd_output","timestamp":1607098240,"output":"cd51-3e11-4cc9-9e82-e57ef38b2cdb, type: PplRequests, event: persisted schedule request with request_"},{"event":"cmd_output","timestamp":1607098240,"output":"token: c45228dc-873d-423f-bc26-53603839fe56, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries"},{"event":"cmd_output","timestamp":1607098240,"output":".process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:40.804 [info] ppl_id: f4dccd51-3e11-4cc9-9e82-e57ef38b"},{"event":"cmd_output","timestamp":1607098240,"output":"2cdb, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Pp"},{"event":"cmd_output","timestamp":1607098240,"output":"ls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:40.807 [info] Persisted ppl_sub_i"},{"event":"cmd_output","timestamp":1607098240,"output":"nit for pipeline with ppl_id: f4dccd51-3e11-4cc9-9e82-e57ef38b2cdb: %Ppl.PplSubInits.Model.PplSubIni"},{"event":"cmd_output","timestamp":1607098240,"output":"ts{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_descr"},{"event":"cmd_output","timestamp":1607098240,"output":"iption: nil, id: 98, in_scheduling: false, init_type: \"rebuild\", inserted_at: ~N[2020-12-04 16:10:40"},{"event":"cmd_output","timestamp":1607098240,"output":".806518], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"f4dccd51-3e11-4cc9-9e82-e57ef38b2cdb\", recovery_count: 0, result: nil, result_reason: n"},{"event":"cmd_output","timestamp":1607098240,"output":"il, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04"},{"event":"cmd_output","timestamp":1607098240,"output":" 16:10:40.806530]}\n\u001b[0m\u001b[22m\n16:10:40.813 [info] ppl_id: 7956799c-e6d0-4387-9717-500b725d96b9, ty"},{"event":"cmd_output","timestamp":1607098240,"output":"pe: Ppls, state: done, result: failed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loo"},{"event":"cmd_output","timestamp":1607098240,"output":"per.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:40.825 [info] ppl_id: f4dccd51-3e11-4cc9-9"},{"event":"cmd_output","timestamp":1607098240,"output":"e82-e57ef38b2cdb, type: PplRequests, event: persisted source_args for pipeline: f4dccd51-3e11-4cc9-9"},{"event":"cmd_output","timestamp":1607098240,"output":"e82-e57ef38b2cdb, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b["},{"event":"cmd_output","timestamp":1607098240,"output":"0m\u001b[22m\n16:10:40.828 [info] Request: 'run: %{\"branch_id\" => \"22199ecf-2d13-4cc9-acfe-c933ee16701a\""},{"event":"cmd_output","timestamp":1607098240,"output":", \"branch_name\" => \"master\", \"client_id\" => \"9611dd40-8cb3-41f2-82f5-d0f585c13b4f\", \"commit_sha\" => "},{"event":"cmd_output","timestamp":1607098240,"output":"\"75891a4469\", \"definition_file\" => \"\", \"hook_id\" => \"41226e42-364b-11eb-bb0e-5254005464e2\", \"label\" "},{"event":"cmd_output","timestamp":1607098240,"output":"=> \"master\", \"organization_id\" => \"36352ac2-951f-4d5b-b67f-c7b9723caa61\", \"owner\" => \"rt\", \"project_"},{"event":"cmd_output","timestamp":1607098240,"output":"id\" => \"wf-number-test-1\", \"repo_name\" => \"20_workflow_builder\", \"request_token\" => \"41225f60-364b-1"},{"event":"cmd_output","timestamp":1607098240,"output":"1eb-9335-5254005464e2\", \"requester_id\" => \"c7f0886e-ba00-4dd7-b0bc-6a495df40673\", \"service\" => \"loca"},{"event":"cmd_output","timestamp":1607098240,"output":"l\", \"snapshot_id\" => \"\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"triggered_by"},{"event":"cmd_output","timestamp":1607098240,"output":"\" => \"hook\", \"wf_id\" => \"3ceb433c-86fd-4582-85d7-92b3d9c44744\"}\n\u001b[0m\u001b[22m\n16:10:40.830 [info] ppl"},{"event":"cmd_output","timestamp":1607098240,"output":"_id: f4dccd51-3e11-4cc9-9e82-e57ef38b2cdb, type: PplSubInits, state: fetching, event: exit_schedulin"},{"event":"cmd_output","timestamp":1607098240,"output":"g, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:40."},{"event":"cmd_output","timestamp":1607098240,"output":"873 [info] ppl_id: f4dccd51-3e11-4cc9-9e82-e57ef38b2cdb, type: PplSubInits, state: regular_init, ev"},{"event":"cmd_output","timestamp":1607098240,"output":"ent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b"},{"event":"cmd_output","timestamp":1607098240,"output":"[0m\u001b[22m\n16:10:40.886 [info] ppl_id: 58e399be-604b-4e4e-9a6a-fcb8ceb5d731, type: PplRequests, even"},{"event":"cmd_output","timestamp":1607098240,"output":"t: persisted schedule request with request_token: 41225f60-364b-11eb-9335-5254005464e2, origin: Elix"},{"event":"cmd_output","timestamp":1607098240,"output":"ir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:40.888 [info"},{"event":"cmd_output","timestamp":1607098240,"output":"] ppl_id: 58e399be-604b-4e4e-9a6a-fcb8ceb5d731, type: Ppls, state: initializing, event: initializin"},{"event":"cmd_output","timestamp":1607098240,"output":"g, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098240,"output":"m\n16:10:40.892 [info] Project wf-number-test-1 and branch masterlatest_wf details updated: \"wf_id:"},{"event":"cmd_output","timestamp":1607098240,"output":" 3ceb433c-86fd-4582-85d7-92b3d9c44744, wf_number: 4\"\n\u001b[0m\u001b[22m\n16:10:40.895 [info] Persisted ppl_"},{"event":"cmd_output","timestamp":1607098240,"output":"sub_init for pipeline with ppl_id: 58e399be-604b-4e4e-9a6a-fcb8ceb5d731: %Ppl.PplSubInits.Model.PplS"},{"event":"cmd_output","timestamp":1607098240,"output":"ubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_"},{"event":"cmd_output","timestamp":1607098240,"output":"description: nil, id: 99, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:"},{"event":"cmd_output","timestamp":1607098240,"output":"10:40.892959], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"58e399be-604b-4e4e-9a6a-fcb8ceb5d731\", recovery_count: 0, result: nil, result_reas"},{"event":"cmd_output","timestamp":1607098240,"output":"on: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-"},{"event":"cmd_output","timestamp":1607098240,"output":"12-04 16:10:40.892970]}\n\u001b[0m\u001b[22m\n16:10:40.915 [info] ppl_id: 58e399be-604b-4e4e-9a6a-fcb8ceb5d73"},{"event":"cmd_output","timestamp":1607098240,"output":"1, type: PplRequests, event: persisted source_args for pipeline: 58e399be-604b-4e4e-9a6a-fcb8ceb5d73"},{"event":"cmd_output","timestamp":1607098240,"output":"1, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:"},{"event":"cmd_output","timestamp":1607098240,"output":"40.918 [info] ppl_id: 58e399be-604b-4e4e-9a6a-fcb8ceb5d731, type: PplSubInits, state: fetching, eve"},{"event":"cmd_output","timestamp":1607098240,"output":"nt: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b["},{"event":"cmd_output","timestamp":1607098240,"output":"0m\u001b[22m\n16:10:40.923 [info] Request: 'run: %{\"auto_promoted\" => false, \"branch_id\" => \"22199ecf-2d"},{"event":"cmd_output","timestamp":1607098240,"output":"13-4cc9-acfe-c933ee16701a\", \"branch_name\" => \"master\", \"client_id\" => \"9611dd40-8cb3-41f2-82f5-d0f58"},{"event":"cmd_output","timestamp":1607098240,"output":"5c13b4f\", \"commit_sha\" => \"75891a4469\", \"definition_file\" => \"\", \"env_vars\" => [], \"extension_of\" =>"},{"event":"cmd_output","timestamp":1607098240,"output":" \"58e399be-604b-4e4e-9a6a-fcb8ceb5d731\", \"file_name\" => \"/foo/bar/test.yml\", \"hook_id\" => \"41226e42-"},{"event":"cmd_output","timestamp":1607098240,"output":"364b-11eb-bb0e-5254005464e2\", \"label\" => \"master\", \"organization_id\" => \"36352ac2-951f-4d5b-b67f-c7b"},{"event":"cmd_output","timestamp":1607098240,"output":"9723caa61\", \"owner\" => \"rt\", \"prev_ppl_artefact_ids\" => [\"58e399be-604b-4e4e-9a6a-fcb8ceb5d731\"], \"p"},{"event":"cmd_output","timestamp":1607098240,"output":"roject_id\" => \"wf-number-test-1\", \"promoter_id\" => \"\", \"repo_name\" => \"20_workflow_builder\", \"reques"},{"event":"cmd_output","timestamp":1607098240,"output":"t_token\" => \"f56d1e15-598c-4c8a-909c-4478015e5c04\", \"requester_id\" => \"c7f0886e-ba00-4dd7-b0bc-6a495"},{"event":"cmd_output","timestamp":1607098240,"output":"df40673\", \"service\" => \"local\", \"snapshot_id\" => \"\", \"suppressed_attributes\" => [\"access_token\", \"cl"},{"event":"cmd_output","timestamp":1607098240,"output":"ient_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"3ceb433c-86fd-4582-85d7-92b3d9c44744\", \"wf_numb"},{"event":"cmd_output","timestamp":1607098240,"output":"er\" => 4, \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:10:40.925 [info] ppl_id: d77c549d-64be-4f5a"},{"event":"cmd_output","timestamp":1607098240,"output":"-b8e1-6a43360ffa87, type: PplRequests, event: persisted schedule request with request_token: f56d1e1"},{"event":"cmd_output","timestamp":1607098240,"output":"5-598c-4c8a-909c-4478015e5c04, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_respo"},{"event":"cmd_output","timestamp":1607098240,"output":"nse/2(L55), \n\u001b[0m\u001b[22m\n16:10:40.928 [info] ppl_id: f4dccd51-3e11-4cc9-9e82-e57ef38b2cdb, type: Pp"},{"event":"cmd_output","timestamp":1607098240,"output":"lRequests, event: persisted definition for request with request_token: c45228dc-873d-423f-bc26-53603"},{"event":"cmd_output","timestamp":1607098240,"output":"839fe56, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098240,"output":"2m\n16:10:40.930 [info] ppl_id: d77c549d-64be-4f5a-b8e1-6a43360ffa87, type: Ppls, state: initializi"},{"event":"cmd_output","timestamp":1607098240,"output":"ng, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_respon"},{"event":"cmd_output","timestamp":1607098240,"output":"se/2(L124), \n\u001b[0m\u001b[22m\n16:10:40.933 [info] Persisted ppl_sub_init for pipeline with ppl_id: d77c5"},{"event":"cmd_output","timestamp":1607098240,"output":"49d-64be-4f5a-b8e1-6a43360ffa87: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<"},{"event":"cmd_output","timestamp":1607098240,"output":":loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 100, in_scheduling"},{"event":"cmd_output","timestamp":1607098240,"output":": false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:10:40.931439], pipeline_requests: #Ecto"},{"event":"cmd_output","timestamp":1607098240,"output":".Association.NotLoaded, ppl_id: \"d77c549d-64be-4f5a-b8"},{"event":"cmd_output","timestamp":1607098240,"output":"e1-6a43360ffa87\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_re"},{"event":"cmd_output","timestamp":1607098240,"output":"quest: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:40.931773]}\n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098240,"output":"10:40.944 [info] ppl_id: not_available, event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.R"},{"event":"cmd_output","timestamp":1607098240,"output":"egularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:40.944 [info] event: created, origin: Elixir.Pp"},{"event":"cmd_output","timestamp":1607098240,"output":"l.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:40.944 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098240,"output":" f4dccd51-3e11-4cc9-9e82-e57ef38b2cdb, type: PplBlocks, block_index: 0, state: initializing, event: "},{"event":"cmd_output","timestamp":1607098240,"output":"created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L10"},{"event":"cmd_output","timestamp":1607098240,"output":"5), \n\u001b[0m\u001b[22m\n16:10:40.944 [info] ppl_id: f4dccd51-3e11-4cc9-9e82-e57ef38b2cdb, type: PplBlocks,"},{"event":"cmd_output","timestamp":1607098240,"output":" block_index: 1, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubIn"},{"event":"cmd_output","timestamp":1607098240,"output":"its.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:40.948 [info] ppl_id: f4dccd51-"},{"event":"cmd_output","timestamp":1607098240,"output":"3e11-4cc9-9e82-e57ef38b2cdb, type: PplSubInits, state: done, result: passed, event: exit_scheduling,"},{"event":"cmd_output","timestamp":1607098240,"output":" recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:40.96"},{"event":"cmd_output","timestamp":1607098240,"output":"2 [info] ppl_id: 58e399be-604b-4e4e-9a6a-fcb8ceb5d731, type: PplSubInits, state: regular_init, even"},{"event":"cmd_output","timestamp":1607098240,"output":"t: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098240,"output":"m\u001b[22m\n16:10:40.971 [info] ppl_id: f4dccd51-3e11-4cc9-9e82-e57ef38b2cdb, type: PplBlocks, block_in"},{"event":"cmd_output","timestamp":1607098240,"output":"dex: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.lo"},{"event":"cmd_output","timestamp":1607098240,"output":"g_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:40.974 [info] ppl_id: d77c549d-64be-4f5a-b8e1-6a43360ffa8"},{"event":"cmd_output","timestamp":1607098240,"output":"7, type: PplRequests, event: persisted source_args for pipeline: d77c549d-64be-4f5a-b8e1-6a43360ffa8"},{"event":"cmd_output","timestamp":1607098240,"output":"7, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:"},{"event":"cmd_output","timestamp":1607098240,"output":"40.974 [info] ppl_id: f4dccd51-3e11-4cc9-9e82-e57ef38b2cdb, type: Ppls, state: pending, event: exit"},{"event":"cmd_output","timestamp":1607098240,"output":"_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098240,"output":"\n16:10:40.984 [info] ppl_id: d77c549d-64be-4f5a-b8e1-6a43360ffa87, type: PplSubInits, state: fetchi"},{"event":"cmd_output","timestamp":1607098240,"output":"ng, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90"},{"event":"cmd_output","timestamp":1607098240,"output":"), \n\u001b[0m\u001b[22m\n16:10:40.992 [info] ppl_id: f4dccd51-3e11-4cc9-9e82-e57ef38b2cdb, type: PplBlocks, "},{"event":"cmd_output","timestamp":1607098240,"output":"block_index: 1, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM"},{"event":"cmd_output","timestamp":1607098240,"output":".Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:40.997 [info] ppl_id: f4dccd51-3e11-4cc9-9e82-e57"},{"event":"cmd_output","timestamp":1607098240,"output":"ef38b2cdb, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loo"},{"event":"cmd_output","timestamp":1607098241,"output":"per.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:41.016 [info] ppl_id: f4dccd51-3e11-4cc9-9"},{"event":"cmd_output","timestamp":1607098241,"output":"e82-e57ef38b2cdb, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098241,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:41.027 [info] PplBlocks WaitingStat"},{"event":"cmd_output","timestamp":1607098241,"output":"e STM is scheduling block 0 from pipeline: \"f4dccd51-3e11-4cc9-9e82-e57ef38b2cdb\"\n\u001b[0m\u001b[22m\n16:10:"},{"event":"cmd_output","timestamp":1607098241,"output":"41.037 [info] block_id: bccb0d03-c1e5-4c9f-8a96-d2e66102a8e4, type: BlockRequests, event: persisted"},{"event":"cmd_output","timestamp":1607098241,"output":" block run request from ppl f4dccd51-3e11-4cc9-9e82-e57ef38b2cdb for block 0, origin: Elixir.Block.B"},{"event":"cmd_output","timestamp":1607098241,"output":"lockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:41.041 [info] b"},{"event":"cmd_output","timestamp":1607098241,"output":"lock_id: bccb0d03-c1e5-4c9f-8a96-d2e66102a8e4, type: Blocks, state: initializing, event: initializin"},{"event":"cmd_output","timestamp":1607098241,"output":"g, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098241,"output":":10:41.043 [info] ppl_id: 58e399be-604b-4e4e-9a6a-fcb8ceb5d731, type: PplRequests, event: persisted"},{"event":"cmd_output","timestamp":1607098241,"output":" definition for request with request_token: 41225f60-364b-11eb-9335-5254005464e2, origin: Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098241,"output":".PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:41.047 [info] Bl"},{"event":"cmd_output","timestamp":1607098241,"output":"ock 0 of pipeline with id: f4dccd51-3e11-4cc9-9e82-e57ef38b2cdb scheduled in block service with id: "},{"event":"cmd_output","timestamp":1607098241,"output":": \"bccb0d03-c1e5-4c9f-8a96-d2e66102a8e4\"\n\u001b[0m\u001b[22m\n16:10:41.053 [info] ppl_id: f4dccd51-3e11-4cc9"},{"event":"cmd_output","timestamp":1607098241,"output":"-9e82-e57ef38b2cdb, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recover"},{"event":"cmd_output","timestamp":1607098241,"output":"y_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:41.056 [info]"},{"event":"cmd_output","timestamp":1607098241,"output":" block_id: bccb0d03-c1e5-4c9f-8a96-d2e66102a8e4, type: BlockRequests, event: persisted build and su"},{"event":"cmd_output","timestamp":1607098241,"output":"b_ppl details for block_request: bccb0d03-c1e5-4c9f-8a96-d2e66102a8e4, origin: Elixir.Block.BlockReq"},{"event":"cmd_output","timestamp":1607098241,"output":"uests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:41.060 [info] ppl_id: d77c"},{"event":"cmd_output","timestamp":1607098241,"output":"549d-64be-4f5a-b8e1-6a43360ffa87, type: PplSubInits, state: regular_init, event: exit_scheduling, re"},{"event":"cmd_output","timestamp":1607098241,"output":"covery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:41.060 ["},{"event":"cmd_output","timestamp":1607098241,"output":"info] block_id: bccb0d03-c1e5-4c9f-8a96-d2e66102a8e4, type: Tasks, state: pending, event: created, "},{"event":"cmd_output","timestamp":1607098241,"output":"recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098241,"output":"[22m\n16:10:41.064 [info] ppl_id: not_available, event: created, origin: Elixir.Ppl.PplSubInits.STM"},{"event":"cmd_output","timestamp":1607098241,"output":"Handler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:41.064 [info] event: created, origin: "},{"event":"cmd_output","timestamp":1607098241,"output":"Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:41.064 [info]"},{"event":"cmd_output","timestamp":1607098241,"output":" ppl_id: 58e399be-604b-4e4e-9a6a-fcb8ceb5d731, type: PplBlocks, block_index: 0, state: initializing"},{"event":"cmd_output","timestamp":1607098241,"output":", event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_"},{"event":"cmd_output","timestamp":1607098241,"output":"ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:41.064 [info] ppl_id: 58e399be-604b-4e4e-9a6a-fcb8ceb5d731, type: P"},{"event":"cmd_output","timestamp":1607098241,"output":"plBlocks, block_index: 1, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098241,"output":".PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:41.068 [info] ppl_id: "},{"event":"cmd_output","timestamp":1607098241,"output":"58e399be-604b-4e4e-9a6a-fcb8ceb5d731, type: PplSubInits, state: done, result: passed, event: exit_sc"},{"event":"cmd_output","timestamp":1607098241,"output":"heduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098241,"output":":10:41.074 [info] block_id: bccb0d03-c1e5-4c9f-8a96-d2e66102a8e4, type: Blocks, state: running, eve"},{"event":"cmd_output","timestamp":1607098241,"output":"nt: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b["},{"event":"cmd_output","timestamp":1607098241,"output":"0m\u001b[22m\n16:10:41.083 [info] ppl_id: 58e399be-604b-4e4e-9a6a-fcb8ceb5d731, type: Ppls, state: pendi"},{"event":"cmd_output","timestamp":1607098241,"output":"ng, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90"},{"event":"cmd_output","timestamp":1607098241,"output":"), \n\u001b[0m\u001b[22m\n16:10:41.095 [info] ppl_id: 58e399be-604b-4e4e-9a6a-fcb8ceb5d731, type: PplBlocks, "},{"event":"cmd_output","timestamp":1607098241,"output":"block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM"},{"event":"cmd_output","timestamp":1607098241,"output":".Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:41.123 [info] ppl_id: 58e399be-604b-4e4e-9a6a-fcb"},{"event":"cmd_output","timestamp":1607098241,"output":"8ceb5d731, type: PplBlocks, block_index: 1, state: waiting, event: exit_scheduling, recovery_count: "},{"event":"cmd_output","timestamp":1607098241,"output":"0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:41.123 [info] block_i"},{"event":"cmd_output","timestamp":1607098241,"output":"d: bccb0d03-c1e5-4c9f-8a96-d2e66102a8e4, type: Tasks, state: running, event: exit_scheduling, recove"},{"event":"cmd_output","timestamp":1607098241,"output":"ry_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:41.130 [info"},{"event":"cmd_output","timestamp":1607098241,"output":"] ppl_id: 58e399be-604b-4e4e-9a6a-fcb8ceb5d731, type: Ppls, state: queuing, event: exit_scheduling,"},{"event":"cmd_output","timestamp":1607098241,"output":" recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:41.14"},{"event":"cmd_output","timestamp":1607098241,"output":"3 [info] ppl_id: 58e399be-604b-4e4e-9a6a-fcb8ceb5d731, type: Ppls, state: running, event: exit_sche"},{"event":"cmd_output","timestamp":1607098241,"output":"duling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098241,"output":"0:41.153 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"58e399be-604b-4e4e"},{"event":"cmd_output","timestamp":1607098241,"output":"-9a6a-fcb8ceb5d731\"\n\u001b[0m\u001b[22m\n16:10:41.162 [info] block_id: dae3c5e8-9bed-447d-9383-2e2a8bef0e28,"},{"event":"cmd_output","timestamp":1607098241,"output":" type: BlockRequests, event: persisted block run request from ppl 58e399be-604b-4e4e-9a6a-fcb8ceb5d7"},{"event":"cmd_output","timestamp":1607098241,"output":"31 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35"},{"event":"cmd_output","timestamp":1607098241,"output":"), \n\u001b[0m\u001b[22m\n16:10:41.163 [info] ppl_id: d77c549d-64be-4f5a-b8e1-6a43360ffa87, type: PplRequests"},{"event":"cmd_output","timestamp":1607098241,"output":", event: persisted definition for request with request_token: f56d1e15-598c-4c8a-909c-4478015e5c04, "},{"event":"cmd_output","timestamp":1607098241,"output":"origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10"},{"event":"cmd_output","timestamp":1607098241,"output":":41.167 [info] block_id: dae3c5e8-9bed-447d-9383-2e2a8bef0e28, type: Blocks, state: initializing, e"},{"event":"cmd_output","timestamp":1607098241,"output":"vent: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43)"},{"event":"cmd_output","timestamp":1607098241,"output":", \n\u001b[0m\u001b[22m\n16:10:41.172 [info] Block 0 of pipeline with id: 58e399be-604b-4e4e-9a6a-fcb8ceb5d73"},{"event":"cmd_output","timestamp":1607098241,"output":"1 scheduled in block service with id: : \"dae3c5e8-9bed-447d-9383-2e2a8bef0e28\"\n\u001b[0m\u001b[22m\n16:10:41."},{"event":"cmd_output","timestamp":1607098241,"output":"172 [info] ppl_id: not_available, event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.Regular"},{"event":"cmd_output","timestamp":1607098241,"output":"InitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:41.172 [info] event: created, origin: Elixir.Ppl.PplS"},{"event":"cmd_output","timestamp":1607098241,"output":"ubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:41.172 [info] ppl_id: d77c5"},{"event":"cmd_output","timestamp":1607098241,"output":"49d-64be-4f5a-b8e1-6a43360ffa87, type: PplBlocks, block_index: 0, state: initializing, event: create"},{"event":"cmd_output","timestamp":1607098241,"output":"d, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n"},{"event":"cmd_output","timestamp":1607098241,"output":"\u001b[0m\u001b[22m\n16:10:41.172 [info] ppl_id: d77c549d-64be-4f5a-b8e1-6a43360ffa87, type: PplBlocks, block"},{"event":"cmd_output","timestamp":1607098241,"output":"_index: 1, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.ST"},{"event":"cmd_output","timestamp":1607098241,"output":"MHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:41.177 [info] block_id: dae3c5e8-9bed"},{"event":"cmd_output","timestamp":1607098241,"output":"-447d-9383-2e2a8bef0e28, type: BlockRequests, event: persisted build and sub_ppl details for block_r"},{"event":"cmd_output","timestamp":1607098241,"output":"equest: dae3c5e8-9bed-447d-9383-2e2a8bef0e28, origin: Elixir.Block.BlockRequests.Model.BlockRequests"},{"event":"cmd_output","timestamp":1607098241,"output":"Queries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:41.177 [info] ppl_id: d77c549d-64be-4f5a-b8e1-6a433"},{"event":"cmd_output","timestamp":1607098241,"output":"60ffa87, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098241,"output":"origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:41.180 [info] ppl_id: 58"},{"event":"cmd_output","timestamp":1607098241,"output":"e399be-604b-4e4e-9a6a-fcb8ceb5d731, type: PplBlocks, block_index: 0, state: running, event: exit_sch"},{"event":"cmd_output","timestamp":1607098241,"output":"eduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098241,"output":"10:41.186 [info] block_id: dae3c5e8-9bed-447d-9383-2e2a8bef0e28, type: Tasks, state: pending, event"},{"event":"cmd_output","timestamp":1607098241,"output":": created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L16"},{"event":"cmd_output","timestamp":1607098241,"output":"7), \n\u001b[0m\u001b[22m\n16:10:41.191 [info] block_id: dae3c5e8-9bed-447d-9383-2e2a8bef0e28, type: Blocks, "},{"event":"cmd_output","timestamp":1607098241,"output":"state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_"},{"event":"cmd_output","timestamp":1607098241,"output":"change/1(L90), \n\u001b[0m\u001b[22m\n16:10:41.208 [info] ppl_id: d77c549d-64be-4f5a-b8e1-6a43360ffa87, type:"},{"event":"cmd_output","timestamp":1607098241,"output":" PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098241,"output":"r.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:41.208 [info] ppl_id: d77c549d-64be-4"},{"event":"cmd_output","timestamp":1607098241,"output":"f5a-b8e1-6a43360ffa87, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098241,"output":": Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:41.212 [info] block_id: bccb0d"},{"event":"cmd_output","timestamp":1607098241,"output":"03-c1e5-4c9f-8a96-d2e66102a8e4, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098241,"output":" origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:41.225 [info] block_id:"},{"event":"cmd_output","timestamp":1607098241,"output":" bccb0d03-c1e5-4c9f-8a96-d2e66102a8e4, type: Blocks, state: done, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098241,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:41.231 [info] p"},{"event":"cmd_output","timestamp":1607098241,"output":"pl_id: d77c549d-64be-4f5a-b8e1-6a43360ffa87, type: PplBlocks, block_index: 1, state: waiting, event:"},{"event":"cmd_output","timestamp":1607098241,"output":" exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098241,"output":"[22m\n16:10:41.250 [info] block_id: dae3c5e8-9bed-447d-9383-2e2a8bef0e28, type: Tasks, state: runni"},{"event":"cmd_output","timestamp":1607098241,"output":"ng, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90"},{"event":"cmd_output","timestamp":1607098241,"output":"), \n\u001b[0m\u001b[22m\n16:10:41.254 [info] ppl_id: f4dccd51-3e11-4cc9-9e82-e57ef38b2cdb, block_id: bccb0d0"},{"event":"cmd_output","timestamp":1607098241,"output":"3-c1e5-4c9f-8a96-d2e66102a8e4, type: PplBlocks, block_index: 0, state: done, result: failed, event: "},{"event":"cmd_output","timestamp":1607098241,"output":"exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098241,"output":"22m\n16:10:41.258 [info] ppl_id: d77c549d-64be-4f5a-b8e1-6a43360ffa87, type: Ppls, state: queuing, "},{"event":"cmd_output","timestamp":1607098241,"output":"event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \r"},{"event":"cmd_output","timestamp":1607098241,"output":"\n\u001b[0m\u001b[22m\n16:10:41.269 [info] PplBlocks WaitingState STM is scheduling block 1 from pipeline: \"f4"},{"event":"cmd_output","timestamp":1607098241,"output":"dccd51-3e11-4cc9-9e82-e57ef38b2cdb\"\n\u001b[0m\u001b[22m\n16:10:41.277 [info] ppl_id: f4dccd51-3e11-4cc9-9e82"},{"event":"cmd_output","timestamp":1607098241,"output":"-e57ef38b2cdb, type: PplBlocks, block_index: 1, state: done, result: canceled, event: exit_schedulin"},{"event":"cmd_output","timestamp":1607098241,"output":"g, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:41."},{"event":"cmd_output","timestamp":1607098241,"output":"286 [info] ppl_id: f4dccd51-3e11-4cc9-9e82-e57ef38b2cdb, type: Ppls, state: done, result: failed, e"},{"event":"cmd_output","timestamp":1607098241,"output":"vent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n"},{"event":"cmd_output","timestamp":1607098241,"output":"\u001b[0m\u001b[22m\n16:10:41.297 [info] ppl_id: d77c549d-64be-4f5a-b8e1-6a43360ffa87, type: Ppls, state: run"},{"event":"cmd_output","timestamp":1607098241,"output":"ning, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098241,"output":"90), \n\u001b[0m\u001b[22m\n16:10:41.305 [info] PplBlocks WaitingState STM is scheduling block 0 from pipelin"},{"event":"cmd_output","timestamp":1607098241,"output":"e: \"d77c549d-64be-4f5a-b8e1-6a43360ffa87\"\n\u001b[0m\u001b[22m\n16:10:41.313 [info] block_id: a1bbe151-e655-4"},{"event":"cmd_output","timestamp":1607098241,"output":"303-b502-80af5ce73577, type: BlockRequests, event: persisted block run request from ppl d77c549d-64b"},{"event":"cmd_output","timestamp":1607098241,"output":"e-4f5a-b8e1-6a43360ffa87 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries."},{"event":"cmd_output","timestamp":1607098241,"output":"process_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:41.315 [info] block_id: a1bbe151-e655-4303-b502-80af5ce"},{"event":"cmd_output","timestamp":1607098241,"output":"73577, type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Blo"},{"event":"cmd_output","timestamp":1607098241,"output":"ck.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:41.318 [info] Block 0 of pipeline w"},{"event":"cmd_output","timestamp":1607098241,"output":"ith id: d77c549d-64be-4f5a-b8e1-6a43360ffa87 scheduled in block service with id: : \"a1bbe151-e655-43"},{"event":"cmd_output","timestamp":1607098241,"output":"03-b502-80af5ce73577\"\n\u001b[0m\u001b[22m\n16:10:41.321 [info] ppl_id: d77c549d-64be-4f5a-b8e1-6a43360ffa87,"},{"event":"cmd_output","timestamp":1607098241,"output":" type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098241,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:41.326 [info] block_id: a1bbe15"},{"event":"cmd_output","timestamp":1607098241,"output":"1-e655-4303-b502-80af5ce73577, type: BlockRequests, event: persisted build and sub_ppl details for b"},{"event":"cmd_output","timestamp":1607098241,"output":"lock_request: a1bbe151-e655-4303-b502-80af5ce73577, origin: Elixir.Block.BlockRequests.Model.BlockRe"},{"event":"cmd_output","timestamp":1607098241,"output":"questsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:41.331 [info] block_id: a1bbe151-e655-4303-b5"},{"event":"cmd_output","timestamp":1607098241,"output":"02-80af5ce73577, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Bloc"},{"event":"cmd_output","timestamp":1607098241,"output":"k.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:41.335 [info] block_id: a"},{"event":"cmd_output","timestamp":1607098241,"output":"1bbe151-e655-4303-b502-80af5ce73577, type: Blocks, state: running, event: exit_scheduling, recovery_"},{"event":"cmd_output","timestamp":1607098241,"output":"count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:41.338 [info] "},{"event":"cmd_output","timestamp":1607098241,"output":"block_id: dae3c5e8-9bed-447d-9383-2e2a8bef0e28, type: Tasks, state: done, event: exit_scheduling, re"},{"event":"cmd_output","timestamp":1607098241,"output":"covery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:41.349 ["},{"event":"cmd_output","timestamp":1607098241,"output":"info] block_id: dae3c5e8-9bed-447d-9383-2e2a8bef0e28, type: Blocks, state: done, event: exit_schedu"},{"event":"cmd_output","timestamp":1607098241,"output":"ling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:"},{"event":"cmd_output","timestamp":1607098241,"output":"41.369 [info] block_id: a1bbe151-e655-4303-b502-80af5ce73577, type: Tasks, state: running, event: e"},{"event":"cmd_output","timestamp":1607098241,"output":"xit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098241,"output":"2m\n16:10:41.370 [info] ppl_id: 58e399be-604b-4e4e-9a6a-fcb8ceb5d731, block_id: dae3c5e8-9bed-447d-"},{"event":"cmd_output","timestamp":1607098241,"output":"9383-2e2a8bef0e28, type: PplBlocks, block_index: 0, state: done, result: failed, event: exit_schedul"},{"event":"cmd_output","timestamp":1607098241,"output":"ing, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:4"},{"event":"cmd_output","timestamp":1607098241,"output":"1.381 [info] PplBlocks WaitingState STM is scheduling block 1 from pipeline: \"58e399be-604b-4e4e-9a"},{"event":"cmd_output","timestamp":1607098241,"output":"6a-fcb8ceb5d731\"\n\u001b[0m\u001b[22m\n16:10:41.389 [info] ppl_id: 58e399be-604b-4e4e-9a6a-fcb8ceb5d731, type"},{"event":"cmd_output","timestamp":1607098241,"output":": PplBlocks, block_index: 1, state: done, result: canceled, event: exit_scheduling, recovery_count: "},{"event":"cmd_output","timestamp":1607098241,"output":"0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:41.400 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098241,"output":" 58e399be-604b-4e4e-9a6a-fcb8ceb5d731, type: Ppls, state: done, result: failed, event: exit_scheduli"},{"event":"cmd_output","timestamp":1607098241,"output":"ng, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:41"},{"event":"cmd_output","timestamp":1607098241,"output":".452 [info] block_id: a1bbe151-e655-4303-b502-80af5ce73577, type: Tasks, state: done, event: exit_s"},{"event":"cmd_output","timestamp":1607098241,"output":"cheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098241,"output":"6:10:41.460 [info] block_id: a1bbe151-e655-4303-b502-80af5ce73577, type: Blocks, state: done, event"},{"event":"cmd_output","timestamp":1607098241,"output":": exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098241,"output":"\u001b[22m\n16:10:41.470 [info] ppl_id: d77c549d-64be-4f5a-b8e1-6a43360ffa87, block_id: a1bbe151-e655-43"},{"event":"cmd_output","timestamp":1607098241,"output":"03-b502-80af5ce73577, type: PplBlocks, block_index: 0, state: done, result: failed, event: exit_sche"},{"event":"cmd_output","timestamp":1607098241,"output":"duling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098241,"output":"0:41.484 [info] PplBlocks WaitingState STM is scheduling block 1 from pipeline: \"d77c549d-64be-4f5a"},{"event":"cmd_output","timestamp":1607098241,"output":"-b8e1-6a43360ffa87\"\n\u001b[0m\u001b[22m\n16:10:41.484 [info] Request: 'partial_rebuild', request: %{ppl_id: "},{"event":"cmd_output","timestamp":1607098241,"output":"\"58e399be-604b-4e4e-9a6a-fcb8ceb5d731\", request_token: \"28e21738-7d59-49c7-abca-57acf11ddb97\", user_"},{"event":"cmd_output","timestamp":1607098241,"output":"id: \"\"}\n\u001b[0m\u001b[22m\n16:10:41.488 [info] ppl_id: b5560a54-2151-42c6-97af-f9955b5d1fcd, type: PplRequ"},{"event":"cmd_output","timestamp":1607098241,"output":"ests, event: persisted schedule request with request_token: 28e21738-7d59-49c7-abca-57acf11ddb97, or"},{"event":"cmd_output","timestamp":1607098241,"output":"igin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:41"},{"event":"cmd_output","timestamp":1607098241,"output":".494 [info] ppl_id: b5560a54-2151-42c6-97af-f9955b5d1fcd, type: Ppls, state: initializing, event: i"},{"event":"cmd_output","timestamp":1607098241,"output":"nitializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), "},{"event":"cmd_output","timestamp":1607098241,"output":"\n\u001b[0m\u001b[22m\n16:10:41.498 [info] ppl_id: d77c549d-64be-4f5a-b8e1-6a43360ffa87, type: PplBlocks, blo"},{"event":"cmd_output","timestamp":1607098241,"output":"ck_index: 1, state: done, result: canceled, event: exit_scheduling, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098241,"output":"r.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:41.500 [info] Persisted ppl_sub_init "},{"event":"cmd_output","timestamp":1607098241,"output":"for pipeline with ppl_id: b5560a54-2151-42c6-97af-f9955b5d1fcd: %Ppl.PplSubInits.Model.PplSubInits{_"},{"event":"cmd_output","timestamp":1607098241,"output":"_meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_descripti"},{"event":"cmd_output","timestamp":1607098241,"output":"on: nil, id: 101, in_scheduling: false, init_type: \"rebuild\", inserted_at: ~N[2020-12-04 16:10:41.49"},{"event":"cmd_output","timestamp":1607098241,"output":"8686], pipeline_requests: #Ecto.Association.NotLoaded,"},{"event":"cmd_output","timestamp":1607098241,"output":" ppl_id: \"b5560a54-2151-42c6-97af-f9955b5d1fcd\", recovery_count: 0, result: nil, result_reason: nil,"},{"event":"cmd_output","timestamp":1607098241,"output":" state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16"},{"event":"cmd_output","timestamp":1607098241,"output":":10:41.498693]}\n\u001b[0m\u001b[22m\n16:10:41.512 [info] ppl_id: d77c549d-64be-4f5a-b8e1-6a43360ffa87, type:"},{"event":"cmd_output","timestamp":1607098241,"output":" Ppls, state: done, result: failed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper"},{"event":"cmd_output","timestamp":1607098241,"output":".STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:41.519 [info] ppl_id: b5560a54-2151-42c6-97af"},{"event":"cmd_output","timestamp":1607098241,"output":"-f9955b5d1fcd, type: PplRequests, event: persisted source_args for pipeline: b5560a54-2151-42c6-97af"},{"event":"cmd_output","timestamp":1607098241,"output":"-f9955b5d1fcd, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098241,"output":"[22m\n16:10:41.523 [info] ppl_id: b5560a54-2151-42c6-97af-f9955b5d1fcd, type: PplSubInits, state: f"},{"event":"cmd_output","timestamp":1607098241,"output":"etching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/"},{"event":"cmd_output","timestamp":1607098241,"output":"1(L90), \n\u001b[0m\u001b[22m\n16:10:41.547 [info] ppl_id: b5560a54-2151-42c6-97af-f9955b5d1fcd, type: PplSub"},{"event":"cmd_output","timestamp":1607098241,"output":"Inits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Imp"},{"event":"cmd_output","timestamp":1607098241,"output":"l.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:41.578 [info] ppl_id: b5560a54-2151-42c6-97af-f9955b5"},{"event":"cmd_output","timestamp":1607098241,"output":"d1fcd, type: PplRequests, event: persisted definition for request with request_token: 28e21738-7d59-"},{"event":"cmd_output","timestamp":1607098241,"output":"49c7-abca-57acf11ddb97, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3("},{"event":"cmd_output","timestamp":1607098241,"output":"L76), \n\u001b[0m\u001b[22m\n16:10:41.586 [info] ppl_id: not_available, event: created, origin: Elixir.Ppl.Pp"},{"event":"cmd_output","timestamp":1607098241,"output":"lSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:41.586 [info] event: crea"},{"event":"cmd_output","timestamp":1607098241,"output":"ted, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:"},{"event":"cmd_output","timestamp":1607098241,"output":"41.586 [info] ppl_id: b5560a54-2151-42c6-97af-f9955b5d1fcd, type: PplBlocks, block_index: 0, state:"},{"event":"cmd_output","timestamp":1607098241,"output":" initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularI"},{"event":"cmd_output","timestamp":1607098241,"output":"nitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:41.586 [info] ppl_id: b5560a54-2151-42c6-97af-f9955b5d"},{"event":"cmd_output","timestamp":1607098241,"output":"1fcd, type: PplBlocks, block_index: 1, state: initializing, event: created, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098241,"output":"n: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:41.589 [in"},{"event":"cmd_output","timestamp":1607098241,"output":"fo] ppl_id: b5560a54-2151-42c6-97af-f9955b5d1fcd, type: PplSubInits, state: done, result: passed, e"},{"event":"cmd_output","timestamp":1607098241,"output":"vent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n"},{"event":"cmd_output","timestamp":1607098241,"output":"\u001b[0m\u001b[22m\n16:10:41.598 [info] ppl_id: b5560a54-2151-42c6-97af-f9955b5d1fcd, type: Ppls, state: pen"},{"event":"cmd_output","timestamp":1607098241,"output":"ding, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098241,"output":"90), \n\u001b[0m\u001b[22m\n16:10:41.600 [info] ppl_id: b5560a54-2151-42c6-97af-f9955b5d1fcd, type: PplBlocks"},{"event":"cmd_output","timestamp":1607098241,"output":", block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.S"},{"event":"cmd_output","timestamp":1607098241,"output":"TM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:41.609 [info] ppl_id: b5560a54-2151-42c6-97af-f"},{"event":"cmd_output","timestamp":1607098241,"output":"9955b5d1fcd, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098241,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:41.611 [info] ppl_id: b5560a54-2151-42c6"},{"event":"cmd_output","timestamp":1607098241,"output":"-97af-f9955b5d1fcd, type: PplBlocks, block_index: 1, state: waiting, event: exit_scheduling, recover"},{"event":"cmd_output","timestamp":1607098241,"output":"y_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:41.617 [info]"},{"event":"cmd_output","timestamp":1607098241,"output":" Request: 'partial_rebuild', request: %{ppl_id: \"d77c549d-64be-4f5a-b8e1-6a43360ffa87\", request_tok"},{"event":"cmd_output","timestamp":1607098241,"output":"en: \"c2201a30-fdc4-410b-b038-6f209f249666\", user_id: \"\"}\n\u001b[0m\u001b[22m\n16:10:41.620 [info] ppl_id: 82"},{"event":"cmd_output","timestamp":1607098241,"output":"b51ba2-277e-42fe-a100-ec86252c6db8, type: PplRequests, event: persisted schedule request with reques"},{"event":"cmd_output","timestamp":1607098241,"output":"t_token: c2201a30-fdc4-410b-b038-6f209f249666, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueri"},{"event":"cmd_output","timestamp":1607098241,"output":"es.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:41.621 [info] ppl_id: b5560a54-2151-42c6-97af-f9955b"},{"event":"cmd_output","timestamp":1607098241,"output":"5d1fcd, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper"},{"event":"cmd_output","timestamp":1607098241,"output":".STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:41.625 [info] ppl_id: 82b51ba2-277e-42fe-a100"},{"event":"cmd_output","timestamp":1607098241,"output":"-ec86252c6db8, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098241,"output":"ir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:41.628 [info] Persisted "},{"event":"cmd_output","timestamp":1607098241,"output":"ppl_sub_init for pipeline with ppl_id: 82b51ba2-277e-42fe-a100-ec86252c6db8: %Ppl.PplSubInits.Model."},{"event":"cmd_output","timestamp":1607098241,"output":"PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, er"},{"event":"cmd_output","timestamp":1607098241,"output":"ror_description: nil, id: 102, in_scheduling: false, init_type: \"rebuild\", inserted_at: ~N[2020-12-0"},{"event":"cmd_output","timestamp":1607098241,"output":"4 16:10:41.626477], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"82b51ba2-277e-42fe-a100-ec86252c6db8\", recovery_count: 0, result: nil, result"},{"event":"cmd_output","timestamp":1607098241,"output":"_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N["},{"event":"cmd_output","timestamp":1607098241,"output":"2020-12-04 16:10:41.626486]}\n\u001b[0m\u001b[22m\n16:10:41.633 [info] PplBlocks WaitingState STM is scheduli"},{"event":"cmd_output","timestamp":1607098241,"output":"ng block 0 from pipeline: \"b5560a54-2151-42c6-97af-f9955b5d1fcd\"\n\u001b[0m\u001b[22m\n16:10:41.643 [info] bl"},{"event":"cmd_output","timestamp":1607098241,"output":"ock_id: cd2ebfdb-c3a8-4015-94cd-f439273fb2cd, type: BlockRequests, event: persisted block run reques"},{"event":"cmd_output","timestamp":1607098241,"output":"t from ppl b5560a54-2151-42c6-97af-f9955b5d1fcd for block 0, origin: Elixir.Block.BlockRequests.Mode"},{"event":"cmd_output","timestamp":1607098241,"output":"l.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:41.649 [info] ppl_id: 82b51ba2-2"},{"event":"cmd_output","timestamp":1607098241,"output":"77e-42fe-a100-ec86252c6db8, type: PplRequests, event: persisted source_args for pipeline: 82b51ba2-2"},{"event":"cmd_output","timestamp":1607098241,"output":"77e-42fe-a100-ec86252c6db8, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2("},{"event":"cmd_output","timestamp":1607098241,"output":"L89), \n\u001b[0m\u001b[22m\n16:10:41.651 [info] block_id: cd2ebfdb-c3a8-4015-94cd-f439273fb2cd, type: Blocks"},{"event":"cmd_output","timestamp":1607098241,"output":", state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.Blo"},{"event":"cmd_output","timestamp":1607098241,"output":"cksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:41.651 [info] Request: 'run: %{\"branch_id\" => \"d900af1"},{"event":"cmd_output","timestamp":1607098241,"output":"7-206f-4cfb-9719-6dbc22ef8cdb\", \"branch_name\" => \"master\", \"client_id\" => \"d022ea23-0d14-4401-abd1-c"},{"event":"cmd_output","timestamp":1607098241,"output":"008028f6130\", \"commit_sha\" => \"75891a4469\", \"definition_file\" => \"\", \"hook_id\" => \"41a02558-364b-11e"},{"event":"cmd_output","timestamp":1607098241,"output":"b-bd29-5254005464e2\", \"label\" => \"master\", \"organization_id\" => \"9218dab2-785b-4989-8702-1fd57037c0a"},{"event":"cmd_output","timestamp":1607098241,"output":"7\", \"owner\" => \"rt\", \"project_id\" => \"wf-number-test-1\", \"repo_name\" => \"20_workflow_builder\", \"requ"},{"event":"cmd_output","timestamp":1607098241,"output":"est_token\" => \"41a00c80-364b-11eb-b7ac-5254005464e2\", \"requester_id\" => \"84265683-4fb4-489d-9da0-577"},{"event":"cmd_output","timestamp":1607098241,"output":"731365977\", \"service\" => \"local\", \"snapshot_id\" => \"\", \"suppressed_attributes\" => [\"access_token\", \""},{"event":"cmd_output","timestamp":1607098241,"output":"client_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"0dab33d3-ce4f-4b99-a39c-41e25b664245\"}\n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098241,"output":"[22m\n16:10:41.654 [info] ppl_id: 82b51ba2-277e-42fe-a100-ec86252c6db8, type: PplSubInits, state: f"},{"event":"cmd_output","timestamp":1607098241,"output":"etching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/"},{"event":"cmd_output","timestamp":1607098241,"output":"1(L90), \n\u001b[0m\u001b[22m\n16:10:41.659 [info] Block 0 of pipeline with id: b5560a54-2151-42c6-97af-f9955"},{"event":"cmd_output","timestamp":1607098241,"output":"b5d1fcd scheduled in block service with id: : \"cd2ebfdb-c3a8-4015-94cd-f439273fb2cd\"\n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098241,"output":"10:41.663 [info] block_id: cd2ebfdb-c3a8-4015-94cd-f439273fb2cd, type: BlockRequests, event: persis"},{"event":"cmd_output","timestamp":1607098241,"output":"ted build and sub_ppl details for block_request: cd2ebfdb-c3a8-4015-94cd-f439273fb2cd, origin: Elixi"},{"event":"cmd_output","timestamp":1607098241,"output":"r.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:41.668 [inf"},{"event":"cmd_output","timestamp":1607098241,"output":"o] ppl_id: b5560a54-2151-42c6-97af-f9955b5d1fcd, type: PplBlocks, block_index: 0, state: running, e"},{"event":"cmd_output","timestamp":1607098241,"output":"vent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n"},{"event":"cmd_output","timestamp":1607098241,"output":"\u001b[0m\u001b[22m\n16:10:41.671 [info] block_id: cd2ebfdb-c3a8-4015-94cd-f439273fb2cd, type: Tasks, state: "},{"event":"cmd_output","timestamp":1607098241,"output":"pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState"},{"event":"cmd_output","timestamp":1607098241,"output":".all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:41.680 [info] block_id: cd2ebfdb-c3a8-4015-94cd-f439273fb2cd, "},{"event":"cmd_output","timestamp":1607098241,"output":"type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.I"},{"event":"cmd_output","timestamp":1607098241,"output":"mpl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:41.693 [info] ppl_id: 82b51ba2-277e-42fe-a100-ec862"},{"event":"cmd_output","timestamp":1607098241,"output":"52c6db8, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098241,"output":"Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:41.716 [info] block_id: cd2ebfdb"},{"event":"cmd_output","timestamp":1607098241,"output":"-c3a8-4015-94cd-f439273fb2cd, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0"},{"event":"cmd_output","timestamp":1607098241,"output":", origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:41.756 [info] ppl_id: "},{"event":"cmd_output","timestamp":1607098241,"output":"22252918-f59a-4513-bc44-8adfea93d44b, type: PplRequests, event: persisted schedule request with requ"},{"event":"cmd_output","timestamp":1607098241,"output":"est_token: 41a00c80-364b-11eb-b7ac-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQue"},{"event":"cmd_output","timestamp":1607098241,"output":"ries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:41.760 [info] ppl_id: 22252918-f59a-4513-bc44-8adf"},{"event":"cmd_output","timestamp":1607098241,"output":"ea93d44b, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Pp"},{"event":"cmd_output","timestamp":1607098241,"output":"l.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:41.767 [info] ppl_id: 82b51ba"},{"event":"cmd_output","timestamp":1607098241,"output":"2-277e-42fe-a100-ec86252c6db8, type: PplRequests, event: persisted definition for request with reque"},{"event":"cmd_output","timestamp":1607098241,"output":"st_token: c2201a30-fdc4-410b-b038-6f209f249666, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQuer"},{"event":"cmd_output","timestamp":1607098241,"output":"ies.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:41.768 [info] Project wf-number-test-1 and branch "},{"event":"cmd_output","timestamp":1607098241,"output":"masterlatest_wf details updated: \"wf_id: 0dab33d3-ce4f-4b99-a39c-41e25b664245, wf_number: 5\"\n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098241,"output":"22m\n16:10:41.770 [info] Persisted ppl_sub_init for pipeline with ppl_id: 22252918-f59a-4513-bc44-8"},{"event":"cmd_output","timestamp":1607098241,"output":"adfea93d44b: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_s"},{"event":"cmd_output","timestamp":1607098241,"output":"ub_inits\">, compile_task_id: nil, error_description: nil, id: 103, in_scheduling: false, init_type: "},{"event":"cmd_output","timestamp":1607098241,"output":"\"regular\", inserted_at: ~N[2020-12-04 16:10:41.768220], pipeline_requests: #Ecto.Association.NotLoad"},{"event":"cmd_output","timestamp":1607098241,"output":"ed, ppl_id: \"22252918-f59a-4513-bc44-8adfea93d44b\", re"},{"event":"cmd_output","timestamp":1607098241,"output":"covery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminat"},{"event":"cmd_output","timestamp":1607098241,"output":"e_request_desc: nil, updated_at: ~N[2020-12-04 16:10:41.768231]}\n\u001b[0m\u001b[22m\n16:10:41.779 [info] bl"},{"event":"cmd_output","timestamp":1607098241,"output":"ock_id: cd2ebfdb-c3a8-4015-94cd-f439273fb2cd, type: Tasks, state: done, event: exit_scheduling, reco"},{"event":"cmd_output","timestamp":1607098241,"output":"very_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:41.785 [in"},{"event":"cmd_output","timestamp":1607098241,"output":"fo] ppl_id: not_available, event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitSta"},{"event":"cmd_output","timestamp":1607098241,"output":"te.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:41.785 [info] event: created, origin: Elixir.Ppl.PplSubInits"},{"event":"cmd_output","timestamp":1607098241,"output":".STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:41.785 [info] ppl_id: 82b51ba2-277"},{"event":"cmd_output","timestamp":1607098241,"output":"e-42fe-a100-ec86252c6db8, type: PplBlocks, block_index: 0, state: initializing, event: created, reco"},{"event":"cmd_output","timestamp":1607098241,"output":"very_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098241,"output":"2m\n16:10:41.785 [info] ppl_id: 82b51ba2-277e-42fe-a100-ec86252c6db8, type: PplBlocks, block_index:"},{"event":"cmd_output","timestamp":1607098241,"output":" 1, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandle"},{"event":"cmd_output","timestamp":1607098241,"output":"r.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:41.790 [info] ppl_id: 82b51ba2-277e-42fe-a10"},{"event":"cmd_output","timestamp":1607098241,"output":"0-ec86252c6db8, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_cou"},{"event":"cmd_output","timestamp":1607098241,"output":"nt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:41.796 [info] blo"},{"event":"cmd_output","timestamp":1607098241,"output":"ck_id: cd2ebfdb-c3a8-4015-94cd-f439273fb2cd, type: Blocks, state: done, event: exit_scheduling, reco"},{"event":"cmd_output","timestamp":1607098241,"output":"very_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:41.800 [in"},{"event":"cmd_output","timestamp":1607098241,"output":"fo] ppl_id: 22252918-f59a-4513-bc44-8adfea93d44b, type: PplRequests, event: persisted source_args f"},{"event":"cmd_output","timestamp":1607098241,"output":"or pipeline: 22252918-f59a-4513-bc44-8adfea93d44b, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQ"},{"event":"cmd_output","timestamp":1607098241,"output":"ueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:41.803 [info] ppl_id: 22252918-f59a-4513-bc44-8adfe"},{"event":"cmd_output","timestamp":1607098241,"output":"a93d44b, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098241,"output":"ir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:41.807 [info] Request: 'run: %{\"auto"},{"event":"cmd_output","timestamp":1607098241,"output":"_promoted\" => false, \"branch_id\" => \"d900af17-206f-4cfb-9719-6dbc22ef8cdb\", \"branch_name\" => \"master"},{"event":"cmd_output","timestamp":1607098241,"output":"\", \"client_id\" => \"d022ea23-0d14-4401-abd1-c008028f6130\", \"commit_sha\" => \"75891a4469\", \"definition_"},{"event":"cmd_output","timestamp":1607098241,"output":"file\" => \"\", \"env_vars\" => [], \"extension_of\" => \"22252918-f59a-4513-bc44-8adfea93d44b\", \"file_name\""},{"event":"cmd_output","timestamp":1607098241,"output":" => \"/foo/bar/test.yml\", \"hook_id\" => \"41a02558-364b-11eb-bd29-5254005464e2\", \"label\" => \"master\", \""},{"event":"cmd_output","timestamp":1607098241,"output":"organization_id\" => \"9218dab2-785b-4989-8702-1fd57037c0a7\", \"owner\" => \"rt\", \"prev_ppl_artefact_ids\""},{"event":"cmd_output","timestamp":1607098241,"output":" => [\"22252918-f59a-4513-bc44-8adfea93d44b\"], \"project_id\" => \"wf-number-test-1\", \"promoter_id\" => \""},{"event":"cmd_output","timestamp":1607098241,"output":"\", \"repo_name\" => \"20_workflow_builder\", \"request_token\" => \"55248294-7f72-4390-a3f3-9307b13fc8a2\", "},{"event":"cmd_output","timestamp":1607098241,"output":"\"requester_id\" => \"84265683-4fb4-489d-9da0-577731365977\", \"service\" => \"local\", \"snapshot_id\" => \"\","},{"event":"cmd_output","timestamp":1607098241,"output":" \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => "},{"event":"cmd_output","timestamp":1607098241,"output":"\"0dab33d3-ce4f-4b99-a39c-41e25b664245\", \"wf_number\" => 5, \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098241,"output":"\n16:10:41.812 [info] ppl_id: 3bc6aa1e-d7f2-479d-97b1-0d7b6357d051, type: PplRequests, event: persis"},{"event":"cmd_output","timestamp":1607098241,"output":"ted schedule request with request_token: 55248294-7f72-4390-a3f3-9307b13fc8a2, origin: Elixir.Ppl.Pp"},{"event":"cmd_output","timestamp":1607098241,"output":"lRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:41.814 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098241,"output":": 82b51ba2-277e-42fe-a100-ec86252c6db8, type: PplBlocks, block_index: 0, state: waiting, event: exit"},{"event":"cmd_output","timestamp":1607098241,"output":"_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098241,"output":"\n16:10:41.814 [info] ppl_id: 82b51ba2-277e-42fe-a100-ec86252c6db8, type: Ppls, state: pending, even"},{"event":"cmd_output","timestamp":1607098241,"output":"t: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098241,"output":"m\u001b[22m\n16:10:41.818 [info] ppl_id: 3bc6aa1e-d7f2-479d-97b1-0d7b6357d051, type: Ppls, state: initia"},{"event":"cmd_output","timestamp":1607098241,"output":"lizing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_re"},{"event":"cmd_output","timestamp":1607098241,"output":"sponse/2(L124), \n\u001b[0m\u001b[22m\n16:10:41.820 [info] Persisted ppl_sub_init for pipeline with ppl_id: 3"},{"event":"cmd_output","timestamp":1607098241,"output":"bc6aa1e-d7f2-479d-97b1-0d7b6357d051: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metad"},{"event":"cmd_output","timestamp":1607098241,"output":"ata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 104, in_schedu"},{"event":"cmd_output","timestamp":1607098241,"output":"ling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:10:41.819560], pipeline_requests: #"},{"event":"cmd_output","timestamp":1607098241,"output":"Ecto.Association.NotLoaded, ppl_id: \"3bc6aa1e-d7f2-479"},{"event":"cmd_output","timestamp":1607098241,"output":"d-97b1-0d7b6357d051\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminat"},{"event":"cmd_output","timestamp":1607098241,"output":"e_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:41.819572]}\n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098241,"output":"\n16:10:41.828 [info] ppl_id: b5560a54-2151-42c6-97af-f9955b5d1fcd, block_id: cd2ebfdb-c3a8-4015-94c"},{"event":"cmd_output","timestamp":1607098241,"output":"d-f439273fb2cd, type: PplBlocks, block_index: 0, state: done, result: failed, event: exit_scheduling"},{"event":"cmd_output","timestamp":1607098241,"output":", recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:41.8"},{"event":"cmd_output","timestamp":1607098241,"output":"40 [info] PplBlocks WaitingState STM is scheduling block 1 from pipeline: \"b5560a54-2151-42c6-97af-"},{"event":"cmd_output","timestamp":1607098241,"output":"f9955b5d1fcd\"\n\u001b[0m\u001b[22m\n16:10:41.854 [info] ppl_id: 82b51ba2-277e-42fe-a100-ec86252c6db8, type: P"},{"event":"cmd_output","timestamp":1607098241,"output":"pls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_s"},{"event":"cmd_output","timestamp":1607098241,"output":"tate_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:41.857 [info] ppl_id: 82b51ba2-277e-42fe-a100-ec86252c6db8, "},{"event":"cmd_output","timestamp":1607098241,"output":"type: PplBlocks, block_index: 1, state: waiting, event: exit_scheduling, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098241,"output":"Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:41.864 [info] ppl_id: b5560a54-2"},{"event":"cmd_output","timestamp":1607098241,"output":"151-42c6-97af-f9955b5d1fcd, type: PplBlocks, block_index: 1, state: done, result: canceled, event: e"},{"event":"cmd_output","timestamp":1607098241,"output":"xit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098241,"output":"2m\n16:10:41.871 [info] ppl_id: 3bc6aa1e-d7f2-479d-97b1-0d7b6357d051, type: PplRequests, event: per"},{"event":"cmd_output","timestamp":1607098241,"output":"sisted source_args for pipeline: 3bc6aa1e-d7f2-479d-97b1-0d7b6357d051, origin: Elixir.Ppl.PplRequest"},{"event":"cmd_output","timestamp":1607098241,"output":"s.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:41.874 [info] ppl_id: 3bc6aa1e-"},{"event":"cmd_output","timestamp":1607098241,"output":"d7f2-479d-97b1-0d7b6357d051, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_co"},{"event":"cmd_output","timestamp":1607098241,"output":"unt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:41.879 [info] pp"},{"event":"cmd_output","timestamp":1607098241,"output":"l_id: 82b51ba2-277e-42fe-a100-ec86252c6db8, type: Ppls, state: running, event: exit_scheduling, reco"},{"event":"cmd_output","timestamp":1607098241,"output":"very_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:41.888 [in"},{"event":"cmd_output","timestamp":1607098241,"output":"fo] ppl_id: 22252918-f59a-4513-bc44-8adfea93d44b, type: PplSubInits, state: regular_init, event: ex"},{"event":"cmd_output","timestamp":1607098241,"output":"it_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098241,"output":"m\n16:10:41.892 [info] ppl_id: b5560a54-2151-42c6-97af-f9955b5d1fcd, type: Ppls, state: done, resul"},{"event":"cmd_output","timestamp":1607098241,"output":"t: failed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chang"},{"event":"cmd_output","timestamp":1607098241,"output":"e/1(L90), \n\u001b[0m\u001b[22m\n16:10:41.902 [info] PplBlocks WaitingState STM is scheduling block 0 from pi"},{"event":"cmd_output","timestamp":1607098241,"output":"peline: \"82b51ba2-277e-42fe-a100-ec86252c6db8\"\n\u001b[0m\u001b[22m\n16:10:41.920 [info] block_id: d3930c21-0"},{"event":"cmd_output","timestamp":1607098241,"output":"d4f-4b9b-aaf4-2a1bf4458e11, type: BlockRequests, event: persisted block run request from ppl 82b51ba"},{"event":"cmd_output","timestamp":1607098241,"output":"2-277e-42fe-a100-ec86252c6db8 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQue"},{"event":"cmd_output","timestamp":1607098241,"output":"ries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:41.926 [info] block_id: d3930c21-0d4f-4b9b-aaf4-2a"},{"event":"cmd_output","timestamp":1607098241,"output":"1bf4458e11, type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098241,"output":"r.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:41.929 [info] Block 0 of pipel"},{"event":"cmd_output","timestamp":1607098241,"output":"ine with id: 82b51ba2-277e-42fe-a100-ec86252c6db8 scheduled in block service with id: : \"d3930c21-0d"},{"event":"cmd_output","timestamp":1607098241,"output":"4f-4b9b-aaf4-2a1bf4458e11\"\n\u001b[0m\u001b[22m\n16:10:41.937 [info] ppl_id: 82b51ba2-277e-42fe-a100-ec86252c"},{"event":"cmd_output","timestamp":1607098241,"output":"6db8, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098241,"output":"igin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:41.947 [info] block_id: d3"},{"event":"cmd_output","timestamp":1607098241,"output":"930c21-0d4f-4b9b-aaf4-2a1bf4458e11, type: BlockRequests, event: persisted build and sub_ppl details "},{"event":"cmd_output","timestamp":1607098241,"output":"for block_request: d3930c21-0d4f-4b9b-aaf4-2a1bf4458e11, origin: Elixir.Block.BlockRequests.Model.Bl"},{"event":"cmd_output","timestamp":1607098241,"output":"ockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:41.951 [info] block_id: d3930c21-0d4f-4b"},{"event":"cmd_output","timestamp":1607098241,"output":"9b-aaf4-2a1bf4458e11, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098241,"output":".Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:41.956 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098241,"output":": 3bc6aa1e-d7f2-479d-97b1-0d7b6357d051, type: PplSubInits, state: regular_init, event: exit_scheduli"},{"event":"cmd_output","timestamp":1607098241,"output":"ng, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:41"},{"event":"cmd_output","timestamp":1607098241,"output":".957 [info] block_id: d3930c21-0d4f-4b9b-aaf4-2a1bf4458e11, type: Blocks, state: running, event: ex"},{"event":"cmd_output","timestamp":1607098241,"output":"it_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098241,"output":"m\n16:10:41.974 [info] ppl_id: 22252918-f59a-4513-bc44-8adfea93d44b, type: PplRequests, event: pers"},{"event":"cmd_output","timestamp":1607098241,"output":"isted definition for request with request_token: 41a00c80-364b-11eb-b7ac-5254005464e2, origin: Elixi"},{"event":"cmd_output","timestamp":1607098241,"output":"r.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:41.986 [info"},{"event":"cmd_output","timestamp":1607098241,"output":"] ppl_id: not_available, event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState"},{"event":"cmd_output","timestamp":1607098241,"output":".all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:41.986 [info] event: created, origin: Elixir.Ppl.PplSubInits.S"},{"event":"cmd_output","timestamp":1607098241,"output":"TMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:41.986 [info] ppl_id: 22252918-f59a-"},{"event":"cmd_output","timestamp":1607098241,"output":"4513-bc44-8adfea93d44b, type: PplBlocks, block_index: 0, state: initializing, event: created, recove"},{"event":"cmd_output","timestamp":1607098241,"output":"ry_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098241,"output":"\n16:10:41.986 [info] ppl_id: 22252918-f59a-4513-bc44-8adfea93d44b, type: PplBlocks, block_index: 1"},{"event":"cmd_output","timestamp":1607098241,"output":", state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler."},{"event":"cmd_output","timestamp":1607098241,"output":"RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:41.992 [info] ppl_id: 22252918-f59a-4513-bc44-"},{"event":"cmd_output","timestamp":1607098241,"output":"8adfea93d44b, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count"},{"event":"cmd_output","timestamp":1607098241,"output":": 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:41.995 [info] block"},{"event":"cmd_output","timestamp":1607098241,"output":"_id: d3930c21-0d4f-4b9b-aaf4-2a1bf4458e11, type: Tasks, state: running, event: exit_scheduling, reco"},{"event":"cmd_output","timestamp":1607098242,"output":"very_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:42.017 [in"},{"event":"cmd_output","timestamp":1607098242,"output":"fo] ppl_id: 22252918-f59a-4513-bc44-8adfea93d44b, type: Ppls, state: pending, event: exit_schedulin"},{"event":"cmd_output","timestamp":1607098242,"output":"g, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:42."},{"event":"cmd_output","timestamp":1607098242,"output":"018 [info] ppl_id: 22252918-f59a-4513-bc44-8adfea93d44b, type: PplBlocks, block_index: 0, state: wa"},{"event":"cmd_output","timestamp":1607098242,"output":"iting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1("},{"event":"cmd_output","timestamp":1607098242,"output":"L90), \n\u001b[0m\u001b[22m\n16:10:42.020 [info] block_id: d3930c21-0d4f-4b9b-aaf4-2a1bf4458e11, type: Tasks,"},{"event":"cmd_output","timestamp":1607098242,"output":" state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_ch"},{"event":"cmd_output","timestamp":1607098242,"output":"ange/1(L90), \n\u001b[0m\u001b[22m\n16:10:42.036 [info] ppl_id: 22252918-f59a-4513-bc44-8adfea93d44b, type: P"},{"event":"cmd_output","timestamp":1607098242,"output":"pls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_s"},{"event":"cmd_output","timestamp":1607098242,"output":"tate_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:42.038 [info] ppl_id: 22252918-f59a-4513-bc44-8adfea93d44b, "},{"event":"cmd_output","timestamp":1607098242,"output":"type: PplBlocks, block_index: 1, state: waiting, event: exit_scheduling, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098242,"output":"Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:42.039 [info] block_id: d3930c21"},{"event":"cmd_output","timestamp":1607098242,"output":"-0d4f-4b9b-aaf4-2a1bf4458e11, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098242,"output":"origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:42.061 [info] ppl_id: 82"},{"event":"cmd_output","timestamp":1607098242,"output":"b51ba2-277e-42fe-a100-ec86252c6db8, block_id: d3930c21-0d4f-4b9b-aaf4-2a1bf4458e11, type: PplBlocks,"},{"event":"cmd_output","timestamp":1607098242,"output":" block_index: 0, state: done, result: failed, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098242,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:42.061 [info] ppl_id: 22252918-f59a"},{"event":"cmd_output","timestamp":1607098242,"output":"-4513-bc44-8adfea93d44b, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098242,"output":"in: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:42.072 [info] ppl_id: 3bc6aa"},{"event":"cmd_output","timestamp":1607098242,"output":"1e-d7f2-479d-97b1-0d7b6357d051, type: PplRequests, event: persisted definition for request with requ"},{"event":"cmd_output","timestamp":1607098242,"output":"est_token: 55248294-7f72-4390-a3f3-9307b13fc8a2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQue"},{"event":"cmd_output","timestamp":1607098242,"output":"ries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:42.075 [info] PplBlocks WaitingState STM is sched"},{"event":"cmd_output","timestamp":1607098242,"output":"uling block 0 from pipeline: \"22252918-f59a-4513-bc44-8adfea93d44b\"\n\u001b[0m\u001b[22m\n16:10:42.087 [info] "},{"event":"cmd_output","timestamp":1607098242,"output":" ppl_id: not_available, event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.a"},{"event":"cmd_output","timestamp":1607098242,"output":"ll_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:42.087 [info] event: created, origin: Elixir.Ppl.PplSubInits.STM"},{"event":"cmd_output","timestamp":1607098242,"output":"Handler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:42.087 [info] ppl_id: 3bc6aa1e-d7f2-47"},{"event":"cmd_output","timestamp":1607098242,"output":"9d-97b1-0d7b6357d051, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery"},{"event":"cmd_output","timestamp":1607098242,"output":"_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098242,"output":"16:10:42.087 [info] ppl_id: 3bc6aa1e-d7f2-479d-97b1-0d7b6357d051, type: PplBlocks, block_index: 1, "},{"event":"cmd_output","timestamp":1607098242,"output":"state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.Re"},{"event":"cmd_output","timestamp":1607098242,"output":"gularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:42.092 [info] ppl_id: 3bc6aa1e-d7f2-479d-97b1-0d"},{"event":"cmd_output","timestamp":1607098242,"output":"7b6357d051, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: "},{"event":"cmd_output","timestamp":1607098242,"output":"0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:42.096 [info] block_i"},{"event":"cmd_output","timestamp":1607098242,"output":"d: f2ddccf0-8b30-484a-a998-83437bb6f2c3, type: BlockRequests, event: persisted block run request fro"},{"event":"cmd_output","timestamp":1607098242,"output":"m ppl 22252918-f59a-4513-bc44-8adfea93d44b for block 0, origin: Elixir.Block.BlockRequests.Model.Blo"},{"event":"cmd_output","timestamp":1607098242,"output":"ckRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:42.098 [info] block_id: f2ddccf0-8b30"},{"event":"cmd_output","timestamp":1607098242,"output":"-484a-a998-83437bb6f2c3, type: Blocks, state: initializing, event: initializing, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098242,"output":"origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:42.103 [info] Blo"},{"event":"cmd_output","timestamp":1607098242,"output":"ck 0 of pipeline with id: 22252918-f59a-4513-bc44-8adfea93d44b scheduled in block service with id: :"},{"event":"cmd_output","timestamp":1607098242,"output":" \"f2ddccf0-8b30-484a-a998-83437bb6f2c3\"\n\u001b[0m\u001b[22m\n16:10:42.111 [info] ppl_id: 22252918-f59a-4513-"},{"event":"cmd_output","timestamp":1607098242,"output":"bc44-8adfea93d44b, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery"},{"event":"cmd_output","timestamp":1607098242,"output":"_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:42.116 [info] "},{"event":"cmd_output","timestamp":1607098242,"output":" ppl_id: 3bc6aa1e-d7f2-479d-97b1-0d7b6357d051, type: PplBlocks, block_index: 0, state: waiting, even"},{"event":"cmd_output","timestamp":1607098242,"output":"t: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098242,"output":"m\u001b[22m\n16:10:42.117 [info] block_id: f2ddccf0-8b30-484a-a998-83437bb6f2c3, type: BlockRequests, ev"},{"event":"cmd_output","timestamp":1607098242,"output":"ent: persisted build and sub_ppl details for block_request: f2ddccf0-8b30-484a-a998-83437bb6f2c3, or"},{"event":"cmd_output","timestamp":1607098242,"output":"igin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:"},{"event":"cmd_output","timestamp":1607098242,"output":"42.118 [info] ppl_id: 3bc6aa1e-d7f2-479d-97b1-0d7b6357d051, type: Ppls, state: pending, event: exit"},{"event":"cmd_output","timestamp":1607098242,"output":"_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098242,"output":"\n16:10:42.123 [info] PplBlocks WaitingState STM is scheduling block 1 from pipeline: \"82b51ba2-277e"},{"event":"cmd_output","timestamp":1607098242,"output":"-42fe-a100-ec86252c6db8\"\n\u001b[0m\u001b[22m\n16:10:42.129 [info] block_id: f2ddccf0-8b30-484a-a998-83437bb6"},{"event":"cmd_output","timestamp":1607098242,"output":"f2c3, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.ST"},{"event":"cmd_output","timestamp":1607098242,"output":"MHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:42.132 [info] ppl_id: 3bc6aa1e-d7f2-"},{"event":"cmd_output","timestamp":1607098242,"output":"479d-97b1-0d7b6357d051, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098242,"output":"n: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:42.132 [info] block_id: f2ddc"},{"event":"cmd_output","timestamp":1607098242,"output":"cf0-8b30-484a-a998-83437bb6f2c3, type: Blocks, state: running, event: exit_scheduling, recovery_coun"},{"event":"cmd_output","timestamp":1607098242,"output":"t: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:42.138 [info] ppl_"},{"event":"cmd_output","timestamp":1607098242,"output":"id: 82b51ba2-277e-42fe-a100-ec86252c6db8, type: PplBlocks, block_index: 1, state: done, result: canc"},{"event":"cmd_output","timestamp":1607098242,"output":"eled, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098242,"output":"90), \n\u001b[0m\u001b[22m\n16:10:42.138 [info] ppl_id: 3bc6aa1e-d7f2-479d-97b1-0d7b6357d051, type: PplBlocks"},{"event":"cmd_output","timestamp":1607098242,"output":", block_index: 1, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.S"},{"event":"cmd_output","timestamp":1607098242,"output":"TM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:42.170 [info] ppl_id: 82b51ba2-277e-42fe-a100-e"},{"event":"cmd_output","timestamp":1607098242,"output":"c86252c6db8, type: Ppls, state: done, result: failed, event: exit_scheduling, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098242,"output":"gin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:42.170 [info] block_id: f2d"},{"event":"cmd_output","timestamp":1607098242,"output":"dccf0-8b30-484a-a998-83437bb6f2c3, type: Tasks, state: running, event: exit_scheduling, recovery_cou"},{"event":"cmd_output","timestamp":1607098242,"output":"nt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:42.221 [info] ppl"},{"event":"cmd_output","timestamp":1607098242,"output":"_id: 3bc6aa1e-d7f2-479d-97b1-0d7b6357d051, type: Ppls, state: running, event: exit_scheduling, recov"},{"event":"cmd_output","timestamp":1607098242,"output":"ery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:42.232 [inf"},{"event":"cmd_output","timestamp":1607098242,"output":"o] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"3bc6aa1e-d7f2-479d-97b1-0d7b635"},{"event":"cmd_output","timestamp":1607098242,"output":"7d051\"\n\u001b[0m\u001b[22m\n16:10:42.240 [info] block_id: 4810e42a-8b8f-4958-9dda-74534efdc49b, type: BlockR"},{"event":"cmd_output","timestamp":1607098242,"output":"equests, event: persisted block run request from ppl 3bc6aa1e-d7f2-479d-97b1-0d7b6357d051 for block "},{"event":"cmd_output","timestamp":1607098242,"output":"0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098242,"output":"m\n16:10:42.247 [info] block_id: f2ddccf0-8b30-484a-a998-83437bb6f2c3, type: Tasks, state: done, ev"},{"event":"cmd_output","timestamp":1607098242,"output":"ent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b"},{"event":"cmd_output","timestamp":1607098242,"output":"[0m\u001b[22m\n16:10:42.250 [info] block_id: 4810e42a-8b8f-4958-9dda-74534efdc49b, type: Blocks, state: "},{"event":"cmd_output","timestamp":1607098242,"output":"initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQuerie"},{"event":"cmd_output","timestamp":1607098242,"output":"s.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:42.254 [info] Block 0 of pipeline with id: 3bc6aa1e-d7f2-479d-9"},{"event":"cmd_output","timestamp":1607098242,"output":"7b1-0d7b6357d051 scheduled in block service with id: : \"4810e42a-8b8f-4958-9dda-74534efdc49b\"\n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098242,"output":"[22m\n16:10:42.257 [info] ppl_id: 3bc6aa1e-d7f2-479d-97b1-0d7b6357d051, type: PplBlocks, block_inde"},{"event":"cmd_output","timestamp":1607098242,"output":"x: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_"},{"event":"cmd_output","timestamp":1607098242,"output":"state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:42.258 [info] block_id: 4810e42a-8b8f-4958-9dda-74534efdc49"},{"event":"cmd_output","timestamp":1607098242,"output":"b, type: BlockRequests, event: persisted build and sub_ppl details for block_request: 4810e42a-8b8f-"},{"event":"cmd_output","timestamp":1607098242,"output":"4958-9dda-74534efdc49b, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2"},{"event":"cmd_output","timestamp":1607098242,"output":"(L41), \n\u001b[0m\u001b[22m\n16:10:42.259 [info] block_id: f2ddccf0-8b30-484a-a998-83437bb6f2c3, type: Block"},{"event":"cmd_output","timestamp":1607098242,"output":"s, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_"},{"event":"cmd_output","timestamp":1607098242,"output":"change/1(L90), \n\u001b[0m\u001b[22m\n16:10:42.265 [info] block_id: 4810e42a-8b8f-4958-9dda-74534efdc49b, typ"},{"event":"cmd_output","timestamp":1607098242,"output":"e: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler."},{"event":"cmd_output","timestamp":1607098242,"output":"InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:42.270 [info] block_id: 4810e42a-8b8f-4958-9d"},{"event":"cmd_output","timestamp":1607098242,"output":"da-74534efdc49b, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098242,"output":"ixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:42.275 [info] ppl_id: 22252918-f59"},{"event":"cmd_output","timestamp":1607098242,"output":"a-4513-bc44-8adfea93d44b, block_id: f2ddccf0-8b30-484a-a998-83437bb6f2c3, type: PplBlocks, block_ind"},{"event":"cmd_output","timestamp":1607098242,"output":"ex: 0, state: done, result: failed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper"},{"event":"cmd_output","timestamp":1607098242,"output":".STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:42.296 [info] PplBlocks WaitingState STM is s"},{"event":"cmd_output","timestamp":1607098242,"output":"cheduling block 1 from pipeline: \"22252918-f59a-4513-bc44-8adfea93d44b\"\n\u001b[0m\u001b[22m\n16:10:42.309 [in"},{"event":"cmd_output","timestamp":1607098242,"output":"fo] block_id: 4810e42a-8b8f-4958-9dda-74534efdc49b, type: Tasks, state: running, event: exit_schedu"},{"event":"cmd_output","timestamp":1607098242,"output":"ling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:"},{"event":"cmd_output","timestamp":1607098242,"output":"42.311 [info] ppl_id: 22252918-f59a-4513-bc44-8adfea93d44b, type: PplBlocks, block_index: 1, state:"},{"event":"cmd_output","timestamp":1607098242,"output":" done, result: canceled, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.l"},{"event":"cmd_output","timestamp":1607098242,"output":"og_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:42.318 [info] ppl_id: 22252918-f59a-4513-bc44-8adfea93d4"},{"event":"cmd_output","timestamp":1607098242,"output":"4b, type: Ppls, state: done, result: failed, event: exit_scheduling, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098242,"output":"ir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:42.358 [info] block_id: 4810e42a-8b8"},{"event":"cmd_output","timestamp":1607098242,"output":"f-4958-9dda-74534efdc49b, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098242,"output":"n: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:42.365 [info] block_id: 4810e"},{"event":"cmd_output","timestamp":1607098242,"output":"42a-8b8f-4958-9dda-74534efdc49b, type: Blocks, state: done, event: exit_scheduling, recovery_count: "},{"event":"cmd_output","timestamp":1607098242,"output":"0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:42.375 [info] Request"},{"event":"cmd_output","timestamp":1607098242,"output":": 'partial_rebuild', request: %{ppl_id: \"22252918-f59a-4513-bc44-8adfea93d44b\", request_token: \"770e"},{"event":"cmd_output","timestamp":1607098242,"output":"f2e0-7712-4c10-846e-e54f79f90b03\", user_id: \"\"}\n\u001b[0m\u001b[22m\n16:10:42.375 [info] ppl_id: 3bc6aa1e-d7"},{"event":"cmd_output","timestamp":1607098242,"output":"f2-479d-97b1-0d7b6357d051, block_id: 4810e42a-8b8f-4958-9dda-74534efdc49b, type: PplBlocks, block_in"},{"event":"cmd_output","timestamp":1607098242,"output":"dex: 0, state: done, result: failed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loope"},{"event":"cmd_output","timestamp":1607098242,"output":"r.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:42.380 [info] ppl_id: daffd6b8-aa57-4b14-a5e"},{"event":"cmd_output","timestamp":1607098242,"output":"6-1106648772a2, type: PplRequests, event: persisted schedule request with request_token: 770ef2e0-77"},{"event":"cmd_output","timestamp":1607098242,"output":"12-4c10-846e-e54f79f90b03, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/"},{"event":"cmd_output","timestamp":1607098242,"output":"2(L55), \n\u001b[0m\u001b[22m\n16:10:42.381 [info] ppl_id: daffd6b8-aa57-4b14-a5e6-1106648772a2, type: Ppls, "},{"event":"cmd_output","timestamp":1607098242,"output":"state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueri"},{"event":"cmd_output","timestamp":1607098242,"output":"es.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:42.383 [info] PplBlocks WaitingState STM is schedul"},{"event":"cmd_output","timestamp":1607098242,"output":"ing block 1 from pipeline: \"3bc6aa1e-d7f2-479d-97b1-0d7b6357d051\"\n\u001b[0m\u001b[22m\n16:10:42.391 [info] P"},{"event":"cmd_output","timestamp":1607098242,"output":"ersisted ppl_sub_init for pipeline with ppl_id: daffd6b8-aa57-4b14-a5e6-1106648772a2: %Ppl.PplSubIni"},{"event":"cmd_output","timestamp":1607098242,"output":"ts.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id"},{"event":"cmd_output","timestamp":1607098242,"output":": nil, error_description: nil, id: 105, in_scheduling: false, init_type: \"rebuild\", inserted_at: ~N["},{"event":"cmd_output","timestamp":1607098242,"output":"2020-12-04 16:10:42.390105], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"daffd6b8-aa57-4b14-a5e6-1106648772a2\", recovery_count: 0, result: ni"},{"event":"cmd_output","timestamp":1607098242,"output":"l, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, update"},{"event":"cmd_output","timestamp":1607098242,"output":"d_at: ~N[2020-12-04 16:10:42.390117]}\n\u001b[0m\u001b[22m\n16:10:42.392 [info] ppl_id: 3bc6aa1e-d7f2-479d-97"},{"event":"cmd_output","timestamp":1607098242,"output":"b1-0d7b6357d051, type: PplBlocks, block_index: 1, state: done, result: canceled, event: exit_schedul"},{"event":"cmd_output","timestamp":1607098242,"output":"ing, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:4"},{"event":"cmd_output","timestamp":1607098242,"output":"2.411 [info] ppl_id: 3bc6aa1e-d7f2-479d-97b1-0d7b6357d051, type: Ppls, state: done, result: failed,"},{"event":"cmd_output","timestamp":1607098242,"output":" event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), "},{"event":"cmd_output","timestamp":1607098242,"output":"\n\u001b[0m\u001b[22m\n16:10:42.412 [info] ppl_id: daffd6b8-aa57-4b14-a5e6-1106648772a2, type: PplRequests, e"},{"event":"cmd_output","timestamp":1607098242,"output":"vent: persisted source_args for pipeline: daffd6b8-aa57-4b14-a5e6-1106648772a2, origin: Elixir.Ppl.P"},{"event":"cmd_output","timestamp":1607098242,"output":"plRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:42.414 [info] ppl_id: "},{"event":"cmd_output","timestamp":1607098242,"output":"daffd6b8-aa57-4b14-a5e6-1106648772a2, type: PplSubInits, state: fetching, event: exit_scheduling, re"},{"event":"cmd_output","timestamp":1607098242,"output":"covery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:42.424 ["},{"event":"cmd_output","timestamp":1607098242,"output":"info] Request: 'run: %{\"auto_promoted\" => false, \"branch_id\" => \"d900af17-206f-4cfb-9719-6dbc22ef8c"},{"event":"cmd_output","timestamp":1607098242,"output":"db\", \"branch_name\" => \"master\", \"client_id\" => \"d022ea23-0d14-4401-abd1-c008028f6130\", \"commit_sha\" "},{"event":"cmd_output","timestamp":1607098242,"output":"=> \"75891a4469\", \"definition_file\" => \"\", \"env_vars\" => [], \"extension_of\" => \"daffd6b8-aa57-4b14-a5"},{"event":"cmd_output","timestamp":1607098242,"output":"e6-1106648772a2\", \"file_name\" => \"/foo/bar/test.yml\", \"hook_id\" => \"41a02558-364b-11eb-bd29-52540054"},{"event":"cmd_output","timestamp":1607098242,"output":"64e2\", \"label\" => \"master\", \"organization_id\" => \"9218dab2-785b-4989-8702-1fd57037c0a7\", \"owner\" => "},{"event":"cmd_output","timestamp":1607098242,"output":"\"rt\", \"partially_rerun_by\" => \"\", \"prev_ppl_artefact_ids\" => [\"22252918-f59a-4513-bc44-8adfea93d44b\""},{"event":"cmd_output","timestamp":1607098242,"output":"], \"project_id\" => \"wf-number-test-1\", \"promoter_id\" => \"\", \"repo_name\" => \"20_workflow_builder\", \"r"},{"event":"cmd_output","timestamp":1607098242,"output":"equest_token\" => \"c65d51af-3459-4964-87d1-e63f6b690841\", \"requester_id\" => \"84265683-4fb4-489d-9da0-"},{"event":"cmd_output","timestamp":1607098242,"output":"577731365977\", \"service\" => \"local\", \"snapshot_id\" => \"\", \"suppressed_attributes\" => [\"access_token\""},{"event":"cmd_output","timestamp":1607098242,"output":", \"client_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"0dab33d3-ce4f-4b99-a39c-41e25b664245\", \"wf"},{"event":"cmd_output","timestamp":1607098242,"output":"_number\" => 5, \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:10:42.431 [info] ppl_id: 6049f900-d57b"},{"event":"cmd_output","timestamp":1607098242,"output":"-426f-b8f5-316dc7bd6799, type: PplRequests, event: persisted schedule request with request_token: c6"},{"event":"cmd_output","timestamp":1607098242,"output":"5d51af-3459-4964-87d1-e63f6b690841, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_"},{"event":"cmd_output","timestamp":1607098242,"output":"response/2(L55), \n\u001b[0m\u001b[22m\n16:10:42.442 [info] ppl_id: 6049f900-d57b-426f-b8f5-316dc7bd6799, typ"},{"event":"cmd_output","timestamp":1607098242,"output":"e: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model."},{"event":"cmd_output","timestamp":1607098242,"output":"PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:42.446 [info] Persisted ppl_sub_init for p"},{"event":"cmd_output","timestamp":1607098242,"output":"ipeline with ppl_id: 6049f900-d57b-426f-b8f5-316dc7bd6799: %Ppl.PplSubInits.Model.PplSubInits{__meta"},{"event":"cmd_output","timestamp":1607098242,"output":"__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: n"},{"event":"cmd_output","timestamp":1607098242,"output":"il, id: 106, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:10:42.444545]"},{"event":"cmd_output","timestamp":1607098242,"output":", pipeline_requests: #Ecto.Association.NotLoaded, ppl_"},{"event":"cmd_output","timestamp":1607098242,"output":"id: \"6049f900-d57b-426f-b8f5-316dc7bd6799\", recovery_count: 0, result: nil, result_reason: nil, stat"},{"event":"cmd_output","timestamp":1607098242,"output":"e: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:4"},{"event":"cmd_output","timestamp":1607098242,"output":"2.444554]}\n\u001b[0m\u001b[22m\n16:10:42.454 [info] ppl_id: daffd6b8-aa57-4b14-a5e6-1106648772a2, type: PplS"},{"event":"cmd_output","timestamp":1607098242,"output":"ubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.I"},{"event":"cmd_output","timestamp":1607098242,"output":"mpl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:42.463 [info] ppl_id: 6049f900-d57b-426f-b8f5-316dc"},{"event":"cmd_output","timestamp":1607098242,"output":"7bd6799, type: PplRequests, event: persisted source_args for pipeline: 6049f900-d57b-426f-b8f5-316dc"},{"event":"cmd_output","timestamp":1607098242,"output":"7bd6799, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098242,"output":"16:10:42.465 [info] ppl_id: 6049f900-d57b-426f-b8f5-316dc7bd6799, type: PplSubInits, state: fetchin"},{"event":"cmd_output","timestamp":1607098242,"output":"g, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90)"},{"event":"cmd_output","timestamp":1607098242,"output":", \n\u001b[0m\u001b[22m\n16:10:42.497 [info] ppl_id: 6049f900-d57b-426f-b8f5-316dc7bd6799, type: PplSubInits,"},{"event":"cmd_output","timestamp":1607098242,"output":" state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_"},{"event":"cmd_output","timestamp":1607098242,"output":"state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:42.510 [info] ppl_id: daffd6b8-aa57-4b14-a5e6-1106648772a2,"},{"event":"cmd_output","timestamp":1607098242,"output":" type: PplRequests, event: persisted definition for request with request_token: 770ef2e0-7712-4c10-8"},{"event":"cmd_output","timestamp":1607098242,"output":"46e-e54f79f90b03, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), "},{"event":"cmd_output","timestamp":1607098242,"output":"\n\u001b[0m\u001b[22m\n16:10:42.522 [info] ppl_id: not_available, event: created, origin: Elixir.Ppl.PplSubIn"},{"event":"cmd_output","timestamp":1607098242,"output":"its.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:42.522 [info] event: created, o"},{"event":"cmd_output","timestamp":1607098242,"output":"rigin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:42.522"},{"event":"cmd_output","timestamp":1607098242,"output":" [info] ppl_id: daffd6b8-aa57-4b14-a5e6-1106648772a2, type: PplBlocks, block_index: 0, state: initi"},{"event":"cmd_output","timestamp":1607098242,"output":"alizing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitSta"},{"event":"cmd_output","timestamp":1607098242,"output":"te.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:42.522 [info] ppl_id: daffd6b8-aa57-4b14-a5e6-1106648772a2, "},{"event":"cmd_output","timestamp":1607098242,"output":"type: PplBlocks, block_index: 1, state: initializing, event: created, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098242,"output":"xir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:42.526 [info] p"},{"event":"cmd_output","timestamp":1607098242,"output":"pl_id: daffd6b8-aa57-4b14-a5e6-1106648772a2, type: PplSubInits, state: done, result: passed, event: "},{"event":"cmd_output","timestamp":1607098242,"output":"exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098242,"output":"22m\n16:10:42.551 [info] ppl_id: daffd6b8-aa57-4b14-a5e6-1106648772a2, type: PplBlocks, block_index"},{"event":"cmd_output","timestamp":1607098242,"output":": 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_s"},{"event":"cmd_output","timestamp":1607098242,"output":"tate_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:42.551 [info] ppl_id: daffd6b8-aa57-4b14-a5e6-1106648772a2, "},{"event":"cmd_output","timestamp":1607098242,"output":"type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Imp"},{"event":"cmd_output","timestamp":1607098242,"output":"l.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:42.568 [info] ppl_id: daffd6b8-aa57-4b14-a5e6-1106648"},{"event":"cmd_output","timestamp":1607098242,"output":"772a2, type: PplBlocks, block_index: 1, state: waiting, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098242,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:42.570 [info] ppl_id: daf"},{"event":"cmd_output","timestamp":1607098242,"output":"fd6b8-aa57-4b14-a5e6-1106648772a2, type: Ppls, state: queuing, event: exit_scheduling, recovery_coun"},{"event":"cmd_output","timestamp":1607098242,"output":"t: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:42.584 [info] ppl_"},{"event":"cmd_output","timestamp":1607098242,"output":"id: daffd6b8-aa57-4b14-a5e6-1106648772a2, type: Ppls, state: running, event: exit_scheduling, recove"},{"event":"cmd_output","timestamp":1607098242,"output":"ry_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:42.592 [info"},{"event":"cmd_output","timestamp":1607098242,"output":"] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"daffd6b8-aa57-4b14-a5e6-11066487"},{"event":"cmd_output","timestamp":1607098242,"output":"72a2\"\n\u001b[0m\u001b[22m\n16:10:42.599 [info] block_id: fd45db69-f2b6-45be-9459-fc99b1b0391e, type: BlockRe"},{"event":"cmd_output","timestamp":1607098242,"output":"quests, event: persisted block run request from ppl daffd6b8-aa57-4b14-a5e6-1106648772a2 for block 0"},{"event":"cmd_output","timestamp":1607098242,"output":", origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098242,"output":"\n16:10:42.602 [info] block_id: fd45db69-f2b6-45be-9459-fc99b1b0391e, type: Blocks, state: initiali"},{"event":"cmd_output","timestamp":1607098242,"output":"zing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert"},{"event":"cmd_output","timestamp":1607098242,"output":"/1(L43), \n\u001b[0m\u001b[22m\n16:10:42.602 [info] ppl_id: 6049f900-d57b-426f-b8f5-316dc7bd6799, type: PplRe"},{"event":"cmd_output","timestamp":1607098242,"output":"quests, event: persisted definition for request with request_token: c65d51af-3459-4964-87d1-e63f6b69"},{"event":"cmd_output","timestamp":1607098242,"output":"0841, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098242,"output":"\n16:10:42.604 [info] Block 0 of pipeline with id: daffd6b8-aa57-4b14-a5e6-1106648772a2 scheduled in"},{"event":"cmd_output","timestamp":1607098242,"output":" block service with id: : \"fd45db69-f2b6-45be-9459-fc99b1b0391e\"\n\u001b[0m\u001b[22m\n16:10:42.607 [info] pp"},{"event":"cmd_output","timestamp":1607098242,"output":"l_id: daffd6b8-aa57-4b14-a5e6-1106648772a2, type: PplBlocks, block_index: 0, state: running, event: "},{"event":"cmd_output","timestamp":1607098242,"output":"exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098242,"output":"22m\n16:10:42.611 [info] block_id: fd45db69-f2b6-45be-9459-fc99b1b0391e, type: BlockRequests, event"},{"event":"cmd_output","timestamp":1607098242,"output":": persisted build and sub_ppl details for block_request: fd45db69-f2b6-45be-9459-fc99b1b0391e, origi"},{"event":"cmd_output","timestamp":1607098242,"output":"n: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:42."},{"event":"cmd_output","timestamp":1607098242,"output":"614 [info] block_id: fd45db69-f2b6-45be-9459-fc99b1b0391e, type: Tasks, state: pending, event: crea"},{"event":"cmd_output","timestamp":1607098242,"output":"ted, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n"},{"event":"cmd_output","timestamp":1607098242,"output":"\u001b[0m\u001b[22m\n16:10:42.619 [info] block_id: fd45db69-f2b6-45be-9459-fc99b1b0391e, type: Blocks, state:"},{"event":"cmd_output","timestamp":1607098242,"output":" running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change"},{"event":"cmd_output","timestamp":1607098242,"output":"/1(L90), \n\u001b[0m\u001b[22m\n16:10:42.620 [info] ppl_id: not_available, event: created, origin: Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098242,"output":".PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:42.620 [info] event: c"},{"event":"cmd_output","timestamp":1607098242,"output":"reated, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098242,"output":"10:42.620 [info] ppl_id: 6049f900-d57b-426f-b8f5-316dc7bd6799, type: PplBlocks, block_index: 0, sta"},{"event":"cmd_output","timestamp":1607098242,"output":"te: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.Regul"},{"event":"cmd_output","timestamp":1607098242,"output":"arInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:42.620 [info] ppl_id: 6049f900-d57b-426f-b8f5-316dc"},{"event":"cmd_output","timestamp":1607098242,"output":"7bd6799, type: PplBlocks, block_index: 1, state: initializing, event: created, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098242,"output":"igin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:42.626 "},{"event":"cmd_output","timestamp":1607098242,"output":"[info] ppl_id: 6049f900-d57b-426f-b8f5-316dc7bd6799, type: PplSubInits, state: done, result: passed"},{"event":"cmd_output","timestamp":1607098242,"output":", event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90),"},{"event":"cmd_output","timestamp":1607098242,"output":" \n\u001b[0m\u001b[22m\n16:10:42.646 [info] ppl_id: 6049f900-d57b-426f-b8f5-316dc7bd6799, type: Ppls, state: "},{"event":"cmd_output","timestamp":1607098242,"output":"pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/"},{"event":"cmd_output","timestamp":1607098242,"output":"1(L90), \n\u001b[0m\u001b[22m\n16:10:42.655 [info] ppl_id: 6049f900-d57b-426f-b8f5-316dc7bd6799, type: PplBlo"},{"event":"cmd_output","timestamp":1607098242,"output":"cks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loope"},{"event":"cmd_output","timestamp":1607098242,"output":"r.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:42.661 [info] block_id: fd45db69-f2b6-45be-9"},{"event":"cmd_output","timestamp":1607098242,"output":"459-fc99b1b0391e, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098242,"output":"ixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:42.673 [info] ppl_id: 6049f900-d57"},{"event":"cmd_output","timestamp":1607098242,"output":"b-426f-b8f5-316dc7bd6799, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098242,"output":"gin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:42.678 [info] ppl_id: 6049f"},{"event":"cmd_output","timestamp":1607098242,"output":"900-d57b-426f-b8f5-316dc7bd6799, type: PplBlocks, block_index: 1, state: waiting, event: exit_schedu"},{"event":"cmd_output","timestamp":1607098242,"output":"ling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:"},{"event":"cmd_output","timestamp":1607098242,"output":"42.689 [info] block_id: fd45db69-f2b6-45be-9459-fc99b1b0391e, type: Tasks, state: done, event: exit"},{"event":"cmd_output","timestamp":1607098242,"output":"_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098242,"output":"\n16:10:42.691 [info] ppl_id: 6049f900-d57b-426f-b8f5-316dc7bd6799, type: Ppls, state: running, even"},{"event":"cmd_output","timestamp":1607098242,"output":"t: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098242,"output":"m\u001b[22m\n16:10:42.701 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"6049f9"},{"event":"cmd_output","timestamp":1607098242,"output":"00-d57b-426f-b8f5-316dc7bd6799\"\n\u001b[0m\u001b[22m\n16:10:42.703 [info] block_id: fd45db69-f2b6-45be-9459-f"},{"event":"cmd_output","timestamp":1607098242,"output":"c99b1b0391e, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Lo"},{"event":"cmd_output","timestamp":1607098242,"output":"oper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:42.711 [info] block_id: 60d8eda5-982d-44d"},{"event":"cmd_output","timestamp":1607098242,"output":"1-b4fd-869e30ce4a5a, type: BlockRequests, event: persisted block run request from ppl 6049f900-d57b-"},{"event":"cmd_output","timestamp":1607098242,"output":"426f-b8f5-316dc7bd6799 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.pr"},{"event":"cmd_output","timestamp":1607098242,"output":"ocess_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:42.714 [info] ppl_id: daffd6b8-aa57-4b14-a5e6-1106648772a"},{"event":"cmd_output","timestamp":1607098242,"output":"2, block_id: fd45db69-f2b6-45be-9459-fc99b1b0391e, type: PplBlocks, block_index: 0, state: done, res"},{"event":"cmd_output","timestamp":1607098242,"output":"ult: failed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_cha"},{"event":"cmd_output","timestamp":1607098242,"output":"nge/1(L90), \n\u001b[0m\u001b[22m\n16:10:42.714 [info] block_id: 60d8eda5-982d-44d1-b4fd-869e30ce4a5a, type: "},{"event":"cmd_output","timestamp":1607098242,"output":"Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Mod"},{"event":"cmd_output","timestamp":1607098242,"output":"el.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:42.719 [info] Block 0 of pipeline with id: 6049f"},{"event":"cmd_output","timestamp":1607098242,"output":"900-d57b-426f-b8f5-316dc7bd6799 scheduled in block service with id: : \"60d8eda5-982d-44d1-b4fd-869e3"},{"event":"cmd_output","timestamp":1607098242,"output":"0ce4a5a\"\n\u001b[0m\u001b[22m\n16:10:42.723 [info] ppl_id: 6049f900-d57b-426f-b8f5-316dc7bd6799, type: PplBlo"},{"event":"cmd_output","timestamp":1607098242,"output":"cks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loope"},{"event":"cmd_output","timestamp":1607098242,"output":"r.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:42.729 [info] block_id: 60d8eda5-982d-44d1-b"},{"event":"cmd_output","timestamp":1607098242,"output":"4fd-869e30ce4a5a, type: BlockRequests, event: persisted build and sub_ppl details for block_request:"},{"event":"cmd_output","timestamp":1607098242,"output":" 60d8eda5-982d-44d1-b4fd-869e30ce4a5a, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries"},{"event":"cmd_output","timestamp":1607098242,"output":".insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:42.732 [info] block_id: 60d8eda5-982d-44d1-b4fd-869e30ce4a"},{"event":"cmd_output","timestamp":1607098242,"output":"5a, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMH"},{"event":"cmd_output","timestamp":1607098242,"output":"andler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:42.733 [info] PplBlocks WaitingState S"},{"event":"cmd_output","timestamp":1607098242,"output":"TM is scheduling block 1 from pipeline: \"daffd6b8-aa57-4b14-a5e6-1106648772a2\"\n\u001b[0m\u001b[22m\n16:10:42."},{"event":"cmd_output","timestamp":1607098242,"output":"739 [info] block_id: 60d8eda5-982d-44d1-b4fd-869e30ce4a5a, type: Blocks, state: running, event: exi"},{"event":"cmd_output","timestamp":1607098242,"output":"t_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098242,"output":"\n16:10:42.742 [info] ppl_id: daffd6b8-aa57-4b14-a5e6-1106648772a2, type: PplBlocks, block_index: 1"},{"event":"cmd_output","timestamp":1607098242,"output":", state: done, result: canceled, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.ST"},{"event":"cmd_output","timestamp":1607098242,"output":"M.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:42.773 [info] block_id: 60d8eda5-982d-44d1-b4fd-"},{"event":"cmd_output","timestamp":1607098242,"output":"869e30ce4a5a, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098242,"output":".Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:42.781 [info] ppl_id: daffd6b8-aa57-4b"},{"event":"cmd_output","timestamp":1607098242,"output":"14-a5e6-1106648772a2, type: Ppls, state: done, result: failed, event: exit_scheduling, recovery_coun"},{"event":"cmd_output","timestamp":1607098242,"output":"t: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:42.806 [info] bloc"},{"event":"cmd_output","timestamp":1607098242,"output":"k_id: 60d8eda5-982d-44d1-b4fd-869e30ce4a5a, type: Tasks, state: done, event: exit_scheduling, recove"},{"event":"cmd_output","timestamp":1607098242,"output":"ry_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:42.813 [info"},{"event":"cmd_output","timestamp":1607098242,"output":"] block_id: 60d8eda5-982d-44d1-b4fd-869e30ce4a5a, type: Blocks, state: done, event: exit_scheduling"},{"event":"cmd_output","timestamp":1607098242,"output":", recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:42.8"},{"event":"cmd_output","timestamp":1607098242,"output":"23 [info] ppl_id: 6049f900-d57b-426f-b8f5-316dc7bd6799, block_id: 60d8eda5-982d-44d1-b4fd-869e30ce4"},{"event":"cmd_output","timestamp":1607098242,"output":"a5a, type: PplBlocks, block_index: 0, state: done, result: failed, event: exit_scheduling, recovery_"},{"event":"cmd_output","timestamp":1607098242,"output":"count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:42.833 [info] "},{"event":"cmd_output","timestamp":1607098242,"output":"PplBlocks WaitingState STM is scheduling block 1 from pipeline: \"6049f900-d57b-426f-b8f5-316dc7bd679"},{"event":"cmd_output","timestamp":1607098242,"output":"9\"\n\u001b[0m\u001b[22m\n16:10:42.840 [info] ppl_id: 6049f900-d57b-426f-b8f5-316dc7bd6799, type: PplBlocks, b"},{"event":"cmd_output","timestamp":1607098242,"output":"lock_index: 1, state: done, result: canceled, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098242,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:42.852 [info] ppl_id: 6049f900-d57b"},{"event":"cmd_output","timestamp":1607098242,"output":"-426f-b8f5-316dc7bd6799, type: Ppls, state: done, result: failed, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098242,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:42.890 [info] R"},{"event":"cmd_output","timestamp":1607098242,"output":"equest: 'run: %{\"branch_id\" => \"d900af17-206f-4cfb-9719-6dbc22ef8cdb\", \"branch_name\" => \"master\", \"c"},{"event":"cmd_output","timestamp":1607098242,"output":"lient_id\" => \"d022ea23-0d14-4401-abd1-c008028f6130\", \"commit_sha\" => \"75891a4469\", \"definition_file\""},{"event":"cmd_output","timestamp":1607098242,"output":" => \"\", \"file_name\" => \"semaphore.yml\", \"hook_id\" => \"41a02558-364b-11eb-bd29-5254005464e2\", \"label\""},{"event":"cmd_output","timestamp":1607098242,"output":" => \"master\", \"organization_id\" => \"9218dab2-785b-4989-8702-1fd57037c0a7\", \"owner\" => \"rt\", \"project"},{"event":"cmd_output","timestamp":1607098242,"output":"_id\" => \"wf-number-test-1\", \"repo_name\" => \"20_workflow_builder\", \"request_token\" => \"fe676c7e-c833-"},{"event":"cmd_output","timestamp":1607098242,"output":"4a3f-b0fb-c42adff62e78\", \"requester_id\" => \"\", \"service\" => \"local\", \"snapshot_id\" => \"\", \"suppresse"},{"event":"cmd_output","timestamp":1607098242,"output":"d_attributes\" => [\"access_token\", \"client_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"d9108b9d-f"},{"event":"cmd_output","timestamp":1607098242,"output":"c0b-4d75-b81e-9f574f053070\", \"wf_rebuild_of\" => \"0dab33d3-ce4f-4b99-a39c-41e25b664245\", \"working_dir"},{"event":"cmd_output","timestamp":1607098242,"output":"\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:10:42.896 [info] ppl_id: c5d00c4a-f6c8-4175-9f1a-2f5a74dce8bc, ty"},{"event":"cmd_output","timestamp":1607098242,"output":"pe: PplRequests, event: persisted schedule request with request_token: fe676c7e-c833-4a3f-b0fb-c42ad"},{"event":"cmd_output","timestamp":1607098242,"output":"ff62e78, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098242,"output":"m\n16:10:42.903 [info] ppl_id: c5d00c4a-f6c8-4175-9f1a-2f5a74dce8bc, type: Ppls, state: initializin"},{"event":"cmd_output","timestamp":1607098242,"output":"g, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_respons"},{"event":"cmd_output","timestamp":1607098242,"output":"e/2(L124), \n\u001b[0m\u001b[22m\n16:10:42.910 [info] Project wf-number-test-1 and branch masterlatest_wf det"},{"event":"cmd_output","timestamp":1607098242,"output":"ails updated: \"wf_id: d9108b9d-fc0b-4d75-b81e-9f574f053070, wf_number: 6\"\n\u001b[0m\u001b[22m\n16:10:42.911 ["},{"event":"cmd_output","timestamp":1607098242,"output":"info] Persisted ppl_sub_init for pipeline with ppl_id: c5d00c4a-f6c8-4175-9f1a-2f5a74dce8bc: %Ppl.P"},{"event":"cmd_output","timestamp":1607098242,"output":"plSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile"},{"event":"cmd_output","timestamp":1607098242,"output":"_task_id: nil, error_description: nil, id: 107, in_scheduling: false, init_type: \"regular\", inserted"},{"event":"cmd_output","timestamp":1607098242,"output":"_at: ~N[2020-12-04 16:10:42.910243], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"c5d00c4a-f6c8-4175-9f1a-2f5a74dce8bc\", recovery_count: 0, re"},{"event":"cmd_output","timestamp":1607098242,"output":"sult: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil"},{"event":"cmd_output","timestamp":1607098242,"output":", updated_at: ~N[2020-12-04 16:10:42.910259]}\n\u001b[0m\u001b[22m\n16:10:42.926 [info] ppl_id: c5d00c4a-f6c8"},{"event":"cmd_output","timestamp":1607098242,"output":"-4175-9f1a-2f5a74dce8bc, type: PplRequests, event: persisted source_args for pipeline: c5d00c4a-f6c8"},{"event":"cmd_output","timestamp":1607098242,"output":"-4175-9f1a-2f5a74dce8bc, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89"},{"event":"cmd_output","timestamp":1607098242,"output":"), \n\u001b[0m\u001b[22m\n16:10:42.929 [info] ppl_id: c5d00c4a-f6c8-4175-9f1a-2f5a74dce8bc, type: PplSubInits"},{"event":"cmd_output","timestamp":1607098242,"output":", state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_sta"},{"event":"cmd_output","timestamp":1607098242,"output":"te_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:42.956 [info] ppl_id: c5d00c4a-f6c8-4175-9f1a-2f5a74dce8bc, ty"},{"event":"cmd_output","timestamp":1607098242,"output":"pe: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loop"},{"event":"cmd_output","timestamp":1607098242,"output":"er.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:42.991 [info] ppl_id: c5d00c4a-f6c8-4175-9f"},{"event":"cmd_output","timestamp":1607098242,"output":"1a-2f5a74dce8bc, type: PplRequests, event: persisted definition for request with request_token: fe67"},{"event":"cmd_output","timestamp":1607098242,"output":"6c7e-c833-4a3f-b0fb-c42adff62e78, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_def"},{"event":"cmd_output","timestamp":1607098243,"output":"inition/3(L76), \n\u001b[0m\u001b[22m\n16:10:42.998 [info] ppl_id: not_available, event: created, origin: Eli"},{"event":"cmd_output","timestamp":1607098243,"output":"xir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:42.998 [info] e"},{"event":"cmd_output","timestamp":1607098243,"output":"vent: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098243,"output":"2m\n16:10:42.998 [info] ppl_id: c5d00c4a-f6c8-4175-9f1a-2f5a74dce8bc, type: PplBlocks, block_index:"},{"event":"cmd_output","timestamp":1607098243,"output":" 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandle"},{"event":"cmd_output","timestamp":1607098243,"output":"r.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:42.998 [info] ppl_id: c5d00c4a-f6c8-4175-9f1"},{"event":"cmd_output","timestamp":1607098243,"output":"a-2f5a74dce8bc, type: PplBlocks, block_index: 1, state: initializing, event: created, recovery_count"},{"event":"cmd_output","timestamp":1607098243,"output":": 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:"},{"event":"cmd_output","timestamp":1607098243,"output":"43.001 [info] ppl_id: c5d00c4a-f6c8-4175-9f1a-2f5a74dce8bc, type: PplSubInits, state: done, result:"},{"event":"cmd_output","timestamp":1607098243,"output":" passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/"},{"event":"cmd_output","timestamp":1607098243,"output":"1(L90), \n\u001b[0m\u001b[22m\n16:10:43.013 [info] ppl_id: c5d00c4a-f6c8-4175-9f1a-2f5a74dce8bc, type: PplBlo"},{"event":"cmd_output","timestamp":1607098243,"output":"cks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loope"},{"event":"cmd_output","timestamp":1607098243,"output":"r.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:43.017 [info] ppl_id: c5d00c4a-f6c8-4175-9f1"},{"event":"cmd_output","timestamp":1607098243,"output":"a-2f5a74dce8bc, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098243,"output":"r.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:43.022 [info] ppl_id: c5d00c4a-f6c8-4"},{"event":"cmd_output","timestamp":1607098243,"output":"175-9f1a-2f5a74dce8bc, type: PplBlocks, block_index: 1, state: waiting, event: exit_scheduling, reco"},{"event":"cmd_output","timestamp":1607098243,"output":"very_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:43.033 [in"},{"event":"cmd_output","timestamp":1607098243,"output":"fo] ppl_id: c5d00c4a-f6c8-4175-9f1a-2f5a74dce8bc, type: Ppls, state: queuing, event: exit_schedulin"},{"event":"cmd_output","timestamp":1607098243,"output":"g, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:43."},{"event":"cmd_output","timestamp":1607098243,"output":"047 [info] ppl_id: c5d00c4a-f6c8-4175-9f1a-2f5a74dce8bc, type: Ppls, state: running, event: exit_sc"},{"event":"cmd_output","timestamp":1607098243,"output":"heduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098243,"output":":10:43.056 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"c5d00c4a-f6c8-41"},{"event":"cmd_output","timestamp":1607098243,"output":"75-9f1a-2f5a74dce8bc\"\n\u001b[0m\u001b[22m\n16:10:43.069 [info] block_id: a4b5074b-09ce-4a9a-a5eb-cc0e2107b4b"},{"event":"cmd_output","timestamp":1607098243,"output":"8, type: BlockRequests, event: persisted block run request from ppl c5d00c4a-f6c8-4175-9f1a-2f5a74dc"},{"event":"cmd_output","timestamp":1607098243,"output":"e8bc for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L"},{"event":"cmd_output","timestamp":1607098243,"output":"35), \n\u001b[0m\u001b[22m\n16:10:43.072 [info] block_id: a4b5074b-09ce-4a9a-a5eb-cc0e2107b4b8, type: Blocks,"},{"event":"cmd_output","timestamp":1607098243,"output":" state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.Bloc"},{"event":"cmd_output","timestamp":1607098243,"output":"ksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:43.076 [info] Block 0 of pipeline with id: c5d00c4a-f6c"},{"event":"cmd_output","timestamp":1607098243,"output":"8-4175-9f1a-2f5a74dce8bc scheduled in block service with id: : \"a4b5074b-09ce-4a9a-a5eb-cc0e2107b4b8"},{"event":"cmd_output","timestamp":1607098243,"output":"\"\n\u001b[0m\u001b[22m\n16:10:43.080 [info] ppl_id: c5d00c4a-f6c8-4175-9f1a-2f5a74dce8bc, type: PplBlocks, bl"},{"event":"cmd_output","timestamp":1607098243,"output":"ock_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.I"},{"event":"cmd_output","timestamp":1607098243,"output":"mpl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:43.082 [info] block_id: a4b5074b-09ce-4a9a-a5eb-cc0"},{"event":"cmd_output","timestamp":1607098243,"output":"e2107b4b8, type: BlockRequests, event: persisted build and sub_ppl details for block_request: a4b507"},{"event":"cmd_output","timestamp":1607098243,"output":"4b-09ce-4a9a-a5eb-cc0e2107b4b8, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert"},{"event":"cmd_output","timestamp":1607098243,"output":"_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:43.085 [info] block_id: a4b5074b-09ce-4a9a-a5eb-cc0e2107b4b8, typ"},{"event":"cmd_output","timestamp":1607098243,"output":"e: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler."},{"event":"cmd_output","timestamp":1607098243,"output":"InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:43.089 [info] block_id: a4b5074b-09ce-4a9a-a5"},{"event":"cmd_output","timestamp":1607098243,"output":"eb-cc0e2107b4b8, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098243,"output":"ixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:43.119 [info] block_id: a4b5074b-0"},{"event":"cmd_output","timestamp":1607098243,"output":"9ce-4a9a-a5eb-cc0e2107b4b8, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098243,"output":"origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:43.232 [info] block_id: "},{"event":"cmd_output","timestamp":1607098243,"output":"a4b5074b-09ce-4a9a-a5eb-cc0e2107b4b8, type: Tasks, state: done, event: exit_scheduling, recovery_cou"},{"event":"cmd_output","timestamp":1607098243,"output":"nt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:43.242 [info] blo"},{"event":"cmd_output","timestamp":1607098243,"output":"ck_id: a4b5074b-09ce-4a9a-a5eb-cc0e2107b4b8, type: Blocks, state: done, event: exit_scheduling, reco"},{"event":"cmd_output","timestamp":1607098243,"output":"very_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:43.250 [in"},{"event":"cmd_output","timestamp":1607098243,"output":"fo] ppl_id: c5d00c4a-f6c8-4175-9f1a-2f5a74dce8bc, block_id: a4b5074b-09ce-4a9a-a5eb-cc0e2107b4b8, t"},{"event":"cmd_output","timestamp":1607098243,"output":"ype: PplBlocks, block_index: 0, state: done, result: failed, event: exit_scheduling, recovery_count:"},{"event":"cmd_output","timestamp":1607098243,"output":" 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:43.257 [info] PplBlo"},{"event":"cmd_output","timestamp":1607098243,"output":"cks WaitingState STM is scheduling block 1 from pipeline: \"c5d00c4a-f6c8-4175-9f1a-2f5a74dce8bc\"\n\u001b["},{"event":"cmd_output","timestamp":1607098243,"output":"0m\u001b[22m\n16:10:43.264 [info] ppl_id: c5d00c4a-f6c8-4175-9f1a-2f5a74dce8bc, type: PplBlocks, block_i"},{"event":"cmd_output","timestamp":1607098243,"output":"ndex: 1, state: done, result: canceled, event: exit_scheduling, recovery_count: 0, origin: Elixir.Lo"},{"event":"cmd_output","timestamp":1607098243,"output":"oper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:43.277 [info] ppl_id: c5d00c4a-f6c8-4175-"},{"event":"cmd_output","timestamp":1607098243,"output":"9f1a-2f5a74dce8bc, type: Ppls, state: done, result: failed, event: exit_scheduling, recovery_count: "},{"event":"cmd_output","timestamp":1607098243,"output":"0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test wf_number correctly "},{"event":"cmd_output","timestamp":1607098243,"output":"set for all pipelines form workflows with different topology (4204.4ms)\u001b[0m\n\nPpl.UserClient.Test\n"},{"event":"cmd_output","timestamp":1607098243,"output":" * test when URL is invalid in describe call => timeout occures\r * test when URL is invalid in des"},{"event":"cmd_output","timestamp":1607098243,"output":"cribe call => timeout occures (skipped)\n * test when time-out occures in describe call => error is"},{"event":"cmd_output","timestamp":1607098243,"output":" returned\r * test when time-out occures in describe call => error is returned (skipped)\n * test w"},{"event":"cmd_output","timestamp":1607098243,"output":"hen client.describe is called => gRPC server response is processed correctly\r * test when client.de"},{"event":"cmd_output","timestamp":1607098243,"output":"scribe is called => gRPC server response is processed correctly (skipped)\n\nPpl.RepoProxyClient.Tes"},{"event":"cmd_output","timestamp":1607098243,"output":"t\n * test describe returns error when it is not possible to connect to repo proxy service\r * test"},{"event":"cmd_output","timestamp":1607098243,"output":" describe returns error when it is not possible to connect to repo proxy service (skipped)\n * test"},{"event":"cmd_output","timestamp":1607098246,"output":" describe correctly timeouts if repo proxy service takes to long to respond\u001b[33m\n16:10:46.334 [warn"},{"event":"cmd_output","timestamp":1607098246,"output":"] Elixir.Wormhole{#PID<0.13049.0>}:: callback: {Ppl.RepoProxyClient, :describe_hook, [\"timeout\"]}; "},{"event":"cmd_output","timestamp":1607098246,"output":"reason: {:timeout, 3000}\n\u001b[0m\u001b[32m\r * test describe correctly timeouts if repo proxy service takes"},{"event":"cmd_output","timestamp":1607098246,"output":" to long to respond (3000.8ms)\u001b[0m\n * test send invalid describe request and receive bad param res"},{"event":"cmd_output","timestamp":1607098246,"output":"ponsed\u001b[32m\r * test send invalid describe request and receive bad param responsed (3.2ms)\u001b[0m\n * "},{"event":"cmd_output","timestamp":1607098246,"output":"test send valid describe request and receive and unpach Hook properly\u001b[32m\r * test send valid descr"},{"event":"cmd_output","timestamp":1607098246,"output":"ibe request and receive and unpach Hook properly (2.5ms)\u001b[0m\n\nPpl.Queues.Model.Queues.Test\n * do"},{"event":"cmd_output","timestamp":1607098246,"output":"ctest Ppl.Queues.Model.Queues.changeset/2 (1)\r * doctest Ppl.Queues.Model.Queues.changeset/2 (1) (s"},{"event":"cmd_output","timestamp":1607098246,"output":"kipped)\n * doctest Ppl.Queues.Model.Queues.changeset/2 (2)\r * doctest Ppl.Queues.Model.Queues.cha"},{"event":"cmd_output","timestamp":1607098246,"output":"ngeset/2 (2) (skipped)\n\nPpl.Queues.Model.QueuesQueries.Test\n * test list() - given 'implicit + '"},{"event":"cmd_output","timestamp":1607098246,"output":"project_id' params valid page is returned\r * test list() - given 'implicit + 'project_id' params va"},{"event":"cmd_output","timestamp":1607098246,"output":"lid page is returned (skipped)\n * test list() - given 'all' + 'project_id' params valid page is re"},{"event":"cmd_output","timestamp":1607098246,"output":"turned\r * test list() - given 'all' + 'project_id' params valid page is returned (skipped)\n * tes"},{"event":"cmd_output","timestamp":1607098246,"output":"t get queue by name and organization_id retuns proper error when queue is not found\r * test get que"},{"event":"cmd_output","timestamp":1607098246,"output":"ue by name and organization_id retuns proper error when queue is not found (skipped)\n * test list("},{"event":"cmd_output","timestamp":1607098246,"output":") - given 'user_generated' + both ids params valid page is returned\r * test list() - given 'user_ge"},{"event":"cmd_output","timestamp":1607098246,"output":"nerated' + both ids params valid page is returned (skipped)\n * test get existing queue by name and"},{"event":"cmd_output","timestamp":1607098246,"output":" organization_id\r * test get existing queue by name and organization_id (skipped)\n * test insert "},{"event":"cmd_output","timestamp":1607098246,"output":"new queue with valid params\r * test insert new queue with valid params (skipped)\n * test list() -"},{"event":"cmd_output","timestamp":1607098246,"output":" given 'implicit + 'org_id' params nothing is found\r * test list() - given 'implicit + 'org_id' par"},{"event":"cmd_output","timestamp":1607098246,"output":"ams nothing is found (skipped)\n * test try to insert two queues with same name for same project\r "},{"event":"cmd_output","timestamp":1607098246,"output":"* test try to insert two queues with same name for same project (skipped)\n * test list() - given '"},{"event":"cmd_output","timestamp":1607098246,"output":"user_generated' + 'project_id' params valid page is returned\r * test list() - given 'user_generated"},{"event":"cmd_output","timestamp":1607098246,"output":"' + 'project_id' params valid page is returned (skipped)\n * test list() - given 'all' + both ids p"},{"event":"cmd_output","timestamp":1607098246,"output":"arams valid page is returned\r * test list() - given 'all' + both ids params valid page is returned "},{"event":"cmd_output","timestamp":1607098246,"output":"(skipped)\n * test get queue by name and project_id retuns proper error when queue is not found\r *"},{"event":"cmd_output","timestamp":1607098246,"output":" test get queue by name and project_id retuns proper error when queue is not found (skipped)\n * te"},{"event":"cmd_output","timestamp":1607098246,"output":"st list() - given 'user_generated' + 'org_id' params valid page is returned\r * test list() - given "},{"event":"cmd_output","timestamp":1607098246,"output":"'user_generated' + 'org_id' params valid page is returned (skipped)\n * test two project-scoped que"},{"event":"cmd_output","timestamp":1607098246,"output":"ues with same name can be inserted for same organization\r * test two project-scoped queues with sam"},{"event":"cmd_output","timestamp":1607098246,"output":"e name can be inserted for same organization (skipped)\n * test get_or_insert_queue() inserts new q"},{"event":"cmd_output","timestamp":1607098246,"output":"ueue when queue with same params is not found\r * test get_or_insert_queue() inserts new queue when "},{"event":"cmd_output","timestamp":1607098246,"output":"queue with same params is not found (skipped)\n * test try to insert two org-scoped queues with sam"},{"event":"cmd_output","timestamp":1607098246,"output":"e name from different projects for same organization\r * test try to insert two org-scoped queues wi"},{"event":"cmd_output","timestamp":1607098246,"output":"th same name from different projects for same organization (skipped)\n * test get_or_insert_queue()"},{"event":"cmd_output","timestamp":1607098246,"output":" returns existing queue if one exists with same params\r * test get_or_insert_queue() returns existi"},{"event":"cmd_output","timestamp":1607098246,"output":"ng queue if one exists with same params (skipped)\n * test get existing queue by name and project_i"},{"event":"cmd_output","timestamp":1607098246,"output":"d\r * test get existing queue by name and project_id (skipped)\n * test inserting new queue fails w"},{"event":"cmd_output","timestamp":1607098246,"output":"hen required param is not given\r * test inserting new queue fails when required param is not given "},{"event":"cmd_output","timestamp":1607098246,"output":"(skipped)\n\nPpl.Ppls.Termination.Test\n * test stop pipeline in pending state\u001b[22m\n16:10:46.422 ["},{"event":"cmd_output","timestamp":1607098246,"output":"info] ppl_id: b5cdf7d1-0645-439b-ae26-d8e9104ed464, type: PplRequests, event: persisted schedule re"},{"event":"cmd_output","timestamp":1607098246,"output":"quest with request_token: 4479acf4-364b-11eb-93d4-5254005464e2, origin: Elixir.Ppl.PplRequests.Model"},{"event":"cmd_output","timestamp":1607098246,"output":".PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:46.435 [info] ppl_id: b5cdf7d1-0645"},{"event":"cmd_output","timestamp":1607098246,"output":"-439b-ae26-d8e9104ed464, type: Ppls, state: initializing, event: initializing, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098246,"output":"igin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:46.438 [info] "},{"event":"cmd_output","timestamp":1607098246,"output":"Persisted ppl_sub_init for pipeline with ppl_id: b5cdf7d1-0645-439b-ae26-d8e9104ed464: %Ppl.PplSubIn"},{"event":"cmd_output","timestamp":1607098246,"output":"its.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_i"},{"event":"cmd_output","timestamp":1607098246,"output":"d: nil, error_description: nil, id: 108, in_scheduling: false, init_type: \"regular\", inserted_at: ~N"},{"event":"cmd_output","timestamp":1607098246,"output":"[2020-12-04 16:10:46.436627], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"b5cdf7d1-0645-439b-ae26-d8e9104ed464\", recovery_count: 0, result: n"},{"event":"cmd_output","timestamp":1607098246,"output":"il, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updat"},{"event":"cmd_output","timestamp":1607098246,"output":"ed_at: ~N[2020-12-04 16:10:46.436637]}\n\u001b[0m\u001b[22m\n16:10:46.441 [info] Periodic from module Elixir."},{"event":"cmd_output","timestamp":1607098246,"output":"Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: peri"},{"event":"cmd_output","timestamp":1607098246,"output":"od: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurr"},{"event":"cmd_output","timestamp":1607098246,"output":"ing args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query:"},{"event":"cmd_output","timestamp":1607098246,"output":" Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl.P"},{"event":"cmd_output","timestamp":1607098246,"output":"pls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :"},{"event":"cmd_output","timestamp":1607098246,"output":"updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor"},{"event":"cmd_output","timestamp":1607098246,"output":": :skip}\n\u001b[0m\u001b[22m\n16:10:46.441 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.Cre"},{"event":"cmd_output","timestamp":1607098246,"output":"atedState with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 100 ms, metric_name: {"},{"event":"cmd_output","timestamp":1607098246,"output":"\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args: %{allowed_stat"},{"event":"cmd_output","timestamp":1607098246,"output":"es: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, obs"},{"event":"cmd_output","timestamp":1607098246,"output":"erved_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request"},{"event":"cmd_output","timestamp":1607098246,"output":", :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits"},{"event":"cmd_output","timestamp":1607098246,"output":", task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:46.442 [info] Periodic from module Elixir.Ppl.PplSubIni"},{"event":"cmd_output","timestamp":1607098246,"output":"ts.STMHandler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler.FetchingState :: period: 100"},{"event":"cmd_output","timestamp":1607098246,"output":" ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring "},{"event":"cmd_output","timestamp":1607098246,"output":"args: %{allowed_states: [\"regular_init\", \"compilation\", \"done\"], cooling_time_sec: -2, initial_query"},{"event":"cmd_output","timestamp":1607098246,"output":": Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fetching\", publisher_cb: :skip, repo: Ppl.Ecto"},{"event":"cmd_output","timestamp":1607098246,"output":"Repo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], "},{"event":"cmd_output","timestamp":1607098246,"output":"schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:46.442 [info] "},{"event":"cmd_output","timestamp":1607098246,"output":"Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CompilationState with name Elixir.Ppl.PplSubI"},{"event":"cmd_output","timestamp":1607098246,"output":"nits.STMHandler.CompilationState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplS"},{"event":"cmd_output","timestamp":1607098246,"output":"ubInits-STMHandler-CompilationState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilat"},{"event":"cmd_output","timestamp":1607098246,"output":"ion\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, o"},{"event":"cmd_output","timestamp":1607098246,"output":"bserved_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_r"},{"event":"cmd_output","timestamp":1607098246,"output":"equest, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSu"},{"event":"cmd_output","timestamp":1607098246,"output":"bInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:46.442 [info] Periodic from module Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098246,"output":"SubInits.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState ::"},{"event":"cmd_output","timestamp":1607098246,"output":" period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState"},{"event":"cmd_output","timestamp":1607098246,"output":"\"]}, recurring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits"},{"event":"cmd_output","timestamp":1607098246,"output":".Model.PplSubInits, observed_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returni"},{"event":"cmd_output","timestamp":1607098246,"output":"ng: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.P"},{"event":"cmd_output","timestamp":1607098246,"output":"plSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:46.562 [info] ppl_id: b5cdf"},{"event":"cmd_output","timestamp":1607098246,"output":"7d1-0645-439b-ae26-d8e9104ed464, type: PplRequests, event: persisted source_args for pipeline: b5cdf"},{"event":"cmd_output","timestamp":1607098246,"output":"7d1-0645-439b-ae26-d8e9104ed464, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_sour"},{"event":"cmd_output","timestamp":1607098246,"output":"ce/2(L89), \n\u001b[0m\u001b[22m\n16:10:46.566 [info] ppl_id: b5cdf7d1-0645-439b-ae26-d8e9104ed464, type: Ppl"},{"event":"cmd_output","timestamp":1607098246,"output":"SubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl"},{"event":"cmd_output","timestamp":1607098246,"output":".log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:46.581 [info] ppl_id: b5cdf7d1-0645-439b-ae26-d8e9104e"},{"event":"cmd_output","timestamp":1607098246,"output":"d464, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098246,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:46.605 [info] ppl_id: b5cdf7d1-0645"},{"event":"cmd_output","timestamp":1607098246,"output":"-439b-ae26-d8e9104ed464, type: PplRequests, event: persisted definition for request with request_tok"},{"event":"cmd_output","timestamp":1607098246,"output":"en: 4479acf4-364b-11eb-93d4-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.in"},{"event":"cmd_output","timestamp":1607098246,"output":"sert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:46.611 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Q"},{"event":"cmd_output","timestamp":1607098246,"output":"ueues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:10:46.609787"},{"event":"cmd_output","timestamp":1607098246,"output":"], name: \"master-.semaphore/semaphore.yml\", organization_id: \"5590f3ec-8d5c-4237-a1c6-3a310fc122c5\","},{"event":"cmd_output","timestamp":1607098246,"output":" project_id: \"6dd5c4c5-ff5d-4e55-a2bc-8c114b603415\", queue_id: \"2c0e9406-c2f3-41b6-b933-fb051ae41f9f"},{"event":"cmd_output","timestamp":1607098246,"output":"\", scope: \"project\", updated_at: ~N[2020-12-04 16:10:46.609795], user_generated: false}}\n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098246,"output":"\n16:10:46.615 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all"},{"event":"cmd_output","timestamp":1607098246,"output":"_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:46.615 [info] ppl_id: b5cdf7d1-0645-439b-ae26-d8e9104ed464, type: "},{"event":"cmd_output","timestamp":1607098246,"output":"PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Pp"},{"event":"cmd_output","timestamp":1607098246,"output":"l.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:46.617 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098246,"output":" b5cdf7d1-0645-439b-ae26-d8e9104ed464, type: PplSubInits, state: done, result: passed, event: exit_s"},{"event":"cmd_output","timestamp":1607098246,"output":"cheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098246,"output":"6:10:46.633 [info] ppl_id: b5cdf7d1-0645-439b-ae26-d8e9104ed464, type: Ppls, state: pending, event:"},{"event":"cmd_output","timestamp":1607098246,"output":" exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098246,"output":"[22m\n16:10:46.955 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingState with name El"},{"event":"cmd_output","timestamp":1607098246,"output":"ixir.Ppl.Ppls.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl"},{"event":"cmd_output","timestamp":1607098246,"output":"-Ppls-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"pending\", \"queuing\", \"running\""},{"event":"cmd_output","timestamp":1607098246,"output":", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publi"},{"event":"cmd_output","timestamp":1607098246,"output":"sher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, retu"},{"event":"cmd_output","timestamp":1607098246,"output":"rning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Pp"},{"event":"cmd_output","timestamp":1607098247,"output":"l.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:10:47.064 [info] ppl_id: b5c"},{"event":"cmd_output","timestamp":1607098247,"output":"df7d1-0645-439b-ae26-d8e9104ed464, type: Ppls, state: done, result: canceled, event: exit_scheduling"},{"event":"cmd_output","timestamp":1607098247,"output":", recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test st"},{"event":"cmd_output","timestamp":1607098247,"output":"op pipeline in pending state (1125.5ms)\u001b[0m\n * test cancel pipeline in initializing state\r * test"},{"event":"cmd_output","timestamp":1607098247,"output":" cancel pipeline in initializing state (skipped)\n * test terminate ppl in init when SubInit is alr"},{"event":"cmd_output","timestamp":1607098247,"output":"eady done and blocks exist\u001b[22m\n16:10:47.536 [info] ppl_id: 1f849810-c9ae-41a4-a7dd-db4da5ca83c0, "},{"event":"cmd_output","timestamp":1607098247,"output":"type: PplRequests, event: persisted schedule request with request_token: 45238f12-364b-11eb-a4ce-525"},{"event":"cmd_output","timestamp":1607098247,"output":"4005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098247,"output":"22m\n16:10:47.542 [info] ppl_id: 1f849810-c9ae-41a4-a7dd-db4da5ca83c0, type: Ppls, state: initializ"},{"event":"cmd_output","timestamp":1607098247,"output":"ing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_respo"},{"event":"cmd_output","timestamp":1607098247,"output":"nse/2(L124), \n\u001b[0m\u001b[22m\n16:10:47.555 [info] Persisted ppl_sub_init for pipeline with ppl_id: 1f84"},{"event":"cmd_output","timestamp":1607098247,"output":"9810-c9ae-41a4-a7dd-db4da5ca83c0: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata"},{"event":"cmd_output","timestamp":1607098247,"output":"<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 109, in_schedulin"},{"event":"cmd_output","timestamp":1607098247,"output":"g: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:10:47.552985], pipeline_requests: #Ect"},{"event":"cmd_output","timestamp":1607098247,"output":"o.Association.NotLoaded, ppl_id: \"1f849810-c9ae-41a4-a"},{"event":"cmd_output","timestamp":1607098247,"output":"7dd-db4da5ca83c0\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_r"},{"event":"cmd_output","timestamp":1607098247,"output":"equest: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:47.552996]}\n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098247,"output":":10:47.558 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedState with name Eli"},{"event":"cmd_output","timestamp":1607098247,"output":"xir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\","},{"event":"cmd_output","timestamp":1607098247,"output":" [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args: %{allowed_states: [\"fetching\", \"done\""},{"event":"cmd_output","timestamp":1607098247,"output":"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"created\","},{"event":"cmd_output","timestamp":1607098247,"output":" publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, "},{"event":"cmd_output","timestamp":1607098247,"output":":result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :ski"},{"event":"cmd_output","timestamp":1607098247,"output":"p}\n\u001b[0m\u001b[22m\n16:10:47.558 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.FetchingS"},{"event":"cmd_output","timestamp":1607098247,"output":"tate with name Elixir.Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 ms, metric_name: {\"Ppl"},{"event":"cmd_output","timestamp":1607098247,"output":".beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %{allowed_states:"},{"event":"cmd_output","timestamp":1607098247,"output":" [\"regular_init\", \"compilation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model"},{"event":"cmd_output","timestamp":1607098247,"output":".PplSubInits, observed_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, "},{"event":"cmd_output","timestamp":1607098247,"output":":terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits"},{"event":"cmd_output","timestamp":1607098247,"output":".Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:47.559 [info] Periodic from module El"},{"event":"cmd_output","timestamp":1607098247,"output":"ixir.Ppl.PplSubInits.STMHandler.CompilationState with name Elixir.Ppl.PplSubInits.STMHandler.Compila"},{"event":"cmd_output","timestamp":1607098247,"output":"tionState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-Comp"},{"event":"cmd_output","timestamp":1607098247,"output":"ilationState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"stopping\", \"done"},{"event":"cmd_output","timestamp":1607098247,"output":"\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"compila"},{"event":"cmd_output","timestamp":1607098247,"output":"tion\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :s"},{"event":"cmd_output","timestamp":1607098247,"output":"tate, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor"},{"event":"cmd_output","timestamp":1607098247,"output":": :skip}\n\u001b[0m\u001b[22m\n16:10:47.559 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.Reg"},{"event":"cmd_output","timestamp":1607098247,"output":"ularInitState with name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period: 100 ms, metric"},{"event":"cmd_output","timestamp":1607098247,"output":"_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurring args: %{"},{"event":"cmd_output","timestamp":1607098247,"output":"allowed_states: [\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, obs"},{"event":"cmd_output","timestamp":1607098247,"output":"erved_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_re"},{"event":"cmd_output","timestamp":1607098247,"output":"quest, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSub"},{"event":"cmd_output","timestamp":1607098247,"output":"Inits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:47.672 [info] ppl_id: 1f849810-c9ae-41a4-a7dd-db4d"},{"event":"cmd_output","timestamp":1607098247,"output":"a5ca83c0, type: PplRequests, event: persisted source_args for pipeline: 1f849810-c9ae-41a4-a7dd-db4d"},{"event":"cmd_output","timestamp":1607098247,"output":"a5ca83c0, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098247,"output":"\n16:10:47.676 [info] ppl_id: 1f849810-c9ae-41a4-a7dd-db4da5ca83c0, type: PplSubInits, state: fetchi"},{"event":"cmd_output","timestamp":1607098247,"output":"ng, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90"},{"event":"cmd_output","timestamp":1607098247,"output":"), \n\u001b[0m\u001b[22m\n16:10:47.702 [info] ppl_id: 1f849810-c9ae-41a4-a7dd-db4da5ca83c0, type: PplSubInits"},{"event":"cmd_output","timestamp":1607098247,"output":", state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098247,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:47.735 [info] ppl_id: 1f849810-c9ae-41a4-a7dd-db4da5ca83c0"},{"event":"cmd_output","timestamp":1607098247,"output":", type: PplRequests, event: persisted definition for request with request_token: 45238f12-364b-11eb-"},{"event":"cmd_output","timestamp":1607098247,"output":"a4ce-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76),"},{"event":"cmd_output","timestamp":1607098247,"output":" \n\u001b[0m\u001b[22m\n16:10:47.743 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.S"},{"event":"cmd_output","timestamp":1607098247,"output":"chema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:10:47.741605], name: \"master-.semap"},{"event":"cmd_output","timestamp":1607098247,"output":"hore/semaphore.yml\", organization_id: \"1e9749b4-1aee-4524-be7f-650150df1a2e\", project_id: \"0c00a8c2-"},{"event":"cmd_output","timestamp":1607098247,"output":"d791-4dc0-ac0f-7d1bc964072a\", queue_id: \"504b8555-d081-481e-9f63-103872912a0d\", scope: \"project\", up"},{"event":"cmd_output","timestamp":1607098247,"output":"dated_at: ~N[2020-12-04 16:10:47.741618], user_generated: false}}\n\u001b[0m\u001b[22m\n16:10:47.748 [info] e"},{"event":"cmd_output","timestamp":1607098247,"output":"vent: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098247,"output":"2m\n16:10:47.748 [info] ppl_id: 1f849810-c9ae-41a4-a7dd-db4da5ca83c0, type: PplBlocks, block_index:"},{"event":"cmd_output","timestamp":1607098247,"output":" 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandle"},{"event":"cmd_output","timestamp":1607098247,"output":"r.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:47.750 [info] ppl_id: 1f849810-c9ae-41a4-a7d"},{"event":"cmd_output","timestamp":1607098247,"output":"d-db4da5ca83c0, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_cou"},{"event":"cmd_output","timestamp":1607098248,"output":"nt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:48.063 [info] Per"},{"event":"cmd_output","timestamp":1607098248,"output":"iodic from module Elixir.Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.STMHandler."},{"event":"cmd_output","timestamp":1607098248,"output":"InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Ini"},{"event":"cmd_output","timestamp":1607098248,"output":"tializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], cooling_ti"},{"event":"cmd_output","timestamp":1607098248,"output":"me_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher_cb: #Functi"},{"event":"cmd_output","timestamp":1607098248,"output":"on<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, returning: [:"},{"event":"cmd_output","timestamp":1607098248,"output":"id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Mo"},{"event":"cmd_output","timestamp":1607098248,"output":"del.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:48.183 [info] ppl_id: 1f849810-c9ae-41a4-a7dd-d"},{"event":"cmd_output","timestamp":1607098248,"output":"b4da5ca83c0, type: Ppls, state: done, result: canceled, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098248,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test terminate ppl in init wh"},{"event":"cmd_output","timestamp":1607098248,"output":"en SubInit is already done and blocks exist (1100.9ms)\u001b[0m\n * test cancel pipeline in pending stat"},{"event":"cmd_output","timestamp":1607098248,"output":"e\u001b[22m\n16:10:48.637 [info] ppl_id: d8034d8f-12a2-4ef3-8f0d-bce2504f549b, type: PplRequests, event:"},{"event":"cmd_output","timestamp":1607098248,"output":" persisted schedule request with request_token: 45cb7b0a-364b-11eb-b64c-5254005464e2, origin: Elixir"},{"event":"cmd_output","timestamp":1607098248,"output":".Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:48.646 [info] "},{"event":"cmd_output","timestamp":1607098248,"output":" ppl_id: d8034d8f-12a2-4ef3-8f0d-bce2504f549b, type: Ppls, state: initializing, event: initializing,"},{"event":"cmd_output","timestamp":1607098248,"output":" recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098248,"output":"\n16:10:48.651 [info] Persisted ppl_sub_init for pipeline with ppl_id: d8034d8f-12a2-4ef3-8f0d-bce25"},{"event":"cmd_output","timestamp":1607098248,"output":"04f549b: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_i"},{"event":"cmd_output","timestamp":1607098248,"output":"nits\">, compile_task_id: nil, error_description: nil, id: 110, in_scheduling: false, init_type: \"reg"},{"event":"cmd_output","timestamp":1607098248,"output":"ular\", inserted_at: ~N[2020-12-04 16:10:48.648656], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"d8034d8f-12a2-4ef3-8f0d-bce2504f549b\", recove"},{"event":"cmd_output","timestamp":1607098248,"output":"ry_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_re"},{"event":"cmd_output","timestamp":1607098248,"output":"quest_desc: nil, updated_at: ~N[2020-12-04 16:10:48.648670]}\n\u001b[0m\u001b[22m\n16:10:48.663 [info] Period"},{"event":"cmd_output","timestamp":1607098248,"output":"ic from module Elixir.Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.STMHandler.Ini"},{"event":"cmd_output","timestamp":1607098248,"output":"tializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Initia"},{"event":"cmd_output","timestamp":1607098248,"output":"lizingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], cooling_time_"},{"event":"cmd_output","timestamp":1607098248,"output":"sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher_cb: #Function<"},{"event":"cmd_output","timestamp":1607098248,"output":"0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, returning: [:id,"},{"event":"cmd_output","timestamp":1607098248,"output":" :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model"},{"event":"cmd_output","timestamp":1607098248,"output":".Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:48.664 [info] Periodic from module Elixir.Ppl.PplS"},{"event":"cmd_output","timestamp":1607098248,"output":"ubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: "},{"event":"cmd_output","timestamp":1607098248,"output":"100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurrin"},{"event":"cmd_output","timestamp":1607098248,"output":"g args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits."},{"event":"cmd_output","timestamp":1607098248,"output":"Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:"},{"event":"cmd_output","timestamp":1607098248,"output":"id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubI"},{"event":"cmd_output","timestamp":1607098248,"output":"nits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:48.665 [info] Periodic from modul"},{"event":"cmd_output","timestamp":1607098248,"output":"e Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler.Fetchi"},{"event":"cmd_output","timestamp":1607098248,"output":"ngState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-Fetchi"},{"event":"cmd_output","timestamp":1607098248,"output":"ngState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"done\"], cooling_time_"},{"event":"cmd_output","timestamp":1607098248,"output":"sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fetching\", publisher_cb:"},{"event":"cmd_output","timestamp":1607098248,"output":" :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :reco"},{"event":"cmd_output","timestamp":1607098248,"output":"very_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098248,"output":"\n16:10:48.666 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CompilationState with n"},{"event":"cmd_output","timestamp":1607098248,"output":"ame Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 100 ms, metric_name: {\"Ppl.beholde"},{"event":"cmd_output","timestamp":1607098248,"output":"r-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurring args: %{allowed_states: [\"re"},{"event":"cmd_output","timestamp":1607098248,"output":"gular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInit"},{"event":"cmd_output","timestamp":1607098248,"output":"s.Model.PplSubInits, observed_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returni"},{"event":"cmd_output","timestamp":1607098248,"output":"ng: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.P"},{"event":"cmd_output","timestamp":1607098248,"output":"plSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:48.667 [info] Periodic from"},{"event":"cmd_output","timestamp":1607098248,"output":" module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHandl"},{"event":"cmd_output","timestamp":1607098248,"output":"er.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHa"},{"event":"cmd_output","timestamp":1607098248,"output":"ndler-RegularInitState\"]}, recurring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, initial_"},{"event":"cmd_output","timestamp":1607098248,"output":"query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_init\", publisher_cb: :skip, repo:"},{"event":"cmd_output","timestamp":1607098248,"output":" Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :"},{"event":"cmd_output","timestamp":1607098248,"output":"ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:48.777"},{"event":"cmd_output","timestamp":1607098248,"output":" [info] ppl_id: d8034d8f-12a2-4ef3-8f0d-bce2504f549b, type: PplRequests, event: persisted source_ar"},{"event":"cmd_output","timestamp":1607098248,"output":"gs for pipeline: d8034d8f-12a2-4ef3-8f0d-bce2504f549b, origin: Elixir.Ppl.PplRequests.Model.PplReque"},{"event":"cmd_output","timestamp":1607098248,"output":"stsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:48.780 [info] ppl_id: d8034d8f-12a2-4ef3-8f0d-b"},{"event":"cmd_output","timestamp":1607098248,"output":"ce2504f549b, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098248,"output":"Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:48.799 [info] ppl_id: d8034d8f-1"},{"event":"cmd_output","timestamp":1607098248,"output":"2a2-4ef3-8f0d-bce2504f549b, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery"},{"event":"cmd_output","timestamp":1607098248,"output":"_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:48.825 [info] "},{"event":"cmd_output","timestamp":1607098248,"output":" ppl_id: d8034d8f-12a2-4ef3-8f0d-bce2504f549b, type: PplRequests, event: persisted definition for re"},{"event":"cmd_output","timestamp":1607098248,"output":"quest with request_token: 45cb7b0a-364b-11eb-b64c-5254005464e2, origin: Elixir.Ppl.PplRequests.Model"},{"event":"cmd_output","timestamp":1607098248,"output":".PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:48.830 [info] Queue persisted: {:o"},{"event":"cmd_output","timestamp":1607098248,"output":"k, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020"},{"event":"cmd_output","timestamp":1607098248,"output":"-12-04 16:10:48.828005], name: \"master-.semaphore/semaphore.yml\", organization_id: \"51cc334b-3685-4f"},{"event":"cmd_output","timestamp":1607098248,"output":"cb-82f1-0fba75e08725\", project_id: \"563e5688-34e4-43b1-b555-845779807f4e\", queue_id: \"a370a0a4-4731-"},{"event":"cmd_output","timestamp":1607098248,"output":"45c9-90e4-db4ad2e9b34b\", scope: \"project\", updated_at: ~N[2020-12-04 16:10:48.828039], user_generate"},{"event":"cmd_output","timestamp":1607098248,"output":"d: false}}\n\u001b[0m\u001b[22m\n16:10:48.837 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandle"},{"event":"cmd_output","timestamp":1607098248,"output":"r.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:48.837 [info] ppl_id: d8034d8f-12a2-4ef3-8f0"},{"event":"cmd_output","timestamp":1607098248,"output":"d-bce2504f549b, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count"},{"event":"cmd_output","timestamp":1607098248,"output":": 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:"},{"event":"cmd_output","timestamp":1607098248,"output":"48.847 [info] ppl_id: d8034d8f-12a2-4ef3-8f0d-bce2504f549b, type: PplSubInits, state: done, result:"},{"event":"cmd_output","timestamp":1607098248,"output":" passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/"},{"event":"cmd_output","timestamp":1607098248,"output":"1(L90), \n\u001b[0m\u001b[22m\n16:10:48.861 [info] ppl_id: d8034d8f-12a2-4ef3-8f0d-bce2504f549b, type: Ppls, "},{"event":"cmd_output","timestamp":1607098248,"output":"state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_"},{"event":"cmd_output","timestamp":1607098249,"output":"change/1(L90), \n\u001b[0m\u001b[22m\n16:10:49.173 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.Pen"},{"event":"cmd_output","timestamp":1607098249,"output":"dingState with name Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.be"},{"event":"cmd_output","timestamp":1607098249,"output":"holder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"pending\""},{"event":"cmd_output","timestamp":1607098249,"output":", \"queuing\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_s"},{"event":"cmd_output","timestamp":1607098249,"output":"tate: \"pending\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, re"},{"event":"cmd_output","timestamp":1607098249,"output":"po: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count"},{"event":"cmd_output","timestamp":1607098249,"output":", :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:10:49.2"},{"event":"cmd_output","timestamp":1607098249,"output":"86 [info] ppl_id: d8034d8f-12a2-4ef3-8f0d-bce2504f549b, type: Ppls, state: done, result: canceled, "},{"event":"cmd_output","timestamp":1607098249,"output":"event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \r"},{"event":"cmd_output","timestamp":1607098249,"output":"\n\u001b[0m\u001b[32m\r * test cancel pipeline in pending state (1110.6ms)\u001b[0m\n * test stop pipeline in runni"},{"event":"cmd_output","timestamp":1607098249,"output":"ng state\u001b[22m\n16:10:49.751 [info] ppl_id: 1722b23a-9c6b-4f51-a214-c362520c0d57, type: PplRequests,"},{"event":"cmd_output","timestamp":1607098249,"output":" event: persisted schedule request with request_token: 46759fa4-364b-11eb-96e2-5254005464e2, origin:"},{"event":"cmd_output","timestamp":1607098249,"output":" Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:49.759 "},{"event":"cmd_output","timestamp":1607098249,"output":"[info] ppl_id: 1722b23a-9c6b-4f51-a214-c362520c0d57, type: Ppls, state: initializing, event: initia"},{"event":"cmd_output","timestamp":1607098249,"output":"lizing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098249,"output":"m\u001b[22m\n16:10:49.765 [info] Persisted ppl_sub_init for pipeline with ppl_id: 1722b23a-9c6b-4f51-a21"},{"event":"cmd_output","timestamp":1607098249,"output":"4-c362520c0d57: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipelin"},{"event":"cmd_output","timestamp":1607098249,"output":"e_sub_inits\">, compile_task_id: nil, error_description: nil, id: 111, in_scheduling: false, init_typ"},{"event":"cmd_output","timestamp":1607098249,"output":"e: \"regular\", inserted_at: ~N[2020-12-04 16:10:49.760971], pipeline_requests: #Ecto.Association.NotL"},{"event":"cmd_output","timestamp":1607098249,"output":"oaded, ppl_id: \"1722b23a-9c6b-4f51-a214-c362520c0d57\","},{"event":"cmd_output","timestamp":1607098249,"output":" recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, termi"},{"event":"cmd_output","timestamp":1607098249,"output":"nate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:49.760982]}\n\u001b[0m\u001b[22m\n16:10:49.769 [info] "},{"event":"cmd_output","timestamp":1607098249,"output":" Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.STMHand"},{"event":"cmd_output","timestamp":1607098249,"output":"ler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler"},{"event":"cmd_output","timestamp":1607098249,"output":"-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], coolin"},{"event":"cmd_output","timestamp":1607098249,"output":"g_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher_cb: #Fu"},{"event":"cmd_output","timestamp":1607098249,"output":"nction<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, returning"},{"event":"cmd_output","timestamp":1607098249,"output":": [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098249,"output":"s.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:49.770 [info] Periodic from module Elixir.P"},{"event":"cmd_output","timestamp":1607098249,"output":"pl.PplSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: p"},{"event":"cmd_output","timestamp":1607098249,"output":"eriod: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, r"},{"event":"cmd_output","timestamp":1607098249,"output":"ecurring args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSu"},{"event":"cmd_output","timestamp":1607098249,"output":"bInits.Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, return"},{"event":"cmd_output","timestamp":1607098249,"output":"ing: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl."},{"event":"cmd_output","timestamp":1607098249,"output":"PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:49.771 [info] Periodic fro"},{"event":"cmd_output","timestamp":1607098249,"output":"m module Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler"},{"event":"cmd_output","timestamp":1607098249,"output":".FetchingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler"},{"event":"cmd_output","timestamp":1607098249,"output":"-FetchingState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"done\"], coolin"},{"event":"cmd_output","timestamp":1607098249,"output":"g_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fetching\", publis"},{"event":"cmd_output","timestamp":1607098249,"output":"her_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result"},{"event":"cmd_output","timestamp":1607098249,"output":", :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0"},{"event":"cmd_output","timestamp":1607098249,"output":"m\u001b[22m\n16:10:49.772 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CompilationState"},{"event":"cmd_output","timestamp":1607098249,"output":" with name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 100 ms, metric_name: {\"Ppl."},{"event":"cmd_output","timestamp":1607098249,"output":"beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurring args: %{allowed_state"},{"event":"cmd_output","timestamp":1607098249,"output":"s: [\"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098249,"output":"SubInits.Model.PplSubInits, observed_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, "},{"event":"cmd_output","timestamp":1607098249,"output":"returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema"},{"event":"cmd_output","timestamp":1607098249,"output":": Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:49.773 [info] Period"},{"event":"cmd_output","timestamp":1607098249,"output":"ic from module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.S"},{"event":"cmd_output","timestamp":1607098249,"output":"TMHandler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInit"},{"event":"cmd_output","timestamp":1607098249,"output":"s-STMHandler-RegularInitState\"]}, recurring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, i"},{"event":"cmd_output","timestamp":1607098249,"output":"nitial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_init\", publisher_cb: :skip"},{"event":"cmd_output","timestamp":1607098249,"output":", repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_c"},{"event":"cmd_output","timestamp":1607098249,"output":"ount, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10"},{"event":"cmd_output","timestamp":1607098249,"output":":49.881 [info] ppl_id: 1722b23a-9c6b-4f51-a214-c362520c0d57, type: PplRequests, event: persisted so"},{"event":"cmd_output","timestamp":1607098249,"output":"urce_args for pipeline: 1722b23a-9c6b-4f51-a214-c362520c0d57, origin: Elixir.Ppl.PplRequests.Model.P"},{"event":"cmd_output","timestamp":1607098249,"output":"plRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:49.884 [info] ppl_id: 1722b23a-9c6b-4f51"},{"event":"cmd_output","timestamp":1607098249,"output":"-a214-c362520c0d57, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098249,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:49.912 [info] ppl_id: 172"},{"event":"cmd_output","timestamp":1607098249,"output":"2b23a-9c6b-4f51-a214-c362520c0d57, type: PplSubInits, state: regular_init, event: exit_scheduling, r"},{"event":"cmd_output","timestamp":1607098249,"output":"ecovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:49.953 "},{"event":"cmd_output","timestamp":1607098249,"output":"[info] ppl_id: 1722b23a-9c6b-4f51-a214-c362520c0d57, type: PplRequests, event: persisted definition"},{"event":"cmd_output","timestamp":1607098249,"output":" for request with request_token: 46759fa4-364b-11eb-96e2-5254005464e2, origin: Elixir.Ppl.PplRequest"},{"event":"cmd_output","timestamp":1607098249,"output":"s.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:49.958 [info] Queue persist"},{"event":"cmd_output","timestamp":1607098249,"output":"ed: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: "},{"event":"cmd_output","timestamp":1607098249,"output":"~N[2020-12-04 16:10:49.956637], name: \"master-.semaphore/semaphore.yml\", organization_id: \"2199bd8f-"},{"event":"cmd_output","timestamp":1607098249,"output":"d996-4bc6-a899-9f5fdea74569\", project_id: \"0db815a9-b5ff-4041-84f2-962649cf59b8\", queue_id: \"3ca8c62"},{"event":"cmd_output","timestamp":1607098249,"output":"e-2d04-415f-927d-3a33c84f903d\", scope: \"project\", updated_at: ~N[2020-12-04 16:10:49.956650], user_g"},{"event":"cmd_output","timestamp":1607098249,"output":"enerated: false}}\n\u001b[0m\u001b[22m\n16:10:49.965 [info] event: created, origin: Elixir.Ppl.PplSubInits.ST"},{"event":"cmd_output","timestamp":1607098249,"output":"MHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:49.965 [info] ppl_id: 1722b23a-9c6b-4"},{"event":"cmd_output","timestamp":1607098249,"output":"f51-a214-c362520c0d57, type: PplBlocks, block_index: 0, state: initializing, event: created, recover"},{"event":"cmd_output","timestamp":1607098249,"output":"y_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098249,"output":"\n16:10:49.968 [info] ppl_id: 1722b23a-9c6b-4f51-a214-c362520c0d57, type: PplSubInits, state: done, "},{"event":"cmd_output","timestamp":1607098249,"output":"result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_"},{"event":"cmd_output","timestamp":1607098249,"output":"change/1(L90), \n\u001b[0m\u001b[22m\n16:10:49.980 [info] ppl_id: 1722b23a-9c6b-4f51-a214-c362520c0d57, type:"},{"event":"cmd_output","timestamp":1607098249,"output":" Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098250,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:50.275 [info] Periodic from module Elixir.Ppl.Ppls.STMHand"},{"event":"cmd_output","timestamp":1607098250,"output":"ler.PendingState with name Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 100 ms, metric_name: {"},{"event":"cmd_output","timestamp":1607098250,"output":"\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"p"},{"event":"cmd_output","timestamp":1607098250,"output":"ending\", \"queuing\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, obs"},{"event":"cmd_output","timestamp":1607098250,"output":"erved_state: \"pending\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler.PendingState.args"},{"event":"cmd_output","timestamp":1607098250,"output":"/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recover"},{"event":"cmd_output","timestamp":1607098250,"output":"y_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098250,"output":"10:50.276 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.QueuingState with name Elixir.Ppl."},{"event":"cmd_output","timestamp":1607098250,"output":"Ppls.STMHandler.QueuingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STM"},{"event":"cmd_output","timestamp":1607098250,"output":"Handler-QueuingState\"]}, recurring args: %{allowed_states: [\"queuing\", \"running\", \"done\"], cooling_t"},{"event":"cmd_output","timestamp":1607098250,"output":"ime_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", publisher_cb: #Function<"},{"event":"cmd_output","timestamp":1607098250,"output":"0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :ter"},{"event":"cmd_output","timestamp":1607098250,"output":"minate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls"},{"event":"cmd_output","timestamp":1607098250,"output":", task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:50.382 [info] ppl_id: 1722b23a-9c6b-4f51-a214-c362520c0"},{"event":"cmd_output","timestamp":1607098250,"output":"d57, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.ST"},{"event":"cmd_output","timestamp":1607098250,"output":"M.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:50.394 [info] ppl_id: 1722b23a-9c6b-4f51-a214-c3"},{"event":"cmd_output","timestamp":1607098250,"output":"62520c0d57, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Lo"},{"event":"cmd_output","timestamp":1607098250,"output":"oper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:50.781 [info] Periodic from module Elixir"},{"event":"cmd_output","timestamp":1607098250,"output":".Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHandler.RunningState :: period: 100 m"},{"event":"cmd_output","timestamp":1607098250,"output":"s, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring args: %{al"},{"event":"cmd_output","timestamp":1607098250,"output":"lowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.P"},{"event":"cmd_output","timestamp":1607098250,"output":"pls, observed_state: \"running\", publisher_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler.RunningS"},{"event":"cmd_output","timestamp":1607098250,"output":"tate.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result,"},{"event":"cmd_output","timestamp":1607098250,"output":" :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098250,"output":"[22m\n16:10:50.892 [info] ppl_id: 1722b23a-9c6b-4f51-a214-c362520c0d57, type: Ppls, state: stopping"},{"event":"cmd_output","timestamp":1607098250,"output":", event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90),"},{"event":"cmd_output","timestamp":1607098251,"output":" \n\u001b[0m\u001b[22m\n16:10:51.285 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.Initializing"},{"event":"cmd_output","timestamp":1607098251,"output":"State with name Elixir.Ppl.PplBlocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\""},{"event":"cmd_output","timestamp":1607098251,"output":"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_st"},{"event":"cmd_output","timestamp":1607098251,"output":"ates: [\"initializing\", \"waiting\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.P"},{"event":"cmd_output","timestamp":1607098251,"output":"plBlocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, "},{"event":"cmd_output","timestamp":1607098251,"output":":terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: P"},{"event":"cmd_output","timestamp":1607098251,"output":"pl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:51.286 [info] Periodic from"},{"event":"cmd_output","timestamp":1607098251,"output":" module Elixir.Ppl.PplBlocks.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler.Waiti"},{"event":"cmd_output","timestamp":1607098251,"output":"ngState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-Waiting"},{"event":"cmd_output","timestamp":1607098251,"output":"State\"]}, recurring args: %{allowed_states: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 0, ini"},{"event":"cmd_output","timestamp":1607098251,"output":"tial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"waiting\", publisher_cb: #Function<0.8975"},{"event":"cmd_output","timestamp":1607098251,"output":"022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :termin"},{"event":"cmd_output","timestamp":1607098251,"output":"ate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplB"},{"event":"cmd_output","timestamp":1607098251,"output":"locks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:51.287 [info] Periodic from module"},{"event":"cmd_output","timestamp":1607098251,"output":" Elixir.Ppl.Ppls.STMHandler.StoppingState with name Elixir.Ppl.Ppls.STMHandler.StoppingState :: peri"},{"event":"cmd_output","timestamp":1607098251,"output":"od: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring "},{"event":"cmd_output","timestamp":1607098251,"output":"args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Pp"},{"event":"cmd_output","timestamp":1607098251,"output":"ls, observed_state: \"stopping\", publisher_cb: #Function<0.71803493/1 in Ppl.Ppls.STMHandler.Stopping"},{"event":"cmd_output","timestamp":1607098251,"output":"State.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result"},{"event":"cmd_output","timestamp":1607098251,"output":", :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:"},{"event":"cmd_output","timestamp":1607098251,"output":"51.392 [info] ppl_id: 1722b23a-9c6b-4f51-a214-c362520c0d57, type: PplBlocks, block_index: 0, state:"},{"event":"cmd_output","timestamp":1607098251,"output":" done, result: canceled, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.l"},{"event":"cmd_output","timestamp":1607098251,"output":"og_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:51.399 [info] ppl_id: 1722b23a-9c6b-4f51-a214-c362520c0d"},{"event":"cmd_output","timestamp":1607098251,"output":"57, type: Ppls, state: done, result: stopped, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098251,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test stop pipeline in running state (21"},{"event":"cmd_output","timestamp":1607098251,"output":"11.9ms)\u001b[0m\n * test stop pipeline in initializing state\r * test stop pipeline in initializing sta"},{"event":"cmd_output","timestamp":1607098251,"output":"te (skipped)\n\nPpl.Looper.Ppls.StateTransition.Test\n * test Ppls looper transitions - validation "},{"event":"cmd_output","timestamp":1607098251,"output":"fail\u001b[22m\n16:10:51.880 [info] ppl_id: 3d5e28b4-7dd5-495f-a88c-4a3be692a5db, type: PplRequests, eve"},{"event":"cmd_output","timestamp":1607098251,"output":"nt: persisted schedule request with request_token: 47ba52d8-364b-11eb-a9c9-5254005464e2, origin: Eli"},{"event":"cmd_output","timestamp":1607098251,"output":"xir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:51.891 [inf"},{"event":"cmd_output","timestamp":1607098251,"output":"o] ppl_id: 16a7e88a-8014-4b69-a5ae-a550e6e4bb7b, type: PplRequests, event: persisted schedule reque"},{"event":"cmd_output","timestamp":1607098251,"output":"st with request_token: 47bbf016-364b-11eb-bf1f-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.Pp"},{"event":"cmd_output","timestamp":1607098251,"output":"lRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:51.907 [info] ppl_id: 16a7e88a-8014-4b"},{"event":"cmd_output","timestamp":1607098251,"output":"69-a5ae-a550e6e4bb7b, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098251,"output":"n: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:51.912 [info] Per"},{"event":"cmd_output","timestamp":1607098251,"output":"sisted ppl_sub_init for pipeline with ppl_id: 16a7e88a-8014-4b69-a5ae-a550e6e4bb7b: %Ppl.PplSubInits"},{"event":"cmd_output","timestamp":1607098251,"output":".Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: "},{"event":"cmd_output","timestamp":1607098251,"output":"nil, error_description: nil, id: 112, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[20"},{"event":"cmd_output","timestamp":1607098251,"output":"20-12-04 16:10:51.908714], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"16a7e88a-8014-4b69-a5ae-a550e6e4bb7b\", recovery_count: 0, result: nil,"},{"event":"cmd_output","timestamp":1607098251,"output":" result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_"},{"event":"cmd_output","timestamp":1607098251,"output":"at: ~N[2020-12-04 16:10:51.908729]}\n\u001b[0m\u001b[22m\n16:10:51.912 [info] Periodic from module Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098251,"output":".Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period:"},{"event":"cmd_output","timestamp":1607098251,"output":" 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring"},{"event":"cmd_output","timestamp":1607098251,"output":" args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Pp"},{"event":"cmd_output","timestamp":1607098251,"output":"l.Ppls.Model.Ppls, observed_state: \"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls"},{"event":"cmd_output","timestamp":1607098251,"output":".STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :upd"},{"event":"cmd_output","timestamp":1607098251,"output":"ated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :"},{"event":"cmd_output","timestamp":1607098251,"output":"skip}\n\u001b[0m\u001b[22m\n16:10:51.913 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.Create"},{"event":"cmd_output","timestamp":1607098251,"output":"dState with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 100 ms, metric_name: {\"Pp"},{"event":"cmd_output","timestamp":1607098251,"output":"l.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args: %{allowed_states:"},{"event":"cmd_output","timestamp":1607098251,"output":" [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observ"},{"event":"cmd_output","timestamp":1607098251,"output":"ed_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :"},{"event":"cmd_output","timestamp":1607098251,"output":"updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, t"},{"event":"cmd_output","timestamp":1607098251,"output":"ask_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:51.914 [info] Periodic from module Elixir.Ppl.PplSubInits."},{"event":"cmd_output","timestamp":1607098251,"output":"STMHandler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 ms"},{"event":"cmd_output","timestamp":1607098251,"output":", metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring arg"},{"event":"cmd_output","timestamp":1607098251,"output":"s: %{allowed_states: [\"regular_init\", \"compilation\", \"done\"], cooling_time_sec: -2, initial_query: P"},{"event":"cmd_output","timestamp":1607098251,"output":"pl.PplSubInits.Model.PplSubInits, observed_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRep"},{"event":"cmd_output","timestamp":1607098251,"output":"o, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], sch"},{"event":"cmd_output","timestamp":1607098251,"output":"ema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:51.917 [info] Per"},{"event":"cmd_output","timestamp":1607098251,"output":"iodic from module Elixir.Ppl.PplSubInits.STMHandler.CompilationState with name Elixir.Ppl.PplSubInit"},{"event":"cmd_output","timestamp":1607098251,"output":"s.STMHandler.CompilationState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubI"},{"event":"cmd_output","timestamp":1607098251,"output":"nits-STMHandler-CompilationState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation"},{"event":"cmd_output","timestamp":1607098251,"output":"\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, obse"},{"event":"cmd_output","timestamp":1607098251,"output":"rved_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_requ"},{"event":"cmd_output","timestamp":1607098251,"output":"est, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubIn"},{"event":"cmd_output","timestamp":1607098251,"output":"its, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:51.918 [info] Periodic from module Elixir.Ppl.PplSub"},{"event":"cmd_output","timestamp":1607098251,"output":"Inits.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: pe"},{"event":"cmd_output","timestamp":1607098251,"output":"riod: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}"},{"event":"cmd_output","timestamp":1607098251,"output":", recurring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Mo"},{"event":"cmd_output","timestamp":1607098251,"output":"del.PplSubInits, observed_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning:"},{"event":"cmd_output","timestamp":1607098251,"output":" [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplS"},{"event":"cmd_output","timestamp":1607098252,"output":"ubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:52.029 [info] ppl_id: 16a7e88a"},{"event":"cmd_output","timestamp":1607098252,"output":"-8014-4b69-a5ae-a550e6e4bb7b, type: PplRequests, event: persisted source_args for pipeline: 16a7e88a"},{"event":"cmd_output","timestamp":1607098252,"output":"-8014-4b69-a5ae-a550e6e4bb7b, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/"},{"event":"cmd_output","timestamp":1607098252,"output":"2(L89), \n\u001b[0m\u001b[22m\n16:10:52.031 [info] ppl_id: 16a7e88a-8014-4b69-a5ae-a550e6e4bb7b, type: PplSub"},{"event":"cmd_output","timestamp":1607098252,"output":"Inits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.lo"},{"event":"cmd_output","timestamp":1607098252,"output":"g_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:52.060 [info] ppl_id: 16a7e88a-8014-4b69-a5ae-a550e6e4bb7"},{"event":"cmd_output","timestamp":1607098252,"output":"b, type: PplSubInits, state: done, result: failed, event: exit_scheduling, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098252,"output":": Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:52.076 [info] ppl_id: 16a7e88a"},{"event":"cmd_output","timestamp":1607098252,"output":"-8014-4b69-a5ae-a550e6e4bb7b, type: Ppls, state: done, result: failed, event: exit_scheduling, recov"},{"event":"cmd_output","timestamp":1607098252,"output":"ery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test Ppls loop"},{"event":"cmd_output","timestamp":1607098252,"output":"er transitions - validation fail (627.8ms)\u001b[0m\n * test Ppls looper transitions - pass\u001b[22m\n16:10:"},{"event":"cmd_output","timestamp":1607098252,"output":"52.500 [info] ppl_id: 874532bc-ef2c-4d07-ba1d-fb51592d996b, type: PplRequests, event: persisted sch"},{"event":"cmd_output","timestamp":1607098252,"output":"edule request with request_token: 4818a644-364b-11eb-b4fe-5254005464e2, origin: Elixir.Ppl.PplReques"},{"event":"cmd_output","timestamp":1607098252,"output":"ts.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:52.510 [info] ppl_id: 1290f"},{"event":"cmd_output","timestamp":1607098252,"output":"372-9191-4a92-8309-eff9e417226f, type: PplRequests, event: persisted schedule request with request_t"},{"event":"cmd_output","timestamp":1607098252,"output":"oken: 481a1d26-364b-11eb-8405-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries."},{"event":"cmd_output","timestamp":1607098252,"output":"process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:52.518 [info] ppl_id: 874532bc-ef2c-4d07-ba1d-fb51592d9"},{"event":"cmd_output","timestamp":1607098252,"output":"96b, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098252,"output":"s.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:52.522 [info] Persisted ppl_sub_in"},{"event":"cmd_output","timestamp":1607098252,"output":"it for pipeline with ppl_id: 874532bc-ef2c-4d07-ba1d-fb51592d996b: %Ppl.PplSubInits.Model.PplSubInit"},{"event":"cmd_output","timestamp":1607098252,"output":"s{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_descri"},{"event":"cmd_output","timestamp":1607098252,"output":"ption: nil, id: 113, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:10:52"},{"event":"cmd_output","timestamp":1607098252,"output":".519748], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"874532bc-ef2c-4d07-ba1d-fb51592d996b\", recovery_count: 0, result: nil, result_reason: n"},{"event":"cmd_output","timestamp":1607098252,"output":"il, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04"},{"event":"cmd_output","timestamp":1607098252,"output":" 16:10:52.519762]}\n\u001b[0m\u001b[22m\n16:10:52.531 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHan"},{"event":"cmd_output","timestamp":1607098252,"output":"dler.InitializingState with name Elixir.Ppl.PplBlocks.STMHandler.InitializingState :: period: 100 ms"},{"event":"cmd_output","timestamp":1607098252,"output":", metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-InitializingState\"]}, recurring a"},{"event":"cmd_output","timestamp":1607098252,"output":"rgs: %{allowed_states: [\"initializing\", \"waiting\", \"done\"], cooling_time_sec: 0, initial_query: Ppl."},{"event":"cmd_output","timestamp":1607098252,"output":"PplBlocks.Model.PplBlocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, "},{"event":"cmd_output","timestamp":1607098252,"output":"returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_"},{"event":"cmd_output","timestamp":1607098252,"output":"index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:52.531 [inf"},{"event":"cmd_output","timestamp":1607098252,"output":"o] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks"},{"event":"cmd_output","timestamp":1607098252,"output":".STMHandler.WaitingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-S"},{"event":"cmd_output","timestamp":1607098252,"output":"TMHandler-WaitingState\"]}, recurring args: %{allowed_states: [\"waiting\", \"running\", \"done\"], cooling"},{"event":"cmd_output","timestamp":1607098252,"output":"_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"waiting\", publisher_cb:"},{"event":"cmd_output","timestamp":1607098252,"output":" #Function<0.8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, returni"},{"event":"cmd_output","timestamp":1607098252,"output":"ng: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index],"},{"event":"cmd_output","timestamp":1607098252,"output":" schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:52.532 [info] Per"},{"event":"cmd_output","timestamp":1607098252,"output":"iodic from module Elixir.Ppl.PplBlocks.STMHandler.RunningState with name Elixir.Ppl.PplBlocks.STMHan"},{"event":"cmd_output","timestamp":1607098252,"output":"dler.RunningState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandl"},{"event":"cmd_output","timestamp":1607098252,"output":"er-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_"},{"event":"cmd_output","timestamp":1607098252,"output":"sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"running\", publisher_cb: #Fun"},{"event":"cmd_output","timestamp":1607098252,"output":"ction<0.28166834/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: "},{"event":"cmd_output","timestamp":1607098252,"output":"[:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :blo"},{"event":"cmd_output","timestamp":1607098252,"output":"ck_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:52.532 [inf"},{"event":"cmd_output","timestamp":1607098252,"output":"o] Periodic from module Elixir.Block.Blocks.STMHandler.InitializingState with name Elixir.Block.Blo"},{"event":"cmd_output","timestamp":1607098252,"output":"cks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Bl"},{"event":"cmd_output","timestamp":1607098252,"output":"ocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling"},{"event":"cmd_output","timestamp":1607098252,"output":"_time_sec: 0, initial_query: Block.Blocks.Model.Blocks, observed_state: \"initializing\", publisher_cb"},{"event":"cmd_output","timestamp":1607098252,"output":": :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_c"},{"event":"cmd_output","timestamp":1607098252,"output":"ount, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:52.53"},{"event":"cmd_output","timestamp":1607098252,"output":"2 [info] Periodic from module Elixir.Block.Blocks.STMHandler.RunningState with name Elixir.Block.Bl"},{"event":"cmd_output","timestamp":1607098252,"output":"ocks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks"},{"event":"cmd_output","timestamp":1607098252,"output":"-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cool"},{"event":"cmd_output","timestamp":1607098252,"output":"ing_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"running\", publisher_cb:"},{"event":"cmd_output","timestamp":1607098252,"output":" :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_co"},{"event":"cmd_output","timestamp":1607098252,"output":"unt, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:52.532"},{"event":"cmd_output","timestamp":1607098252,"output":" [info] Periodic from module Elixir.Block.Tasks.STMHandler.PendingState with name Elixir.Block.Task"},{"event":"cmd_output","timestamp":1607098252,"output":"s.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STM"},{"event":"cmd_output","timestamp":1607098252,"output":"Handler-PendingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0,"},{"event":"cmd_output","timestamp":1607098252,"output":" initial_query: Block.Tasks.Model.Tasks, observed_state: \"pending\", publisher_cb: :skip, repo: Block"},{"event":"cmd_output","timestamp":1607098252,"output":".EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id, :bu"},{"event":"cmd_output","timestamp":1607098252,"output":"ild_request_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:52.533 ["},{"event":"cmd_output","timestamp":1607098252,"output":"info] Periodic from module Elixir.Block.Tasks.STMHandler.RunningState with name Elixir.Block.Tasks."},{"event":"cmd_output","timestamp":1607098252,"output":"STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHa"},{"event":"cmd_output","timestamp":1607098252,"output":"ndler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_ti"},{"event":"cmd_output","timestamp":1607098252,"output":"me_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"running\", publisher_cb: :skip, "},{"event":"cmd_output","timestamp":1607098252,"output":"repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :bl"},{"event":"cmd_output","timestamp":1607098252,"output":"ock_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:52.533 [info] P"},{"event":"cmd_output","timestamp":1607098252,"output":"eriodic from module Elixir.Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.STMHandle"},{"event":"cmd_output","timestamp":1607098252,"output":"r.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-I"},{"event":"cmd_output","timestamp":1607098252,"output":"nitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], cooling_"},{"event":"cmd_output","timestamp":1607098252,"output":"time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher_cb: #Func"},{"event":"cmd_output","timestamp":1607098252,"output":"tion<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, returning: "},{"event":"cmd_output","timestamp":1607098252,"output":"[:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls."},{"event":"cmd_output","timestamp":1607098252,"output":"Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:52.533 [info] Periodic from module Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098252,"output":".PplSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: per"},{"event":"cmd_output","timestamp":1607098252,"output":"iod: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, rec"},{"event":"cmd_output","timestamp":1607098252,"output":"urring args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubI"},{"event":"cmd_output","timestamp":1607098252,"output":"nits.Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returnin"},{"event":"cmd_output","timestamp":1607098252,"output":"g: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Pp"},{"event":"cmd_output","timestamp":1607098252,"output":"lSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:52.533 [info] Periodic from "},{"event":"cmd_output","timestamp":1607098252,"output":"module Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler.F"},{"event":"cmd_output","timestamp":1607098252,"output":"etchingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-F"},{"event":"cmd_output","timestamp":1607098252,"output":"etchingState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"done\"], cooling_"},{"event":"cmd_output","timestamp":1607098252,"output":"time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fetching\", publishe"},{"event":"cmd_output","timestamp":1607098252,"output":"r_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, "},{"event":"cmd_output","timestamp":1607098252,"output":":recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098252,"output":"[22m\n16:10:52.534 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CompilationState w"},{"event":"cmd_output","timestamp":1607098252,"output":"ith name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 100 ms, metric_name: {\"Ppl.be"},{"event":"cmd_output","timestamp":1607098252,"output":"holder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurring args: %{allowed_states:"},{"event":"cmd_output","timestamp":1607098252,"output":" [\"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSu"},{"event":"cmd_output","timestamp":1607098252,"output":"bInits.Model.PplSubInits, observed_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, re"},{"event":"cmd_output","timestamp":1607098252,"output":"turning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: "},{"event":"cmd_output","timestamp":1607098252,"output":"Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:52.534 [info] Periodic"},{"event":"cmd_output","timestamp":1607098252,"output":" from module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.STM"},{"event":"cmd_output","timestamp":1607098252,"output":"Handler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-"},{"event":"cmd_output","timestamp":1607098252,"output":"STMHandler-RegularInitState\"]}, recurring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, ini"},{"event":"cmd_output","timestamp":1607098252,"output":"tial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_init\", publisher_cb: :skip, "},{"event":"cmd_output","timestamp":1607098252,"output":"repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_cou"},{"event":"cmd_output","timestamp":1607098252,"output":"nt, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:5"},{"event":"cmd_output","timestamp":1607098252,"output":"2.647 [info] ppl_id: 874532bc-ef2c-4d07-ba1d-fb51592d996b, type: PplRequests, event: persisted sour"},{"event":"cmd_output","timestamp":1607098252,"output":"ce_args for pipeline: 874532bc-ef2c-4d07-ba1d-fb51592d996b, origin: Elixir.Ppl.PplRequests.Model.Ppl"},{"event":"cmd_output","timestamp":1607098252,"output":"RequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:52.650 [info] ppl_id: 874532bc-ef2c-4d07-b"},{"event":"cmd_output","timestamp":1607098252,"output":"a1d-fb51592d996b, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098252,"output":"gin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:52.680 [info] ppl_id: 87453"},{"event":"cmd_output","timestamp":1607098252,"output":"2bc-ef2c-4d07-ba1d-fb51592d996b, type: PplSubInits, state: regular_init, event: exit_scheduling, rec"},{"event":"cmd_output","timestamp":1607098252,"output":"overy_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:52.722 [i"},{"event":"cmd_output","timestamp":1607098252,"output":"nfo] ppl_id: 874532bc-ef2c-4d07-ba1d-fb51592d996b, type: PplRequests, event: persisted definition f"},{"event":"cmd_output","timestamp":1607098252,"output":"or request with request_token: 4818a644-364b-11eb-b4fe-5254005464e2, origin: Elixir.Ppl.PplRequests."},{"event":"cmd_output","timestamp":1607098252,"output":"Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:52.730 [info] Queue persisted"},{"event":"cmd_output","timestamp":1607098252,"output":": {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N"},{"event":"cmd_output","timestamp":1607098252,"output":"[2020-12-04 16:10:52.727093], name: \"master-.semaphore/semaphore.yml\", organization_id: \"39fa6eac-79"},{"event":"cmd_output","timestamp":1607098252,"output":"95-4130-b3a3-6fc9e4a36754\", project_id: \"53e186c3-60fa-4c7d-b4c2-dcdf763bb1d8\", queue_id: \"8c9753f5-"},{"event":"cmd_output","timestamp":1607098252,"output":"e57d-439a-9c93-ce12bffe54ef\", scope: \"project\", updated_at: ~N[2020-12-04 16:10:52.727107], user_gen"},{"event":"cmd_output","timestamp":1607098252,"output":"erated: false}}\n\u001b[0m\u001b[22m\n16:10:52.737 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMH"},{"event":"cmd_output","timestamp":1607098252,"output":"andler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:52.737 [info] ppl_id: 874532bc-ef2c-4d0"},{"event":"cmd_output","timestamp":1607098252,"output":"7-ba1d-fb51592d996b, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_"},{"event":"cmd_output","timestamp":1607098252,"output":"count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098252,"output":"6:10:52.742 [info] ppl_id: 874532bc-ef2c-4d07-ba1d-fb51592d996b, type: PplSubInits, state: done, re"},{"event":"cmd_output","timestamp":1607098252,"output":"sult: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_ch"},{"event":"cmd_output","timestamp":1607098252,"output":"ange/1(L90), \n\u001b[0m\u001b[22m\n16:10:52.758 [info] ppl_id: 874532bc-ef2c-4d07-ba1d-fb51592d996b, type: P"},{"event":"cmd_output","timestamp":1607098252,"output":"pls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_s"},{"event":"cmd_output","timestamp":1607098252,"output":"tate_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:52.759 [info] ppl_id: 874532bc-ef2c-4d07-ba1d-fb51592d996b, "},{"event":"cmd_output","timestamp":1607098252,"output":"type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098253,"output":"Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:53.038 [info] Periodic from modu"},{"event":"cmd_output","timestamp":1607098253,"output":"le Elixir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler.PendingState :: peri"},{"event":"cmd_output","timestamp":1607098253,"output":"od: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring a"},{"event":"cmd_output","timestamp":1607098253,"output":"rgs: %{allowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_sec: 0, initial_query"},{"event":"cmd_output","timestamp":1607098253,"output":": Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.ST"},{"event":"cmd_output","timestamp":1607098253,"output":"MHandler.PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at,"},{"event":"cmd_output","timestamp":1607098253,"output":" :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskS"},{"event":"cmd_output","timestamp":1607098253,"output":"upervisor}\n\u001b[0m\u001b[22m\n16:10:53.040 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.QueuingS"},{"event":"cmd_output","timestamp":1607098253,"output":"tate with name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, metric_name: {\"Ppl.beholde"},{"event":"cmd_output","timestamp":1607098253,"output":"r-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{allowed_states: [\"queuing\", \"ru"},{"event":"cmd_output","timestamp":1607098253,"output":"nning\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\""},{"event":"cmd_output","timestamp":1607098253,"output":", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.args/0>, repo: Ppl.EctoR"},{"event":"cmd_output","timestamp":1607098253,"output":"epo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], s"},{"event":"cmd_output","timestamp":1607098253,"output":"chema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:53.148 [info] ppl_id: 874532b"},{"event":"cmd_output","timestamp":1607098253,"output":"c-ef2c-4d07-ba1d-fb51592d996b, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0"},{"event":"cmd_output","timestamp":1607098253,"output":", origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:53.163 [info] ppl_id: "},{"event":"cmd_output","timestamp":1607098253,"output":"874532bc-ef2c-4d07-ba1d-fb51592d996b, type: Ppls, state: running, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098253,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:53.170 [info] P"},{"event":"cmd_output","timestamp":1607098253,"output":"plBlocks WaitingState STM is scheduling block 0 from pipeline: \"874532bc-ef2c-4d07-ba1d-fb51592d996b"},{"event":"cmd_output","timestamp":1607098253,"output":"\"\n\u001b[0m\u001b[22m\n16:10:53.176 [info] block_id: 6b29f299-99fe-4ef3-b904-c8455de5b433, type: BlockReques"},{"event":"cmd_output","timestamp":1607098253,"output":"ts, event: persisted block run request from ppl 874532bc-ef2c-4d07-ba1d-fb51592d996b for block 0, or"},{"event":"cmd_output","timestamp":1607098253,"output":"igin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098253,"output":":10:53.186 [info] block_id: 6b29f299-99fe-4ef3-b904-c8455de5b433, type: Blocks, state: initializing"},{"event":"cmd_output","timestamp":1607098253,"output":", event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L"},{"event":"cmd_output","timestamp":1607098253,"output":"43), \n\u001b[0m\u001b[22m\n16:10:53.192 [info] block_id: 6b29f299-99fe-4ef3-b904-c8455de5b433, type: BlockRe"},{"event":"cmd_output","timestamp":1607098253,"output":"quests, event: persisted build and sub_ppl details for block_request: 6b29f299-99fe-4ef3-b904-c8455d"},{"event":"cmd_output","timestamp":1607098253,"output":"e5b433, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098253,"output":"2m\n16:10:53.193 [info] Block 0 of pipeline with id: 874532bc-ef2c-4d07-ba1d-fb51592d996b scheduled"},{"event":"cmd_output","timestamp":1607098253,"output":" in block service with id: : \"6b29f299-99fe-4ef3-b904-c8455de5b433\"\n\u001b[0m\u001b[22m\n16:10:53.196 [info] "},{"event":"cmd_output","timestamp":1607098253,"output":" block_id: 6b29f299-99fe-4ef3-b904-c8455de5b433, type: Tasks, state: pending, event: created, recove"},{"event":"cmd_output","timestamp":1607098253,"output":"ry_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098253,"output":"16:10:53.198 [info] ppl_id: 874532bc-ef2c-4d07-ba1d-fb51592d996b, type: PplBlocks, block_index: 0, "},{"event":"cmd_output","timestamp":1607098253,"output":"state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_"},{"event":"cmd_output","timestamp":1607098253,"output":"change/1(L90), \n\u001b[0m\u001b[22m\n16:10:53.199 [info] block_id: 6b29f299-99fe-4ef3-b904-c8455de5b433, typ"},{"event":"cmd_output","timestamp":1607098253,"output":"e: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl"},{"event":"cmd_output","timestamp":1607098253,"output":".log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:53.222 [info] block_id: 6b29f299-99fe-4ef3-b904-c8455d"},{"event":"cmd_output","timestamp":1607098253,"output":"e5b433, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loope"},{"event":"cmd_output","timestamp":1607098253,"output":"r.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:53.280 [info] block_id: 6b29f299-99fe-4ef3-b"},{"event":"cmd_output","timestamp":1607098253,"output":"904-c8455de5b433, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098253,"output":"r.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:53.286 [info] block_id: 6b29f299-99fe"},{"event":"cmd_output","timestamp":1607098253,"output":"-4ef3-b904-c8455de5b433, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098253,"output":"n: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:53.295 [info] ppl_id: 874532b"},{"event":"cmd_output","timestamp":1607098253,"output":"c-ef2c-4d07-ba1d-fb51592d996b, block_id: 6b29f299-99fe-4ef3-b904-c8455de5b433, type: PplBlocks, bloc"},{"event":"cmd_output","timestamp":1607098253,"output":"k_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098253,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:53.548 [info] Periodic from module Elixi"},{"event":"cmd_output","timestamp":1607098253,"output":"r.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHandler.RunningState :: period: 100 "},{"event":"cmd_output","timestamp":1607098253,"output":"ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring args: %{a"},{"event":"cmd_output","timestamp":1607098253,"output":"llowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model."},{"event":"cmd_output","timestamp":1607098253,"output":"Ppls, observed_state: \"running\", publisher_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler.Running"},{"event":"cmd_output","timestamp":1607098253,"output":"State.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result"},{"event":"cmd_output","timestamp":1607098253,"output":", :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m"},{"event":"cmd_output","timestamp":1607098253,"output":"\u001b[22m\n16:10:53.663 [info] ppl_id: 874532bc-ef2c-4d07-ba1d-fb51592d996b, type: Ppls, state: done, r"},{"event":"cmd_output","timestamp":1607098253,"output":"esult: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098254,"output":"hange/1(L90), \n\u001b[0m\u001b[32m\r * test Ppls looper transitions - pass (1628.0ms)\u001b[0m\n * test Ppls loop"},{"event":"cmd_output","timestamp":1607098254,"output":"er transitions - pass and trace is set\u001b[22m\n16:10:54.123 [info] ppl_id: 6de08dd1-c0dc-4107-94ad-9b"},{"event":"cmd_output","timestamp":1607098254,"output":"fb22a67abf, type: PplRequests, event: persisted schedule request with request_token: 49106366-364b-1"},{"event":"cmd_output","timestamp":1607098254,"output":"1eb-b795-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L5"},{"event":"cmd_output","timestamp":1607098254,"output":"5), \n\u001b[0m\u001b[22m\n16:10:54.133 [info] ppl_id: 821a0424-288e-40b9-9163-536caaf377f1, type: PplRequest"},{"event":"cmd_output","timestamp":1607098254,"output":"s, event: persisted schedule request with request_token: 4912158a-364b-11eb-b082-5254005464e2, origi"},{"event":"cmd_output","timestamp":1607098254,"output":"n: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:54.14"},{"event":"cmd_output","timestamp":1607098254,"output":"6 [info] ppl_id: 6de08dd1-c0dc-4107-94ad-9bfb22a67abf, type: Ppls, state: initializing, event: init"},{"event":"cmd_output","timestamp":1607098254,"output":"ializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b"},{"event":"cmd_output","timestamp":1607098254,"output":"[0m\u001b[22m\n16:10:54.150 [info] Persisted ppl_sub_init for pipeline with ppl_id: 6de08dd1-c0dc-4107-9"},{"event":"cmd_output","timestamp":1607098254,"output":"4ad-9bfb22a67abf: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipel"},{"event":"cmd_output","timestamp":1607098254,"output":"ine_sub_inits\">, compile_task_id: nil, error_description: nil, id: 114, in_scheduling: false, init_t"},{"event":"cmd_output","timestamp":1607098254,"output":"ype: \"regular\", inserted_at: ~N[2020-12-04 16:10:54.148146], pipeline_requests: #Ecto.Association.No"},{"event":"cmd_output","timestamp":1607098254,"output":"tLoaded, ppl_id: \"6de08dd1-c0dc-4107-94ad-9bfb22a67abf"},{"event":"cmd_output","timestamp":1607098254,"output":"\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, ter"},{"event":"cmd_output","timestamp":1607098254,"output":"minate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:54.148162]}\n\u001b[0m\u001b[22m\n16:10:54.154 [info"},{"event":"cmd_output","timestamp":1607098254,"output":"] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.InitializingState with name Elixir.Ppl.PplBl"},{"event":"cmd_output","timestamp":1607098254,"output":"ocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppl"},{"event":"cmd_output","timestamp":1607098254,"output":"Blocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"waiting\""},{"event":"cmd_output","timestamp":1607098254,"output":", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"initi"},{"event":"cmd_output","timestamp":1607098254,"output":"alizing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at,"},{"event":"cmd_output","timestamp":1607098254,"output":" :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, ta"},{"event":"cmd_output","timestamp":1607098254,"output":"sk_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:54.155 [info] Periodic from module Elixir.Ppl.PplBlocks.STM"},{"event":"cmd_output","timestamp":1607098254,"output":"Handler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler.WaitingState :: period: 1000 ms, metr"},{"event":"cmd_output","timestamp":1607098254,"output":"ic_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurring args: %{allo"},{"event":"cmd_output","timestamp":1607098254,"output":"wed_states: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model."},{"event":"cmd_output","timestamp":1607098254,"output":"PplBlocks, observed_state: \"waiting\", publisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.STMHandle"},{"event":"cmd_output","timestamp":1607098254,"output":"r.WaitingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state"},{"event":"cmd_output","timestamp":1607098254,"output":", :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supe"},{"event":"cmd_output","timestamp":1607098254,"output":"rvisor: :skip}\n\u001b[0m\u001b[22m\n16:10:54.155 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler"},{"event":"cmd_output","timestamp":1607098254,"output":".RunningState with name Elixir.Ppl.PplBlocks.STMHandler.RunningState :: period: 1000 ms, metric_name"},{"event":"cmd_output","timestamp":1607098254,"output":": {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, recurring args: %{allowed_sta"},{"event":"cmd_output","timestamp":1607098254,"output":"tes: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBl"},{"event":"cmd_output","timestamp":1607098254,"output":"ocks, observed_state: \"running\", publisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHandler.Ru"},{"event":"cmd_output","timestamp":1607098254,"output":"nningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :r"},{"event":"cmd_output","timestamp":1607098254,"output":"esult, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, ta"},{"event":"cmd_output","timestamp":1607098254,"output":"sk_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:54.156 [info] Periodic from module Elixir.Block.Blocks.STMH"},{"event":"cmd_output","timestamp":1607098254,"output":"andler.InitializingState with name Elixir.Block.Blocks.STMHandler.InitializingState :: period: 100 m"},{"event":"cmd_output","timestamp":1607098254,"output":"s, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, recurring a"},{"event":"cmd_output","timestamp":1607098254,"output":"rgs: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Blocks.Model.B"},{"event":"cmd_output","timestamp":1607098254,"output":"locks, observed_state: \"initializing\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :"},{"event":"cmd_output","timestamp":1607098254,"output":"terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Bloc"},{"event":"cmd_output","timestamp":1607098254,"output":"ks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:54.157 [info] Periodic from module Elixir.Block.Block"},{"event":"cmd_output","timestamp":1607098254,"output":"s.STMHandler.RunningState with name Elixir.Block.Blocks.STMHandler.RunningState :: period: 100 ms, m"},{"event":"cmd_output","timestamp":1607098254,"output":"etric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-RunningState\"]}, recurring args: %{al"},{"event":"cmd_output","timestamp":1607098254,"output":"lowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Mod"},{"event":"cmd_output","timestamp":1607098254,"output":"el.Blocks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :t"},{"event":"cmd_output","timestamp":1607098254,"output":"erminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Block"},{"event":"cmd_output","timestamp":1607098254,"output":"s, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:54.158 [info] Periodic from module Elixir.Block.Tasks."},{"event":"cmd_output","timestamp":1607098254,"output":"STMHandler.PendingState with name Elixir.Block.Tasks.STMHandler.PendingState :: period: 100 ms, metr"},{"event":"cmd_output","timestamp":1607098254,"output":"ic_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingState\"]}, recurring args: %{allowe"},{"event":"cmd_output","timestamp":1607098254,"output":"d_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Tasks.Model.Tasks, observed"},{"event":"cmd_output","timestamp":1607098254,"output":"_state: \"pending\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :"},{"event":"cmd_output","timestamp":1607098254,"output":"updated_at, :state, :recovery_count, :block_id, :build_request_id], schema: Block.Tasks.Model.Tasks,"},{"event":"cmd_output","timestamp":1607098254,"output":" task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:54.158 [info] Periodic from module Elixir.Block.Tasks.ST"},{"event":"cmd_output","timestamp":1607098254,"output":"MHandler.RunningState with name Elixir.Block.Tasks.STMHandler.RunningState :: period: 100 ms, metric"},{"event":"cmd_output","timestamp":1607098254,"output":"_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningState\"]}, recurring args: %{allowed_"},{"event":"cmd_output","timestamp":1607098254,"output":"states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Task"},{"event":"cmd_output","timestamp":1607098254,"output":"s, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate"},{"event":"cmd_output","timestamp":1607098254,"output":"_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_su"},{"event":"cmd_output","timestamp":1607098254,"output":"pervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:54.159 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.In"},{"event":"cmd_output","timestamp":1607098254,"output":"itializingState with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms, metric_nam"},{"event":"cmd_output","timestamp":1607098254,"output":"e: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %{allowed_st"},{"event":"cmd_output","timestamp":1607098254,"output":"ates: [\"initializing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, "},{"event":"cmd_output","timestamp":1607098254,"output":"observed_state: \"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.Initial"},{"event":"cmd_output","timestamp":1607098254,"output":"izingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :r"},{"event":"cmd_output","timestamp":1607098254,"output":"esult, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098254,"output":"6:10:54.160 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Pp"},{"event":"cmd_output","timestamp":1607098254,"output":"l.Ppls.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-S"},{"event":"cmd_output","timestamp":1607098254,"output":"TMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"pending\", \"queuing\", \"running\", \"done"},{"event":"cmd_output","timestamp":1607098254,"output":"\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publisher_cb"},{"event":"cmd_output","timestamp":1607098254,"output":": #Function<0.8493005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, returning: "},{"event":"cmd_output","timestamp":1607098254,"output":"[:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls."},{"event":"cmd_output","timestamp":1607098254,"output":"Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:10:54.161 [info] Periodic from modu"},{"event":"cmd_output","timestamp":1607098254,"output":"le Elixir.Ppl.Ppls.STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandler.QueuingState :: peri"},{"event":"cmd_output","timestamp":1607098254,"output":"od: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring a"},{"event":"cmd_output","timestamp":1607098254,"output":"rgs: %{allowed_states: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls"},{"event":"cmd_output","timestamp":1607098254,"output":".Model.Ppls, observed_state: \"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler"},{"event":"cmd_output","timestamp":1607098254,"output":".QueuingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state,"},{"event":"cmd_output","timestamp":1607098254,"output":" :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098254,"output":"\n16:10:54.163 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.RunningState with name Elixir"},{"event":"cmd_output","timestamp":1607098254,"output":".Ppl.Ppls.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppl"},{"event":"cmd_output","timestamp":1607098254,"output":"s-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], coo"},{"event":"cmd_output","timestamp":1607098254,"output":"ling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"running\", publisher_cb: #Fun"},{"event":"cmd_output","timestamp":1607098254,"output":"ction<0.74670282/1 in Ppl.Ppls.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id,"},{"event":"cmd_output","timestamp":1607098254,"output":" :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model"},{"event":"cmd_output","timestamp":1607098254,"output":".Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:10:54.164 [info] Periodic from module El"},{"event":"cmd_output","timestamp":1607098254,"output":"ixir.Ppl.PplSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHandler.CreatedStat"},{"event":"cmd_output","timestamp":1607098254,"output":"e :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState"},{"event":"cmd_output","timestamp":1607098254,"output":"\"]}, recurring args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl"},{"event":"cmd_output","timestamp":1607098254,"output":".PplSubInits.Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, "},{"event":"cmd_output","timestamp":1607098254,"output":"returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema"},{"event":"cmd_output","timestamp":1607098254,"output":": Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:54.164 [info] Period"},{"event":"cmd_output","timestamp":1607098254,"output":"ic from module Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl.PplSubInits.STMH"},{"event":"cmd_output","timestamp":1607098254,"output":"andler.FetchingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMH"},{"event":"cmd_output","timestamp":1607098254,"output":"andler-FetchingState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"done\"], "},{"event":"cmd_output","timestamp":1607098254,"output":"cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fetching\", "},{"event":"cmd_output","timestamp":1607098254,"output":"publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :"},{"event":"cmd_output","timestamp":1607098254,"output":"result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip"},{"event":"cmd_output","timestamp":1607098254,"output":"}\n\u001b[0m\u001b[22m\n16:10:54.165 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.Compilatio"},{"event":"cmd_output","timestamp":1607098254,"output":"nState with name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 100 ms, metric_name: "},{"event":"cmd_output","timestamp":1607098254,"output":"{\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurring args: %{allowed"},{"event":"cmd_output","timestamp":1607098254,"output":"_states: [\"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: P"},{"event":"cmd_output","timestamp":1607098254,"output":"pl.PplSubInits.Model.PplSubInits, observed_state: \"compilation\", publisher_cb: :skip, repo: Ppl.Ecto"},{"event":"cmd_output","timestamp":1607098254,"output":"Repo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], "},{"event":"cmd_output","timestamp":1607098254,"output":"schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:54.165 [info] "},{"event":"cmd_output","timestamp":1607098254,"output":"Periodic from module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with name Elixir.Ppl.PplSubI"},{"event":"cmd_output","timestamp":1607098254,"output":"nits.STMHandler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplS"},{"event":"cmd_output","timestamp":1607098254,"output":"ubInits-STMHandler-RegularInitState\"]}, recurring args: %{allowed_states: [\"done\"], cooling_time_sec"},{"event":"cmd_output","timestamp":1607098254,"output":": 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_init\", publisher_cb:"},{"event":"cmd_output","timestamp":1607098254,"output":" :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :reco"},{"event":"cmd_output","timestamp":1607098254,"output":"very_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098254,"output":"\n16:10:54.276 [info] ppl_id: 6de08dd1-c0dc-4107-94ad-9bfb22a67abf, type: PplRequests, event: persis"},{"event":"cmd_output","timestamp":1607098254,"output":"ted source_args for pipeline: 6de08dd1-c0dc-4107-94ad-9bfb22a67abf, origin: Elixir.Ppl.PplRequests.M"},{"event":"cmd_output","timestamp":1607098254,"output":"odel.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:54.279 [info] ppl_id: 6de08dd1-c0d"},{"event":"cmd_output","timestamp":1607098254,"output":"c-4107-94ad-9bfb22a67abf, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count"},{"event":"cmd_output","timestamp":1607098254,"output":": 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:54.305 [info] ppl_i"},{"event":"cmd_output","timestamp":1607098254,"output":"d: 6de08dd1-c0dc-4107-94ad-9bfb22a67abf, type: PplSubInits, state: regular_init, event: exit_schedul"},{"event":"cmd_output","timestamp":1607098254,"output":"ing, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:5"},{"event":"cmd_output","timestamp":1607098254,"output":"4.323 [info] ppl_id: 6de08dd1-c0dc-4107-94ad-9bfb22a67abf, type: PplRequests, event: persisted defi"},{"event":"cmd_output","timestamp":1607098254,"output":"nition for request with request_token: 49106366-364b-11eb-b795-5254005464e2, origin: Elixir.Ppl.PplR"},{"event":"cmd_output","timestamp":1607098254,"output":"equests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:54.326 [info] Queue p"},{"event":"cmd_output","timestamp":1607098254,"output":"ersisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserte"},{"event":"cmd_output","timestamp":1607098254,"output":"d_at: ~N[2020-12-04 16:10:54.325458], name: \"master-.semaphore/semaphore.yml\", organization_id: \"d8e"},{"event":"cmd_output","timestamp":1607098254,"output":"7ac26-5458-4c85-9f33-c1121c8c327c\", project_id: \"39cf3a34-9f25-4192-93f5-7ea4c2882f06\", queue_id: \"c"},{"event":"cmd_output","timestamp":1607098254,"output":"2d37e4e-5795-46c6-b6c8-cec59b686803\", scope: \"project\", updated_at: ~N[2020-12-04 16:10:54.325467], "},{"event":"cmd_output","timestamp":1607098254,"output":"user_generated: false}}\n\u001b[0m\u001b[22m\n16:10:54.334 [info] event: created, origin: Elixir.Ppl.PplSubIn"},{"event":"cmd_output","timestamp":1607098254,"output":"its.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:54.334 [info] ppl_id: 6de08dd1-"},{"event":"cmd_output","timestamp":1607098254,"output":"c0dc-4107-94ad-9bfb22a67abf, type: PplBlocks, block_index: 0, state: initializing, event: created, r"},{"event":"cmd_output","timestamp":1607098254,"output":"ecovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098254,"output":"\u001b[22m\n16:10:54.335 [info] ppl_id: 6de08dd1-c0dc-4107-94ad-9bfb22a67abf, type: PplSubInits, state: "},{"event":"cmd_output","timestamp":1607098254,"output":"done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_"},{"event":"cmd_output","timestamp":1607098254,"output":"state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:54.341 [info] ppl_id: 6de08dd1-c0dc-4107-94ad-9bfb22a67abf,"},{"event":"cmd_output","timestamp":1607098254,"output":" type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098254,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:54.344 [info] ppl_id: 6de08dd1-"},{"event":"cmd_output","timestamp":1607098254,"output":"c0dc-4107-94ad-9bfb22a67abf, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098254,"output":"origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:54.359 [info] ppl_id: 6d"},{"event":"cmd_output","timestamp":1607098254,"output":"e08dd1-c0dc-4107-94ad-9bfb22a67abf, type: Ppls, state: queuing, event: exit_scheduling, recovery_cou"},{"event":"cmd_output","timestamp":1607098254,"output":"nt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:54.381 [info] ppl"},{"event":"cmd_output","timestamp":1607098254,"output":"_id: 6de08dd1-c0dc-4107-94ad-9bfb22a67abf, type: Ppls, state: running, event: exit_scheduling, recov"},{"event":"cmd_output","timestamp":1607098254,"output":"ery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:54.387 [inf"},{"event":"cmd_output","timestamp":1607098254,"output":"o] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"6de08dd1-c0dc-4107-94ad-9bfb22a"},{"event":"cmd_output","timestamp":1607098254,"output":"67abf\"\n\u001b[0m\u001b[22m\n16:10:54.394 [info] block_id: e72819d7-9b57-4583-b685-6230a4fad491, type: BlockR"},{"event":"cmd_output","timestamp":1607098254,"output":"equests, event: persisted block run request from ppl 6de08dd1-c0dc-4107-94ad-9bfb22a67abf for block "},{"event":"cmd_output","timestamp":1607098254,"output":"0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098254,"output":"m\n16:10:54.397 [info] block_id: e72819d7-9b57-4583-b685-6230a4fad491, type: Blocks, state: initial"},{"event":"cmd_output","timestamp":1607098254,"output":"izing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.inser"},{"event":"cmd_output","timestamp":1607098254,"output":"t/1(L43), \n\u001b[0m\u001b[22m\n16:10:54.401 [info] Block 0 of pipeline with id: 6de08dd1-c0dc-4107-94ad-9bf"},{"event":"cmd_output","timestamp":1607098254,"output":"b22a67abf scheduled in block service with id: : \"e72819d7-9b57-4583-b685-6230a4fad491\"\n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098254,"output":"6:10:54.404 [info] ppl_id: 6de08dd1-c0dc-4107-94ad-9bfb22a67abf, type: PplBlocks, block_index: 0, s"},{"event":"cmd_output","timestamp":1607098254,"output":"tate: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098254,"output":"hange/1(L90), \n\u001b[0m\u001b[22m\n16:10:54.404 [info] block_id: e72819d7-9b57-4583-b685-6230a4fad491, type"},{"event":"cmd_output","timestamp":1607098254,"output":": BlockRequests, event: persisted build and sub_ppl details for block_request: e72819d7-9b57-4583-b6"},{"event":"cmd_output","timestamp":1607098254,"output":"85-6230a4fad491, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), "},{"event":"cmd_output","timestamp":1607098254,"output":"\n\u001b[0m\u001b[22m\n16:10:54.408 [info] block_id: e72819d7-9b57-4583-b685-6230a4fad491, type: Tasks, state"},{"event":"cmd_output","timestamp":1607098254,"output":": pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingSta"},{"event":"cmd_output","timestamp":1607098254,"output":"te.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:54.411 [info] block_id: e72819d7-9b57-4583-b685-6230a4fad491"},{"event":"cmd_output","timestamp":1607098254,"output":", type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM"},{"event":"cmd_output","timestamp":1607098254,"output":".Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:54.425 [info] block_id: e72819d7-9b57-4583-b685-6"},{"event":"cmd_output","timestamp":1607098254,"output":"230a4fad491, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098254,"output":"Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:54.479 [info] block_id: e72819d7-9b57-4"},{"event":"cmd_output","timestamp":1607098254,"output":"583-b685-6230a4fad491, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098254,"output":"Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:54.488 [info] block_id: e72819d7"},{"event":"cmd_output","timestamp":1607098254,"output":"-9b57-4583-b685-6230a4fad491, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098254,"output":"origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:54.495 [info] ppl_id: 6d"},{"event":"cmd_output","timestamp":1607098254,"output":"e08dd1-c0dc-4107-94ad-9bfb22a67abf, block_id: e72819d7-9b57-4583-b685-6230a4fad491, type: PplBlocks,"},{"event":"cmd_output","timestamp":1607098254,"output":" block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098254,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:54.509 [info] ppl_id: 6de08dd1-c0dc"},{"event":"cmd_output","timestamp":1607098254,"output":"-4107-94ad-9bfb22a67abf, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098254,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test Ppls looper tr"},{"event":"cmd_output","timestamp":1607098254,"output":"ansitions - pass and trace is set (618.7ms)\u001b[0m\n * test Ppls looper transitions - execution fail\u001b["},{"event":"cmd_output","timestamp":1607098254,"output":"22m\n16:10:54.760 [info] ppl_id: adf16560-253d-4165-b387-493b18ef5baa, type: PplRequests, event: pe"},{"event":"cmd_output","timestamp":1607098254,"output":"rsisted schedule request with request_token: 4971cdfe-364b-11eb-9253-5254005464e2, origin: Elixir.Pp"},{"event":"cmd_output","timestamp":1607098254,"output":"l.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:54.772 [info] pp"},{"event":"cmd_output","timestamp":1607098254,"output":"l_id: 4fa0622b-a56e-45d4-a725-b4277aa3f8b5, type: PplRequests, event: persisted schedule request wit"},{"event":"cmd_output","timestamp":1607098254,"output":"h request_token: 4973bf74-364b-11eb-9f2d-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplReque"},{"event":"cmd_output","timestamp":1607098254,"output":"stsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:54.780 [info] Request: 'run: %{:file_name =>"},{"event":"cmd_output","timestamp":1607098254,"output":" \"failing_test.yml\", :repo_name => \"23_initializing_test\", \"branch_id\" => \"43753638-13f9-442c-9670-2"},{"event":"cmd_output","timestamp":1607098254,"output":"ac65afaa57c\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"semaphore.yml"},{"event":"cmd_output","timestamp":1607098254,"output":"\", \"hook_id\" => \"49750d84-364b-11eb-9dbf-5254005464e2\", \"label\" => \"master\", \"organization_id\" => \"4"},{"event":"cmd_output","timestamp":1607098254,"output":"8722bac-1406-4f3b-b063-f5dd34e12ec9\", \"owner\" => \"rt\", \"project_id\" => \"133186fd-9143-4387-8af1-0c6c"},{"event":"cmd_output","timestamp":1607098254,"output":"508e79c5\", \"repo_name\" => \"2_basic\", \"request_token\" => \"4974fcea-364b-11eb-8afd-5254005464e2\", \"req"},{"event":"cmd_output","timestamp":1607098254,"output":"uester_id\" => \"a8b2ee72-0c7d-44da-80d3-7649f1787347\", \"service\" => \"local\", \"suppressed_attributes\" "},{"event":"cmd_output","timestamp":1607098254,"output":"=> [\"access_token\", \"client_secret\"], \"wf_id\" => \"60676c47-7b8b-471d-b619-0e3569da74e5\", \"working_di"},{"event":"cmd_output","timestamp":1607098254,"output":"r\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:10:54.784 [info] ppl_id: 0639538a-0856-4618-bc1f-3ced4de44526, t"},{"event":"cmd_output","timestamp":1607098254,"output":"ype: PplRequests, event: persisted schedule request with request_token: 4974fcea-364b-11eb-8afd-5254"},{"event":"cmd_output","timestamp":1607098254,"output":"005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098254,"output":"2m\n16:10:54.800 [info] ppl_id: 0639538a-0856-4618-bc1f-3ced4de44526, type: Ppls, state: initializi"},{"event":"cmd_output","timestamp":1607098254,"output":"ng, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_respon"},{"event":"cmd_output","timestamp":1607098254,"output":"se/2(L124), \n\u001b[0m\u001b[22m\n16:10:54.806 [info] Project 133186fd-9143-4387-8af1-0c6c508e79c5 and branc"},{"event":"cmd_output","timestamp":1607098254,"output":"h masterlatest_wf details updated: \"wf_id: 60676c47-7b8b-471d-b619-0e3569da74e5, wf_number: 1\"\n\u001b[0m"},{"event":"cmd_output","timestamp":1607098254,"output":"\u001b[22m\n16:10:54.808 [info] Persisted ppl_sub_init for pipeline with ppl_id: 0639538a-0856-4618-bc1f"},{"event":"cmd_output","timestamp":1607098254,"output":"-3ced4de44526: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline"},{"event":"cmd_output","timestamp":1607098254,"output":"_sub_inits\">, compile_task_id: nil, error_description: nil, id: 115, in_scheduling: false, init_type"},{"event":"cmd_output","timestamp":1607098254,"output":": \"regular\", inserted_at: ~N[2020-12-04 16:10:54.806604], pipeline_requests: #Ecto.Association.NotLo"},{"event":"cmd_output","timestamp":1607098254,"output":"aded, ppl_id: \"0639538a-0856-4618-bc1f-3ced4de44526\", "},{"event":"cmd_output","timestamp":1607098254,"output":"recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, termin"},{"event":"cmd_output","timestamp":1607098254,"output":"ate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:54.806616]}\n\u001b[0m\u001b[22m\n16:10:54.814 [info] "},{"event":"cmd_output","timestamp":1607098254,"output":"Periodic from module Elixir.Ppl.PplBlocks.STMHandler.InitializingState with name Elixir.Ppl.PplBlock"},{"event":"cmd_output","timestamp":1607098254,"output":"s.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlo"},{"event":"cmd_output","timestamp":1607098254,"output":"cks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"waiting\", \""},{"event":"cmd_output","timestamp":1607098254,"output":"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"initiali"},{"event":"cmd_output","timestamp":1607098254,"output":"zing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :s"},{"event":"cmd_output","timestamp":1607098254,"output":"tate, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_"},{"event":"cmd_output","timestamp":1607098254,"output":"supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:54.816 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHan"},{"event":"cmd_output","timestamp":1607098254,"output":"dler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler.WaitingState :: period: 1000 ms, metric_"},{"event":"cmd_output","timestamp":1607098254,"output":"name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurring args: %{allowed"},{"event":"cmd_output","timestamp":1607098254,"output":"_states: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.Ppl"},{"event":"cmd_output","timestamp":1607098254,"output":"Blocks, observed_state: \"waiting\", publisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.STMHandler.W"},{"event":"cmd_output","timestamp":1607098254,"output":"aitingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :"},{"event":"cmd_output","timestamp":1607098254,"output":"result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervi"},{"event":"cmd_output","timestamp":1607098254,"output":"sor: :skip}\n\u001b[0m\u001b[22m\n16:10:54.817 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.Ru"},{"event":"cmd_output","timestamp":1607098254,"output":"nningState with name Elixir.Ppl.PplBlocks.STMHandler.RunningState :: period: 1000 ms, metric_name: {"},{"event":"cmd_output","timestamp":1607098254,"output":"\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states"},{"event":"cmd_output","timestamp":1607098254,"output":": [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlock"},{"event":"cmd_output","timestamp":1607098254,"output":"s, observed_state: \"running\", publisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHandler.Runni"},{"event":"cmd_output","timestamp":1607098254,"output":"ngState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :resu"},{"event":"cmd_output","timestamp":1607098254,"output":"lt, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_"},{"event":"cmd_output","timestamp":1607098254,"output":"supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:54.818 [info] Periodic from module Elixir.Block.Blocks.STMHand"},{"event":"cmd_output","timestamp":1607098254,"output":"ler.InitializingState with name Elixir.Block.Blocks.STMHandler.InitializingState :: period: 100 ms, "},{"event":"cmd_output","timestamp":1607098254,"output":"metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, recurring args"},{"event":"cmd_output","timestamp":1607098254,"output":": %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Blocks.Model.Bloc"},{"event":"cmd_output","timestamp":1607098254,"output":"ks, observed_state: \"initializing\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :ter"},{"event":"cmd_output","timestamp":1607098254,"output":"minate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks,"},{"event":"cmd_output","timestamp":1607098254,"output":" task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:54.819 [info] Periodic from module Elixir.Block.Blocks.S"},{"event":"cmd_output","timestamp":1607098254,"output":"TMHandler.RunningState with name Elixir.Block.Blocks.STMHandler.RunningState :: period: 100 ms, metr"},{"event":"cmd_output","timestamp":1607098254,"output":"ic_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-RunningState\"]}, recurring args: %{allow"},{"event":"cmd_output","timestamp":1607098254,"output":"ed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model."},{"event":"cmd_output","timestamp":1607098254,"output":"Blocks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :term"},{"event":"cmd_output","timestamp":1607098254,"output":"inate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, "},{"event":"cmd_output","timestamp":1607098254,"output":"task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:54.820 [info] Periodic from module Elixir.Block.Tasks.STM"},{"event":"cmd_output","timestamp":1607098254,"output":"Handler.PendingState with name Elixir.Block.Tasks.STMHandler.PendingState :: period: 100 ms, metric_"},{"event":"cmd_output","timestamp":1607098254,"output":"name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingState\"]}, recurring args: %{allowed_s"},{"event":"cmd_output","timestamp":1607098254,"output":"tates: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Tasks.Model.Tasks, observed_st"},{"event":"cmd_output","timestamp":1607098254,"output":"ate: \"pending\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :upd"},{"event":"cmd_output","timestamp":1607098254,"output":"ated_at, :state, :recovery_count, :block_id, :build_request_id], schema: Block.Tasks.Model.Tasks, ta"},{"event":"cmd_output","timestamp":1607098254,"output":"sk_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:54.821 [info] Periodic from module Elixir.Block.Tasks.STMHa"},{"event":"cmd_output","timestamp":1607098254,"output":"ndler.RunningState with name Elixir.Block.Tasks.STMHandler.RunningState :: period: 100 ms, metric_na"},{"event":"cmd_output","timestamp":1607098254,"output":"me: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningState\"]}, recurring args: %{allowed_sta"},{"event":"cmd_output","timestamp":1607098254,"output":"tes: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, "},{"event":"cmd_output","timestamp":1607098254,"output":"observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_re"},{"event":"cmd_output","timestamp":1607098254,"output":"quest, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_super"},{"event":"cmd_output","timestamp":1607098254,"output":"visor: :skip}\n\u001b[0m\u001b[22m\n16:10:54.823 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.Initi"},{"event":"cmd_output","timestamp":1607098254,"output":"alizingState with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms, metric_name: "},{"event":"cmd_output","timestamp":1607098254,"output":"{\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %{allowed_state"},{"event":"cmd_output","timestamp":1607098254,"output":"s: [\"initializing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, obs"},{"event":"cmd_output","timestamp":1607098254,"output":"erved_state: \"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.Initializi"},{"event":"cmd_output","timestamp":1607098254,"output":"ngState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :resu"},{"event":"cmd_output","timestamp":1607098254,"output":"lt, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098254,"output":"0:54.824 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.P"},{"event":"cmd_output","timestamp":1607098254,"output":"pls.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMH"},{"event":"cmd_output","timestamp":1607098254,"output":"andler-PendingState\"]}, recurring args: %{allowed_states: [\"pending\", \"queuing\", \"running\", \"done\"],"},{"event":"cmd_output","timestamp":1607098254,"output":" cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publisher_cb: #"},{"event":"cmd_output","timestamp":1607098254,"output":"Function<0.8493005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:i"},{"event":"cmd_output","timestamp":1607098254,"output":"d, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Mod"},{"event":"cmd_output","timestamp":1607098254,"output":"el.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:10:54.825 [info] Periodic from module "},{"event":"cmd_output","timestamp":1607098254,"output":"Elixir.Ppl.Ppls.STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period:"},{"event":"cmd_output","timestamp":1607098254,"output":" 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args"},{"event":"cmd_output","timestamp":1607098254,"output":": %{allowed_states: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Mo"},{"event":"cmd_output","timestamp":1607098254,"output":"del.Ppls, observed_state: \"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.Qu"},{"event":"cmd_output","timestamp":1607098254,"output":"euingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :r"},{"event":"cmd_output","timestamp":1607098254,"output":"esult, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098254,"output":"6:10:54.826 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.RunningState with name Elixir.Pp"},{"event":"cmd_output","timestamp":1607098254,"output":"l.Ppls.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-S"},{"event":"cmd_output","timestamp":1607098254,"output":"TMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], coolin"},{"event":"cmd_output","timestamp":1607098254,"output":"g_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"running\", publisher_cb: #Functi"},{"event":"cmd_output","timestamp":1607098254,"output":"on<0.74670282/1 in Ppl.Ppls.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :t"},{"event":"cmd_output","timestamp":1607098254,"output":"erminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Pp"},{"event":"cmd_output","timestamp":1607098254,"output":"ls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:10:54.828 [info] Periodic from module Elixi"},{"event":"cmd_output","timestamp":1607098254,"output":"r.Ppl.PplSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :"},{"event":"cmd_output","timestamp":1607098254,"output":": period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}"},{"event":"cmd_output","timestamp":1607098254,"output":", recurring args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Pp"},{"event":"cmd_output","timestamp":1607098254,"output":"lSubInits.Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, ret"},{"event":"cmd_output","timestamp":1607098254,"output":"urning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: P"},{"event":"cmd_output","timestamp":1607098254,"output":"pl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:54.829 [info] Periodic "},{"event":"cmd_output","timestamp":1607098254,"output":"from module Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl.PplSubInits.STMHand"},{"event":"cmd_output","timestamp":1607098254,"output":"ler.FetchingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHand"},{"event":"cmd_output","timestamp":1607098254,"output":"ler-FetchingState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"done\"], coo"},{"event":"cmd_output","timestamp":1607098254,"output":"ling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fetching\", pub"},{"event":"cmd_output","timestamp":1607098254,"output":"lisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :res"},{"event":"cmd_output","timestamp":1607098254,"output":"ult, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n"},{"event":"cmd_output","timestamp":1607098254,"output":"\u001b[0m\u001b[22m\n16:10:54.830 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CompilationSt"},{"event":"cmd_output","timestamp":1607098254,"output":"ate with name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 100 ms, metric_name: {\"P"},{"event":"cmd_output","timestamp":1607098254,"output":"pl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurring args: %{allowed_st"},{"event":"cmd_output","timestamp":1607098254,"output":"ates: [\"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl."},{"event":"cmd_output","timestamp":1607098254,"output":"PplSubInits.Model.PplSubInits, observed_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRep"},{"event":"cmd_output","timestamp":1607098254,"output":"o, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], sch"},{"event":"cmd_output","timestamp":1607098254,"output":"ema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:54.831 [info] Per"},{"event":"cmd_output","timestamp":1607098254,"output":"iodic from module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInit"},{"event":"cmd_output","timestamp":1607098254,"output":"s.STMHandler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubI"},{"event":"cmd_output","timestamp":1607098254,"output":"nits-STMHandler-RegularInitState\"]}, recurring args: %{allowed_states: [\"done\"], cooling_time_sec: 0"},{"event":"cmd_output","timestamp":1607098254,"output":", initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_init\", publisher_cb: :s"},{"event":"cmd_output","timestamp":1607098254,"output":"kip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recover"},{"event":"cmd_output","timestamp":1607098254,"output":"y_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098254,"output":":10:54.943 [info] ppl_id: 0639538a-0856-4618-bc1f-3ced4de44526, type: PplRequests, event: persisted"},{"event":"cmd_output","timestamp":1607098254,"output":" source_args for pipeline: 0639538a-0856-4618-bc1f-3ced4de44526, origin: Elixir.Ppl.PplRequests.Mode"},{"event":"cmd_output","timestamp":1607098254,"output":"l.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:54.954 [info] ppl_id: 0639538a-0856-4"},{"event":"cmd_output","timestamp":1607098254,"output":"618-bc1f-3ced4de44526, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0"},{"event":"cmd_output","timestamp":1607098254,"output":", origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:54.977 [info] ppl_id: "},{"event":"cmd_output","timestamp":1607098254,"output":"0639538a-0856-4618-bc1f-3ced4de44526, type: PplSubInits, state: regular_init, event: exit_scheduling"},{"event":"cmd_output","timestamp":1607098255,"output":", recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:55.0"},{"event":"cmd_output","timestamp":1607098255,"output":"10 [info] ppl_id: 0639538a-0856-4618-bc1f-3ced4de44526, type: PplRequests, event: persisted definit"},{"event":"cmd_output","timestamp":1607098255,"output":"ion for request with request_token: 4974fcea-364b-11eb-8afd-5254005464e2, origin: Elixir.Ppl.PplRequ"},{"event":"cmd_output","timestamp":1607098255,"output":"ests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:55.014 [info] Queue pers"},{"event":"cmd_output","timestamp":1607098255,"output":"isted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_a"},{"event":"cmd_output","timestamp":1607098255,"output":"t: ~N[2020-12-04 16:10:55.013185], name: \"master-.semaphore/semaphore.yml\", organization_id: \"48722b"},{"event":"cmd_output","timestamp":1607098255,"output":"ac-1406-4f3b-b063-f5dd34e12ec9\", project_id: \"133186fd-9143-4387-8af1-0c6c508e79c5\", queue_id: \"3b95"},{"event":"cmd_output","timestamp":1607098255,"output":"ddb4-44ab-4387-9ca7-e09f7d371a63\", scope: \"project\", updated_at: ~N[2020-12-04 16:10:55.013198], use"},{"event":"cmd_output","timestamp":1607098255,"output":"r_generated: false}}\n\u001b[0m\u001b[22m\n16:10:55.019 [info] event: created, origin: Elixir.Ppl.PplSubInits"},{"event":"cmd_output","timestamp":1607098255,"output":".STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:55.019 [info] ppl_id: 0639538a-085"},{"event":"cmd_output","timestamp":1607098255,"output":"6-4618-bc1f-3ced4de44526, type: PplBlocks, block_index: 0, state: initializing, event: created, reco"},{"event":"cmd_output","timestamp":1607098255,"output":"very_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098255,"output":"2m\n16:10:55.022 [info] ppl_id: 0639538a-0856-4618-bc1f-3ced4de44526, type: PplSubInits, state: don"},{"event":"cmd_output","timestamp":1607098255,"output":"e, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_sta"},{"event":"cmd_output","timestamp":1607098255,"output":"te_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:55.036 [info] ppl_id: 0639538a-0856-4618-bc1f-3ced4de44526, ty"},{"event":"cmd_output","timestamp":1607098255,"output":"pe: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098255,"output":"ixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:55.037 [info] ppl_id: 0639538a-085"},{"event":"cmd_output","timestamp":1607098255,"output":"6-4618-bc1f-3ced4de44526, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098255,"output":"gin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:55.047 [info] ppl_id: 06395"},{"event":"cmd_output","timestamp":1607098255,"output":"38a-0856-4618-bc1f-3ced4de44526, type: Ppls, state: queuing, event: exit_scheduling, recovery_count:"},{"event":"cmd_output","timestamp":1607098255,"output":" 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:55.059 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098255,"output":": 0639538a-0856-4618-bc1f-3ced4de44526, type: Ppls, state: running, event: exit_scheduling, recovery"},{"event":"cmd_output","timestamp":1607098255,"output":"_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:55.068 [info] "},{"event":"cmd_output","timestamp":1607098255,"output":" PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"0639538a-0856-4618-bc1f-3ced4de445"},{"event":"cmd_output","timestamp":1607098255,"output":"26\"\n\u001b[0m\u001b[22m\n16:10:55.075 [info] block_id: 1b8bb0e3-158c-4b13-905a-29ad66491ccc, type: BlockRequ"},{"event":"cmd_output","timestamp":1607098255,"output":"ests, event: persisted block run request from ppl 0639538a-0856-4618-bc1f-3ced4de44526 for block 0, "},{"event":"cmd_output","timestamp":1607098255,"output":"origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098255,"output":"16:10:55.077 [info] block_id: 1b8bb0e3-158c-4b13-905a-29ad66491ccc, type: Blocks, state: initializi"},{"event":"cmd_output","timestamp":1607098255,"output":"ng, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1"},{"event":"cmd_output","timestamp":1607098255,"output":"(L43), \n\u001b[0m\u001b[22m\n16:10:55.080 [info] Block 0 of pipeline with id: 0639538a-0856-4618-bc1f-3ced4d"},{"event":"cmd_output","timestamp":1607098255,"output":"e44526 scheduled in block service with id: : \"1b8bb0e3-158c-4b13-905a-29ad66491ccc\"\n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098255,"output":"0:55.085 [info] ppl_id: 0639538a-0856-4618-bc1f-3ced4de44526, type: PplBlocks, block_index: 0, stat"},{"event":"cmd_output","timestamp":1607098255,"output":"e: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chan"},{"event":"cmd_output","timestamp":1607098255,"output":"ge/1(L90), \n\u001b[0m\u001b[22m\n16:10:55.085 [info] block_id: 1b8bb0e3-158c-4b13-905a-29ad66491ccc, type: B"},{"event":"cmd_output","timestamp":1607098255,"output":"lockRequests, event: persisted build and sub_ppl details for block_request: 1b8bb0e3-158c-4b13-905a-"},{"event":"cmd_output","timestamp":1607098255,"output":"29ad66491ccc, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b"},{"event":"cmd_output","timestamp":1607098255,"output":"[0m\u001b[22m\n16:10:55.088 [info] block_id: 1b8bb0e3-158c-4b13-905a-29ad66491ccc, type: Tasks, state: p"},{"event":"cmd_output","timestamp":1607098255,"output":"ending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState."},{"event":"cmd_output","timestamp":1607098255,"output":"all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:55.090 [info] block_id: 1b8bb0e3-158c-4b13-905a-29ad66491ccc, t"},{"event":"cmd_output","timestamp":1607098255,"output":"ype: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Im"},{"event":"cmd_output","timestamp":1607098255,"output":"pl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:55.102 [info] block_id: 1b8bb0e3-158c-4b13-905a-29ad"},{"event":"cmd_output","timestamp":1607098255,"output":"66491ccc, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loo"},{"event":"cmd_output","timestamp":1607098255,"output":"per.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:55.149 [info] block_id: 1b8bb0e3-158c-4b13"},{"event":"cmd_output","timestamp":1607098255,"output":"-905a-29ad66491ccc, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098255,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:55.155 [info] block_id: 1b8bb0e3-15"},{"event":"cmd_output","timestamp":1607098255,"output":"8c-4b13-905a-29ad66491ccc, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098255,"output":"gin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:55.165 [info] ppl_id: 06395"},{"event":"cmd_output","timestamp":1607098255,"output":"38a-0856-4618-bc1f-3ced4de44526, block_id: 1b8bb0e3-158c-4b13-905a-29ad66491ccc, type: PplBlocks, bl"},{"event":"cmd_output","timestamp":1607098255,"output":"ock_index: 0, state: done, result: failed, event: exit_scheduling, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098255,"output":".Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:55.186 [info] ppl_id: 0639538a-0856-46"},{"event":"cmd_output","timestamp":1607098255,"output":"18-bc1f-3ced4de44526, type: Ppls, state: done, result: failed, event: exit_scheduling, recovery_coun"},{"event":"cmd_output","timestamp":1607098255,"output":"t: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test Ppls looper trans"},{"event":"cmd_output","timestamp":1607098255,"output":"itions - execution fail (664.9ms)\u001b[0m\n * test Ppls recovery counter is reset on transition out of "},{"event":"cmd_output","timestamp":1607098255,"output":"scheduling\u001b[22m\n16:10:55.400 [info] ppl_id: 05a1b3b4-acd4-460c-bdd7-3a6723d8095e, type: PplRequest"},{"event":"cmd_output","timestamp":1607098255,"output":"s, event: persisted schedule request with request_token: 49d3227a-364b-11eb-9834-5254005464e2, origi"},{"event":"cmd_output","timestamp":1607098255,"output":"n: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:55.40"},{"event":"cmd_output","timestamp":1607098255,"output":"8 [info] ppl_id: 482acfaf-0cbb-4a79-8c33-3781082a2f41, type: PplRequests, event: persisted schedule"},{"event":"cmd_output","timestamp":1607098255,"output":" request with request_token: 49d4adfc-364b-11eb-9c25-5254005464e2, origin: Elixir.Ppl.PplRequests.Mo"},{"event":"cmd_output","timestamp":1607098255,"output":"del.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:55.418 [info] ppl_id: 05a1b3b4-a"},{"event":"cmd_output","timestamp":1607098255,"output":"cd4-460c-bdd7-3a6723d8095e, type: Ppls, state: initializing, event: initializing, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098255,"output":" origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:55.422 [info"},{"event":"cmd_output","timestamp":1607098255,"output":"] Persisted ppl_sub_init for pipeline with ppl_id: 05a1b3b4-acd4-460c-bdd7-3a6723d8095e: %Ppl.PplSu"},{"event":"cmd_output","timestamp":1607098255,"output":"bInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_tas"},{"event":"cmd_output","timestamp":1607098255,"output":"k_id: nil, error_description: nil, id: 116, in_scheduling: false, init_type: \"regular\", inserted_at:"},{"event":"cmd_output","timestamp":1607098255,"output":" ~N[2020-12-04 16:10:55.419852], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"05a1b3b4-acd4-460c-bdd7-3a6723d8095e\", recovery_count: 0, result"},{"event":"cmd_output","timestamp":1607098255,"output":": nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, up"},{"event":"cmd_output","timestamp":1607098255,"output":"dated_at: ~N[2020-12-04 16:10:55.419864]}\n\u001b[0m\u001b[22m\n16:10:55.425 [info] Periodic from module Elix"},{"event":"cmd_output","timestamp":1607098255,"output":"ir.Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: p"},{"event":"cmd_output","timestamp":1607098255,"output":"eriod: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, rec"},{"event":"cmd_output","timestamp":1607098255,"output":"urring args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_que"},{"event":"cmd_output","timestamp":1607098255,"output":"ry: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher_cb: #Function<0.125326080/1 in Pp"},{"event":"cmd_output","timestamp":1607098255,"output":"l.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request"},{"event":"cmd_output","timestamp":1607098255,"output":", :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervi"},{"event":"cmd_output","timestamp":1607098255,"output":"sor: :skip}\n\u001b[0m\u001b[22m\n16:10:55.426 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler."},{"event":"cmd_output","timestamp":1607098255,"output":"CreatedState with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 100 ms, metric_name"},{"event":"cmd_output","timestamp":1607098255,"output":": {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args: %{allowed_s"},{"event":"cmd_output","timestamp":1607098255,"output":"tates: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, "},{"event":"cmd_output","timestamp":1607098255,"output":"observed_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_requ"},{"event":"cmd_output","timestamp":1607098255,"output":"est, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubIn"},{"event":"cmd_output","timestamp":1607098255,"output":"its, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:55.427 [info] Periodic from module Elixir.Ppl.PplSub"},{"event":"cmd_output","timestamp":1607098255,"output":"Inits.STMHandler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler.FetchingState :: period: "},{"event":"cmd_output","timestamp":1607098255,"output":"100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurri"},{"event":"cmd_output","timestamp":1607098255,"output":"ng args: %{allowed_states: [\"regular_init\", \"compilation\", \"done\"], cooling_time_sec: -2, initial_qu"},{"event":"cmd_output","timestamp":1607098255,"output":"ery: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fetching\", publisher_cb: :skip, repo: Ppl.E"},{"event":"cmd_output","timestamp":1607098255,"output":"ctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id"},{"event":"cmd_output","timestamp":1607098255,"output":"], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:55.429 [info"},{"event":"cmd_output","timestamp":1607098255,"output":"] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CompilationState with name Elixir.Ppl.PplS"},{"event":"cmd_output","timestamp":1607098255,"output":"ubInits.STMHandler.CompilationState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-P"},{"event":"cmd_output","timestamp":1607098255,"output":"plSubInits-STMHandler-CompilationState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compi"},{"event":"cmd_output","timestamp":1607098255,"output":"lation\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits"},{"event":"cmd_output","timestamp":1607098255,"output":", observed_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminat"},{"event":"cmd_output","timestamp":1607098255,"output":"e_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.Pp"},{"event":"cmd_output","timestamp":1607098255,"output":"lSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:55.430 [info] Periodic from module Elixir.Ppl."},{"event":"cmd_output","timestamp":1607098255,"output":"PplSubInits.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState"},{"event":"cmd_output","timestamp":1607098255,"output":" :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitSt"},{"event":"cmd_output","timestamp":1607098255,"output":"ate\"]}, recurring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubIn"},{"event":"cmd_output","timestamp":1607098255,"output":"its.Model.PplSubInits, observed_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, retu"},{"event":"cmd_output","timestamp":1607098255,"output":"rning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Pp"},{"event":"cmd_output","timestamp":1607098255,"output":"l.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:55.550 [info] ppl_id: 05"},{"event":"cmd_output","timestamp":1607098255,"output":"a1b3b4-acd4-460c-bdd7-3a6723d8095e, type: PplRequests, event: persisted source_args for pipeline: 05"},{"event":"cmd_output","timestamp":1607098255,"output":"a1b3b4-acd4-460c-bdd7-3a6723d8095e, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_s"},{"event":"cmd_output","timestamp":1607098255,"output":"ource/2(L89), \n\u001b[0m\u001b[22m\n16:10:55.553 [info] ppl_id: 05a1b3b4-acd4-460c-bdd7-3a6723d8095e, type: "},{"event":"cmd_output","timestamp":1607098255,"output":"PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.I"},{"event":"cmd_output","timestamp":1607098255,"output":"mpl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:55.578 [info] ppl_id: 05a1b3b4-acd4-460c-bdd7-3a672"},{"event":"cmd_output","timestamp":1607098255,"output":"3d8095e, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098255,"output":"Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:55.606 [info] ppl_id: 05a1b3b4-a"},{"event":"cmd_output","timestamp":1607098255,"output":"cd4-460c-bdd7-3a6723d8095e, type: PplRequests, event: persisted definition for request with request_"},{"event":"cmd_output","timestamp":1607098255,"output":"token: 49d3227a-364b-11eb-9834-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries"},{"event":"cmd_output","timestamp":1607098255,"output":".insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:55.611 [info] Queue persisted: {:ok, %Ppl.Queues.Mode"},{"event":"cmd_output","timestamp":1607098255,"output":"l.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:10:55.609"},{"event":"cmd_output","timestamp":1607098255,"output":"393], name: \"master-.semaphore/semaphore.yml\", organization_id: \"3c65a0b3-2bd9-40d9-b04a-322a62c3e08"},{"event":"cmd_output","timestamp":1607098255,"output":"0\", project_id: \"290ef860-306d-4def-9cf8-265e615edf67\", queue_id: \"38f3e272-13d6-42fd-a0fd-3c6ec808b"},{"event":"cmd_output","timestamp":1607098255,"output":"042\", scope: \"project\", updated_at: ~N[2020-12-04 16:10:55.609405], user_generated: false}}\n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098255,"output":"2m\n16:10:55.616 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState."},{"event":"cmd_output","timestamp":1607098255,"output":"all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:55.616 [info] ppl_id: 05a1b3b4-acd4-460c-bdd7-3a6723d8095e, typ"},{"event":"cmd_output","timestamp":1607098255,"output":"e: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098255,"output":".Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:55.620 [info] ppl_"},{"event":"cmd_output","timestamp":1607098255,"output":"id: 05a1b3b4-acd4-460c-bdd7-3a6723d8095e, type: PplSubInits, state: done, result: passed, event: exi"},{"event":"cmd_output","timestamp":1607098255,"output":"t_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098255,"output":"\n16:10:55.634 [info] ppl_id: 05a1b3b4-acd4-460c-bdd7-3a6723d8095e, type: Ppls, state: pending, eve"},{"event":"cmd_output","timestamp":1607098255,"output":"nt: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b["},{"event":"cmd_output","timestamp":1607098255,"output":"0m\u001b[32m\r * test Ppls recovery counter is reset on transition out of scheduling (597.6ms)\u001b[0m\n\nPpl"},{"event":"cmd_output","timestamp":1607098255,"output":".Ppls.STMHandler.Queuing.Test\n * test pipelines from same branch but different projects are not qu"},{"event":"cmd_output","timestamp":1607098255,"output":"euing\r * test pipelines from same branch but different projects are not queuing (skipped)\n * test"},{"event":"cmd_output","timestamp":1607098255,"output":" 30 ppls from same branch are scheduled in right order\r * test 30 ppls from same branch are schedul"},{"event":"cmd_output","timestamp":1607098255,"output":"ed in right order (skipped)\n\nPpl.Ppls.STMHandler.Initializing.Test\n * test additional fileds are"},{"event":"cmd_output","timestamp":1607098256,"output":" set when pipeline exits initializing\u001b[22m\n16:10:56.007 [info] Request: 'run: %{:file_name => \"add"},{"event":"cmd_output","timestamp":1607098256,"output":"itional_fileds.yml\", :repo_name => \"23_initializing_test\", \"branch_id\" => \"3935f648-2544-47ab-adfd-f"},{"event":"cmd_output","timestamp":1607098256,"output":"6cae1d057d7\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"semaphore.yml"},{"event":"cmd_output","timestamp":1607098256,"output":"\", \"hook_id\" => \"4a303f64-364b-11eb-b856-5254005464e2\", \"label\" => \"master\", \"organization_id\" => \"e"},{"event":"cmd_output","timestamp":1607098256,"output":"e354eaf-3c4e-4358-963b-5cd3db2ad893\", \"owner\" => \"rt\", \"project_id\" => \"8be07d1e-0910-41f4-8ac5-d007"},{"event":"cmd_output","timestamp":1607098256,"output":"81106baa\", \"repo_name\" => \"2_basic\", \"request_token\" => \"4a302c7c-364b-11eb-9c86-5254005464e2\", \"req"},{"event":"cmd_output","timestamp":1607098256,"output":"uester_id\" => \"cca5650a-cd89-4f55-80f0-02364e61aed3\", \"service\" => \"local\", \"suppressed_attributes\" "},{"event":"cmd_output","timestamp":1607098256,"output":"=> [\"access_token\", \"client_secret\"], \"wf_id\" => \"e3dcf824-f0d8-4a85-9d2e-2e0cefcf213a\", \"working_di"},{"event":"cmd_output","timestamp":1607098256,"output":"r\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:10:56.010 [info] ppl_id: cf9e7cbb-21a0-4a3f-b579-aedfeaa75634, t"},{"event":"cmd_output","timestamp":1607098256,"output":"ype: PplRequests, event: persisted schedule request with request_token: 4a302c7c-364b-11eb-9c86-5254"},{"event":"cmd_output","timestamp":1607098256,"output":"005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098256,"output":"2m\n16:10:56.013 [info] ppl_id: cf9e7cbb-21a0-4a3f-b579-aedfeaa75634, type: Ppls, state: initializi"},{"event":"cmd_output","timestamp":1607098256,"output":"ng, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_respon"},{"event":"cmd_output","timestamp":1607098256,"output":"se/2(L124), \n\u001b[0m\u001b[22m\n16:10:56.017 [info] Project 8be07d1e-0910-41f4-8ac5-d00781106baa and branc"},{"event":"cmd_output","timestamp":1607098256,"output":"h masterlatest_wf details updated: \"wf_id: e3dcf824-f0d8-4a85-9d2e-2e0cefcf213a, wf_number: 1\"\n\u001b[0m"},{"event":"cmd_output","timestamp":1607098256,"output":"\u001b[22m\n16:10:56.020 [info] Persisted ppl_sub_init for pipeline with ppl_id: cf9e7cbb-21a0-4a3f-b579"},{"event":"cmd_output","timestamp":1607098256,"output":"-aedfeaa75634: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline"},{"event":"cmd_output","timestamp":1607098256,"output":"_sub_inits\">, compile_task_id: nil, error_description: nil, id: 117, in_scheduling: false, init_type"},{"event":"cmd_output","timestamp":1607098256,"output":": \"regular\", inserted_at: ~N[2020-12-04 16:10:56.017921], pipeline_requests: #Ecto.Association.NotLo"},{"event":"cmd_output","timestamp":1607098256,"output":"aded, ppl_id: \"cf9e7cbb-21a0-4a3f-b579-aedfeaa75634\", "},{"event":"cmd_output","timestamp":1607098256,"output":"recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, termin"},{"event":"cmd_output","timestamp":1607098256,"output":"ate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:56.017929]}\n\u001b[0m\u001b[22m\n16:10:56.029 [info] "},{"event":"cmd_output","timestamp":1607098256,"output":"Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.STMHandl"},{"event":"cmd_output","timestamp":1607098256,"output":"er.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-"},{"event":"cmd_output","timestamp":1607098256,"output":"InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], cooling"},{"event":"cmd_output","timestamp":1607098256,"output":"_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher_cb: #Fun"},{"event":"cmd_output","timestamp":1607098256,"output":"ction<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, returning:"},{"event":"cmd_output","timestamp":1607098256,"output":" [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls"},{"event":"cmd_output","timestamp":1607098256,"output":".Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:56.030 [info] Periodic from module Elixir.Pp"},{"event":"cmd_output","timestamp":1607098256,"output":"l.PplSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: pe"},{"event":"cmd_output","timestamp":1607098256,"output":"riod: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, re"},{"event":"cmd_output","timestamp":1607098256,"output":"curring args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSub"},{"event":"cmd_output","timestamp":1607098256,"output":"Inits.Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returni"},{"event":"cmd_output","timestamp":1607098256,"output":"ng: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.P"},{"event":"cmd_output","timestamp":1607098256,"output":"plSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:56.030 [info] Periodic from"},{"event":"cmd_output","timestamp":1607098256,"output":" module Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler."},{"event":"cmd_output","timestamp":1607098256,"output":"FetchingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-"},{"event":"cmd_output","timestamp":1607098256,"output":"FetchingState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"done\"], cooling"},{"event":"cmd_output","timestamp":1607098256,"output":"_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fetching\", publish"},{"event":"cmd_output","timestamp":1607098256,"output":"er_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result,"},{"event":"cmd_output","timestamp":1607098256,"output":" :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m"},{"event":"cmd_output","timestamp":1607098256,"output":"\u001b[22m\n16:10:56.031 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CompilationState "},{"event":"cmd_output","timestamp":1607098256,"output":"with name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 100 ms, metric_name: {\"Ppl.b"},{"event":"cmd_output","timestamp":1607098256,"output":"eholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurring args: %{allowed_states"},{"event":"cmd_output","timestamp":1607098256,"output":": [\"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplS"},{"event":"cmd_output","timestamp":1607098256,"output":"ubInits.Model.PplSubInits, observed_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, r"},{"event":"cmd_output","timestamp":1607098256,"output":"eturning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema:"},{"event":"cmd_output","timestamp":1607098256,"output":" Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:56.031 [info] Periodi"},{"event":"cmd_output","timestamp":1607098256,"output":"c from module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.ST"},{"event":"cmd_output","timestamp":1607098256,"output":"MHandler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits"},{"event":"cmd_output","timestamp":1607098256,"output":"-STMHandler-RegularInitState\"]}, recurring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, in"},{"event":"cmd_output","timestamp":1607098256,"output":"itial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_init\", publisher_cb: :skip,"},{"event":"cmd_output","timestamp":1607098256,"output":" repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_co"},{"event":"cmd_output","timestamp":1607098256,"output":"unt, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:"},{"event":"cmd_output","timestamp":1607098256,"output":"56.143 [info] ppl_id: cf9e7cbb-21a0-4a3f-b579-aedfeaa75634, type: PplRequests, event: persisted sou"},{"event":"cmd_output","timestamp":1607098256,"output":"rce_args for pipeline: cf9e7cbb-21a0-4a3f-b579-aedfeaa75634, origin: Elixir.Ppl.PplRequests.Model.Pp"},{"event":"cmd_output","timestamp":1607098256,"output":"lRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:56.147 [info] ppl_id: cf9e7cbb-21a0-4a3f-"},{"event":"cmd_output","timestamp":1607098256,"output":"b579-aedfeaa75634, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098256,"output":"igin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:56.177 [info] ppl_id: cf9e"},{"event":"cmd_output","timestamp":1607098256,"output":"7cbb-21a0-4a3f-b579-aedfeaa75634, type: PplSubInits, state: regular_init, event: exit_scheduling, re"},{"event":"cmd_output","timestamp":1607098256,"output":"covery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:56.210 ["},{"event":"cmd_output","timestamp":1607098256,"output":"info] ppl_id: cf9e7cbb-21a0-4a3f-b579-aedfeaa75634, type: PplRequests, event: persisted definition "},{"event":"cmd_output","timestamp":1607098256,"output":"for request with request_token: 4a302c7c-364b-11eb-9c86-5254005464e2, origin: Elixir.Ppl.PplRequests"},{"event":"cmd_output","timestamp":1607098256,"output":".Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:56.214 [info] Queue persiste"},{"event":"cmd_output","timestamp":1607098256,"output":"d: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~"},{"event":"cmd_output","timestamp":1607098256,"output":"N[2020-12-04 16:10:56.212544], name: \"master-.semaphore/semaphore.yml\", organization_id: \"ee354eaf-3"},{"event":"cmd_output","timestamp":1607098256,"output":"c4e-4358-963b-5cd3db2ad893\", project_id: \"8be07d1e-0910-41f4-8ac5-d00781106baa\", queue_id: \"589752f0"},{"event":"cmd_output","timestamp":1607098256,"output":"-a51d-4c70-a2dd-a0f2485a0083\", scope: \"project\", updated_at: ~N[2020-12-04 16:10:56.212555], user_ge"},{"event":"cmd_output","timestamp":1607098256,"output":"nerated: false}}\n\u001b[0m\u001b[22m\n16:10:56.219 [info] event: created, origin: Elixir.Ppl.PplSubInits.STM"},{"event":"cmd_output","timestamp":1607098256,"output":"Handler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:56.219 [info] ppl_id: cf9e7cbb-21a0-4a"},{"event":"cmd_output","timestamp":1607098256,"output":"3f-b579-aedfeaa75634, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery"},{"event":"cmd_output","timestamp":1607098256,"output":"_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098256,"output":"16:10:56.221 [info] ppl_id: cf9e7cbb-21a0-4a3f-b579-aedfeaa75634, type: PplSubInits, state: done, r"},{"event":"cmd_output","timestamp":1607098256,"output":"esult: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098256,"output":"hange/1(L90), \n\u001b[0m\u001b[22m\n16:10:56.235 [info] ppl_id: cf9e7cbb-21a0-4a3f-b579-aedfeaa75634, type: "},{"event":"cmd_output","timestamp":1607098256,"output":"Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_"},{"event":"cmd_output","timestamp":1607098261,"output":"state_change/1(L90), \n\u001b[0m\u001b[32m\r * test additional fileds are set when pipeline exits initializing"},{"event":"cmd_output","timestamp":1607098261,"output":" (5097.0ms)\u001b[0m\n * test default values for additional fields are set when pipeline without them in"},{"event":"cmd_output","timestamp":1607098261,"output":" yaml def exits initializing\u001b[22m\n16:11:01.109 [info] Request: 'run: %{:repo_name => \"23_initializ"},{"event":"cmd_output","timestamp":1607098261,"output":"ing_test\", \"branch_id\" => \"56828895-8e56-4a3f-9f86-5cab03311957\", \"branch_name\" => \"master\", \"commit"},{"event":"cmd_output","timestamp":1607098261,"output":"_sha\" => \"75891a4469\", \"file_name\" => \"semaphore.yml\", \"hook_id\" => \"4d3aa79e-364b-11eb-a852-5254005"},{"event":"cmd_output","timestamp":1607098261,"output":"464e2\", \"label\" => \"master\", \"organization_id\" => \"45edc912-2609-44bf-aa93-fcb9504d6814\", \"owner\" =>"},{"event":"cmd_output","timestamp":1607098261,"output":" \"rt\", \"project_id\" => \"067fd6b4-1cf5-4ff5-87a0-c8ebd0e879d6\", \"repo_name\" => \"2_basic\", \"request_to"},{"event":"cmd_output","timestamp":1607098261,"output":"ken\" => \"4d3a9a74-364b-11eb-8c83-5254005464e2\", \"requester_id\" => \"990a7f8e-b7d1-468f-b03e-9c36777c6"},{"event":"cmd_output","timestamp":1607098261,"output":"513\", \"service\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" =>"},{"event":"cmd_output","timestamp":1607098261,"output":" \"0adb5870-b816-4571-b30d-46f0761ce48b\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:11:01.112 [in"},{"event":"cmd_output","timestamp":1607098261,"output":"fo] ppl_id: 9b554c3b-2807-4f2c-8abd-ceb13fcf248d, type: PplRequests, event: persisted schedule requ"},{"event":"cmd_output","timestamp":1607098261,"output":"est with request_token: 4d3a9a74-364b-11eb-8c83-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.P"},{"event":"cmd_output","timestamp":1607098261,"output":"plRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:11:01.117 [info] ppl_id: 9b554c3b-2807-4"},{"event":"cmd_output","timestamp":1607098261,"output":"f2c-8abd-ceb13fcf248d, type: Ppls, state: initializing, event: initializing, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098261,"output":"in: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:11:01.122 [info] Pr"},{"event":"cmd_output","timestamp":1607098261,"output":"oject 067fd6b4-1cf5-4ff5-87a0-c8ebd0e879d6 and branch masterlatest_wf details updated: \"wf_id: 0adb5"},{"event":"cmd_output","timestamp":1607098261,"output":"870-b816-4571-b30d-46f0761ce48b, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:11:01.125 [info] Persisted ppl_sub_in"},{"event":"cmd_output","timestamp":1607098261,"output":"it for pipeline with ppl_id: 9b554c3b-2807-4f2c-8abd-ceb13fcf248d: %Ppl.PplSubInits.Model.PplSubInit"},{"event":"cmd_output","timestamp":1607098261,"output":"s{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_descri"},{"event":"cmd_output","timestamp":1607098261,"output":"ption: nil, id: 118, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:11:01"},{"event":"cmd_output","timestamp":1607098261,"output":".122589], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"9b554c3b-2807-4f2c-8abd-ceb13fcf248d\", recovery_count: 0, result: nil, result_reason: n"},{"event":"cmd_output","timestamp":1607098261,"output":"il, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04"},{"event":"cmd_output","timestamp":1607098261,"output":" 16:11:01.122597]}\n\u001b[0m\u001b[22m\n16:11:01.131 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler."},{"event":"cmd_output","timestamp":1607098261,"output":"InitializingState with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms, metric_n"},{"event":"cmd_output","timestamp":1607098261,"output":"ame: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %{allowed_"},{"event":"cmd_output","timestamp":1607098261,"output":"states: [\"initializing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls"},{"event":"cmd_output","timestamp":1607098261,"output":", observed_state: \"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.Initi"},{"event":"cmd_output","timestamp":1607098261,"output":"alizingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, "},{"event":"cmd_output","timestamp":1607098261,"output":":result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098261,"output":"\n16:11:01.131 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedState with name "},{"event":"cmd_output","timestamp":1607098261,"output":"Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_u"},{"event":"cmd_output","timestamp":1607098261,"output":"p\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args: %{allowed_states: [\"fetching\", \"do"},{"event":"cmd_output","timestamp":1607098261,"output":"ne\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"create"},{"event":"cmd_output","timestamp":1607098261,"output":"d\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :stat"},{"event":"cmd_output","timestamp":1607098261,"output":"e, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :"},{"event":"cmd_output","timestamp":1607098261,"output":"skip}\n\u001b[0m\u001b[22m\n16:11:01.132 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.Fetchi"},{"event":"cmd_output","timestamp":1607098261,"output":"ngState with name Elixir.Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 ms, metric_name: {\""},{"event":"cmd_output","timestamp":1607098261,"output":"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %{allowed_stat"},{"event":"cmd_output","timestamp":1607098261,"output":"es: [\"regular_init\", \"compilation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Mo"},{"event":"cmd_output","timestamp":1607098261,"output":"del.PplSubInits, observed_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:i"},{"event":"cmd_output","timestamp":1607098261,"output":"d, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubIn"},{"event":"cmd_output","timestamp":1607098261,"output":"its.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:01.133 [info] Periodic from module"},{"event":"cmd_output","timestamp":1607098261,"output":" Elixir.Ppl.PplSubInits.STMHandler.CompilationState with name Elixir.Ppl.PplSubInits.STMHandler.Comp"},{"event":"cmd_output","timestamp":1607098261,"output":"ilationState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-C"},{"event":"cmd_output","timestamp":1607098261,"output":"ompilationState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"stopping\", \"d"},{"event":"cmd_output","timestamp":1607098261,"output":"one\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"comp"},{"event":"cmd_output","timestamp":1607098261,"output":"ilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at,"},{"event":"cmd_output","timestamp":1607098261,"output":" :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervi"},{"event":"cmd_output","timestamp":1607098261,"output":"sor: :skip}\n\u001b[0m\u001b[22m\n16:11:01.134 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler."},{"event":"cmd_output","timestamp":1607098261,"output":"RegularInitState with name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period: 100 ms, met"},{"event":"cmd_output","timestamp":1607098261,"output":"ric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurring args:"},{"event":"cmd_output","timestamp":1607098261,"output":" %{allowed_states: [\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, "},{"event":"cmd_output","timestamp":1607098261,"output":"observed_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate"},{"event":"cmd_output","timestamp":1607098261,"output":"_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.Ppl"},{"event":"cmd_output","timestamp":1607098261,"output":"SubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:01.248 [info] ppl_id: 9b554c3b-2807-4f2c-8abd-c"},{"event":"cmd_output","timestamp":1607098261,"output":"eb13fcf248d, type: PplRequests, event: persisted source_args for pipeline: 9b554c3b-2807-4f2c-8abd-c"},{"event":"cmd_output","timestamp":1607098261,"output":"eb13fcf248d, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098261,"output":"2m\n16:11:01.251 [info] ppl_id: 9b554c3b-2807-4f2c-8abd-ceb13fcf248d, type: PplSubInits, state: fet"},{"event":"cmd_output","timestamp":1607098261,"output":"ching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1("},{"event":"cmd_output","timestamp":1607098261,"output":"L90), \n\u001b[0m\u001b[22m\n16:11:01.281 [info] ppl_id: 9b554c3b-2807-4f2c-8abd-ceb13fcf248d, type: PplSubIn"},{"event":"cmd_output","timestamp":1607098261,"output":"its, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl."},{"event":"cmd_output","timestamp":1607098261,"output":"log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:01.308 [info] ppl_id: 9b554c3b-2807-4f2c-8abd-ceb13fcf2"},{"event":"cmd_output","timestamp":1607098261,"output":"48d, type: PplRequests, event: persisted definition for request with request_token: 4d3a9a74-364b-11"},{"event":"cmd_output","timestamp":1607098261,"output":"eb-8c83-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L7"},{"event":"cmd_output","timestamp":1607098261,"output":"6), \n\u001b[0m\u001b[22m\n16:11:01.313 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ect"},{"event":"cmd_output","timestamp":1607098261,"output":"o.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:11:01.310990], name: \"master-.se"},{"event":"cmd_output","timestamp":1607098261,"output":"maphore/semaphore.yml\", organization_id: \"45edc912-2609-44bf-aa93-fcb9504d6814\", project_id: \"067fd6"},{"event":"cmd_output","timestamp":1607098261,"output":"b4-1cf5-4ff5-87a0-c8ebd0e879d6\", queue_id: \"4b59006e-fe38-4199-90d2-7ce796b6682b\", scope: \"project\","},{"event":"cmd_output","timestamp":1607098261,"output":" updated_at: ~N[2020-12-04 16:11:01.311003], user_generated: false}}\n\u001b[0m\u001b[22m\n16:11:01.320 [info]"},{"event":"cmd_output","timestamp":1607098261,"output":" event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098261,"output":"\u001b[22m\n16:11:01.320 [info] ppl_id: 9b554c3b-2807-4f2c-8abd-ceb13fcf248d, type: PplBlocks, block_ind"},{"event":"cmd_output","timestamp":1607098261,"output":"ex: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHan"},{"event":"cmd_output","timestamp":1607098261,"output":"dler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:11:01.331 [info] ppl_id: 9b554c3b-2807-4f2c-"},{"event":"cmd_output","timestamp":1607098261,"output":"8abd-ceb13fcf248d, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_"},{"event":"cmd_output","timestamp":1607098261,"output":"count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:01.342 [info] "},{"event":"cmd_output","timestamp":1607098261,"output":"ppl_id: 9b554c3b-2807-4f2c-8abd-ceb13fcf248d, type: Ppls, state: pending, event: exit_scheduling, re"},{"event":"cmd_output","timestamp":1607098264,"output":"covery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test defaul"},{"event":"cmd_output","timestamp":1607098264,"output":"t values for additional fields are set when pipeline without them in yaml def exits initializing (31"},{"event":"cmd_output","timestamp":1607098264,"output":"00.6ms)\u001b[0m\n * test gofer service is called with valid params and resulting switch_id is stored in"},{"event":"cmd_output","timestamp":1607098264,"output":" db\u001b[22m\n16:11:04.226 [info] Request: 'run: %{:file_name => \"promotions.yml\", :repo_name => \"23_in"},{"event":"cmd_output","timestamp":1607098264,"output":"itializing_test\", \"branch_id\" => \"e85c88ff-8b97-4da3-979b-fd0ee73f615c\", \"branch_name\" => \"master\", "},{"event":"cmd_output","timestamp":1607098264,"output":"\"commit_sha\" => \"75891a4469\", \"file_name\" => \"semaphore.yml\", \"hook_id\" => \"4f156a68-364b-11eb-b0f7-"},{"event":"cmd_output","timestamp":1607098264,"output":"5254005464e2\", \"label\" => \"master\", \"organization_id\" => \"b4a7bcbd-770e-49bc-b901-8e8ac6e841ae\", \"ow"},{"event":"cmd_output","timestamp":1607098264,"output":"ner\" => \"rt\", \"project_id\" => \"a0a7d5e4-b1c8-4004-9a6e-b6beaa4472e9\", \"repo_name\" => \"2_basic\", \"req"},{"event":"cmd_output","timestamp":1607098264,"output":"uest_token\" => \"4f155e6a-364b-11eb-9270-5254005464e2\", \"requester_id\" => \"62d05635-e1d6-49ed-8d23-00"},{"event":"cmd_output","timestamp":1607098264,"output":"06e7cb0344\", \"service\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf"},{"event":"cmd_output","timestamp":1607098264,"output":"_id\" => \"b6069066-8c81-473f-8512-c44cab7527fc\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:11:04."},{"event":"cmd_output","timestamp":1607098264,"output":"231 [info] ppl_id: 7800d364-dca5-4b98-8085-bce0fd9196e2, type: PplRequests, event: persisted schedu"},{"event":"cmd_output","timestamp":1607098264,"output":"le request with request_token: 4f155e6a-364b-11eb-9270-5254005464e2, origin: Elixir.Ppl.PplRequests."},{"event":"cmd_output","timestamp":1607098264,"output":"Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:11:04.235 [info] ppl_id: 7800d364"},{"event":"cmd_output","timestamp":1607098264,"output":"-dca5-4b98-8085-bce0fd9196e2, type: Ppls, state: initializing, event: initializing, recovery_count: "},{"event":"cmd_output","timestamp":1607098264,"output":"0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:11:04.242 [in"},{"event":"cmd_output","timestamp":1607098264,"output":"fo] Project a0a7d5e4-b1c8-4004-9a6e-b6beaa4472e9 and branch masterlatest_wf details updated: \"wf_id"},{"event":"cmd_output","timestamp":1607098264,"output":": b6069066-8c81-473f-8512-c44cab7527fc, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:11:04.244 [info] Persisted ppl"},{"event":"cmd_output","timestamp":1607098264,"output":"_sub_init for pipeline with ppl_id: 7800d364-dca5-4b98-8085-bce0fd9196e2: %Ppl.PplSubInits.Model.Ppl"},{"event":"cmd_output","timestamp":1607098264,"output":"SubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error"},{"event":"cmd_output","timestamp":1607098264,"output":"_description: nil, id: 119, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 1"},{"event":"cmd_output","timestamp":1607098264,"output":"6:11:04.243028], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"7800d364-dca5-4b98-8085-bce0fd9196e2\", recovery_count: 0, result: nil, result_re"},{"event":"cmd_output","timestamp":1607098264,"output":"ason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[202"},{"event":"cmd_output","timestamp":1607098264,"output":"0-12-04 16:11:04.243041]}\n\u001b[0m\u001b[22m\n16:11:04.251 [info] Periodic from module Elixir.Ppl.Ppls.STMH"},{"event":"cmd_output","timestamp":1607098264,"output":"andler.InitializingState with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms, m"},{"event":"cmd_output","timestamp":1607098264,"output":"etric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %{a"},{"event":"cmd_output","timestamp":1607098264,"output":"llowed_states: [\"initializing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Mod"},{"event":"cmd_output","timestamp":1607098264,"output":"el.Ppls, observed_state: \"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandle"},{"event":"cmd_output","timestamp":1607098264,"output":"r.InitializingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :"},{"event":"cmd_output","timestamp":1607098264,"output":"state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0"},{"event":"cmd_output","timestamp":1607098264,"output":"m\u001b[22m\n16:11:04.252 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedState wit"},{"event":"cmd_output","timestamp":1607098264,"output":"h name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.beholder"},{"event":"cmd_output","timestamp":1607098264,"output":"-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args: %{allowed_states: [\"fetchin"},{"event":"cmd_output","timestamp":1607098264,"output":"g\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: "},{"event":"cmd_output","timestamp":1607098264,"output":"\"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at"},{"event":"cmd_output","timestamp":1607098264,"output":", :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_superv"},{"event":"cmd_output","timestamp":1607098264,"output":"isor: :skip}\n\u001b[0m\u001b[22m\n16:11:04.253 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler"},{"event":"cmd_output","timestamp":1607098264,"output":".FetchingState with name Elixir.Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 ms, metric_n"},{"event":"cmd_output","timestamp":1607098264,"output":"ame: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %{allow"},{"event":"cmd_output","timestamp":1607098264,"output":"ed_states: [\"regular_init\", \"compilation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubI"},{"event":"cmd_output","timestamp":1607098264,"output":"nits.Model.PplSubInits, observed_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, returni"},{"event":"cmd_output","timestamp":1607098264,"output":"ng: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.P"},{"event":"cmd_output","timestamp":1607098264,"output":"plSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:04.254 [info] Periodic from"},{"event":"cmd_output","timestamp":1607098264,"output":" module Elixir.Ppl.PplSubInits.STMHandler.CompilationState with name Elixir.Ppl.PplSubInits.STMHandl"},{"event":"cmd_output","timestamp":1607098264,"output":"er.CompilationState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHa"},{"event":"cmd_output","timestamp":1607098264,"output":"ndler-CompilationState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"stoppi"},{"event":"cmd_output","timestamp":1607098264,"output":"ng\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state"},{"event":"cmd_output","timestamp":1607098264,"output":": \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :upda"},{"event":"cmd_output","timestamp":1607098264,"output":"ted_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_"},{"event":"cmd_output","timestamp":1607098264,"output":"supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:04.256 [info] Periodic from module Elixir.Ppl.PplSubInits.STMH"},{"event":"cmd_output","timestamp":1607098264,"output":"andler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period: 100 "},{"event":"cmd_output","timestamp":1607098264,"output":"ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurrin"},{"event":"cmd_output","timestamp":1607098264,"output":"g args: %{allowed_states: [\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSub"},{"event":"cmd_output","timestamp":1607098264,"output":"Inits, observed_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :te"},{"event":"cmd_output","timestamp":1607098264,"output":"rminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Mo"},{"event":"cmd_output","timestamp":1607098264,"output":"del.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:04.368 [info] ppl_id: 7800d364-dca5-4b98"},{"event":"cmd_output","timestamp":1607098264,"output":"-8085-bce0fd9196e2, type: PplRequests, event: persisted source_args for pipeline: 7800d364-dca5-4b98"},{"event":"cmd_output","timestamp":1607098264,"output":"-8085-bce0fd9196e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n"},{"event":"cmd_output","timestamp":1607098264,"output":"\u001b[0m\u001b[22m\n16:11:04.380 [info] ppl_id: 7800d364-dca5-4b98-8085-bce0fd9196e2, type: PplSubInits, sta"},{"event":"cmd_output","timestamp":1607098264,"output":"te: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_ch"},{"event":"cmd_output","timestamp":1607098264,"output":"ange/1(L90), \n\u001b[0m\u001b[22m\n16:11:04.404 [info] ppl_id: 7800d364-dca5-4b98-8085-bce0fd9196e2, type: P"},{"event":"cmd_output","timestamp":1607098264,"output":"plSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.ST"},{"event":"cmd_output","timestamp":1607098264,"output":"M.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:04.446 [info] ppl_id: 7800d364-dca5-4b98-8085-bc"},{"event":"cmd_output","timestamp":1607098264,"output":"e0fd9196e2, type: PplRequests, event: persisted definition for request with request_token: 4f155e6a-"},{"event":"cmd_output","timestamp":1607098264,"output":"364b-11eb-9270-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definiti"},{"event":"cmd_output","timestamp":1607098264,"output":"on/3(L76), \n\u001b[0m\u001b[22m\n16:11:04.451 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta_"},{"event":"cmd_output","timestamp":1607098264,"output":"_: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:11:04.449826], name: \"mas"},{"event":"cmd_output","timestamp":1607098264,"output":"ter-.semaphore/semaphore.yml\", organization_id: \"b4a7bcbd-770e-49bc-b901-8e8ac6e841ae\", project_id: "},{"event":"cmd_output","timestamp":1607098264,"output":"\"a0a7d5e4-b1c8-4004-9a6e-b6beaa4472e9\", queue_id: \"7a0cf636-d6c6-4144-ae69-1cd894247640\", scope: \"pr"},{"event":"cmd_output","timestamp":1607098264,"output":"oject\", updated_at: ~N[2020-12-04 16:11:04.449839], user_generated: false}}\n\u001b[0m\u001b[22m\n16:11:04.457"},{"event":"cmd_output","timestamp":1607098264,"output":" [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105),"},{"event":"cmd_output","timestamp":1607098264,"output":" \n\u001b[0m\u001b[22m\n16:11:04.457 [info] ppl_id: 7800d364-dca5-4b98-8085-bce0fd9196e2, type: PplBlocks, bl"},{"event":"cmd_output","timestamp":1607098264,"output":"ock_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits"},{"event":"cmd_output","timestamp":1607098264,"output":".STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:11:04.459 [info] ppl_id: 7800d364-dca"},{"event":"cmd_output","timestamp":1607098264,"output":"5-4b98-8085-bce0fd9196e2, type: PplSubInits, state: done, result: passed, event: exit_scheduling, re"},{"event":"cmd_output","timestamp":1607098264,"output":"covery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:04.472 ["},{"event":"cmd_output","timestamp":1607098264,"output":"info] ppl_id: 7800d364-dca5-4b98-8085-bce0fd9196e2, type: Ppls, state: pending, event: exit_schedul"},{"event":"cmd_output","timestamp":1607098264,"output":"ing, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test"},{"event":"cmd_output","timestamp":1607098264,"output":" gofer service is called with valid params and resulting switch_id is stored in db (434.0ms)\u001b[0m\n\n"},{"event":"cmd_output","timestamp":1607098264,"output":"Ppl.Ppls.STMHandler.DoneState.Test\n * test gofer service is called with valid params when ppl tran"},{"event":"cmd_output","timestamp":1607098264,"output":"sitions to done\u001b[22m\n16:11:04.640 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.Initializ"},{"event":"cmd_output","timestamp":1607098264,"output":"ingState with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Pp"},{"event":"cmd_output","timestamp":1607098264,"output":"l.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: ["},{"event":"cmd_output","timestamp":1607098264,"output":"\"initializing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observe"},{"event":"cmd_output","timestamp":1607098264,"output":"d_state: \"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingSt"},{"event":"cmd_output","timestamp":1607098264,"output":"ate.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, "},{"event":"cmd_output","timestamp":1607098264,"output":":recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:04"},{"event":"cmd_output","timestamp":1607098264,"output":".641 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls."},{"event":"cmd_output","timestamp":1607098264,"output":"STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandl"},{"event":"cmd_output","timestamp":1607098264,"output":"er-PendingState\"]}, recurring args: %{allowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], coo"},{"event":"cmd_output","timestamp":1607098264,"output":"ling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publisher_cb: #Func"},{"event":"cmd_output","timestamp":1607098264,"output":"tion<0.8493005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :"},{"event":"cmd_output","timestamp":1607098264,"output":"terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.P"},{"event":"cmd_output","timestamp":1607098264,"output":"pls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:11:04.641 [info] Periodic from module Elix"},{"event":"cmd_output","timestamp":1607098264,"output":"ir.Ppl.Ppls.STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100"},{"event":"cmd_output","timestamp":1607098264,"output":" ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{"},{"event":"cmd_output","timestamp":1607098264,"output":"allowed_states: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model."},{"event":"cmd_output","timestamp":1607098264,"output":"Ppls, observed_state: \"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.Queuin"},{"event":"cmd_output","timestamp":1607098264,"output":"gState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :resul"},{"event":"cmd_output","timestamp":1607098264,"output":"t, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11"},{"event":"cmd_output","timestamp":1607098264,"output":":04.641 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl.Pp"},{"event":"cmd_output","timestamp":1607098264,"output":"ls.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHa"},{"event":"cmd_output","timestamp":1607098264,"output":"ndler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_ti"},{"event":"cmd_output","timestamp":1607098264,"output":"me_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"running\", publisher_cb: #Function<0"},{"event":"cmd_output","timestamp":1607098264,"output":".74670282/1 in Ppl.Ppls.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :termi"},{"event":"cmd_output","timestamp":1607098264,"output":"nate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, "},{"event":"cmd_output","timestamp":1607098264,"output":"task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:11:04.641 [info] Periodic from module Elixir.Pp"},{"event":"cmd_output","timestamp":1607098264,"output":"l.PplSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: pe"},{"event":"cmd_output","timestamp":1607098264,"output":"riod: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, re"},{"event":"cmd_output","timestamp":1607098264,"output":"curring args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSub"},{"event":"cmd_output","timestamp":1607098264,"output":"Inits.Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returni"},{"event":"cmd_output","timestamp":1607098264,"output":"ng: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.P"},{"event":"cmd_output","timestamp":1607098264,"output":"plSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:04.641 [info] Periodic from"},{"event":"cmd_output","timestamp":1607098264,"output":" module Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler."},{"event":"cmd_output","timestamp":1607098264,"output":"FetchingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-"},{"event":"cmd_output","timestamp":1607098264,"output":"FetchingState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"done\"], cooling"},{"event":"cmd_output","timestamp":1607098264,"output":"_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fetching\", publish"},{"event":"cmd_output","timestamp":1607098264,"output":"er_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result,"},{"event":"cmd_output","timestamp":1607098264,"output":" :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m"},{"event":"cmd_output","timestamp":1607098264,"output":"\u001b[22m\n16:11:04.641 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CompilationState "},{"event":"cmd_output","timestamp":1607098264,"output":"with name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 100 ms, metric_name: {\"Ppl.b"},{"event":"cmd_output","timestamp":1607098264,"output":"eholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurring args: %{allowed_states"},{"event":"cmd_output","timestamp":1607098264,"output":": [\"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplS"},{"event":"cmd_output","timestamp":1607098264,"output":"ubInits.Model.PplSubInits, observed_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, r"},{"event":"cmd_output","timestamp":1607098264,"output":"eturning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema:"},{"event":"cmd_output","timestamp":1607098264,"output":" Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:04.641 [info] Periodi"},{"event":"cmd_output","timestamp":1607098264,"output":"c from module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.ST"},{"event":"cmd_output","timestamp":1607098264,"output":"MHandler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits"},{"event":"cmd_output","timestamp":1607098264,"output":"-STMHandler-RegularInitState\"]}, recurring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, in"},{"event":"cmd_output","timestamp":1607098264,"output":"itial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_init\", publisher_cb: :skip,"},{"event":"cmd_output","timestamp":1607098264,"output":" repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_co"},{"event":"cmd_output","timestamp":1607098264,"output":"unt, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:"},{"event":"cmd_output","timestamp":1607098264,"output":"04.651 [info] Request: 'run: %{:file_name => \"promotions.yml\", :repo_name => \"23_initializing_test\""},{"event":"cmd_output","timestamp":1607098264,"output":", \"branch_id\" => \"6fadd3af-89d1-4516-baf4-1b51f3b4480e\", \"branch_name\" => \"master\", \"commit_sha\" => "},{"event":"cmd_output","timestamp":1607098264,"output":"\"75891a4469\", \"file_name\" => \"semaphore.yml\", \"hook_id\" => \"4f56c0c6-364b-11eb-a419-5254005464e2\", \""},{"event":"cmd_output","timestamp":1607098264,"output":"label\" => \"master\", \"organization_id\" => \"214bb58c-6a85-45da-9502-5f1b19c7287a\", \"owner\" => \"rt\", \"p"},{"event":"cmd_output","timestamp":1607098264,"output":"roject_id\" => \"6e4e35ab-230c-4776-9694-132b0de9ed08\", \"repo_name\" => \"2_basic\", \"request_token\" => \""},{"event":"cmd_output","timestamp":1607098264,"output":"4f561cac-364b-11eb-b361-5254005464e2\", \"requester_id\" => \"89b72d68-fb0a-44d8-b092-6b48ffe2728c\", \"se"},{"event":"cmd_output","timestamp":1607098264,"output":"rvice\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"ed5c57b"},{"event":"cmd_output","timestamp":1607098264,"output":"a-2d42-4a65-9188-0eacf8c48b46\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:11:04.660 [info] ppl_"},{"event":"cmd_output","timestamp":1607098264,"output":"id: faf2022d-2571-48dd-8b34-7c9a57817d76, type: PplRequests, event: persisted schedule request with "},{"event":"cmd_output","timestamp":1607098264,"output":"request_token: 4f561cac-364b-11eb-b361-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequest"},{"event":"cmd_output","timestamp":1607098264,"output":"sQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:11:04.663 [info] ppl_id: faf2022d-2571-48dd-8b34-"},{"event":"cmd_output","timestamp":1607098264,"output":"7c9a57817d76, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098264,"output":"r.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:11:04.669 [info] Project 6e4"},{"event":"cmd_output","timestamp":1607098264,"output":"e35ab-230c-4776-9694-132b0de9ed08 and branch masterlatest_wf details updated: \"wf_id: ed5c57ba-2d42-"},{"event":"cmd_output","timestamp":1607098264,"output":"4a65-9188-0eacf8c48b46, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:11:04.673 [info] Persisted ppl_sub_init for pi"},{"event":"cmd_output","timestamp":1607098264,"output":"peline with ppl_id: faf2022d-2571-48dd-8b34-7c9a57817d76: %Ppl.PplSubInits.Model.PplSubInits{__meta_"},{"event":"cmd_output","timestamp":1607098264,"output":"_: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: ni"},{"event":"cmd_output","timestamp":1607098264,"output":"l, id: 120, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:11:04.670870],"},{"event":"cmd_output","timestamp":1607098264,"output":" pipeline_requests: #Ecto.Association.NotLoaded, ppl_i"},{"event":"cmd_output","timestamp":1607098264,"output":"d: \"faf2022d-2571-48dd-8b34-7c9a57817d76\", recovery_count: 0, result: nil, result_reason: nil, state"},{"event":"cmd_output","timestamp":1607098264,"output":": \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:11:04"},{"event":"cmd_output","timestamp":1607098264,"output":".670884]}\n\u001b[0m\u001b[22m\n16:11:04.692 [info] ppl_id: faf2022d-2571-48dd-8b34-7c9a57817d76, type: PplRe"},{"event":"cmd_output","timestamp":1607098264,"output":"quests, event: persisted source_args for pipeline: faf2022d-2571-48dd-8b34-7c9a57817d76, origin: Eli"},{"event":"cmd_output","timestamp":1607098264,"output":"xir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:11:04.694 [info] "},{"event":"cmd_output","timestamp":1607098264,"output":" ppl_id: faf2022d-2571-48dd-8b34-7c9a57817d76, type: PplSubInits, state: fetching, event: exit_sched"},{"event":"cmd_output","timestamp":1607098264,"output":"uling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11"},{"event":"cmd_output","timestamp":1607098264,"output":":04.716 [info] ppl_id: faf2022d-2571-48dd-8b34-7c9a57817d76, type: PplSubInits, state: regular_init"},{"event":"cmd_output","timestamp":1607098264,"output":", event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90),"},{"event":"cmd_output","timestamp":1607098264,"output":" \n\u001b[0m\u001b[22m\n16:11:04.754 [info] ppl_id: faf2022d-2571-48dd-8b34-7c9a57817d76, type: PplRequests, "},{"event":"cmd_output","timestamp":1607098264,"output":"event: persisted definition for request with request_token: 4f561cac-364b-11eb-b361-5254005464e2, or"},{"event":"cmd_output","timestamp":1607098264,"output":"igin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:11:0"},{"event":"cmd_output","timestamp":1607098264,"output":"4.768 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loade"},{"event":"cmd_output","timestamp":1607098264,"output":"d, \"queues\">, inserted_at: ~N[2020-12-04 16:11:04.767180], name: \"master-.semaphore/semaphore.yml\", "},{"event":"cmd_output","timestamp":1607098264,"output":"organization_id: \"214bb58c-6a85-45da-9502-5f1b19c7287a\", project_id: \"6e4e35ab-230c-4776-9694-132b0d"},{"event":"cmd_output","timestamp":1607098264,"output":"e9ed08\", queue_id: \"a4747260-b8a9-4227-bb47-03b9f8bef7cc\", scope: \"project\", updated_at: ~N[2020-12-"},{"event":"cmd_output","timestamp":1607098264,"output":"04 16:11:04.767190], user_generated: false}}\n\u001b[0m\u001b[22m\n16:11:04.772 [info] event: created, origin"},{"event":"cmd_output","timestamp":1607098264,"output":": Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:11:04.772 [inf"},{"event":"cmd_output","timestamp":1607098264,"output":"o] ppl_id: faf2022d-2571-48dd-8b34-7c9a57817d76, type: PplBlocks, block_index: 0, state: initializi"},{"event":"cmd_output","timestamp":1607098264,"output":"ng, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.al"},{"event":"cmd_output","timestamp":1607098264,"output":"l_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:11:04.775 [info] ppl_id: faf2022d-2571-48dd-8b34-7c9a57817d76, type:"},{"event":"cmd_output","timestamp":1607098264,"output":" PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098264,"output":".Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:04.790 [info] ppl_id: faf2022d-2571-48"},{"event":"cmd_output","timestamp":1607098264,"output":"dd-8b34-7c9a57817d76, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098264,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:04.798 [info] ppl_id: faf2022d-"},{"event":"cmd_output","timestamp":1607098264,"output":"2571-48dd-8b34-7c9a57817d76, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098264,"output":"origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:04.811 [info] ppl_id: fa"},{"event":"cmd_output","timestamp":1607098264,"output":"f2022d-2571-48dd-8b34-7c9a57817d76, type: Ppls, state: running, event: exit_scheduling, recovery_cou"},{"event":"cmd_output","timestamp":1607098269,"output":"nt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:09.795 [info] ppl"},{"event":"cmd_output","timestamp":1607098269,"output":"_id: faf2022d-2571-48dd-8b34-7c9a57817d76, type: Ppls, state: done, result: passed, event: exit_sche"},{"event":"cmd_output","timestamp":1607098269,"output":"duling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * t"},{"event":"cmd_output","timestamp":1607098269,"output":"est gofer service is called with valid params when ppl transitions to done (5319.7ms)\u001b[0m\n\nPpl.Loo"},{"event":"cmd_output","timestamp":1607098269,"output":"per.Ppls.STMHandler.ExecutionTimeLimit.Test\n * test pipeline is terminated when it is running for "},{"event":"cmd_output","timestamp":1607098269,"output":"longer than execution_time_limt\u001b[22m\n16:11:09.954 [info] Request: 'run: %{:repo_name => \"7_termina"},{"event":"cmd_output","timestamp":1607098269,"output":"tion\", \"branch_id\" => \"dfbf0996-4a14-4081-a441-7d19dbff3832\", \"branch_name\" => \"master\", \"commit_sha"},{"event":"cmd_output","timestamp":1607098269,"output":"\" => \"75891a4469\", \"file_name\" => \"semaphore.yml\", \"hook_id\" => \"52807e54-364b-11eb-a011-5254005464e"},{"event":"cmd_output","timestamp":1607098269,"output":"2\", \"label\" => \"master\", \"organization_id\" => \"b708a39d-ebea-4d3e-9656-c95d845bef29\", \"owner\" => \"rt"},{"event":"cmd_output","timestamp":1607098269,"output":"\", \"project_id\" => \"7843a585-b636-4300-b518-591a6ae54d27\", \"repo_name\" => \"2_basic\", \"request_token\""},{"event":"cmd_output","timestamp":1607098269,"output":" => \"52806ffe-364b-11eb-9d77-5254005464e2\", \"requester_id\" => \"b73854bd-58cc-4bdc-ba45-63171809bbd5\""},{"event":"cmd_output","timestamp":1607098269,"output":", \"service\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"a1"},{"event":"cmd_output","timestamp":1607098269,"output":"18b890-3fff-4935-8911-5cc73b6b9141\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:11:09.963 [info] "},{"event":"cmd_output","timestamp":1607098269,"output":" ppl_id: 12e51c6b-0589-41b8-a9fb-21bad6225a79, type: PplRequests, event: persisted schedule request "},{"event":"cmd_output","timestamp":1607098269,"output":"with request_token: 52806ffe-364b-11eb-9d77-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRe"},{"event":"cmd_output","timestamp":1607098269,"output":"questsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:11:09.966 [info] ppl_id: 12e51c6b-0589-41b8-"},{"event":"cmd_output","timestamp":1607098269,"output":"a9fb-21bad6225a79, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098269,"output":"Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:11:09.970 [info] Projec"},{"event":"cmd_output","timestamp":1607098269,"output":"t 7843a585-b636-4300-b518-591a6ae54d27 and branch masterlatest_wf details updated: \"wf_id: a118b890-"},{"event":"cmd_output","timestamp":1607098269,"output":"3fff-4935-8911-5cc73b6b9141, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:11:09.972 [info] Persisted ppl_sub_init f"},{"event":"cmd_output","timestamp":1607098269,"output":"or pipeline with ppl_id: 12e51c6b-0589-41b8-a9fb-21bad6225a79: %Ppl.PplSubInits.Model.PplSubInits{__"},{"event":"cmd_output","timestamp":1607098269,"output":"meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_descriptio"},{"event":"cmd_output","timestamp":1607098269,"output":"n: nil, id: 121, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:11:09.970"},{"event":"cmd_output","timestamp":1607098269,"output":"737], pipeline_requests: #Ecto.Association.NotLoaded, "},{"event":"cmd_output","timestamp":1607098269,"output":"ppl_id: \"12e51c6b-0589-41b8-a9fb-21bad6225a79\", recovery_count: 0, result: nil, result_reason: nil, "},{"event":"cmd_output","timestamp":1607098269,"output":"state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:"},{"event":"cmd_output","timestamp":1607098269,"output":"11:09.971139]}\n\u001b[0m\u001b[22m\n16:11:09.980 [info] ppl_id: 12e51c6b-0589-41b8-a9fb-21bad6225a79, type: "},{"event":"cmd_output","timestamp":1607098269,"output":"PplRequests, event: persisted definition for request with request_token: 52806ffe-364b-11eb-9d77-525"},{"event":"cmd_output","timestamp":1607098269,"output":"4005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098269,"output":"[22m\n16:11:09.980 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingState with na"},{"event":"cmd_output","timestamp":1607098269,"output":"me Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_"},{"event":"cmd_output","timestamp":1607098269,"output":"up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", "},{"event":"cmd_output","timestamp":1607098269,"output":"\"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"initia"},{"event":"cmd_output","timestamp":1607098269,"output":"lizing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, rep"},{"event":"cmd_output","timestamp":1607098269,"output":"o: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count,"},{"event":"cmd_output","timestamp":1607098269,"output":" :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:09.981 [info] Per"},{"event":"cmd_output","timestamp":1607098269,"output":"iodic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.ST"},{"event":"cmd_output","timestamp":1607098269,"output":"MHandler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STM"},{"event":"cmd_output","timestamp":1607098269,"output":"Handler-CreatedState\"]}, recurring args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0"},{"event":"cmd_output","timestamp":1607098269,"output":", initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip, "},{"event":"cmd_output","timestamp":1607098269,"output":"repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_cou"},{"event":"cmd_output","timestamp":1607098269,"output":"nt, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:0"},{"event":"cmd_output","timestamp":1607098269,"output":"9.981 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir."},{"event":"cmd_output","timestamp":1607098269,"output":"Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\""},{"event":"cmd_output","timestamp":1607098269,"output":"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"com"},{"event":"cmd_output","timestamp":1607098269,"output":"pilation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed"},{"event":"cmd_output","timestamp":1607098269,"output":"_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :u"},{"event":"cmd_output","timestamp":1607098269,"output":"pdated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, ta"},{"event":"cmd_output","timestamp":1607098269,"output":"sk_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:09.982 [info] Periodic from module Elixir.Ppl.PplSubInits.S"},{"event":"cmd_output","timestamp":1607098269,"output":"TMHandler.CompilationState with name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 1"},{"event":"cmd_output","timestamp":1607098269,"output":"00 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recur"},{"event":"cmd_output","timestamp":1607098269,"output":"ring args: %{allowed_states: [\"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: "},{"event":"cmd_output","timestamp":1607098269,"output":"-2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"compilation\", publisher_cb: :"},{"event":"cmd_output","timestamp":1607098269,"output":"skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recove"},{"event":"cmd_output","timestamp":1607098269,"output":"ry_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098269,"output":"6:11:09.982 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with nam"},{"event":"cmd_output","timestamp":1607098269,"output":"e Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-"},{"event":"cmd_output","timestamp":1607098269,"output":"wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurring args: %{allowed_states: [\"done"},{"event":"cmd_output","timestamp":1607098269,"output":"\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_"},{"event":"cmd_output","timestamp":1607098269,"output":"init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :s"},{"event":"cmd_output","timestamp":1607098269,"output":"tate, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor"},{"event":"cmd_output","timestamp":1607098270,"output":": :skip}\n\u001b[0m\u001b[22m\n16:11:10.096 [info] ppl_id: 12e51c6b-0589-41b8-a9fb-21bad6225a79, type: PplReq"},{"event":"cmd_output","timestamp":1607098270,"output":"uests, event: persisted source_args for pipeline: 12e51c6b-0589-41b8-a9fb-21bad6225a79, origin: Elix"},{"event":"cmd_output","timestamp":1607098270,"output":"ir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:11:10.099 [info] "},{"event":"cmd_output","timestamp":1607098270,"output":"ppl_id: 12e51c6b-0589-41b8-a9fb-21bad6225a79, type: PplSubInits, state: fetching, event: exit_schedu"},{"event":"cmd_output","timestamp":1607098270,"output":"ling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:"},{"event":"cmd_output","timestamp":1607098270,"output":"10.140 [info] ppl_id: 12e51c6b-0589-41b8-a9fb-21bad6225a79, type: PplSubInits, state: regular_init,"},{"event":"cmd_output","timestamp":1607098270,"output":" event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), "},{"event":"cmd_output","timestamp":1607098270,"output":"\n\u001b[0m\u001b[22m\n16:11:10.163 [info] ppl_id: 12e51c6b-0589-41b8-a9fb-21bad6225a79, type: PplRequests, e"},{"event":"cmd_output","timestamp":1607098270,"output":"vent: persisted definition for request with request_token: 52806ffe-364b-11eb-9d77-5254005464e2, ori"},{"event":"cmd_output","timestamp":1607098270,"output":"gin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:11:10"},{"event":"cmd_output","timestamp":1607098270,"output":".174 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded"},{"event":"cmd_output","timestamp":1607098270,"output":", \"queues\">, inserted_at: ~N[2020-12-04 16:11:10.165971], name: \"master-.semaphore/semaphore.yml\", o"},{"event":"cmd_output","timestamp":1607098270,"output":"rganization_id: \"b708a39d-ebea-4d3e-9656-c95d845bef29\", project_id: \"7843a585-b636-4300-b518-591a6ae"},{"event":"cmd_output","timestamp":1607098270,"output":"54d27\", queue_id: \"53e1f77e-5225-4ceb-a4d3-f5b16784b229\", scope: \"project\", updated_at: ~N[2020-12-0"},{"event":"cmd_output","timestamp":1607098270,"output":"4 16:11:10.165981], user_generated: false}}\n\u001b[0m\u001b[22m\n16:11:10.182 [info] ppl_id: not_available, "},{"event":"cmd_output","timestamp":1607098270,"output":"event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098270,"output":"22m\n16:11:10.182 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState"},{"event":"cmd_output","timestamp":1607098270,"output":".all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:11:10.183 [info] ppl_id: 12e51c6b-0589-41b8-a9fb-21bad6225a79, ty"},{"event":"cmd_output","timestamp":1607098270,"output":"pe: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098270,"output":"r.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:11:10.183 [info] ppl"},{"event":"cmd_output","timestamp":1607098270,"output":"_id: 12e51c6b-0589-41b8-a9fb-21bad6225a79, type: PplBlocks, block_index: 1, state: initializing, eve"},{"event":"cmd_output","timestamp":1607098270,"output":"nt: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1"},{"event":"cmd_output","timestamp":1607098270,"output":"(L105), \n\u001b[0m\u001b[22m\n16:11:10.186 [info] ppl_id: 12e51c6b-0589-41b8-a9fb-21bad6225a79, type: PplSub"},{"event":"cmd_output","timestamp":1607098270,"output":"Inits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper"},{"event":"cmd_output","timestamp":1607098270,"output":".STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:10.196 [info] ppl_id: 12e51c6b-0589-41b8-a9fb"},{"event":"cmd_output","timestamp":1607098270,"output":"-21bad6225a79, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098270,"output":".Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:10.486 [info] Periodic from module Eli"},{"event":"cmd_output","timestamp":1607098270,"output":"xir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 10"},{"event":"cmd_output","timestamp":1607098270,"output":"0 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args: %"},{"event":"cmd_output","timestamp":1607098270,"output":"{allowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl."},{"event":"cmd_output","timestamp":1607098270,"output":"Ppls.Model.Ppls, observed_state: \"pending\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandl"},{"event":"cmd_output","timestamp":1607098270,"output":"er.PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :stat"},{"event":"cmd_output","timestamp":1607098270,"output":"e, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervi"},{"event":"cmd_output","timestamp":1607098270,"output":"sor}\n\u001b[0m\u001b[22m\n16:11:10.487 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.QueuingState w"},{"event":"cmd_output","timestamp":1607098270,"output":"ith name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake"},{"event":"cmd_output","timestamp":1607098270,"output":"_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{allowed_states: [\"queuing\", \"running\""},{"event":"cmd_output","timestamp":1607098270,"output":", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", publ"},{"event":"cmd_output","timestamp":1607098270,"output":"isher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, r"},{"event":"cmd_output","timestamp":1607098270,"output":"eturning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema:"},{"event":"cmd_output","timestamp":1607098270,"output":" Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:10.487 [info] Periodic from module "},{"event":"cmd_output","timestamp":1607098270,"output":"Elixir.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHandler.RunningState :: period:"},{"event":"cmd_output","timestamp":1607098270,"output":" 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring args"},{"event":"cmd_output","timestamp":1607098270,"output":": %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.M"},{"event":"cmd_output","timestamp":1607098270,"output":"odel.Ppls, observed_state: \"running\", publisher_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler.Ru"},{"event":"cmd_output","timestamp":1607098270,"output":"nningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :r"},{"event":"cmd_output","timestamp":1607098270,"output":"esult, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\r"},{"event":"cmd_output","timestamp":1607098270,"output":"\n\u001b[0m\u001b[22m\n16:11:10.488 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.StoppingState with "},{"event":"cmd_output","timestamp":1607098270,"output":"name Elixir.Ppl.Ppls.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up"},{"event":"cmd_output","timestamp":1607098270,"output":"\", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], c"},{"event":"cmd_output","timestamp":1607098270,"output":"ooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"stopping\", publisher_cb: #"},{"event":"cmd_output","timestamp":1607098270,"output":"Function<0.71803493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: ["},{"event":"cmd_output","timestamp":1607098270,"output":":id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.M"},{"event":"cmd_output","timestamp":1607098270,"output":"odel.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:10.488 [info] Periodic from module Elixir.Ppl."},{"event":"cmd_output","timestamp":1607098270,"output":"PplBlocks.STMHandler.InitializingState with name Elixir.Ppl.PplBlocks.STMHandler.InitializingState :"},{"event":"cmd_output","timestamp":1607098270,"output":": period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-InitializingState"},{"event":"cmd_output","timestamp":1607098270,"output":"\"]}, recurring args: %{allowed_states: [\"initializing\", \"waiting\", \"done\"], cooling_time_sec: 0, ini"},{"event":"cmd_output","timestamp":1607098270,"output":"tial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"initializing\", publisher_cb: :skip, repo"},{"event":"cmd_output","timestamp":1607098270,"output":": Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, "},{"event":"cmd_output","timestamp":1607098270,"output":":ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098270,"output":"6:11:10.489 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.WaitingState with name Elix"},{"event":"cmd_output","timestamp":1607098270,"output":"ir.Ppl.PplBlocks.STMHandler.WaitingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", ["},{"event":"cmd_output","timestamp":1607098270,"output":"\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurring args: %{allowed_states: [\"waiting\", \"running\", "},{"event":"cmd_output","timestamp":1607098270,"output":"\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"waiting"},{"event":"cmd_output","timestamp":1607098270,"output":"\", publisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>, repo: Ppl.E"},{"event":"cmd_output","timestamp":1607098270,"output":"ctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id"},{"event":"cmd_output","timestamp":1607098270,"output":", :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:10"},{"event":"cmd_output","timestamp":1607098270,"output":".489 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.RunningState with name Elixir.Ppl."},{"event":"cmd_output","timestamp":1607098270,"output":"PplBlocks.STMHandler.RunningState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Pp"},{"event":"cmd_output","timestamp":1607098270,"output":"lBlocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\""},{"event":"cmd_output","timestamp":1607098270,"output":"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"running\", pu"},{"event":"cmd_output","timestamp":1607098270,"output":"blisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0>, repo: Ppl.EctoR"},{"event":"cmd_output","timestamp":1607098270,"output":"epo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :b"},{"event":"cmd_output","timestamp":1607098270,"output":"lock_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098270,"output":"6:11:10.490 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.StoppingState with name Eli"},{"event":"cmd_output","timestamp":1607098270,"output":"xir.Ppl.PplBlocks.STMHandler.StoppingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\","},{"event":"cmd_output","timestamp":1607098270,"output":" [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"]"},{"event":"cmd_output","timestamp":1607098270,"output":", cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"stopping\", pu"},{"event":"cmd_output","timestamp":1607098270,"output":"blisher_cb: #Function<0.104215991/1 in Ppl.PplBlocks.STMHandler.StoppingState.args/0>, repo: Ppl.Ect"},{"event":"cmd_output","timestamp":1607098270,"output":"oRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, "},{"event":"cmd_output","timestamp":1607098270,"output":":block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098270,"output":"\n16:11:10.490 [info] Periodic from module Elixir.Block.Blocks.STMHandler.InitializingState with nam"},{"event":"cmd_output","timestamp":1607098270,"output":"e Elixir.Block.Blocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wa"},{"event":"cmd_output","timestamp":1607098270,"output":"ke_up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"running\""},{"event":"cmd_output","timestamp":1607098270,"output":", \"done\"], cooling_time_sec: 0, initial_query: Block.Blocks.Model.Blocks, observed_state: \"initializ"},{"event":"cmd_output","timestamp":1607098270,"output":"ing\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :"},{"event":"cmd_output","timestamp":1607098270,"output":"state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m"},{"event":"cmd_output","timestamp":1607098270,"output":"\u001b[22m\n16:11:10.491 [info] Periodic from module Elixir.Block.Blocks.STMHandler.RunningState with na"},{"event":"cmd_output","timestamp":1607098270,"output":"me Elixir.Block.Blocks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_u"},{"event":"cmd_output","timestamp":1607098270,"output":"p\", [\"Block-Blocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stoppi"},{"event":"cmd_output","timestamp":1607098270,"output":"ng\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"runni"},{"event":"cmd_output","timestamp":1607098270,"output":"ng\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :s"},{"event":"cmd_output","timestamp":1607098270,"output":"tate, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098270,"output":"[22m\n16:11:10.491 [info] Periodic from module Elixir.Block.Blocks.STMHandler.StoppingState with na"},{"event":"cmd_output","timestamp":1607098270,"output":"me Elixir.Block.Blocks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_"},{"event":"cmd_output","timestamp":1607098270,"output":"up\", [\"Block-Blocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"don"},{"event":"cmd_output","timestamp":1607098270,"output":"e\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"stopping\", pub"},{"event":"cmd_output","timestamp":1607098270,"output":"lisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :r"},{"event":"cmd_output","timestamp":1607098270,"output":"ecovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098270,"output":":11:10.492 [info] Periodic from module Elixir.Block.Tasks.STMHandler.PendingState with name Elixir."},{"event":"cmd_output","timestamp":1607098270,"output":"Block.Tasks.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block"},{"event":"cmd_output","timestamp":1607098270,"output":"-Tasks-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_ti"},{"event":"cmd_output","timestamp":1607098270,"output":"me_sec: 0, initial_query: Block.Tasks.Model.Tasks, observed_state: \"pending\", publisher_cb: :skip, r"},{"event":"cmd_output","timestamp":1607098270,"output":"epo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :blo"},{"event":"cmd_output","timestamp":1607098270,"output":"ck_id, :build_request_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098270,"output":"1:10.492 [info] Periodic from module Elixir.Block.Tasks.STMHandler.RunningState with name Elixir.Bl"},{"event":"cmd_output","timestamp":1607098270,"output":"ock.Tasks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-T"},{"event":"cmd_output","timestamp":1607098270,"output":"asks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], "},{"event":"cmd_output","timestamp":1607098270,"output":"cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"running\", publisher_c"},{"event":"cmd_output","timestamp":1607098270,"output":"b: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_"},{"event":"cmd_output","timestamp":1607098270,"output":"count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:10.493"},{"event":"cmd_output","timestamp":1607098270,"output":" [info] Periodic from module Elixir.Block.Tasks.STMHandler.StoppingState with name Elixir.Block.Tas"},{"event":"cmd_output","timestamp":1607098270,"output":"ks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-S"},{"event":"cmd_output","timestamp":1607098270,"output":"TMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec"},{"event":"cmd_output","timestamp":1607098270,"output":": -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"stopping\", publisher_cb: :skip, repo:"},{"event":"cmd_output","timestamp":1607098270,"output":" Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_i"},{"event":"cmd_output","timestamp":1607098270,"output":"d], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:10.602 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098270,"output":": 12e51c6b-0589-41b8-a9fb-21bad6225a79, type: Ppls, state: queuing, event: exit_scheduling, recovery"},{"event":"cmd_output","timestamp":1607098270,"output":"_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:10.610 [info] "},{"event":"cmd_output","timestamp":1607098270,"output":" ppl_id: 12e51c6b-0589-41b8-a9fb-21bad6225a79, type: PplBlocks, block_index: 0, state: waiting, even"},{"event":"cmd_output","timestamp":1607098270,"output":"t: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098270,"output":"m\u001b[22m\n16:11:10.614 [info] ppl_id: 12e51c6b-0589-41b8-a9fb-21bad6225a79, type: Ppls, state: runnin"},{"event":"cmd_output","timestamp":1607098270,"output":"g, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90)"},{"event":"cmd_output","timestamp":1607098270,"output":", \n\u001b[0m\u001b[22m\n16:11:10.620 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: "},{"event":"cmd_output","timestamp":1607098270,"output":"\"12e51c6b-0589-41b8-a9fb-21bad6225a79\"\n\u001b[0m\u001b[22m\n16:11:10.624 [info] ppl_id: 12e51c6b-0589-41b8-a"},{"event":"cmd_output","timestamp":1607098270,"output":"9fb-21bad6225a79, type: PplBlocks, block_index: 1, state: waiting, event: exit_scheduling, recovery_"},{"event":"cmd_output","timestamp":1607098270,"output":"count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:10.634 [info] "},{"event":"cmd_output","timestamp":1607098270,"output":"block_id: 210c22c6-007f-413d-8b95-70c3095f2e16, type: BlockRequests, event: persisted block run requ"},{"event":"cmd_output","timestamp":1607098270,"output":"est from ppl 12e51c6b-0589-41b8-a9fb-21bad6225a79 for block 0, origin: Elixir.Block.BlockRequests.Mo"},{"event":"cmd_output","timestamp":1607098270,"output":"del.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:11:10.637 [info] block_id: 210c22"},{"event":"cmd_output","timestamp":1607098270,"output":"c6-007f-413d-8b95-70c3095f2e16, type: Blocks, state: initializing, event: initializing, recovery_cou"},{"event":"cmd_output","timestamp":1607098270,"output":"nt: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:11:10.640 [inf"},{"event":"cmd_output","timestamp":1607098270,"output":"o] Block 0 of pipeline with id: 12e51c6b-0589-41b8-a9fb-21bad6225a79 scheduled in block service wit"},{"event":"cmd_output","timestamp":1607098270,"output":"h id: : \"210c22c6-007f-413d-8b95-70c3095f2e16\"\n\u001b[0m\u001b[22m\n16:11:10.643 [info] ppl_id: 12e51c6b-058"},{"event":"cmd_output","timestamp":1607098270,"output":"9-41b8-a9fb-21bad6225a79, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, r"},{"event":"cmd_output","timestamp":1607098270,"output":"ecovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:10.648 "},{"event":"cmd_output","timestamp":1607098270,"output":"[info] block_id: 210c22c6-007f-413d-8b95-70c3095f2e16, type: BlockRequests, event: persisted build "},{"event":"cmd_output","timestamp":1607098270,"output":"and sub_ppl details for block_request: 210c22c6-007f-413d-8b95-70c3095f2e16, origin: Elixir.Block.Bl"},{"event":"cmd_output","timestamp":1607098270,"output":"ockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:11:10.660 [info] block_"},{"event":"cmd_output","timestamp":1607098270,"output":"id: 210c22c6-007f-413d-8b95-70c3095f2e16, type: Tasks, state: pending, event: created, recovery_coun"},{"event":"cmd_output","timestamp":1607098270,"output":"t: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:11:1"},{"event":"cmd_output","timestamp":1607098270,"output":"0.662 [info] block_id: 210c22c6-007f-413d-8b95-70c3095f2e16, type: Blocks, state: running, event: e"},{"event":"cmd_output","timestamp":1607098270,"output":"xit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098270,"output":"2m\n16:11:10.679 [info] block_id: 210c22c6-007f-413d-8b95-70c3095f2e16, type: Tasks, state: running"},{"event":"cmd_output","timestamp":1607098270,"output":", event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90),"},{"event":"cmd_output","timestamp":1607098271,"output":" \n\u001b[0m\u001b[22m\n16:11:11.161 [info] ppl_id: 12e51c6b-0589-41b8-a9fb-21bad6225a79, type: Ppls, state: "},{"event":"cmd_output","timestamp":1607098271,"output":"stopping, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change"},{"event":"cmd_output","timestamp":1607098271,"output":"/1(L90), \n\u001b[0m\u001b[22m\n16:11:11.170 [info] ppl_id: 12e51c6b-0589-41b8-a9fb-21bad6225a79, type: PplBl"},{"event":"cmd_output","timestamp":1607098271,"output":"ocks, block_index: 1, state: done, result: canceled, event: exit_scheduling, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098271,"output":"in: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:11.179 [info] ppl_id: 12e51c"},{"event":"cmd_output","timestamp":1607098271,"output":"6b-0589-41b8-a9fb-21bad6225a79, block_id: 210c22c6-007f-413d-8b95-70c3095f2e16, type: PplBlocks, blo"},{"event":"cmd_output","timestamp":1607098271,"output":"ck_index: 0, state: stopping, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.I"},{"event":"cmd_output","timestamp":1607098271,"output":"mpl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:11.195 [info] block_id: 210c22c6-007f-413d-8b95-70c"},{"event":"cmd_output","timestamp":1607098271,"output":"3095f2e16, type: Blocks, state: stopping, event: exit_scheduling, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098271,"output":"Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:11.216 [info] block_id: 210c22c6-007f-4"},{"event":"cmd_output","timestamp":1607098271,"output":"13d-8b95-70c3095f2e16, type: Tasks, state: stopping, event: exit_scheduling, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098280,"output":"in: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:20.758 [info] block_id: 210c"},{"event":"cmd_output","timestamp":1607098280,"output":"22c6-007f-413d-8b95-70c3095f2e16, type: Tasks, state: done, event: exit_scheduling, recovery_count: "},{"event":"cmd_output","timestamp":1607098280,"output":"0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:20.768 [info] block_i"},{"event":"cmd_output","timestamp":1607098280,"output":"d: 210c22c6-007f-413d-8b95-70c3095f2e16, type: Blocks, state: done, event: exit_scheduling, recovery"},{"event":"cmd_output","timestamp":1607098280,"output":"_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:20.778 [info] "},{"event":"cmd_output","timestamp":1607098280,"output":" ppl_id: 12e51c6b-0589-41b8-a9fb-21bad6225a79, block_id: 210c22c6-007f-413d-8b95-70c3095f2e16, type:"},{"event":"cmd_output","timestamp":1607098280,"output":" PplBlocks, block_index: 0, state: done, result: stopped, event: exit_scheduling, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098280,"output":" origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:20.796 [info] ppl_id: 1"},{"event":"cmd_output","timestamp":1607098280,"output":"2e51c6b-0589-41b8-a9fb-21bad6225a79, type: Ppls, state: done, result: stopped, event: exit_schedulin"},{"event":"cmd_output","timestamp":1607098281,"output":"g, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test p"},{"event":"cmd_output","timestamp":1607098281,"output":"ipeline is terminated when it is running for longer than execution_time_limt (11143.7ms)\u001b[0m\n\nPpl."},{"event":"cmd_output","timestamp":1607098281,"output":"Ppls.Model.PplsQueries.Test\n * test get pipeline in queuing and move it to scheduling\r * test get"},{"event":"cmd_output","timestamp":1607098281,"output":" pipeline in queuing and move it to scheduling (skipped)\n * test insert new pipeline event from lo"},{"event":"cmd_output","timestamp":1607098281,"output":"cal pipeline service\r * test insert new pipeline event from local pipeline service (skipped)\n * t"},{"event":"cmd_output","timestamp":1607098281,"output":"est move pipeline from pending to running\r * test move pipeline from pending to running (skipped)\n"},{"event":"cmd_output","timestamp":1607098281,"output":" * test get_details() returns correct values\r * test get_details() returns correct values (skipped"},{"event":"cmd_output","timestamp":1607098281,"output":")\n * test move pipeline from stopping to done\r * test move pipeline from stopping to done (skippe"},{"event":"cmd_output","timestamp":1607098281,"output":"d)\n * test move pipeline from initializing-scheduling to done\r * test move pipeline from initiali"},{"event":"cmd_output","timestamp":1607098281,"output":"zing-scheduling to done (skipped)\n * test move pipeline from running to stopping\r * test move pip"},{"event":"cmd_output","timestamp":1607098281,"output":"eline from running to stopping (skipped)\n * test list pipelines correctly handles no ppl found sit"},{"event":"cmd_output","timestamp":1607098281,"output":"uation \r * test list pipelines correctly handles no ppl found situation (skipped)\n * test list p"},{"event":"cmd_output","timestamp":1607098281,"output":"ipelines by git_ref_types and label\u001b[22m\n16:11:21.134 [info] ppl_id: 556b5733-0ba4-4004-9896-c5dac"},{"event":"cmd_output","timestamp":1607098281,"output":"f7ff2f2, type: PplRequests, event: persisted schedule request with request_token: 5929be5a-364b-11eb"},{"event":"cmd_output","timestamp":1607098281,"output":"-9611-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55),"},{"event":"cmd_output","timestamp":1607098281,"output":" \n\u001b[0m\u001b[22m\n16:11:21.137 [info] ppl_id: 556b5733-0ba4-4004-9896-c5dacf7ff2f2, type: PplRequests, "},{"event":"cmd_output","timestamp":1607098281,"output":"event: persisted definition for request with request_token: 5929be5a-364b-11eb-9611-5254005464e2, or"},{"event":"cmd_output","timestamp":1607098281,"output":"igin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:11:2"},{"event":"cmd_output","timestamp":1607098281,"output":"1.139 [info] ppl_id: a6049791-c63a-4e9f-886a-d08f5e014890, type: PplRequests, event: persisted sche"},{"event":"cmd_output","timestamp":1607098281,"output":"dule request with request_token: 2e3d680a-f0dd-44bc-8a46-3f4948ee9fa3, origin: Elixir.Ppl.PplRequest"},{"event":"cmd_output","timestamp":1607098281,"output":"s.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:11:21.142 [info] ppl_id: a60497"},{"event":"cmd_output","timestamp":1607098281,"output":"91-c63a-4e9f-886a-d08f5e014890, type: PplRequests, event: persisted definition for request with requ"},{"event":"cmd_output","timestamp":1607098281,"output":"est_token: 2e3d680a-f0dd-44bc-8a46-3f4948ee9fa3, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQue"},{"event":"cmd_output","timestamp":1607098281,"output":"ries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:11:21.145 [info] ppl_id: d8aa91c7-b84c-4ec3-9f92-b69"},{"event":"cmd_output","timestamp":1607098281,"output":"67fbaa6d9, type: PplRequests, event: persisted schedule request with request_token: 13e19ed5-12c9-42"},{"event":"cmd_output","timestamp":1607098281,"output":"8a-ad99-97bf52b52530, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55"},{"event":"cmd_output","timestamp":1607098281,"output":"), \n\u001b[0m\u001b[22m\n16:11:21.147 [info] ppl_id: d8aa91c7-b84c-4ec3-9f92-b6967fbaa6d9, type: PplRequests"},{"event":"cmd_output","timestamp":1607098281,"output":", event: persisted definition for request with request_token: 13e19ed5-12c9-428a-ad99-97bf52b52530, "},{"event":"cmd_output","timestamp":1607098281,"output":"origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:11"},{"event":"cmd_output","timestamp":1607098281,"output":":21.150 [info] ppl_id: d8aa91c7-b84c-4ec3-9f92-b6967fbaa6d9, type: Ppls, state: initializing, event"},{"event":"cmd_output","timestamp":1607098281,"output":": initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124"},{"event":"cmd_output","timestamp":1607098281,"output":"), \n\u001b[0m\u001b[22m\n16:11:21.157 [info] Persisted ppl_sub_init for pipeline with ppl_id: d8aa91c7-b84c-"},{"event":"cmd_output","timestamp":1607098281,"output":"4ec3-9f92-b6967fbaa6d9: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, "},{"event":"cmd_output","timestamp":1607098281,"output":"\"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 122, in_scheduling: false, "},{"event":"cmd_output","timestamp":1607098281,"output":"init_type: \"regular\", inserted_at: ~N[2020-12-04 16:11:21.154748], pipeline_requests: #Ecto.Associat"},{"event":"cmd_output","timestamp":1607098281,"output":"ion.NotLoaded, ppl_id: \"d8aa91c7-b84c-4ec3-9f92-b6967f"},{"event":"cmd_output","timestamp":1607098281,"output":"baa6d9\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: ni"},{"event":"cmd_output","timestamp":1607098281,"output":"l, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:11:21.154761]}\n\u001b[0m\u001b[22m\n16:11:21.166"},{"event":"cmd_output","timestamp":1607098281,"output":" [info] ppl_id: ee12bde3-d79a-4d88-9f41-9633f4ff3d50, type: PplRequests, event: persisted schedule "},{"event":"cmd_output","timestamp":1607098281,"output":"request with request_token: 717e5d49-9468-4319-9c61-3054dd5ef4a3, origin: Elixir.Ppl.PplRequests.Mod"},{"event":"cmd_output","timestamp":1607098281,"output":"el.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:11:21.167 [info] ppl_id: ee12bde3-d7"},{"event":"cmd_output","timestamp":1607098281,"output":"9a-4d88-9f41-9633f4ff3d50, type: PplRequests, event: persisted definition for request with request_t"},{"event":"cmd_output","timestamp":1607098281,"output":"oken: 717e5d49-9468-4319-9c61-3054dd5ef4a3, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries."},{"event":"cmd_output","timestamp":1607098281,"output":"insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:11:21.170 [info] ppl_id: ee12bde3-d79a-4d88-9f41-9633f4ff"},{"event":"cmd_output","timestamp":1607098281,"output":"3d50, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Pp"},{"event":"cmd_output","timestamp":1607098281,"output":"ls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:11:21.174 [info] Persisted ppl_sub_i"},{"event":"cmd_output","timestamp":1607098281,"output":"nit for pipeline with ppl_id: ee12bde3-d79a-4d88-9f41-9633f4ff3d50: %Ppl.PplSubInits.Model.PplSubIni"},{"event":"cmd_output","timestamp":1607098281,"output":"ts{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_descr"},{"event":"cmd_output","timestamp":1607098281,"output":"iption: nil, id: 123, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:11:2"},{"event":"cmd_output","timestamp":1607098281,"output":"1.173142], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"ee12bde3-d79a-4d88-9f41-9633f4ff3d50\", recovery_count: 0, result: nil, result_reason: "},{"event":"cmd_output","timestamp":1607098281,"output":"nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-0"},{"event":"cmd_output","timestamp":1607098281,"output":"4 16:11:21.173152]}\n\u001b[0m\u001b[22m\n16:11:21.178 [info] ppl_id: a727ad7f-9f08-434f-96da-a67df18ea0eb, t"},{"event":"cmd_output","timestamp":1607098281,"output":"ype: PplRequests, event: persisted schedule request with request_token: 91d13c3a-180a-49ee-b939-f9f4"},{"event":"cmd_output","timestamp":1607098281,"output":"de0a7161, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098281,"output":"2m\n16:11:21.180 [info] ppl_id: a727ad7f-9f08-434f-96da-a67df18ea0eb, type: PplRequests, event: per"},{"event":"cmd_output","timestamp":1607098281,"output":"sisted definition for request with request_token: 91d13c3a-180a-49ee-b939-f9f4de0a7161, origin: Elix"},{"event":"cmd_output","timestamp":1607098281,"output":"ir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:11:21.188 [inf"},{"event":"cmd_output","timestamp":1607098281,"output":"o] ppl_id: a727ad7f-9f08-434f-96da-a67df18ea0eb, type: Ppls, state: initializing, event: initializi"},{"event":"cmd_output","timestamp":1607098281,"output":"ng, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098281,"output":"2m\n16:11:21.192 [info] Persisted ppl_sub_init for pipeline with ppl_id: a727ad7f-9f08-434f-96da-a6"},{"event":"cmd_output","timestamp":1607098281,"output":"7df18ea0eb: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_su"},{"event":"cmd_output","timestamp":1607098281,"output":"b_inits\">, compile_task_id: nil, error_description: nil, id: 124, in_scheduling: false, init_type: \""},{"event":"cmd_output","timestamp":1607098281,"output":"regular\", inserted_at: ~N[2020-12-04 16:11:21.191050], pipeline_requests: #Ecto.Association.NotLoade"},{"event":"cmd_output","timestamp":1607098281,"output":"d, ppl_id: \"a727ad7f-9f08-434f-96da-a67df18ea0eb\", rec"},{"event":"cmd_output","timestamp":1607098281,"output":"overy_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate"},{"event":"cmd_output","timestamp":1607098281,"output":"_request_desc: nil, updated_at: ~N[2020-12-04 16:11:21.191060]}\n\u001b[0m\u001b[22m\n16:11:21.196 [info] ppl"},{"event":"cmd_output","timestamp":1607098281,"output":"_id: fff41c6d-21e9-4527-845d-b67107ebe7ed, type: PplRequests, event: persisted schedule request with"},{"event":"cmd_output","timestamp":1607098281,"output":" request_token: 191f251b-56c2-4445-a654-d6362d7a4524, origin: Elixir.Ppl.PplRequests.Model.PplReques"},{"event":"cmd_output","timestamp":1607098281,"output":"tsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:11:21.198 [info] ppl_id: fff41c6d-21e9-4527-845d"},{"event":"cmd_output","timestamp":1607098281,"output":"-b67107ebe7ed, type: PplRequests, event: persisted definition for request with request_token: 191f25"},{"event":"cmd_output","timestamp":1607098281,"output":"1b-56c2-4445-a654-d6362d7a4524, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_defin"},{"event":"cmd_output","timestamp":1607098281,"output":"ition/3(L76), \n\u001b[0m\u001b[22m\n16:11:21.201 [info] ppl_id: fff41c6d-21e9-4527-845d-b67107ebe7ed, type: "},{"event":"cmd_output","timestamp":1607098281,"output":"Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.Ppl"},{"event":"cmd_output","timestamp":1607098281,"output":"sQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:11:21.212 [info] Persisted ppl_sub_init for pipe"},{"event":"cmd_output","timestamp":1607098281,"output":"line with ppl_id: fff41c6d-21e9-4527-845d-b67107ebe7ed: %Ppl.PplSubInits.Model.PplSubInits{__meta__:"},{"event":"cmd_output","timestamp":1607098281,"output":" #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil,"},{"event":"cmd_output","timestamp":1607098281,"output":" id: 125, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:11:21.210803], p"},{"event":"cmd_output","timestamp":1607098281,"output":"ipeline_requests: #Ecto.Association.NotLoaded, ppl_id:"},{"event":"cmd_output","timestamp":1607098281,"output":" \"fff41c6d-21e9-4527-845d-b67107ebe7ed\", recovery_count: 0, result: nil, result_reason: nil, state: "},{"event":"cmd_output","timestamp":1607098281,"output":"\"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:11:21.2"},{"event":"cmd_output","timestamp":1607098281,"output":"10813]}\n\u001b[0m\u001b[22m\n16:11:21.217 [info] ppl_id: 414b2fb8-f809-4b88-9b0e-8c5dd19c0cba, type: PplRequ"},{"event":"cmd_output","timestamp":1607098281,"output":"ests, event: persisted schedule request with request_token: 9da14d8a-decb-49a5-8368-eba94217d6c1, or"},{"event":"cmd_output","timestamp":1607098281,"output":"igin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:11:21"},{"event":"cmd_output","timestamp":1607098281,"output":".219 [info] ppl_id: 414b2fb8-f809-4b88-9b0e-8c5dd19c0cba, type: PplRequests, event: persisted defin"},{"event":"cmd_output","timestamp":1607098281,"output":"ition for request with request_token: 9da14d8a-decb-49a5-8368-eba94217d6c1, origin: Elixir.Ppl.PplRe"},{"event":"cmd_output","timestamp":1607098281,"output":"quests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:11:21.223 [info] ppl_id: "},{"event":"cmd_output","timestamp":1607098281,"output":"414b2fb8-f809-4b88-9b0e-8c5dd19c0cba, type: Ppls, state: initializing, event: initializing, recovery"},{"event":"cmd_output","timestamp":1607098281,"output":"_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:11:21"},{"event":"cmd_output","timestamp":1607098281,"output":".227 [info] Persisted ppl_sub_init for pipeline with ppl_id: 414b2fb8-f809-4b88-9b0e-8c5dd19c0cba: "},{"event":"cmd_output","timestamp":1607098281,"output":"%Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, c"},{"event":"cmd_output","timestamp":1607098281,"output":"ompile_task_id: nil, error_description: nil, id: 126, in_scheduling: false, init_type: \"regular\", in"},{"event":"cmd_output","timestamp":1607098281,"output":"serted_at: ~N[2020-12-04 16:11:21.225720], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"414b2fb8-f809-4b88-9b0e-8c5dd19c0cba\", recovery_count:"},{"event":"cmd_output","timestamp":1607098281,"output":" 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_des"},{"event":"cmd_output","timestamp":1607098281,"output":"c: nil, updated_at: ~N[2020-12-04 16:11:21.225729]}\n\u001b[0m\u001b[22m\n16:11:21.231 [info] ppl_id: 3896791"},{"event":"cmd_output","timestamp":1607098281,"output":"1-160b-4392-b867-b83cb5692c2d, type: PplRequests, event: persisted schedule request with request_tok"},{"event":"cmd_output","timestamp":1607098281,"output":"en: ae71b015-5323-466e-b156-5cb528d18ebf, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.pr"},{"event":"cmd_output","timestamp":1607098281,"output":"ocess_response/2(L55), \n\u001b[0m\u001b[22m\n16:11:21.232 [info] ppl_id: 38967911-160b-4392-b867-b83cb5692c2"},{"event":"cmd_output","timestamp":1607098281,"output":"d, type: PplRequests, event: persisted definition for request with request_token: ae71b015-5323-466e"},{"event":"cmd_output","timestamp":1607098281,"output":"-b156-5cb528d18ebf, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76)"},{"event":"cmd_output","timestamp":1607098281,"output":", \n\u001b[0m\u001b[22m\n16:11:21.235 [info] ppl_id: 38967911-160b-4392-b867-b83cb5692c2d, type: Ppls, state:"},{"event":"cmd_output","timestamp":1607098281,"output":" initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.pro"},{"event":"cmd_output","timestamp":1607098281,"output":"cess_response/2(L124), \n\u001b[0m\u001b[22m\n16:11:21.244 [info] Persisted ppl_sub_init for pipeline with pp"},{"event":"cmd_output","timestamp":1607098281,"output":"l_id: 38967911-160b-4392-b867-b83cb5692c2d: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schem"},{"event":"cmd_output","timestamp":1607098281,"output":"a.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 127, in"},{"event":"cmd_output","timestamp":1607098281,"output":"_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:11:21.242927], pipeline_requ"},{"event":"cmd_output","timestamp":1607098281,"output":"ests: #Ecto.Association.NotLoaded, ppl_id: \"38967911-1"},{"event":"cmd_output","timestamp":1607098281,"output":"60b-4392-b867-b83cb5692c2d\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", t"},{"event":"cmd_output","timestamp":1607098281,"output":"erminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:11:21.242940]}\n\u001b[0"},{"event":"cmd_output","timestamp":1607098281,"output":"m\u001b[22m\n16:11:21.248 [info] ppl_id: 098cc909-7303-414e-a62e-b4ac3abf102a, type: PplRequests, event:"},{"event":"cmd_output","timestamp":1607098281,"output":" persisted schedule request with request_token: d586e149-796b-4ae1-9195-37ca632e2b00, origin: Elixir"},{"event":"cmd_output","timestamp":1607098281,"output":".Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:11:21.250 [info] "},{"event":"cmd_output","timestamp":1607098281,"output":" ppl_id: 098cc909-7303-414e-a62e-b4ac3abf102a, type: PplRequests, event: persisted definition for re"},{"event":"cmd_output","timestamp":1607098281,"output":"quest with request_token: d586e149-796b-4ae1-9195-37ca632e2b00, origin: Elixir.Ppl.PplRequests.Model"},{"event":"cmd_output","timestamp":1607098281,"output":".PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:11:21.253 [info] ppl_id: 098cc909-730"},{"event":"cmd_output","timestamp":1607098281,"output":"3-414e-a62e-b4ac3abf102a, type: Ppls, state: initializing, event: initializing, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098281,"output":"rigin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:11:21.256 [info] "},{"event":"cmd_output","timestamp":1607098281,"output":" Persisted ppl_sub_init for pipeline with ppl_id: 098cc909-7303-414e-a62e-b4ac3abf102a: %Ppl.PplSubI"},{"event":"cmd_output","timestamp":1607098281,"output":"nits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_"},{"event":"cmd_output","timestamp":1607098281,"output":"id: nil, error_description: nil, id: 128, in_scheduling: false, init_type: \"regular\", inserted_at: ~"},{"event":"cmd_output","timestamp":1607098281,"output":"N[2020-12-04 16:11:21.255211], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"098cc909-7303-414e-a62e-b4ac3abf102a\", recovery_count: 0, result: "},{"event":"cmd_output","timestamp":1607098281,"output":"nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, upda"},{"event":"cmd_output","timestamp":1607098281,"output":"ted_at: ~N[2020-12-04 16:11:21.255220]}\n\u001b[0m\u001b[22m\n16:11:21.261 [info] ppl_id: fa7ece35-5a4c-46ad-"},{"event":"cmd_output","timestamp":1607098281,"output":"ab9e-e0947b6f3395, type: PplRequests, event: persisted schedule request with request_token: 6805d06c"},{"event":"cmd_output","timestamp":1607098281,"output":"-0a96-44e4-a3f8-cc334bffc273, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_respon"},{"event":"cmd_output","timestamp":1607098281,"output":"se/2(L55), \n\u001b[0m\u001b[22m\n16:11:21.262 [info] ppl_id: fa7ece35-5a4c-46ad-ab9e-e0947b6f3395, type: Ppl"},{"event":"cmd_output","timestamp":1607098281,"output":"Requests, event: persisted definition for request with request_token: 6805d06c-0a96-44e4-a3f8-cc334b"},{"event":"cmd_output","timestamp":1607098281,"output":"ffc273, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098281,"output":"m\n16:11:21.265 [info] ppl_id: fa7ece35-5a4c-46ad-ab9e-e0947b6f3395, type: Ppls, state: initializin"},{"event":"cmd_output","timestamp":1607098281,"output":"g, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_respons"},{"event":"cmd_output","timestamp":1607098281,"output":"e/2(L124), \n\u001b[0m\u001b[22m\n16:11:21.268 [info] Persisted ppl_sub_init for pipeline with ppl_id: fa7ece"},{"event":"cmd_output","timestamp":1607098281,"output":"35-5a4c-46ad-ab9e-e0947b6f3395: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:"},{"event":"cmd_output","timestamp":1607098281,"output":"loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 129, in_scheduling:"},{"event":"cmd_output","timestamp":1607098281,"output":" false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:11:21.267085], pipeline_requests: #Ecto."},{"event":"cmd_output","timestamp":1607098281,"output":"Association.NotLoaded, ppl_id: \"fa7ece35-5a4c-46ad-ab9"},{"event":"cmd_output","timestamp":1607098281,"output":"e-e0947b6f3395\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_req"},{"event":"cmd_output","timestamp":1607098281,"output":"uest: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:11:21.267095]}\n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098281,"output":"1:21.283 [info] ppl_id: 69fe776b-e59b-44ee-bffc-d28977e90fb0, type: PplRequests, event: persisted s"},{"event":"cmd_output","timestamp":1607098281,"output":"chedule request with request_token: 48351784-3d4b-4adb-aecd-1d63f0c96256, origin: Elixir.Ppl.PplRequ"},{"event":"cmd_output","timestamp":1607098281,"output":"ests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:11:21.285 [info] ppl_id: 69f"},{"event":"cmd_output","timestamp":1607098281,"output":"e776b-e59b-44ee-bffc-d28977e90fb0, type: PplRequests, event: persisted definition for request with r"},{"event":"cmd_output","timestamp":1607098281,"output":"equest_token: 48351784-3d4b-4adb-aecd-1d63f0c96256, origin: Elixir.Ppl.PplRequests.Model.PplRequests"},{"event":"cmd_output","timestamp":1607098281,"output":"Queries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:11:21.288 [info] ppl_id: 69fe776b-e59b-44ee-bffc-"},{"event":"cmd_output","timestamp":1607098281,"output":"d28977e90fb0, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098281,"output":"r.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:11:21.291 [info] Persisted p"},{"event":"cmd_output","timestamp":1607098281,"output":"pl_sub_init for pipeline with ppl_id: 69fe776b-e59b-44ee-bffc-d28977e90fb0: %Ppl.PplSubInits.Model.P"},{"event":"cmd_output","timestamp":1607098281,"output":"plSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, err"},{"event":"cmd_output","timestamp":1607098281,"output":"or_description: nil, id: 130, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04"},{"event":"cmd_output","timestamp":1607098281,"output":" 16:11:21.289926], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"69fe776b-e59b-44ee-bffc-d28977e90fb0\", recovery_count: 0, result: nil, result_"},{"event":"cmd_output","timestamp":1607098281,"output":"reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2"},{"event":"cmd_output","timestamp":1607098281,"output":"020-12-04 16:11:21.289935]}\n\u001b[0m\u001b[22m\n16:11:21.295 [info] ppl_id: 1032fc89-c251-4201-870b-7c979c6"},{"event":"cmd_output","timestamp":1607098281,"output":"a05bf, type: PplRequests, event: persisted schedule request with request_token: d67e10d5-6c73-4e52-b"},{"event":"cmd_output","timestamp":1607098281,"output":"8e6-307d0265c618, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \r"},{"event":"cmd_output","timestamp":1607098281,"output":"\n\u001b[0m\u001b[22m\n16:11:21.297 [info] ppl_id: 1032fc89-c251-4201-870b-7c979c6a05bf, type: PplRequests, ev"},{"event":"cmd_output","timestamp":1607098281,"output":"ent: persisted definition for request with request_token: d67e10d5-6c73-4e52-b8e6-307d0265c618, orig"},{"event":"cmd_output","timestamp":1607098281,"output":"in: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:11:21."},{"event":"cmd_output","timestamp":1607098281,"output":"299 [info] ppl_id: 1032fc89-c251-4201-870b-7c979c6a05bf, type: Ppls, state: initializing, event: in"},{"event":"cmd_output","timestamp":1607098281,"output":"itializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \r"},{"event":"cmd_output","timestamp":1607098281,"output":"\n\u001b[0m\u001b[22m\n16:11:21.304 [info] Persisted ppl_sub_init for pipeline with ppl_id: 1032fc89-c251-4201"},{"event":"cmd_output","timestamp":1607098281,"output":"-870b-7c979c6a05bf: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pip"},{"event":"cmd_output","timestamp":1607098281,"output":"eline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 131, in_scheduling: false, init"},{"event":"cmd_output","timestamp":1607098281,"output":"_type: \"regular\", inserted_at: ~N[2020-12-04 16:11:21.303221], pipeline_requests: #Ecto.Association."},{"event":"cmd_output","timestamp":1607098281,"output":"NotLoaded, ppl_id: \"1032fc89-c251-4201-870b-7c979c6a05"},{"event":"cmd_output","timestamp":1607098281,"output":"bf\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, t"},{"event":"cmd_output","timestamp":1607098281,"output":"erminate_request_desc: nil, updated_at: ~N[2020-12-04 16:11:21.303232]}\n\u001b[0m\u001b[22m\n16:11:21.308 [in"},{"event":"cmd_output","timestamp":1607098281,"output":"fo] ppl_id: 0737d6a8-81b0-4c50-82ae-f288effd5e15, type: PplRequests, event: persisted schedule requ"},{"event":"cmd_output","timestamp":1607098281,"output":"est with request_token: 66b59e5d-e3da-4dca-aca8-fcc3f423c6a2, origin: Elixir.Ppl.PplRequests.Model.P"},{"event":"cmd_output","timestamp":1607098281,"output":"plRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:11:21.310 [info] ppl_id: 0737d6a8-81b0-4"},{"event":"cmd_output","timestamp":1607098281,"output":"c50-82ae-f288effd5e15, type: PplRequests, event: persisted definition for request with request_token"},{"event":"cmd_output","timestamp":1607098281,"output":": 66b59e5d-e3da-4dca-aca8-fcc3f423c6a2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.inse"},{"event":"cmd_output","timestamp":1607098281,"output":"rt_definition/3(L76), \n\u001b[0m\u001b[22m\n16:11:21.312 [info] ppl_id: 0737d6a8-81b0-4c50-82ae-f288effd5e15"},{"event":"cmd_output","timestamp":1607098281,"output":", type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.M"},{"event":"cmd_output","timestamp":1607098281,"output":"odel.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:11:21.317 [info] Persisted ppl_sub_init "},{"event":"cmd_output","timestamp":1607098281,"output":"for pipeline with ppl_id: 0737d6a8-81b0-4c50-82ae-f288effd5e15: %Ppl.PplSubInits.Model.PplSubInits{_"},{"event":"cmd_output","timestamp":1607098281,"output":"_meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_descripti"},{"event":"cmd_output","timestamp":1607098281,"output":"on: nil, id: 132, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:11:21.31"},{"event":"cmd_output","timestamp":1607098281,"output":"5658], pipeline_requests: #Ecto.Association.NotLoaded,"},{"event":"cmd_output","timestamp":1607098281,"output":" ppl_id: \"0737d6a8-81b0-4c50-82ae-f288effd5e15\", recovery_count: 0, result: nil, result_reason: nil,"},{"event":"cmd_output","timestamp":1607098281,"output":" state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16"},{"event":"cmd_output","timestamp":1607098281,"output":":11:21.315668]}\n\u001b[0m\u001b[22m\n16:11:21.322 [info] ppl_id: 22937567-604d-4e40-8762-51cad8d0b13a, type:"},{"event":"cmd_output","timestamp":1607098281,"output":" PplRequests, event: persisted schedule request with request_token: 3c4aa022-91ac-43c1-8fd3-aa2303d5"},{"event":"cmd_output","timestamp":1607098281,"output":"6603, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098281,"output":"16:11:21.324 [info] ppl_id: 22937567-604d-4e40-8762-51cad8d0b13a, type: PplRequests, event: persist"},{"event":"cmd_output","timestamp":1607098281,"output":"ed definition for request with request_token: 3c4aa022-91ac-43c1-8fd3-aa2303d56603, origin: Elixir.P"},{"event":"cmd_output","timestamp":1607098281,"output":"pl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:11:21.327 [info] "},{"event":"cmd_output","timestamp":1607098281,"output":"ppl_id: 22937567-604d-4e40-8762-51cad8d0b13a, type: Ppls, state: initializing, event: initializing, "},{"event":"cmd_output","timestamp":1607098281,"output":"recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098281,"output":"16:11:21.332 [info] Persisted ppl_sub_init for pipeline with ppl_id: 22937567-604d-4e40-8762-51cad8"},{"event":"cmd_output","timestamp":1607098281,"output":"d0b13a: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_in"},{"event":"cmd_output","timestamp":1607098281,"output":"its\">, compile_task_id: nil, error_description: nil, id: 133, in_scheduling: false, init_type: \"regu"},{"event":"cmd_output","timestamp":1607098281,"output":"lar\", inserted_at: ~N[2020-12-04 16:11:21.330771], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"22937567-604d-4e40-8762-51cad8d0b13a\", recover"},{"event":"cmd_output","timestamp":1607098281,"output":"y_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_req"},{"event":"cmd_output","timestamp":1607098281,"output":"uest_desc: nil, updated_at: ~N[2020-12-04 16:11:21.330784]}\n\u001b[0m\u001b[22m\n16:11:21.336 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098281,"output":" 30a17cb3-1a58-414a-982c-7dbbe9af3887, type: PplRequests, event: persisted schedule request with req"},{"event":"cmd_output","timestamp":1607098281,"output":"uest_token: 8ad926a4-d4da-4c83-a49f-1e2ef38f7c7d, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQu"},{"event":"cmd_output","timestamp":1607098281,"output":"eries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:11:21.339 [info] ppl_id: 30a17cb3-1a58-414a-982c-7db"},{"event":"cmd_output","timestamp":1607098281,"output":"be9af3887, type: PplRequests, event: persisted definition for request with request_token: 8ad926a4-d"},{"event":"cmd_output","timestamp":1607098281,"output":"4da-4c83-a49f-1e2ef38f7c7d, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definitio"},{"event":"cmd_output","timestamp":1607098281,"output":"n/3(L76), \n\u001b[0m\u001b[22m\n16:11:21.342 [info] ppl_id: 30a17cb3-1a58-414a-982c-7dbbe9af3887, type: Ppls"},{"event":"cmd_output","timestamp":1607098281,"output":", state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQue"},{"event":"cmd_output","timestamp":1607098281,"output":"ries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:11:21.348 [info] Persisted ppl_sub_init for pipeline"},{"event":"cmd_output","timestamp":1607098281,"output":" with ppl_id: 30a17cb3-1a58-414a-982c-7dbbe9af3887: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ec"},{"event":"cmd_output","timestamp":1607098281,"output":"to.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id:"},{"event":"cmd_output","timestamp":1607098281,"output":" 134, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:11:21.345974], pipel"},{"event":"cmd_output","timestamp":1607098281,"output":"ine_requests: #Ecto.Association.NotLoaded, ppl_id: \"30"},{"event":"cmd_output","timestamp":1607098281,"output":"a17cb3-1a58-414a-982c-7dbbe9af3887\", recovery_count: 0, result: nil, result_reason: nil, state: \"cre"},{"event":"cmd_output","timestamp":1607098281,"output":"ated\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:11:21.34598"},{"event":"cmd_output","timestamp":1607098281,"output":"6]}\n\u001b[0m\u001b[22m\n16:11:21.353 [info] ppl_id: 72e3db4e-ed5c-4ab6-bc61-ad875ad53ccf, type: PplRequests"},{"event":"cmd_output","timestamp":1607098281,"output":", event: persisted schedule request with request_token: bb5abbfb-b8fd-40f2-b856-a33583d3b201, origin"},{"event":"cmd_output","timestamp":1607098281,"output":": Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:11:21.356"},{"event":"cmd_output","timestamp":1607098281,"output":" [info] ppl_id: 72e3db4e-ed5c-4ab6-bc61-ad875ad53ccf, type: PplRequests, event: persisted definitio"},{"event":"cmd_output","timestamp":1607098281,"output":"n for request with request_token: bb5abbfb-b8fd-40f2-b856-a33583d3b201, origin: Elixir.Ppl.PplReques"},{"event":"cmd_output","timestamp":1607098281,"output":"ts.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:11:21.358 [info] ppl_id: 72e3"},{"event":"cmd_output","timestamp":1607098281,"output":"db4e-ed5c-4ab6-bc61-ad875ad53ccf, type: Ppls, state: initializing, event: initializing, recovery_cou"},{"event":"cmd_output","timestamp":1607098281,"output":"nt: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:11:21.362"},{"event":"cmd_output","timestamp":1607098281,"output":" [info] Persisted ppl_sub_init for pipeline with ppl_id: 72e3db4e-ed5c-4ab6-bc61-ad875ad53ccf: %Ppl"},{"event":"cmd_output","timestamp":1607098281,"output":".PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compi"},{"event":"cmd_output","timestamp":1607098281,"output":"le_task_id: nil, error_description: nil, id: 135, in_scheduling: false, init_type: \"regular\", insert"},{"event":"cmd_output","timestamp":1607098281,"output":"ed_at: ~N[2020-12-04 16:11:21.360686], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"72e3db4e-ed5c-4ab6-bc61-ad875ad53ccf\", recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098281,"output":"result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: n"},{"event":"cmd_output","timestamp":1607098281,"output":"il, updated_at: ~N[2020-12-04 16:11:21.360699]}\n\u001b[0m\u001b[22m\n16:11:21.367 [info] ppl_id: 5cc736ff-8e"},{"event":"cmd_output","timestamp":1607098281,"output":"4a-4347-a9dd-8754ca2e003c, type: PplRequests, event: persisted schedule request with request_token: "},{"event":"cmd_output","timestamp":1607098281,"output":"99bc43bd-34cc-4eb8-afd7-68215604c5d8, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.proces"},{"event":"cmd_output","timestamp":1607098281,"output":"s_response/2(L55), \n\u001b[0m\u001b[22m\n16:11:21.369 [info] ppl_id: 5cc736ff-8e4a-4347-a9dd-8754ca2e003c, t"},{"event":"cmd_output","timestamp":1607098281,"output":"ype: PplRequests, event: persisted definition for request with request_token: 99bc43bd-34cc-4eb8-afd"},{"event":"cmd_output","timestamp":1607098281,"output":"7-68215604c5d8, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n"},{"event":"cmd_output","timestamp":1607098281,"output":"\u001b[0m\u001b[22m\n16:11:21.373 [info] ppl_id: 5cc736ff-8e4a-4347-a9dd-8754ca2e003c, type: Ppls, state: ini"},{"event":"cmd_output","timestamp":1607098281,"output":"tializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process"},{"event":"cmd_output","timestamp":1607098281,"output":"_response/2(L124), \n\u001b[0m\u001b[22m\n16:11:21.382 [info] Persisted ppl_sub_init for pipeline with ppl_id"},{"event":"cmd_output","timestamp":1607098281,"output":": 5cc736ff-8e4a-4347-a9dd-8754ca2e003c: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Me"},{"event":"cmd_output","timestamp":1607098281,"output":"tadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 136, in_sch"},{"event":"cmd_output","timestamp":1607098281,"output":"eduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:11:21.376673], pipeline_requests"},{"event":"cmd_output","timestamp":1607098281,"output":": #Ecto.Association.NotLoaded, ppl_id: \"5cc736ff-8e4a-"},{"event":"cmd_output","timestamp":1607098281,"output":"4347-a9dd-8754ca2e003c\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", termi"},{"event":"cmd_output","timestamp":1607098281,"output":"nate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:11:21.376687]}\n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098281,"output":"2m\n16:11:21.385 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingState with name"},{"event":"cmd_output","timestamp":1607098281,"output":" Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up"},{"event":"cmd_output","timestamp":1607098281,"output":"\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"p"},{"event":"cmd_output","timestamp":1607098281,"output":"ending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"initiali"},{"event":"cmd_output","timestamp":1607098281,"output":"zing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, repo:"},{"event":"cmd_output","timestamp":1607098281,"output":" Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :"},{"event":"cmd_output","timestamp":1607098281,"output":"ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:21.386 [info] Perio"},{"event":"cmd_output","timestamp":1607098281,"output":"dic from module Elixir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler.Pending"},{"event":"cmd_output","timestamp":1607098281,"output":"State :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}"},{"event":"cmd_output","timestamp":1607098281,"output":", recurring args: %{allowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_sec: 0, "},{"event":"cmd_output","timestamp":1607098281,"output":"initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publisher_cb: #Function<0.8493005/1 i"},{"event":"cmd_output","timestamp":1607098281,"output":"n Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request,"},{"event":"cmd_output","timestamp":1607098281,"output":" :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervis"},{"event":"cmd_output","timestamp":1607098281,"output":"or: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:11:21.386 [info] Periodic from module Elixir.Ppl.Ppls.STMHan"},{"event":"cmd_output","timestamp":1607098281,"output":"dler.QueuingState with name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, metric_name: "},{"event":"cmd_output","timestamp":1607098281,"output":"{\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{allowed_states: [\""},{"event":"cmd_output","timestamp":1607098281,"output":"queuing\", \"running\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_sta"},{"event":"cmd_output","timestamp":1607098281,"output":"te: \"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.args/0>, re"},{"event":"cmd_output","timestamp":1607098281,"output":"po: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count"},{"event":"cmd_output","timestamp":1607098281,"output":", :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:21.387 [info] Pe"},{"event":"cmd_output","timestamp":1607098281,"output":"riodic from module Elixir.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHandler.Runn"},{"event":"cmd_output","timestamp":1607098281,"output":"ingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState"},{"event":"cmd_output","timestamp":1607098281,"output":"\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initia"},{"event":"cmd_output","timestamp":1607098281,"output":"l_query: Ppl.Ppls.Model.Ppls, observed_state: \"running\", publisher_cb: #Function<0.74670282/1 in Ppl"},{"event":"cmd_output","timestamp":1607098281,"output":".Ppls.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :upd"},{"event":"cmd_output","timestamp":1607098281,"output":"ated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: P"},{"event":"cmd_output","timestamp":1607098281,"output":"plsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:11:21.387 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler."},{"event":"cmd_output","timestamp":1607098281,"output":"StoppingState with name Elixir.Ppl.Ppls.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"P"},{"event":"cmd_output","timestamp":1607098281,"output":"pl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"st"},{"event":"cmd_output","timestamp":1607098281,"output":"opping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"stoppin"},{"event":"cmd_output","timestamp":1607098281,"output":"g\", publisher_cb: #Function<0.71803493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, repo: Ppl.Ect"},{"event":"cmd_output","timestamp":1607098281,"output":"oRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id],"},{"event":"cmd_output","timestamp":1607098281,"output":" schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:21.387 [info] Periodic from"},{"event":"cmd_output","timestamp":1607098281,"output":" module Elixir.Ppl.PplSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHandler.C"},{"event":"cmd_output","timestamp":1607098281,"output":"reatedState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-Cr"},{"event":"cmd_output","timestamp":1607098281,"output":"eatedState\"]}, recurring args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_"},{"event":"cmd_output","timestamp":1607098281,"output":"query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip, repo: Ppl."},{"event":"cmd_output","timestamp":1607098281,"output":"EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_i"},{"event":"cmd_output","timestamp":1607098281,"output":"d], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:21.388 [inf"},{"event":"cmd_output","timestamp":1607098281,"output":"o] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl.PplSub"},{"event":"cmd_output","timestamp":1607098281,"output":"Inits.STMHandler.FetchingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSub"},{"event":"cmd_output","timestamp":1607098281,"output":"Inits-STMHandler-FetchingState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\","},{"event":"cmd_output","timestamp":1607098281,"output":" \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"f"},{"event":"cmd_output","timestamp":1607098281,"output":"etching\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at,"},{"event":"cmd_output","timestamp":1607098281,"output":" :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervi"},{"event":"cmd_output","timestamp":1607098281,"output":"sor: :skip}\n\u001b[0m\u001b[22m\n16:11:21.389 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler."},{"event":"cmd_output","timestamp":1607098281,"output":"CompilationState with name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 100 ms, met"},{"event":"cmd_output","timestamp":1607098281,"output":"ric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurring args:"},{"event":"cmd_output","timestamp":1607098281,"output":" %{allowed_states: [\"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2, initia"},{"event":"cmd_output","timestamp":1607098281,"output":"l_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"compilation\", publisher_cb: :skip, repo"},{"event":"cmd_output","timestamp":1607098281,"output":": Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, "},{"event":"cmd_output","timestamp":1607098281,"output":":ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:21.38"},{"event":"cmd_output","timestamp":1607098281,"output":"9 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with name Elixir.P"},{"event":"cmd_output","timestamp":1607098281,"output":"pl.PplSubInits.STMHandler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", "},{"event":"cmd_output","timestamp":1607098281,"output":"[\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurring args: %{allowed_states: [\"done\"], coolin"},{"event":"cmd_output","timestamp":1607098281,"output":"g_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_init\", pub"},{"event":"cmd_output","timestamp":1607098281,"output":"lisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :res"},{"event":"cmd_output","timestamp":1607098281,"output":"ult, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n"},{"event":"cmd_output","timestamp":1607098281,"output":"\u001b[0m\u001b[22m\n16:11:21.389 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.InitializingSta"},{"event":"cmd_output","timestamp":1607098281,"output":"te with name Elixir.Ppl.PplBlocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl"},{"event":"cmd_output","timestamp":1607098281,"output":".beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_state"},{"event":"cmd_output","timestamp":1607098281,"output":"s: [\"initializing\", \"waiting\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplB"},{"event":"cmd_output","timestamp":1607098281,"output":"locks, observed_state: \"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :te"},{"event":"cmd_output","timestamp":1607098281,"output":"rminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl."},{"event":"cmd_output","timestamp":1607098281,"output":"PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:21.389 [info] Periodic from mo"},{"event":"cmd_output","timestamp":1607098281,"output":"dule Elixir.Ppl.PplBlocks.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler.WaitingS"},{"event":"cmd_output","timestamp":1607098281,"output":"tate :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingSta"},{"event":"cmd_output","timestamp":1607098281,"output":"te\"]}, recurring args: %{allowed_states: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 0, initia"},{"event":"cmd_output","timestamp":1607098281,"output":"l_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"waiting\", publisher_cb: #Function<0.8975022"},{"event":"cmd_output","timestamp":1607098281,"output":"/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate"},{"event":"cmd_output","timestamp":1607098281,"output":"_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBloc"},{"event":"cmd_output","timestamp":1607098281,"output":"ks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:21.390 [info] Periodic from module El"},{"event":"cmd_output","timestamp":1607098281,"output":"ixir.Ppl.PplBlocks.STMHandler.RunningState with name Elixir.Ppl.PplBlocks.STMHandler.RunningState ::"},{"event":"cmd_output","timestamp":1607098281,"output":" period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, "},{"event":"cmd_output","timestamp":1607098281,"output":"recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_que"},{"event":"cmd_output","timestamp":1607098281,"output":"ry: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"running\", publisher_cb: #Function<0.28166834/1 i"},{"event":"cmd_output","timestamp":1607098281,"output":"n Ppl.PplBlocks.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_req"},{"event":"cmd_output","timestamp":1607098281,"output":"uest, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl."},{"event":"cmd_output","timestamp":1607098281,"output":"PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:21.391 [info] Periodic from mo"},{"event":"cmd_output","timestamp":1607098281,"output":"dule Elixir.Ppl.PplBlocks.STMHandler.StoppingState with name Elixir.Ppl.PplBlocks.STMHandler.Stoppin"},{"event":"cmd_output","timestamp":1607098281,"output":"gState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-Stopping"},{"event":"cmd_output","timestamp":1607098281,"output":"State\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_quer"},{"event":"cmd_output","timestamp":1607098281,"output":"y: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"stopping\", publisher_cb: #Function<0.104215991/1 "},{"event":"cmd_output","timestamp":1607098281,"output":"in Ppl.PplBlocks.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_r"},{"event":"cmd_output","timestamp":1607098281,"output":"equest, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Pp"},{"event":"cmd_output","timestamp":1607098281,"output":"l.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:21.391 [info] Periodic from "},{"event":"cmd_output","timestamp":1607098281,"output":"module Elixir.Block.Blocks.STMHandler.InitializingState with name Elixir.Block.Blocks.STMHandler.Ini"},{"event":"cmd_output","timestamp":1607098281,"output":"tializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-In"},{"event":"cmd_output","timestamp":1607098281,"output":"itializingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, init"},{"event":"cmd_output","timestamp":1607098281,"output":"ial_query: Block.Blocks.Model.Blocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Blo"},{"event":"cmd_output","timestamp":1607098281,"output":"ck.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], "},{"event":"cmd_output","timestamp":1607098281,"output":"schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:21.391 [info] Periodic"},{"event":"cmd_output","timestamp":1607098281,"output":" from module Elixir.Block.Blocks.STMHandler.RunningState with name Elixir.Block.Blocks.STMHandler.Ru"},{"event":"cmd_output","timestamp":1607098281,"output":"nningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-Runnin"},{"event":"cmd_output","timestamp":1607098281,"output":"gState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, "},{"event":"cmd_output","timestamp":1607098281,"output":"initial_query: Block.Blocks.Model.Blocks, observed_state: \"running\", publisher_cb: :skip, repo: Bloc"},{"event":"cmd_output","timestamp":1607098281,"output":"k.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], s"},{"event":"cmd_output","timestamp":1607098281,"output":"chema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:21.391 [info] Periodic "},{"event":"cmd_output","timestamp":1607098281,"output":"from module Elixir.Block.Blocks.STMHandler.StoppingState with name Elixir.Block.Blocks.STMHandler.St"},{"event":"cmd_output","timestamp":1607098281,"output":"oppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-Stopp"},{"event":"cmd_output","timestamp":1607098281,"output":"ingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_q"},{"event":"cmd_output","timestamp":1607098281,"output":"uery: Block.Blocks.Model.Blocks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRe"},{"event":"cmd_output","timestamp":1607098281,"output":"po, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: B"},{"event":"cmd_output","timestamp":1607098281,"output":"lock.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:21.391 [info] Periodic from mod"},{"event":"cmd_output","timestamp":1607098281,"output":"ule Elixir.Block.Tasks.STMHandler.PendingState with name Elixir.Block.Tasks.STMHandler.PendingState "},{"event":"cmd_output","timestamp":1607098281,"output":":: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingState\"]}, r"},{"event":"cmd_output","timestamp":1607098281,"output":"ecurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Task"},{"event":"cmd_output","timestamp":1607098281,"output":"s.Model.Tasks, observed_state: \"pending\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id"},{"event":"cmd_output","timestamp":1607098281,"output":", :terminate_request, :updated_at, :state, :recovery_count, :block_id, :build_request_id], schema: B"},{"event":"cmd_output","timestamp":1607098281,"output":"lock.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:21.392 [info] Periodic from modul"},{"event":"cmd_output","timestamp":1607098281,"output":"e Elixir.Block.Tasks.STMHandler.RunningState with name Elixir.Block.Tasks.STMHandler.RunningState ::"},{"event":"cmd_output","timestamp":1607098281,"output":" period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningState\"]}, rec"},{"event":"cmd_output","timestamp":1607098281,"output":"urring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query:"},{"event":"cmd_output","timestamp":1607098281,"output":" Block.Tasks.Model.Tasks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, retu"},{"event":"cmd_output","timestamp":1607098281,"output":"rning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tas"},{"event":"cmd_output","timestamp":1607098281,"output":"ks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:21.392 [info] Periodic from module Elixir"},{"event":"cmd_output","timestamp":1607098281,"output":".Block.Tasks.STMHandler.StoppingState with name Elixir.Block.Tasks.STMHandler.StoppingState :: perio"},{"event":"cmd_output","timestamp":1607098281,"output":"d: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]}, recurrin"},{"event":"cmd_output","timestamp":1607098281,"output":"g args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Mod"},{"event":"cmd_output","timestamp":1607098281,"output":"el.Tasks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :t"},{"event":"cmd_output","timestamp":1607098281,"output":"erminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks,"},{"event":"cmd_output","timestamp":1607098281,"output":" task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:21.506 [info] ppl_id: d8aa91c7-b84c-4ec3-9f92-b6967fbaa6"},{"event":"cmd_output","timestamp":1607098281,"output":"d9, type: PplRequests, event: persisted source_args for pipeline: d8aa91c7-b84c-4ec3-9f92-b6967fbaa6"},{"event":"cmd_output","timestamp":1607098281,"output":"d9, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:11"},{"event":"cmd_output","timestamp":1607098281,"output":":21.509 [info] ppl_id: d8aa91c7-b84c-4ec3-9f92-b6967fbaa6d9, type: PplSubInits, state: fetching, ev"},{"event":"cmd_output","timestamp":1607098281,"output":"ent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b"},{"event":"cmd_output","timestamp":1607098281,"output":"[0m\u001b[22m\n16:11:21.538 [info] ppl_id: d8aa91c7-b84c-4ec3-9f92-b6967fbaa6d9, type: PplSubInits, stat"},{"event":"cmd_output","timestamp":1607098281,"output":"e: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state"},{"event":"cmd_output","timestamp":1607098281,"output":"_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:21.565 [info] ppl_id: d8aa91c7-b84c-4ec3-9f92-b6967fbaa6d9, type"},{"event":"cmd_output","timestamp":1607098281,"output":": PplRequests, event: persisted definition for request with request_token: 13e19ed5-12c9-428a-ad99-9"},{"event":"cmd_output","timestamp":1607098281,"output":"7bf52b52530, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098281,"output":"m\u001b[22m\n16:11:21.570 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema."},{"event":"cmd_output","timestamp":1607098281,"output":"Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:11:21.568114], name: \"master-.semaphore/s"},{"event":"cmd_output","timestamp":1607098281,"output":"emaphore.yml\", organization_id: \"abc\", project_id: \"123\", queue_id: \"7e560a91-f689-4143-8625-a5dc26c"},{"event":"cmd_output","timestamp":1607098281,"output":"1f700\", scope: \"project\", updated_at: ~N[2020-12-04 16:11:21.568124], user_generated: false}}\n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098281,"output":"[22m\n16:11:21.574 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitStat"},{"event":"cmd_output","timestamp":1607098281,"output":"e.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:11:21.574 [info] ppl_id: d8aa91c7-b84c-4ec3-9f92-b6967fbaa6d9, t"},{"event":"cmd_output","timestamp":1607098281,"output":"ype: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098281,"output":"ir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:11:21.577 [info] pp"},{"event":"cmd_output","timestamp":1607098281,"output":"l_id: d8aa91c7-b84c-4ec3-9f92-b6967fbaa6d9, type: PplSubInits, state: done, result: passed, event: e"},{"event":"cmd_output","timestamp":1607098281,"output":"xit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098281,"output":"2m\n16:11:21.585 [info] ppl_id: d8aa91c7-b84c-4ec3-9f92-b6967fbaa6d9, type: Ppls, state: pending, e"},{"event":"cmd_output","timestamp":1607098281,"output":"vent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n"},{"event":"cmd_output","timestamp":1607098281,"output":"\u001b[0m\u001b[22m\n16:11:21.585 [info] ppl_id: d8aa91c7-b84c-4ec3-9f92-b6967fbaa6d9, type: PplBlocks, block"},{"event":"cmd_output","timestamp":1607098281,"output":"_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl"},{"event":"cmd_output","timestamp":1607098281,"output":".log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:21.596 [info] ppl_id: d8aa91c7-b84c-4ec3-9f92-b6967fba"},{"event":"cmd_output","timestamp":1607098281,"output":"a6d9, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.S"},{"event":"cmd_output","timestamp":1607098281,"output":"TM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:21.610 [info] ppl_id: d8aa91c7-b84c-4ec3-9f92-b"},{"event":"cmd_output","timestamp":1607098281,"output":"6967fbaa6d9, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098281,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:21.618 [info] ppl_id: ee12bde3-d79a-4d88"},{"event":"cmd_output","timestamp":1607098281,"output":"-9f41-9633f4ff3d50, type: PplRequests, event: persisted source_args for pipeline: ee12bde3-d79a-4d88"},{"event":"cmd_output","timestamp":1607098281,"output":"-9f41-9633f4ff3d50, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n"},{"event":"cmd_output","timestamp":1607098281,"output":"\u001b[0m\u001b[22m\n16:11:21.619 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"d8a"},{"event":"cmd_output","timestamp":1607098281,"output":"a91c7-b84c-4ec3-9f92-b6967fbaa6d9\"\n\u001b[0m\u001b[22m\n16:11:21.622 [info] ppl_id: ee12bde3-d79a-4d88-9f41-"},{"event":"cmd_output","timestamp":1607098281,"output":"9633f4ff3d50, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098281,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:21.626 [info] block_id: a084806"},{"event":"cmd_output","timestamp":1607098281,"output":"f-d524-459e-a5be-6103fe5ceb69, type: BlockRequests, event: persisted block run request from ppl d8aa"},{"event":"cmd_output","timestamp":1607098281,"output":"91c7-b84c-4ec3-9f92-b6967fbaa6d9 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequests"},{"event":"cmd_output","timestamp":1607098281,"output":"Queries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:11:21.630 [info] block_id: a084806f-d524-459e-a5be"},{"event":"cmd_output","timestamp":1607098281,"output":"-6103fe5ceb69, type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098281,"output":"ixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:11:21.637 [info] Block 0 of pi"},{"event":"cmd_output","timestamp":1607098281,"output":"peline with id: d8aa91c7-b84c-4ec3-9f92-b6967fbaa6d9 scheduled in block service with id: : \"a084806f"},{"event":"cmd_output","timestamp":1607098281,"output":"-d524-459e-a5be-6103fe5ceb69\"\n\u001b[0m\u001b[22m\n16:11:21.639 [info] block_id: a084806f-d524-459e-a5be-610"},{"event":"cmd_output","timestamp":1607098281,"output":"3fe5ceb69, type: BlockRequests, event: persisted build and sub_ppl details for block_request: a08480"},{"event":"cmd_output","timestamp":1607098281,"output":"6f-d524-459e-a5be-6103fe5ceb69, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert"},{"event":"cmd_output","timestamp":1607098281,"output":"_build/2(L41), \n\u001b[0m\u001b[22m\n16:11:21.642 [info] block_id: a084806f-d524-459e-a5be-6103fe5ceb69, typ"},{"event":"cmd_output","timestamp":1607098281,"output":"e: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler."},{"event":"cmd_output","timestamp":1607098281,"output":"InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:11:21.647 [info] ppl_id: d8aa91c7-b84c-4ec3-9f92"},{"event":"cmd_output","timestamp":1607098281,"output":"-b6967fbaa6d9, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_cou"},{"event":"cmd_output","timestamp":1607098281,"output":"nt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:21.647 [info] blo"},{"event":"cmd_output","timestamp":1607098281,"output":"ck_id: a084806f-d524-459e-a5be-6103fe5ceb69, type: Blocks, state: running, event: exit_scheduling, r"},{"event":"cmd_output","timestamp":1607098281,"output":"ecovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:21.659 "},{"event":"cmd_output","timestamp":1607098281,"output":"[info] ppl_id: ee12bde3-d79a-4d88-9f41-9633f4ff3d50, type: PplSubInits, state: regular_init, event:"},{"event":"cmd_output","timestamp":1607098281,"output":" exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098281,"output":"[22m\n16:11:21.665 [info] block_id: a084806f-d524-459e-a5be-6103fe5ceb69, type: Tasks, state: runni"},{"event":"cmd_output","timestamp":1607098281,"output":"ng, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90"},{"event":"cmd_output","timestamp":1607098281,"output":"), \n\u001b[0m\u001b[22m\n16:11:21.684 [info] ppl_id: ee12bde3-d79a-4d88-9f41-9633f4ff3d50, type: PplRequests"},{"event":"cmd_output","timestamp":1607098281,"output":", event: persisted definition for request with request_token: 717e5d49-9468-4319-9c61-3054dd5ef4a3, "},{"event":"cmd_output","timestamp":1607098281,"output":"origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:11"},{"event":"cmd_output","timestamp":1607098281,"output":":21.689 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1"},{"event":"cmd_output","timestamp":1607098281,"output":"(L105), \n\u001b[0m\u001b[22m\n16:11:21.689 [info] ppl_id: ee12bde3-d79a-4d88-9f41-9633f4ff3d50, type: PplBlo"},{"event":"cmd_output","timestamp":1607098281,"output":"cks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplS"},{"event":"cmd_output","timestamp":1607098281,"output":"ubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:11:21.692 [info] ppl_id: ee12b"},{"event":"cmd_output","timestamp":1607098281,"output":"de3-d79a-4d88-9f41-9633f4ff3d50, type: PplSubInits, state: done, result: passed, event: exit_schedul"},{"event":"cmd_output","timestamp":1607098281,"output":"ing, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:2"},{"event":"cmd_output","timestamp":1607098281,"output":"1.709 [info] ppl_id: ee12bde3-d79a-4d88-9f41-9633f4ff3d50, type: PplBlocks, block_index: 0, state: "},{"event":"cmd_output","timestamp":1607098281,"output":"waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/"},{"event":"cmd_output","timestamp":1607098281,"output":"1(L90), \n\u001b[0m\u001b[22m\n16:11:21.710 [info] ppl_id: ee12bde3-d79a-4d88-9f41-9633f4ff3d50, type: Ppls, "},{"event":"cmd_output","timestamp":1607098281,"output":"state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_"},{"event":"cmd_output","timestamp":1607098281,"output":"change/1(L90), \n\u001b[0m\u001b[22m\n16:11:21.727 [info] ppl_id: ee12bde3-d79a-4d88-9f41-9633f4ff3d50, type:"},{"event":"cmd_output","timestamp":1607098281,"output":" Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098281,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:21.733 [info] block_id: a084806f-d524-459e-a5be-6103fe5ceb"},{"event":"cmd_output","timestamp":1607098281,"output":"69, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.I"},{"event":"cmd_output","timestamp":1607098281,"output":"mpl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:21.740 [info] ppl_id: a727ad7f-9f08-434f-96da-a67df"},{"event":"cmd_output","timestamp":1607098281,"output":"18ea0eb, type: PplRequests, event: persisted source_args for pipeline: a727ad7f-9f08-434f-96da-a67df"},{"event":"cmd_output","timestamp":1607098281,"output":"18ea0eb, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098281,"output":"16:11:21.741 [info] block_id: a084806f-d524-459e-a5be-6103fe5ceb69, type: Blocks, state: done, even"},{"event":"cmd_output","timestamp":1607098281,"output":"t: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098281,"output":"m\u001b[22m\n16:11:21.743 [info] ppl_id: a727ad7f-9f08-434f-96da-a67df18ea0eb, type: PplSubInits, state:"},{"event":"cmd_output","timestamp":1607098281,"output":" fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chang"},{"event":"cmd_output","timestamp":1607098281,"output":"e/1(L90), \n\u001b[0m\u001b[22m\n16:11:21.751 [info] ppl_id: d8aa91c7-b84c-4ec3-9f92-b6967fbaa6d9, block_id: "},{"event":"cmd_output","timestamp":1607098281,"output":"a084806f-d524-459e-a5be-6103fe5ceb69, type: PplBlocks, block_index: 0, state: done, result: passed, "},{"event":"cmd_output","timestamp":1607098281,"output":"event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \r"},{"event":"cmd_output","timestamp":1607098281,"output":"\n\u001b[0m\u001b[22m\n16:11:21.768 [info] ppl_id: d8aa91c7-b84c-4ec3-9f92-b6967fbaa6d9, type: Ppls, state: do"},{"event":"cmd_output","timestamp":1607098281,"output":"ne, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_st"},{"event":"cmd_output","timestamp":1607098281,"output":"ate_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:21.775 [info] ppl_id: a727ad7f-9f08-434f-96da-a67df18ea0eb, t"},{"event":"cmd_output","timestamp":1607098281,"output":"ype: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loo"},{"event":"cmd_output","timestamp":1607098281,"output":"per.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:21.798 [info] ppl_id: a727ad7f-9f08-434f-9"},{"event":"cmd_output","timestamp":1607098281,"output":"6da-a67df18ea0eb, type: PplRequests, event: persisted definition for request with request_token: 91d"},{"event":"cmd_output","timestamp":1607098281,"output":"13c3a-180a-49ee-b939-f9f4de0a7161, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_de"},{"event":"cmd_output","timestamp":1607098281,"output":"finition/3(L76), \n\u001b[0m\u001b[22m\n16:11:21.815 [info] event: created, origin: Elixir.Ppl.PplSubInits.ST"},{"event":"cmd_output","timestamp":1607098281,"output":"MHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:11:21.815 [info] ppl_id: a727ad7f-9f08-4"},{"event":"cmd_output","timestamp":1607098281,"output":"34f-96da-a67df18ea0eb, type: PplBlocks, block_index: 0, state: initializing, event: created, recover"},{"event":"cmd_output","timestamp":1607098281,"output":"y_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098281,"output":"\n16:11:21.819 [info] ppl_id: a727ad7f-9f08-434f-96da-a67df18ea0eb, type: PplSubInits, state: done, "},{"event":"cmd_output","timestamp":1607098281,"output":"result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_"},{"event":"cmd_output","timestamp":1607098281,"output":"change/1(L90), \n\u001b[0m\u001b[22m\n16:11:21.826 [info] ppl_id: ee12bde3-d79a-4d88-9f41-9633f4ff3d50, type:"},{"event":"cmd_output","timestamp":1607098281,"output":" Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098281,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:21.831 [info] ppl_id: a727ad7f-9f08-434f-96da-a67df18ea0eb"},{"event":"cmd_output","timestamp":1607098281,"output":", type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098281,"output":": Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:21.832 [info] PplBlocks Waitin"},{"event":"cmd_output","timestamp":1607098281,"output":"gState STM is scheduling block 0 from pipeline: \"ee12bde3-d79a-4d88-9f41-9633f4ff3d50\"\n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098281,"output":"6:11:21.835 [info] ppl_id: a727ad7f-9f08-434f-96da-a67df18ea0eb, type: Ppls, state: pending, event:"},{"event":"cmd_output","timestamp":1607098281,"output":" exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098281,"output":"[22m\n16:11:21.841 [info] block_id: b057ad7e-b65e-4d16-acf5-5aa00d46f4ed, type: BlockRequests, even"},{"event":"cmd_output","timestamp":1607098281,"output":"t: persisted block run request from ppl ee12bde3-d79a-4d88-9f41-9633f4ff3d50 for block 0, origin: El"},{"event":"cmd_output","timestamp":1607098281,"output":"ixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:11:21.8"},{"event":"cmd_output","timestamp":1607098281,"output":"46 [info] block_id: b057ad7e-b65e-4d16-acf5-5aa00d46f4ed, type: Blocks, state: initializing, event:"},{"event":"cmd_output","timestamp":1607098281,"output":" initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b"},{"event":"cmd_output","timestamp":1607098281,"output":"[0m\u001b[22m\n16:11:21.850 [info] Block 0 of pipeline with id: ee12bde3-d79a-4d88-9f41-9633f4ff3d50 sch"},{"event":"cmd_output","timestamp":1607098281,"output":"eduled in block service with id: : \"b057ad7e-b65e-4d16-acf5-5aa00d46f4ed\"\n\u001b[0m\u001b[22m\n16:11:21.854 ["},{"event":"cmd_output","timestamp":1607098281,"output":"info] ppl_id: a727ad7f-9f08-434f-96da-a67df18ea0eb, type: Ppls, state: queuing, event: exit_schedul"},{"event":"cmd_output","timestamp":1607098281,"output":"ing, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:2"},{"event":"cmd_output","timestamp":1607098281,"output":"1.854 [info] ppl_id: ee12bde3-d79a-4d88-9f41-9633f4ff3d50, type: PplBlocks, block_index: 0, state: "},{"event":"cmd_output","timestamp":1607098281,"output":"running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/"},{"event":"cmd_output","timestamp":1607098281,"output":"1(L90), \n\u001b[0m\u001b[22m\n16:11:21.857 [info] block_id: b057ad7e-b65e-4d16-acf5-5aa00d46f4ed, type: Bloc"},{"event":"cmd_output","timestamp":1607098281,"output":"kRequests, event: persisted build and sub_ppl details for block_request: b057ad7e-b65e-4d16-acf5-5aa"},{"event":"cmd_output","timestamp":1607098281,"output":"00d46f4ed, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098281,"output":"\u001b[22m\n16:11:21.860 [info] ppl_id: fff41c6d-21e9-4527-845d-b67107ebe7ed, type: PplRequests, event: "},{"event":"cmd_output","timestamp":1607098281,"output":"persisted source_args for pipeline: fff41c6d-21e9-4527-845d-b67107ebe7ed, origin: Elixir.Ppl.PplRequ"},{"event":"cmd_output","timestamp":1607098281,"output":"ests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:11:21.863 [info] block_id: b057"},{"event":"cmd_output","timestamp":1607098281,"output":"ad7e-b65e-4d16-acf5-5aa00d46f4ed, type: Tasks, state: pending, event: created, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098281,"output":"igin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:11:21.864 [i"},{"event":"cmd_output","timestamp":1607098281,"output":"nfo] ppl_id: fff41c6d-21e9-4527-845d-b67107ebe7ed, type: PplSubInits, state: fetching, event: exit_"},{"event":"cmd_output","timestamp":1607098281,"output":"scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098281,"output":"16:11:21.865 [info] block_id: b057ad7e-b65e-4d16-acf5-5aa00d46f4ed, type: Blocks, state: running, e"},{"event":"cmd_output","timestamp":1607098281,"output":"vent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n"},{"event":"cmd_output","timestamp":1607098281,"output":"\u001b[0m\u001b[22m\n16:11:21.883 [info] block_id: b057ad7e-b65e-4d16-acf5-5aa00d46f4ed, type: Tasks, state: "},{"event":"cmd_output","timestamp":1607098281,"output":"running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/"},{"event":"cmd_output","timestamp":1607098281,"output":"1(L90), \n\u001b[0m\u001b[22m\n16:11:21.893 [info] ppl_id: fff41c6d-21e9-4527-845d-b67107ebe7ed, type: PplSub"},{"event":"cmd_output","timestamp":1607098281,"output":"Inits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Imp"},{"event":"cmd_output","timestamp":1607098281,"output":"l.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:21.913 [info] ppl_id: fff41c6d-21e9-4527-845d-b67107e"},{"event":"cmd_output","timestamp":1607098281,"output":"be7ed, type: PplRequests, event: persisted definition for request with request_token: 191f251b-56c2-"},{"event":"cmd_output","timestamp":1607098281,"output":"4445-a654-d6362d7a4524, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3("},{"event":"cmd_output","timestamp":1607098281,"output":"L76), \n\u001b[0m\u001b[22m\n16:11:21.920 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.Re"},{"event":"cmd_output","timestamp":1607098281,"output":"gularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:11:21.920 [info] ppl_id: fff41c6d-21e9-4527-845d-b6"},{"event":"cmd_output","timestamp":1607098281,"output":"7107ebe7ed, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098281,"output":" origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:11:21.9"},{"event":"cmd_output","timestamp":1607098281,"output":"22 [info] ppl_id: fff41c6d-21e9-4527-845d-b67107ebe7ed, type: PplSubInits, state: done, result: pas"},{"event":"cmd_output","timestamp":1607098281,"output":"sed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L9"},{"event":"cmd_output","timestamp":1607098281,"output":"0), \n\u001b[0m\u001b[22m\n16:11:21.936 [info] ppl_id: fff41c6d-21e9-4527-845d-b67107ebe7ed, type: PplBlocks,"},{"event":"cmd_output","timestamp":1607098281,"output":" block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.ST"},{"event":"cmd_output","timestamp":1607098281,"output":"M.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:21.938 [info] ppl_id: fff41c6d-21e9-4527-845d-b6"},{"event":"cmd_output","timestamp":1607098281,"output":"7107ebe7ed, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Lo"},{"event":"cmd_output","timestamp":1607098281,"output":"oper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:21.949 [info] block_id: b057ad7e-b65e-4d1"},{"event":"cmd_output","timestamp":1607098281,"output":"6-acf5-5aa00d46f4ed, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098281,"output":"ixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:21.952 [info] ppl_id: fff41c6d-21e"},{"event":"cmd_output","timestamp":1607098281,"output":"9-4527-845d-b67107ebe7ed, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098281,"output":"gin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:21.958 [info] block_id: b05"},{"event":"cmd_output","timestamp":1607098281,"output":"7ad7e-b65e-4d16-acf5-5aa00d46f4ed, type: Blocks, state: done, event: exit_scheduling, recovery_count"},{"event":"cmd_output","timestamp":1607098281,"output":": 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:21.968 [info] ppl_i"},{"event":"cmd_output","timestamp":1607098281,"output":"d: ee12bde3-d79a-4d88-9f41-9633f4ff3d50, block_id: b057ad7e-b65e-4d16-acf5-5aa00d46f4ed, type: PplBl"},{"event":"cmd_output","timestamp":1607098281,"output":"ocks, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098281,"output":": Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:21.977 [info] ppl_id: 414b2fb8"},{"event":"cmd_output","timestamp":1607098281,"output":"-f809-4b88-9b0e-8c5dd19c0cba, type: PplRequests, event: persisted source_args for pipeline: 414b2fb8"},{"event":"cmd_output","timestamp":1607098281,"output":"-f809-4b88-9b0e-8c5dd19c0cba, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/"},{"event":"cmd_output","timestamp":1607098281,"output":"2(L89), \n\u001b[0m\u001b[22m\n16:11:21.982 [info] ppl_id: 414b2fb8-f809-4b88-9b0e-8c5dd19c0cba, type: PplSub"},{"event":"cmd_output","timestamp":1607098281,"output":"Inits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.lo"},{"event":"cmd_output","timestamp":1607098281,"output":"g_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:21.989 [info] ppl_id: ee12bde3-d79a-4d88-9f41-9633f4ff3d5"},{"event":"cmd_output","timestamp":1607098281,"output":"0, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098282,"output":"r.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.005 [info] ppl_id: 414b2fb8-f809-4"},{"event":"cmd_output","timestamp":1607098282,"output":"b88-9b0e-8c5dd19c0cba, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_coun"},{"event":"cmd_output","timestamp":1607098282,"output":"t: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.038 [info] ppl_"},{"event":"cmd_output","timestamp":1607098282,"output":"id: 414b2fb8-f809-4b88-9b0e-8c5dd19c0cba, type: PplRequests, event: persisted definition for request"},{"event":"cmd_output","timestamp":1607098282,"output":" with request_token: 9da14d8a-decb-49a5-8368-eba94217d6c1, origin: Elixir.Ppl.PplRequests.Model.PplR"},{"event":"cmd_output","timestamp":1607098282,"output":"equestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:11:22.048 [info] ppl_id: a727ad7f-9f08-434"},{"event":"cmd_output","timestamp":1607098282,"output":"f-96da-a67df18ea0eb, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098282,"output":"Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.051 [info] event: created, or"},{"event":"cmd_output","timestamp":1607098282,"output":"igin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:11:22.051 "},{"event":"cmd_output","timestamp":1607098282,"output":"[info] ppl_id: 414b2fb8-f809-4b88-9b0e-8c5dd19c0cba, type: PplBlocks, block_index: 0, state: initia"},{"event":"cmd_output","timestamp":1607098282,"output":"lizing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitStat"},{"event":"cmd_output","timestamp":1607098282,"output":"e.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:11:22.055 [info] PplBlocks WaitingState STM is scheduling block "},{"event":"cmd_output","timestamp":1607098282,"output":"0 from pipeline: \"a727ad7f-9f08-434f-96da-a67df18ea0eb\"\n\u001b[0m\u001b[22m\n16:11:22.057 [info] ppl_id: 414"},{"event":"cmd_output","timestamp":1607098282,"output":"b2fb8-f809-4b88-9b0e-8c5dd19c0cba, type: PplSubInits, state: done, result: passed, event: exit_sched"},{"event":"cmd_output","timestamp":1607098282,"output":"uling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11"},{"event":"cmd_output","timestamp":1607098282,"output":":22.064 [info] block_id: a972a5e1-5ede-40e4-b055-62083bcfd435, type: BlockRequests, event: persiste"},{"event":"cmd_output","timestamp":1607098282,"output":"d block run request from ppl a727ad7f-9f08-434f-96da-a67df18ea0eb for block 0, origin: Elixir.Block."},{"event":"cmd_output","timestamp":1607098282,"output":"BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:11:22.067 [info] "},{"event":"cmd_output","timestamp":1607098282,"output":"block_id: a972a5e1-5ede-40e4-b055-62083bcfd435, type: Blocks, state: initializing, event: initializi"},{"event":"cmd_output","timestamp":1607098282,"output":"ng, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098282,"output":"6:11:22.068 [info] ppl_id: 414b2fb8-f809-4b88-9b0e-8c5dd19c0cba, type: PplBlocks, block_index: 0, s"},{"event":"cmd_output","timestamp":1607098282,"output":"tate: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098282,"output":"hange/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.068 [info] ppl_id: 414b2fb8-f809-4b88-9b0e-8c5dd19c0cba, type: "},{"event":"cmd_output","timestamp":1607098282,"output":"Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_"},{"event":"cmd_output","timestamp":1607098282,"output":"state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.070 [info] Block 0 of pipeline with id: a727ad7f-9f08-43"},{"event":"cmd_output","timestamp":1607098282,"output":"4f-96da-a67df18ea0eb scheduled in block service with id: : \"a972a5e1-5ede-40e4-b055-62083bcfd435\"\n\u001b"},{"event":"cmd_output","timestamp":1607098282,"output":"[0m\u001b[22m\n16:11:22.074 [info] ppl_id: a727ad7f-9f08-434f-96da-a67df18ea0eb, type: PplBlocks, block_"},{"event":"cmd_output","timestamp":1607098282,"output":"index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl."},{"event":"cmd_output","timestamp":1607098282,"output":"log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.076 [info] block_id: a972a5e1-5ede-40e4-b055-62083bc"},{"event":"cmd_output","timestamp":1607098282,"output":"fd435, type: BlockRequests, event: persisted build and sub_ppl details for block_request: a972a5e1-5"},{"event":"cmd_output","timestamp":1607098282,"output":"ede-40e4-b055-62083bcfd435, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_bui"},{"event":"cmd_output","timestamp":1607098282,"output":"ld/2(L41), \n\u001b[0m\u001b[22m\n16:11:22.080 [info] block_id: a972a5e1-5ede-40e4-b055-62083bcfd435, type: T"},{"event":"cmd_output","timestamp":1607098282,"output":"asks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.Init"},{"event":"cmd_output","timestamp":1607098282,"output":"ializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:11:22.081 [info] ppl_id: 414b2fb8-f809-4b88-9b0e-8c5"},{"event":"cmd_output","timestamp":1607098282,"output":"dd19c0cba, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loo"},{"event":"cmd_output","timestamp":1607098282,"output":"per.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.083 [info] block_id: a972a5e1-5ede-40e4"},{"event":"cmd_output","timestamp":1607098282,"output":"-b055-62083bcfd435, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098282,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.092 [info] ppl_id: 38967911-"},{"event":"cmd_output","timestamp":1607098282,"output":"160b-4392-b867-b83cb5692c2d, type: PplRequests, event: persisted source_args for pipeline: 38967911-"},{"event":"cmd_output","timestamp":1607098282,"output":"160b-4392-b867-b83cb5692c2d, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2"},{"event":"cmd_output","timestamp":1607098282,"output":"(L89), \n\u001b[0m\u001b[22m\n16:11:22.095 [info] ppl_id: 38967911-160b-4392-b867-b83cb5692c2d, type: PplSubI"},{"event":"cmd_output","timestamp":1607098282,"output":"nits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098282,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.101 [info] block_id: a972a5e1-5ede-40e4-b055-62083bcfd4"},{"event":"cmd_output","timestamp":1607098282,"output":"35, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.ST"},{"event":"cmd_output","timestamp":1607098282,"output":"M.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.120 [info] ppl_id: 38967911-160b-4392-b867-b8"},{"event":"cmd_output","timestamp":1607098282,"output":"3cb5692c2d, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098282,"output":"n: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.140 [info] ppl_id: 3896791"},{"event":"cmd_output","timestamp":1607098282,"output":"1-160b-4392-b867-b83cb5692c2d, type: PplRequests, event: persisted definition for request with reque"},{"event":"cmd_output","timestamp":1607098282,"output":"st_token: ae71b015-5323-466e-b156-5cb528d18ebf, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQuer"},{"event":"cmd_output","timestamp":1607098282,"output":"ies.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:11:22.144 [info] Queue persisted: {:ok, %Ppl.Queues.M"},{"event":"cmd_output","timestamp":1607098282,"output":"odel.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:11:22."},{"event":"cmd_output","timestamp":1607098282,"output":"142463], name: \"v1.0.2-.semaphore/semaphore.yml\", organization_id: \"abc\", project_id: \"123\", queue_i"},{"event":"cmd_output","timestamp":1607098282,"output":"d: \"797511cf-3fcf-459a-90f9-bd8f3c4830e3\", scope: \"project\", updated_at: ~N[2020-12-04 16:11:22.1424"},{"event":"cmd_output","timestamp":1607098282,"output":"75], user_generated: false}}\n\u001b[0m\u001b[22m\n16:11:22.147 [info] event: created, origin: Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098282,"output":"SubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:11:22.147 [info] ppl_id: 3896"},{"event":"cmd_output","timestamp":1607098282,"output":"7911-160b-4392-b867-b83cb5692c2d, type: PplBlocks, block_index: 0, state: initializing, event: creat"},{"event":"cmd_output","timestamp":1607098282,"output":"ed, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \r"},{"event":"cmd_output","timestamp":1607098282,"output":"\n\u001b[0m\u001b[22m\n16:11:22.151 [info] ppl_id: 38967911-160b-4392-b867-b83cb5692c2d, type: PplSubInits, st"},{"event":"cmd_output","timestamp":1607098282,"output":"ate: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl"},{"event":"cmd_output","timestamp":1607098282,"output":".log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.154 [info] ppl_id: 38967911-160b-4392-b867-b83cb569"},{"event":"cmd_output","timestamp":1607098282,"output":"2c2d, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098282,"output":"igin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.160 [info] ppl_id: 3896"},{"event":"cmd_output","timestamp":1607098282,"output":"7911-160b-4392-b867-b83cb5692c2d, type: Ppls, state: pending, event: exit_scheduling, recovery_count"},{"event":"cmd_output","timestamp":1607098282,"output":": 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.168 [info] block"},{"event":"cmd_output","timestamp":1607098282,"output":"_id: a972a5e1-5ede-40e4-b055-62083bcfd435, type: Tasks, state: done, event: exit_scheduling, recover"},{"event":"cmd_output","timestamp":1607098282,"output":"y_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.172 [info]"},{"event":"cmd_output","timestamp":1607098282,"output":" ppl_id: 38967911-160b-4392-b867-b83cb5692c2d, type: Ppls, state: queuing, event: exit_scheduling, "},{"event":"cmd_output","timestamp":1607098282,"output":"recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.177"},{"event":"cmd_output","timestamp":1607098282,"output":" [info] block_id: a972a5e1-5ede-40e4-b055-62083bcfd435, type: Blocks, state: done, event: exit_sche"},{"event":"cmd_output","timestamp":1607098282,"output":"duling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098282,"output":"1:22.183 [info] ppl_id: 38967911-160b-4392-b867-b83cb5692c2d, type: Ppls, state: running, event: ex"},{"event":"cmd_output","timestamp":1607098282,"output":"it_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098282,"output":"m\n16:11:22.187 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"38967911-16"},{"event":"cmd_output","timestamp":1607098282,"output":"0b-4392-b867-b83cb5692c2d\"\n\u001b[0m\u001b[22m\n16:11:22.190 [info] ppl_id: a727ad7f-9f08-434f-96da-a67df18e"},{"event":"cmd_output","timestamp":1607098282,"output":"a0eb, block_id: a972a5e1-5ede-40e4-b055-62083bcfd435, type: PplBlocks, block_index: 0, state: done, "},{"event":"cmd_output","timestamp":1607098282,"output":"result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_"},{"event":"cmd_output","timestamp":1607098282,"output":"change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.194 [info] block_id: fd344149-aca9-4706-a238-1a174367f21b, typ"},{"event":"cmd_output","timestamp":1607098282,"output":"e: BlockRequests, event: persisted block run request from ppl 38967911-160b-4392-b867-b83cb5692c2d f"},{"event":"cmd_output","timestamp":1607098282,"output":"or block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \r"},{"event":"cmd_output","timestamp":1607098282,"output":"\n\u001b[0m\u001b[22m\n16:11:22.197 [info] block_id: fd344149-aca9-4706-a238-1a174367f21b, type: Blocks, state"},{"event":"cmd_output","timestamp":1607098282,"output":": initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQuer"},{"event":"cmd_output","timestamp":1607098282,"output":"ies.insert/1(L43), \n\u001b[0m\u001b[22m\n16:11:22.200 [info] Block 0 of pipeline with id: 38967911-160b-4392"},{"event":"cmd_output","timestamp":1607098282,"output":"-b867-b83cb5692c2d scheduled in block service with id: : \"fd344149-aca9-4706-a238-1a174367f21b\"\n\u001b[0"},{"event":"cmd_output","timestamp":1607098282,"output":"m\u001b[22m\n16:11:22.204 [info] ppl_id: 38967911-160b-4392-b867-b83cb5692c2d, type: PplBlocks, block_in"},{"event":"cmd_output","timestamp":1607098282,"output":"dex: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.lo"},{"event":"cmd_output","timestamp":1607098282,"output":"g_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.207 [info] block_id: fd344149-aca9-4706-a238-1a174367f"},{"event":"cmd_output","timestamp":1607098282,"output":"21b, type: BlockRequests, event: persisted build and sub_ppl details for block_request: fd344149-aca"},{"event":"cmd_output","timestamp":1607098282,"output":"9-4706-a238-1a174367f21b, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build"},{"event":"cmd_output","timestamp":1607098282,"output":"/2(L41), \n\u001b[0m\u001b[22m\n16:11:22.209 [info] ppl_id: a727ad7f-9f08-434f-96da-a67df18ea0eb, type: Ppls,"},{"event":"cmd_output","timestamp":1607098282,"output":" state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.I"},{"event":"cmd_output","timestamp":1607098282,"output":"mpl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.211 [info] block_id: fd344149-aca9-4706-a238-1a1"},{"event":"cmd_output","timestamp":1607098282,"output":"74367f21b, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Bloc"},{"event":"cmd_output","timestamp":1607098282,"output":"ks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:11:22.215 [info] block_id: fd34414"},{"event":"cmd_output","timestamp":1607098282,"output":"9-aca9-4706-a238-1a174367f21b, type: Blocks, state: running, event: exit_scheduling, recovery_count:"},{"event":"cmd_output","timestamp":1607098282,"output":" 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.221 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098282,"output":": 098cc909-7303-414e-a62e-b4ac3abf102a, type: PplRequests, event: persisted source_args for pipeline"},{"event":"cmd_output","timestamp":1607098282,"output":": 098cc909-7303-414e-a62e-b4ac3abf102a, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.inse"},{"event":"cmd_output","timestamp":1607098282,"output":"rt_source/2(L89), \n\u001b[0m\u001b[22m\n16:11:22.224 [info] ppl_id: 098cc909-7303-414e-a62e-b4ac3abf102a, ty"},{"event":"cmd_output","timestamp":1607098282,"output":"pe: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.S"},{"event":"cmd_output","timestamp":1607098282,"output":"TM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.237 [info] block_id: fd344149-aca9-4706-a238"},{"event":"cmd_output","timestamp":1607098282,"output":"-1a174367f21b, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098282,"output":"r.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.259 [info] ppl_id: 098cc909-7303-4"},{"event":"cmd_output","timestamp":1607098282,"output":"14e-a62e-b4ac3abf102a, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_coun"},{"event":"cmd_output","timestamp":1607098282,"output":"t: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.281 [info] ppl_"},{"event":"cmd_output","timestamp":1607098282,"output":"id: fff41c6d-21e9-4527-845d-b67107ebe7ed, type: Ppls, state: running, event: exit_scheduling, recove"},{"event":"cmd_output","timestamp":1607098282,"output":"ry_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.293 [info"},{"event":"cmd_output","timestamp":1607098282,"output":"] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"fff41c6d-21e9-4527-845d-b67107eb"},{"event":"cmd_output","timestamp":1607098282,"output":"e7ed\"\n\u001b[0m\u001b[22m\n16:11:22.296 [info] ppl_id: 098cc909-7303-414e-a62e-b4ac3abf102a, type: PplReques"},{"event":"cmd_output","timestamp":1607098282,"output":"ts, event: persisted definition for request with request_token: d586e149-796b-4ae1-9195-37ca632e2b00"},{"event":"cmd_output","timestamp":1607098282,"output":", origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098282,"output":"11:22.300 [info] block_id: fd344149-aca9-4706-a238-1a174367f21b, type: Tasks, state: done, event: e"},{"event":"cmd_output","timestamp":1607098282,"output":"xit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098282,"output":"2m\n16:11:22.307 [info] block_id: d93714b6-5342-4d33-a3e9-524b2a20a3a7, type: BlockRequests, event:"},{"event":"cmd_output","timestamp":1607098282,"output":" persisted block run request from ppl fff41c6d-21e9-4527-845d-b67107ebe7ed for block 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098282,"output":"ir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:11:22.308"},{"event":"cmd_output","timestamp":1607098282,"output":" [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105),"},{"event":"cmd_output","timestamp":1607098282,"output":" \n\u001b[0m\u001b[22m\n16:11:22.308 [info] ppl_id: 098cc909-7303-414e-a62e-b4ac3abf102a, type: PplBlocks, bl"},{"event":"cmd_output","timestamp":1607098282,"output":"ock_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits"},{"event":"cmd_output","timestamp":1607098282,"output":".STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:11:22.312 [info] block_id: fd344149-a"},{"event":"cmd_output","timestamp":1607098282,"output":"ca9-4706-a238-1a174367f21b, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098282,"output":"igin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.312 [info] ppl_id: 098c"},{"event":"cmd_output","timestamp":1607098282,"output":"c909-7303-414e-a62e-b4ac3abf102a, type: PplSubInits, state: done, result: passed, event: exit_schedu"},{"event":"cmd_output","timestamp":1607098282,"output":"ling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:"},{"event":"cmd_output","timestamp":1607098282,"output":"22.313 [info] block_id: d93714b6-5342-4d33-a3e9-524b2a20a3a7, type: Blocks, state: initializing, ev"},{"event":"cmd_output","timestamp":1607098282,"output":"ent: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43),"},{"event":"cmd_output","timestamp":1607098282,"output":" \n\u001b[0m\u001b[22m\n16:11:22.318 [info] Block 0 of pipeline with id: fff41c6d-21e9-4527-845d-b67107ebe7ed"},{"event":"cmd_output","timestamp":1607098282,"output":" scheduled in block service with id: : \"d93714b6-5342-4d33-a3e9-524b2a20a3a7\"\n\u001b[0m\u001b[22m\n16:11:22.3"},{"event":"cmd_output","timestamp":1607098282,"output":"24 [info] ppl_id: fff41c6d-21e9-4527-845d-b67107ebe7ed, type: PplBlocks, block_index: 0, state: run"},{"event":"cmd_output","timestamp":1607098282,"output":"ning, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098282,"output":"90), \n\u001b[0m\u001b[22m\n16:11:22.330 [info] ppl_id: 38967911-160b-4392-b867-b83cb5692c2d, block_id: fd344"},{"event":"cmd_output","timestamp":1607098282,"output":"149-aca9-4706-a238-1a174367f21b, type: PplBlocks, block_index: 0, state: done, result: passed, event"},{"event":"cmd_output","timestamp":1607098282,"output":": exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098282,"output":"\u001b[22m\n16:11:22.332 [info] block_id: d93714b6-5342-4d33-a3e9-524b2a20a3a7, type: BlockRequests, eve"},{"event":"cmd_output","timestamp":1607098282,"output":"nt: persisted build and sub_ppl details for block_request: d93714b6-5342-4d33-a3e9-524b2a20a3a7, ori"},{"event":"cmd_output","timestamp":1607098282,"output":"gin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:11:2"},{"event":"cmd_output","timestamp":1607098282,"output":"2.333 [info] ppl_id: 098cc909-7303-414e-a62e-b4ac3abf102a, type: PplBlocks, block_index: 0, state: "},{"event":"cmd_output","timestamp":1607098282,"output":"waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/"},{"event":"cmd_output","timestamp":1607098282,"output":"1(L90), \n\u001b[0m\u001b[22m\n16:11:22.335 [info] ppl_id: 098cc909-7303-414e-a62e-b4ac3abf102a, type: Ppls, "},{"event":"cmd_output","timestamp":1607098282,"output":"state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_"},{"event":"cmd_output","timestamp":1607098282,"output":"change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.342 [info] block_id: d93714b6-5342-4d33-a3e9-524b2a20a3a7, typ"},{"event":"cmd_output","timestamp":1607098282,"output":"e: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler."},{"event":"cmd_output","timestamp":1607098282,"output":"InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:11:22.348 [info] block_id: d93714b6-5342-4d33-a3"},{"event":"cmd_output","timestamp":1607098282,"output":"e9-524b2a20a3a7, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098282,"output":"ixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.351 [info] ppl_id: fa7ece35-5a4"},{"event":"cmd_output","timestamp":1607098282,"output":"c-46ad-ab9e-e0947b6f3395, type: PplRequests, event: persisted source_args for pipeline: fa7ece35-5a4"},{"event":"cmd_output","timestamp":1607098282,"output":"c-46ad-ab9e-e0947b6f3395, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L8"},{"event":"cmd_output","timestamp":1607098282,"output":"9), \n\u001b[0m\u001b[22m\n16:11:22.353 [info] ppl_id: 098cc909-7303-414e-a62e-b4ac3abf102a, type: Ppls, stat"},{"event":"cmd_output","timestamp":1607098282,"output":"e: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chan"},{"event":"cmd_output","timestamp":1607098282,"output":"ge/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.357 [info] ppl_id: fa7ece35-5a4c-46ad-ab9e-e0947b6f3395, type: Ppl"},{"event":"cmd_output","timestamp":1607098282,"output":"SubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl"},{"event":"cmd_output","timestamp":1607098282,"output":".log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.361 [info] ppl_id: 38967911-160b-4392-b867-b83cb569"},{"event":"cmd_output","timestamp":1607098282,"output":"2c2d, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098282,"output":"ixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.374 [info] block_id: d93714b6-5"},{"event":"cmd_output","timestamp":1607098282,"output":"342-4d33-a3e9-524b2a20a3a7, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098282,"output":"origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.382 [info] ppl_id: 09"},{"event":"cmd_output","timestamp":1607098282,"output":"8cc909-7303-414e-a62e-b4ac3abf102a, type: Ppls, state: running, event: exit_scheduling, recovery_cou"},{"event":"cmd_output","timestamp":1607098282,"output":"nt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.391 [info] Ppl"},{"event":"cmd_output","timestamp":1607098282,"output":"Blocks WaitingState STM is scheduling block 0 from pipeline: \"098cc909-7303-414e-a62e-b4ac3abf102a\"\r"},{"event":"cmd_output","timestamp":1607098282,"output":"\n\u001b[0m\u001b[22m\n16:11:22.399 [info] block_id: 75acb925-88a4-4ff8-afdc-a93de968eaa8, type: BlockRequests"},{"event":"cmd_output","timestamp":1607098282,"output":", event: persisted block run request from ppl 098cc909-7303-414e-a62e-b4ac3abf102a for block 0, orig"},{"event":"cmd_output","timestamp":1607098282,"output":"in: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098282,"output":"1:22.400 [info] ppl_id: fa7ece35-5a4c-46ad-ab9e-e0947b6f3395, type: PplSubInits, state: regular_ini"},{"event":"cmd_output","timestamp":1607098282,"output":"t, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90)"},{"event":"cmd_output","timestamp":1607098282,"output":", \n\u001b[0m\u001b[22m\n16:11:22.407 [info] block_id: 75acb925-88a4-4ff8-afdc-a93de968eaa8, type: Blocks, st"},{"event":"cmd_output","timestamp":1607098282,"output":"ate: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQ"},{"event":"cmd_output","timestamp":1607098282,"output":"ueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:11:22.414 [info] Block 0 of pipeline with id: 098cc909-7303-4"},{"event":"cmd_output","timestamp":1607098282,"output":"14e-a62e-b4ac3abf102a scheduled in block service with id: : \"75acb925-88a4-4ff8-afdc-a93de968eaa8\"\n"},{"event":"cmd_output","timestamp":1607098282,"output":"\u001b[0m\u001b[22m\n16:11:22.424 [info] ppl_id: 098cc909-7303-414e-a62e-b4ac3abf102a, type: PplBlocks, block"},{"event":"cmd_output","timestamp":1607098282,"output":"_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl"},{"event":"cmd_output","timestamp":1607098282,"output":".log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.426 [info] block_id: d93714b6-5342-4d33-a3e9-524b2a"},{"event":"cmd_output","timestamp":1607098282,"output":"20a3a7, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.S"},{"event":"cmd_output","timestamp":1607098282,"output":"TM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.429 [info] block_id: 75acb925-88a4-4ff8-afdc"},{"event":"cmd_output","timestamp":1607098282,"output":"-a93de968eaa8, type: BlockRequests, event: persisted build and sub_ppl details for block_request: 75"},{"event":"cmd_output","timestamp":1607098282,"output":"acb925-88a4-4ff8-afdc-a93de968eaa8, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.in"},{"event":"cmd_output","timestamp":1607098282,"output":"sert_build/2(L41), \n\u001b[0m\u001b[22m\n16:11:22.437 [info] block_id: 75acb925-88a4-4ff8-afdc-a93de968eaa8,"},{"event":"cmd_output","timestamp":1607098282,"output":" type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHand"},{"event":"cmd_output","timestamp":1607098282,"output":"ler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:11:22.440 [info] ppl_id: fa7ece35-5a4c-46ad-"},{"event":"cmd_output","timestamp":1607098282,"output":"ab9e-e0947b6f3395, type: PplRequests, event: persisted definition for request with request_token: 68"},{"event":"cmd_output","timestamp":1607098282,"output":"05d06c-0a96-44e4-a3f8-cc334bffc273, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_d"},{"event":"cmd_output","timestamp":1607098282,"output":"efinition/3(L76), \n\u001b[0m\u001b[22m\n16:11:22.441 [info] block_id: d93714b6-5342-4d33-a3e9-524b2a20a3a7, "},{"event":"cmd_output","timestamp":1607098282,"output":"type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl"},{"event":"cmd_output","timestamp":1607098282,"output":".log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.442 [info] block_id: 75acb925-88a4-4ff8-afdc-a93de9"},{"event":"cmd_output","timestamp":1607098282,"output":"68eaa8, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loop"},{"event":"cmd_output","timestamp":1607098282,"output":"er.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.455 [info] ppl_id: fff41c6d-21e9-4527-84"},{"event":"cmd_output","timestamp":1607098282,"output":"5d-b67107ebe7ed, block_id: d93714b6-5342-4d33-a3e9-524b2a20a3a7, type: PplBlocks, block_index: 0, st"},{"event":"cmd_output","timestamp":1607098282,"output":"ate: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl"},{"event":"cmd_output","timestamp":1607098282,"output":".log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.458 [info] event: created, origin: Elixir.Ppl.PplSu"},{"event":"cmd_output","timestamp":1607098282,"output":"bInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:11:22.458 [info] ppl_id: fa7ece"},{"event":"cmd_output","timestamp":1607098282,"output":"35-5a4c-46ad-ab9e-e0947b6f3395, type: PplBlocks, block_index: 0, state: initializing, event: created"},{"event":"cmd_output","timestamp":1607098282,"output":", recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b"},{"event":"cmd_output","timestamp":1607098282,"output":"[0m\u001b[22m\n16:11:22.462 [info] ppl_id: fa7ece35-5a4c-46ad-ab9e-e0947b6f3395, type: PplSubInits, stat"},{"event":"cmd_output","timestamp":1607098282,"output":"e: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.l"},{"event":"cmd_output","timestamp":1607098282,"output":"og_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.467 [info] block_id: 75acb925-88a4-4ff8-afdc-a93de968"},{"event":"cmd_output","timestamp":1607098282,"output":"eaa8, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper."},{"event":"cmd_output","timestamp":1607098282,"output":"STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.476 [info] ppl_id: 69fe776b-e59b-44ee-bffc-"},{"event":"cmd_output","timestamp":1607098282,"output":"d28977e90fb0, type: PplRequests, event: persisted source_args for pipeline: 69fe776b-e59b-44ee-bffc-"},{"event":"cmd_output","timestamp":1607098282,"output":"d28977e90fb0, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098282,"output":"22m\n16:11:22.479 [info] ppl_id: fa7ece35-5a4c-46ad-ab9e-e0947b6f3395, type: Ppls, state: pending, "},{"event":"cmd_output","timestamp":1607098282,"output":"event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \r"},{"event":"cmd_output","timestamp":1607098282,"output":"\n\u001b[0m\u001b[22m\n16:11:22.481 [info] ppl_id: fff41c6d-21e9-4527-845d-b67107ebe7ed, type: Ppls, state: do"},{"event":"cmd_output","timestamp":1607098282,"output":"ne, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_st"},{"event":"cmd_output","timestamp":1607098282,"output":"ate_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.483 [info] ppl_id: 69fe776b-e59b-44ee-bffc-d28977e90fb0, t"},{"event":"cmd_output","timestamp":1607098282,"output":"ype: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper."},{"event":"cmd_output","timestamp":1607098282,"output":"STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.485 [info] ppl_id: fa7ece35-5a4c-46ad-ab9e-"},{"event":"cmd_output","timestamp":1607098282,"output":"e0947b6f3395, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_coun"},{"event":"cmd_output","timestamp":1607098282,"output":"t: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.492 [info] ppl_"},{"event":"cmd_output","timestamp":1607098282,"output":"id: fa7ece35-5a4c-46ad-ab9e-e0947b6f3395, type: Ppls, state: queuing, event: exit_scheduling, recove"},{"event":"cmd_output","timestamp":1607098282,"output":"ry_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.501 [info"},{"event":"cmd_output","timestamp":1607098282,"output":"] ppl_id: 414b2fb8-f809-4b88-9b0e-8c5dd19c0cba, type: Ppls, state: running, event: exit_scheduling,"},{"event":"cmd_output","timestamp":1607098282,"output":" recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.51"},{"event":"cmd_output","timestamp":1607098282,"output":"0 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"414b2fb8-f809-4b88-9b0e-8"},{"event":"cmd_output","timestamp":1607098282,"output":"c5dd19c0cba\"\n\u001b[0m\u001b[22m\n16:11:22.518 [info] block_id: c1d47968-6f3e-4f02-8fdb-bbe4bfc69f1b, type: "},{"event":"cmd_output","timestamp":1607098282,"output":"BlockRequests, event: persisted block run request from ppl 414b2fb8-f809-4b88-9b0e-8c5dd19c0cba for "},{"event":"cmd_output","timestamp":1607098282,"output":"block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b["},{"event":"cmd_output","timestamp":1607098282,"output":"0m\u001b[22m\n16:11:22.518 [info] ppl_id: 69fe776b-e59b-44ee-bffc-d28977e90fb0, type: PplSubInits, state"},{"event":"cmd_output","timestamp":1607098282,"output":": regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_"},{"event":"cmd_output","timestamp":1607098282,"output":"change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.522 [info] block_id: c1d47968-6f3e-4f02-8fdb-bbe4bfc69f1b, typ"},{"event":"cmd_output","timestamp":1607098282,"output":"e: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks."},{"event":"cmd_output","timestamp":1607098282,"output":"Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:11:22.525 [info] Block 0 of pipeline with id: 41"},{"event":"cmd_output","timestamp":1607098282,"output":"4b2fb8-f809-4b88-9b0e-8c5dd19c0cba scheduled in block service with id: : \"c1d47968-6f3e-4f02-8fdb-bb"},{"event":"cmd_output","timestamp":1607098282,"output":"e4bfc69f1b\"\n\u001b[0m\u001b[22m\n16:11:22.530 [info] ppl_id: 414b2fb8-f809-4b88-9b0e-8c5dd19c0cba, type: Ppl"},{"event":"cmd_output","timestamp":1607098282,"output":"Blocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Lo"},{"event":"cmd_output","timestamp":1607098282,"output":"oper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.534 [info] block_id: c1d47968-6f3e-4f0"},{"event":"cmd_output","timestamp":1607098282,"output":"2-8fdb-bbe4bfc69f1b, type: BlockRequests, event: persisted build and sub_ppl details for block_reque"},{"event":"cmd_output","timestamp":1607098282,"output":"st: c1d47968-6f3e-4f02-8fdb-bbe4bfc69f1b, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQuer"},{"event":"cmd_output","timestamp":1607098282,"output":"ies.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:11:22.537 [info] block_id: c1d47968-6f3e-4f02-8fdb-bbe4bfc"},{"event":"cmd_output","timestamp":1607098282,"output":"69f1b, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.S"},{"event":"cmd_output","timestamp":1607098282,"output":"TMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:11:22.543 [info] block_id: c1d47968-6f"},{"event":"cmd_output","timestamp":1607098282,"output":"3e-4f02-8fdb-bbe4bfc69f1b, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098282,"output":"origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.559 [info] block_id: "},{"event":"cmd_output","timestamp":1607098282,"output":"75acb925-88a4-4ff8-afdc-a93de968eaa8, type: Tasks, state: done, event: exit_scheduling, recovery_cou"},{"event":"cmd_output","timestamp":1607098282,"output":"nt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.580 [info] blo"},{"event":"cmd_output","timestamp":1607098282,"output":"ck_id: 75acb925-88a4-4ff8-afdc-a93de968eaa8, type: Blocks, state: done, event: exit_scheduling, reco"},{"event":"cmd_output","timestamp":1607098282,"output":"very_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.582 [in"},{"event":"cmd_output","timestamp":1607098282,"output":"fo] block_id: c1d47968-6f3e-4f02-8fdb-bbe4bfc69f1b, type: Tasks, state: running, event: exit_schedu"},{"event":"cmd_output","timestamp":1607098282,"output":"ling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:"},{"event":"cmd_output","timestamp":1607098282,"output":"22.590 [info] ppl_id: 69fe776b-e59b-44ee-bffc-d28977e90fb0, type: PplRequests, event: persisted def"},{"event":"cmd_output","timestamp":1607098282,"output":"inition for request with request_token: 48351784-3d4b-4adb-aecd-1d63f0c96256, origin: Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098282,"output":"Requests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:11:22.596 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098282,"output":": 098cc909-7303-414e-a62e-b4ac3abf102a, block_id: 75acb925-88a4-4ff8-afdc-a93de968eaa8, type: PplBlo"},{"event":"cmd_output","timestamp":1607098282,"output":"cks, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098282,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.600 [info] event: created, o"},{"event":"cmd_output","timestamp":1607098282,"output":"rigin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:11:22.600"},{"event":"cmd_output","timestamp":1607098282,"output":" [info] ppl_id: 69fe776b-e59b-44ee-bffc-d28977e90fb0, type: PplBlocks, block_index: 0, state: initi"},{"event":"cmd_output","timestamp":1607098282,"output":"alizing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitSta"},{"event":"cmd_output","timestamp":1607098282,"output":"te.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:11:22.601 [info] ppl_id: 1032fc89-c251-4201-870b-7c979c6a05bf, "},{"event":"cmd_output","timestamp":1607098282,"output":"type: PplRequests, event: persisted source_args for pipeline: 1032fc89-c251-4201-870b-7c979c6a05bf, "},{"event":"cmd_output","timestamp":1607098282,"output":"origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:11:22."},{"event":"cmd_output","timestamp":1607098282,"output":"604 [info] ppl_id: 69fe776b-e59b-44ee-bffc-d28977e90fb0, type: PplSubInits, state: done, result: pa"},{"event":"cmd_output","timestamp":1607098282,"output":"ssed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098282,"output":"90), \n\u001b[0m\u001b[22m\n16:11:22.610 [info] ppl_id: 1032fc89-c251-4201-870b-7c979c6a05bf, type: PplSubIni"},{"event":"cmd_output","timestamp":1607098282,"output":"ts, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_s"},{"event":"cmd_output","timestamp":1607098282,"output":"tate_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.624 [info] ppl_id: 69fe776b-e59b-44ee-bffc-d28977e90fb0, "},{"event":"cmd_output","timestamp":1607098282,"output":"type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098282,"output":"Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.626 [info] ppl_id: 69fe776b-e"},{"event":"cmd_output","timestamp":1607098282,"output":"59b-44ee-bffc-d28977e90fb0, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098282,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.630 [info] ppl_id: 098"},{"event":"cmd_output","timestamp":1607098282,"output":"cc909-7303-414e-a62e-b4ac3abf102a, type: Ppls, state: done, result: passed, event: exit_scheduling, "},{"event":"cmd_output","timestamp":1607098282,"output":"recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.645"},{"event":"cmd_output","timestamp":1607098282,"output":" [info] ppl_id: 69fe776b-e59b-44ee-bffc-d28977e90fb0, type: Ppls, state: queuing, event: exit_sched"},{"event":"cmd_output","timestamp":1607098282,"output":"uling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11"},{"event":"cmd_output","timestamp":1607098282,"output":":22.659 [info] ppl_id: 1032fc89-c251-4201-870b-7c979c6a05bf, type: PplSubInits, state: regular_init"},{"event":"cmd_output","timestamp":1607098282,"output":", event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90),"},{"event":"cmd_output","timestamp":1607098282,"output":" \n\u001b[0m\u001b[22m\n16:11:22.662 [info] ppl_id: fa7ece35-5a4c-46ad-ab9e-e0947b6f3395, type: Ppls, state: "},{"event":"cmd_output","timestamp":1607098282,"output":"running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/"},{"event":"cmd_output","timestamp":1607098282,"output":"1(L90), \n\u001b[0m\u001b[22m\n16:11:22.673 [info] PplBlocks WaitingState STM is scheduling block 0 from pipe"},{"event":"cmd_output","timestamp":1607098282,"output":"line: \"fa7ece35-5a4c-46ad-ab9e-e0947b6f3395\"\n\u001b[0m\u001b[22m\n16:11:22.685 [info] block_id: c1d47968-6f3"},{"event":"cmd_output","timestamp":1607098282,"output":"e-4f02-8fdb-bbe4bfc69f1b, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098282,"output":"n: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.689 [info] block_id: b182b"},{"event":"cmd_output","timestamp":1607098282,"output":"78e-0fb5-4d71-a7da-425dbc0dc3fd, type: BlockRequests, event: persisted block run request from ppl fa"},{"event":"cmd_output","timestamp":1607098282,"output":"7ece35-5a4c-46ad-ab9e-e0947b6f3395 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockReques"},{"event":"cmd_output","timestamp":1607098282,"output":"tsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:11:22.694 [info] block_id: b182b78e-0fb5-4d71-a7"},{"event":"cmd_output","timestamp":1607098282,"output":"da-425dbc0dc3fd, type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098282,"output":"Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:11:22.698 [info] Block 0 of "},{"event":"cmd_output","timestamp":1607098282,"output":"pipeline with id: fa7ece35-5a4c-46ad-ab9e-e0947b6f3395 scheduled in block service with id: : \"b182b7"},{"event":"cmd_output","timestamp":1607098282,"output":"8e-0fb5-4d71-a7da-425dbc0dc3fd\"\n\u001b[0m\u001b[22m\n16:11:22.704 [info] block_id: c1d47968-6f3e-4f02-8fdb-b"},{"event":"cmd_output","timestamp":1607098282,"output":"be4bfc69f1b, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Lo"},{"event":"cmd_output","timestamp":1607098282,"output":"oper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.705 [info] ppl_id: fa7ece35-5a4c-46ad-"},{"event":"cmd_output","timestamp":1607098282,"output":"ab9e-e0947b6f3395, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery"},{"event":"cmd_output","timestamp":1607098282,"output":"_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.710 [info] "},{"event":"cmd_output","timestamp":1607098282,"output":" block_id: b182b78e-0fb5-4d71-a7da-425dbc0dc3fd, type: BlockRequests, event: persisted build and sub"},{"event":"cmd_output","timestamp":1607098282,"output":"_ppl details for block_request: b182b78e-0fb5-4d71-a7da-425dbc0dc3fd, origin: Elixir.Block.BlockRequ"},{"event":"cmd_output","timestamp":1607098282,"output":"ests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:11:22.715 [info] ppl_id: 1032f"},{"event":"cmd_output","timestamp":1607098282,"output":"c89-c251-4201-870b-7c979c6a05bf, type: PplRequests, event: persisted definition for request with req"},{"event":"cmd_output","timestamp":1607098282,"output":"uest_token: d67e10d5-6c73-4e52-b8e6-307d0265c618, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQu"},{"event":"cmd_output","timestamp":1607098282,"output":"eries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:11:22.716 [info] block_id: b182b78e-0fb5-4d71-a7da-"},{"event":"cmd_output","timestamp":1607098282,"output":"425dbc0dc3fd, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.B"},{"event":"cmd_output","timestamp":1607098282,"output":"locks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:11:22.720 [info] block_id: b182"},{"event":"cmd_output","timestamp":1607098282,"output":"b78e-0fb5-4d71-a7da-425dbc0dc3fd, type: Blocks, state: running, event: exit_scheduling, recovery_cou"},{"event":"cmd_output","timestamp":1607098282,"output":"nt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.721 [info] ppl"},{"event":"cmd_output","timestamp":1607098282,"output":"_id: 414b2fb8-f809-4b88-9b0e-8c5dd19c0cba, block_id: c1d47968-6f3e-4f02-8fdb-bbe4bfc69f1b, type: Ppl"},{"event":"cmd_output","timestamp":1607098282,"output":"Blocks, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098282,"output":"in: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.730 [info] event: created"},{"event":"cmd_output","timestamp":1607098282,"output":", origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:11:22."},{"event":"cmd_output","timestamp":1607098282,"output":"730 [info] ppl_id: 1032fc89-c251-4201-870b-7c979c6a05bf, type: PplBlocks, block_index: 0, state: in"},{"event":"cmd_output","timestamp":1607098282,"output":"itializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInit"},{"event":"cmd_output","timestamp":1607098282,"output":"State.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:11:22.732 [info] ppl_id: 1032fc89-c251-4201-870b-7c979c6a05b"},{"event":"cmd_output","timestamp":1607098282,"output":"f, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098282,"output":": Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.736 [info] ppl_id: 0737d6a8"},{"event":"cmd_output","timestamp":1607098282,"output":"-81b0-4c50-82ae-f288effd5e15, type: PplRequests, event: persisted source_args for pipeline: 0737d6a8"},{"event":"cmd_output","timestamp":1607098282,"output":"-81b0-4c50-82ae-f288effd5e15, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/"},{"event":"cmd_output","timestamp":1607098282,"output":"2(L89), \n\u001b[0m\u001b[22m\n16:11:22.742 [info] ppl_id: 0737d6a8-81b0-4c50-82ae-f288effd5e15, type: PplSub"},{"event":"cmd_output","timestamp":1607098282,"output":"Inits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.lo"},{"event":"cmd_output","timestamp":1607098282,"output":"g_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.746 [info] ppl_id: 1032fc89-c251-4201-870b-7c979c6a05b"},{"event":"cmd_output","timestamp":1607098282,"output":"f, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM."},{"event":"cmd_output","timestamp":1607098282,"output":"Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.752 [info] ppl_id: 1032fc89-c251-4201-870b-7c97"},{"event":"cmd_output","timestamp":1607098282,"output":"9c6a05bf, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0"},{"event":"cmd_output","timestamp":1607098282,"output":", origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.759 [info] block_id"},{"event":"cmd_output","timestamp":1607098282,"output":": b182b78e-0fb5-4d71-a7da-425dbc0dc3fd, type: Tasks, state: running, event: exit_scheduling, recover"},{"event":"cmd_output","timestamp":1607098282,"output":"y_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.762 [info]"},{"event":"cmd_output","timestamp":1607098282,"output":" ppl_id: 1032fc89-c251-4201-870b-7c979c6a05bf, type: Ppls, state: queuing, event: exit_scheduling, "},{"event":"cmd_output","timestamp":1607098282,"output":"recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.764"},{"event":"cmd_output","timestamp":1607098282,"output":" [info] ppl_id: 414b2fb8-f809-4b88-9b0e-8c5dd19c0cba, type: Ppls, state: done, result: passed, even"},{"event":"cmd_output","timestamp":1607098282,"output":"t: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098282,"output":"m\u001b[22m\n16:11:22.781 [info] ppl_id: 0737d6a8-81b0-4c50-82ae-f288effd5e15, type: PplSubInits, state:"},{"event":"cmd_output","timestamp":1607098282,"output":" regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098282,"output":"hange/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.796 [info] block_id: b182b78e-0fb5-4d71-a7da-425dbc0dc3fd, type"},{"event":"cmd_output","timestamp":1607098282,"output":": Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_"},{"event":"cmd_output","timestamp":1607098282,"output":"state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.804 [info] block_id: b182b78e-0fb5-4d71-a7da-425dbc0dc3f"},{"event":"cmd_output","timestamp":1607098282,"output":"d, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.I"},{"event":"cmd_output","timestamp":1607098282,"output":"mpl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.817 [info] ppl_id: fa7ece35-5a4c-46ad-ab9e-e0947"},{"event":"cmd_output","timestamp":1607098282,"output":"b6f3395, block_id: b182b78e-0fb5-4d71-a7da-425dbc0dc3fd, type: PplBlocks, block_index: 0, state: don"},{"event":"cmd_output","timestamp":1607098282,"output":"e, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_sta"},{"event":"cmd_output","timestamp":1607098282,"output":"te_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.821 [info] ppl_id: 0737d6a8-81b0-4c50-82ae-f288effd5e15, ty"},{"event":"cmd_output","timestamp":1607098282,"output":"pe: PplRequests, event: persisted definition for request with request_token: 66b59e5d-e3da-4dca-aca8"},{"event":"cmd_output","timestamp":1607098282,"output":"-fcc3f423c6a2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b"},{"event":"cmd_output","timestamp":1607098282,"output":"[0m\u001b[22m\n16:11:22.827 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schem"},{"event":"cmd_output","timestamp":1607098282,"output":"a.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:11:22.825577], name: \"123-.semaphore/se"},{"event":"cmd_output","timestamp":1607098282,"output":"maphore.yml\", organization_id: \"abc\", project_id: \"123\", queue_id: \"109546c6-e0ba-4ba4-8192-73adb6af"},{"event":"cmd_output","timestamp":1607098282,"output":"9d2f\", scope: \"project\", updated_at: ~N[2020-12-04 16:11:22.825586], user_generated: false}}\n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098282,"output":"22m\n16:11:22.831 [info] ppl_id: fa7ece35-5a4c-46ad-ab9e-e0947b6f3395, type: Ppls, state: done, res"},{"event":"cmd_output","timestamp":1607098282,"output":"ult: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_cha"},{"event":"cmd_output","timestamp":1607098282,"output":"nge/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.834 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHand"},{"event":"cmd_output","timestamp":1607098282,"output":"ler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:11:22.834 [info] ppl_id: 0737d6a8-81b0-4c50-8"},{"event":"cmd_output","timestamp":1607098282,"output":"2ae-f288effd5e15, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_cou"},{"event":"cmd_output","timestamp":1607098282,"output":"nt: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098282,"output":"1:22.836 [info] ppl_id: 0737d6a8-81b0-4c50-82ae-f288effd5e15, type: PplSubInits, state: done, resul"},{"event":"cmd_output","timestamp":1607098282,"output":"t: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chang"},{"event":"cmd_output","timestamp":1607098282,"output":"e/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.838 [info] ppl_id: 69fe776b-e59b-44ee-bffc-d28977e90fb0, type: Ppls"},{"event":"cmd_output","timestamp":1607098282,"output":", state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_stat"},{"event":"cmd_output","timestamp":1607098282,"output":"e_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.844 [info] PplBlocks WaitingState STM is scheduling block 0 "},{"event":"cmd_output","timestamp":1607098282,"output":"from pipeline: \"69fe776b-e59b-44ee-bffc-d28977e90fb0\"\n\u001b[0m\u001b[22m\n16:11:22.844 [info] ppl_id: 0737d"},{"event":"cmd_output","timestamp":1607098282,"output":"6a8-81b0-4c50-82ae-f288effd5e15, type: PplBlocks, block_index: 0, state: waiting, event: exit_schedu"},{"event":"cmd_output","timestamp":1607098282,"output":"ling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:"},{"event":"cmd_output","timestamp":1607098282,"output":"22.850 [info] ppl_id: 0737d6a8-81b0-4c50-82ae-f288effd5e15, type: Ppls, state: pending, event: exit"},{"event":"cmd_output","timestamp":1607098282,"output":"_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098282,"output":"\n16:11:22.852 [info] block_id: 6a77f762-0a8d-4dc9-8108-78214ffff209, type: BlockRequests, event: pe"},{"event":"cmd_output","timestamp":1607098282,"output":"rsisted block run request from ppl 69fe776b-e59b-44ee-bffc-d28977e90fb0 for block 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098282,"output":"Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:11:22.856 [i"},{"event":"cmd_output","timestamp":1607098282,"output":"nfo] block_id: 6a77f762-0a8d-4dc9-8108-78214ffff209, type: Blocks, state: initializing, event: init"},{"event":"cmd_output","timestamp":1607098282,"output":"ializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098282,"output":"22m\n16:11:22.860 [info] Block 0 of pipeline with id: 69fe776b-e59b-44ee-bffc-d28977e90fb0 schedule"},{"event":"cmd_output","timestamp":1607098282,"output":"d in block service with id: : \"6a77f762-0a8d-4dc9-8108-78214ffff209\"\n\u001b[0m\u001b[22m\n16:11:22.861 [info]"},{"event":"cmd_output","timestamp":1607098282,"output":" ppl_id: 22937567-604d-4e40-8762-51cad8d0b13a, type: PplRequests, event: persisted source_args for "},{"event":"cmd_output","timestamp":1607098282,"output":"pipeline: 22937567-604d-4e40-8762-51cad8d0b13a, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQuer"},{"event":"cmd_output","timestamp":1607098282,"output":"ies.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:11:22.864 [info] ppl_id: 22937567-604d-4e40-8762-51cad8d0"},{"event":"cmd_output","timestamp":1607098282,"output":"b13a, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098282,"output":"Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.866 [info] ppl_id: 69fe776b-e59b-44e"},{"event":"cmd_output","timestamp":1607098282,"output":"e-bffc-d28977e90fb0, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recove"},{"event":"cmd_output","timestamp":1607098282,"output":"ry_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.869 [info"},{"event":"cmd_output","timestamp":1607098282,"output":"] block_id: 6a77f762-0a8d-4dc9-8108-78214ffff209, type: BlockRequests, event: persisted build and s"},{"event":"cmd_output","timestamp":1607098282,"output":"ub_ppl details for block_request: 6a77f762-0a8d-4dc9-8108-78214ffff209, origin: Elixir.Block.BlockRe"},{"event":"cmd_output","timestamp":1607098282,"output":"quests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:11:22.869 [info] ppl_id: 073"},{"event":"cmd_output","timestamp":1607098282,"output":"7d6a8-81b0-4c50-82ae-f288effd5e15, type: Ppls, state: queuing, event: exit_scheduling, recovery_coun"},{"event":"cmd_output","timestamp":1607098282,"output":"t: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.874 [info] bloc"},{"event":"cmd_output","timestamp":1607098282,"output":"k_id: 6a77f762-0a8d-4dc9-8108-78214ffff209, type: Tasks, state: pending, event: created, recovery_co"},{"event":"cmd_output","timestamp":1607098282,"output":"unt: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:11"},{"event":"cmd_output","timestamp":1607098282,"output":":22.876 [info] block_id: 6a77f762-0a8d-4dc9-8108-78214ffff209, type: Blocks, state: running, event:"},{"event":"cmd_output","timestamp":1607098282,"output":" exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098282,"output":"[22m\n16:11:22.888 [info] ppl_id: 0737d6a8-81b0-4c50-82ae-f288effd5e15, type: Ppls, state: running,"},{"event":"cmd_output","timestamp":1607098282,"output":" event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), "},{"event":"cmd_output","timestamp":1607098282,"output":"\n\u001b[0m\u001b[22m\n16:11:22.902 [info] block_id: 6a77f762-0a8d-4dc9-8108-78214ffff209, type: Tasks, state"},{"event":"cmd_output","timestamp":1607098282,"output":": running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chang"},{"event":"cmd_output","timestamp":1607098282,"output":"e/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.904 [info] PplBlocks WaitingState STM is scheduling block 0 from pi"},{"event":"cmd_output","timestamp":1607098282,"output":"peline: \"0737d6a8-81b0-4c50-82ae-f288effd5e15\"\n\u001b[0m\u001b[22m\n16:11:22.912 [info] ppl_id: 22937567-604"},{"event":"cmd_output","timestamp":1607098282,"output":"d-4e40-8762-51cad8d0b13a, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098282,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.918 [info] b"},{"event":"cmd_output","timestamp":1607098282,"output":"lock_id: 4f1347a7-2880-4890-96b0-830360a6a47f, type: BlockRequests, event: persisted block run reque"},{"event":"cmd_output","timestamp":1607098282,"output":"st from ppl 0737d6a8-81b0-4c50-82ae-f288effd5e15 for block 0, origin: Elixir.Block.BlockRequests.Mod"},{"event":"cmd_output","timestamp":1607098282,"output":"el.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:11:22.919 [info] block_id: 6a77f76"},{"event":"cmd_output","timestamp":1607098282,"output":"2-0a8d-4dc9-8108-78214ffff209, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098282,"output":"origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.921 [info] block_id: "},{"event":"cmd_output","timestamp":1607098282,"output":"4f1347a7-2880-4890-96b0-830360a6a47f, type: Blocks, state: initializing, event: initializing, recove"},{"event":"cmd_output","timestamp":1607098282,"output":"ry_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:11:22.92"},{"event":"cmd_output","timestamp":1607098282,"output":"6 [info] Block 0 of pipeline with id: 0737d6a8-81b0-4c50-82ae-f288effd5e15 scheduled in block servi"},{"event":"cmd_output","timestamp":1607098282,"output":"ce with id: : \"4f1347a7-2880-4890-96b0-830360a6a47f\"\n\u001b[0m\u001b[22m\n16:11:22.931 [info] ppl_id: 0737d6"},{"event":"cmd_output","timestamp":1607098282,"output":"a8-81b0-4c50-82ae-f288effd5e15, type: PplBlocks, block_index: 0, state: running, event: exit_schedul"},{"event":"cmd_output","timestamp":1607098282,"output":"ing, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:2"},{"event":"cmd_output","timestamp":1607098282,"output":"2.934 [info] block_id: 6a77f762-0a8d-4dc9-8108-78214ffff209, type: Blocks, state: done, event: exit"},{"event":"cmd_output","timestamp":1607098282,"output":"_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098282,"output":"\n16:11:22.937 [info] block_id: 4f1347a7-2880-4890-96b0-830360a6a47f, type: BlockRequests, event: pe"},{"event":"cmd_output","timestamp":1607098282,"output":"rsisted build and sub_ppl details for block_request: 4f1347a7-2880-4890-96b0-830360a6a47f, origin: E"},{"event":"cmd_output","timestamp":1607098282,"output":"lixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:11:22.941 "},{"event":"cmd_output","timestamp":1607098282,"output":"[info] block_id: 4f1347a7-2880-4890-96b0-830360a6a47f, type: Tasks, state: pending, event: created,"},{"event":"cmd_output","timestamp":1607098282,"output":" recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098282,"output":"\u001b[22m\n16:11:22.948 [info] block_id: 4f1347a7-2880-4890-96b0-830360a6a47f, type: Blocks, state: run"},{"event":"cmd_output","timestamp":1607098282,"output":"ning, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098282,"output":"90), \n\u001b[0m\u001b[22m\n16:11:22.959 [info] ppl_id: 69fe776b-e59b-44ee-bffc-d28977e90fb0, block_id: 6a77f"},{"event":"cmd_output","timestamp":1607098282,"output":"762-0a8d-4dc9-8108-78214ffff209, type: PplBlocks, block_index: 0, state: done, result: passed, event"},{"event":"cmd_output","timestamp":1607098282,"output":": exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098282,"output":"\u001b[22m\n16:11:22.978 [info] ppl_id: 22937567-604d-4e40-8762-51cad8d0b13a, type: PplRequests, event: "},{"event":"cmd_output","timestamp":1607098282,"output":"persisted definition for request with request_token: 3c4aa022-91ac-43c1-8fd3-aa2303d56603, origin: E"},{"event":"cmd_output","timestamp":1607098282,"output":"lixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:11:22.980 ["},{"event":"cmd_output","timestamp":1607098282,"output":"info] block_id: 4f1347a7-2880-4890-96b0-830360a6a47f, type: Tasks, state: running, event: exit_sche"},{"event":"cmd_output","timestamp":1607098282,"output":"duling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098282,"output":"1:22.987 [info] ppl_id: 30a17cb3-1a58-414a-982c-7dbbe9af3887, type: PplRequests, event: persisted s"},{"event":"cmd_output","timestamp":1607098282,"output":"ource_args for pipeline: 30a17cb3-1a58-414a-982c-7dbbe9af3887, origin: Elixir.Ppl.PplRequests.Model."},{"event":"cmd_output","timestamp":1607098282,"output":"PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:11:22.991 [info] ppl_id: 69fe776b-e59b-44e"},{"event":"cmd_output","timestamp":1607098282,"output":"e-bffc-d28977e90fb0, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count"},{"event":"cmd_output","timestamp":1607098282,"output":": 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.991 [info] event"},{"event":"cmd_output","timestamp":1607098282,"output":": created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098282,"output":"16:11:22.991 [info] ppl_id: 22937567-604d-4e40-8762-51cad8d0b13a, type: PplBlocks, block_index: 0, "},{"event":"cmd_output","timestamp":1607098282,"output":"state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.Re"},{"event":"cmd_output","timestamp":1607098282,"output":"gularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:11:22.995 [info] ppl_id: 22937567-604d-4e40-8762-51"},{"event":"cmd_output","timestamp":1607098282,"output":"cad8d0b13a, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: "},{"event":"cmd_output","timestamp":1607098282,"output":"0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.995 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098282,"output":" 30a17cb3-1a58-414a-982c-7dbbe9af3887, type: PplSubInits, state: fetching, event: exit_scheduling, r"},{"event":"cmd_output","timestamp":1607098283,"output":"ecovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:23.005 "},{"event":"cmd_output","timestamp":1607098283,"output":"[info] ppl_id: 22937567-604d-4e40-8762-51cad8d0b13a, type: PplBlocks, block_index: 0, state: waitin"},{"event":"cmd_output","timestamp":1607098283,"output":"g, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90)"},{"event":"cmd_output","timestamp":1607098283,"output":", \n\u001b[0m\u001b[22m\n16:11:23.015 [info] ppl_id: 22937567-604d-4e40-8762-51cad8d0b13a, type: Ppls, state:"},{"event":"cmd_output","timestamp":1607098283,"output":" pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change"},{"event":"cmd_output","timestamp":1607098283,"output":"/1(L90), \n\u001b[0m\u001b[22m\n16:11:23.029 [info] ppl_id: 22937567-604d-4e40-8762-51cad8d0b13a, type: Ppls,"},{"event":"cmd_output","timestamp":1607098283,"output":" state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state"},{"event":"cmd_output","timestamp":1607098283,"output":"_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:23.031 [info] ppl_id: 30a17cb3-1a58-414a-982c-7dbbe9af3887, type"},{"event":"cmd_output","timestamp":1607098283,"output":": PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper"},{"event":"cmd_output","timestamp":1607098283,"output":".STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:23.039 [info] block_id: 4f1347a7-2880-4890-96"},{"event":"cmd_output","timestamp":1607098283,"output":"b0-830360a6a47f, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098283,"output":".Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:23.045 [info] ppl_id: 1032fc89-c251-42"},{"event":"cmd_output","timestamp":1607098283,"output":"01-870b-7c979c6a05bf, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098283,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:23.050 [info] block_id: 4f1347a"},{"event":"cmd_output","timestamp":1607098283,"output":"7-2880-4890-96b0-830360a6a47f, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098283,"output":" origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:23.060 [info] PplBlocks"},{"event":"cmd_output","timestamp":1607098283,"output":" WaitingState STM is scheduling block 0 from pipeline: \"1032fc89-c251-4201-870b-7c979c6a05bf\"\n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098283,"output":"[22m\n16:11:23.073 [info] ppl_id: 30a17cb3-1a58-414a-982c-7dbbe9af3887, type: PplRequests, event: p"},{"event":"cmd_output","timestamp":1607098283,"output":"ersisted definition for request with request_token: 8ad926a4-d4da-4c83-a49f-1e2ef38f7c7d, origin: El"},{"event":"cmd_output","timestamp":1607098283,"output":"ixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:11:23.075 [i"},{"event":"cmd_output","timestamp":1607098283,"output":"nfo] block_id: d10e694e-07b7-4ecf-8a5e-216ecf56bcc5, type: BlockRequests, event: persisted block ru"},{"event":"cmd_output","timestamp":1607098283,"output":"n request from ppl 1032fc89-c251-4201-870b-7c979c6a05bf for block 0, origin: Elixir.Block.BlockReque"},{"event":"cmd_output","timestamp":1607098283,"output":"sts.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:11:23.080 [info] block_id: "},{"event":"cmd_output","timestamp":1607098283,"output":"d10e694e-07b7-4ecf-8a5e-216ecf56bcc5, type: Blocks, state: initializing, event: initializing, recove"},{"event":"cmd_output","timestamp":1607098283,"output":"ry_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:11:23.08"},{"event":"cmd_output","timestamp":1607098283,"output":"0 [info] ppl_id: 0737d6a8-81b0-4c50-82ae-f288effd5e15, block_id: 4f1347a7-2880-4890-96b0-830360a6a4"},{"event":"cmd_output","timestamp":1607098283,"output":"7f, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098283,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:23.083 [info] e"},{"event":"cmd_output","timestamp":1607098283,"output":"vent: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098283,"output":"2m\n16:11:23.083 [info] ppl_id: 30a17cb3-1a58-414a-982c-7dbbe9af3887, type: PplBlocks, block_index:"},{"event":"cmd_output","timestamp":1607098283,"output":" 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandle"},{"event":"cmd_output","timestamp":1607098283,"output":"r.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:11:23.087 [info] ppl_id: 30a17cb3-1a58-414a-982"},{"event":"cmd_output","timestamp":1607098283,"output":"c-7dbbe9af3887, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_cou"},{"event":"cmd_output","timestamp":1607098283,"output":"nt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:23.089 [info] Blo"},{"event":"cmd_output","timestamp":1607098283,"output":"ck 0 of pipeline with id: 1032fc89-c251-4201-870b-7c979c6a05bf scheduled in block service with id: :"},{"event":"cmd_output","timestamp":1607098283,"output":" \"d10e694e-07b7-4ecf-8a5e-216ecf56bcc5\"\n\u001b[0m\u001b[22m\n16:11:23.093 [info] block_id: d10e694e-07b7-4ec"},{"event":"cmd_output","timestamp":1607098283,"output":"f-8a5e-216ecf56bcc5, type: BlockRequests, event: persisted build and sub_ppl details for block_reque"},{"event":"cmd_output","timestamp":1607098283,"output":"st: d10e694e-07b7-4ecf-8a5e-216ecf56bcc5, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQuer"},{"event":"cmd_output","timestamp":1607098283,"output":"ies.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:11:23.097 [info] ppl_id: 1032fc89-c251-4201-870b-7c979c6a0"},{"event":"cmd_output","timestamp":1607098283,"output":"5bf, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098283,"output":"gin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:23.099 [info] ppl_id: 30a17"},{"event":"cmd_output","timestamp":1607098283,"output":"cb3-1a58-414a-982c-7dbbe9af3887, type: Ppls, state: pending, event: exit_scheduling, recovery_count:"},{"event":"cmd_output","timestamp":1607098283,"output":" 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:23.100 [info] block_"},{"event":"cmd_output","timestamp":1607098283,"output":"id: d10e694e-07b7-4ecf-8a5e-216ecf56bcc5, type: Tasks, state: pending, event: created, recovery_coun"},{"event":"cmd_output","timestamp":1607098283,"output":"t: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:11:2"},{"event":"cmd_output","timestamp":1607098283,"output":"3.109 [info] block_id: d10e694e-07b7-4ecf-8a5e-216ecf56bcc5, type: Blocks, state: running, event: e"},{"event":"cmd_output","timestamp":1607098283,"output":"xit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098283,"output":"2m\n16:11:23.118 [info] ppl_id: 30a17cb3-1a58-414a-982c-7dbbe9af3887, type: PplBlocks, block_index:"},{"event":"cmd_output","timestamp":1607098283,"output":" 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_st"},{"event":"cmd_output","timestamp":1607098283,"output":"ate_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:23.119 [info] ppl_id: 30a17cb3-1a58-414a-982c-7dbbe9af3887, t"},{"event":"cmd_output","timestamp":1607098283,"output":"ype: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl"},{"event":"cmd_output","timestamp":1607098283,"output":".log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:23.122 [info] ppl_id: 72e3db4e-ed5c-4ab6-bc61-ad875ad5"},{"event":"cmd_output","timestamp":1607098283,"output":"3ccf, type: PplRequests, event: persisted source_args for pipeline: 72e3db4e-ed5c-4ab6-bc61-ad875ad5"},{"event":"cmd_output","timestamp":1607098283,"output":"3ccf, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098283,"output":"11:23.132 [info] ppl_id: 72e3db4e-ed5c-4ab6-bc61-ad875ad53ccf, type: PplSubInits, state: fetching, "},{"event":"cmd_output","timestamp":1607098283,"output":"event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \r"},{"event":"cmd_output","timestamp":1607098283,"output":"\n\u001b[0m\u001b[22m\n16:11:23.139 [info] ppl_id: 0737d6a8-81b0-4c50-82ae-f288effd5e15, type: Ppls, state: do"},{"event":"cmd_output","timestamp":1607098283,"output":"ne, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_st"},{"event":"cmd_output","timestamp":1607098283,"output":"ate_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:23.141 [info] block_id: d10e694e-07b7-4ecf-8a5e-216ecf56bcc5,"},{"event":"cmd_output","timestamp":1607098283,"output":" type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.I"},{"event":"cmd_output","timestamp":1607098283,"output":"mpl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:23.155 [info] block_id: d10e694e-07b7-4ecf-8a5e-216"},{"event":"cmd_output","timestamp":1607098283,"output":"ecf56bcc5, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loope"},{"event":"cmd_output","timestamp":1607098283,"output":"r.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:23.169 [info] block_id: d10e694e-07b7-4ecf-8"},{"event":"cmd_output","timestamp":1607098283,"output":"a5e-216ecf56bcc5, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098283,"output":"ir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:23.172 [info] ppl_id: 22937567-604d-"},{"event":"cmd_output","timestamp":1607098283,"output":"4e40-8762-51cad8d0b13a, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098283,"output":"n: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:23.175 [info] ppl_id: 72e3db4"},{"event":"cmd_output","timestamp":1607098283,"output":"e-ed5c-4ab6-bc61-ad875ad53ccf, type: PplSubInits, state: regular_init, event: exit_scheduling, recov"},{"event":"cmd_output","timestamp":1607098283,"output":"ery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:23.184 [inf"},{"event":"cmd_output","timestamp":1607098283,"output":"o] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"22937567-604d-4e40-8762-51cad8d"},{"event":"cmd_output","timestamp":1607098283,"output":"0b13a\"\n\u001b[0m\u001b[22m\n16:11:23.189 [info] ppl_id: 1032fc89-c251-4201-870b-7c979c6a05bf, block_id: d10e"},{"event":"cmd_output","timestamp":1607098283,"output":"694e-07b7-4ecf-8a5e-216ecf56bcc5, type: PplBlocks, block_index: 0, state: done, result: passed, even"},{"event":"cmd_output","timestamp":1607098283,"output":"t: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098283,"output":"m\u001b[22m\n16:11:23.197 [info] block_id: 18723312-343f-424d-923f-761a51861069, type: BlockRequests, ev"},{"event":"cmd_output","timestamp":1607098283,"output":"ent: persisted block run request from ppl 22937567-604d-4e40-8762-51cad8d0b13a for block 0, origin: "},{"event":"cmd_output","timestamp":1607098283,"output":"Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:11:23"},{"event":"cmd_output","timestamp":1607098283,"output":".204 [info] block_id: 18723312-343f-424d-923f-761a51861069, type: Blocks, state: initializing, even"},{"event":"cmd_output","timestamp":1607098283,"output":"t: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \r"},{"event":"cmd_output","timestamp":1607098283,"output":"\n\u001b[0m\u001b[22m\n16:11:23.210 [info] ppl_id: 1032fc89-c251-4201-870b-7c979c6a05bf, type: Ppls, state: do"},{"event":"cmd_output","timestamp":1607098283,"output":"ne, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_st"},{"event":"cmd_output","timestamp":1607098283,"output":"ate_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:23.212 [info] Block 0 of pipeline with id: 22937567-604d-4e40"},{"event":"cmd_output","timestamp":1607098283,"output":"-8762-51cad8d0b13a scheduled in block service with id: : \"18723312-343f-424d-923f-761a51861069\"\n\u001b[0"},{"event":"cmd_output","timestamp":1607098283,"output":"m\u001b[22m\n16:11:23.217 [info] ppl_id: 22937567-604d-4e40-8762-51cad8d0b13a, type: PplBlocks, block_in"},{"event":"cmd_output","timestamp":1607098283,"output":"dex: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.lo"},{"event":"cmd_output","timestamp":1607098283,"output":"g_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:23.220 [info] block_id: 18723312-343f-424d-923f-761a51861"},{"event":"cmd_output","timestamp":1607098283,"output":"069, type: BlockRequests, event: persisted build and sub_ppl details for block_request: 18723312-343"},{"event":"cmd_output","timestamp":1607098283,"output":"f-424d-923f-761a51861069, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build"},{"event":"cmd_output","timestamp":1607098283,"output":"/2(L41), \n\u001b[0m\u001b[22m\n16:11:23.233 [info] block_id: 18723312-343f-424d-923f-761a51861069, type: Tas"},{"event":"cmd_output","timestamp":1607098283,"output":"ks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.Initia"},{"event":"cmd_output","timestamp":1607098283,"output":"lizingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:11:23.240 [info] block_id: 18723312-343f-424d-923f-761"},{"event":"cmd_output","timestamp":1607098283,"output":"a51861069, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098283,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:23.245 [info] ppl_id: 72e3db4e-ed5c-4ab6"},{"event":"cmd_output","timestamp":1607098283,"output":"-bc61-ad875ad53ccf, type: PplRequests, event: persisted definition for request with request_token: b"},{"event":"cmd_output","timestamp":1607098283,"output":"b5abbfb-b8fd-40f2-b856-a33583d3b201, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_"},{"event":"cmd_output","timestamp":1607098283,"output":"definition/3(L76), \n\u001b[0m\u001b[22m\n16:11:23.254 [info] ppl_id: 5cc736ff-8e4a-4347-a9dd-8754ca2e003c, t"},{"event":"cmd_output","timestamp":1607098283,"output":"ype: PplRequests, event: persisted source_args for pipeline: 5cc736ff-8e4a-4347-a9dd-8754ca2e003c, o"},{"event":"cmd_output","timestamp":1607098283,"output":"rigin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:11:23.2"},{"event":"cmd_output","timestamp":1607098283,"output":"57 [info] ppl_id: 5cc736ff-8e4a-4347-a9dd-8754ca2e003c, type: PplSubInits, state: fetching, event: "},{"event":"cmd_output","timestamp":1607098283,"output":"exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098283,"output":"22m\n16:11:23.267 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState"},{"event":"cmd_output","timestamp":1607098283,"output":".all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:11:23.267 [info] ppl_id: 72e3db4e-ed5c-4ab6-bc61-ad875ad53ccf, ty"},{"event":"cmd_output","timestamp":1607098283,"output":"pe: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098283,"output":"r.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:11:23.274 [info] ppl"},{"event":"cmd_output","timestamp":1607098283,"output":"_id: 72e3db4e-ed5c-4ab6-bc61-ad875ad53ccf, type: PplSubInits, state: done, result: passed, event: ex"},{"event":"cmd_output","timestamp":1607098283,"output":"it_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098283,"output":"m\n16:11:23.276 [info] block_id: 18723312-343f-424d-923f-761a51861069, type: Tasks, state: running,"},{"event":"cmd_output","timestamp":1607098283,"output":" event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), "},{"event":"cmd_output","timestamp":1607098283,"output":"\n\u001b[0m\u001b[22m\n16:11:23.293 [info] ppl_id: 72e3db4e-ed5c-4ab6-bc61-ad875ad53ccf, type: PplBlocks, blo"},{"event":"cmd_output","timestamp":1607098283,"output":"ck_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Im"},{"event":"cmd_output","timestamp":1607098283,"output":"pl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:23.299 [info] ppl_id: 72e3db4e-ed5c-4ab6-bc61-ad875a"},{"event":"cmd_output","timestamp":1607098283,"output":"d53ccf, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper"},{"event":"cmd_output","timestamp":1607098283,"output":".STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:23.304 [info] ppl_id: 5cc736ff-8e4a-4347-a9dd"},{"event":"cmd_output","timestamp":1607098283,"output":"-8754ca2e003c, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098283,"output":"igin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:23.316 [info] ppl_id: 72e3"},{"event":"cmd_output","timestamp":1607098283,"output":"db4e-ed5c-4ab6-bc61-ad875ad53ccf, type: Ppls, state: queuing, event: exit_scheduling, recovery_count"},{"event":"cmd_output","timestamp":1607098283,"output":": 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:23.344 [info] ppl_i"},{"event":"cmd_output","timestamp":1607098283,"output":"d: 5cc736ff-8e4a-4347-a9dd-8754ca2e003c, type: PplRequests, event: persisted definition for request "},{"event":"cmd_output","timestamp":1607098283,"output":"with request_token: 99bc43bd-34cc-4eb8-afd7-68215604c5d8, origin: Elixir.Ppl.PplRequests.Model.PplRe"},{"event":"cmd_output","timestamp":1607098283,"output":"questsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:11:23.351 [info] event: created, origin: El"},{"event":"cmd_output","timestamp":1607098283,"output":"ixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:11:23.351 [info] "},{"event":"cmd_output","timestamp":1607098283,"output":"ppl_id: 5cc736ff-8e4a-4347-a9dd-8754ca2e003c, type: PplBlocks, block_index: 0, state: initializing, "},{"event":"cmd_output","timestamp":1607098283,"output":"event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok"},{"event":"cmd_output","timestamp":1607098283,"output":"?/1(L105), \n\u001b[0m\u001b[22m\n16:11:23.354 [info] ppl_id: 5cc736ff-8e4a-4347-a9dd-8754ca2e003c, type: Ppl"},{"event":"cmd_output","timestamp":1607098283,"output":"SubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loo"},{"event":"cmd_output","timestamp":1607098283,"output":"per.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:23.363 [info] ppl_id: 5cc736ff-8e4a-4347-a"},{"event":"cmd_output","timestamp":1607098283,"output":"9dd-8754ca2e003c, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_"},{"event":"cmd_output","timestamp":1607098283,"output":"count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:23.366 [info] "},{"event":"cmd_output","timestamp":1607098283,"output":"ppl_id: 5cc736ff-8e4a-4347-a9dd-8754ca2e003c, type: Ppls, state: pending, event: exit_scheduling, re"},{"event":"cmd_output","timestamp":1607098283,"output":"covery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:23.379 ["},{"event":"cmd_output","timestamp":1607098283,"output":"info] ppl_id: 5cc736ff-8e4a-4347-a9dd-8754ca2e003c, type: Ppls, state: queuing, event: exit_schedul"},{"event":"cmd_output","timestamp":1607098283,"output":"ing, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:2"},{"event":"cmd_output","timestamp":1607098283,"output":"3.382 [info] block_id: 18723312-343f-424d-923f-761a51861069, type: Tasks, state: done, event: exit_"},{"event":"cmd_output","timestamp":1607098283,"output":"scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098283,"output":"16:11:23.390 [info] block_id: 18723312-343f-424d-923f-761a51861069, type: Blocks, state: done, even"},{"event":"cmd_output","timestamp":1607098283,"output":"t: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098283,"output":"m\u001b[22m\n16:11:23.398 [info] ppl_id: 22937567-604d-4e40-8762-51cad8d0b13a, block_id: 18723312-343f-4"},{"event":"cmd_output","timestamp":1607098283,"output":"24d-923f-761a51861069, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_sch"},{"event":"cmd_output","timestamp":1607098283,"output":"eduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098283,"output":"11:23.414 [info] ppl_id: 22937567-604d-4e40-8762-51cad8d0b13a, type: Ppls, state: done, result: pas"},{"event":"cmd_output","timestamp":1607098283,"output":"sed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L9"},{"event":"cmd_output","timestamp":1607098283,"output":"0), \n\u001b[0m\u001b[22m\n16:11:23.500 [info] ppl_id: 30a17cb3-1a58-414a-982c-7dbbe9af3887, type: Ppls, stat"},{"event":"cmd_output","timestamp":1607098283,"output":"e: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chan"},{"event":"cmd_output","timestamp":1607098283,"output":"ge/1(L90), \n\u001b[0m\u001b[22m\n16:11:23.508 [info] PplBlocks WaitingState STM is scheduling block 0 from p"},{"event":"cmd_output","timestamp":1607098283,"output":"ipeline: \"30a17cb3-1a58-414a-982c-7dbbe9af3887\"\n\u001b[0m\u001b[22m\n16:11:23.513 [info] block_id: 4d22a563-"},{"event":"cmd_output","timestamp":1607098283,"output":"959f-4974-9589-38f509a0ed4e, type: BlockRequests, event: persisted block run request from ppl 30a17c"},{"event":"cmd_output","timestamp":1607098283,"output":"b3-1a58-414a-982c-7dbbe9af3887 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQu"},{"event":"cmd_output","timestamp":1607098283,"output":"eries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:11:23.515 [info] block_id: 4d22a563-959f-4974-9589-3"},{"event":"cmd_output","timestamp":1607098283,"output":"8f509a0ed4e, type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098283,"output":"ir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:11:23.517 [info] Block 0 of pipe"},{"event":"cmd_output","timestamp":1607098283,"output":"line with id: 30a17cb3-1a58-414a-982c-7dbbe9af3887 scheduled in block service with id: : \"4d22a563-9"},{"event":"cmd_output","timestamp":1607098283,"output":"59f-4974-9589-38f509a0ed4e\"\n\u001b[0m\u001b[22m\n16:11:23.520 [info] ppl_id: 30a17cb3-1a58-414a-982c-7dbbe9a"},{"event":"cmd_output","timestamp":1607098283,"output":"f3887, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098283,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:23.524 [info] block_id: 4"},{"event":"cmd_output","timestamp":1607098283,"output":"d22a563-959f-4974-9589-38f509a0ed4e, type: BlockRequests, event: persisted build and sub_ppl details"},{"event":"cmd_output","timestamp":1607098283,"output":" for block_request: 4d22a563-959f-4974-9589-38f509a0ed4e, origin: Elixir.Block.BlockRequests.Model.B"},{"event":"cmd_output","timestamp":1607098283,"output":"lockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:11:23.533 [info] block_id: 4d22a563-959f-4"},{"event":"cmd_output","timestamp":1607098283,"output":"974-9589-38f509a0ed4e, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098283,"output":"r.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:11:23.535 [info] block"},{"event":"cmd_output","timestamp":1607098283,"output":"_id: 4d22a563-959f-4974-9589-38f509a0ed4e, type: Blocks, state: running, event: exit_scheduling, rec"},{"event":"cmd_output","timestamp":1607098283,"output":"overy_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:23.550 [i"},{"event":"cmd_output","timestamp":1607098283,"output":"nfo] block_id: 4d22a563-959f-4974-9589-38f509a0ed4e, type: Tasks, state: running, event: exit_sched"},{"event":"cmd_output","timestamp":1607098283,"output":"uling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11"},{"event":"cmd_output","timestamp":1607098283,"output":":23.597 [info] block_id: 4d22a563-959f-4974-9589-38f509a0ed4e, type: Tasks, state: done, event: exi"},{"event":"cmd_output","timestamp":1607098283,"output":"t_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098283,"output":"\n16:11:23.605 [info] block_id: 4d22a563-959f-4974-9589-38f509a0ed4e, type: Blocks, state: done, ev"},{"event":"cmd_output","timestamp":1607098283,"output":"ent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b"},{"event":"cmd_output","timestamp":1607098283,"output":"[0m\u001b[22m\n16:11:23.615 [info] ppl_id: 30a17cb3-1a58-414a-982c-7dbbe9af3887, block_id: 4d22a563-959f"},{"event":"cmd_output","timestamp":1607098283,"output":"-4974-9589-38f509a0ed4e, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_s"},{"event":"cmd_output","timestamp":1607098283,"output":"cheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098283,"output":"6:11:23.639 [info] ppl_id: 30a17cb3-1a58-414a-982c-7dbbe9af3887, type: Ppls, state: done, result: p"},{"event":"cmd_output","timestamp":1607098283,"output":"assed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1("},{"event":"cmd_output","timestamp":1607098283,"output":"L90), \n\u001b[0m\u001b[22m\n16:11:23.722 [info] ppl_id: 72e3db4e-ed5c-4ab6-bc61-ad875ad53ccf, type: Ppls, st"},{"event":"cmd_output","timestamp":1607098283,"output":"ate: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_ch"},{"event":"cmd_output","timestamp":1607098283,"output":"ange/1(L90), \n\u001b[0m\u001b[22m\n16:11:23.730 [info] PplBlocks WaitingState STM is scheduling block 0 from"},{"event":"cmd_output","timestamp":1607098283,"output":" pipeline: \"72e3db4e-ed5c-4ab6-bc61-ad875ad53ccf\"\n\u001b[0m\u001b[22m\n16:11:23.736 [info] block_id: d4a51b8"},{"event":"cmd_output","timestamp":1607098283,"output":"d-05ee-46ae-a9e9-ed8d6411860f, type: BlockRequests, event: persisted block run request from ppl 72e3"},{"event":"cmd_output","timestamp":1607098283,"output":"db4e-ed5c-4ab6-bc61-ad875ad53ccf for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequests"},{"event":"cmd_output","timestamp":1607098283,"output":"Queries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:11:23.738 [info] block_id: d4a51b8d-05ee-46ae-a9e9"},{"event":"cmd_output","timestamp":1607098283,"output":"-ed8d6411860f, type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098283,"output":"ixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:11:23.741 [info] Block 0 of pi"},{"event":"cmd_output","timestamp":1607098283,"output":"peline with id: 72e3db4e-ed5c-4ab6-bc61-ad875ad53ccf scheduled in block service with id: : \"d4a51b8d"},{"event":"cmd_output","timestamp":1607098283,"output":"-05ee-46ae-a9e9-ed8d6411860f\"\n\u001b[0m\u001b[22m\n16:11:23.746 [info] ppl_id: 72e3db4e-ed5c-4ab6-bc61-ad875"},{"event":"cmd_output","timestamp":1607098283,"output":"ad53ccf, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098283,"output":" origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:23.748 [info] block_id:"},{"event":"cmd_output","timestamp":1607098283,"output":" d4a51b8d-05ee-46ae-a9e9-ed8d6411860f, type: BlockRequests, event: persisted build and sub_ppl detai"},{"event":"cmd_output","timestamp":1607098283,"output":"ls for block_request: d4a51b8d-05ee-46ae-a9e9-ed8d6411860f, origin: Elixir.Block.BlockRequests.Model"},{"event":"cmd_output","timestamp":1607098283,"output":".BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:11:23.752 [info] block_id: d4a51b8d-05ee"},{"event":"cmd_output","timestamp":1607098283,"output":"-46ae-a9e9-ed8d6411860f, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098283,"output":"xir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:11:23.755 [info] blo"},{"event":"cmd_output","timestamp":1607098283,"output":"ck_id: d4a51b8d-05ee-46ae-a9e9-ed8d6411860f, type: Blocks, state: running, event: exit_scheduling, r"},{"event":"cmd_output","timestamp":1607098283,"output":"ecovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:23.776 "},{"event":"cmd_output","timestamp":1607098283,"output":"[info] block_id: d4a51b8d-05ee-46ae-a9e9-ed8d6411860f, type: Tasks, state: running, event: exit_sch"},{"event":"cmd_output","timestamp":1607098283,"output":"eduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098283,"output":"11:23.810 [info] block_id: d4a51b8d-05ee-46ae-a9e9-ed8d6411860f, type: Tasks, state: done, event: e"},{"event":"cmd_output","timestamp":1607098283,"output":"xit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098283,"output":"2m\n16:11:23.820 [info] block_id: d4a51b8d-05ee-46ae-a9e9-ed8d6411860f, type: Blocks, state: done, "},{"event":"cmd_output","timestamp":1607098283,"output":"event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \r"},{"event":"cmd_output","timestamp":1607098283,"output":"\n\u001b[0m\u001b[22m\n16:11:23.835 [info] ppl_id: 72e3db4e-ed5c-4ab6-bc61-ad875ad53ccf, block_id: d4a51b8d-05"},{"event":"cmd_output","timestamp":1607098283,"output":"ee-46ae-a9e9-ed8d6411860f, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit"},{"event":"cmd_output","timestamp":1607098283,"output":"_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098283,"output":"\n16:11:23.849 [info] ppl_id: 72e3db4e-ed5c-4ab6-bc61-ad875ad53ccf, type: Ppls, state: done, result:"},{"event":"cmd_output","timestamp":1607098283,"output":" passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/"},{"event":"cmd_output","timestamp":1607098283,"output":"1(L90), \n\u001b[0m\u001b[22m\n16:11:23.940 [info] ppl_id: 5cc736ff-8e4a-4347-a9dd-8754ca2e003c, type: Ppls, "},{"event":"cmd_output","timestamp":1607098283,"output":"state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_"},{"event":"cmd_output","timestamp":1607098283,"output":"change/1(L90), \n\u001b[0m\u001b[22m\n16:11:23.944 [info] PplBlocks WaitingState STM is scheduling block 0 fr"},{"event":"cmd_output","timestamp":1607098283,"output":"om pipeline: \"5cc736ff-8e4a-4347-a9dd-8754ca2e003c\"\n\u001b[0m\u001b[22m\n16:11:23.954 [info] block_id: 47872"},{"event":"cmd_output","timestamp":1607098283,"output":"4c2-b506-474a-9e5c-6a7ee2230eae, type: BlockRequests, event: persisted block run request from ppl 5c"},{"event":"cmd_output","timestamp":1607098283,"output":"c736ff-8e4a-4347-a9dd-8754ca2e003c for block 0, origin: Elixir.Block.BlockRequests.Model.BlockReques"},{"event":"cmd_output","timestamp":1607098283,"output":"tsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:11:23.955 [info] block_id: 478724c2-b506-474a-9e"},{"event":"cmd_output","timestamp":1607098283,"output":"5c-6a7ee2230eae, type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098283,"output":"Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:11:23.957 [info] Block 0 of "},{"event":"cmd_output","timestamp":1607098283,"output":"pipeline with id: 5cc736ff-8e4a-4347-a9dd-8754ca2e003c scheduled in block service with id: : \"478724"},{"event":"cmd_output","timestamp":1607098283,"output":"c2-b506-474a-9e5c-6a7ee2230eae\"\n\u001b[0m\u001b[22m\n16:11:23.959 [info] ppl_id: 5cc736ff-8e4a-4347-a9dd-875"},{"event":"cmd_output","timestamp":1607098283,"output":"4ca2e003c, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: "},{"event":"cmd_output","timestamp":1607098283,"output":"0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:23.960 [info] block_i"},{"event":"cmd_output","timestamp":1607098283,"output":"d: 478724c2-b506-474a-9e5c-6a7ee2230eae, type: BlockRequests, event: persisted build and sub_ppl det"},{"event":"cmd_output","timestamp":1607098283,"output":"ails for block_request: 478724c2-b506-474a-9e5c-6a7ee2230eae, origin: Elixir.Block.BlockRequests.Mod"},{"event":"cmd_output","timestamp":1607098283,"output":"el.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:11:23.961 [info] block_id: 478724c2-b5"},{"event":"cmd_output","timestamp":1607098283,"output":"06-474a-9e5c-6a7ee2230eae, type: Tasks, state: pending, event: created, recovery_count: 0, origin: E"},{"event":"cmd_output","timestamp":1607098283,"output":"lixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:11:23.962 [info] b"},{"event":"cmd_output","timestamp":1607098283,"output":"lock_id: 478724c2-b506-474a-9e5c-6a7ee2230eae, type: Blocks, state: running, event: exit_scheduling,"},{"event":"cmd_output","timestamp":1607098283,"output":" recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:23.97"},{"event":"cmd_output","timestamp":1607098283,"output":"5 [info] block_id: 478724c2-b506-474a-9e5c-6a7ee2230eae, type: Tasks, state: running, event: exit_s"},{"event":"cmd_output","timestamp":1607098284,"output":"cheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098284,"output":"6:11:24.020 [info] block_id: 478724c2-b506-474a-9e5c-6a7ee2230eae, type: Tasks, state: done, event:"},{"event":"cmd_output","timestamp":1607098284,"output":" exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098284,"output":"[22m\n16:11:24.025 [info] block_id: 478724c2-b506-474a-9e5c-6a7ee2230eae, type: Blocks, state: done"},{"event":"cmd_output","timestamp":1607098284,"output":", event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90),"},{"event":"cmd_output","timestamp":1607098284,"output":" \n\u001b[0m\u001b[22m\n16:11:24.032 [info] ppl_id: 5cc736ff-8e4a-4347-a9dd-8754ca2e003c, block_id: 478724c2-"},{"event":"cmd_output","timestamp":1607098284,"output":"b506-474a-9e5c-6a7ee2230eae, type: PplBlocks, block_index: 0, state: done, result: passed, event: ex"},{"event":"cmd_output","timestamp":1607098284,"output":"it_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098284,"output":"m\n16:11:24.042 [info] ppl_id: 5cc736ff-8e4a-4347-a9dd-8754ca2e003c, type: Ppls, state: done, resul"},{"event":"cmd_output","timestamp":1607098284,"output":"t: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chang"},{"event":"cmd_output","timestamp":1607098284,"output":"e/1(L90), \n\u001b[0m\u001b[32m\r * test list pipelines by git_ref_types and label (3055.1ms)\u001b[0m\n * test ge"},{"event":"cmd_output","timestamp":1607098284,"output":"t pipeline in running and move it to scheduling\r * test get pipeline in running and move it to sche"},{"event":"cmd_output","timestamp":1607098284,"output":"duling (skipped)\n * test ppls_from_same_queue_in_states() only looks for ppls from same queue\u001b[22m"},{"event":"cmd_output","timestamp":1607098284,"output":"\n16:11:24.179 [info] ppl_id: 5803187f-92ac-44b6-8591-9e6ac89e057f, type: PplRequests, event: persi"},{"event":"cmd_output","timestamp":1607098284,"output":"sted schedule request with request_token: 5afad50c-364b-11eb-a67b-5254005464e2, origin: Elixir.Ppl.P"},{"event":"cmd_output","timestamp":1607098284,"output":"plRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:11:24.183 [info] ppl_i"},{"event":"cmd_output","timestamp":1607098284,"output":"d: 5803187f-92ac-44b6-8591-9e6ac89e057f, type: PplRequests, event: persisted definition for request "},{"event":"cmd_output","timestamp":1607098284,"output":"with request_token: 5afad50c-364b-11eb-a67b-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRe"},{"event":"cmd_output","timestamp":1607098284,"output":"questsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:11:24.186 [info] ppl_id: e16844f9-f5bd-425b"},{"event":"cmd_output","timestamp":1607098284,"output":"-b368-ddb00b6f88f2, type: PplRequests, event: persisted schedule request with request_token: b430d73"},{"event":"cmd_output","timestamp":1607098284,"output":"5-ee54-4f98-963a-89e51bbff91c, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_respo"},{"event":"cmd_output","timestamp":1607098284,"output":"nse/2(L55), \n\u001b[0m\u001b[22m\n16:11:24.189 [info] ppl_id: e16844f9-f5bd-425b-b368-ddb00b6f88f2, type: Pp"},{"event":"cmd_output","timestamp":1607098284,"output":"lRequests, event: persisted definition for request with request_token: b430d735-ee54-4f98-963a-89e51"},{"event":"cmd_output","timestamp":1607098284,"output":"bbff91c, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098284,"output":"2m\n16:11:24.189 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingState with name"},{"event":"cmd_output","timestamp":1607098284,"output":" Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up"},{"event":"cmd_output","timestamp":1607098284,"output":"\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"p"},{"event":"cmd_output","timestamp":1607098284,"output":"ending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"initiali"},{"event":"cmd_output","timestamp":1607098284,"output":"zing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, repo:"},{"event":"cmd_output","timestamp":1607098284,"output":" Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :"},{"event":"cmd_output","timestamp":1607098284,"output":"ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:24.190 [info] Perio"},{"event":"cmd_output","timestamp":1607098284,"output":"dic from module Elixir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler.Pending"},{"event":"cmd_output","timestamp":1607098284,"output":"State :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}"},{"event":"cmd_output","timestamp":1607098284,"output":", recurring args: %{allowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_sec: 0, "},{"event":"cmd_output","timestamp":1607098284,"output":"initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publisher_cb: #Function<0.8493005/1 i"},{"event":"cmd_output","timestamp":1607098284,"output":"n Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request,"},{"event":"cmd_output","timestamp":1607098284,"output":" :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervis"},{"event":"cmd_output","timestamp":1607098284,"output":"or: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:11:24.190 [info] Periodic from module Elixir.Ppl.Ppls.STMHan"},{"event":"cmd_output","timestamp":1607098284,"output":"dler.QueuingState with name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, metric_name: "},{"event":"cmd_output","timestamp":1607098284,"output":"{\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{allowed_states: [\""},{"event":"cmd_output","timestamp":1607098284,"output":"queuing\", \"running\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_sta"},{"event":"cmd_output","timestamp":1607098284,"output":"te: \"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.args/0>, re"},{"event":"cmd_output","timestamp":1607098284,"output":"po: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count"},{"event":"cmd_output","timestamp":1607098284,"output":", :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:24.191 [info] Pe"},{"event":"cmd_output","timestamp":1607098284,"output":"riodic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.S"},{"event":"cmd_output","timestamp":1607098284,"output":"TMHandler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-ST"},{"event":"cmd_output","timestamp":1607098284,"output":"MHandler-CreatedState\"]}, recurring args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: "},{"event":"cmd_output","timestamp":1607098284,"output":"0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip,"},{"event":"cmd_output","timestamp":1607098284,"output":" repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_co"},{"event":"cmd_output","timestamp":1607098284,"output":"unt, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:"},{"event":"cmd_output","timestamp":1607098284,"output":"24.192 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir"},{"event":"cmd_output","timestamp":1607098284,"output":".Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", ["},{"event":"cmd_output","timestamp":1607098284,"output":"\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"co"},{"event":"cmd_output","timestamp":1607098284,"output":"mpilation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observe"},{"event":"cmd_output","timestamp":1607098284,"output":"d_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :"},{"event":"cmd_output","timestamp":1607098284,"output":"updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, t"},{"event":"cmd_output","timestamp":1607098284,"output":"ask_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:24.193 [info] Periodic from module Elixir.Ppl.PplSubInits."},{"event":"cmd_output","timestamp":1607098284,"output":"STMHandler.CompilationState with name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: "},{"event":"cmd_output","timestamp":1607098284,"output":"100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recu"},{"event":"cmd_output","timestamp":1607098284,"output":"rring args: %{allowed_states: [\"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec:"},{"event":"cmd_output","timestamp":1607098284,"output":" -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"compilation\", publisher_cb: "},{"event":"cmd_output","timestamp":1607098284,"output":":skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recov"},{"event":"cmd_output","timestamp":1607098284,"output":"ery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098284,"output":"16:11:24.194 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with na"},{"event":"cmd_output","timestamp":1607098284,"output":"me Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder"},{"event":"cmd_output","timestamp":1607098284,"output":"-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurring args: %{allowed_states: [\"don"},{"event":"cmd_output","timestamp":1607098284,"output":"e\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular"},{"event":"cmd_output","timestamp":1607098284,"output":"_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :"},{"event":"cmd_output","timestamp":1607098284,"output":"state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_superviso"},{"event":"cmd_output","timestamp":1607098284,"output":"r: :skip}\n\u001b[0m\u001b[22m\n16:11:24.198 [info] Request: 'run: %{\"branch_id\" => \"63782614-5bfd-4362-92bf-"},{"event":"cmd_output","timestamp":1607098284,"output":"972eb059b18d\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"semaphore.ym"},{"event":"cmd_output","timestamp":1607098284,"output":"l\", \"hook_id\" => \"5afd995e-364b-11eb-ba8d-5254005464e2\", \"label\" => \"master\", \"organization_id\" => \""},{"event":"cmd_output","timestamp":1607098284,"output":"b5eb5268-256b-4df0-842e-4f53af07fd81\", \"owner\" => \"rt\", \"project_id\" => \"123\", \"repo_name\" => \"2_bas"},{"event":"cmd_output","timestamp":1607098284,"output":"ic\", \"request_token\" => \"5afd912a-364b-11eb-a828-5254005464e2\", \"requester_id\" => \"13d84db0-30d5-4ca"},{"event":"cmd_output","timestamp":1607098284,"output":"c-84bc-e86aa8b9a8b2\", \"service\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secr"},{"event":"cmd_output","timestamp":1607098284,"output":"et\"], \"wf_id\" => \"7c9264b5-28a6-4b1d-8711-75f6a72d4796\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098284,"output":"16:11:24.201 [info] ppl_id: 52ffd7c0-7f3c-4630-931c-d6d6b216a075, type: PplRequests, event: persist"},{"event":"cmd_output","timestamp":1607098284,"output":"ed schedule request with request_token: 5afd912a-364b-11eb-a828-5254005464e2, origin: Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098284,"output":"Requests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:11:24.205 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098284,"output":" 52ffd7c0-7f3c-4630-931c-d6d6b216a075, type: Ppls, state: initializing, event: initializing, recover"},{"event":"cmd_output","timestamp":1607098284,"output":"y_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:11:2"},{"event":"cmd_output","timestamp":1607098284,"output":"4.212 [info] Project 123 and branch masterlatest_wf details updated: \"wf_id: 7c9264b5-28a6-4b1d-871"},{"event":"cmd_output","timestamp":1607098284,"output":"1-75f6a72d4796, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:11:24.214 [info] Persisted ppl_sub_init for pipeline w"},{"event":"cmd_output","timestamp":1607098284,"output":"ith ppl_id: 52ffd7c0-7f3c-4630-931c-d6d6b216a075: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto"},{"event":"cmd_output","timestamp":1607098284,"output":".Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 1"},{"event":"cmd_output","timestamp":1607098284,"output":"37, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:11:24.212119], pipelin"},{"event":"cmd_output","timestamp":1607098284,"output":"e_requests: #Ecto.Association.NotLoaded, ppl_id: \"52ff"},{"event":"cmd_output","timestamp":1607098284,"output":"d7c0-7f3c-4630-931c-d6d6b216a075\", recovery_count: 0, result: nil, result_reason: nil, state: \"creat"},{"event":"cmd_output","timestamp":1607098284,"output":"ed\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:11:24.212127]"},{"event":"cmd_output","timestamp":1607098284,"output":"}\n\u001b[0m\u001b[22m\n16:11:24.227 [info] ppl_id: 52ffd7c0-7f3c-4630-931c-d6d6b216a075, type: PplRequests, "},{"event":"cmd_output","timestamp":1607098284,"output":"event: persisted source_args for pipeline: 52ffd7c0-7f3c-4630-931c-d6d6b216a075, origin: Elixir.Ppl."},{"event":"cmd_output","timestamp":1607098284,"output":"PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:11:24.230 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098284,"output":" 52ffd7c0-7f3c-4630-931c-d6d6b216a075, type: PplSubInits, state: fetching, event: exit_scheduling, r"},{"event":"cmd_output","timestamp":1607098284,"output":"ecovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:24.252 "},{"event":"cmd_output","timestamp":1607098284,"output":"[info] ppl_id: 52ffd7c0-7f3c-4630-931c-d6d6b216a075, type: PplSubInits, state: regular_init, event:"},{"event":"cmd_output","timestamp":1607098284,"output":" exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098284,"output":"[22m\n16:11:24.276 [info] ppl_id: 52ffd7c0-7f3c-4630-931c-d6d6b216a075, type: PplRequests, event: p"},{"event":"cmd_output","timestamp":1607098284,"output":"ersisted definition for request with request_token: 5afd912a-364b-11eb-a828-5254005464e2, origin: El"},{"event":"cmd_output","timestamp":1607098284,"output":"ixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:11:24.282 [i"},{"event":"cmd_output","timestamp":1607098284,"output":"nfo] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queu"},{"event":"cmd_output","timestamp":1607098284,"output":"es\">, inserted_at: ~N[2020-12-04 16:11:24.280149], name: \"master-.semaphore/semaphore.yml\", organiza"},{"event":"cmd_output","timestamp":1607098284,"output":"tion_id: \"b5eb5268-256b-4df0-842e-4f53af07fd81\", project_id: \"123\", queue_id: \"a9ce4ff1-36e6-43b8-85"},{"event":"cmd_output","timestamp":1607098284,"output":"2c-9306e16d22c0\", scope: \"project\", updated_at: ~N[2020-12-04 16:11:24.280161], user_generated: fals"},{"event":"cmd_output","timestamp":1607098284,"output":"e}}\n\u001b[0m\u001b[22m\n16:11:24.287 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.Regul"},{"event":"cmd_output","timestamp":1607098284,"output":"arInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:11:24.287 [info] ppl_id: 52ffd7c0-7f3c-4630-931c-d6d6b"},{"event":"cmd_output","timestamp":1607098284,"output":"216a075, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098284,"output":"igin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:11:24.289 "},{"event":"cmd_output","timestamp":1607098284,"output":"[info] ppl_id: 52ffd7c0-7f3c-4630-931c-d6d6b216a075, type: PplSubInits, state: done, result: passed"},{"event":"cmd_output","timestamp":1607098284,"output":", event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90),"},{"event":"cmd_output","timestamp":1607098284,"output":" \n\u001b[0m\u001b[22m\n16:11:24.304 [info] ppl_id: 52ffd7c0-7f3c-4630-931c-d6d6b216a075, type: Ppls, state: "},{"event":"cmd_output","timestamp":1607098284,"output":"pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/"},{"event":"cmd_output","timestamp":1607098284,"output":"1(L90), \n\u001b[0m\u001b[22m\n16:11:24.325 [info] ppl_id: 52ffd7c0-7f3c-4630-931c-d6d6b216a075, type: Ppls, "},{"event":"cmd_output","timestamp":1607098284,"output":"state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_"},{"event":"cmd_output","timestamp":1607098284,"output":"change/1(L90), \n\u001b[0m\u001b[22m\n16:11:24.340 [info] ppl_id: 52ffd7c0-7f3c-4630-931c-d6d6b216a075, type:"},{"event":"cmd_output","timestamp":1607098284,"output":" Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098284,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:24.430 [info] Request: 'run: %{\"branch_id\" => \"7e1a379c-3f"},{"event":"cmd_output","timestamp":1607098284,"output":"a5-4ee3-a938-7655f385cd92\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469\", \"file_name\" => "},{"event":"cmd_output","timestamp":1607098284,"output":"\"semaphore.yml\", \"hook_id\" => \"5b215272-364b-11eb-b58c-5254005464e2\", \"label\" => \"dev\", \"organizatio"},{"event":"cmd_output","timestamp":1607098284,"output":"n_id\" => \"895c1e9f-a982-484e-934c-74c10e7ebc64\", \"owner\" => \"rt\", \"project_id\" => \"123\", \"repo_name\""},{"event":"cmd_output","timestamp":1607098284,"output":" => \"2_basic\", \"request_token\" => \"5b214584-364b-11eb-8f39-5254005464e2\", \"requester_id\" => \"fd54747"},{"event":"cmd_output","timestamp":1607098284,"output":"0-4a30-4422-90d6-37079357b27e\", \"service\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"c"},{"event":"cmd_output","timestamp":1607098284,"output":"lient_secret\"], \"wf_id\" => \"792ecbf9-e959-47d4-a56b-20b5405bd757\", \"working_dir\" => \".semaphore\"}\n\u001b"},{"event":"cmd_output","timestamp":1607098284,"output":"[0m\u001b[22m\n16:11:24.433 [info] ppl_id: 032500cd-9849-4398-a777-bdfe804af94e, type: PplRequests, even"},{"event":"cmd_output","timestamp":1607098284,"output":"t: persisted schedule request with request_token: 5b214584-364b-11eb-8f39-5254005464e2, origin: Elix"},{"event":"cmd_output","timestamp":1607098284,"output":"ir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:11:24.436 [info"},{"event":"cmd_output","timestamp":1607098284,"output":"] ppl_id: 032500cd-9849-4398-a777-bdfe804af94e, type: Ppls, state: initializing, event: initializin"},{"event":"cmd_output","timestamp":1607098284,"output":"g, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098284,"output":"m\n16:11:24.439 [info] Project 123 and branch masterlatest_wf details updated: \"wf_id: 792ecbf9-e95"},{"event":"cmd_output","timestamp":1607098284,"output":"9-47d4-a56b-20b5405bd757, wf_number: 2\"\n\u001b[0m\u001b[22m\n16:11:24.442 [info] Persisted ppl_sub_init for "},{"event":"cmd_output","timestamp":1607098284,"output":"pipeline with ppl_id: 032500cd-9849-4398-a777-bdfe804af94e: %Ppl.PplSubInits.Model.PplSubInits{__met"},{"event":"cmd_output","timestamp":1607098284,"output":"a__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: "},{"event":"cmd_output","timestamp":1607098284,"output":"nil, id: 138, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:11:24.439792"},{"event":"cmd_output","timestamp":1607098284,"output":"], pipeline_requests: #Ecto.Association.NotLoaded, ppl"},{"event":"cmd_output","timestamp":1607098284,"output":"_id: \"032500cd-9849-4398-a777-bdfe804af94e\", recovery_count: 0, result: nil, result_reason: nil, sta"},{"event":"cmd_output","timestamp":1607098284,"output":"te: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:11:"},{"event":"cmd_output","timestamp":1607098284,"output":"24.439803]}\n\u001b[0m\u001b[22m\n16:11:24.455 [info] ppl_id: 032500cd-9849-4398-a777-bdfe804af94e, type: Ppl"},{"event":"cmd_output","timestamp":1607098284,"output":"Requests, event: persisted source_args for pipeline: 032500cd-9849-4398-a777-bdfe804af94e, origin: E"},{"event":"cmd_output","timestamp":1607098284,"output":"lixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:11:24.457 [info"},{"event":"cmd_output","timestamp":1607098284,"output":"] ppl_id: 032500cd-9849-4398-a777-bdfe804af94e, type: PplSubInits, state: fetching, event: exit_sch"},{"event":"cmd_output","timestamp":1607098284,"output":"eduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098284,"output":"11:24.483 [info] ppl_id: 032500cd-9849-4398-a777-bdfe804af94e, type: PplSubInits, state: regular_in"},{"event":"cmd_output","timestamp":1607098284,"output":"it, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90"},{"event":"cmd_output","timestamp":1607098284,"output":"), \n\u001b[0m\u001b[22m\n16:11:24.506 [info] ppl_id: 032500cd-9849-4398-a777-bdfe804af94e, type: PplRequests"},{"event":"cmd_output","timestamp":1607098284,"output":", event: persisted definition for request with request_token: 5b214584-364b-11eb-8f39-5254005464e2, "},{"event":"cmd_output","timestamp":1607098284,"output":"origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:11"},{"event":"cmd_output","timestamp":1607098284,"output":":24.509 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loa"},{"event":"cmd_output","timestamp":1607098284,"output":"ded, \"queues\">, inserted_at: ~N[2020-12-04 16:11:24.508057], name: \"dev-.semaphore/semaphore.yml\", o"},{"event":"cmd_output","timestamp":1607098284,"output":"rganization_id: \"895c1e9f-a982-484e-934c-74c10e7ebc64\", project_id: \"123\", queue_id: \"0990318f-0b58-"},{"event":"cmd_output","timestamp":1607098284,"output":"4b08-b614-bd22fdba1892\", scope: \"project\", updated_at: ~N[2020-12-04 16:11:24.508070], user_generate"},{"event":"cmd_output","timestamp":1607098284,"output":"d: false}}\n\u001b[0m\u001b[22m\n16:11:24.517 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandle"},{"event":"cmd_output","timestamp":1607098284,"output":"r.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:11:24.517 [info] ppl_id: 032500cd-9849-4398-a77"},{"event":"cmd_output","timestamp":1607098284,"output":"7-bdfe804af94e, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count"},{"event":"cmd_output","timestamp":1607098284,"output":": 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:11:"},{"event":"cmd_output","timestamp":1607098284,"output":"24.519 [info] ppl_id: 032500cd-9849-4398-a777-bdfe804af94e, type: PplSubInits, state: done, result:"},{"event":"cmd_output","timestamp":1607098284,"output":" passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/"},{"event":"cmd_output","timestamp":1607098284,"output":"1(L90), \n\u001b[0m\u001b[22m\n16:11:24.539 [info] ppl_id: 032500cd-9849-4398-a777-bdfe804af94e, type: Ppls, "},{"event":"cmd_output","timestamp":1607098284,"output":"state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_"},{"event":"cmd_output","timestamp":1607098284,"output":"change/1(L90), \n\u001b[0m\u001b[22m\n16:11:24.549 [info] ppl_id: 032500cd-9849-4398-a777-bdfe804af94e, type:"},{"event":"cmd_output","timestamp":1607098284,"output":" Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098284,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:24.561 [info] ppl_id: 032500cd-9849-4398-a777-bdfe804af94e"},{"event":"cmd_output","timestamp":1607098284,"output":", type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.I"},{"event":"cmd_output","timestamp":1607098284,"output":"mpl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:24.658 [info] Request: 'run: %{\"branch_id\" => \"64da"},{"event":"cmd_output","timestamp":1607098284,"output":"dea4-ea64-4bd6-bc29-7faeaa079112\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469\", \"file_na"},{"event":"cmd_output","timestamp":1607098284,"output":"me\" => \"semaphore.yml\", \"hook_id\" => \"5b4401dc-364b-11eb-8261-5254005464e2\", \"label\" => \"dev\", \"orga"},{"event":"cmd_output","timestamp":1607098284,"output":"nization_id\" => \"157ce0df-1346-47ca-853f-e795c89314ef\", \"owner\" => \"rt\", \"project_id\" => \"123\", \"rep"},{"event":"cmd_output","timestamp":1607098284,"output":"o_name\" => \"2_basic\", \"request_token\" => \"5b43f4d0-364b-11eb-989f-5254005464e2\", \"requester_id\" => \""},{"event":"cmd_output","timestamp":1607098284,"output":"5687e77e-0267-4f6e-9e7f-9284d988243c\", \"service\" => \"local\", \"suppressed_attributes\" => [\"access_tok"},{"event":"cmd_output","timestamp":1607098284,"output":"en\", \"client_secret\"], \"wf_id\" => \"3017e44f-815b-455b-94c2-bc9046b8d371\", \"working_dir\" => \".semapho"},{"event":"cmd_output","timestamp":1607098284,"output":"re\"}\n\u001b[0m\u001b[22m\n16:11:24.660 [info] ppl_id: 1e3647ae-9f22-4b38-8ef1-ebc659820315, type: PplRequest"},{"event":"cmd_output","timestamp":1607098284,"output":"s, event: persisted schedule request with request_token: 5b43f4d0-364b-11eb-989f-5254005464e2, origi"},{"event":"cmd_output","timestamp":1607098284,"output":"n: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:11:24.66"},{"event":"cmd_output","timestamp":1607098284,"output":"3 [info] ppl_id: 1e3647ae-9f22-4b38-8ef1-ebc659820315, type: Ppls, state: initializing, event: init"},{"event":"cmd_output","timestamp":1607098284,"output":"ializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b"},{"event":"cmd_output","timestamp":1607098284,"output":"[0m\u001b[22m\n16:11:24.666 [info] Project 123 and branch masterlatest_wf details updated: \"wf_id: 3017e"},{"event":"cmd_output","timestamp":1607098284,"output":"44f-815b-455b-94c2-bc9046b8d371, wf_number: 3\"\n\u001b[0m\u001b[22m\n16:11:24.668 [info] Persisted ppl_sub_in"},{"event":"cmd_output","timestamp":1607098284,"output":"it for pipeline with ppl_id: 1e3647ae-9f22-4b38-8ef1-ebc659820315: %Ppl.PplSubInits.Model.PplSubInit"},{"event":"cmd_output","timestamp":1607098284,"output":"s{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_descri"},{"event":"cmd_output","timestamp":1607098284,"output":"ption: nil, id: 139, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:11:24"},{"event":"cmd_output","timestamp":1607098284,"output":".666567], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"1e3647ae-9f22-4b38-8ef1-ebc659820315\", recovery_count: 0, result: nil, result_reason: n"},{"event":"cmd_output","timestamp":1607098284,"output":"il, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04"},{"event":"cmd_output","timestamp":1607098284,"output":" 16:11:24.666578]}\n\u001b[0m\u001b[22m\n16:11:24.685 [info] ppl_id: 1e3647ae-9f22-4b38-8ef1-ebc659820315, ty"},{"event":"cmd_output","timestamp":1607098284,"output":"pe: PplRequests, event: persisted source_args for pipeline: 1e3647ae-9f22-4b38-8ef1-ebc659820315, or"},{"event":"cmd_output","timestamp":1607098284,"output":"igin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:11:24.68"},{"event":"cmd_output","timestamp":1607098284,"output":"8 [info] ppl_id: 1e3647ae-9f22-4b38-8ef1-ebc659820315, type: PplSubInits, state: fetching, event: e"},{"event":"cmd_output","timestamp":1607098284,"output":"xit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098284,"output":"2m\n16:11:24.713 [info] ppl_id: 1e3647ae-9f22-4b38-8ef1-ebc659820315, type: PplSubInits, state: reg"},{"event":"cmd_output","timestamp":1607098284,"output":"ular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chang"},{"event":"cmd_output","timestamp":1607098284,"output":"e/1(L90), \n\u001b[0m\u001b[22m\n16:11:24.743 [info] ppl_id: 1e3647ae-9f22-4b38-8ef1-ebc659820315, type: PplR"},{"event":"cmd_output","timestamp":1607098284,"output":"equests, event: persisted definition for request with request_token: 5b43f4d0-364b-11eb-989f-5254005"},{"event":"cmd_output","timestamp":1607098284,"output":"464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098284,"output":"\n16:11:24.748 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.al"},{"event":"cmd_output","timestamp":1607098284,"output":"l_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:11:24.748 [info] ppl_id: 1e3647ae-9f22-4b38-8ef1-ebc659820315, type:"},{"event":"cmd_output","timestamp":1607098284,"output":" PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.P"},{"event":"cmd_output","timestamp":1607098284,"output":"pl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:11:24.750 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098284,"output":": 1e3647ae-9f22-4b38-8ef1-ebc659820315, type: PplSubInits, state: done, result: passed, event: exit_"},{"event":"cmd_output","timestamp":1607098284,"output":"scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098284,"output":"16:11:24.763 [info] ppl_id: 1e3647ae-9f22-4b38-8ef1-ebc659820315, type: Ppls, state: pending, event"},{"event":"cmd_output","timestamp":1607098284,"output":": exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098284,"output":"\u001b[22m\n16:11:24.777 [info] ppl_id: 1e3647ae-9f22-4b38-8ef1-ebc659820315, type: Ppls, state: queuing"},{"event":"cmd_output","timestamp":1607098284,"output":", event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90),"},{"event":"cmd_output","timestamp":1607098284,"output":" \n\u001b[0m\u001b[32m\r * test ppls_from_same_queue_in_states() only looks for ppls from same queue (786.3ms)"},{"event":"cmd_output","timestamp":1607098284,"output":"\u001b[0m\n * test get pipeline in stopping and move it to scheduling\r * test get pipeline in stopping "},{"event":"cmd_output","timestamp":1607098284,"output":"and move it to scheduling (skipped)\n * test move pipeline from pending to queuing\r * test move pi"},{"event":"cmd_output","timestamp":1607098284,"output":"peline from pending to queuing (skipped)\n * test set termination flags for all pipelines from give"},{"event":"cmd_output","timestamp":1607098284,"output":"n organization\r * test set termination flags for all pipelines from given organization (skipped)\n "},{"event":"cmd_output","timestamp":1607098284,"output":" * test set termination flags for all pipelines from given branch of given project\r * test set term"},{"event":"cmd_output","timestamp":1607098284,"output":"ination flags for all pipelines from given branch of given project (skipped)\n * test move pipeline"},{"event":"cmd_output","timestamp":1607098284,"output":" from running to done\r * test move pipeline from running to done (skipped)\n * test move pipeline "},{"event":"cmd_output","timestamp":1607098284,"output":"from initializing-scheduling to pending\r * test move pipeline from initializing-scheduling to pendi"},{"event":"cmd_output","timestamp":1607098284,"output":"ng (skipped)\n * test get pipeline in pending and move it to scheduling\r * test get pipeline in pe"},{"event":"cmd_output","timestamp":1607098284,"output":"nding and move it to scheduling (skipped)\n * test insert new pipeline from github pipeline service"},{"event":"cmd_output","timestamp":1607098284,"output":"\r * test insert new pipeline from github pipeline service (skipped)\n * test list pipelines from g"},{"event":"cmd_output","timestamp":1607098284,"output":"iven branch on given project and receive paginated result\r * test list pipelines from given branch "},{"event":"cmd_output","timestamp":1607098284,"output":"on given project and receive paginated result (skipped)\n * test list pipelines result is paginated"},{"event":"cmd_output","timestamp":1607098284,"output":" and orderd by desc creation time\r * test list pipelines result is paginated and orderd by desc cre"},{"event":"cmd_output","timestamp":1607098284,"output":"ation time (skipped)\n * test recover pipelines stuck in scheduling\r * test recover pipelines stuc"},{"event":"cmd_output","timestamp":1607098284,"output":"k in scheduling (skipped)\n * test get pipeline in initializing and move it to scheduling\r * test "},{"event":"cmd_output","timestamp":1607098284,"output":"get pipeline in initializing and move it to scheduling (skipped)\n * test updated_at change on upda"},{"event":"cmd_output","timestamp":1607098284,"output":"te_all() call\r * test updated_at change on update_all() call (skipped)\n * test insert new pipelin"},{"event":"cmd_output","timestamp":1607098284,"output":"e for non-existent pipeline service\r * test insert new pipeline for non-existent pipeline service ("},{"event":"cmd_output","timestamp":1607098284,"output":"skipped)\n * test pipeline insert is idempotent operation in regard to ppl_id\r * test pipeline ins"},{"event":"cmd_output","timestamp":1607098284,"output":"ert is idempotent operation in regard to ppl_id (skipped)\n * test move pipeline from queuing to ru"},{"event":"cmd_output","timestamp":1607098284,"output":"nning\r * test move pipeline from queuing to running (skipped)\n * test get running pipeline from s"},{"event":"cmd_output","timestamp":1607098284,"output":"ame queue\u001b[22m\n16:11:24.973 [info] ppl_id: 038b5ca9-07d9-4413-a0e0-42bbba9c20c5, type: PplRequests"},{"event":"cmd_output","timestamp":1607098284,"output":", event: persisted schedule request with request_token: 5b73f68a-364b-11eb-b157-5254005464e2, origin"},{"event":"cmd_output","timestamp":1607098284,"output":": Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:11:24.977"},{"event":"cmd_output","timestamp":1607098284,"output":" [info] ppl_id: 038b5ca9-07d9-4413-a0e0-42bbba9c20c5, type: PplRequests, event: persisted definitio"},{"event":"cmd_output","timestamp":1607098284,"output":"n for request with request_token: 5b73f68a-364b-11eb-b157-5254005464e2, origin: Elixir.Ppl.PplReques"},{"event":"cmd_output","timestamp":1607098284,"output":"ts.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:11:24.980 [info] ppl_id: 1229"},{"event":"cmd_output","timestamp":1607098284,"output":"7834-6634-4061-ae95-ab6c12e653d8, type: PplRequests, event: persisted schedule request with request_"},{"event":"cmd_output","timestamp":1607098284,"output":"token: 15cf70e0-1832-4f62-8c37-a0da4382833c, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries"},{"event":"cmd_output","timestamp":1607098284,"output":".process_response/2(L55), \n\u001b[0m\u001b[22m\n16:11:24.982 [info] ppl_id: 12297834-6634-4061-ae95-ab6c12e6"},{"event":"cmd_output","timestamp":1607098284,"output":"53d8, type: PplRequests, event: persisted definition for request with request_token: 15cf70e0-1832-4"},{"event":"cmd_output","timestamp":1607098284,"output":"f62-8c37-a0da4382833c, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L"},{"event":"cmd_output","timestamp":1607098284,"output":"76), \n\u001b[0m\u001b[22m\n16:11:24.982 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingS"},{"event":"cmd_output","timestamp":1607098284,"output":"tate with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.be"},{"event":"cmd_output","timestamp":1607098284,"output":"holder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"ini"},{"event":"cmd_output","timestamp":1607098284,"output":"tializing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_st"},{"event":"cmd_output","timestamp":1607098284,"output":"ate: \"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState."},{"event":"cmd_output","timestamp":1607098284,"output":"args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :rec"},{"event":"cmd_output","timestamp":1607098284,"output":"overy_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:24.983"},{"event":"cmd_output","timestamp":1607098284,"output":" [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMH"},{"event":"cmd_output","timestamp":1607098284,"output":"andler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-P"},{"event":"cmd_output","timestamp":1607098284,"output":"endingState\"]}, recurring args: %{allowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], cooling"},{"event":"cmd_output","timestamp":1607098284,"output":"_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publisher_cb: #Function"},{"event":"cmd_output","timestamp":1607098284,"output":"<0.8493005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :term"},{"event":"cmd_output","timestamp":1607098284,"output":"inate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls,"},{"event":"cmd_output","timestamp":1607098284,"output":" task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:11:24.983 [info] Periodic from module Elixir.P"},{"event":"cmd_output","timestamp":1607098284,"output":"pl.Ppls.STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms,"},{"event":"cmd_output","timestamp":1607098284,"output":" metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{allo"},{"event":"cmd_output","timestamp":1607098284,"output":"wed_states: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls"},{"event":"cmd_output","timestamp":1607098284,"output":", observed_state: \"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingSta"},{"event":"cmd_output","timestamp":1607098284,"output":"te.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :"},{"event":"cmd_output","timestamp":1607098284,"output":"recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:24."},{"event":"cmd_output","timestamp":1607098284,"output":"983 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedState with name Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098284,"output":".PplSubInits.STMHandler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-"},{"event":"cmd_output","timestamp":1607098284,"output":"PplSubInits-STMHandler-CreatedState\"]}, recurring args: %{allowed_states: [\"fetching\", \"done\"], cool"},{"event":"cmd_output","timestamp":1607098284,"output":"ing_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"created\", publis"},{"event":"cmd_output","timestamp":1607098284,"output":"her_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result"},{"event":"cmd_output","timestamp":1607098284,"output":", :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0"},{"event":"cmd_output","timestamp":1607098284,"output":"m\u001b[22m\n16:11:24.983 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.FetchingState wi"},{"event":"cmd_output","timestamp":1607098284,"output":"th name Elixir.Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 ms, metric_name: {\"Ppl.behold"},{"event":"cmd_output","timestamp":1607098284,"output":"er-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %{allowed_states: [\"regu"},{"event":"cmd_output","timestamp":1607098284,"output":"lar_init\", \"compilation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSub"},{"event":"cmd_output","timestamp":1607098284,"output":"Inits, observed_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :termin"},{"event":"cmd_output","timestamp":1607098284,"output":"ate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model."},{"event":"cmd_output","timestamp":1607098284,"output":"PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:24.983 [info] Periodic from module Elixir.Pp"},{"event":"cmd_output","timestamp":1607098284,"output":"l.PplSubInits.STMHandler.CompilationState with name Elixir.Ppl.PplSubInits.STMHandler.CompilationSta"},{"event":"cmd_output","timestamp":1607098284,"output":"te :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-Compilation"},{"event":"cmd_output","timestamp":1607098284,"output":"State\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"stopping\", \"done\"], coo"},{"event":"cmd_output","timestamp":1607098284,"output":"ling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"compilation\", "},{"event":"cmd_output","timestamp":1607098284,"output":"publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :"},{"event":"cmd_output","timestamp":1607098284,"output":"result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip"},{"event":"cmd_output","timestamp":1607098284,"output":"}\n\u001b[0m\u001b[22m\n16:11:24.983 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.RegularIni"},{"event":"cmd_output","timestamp":1607098284,"output":"tState with name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period: 100 ms, metric_name: "},{"event":"cmd_output","timestamp":1607098284,"output":"{\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurring args: %{allowed"},{"event":"cmd_output","timestamp":1607098284,"output":"_states: [\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_s"},{"event":"cmd_output","timestamp":1607098284,"output":"tate: \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, "},{"event":"cmd_output","timestamp":1607098284,"output":":updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, "},{"event":"cmd_output","timestamp":1607098284,"output":"task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:24.989 [info] Request: 'run: %{\"branch_id\" => \"23310e9c-e"},{"event":"cmd_output","timestamp":1607098284,"output":"05a-4b5d-bbe6-795cd34913f4\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469\", \"file_name\" =>"},{"event":"cmd_output","timestamp":1607098284,"output":" \"semaphore.yml\", \"hook_id\" => \"5b762d38-364b-11eb-8110-5254005464e2\", \"label\" => \"master\", \"organiz"},{"event":"cmd_output","timestamp":1607098284,"output":"ation_id\" => \"de872741-2fc4-47d1-b676-28fbb7a756bc\", \"owner\" => \"rt\", \"project_id\" => \"123\", \"repo_n"},{"event":"cmd_output","timestamp":1607098284,"output":"ame\" => \"2_basic\", \"request_token\" => \"5b76228e-364b-11eb-ba14-5254005464e2\", \"requester_id\" => \"6f6"},{"event":"cmd_output","timestamp":1607098284,"output":"0e53d-fea9-43bc-930f-7ac299d0aa54\", \"service\" => \"local\", \"suppressed_attributes\" => [\"access_token\""},{"event":"cmd_output","timestamp":1607098284,"output":", \"client_secret\"], \"wf_id\" => \"e57bf6f0-74f6-4fe0-82f3-fec4613d8433\", \"working_dir\" => \".semaphore\""},{"event":"cmd_output","timestamp":1607098284,"output":"}\n\u001b[0m\u001b[22m\n16:11:24.991 [info] ppl_id: cfbcb7db-9565-49a7-8a8e-59b2594f640e, type: PplRequests, "},{"event":"cmd_output","timestamp":1607098284,"output":"event: persisted schedule request with request_token: 5b76228e-364b-11eb-ba14-5254005464e2, origin: "},{"event":"cmd_output","timestamp":1607098284,"output":"Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:11:24.995 ["},{"event":"cmd_output","timestamp":1607098284,"output":"info] ppl_id: cfbcb7db-9565-49a7-8a8e-59b2594f640e, type: Ppls, state: initializing, event: initial"},{"event":"cmd_output","timestamp":1607098284,"output":"izing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098285,"output":"\u001b[22m\n16:11:25.002 [info] Project 123 and branch masterlatest_wf details updated: \"wf_id: e57bf6f0"},{"event":"cmd_output","timestamp":1607098285,"output":"-74f6-4fe0-82f3-fec4613d8433, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:11:25.005 [info] Persisted ppl_sub_init "},{"event":"cmd_output","timestamp":1607098285,"output":"for pipeline with ppl_id: cfbcb7db-9565-49a7-8a8e-59b2594f640e: %Ppl.PplSubInits.Model.PplSubInits{_"},{"event":"cmd_output","timestamp":1607098285,"output":"_meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_descripti"},{"event":"cmd_output","timestamp":1607098285,"output":"on: nil, id: 140, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:11:25.00"},{"event":"cmd_output","timestamp":1607098285,"output":"2259], pipeline_requests: #Ecto.Association.NotLoaded,"},{"event":"cmd_output","timestamp":1607098285,"output":" ppl_id: \"cfbcb7db-9565-49a7-8a8e-59b2594f640e\", recovery_count: 0, result: nil, result_reason: nil,"},{"event":"cmd_output","timestamp":1607098285,"output":" state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16"},{"event":"cmd_output","timestamp":1607098285,"output":":11:25.002271]}\n\u001b[0m\u001b[22m\n16:11:25.025 [info] ppl_id: cfbcb7db-9565-49a7-8a8e-59b2594f640e, type:"},{"event":"cmd_output","timestamp":1607098285,"output":" PplRequests, event: persisted source_args for pipeline: cfbcb7db-9565-49a7-8a8e-59b2594f640e, origi"},{"event":"cmd_output","timestamp":1607098285,"output":"n: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:11:25.033 ["},{"event":"cmd_output","timestamp":1607098285,"output":"info] ppl_id: cfbcb7db-9565-49a7-8a8e-59b2594f640e, type: PplSubInits, state: fetching, event: exit"},{"event":"cmd_output","timestamp":1607098285,"output":"_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098285,"output":"\n16:11:25.057 [info] ppl_id: cfbcb7db-9565-49a7-8a8e-59b2594f640e, type: PplSubInits, state: regula"},{"event":"cmd_output","timestamp":1607098285,"output":"r_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1"},{"event":"cmd_output","timestamp":1607098285,"output":"(L90), \n\u001b[0m\u001b[22m\n16:11:25.094 [info] ppl_id: cfbcb7db-9565-49a7-8a8e-59b2594f640e, type: PplRequ"},{"event":"cmd_output","timestamp":1607098285,"output":"ests, event: persisted definition for request with request_token: 5b76228e-364b-11eb-ba14-5254005464"},{"event":"cmd_output","timestamp":1607098285,"output":"e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098285,"output":"6:11:25.100 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<"},{"event":"cmd_output","timestamp":1607098285,"output":":loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:11:25.098857], name: \"master-.semaphore/semaphore."},{"event":"cmd_output","timestamp":1607098285,"output":"yml\", organization_id: \"de872741-2fc4-47d1-b676-28fbb7a756bc\", project_id: \"123\", queue_id: \"8f26c3d"},{"event":"cmd_output","timestamp":1607098285,"output":"b-e339-4d80-9098-5b8f923a6cd4\", scope: \"project\", updated_at: ~N[2020-12-04 16:11:25.098869], user_g"},{"event":"cmd_output","timestamp":1607098285,"output":"enerated: false}}\n\u001b[0m\u001b[22m\n16:11:25.110 [info] event: created, origin: Elixir.Ppl.PplSubInits.ST"},{"event":"cmd_output","timestamp":1607098285,"output":"MHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:11:25.110 [info] ppl_id: cfbcb7db-9565-4"},{"event":"cmd_output","timestamp":1607098285,"output":"9a7-8a8e-59b2594f640e, type: PplBlocks, block_index: 0, state: initializing, event: created, recover"},{"event":"cmd_output","timestamp":1607098285,"output":"y_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098285,"output":"\n16:11:25.113 [info] ppl_id: cfbcb7db-9565-49a7-8a8e-59b2594f640e, type: PplSubInits, state: done, "},{"event":"cmd_output","timestamp":1607098285,"output":"result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_"},{"event":"cmd_output","timestamp":1607098285,"output":"change/1(L90), \n\u001b[0m\u001b[22m\n16:11:25.123 [info] ppl_id: cfbcb7db-9565-49a7-8a8e-59b2594f640e, type:"},{"event":"cmd_output","timestamp":1607098285,"output":" Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098285,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:25.131 [info] ppl_id: cfbcb7db-9565-49a7-8a8e-59b2594f640e"},{"event":"cmd_output","timestamp":1607098285,"output":", type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.I"},{"event":"cmd_output","timestamp":1607098285,"output":"mpl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:25.139 [info] ppl_id: cfbcb7db-9565-49a7-8a8e-59b25"},{"event":"cmd_output","timestamp":1607098285,"output":"94f640e, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loope"},{"event":"cmd_output","timestamp":1607098285,"output":"r.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:25.223 [info] Request: 'run: %{\"branch_id\" ="},{"event":"cmd_output","timestamp":1607098285,"output":"> \"2555a142-0220-4929-aea9-7e2b46d59661\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469\", \""},{"event":"cmd_output","timestamp":1607098285,"output":"file_name\" => \"semaphore.yml\", \"hook_id\" => \"5b9a1ef0-364b-11eb-82f6-5254005464e2\", \"label\" => \"mast"},{"event":"cmd_output","timestamp":1607098285,"output":"er\", \"organization_id\" => \"6b3066ea-de85-4a65-bb12-2a9b43af5551\", \"owner\" => \"rt\", \"project_id\" => \""},{"event":"cmd_output","timestamp":1607098285,"output":"123\", \"repo_name\" => \"2_basic\", \"request_token\" => \"5b9a1126-364b-11eb-92bf-5254005464e2\", \"requeste"},{"event":"cmd_output","timestamp":1607098285,"output":"r_id\" => \"692395b7-23a8-4e5b-b105-d40ac9da22ab\", \"service\" => \"local\", \"suppressed_attributes\" => [\""},{"event":"cmd_output","timestamp":1607098285,"output":"access_token\", \"client_secret\"], \"wf_id\" => \"4d9626a3-f1ef-4c65-a0cc-720c63348c54\", \"working_dir\" =>"},{"event":"cmd_output","timestamp":1607098285,"output":" \".semaphore\"}\n\u001b[0m\u001b[22m\n16:11:25.225 [info] ppl_id: 16a23700-a7ae-42b7-a0ac-f722be53ec28, type: "},{"event":"cmd_output","timestamp":1607098285,"output":"PplRequests, event: persisted schedule request with request_token: 5b9a1126-364b-11eb-92bf-525400546"},{"event":"cmd_output","timestamp":1607098285,"output":"4e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098285,"output":"6:11:25.227 [info] ppl_id: 16a23700-a7ae-42b7-a0ac-f722be53ec28, type: Ppls, state: initializing, e"},{"event":"cmd_output","timestamp":1607098285,"output":"vent: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2("},{"event":"cmd_output","timestamp":1607098285,"output":"L124), \n\u001b[0m\u001b[22m\n16:11:25.231 [info] Project 123 and branch masterlatest_wf details updated: \"wf"},{"event":"cmd_output","timestamp":1607098285,"output":"_id: 4d9626a3-f1ef-4c65-a0cc-720c63348c54, wf_number: 2\"\n\u001b[0m\u001b[22m\n16:11:25.233 [info] Persisted "},{"event":"cmd_output","timestamp":1607098285,"output":"ppl_sub_init for pipeline with ppl_id: 16a23700-a7ae-42b7-a0ac-f722be53ec28: %Ppl.PplSubInits.Model."},{"event":"cmd_output","timestamp":1607098285,"output":"PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, er"},{"event":"cmd_output","timestamp":1607098285,"output":"ror_description: nil, id: 141, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-0"},{"event":"cmd_output","timestamp":1607098285,"output":"4 16:11:25.231481], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"16a23700-a7ae-42b7-a0ac-f722be53ec28\", recovery_count: 0, result: nil, result"},{"event":"cmd_output","timestamp":1607098285,"output":"_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N["},{"event":"cmd_output","timestamp":1607098285,"output":"2020-12-04 16:11:25.231492]}\n\u001b[0m\u001b[22m\n16:11:25.257 [info] ppl_id: 16a23700-a7ae-42b7-a0ac-f722be"},{"event":"cmd_output","timestamp":1607098285,"output":"53ec28, type: PplRequests, event: persisted source_args for pipeline: 16a23700-a7ae-42b7-a0ac-f722be"},{"event":"cmd_output","timestamp":1607098285,"output":"53ec28, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098285,"output":"6:11:25.260 [info] ppl_id: 16a23700-a7ae-42b7-a0ac-f722be53ec28, type: PplSubInits, state: fetching"},{"event":"cmd_output","timestamp":1607098285,"output":", event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90),"},{"event":"cmd_output","timestamp":1607098285,"output":" \n\u001b[0m\u001b[22m\n16:11:25.282 [info] ppl_id: 16a23700-a7ae-42b7-a0ac-f722be53ec28, type: PplSubInits, "},{"event":"cmd_output","timestamp":1607098285,"output":"state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_s"},{"event":"cmd_output","timestamp":1607098285,"output":"tate_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:25.302 [info] ppl_id: 16a23700-a7ae-42b7-a0ac-f722be53ec28, "},{"event":"cmd_output","timestamp":1607098285,"output":"type: PplRequests, event: persisted definition for request with request_token: 5b9a1126-364b-11eb-92"},{"event":"cmd_output","timestamp":1607098285,"output":"bf-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \r"},{"event":"cmd_output","timestamp":1607098285,"output":"\n\u001b[0m\u001b[22m\n16:11:25.310 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularIn"},{"event":"cmd_output","timestamp":1607098285,"output":"itState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:11:25.310 [info] ppl_id: 16a23700-a7ae-42b7-a0ac-f722be53e"},{"event":"cmd_output","timestamp":1607098285,"output":"c28, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098285,"output":": Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:11:25.311 [inf"},{"event":"cmd_output","timestamp":1607098285,"output":"o] ppl_id: 16a23700-a7ae-42b7-a0ac-f722be53ec28, type: PplSubInits, state: done, result: passed, ev"},{"event":"cmd_output","timestamp":1607098285,"output":"ent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b"},{"event":"cmd_output","timestamp":1607098285,"output":"[0m\u001b[22m\n16:11:25.318 [info] ppl_id: 16a23700-a7ae-42b7-a0ac-f722be53ec28, type: Ppls, state: pend"},{"event":"cmd_output","timestamp":1607098285,"output":"ing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L9"},{"event":"cmd_output","timestamp":1607098285,"output":"0), \n\u001b[0m\u001b[22m\n16:11:25.336 [info] ppl_id: 16a23700-a7ae-42b7-a0ac-f722be53ec28, type: Ppls, stat"},{"event":"cmd_output","timestamp":1607098285,"output":"e: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chan"},{"event":"cmd_output","timestamp":1607098285,"output":"ge/1(L90), \n\u001b[0m\u001b[32m\r * test get running pipeline from same queue (459.4ms)\u001b[0m\n\nPpl.Ppls.STMHa"},{"event":"cmd_output","timestamp":1607098285,"output":"ndler.EventPublishing.Test\n * test all events are emmited for passed pipeline\u001b[22m\n16:11:25.470 ["},{"event":"cmd_output","timestamp":1607098285,"output":"info] Opening new connection {:ok, %AMQP.Connection{pid: #PID<0.20188.0>}} for id: default\n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098285,"output":"2m\n16:11:25.487 [info] Binding 'test.initializing' to 'pipeline_state_exchange' with 'initializing"},{"event":"cmd_output","timestamp":1607098285,"output":"' routing keys\n\u001b[0m\u001b[22m\n16:11:25.493 [info] Creating queue 'test.initializing'\n\u001b[0m\u001b[22m\n16:11"},{"event":"cmd_output","timestamp":1607098285,"output":":25.494 [info] Creating dead queue 'test.initializing.dead'\n\u001b[0m\u001b[22m\n16:11:25.498 [info] Creati"},{"event":"cmd_output","timestamp":1607098285,"output":"ng delay queue 'test.initializing.delay.10'\n\u001b[0m\u001b[22m\n16:11:25.502 [info] Binding 'test.initializ"},{"event":"cmd_output","timestamp":1607098285,"output":"ing' to 'test.initializing' with 'initializing' routing keys\n\u001b[0m\u001b[22m\n16:11:25.509 [info] Openin"},{"event":"cmd_output","timestamp":1607098285,"output":"g new connection {:ok, %AMQP.Connection{pid: #PID<0.20203.0>}} for id: default\n\u001b[0m\u001b[22m\n16:11:25."},{"event":"cmd_output","timestamp":1607098285,"output":"513 [info] Binding 'test.pending' to 'pipeline_state_exchange' with 'pending' routing keys\n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098285,"output":"2m\n16:11:25.515 [info] Creating queue 'test.pending'\n\u001b[0m\u001b[22m\n16:11:25.516 [info] Creating dea"},{"event":"cmd_output","timestamp":1607098285,"output":"d queue 'test.pending.dead'\n\u001b[0m\u001b[22m\n16:11:25.520 [info] Creating delay queue 'test.pending.dela"},{"event":"cmd_output","timestamp":1607098285,"output":"y.10'\n\u001b[0m\u001b[22m\n16:11:25.524 [info] Binding 'test.pending' to 'test.pending' with 'pending' routi"},{"event":"cmd_output","timestamp":1607098285,"output":"ng keys\n\u001b[0m\u001b[22m\n16:11:25.530 [info] Opening new connection {:ok, %AMQP.Connection{pid: #PID<0.2"},{"event":"cmd_output","timestamp":1607098285,"output":"0218.0>}} for id: default\n\u001b[0m\u001b[22m\n16:11:25.534 [info] Binding 'test.queuing' to 'pipeline_state"},{"event":"cmd_output","timestamp":1607098285,"output":"_exchange' with 'queuing' routing keys\n\u001b[0m\u001b[22m\n16:11:25.536 [info] Creating queue 'test.queuing"},{"event":"cmd_output","timestamp":1607098285,"output":"'\n\u001b[0m\u001b[22m\n16:11:25.536 [info] Creating dead queue 'test.queuing.dead'\n\u001b[0m\u001b[22m\n16:11:25.539 "},{"event":"cmd_output","timestamp":1607098285,"output":"[info] Creating delay queue 'test.queuing.delay.10'\n\u001b[0m\u001b[22m\n16:11:25.543 [info] Binding 'test."},{"event":"cmd_output","timestamp":1607098285,"output":"queuing' to 'test.queuing' with 'queuing' routing keys\n\u001b[0m\u001b[22m\n16:11:25.550 [info] Opening new "},{"event":"cmd_output","timestamp":1607098285,"output":"connection {:ok, %AMQP.Connection{pid: #PID<0.20233.0>}} for id: default\n\u001b[0m\u001b[22m\n16:11:25.554 [i"},{"event":"cmd_output","timestamp":1607098285,"output":"nfo] Binding 'test.running' to 'pipeline_state_exchange' with 'running' routing keys\n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098285,"output":":11:25.557 [info] Creating queue 'test.running'\n\u001b[0m\u001b[22m\n16:11:25.558 [info] Creating dead queu"},{"event":"cmd_output","timestamp":1607098285,"output":"e 'test.running.dead'\n\u001b[0m\u001b[22m\n16:11:25.560 [info] Creating delay queue 'test.running.delay.10'\r"},{"event":"cmd_output","timestamp":1607098285,"output":"\n\u001b[0m\u001b[22m\n16:11:25.567 [info] Binding 'test.running' to 'test.running' with 'running' routing key"},{"event":"cmd_output","timestamp":1607098285,"output":"s\n\u001b[0m\u001b[22m\n16:11:25.574 [info] Opening new connection {:ok, %AMQP.Connection{pid: #PID<0.20248.0"},{"event":"cmd_output","timestamp":1607098285,"output":">}} for id: default\n\u001b[0m\u001b[22m\n16:11:25.577 [info] Binding 'test.stopping' to 'pipeline_state_exch"},{"event":"cmd_output","timestamp":1607098285,"output":"ange' with 'stopping' routing keys\n\u001b[0m\u001b[22m\n16:11:25.579 [info] Creating queue 'test.stopping'\n"},{"event":"cmd_output","timestamp":1607098285,"output":"\u001b[0m\u001b[22m\n16:11:25.580 [info] Creating dead queue 'test.stopping.dead'\n\u001b[0m\u001b[22m\n16:11:25.582 [i"},{"event":"cmd_output","timestamp":1607098285,"output":"nfo] Creating delay queue 'test.stopping.delay.10'\n\u001b[0m\u001b[22m\n16:11:25.585 [info] Binding 'test.s"},{"event":"cmd_output","timestamp":1607098285,"output":"topping' to 'test.stopping' with 'stopping' routing keys\n\u001b[0m\u001b[22m\n16:11:25.590 [info] Opening ne"},{"event":"cmd_output","timestamp":1607098285,"output":"w connection {:ok, %AMQP.Connection{pid: #PID<0.20263.0>}} for id: default\n\u001b[0m\u001b[22m\n16:11:25.593 "},{"event":"cmd_output","timestamp":1607098285,"output":"[info] Binding 'test.done' to 'pipeline_state_exchange' with 'done' routing keys\n\u001b[0m\u001b[22m\n16:11:"},{"event":"cmd_output","timestamp":1607098285,"output":"25.595 [info] Creating queue 'test.done'\n\u001b[0m\u001b[22m\n16:11:25.596 [info] Creating dead queue 'test"},{"event":"cmd_output","timestamp":1607098285,"output":".done.dead'\n\u001b[0m\u001b[22m\n16:11:25.598 [info] Creating delay queue 'test.done.delay.10'\n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098285,"output":"6:11:25.601 [info] Binding 'test.done' to 'test.done' with 'done' routing keys\n\u001b[0m\u001b[22m\n16:11:25"},{"event":"cmd_output","timestamp":1607098285,"output":".606 [info] Request: 'run: %{\"branch_id\" => \"1960e8f2-1fc8-4087-b2ec-d4cf38527b9d\", \"branch_name\" ="},{"event":"cmd_output","timestamp":1607098285,"output":"> \"master\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"semaphore.yml\", \"hook_id\" => \"5bd4b5d8-364"},{"event":"cmd_output","timestamp":1607098285,"output":"b-11eb-bc34-5254005464e2\", \"label\" => \"master\", \"organization_id\" => \"2f77bd79-a7ab-43bd-959f-b68c7c"},{"event":"cmd_output","timestamp":1607098285,"output":"3d770f\", \"owner\" => \"rt\", \"project_id\" => \"070c120e-aa41-4ad1-bbac-bc16ba108ae8\", \"repo_name\" => \"5_"},{"event":"cmd_output","timestamp":1607098285,"output":"v1_full\", \"request_token\" => \"5bd4abd8-364b-11eb-8ace-5254005464e2\", \"requester_id\" => \"9c0e930e-f67"},{"event":"cmd_output","timestamp":1607098285,"output":"6-45ef-ab85-0967a0a9a9d2\", \"service\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"client"},{"event":"cmd_output","timestamp":1607098285,"output":"_secret\"], \"wf_id\" => \"64bad681-22ba-48fd-8480-a94a81840710\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098285,"output":"22m\n16:11:25.620 [info] ppl_id: bc75553a-3f48-4d85-88f8-b5ffd2fab26c, type: PplRequests, event: pe"},{"event":"cmd_output","timestamp":1607098285,"output":"rsisted schedule request with request_token: 5bd4abd8-364b-11eb-8ace-5254005464e2, origin: Elixir.Pp"},{"event":"cmd_output","timestamp":1607098285,"output":"l.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:11:25.623 [info] pp"},{"event":"cmd_output","timestamp":1607098285,"output":"l_id: bc75553a-3f48-4d85-88f8-b5ffd2fab26c, type: Ppls, state: initializing, event: initializing, re"},{"event":"cmd_output","timestamp":1607098285,"output":"covery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098285,"output":":11:25.630 [info] Project 070c120e-aa41-4ad1-bbac-bc16ba108ae8 and branch masterlatest_wf details u"},{"event":"cmd_output","timestamp":1607098285,"output":"pdated: \"wf_id: 64bad681-22ba-48fd-8480-a94a81840710, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:11:25.632 [info] "},{"event":"cmd_output","timestamp":1607098285,"output":" Persisted ppl_sub_init for pipeline with ppl_id: bc75553a-3f48-4d85-88f8-b5ffd2fab26c: %Ppl.PplSubI"},{"event":"cmd_output","timestamp":1607098285,"output":"nits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_"},{"event":"cmd_output","timestamp":1607098285,"output":"id: nil, error_description: nil, id: 142, in_scheduling: false, init_type: \"regular\", inserted_at: ~"},{"event":"cmd_output","timestamp":1607098285,"output":"N[2020-12-04 16:11:25.631558], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"bc75553a-3f48-4d85-88f8-b5ffd2fab26c\", recovery_count: 0, result: "},{"event":"cmd_output","timestamp":1607098285,"output":"nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, upda"},{"event":"cmd_output","timestamp":1607098285,"output":"ted_at: ~N[2020-12-04 16:11:25.631569]}\n\u001b[0m\u001b[22m\n16:11:25.641 [info] Periodic from module Elixir"},{"event":"cmd_output","timestamp":1607098285,"output":".Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: per"},{"event":"cmd_output","timestamp":1607098285,"output":"iod: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recur"},{"event":"cmd_output","timestamp":1607098285,"output":"ring args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query"},{"event":"cmd_output","timestamp":1607098285,"output":": Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl."},{"event":"cmd_output","timestamp":1607098285,"output":"Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, "},{"event":"cmd_output","timestamp":1607098285,"output":":updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_superviso"},{"event":"cmd_output","timestamp":1607098285,"output":"r: :skip}\n\u001b[0m\u001b[22m\n16:11:25.641 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingSt"},{"event":"cmd_output","timestamp":1607098285,"output":"ate with name Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder"},{"event":"cmd_output","timestamp":1607098285,"output":"-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"pending\", \"que"},{"event":"cmd_output","timestamp":1607098285,"output":"uing\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: "},{"event":"cmd_output","timestamp":1607098285,"output":"\"pending\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Pp"},{"event":"cmd_output","timestamp":1607098285,"output":"l.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl"},{"event":"cmd_output","timestamp":1607098285,"output":"_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:11:25.642 [in"},{"event":"cmd_output","timestamp":1607098285,"output":"fo] Periodic from module Elixir.Ppl.Ppls.STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandl"},{"event":"cmd_output","timestamp":1607098285,"output":"er.QueuingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Queui"},{"event":"cmd_output","timestamp":1607098285,"output":"ngState\"]}, recurring args: %{allowed_states: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, "},{"event":"cmd_output","timestamp":1607098285,"output":"initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", publisher_cb: #Function<0.125102843/1"},{"event":"cmd_output","timestamp":1607098285,"output":" in Ppl.Ppls.STMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_reques"},{"event":"cmd_output","timestamp":1607098285,"output":"t, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_superv"},{"event":"cmd_output","timestamp":1607098285,"output":"isor: :skip}\n\u001b[0m\u001b[22m\n16:11:25.642 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.Runnin"},{"event":"cmd_output","timestamp":1607098285,"output":"gState with name Elixir.Ppl.Ppls.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.behol"},{"event":"cmd_output","timestamp":1607098285,"output":"der-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \""},{"event":"cmd_output","timestamp":1607098285,"output":"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"runni"},{"event":"cmd_output","timestamp":1607098285,"output":"ng\", publisher_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler.RunningState.args/0>, repo: Ppl.Ect"},{"event":"cmd_output","timestamp":1607098285,"output":"oRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id],"},{"event":"cmd_output","timestamp":1607098285,"output":" schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:11:25.643 [info] "},{"event":"cmd_output","timestamp":1607098285,"output":"Periodic from module Elixir.Ppl.Ppls.STMHandler.StoppingState with name Elixir.Ppl.Ppls.STMHandler.S"},{"event":"cmd_output","timestamp":1607098285,"output":"toppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Stopping"},{"event":"cmd_output","timestamp":1607098285,"output":"State\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_quer"},{"event":"cmd_output","timestamp":1607098285,"output":"y: Ppl.Ppls.Model.Ppls, observed_state: \"stopping\", publisher_cb: #Function<0.71803493/1 in Ppl.Ppls"},{"event":"cmd_output","timestamp":1607098285,"output":".STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated"},{"event":"cmd_output","timestamp":1607098285,"output":"_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip"},{"event":"cmd_output","timestamp":1607098285,"output":"}\n\u001b[0m\u001b[22m\n16:11:25.643 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedSta"},{"event":"cmd_output","timestamp":1607098285,"output":"te with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.be"},{"event":"cmd_output","timestamp":1607098285,"output":"holder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args: %{allowed_states: [\"f"},{"event":"cmd_output","timestamp":1607098285,"output":"etching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_s"},{"event":"cmd_output","timestamp":1607098285,"output":"tate: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :upda"},{"event":"cmd_output","timestamp":1607098285,"output":"ted_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_"},{"event":"cmd_output","timestamp":1607098285,"output":"supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:25.643 [info] Periodic from module Elixir.Ppl.PplSubInits.STMH"},{"event":"cmd_output","timestamp":1607098285,"output":"andler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 ms, me"},{"event":"cmd_output","timestamp":1607098285,"output":"tric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %"},{"event":"cmd_output","timestamp":1607098285,"output":"{allowed_states: [\"regular_init\", \"compilation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.P"},{"event":"cmd_output","timestamp":1607098285,"output":"plSubInits.Model.PplSubInits, observed_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, r"},{"event":"cmd_output","timestamp":1607098285,"output":"eturning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema:"},{"event":"cmd_output","timestamp":1607098285,"output":" Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:25.644 [info] Periodi"},{"event":"cmd_output","timestamp":1607098285,"output":"c from module Elixir.Ppl.PplSubInits.STMHandler.CompilationState with name Elixir.Ppl.PplSubInits.ST"},{"event":"cmd_output","timestamp":1607098285,"output":"MHandler.CompilationState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits"},{"event":"cmd_output","timestamp":1607098285,"output":"-STMHandler-CompilationState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \""},{"event":"cmd_output","timestamp":1607098285,"output":"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed"},{"event":"cmd_output","timestamp":1607098285,"output":"_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request,"},{"event":"cmd_output","timestamp":1607098285,"output":" :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits,"},{"event":"cmd_output","timestamp":1607098285,"output":" task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:25.644 [info] Periodic from module Elixir.Ppl.PplSubInit"},{"event":"cmd_output","timestamp":1607098285,"output":"s.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period"},{"event":"cmd_output","timestamp":1607098285,"output":": 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, re"},{"event":"cmd_output","timestamp":1607098285,"output":"curring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model."},{"event":"cmd_output","timestamp":1607098285,"output":"PplSubInits, observed_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:i"},{"event":"cmd_output","timestamp":1607098285,"output":"d, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubIn"},{"event":"cmd_output","timestamp":1607098285,"output":"its.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:25.644 [info] Periodic from module"},{"event":"cmd_output","timestamp":1607098285,"output":" Elixir.Ppl.PplBlocks.STMHandler.InitializingState with name Elixir.Ppl.PplBlocks.STMHandler.Initial"},{"event":"cmd_output","timestamp":1607098285,"output":"izingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-Initi"},{"event":"cmd_output","timestamp":1607098285,"output":"alizingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"waiting\", \"done\"], cooling_time"},{"event":"cmd_output","timestamp":1607098285,"output":"_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"initializing\", publisher_cb:"},{"event":"cmd_output","timestamp":1607098285,"output":" :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :reco"},{"event":"cmd_output","timestamp":1607098285,"output":"very_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n"},{"event":"cmd_output","timestamp":1607098285,"output":"\u001b[0m\u001b[22m\n16:11:25.645 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.WaitingState wi"},{"event":"cmd_output","timestamp":1607098285,"output":"th name Elixir.Ppl.PplBlocks.STMHandler.WaitingState :: period: 1000 ms, metric_name: {\"Ppl.beholder"},{"event":"cmd_output","timestamp":1607098285,"output":"-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurring args: %{allowed_states: [\"waiting\","},{"event":"cmd_output","timestamp":1607098285,"output":" \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_sta"},{"event":"cmd_output","timestamp":1607098285,"output":"te: \"waiting\", publisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>,"},{"event":"cmd_output","timestamp":1607098285,"output":" repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_co"},{"event":"cmd_output","timestamp":1607098285,"output":"unt, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098285,"output":"2m\n16:11:25.645 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.RunningState with name"},{"event":"cmd_output","timestamp":1607098285,"output":" Elixir.Ppl.PplBlocks.STMHandler.RunningState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_u"},{"event":"cmd_output","timestamp":1607098285,"output":"p\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopp"},{"event":"cmd_output","timestamp":1607098285,"output":"ing\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \""},{"event":"cmd_output","timestamp":1607098285,"output":"running\", publisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0>, rep"},{"event":"cmd_output","timestamp":1607098285,"output":"o: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count,"},{"event":"cmd_output","timestamp":1607098285,"output":" :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n"},{"event":"cmd_output","timestamp":1607098285,"output":"\u001b[0m\u001b[22m\n16:11:25.646 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.StoppingState w"},{"event":"cmd_output","timestamp":1607098285,"output":"ith name Elixir.Ppl.PplBlocks.STMHandler.StoppingState :: period: 1000 ms, metric_name: {\"Ppl.behold"},{"event":"cmd_output","timestamp":1607098285,"output":"er-wake_up\", [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stoppi"},{"event":"cmd_output","timestamp":1607098285,"output":"ng\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"s"},{"event":"cmd_output","timestamp":1607098285,"output":"topping\", publisher_cb: #Function<0.104215991/1 in Ppl.PplBlocks.STMHandler.StoppingState.args/0>, r"},{"event":"cmd_output","timestamp":1607098285,"output":"epo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_coun"},{"event":"cmd_output","timestamp":1607098285,"output":"t, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}"},{"event":"cmd_output","timestamp":1607098285,"output":"\n\u001b[0m\u001b[22m\n16:11:25.646 [info] Periodic from module Elixir.Block.Blocks.STMHandler.InitializingSt"},{"event":"cmd_output","timestamp":1607098285,"output":"ate with name Elixir.Block.Blocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl"},{"event":"cmd_output","timestamp":1607098285,"output":".beholder-wake_up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states"},{"event":"cmd_output","timestamp":1607098285,"output":": [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Blocks.Model.Blocks, observed_state"},{"event":"cmd_output","timestamp":1607098285,"output":": \"initializing\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :u"},{"event":"cmd_output","timestamp":1607098285,"output":"pdated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: "},{"event":"cmd_output","timestamp":1607098285,"output":":skip}\n\u001b[0m\u001b[22m\n16:11:25.647 [info] Periodic from module Elixir.Block.Blocks.STMHandler.RunningS"},{"event":"cmd_output","timestamp":1607098285,"output":"tate with name Elixir.Block.Blocks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beh"},{"event":"cmd_output","timestamp":1607098285,"output":"older-wake_up\", [\"Block-Blocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"runni"},{"event":"cmd_output","timestamp":1607098285,"output":"ng\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_s"},{"event":"cmd_output","timestamp":1607098285,"output":"tate: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :up"},{"event":"cmd_output","timestamp":1607098285,"output":"dated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :"},{"event":"cmd_output","timestamp":1607098285,"output":"skip}\n\u001b[0m\u001b[22m\n16:11:25.648 [info] Periodic from module Elixir.Block.Blocks.STMHandler.StoppingS"},{"event":"cmd_output","timestamp":1607098285,"output":"tate with name Elixir.Block.Blocks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.be"},{"event":"cmd_output","timestamp":1607098285,"output":"holder-wake_up\", [\"Block-Blocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"sto"},{"event":"cmd_output","timestamp":1607098285,"output":"pping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"st"},{"event":"cmd_output","timestamp":1607098285,"output":"opping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at"},{"event":"cmd_output","timestamp":1607098285,"output":", :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b"},{"event":"cmd_output","timestamp":1607098285,"output":"[0m\u001b[22m\n16:11:25.648 [info] Periodic from module Elixir.Block.Tasks.STMHandler.PendingState with "},{"event":"cmd_output","timestamp":1607098285,"output":"name Elixir.Block.Tasks.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_"},{"event":"cmd_output","timestamp":1607098285,"output":"up\", [\"Block-Tasks-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"]"},{"event":"cmd_output","timestamp":1607098285,"output":", cooling_time_sec: 0, initial_query: Block.Tasks.Model.Tasks, observed_state: \"pending\", publisher_"},{"event":"cmd_output","timestamp":1607098285,"output":"cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery"},{"event":"cmd_output","timestamp":1607098285,"output":"_count, :block_id, :build_request_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0"},{"event":"cmd_output","timestamp":1607098285,"output":"m\u001b[22m\n16:11:25.648 [info] Periodic from module Elixir.Block.Tasks.STMHandler.RunningState with na"},{"event":"cmd_output","timestamp":1607098285,"output":"me Elixir.Block.Tasks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up"},{"event":"cmd_output","timestamp":1607098285,"output":"\", [\"Block-Tasks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping"},{"event":"cmd_output","timestamp":1607098285,"output":"\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"running\","},{"event":"cmd_output","timestamp":1607098285,"output":" publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state"},{"event":"cmd_output","timestamp":1607098285,"output":", :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098285,"output":"16:11:25.649 [info] Periodic from module Elixir.Block.Tasks.STMHandler.StoppingState with name Elix"},{"event":"cmd_output","timestamp":1607098285,"output":"ir.Block.Tasks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"B"},{"event":"cmd_output","timestamp":1607098285,"output":"lock-Tasks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cool"},{"event":"cmd_output","timestamp":1607098285,"output":"ing_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"stopping\", publisher_cb: "},{"event":"cmd_output","timestamp":1607098285,"output":":skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_cou"},{"event":"cmd_output","timestamp":1607098285,"output":"nt, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:25.782 [i"},{"event":"cmd_output","timestamp":1607098285,"output":"nfo] ppl_id: bc75553a-3f48-4d85-88f8-b5ffd2fab26c, type: PplRequests, event: persisted source_args "},{"event":"cmd_output","timestamp":1607098285,"output":"for pipeline: bc75553a-3f48-4d85-88f8-b5ffd2fab26c, origin: Elixir.Ppl.PplRequests.Model.PplRequests"},{"event":"cmd_output","timestamp":1607098285,"output":"Queries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:11:25.785 [info] ppl_id: bc75553a-3f48-4d85-88f8-b5ff"},{"event":"cmd_output","timestamp":1607098285,"output":"d2fab26c, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098285,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:25.814 [info] ppl_id: bc75553a-3f48"},{"event":"cmd_output","timestamp":1607098285,"output":"-4d85-88f8-b5ffd2fab26c, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_co"},{"event":"cmd_output","timestamp":1607098285,"output":"unt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:25.904 [info] pp"},{"event":"cmd_output","timestamp":1607098285,"output":"l_id: bc75553a-3f48-4d85-88f8-b5ffd2fab26c, type: PplRequests, event: persisted definition for reque"},{"event":"cmd_output","timestamp":1607098285,"output":"st with request_token: 5bd4abd8-364b-11eb-8ace-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.Pp"},{"event":"cmd_output","timestamp":1607098285,"output":"lRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:11:25.909 [info] Queue persisted: {:ok, "},{"event":"cmd_output","timestamp":1607098285,"output":"%Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12"},{"event":"cmd_output","timestamp":1607098285,"output":"-04 16:11:25.907323], name: \"master-.semaphore/semaphore.yml\", organization_id: \"2f77bd79-a7ab-43bd-"},{"event":"cmd_output","timestamp":1607098285,"output":"959f-b68c7c3d770f\", project_id: \"070c120e-aa41-4ad1-bbac-bc16ba108ae8\", queue_id: \"9eff0eee-6536-41d"},{"event":"cmd_output","timestamp":1607098285,"output":"1-93d2-9dc530046102\", scope: \"project\", updated_at: ~N[2020-12-04 16:11:25.907337], user_generated: "},{"event":"cmd_output","timestamp":1607098285,"output":"false}}\n\u001b[0m\u001b[22m\n16:11:25.916 [info] ppl_id: not_available, event: created, origin: Elixir.Ppl.P"},{"event":"cmd_output","timestamp":1607098285,"output":"plSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:11:25.916 [info] event: cre"},{"event":"cmd_output","timestamp":1607098285,"output":"ated, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:11"},{"event":"cmd_output","timestamp":1607098285,"output":":25.916 [info] ppl_id: bc75553a-3f48-4d85-88f8-b5ffd2fab26c, type: PplBlocks, block_index: 0, state"},{"event":"cmd_output","timestamp":1607098285,"output":": initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.Regular"},{"event":"cmd_output","timestamp":1607098285,"output":"InitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:11:25.916 [info] ppl_id: bc75553a-3f48-4d85-88f8-b5ffd2f"},{"event":"cmd_output","timestamp":1607098285,"output":"ab26c, type: PplBlocks, block_index: 1, state: initializing, event: created, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098285,"output":"in: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:11:25.920 [i"},{"event":"cmd_output","timestamp":1607098285,"output":"nfo] ppl_id: bc75553a-3f48-4d85-88f8-b5ffd2fab26c, type: PplSubInits, state: done, result: passed, "},{"event":"cmd_output","timestamp":1607098285,"output":"event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \r"},{"event":"cmd_output","timestamp":1607098285,"output":"\n\u001b[0m\u001b[22m\n16:11:25.931 [info] ppl_id: bc75553a-3f48-4d85-88f8-b5ffd2fab26c, type: Ppls, state: pe"},{"event":"cmd_output","timestamp":1607098285,"output":"nding, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1("},{"event":"cmd_output","timestamp":1607098285,"output":"L90), \n\u001b[0m\u001b[22m\n16:11:25.934 [info] ppl_id: bc75553a-3f48-4d85-88f8-b5ffd2fab26c, type: PplBlock"},{"event":"cmd_output","timestamp":1607098285,"output":"s, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper."},{"event":"cmd_output","timestamp":1607098285,"output":"STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:25.945 [info] ppl_id: bc75553a-3f48-4d85-88f8-"},{"event":"cmd_output","timestamp":1607098285,"output":"b5ffd2fab26c, type: PplBlocks, block_index: 1, state: waiting, event: exit_scheduling, recovery_coun"},{"event":"cmd_output","timestamp":1607098285,"output":"t: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:25.947 [info] ppl_"},{"event":"cmd_output","timestamp":1607098285,"output":"id: bc75553a-3f48-4d85-88f8-b5ffd2fab26c, type: Ppls, state: queuing, event: exit_scheduling, recove"},{"event":"cmd_output","timestamp":1607098285,"output":"ry_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:25.965 [info"},{"event":"cmd_output","timestamp":1607098285,"output":"] ppl_id: bc75553a-3f48-4d85-88f8-b5ffd2fab26c, type: Ppls, state: running, event: exit_scheduling,"},{"event":"cmd_output","timestamp":1607098285,"output":" recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:25.97"},{"event":"cmd_output","timestamp":1607098285,"output":"8 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"bc75553a-3f48-4d85-88f8-b"},{"event":"cmd_output","timestamp":1607098285,"output":"5ffd2fab26c\"\n\u001b[0m\u001b[22m\n16:11:25.991 [info] block_id: d976cfce-0db3-4552-b1be-d28158f0f806, type: "},{"event":"cmd_output","timestamp":1607098285,"output":"BlockRequests, event: persisted block run request from ppl bc75553a-3f48-4d85-88f8-b5ffd2fab26c for "},{"event":"cmd_output","timestamp":1607098285,"output":"block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b["},{"event":"cmd_output","timestamp":1607098286,"output":"0m\u001b[22m\n16:11:26.003 [info] block_id: d976cfce-0db3-4552-b1be-d28158f0f806, type: Blocks, state: i"},{"event":"cmd_output","timestamp":1607098286,"output":"nitializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries"},{"event":"cmd_output","timestamp":1607098286,"output":".insert/1(L43), \n\u001b[0m\u001b[22m\n16:11:26.005 [info] Block 0 of pipeline with id: bc75553a-3f48-4d85-88"},{"event":"cmd_output","timestamp":1607098286,"output":"f8-b5ffd2fab26c scheduled in block service with id: : \"d976cfce-0db3-4552-b1be-d28158f0f806\"\n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098286,"output":"22m\n16:11:26.009 [info] ppl_id: bc75553a-3f48-4d85-88f8-b5ffd2fab26c, type: PplBlocks, block_index"},{"event":"cmd_output","timestamp":1607098286,"output":": 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_s"},{"event":"cmd_output","timestamp":1607098286,"output":"tate_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:26.025 [info] block_id: d976cfce-0db3-4552-b1be-d28158f0f806"},{"event":"cmd_output","timestamp":1607098286,"output":", type: BlockRequests, event: persisted build and sub_ppl details for block_request: d976cfce-0db3-4"},{"event":"cmd_output","timestamp":1607098286,"output":"552-b1be-d28158f0f806, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2("},{"event":"cmd_output","timestamp":1607098286,"output":"L41), \n\u001b[0m\u001b[22m\n16:11:26.030 [info] block_id: d976cfce-0db3-4552-b1be-d28158f0f806, type: Tasks,"},{"event":"cmd_output","timestamp":1607098286,"output":" state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.Initializ"},{"event":"cmd_output","timestamp":1607098286,"output":"ingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:11:26.033 [info] block_id: d976cfce-0db3-4552-b1be-d28158"},{"event":"cmd_output","timestamp":1607098286,"output":"f0f806, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loop"},{"event":"cmd_output","timestamp":1607098286,"output":"er.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:26.101 [info] block_id: d976cfce-0db3-4552-"},{"event":"cmd_output","timestamp":1607098286,"output":"b1be-d28158f0f806, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: E"},{"event":"cmd_output","timestamp":1607098286,"output":"lixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:26.337 [info] block_id: d976cfce-"},{"event":"cmd_output","timestamp":1607098286,"output":"0db3-4552-b1be-d28158f0f806, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098286,"output":"igin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:26.345 [info] block_id: d9"},{"event":"cmd_output","timestamp":1607098286,"output":"76cfce-0db3-4552-b1be-d28158f0f806, type: Blocks, state: done, event: exit_scheduling, recovery_coun"},{"event":"cmd_output","timestamp":1607098286,"output":"t: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:26.356 [info] ppl_"},{"event":"cmd_output","timestamp":1607098286,"output":"id: bc75553a-3f48-4d85-88f8-b5ffd2fab26c, block_id: d976cfce-0db3-4552-b1be-d28158f0f806, type: PplB"},{"event":"cmd_output","timestamp":1607098286,"output":"locks, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098286,"output":"n: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:26.367 [info] PplBlocks Waiti"},{"event":"cmd_output","timestamp":1607098286,"output":"ngState STM is scheduling block 1 from pipeline: \"bc75553a-3f48-4d85-88f8-b5ffd2fab26c\"\n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098286,"output":"16:11:26.377 [info] block_id: eb13adc1-ca75-4b38-8938-79414a91368c, type: BlockRequests, event: per"},{"event":"cmd_output","timestamp":1607098286,"output":"sisted block run request from ppl bc75553a-3f48-4d85-88f8-b5ffd2fab26c for block 1, origin: Elixir.B"},{"event":"cmd_output","timestamp":1607098286,"output":"lock.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:11:26.380 [in"},{"event":"cmd_output","timestamp":1607098286,"output":"fo] block_id: eb13adc1-ca75-4b38-8938-79414a91368c, type: Blocks, state: initializing, event: initi"},{"event":"cmd_output","timestamp":1607098286,"output":"alizing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098286,"output":"2m\n16:11:26.380 [info] Block 1 of pipeline with id: bc75553a-3f48-4d85-88f8-b5ffd2fab26c scheduled"},{"event":"cmd_output","timestamp":1607098286,"output":" in block service with id: : \"eb13adc1-ca75-4b38-8938-79414a91368c\"\n\u001b[0m\u001b[22m\n16:11:26.385 [info] "},{"event":"cmd_output","timestamp":1607098286,"output":" ppl_id: bc75553a-3f48-4d85-88f8-b5ffd2fab26c, type: PplBlocks, block_index: 1, state: running, even"},{"event":"cmd_output","timestamp":1607098286,"output":"t: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098286,"output":"m\u001b[22m\n16:11:26.394 [info] block_id: eb13adc1-ca75-4b38-8938-79414a91368c, type: BlockRequests, ev"},{"event":"cmd_output","timestamp":1607098286,"output":"ent: persisted build and sub_ppl details for block_request: eb13adc1-ca75-4b38-8938-79414a91368c, or"},{"event":"cmd_output","timestamp":1607098286,"output":"igin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:11:"},{"event":"cmd_output","timestamp":1607098286,"output":"26.397 [info] block_id: eb13adc1-ca75-4b38-8938-79414a91368c, type: Tasks, state: pending, event: c"},{"event":"cmd_output","timestamp":1607098286,"output":"reated, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167),"},{"event":"cmd_output","timestamp":1607098286,"output":" \n\u001b[0m\u001b[22m\n16:11:26.400 [info] block_id: eb13adc1-ca75-4b38-8938-79414a91368c, type: Blocks, sta"},{"event":"cmd_output","timestamp":1607098286,"output":"te: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_cha"},{"event":"cmd_output","timestamp":1607098286,"output":"nge/1(L90), \n\u001b[0m\u001b[22m\n16:11:26.420 [info] block_id: eb13adc1-ca75-4b38-8938-79414a91368c, type: "},{"event":"cmd_output","timestamp":1607098286,"output":"Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098286,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:26.456 [info] block_id: eb13adc1-ca75-4b38-8938-79414a9136"},{"event":"cmd_output","timestamp":1607098286,"output":"8c, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.I"},{"event":"cmd_output","timestamp":1607098286,"output":"mpl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:26.463 [info] block_id: eb13adc1-ca75-4b38-8938-794"},{"event":"cmd_output","timestamp":1607098286,"output":"14a91368c, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loop"},{"event":"cmd_output","timestamp":1607098286,"output":"er.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:26.473 [info] ppl_id: bc75553a-3f48-4d85-88"},{"event":"cmd_output","timestamp":1607098286,"output":"f8-b5ffd2fab26c, block_id: eb13adc1-ca75-4b38-8938-79414a91368c, type: PplBlocks, block_index: 1, st"},{"event":"cmd_output","timestamp":1607098286,"output":"ate: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl"},{"event":"cmd_output","timestamp":1607098286,"output":".log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:26.491 [info] ppl_id: bc75553a-3f48-4d85-88f8-b5ffd2fa"},{"event":"cmd_output","timestamp":1607098286,"output":"b26c, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098287,"output":"ixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test all events are emmited for passed"},{"event":"cmd_output","timestamp":1607098287,"output":" pipeline (1811.3ms)\u001b[0m\n\nPpl.Ppls.Model.Ppls.Test\n * doctest Ppl.Ppls.Model.Ppls.changeset/3 (1"},{"event":"cmd_output","timestamp":1607098287,"output":")\r * doctest Ppl.Ppls.Model.Ppls.changeset/3 (1) (skipped)\n * doctest Ppl.Ppls.Model.Ppls.changes"},{"event":"cmd_output","timestamp":1607098287,"output":"et/3 (2)\r * doctest Ppl.Ppls.Model.Ppls.changeset/3 (2) (skipped)\n\nPpl.Ppls.Model.PplsQueuingTest"},{"event":"cmd_output","timestamp":1607098287,"output":"\n * test select if terminate_request is set\r * test select if terminate_request is set (skipped)\r"},{"event":"cmd_output","timestamp":1607098287,"output":"\n * test get oldest row in queuing state\r * test get oldest row in queuing state (skipped)\n * te"},{"event":"cmd_output","timestamp":1607098287,"output":"st do not select younger if older is in scheduling\r * test do not select younger if older is in sch"},{"event":"cmd_output","timestamp":1607098287,"output":"eduling (skipped)\n * test Update in_scheduling\r * test Update in_scheduling (skipped)\n * test N"},{"event":"cmd_output","timestamp":1607098287,"output":"othing to update\r * test Nothing to update (skipped)\n\nPpl.Ppls.Beholder.Test\n * test recovery c"},{"event":"cmd_output","timestamp":1607098287,"output":"ounter is incremented when piepline is recovered from stuck\r * test recovery counter is incremented"},{"event":"cmd_output","timestamp":1607098287,"output":" when piepline is recovered from stuck (skipped)\n * test pipeline is terminated when recovery coun"},{"event":"cmd_output","timestamp":1607098287,"output":"ter reaches threshold\r * test pipeline is terminated when recovery counter reaches threshold (skipp"},{"event":"cmd_output","timestamp":1607098287,"output":"ed)\n * test child_spec accepts 1 arg and returns a map\r * test child_spec accepts 1 arg and retur"},{"event":"cmd_output","timestamp":1607098287,"output":"ns a map (skipped)\n * test PplBlocks are terminated when ppl is stuck-aborted\u001b[22m\n16:11:27.223 ["},{"event":"cmd_output","timestamp":1607098287,"output":"info] Request: 'run: %{:repo_name => \"13_free_topology\", \"branch_id\" => \"7840aaad-97f0-49c4-b387-1b"},{"event":"cmd_output","timestamp":1607098287,"output":"8ddf585fed\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"semaphore.yml\""},{"event":"cmd_output","timestamp":1607098287,"output":", \"hook_id\" => \"5ccb63c4-364b-11eb-b974-5254005464e2\", \"label\" => \"master\", \"organization_id\" => \"dd"},{"event":"cmd_output","timestamp":1607098287,"output":"2c6a28-3638-48f2-81ba-041cb12ec81e\", \"owner\" => \"rt\", \"project_id\" => \"7c9efb31-ad27-42ca-a71c-87a8a"},{"event":"cmd_output","timestamp":1607098287,"output":"2e5eac0\", \"repo_name\" => \"2_basic\", \"request_token\" => \"5ccb53fc-364b-11eb-8a49-5254005464e2\", \"requ"},{"event":"cmd_output","timestamp":1607098287,"output":"ester_id\" => \"dcc2703c-f85d-4edb-879c-7c29901c932b\", \"service\" => \"local\", \"suppressed_attributes\" ="},{"event":"cmd_output","timestamp":1607098287,"output":"> [\"access_token\", \"client_secret\"], \"wf_id\" => \"b8ef95d7-d20f-49a2-bb91-b4b18bf1ad95\", \"working_dir"},{"event":"cmd_output","timestamp":1607098287,"output":"\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:11:27.227 [info] ppl_id: 2e76f0e6-3298-4e26-b132-ad1e60d1f9a6, ty"},{"event":"cmd_output","timestamp":1607098287,"output":"pe: PplRequests, event: persisted schedule request with request_token: 5ccb53fc-364b-11eb-8a49-52540"},{"event":"cmd_output","timestamp":1607098287,"output":"05464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098287,"output":"m\n16:11:27.229 [info] ppl_id: 2e76f0e6-3298-4e26-b132-ad1e60d1f9a6, type: Ppls, state: initializin"},{"event":"cmd_output","timestamp":1607098287,"output":"g, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_respons"},{"event":"cmd_output","timestamp":1607098287,"output":"e/2(L124), \n\u001b[0m\u001b[22m\n16:11:27.234 [info] Project 7c9efb31-ad27-42ca-a71c-87a8a2e5eac0 and branch"},{"event":"cmd_output","timestamp":1607098287,"output":" masterlatest_wf details updated: \"wf_id: b8ef95d7-d20f-49a2-bb91-b4b18bf1ad95, wf_number: 1\"\n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098287,"output":"[22m\n16:11:27.236 [info] Persisted ppl_sub_init for pipeline with ppl_id: 2e76f0e6-3298-4e26-b132-"},{"event":"cmd_output","timestamp":1607098287,"output":"ad1e60d1f9a6: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_"},{"event":"cmd_output","timestamp":1607098287,"output":"sub_inits\">, compile_task_id: nil, error_description: nil, id: 143, in_scheduling: false, init_type:"},{"event":"cmd_output","timestamp":1607098287,"output":" \"regular\", inserted_at: ~N[2020-12-04 16:11:27.235054], pipeline_requests: #Ecto.Association.NotLoa"},{"event":"cmd_output","timestamp":1607098287,"output":"ded, ppl_id: \"2e76f0e6-3298-4e26-b132-ad1e60d1f9a6\", r"},{"event":"cmd_output","timestamp":1607098287,"output":"ecovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, termina"},{"event":"cmd_output","timestamp":1607098287,"output":"te_request_desc: nil, updated_at: ~N[2020-12-04 16:11:27.235064]}\n\u001b[0m\u001b[22m\n16:11:27.254 [info] P"},{"event":"cmd_output","timestamp":1607098287,"output":"eriodic from module Elixir.Ppl.Ppls.Beholder with name Elixir.Ppl.Ppls.Beholder :: period: 1000 ms, "},{"event":"cmd_output","timestamp":1607098287,"output":"metric_name: {\"Beholder\", [\"Ppl-Ppls-Beholder\", \"wake_up\"]}, recurring args: %{callback: #Function<0"},{"event":"cmd_output","timestamp":1607098287,"output":".82153164/1 in Ppl.Ppls.Beholder.args/0>, excluded_states: [\"done\"], id: Ppl.Ppls.Beholder, query: P"},{"event":"cmd_output","timestamp":1607098287,"output":"pl.Ppls.Model.Ppls, repo: Ppl.EctoRepo, result_on_abort: \"failed\", result_reason_on_abort: \"stuck\", "},{"event":"cmd_output","timestamp":1607098287,"output":"terminal_state: \"done\", threshold_count: 5, threshold_sec: -2}\n\u001b[0m\u001b[22m\n16:11:27.255 [info] Peri"},{"event":"cmd_output","timestamp":1607098287,"output":"odic from module Elixir.Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.STMHandler.I"},{"event":"cmd_output","timestamp":1607098287,"output":"nitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Init"},{"event":"cmd_output","timestamp":1607098287,"output":"ializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], cooling_tim"},{"event":"cmd_output","timestamp":1607098287,"output":"e_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher_cb: #Functio"},{"event":"cmd_output","timestamp":1607098287,"output":"n<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, returning: [:i"},{"event":"cmd_output","timestamp":1607098287,"output":"d, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Mod"},{"event":"cmd_output","timestamp":1607098287,"output":"el.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:27.255 [info] Periodic from module Elixir.Ppl.Pp"},{"event":"cmd_output","timestamp":1607098287,"output":"ls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 100 ms, metr"},{"event":"cmd_output","timestamp":1607098287,"output":"ic_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args: %{allowed_s"},{"event":"cmd_output","timestamp":1607098287,"output":"tates: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model"},{"event":"cmd_output","timestamp":1607098287,"output":".Ppls, observed_state: \"pending\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler.Pending"},{"event":"cmd_output","timestamp":1607098287,"output":"State.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result"},{"event":"cmd_output","timestamp":1607098287,"output":", :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m"},{"event":"cmd_output","timestamp":1607098287,"output":"\u001b[22m\n16:11:27.256 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.QueuingState with name E"},{"event":"cmd_output","timestamp":1607098287,"output":"lixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Pp"},{"event":"cmd_output","timestamp":1607098287,"output":"l-Ppls-STMHandler-QueuingState\"]}, recurring args: %{allowed_states: [\"queuing\", \"running\", \"done\"],"},{"event":"cmd_output","timestamp":1607098287,"output":" cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", publisher_cb: "},{"event":"cmd_output","timestamp":1607098287,"output":"#Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, returning: "},{"event":"cmd_output","timestamp":1607098287,"output":"[:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls."},{"event":"cmd_output","timestamp":1607098287,"output":"Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:27.256 [info] Periodic from module Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098287,"output":".Ppls.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHandler.RunningState :: period: 100 ms, m"},{"event":"cmd_output","timestamp":1607098287,"output":"etric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring args: %{allowe"},{"event":"cmd_output","timestamp":1607098287,"output":"d_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls,"},{"event":"cmd_output","timestamp":1607098287,"output":" observed_state: \"running\", publisher_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler.RunningState"},{"event":"cmd_output","timestamp":1607098287,"output":".args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :re"},{"event":"cmd_output","timestamp":1607098287,"output":"covery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098287,"output":"\n16:11:27.256 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.StoppingState with name Elixi"},{"event":"cmd_output","timestamp":1607098287,"output":"r.Ppl.Ppls.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-P"},{"event":"cmd_output","timestamp":1607098287,"output":"pls-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_tim"},{"event":"cmd_output","timestamp":1607098287,"output":"e_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"stopping\", publisher_cb: #Function<0"},{"event":"cmd_output","timestamp":1607098287,"output":".71803493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :term"},{"event":"cmd_output","timestamp":1607098287,"output":"inate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls,"},{"event":"cmd_output","timestamp":1607098287,"output":" task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:27.257 [info] Periodic from module Elixir.Ppl.PplSubInit"},{"event":"cmd_output","timestamp":1607098287,"output":"s.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 100 ms"},{"event":"cmd_output","timestamp":1607098287,"output":", metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args"},{"event":"cmd_output","timestamp":1607098287,"output":": %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model."},{"event":"cmd_output","timestamp":1607098287,"output":"PplSubInits, observed_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :t"},{"event":"cmd_output","timestamp":1607098287,"output":"erminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.M"},{"event":"cmd_output","timestamp":1607098287,"output":"odel.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:27.257 [info] Periodic from module Elix"},{"event":"cmd_output","timestamp":1607098287,"output":"ir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler.FetchingStat"},{"event":"cmd_output","timestamp":1607098287,"output":"e :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingStat"},{"event":"cmd_output","timestamp":1607098287,"output":"e\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"done\"], cooling_time_sec: -"},{"event":"cmd_output","timestamp":1607098287,"output":"2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fetching\", publisher_cb: :skip"},{"event":"cmd_output","timestamp":1607098287,"output":", repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_c"},{"event":"cmd_output","timestamp":1607098287,"output":"ount, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11"},{"event":"cmd_output","timestamp":1607098287,"output":":27.257 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CompilationState with name El"},{"event":"cmd_output","timestamp":1607098287,"output":"ixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake"},{"event":"cmd_output","timestamp":1607098287,"output":"_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurring args: %{allowed_states: [\"regular_"},{"event":"cmd_output","timestamp":1607098287,"output":"init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Mode"},{"event":"cmd_output","timestamp":1607098287,"output":"l.PplSubInits, observed_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:"},{"event":"cmd_output","timestamp":1607098287,"output":"id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubI"},{"event":"cmd_output","timestamp":1607098287,"output":"nits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:27.257 [info] Periodic from modul"},{"event":"cmd_output","timestamp":1607098287,"output":"e Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHandler.Reg"},{"event":"cmd_output","timestamp":1607098287,"output":"ularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-"},{"event":"cmd_output","timestamp":1607098287,"output":"RegularInitState\"]}, recurring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, initial_query:"},{"event":"cmd_output","timestamp":1607098287,"output":" Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.E"},{"event":"cmd_output","timestamp":1607098287,"output":"ctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id"},{"event":"cmd_output","timestamp":1607098287,"output":"], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:27.258 [info"},{"event":"cmd_output","timestamp":1607098287,"output":"] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.InitializingState with name Elixir.Ppl.PplBl"},{"event":"cmd_output","timestamp":1607098287,"output":"ocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppl"},{"event":"cmd_output","timestamp":1607098287,"output":"Blocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"waiting\""},{"event":"cmd_output","timestamp":1607098287,"output":", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"initi"},{"event":"cmd_output","timestamp":1607098287,"output":"alizing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at,"},{"event":"cmd_output","timestamp":1607098287,"output":" :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, ta"},{"event":"cmd_output","timestamp":1607098287,"output":"sk_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:27.258 [info] Periodic from module Elixir.Ppl.PplBlocks.STM"},{"event":"cmd_output","timestamp":1607098287,"output":"Handler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler.WaitingState :: period: 1000 ms, metr"},{"event":"cmd_output","timestamp":1607098287,"output":"ic_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurring args: %{allo"},{"event":"cmd_output","timestamp":1607098287,"output":"wed_states: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model."},{"event":"cmd_output","timestamp":1607098287,"output":"PplBlocks, observed_state: \"waiting\", publisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.STMHandle"},{"event":"cmd_output","timestamp":1607098287,"output":"r.WaitingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state"},{"event":"cmd_output","timestamp":1607098287,"output":", :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supe"},{"event":"cmd_output","timestamp":1607098287,"output":"rvisor: :skip}\n\u001b[0m\u001b[22m\n16:11:27.258 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler"},{"event":"cmd_output","timestamp":1607098287,"output":".RunningState with name Elixir.Ppl.PplBlocks.STMHandler.RunningState :: period: 1000 ms, metric_name"},{"event":"cmd_output","timestamp":1607098287,"output":": {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, recurring args: %{allowed_sta"},{"event":"cmd_output","timestamp":1607098287,"output":"tes: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBl"},{"event":"cmd_output","timestamp":1607098287,"output":"ocks, observed_state: \"running\", publisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHandler.Ru"},{"event":"cmd_output","timestamp":1607098287,"output":"nningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :r"},{"event":"cmd_output","timestamp":1607098287,"output":"esult, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, ta"},{"event":"cmd_output","timestamp":1607098287,"output":"sk_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:27.259 [info] Periodic from module Elixir.Ppl.PplBlocks.STM"},{"event":"cmd_output","timestamp":1607098287,"output":"Handler.StoppingState with name Elixir.Ppl.PplBlocks.STMHandler.StoppingState :: period: 1000 ms, me"},{"event":"cmd_output","timestamp":1607098287,"output":"tric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurring args: %{a"},{"event":"cmd_output","timestamp":1607098287,"output":"llowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlo"},{"event":"cmd_output","timestamp":1607098287,"output":"cks, observed_state: \"stopping\", publisher_cb: #Function<0.104215991/1 in Ppl.PplBlocks.STMHandler.S"},{"event":"cmd_output","timestamp":1607098287,"output":"toppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, "},{"event":"cmd_output","timestamp":1607098287,"output":":result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, "},{"event":"cmd_output","timestamp":1607098287,"output":"task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:27.259 [info] Periodic from module Elixir.Block.Blocks.ST"},{"event":"cmd_output","timestamp":1607098287,"output":"MHandler.InitializingState with name Elixir.Block.Blocks.STMHandler.InitializingState :: period: 100"},{"event":"cmd_output","timestamp":1607098287,"output":" ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, recurring"},{"event":"cmd_output","timestamp":1607098287,"output":" args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Blocks.Model"},{"event":"cmd_output","timestamp":1607098287,"output":".Blocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id,"},{"event":"cmd_output","timestamp":1607098287,"output":" :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Bl"},{"event":"cmd_output","timestamp":1607098287,"output":"ocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:27.259 [info] Periodic from module Elixir.Block.Blo"},{"event":"cmd_output","timestamp":1607098287,"output":"cks.STMHandler.RunningState with name Elixir.Block.Blocks.STMHandler.RunningState :: period: 100 ms,"},{"event":"cmd_output","timestamp":1607098287,"output":" metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-RunningState\"]}, recurring args: %{"},{"event":"cmd_output","timestamp":1607098287,"output":"allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.M"},{"event":"cmd_output","timestamp":1607098287,"output":"odel.Blocks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, "},{"event":"cmd_output","timestamp":1607098287,"output":":terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blo"},{"event":"cmd_output","timestamp":1607098287,"output":"cks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:27.259 [info] Periodic from module Elixir.Block.Bloc"},{"event":"cmd_output","timestamp":1607098287,"output":"ks.STMHandler.StoppingState with name Elixir.Block.Blocks.STMHandler.StoppingState :: period: 100 ms"},{"event":"cmd_output","timestamp":1607098287,"output":", metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-StoppingState\"]}, recurring args: "},{"event":"cmd_output","timestamp":1607098287,"output":"%{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Bloc"},{"event":"cmd_output","timestamp":1607098287,"output":"ks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :termina"},{"event":"cmd_output","timestamp":1607098287,"output":"te_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, tas"},{"event":"cmd_output","timestamp":1607098287,"output":"k_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:27.260 [info] Periodic from module Elixir.Block.Tasks.STMHan"},{"event":"cmd_output","timestamp":1607098287,"output":"dler.PendingState with name Elixir.Block.Tasks.STMHandler.PendingState :: period: 100 ms, metric_nam"},{"event":"cmd_output","timestamp":1607098287,"output":"e: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingState\"]}, recurring args: %{allowed_stat"},{"event":"cmd_output","timestamp":1607098287,"output":"es: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Tasks.Model.Tasks, observed_state"},{"event":"cmd_output","timestamp":1607098287,"output":": \"pending\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :update"},{"event":"cmd_output","timestamp":1607098287,"output":"d_at, :state, :recovery_count, :block_id, :build_request_id], schema: Block.Tasks.Model.Tasks, task_"},{"event":"cmd_output","timestamp":1607098287,"output":"supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:27.260 [info] Periodic from module Elixir.Block.Tasks.STMHandl"},{"event":"cmd_output","timestamp":1607098287,"output":"er.RunningState with name Elixir.Block.Tasks.STMHandler.RunningState :: period: 100 ms, metric_name:"},{"event":"cmd_output","timestamp":1607098287,"output":" {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningState\"]}, recurring args: %{allowed_states"},{"event":"cmd_output","timestamp":1607098287,"output":": [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, obs"},{"event":"cmd_output","timestamp":1607098287,"output":"erved_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_reque"},{"event":"cmd_output","timestamp":1607098287,"output":"st, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervis"},{"event":"cmd_output","timestamp":1607098287,"output":"or: :skip}\n\u001b[0m\u001b[22m\n16:11:27.260 [info] Periodic from module Elixir.Block.Tasks.STMHandler.Stopp"},{"event":"cmd_output","timestamp":1607098287,"output":"ingState with name Elixir.Block.Tasks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl"},{"event":"cmd_output","timestamp":1607098287,"output":".beholder-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"s"},{"event":"cmd_output","timestamp":1607098287,"output":"topping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"st"},{"event":"cmd_output","timestamp":1607098287,"output":"opping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at"},{"event":"cmd_output","timestamp":1607098287,"output":", :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0"},{"event":"cmd_output","timestamp":1607098287,"output":"m\u001b[22m\n16:11:27.377 [info] ppl_id: 2e76f0e6-3298-4e26-b132-ad1e60d1f9a6, type: PplRequests, event:"},{"event":"cmd_output","timestamp":1607098287,"output":" persisted source_args for pipeline: 2e76f0e6-3298-4e26-b132-ad1e60d1f9a6, origin: Elixir.Ppl.PplReq"},{"event":"cmd_output","timestamp":1607098287,"output":"uests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:11:27.379 [info] ppl_id: 2e76f"},{"event":"cmd_output","timestamp":1607098287,"output":"0e6-3298-4e26-b132-ad1e60d1f9a6, type: PplSubInits, state: fetching, event: exit_scheduling, recover"},{"event":"cmd_output","timestamp":1607098287,"output":"y_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:27.410 [info]"},{"event":"cmd_output","timestamp":1607098287,"output":" ppl_id: 2e76f0e6-3298-4e26-b132-ad1e60d1f9a6, type: PplSubInits, state: regular_init, event: exit_"},{"event":"cmd_output","timestamp":1607098287,"output":"scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098287,"output":"16:11:27.445 [info] ppl_id: 2e76f0e6-3298-4e26-b132-ad1e60d1f9a6, type: PplRequests, event: persist"},{"event":"cmd_output","timestamp":1607098287,"output":"ed definition for request with request_token: 5ccb53fc-364b-11eb-8a49-5254005464e2, origin: Elixir.P"},{"event":"cmd_output","timestamp":1607098287,"output":"pl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:11:27.449 [info] "},{"event":"cmd_output","timestamp":1607098287,"output":"Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, "},{"event":"cmd_output","timestamp":1607098287,"output":"inserted_at: ~N[2020-12-04 16:11:27.448315], name: \"master-.semaphore/semaphore.yml\", organization_i"},{"event":"cmd_output","timestamp":1607098287,"output":"d: \"dd2c6a28-3638-48f2-81ba-041cb12ec81e\", project_id: \"7c9efb31-ad27-42ca-a71c-87a8a2e5eac0\", queue"},{"event":"cmd_output","timestamp":1607098287,"output":"_id: \"69244632-7d8f-4062-8cd6-84dadc62f5be\", scope: \"project\", updated_at: ~N[2020-12-04 16:11:27.44"},{"event":"cmd_output","timestamp":1607098287,"output":"8328], user_generated: false}}\n\u001b[0m\u001b[22m\n16:11:27.463 [info] ppl_id: not_available, event: create"},{"event":"cmd_output","timestamp":1607098287,"output":"d, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:11:27"},{"event":"cmd_output","timestamp":1607098287,"output":".463 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L1"},{"event":"cmd_output","timestamp":1607098287,"output":"05), \n\u001b[0m\u001b[22m\n16:11:27.464 [info] ppl_id: 2e76f0e6-3298-4e26-b132-ad1e60d1f9a6, type: PplBlocks"},{"event":"cmd_output","timestamp":1607098287,"output":", block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubI"},{"event":"cmd_output","timestamp":1607098287,"output":"nits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:11:27.464 [info] ppl_id: 2e76f0e6"},{"event":"cmd_output","timestamp":1607098287,"output":"-3298-4e26-b132-ad1e60d1f9a6, type: PplBlocks, block_index: 1, state: initializing, event: created, "},{"event":"cmd_output","timestamp":1607098287,"output":"recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098287,"output":"m\u001b[22m\n16:11:27.464 [info] ppl_id: 2e76f0e6-3298-4e26-b132-ad1e60d1f9a6, type: PplBlocks, block_in"},{"event":"cmd_output","timestamp":1607098287,"output":"dex: 2, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHa"},{"event":"cmd_output","timestamp":1607098287,"output":"ndler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:11:27.464 [info] ppl_id: 2e76f0e6-3298-4e26"},{"event":"cmd_output","timestamp":1607098287,"output":"-b132-ad1e60d1f9a6, type: PplBlocks, block_index: 3, state: initializing, event: created, recovery_c"},{"event":"cmd_output","timestamp":1607098287,"output":"ount: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098287,"output":":11:27.464 [info] ppl_id: 2e76f0e6-3298-4e26-b132-ad1e60d1f9a6, type: PplBlocks, block_index: 4, st"},{"event":"cmd_output","timestamp":1607098287,"output":"ate: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.Regu"},{"event":"cmd_output","timestamp":1607098287,"output":"larInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:11:27.469 [info] ppl_id: 2e76f0e6-3298-4e26-b132-ad1e"},{"event":"cmd_output","timestamp":1607098287,"output":"60d1f9a6, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098287,"output":" origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:27.484 [info] ppl_id: 2"},{"event":"cmd_output","timestamp":1607098287,"output":"e76f0e6-3298-4e26-b132-ad1e60d1f9a6, type: PplBlocks, block_index: 0, state: waiting, event: exit_sc"},{"event":"cmd_output","timestamp":1607098287,"output":"heduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098287,"output":":11:27.491 [info] ppl_id: 2e76f0e6-3298-4e26-b132-ad1e60d1f9a6, type: PplBlocks, block_index: 1, st"},{"event":"cmd_output","timestamp":1607098287,"output":"ate: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_ch"},{"event":"cmd_output","timestamp":1607098287,"output":"ange/1(L90), \n\u001b[0m\u001b[22m\n16:11:27.500 [info] ppl_id: 2e76f0e6-3298-4e26-b132-ad1e60d1f9a6, type: P"},{"event":"cmd_output","timestamp":1607098287,"output":"plBlocks, block_index: 2, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098287,"output":"Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:27.517 [info] ppl_id: 2e76f0e6-3298-4e2"},{"event":"cmd_output","timestamp":1607098287,"output":"6-b132-ad1e60d1f9a6, type: PplBlocks, block_index: 3, state: waiting, event: exit_scheduling, recove"},{"event":"cmd_output","timestamp":1607098287,"output":"ry_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:27.527 [info"},{"event":"cmd_output","timestamp":1607098287,"output":"] ppl_id: 2e76f0e6-3298-4e26-b132-ad1e60d1f9a6, type: PplBlocks, block_index: 4, state: waiting, ev"},{"event":"cmd_output","timestamp":1607098287,"output":"ent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b"},{"event":"cmd_output","timestamp":1607098288,"output":"[0m\u001b[33m\n16:11:28.267 [warn] ppl_id: 2e76f0e6-3298-4e26-b132-ad1e60d1f9a6, type: Ppls, state: done"},{"event":"cmd_output","timestamp":1607098288,"output":", result: failed, result_reason: stuck, event: stuck item aborted, recovery_count: 100, origin: Elix"},{"event":"cmd_output","timestamp":1607098289,"output":"ir.Looper.Beholder.Impl.log/2(L88), \n\u001b[0m\u001b[22m\n16:11:29.277 [info] ppl_id: 2e76f0e6-3298-4e26-b13"},{"event":"cmd_output","timestamp":1607098289,"output":"2-ad1e60d1f9a6, type: PplBlocks, block_index: 4, state: done, result: canceled, event: exit_scheduli"},{"event":"cmd_output","timestamp":1607098290,"output":"ng, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:30"},{"event":"cmd_output","timestamp":1607098290,"output":".285 [info] ppl_id: 2e76f0e6-3298-4e26-b132-ad1e60d1f9a6, type: PplBlocks, block_index: 3, state: d"},{"event":"cmd_output","timestamp":1607098290,"output":"one, result: canceled, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098291,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:31.293 [info] ppl_id: 2e76f0e6-3298-4e26-b132-ad1e60d1f9a6"},{"event":"cmd_output","timestamp":1607098291,"output":", type: PplBlocks, block_index: 2, state: done, result: canceled, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098292,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:32.305 [info] p"},{"event":"cmd_output","timestamp":1607098292,"output":"pl_id: 2e76f0e6-3298-4e26-b132-ad1e60d1f9a6, type: PplBlocks, block_index: 1, state: done, result: c"},{"event":"cmd_output","timestamp":1607098292,"output":"anceled, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/"},{"event":"cmd_output","timestamp":1607098293,"output":"1(L90), \n\u001b[0m\u001b[22m\n16:11:33.313 [info] ppl_id: 2e76f0e6-3298-4e26-b132-ad1e60d1f9a6, type: PplBlo"},{"event":"cmd_output","timestamp":1607098293,"output":"cks, block_index: 0, state: done, result: canceled, event: exit_scheduling, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098293,"output":"n: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test PplBlocks are terminated whe"},{"event":"cmd_output","timestamp":1607098293,"output":"n ppl is stuck-aborted (6221.6ms)\u001b[0m\n\nPpl.PplTraces.Model.PplTracesQueries.Test\n * test insert "},{"event":"cmd_output","timestamp":1607098293,"output":"two pipeline traces for same pipeline fails\r * test insert two pipeline traces for same pipeline fa"},{"event":"cmd_output","timestamp":1607098293,"output":"ils (skipped)\n * test insert new pipeline trace for existing pipeline\r * test insert new pipeline"},{"event":"cmd_output","timestamp":1607098293,"output":" trace for existing pipeline (skipped)\n * test insert new pipeline trace for non-existing pipeline"},{"event":"cmd_output","timestamp":1607098293,"output":" fails\r * test insert new pipeline trace for non-existing pipeline fails (skipped)\n * test set ti"},{"event":"cmd_output","timestamp":1607098293,"output":"mestamps value works for all supported timestamps\r * test set timestamps value works for all suppor"},{"event":"cmd_output","timestamp":1607098293,"output":"ted timestamps (skipped)\n * test set value for unsupported timestamp fails\r * test set value for "},{"event":"cmd_output","timestamp":1607098293,"output":"unsupported timestamp fails (skipped)\n\nPpl.PplTraces.Model.PplTraces.Test\n * doctest Ppl.PplTrac"},{"event":"cmd_output","timestamp":1607098293,"output":"es.Model.PplTraces.changeset_insert/2 (1)\r * doctest Ppl.PplTraces.Model.PplTraces.changeset_insert"},{"event":"cmd_output","timestamp":1607098293,"output":"/2 (1) (skipped)\n * doctest Ppl.PplTraces.Model.PplTraces.changeset_insert/2 (2)\r * doctest Ppl.P"},{"event":"cmd_output","timestamp":1607098293,"output":"plTraces.Model.PplTraces.changeset_insert/2 (2) (skipped)\n\nPpl.PplSubInits.STMHandler.StoppingStat"},{"event":"cmd_output","timestamp":1607098293,"output":"e.Test\n * test when pipeline is terminated while compilation task is running => sub init goes trou"},{"event":"cmd_output","timestamp":1607098293,"output":"gh stopping state\u001b[22m\n16:11:33.445 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.Initial"},{"event":"cmd_output","timestamp":1607098293,"output":"izingState with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms, metric_name: {\""},{"event":"cmd_output","timestamp":1607098293,"output":"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %{allowed_states:"},{"event":"cmd_output","timestamp":1607098293,"output":" [\"initializing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, obser"},{"event":"cmd_output","timestamp":1607098293,"output":"ved_state: \"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.Initializing"},{"event":"cmd_output","timestamp":1607098293,"output":"State.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result"},{"event":"cmd_output","timestamp":1607098293,"output":", :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:"},{"event":"cmd_output","timestamp":1607098293,"output":"33.446 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098293,"output":"s.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHan"},{"event":"cmd_output","timestamp":1607098293,"output":"dler-PendingState\"]}, recurring args: %{allowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], c"},{"event":"cmd_output","timestamp":1607098293,"output":"ooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publisher_cb: #Fu"},{"event":"cmd_output","timestamp":1607098293,"output":"nction<0.8493005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id,"},{"event":"cmd_output","timestamp":1607098293,"output":" :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model"},{"event":"cmd_output","timestamp":1607098293,"output":".Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:11:33.447 [info] Periodic from module El"},{"event":"cmd_output","timestamp":1607098293,"output":"ixir.Ppl.PplSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHandler.CreatedStat"},{"event":"cmd_output","timestamp":1607098293,"output":"e :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState"},{"event":"cmd_output","timestamp":1607098293,"output":"\"]}, recurring args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl"},{"event":"cmd_output","timestamp":1607098293,"output":".PplSubInits.Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, "},{"event":"cmd_output","timestamp":1607098293,"output":"returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema"},{"event":"cmd_output","timestamp":1607098293,"output":": Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:33.448 [info] Period"},{"event":"cmd_output","timestamp":1607098293,"output":"ic from module Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl.PplSubInits.STMH"},{"event":"cmd_output","timestamp":1607098293,"output":"andler.FetchingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMH"},{"event":"cmd_output","timestamp":1607098293,"output":"andler-FetchingState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"done\"], "},{"event":"cmd_output","timestamp":1607098293,"output":"cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fetching\", "},{"event":"cmd_output","timestamp":1607098293,"output":"publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :"},{"event":"cmd_output","timestamp":1607098293,"output":"result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip"},{"event":"cmd_output","timestamp":1607098293,"output":"}\n\u001b[0m\u001b[22m\n16:11:33.448 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.RegularIni"},{"event":"cmd_output","timestamp":1607098293,"output":"tState with name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period: 100 ms, metric_name: "},{"event":"cmd_output","timestamp":1607098293,"output":"{\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurring args: %{allowed"},{"event":"cmd_output","timestamp":1607098293,"output":"_states: [\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_s"},{"event":"cmd_output","timestamp":1607098293,"output":"tate: \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, "},{"event":"cmd_output","timestamp":1607098293,"output":":updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, "},{"event":"cmd_output","timestamp":1607098293,"output":"task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:33.453 [info] Request: 'run: %{\"branch_id\" => \"1093f312-a"},{"event":"cmd_output","timestamp":1607098293,"output":"ca2-40a0-b2c6-501d2d98499b\", \"branch_name\" => \"one_path\", \"commit_sha\" => \"75891a4469\", \"file_name\" "},{"event":"cmd_output","timestamp":1607098293,"output":"=> \"one_path.yml\", \"hook_id\" => \"60820400-364b-11eb-bc8d-5254005464e2\", \"label\" => \"one_path\", \"orga"},{"event":"cmd_output","timestamp":1607098293,"output":"nization_id\" => \"cfc539cb-c16b-449a-a009-af5ba5505b1d\", \"owner\" => \"rt\", \"project_id\" => \"9047f9d7-4"},{"event":"cmd_output","timestamp":1607098293,"output":"c06-4865-9abc-4c8d5bd14a53\", \"repo_name\" => \"22_skip_block\", \"request_token\" => \"6081e984-364b-11eb-"},{"event":"cmd_output","timestamp":1607098293,"output":"92a1-5254005464e2\", \"requester_id\" => \"80cd86e7-d442-4ff9-87a5-0b4209387cb9\", \"service\" => \"local\", "},{"event":"cmd_output","timestamp":1607098293,"output":"\"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"bf4c65cf-51a3-4721-980b-8d"},{"event":"cmd_output","timestamp":1607098293,"output":"6b52550206\", \"working_dir\" => \".semaphore/change_in\"}\n\u001b[0m\u001b[22m\n16:11:33.456 [info] ppl_id: 10aef"},{"event":"cmd_output","timestamp":1607098293,"output":"851-d256-44c5-ae9b-78b3604da375, type: PplRequests, event: persisted schedule request with request_t"},{"event":"cmd_output","timestamp":1607098293,"output":"oken: 6081e984-364b-11eb-92a1-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries."},{"event":"cmd_output","timestamp":1607098293,"output":"process_response/2(L55), \n\u001b[0m\u001b[22m\n16:11:33.460 [info] ppl_id: 10aef851-d256-44c5-ae9b-78b3604da"},{"event":"cmd_output","timestamp":1607098293,"output":"375, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098293,"output":"s.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:11:33.465 [info] Project 9047f9d7-4c0"},{"event":"cmd_output","timestamp":1607098293,"output":"6-4865-9abc-4c8d5bd14a53 and branch one_pathlatest_wf details updated: \"wf_id: bf4c65cf-51a3-4721-98"},{"event":"cmd_output","timestamp":1607098293,"output":"0b-8d6b52550206, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:11:33.468 [info] Persisted ppl_sub_init for pipeline "},{"event":"cmd_output","timestamp":1607098293,"output":"with ppl_id: 10aef851-d256-44c5-ae9b-78b3604da375: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ect"},{"event":"cmd_output","timestamp":1607098293,"output":"o.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: "},{"event":"cmd_output","timestamp":1607098293,"output":"144, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:11:33.466028], pipeli"},{"event":"cmd_output","timestamp":1607098293,"output":"ne_requests: #Ecto.Association.NotLoaded, ppl_id: \"10a"},{"event":"cmd_output","timestamp":1607098293,"output":"ef851-d256-44c5-ae9b-78b3604da375\", recovery_count: 0, result: nil, result_reason: nil, state: \"crea"},{"event":"cmd_output","timestamp":1607098293,"output":"ted\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:11:33.466041"},{"event":"cmd_output","timestamp":1607098293,"output":"]}\n\u001b[0m\u001b[22m\n16:11:33.490 [info] ppl_id: 10aef851-d256-44c5-ae9b-78b3604da375, type: PplRequests,"},{"event":"cmd_output","timestamp":1607098293,"output":" event: persisted source_args for pipeline: 10aef851-d256-44c5-ae9b-78b3604da375, origin: Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098293,"output":".PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:11:33.494 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098293,"output":": 10aef851-d256-44c5-ae9b-78b3604da375, type: PplSubInits, state: fetching, event: exit_scheduling, "},{"event":"cmd_output","timestamp":1607098293,"output":"recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:33.538"},{"event":"cmd_output","timestamp":1607098293,"output":" [info] ppl_id: 10aef851-d256-44c5-ae9b-78b3604da375, type: PplSubInits, state: compilation, event:"},{"event":"cmd_output","timestamp":1607098295,"output":" exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098295,"output":"[22m\n16:11:35.478 [info] Request: 'terminate', request: %{\"ppl_id\" => \"10aef851-d256-44c5-ae9b-78b"},{"event":"cmd_output","timestamp":1607098295,"output":"3604da375\", \"requester_id\" => \"user_id\"}\n\u001b[0m\u001b[22m\n16:11:35.484 [info] Periodic from module Elixi"},{"event":"cmd_output","timestamp":1607098295,"output":"r.Ppl.PplSubInits.STMHandler.CompilationState with name Elixir.Ppl.PplSubInits.STMHandler.Compilatio"},{"event":"cmd_output","timestamp":1607098295,"output":"nState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-Compila"},{"event":"cmd_output","timestamp":1607098295,"output":"tionState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"stopping\", \"done\"],"},{"event":"cmd_output","timestamp":1607098295,"output":" cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"compilatio"},{"event":"cmd_output","timestamp":1607098295,"output":"n\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :stat"},{"event":"cmd_output","timestamp":1607098295,"output":"e, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :"},{"event":"cmd_output","timestamp":1607098295,"output":"skip}\n\u001b[0m\u001b[22m\n16:11:35.517 [info] ppl_id: 10aef851-d256-44c5-ae9b-78b3604da375, type: Ppls, sta"},{"event":"cmd_output","timestamp":1607098295,"output":"te: done, result: canceled, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Imp"},{"event":"cmd_output","timestamp":1607098295,"output":"l.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:35.602 [info] ppl_id: 10aef851-d256-44c5-ae9b-78b3604"},{"event":"cmd_output","timestamp":1607098295,"output":"da375, type: PplSubInits, state: stopping, event: exit_scheduling, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098297,"output":".Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:37.498 [info] Periodic from module Eli"},{"event":"cmd_output","timestamp":1607098297,"output":"xir.Ppl.PplSubInits.STMHandler.StoppingState with name Elixir.Ppl.PplSubInits.STMHandler.StoppingSta"},{"event":"cmd_output","timestamp":1607098297,"output":"te :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-StoppingSta"},{"event":"cmd_output","timestamp":1607098297,"output":"te\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: "},{"event":"cmd_output","timestamp":1607098297,"output":"Ppl.PplSubInits.Model.PplSubInits, observed_state: \"stopping\", publisher_cb: :skip, repo: Ppl.EctoRe"},{"event":"cmd_output","timestamp":1607098297,"output":"po, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], sc"},{"event":"cmd_output","timestamp":1607098297,"output":"hema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:37.608 [info] pp"},{"event":"cmd_output","timestamp":1607098297,"output":"l_id: 10aef851-d256-44c5-ae9b-78b3604da375, type: PplSubInits, state: done, result: stopped, event: "},{"event":"cmd_output","timestamp":1607098298,"output":"exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098298,"output":"32m\r * test when pipeline is terminated while compilation task is running => sub init goes trough s"},{"event":"cmd_output","timestamp":1607098298,"output":"topping state (4618.3ms)\u001b[0m\n\nPpl.PplSubInits.STMHandler.FetchingState.Test\n * test when pipelin"},{"event":"cmd_output","timestamp":1607098298,"output":"e does not need compilation => sub_init goes to regular_init stat\u001b[22m\n16:11:38.050 [info] Periodi"},{"event":"cmd_output","timestamp":1607098298,"output":"c from module Elixir.Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.STMHandler.Init"},{"event":"cmd_output","timestamp":1607098298,"output":"ializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Initial"},{"event":"cmd_output","timestamp":1607098298,"output":"izingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], cooling_time_s"},{"event":"cmd_output","timestamp":1607098298,"output":"ec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher_cb: #Function<0"},{"event":"cmd_output","timestamp":1607098298,"output":".125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, "},{"event":"cmd_output","timestamp":1607098298,"output":":terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model."},{"event":"cmd_output","timestamp":1607098298,"output":"Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:38.050 [info] Periodic from module Elixir.Ppl.Ppls."},{"event":"cmd_output","timestamp":1607098298,"output":"STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 100 ms, metric_"},{"event":"cmd_output","timestamp":1607098298,"output":"name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args: %{allowed_stat"},{"event":"cmd_output","timestamp":1607098298,"output":"es: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Pp"},{"event":"cmd_output","timestamp":1607098298,"output":"ls, observed_state: \"pending\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler.PendingSta"},{"event":"cmd_output","timestamp":1607098298,"output":"te.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :"},{"event":"cmd_output","timestamp":1607098298,"output":"recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098298,"output":"2m\n16:11:38.051 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedState with na"},{"event":"cmd_output","timestamp":1607098298,"output":"me Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.beholder-wak"},{"event":"cmd_output","timestamp":1607098298,"output":"e_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args: %{allowed_states: [\"fetching\", "},{"event":"cmd_output","timestamp":1607098298,"output":"\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"cre"},{"event":"cmd_output","timestamp":1607098298,"output":"ated\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :s"},{"event":"cmd_output","timestamp":1607098298,"output":"tate, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor"},{"event":"cmd_output","timestamp":1607098298,"output":": :skip}\n\u001b[0m\u001b[22m\n16:11:38.052 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.Reg"},{"event":"cmd_output","timestamp":1607098298,"output":"ularInitState with name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period: 100 ms, metric"},{"event":"cmd_output","timestamp":1607098298,"output":"_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurring args: %{"},{"event":"cmd_output","timestamp":1607098298,"output":"allowed_states: [\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, obs"},{"event":"cmd_output","timestamp":1607098298,"output":"erved_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_re"},{"event":"cmd_output","timestamp":1607098298,"output":"quest, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSub"},{"event":"cmd_output","timestamp":1607098298,"output":"Inits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:38.056 [info] Request: 'run: %{\"branch_id\" => \"1b1"},{"event":"cmd_output","timestamp":1607098298,"output":"d2534-53af-480a-b821-36a468b65b41\", \"branch_name\" => \"one_path\", \"commit_sha\" => \"75891a4469\", \"file"},{"event":"cmd_output","timestamp":1607098298,"output":"_name\" => \"one_path.yml\", \"hook_id\" => \"63406b6e-364b-11eb-8a5d-5254005464e2\", \"label\" => \"one_path\""},{"event":"cmd_output","timestamp":1607098298,"output":", \"organization_id\" => \"c33bd823-c89c-4221-967a-263c241d6c54\", \"owner\" => \"rt\", \"project_id\" => \"28e"},{"event":"cmd_output","timestamp":1607098298,"output":"92095-7acb-46d4-a11b-ce1400a299e6\", \"repo_name\" => \"22_skip_block\", \"request_token\" => \"63405822-364"},{"event":"cmd_output","timestamp":1607098298,"output":"b-11eb-81c9-5254005464e2\", \"requester_id\" => \"6560799e-a03e-41f8-8c60-efc1fadc5239\", \"service\" => \"l"},{"event":"cmd_output","timestamp":1607098298,"output":"ocal\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"e2e6890d-15fb-4aa4-"},{"event":"cmd_output","timestamp":1607098298,"output":"9cb8-0232ffedb3bc\", \"working_dir\" => \".semaphore/change_in\"}\n\u001b[0m\u001b[22m\n16:11:38.058 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098298,"output":": 13ded833-f5fb-45ad-8300-cec788c94e0c, type: PplRequests, event: persisted schedule request with re"},{"event":"cmd_output","timestamp":1607098298,"output":"quest_token: 63405822-364b-11eb-81c9-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQ"},{"event":"cmd_output","timestamp":1607098298,"output":"ueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:11:38.061 [info] ppl_id: 13ded833-f5fb-45ad-8300-ce"},{"event":"cmd_output","timestamp":1607098298,"output":"c788c94e0c, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098298,"output":"Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:11:38.065 [info] Project 28e92"},{"event":"cmd_output","timestamp":1607098298,"output":"095-7acb-46d4-a11b-ce1400a299e6 and branch one_pathlatest_wf details updated: \"wf_id: e2e6890d-15fb-"},{"event":"cmd_output","timestamp":1607098298,"output":"4aa4-9cb8-0232ffedb3bc, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:11:38.071 [info] Persisted ppl_sub_init for pi"},{"event":"cmd_output","timestamp":1607098298,"output":"peline with ppl_id: 13ded833-f5fb-45ad-8300-cec788c94e0c: %Ppl.PplSubInits.Model.PplSubInits{__meta_"},{"event":"cmd_output","timestamp":1607098298,"output":"_: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: ni"},{"event":"cmd_output","timestamp":1607098298,"output":"l, id: 145, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:11:38.065540],"},{"event":"cmd_output","timestamp":1607098298,"output":" pipeline_requests: #Ecto.Association.NotLoaded, ppl_i"},{"event":"cmd_output","timestamp":1607098298,"output":"d: \"13ded833-f5fb-45ad-8300-cec788c94e0c\", recovery_count: 0, result: nil, result_reason: nil, state"},{"event":"cmd_output","timestamp":1607098298,"output":": \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:11:38"},{"event":"cmd_output","timestamp":1607098298,"output":".065548]}\n\u001b[0m\u001b[22m\n16:11:38.082 [info] ppl_id: 13ded833-f5fb-45ad-8300-cec788c94e0c, type: PplRe"},{"event":"cmd_output","timestamp":1607098298,"output":"quests, event: persisted source_args for pipeline: 13ded833-f5fb-45ad-8300-cec788c94e0c, origin: Eli"},{"event":"cmd_output","timestamp":1607098298,"output":"xir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:11:38.091 [info] "},{"event":"cmd_output","timestamp":1607098298,"output":" ppl_id: 13ded833-f5fb-45ad-8300-cec788c94e0c, type: PplSubInits, state: fetching, event: exit_sched"},{"event":"cmd_output","timestamp":1607098300,"output":"uling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * te"},{"event":"cmd_output","timestamp":1607098300,"output":"st when pipeline does not need compilation => sub_init goes to regular_init stat (2099.6ms)\u001b[0m\n *"},{"event":"cmd_output","timestamp":1607098300,"output":" test when pipeline needs compilation => pipeline goes to compilationa and task is started\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098300,"output":"11:40.182 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingState with name Elixir"},{"event":"cmd_output","timestamp":1607098300,"output":".Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Pp"},{"event":"cmd_output","timestamp":1607098300,"output":"l-Ppls-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"pending\""},{"event":"cmd_output","timestamp":1607098300,"output":", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", "},{"event":"cmd_output","timestamp":1607098300,"output":"publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.Ec"},{"event":"cmd_output","timestamp":1607098300,"output":"toRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id]"},{"event":"cmd_output","timestamp":1607098300,"output":", schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:40.182 [info] Periodic fro"},{"event":"cmd_output","timestamp":1607098300,"output":"m module Elixir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler.PendingState :"},{"event":"cmd_output","timestamp":1607098300,"output":": period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recur"},{"event":"cmd_output","timestamp":1607098300,"output":"ring args: %{allowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_sec: 0, initial"},{"event":"cmd_output","timestamp":1607098300,"output":"_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publisher_cb: #Function<0.8493005/1 in Ppl.P"},{"event":"cmd_output","timestamp":1607098300,"output":"pls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updat"},{"event":"cmd_output","timestamp":1607098300,"output":"ed_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: Ppl"},{"event":"cmd_output","timestamp":1607098300,"output":"sTaskSupervisor}\n\u001b[0m\u001b[22m\n16:11:40.185 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHan"},{"event":"cmd_output","timestamp":1607098300,"output":"dler.CreatedState with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 100 ms, metric"},{"event":"cmd_output","timestamp":1607098300,"output":"_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args: %{allo"},{"event":"cmd_output","timestamp":1607098300,"output":"wed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubIn"},{"event":"cmd_output","timestamp":1607098300,"output":"its, observed_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate"},{"event":"cmd_output","timestamp":1607098300,"output":"_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.Ppl"},{"event":"cmd_output","timestamp":1607098300,"output":"SubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:40.185 [info] Periodic from module Elixir.Ppl.P"},{"event":"cmd_output","timestamp":1607098300,"output":"plSubInits.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState "},{"event":"cmd_output","timestamp":1607098300,"output":":: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitSta"},{"event":"cmd_output","timestamp":1607098300,"output":"te\"]}, recurring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubIni"},{"event":"cmd_output","timestamp":1607098300,"output":"ts.Model.PplSubInits, observed_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, retur"},{"event":"cmd_output","timestamp":1607098300,"output":"ning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl"},{"event":"cmd_output","timestamp":1607098300,"output":".PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:40.190 [info] Request: 'r"},{"event":"cmd_output","timestamp":1607098300,"output":"un: %{\"branch_id\" => \"c378e37d-1170-4a24-8155-0f60fa8529f8\", \"branch_name\" => \"one_path\", \"commit_sh"},{"event":"cmd_output","timestamp":1607098300,"output":"a\" => \"75891a4469\", \"file_name\" => \"one_path.yml\", \"hook_id\" => \"6485a840-364b-11eb-8abf-5254005464e"},{"event":"cmd_output","timestamp":1607098300,"output":"2\", \"label\" => \"one_path\", \"organization_id\" => \"ffd415e8-4d45-4ab2-be28-897856ca2068\", \"owner\" => \""},{"event":"cmd_output","timestamp":1607098300,"output":"rt\", \"project_id\" => \"9047f9d7-4c06-4865-9abc-4c8d5bd14a53\", \"repo_name\" => \"22_skip_block\", \"reques"},{"event":"cmd_output","timestamp":1607098300,"output":"t_token\" => \"64859efe-364b-11eb-b589-5254005464e2\", \"requester_id\" => \"922c297e-3b95-4119-95a9-d8028"},{"event":"cmd_output","timestamp":1607098300,"output":"9e592d0\", \"service\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id"},{"event":"cmd_output","timestamp":1607098300,"output":"\" => \"085b7a7e-649c-49fa-a235-7ea5f5b84041\", \"working_dir\" => \".semaphore/change_in\"}\n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098300,"output":":11:40.201 [info] ppl_id: 301ba2fc-a676-4bdc-a754-7a09a94ff11c, type: PplRequests, event: persisted"},{"event":"cmd_output","timestamp":1607098300,"output":" schedule request with request_token: 64859efe-364b-11eb-b589-5254005464e2, origin: Elixir.Ppl.PplRe"},{"event":"cmd_output","timestamp":1607098300,"output":"quests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:11:40.205 [info] ppl_id: 3"},{"event":"cmd_output","timestamp":1607098300,"output":"01ba2fc-a676-4bdc-a754-7a09a94ff11c, type: Ppls, state: initializing, event: initializing, recovery_"},{"event":"cmd_output","timestamp":1607098300,"output":"count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:11:40."},{"event":"cmd_output","timestamp":1607098300,"output":"211 [info] Project 9047f9d7-4c06-4865-9abc-4c8d5bd14a53 and branch one_pathlatest_wf details update"},{"event":"cmd_output","timestamp":1607098300,"output":"d: \"wf_id: 085b7a7e-649c-49fa-a235-7ea5f5b84041, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:11:40.214 [info] Pers"},{"event":"cmd_output","timestamp":1607098300,"output":"isted ppl_sub_init for pipeline with ppl_id: 301ba2fc-a676-4bdc-a754-7a09a94ff11c: %Ppl.PplSubInits."},{"event":"cmd_output","timestamp":1607098300,"output":"Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: n"},{"event":"cmd_output","timestamp":1607098300,"output":"il, error_description: nil, id: 146, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[202"},{"event":"cmd_output","timestamp":1607098300,"output":"0-12-04 16:11:40.211260], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"301ba2fc-a676-4bdc-a754-7a09a94ff11c\", recovery_count: 0, result: nil, "},{"event":"cmd_output","timestamp":1607098300,"output":"result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_a"},{"event":"cmd_output","timestamp":1607098300,"output":"t: ~N[2020-12-04 16:11:40.211271]}\n\u001b[0m\u001b[22m\n16:11:40.240 [info] ppl_id: 301ba2fc-a676-4bdc-a754-"},{"event":"cmd_output","timestamp":1607098300,"output":"7a09a94ff11c, type: PplRequests, event: persisted source_args for pipeline: 301ba2fc-a676-4bdc-a754-"},{"event":"cmd_output","timestamp":1607098300,"output":"7a09a94ff11c, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098300,"output":"22m\n16:11:40.243 [info] ppl_id: 301ba2fc-a676-4bdc-a754-7a09a94ff11c, type: PplSubInits, state: fe"},{"event":"cmd_output","timestamp":1607098300,"output":"tching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1"},{"event":"cmd_output","timestamp":1607098304,"output":"(L90), \n\u001b[0m\u001b[32m\r * test when pipeline needs compilation => pipeline goes to compilationa and tas"},{"event":"cmd_output","timestamp":1607098304,"output":"k is started (4146.2ms)\u001b[0m\n\nPpl.PplSubInits.STMHandler.Compilation.TaskClient.Test\n * test when"},{"event":"cmd_output","timestamp":1607098304,"output":" time-out occures in schedule call => error is returned\r * test when time-out occures in schedule c"},{"event":"cmd_output","timestamp":1607098304,"output":"all => error is returned (skipped)\n * test when URL is invalid in terminate call => timeout occure"},{"event":"cmd_output","timestamp":1607098304,"output":"s\r * test when URL is invalid in terminate call => timeout occures (skipped)\n * test when URL is "},{"event":"cmd_output","timestamp":1607098304,"output":"invalid in schedule call => timeout occures\r * test when URL is invalid in schedule call => timeout"},{"event":"cmd_output","timestamp":1607098304,"output":" occures (skipped)\n * test when time-out occures in describe call => error is returned\r * test wh"},{"event":"cmd_output","timestamp":1607098304,"output":"en time-out occures in describe call => error is returned (skipped)\n * test when schedule is calle"},{"event":"cmd_output","timestamp":1607098304,"output":"d => gRPC server response is processed correctly\u001b[32m\r * test when schedule is called => gRPC serve"},{"event":"cmd_output","timestamp":1607098304,"output":"r response is processed correctly (8.6ms)\u001b[0m\n * test when describe is called => gRPC server respo"},{"event":"cmd_output","timestamp":1607098305,"output":"nse is processed correctly\u001b[32m\r * test when describe is called => gRPC server response is processe"},{"event":"cmd_output","timestamp":1607098305,"output":"d correctly (1014.4ms)\u001b[0m\n * test when time-out occures in terminate call => error is returned\r "},{"event":"cmd_output","timestamp":1607098305,"output":"* test when time-out occures in terminate call => error is returned (skipped)\n * test when termina"},{"event":"cmd_output","timestamp":1607098305,"output":"te is called => gRPC server response is processed correctly\u001b[32m\r * test when terminate is called ="},{"event":"cmd_output","timestamp":1607098305,"output":"> gRPC server response is processed correctly (19.8ms)\u001b[0m\n * test when URL is invalid in describe"},{"event":"cmd_output","timestamp":1607098305,"output":" call => timeout occures\r * test when URL is invalid in describe call => timeout occures (skipped)\r"},{"event":"cmd_output","timestamp":1607098305,"output":"\n\nPpl.PplSubInits.STMHandler.CompilationState.Test\n * test when compilation task passes => yaml i"},{"event":"cmd_output","timestamp":1607098305,"output":"s fetched and stored and sub_init goes to regular_ini\u001b[22m\n16:11:45.361 [info] Periodic from modul"},{"event":"cmd_output","timestamp":1607098305,"output":"e Elixir.Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.STMHandler.InitializingStat"},{"event":"cmd_output","timestamp":1607098305,"output":"e :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]"},{"event":"cmd_output","timestamp":1607098305,"output":"}, recurring args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], cooling_time_sec: 0, initi"},{"event":"cmd_output","timestamp":1607098305,"output":"al_query: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher_cb: #Function<0.125326080/1"},{"event":"cmd_output","timestamp":1607098305,"output":" in Ppl.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_r"},{"event":"cmd_output","timestamp":1607098305,"output":"equest, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_s"},{"event":"cmd_output","timestamp":1607098305,"output":"upervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:45.362 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.P"},{"event":"cmd_output","timestamp":1607098305,"output":"endingState with name Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl."},{"event":"cmd_output","timestamp":1607098305,"output":"beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"pendin"},{"event":"cmd_output","timestamp":1607098305,"output":"g\", \"queuing\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed"},{"event":"cmd_output","timestamp":1607098305,"output":"_state: \"pending\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, "},{"event":"cmd_output","timestamp":1607098305,"output":"repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_cou"},{"event":"cmd_output","timestamp":1607098305,"output":"nt, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:11:45"},{"event":"cmd_output","timestamp":1607098305,"output":".362 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedState with name Elixir.Pp"},{"event":"cmd_output","timestamp":1607098305,"output":"l.PplSubInits.STMHandler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl"},{"event":"cmd_output","timestamp":1607098305,"output":"-PplSubInits-STMHandler-CreatedState\"]}, recurring args: %{allowed_states: [\"fetching\", \"done\"], coo"},{"event":"cmd_output","timestamp":1607098305,"output":"ling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"created\", publi"},{"event":"cmd_output","timestamp":1607098305,"output":"sher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :resul"},{"event":"cmd_output","timestamp":1607098305,"output":"t, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b["},{"event":"cmd_output","timestamp":1607098305,"output":"0m\u001b[22m\n16:11:45.363 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.FetchingState w"},{"event":"cmd_output","timestamp":1607098305,"output":"ith name Elixir.Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 ms, metric_name: {\"Ppl.behol"},{"event":"cmd_output","timestamp":1607098305,"output":"der-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %{allowed_states: [\"reg"},{"event":"cmd_output","timestamp":1607098305,"output":"ular_init\", \"compilation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSu"},{"event":"cmd_output","timestamp":1607098305,"output":"bInits, observed_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :termi"},{"event":"cmd_output","timestamp":1607098305,"output":"nate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model"},{"event":"cmd_output","timestamp":1607098305,"output":".PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:45.364 [info] Periodic from module Elixir.P"},{"event":"cmd_output","timestamp":1607098305,"output":"pl.PplSubInits.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHandler.RegularInitSt"},{"event":"cmd_output","timestamp":1607098305,"output":"ate :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularIni"},{"event":"cmd_output","timestamp":1607098305,"output":"tState\"]}, recurring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSu"},{"event":"cmd_output","timestamp":1607098305,"output":"bInits.Model.PplSubInits, observed_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, r"},{"event":"cmd_output","timestamp":1607098305,"output":"eturning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema:"},{"event":"cmd_output","timestamp":1607098305,"output":" Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:45.378 [info] Request"},{"event":"cmd_output","timestamp":1607098305,"output":": 'run: %{\"branch_id\" => \"deb675f3-0d89-41d4-afec-67aa78bf81fc\", \"branch_name\" => \"one_path\", \"commi"},{"event":"cmd_output","timestamp":1607098305,"output":"t_sha\" => \"75891a4469\", \"file_name\" => \"one_path.yml\", \"hook_id\" => \"679c18ac-364b-11eb-8a80-5254005"},{"event":"cmd_output","timestamp":1607098305,"output":"464e2\", \"label\" => \"one_path\", \"organization_id\" => \"336f7324-addd-4e2e-bfe2-69a934a24c15\", \"owner\" "},{"event":"cmd_output","timestamp":1607098305,"output":"=> \"rt\", \"project_id\" => \"9047f9d7-4c06-4865-9abc-4c8d5bd14a53\", \"repo_name\" => \"22_skip_block\", \"re"},{"event":"cmd_output","timestamp":1607098305,"output":"quest_token\" => \"679bf71e-364b-11eb-a565-5254005464e2\", \"requester_id\" => \"7fa4470e-1b64-48df-a7b1-d"},{"event":"cmd_output","timestamp":1607098305,"output":"2fec3aeab49\", \"service\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"w"},{"event":"cmd_output","timestamp":1607098305,"output":"f_id\" => \"a2109fc0-5d71-4447-8111-6f9345972c36\", \"working_dir\" => \".semaphore/change_in\"}\n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098305,"output":"\n16:11:45.382 [info] ppl_id: 0c6d490c-e701-48e2-bf50-aa61cd6216fa, type: PplRequests, event: persi"},{"event":"cmd_output","timestamp":1607098305,"output":"sted schedule request with request_token: 679bf71e-364b-11eb-a565-5254005464e2, origin: Elixir.Ppl.P"},{"event":"cmd_output","timestamp":1607098305,"output":"plRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:11:45.386 [info] ppl_i"},{"event":"cmd_output","timestamp":1607098305,"output":"d: 0c6d490c-e701-48e2-bf50-aa61cd6216fa, type: Ppls, state: initializing, event: initializing, recov"},{"event":"cmd_output","timestamp":1607098305,"output":"ery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:11"},{"event":"cmd_output","timestamp":1607098305,"output":":45.392 [info] Project 9047f9d7-4c06-4865-9abc-4c8d5bd14a53 and branch one_pathlatest_wf details up"},{"event":"cmd_output","timestamp":1607098305,"output":"dated: \"wf_id: a2109fc0-5d71-4447-8111-6f9345972c36, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:11:45.395 [info] "},{"event":"cmd_output","timestamp":1607098305,"output":"Persisted ppl_sub_init for pipeline with ppl_id: 0c6d490c-e701-48e2-bf50-aa61cd6216fa: %Ppl.PplSubIn"},{"event":"cmd_output","timestamp":1607098305,"output":"its.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_i"},{"event":"cmd_output","timestamp":1607098305,"output":"d: nil, error_description: nil, id: 147, in_scheduling: false, init_type: \"regular\", inserted_at: ~N"},{"event":"cmd_output","timestamp":1607098305,"output":"[2020-12-04 16:11:45.392778], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"0c6d490c-e701-48e2-bf50-aa61cd6216fa\", recovery_count: 0, result: n"},{"event":"cmd_output","timestamp":1607098305,"output":"il, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updat"},{"event":"cmd_output","timestamp":1607098305,"output":"ed_at: ~N[2020-12-04 16:11:45.392789]}\n\u001b[0m\u001b[22m\n16:11:45.422 [info] ppl_id: 0c6d490c-e701-48e2-b"},{"event":"cmd_output","timestamp":1607098305,"output":"f50-aa61cd6216fa, type: PplRequests, event: persisted source_args for pipeline: 0c6d490c-e701-48e2-b"},{"event":"cmd_output","timestamp":1607098305,"output":"f50-aa61cd6216fa, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b["},{"event":"cmd_output","timestamp":1607098305,"output":"0m\u001b[22m\n16:11:45.427 [info] ppl_id: 0c6d490c-e701-48e2-bf50-aa61cd6216fa, type: PplSubInits, state"},{"event":"cmd_output","timestamp":1607098305,"output":": fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chan"},{"event":"cmd_output","timestamp":1607098305,"output":"ge/1(L90), \n\u001b[0m\u001b[22m\n16:11:45.477 [info] ppl_id: 0c6d490c-e701-48e2-bf50-aa61cd6216fa, type: Ppl"},{"event":"cmd_output","timestamp":1607098305,"output":"SubInits, state: compilation, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.I"},{"event":"cmd_output","timestamp":1607098308,"output":"mpl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test when compilation task passes => yaml is fetched an"},{"event":"cmd_output","timestamp":1607098308,"output":"d stored and sub_init goes to regular_ini (3267.6ms)\u001b[0m\n\nPpl.PplSubInits.STMHandler.Compilation.D"},{"event":"cmd_output","timestamp":1607098308,"output":"efinition.Test\n * test when in test environment => simple definition is used\r * test when in test"},{"event":"cmd_output","timestamp":1607098308,"output":" environment => simple definition is used (skipped)\n * test when in prod environment => return com"},{"event":"cmd_output","timestamp":1607098308,"output":"pilation definition with proper env vars set\u001b[22m\n16:11:48.623 [info] Request: 'run: %{\"branch_id\""},{"event":"cmd_output","timestamp":1607098308,"output":" => \"90c8fb6a-cd56-4a10-9d60-feab199fb71f\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469\","},{"event":"cmd_output","timestamp":1607098308,"output":" \"file_name\" => \"semaphore.yml\", \"hook_id\" => \"698cbb30-364b-11eb-b37c-5254005464e2\", \"label\" => \"ma"},{"event":"cmd_output","timestamp":1607098308,"output":"ster\", \"organization_id\" => \"bfeb9884-9d59-4ee8-8aa8-763f1bd9ebd1\", \"owner\" => \"rt\", \"project_id\" =>"},{"event":"cmd_output","timestamp":1607098308,"output":" \"b681bcec-f6bd-4742-80ad-0e3e003e6ad1\", \"repo_name\" => \"2_basic\", \"request_token\" => \"698cb3ec-364b"},{"event":"cmd_output","timestamp":1607098308,"output":"-11eb-99f1-5254005464e2\", \"requester_id\" => \"8df0a8f4-c0b1-4e12-8204-50d42cee20df\", \"service\" => \"lo"},{"event":"cmd_output","timestamp":1607098308,"output":"cal\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"e53e872d-c92e-44a9-8"},{"event":"cmd_output","timestamp":1607098308,"output":"25b-d3bb1ede3558\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:11:48.630 [info] ppl_id: a2d26f94-"},{"event":"cmd_output","timestamp":1607098308,"output":"7fa2-4f2e-a813-91165cc5b66f, type: PplRequests, event: persisted schedule request with request_token"},{"event":"cmd_output","timestamp":1607098308,"output":": 698cb3ec-364b-11eb-99f1-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.proc"},{"event":"cmd_output","timestamp":1607098308,"output":"ess_response/2(L55), \n\u001b[0m\u001b[22m\n16:11:48.633 [info] ppl_id: a2d26f94-7fa2-4f2e-a813-91165cc5b66f,"},{"event":"cmd_output","timestamp":1607098308,"output":" type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Mo"},{"event":"cmd_output","timestamp":1607098308,"output":"del.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:11:48.639 [info] Project b681bcec-f6bd-47"},{"event":"cmd_output","timestamp":1607098308,"output":"42-80ad-0e3e003e6ad1 and branch masterlatest_wf details updated: \"wf_id: e53e872d-c92e-44a9-825b-d3b"},{"event":"cmd_output","timestamp":1607098308,"output":"b1ede3558, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:11:48.643 [info] Persisted ppl_sub_init for pipeline with p"},{"event":"cmd_output","timestamp":1607098308,"output":"pl_id: a2d26f94-7fa2-4f2e-a813-91165cc5b66f: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Sche"},{"event":"cmd_output","timestamp":1607098308,"output":"ma.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 148, i"},{"event":"cmd_output","timestamp":1607098308,"output":"n_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:11:48.639670], pipeline_req"},{"event":"cmd_output","timestamp":1607098308,"output":"uests: #Ecto.Association.NotLoaded, ppl_id: \"a2d26f94-"},{"event":"cmd_output","timestamp":1607098308,"output":"7fa2-4f2e-a813-91165cc5b66f\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", "},{"event":"cmd_output","timestamp":1607098308,"output":"terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:11:48.639678]}\n\u001b["},{"event":"cmd_output","timestamp":1607098308,"output":"0m\u001b[22m\n16:11:48.650 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingState with"},{"event":"cmd_output","timestamp":1607098308,"output":" name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wa"},{"event":"cmd_output","timestamp":1607098308,"output":"ke_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing"},{"event":"cmd_output","timestamp":1607098308,"output":"\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"ini"},{"event":"cmd_output","timestamp":1607098308,"output":"tializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, "},{"event":"cmd_output","timestamp":1607098308,"output":"repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_cou"},{"event":"cmd_output","timestamp":1607098308,"output":"nt, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:48.650 [info] "},{"event":"cmd_output","timestamp":1607098308,"output":"Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler.Pe"},{"event":"cmd_output","timestamp":1607098308,"output":"ndingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingSta"},{"event":"cmd_output","timestamp":1607098308,"output":"te\"]}, recurring args: %{allowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_sec"},{"event":"cmd_output","timestamp":1607098308,"output":": 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publisher_cb: #Function<0.849300"},{"event":"cmd_output","timestamp":1607098308,"output":"5/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_req"},{"event":"cmd_output","timestamp":1607098308,"output":"uest, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_sup"},{"event":"cmd_output","timestamp":1607098308,"output":"ervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:11:48.650 [info] Periodic from module Elixir.Ppl.Ppls.S"},{"event":"cmd_output","timestamp":1607098308,"output":"TMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, metric_n"},{"event":"cmd_output","timestamp":1607098308,"output":"ame: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{allowed_state"},{"event":"cmd_output","timestamp":1607098308,"output":"s: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observe"},{"event":"cmd_output","timestamp":1607098308,"output":"d_state: \"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.args/0"},{"event":"cmd_output","timestamp":1607098308,"output":">, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_"},{"event":"cmd_output","timestamp":1607098308,"output":"count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:48.651 [info"},{"event":"cmd_output","timestamp":1607098308,"output":"] Periodic from module Elixir.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHandler"},{"event":"cmd_output","timestamp":1607098308,"output":".RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Running"},{"event":"cmd_output","timestamp":1607098308,"output":"State\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, i"},{"event":"cmd_output","timestamp":1607098308,"output":"nitial_query: Ppl.Ppls.Model.Ppls, observed_state: \"running\", publisher_cb: #Function<0.74670282/1 i"},{"event":"cmd_output","timestamp":1607098308,"output":"n Ppl.Ppls.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request,"},{"event":"cmd_output","timestamp":1607098308,"output":" :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervis"},{"event":"cmd_output","timestamp":1607098308,"output":"or: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:11:48.652 [info] Periodic from module Elixir.Ppl.Ppls.STMHan"},{"event":"cmd_output","timestamp":1607098308,"output":"dler.StoppingState with name Elixir.Ppl.Ppls.STMHandler.StoppingState :: period: 100 ms, metric_name"},{"event":"cmd_output","timestamp":1607098308,"output":": {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring args: %{allowed_states:"},{"event":"cmd_output","timestamp":1607098308,"output":" [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"st"},{"event":"cmd_output","timestamp":1607098308,"output":"opping\", publisher_cb: #Function<0.71803493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, repo: Pp"},{"event":"cmd_output","timestamp":1607098308,"output":"l.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl"},{"event":"cmd_output","timestamp":1607098308,"output":"_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:48.652 [info] Periodic"},{"event":"cmd_output","timestamp":1607098308,"output":" from module Elixir.Ppl.PplSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHand"},{"event":"cmd_output","timestamp":1607098308,"output":"ler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandl"},{"event":"cmd_output","timestamp":1607098308,"output":"er-CreatedState\"]}, recurring args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, ini"},{"event":"cmd_output","timestamp":1607098308,"output":"tial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip, repo:"},{"event":"cmd_output","timestamp":1607098308,"output":" Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :"},{"event":"cmd_output","timestamp":1607098308,"output":"ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:48.652"},{"event":"cmd_output","timestamp":1607098308,"output":" [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl.P"},{"event":"cmd_output","timestamp":1607098308,"output":"plSubInits.STMHandler.FetchingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-P"},{"event":"cmd_output","timestamp":1607098308,"output":"plSubInits-STMHandler-FetchingState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilat"},{"event":"cmd_output","timestamp":1607098308,"output":"ion\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_stat"},{"event":"cmd_output","timestamp":1607098308,"output":"e: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :update"},{"event":"cmd_output","timestamp":1607098308,"output":"d_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_su"},{"event":"cmd_output","timestamp":1607098308,"output":"pervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:48.653 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHan"},{"event":"cmd_output","timestamp":1607098308,"output":"dler.CompilationState with name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 100 ms"},{"event":"cmd_output","timestamp":1607098308,"output":", metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurring "},{"event":"cmd_output","timestamp":1607098308,"output":"args: %{allowed_states: [\"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2, i"},{"event":"cmd_output","timestamp":1607098308,"output":"nitial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"compilation\", publisher_cb: :skip,"},{"event":"cmd_output","timestamp":1607098308,"output":" repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_co"},{"event":"cmd_output","timestamp":1607098308,"output":"unt, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:"},{"event":"cmd_output","timestamp":1607098308,"output":"48.653 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with name Eli"},{"event":"cmd_output","timestamp":1607098308,"output":"xir.Ppl.PplSubInits.STMHandler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_"},{"event":"cmd_output","timestamp":1607098308,"output":"up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurring args: %{allowed_states: [\"done\"], c"},{"event":"cmd_output","timestamp":1607098308,"output":"ooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_init\""},{"event":"cmd_output","timestamp":1607098308,"output":", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state,"},{"event":"cmd_output","timestamp":1607098308,"output":" :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :sk"},{"event":"cmd_output","timestamp":1607098308,"output":"ip}\n\u001b[0m\u001b[22m\n16:11:48.654 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.Initializi"},{"event":"cmd_output","timestamp":1607098308,"output":"ngState with name Elixir.Ppl.PplBlocks.STMHandler.InitializingState :: period: 100 ms, metric_name: "},{"event":"cmd_output","timestamp":1607098308,"output":"{\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_"},{"event":"cmd_output","timestamp":1607098308,"output":"states: [\"initializing\", \"waiting\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model"},{"event":"cmd_output","timestamp":1607098308,"output":".PplBlocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id"},{"event":"cmd_output","timestamp":1607098308,"output":", :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema:"},{"event":"cmd_output","timestamp":1607098308,"output":" Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:48.654 [info] Periodic fr"},{"event":"cmd_output","timestamp":1607098308,"output":"om module Elixir.Ppl.PplBlocks.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler.Wai"},{"event":"cmd_output","timestamp":1607098308,"output":"tingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-Waiti"},{"event":"cmd_output","timestamp":1607098308,"output":"ngState\"]}, recurring args: %{allowed_states: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 0, i"},{"event":"cmd_output","timestamp":1607098308,"output":"nitial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"waiting\", publisher_cb: #Function<0.89"},{"event":"cmd_output","timestamp":1607098308,"output":"75022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :term"},{"event":"cmd_output","timestamp":1607098308,"output":"inate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.Pp"},{"event":"cmd_output","timestamp":1607098308,"output":"lBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:48.654 [info] Periodic from modu"},{"event":"cmd_output","timestamp":1607098308,"output":"le Elixir.Ppl.PplBlocks.STMHandler.RunningState with name Elixir.Ppl.PplBlocks.STMHandler.RunningSta"},{"event":"cmd_output","timestamp":1607098308,"output":"te :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningState"},{"event":"cmd_output","timestamp":1607098308,"output":"\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initia"},{"event":"cmd_output","timestamp":1607098308,"output":"l_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"running\", publisher_cb: #Function<0.2816683"},{"event":"cmd_output","timestamp":1607098308,"output":"4/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminat"},{"event":"cmd_output","timestamp":1607098308,"output":"e_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema:"},{"event":"cmd_output","timestamp":1607098308,"output":" Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:48.655 [info] Periodic fr"},{"event":"cmd_output","timestamp":1607098308,"output":"om module Elixir.Ppl.PplBlocks.STMHandler.StoppingState with name Elixir.Ppl.PplBlocks.STMHandler.St"},{"event":"cmd_output","timestamp":1607098308,"output":"oppingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-Sto"},{"event":"cmd_output","timestamp":1607098308,"output":"ppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial"},{"event":"cmd_output","timestamp":1607098308,"output":"_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"stopping\", publisher_cb: #Function<0.1042159"},{"event":"cmd_output","timestamp":1607098308,"output":"91/1 in Ppl.PplBlocks.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :termin"},{"event":"cmd_output","timestamp":1607098308,"output":"ate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schem"},{"event":"cmd_output","timestamp":1607098308,"output":"a: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:48.655 [info] Periodic "},{"event":"cmd_output","timestamp":1607098308,"output":"from module Elixir.Block.Blocks.STMHandler.InitializingState with name Elixir.Block.Blocks.STMHandle"},{"event":"cmd_output","timestamp":1607098308,"output":"r.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandl"},{"event":"cmd_output","timestamp":1607098308,"output":"er-InitializingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0,"},{"event":"cmd_output","timestamp":1607098308,"output":" initial_query: Block.Blocks.Model.Blocks, observed_state: \"initializing\", publisher_cb: :skip, repo"},{"event":"cmd_output","timestamp":1607098308,"output":": Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_"},{"event":"cmd_output","timestamp":1607098308,"output":"id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:48.655 [info] Per"},{"event":"cmd_output","timestamp":1607098308,"output":"iodic from module Elixir.Block.Blocks.STMHandler.RunningState with name Elixir.Block.Blocks.STMHandl"},{"event":"cmd_output","timestamp":1607098308,"output":"er.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-R"},{"event":"cmd_output","timestamp":1607098308,"output":"unningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec:"},{"event":"cmd_output","timestamp":1607098308,"output":" -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"running\", publisher_cb: :skip, repo:"},{"event":"cmd_output","timestamp":1607098308,"output":" Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_i"},{"event":"cmd_output","timestamp":1607098308,"output":"d], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:48.656 [info] Peri"},{"event":"cmd_output","timestamp":1607098308,"output":"odic from module Elixir.Block.Blocks.STMHandler.StoppingState with name Elixir.Block.Blocks.STMHandl"},{"event":"cmd_output","timestamp":1607098308,"output":"er.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-"},{"event":"cmd_output","timestamp":1607098308,"output":"StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, init"},{"event":"cmd_output","timestamp":1607098308,"output":"ial_query: Block.Blocks.Model.Blocks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.E"},{"event":"cmd_output","timestamp":1607098308,"output":"ctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], sche"},{"event":"cmd_output","timestamp":1607098308,"output":"ma: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:48.656 [info] Periodic fro"},{"event":"cmd_output","timestamp":1607098308,"output":"m module Elixir.Block.Tasks.STMHandler.PendingState with name Elixir.Block.Tasks.STMHandler.PendingS"},{"event":"cmd_output","timestamp":1607098308,"output":"tate :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingState\""},{"event":"cmd_output","timestamp":1607098308,"output":"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block"},{"event":"cmd_output","timestamp":1607098308,"output":".Tasks.Model.Tasks, observed_state: \"pending\", publisher_cb: :skip, repo: Block.EctoRepo, returning:"},{"event":"cmd_output","timestamp":1607098308,"output":" [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id, :build_request_id], sche"},{"event":"cmd_output","timestamp":1607098308,"output":"ma: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:48.656 [info] Periodic from "},{"event":"cmd_output","timestamp":1607098308,"output":"module Elixir.Block.Tasks.STMHandler.RunningState with name Elixir.Block.Tasks.STMHandler.RunningSta"},{"event":"cmd_output","timestamp":1607098308,"output":"te :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningState\"]}"},{"event":"cmd_output","timestamp":1607098308,"output":", recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_q"},{"event":"cmd_output","timestamp":1607098308,"output":"uery: Block.Tasks.Model.Tasks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo,"},{"event":"cmd_output","timestamp":1607098308,"output":" returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Bloc"},{"event":"cmd_output","timestamp":1607098308,"output":"k.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:48.657 [info] Periodic from module E"},{"event":"cmd_output","timestamp":1607098308,"output":"lixir.Block.Tasks.STMHandler.StoppingState with name Elixir.Block.Tasks.STMHandler.StoppingState :: "},{"event":"cmd_output","timestamp":1607098308,"output":"period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]}, rec"},{"event":"cmd_output","timestamp":1607098308,"output":"urring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Task"},{"event":"cmd_output","timestamp":1607098308,"output":"s.Model.Tasks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:i"},{"event":"cmd_output","timestamp":1607098308,"output":"d, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.T"},{"event":"cmd_output","timestamp":1607098308,"output":"asks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:48.770 [info] ppl_id: a2d26f94-7fa2-4f2e-a813-91165"},{"event":"cmd_output","timestamp":1607098308,"output":"cc5b66f, type: PplRequests, event: persisted source_args for pipeline: a2d26f94-7fa2-4f2e-a813-91165"},{"event":"cmd_output","timestamp":1607098308,"output":"cc5b66f, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098308,"output":"16:11:48.773 [info] ppl_id: a2d26f94-7fa2-4f2e-a813-91165cc5b66f, type: PplSubInits, state: fetchin"},{"event":"cmd_output","timestamp":1607098308,"output":"g, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90)"},{"event":"cmd_output","timestamp":1607098308,"output":", \n\u001b[0m\u001b[22m\n16:11:48.795 [info] ppl_id: a2d26f94-7fa2-4f2e-a813-91165cc5b66f, type: PplSubInits,"},{"event":"cmd_output","timestamp":1607098308,"output":" state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_"},{"event":"cmd_output","timestamp":1607098308,"output":"state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:48.822 [info] ppl_id: a2d26f94-7fa2-4f2e-a813-91165cc5b66f,"},{"event":"cmd_output","timestamp":1607098308,"output":" type: PplRequests, event: persisted definition for request with request_token: 698cb3ec-364b-11eb-9"},{"event":"cmd_output","timestamp":1607098308,"output":"9f1-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), "},{"event":"cmd_output","timestamp":1607098308,"output":"\n\u001b[0m\u001b[22m\n16:11:48.825 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Sc"},{"event":"cmd_output","timestamp":1607098308,"output":"hema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:11:48.823880], name: \"master-.semaph"},{"event":"cmd_output","timestamp":1607098308,"output":"ore/semaphore.yml\", organization_id: \"bfeb9884-9d59-4ee8-8aa8-763f1bd9ebd1\", project_id: \"b681bcec-f"},{"event":"cmd_output","timestamp":1607098308,"output":"6bd-4742-80ad-0e3e003e6ad1\", queue_id: \"5d33b085-27e9-42e8-b603-b90fbeda1afd\", scope: \"project\", upd"},{"event":"cmd_output","timestamp":1607098308,"output":"ated_at: ~N[2020-12-04 16:11:48.823891], user_generated: false}}\n\u001b[0m\u001b[22m\n16:11:48.830 [info] ev"},{"event":"cmd_output","timestamp":1607098308,"output":"ent: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098308,"output":"m\n16:11:48.830 [info] ppl_id: a2d26f94-7fa2-4f2e-a813-91165cc5b66f, type: PplBlocks, block_index: "},{"event":"cmd_output","timestamp":1607098308,"output":"0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler"},{"event":"cmd_output","timestamp":1607098308,"output":".RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:11:48.832 [info] ppl_id: a2d26f94-7fa2-4f2e-a813"},{"event":"cmd_output","timestamp":1607098308,"output":"-91165cc5b66f, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_coun"},{"event":"cmd_output","timestamp":1607098308,"output":"t: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:48.843 [info] ppl_"},{"event":"cmd_output","timestamp":1607098308,"output":"id: a2d26f94-7fa2-4f2e-a813-91165cc5b66f, type: PplBlocks, block_index: 0, state: waiting, event: ex"},{"event":"cmd_output","timestamp":1607098308,"output":"it_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098308,"output":"m\n16:11:48.843 [info] ppl_id: a2d26f94-7fa2-4f2e-a813-91165cc5b66f, type: Ppls, state: pending, ev"},{"event":"cmd_output","timestamp":1607098308,"output":"ent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b"},{"event":"cmd_output","timestamp":1607098308,"output":"[0m\u001b[22m\n16:11:48.854 [info] ppl_id: a2d26f94-7fa2-4f2e-a813-91165cc5b66f, type: Ppls, state: queu"},{"event":"cmd_output","timestamp":1607098308,"output":"ing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L9"},{"event":"cmd_output","timestamp":1607098308,"output":"0), \n\u001b[0m\u001b[22m\n16:11:48.864 [info] ppl_id: a2d26f94-7fa2-4f2e-a813-91165cc5b66f, type: Ppls, stat"},{"event":"cmd_output","timestamp":1607098308,"output":"e: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chan"},{"event":"cmd_output","timestamp":1607098308,"output":"ge/1(L90), \n\u001b[0m\u001b[22m\n16:11:48.874 [info] PplBlocks WaitingState STM is scheduling block 0 from p"},{"event":"cmd_output","timestamp":1607098308,"output":"ipeline: \"a2d26f94-7fa2-4f2e-a813-91165cc5b66f\"\n\u001b[0m\u001b[22m\n16:11:48.880 [info] block_id: d4cfa8cf-"},{"event":"cmd_output","timestamp":1607098308,"output":"243f-42e4-88f0-aa2458af460d, type: BlockRequests, event: persisted block run request from ppl a2d26f"},{"event":"cmd_output","timestamp":1607098308,"output":"94-7fa2-4f2e-a813-91165cc5b66f for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQu"},{"event":"cmd_output","timestamp":1607098308,"output":"eries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:11:48.889 [info] block_id: d4cfa8cf-243f-42e4-88f0-a"},{"event":"cmd_output","timestamp":1607098308,"output":"a2458af460d, type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098308,"output":"ir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:11:48.893 [info] Block 0 of pipe"},{"event":"cmd_output","timestamp":1607098308,"output":"line with id: a2d26f94-7fa2-4f2e-a813-91165cc5b66f scheduled in block service with id: : \"d4cfa8cf-2"},{"event":"cmd_output","timestamp":1607098308,"output":"43f-42e4-88f0-aa2458af460d\"\n\u001b[0m\u001b[22m\n16:11:48.895 [info] block_id: d4cfa8cf-243f-42e4-88f0-aa245"},{"event":"cmd_output","timestamp":1607098308,"output":"8af460d, type: BlockRequests, event: persisted build and sub_ppl details for block_request: d4cfa8cf"},{"event":"cmd_output","timestamp":1607098308,"output":"-243f-42e4-88f0-aa2458af460d, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_b"},{"event":"cmd_output","timestamp":1607098308,"output":"uild/2(L41), \n\u001b[0m\u001b[22m\n16:11:48.896 [info] ppl_id: a2d26f94-7fa2-4f2e-a813-91165cc5b66f, type: P"},{"event":"cmd_output","timestamp":1607098308,"output":"plBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098308,"output":"Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:48.897 [info] block_id: d4cfa8cf-243f-4"},{"event":"cmd_output","timestamp":1607098308,"output":"2e4-88f0-aa2458af460d, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098308,"output":"r.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:11:48.899 [info] block"},{"event":"cmd_output","timestamp":1607098308,"output":"_id: d4cfa8cf-243f-42e4-88f0-aa2458af460d, type: Blocks, state: running, event: exit_scheduling, rec"},{"event":"cmd_output","timestamp":1607098308,"output":"overy_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:48.914 [i"},{"event":"cmd_output","timestamp":1607098308,"output":"nfo] block_id: d4cfa8cf-243f-42e4-88f0-aa2458af460d, type: Tasks, state: running, event: exit_sched"},{"event":"cmd_output","timestamp":1607098308,"output":"uling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11"},{"event":"cmd_output","timestamp":1607098308,"output":":48.984 [info] block_id: d4cfa8cf-243f-42e4-88f0-aa2458af460d, type: Tasks, state: done, event: exi"},{"event":"cmd_output","timestamp":1607098308,"output":"t_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098308,"output":"\n16:11:48.991 [info] block_id: d4cfa8cf-243f-42e4-88f0-aa2458af460d, type: Blocks, state: done, ev"},{"event":"cmd_output","timestamp":1607098308,"output":"ent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b"},{"event":"cmd_output","timestamp":1607098309,"output":"[0m\u001b[22m\n16:11:48.999 [info] ppl_id: a2d26f94-7fa2-4f2e-a813-91165cc5b66f, block_id: d4cfa8cf-243f"},{"event":"cmd_output","timestamp":1607098309,"output":"-42e4-88f0-aa2458af460d, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_s"},{"event":"cmd_output","timestamp":1607098309,"output":"cheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098309,"output":"6:11:49.012 [info] ppl_id: a2d26f94-7fa2-4f2e-a813-91165cc5b66f, type: Ppls, state: done, result: p"},{"event":"cmd_output","timestamp":1607098309,"output":"assed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1("},{"event":"cmd_output","timestamp":1607098309,"output":"L90), \n\u001b[0m\u001b[32m\r * test when in prod environment => return compilation definition with proper env"},{"event":"cmd_output","timestamp":1607098309,"output":" vars set (514.9ms)\u001b[0m\n\nPpl.PplsReviser.Test\n * test if implicit queue already exists new one i"},{"event":"cmd_output","timestamp":1607098309,"output":"s not created\r * test if implicit queue already exists new one is not created (skipped)\n * test w"},{"event":"cmd_output","timestamp":1607098309,"output":"hen multiple queue defintions are provided, first one which condition is met is used\r * test when m"},{"event":"cmd_output","timestamp":1607098309,"output":"ultiple queue defintions are provided, first one which condition is met is used (skipped)\n * test "},{"event":"cmd_output","timestamp":1607098309,"output":"when there is no queue def in yml spec, implicit queue is set\r * test when there is no queue def in"},{"event":"cmd_output","timestamp":1607098309,"output":" yml spec, implicit queue is set (skipped)\n * test if user generated project queue already exists "},{"event":"cmd_output","timestamp":1607098309,"output":"new one is not created\r * test if user generated project queue already exists new one is not create"},{"event":"cmd_output","timestamp":1607098309,"output":"d (skipped)\n * test just queue name in yml spec -> project scoped user queue is set\r * test just "},{"event":"cmd_output","timestamp":1607098309,"output":"queue name in yml spec -> project scoped user queue is set (skipped)\n * test if user generated org"},{"event":"cmd_output","timestamp":1607098309,"output":"anization queue already exists new one is not created\r * test if user generated organization queue "},{"event":"cmd_output","timestamp":1607098309,"output":"already exists new one is not created (skipped)\n * test when multiple queue defintions are provide"},{"event":"cmd_output","timestamp":1607098309,"output":"d but non of the conditons is met, implicit queue is used\r * test when multiple queue defintions ar"},{"event":"cmd_output","timestamp":1607098309,"output":"e provided but non of the conditons is met, implicit queue is used (skipped)\n * test if only proce"},{"event":"cmd_output","timestamp":1607098309,"output":"ssing type is set in queue def, implicit queue is used\r * test if only processing type is set in qu"},{"event":"cmd_output","timestamp":1607098309,"output":"eue def, implicit queue is used (skipped)\n * test organization scoped queue from yml spec is prope"},{"event":"cmd_output","timestamp":1607098309,"output":"rly created in DB\r * test organization scoped queue from yml spec is properly created in DB (skippe"},{"event":"cmd_output","timestamp":1607098309,"output":"d)\n\nPpl.PplSubInits.STMHandler.Compilation.AtifactsClient.Test\n * test when time-out occures in "},{"event":"cmd_output","timestamp":1607098309,"output":"get_signed_url call => error is returned\r * test when time-out occures in get_signed_url call => er"},{"event":"cmd_output","timestamp":1607098309,"output":"ror is returned (skipped)\n * test when ARTIFACTHUB URL is invalid in get_signed_url call => timeou"},{"event":"cmd_output","timestamp":1607098309,"output":"t occures\r * test when ARTIFACTHUB URL is invalid in get_signed_url call => timeout occures (skippe"},{"event":"cmd_output","timestamp":1607098309,"output":"d)\n * test when get_signed_url is called => ArtifactHub's response is processed correctly\r * test"},{"event":"cmd_output","timestamp":1607098309,"output":" when get_signed_url is called => ArtifactHub's response is processed correctly (skipped)\n * test "},{"event":"cmd_output","timestamp":1607098309,"output":"when YAML file is fetched correctly => acquire_definition() returns definition map\r * test when YAM"},{"event":"cmd_output","timestamp":1607098309,"output":"L file is fetched correctly => acquire_definition() returns definition map (skipped)\n\nPpl.PplReque"},{"event":"cmd_output","timestamp":1607098309,"output":"sts.Model.PplRequestsQueries.Test\n * test insert pipeline request\r * test insert pipeline request"},{"event":"cmd_output","timestamp":1607098309,"output":" (skipped)\n * test get by id\r * test get by id (skipped)\n * test latest_ppl_from_subtree()\r * "},{"event":"cmd_output","timestamp":1607098309,"output":"test latest_ppl_from_subtree() (skipped)\n * test client_secret and access_token fields are encrypt"},{"event":"cmd_output","timestamp":1607098309,"output":"ed in DB\r * test client_secret and access_token fields are encrypted in DB (skipped)\n * test can "},{"event":"cmd_output","timestamp":1607098309,"output":"not insert pipeline request without request_token\r * test can not insert pipeline request without r"},{"event":"cmd_output","timestamp":1607098309,"output":"equest_token (skipped)\n * test delete_pipeline() deletes pipeline and all other related structures"},{"event":"cmd_output","timestamp":1607098309,"output":"\r * test delete_pipeline() deletes pipeline and all other related structures (skipped)\n * test ge"},{"event":"cmd_output","timestamp":1607098309,"output":"t by request_token - success\r * test get by request_token - success (skipped)\n * test get by requ"},{"event":"cmd_output","timestamp":1607098309,"output":"est_token - failure: not found\r * test get by request_token - failure: not found (skipped)\n * tes"},{"event":"cmd_output","timestamp":1607098309,"output":"t cannot insert 2 pipeline requests with the same request_token\r * test cannot insert 2 pipeline re"},{"event":"cmd_output","timestamp":1607098309,"output":"quests with the same request_token (skipped)\n\nPpl.PplRequests.Model.PplRequests.Test\n * doctest "},{"event":"cmd_output","timestamp":1607098309,"output":"Ppl.PplRequests.Model.PplRequests.changeset_definition/2 (1)\r * doctest Ppl.PplRequests.Model.PplRe"},{"event":"cmd_output","timestamp":1607098309,"output":"quests.changeset_definition/2 (1) (skipped)\n * doctest Ppl.PplRequests.Model.PplRequests.changeset"},{"event":"cmd_output","timestamp":1607098309,"output":"_source/2 (6)\r * doctest Ppl.PplRequests.Model.PplRequests.changeset_source/2 (6) (skipped)\n * te"},{"event":"cmd_output","timestamp":1607098309,"output":"st valid pipline request is stored in DB and can be fetched by id\r * test valid pipline request is "},{"event":"cmd_output","timestamp":1607098309,"output":"stored in DB and can be fetched by id (skipped)\n * doctest Ppl.PplRequests.Model.PplRequests.chang"},{"event":"cmd_output","timestamp":1607098309,"output":"eset_request/2 (5)\r * doctest Ppl.PplRequests.Model.PplRequests.changeset_request/2 (5) (skipped)\n"},{"event":"cmd_output","timestamp":1607098309,"output":" * test request_token cannot be empty string\r * test request_token cannot be empty string (skipped"},{"event":"cmd_output","timestamp":1607098309,"output":")\n * doctest Ppl.PplRequests.Model.PplRequests.changeset_definition/2 (2)\r * doctest Ppl.PplReque"},{"event":"cmd_output","timestamp":1607098309,"output":"sts.Model.PplRequests.changeset_definition/2 (2) (skipped)\n * doctest Ppl.PplRequests.Model.PplReq"},{"event":"cmd_output","timestamp":1607098309,"output":"uests.changeset_request/2 (3)\r * doctest Ppl.PplRequests.Model.PplRequests.changeset_request/2 (3) "},{"event":"cmd_output","timestamp":1607098309,"output":"(skipped)\n * doctest Ppl.PplRequests.Model.PplRequests.changeset_source/2 (7)\r * doctest Ppl.PplR"},{"event":"cmd_output","timestamp":1607098309,"output":"equests.Model.PplRequests.changeset_source/2 (7) (skipped)\n * test request_token is required\r * t"},{"event":"cmd_output","timestamp":1607098309,"output":"est request_token is required (skipped)\n * doctest Ppl.PplRequests.Model.PplRequests.changeset_req"},{"event":"cmd_output","timestamp":1607098309,"output":"uest/2 (4)\r * doctest Ppl.PplRequests.Model.PplRequests.changeset_request/2 (4) (skipped)\n * test"},{"event":"cmd_output","timestamp":1607098309,"output":" pipline request without 'blocks' is invalid\r * test pipline request without 'blocks' is invalid (s"},{"event":"cmd_output","timestamp":1607098309,"output":"kipped)\n * test pipline request with empty 'blocks' list is invalid\r * test pipline request with "},{"event":"cmd_output","timestamp":1607098309,"output":"empty 'blocks' list is invalid (skipped)\n * test request_token can be any non empty string\r * tes"},{"event":"cmd_output","timestamp":1607098309,"output":"t request_token can be any non empty string (skipped)\n\nPpl.PplOrigins.Model.PplOrigins.Test\n * d"},{"event":"cmd_output","timestamp":1607098309,"output":"octest Ppl.PplOrigins.Model.PplOrigins.changeset/2 (2)\r * doctest Ppl.PplOrigins.Model.PplOrigins.c"},{"event":"cmd_output","timestamp":1607098309,"output":"hangeset/2 (2) (skipped)\n * doctest Ppl.PplOrigins.Model.PplOrigins.changeset/2 (1)\r * doctest Pp"},{"event":"cmd_output","timestamp":1607098309,"output":"l.PplOrigins.Model.PplOrigins.changeset/2 (1) (skipped)\n * doctest Ppl.PplOrigins.Model.PplOrigins"},{"event":"cmd_output","timestamp":1607098309,"output":".changeset_definition/2 (3)\r * doctest Ppl.PplOrigins.Model.PplOrigins.changeset_definition/2 (3) ("},{"event":"cmd_output","timestamp":1607098309,"output":"skipped)\n * doctest Ppl.PplOrigins.Model.PplOrigins.changeset_definition/2 (4)\r * doctest Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098309,"output":"Origins.Model.PplOrigins.changeset_definition/2 (4) (skipped)\n\nPpl.PplOrigins.Model.PplOriginsQuer"},{"event":"cmd_output","timestamp":1607098309,"output":"ies.Test\n * test insert fails when pipeline does not exist\r * test insert fails when pipeline doe"},{"event":"cmd_output","timestamp":1607098309,"output":"s not exist (skipped)\n * test insert passes when pipeline exists\r * test insert passes when pipel"},{"event":"cmd_output","timestamp":1607098309,"output":"ine exists (skipped)\n * test insert is idempotent in regeard to ppl_id\r * test insert is idempote"},{"event":"cmd_output","timestamp":1607098309,"output":"nt in regeard to ppl_id (skipped)\n * test save_definition passes when given valid params\r * test "},{"event":"cmd_output","timestamp":1607098309,"output":"save_definition passes when given valid params (skipped)\n\nPpl.PplBlocks.Termination.Test\n * test"},{"event":"cmd_output","timestamp":1607098309,"output":" stop ppl-blk in waiting state\r * test stop ppl-blk in waiting state (skipped)\n * test cancel ppl"},{"event":"cmd_output","timestamp":1607098309,"output":"-blk in waiting state\r * test cancel ppl-blk in waiting state (skipped)\n * test stop ppl-blk in r"},{"event":"cmd_output","timestamp":1607098309,"output":"unning state\u001b[22m\n16:11:49.139 [info] ppl_id: 6d849f30-bdb2-4b05-af37-237b55110e48, type: PplReque"},{"event":"cmd_output","timestamp":1607098309,"output":"sts, event: persisted schedule request with request_token: 69db8a94-364b-11eb-9109-5254005464e2, ori"},{"event":"cmd_output","timestamp":1607098309,"output":"gin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:11:49."},{"event":"cmd_output","timestamp":1607098309,"output":"143 [info] ppl_id: 6d849f30-bdb2-4b05-af37-237b55110e48, type: PplRequests, event: persisted defini"},{"event":"cmd_output","timestamp":1607098309,"output":"tion for request with request_token: 69db8a94-364b-11eb-9109-5254005464e2, origin: Elixir.Ppl.PplReq"},{"event":"cmd_output","timestamp":1607098309,"output":"uests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:11:49.149 [info] ppl_id: 6"},{"event":"cmd_output","timestamp":1607098309,"output":"d849f30-bdb2-4b05-af37-237b55110e48, type: Ppls, state: initializing, event: initializing, recovery_"},{"event":"cmd_output","timestamp":1607098309,"output":"count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:11:49."},{"event":"cmd_output","timestamp":1607098309,"output":"155 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.WaitingState with name Elixir.Ppl.P"},{"event":"cmd_output","timestamp":1607098309,"output":"plBlocks.STMHandler.WaitingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppl"},{"event":"cmd_output","timestamp":1607098309,"output":"Blocks-STMHandler-WaitingState\"]}, recurring args: %{allowed_states: [\"waiting\", \"running\", \"done\"],"},{"event":"cmd_output","timestamp":1607098309,"output":" cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"waiting\", publi"},{"event":"cmd_output","timestamp":1607098309,"output":"sher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>, repo: Ppl.EctoRepo,"},{"event":"cmd_output","timestamp":1607098309,"output":" returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block"},{"event":"cmd_output","timestamp":1607098310,"output":"_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:50.160 [in"},{"event":"cmd_output","timestamp":1607098310,"output":"fo] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"6d849f30-bdb2-4b05-af37-237b55"},{"event":"cmd_output","timestamp":1607098310,"output":"110e48\"\n\u001b[0m\u001b[22m\n16:11:50.172 [info] block_id: 6f0afc08-3d13-4d88-9276-038d06fd843a, type: Block"},{"event":"cmd_output","timestamp":1607098310,"output":"Requests, event: persisted block run request from ppl 6d849f30-bdb2-4b05-af37-237b55110e48 for block"},{"event":"cmd_output","timestamp":1607098310,"output":" 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098310,"output":"2m\n16:11:50.175 [info] block_id: 6f0afc08-3d13-4d88-9276-038d06fd843a, type: Blocks, state: initia"},{"event":"cmd_output","timestamp":1607098310,"output":"lizing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.inse"},{"event":"cmd_output","timestamp":1607098310,"output":"rt/1(L43), \n\u001b[0m\u001b[22m\n16:11:50.177 [info] Block 0 of pipeline with id: 6d849f30-bdb2-4b05-af37-23"},{"event":"cmd_output","timestamp":1607098310,"output":"7b55110e48 scheduled in block service with id: : \"6f0afc08-3d13-4d88-9276-038d06fd843a\"\n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098310,"output":"16:11:50.180 [info] ppl_id: 6d849f30-bdb2-4b05-af37-237b55110e48, type: PplBlocks, block_index: 0, "},{"event":"cmd_output","timestamp":1607098310,"output":"state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_"},{"event":"cmd_output","timestamp":1607098310,"output":"change/1(L90), \n\u001b[0m\u001b[22m\n16:11:50.666 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandle"},{"event":"cmd_output","timestamp":1607098310,"output":"r.RunningState with name Elixir.Ppl.PplBlocks.STMHandler.RunningState :: period: 1000 ms, metric_nam"},{"event":"cmd_output","timestamp":1607098310,"output":"e: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, recurring args: %{allowed_st"},{"event":"cmd_output","timestamp":1607098310,"output":"ates: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplB"},{"event":"cmd_output","timestamp":1607098310,"output":"locks, observed_state: \"running\", publisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHandler.R"},{"event":"cmd_output","timestamp":1607098310,"output":"unningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :"},{"event":"cmd_output","timestamp":1607098310,"output":"result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, t"},{"event":"cmd_output","timestamp":1607098311,"output":"ask_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:51.675 [info] ppl_id: 6d849f30-bdb2-4b05-af37-237b55110e48"},{"event":"cmd_output","timestamp":1607098311,"output":", block_id: 6f0afc08-3d13-4d88-9276-038d06fd843a, type: PplBlocks, block_index: 0, state: stopping, "},{"event":"cmd_output","timestamp":1607098311,"output":"event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \r"},{"event":"cmd_output","timestamp":1607098312,"output":"\n\u001b[0m\u001b[22m\n16:11:52.171 [info] Periodic from module Elixir.Block.Blocks.STMHandler.InitializingSta"},{"event":"cmd_output","timestamp":1607098312,"output":"te with name Elixir.Block.Blocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl."},{"event":"cmd_output","timestamp":1607098312,"output":"beholder-wake_up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states:"},{"event":"cmd_output","timestamp":1607098312,"output":" [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Blocks.Model.Blocks, observed_state:"},{"event":"cmd_output","timestamp":1607098312,"output":" \"initializing\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :up"},{"event":"cmd_output","timestamp":1607098312,"output":"dated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :"},{"event":"cmd_output","timestamp":1607098312,"output":"skip}\n\u001b[0m\u001b[22m\n16:11:52.172 [info] Periodic from module Elixir.Block.Blocks.STMHandler.RunningSt"},{"event":"cmd_output","timestamp":1607098312,"output":"ate with name Elixir.Block.Blocks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beho"},{"event":"cmd_output","timestamp":1607098312,"output":"lder-wake_up\", [\"Block-Blocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"runnin"},{"event":"cmd_output","timestamp":1607098312,"output":"g\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_st"},{"event":"cmd_output","timestamp":1607098312,"output":"ate: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :upd"},{"event":"cmd_output","timestamp":1607098312,"output":"ated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :s"},{"event":"cmd_output","timestamp":1607098312,"output":"kip}\n\u001b[0m\u001b[22m\n16:11:52.174 [info] Periodic from module Elixir.Block.Blocks.STMHandler.StoppingSt"},{"event":"cmd_output","timestamp":1607098312,"output":"ate with name Elixir.Block.Blocks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beh"},{"event":"cmd_output","timestamp":1607098312,"output":"older-wake_up\", [\"Block-Blocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stop"},{"event":"cmd_output","timestamp":1607098312,"output":"ping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"sto"},{"event":"cmd_output","timestamp":1607098312,"output":"pping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at,"},{"event":"cmd_output","timestamp":1607098312,"output":" :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b["},{"event":"cmd_output","timestamp":1607098312,"output":"0m\u001b[22m\n16:11:52.175 [info] Periodic from module Elixir.Block.Tasks.STMHandler.PendingState with n"},{"event":"cmd_output","timestamp":1607098312,"output":"ame Elixir.Block.Tasks.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_u"},{"event":"cmd_output","timestamp":1607098312,"output":"p\", [\"Block-Tasks-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"],"},{"event":"cmd_output","timestamp":1607098312,"output":" cooling_time_sec: 0, initial_query: Block.Tasks.Model.Tasks, observed_state: \"pending\", publisher_c"},{"event":"cmd_output","timestamp":1607098312,"output":"b: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_"},{"event":"cmd_output","timestamp":1607098312,"output":"count, :block_id, :build_request_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m"},{"event":"cmd_output","timestamp":1607098312,"output":"\u001b[22m\n16:11:52.177 [info] Periodic from module Elixir.Block.Tasks.STMHandler.RunningState with nam"},{"event":"cmd_output","timestamp":1607098312,"output":"e Elixir.Block.Tasks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\""},{"event":"cmd_output","timestamp":1607098312,"output":", [\"Block-Tasks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\""},{"event":"cmd_output","timestamp":1607098312,"output":", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"running\", "},{"event":"cmd_output","timestamp":1607098312,"output":"publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state,"},{"event":"cmd_output","timestamp":1607098312,"output":" :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098312,"output":"6:11:52.178 [info] Periodic from module Elixir.Block.Tasks.STMHandler.StoppingState with name Elixi"},{"event":"cmd_output","timestamp":1607098312,"output":"r.Block.Tasks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Bl"},{"event":"cmd_output","timestamp":1607098312,"output":"ock-Tasks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooli"},{"event":"cmd_output","timestamp":1607098312,"output":"ng_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"stopping\", publisher_cb: :"},{"event":"cmd_output","timestamp":1607098312,"output":"skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_coun"},{"event":"cmd_output","timestamp":1607098312,"output":"t, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:52.180 [in"},{"event":"cmd_output","timestamp":1607098312,"output":"fo] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.StoppingState with name Elixir.Ppl.PplBloc"},{"event":"cmd_output","timestamp":1607098312,"output":"ks.STMHandler.StoppingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlock"},{"event":"cmd_output","timestamp":1607098312,"output":"s-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_"},{"event":"cmd_output","timestamp":1607098312,"output":"sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"stopping\", publisher_cb: #Fu"},{"event":"cmd_output","timestamp":1607098312,"output":"nction<0.104215991/1 in Ppl.PplBlocks.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returnin"},{"event":"cmd_output","timestamp":1607098312,"output":"g: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :"},{"event":"cmd_output","timestamp":1607098312,"output":"block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:52.285 ["},{"event":"cmd_output","timestamp":1607098312,"output":"info] block_id: 6f0afc08-3d13-4d88-9276-038d06fd843a, type: Blocks, state: done, event: exit_schedu"},{"event":"cmd_output","timestamp":1607098312,"output":"ling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:"},{"event":"cmd_output","timestamp":1607098312,"output":"52.294 [info] ppl_id: 6d849f30-bdb2-4b05-af37-237b55110e48, block_id: 6f0afc08-3d13-4d88-9276-038d0"},{"event":"cmd_output","timestamp":1607098312,"output":"6fd843a, type: PplBlocks, block_index: 0, state: done, result: stopped, event: exit_scheduling, reco"},{"event":"cmd_output","timestamp":1607098312,"output":"very_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test stop ppl"},{"event":"cmd_output","timestamp":1607098312,"output":"-blk in running state (3600.9ms)\u001b[0m\n\nPpl.Looper.PplBlocks.StateTransition.Test\n * test PplBlock"},{"event":"cmd_output","timestamp":1607098312,"output":"s looper transitions\u001b[22m\n16:11:52.767 [info] Request: 'run: %{\"branch_id\" => \"f6c2a832-9549-4e04-"},{"event":"cmd_output","timestamp":1607098312,"output":"a0a1-e20c86a9b269\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"semapho"},{"event":"cmd_output","timestamp":1607098312,"output":"re.yml\", \"hook_id\" => \"6c051d58-364b-11eb-af66-5254005464e2\", \"label\" => \"master\", \"organization_id\""},{"event":"cmd_output","timestamp":1607098312,"output":" => \"d4defb82-505f-4ad4-b9c2-037e6a23617b\", \"owner\" => \"rt\", \"project_id\" => \"89721964-ff3c-484f-92d"},{"event":"cmd_output","timestamp":1607098312,"output":"4-6d15de9851fa\", \"repo_name\" => \"2_basic\", \"request_token\" => \"6c050caa-364b-11eb-812f-5254005464e2\""},{"event":"cmd_output","timestamp":1607098312,"output":", \"requester_id\" => \"72478eba-fdf1-4671-9b0f-67f4d8ebe396\", \"service\" => \"local\", \"suppressed_attrib"},{"event":"cmd_output","timestamp":1607098312,"output":"utes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"6a413b30-9e66-4ccd-b96f-bc8e6f72a6ba\", \"work"},{"event":"cmd_output","timestamp":1607098312,"output":"ing_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:11:52.777 [info] ppl_id: 6208dfb0-c6a0-47d3-873b-c1e5f31f2"},{"event":"cmd_output","timestamp":1607098312,"output":"b24, type: PplRequests, event: persisted schedule request with request_token: 6c050caa-364b-11eb-812"},{"event":"cmd_output","timestamp":1607098312,"output":"f-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b"},{"event":"cmd_output","timestamp":1607098312,"output":"[0m\u001b[22m\n16:11:52.781 [info] ppl_id: 6208dfb0-c6a0-47d3-873b-c1e5f31f2b24, type: Ppls, state: init"},{"event":"cmd_output","timestamp":1607098312,"output":"ializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_"},{"event":"cmd_output","timestamp":1607098312,"output":"response/2(L124), \n\u001b[0m\u001b[22m\n16:11:52.787 [info] Project 89721964-ff3c-484f-92d4-6d15de9851fa and"},{"event":"cmd_output","timestamp":1607098312,"output":" branch masterlatest_wf details updated: \"wf_id: 6a413b30-9e66-4ccd-b96f-bc8e6f72a6ba, wf_number: 1\""},{"event":"cmd_output","timestamp":1607098312,"output":"\n\u001b[0m\u001b[22m\n16:11:52.791 [info] Persisted ppl_sub_init for pipeline with ppl_id: 6208dfb0-c6a0-47d"},{"event":"cmd_output","timestamp":1607098312,"output":"3-873b-c1e5f31f2b24: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pi"},{"event":"cmd_output","timestamp":1607098312,"output":"peline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 149, in_scheduling: false, ini"},{"event":"cmd_output","timestamp":1607098312,"output":"t_type: \"regular\", inserted_at: ~N[2020-12-04 16:11:52.787492], pipeline_requests: #Ecto.Association"},{"event":"cmd_output","timestamp":1607098312,"output":".NotLoaded, ppl_id: \"6208dfb0-c6a0-47d3-873b-c1e5f31f2"},{"event":"cmd_output","timestamp":1607098312,"output":"b24\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, "},{"event":"cmd_output","timestamp":1607098312,"output":"terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:11:52.787501]}\n\u001b[0m\u001b[22m\n16:11:52.819 [i"},{"event":"cmd_output","timestamp":1607098312,"output":"nfo] ppl_id: 6208dfb0-c6a0-47d3-873b-c1e5f31f2b24, type: PplRequests, event: persisted definition f"},{"event":"cmd_output","timestamp":1607098312,"output":"or request with request_token: 6c050caa-364b-11eb-812f-5254005464e2, origin: Elixir.Ppl.PplRequests."},{"event":"cmd_output","timestamp":1607098312,"output":"Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:11:52.821 [info] ppl_id: 6208dfb"},{"event":"cmd_output","timestamp":1607098312,"output":"0-c6a0-47d3-873b-c1e5f31f2b24, type: PplRequests, event: persisted source_args for pipeline: 6208dfb"},{"event":"cmd_output","timestamp":1607098312,"output":"0-c6a0-47d3-873b-c1e5f31f2b24, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source"},{"event":"cmd_output","timestamp":1607098312,"output":"/2(L89), \n\u001b[0m\u001b[22m\n16:11:52.832 [info] Periodic from module Elixir.Block.Blocks.STMHandler.Initi"},{"event":"cmd_output","timestamp":1607098312,"output":"alizingState with name Elixir.Block.Blocks.STMHandler.InitializingState :: period: 100 ms, metric_na"},{"event":"cmd_output","timestamp":1607098312,"output":"me: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, recurring args: %{allow"},{"event":"cmd_output","timestamp":1607098312,"output":"ed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Blocks.Model.Blocks, obser"},{"event":"cmd_output","timestamp":1607098312,"output":"ved_state: \"initializing\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_re"},{"event":"cmd_output","timestamp":1607098312,"output":"quest, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_sup"},{"event":"cmd_output","timestamp":1607098312,"output":"ervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:52.833 [info] Periodic from module Elixir.Block.Blocks.STMHandler"},{"event":"cmd_output","timestamp":1607098312,"output":".RunningState with name Elixir.Block.Blocks.STMHandler.RunningState :: period: 100 ms, metric_name: "},{"event":"cmd_output","timestamp":1607098312,"output":"{\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states"},{"event":"cmd_output","timestamp":1607098312,"output":": [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, o"},{"event":"cmd_output","timestamp":1607098312,"output":"bserved_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_req"},{"event":"cmd_output","timestamp":1607098312,"output":"uest, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supe"},{"event":"cmd_output","timestamp":1607098312,"output":"rvisor: :skip}\n\u001b[0m\u001b[22m\n16:11:52.834 [info] Periodic from module Elixir.Block.Tasks.STMHandler.P"},{"event":"cmd_output","timestamp":1607098312,"output":"endingState with name Elixir.Block.Tasks.STMHandler.PendingState :: period: 100 ms, metric_name: {\"P"},{"event":"cmd_output","timestamp":1607098312,"output":"pl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\""},{"event":"cmd_output","timestamp":1607098312,"output":"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Tasks.Model.Tasks, observed_state: \"pen"},{"event":"cmd_output","timestamp":1607098312,"output":"ding\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, "},{"event":"cmd_output","timestamp":1607098312,"output":":state, :recovery_count, :block_id, :build_request_id], schema: Block.Tasks.Model.Tasks, task_superv"},{"event":"cmd_output","timestamp":1607098312,"output":"isor: :skip}\n\u001b[0m\u001b[22m\n16:11:52.835 [info] Periodic from module Elixir.Block.Tasks.STMHandler.Run"},{"event":"cmd_output","timestamp":1607098312,"output":"ningState with name Elixir.Block.Tasks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl"},{"event":"cmd_output","timestamp":1607098312,"output":".beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"ru"},{"event":"cmd_output","timestamp":1607098312,"output":"nning\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_"},{"event":"cmd_output","timestamp":1607098312,"output":"state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :u"},{"event":"cmd_output","timestamp":1607098312,"output":"pdated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :s"},{"event":"cmd_output","timestamp":1607098312,"output":"kip}\n\u001b[0m\u001b[22m\n16:11:52.835 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.WaitingSt"},{"event":"cmd_output","timestamp":1607098312,"output":"ate with name Elixir.Ppl.PplBlocks.STMHandler.WaitingState :: period: 1000 ms, metric_name: {\"Ppl.be"},{"event":"cmd_output","timestamp":1607098312,"output":"holder-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurring args: %{allowed_states: [\"wai"},{"event":"cmd_output","timestamp":1607098312,"output":"ting\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observ"},{"event":"cmd_output","timestamp":1607098312,"output":"ed_state: \"waiting\", publisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.ar"},{"event":"cmd_output","timestamp":1607098312,"output":"gs/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recov"},{"event":"cmd_output","timestamp":1607098312,"output":"ery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b"},{"event":"cmd_output","timestamp":1607098313,"output":"[0m\u001b[22m\n16:11:53.840 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"6208"},{"event":"cmd_output","timestamp":1607098313,"output":"dfb0-c6a0-47d3-873b-c1e5f31f2b24\"\n\u001b[0m\u001b[22m\n16:11:53.859 [info] block_id: 1905bf76-38fb-497c-a960"},{"event":"cmd_output","timestamp":1607098313,"output":"-0b62f5921782, type: BlockRequests, event: persisted block run request from ppl 6208dfb0-c6a0-47d3-8"},{"event":"cmd_output","timestamp":1607098313,"output":"73b-c1e5f31f2b24 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_"},{"event":"cmd_output","timestamp":1607098313,"output":"response/4(L35), \n\u001b[0m\u001b[22m\n16:11:53.864 [info] block_id: 1905bf76-38fb-497c-a960-0b62f5921782, t"},{"event":"cmd_output","timestamp":1607098313,"output":"ype: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Block"},{"event":"cmd_output","timestamp":1607098313,"output":"s.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:11:53.866 [info] Block 0 of pipeline with id: "},{"event":"cmd_output","timestamp":1607098313,"output":"6208dfb0-c6a0-47d3-873b-c1e5f31f2b24 scheduled in block service with id: : \"1905bf76-38fb-497c-a960-"},{"event":"cmd_output","timestamp":1607098313,"output":"0b62f5921782\"\n\u001b[0m\u001b[22m\n16:11:53.869 [info] ppl_id: 6208dfb0-c6a0-47d3-873b-c1e5f31f2b24, type: P"},{"event":"cmd_output","timestamp":1607098313,"output":"plBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098313,"output":"Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:53.871 [info] block_id: 1905bf76-38fb-4"},{"event":"cmd_output","timestamp":1607098313,"output":"97c-a960-0b62f5921782, type: BlockRequests, event: persisted build and sub_ppl details for block_req"},{"event":"cmd_output","timestamp":1607098313,"output":"uest: 1905bf76-38fb-497c-a960-0b62f5921782, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQu"},{"event":"cmd_output","timestamp":1607098313,"output":"eries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:11:53.874 [info] block_id: 1905bf76-38fb-497c-a960-0b62f"},{"event":"cmd_output","timestamp":1607098313,"output":"5921782, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks"},{"event":"cmd_output","timestamp":1607098313,"output":".STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:11:53.876 [info] block_id: 1905bf76-"},{"event":"cmd_output","timestamp":1607098313,"output":"38fb-497c-a960-0b62f5921782, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0"},{"event":"cmd_output","timestamp":1607098313,"output":", origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:53.898 [info] block_id"},{"event":"cmd_output","timestamp":1607098313,"output":": 1905bf76-38fb-497c-a960-0b62f5921782, type: Tasks, state: running, event: exit_scheduling, recover"},{"event":"cmd_output","timestamp":1607098313,"output":"y_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:53.976 [info]"},{"event":"cmd_output","timestamp":1607098313,"output":" block_id: 1905bf76-38fb-497c-a960-0b62f5921782, type: Tasks, state: done, event: exit_scheduling, "},{"event":"cmd_output","timestamp":1607098313,"output":"recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:53.983"},{"event":"cmd_output","timestamp":1607098313,"output":" [info] block_id: 1905bf76-38fb-497c-a960-0b62f5921782, type: Blocks, state: done, event: exit_sche"},{"event":"cmd_output","timestamp":1607098314,"output":"duling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098314,"output":"1:54.355 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.RunningState with name Elixir."},{"event":"cmd_output","timestamp":1607098314,"output":"Ppl.PplBlocks.STMHandler.RunningState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Pp"},{"event":"cmd_output","timestamp":1607098314,"output":"l-PplBlocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"d"},{"event":"cmd_output","timestamp":1607098314,"output":"one\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"running\""},{"event":"cmd_output","timestamp":1607098314,"output":", publisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0>, repo: Ppl.E"},{"event":"cmd_output","timestamp":1607098314,"output":"ctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id"},{"event":"cmd_output","timestamp":1607098315,"output":", :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098315,"output":"m\n16:11:55.365 [info] ppl_id: 6208dfb0-c6a0-47d3-873b-c1e5f31f2b24, block_id: 1905bf76-38fb-497c-a"},{"event":"cmd_output","timestamp":1607098315,"output":"960-0b62f5921782, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduli"},{"event":"cmd_output","timestamp":1607098315,"output":"ng, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:55"},{"event":"cmd_output","timestamp":1607098315,"output":".862 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.WaitingState with name Elixir.Ppl."},{"event":"cmd_output","timestamp":1607098315,"output":"PplBlocks.STMHandler.WaitingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Pp"},{"event":"cmd_output","timestamp":1607098315,"output":"lBlocks-STMHandler-WaitingState\"]}, recurring args: %{allowed_states: [\"waiting\", \"running\", \"done\"]"},{"event":"cmd_output","timestamp":1607098315,"output":", cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"waiting\", publ"},{"event":"cmd_output","timestamp":1607098315,"output":"isher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>, repo: Ppl.EctoRepo"},{"event":"cmd_output","timestamp":1607098315,"output":", returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :bloc"},{"event":"cmd_output","timestamp":1607098316,"output":"k_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:56.875 [i"},{"event":"cmd_output","timestamp":1607098316,"output":"nfo] PplBlocks WaitingState STM is scheduling block 1 from pipeline: \"6208dfb0-c6a0-47d3-873b-c1e5f"},{"event":"cmd_output","timestamp":1607098316,"output":"31f2b24\"\n\u001b[0m\u001b[22m\n16:11:56.884 [info] block_id: 2da32161-95df-4ba1-b59c-1d2eaa4bf5af, type: Bloc"},{"event":"cmd_output","timestamp":1607098316,"output":"kRequests, event: persisted block run request from ppl 6208dfb0-c6a0-47d3-873b-c1e5f31f2b24 for bloc"},{"event":"cmd_output","timestamp":1607098316,"output":"k 1, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098316,"output":"22m\n16:11:56.894 [info] block_id: 2da32161-95df-4ba1-b59c-1d2eaa4bf5af, type: Blocks, state: initi"},{"event":"cmd_output","timestamp":1607098316,"output":"alizing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.ins"},{"event":"cmd_output","timestamp":1607098316,"output":"ert/1(L43), \n\u001b[0m\u001b[22m\n16:11:56.894 [info] Block 1 of pipeline with id: 6208dfb0-c6a0-47d3-873b-c"},{"event":"cmd_output","timestamp":1607098316,"output":"1e5f31f2b24 scheduled in block service with id: : \"2da32161-95df-4ba1-b59c-1d2eaa4bf5af\"\n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098316,"output":"\n16:11:56.900 [info] ppl_id: 6208dfb0-c6a0-47d3-873b-c1e5f31f2b24, type: PplBlocks, block_index: 1,"},{"event":"cmd_output","timestamp":1607098316,"output":" state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state"},{"event":"cmd_output","timestamp":1607098316,"output":"_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:56.904 [info] block_id: 2da32161-95df-4ba1-b59c-1d2eaa4bf5af, ty"},{"event":"cmd_output","timestamp":1607098316,"output":"pe: BlockRequests, event: persisted build and sub_ppl details for block_request: 2da32161-95df-4ba1-"},{"event":"cmd_output","timestamp":1607098316,"output":"b59c-1d2eaa4bf5af, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41)"},{"event":"cmd_output","timestamp":1607098316,"output":", \n\u001b[0m\u001b[22m\n16:11:56.914 [info] block_id: 2da32161-95df-4ba1-b59c-1d2eaa4bf5af, type: Tasks, sta"},{"event":"cmd_output","timestamp":1607098316,"output":"te: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingS"},{"event":"cmd_output","timestamp":1607098316,"output":"tate.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:11:56.917 [info] block_id: 2da32161-95df-4ba1-b59c-1d2eaa4bf5"},{"event":"cmd_output","timestamp":1607098316,"output":"af, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.S"},{"event":"cmd_output","timestamp":1607098316,"output":"TM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:56.939 [info] block_id: 2da32161-95df-4ba1-b59c"},{"event":"cmd_output","timestamp":1607098316,"output":"-1d2eaa4bf5af, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098317,"output":"r.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:57.083 [info] block_id: 2da32161-95df"},{"event":"cmd_output","timestamp":1607098317,"output":"-4ba1-b59c-1d2eaa4bf5af, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098317,"output":": Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:57.092 [info] block_id: 2da321"},{"event":"cmd_output","timestamp":1607098317,"output":"61-95df-4ba1-b59c-1d2eaa4bf5af, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0"},{"event":"cmd_output","timestamp":1607098317,"output":", origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:57.370 [info] Periodic"},{"event":"cmd_output","timestamp":1607098317,"output":" from module Elixir.Ppl.PplBlocks.STMHandler.RunningState with name Elixir.Ppl.PplBlocks.STMHandler."},{"event":"cmd_output","timestamp":1607098317,"output":"RunningState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-Ru"},{"event":"cmd_output","timestamp":1607098317,"output":"nningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: "},{"event":"cmd_output","timestamp":1607098317,"output":"-2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"running\", publisher_cb: #Function"},{"event":"cmd_output","timestamp":1607098317,"output":"<0.28166834/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id,"},{"event":"cmd_output","timestamp":1607098317,"output":" :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id"},{"event":"cmd_output","timestamp":1607098318,"output":"], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:58.378 [info] p"},{"event":"cmd_output","timestamp":1607098318,"output":"pl_id: 6208dfb0-c6a0-47d3-873b-c1e5f31f2b24, block_id: 2da32161-95df-4ba1-b59c-1d2eaa4bf5af, type: P"},{"event":"cmd_output","timestamp":1607098318,"output":"plBlocks, block_index: 1, state: done, result: passed, event: exit_scheduling, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098318,"output":"igin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test PplBlocks looper transiti"},{"event":"cmd_output","timestamp":1607098318,"output":"ons (6190.0ms)\u001b[0m\n * test PplBlocks recovery counter is reset on transition out of scheduling\u001b[22"},{"event":"cmd_output","timestamp":1607098318,"output":"m\n16:11:58.943 [info] Request: 'run: %{\"branch_id\" => \"78ee43a1-1ead-4f5e-8245-cf8fa9632513\", \"bra"},{"event":"cmd_output","timestamp":1607098318,"output":"nch_name\" => \"master\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"semaphore.yml\", \"hook_id\" => \"6"},{"event":"cmd_output","timestamp":1607098318,"output":"fb392e0-364b-11eb-9a98-5254005464e2\", \"label\" => \"master\", \"organization_id\" => \"00fc8e83-27cb-4f23-"},{"event":"cmd_output","timestamp":1607098318,"output":"9185-2f1520741827\", \"owner\" => \"rt\", \"project_id\" => \"a6f915a7-2914-4af4-bff0-e280a5971cfb\", \"repo_n"},{"event":"cmd_output","timestamp":1607098318,"output":"ame\" => \"2_basic\", \"request_token\" => \"6fb389a8-364b-11eb-aa92-5254005464e2\", \"requester_id\" => \"a29"},{"event":"cmd_output","timestamp":1607098318,"output":"4b7e3-7b4d-4770-a042-0801904ab19b\", \"service\" => \"local\", \"suppressed_attributes\" => [\"access_token\""},{"event":"cmd_output","timestamp":1607098318,"output":", \"client_secret\"], \"wf_id\" => \"c30f98e3-ac34-484f-969a-6710c8cefe5b\", \"working_dir\" => \".semaphore\""},{"event":"cmd_output","timestamp":1607098318,"output":"}\n\u001b[0m\u001b[22m\n16:11:58.950 [info] ppl_id: 9714c299-55d2-47b5-93f8-2a1983ead917, type: PplRequests, "},{"event":"cmd_output","timestamp":1607098318,"output":"event: persisted schedule request with request_token: 6fb389a8-364b-11eb-aa92-5254005464e2, origin: "},{"event":"cmd_output","timestamp":1607098318,"output":"Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:11:58.954 ["},{"event":"cmd_output","timestamp":1607098318,"output":"info] ppl_id: 9714c299-55d2-47b5-93f8-2a1983ead917, type: Ppls, state: initializing, event: initial"},{"event":"cmd_output","timestamp":1607098318,"output":"izing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098318,"output":"\u001b[22m\n16:11:58.961 [info] Project a6f915a7-2914-4af4-bff0-e280a5971cfb and branch masterlatest_wf "},{"event":"cmd_output","timestamp":1607098318,"output":"details updated: \"wf_id: c30f98e3-ac34-484f-969a-6710c8cefe5b, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:11:58.96"},{"event":"cmd_output","timestamp":1607098318,"output":"3 [info] Persisted ppl_sub_init for pipeline with ppl_id: 9714c299-55d2-47b5-93f8-2a1983ead917: %Pp"},{"event":"cmd_output","timestamp":1607098318,"output":"l.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, comp"},{"event":"cmd_output","timestamp":1607098318,"output":"ile_task_id: nil, error_description: nil, id: 150, in_scheduling: false, init_type: \"regular\", inser"},{"event":"cmd_output","timestamp":1607098318,"output":"ted_at: ~N[2020-12-04 16:11:58.961282], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"9714c299-55d2-47b5-93f8-2a1983ead917\", recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098318,"output":" result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: "},{"event":"cmd_output","timestamp":1607098318,"output":"nil, updated_at: ~N[2020-12-04 16:11:58.961323]}\n\u001b[0m\u001b[22m\n16:11:58.996 [info] ppl_id: 9714c299-5"},{"event":"cmd_output","timestamp":1607098318,"output":"5d2-47b5-93f8-2a1983ead917, type: PplRequests, event: persisted definition for request with request_"},{"event":"cmd_output","timestamp":1607098318,"output":"token: 6fb389a8-364b-11eb-aa92-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries"},{"event":"cmd_output","timestamp":1607098319,"output":".insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:11:59.000 [info] ppl_id: 9714c299-55d2-47b5-93f8-2a1983e"},{"event":"cmd_output","timestamp":1607098319,"output":"ad917, type: PplRequests, event: persisted source_args for pipeline: 9714c299-55d2-47b5-93f8-2a1983e"},{"event":"cmd_output","timestamp":1607098319,"output":"ad917, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098319,"output":":11:59.013 [info] Periodic from module Elixir.Block.Blocks.STMHandler.InitializingState with name E"},{"event":"cmd_output","timestamp":1607098319,"output":"lixir.Block.Blocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_"},{"event":"cmd_output","timestamp":1607098319,"output":"up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"running\", \""},{"event":"cmd_output","timestamp":1607098319,"output":"done\"], cooling_time_sec: 0, initial_query: Block.Blocks.Model.Blocks, observed_state: \"initializing"},{"event":"cmd_output","timestamp":1607098319,"output":"\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :sta"},{"event":"cmd_output","timestamp":1607098319,"output":"te, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098319,"output":"2m\n16:11:59.015 [info] Periodic from module Elixir.Block.Blocks.STMHandler.RunningState with name "},{"event":"cmd_output","timestamp":1607098319,"output":"Elixir.Block.Blocks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\","},{"event":"cmd_output","timestamp":1607098319,"output":" [\"Block-Blocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\""},{"event":"cmd_output","timestamp":1607098319,"output":", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"running\""},{"event":"cmd_output","timestamp":1607098319,"output":", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :stat"},{"event":"cmd_output","timestamp":1607098319,"output":"e, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098319,"output":"m\n16:11:59.016 [info] Periodic from module Elixir.Block.Tasks.STMHandler.PendingState with name El"},{"event":"cmd_output","timestamp":1607098319,"output":"ixir.Block.Tasks.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\""},{"event":"cmd_output","timestamp":1607098319,"output":"Block-Tasks-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooli"},{"event":"cmd_output","timestamp":1607098319,"output":"ng_time_sec: 0, initial_query: Block.Tasks.Model.Tasks, observed_state: \"pending\", publisher_cb: :sk"},{"event":"cmd_output","timestamp":1607098319,"output":"ip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count,"},{"event":"cmd_output","timestamp":1607098319,"output":" :block_id, :build_request_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098319,"output":"\n16:11:59.017 [info] Periodic from module Elixir.Block.Tasks.STMHandler.RunningState with name Elix"},{"event":"cmd_output","timestamp":1607098319,"output":"ir.Block.Tasks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Bl"},{"event":"cmd_output","timestamp":1607098319,"output":"ock-Tasks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"don"},{"event":"cmd_output","timestamp":1607098319,"output":"e\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"running\", publis"},{"event":"cmd_output","timestamp":1607098319,"output":"her_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :reco"},{"event":"cmd_output","timestamp":1607098319,"output":"very_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:5"},{"event":"cmd_output","timestamp":1607098319,"output":"9.018 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.WaitingState with name Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098319,"output":".PplBlocks.STMHandler.WaitingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-P"},{"event":"cmd_output","timestamp":1607098319,"output":"plBlocks-STMHandler-WaitingState\"]}, recurring args: %{allowed_states: [\"waiting\", \"running\", \"done\""},{"event":"cmd_output","timestamp":1607098319,"output":"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"waiting\", pub"},{"event":"cmd_output","timestamp":1607098319,"output":"lisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>, repo: Ppl.EctoRep"},{"event":"cmd_output","timestamp":1607098319,"output":"o, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :blo"},{"event":"cmd_output","timestamp":1607098320,"output":"ck_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:00.025 ["},{"event":"cmd_output","timestamp":1607098320,"output":"info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"9714c299-55d2-47b5-93f8-2a19"},{"event":"cmd_output","timestamp":1607098320,"output":"83ead917\"\n\u001b[0m\u001b[22m\n16:12:00.034 [info] block_id: 4daeeb0f-5101-423c-8e59-b74777a2b6c9, type: Blo"},{"event":"cmd_output","timestamp":1607098320,"output":"ckRequests, event: persisted block run request from ppl 9714c299-55d2-47b5-93f8-2a1983ead917 for blo"},{"event":"cmd_output","timestamp":1607098320,"output":"ck 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098320,"output":"[22m\n16:12:00.040 [info] block_id: 4daeeb0f-5101-423c-8e59-b74777a2b6c9, type: Blocks, state: init"},{"event":"cmd_output","timestamp":1607098320,"output":"ializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.in"},{"event":"cmd_output","timestamp":1607098320,"output":"sert/1(L43), \n\u001b[0m\u001b[22m\n16:12:00.042 [info] Block 0 of pipeline with id: 9714c299-55d2-47b5-93f8-"},{"event":"cmd_output","timestamp":1607098320,"output":"2a1983ead917 scheduled in block service with id: : \"4daeeb0f-5101-423c-8e59-b74777a2b6c9\"\n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098320,"output":"\n16:12:00.047 [info] ppl_id: 9714c299-55d2-47b5-93f8-2a1983ead917, type: PplBlocks, block_index: 0"},{"event":"cmd_output","timestamp":1607098320,"output":", state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_stat"},{"event":"cmd_output","timestamp":1607098320,"output":"e_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:00.062 [info] block_id: 4daeeb0f-5101-423c-8e59-b74777a2b6c9, t"},{"event":"cmd_output","timestamp":1607098320,"output":"ype: BlockRequests, event: persisted build and sub_ppl details for block_request: 4daeeb0f-5101-423c"},{"event":"cmd_output","timestamp":1607098320,"output":"-8e59-b74777a2b6c9, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41"},{"event":"cmd_output","timestamp":1607098320,"output":"), \n\u001b[0m\u001b[22m\n16:12:00.067 [info] block_id: 4daeeb0f-5101-423c-8e59-b74777a2b6c9, type: Tasks, st"},{"event":"cmd_output","timestamp":1607098320,"output":"ate: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.Initializing"},{"event":"cmd_output","timestamp":1607098320,"output":"State.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:00.070 [info] block_id: 4daeeb0f-5101-423c-8e59-b74777a2b"},{"event":"cmd_output","timestamp":1607098320,"output":"6c9, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper."},{"event":"cmd_output","timestamp":1607098320,"output":"STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:00.102 [info] block_id: 4daeeb0f-5101-423c-8e5"},{"event":"cmd_output","timestamp":1607098320,"output":"9-b74777a2b6c9, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098320,"output":"ir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:00.179 [info] block_id: 4daeeb0f-510"},{"event":"cmd_output","timestamp":1607098320,"output":"1-423c-8e59-b74777a2b6c9, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098320,"output":"n: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:00.193 [info] block_id: 4daee"},{"event":"cmd_output","timestamp":1607098320,"output":"b0f-5101-423c-8e59-b74777a2b6c9, type: Blocks, state: done, event: exit_scheduling, recovery_count: "},{"event":"cmd_output","timestamp":1607098320,"output":"0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test PplBlocks recovery c"},{"event":"cmd_output","timestamp":1607098320,"output":"ounter is reset on transition out of scheduling (1647.9ms)\u001b[0m\n\nPpl.Looper.PplBlocks.STMHandler.Sk"},{"event":"cmd_output","timestamp":1607098320,"output":"ipBlock.Test\n * test skip-when condition is true for given tag - block skipped\u001b[22m\n16:12:00.604 "},{"event":"cmd_output","timestamp":1607098320,"output":"[info] Request: 'run: %{\"branch_id\" => \"1562fbef-2911-4ce3-b7a0-672c8ad81bba\", \"branch_name\" => \"ma"},{"event":"cmd_output","timestamp":1607098320,"output":"ster\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"skip_block.yml\", \"hook_id\" => \"tag\", \"label\" =>"},{"event":"cmd_output","timestamp":1607098320,"output":" \"v0.9\", \"organization_id\" => \"6d7e49a1-326d-48d0-94d1-211f99ff3246\", \"owner\" => \"rt\", \"project_id\" "},{"event":"cmd_output","timestamp":1607098320,"output":"=> \"1103078c-3650-475c-9fef-e1ac0812003c\", \"repo_name\" => \"22_skip_block\", \"request_token\" => \"70b0e"},{"event":"cmd_output","timestamp":1607098320,"output":"f9e-364b-11eb-b193-5254005464e2\", \"requester_id\" => \"c89966ba-81b5-4d2f-8444-3c6364bad70a\", \"service"},{"event":"cmd_output","timestamp":1607098320,"output":"\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"85c61007-a3f"},{"event":"cmd_output","timestamp":1607098320,"output":"8-43cb-bf14-16044a4b2908\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:12:00.608 [info] ppl_id: b"},{"event":"cmd_output","timestamp":1607098320,"output":"47915de-bd33-453b-a1c5-76526ebab08b, type: PplRequests, event: persisted schedule request with reque"},{"event":"cmd_output","timestamp":1607098320,"output":"st_token: 70b0ef9e-364b-11eb-b193-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQuer"},{"event":"cmd_output","timestamp":1607098320,"output":"ies.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:00.612 [info] ppl_id: b47915de-bd33-453b-a1c5-76526"},{"event":"cmd_output","timestamp":1607098320,"output":"ebab08b, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098320,"output":".Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:00.618 [info] Project 1103078c"},{"event":"cmd_output","timestamp":1607098320,"output":"-3650-475c-9fef-e1ac0812003c and branch masterlatest_wf details updated: \"wf_id: 85c61007-a3f8-43cb-"},{"event":"cmd_output","timestamp":1607098320,"output":"bf14-16044a4b2908, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:12:00.621 [info] Persisted ppl_sub_init for pipelin"},{"event":"cmd_output","timestamp":1607098320,"output":"e with ppl_id: b47915de-bd33-453b-a1c5-76526ebab08b: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #E"},{"event":"cmd_output","timestamp":1607098320,"output":"cto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id"},{"event":"cmd_output","timestamp":1607098320,"output":": 151, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:00.619113], pipe"},{"event":"cmd_output","timestamp":1607098320,"output":"line_requests: #Ecto.Association.NotLoaded, ppl_id: \"b"},{"event":"cmd_output","timestamp":1607098320,"output":"47915de-bd33-453b-a1c5-76526ebab08b\", recovery_count: 0, result: nil, result_reason: nil, state: \"cr"},{"event":"cmd_output","timestamp":1607098320,"output":"eated\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:00.6191"},{"event":"cmd_output","timestamp":1607098320,"output":"26]}\n\u001b[0m\u001b[22m\n16:12:00.627 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingSt"},{"event":"cmd_output","timestamp":1607098320,"output":"ate with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beh"},{"event":"cmd_output","timestamp":1607098320,"output":"older-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"init"},{"event":"cmd_output","timestamp":1607098320,"output":"ializing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_sta"},{"event":"cmd_output","timestamp":1607098320,"output":"te: \"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.a"},{"event":"cmd_output","timestamp":1607098320,"output":"rgs/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :reco"},{"event":"cmd_output","timestamp":1607098320,"output":"very_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:00.627 "},{"event":"cmd_output","timestamp":1607098320,"output":"[info] Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHa"},{"event":"cmd_output","timestamp":1607098320,"output":"ndler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Pe"},{"event":"cmd_output","timestamp":1607098320,"output":"ndingState\"]}, recurring args: %{allowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_"},{"event":"cmd_output","timestamp":1607098320,"output":"time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publisher_cb: #Function<"},{"event":"cmd_output","timestamp":1607098320,"output":"0.8493005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :termi"},{"event":"cmd_output","timestamp":1607098320,"output":"nate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, "},{"event":"cmd_output","timestamp":1607098320,"output":"task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:12:00.627 [info] Periodic from module Elixir.Pp"},{"event":"cmd_output","timestamp":1607098320,"output":"l.Ppls.STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, "},{"event":"cmd_output","timestamp":1607098320,"output":"metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{allow"},{"event":"cmd_output","timestamp":1607098320,"output":"ed_states: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls,"},{"event":"cmd_output","timestamp":1607098320,"output":" observed_state: \"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingStat"},{"event":"cmd_output","timestamp":1607098320,"output":"e.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :r"},{"event":"cmd_output","timestamp":1607098320,"output":"ecovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:00.6"},{"event":"cmd_output","timestamp":1607098320,"output":"29 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl.Ppls.ST"},{"event":"cmd_output","timestamp":1607098320,"output":"MHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler"},{"event":"cmd_output","timestamp":1607098320,"output":"-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_se"},{"event":"cmd_output","timestamp":1607098320,"output":"c: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"running\", publisher_cb: #Function<0.7467"},{"event":"cmd_output","timestamp":1607098320,"output":"0282/1 in Ppl.Ppls.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_"},{"event":"cmd_output","timestamp":1607098320,"output":"request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_"},{"event":"cmd_output","timestamp":1607098320,"output":"supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:12:00.630 [info] Periodic from module Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098320,"output":"s.STMHandler.StoppingState with name Elixir.Ppl.Ppls.STMHandler.StoppingState :: period: 100 ms, met"},{"event":"cmd_output","timestamp":1607098320,"output":"ric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring args: %{allowed"},{"event":"cmd_output","timestamp":1607098320,"output":"_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_st"},{"event":"cmd_output","timestamp":1607098320,"output":"ate: \"stopping\", publisher_cb: #Function<0.71803493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, "},{"event":"cmd_output","timestamp":1607098320,"output":"repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_cou"},{"event":"cmd_output","timestamp":1607098320,"output":"nt, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:00.631 [info] "},{"event":"cmd_output","timestamp":1607098320,"output":"Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits"},{"event":"cmd_output","timestamp":1607098320,"output":".STMHandler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-"},{"event":"cmd_output","timestamp":1607098320,"output":"STMHandler-CreatedState\"]}, recurring args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec"},{"event":"cmd_output","timestamp":1607098320,"output":": 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"created\", publisher_cb: :ski"},{"event":"cmd_output","timestamp":1607098320,"output":"p, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_"},{"event":"cmd_output","timestamp":1607098320,"output":"count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098320,"output":"2:00.632 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elix"},{"event":"cmd_output","timestamp":1607098320,"output":"ir.Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\","},{"event":"cmd_output","timestamp":1607098320,"output":" [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %{allowed_states: [\"regular_init\", \""},{"event":"cmd_output","timestamp":1607098320,"output":"compilation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, obser"},{"event":"cmd_output","timestamp":1607098320,"output":"ved_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request,"},{"event":"cmd_output","timestamp":1607098320,"output":" :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits,"},{"event":"cmd_output","timestamp":1607098320,"output":" task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:00.633 [info] Periodic from module Elixir.Ppl.PplSubInit"},{"event":"cmd_output","timestamp":1607098320,"output":"s.STMHandler.CompilationState with name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period"},{"event":"cmd_output","timestamp":1607098320,"output":": 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, re"},{"event":"cmd_output","timestamp":1607098320,"output":"curring args: %{allowed_states: [\"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_se"},{"event":"cmd_output","timestamp":1607098320,"output":"c: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"compilation\", publisher_cb"},{"event":"cmd_output","timestamp":1607098320,"output":": :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :rec"},{"event":"cmd_output","timestamp":1607098320,"output":"overy_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098320,"output":"\n16:12:00.634 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with "},{"event":"cmd_output","timestamp":1607098320,"output":"name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.behold"},{"event":"cmd_output","timestamp":1607098320,"output":"er-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurring args: %{allowed_states: [\"d"},{"event":"cmd_output","timestamp":1607098320,"output":"one\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regul"},{"event":"cmd_output","timestamp":1607098320,"output":"ar_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at,"},{"event":"cmd_output","timestamp":1607098320,"output":" :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervi"},{"event":"cmd_output","timestamp":1607098320,"output":"sor: :skip}\n\u001b[0m\u001b[22m\n16:12:00.635 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.In"},{"event":"cmd_output","timestamp":1607098320,"output":"itializingState with name Elixir.Ppl.PplBlocks.STMHandler.InitializingState :: period: 100 ms, metri"},{"event":"cmd_output","timestamp":1607098320,"output":"c_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-InitializingState\"]}, recurring args: %{"},{"event":"cmd_output","timestamp":1607098320,"output":"allowed_states: [\"initializing\", \"waiting\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBloc"},{"event":"cmd_output","timestamp":1607098320,"output":"ks.Model.PplBlocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returni"},{"event":"cmd_output","timestamp":1607098320,"output":"ng: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index],"},{"event":"cmd_output","timestamp":1607098320,"output":" schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:00.636 [info] Per"},{"event":"cmd_output","timestamp":1607098320,"output":"iodic from module Elixir.Ppl.PplBlocks.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks.STMHan"},{"event":"cmd_output","timestamp":1607098320,"output":"dler.WaitingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandl"},{"event":"cmd_output","timestamp":1607098320,"output":"er-WaitingState\"]}, recurring args: %{allowed_states: [\"waiting\", \"running\", \"done\"], cooling_time_s"},{"event":"cmd_output","timestamp":1607098320,"output":"ec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"waiting\", publisher_cb: #Funct"},{"event":"cmd_output","timestamp":1607098320,"output":"ion<0.8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, returning: [:i"},{"event":"cmd_output","timestamp":1607098320,"output":"d, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema"},{"event":"cmd_output","timestamp":1607098320,"output":": Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:00.637 [info] Periodic f"},{"event":"cmd_output","timestamp":1607098320,"output":"rom module Elixir.Ppl.PplBlocks.STMHandler.RunningState with name Elixir.Ppl.PplBlocks.STMHandler.Ru"},{"event":"cmd_output","timestamp":1607098320,"output":"nningState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-Runn"},{"event":"cmd_output","timestamp":1607098320,"output":"ingState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2"},{"event":"cmd_output","timestamp":1607098320,"output":", initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"running\", publisher_cb: #Function<0"},{"event":"cmd_output","timestamp":1607098320,"output":".28166834/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :"},{"event":"cmd_output","timestamp":1607098320,"output":"terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id],"},{"event":"cmd_output","timestamp":1607098320,"output":" schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:00.638 [info] Per"},{"event":"cmd_output","timestamp":1607098320,"output":"iodic from module Elixir.Ppl.PplBlocks.STMHandler.StoppingState with name Elixir.Ppl.PplBlocks.STMHa"},{"event":"cmd_output","timestamp":1607098320,"output":"ndler.StoppingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHan"},{"event":"cmd_output","timestamp":1607098320,"output":"dler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2,"},{"event":"cmd_output","timestamp":1607098320,"output":" initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"stopping\", publisher_cb: #Function<0"},{"event":"cmd_output","timestamp":1607098320,"output":".104215991/1 in Ppl.PplBlocks.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id,"},{"event":"cmd_output","timestamp":1607098320,"output":" :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id"},{"event":"cmd_output","timestamp":1607098320,"output":"], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:00.639 [info] P"},{"event":"cmd_output","timestamp":1607098320,"output":"eriodic from module Elixir.Block.Blocks.STMHandler.InitializingState with name Elixir.Block.Blocks.S"},{"event":"cmd_output","timestamp":1607098320,"output":"TMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-"},{"event":"cmd_output","timestamp":1607098320,"output":"STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time"},{"event":"cmd_output","timestamp":1607098320,"output":"_sec: 0, initial_query: Block.Blocks.Model.Blocks, observed_state: \"initializing\", publisher_cb: :sk"},{"event":"cmd_output","timestamp":1607098320,"output":"ip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count,"},{"event":"cmd_output","timestamp":1607098320,"output":" :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:00.640 [in"},{"event":"cmd_output","timestamp":1607098320,"output":"fo] Periodic from module Elixir.Block.Blocks.STMHandler.RunningState with name Elixir.Block.Blocks."},{"event":"cmd_output","timestamp":1607098320,"output":"STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMH"},{"event":"cmd_output","timestamp":1607098320,"output":"andler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_t"},{"event":"cmd_output","timestamp":1607098320,"output":"ime_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"running\", publisher_cb: :ski"},{"event":"cmd_output","timestamp":1607098320,"output":"p, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, "},{"event":"cmd_output","timestamp":1607098320,"output":":block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:00.641 [inf"},{"event":"cmd_output","timestamp":1607098320,"output":"o] Periodic from module Elixir.Block.Blocks.STMHandler.StoppingState with name Elixir.Block.Blocks."},{"event":"cmd_output","timestamp":1607098320,"output":"STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STM"},{"event":"cmd_output","timestamp":1607098320,"output":"Handler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: "},{"event":"cmd_output","timestamp":1607098320,"output":"-2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"stopping\", publisher_cb: :skip, repo:"},{"event":"cmd_output","timestamp":1607098320,"output":" Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_i"},{"event":"cmd_output","timestamp":1607098320,"output":"d], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:00.642 [info] Peri"},{"event":"cmd_output","timestamp":1607098320,"output":"odic from module Elixir.Block.Tasks.STMHandler.PendingState with name Elixir.Block.Tasks.STMHandler."},{"event":"cmd_output","timestamp":1607098320,"output":"PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-Pendi"},{"event":"cmd_output","timestamp":1607098320,"output":"ngState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_quer"},{"event":"cmd_output","timestamp":1607098320,"output":"y: Block.Tasks.Model.Tasks, observed_state: \"pending\", publisher_cb: :skip, repo: Block.EctoRepo, re"},{"event":"cmd_output","timestamp":1607098320,"output":"turning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id, :build_request_i"},{"event":"cmd_output","timestamp":1607098320,"output":"d], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:00.643 [info] Period"},{"event":"cmd_output","timestamp":1607098320,"output":"ic from module Elixir.Block.Tasks.STMHandler.RunningState with name Elixir.Block.Tasks.STMHandler.Ru"},{"event":"cmd_output","timestamp":1607098320,"output":"nningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-Running"},{"event":"cmd_output","timestamp":1607098320,"output":"State\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, i"},{"event":"cmd_output","timestamp":1607098320,"output":"nitial_query: Block.Tasks.Model.Tasks, observed_state: \"running\", publisher_cb: :skip, repo: Block.E"},{"event":"cmd_output","timestamp":1607098320,"output":"ctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], sche"},{"event":"cmd_output","timestamp":1607098320,"output":"ma: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:00.644 [info] Periodic from "},{"event":"cmd_output","timestamp":1607098320,"output":"module Elixir.Block.Tasks.STMHandler.StoppingState with name Elixir.Block.Tasks.STMHandler.StoppingS"},{"event":"cmd_output","timestamp":1607098320,"output":"tate :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-StoppingState"},{"event":"cmd_output","timestamp":1607098320,"output":"\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Bl"},{"event":"cmd_output","timestamp":1607098320,"output":"ock.Tasks.Model.Tasks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, return"},{"event":"cmd_output","timestamp":1607098320,"output":"ing: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks"},{"event":"cmd_output","timestamp":1607098320,"output":".Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:00.752 [info] ppl_id: b47915de-bd33-453b-a1"},{"event":"cmd_output","timestamp":1607098320,"output":"c5-76526ebab08b, type: PplRequests, event: persisted source_args for pipeline: b47915de-bd33-453b-a1"},{"event":"cmd_output","timestamp":1607098320,"output":"c5-76526ebab08b, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098320,"output":"m\u001b[22m\n16:12:00.755 [info] ppl_id: b47915de-bd33-453b-a1c5-76526ebab08b, type: PplSubInits, state:"},{"event":"cmd_output","timestamp":1607098320,"output":" fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chang"},{"event":"cmd_output","timestamp":1607098320,"output":"e/1(L90), \n\u001b[0m\u001b[22m\n16:12:00.803 [info] ppl_id: b47915de-bd33-453b-a1c5-76526ebab08b, type: PplS"},{"event":"cmd_output","timestamp":1607098320,"output":"ubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.I"},{"event":"cmd_output","timestamp":1607098320,"output":"mpl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:00.838 [info] ppl_id: b47915de-bd33-453b-a1c5-76526"},{"event":"cmd_output","timestamp":1607098320,"output":"ebab08b, type: PplRequests, event: persisted definition for request with request_token: 70b0ef9e-364"},{"event":"cmd_output","timestamp":1607098320,"output":"b-11eb-b193-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/"},{"event":"cmd_output","timestamp":1607098320,"output":"3(L76), \n\u001b[0m\u001b[22m\n16:12:00.842 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: "},{"event":"cmd_output","timestamp":1607098320,"output":"#Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:12:00.840586], name: \"v0.9-."},{"event":"cmd_output","timestamp":1607098320,"output":"semaphore/skip_block.yml\", organization_id: \"6d7e49a1-326d-48d0-94d1-211f99ff3246\", project_id: \"110"},{"event":"cmd_output","timestamp":1607098320,"output":"3078c-3650-475c-9fef-e1ac0812003c\", queue_id: \"ef009fe9-f0fd-4e94-9fa5-d5388ff5c723\", scope: \"projec"},{"event":"cmd_output","timestamp":1607098320,"output":"t\", updated_at: ~N[2020-12-04 16:12:00.840600], user_generated: false}}\n\u001b[0m\u001b[22m\n16:12:00.851 [in"},{"event":"cmd_output","timestamp":1607098320,"output":"fo] ppl_id: not_available, event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitSta"},{"event":"cmd_output","timestamp":1607098320,"output":"te.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:00.851 [info] event: created, origin: Elixir.Ppl.PplSubInits"},{"event":"cmd_output","timestamp":1607098320,"output":".STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:00.851 [info] ppl_id: b47915de-bd3"},{"event":"cmd_output","timestamp":1607098320,"output":"3-453b-a1c5-76526ebab08b, type: PplBlocks, block_index: 0, state: initializing, event: created, reco"},{"event":"cmd_output","timestamp":1607098320,"output":"very_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098320,"output":"2m\n16:12:00.851 [info] ppl_id: b47915de-bd33-453b-a1c5-76526ebab08b, type: PplBlocks, block_index:"},{"event":"cmd_output","timestamp":1607098320,"output":" 1, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandle"},{"event":"cmd_output","timestamp":1607098320,"output":"r.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:00.856 [info] ppl_id: b47915de-bd33-453b-a1c"},{"event":"cmd_output","timestamp":1607098320,"output":"5-76526ebab08b, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_cou"},{"event":"cmd_output","timestamp":1607098320,"output":"nt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:00.877 [info] ppl"},{"event":"cmd_output","timestamp":1607098320,"output":"_id: b47915de-bd33-453b-a1c5-76526ebab08b, type: PplBlocks, block_index: 0, state: waiting, event: e"},{"event":"cmd_output","timestamp":1607098320,"output":"xit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098320,"output":"2m\n16:12:00.878 [info] ppl_id: b47915de-bd33-453b-a1c5-76526ebab08b, type: Ppls, state: pending, e"},{"event":"cmd_output","timestamp":1607098320,"output":"vent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n"},{"event":"cmd_output","timestamp":1607098320,"output":"\u001b[0m\u001b[22m\n16:12:00.887 [info] ppl_id: b47915de-bd33-453b-a1c5-76526ebab08b, type: PplBlocks, block"},{"event":"cmd_output","timestamp":1607098320,"output":"_index: 1, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl"},{"event":"cmd_output","timestamp":1607098320,"output":".log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:00.892 [info] ppl_id: b47915de-bd33-453b-a1c5-76526eba"},{"event":"cmd_output","timestamp":1607098320,"output":"b08b, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.S"},{"event":"cmd_output","timestamp":1607098320,"output":"TM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:00.903 [info] ppl_id: b47915de-bd33-453b-a1c5-7"},{"event":"cmd_output","timestamp":1607098320,"output":"6526ebab08b, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098320,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:00.911 [info] PplBlocks WaitingState STM"},{"event":"cmd_output","timestamp":1607098320,"output":" is scheduling block 0 from pipeline: \"b47915de-bd33-453b-a1c5-76526ebab08b\"\n\u001b[0m\u001b[22m\n16:12:00.91"},{"event":"cmd_output","timestamp":1607098320,"output":"7 [info] block_id: aed497da-a9f2-434d-9485-699b97ff5db5, type: BlockRequests, event: persisted bloc"},{"event":"cmd_output","timestamp":1607098320,"output":"k run request from ppl b47915de-bd33-453b-a1c5-76526ebab08b for block 0, origin: Elixir.Block.BlockR"},{"event":"cmd_output","timestamp":1607098320,"output":"equests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:00.925 [info] block_"},{"event":"cmd_output","timestamp":1607098320,"output":"id: aed497da-a9f2-434d-9485-699b97ff5db5, type: Blocks, state: initializing, event: initializing, re"},{"event":"cmd_output","timestamp":1607098320,"output":"covery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:0"},{"event":"cmd_output","timestamp":1607098320,"output":"0.930 [info] Block 0 of pipeline with id: b47915de-bd33-453b-a1c5-76526ebab08b scheduled in block s"},{"event":"cmd_output","timestamp":1607098320,"output":"ervice with id: : \"aed497da-a9f2-434d-9485-699b97ff5db5\"\n\u001b[0m\u001b[22m\n16:12:00.933 [info] ppl_id: b4"},{"event":"cmd_output","timestamp":1607098320,"output":"7915de-bd33-453b-a1c5-76526ebab08b, type: PplBlocks, block_index: 0, state: running, event: exit_sch"},{"event":"cmd_output","timestamp":1607098320,"output":"eduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098320,"output":"12:00.935 [info] block_id: aed497da-a9f2-434d-9485-699b97ff5db5, type: BlockRequests, event: persis"},{"event":"cmd_output","timestamp":1607098320,"output":"ted build and sub_ppl details for block_request: aed497da-a9f2-434d-9485-699b97ff5db5, origin: Elixi"},{"event":"cmd_output","timestamp":1607098320,"output":"r.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:00.946 [inf"},{"event":"cmd_output","timestamp":1607098320,"output":"o] block_id: aed497da-a9f2-434d-9485-699b97ff5db5, type: Tasks, state: pending, event: created, rec"},{"event":"cmd_output","timestamp":1607098320,"output":"overy_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098320,"output":"m\n16:12:00.949 [info] block_id: aed497da-a9f2-434d-9485-699b97ff5db5, type: Blocks, state: running"},{"event":"cmd_output","timestamp":1607098320,"output":", event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90),"},{"event":"cmd_output","timestamp":1607098320,"output":" \n\u001b[0m\u001b[22m\n16:12:00.975 [info] block_id: aed497da-a9f2-434d-9485-699b97ff5db5, type: Tasks, stat"},{"event":"cmd_output","timestamp":1607098320,"output":"e: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chan"},{"event":"cmd_output","timestamp":1607098320,"output":"ge/1(L90), \n\u001b[0m\u001b[22m\n16:12:00.992 [info] block_id: aed497da-a9f2-434d-9485-699b97ff5db5, type: T"},{"event":"cmd_output","timestamp":1607098320,"output":"asks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_sta"},{"event":"cmd_output","timestamp":1607098321,"output":"te_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:01.002 [info] block_id: aed497da-a9f2-434d-9485-699b97ff5db5, "},{"event":"cmd_output","timestamp":1607098321,"output":"type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl"},{"event":"cmd_output","timestamp":1607098321,"output":".log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:01.017 [info] ppl_id: b47915de-bd33-453b-a1c5-76526eba"},{"event":"cmd_output","timestamp":1607098321,"output":"b08b, block_id: aed497da-a9f2-434d-9485-699b97ff5db5, type: PplBlocks, block_index: 0, state: done, "},{"event":"cmd_output","timestamp":1607098321,"output":"result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_"},{"event":"cmd_output","timestamp":1607098321,"output":"change/1(L90), \n\u001b[0m\u001b[22m\n16:12:01.044 [info] PplBlocks WaitingState STM is scheduling block 1 fr"},{"event":"cmd_output","timestamp":1607098321,"output":"om pipeline: \"b47915de-bd33-453b-a1c5-76526ebab08b\"\n\u001b[0m\u001b[22m\n16:12:01.057 [info] ppl_id: b47915d"},{"event":"cmd_output","timestamp":1607098321,"output":"e-bd33-453b-a1c5-76526ebab08b, type: PplBlocks, block_index: 1, state: done, result: passed, event: "},{"event":"cmd_output","timestamp":1607098321,"output":"exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098321,"output":"22m\n16:12:01.082 [info] ppl_id: b47915de-bd33-453b-a1c5-76526ebab08b, type: Ppls, state: done, res"},{"event":"cmd_output","timestamp":1607098321,"output":"ult: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_cha"},{"event":"cmd_output","timestamp":1607098321,"output":"nge/1(L90), \n\u001b[0m\u001b[32m\r * test skip-when condition is true for given tag - block skipped (658.1ms)"},{"event":"cmd_output","timestamp":1607098321,"output":"\u001b[0m\n * test skip-when condition is false for given tag - block executed\u001b[22m\n16:12:01.259 [info]"},{"event":"cmd_output","timestamp":1607098321,"output":" Request: 'run: %{\"branch_id\" => \"4a1223fd-fc44-4656-a28e-4252e2e36526\", \"branch_name\" => \"master\","},{"event":"cmd_output","timestamp":1607098321,"output":" \"commit_sha\" => \"75891a4469\", \"file_name\" => \"skip_block.yml\", \"hook_id\" => \"tag\", \"label\" => \"v1.0"},{"event":"cmd_output","timestamp":1607098321,"output":"\", \"organization_id\" => \"03a37b5f-0895-4eed-bf26-4c3551132bcb\", \"owner\" => \"rt\", \"project_id\" => \"2b"},{"event":"cmd_output","timestamp":1607098321,"output":"aa2abb-94c0-4ebb-8a11-ae14b0903b37\", \"repo_name\" => \"22_skip_block\", \"request_token\" => \"7114b3b2-36"},{"event":"cmd_output","timestamp":1607098321,"output":"4b-11eb-9608-5254005464e2\", \"requester_id\" => \"70ad77b1-7dfc-4be3-8e83-4e6c41d569bf\", \"service\" => \""},{"event":"cmd_output","timestamp":1607098321,"output":"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"bc5eb58a-75ee-4e56"},{"event":"cmd_output","timestamp":1607098321,"output":"-ba9b-5f96d5c0fd6c\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:12:01.263 [info] ppl_id: 0f9438b"},{"event":"cmd_output","timestamp":1607098321,"output":"f-d695-45c4-9237-584a6971c5b9, type: PplRequests, event: persisted schedule request with request_tok"},{"event":"cmd_output","timestamp":1607098321,"output":"en: 7114b3b2-364b-11eb-9608-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.pr"},{"event":"cmd_output","timestamp":1607098321,"output":"ocess_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:01.267 [info] ppl_id: 0f9438bf-d695-45c4-9237-584a6971c5b"},{"event":"cmd_output","timestamp":1607098321,"output":"9, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls."},{"event":"cmd_output","timestamp":1607098321,"output":"Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:01.275 [info] Project 2baa2abb-94c0-"},{"event":"cmd_output","timestamp":1607098321,"output":"4ebb-8a11-ae14b0903b37 and branch masterlatest_wf details updated: \"wf_id: bc5eb58a-75ee-4e56-ba9b-5"},{"event":"cmd_output","timestamp":1607098321,"output":"f96d5c0fd6c, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:12:01.278 [info] Persisted ppl_sub_init for pipeline with"},{"event":"cmd_output","timestamp":1607098321,"output":" ppl_id: 0f9438bf-d695-45c4-9237-584a6971c5b9: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Sc"},{"event":"cmd_output","timestamp":1607098321,"output":"hema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 152,"},{"event":"cmd_output","timestamp":1607098321,"output":" in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:01.276805], pipeline_r"},{"event":"cmd_output","timestamp":1607098321,"output":"equests: #Ecto.Association.NotLoaded, ppl_id: \"0f9438b"},{"event":"cmd_output","timestamp":1607098321,"output":"f-d695-45c4-9237-584a6971c5b9\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\""},{"event":"cmd_output","timestamp":1607098321,"output":", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:01.276818]}\n"},{"event":"cmd_output","timestamp":1607098321,"output":"\u001b[0m\u001b[22m\n16:12:01.288 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingState wi"},{"event":"cmd_output","timestamp":1607098321,"output":"th name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-"},{"event":"cmd_output","timestamp":1607098321,"output":"wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializi"},{"event":"cmd_output","timestamp":1607098321,"output":"ng\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"i"},{"event":"cmd_output","timestamp":1607098321,"output":"nitializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>"},{"event":"cmd_output","timestamp":1607098321,"output":", repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_c"},{"event":"cmd_output","timestamp":1607098321,"output":"ount, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:01.289 [info]"},{"event":"cmd_output","timestamp":1607098321,"output":" Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler."},{"event":"cmd_output","timestamp":1607098321,"output":"PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingS"},{"event":"cmd_output","timestamp":1607098321,"output":"tate\"]}, recurring args: %{allowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_s"},{"event":"cmd_output","timestamp":1607098321,"output":"ec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publisher_cb: #Function<0.8493"},{"event":"cmd_output","timestamp":1607098321,"output":"005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_r"},{"event":"cmd_output","timestamp":1607098321,"output":"equest, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_s"},{"event":"cmd_output","timestamp":1607098321,"output":"upervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:12:01.290 [info] Periodic from module Elixir.Ppl.Ppls"},{"event":"cmd_output","timestamp":1607098321,"output":".STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, metric"},{"event":"cmd_output","timestamp":1607098321,"output":"_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{allowed_sta"},{"event":"cmd_output","timestamp":1607098321,"output":"tes: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, obser"},{"event":"cmd_output","timestamp":1607098321,"output":"ved_state: \"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.args"},{"event":"cmd_output","timestamp":1607098321,"output":"/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recover"},{"event":"cmd_output","timestamp":1607098321,"output":"y_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:01.291 [in"},{"event":"cmd_output","timestamp":1607098321,"output":"fo] Periodic from module Elixir.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHandl"},{"event":"cmd_output","timestamp":1607098321,"output":"er.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Runni"},{"event":"cmd_output","timestamp":1607098321,"output":"ngState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2,"},{"event":"cmd_output","timestamp":1607098321,"output":" initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"running\", publisher_cb: #Function<0.74670282/1"},{"event":"cmd_output","timestamp":1607098321,"output":" in Ppl.Ppls.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_reques"},{"event":"cmd_output","timestamp":1607098321,"output":"t, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_superv"},{"event":"cmd_output","timestamp":1607098321,"output":"isor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:12:01.292 [info] Periodic from module Elixir.Ppl.Ppls.STMH"},{"event":"cmd_output","timestamp":1607098321,"output":"andler.StoppingState with name Elixir.Ppl.Ppls.STMHandler.StoppingState :: period: 100 ms, metric_na"},{"event":"cmd_output","timestamp":1607098321,"output":"me: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring args: %{allowed_state"},{"event":"cmd_output","timestamp":1607098321,"output":"s: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \""},{"event":"cmd_output","timestamp":1607098321,"output":"stopping\", publisher_cb: #Function<0.71803493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, repo: "},{"event":"cmd_output","timestamp":1607098321,"output":"Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :p"},{"event":"cmd_output","timestamp":1607098321,"output":"pl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:01.293 [info] Period"},{"event":"cmd_output","timestamp":1607098321,"output":"ic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHa"},{"event":"cmd_output","timestamp":1607098321,"output":"ndler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHan"},{"event":"cmd_output","timestamp":1607098321,"output":"dler-CreatedState\"]}, recurring args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, i"},{"event":"cmd_output","timestamp":1607098321,"output":"nitial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip, rep"},{"event":"cmd_output","timestamp":1607098321,"output":"o: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count,"},{"event":"cmd_output","timestamp":1607098321,"output":" :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:01.2"},{"event":"cmd_output","timestamp":1607098321,"output":"94 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098321,"output":".PplSubInits.STMHandler.FetchingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl"},{"event":"cmd_output","timestamp":1607098321,"output":"-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compil"},{"event":"cmd_output","timestamp":1607098321,"output":"ation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_st"},{"event":"cmd_output","timestamp":1607098321,"output":"ate: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :upda"},{"event":"cmd_output","timestamp":1607098321,"output":"ted_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_"},{"event":"cmd_output","timestamp":1607098321,"output":"supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:01.294 [info] Periodic from module Elixir.Ppl.PplSubInits.STMH"},{"event":"cmd_output","timestamp":1607098321,"output":"andler.CompilationState with name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 100 "},{"event":"cmd_output","timestamp":1607098321,"output":"ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurrin"},{"event":"cmd_output","timestamp":1607098321,"output":"g args: %{allowed_states: [\"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2,"},{"event":"cmd_output","timestamp":1607098321,"output":" initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"compilation\", publisher_cb: :ski"},{"event":"cmd_output","timestamp":1607098321,"output":"p, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_"},{"event":"cmd_output","timestamp":1607098321,"output":"count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098321,"output":"2:01.295 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with name E"},{"event":"cmd_output","timestamp":1607098321,"output":"lixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wak"},{"event":"cmd_output","timestamp":1607098321,"output":"e_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurring args: %{allowed_states: [\"done\"],"},{"event":"cmd_output","timestamp":1607098321,"output":" cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_ini"},{"event":"cmd_output","timestamp":1607098321,"output":"t\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :stat"},{"event":"cmd_output","timestamp":1607098321,"output":"e, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :"},{"event":"cmd_output","timestamp":1607098321,"output":"skip}\n\u001b[0m\u001b[22m\n16:12:01.296 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.Initiali"},{"event":"cmd_output","timestamp":1607098321,"output":"zingState with name Elixir.Ppl.PplBlocks.STMHandler.InitializingState :: period: 100 ms, metric_name"},{"event":"cmd_output","timestamp":1607098321,"output":": {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-InitializingState\"]}, recurring args: %{allowe"},{"event":"cmd_output","timestamp":1607098321,"output":"d_states: [\"initializing\", \"waiting\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Mod"},{"event":"cmd_output","timestamp":1607098321,"output":"el.PplBlocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:"},{"event":"cmd_output","timestamp":1607098321,"output":"id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schem"},{"event":"cmd_output","timestamp":1607098321,"output":"a: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:01.297 [info] Periodic "},{"event":"cmd_output","timestamp":1607098321,"output":"from module Elixir.Ppl.PplBlocks.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler.W"},{"event":"cmd_output","timestamp":1607098321,"output":"aitingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-Wai"},{"event":"cmd_output","timestamp":1607098321,"output":"tingState\"]}, recurring args: %{allowed_states: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 0,"},{"event":"cmd_output","timestamp":1607098321,"output":" initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"waiting\", publisher_cb: #Function<0."},{"event":"cmd_output","timestamp":1607098321,"output":"8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :te"},{"event":"cmd_output","timestamp":1607098321,"output":"rminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl."},{"event":"cmd_output","timestamp":1607098321,"output":"PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:01.298 [info] Periodic from mo"},{"event":"cmd_output","timestamp":1607098321,"output":"dule Elixir.Ppl.PplBlocks.STMHandler.RunningState with name Elixir.Ppl.PplBlocks.STMHandler.RunningS"},{"event":"cmd_output","timestamp":1607098321,"output":"tate :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningSta"},{"event":"cmd_output","timestamp":1607098321,"output":"te\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, init"},{"event":"cmd_output","timestamp":1607098321,"output":"ial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"running\", publisher_cb: #Function<0.28166"},{"event":"cmd_output","timestamp":1607098321,"output":"834/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :termin"},{"event":"cmd_output","timestamp":1607098321,"output":"ate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schem"},{"event":"cmd_output","timestamp":1607098321,"output":"a: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:01.298 [info] Periodic "},{"event":"cmd_output","timestamp":1607098321,"output":"from module Elixir.Ppl.PplBlocks.STMHandler.StoppingState with name Elixir.Ppl.PplBlocks.STMHandler."},{"event":"cmd_output","timestamp":1607098321,"output":"StoppingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-S"},{"event":"cmd_output","timestamp":1607098321,"output":"toppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initi"},{"event":"cmd_output","timestamp":1607098321,"output":"al_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"stopping\", publisher_cb: #Function<0.10421"},{"event":"cmd_output","timestamp":1607098321,"output":"5991/1 in Ppl.PplBlocks.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :term"},{"event":"cmd_output","timestamp":1607098321,"output":"inate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], sch"},{"event":"cmd_output","timestamp":1607098321,"output":"ema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:01.299 [info] Periodi"},{"event":"cmd_output","timestamp":1607098321,"output":"c from module Elixir.Block.Blocks.STMHandler.InitializingState with name Elixir.Block.Blocks.STMHand"},{"event":"cmd_output","timestamp":1607098321,"output":"ler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHan"},{"event":"cmd_output","timestamp":1607098321,"output":"dler-InitializingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: "},{"event":"cmd_output","timestamp":1607098321,"output":"0, initial_query: Block.Blocks.Model.Blocks, observed_state: \"initializing\", publisher_cb: :skip, re"},{"event":"cmd_output","timestamp":1607098321,"output":"po: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :bloc"},{"event":"cmd_output","timestamp":1607098321,"output":"k_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:01.300 [info] P"},{"event":"cmd_output","timestamp":1607098321,"output":"eriodic from module Elixir.Block.Blocks.STMHandler.RunningState with name Elixir.Block.Blocks.STMHan"},{"event":"cmd_output","timestamp":1607098321,"output":"dler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler"},{"event":"cmd_output","timestamp":1607098321,"output":"-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_se"},{"event":"cmd_output","timestamp":1607098321,"output":"c: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"running\", publisher_cb: :skip, rep"},{"event":"cmd_output","timestamp":1607098321,"output":"o: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block"},{"event":"cmd_output","timestamp":1607098321,"output":"_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:01.301 [info] Pe"},{"event":"cmd_output","timestamp":1607098321,"output":"riodic from module Elixir.Block.Blocks.STMHandler.StoppingState with name Elixir.Block.Blocks.STMHan"},{"event":"cmd_output","timestamp":1607098321,"output":"dler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandle"},{"event":"cmd_output","timestamp":1607098321,"output":"r-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, in"},{"event":"cmd_output","timestamp":1607098321,"output":"itial_query: Block.Blocks.Model.Blocks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block"},{"event":"cmd_output","timestamp":1607098321,"output":".EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], sc"},{"event":"cmd_output","timestamp":1607098321,"output":"hema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:01.302 [info] Periodic f"},{"event":"cmd_output","timestamp":1607098321,"output":"rom module Elixir.Block.Tasks.STMHandler.PendingState with name Elixir.Block.Tasks.STMHandler.Pendin"},{"event":"cmd_output","timestamp":1607098321,"output":"gState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingStat"},{"event":"cmd_output","timestamp":1607098321,"output":"e\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Blo"},{"event":"cmd_output","timestamp":1607098321,"output":"ck.Tasks.Model.Tasks, observed_state: \"pending\", publisher_cb: :skip, repo: Block.EctoRepo, returnin"},{"event":"cmd_output","timestamp":1607098321,"output":"g: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id, :build_request_id], sc"},{"event":"cmd_output","timestamp":1607098321,"output":"hema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:01.303 [info] Periodic fro"},{"event":"cmd_output","timestamp":1607098321,"output":"m module Elixir.Block.Tasks.STMHandler.RunningState with name Elixir.Block.Tasks.STMHandler.RunningS"},{"event":"cmd_output","timestamp":1607098321,"output":"tate :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningState\""},{"event":"cmd_output","timestamp":1607098321,"output":"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial"},{"event":"cmd_output","timestamp":1607098321,"output":"_query: Block.Tasks.Model.Tasks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRep"},{"event":"cmd_output","timestamp":1607098321,"output":"o, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Bl"},{"event":"cmd_output","timestamp":1607098321,"output":"ock.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:01.305 [info] Periodic from module"},{"event":"cmd_output","timestamp":1607098321,"output":" Elixir.Block.Tasks.STMHandler.StoppingState with name Elixir.Block.Tasks.STMHandler.StoppingState :"},{"event":"cmd_output","timestamp":1607098321,"output":": period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]}, r"},{"event":"cmd_output","timestamp":1607098321,"output":"ecurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Ta"},{"event":"cmd_output","timestamp":1607098321,"output":"sks.Model.Tasks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: ["},{"event":"cmd_output","timestamp":1607098321,"output":":id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model"},{"event":"cmd_output","timestamp":1607098321,"output":".Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:01.419 [info] ppl_id: 0f9438bf-d695-45c4-9237-584"},{"event":"cmd_output","timestamp":1607098321,"output":"a6971c5b9, type: PplRequests, event: persisted source_args for pipeline: 0f9438bf-d695-45c4-9237-584"},{"event":"cmd_output","timestamp":1607098321,"output":"a6971c5b9, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098321,"output":"\n16:12:01.425 [info] ppl_id: 0f9438bf-d695-45c4-9237-584a6971c5b9, type: PplSubInits, state: fetch"},{"event":"cmd_output","timestamp":1607098321,"output":"ing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L9"},{"event":"cmd_output","timestamp":1607098321,"output":"0), \n\u001b[0m\u001b[22m\n16:12:01.461 [info] ppl_id: 0f9438bf-d695-45c4-9237-584a6971c5b9, type: PplSubInit"},{"event":"cmd_output","timestamp":1607098321,"output":"s, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.lo"},{"event":"cmd_output","timestamp":1607098321,"output":"g_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:01.488 [info] ppl_id: 0f9438bf-d695-45c4-9237-584a6971c5b"},{"event":"cmd_output","timestamp":1607098321,"output":"9, type: PplRequests, event: persisted definition for request with request_token: 7114b3b2-364b-11eb"},{"event":"cmd_output","timestamp":1607098321,"output":"-9608-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76)"},{"event":"cmd_output","timestamp":1607098321,"output":", \n\u001b[0m\u001b[22m\n16:12:01.493 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto."},{"event":"cmd_output","timestamp":1607098321,"output":"Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:12:01.491567], name: \"v1.0-.semaph"},{"event":"cmd_output","timestamp":1607098321,"output":"ore/skip_block.yml\", organization_id: \"03a37b5f-0895-4eed-bf26-4c3551132bcb\", project_id: \"2baa2abb-"},{"event":"cmd_output","timestamp":1607098321,"output":"94c0-4ebb-8a11-ae14b0903b37\", queue_id: \"7efa8dbc-7ea5-494c-b3e0-e636876579e2\", scope: \"project\", up"},{"event":"cmd_output","timestamp":1607098321,"output":"dated_at: ~N[2020-12-04 16:12:01.491577], user_generated: false}}\n\u001b[0m\u001b[22m\n16:12:01.499 [info] p"},{"event":"cmd_output","timestamp":1607098321,"output":"pl_id: not_available, event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all"},{"event":"cmd_output","timestamp":1607098321,"output":"_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:01.499 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHa"},{"event":"cmd_output","timestamp":1607098321,"output":"ndler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:01.500 [info] ppl_id: 0f9438bf-d695-45c4"},{"event":"cmd_output","timestamp":1607098321,"output":"-9237-584a6971c5b9, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_c"},{"event":"cmd_output","timestamp":1607098321,"output":"ount: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098321,"output":":12:01.500 [info] ppl_id: 0f9438bf-d695-45c4-9237-584a6971c5b9, type: PplBlocks, block_index: 1, st"},{"event":"cmd_output","timestamp":1607098321,"output":"ate: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.Regu"},{"event":"cmd_output","timestamp":1607098321,"output":"larInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:01.503 [info] ppl_id: 0f9438bf-d695-45c4-9237-584a"},{"event":"cmd_output","timestamp":1607098321,"output":"6971c5b9, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098321,"output":" origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:01.524 [info] ppl_id: 0"},{"event":"cmd_output","timestamp":1607098321,"output":"f9438bf-d695-45c4-9237-584a6971c5b9, type: Ppls, state: pending, event: exit_scheduling, recovery_co"},{"event":"cmd_output","timestamp":1607098321,"output":"unt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:01.536 [info] pp"},{"event":"cmd_output","timestamp":1607098321,"output":"l_id: 0f9438bf-d695-45c4-9237-584a6971c5b9, type: PplBlocks, block_index: 0, state: waiting, event: "},{"event":"cmd_output","timestamp":1607098321,"output":"exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098321,"output":"22m\n16:12:01.541 [info] ppl_id: 0f9438bf-d695-45c4-9237-584a6971c5b9, type: Ppls, state: queuing, "},{"event":"cmd_output","timestamp":1607098321,"output":"event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \r"},{"event":"cmd_output","timestamp":1607098321,"output":"\n\u001b[0m\u001b[22m\n16:12:01.546 [info] ppl_id: 0f9438bf-d695-45c4-9237-584a6971c5b9, type: PplBlocks, bloc"},{"event":"cmd_output","timestamp":1607098321,"output":"k_index: 1, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Imp"},{"event":"cmd_output","timestamp":1607098321,"output":"l.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:01.555 [info] ppl_id: 0f9438bf-d695-45c4-9237-584a697"},{"event":"cmd_output","timestamp":1607098321,"output":"1c5b9, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper."},{"event":"cmd_output","timestamp":1607098321,"output":"STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:01.562 [info] PplBlocks WaitingState STM is sc"},{"event":"cmd_output","timestamp":1607098321,"output":"heduling block 0 from pipeline: \"0f9438bf-d695-45c4-9237-584a6971c5b9\"\n\u001b[0m\u001b[22m\n16:12:01.576 [inf"},{"event":"cmd_output","timestamp":1607098321,"output":"o] block_id: d8c6ff55-6e83-4d11-9009-12feb03ab9f1, type: BlockRequests, event: persisted block run "},{"event":"cmd_output","timestamp":1607098321,"output":"request from ppl 0f9438bf-d695-45c4-9237-584a6971c5b9 for block 0, origin: Elixir.Block.BlockRequest"},{"event":"cmd_output","timestamp":1607098321,"output":"s.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:01.579 [info] block_id: d8"},{"event":"cmd_output","timestamp":1607098321,"output":"c6ff55-6e83-4d11-9009-12feb03ab9f1, type: Blocks, state: initializing, event: initializing, recovery"},{"event":"cmd_output","timestamp":1607098321,"output":"_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:01.586 "},{"event":"cmd_output","timestamp":1607098321,"output":"[info] Block 0 of pipeline with id: 0f9438bf-d695-45c4-9237-584a6971c5b9 scheduled in block service"},{"event":"cmd_output","timestamp":1607098321,"output":" with id: : \"d8c6ff55-6e83-4d11-9009-12feb03ab9f1\"\n\u001b[0m\u001b[22m\n16:12:01.593 [info] ppl_id: 0f9438bf"},{"event":"cmd_output","timestamp":1607098321,"output":"-d695-45c4-9237-584a6971c5b9, type: PplBlocks, block_index: 0, state: running, event: exit_schedulin"},{"event":"cmd_output","timestamp":1607098321,"output":"g, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:01."},{"event":"cmd_output","timestamp":1607098321,"output":"594 [info] block_id: d8c6ff55-6e83-4d11-9009-12feb03ab9f1, type: BlockRequests, event: persisted bu"},{"event":"cmd_output","timestamp":1607098321,"output":"ild and sub_ppl details for block_request: d8c6ff55-6e83-4d11-9009-12feb03ab9f1, origin: Elixir.Bloc"},{"event":"cmd_output","timestamp":1607098321,"output":"k.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:01.600 [info] bl"},{"event":"cmd_output","timestamp":1607098321,"output":"ock_id: d8c6ff55-6e83-4d11-9009-12feb03ab9f1, type: Tasks, state: pending, event: created, recovery_"},{"event":"cmd_output","timestamp":1607098321,"output":"count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098321,"output":"12:01.604 [info] block_id: d8c6ff55-6e83-4d11-9009-12feb03ab9f1, type: Blocks, state: running, even"},{"event":"cmd_output","timestamp":1607098321,"output":"t: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098321,"output":"m\u001b[22m\n16:12:01.624 [info] block_id: d8c6ff55-6e83-4d11-9009-12feb03ab9f1, type: Tasks, state: run"},{"event":"cmd_output","timestamp":1607098321,"output":"ning, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098321,"output":"90), \n\u001b[0m\u001b[22m\n16:12:01.647 [info] block_id: d8c6ff55-6e83-4d11-9009-12feb03ab9f1, type: Tasks, "},{"event":"cmd_output","timestamp":1607098321,"output":"state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_cha"},{"event":"cmd_output","timestamp":1607098321,"output":"nge/1(L90), \n\u001b[0m\u001b[22m\n16:12:01.656 [info] block_id: d8c6ff55-6e83-4d11-9009-12feb03ab9f1, type: "},{"event":"cmd_output","timestamp":1607098321,"output":"Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_s"},{"event":"cmd_output","timestamp":1607098321,"output":"tate_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:01.667 [info] ppl_id: 0f9438bf-d695-45c4-9237-584a6971c5b9, "},{"event":"cmd_output","timestamp":1607098321,"output":"block_id: d8c6ff55-6e83-4d11-9009-12feb03ab9f1, type: PplBlocks, block_index: 0, state: done, result"},{"event":"cmd_output","timestamp":1607098321,"output":": passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change"},{"event":"cmd_output","timestamp":1607098321,"output":"/1(L90), \n\u001b[0m\u001b[22m\n16:12:01.678 [info] PplBlocks WaitingState STM is scheduling block 1 from pip"},{"event":"cmd_output","timestamp":1607098321,"output":"eline: \"0f9438bf-d695-45c4-9237-584a6971c5b9\"\n\u001b[0m\u001b[22m\n16:12:01.690 [info] block_id: bf2a0e7d-7d"},{"event":"cmd_output","timestamp":1607098321,"output":"e6-46fb-92d4-d508bb42123a, type: BlockRequests, event: persisted block run request from ppl 0f9438bf"},{"event":"cmd_output","timestamp":1607098321,"output":"-d695-45c4-9237-584a6971c5b9 for block 1, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQuer"},{"event":"cmd_output","timestamp":1607098321,"output":"ies.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:01.692 [info] block_id: bf2a0e7d-7de6-46fb-92d4-d50"},{"event":"cmd_output","timestamp":1607098321,"output":"8bb42123a, type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098321,"output":".Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:01.692 [info] Block 1 of pipeli"},{"event":"cmd_output","timestamp":1607098321,"output":"ne with id: 0f9438bf-d695-45c4-9237-584a6971c5b9 scheduled in block service with id: : \"bf2a0e7d-7de"},{"event":"cmd_output","timestamp":1607098321,"output":"6-46fb-92d4-d508bb42123a\"\n\u001b[0m\u001b[22m\n16:12:01.697 [info] ppl_id: 0f9438bf-d695-45c4-9237-584a6971c"},{"event":"cmd_output","timestamp":1607098321,"output":"5b9, type: PplBlocks, block_index: 1, state: running, event: exit_scheduling, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098321,"output":"gin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:01.703 [info] block_id: bf2"},{"event":"cmd_output","timestamp":1607098321,"output":"a0e7d-7de6-46fb-92d4-d508bb42123a, type: BlockRequests, event: persisted build and sub_ppl details f"},{"event":"cmd_output","timestamp":1607098321,"output":"or block_request: bf2a0e7d-7de6-46fb-92d4-d508bb42123a, origin: Elixir.Block.BlockRequests.Model.Blo"},{"event":"cmd_output","timestamp":1607098321,"output":"ckRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:01.706 [info] block_id: bf2a0e7d-7de6-46f"},{"event":"cmd_output","timestamp":1607098321,"output":"b-92d4-d508bb42123a, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098321,"output":"Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:01.708 [info] block_i"},{"event":"cmd_output","timestamp":1607098321,"output":"d: bf2a0e7d-7de6-46fb-92d4-d508bb42123a, type: Blocks, state: running, event: exit_scheduling, recov"},{"event":"cmd_output","timestamp":1607098321,"output":"ery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:01.723 [inf"},{"event":"cmd_output","timestamp":1607098321,"output":"o] block_id: bf2a0e7d-7de6-46fb-92d4-d508bb42123a, type: Tasks, state: running, event: exit_schedul"},{"event":"cmd_output","timestamp":1607098321,"output":"ing, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:0"},{"event":"cmd_output","timestamp":1607098321,"output":"1.762 [info] block_id: bf2a0e7d-7de6-46fb-92d4-d508bb42123a, type: Tasks, state: done, event: exit_"},{"event":"cmd_output","timestamp":1607098321,"output":"scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098321,"output":"16:12:01.768 [info] block_id: bf2a0e7d-7de6-46fb-92d4-d508bb42123a, type: Blocks, state: done, even"},{"event":"cmd_output","timestamp":1607098321,"output":"t: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098321,"output":"m\u001b[22m\n16:12:01.777 [info] ppl_id: 0f9438bf-d695-45c4-9237-584a6971c5b9, block_id: bf2a0e7d-7de6-4"},{"event":"cmd_output","timestamp":1607098321,"output":"6fb-92d4-d508bb42123a, type: PplBlocks, block_index: 1, state: done, result: failed, event: exit_sch"},{"event":"cmd_output","timestamp":1607098321,"output":"eduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098321,"output":"12:01.797 [info] ppl_id: 0f9438bf-d695-45c4-9237-584a6971c5b9, type: Ppls, state: done, result: fai"},{"event":"cmd_output","timestamp":1607098321,"output":"led, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L9"},{"event":"cmd_output","timestamp":1607098321,"output":"0), \n\u001b[0m\u001b[32m\r * test skip-when condition is false for given tag - block executed (657.5ms)\u001b[0m\n"},{"event":"cmd_output","timestamp":1607098321,"output":" * test skip-when condition is true for given branch - block skipped\u001b[22m\n16:12:01.920 [info] Req"},{"event":"cmd_output","timestamp":1607098321,"output":"uest: 'run: %{\"branch_id\" => \"c775ffc8-f997-4a63-9e4c-12232c5df343\", \"branch_name\" => \"master\", \"com"},{"event":"cmd_output","timestamp":1607098321,"output":"mit_sha\" => \"75891a4469\", \"file_name\" => \"skip_block.yml\", \"hook_id\" => \"7179b8e8-364b-11eb-961d-525"},{"event":"cmd_output","timestamp":1607098321,"output":"4005464e2\", \"label\" => \"dev-test\", \"organization_id\" => \"f1f41043-0bbc-4f5f-a024-51d4b242c599\", \"own"},{"event":"cmd_output","timestamp":1607098321,"output":"er\" => \"rt\", \"project_id\" => \"a4d15d5b-4e68-47f3-a706-ac2e6bbb330d\", \"repo_name\" => \"22_skip_block\","},{"event":"cmd_output","timestamp":1607098321,"output":" \"request_token\" => \"7179ae5c-364b-11eb-ab79-5254005464e2\", \"requester_id\" => \"69a9516e-d06f-4fe0-83"},{"event":"cmd_output","timestamp":1607098321,"output":"ff-a1f0181a0776\", \"service\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"]"},{"event":"cmd_output","timestamp":1607098321,"output":", \"wf_id\" => \"b5e89cd3-9c1e-4ae8-913e-3e19f1813d8e\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098321,"output":"2:01.924 [info] ppl_id: 8fe875c9-1874-4dac-9041-b08753eb763b, type: PplRequests, event: persisted s"},{"event":"cmd_output","timestamp":1607098321,"output":"chedule request with request_token: 7179ae5c-364b-11eb-ab79-5254005464e2, origin: Elixir.Ppl.PplRequ"},{"event":"cmd_output","timestamp":1607098321,"output":"ests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:01.928 [info] ppl_id: 8fe"},{"event":"cmd_output","timestamp":1607098321,"output":"875c9-1874-4dac-9041-b08753eb763b, type: Ppls, state: initializing, event: initializing, recovery_co"},{"event":"cmd_output","timestamp":1607098321,"output":"unt: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:01.93"},{"event":"cmd_output","timestamp":1607098321,"output":"4 [info] Project a4d15d5b-4e68-47f3-a706-ac2e6bbb330d and branch masterlatest_wf details updated: \""},{"event":"cmd_output","timestamp":1607098321,"output":"wf_id: b5e89cd3-9c1e-4ae8-913e-3e19f1813d8e, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:12:01.936 [info] Persiste"},{"event":"cmd_output","timestamp":1607098321,"output":"d ppl_sub_init for pipeline with ppl_id: 8fe875c9-1874-4dac-9041-b08753eb763b: %Ppl.PplSubInits.Mode"},{"event":"cmd_output","timestamp":1607098321,"output":"l.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, "},{"event":"cmd_output","timestamp":1607098321,"output":"error_description: nil, id: 153, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12"},{"event":"cmd_output","timestamp":1607098321,"output":"-04 16:12:01.934584], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"8fe875c9-1874-4dac-9041-b08753eb763b\", recovery_count: 0, result: nil, resu"},{"event":"cmd_output","timestamp":1607098321,"output":"lt_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~"},{"event":"cmd_output","timestamp":1607098321,"output":"N[2020-12-04 16:12:01.934593]}\n\u001b[0m\u001b[22m\n16:12:01.942 [info] Periodic from module Elixir.Ppl.Ppls"},{"event":"cmd_output","timestamp":1607098321,"output":".STMHandler.InitializingState with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 "},{"event":"cmd_output","timestamp":1607098321,"output":"ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args"},{"event":"cmd_output","timestamp":1607098321,"output":": %{allowed_states: [\"initializing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098321,"output":"s.Model.Ppls, observed_state: \"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMH"},{"event":"cmd_output","timestamp":1607098321,"output":"andler.InitializingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_"},{"event":"cmd_output","timestamp":1607098321,"output":"at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}"},{"event":"cmd_output","timestamp":1607098321,"output":"\n\u001b[0m\u001b[22m\n16:12:01.942 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingState with "},{"event":"cmd_output","timestamp":1607098321,"output":"name Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\""},{"event":"cmd_output","timestamp":1607098321,"output":", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"pending\", \"queuing\", \"r"},{"event":"cmd_output","timestamp":1607098321,"output":"unning\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\""},{"event":"cmd_output","timestamp":1607098321,"output":", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRep"},{"event":"cmd_output","timestamp":1607098321,"output":"o, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], sch"},{"event":"cmd_output","timestamp":1607098321,"output":"ema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:12:01.942 [info] Peri"},{"event":"cmd_output","timestamp":1607098321,"output":"odic from module Elixir.Ppl.Ppls.STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandler.Queuin"},{"event":"cmd_output","timestamp":1607098321,"output":"gState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]"},{"event":"cmd_output","timestamp":1607098321,"output":"}, recurring args: %{allowed_states: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, initial_q"},{"event":"cmd_output","timestamp":1607098321,"output":"uery: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.P"},{"event":"cmd_output","timestamp":1607098321,"output":"pls.STMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updat"},{"event":"cmd_output","timestamp":1607098321,"output":"ed_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :sk"},{"event":"cmd_output","timestamp":1607098321,"output":"ip}\n\u001b[0m\u001b[22m\n16:12:01.943 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.RunningState wi"},{"event":"cmd_output","timestamp":1607098321,"output":"th name Elixir.Ppl.Ppls.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_"},{"event":"cmd_output","timestamp":1607098321,"output":"up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\""},{"event":"cmd_output","timestamp":1607098321,"output":", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"running\", publ"},{"event":"cmd_output","timestamp":1607098321,"output":"isher_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, re"},{"event":"cmd_output","timestamp":1607098321,"output":"turning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: "},{"event":"cmd_output","timestamp":1607098321,"output":"Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:12:01.943 [info] Periodic "},{"event":"cmd_output","timestamp":1607098321,"output":"from module Elixir.Ppl.Ppls.STMHandler.StoppingState with name Elixir.Ppl.Ppls.STMHandler.StoppingSt"},{"event":"cmd_output","timestamp":1607098321,"output":"ate :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]},"},{"event":"cmd_output","timestamp":1607098321,"output":" recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Pp"},{"event":"cmd_output","timestamp":1607098321,"output":"ls.Model.Ppls, observed_state: \"stopping\", publisher_cb: #Function<0.71803493/1 in Ppl.Ppls.STMHandl"},{"event":"cmd_output","timestamp":1607098321,"output":"er.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :sta"},{"event":"cmd_output","timestamp":1607098321,"output":"te, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098321,"output":"22m\n16:12:01.943 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedState with n"},{"event":"cmd_output","timestamp":1607098321,"output":"ame Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.beholder-wa"},{"event":"cmd_output","timestamp":1607098321,"output":"ke_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args: %{allowed_states: [\"fetching\","},{"event":"cmd_output","timestamp":1607098321,"output":" \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"cr"},{"event":"cmd_output","timestamp":1607098321,"output":"eated\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :"},{"event":"cmd_output","timestamp":1607098321,"output":"state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_superviso"},{"event":"cmd_output","timestamp":1607098321,"output":"r: :skip}\n\u001b[0m\u001b[22m\n16:12:01.943 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.Fe"},{"event":"cmd_output","timestamp":1607098321,"output":"tchingState with name Elixir.Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 ms, metric_name"},{"event":"cmd_output","timestamp":1607098321,"output":": {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %{allowed_"},{"event":"cmd_output","timestamp":1607098321,"output":"states: [\"regular_init\", \"compilation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInit"},{"event":"cmd_output","timestamp":1607098321,"output":"s.Model.PplSubInits, observed_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning:"},{"event":"cmd_output","timestamp":1607098321,"output":" [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplS"},{"event":"cmd_output","timestamp":1607098321,"output":"ubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:01.943 [info] Periodic from mo"},{"event":"cmd_output","timestamp":1607098321,"output":"dule Elixir.Ppl.PplSubInits.STMHandler.CompilationState with name Elixir.Ppl.PplSubInits.STMHandler."},{"event":"cmd_output","timestamp":1607098321,"output":"CompilationState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandl"},{"event":"cmd_output","timestamp":1607098321,"output":"er-CompilationState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"stopping\""},{"event":"cmd_output","timestamp":1607098321,"output":", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \""},{"event":"cmd_output","timestamp":1607098321,"output":"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated"},{"event":"cmd_output","timestamp":1607098321,"output":"_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_sup"},{"event":"cmd_output","timestamp":1607098321,"output":"ervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:01.943 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHand"},{"event":"cmd_output","timestamp":1607098321,"output":"ler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period: 100 ms,"},{"event":"cmd_output","timestamp":1607098321,"output":" metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurring a"},{"event":"cmd_output","timestamp":1607098321,"output":"rgs: %{allowed_states: [\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubIni"},{"event":"cmd_output","timestamp":1607098321,"output":"ts, observed_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :termi"},{"event":"cmd_output","timestamp":1607098321,"output":"nate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model"},{"event":"cmd_output","timestamp":1607098321,"output":".PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:01.943 [info] Periodic from module Elixir.P"},{"event":"cmd_output","timestamp":1607098321,"output":"pl.PplBlocks.STMHandler.InitializingState with name Elixir.Ppl.PplBlocks.STMHandler.InitializingStat"},{"event":"cmd_output","timestamp":1607098321,"output":"e :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-InitializingSt"},{"event":"cmd_output","timestamp":1607098321,"output":"ate\"]}, recurring args: %{allowed_states: [\"initializing\", \"waiting\", \"done\"], cooling_time_sec: 0, "},{"event":"cmd_output","timestamp":1607098321,"output":"initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"initializing\", publisher_cb: :skip, r"},{"event":"cmd_output","timestamp":1607098321,"output":"epo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_coun"},{"event":"cmd_output","timestamp":1607098321,"output":"t, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098321,"output":"\n16:12:01.944 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.WaitingState with name E"},{"event":"cmd_output","timestamp":1607098321,"output":"lixir.Ppl.PplBlocks.STMHandler.WaitingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\""},{"event":"cmd_output","timestamp":1607098321,"output":", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurring args: %{allowed_states: [\"waiting\", \"running"},{"event":"cmd_output","timestamp":1607098321,"output":"\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"wait"},{"event":"cmd_output","timestamp":1607098321,"output":"ing\", publisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>, repo: Pp"},{"event":"cmd_output","timestamp":1607098321,"output":"l.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl"},{"event":"cmd_output","timestamp":1607098321,"output":"_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12"},{"event":"cmd_output","timestamp":1607098321,"output":":01.944 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.RunningState with name Elixir.P"},{"event":"cmd_output","timestamp":1607098321,"output":"pl.PplBlocks.STMHandler.RunningState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl"},{"event":"cmd_output","timestamp":1607098321,"output":"-PplBlocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"do"},{"event":"cmd_output","timestamp":1607098321,"output":"ne\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"running\","},{"event":"cmd_output","timestamp":1607098321,"output":" publisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0>, repo: Ppl.Ec"},{"event":"cmd_output","timestamp":1607098321,"output":"toRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id,"},{"event":"cmd_output","timestamp":1607098321,"output":" :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098321,"output":"\n16:12:01.944 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.StoppingState with name "},{"event":"cmd_output","timestamp":1607098321,"output":"Elixir.Ppl.PplBlocks.STMHandler.StoppingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_u"},{"event":"cmd_output","timestamp":1607098321,"output":"p\", [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"don"},{"event":"cmd_output","timestamp":1607098321,"output":"e\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"stopping\","},{"event":"cmd_output","timestamp":1607098321,"output":" publisher_cb: #Function<0.104215991/1 in Ppl.PplBlocks.STMHandler.StoppingState.args/0>, repo: Ppl."},{"event":"cmd_output","timestamp":1607098321,"output":"EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_i"},{"event":"cmd_output","timestamp":1607098321,"output":"d, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098321,"output":"2m\n16:12:01.944 [info] Periodic from module Elixir.Block.Blocks.STMHandler.InitializingState with "},{"event":"cmd_output","timestamp":1607098321,"output":"name Elixir.Block.Blocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder"},{"event":"cmd_output","timestamp":1607098321,"output":"-wake_up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"runni"},{"event":"cmd_output","timestamp":1607098321,"output":"ng\", \"done\"], cooling_time_sec: 0, initial_query: Block.Blocks.Model.Blocks, observed_state: \"initia"},{"event":"cmd_output","timestamp":1607098321,"output":"lizing\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at"},{"event":"cmd_output","timestamp":1607098321,"output":", :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b"},{"event":"cmd_output","timestamp":1607098321,"output":"[0m\u001b[22m\n16:12:01.944 [info] Periodic from module Elixir.Block.Blocks.STMHandler.RunningState with"},{"event":"cmd_output","timestamp":1607098321,"output":" name Elixir.Block.Blocks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wak"},{"event":"cmd_output","timestamp":1607098321,"output":"e_up\", [\"Block-Blocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"sto"},{"event":"cmd_output","timestamp":1607098321,"output":"pping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"ru"},{"event":"cmd_output","timestamp":1607098321,"output":"nning\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at,"},{"event":"cmd_output","timestamp":1607098321,"output":" :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b["},{"event":"cmd_output","timestamp":1607098321,"output":"0m\u001b[22m\n16:12:01.944 [info] Periodic from module Elixir.Block.Blocks.STMHandler.StoppingState with"},{"event":"cmd_output","timestamp":1607098321,"output":" name Elixir.Block.Blocks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wa"},{"event":"cmd_output","timestamp":1607098321,"output":"ke_up\", [\"Block-Blocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \""},{"event":"cmd_output","timestamp":1607098321,"output":"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"stopping\", "},{"event":"cmd_output","timestamp":1607098321,"output":"publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state,"},{"event":"cmd_output","timestamp":1607098321,"output":" :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098321,"output":"\n16:12:01.945 [info] Periodic from module Elixir.Block.Tasks.STMHandler.PendingState with name Elix"},{"event":"cmd_output","timestamp":1607098321,"output":"ir.Block.Tasks.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Bl"},{"event":"cmd_output","timestamp":1607098321,"output":"ock-Tasks-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling"},{"event":"cmd_output","timestamp":1607098321,"output":"_time_sec: 0, initial_query: Block.Tasks.Model.Tasks, observed_state: \"pending\", publisher_cb: :skip"},{"event":"cmd_output","timestamp":1607098321,"output":", repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :"},{"event":"cmd_output","timestamp":1607098321,"output":"block_id, :build_request_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098321,"output":"6:12:01.945 [info] Periodic from module Elixir.Block.Tasks.STMHandler.RunningState with name Elixir"},{"event":"cmd_output","timestamp":1607098321,"output":".Block.Tasks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Bloc"},{"event":"cmd_output","timestamp":1607098321,"output":"k-Tasks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\""},{"event":"cmd_output","timestamp":1607098321,"output":"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"running\", publishe"},{"event":"cmd_output","timestamp":1607098321,"output":"r_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recove"},{"event":"cmd_output","timestamp":1607098321,"output":"ry_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:01."},{"event":"cmd_output","timestamp":1607098321,"output":"945 [info] Periodic from module Elixir.Block.Tasks.STMHandler.StoppingState with name Elixir.Block."},{"event":"cmd_output","timestamp":1607098321,"output":"Tasks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Task"},{"event":"cmd_output","timestamp":1607098321,"output":"s-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_"},{"event":"cmd_output","timestamp":1607098321,"output":"sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"stopping\", publisher_cb: :skip, re"},{"event":"cmd_output","timestamp":1607098321,"output":"po: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :bloc"},{"event":"cmd_output","timestamp":1607098322,"output":"k_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:02.071 [info] ppl"},{"event":"cmd_output","timestamp":1607098322,"output":"_id: 8fe875c9-1874-4dac-9041-b08753eb763b, type: PplRequests, event: persisted source_args for pipel"},{"event":"cmd_output","timestamp":1607098322,"output":"ine: 8fe875c9-1874-4dac-9041-b08753eb763b, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.i"},{"event":"cmd_output","timestamp":1607098322,"output":"nsert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:02.079 [info] ppl_id: 8fe875c9-1874-4dac-9041-b08753eb763b,"},{"event":"cmd_output","timestamp":1607098322,"output":" type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loope"},{"event":"cmd_output","timestamp":1607098322,"output":"r.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:02.097 [info] ppl_id: 8fe875c9-1874-4dac-904"},{"event":"cmd_output","timestamp":1607098322,"output":"1-b08753eb763b, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098322,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:02.121 [info] ppl_id: 8fe"},{"event":"cmd_output","timestamp":1607098322,"output":"875c9-1874-4dac-9041-b08753eb763b, type: PplRequests, event: persisted definition for request with r"},{"event":"cmd_output","timestamp":1607098322,"output":"equest_token: 7179ae5c-364b-11eb-ab79-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequests"},{"event":"cmd_output","timestamp":1607098322,"output":"Queries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:02.125 [info] Queue persisted: {:ok, %Ppl.Queu"},{"event":"cmd_output","timestamp":1607098322,"output":"es.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:12"},{"event":"cmd_output","timestamp":1607098322,"output":":02.124268], name: \"dev-test-.semaphore/skip_block.yml\", organization_id: \"f1f41043-0bbc-4f5f-a024-5"},{"event":"cmd_output","timestamp":1607098322,"output":"1d4b242c599\", project_id: \"a4d15d5b-4e68-47f3-a706-ac2e6bbb330d\", queue_id: \"b8bb818c-e22b-4d00-8ba0"},{"event":"cmd_output","timestamp":1607098322,"output":"-954c6e2ba566\", scope: \"project\", updated_at: ~N[2020-12-04 16:12:02.124278], user_generated: false}"},{"event":"cmd_output","timestamp":1607098322,"output":"}\n\u001b[0m\u001b[22m\n16:12:02.132 [info] ppl_id: not_available, event: created, origin: Elixir.Ppl.PplSubI"},{"event":"cmd_output","timestamp":1607098322,"output":"nits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:02.132 [info] event: created, "},{"event":"cmd_output","timestamp":1607098322,"output":"origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:02.13"},{"event":"cmd_output","timestamp":1607098322,"output":"2 [info] ppl_id: 8fe875c9-1874-4dac-9041-b08753eb763b, type: PplBlocks, block_index: 0, state: init"},{"event":"cmd_output","timestamp":1607098322,"output":"ializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitSt"},{"event":"cmd_output","timestamp":1607098322,"output":"ate.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:02.132 [info] ppl_id: 8fe875c9-1874-4dac-9041-b08753eb763b,"},{"event":"cmd_output","timestamp":1607098322,"output":" type: PplBlocks, block_index: 1, state: initializing, event: created, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098322,"output":"ixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:02.134 [info] "},{"event":"cmd_output","timestamp":1607098322,"output":"ppl_id: 8fe875c9-1874-4dac-9041-b08753eb763b, type: PplSubInits, state: done, result: passed, event:"},{"event":"cmd_output","timestamp":1607098322,"output":" exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098322,"output":"[22m\n16:12:02.144 [info] ppl_id: 8fe875c9-1874-4dac-9041-b08753eb763b, type: Ppls, state: pending,"},{"event":"cmd_output","timestamp":1607098322,"output":" event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), "},{"event":"cmd_output","timestamp":1607098322,"output":"\n\u001b[0m\u001b[22m\n16:12:02.145 [info] ppl_id: 8fe875c9-1874-4dac-9041-b08753eb763b, type: PplBlocks, blo"},{"event":"cmd_output","timestamp":1607098322,"output":"ck_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Im"},{"event":"cmd_output","timestamp":1607098322,"output":"pl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:02.156 [info] ppl_id: 8fe875c9-1874-4dac-9041-b08753"},{"event":"cmd_output","timestamp":1607098322,"output":"eb763b, type: PplBlocks, block_index: 1, state: waiting, event: exit_scheduling, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098322,"output":"origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:02.158 [info] ppl_id: 8f"},{"event":"cmd_output","timestamp":1607098322,"output":"e875c9-1874-4dac-9041-b08753eb763b, type: Ppls, state: queuing, event: exit_scheduling, recovery_cou"},{"event":"cmd_output","timestamp":1607098322,"output":"nt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:02.174 [info] ppl"},{"event":"cmd_output","timestamp":1607098322,"output":"_id: 8fe875c9-1874-4dac-9041-b08753eb763b, type: Ppls, state: running, event: exit_scheduling, recov"},{"event":"cmd_output","timestamp":1607098322,"output":"ery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:02.183 [inf"},{"event":"cmd_output","timestamp":1607098322,"output":"o] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"8fe875c9-1874-4dac-9041-b08753e"},{"event":"cmd_output","timestamp":1607098322,"output":"b763b\"\n\u001b[0m\u001b[22m\n16:12:02.189 [info] block_id: 946109e3-66d6-4703-a713-0860d1c6c3b9, type: BlockR"},{"event":"cmd_output","timestamp":1607098322,"output":"equests, event: persisted block run request from ppl 8fe875c9-1874-4dac-9041-b08753eb763b for block "},{"event":"cmd_output","timestamp":1607098322,"output":"0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098322,"output":"m\n16:12:02.200 [info] block_id: 946109e3-66d6-4703-a713-0860d1c6c3b9, type: Blocks, state: initial"},{"event":"cmd_output","timestamp":1607098322,"output":"izing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.inser"},{"event":"cmd_output","timestamp":1607098322,"output":"t/1(L43), \n\u001b[0m\u001b[22m\n16:12:02.203 [info] Block 0 of pipeline with id: 8fe875c9-1874-4dac-9041-b08"},{"event":"cmd_output","timestamp":1607098322,"output":"753eb763b scheduled in block service with id: : \"946109e3-66d6-4703-a713-0860d1c6c3b9\"\n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098322,"output":"6:12:02.209 [info] block_id: 946109e3-66d6-4703-a713-0860d1c6c3b9, type: BlockRequests, event: pers"},{"event":"cmd_output","timestamp":1607098322,"output":"isted build and sub_ppl details for block_request: 946109e3-66d6-4703-a713-0860d1c6c3b9, origin: Eli"},{"event":"cmd_output","timestamp":1607098322,"output":"xir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:02.210 [i"},{"event":"cmd_output","timestamp":1607098322,"output":"nfo] ppl_id: 8fe875c9-1874-4dac-9041-b08753eb763b, type: PplBlocks, block_index: 0, state: running,"},{"event":"cmd_output","timestamp":1607098322,"output":" event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), "},{"event":"cmd_output","timestamp":1607098322,"output":"\n\u001b[0m\u001b[22m\n16:12:02.215 [info] block_id: 946109e3-66d6-4703-a713-0860d1c6c3b9, type: Tasks, state"},{"event":"cmd_output","timestamp":1607098322,"output":": pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingSta"},{"event":"cmd_output","timestamp":1607098322,"output":"te.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:02.219 [info] block_id: 946109e3-66d6-4703-a713-0860d1c6c3b9"},{"event":"cmd_output","timestamp":1607098322,"output":", type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM"},{"event":"cmd_output","timestamp":1607098322,"output":".Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:02.237 [info] block_id: 946109e3-66d6-4703-a713-0"},{"event":"cmd_output","timestamp":1607098322,"output":"860d1c6c3b9, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098322,"output":"Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:02.283 [info] block_id: 946109e3-66d6-4"},{"event":"cmd_output","timestamp":1607098322,"output":"703-a713-0860d1c6c3b9, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098322,"output":"Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:02.294 [info] block_id: 946109e3"},{"event":"cmd_output","timestamp":1607098322,"output":"-66d6-4703-a713-0860d1c6c3b9, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098322,"output":"origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:02.310 [info] ppl_id: 8f"},{"event":"cmd_output","timestamp":1607098322,"output":"e875c9-1874-4dac-9041-b08753eb763b, block_id: 946109e3-66d6-4703-a713-0860d1c6c3b9, type: PplBlocks,"},{"event":"cmd_output","timestamp":1607098322,"output":" block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098322,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:02.319 [info] PplBlocks WaitingStat"},{"event":"cmd_output","timestamp":1607098322,"output":"e STM is scheduling block 1 from pipeline: \"8fe875c9-1874-4dac-9041-b08753eb763b\"\n\u001b[0m\u001b[22m\n16:12:"},{"event":"cmd_output","timestamp":1607098322,"output":"02.326 [info] ppl_id: 8fe875c9-1874-4dac-9041-b08753eb763b, type: PplBlocks, block_index: 1, state:"},{"event":"cmd_output","timestamp":1607098322,"output":" done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098322,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:02.336 [info] ppl_id: 8fe875c9-1874-4dac-9041-b08753eb763b"},{"event":"cmd_output","timestamp":1607098322,"output":", type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098322,"output":".Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test skip-when condition is true for given"},{"event":"cmd_output","timestamp":1607098322,"output":" branch - block skipped (534.2ms)\u001b[0m\n * test skip-when condition is false for given pr - block ex"},{"event":"cmd_output","timestamp":1607098322,"output":"ecuted\u001b[22m\n16:12:02.451 [info] Request: 'run: %{\"branch_id\" => \"ce0e8668-e8c0-4830-b7f7-c9165eeaf"},{"event":"cmd_output","timestamp":1607098322,"output":"afc\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"skip_block.yml\", \"hoo"},{"event":"cmd_output","timestamp":1607098322,"output":"k_id\" => \"pr\", \"label\" => \"456\", \"organization_id\" => \"cea8f8f5-c0c3-443a-8672-75c573f999ed\", \"owner"},{"event":"cmd_output","timestamp":1607098322,"output":"\" => \"rt\", \"project_id\" => \"5cce575a-c41c-4368-8884-8df346544b99\", \"repo_name\" => \"22_skip_block\", \""},{"event":"cmd_output","timestamp":1607098322,"output":"request_token\" => \"71ca9d76-364b-11eb-bf9e-5254005464e2\", \"requester_id\" => \"bc5f1800-586d-439b-a4a7"},{"event":"cmd_output","timestamp":1607098322,"output":"-8ed7fe8acb4a\", \"service\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], "},{"event":"cmd_output","timestamp":1607098322,"output":"\"wf_id\" => \"8d050c01-3d4f-420a-8a06-d917b96ed4db\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:12:"},{"event":"cmd_output","timestamp":1607098322,"output":"02.460 [info] ppl_id: 20298134-64c9-460b-9168-e1481af7bd1f, type: PplRequests, event: persisted sch"},{"event":"cmd_output","timestamp":1607098322,"output":"edule request with request_token: 71ca9d76-364b-11eb-bf9e-5254005464e2, origin: Elixir.Ppl.PplReques"},{"event":"cmd_output","timestamp":1607098322,"output":"ts.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:02.464 [info] ppl_id: 20298"},{"event":"cmd_output","timestamp":1607098322,"output":"134-64c9-460b-9168-e1481af7bd1f, type: Ppls, state: initializing, event: initializing, recovery_coun"},{"event":"cmd_output","timestamp":1607098322,"output":"t: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:02.476 "},{"event":"cmd_output","timestamp":1607098322,"output":"[info] Project 5cce575a-c41c-4368-8884-8df346544b99 and branch masterlatest_wf details updated: \"wf"},{"event":"cmd_output","timestamp":1607098322,"output":"_id: 8d050c01-3d4f-420a-8a06-d917b96ed4db, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:12:02.478 [info] Persisted "},{"event":"cmd_output","timestamp":1607098322,"output":"ppl_sub_init for pipeline with ppl_id: 20298134-64c9-460b-9168-e1481af7bd1f: %Ppl.PplSubInits.Model."},{"event":"cmd_output","timestamp":1607098322,"output":"PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, er"},{"event":"cmd_output","timestamp":1607098322,"output":"ror_description: nil, id: 154, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-0"},{"event":"cmd_output","timestamp":1607098322,"output":"4 16:12:02.476460], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"20298134-64c9-460b-9168-e1481af7bd1f\", recovery_count: 0, result: nil, result"},{"event":"cmd_output","timestamp":1607098322,"output":"_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N["},{"event":"cmd_output","timestamp":1607098322,"output":"2020-12-04 16:12:02.476472]}\n\u001b[0m\u001b[22m\n16:12:02.486 [info] Periodic from module Elixir.Ppl.Ppls.S"},{"event":"cmd_output","timestamp":1607098322,"output":"TMHandler.InitializingState with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms"},{"event":"cmd_output","timestamp":1607098322,"output":", metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: "},{"event":"cmd_output","timestamp":1607098322,"output":"%{allowed_states: [\"initializing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls."},{"event":"cmd_output","timestamp":1607098322,"output":"Model.Ppls, observed_state: \"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHan"},{"event":"cmd_output","timestamp":1607098322,"output":"dler.InitializingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at"},{"event":"cmd_output","timestamp":1607098322,"output":", :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n"},{"event":"cmd_output","timestamp":1607098322,"output":"\u001b[0m\u001b[22m\n16:12:02.487 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingState with na"},{"event":"cmd_output","timestamp":1607098322,"output":"me Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", "},{"event":"cmd_output","timestamp":1607098322,"output":"[\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"pending\", \"queuing\", \"run"},{"event":"cmd_output","timestamp":1607098322,"output":"ning\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", "},{"event":"cmd_output","timestamp":1607098322,"output":"publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo,"},{"event":"cmd_output","timestamp":1607098322,"output":" returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schem"},{"event":"cmd_output","timestamp":1607098322,"output":"a: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:12:02.488 [info] Period"},{"event":"cmd_output","timestamp":1607098322,"output":"ic from module Elixir.Ppl.Ppls.STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandler.QueuingS"},{"event":"cmd_output","timestamp":1607098322,"output":"tate :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]},"},{"event":"cmd_output","timestamp":1607098322,"output":" recurring args: %{allowed_states: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, initial_que"},{"event":"cmd_output","timestamp":1607098322,"output":"ry: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098322,"output":"s.STMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated"},{"event":"cmd_output","timestamp":1607098322,"output":"_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip"},{"event":"cmd_output","timestamp":1607098322,"output":"}\n\u001b[0m\u001b[22m\n16:12:02.488 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.RunningState with"},{"event":"cmd_output","timestamp":1607098322,"output":" name Elixir.Ppl.Ppls.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up"},{"event":"cmd_output","timestamp":1607098322,"output":"\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", "},{"event":"cmd_output","timestamp":1607098322,"output":"\"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"running\", publis"},{"event":"cmd_output","timestamp":1607098322,"output":"her_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, retu"},{"event":"cmd_output","timestamp":1607098322,"output":"rning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Pp"},{"event":"cmd_output","timestamp":1607098322,"output":"l.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:12:02.489 [info] Periodic fr"},{"event":"cmd_output","timestamp":1607098322,"output":"om module Elixir.Ppl.Ppls.STMHandler.StoppingState with name Elixir.Ppl.Ppls.STMHandler.StoppingStat"},{"event":"cmd_output","timestamp":1607098322,"output":"e :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, r"},{"event":"cmd_output","timestamp":1607098322,"output":"ecurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls"},{"event":"cmd_output","timestamp":1607098322,"output":".Model.Ppls, observed_state: \"stopping\", publisher_cb: #Function<0.71803493/1 in Ppl.Ppls.STMHandler"},{"event":"cmd_output","timestamp":1607098322,"output":".StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state"},{"event":"cmd_output","timestamp":1607098322,"output":", :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098322,"output":"m\n16:12:02.490 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedState with nam"},{"event":"cmd_output","timestamp":1607098322,"output":"e Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake"},{"event":"cmd_output","timestamp":1607098322,"output":"_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args: %{allowed_states: [\"fetching\", \""},{"event":"cmd_output","timestamp":1607098322,"output":"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"crea"},{"event":"cmd_output","timestamp":1607098322,"output":"ted\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :st"},{"event":"cmd_output","timestamp":1607098322,"output":"ate, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor:"},{"event":"cmd_output","timestamp":1607098322,"output":" :skip}\n\u001b[0m\u001b[22m\n16:12:02.491 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.Fetc"},{"event":"cmd_output","timestamp":1607098322,"output":"hingState with name Elixir.Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 ms, metric_name: "},{"event":"cmd_output","timestamp":1607098322,"output":"{\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %{allowed_st"},{"event":"cmd_output","timestamp":1607098322,"output":"ates: [\"regular_init\", \"compilation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits."},{"event":"cmd_output","timestamp":1607098322,"output":"Model.PplSubInits, observed_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: ["},{"event":"cmd_output","timestamp":1607098322,"output":":id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSub"},{"event":"cmd_output","timestamp":1607098322,"output":"Inits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:02.491 [info] Periodic from modu"},{"event":"cmd_output","timestamp":1607098322,"output":"le Elixir.Ppl.PplSubInits.STMHandler.CompilationState with name Elixir.Ppl.PplSubInits.STMHandler.Co"},{"event":"cmd_output","timestamp":1607098322,"output":"mpilationState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler"},{"event":"cmd_output","timestamp":1607098322,"output":"-CompilationState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"stopping\", "},{"event":"cmd_output","timestamp":1607098322,"output":"\"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"co"},{"event":"cmd_output","timestamp":1607098322,"output":"mpilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_a"},{"event":"cmd_output","timestamp":1607098322,"output":"t, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_super"},{"event":"cmd_output","timestamp":1607098322,"output":"visor: :skip}\n\u001b[0m\u001b[22m\n16:12:02.492 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandle"},{"event":"cmd_output","timestamp":1607098322,"output":"r.RegularInitState with name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period: 100 ms, m"},{"event":"cmd_output","timestamp":1607098322,"output":"etric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurring arg"},{"event":"cmd_output","timestamp":1607098322,"output":"s: %{allowed_states: [\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits"},{"event":"cmd_output","timestamp":1607098322,"output":", observed_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :termina"},{"event":"cmd_output","timestamp":1607098322,"output":"te_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.P"},{"event":"cmd_output","timestamp":1607098322,"output":"plSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:02.493 [info] Periodic from module Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098322,"output":".PplBlocks.STMHandler.InitializingState with name Elixir.Ppl.PplBlocks.STMHandler.InitializingState "},{"event":"cmd_output","timestamp":1607098322,"output":":: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-InitializingStat"},{"event":"cmd_output","timestamp":1607098322,"output":"e\"]}, recurring args: %{allowed_states: [\"initializing\", \"waiting\", \"done\"], cooling_time_sec: 0, in"},{"event":"cmd_output","timestamp":1607098322,"output":"itial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"initializing\", publisher_cb: :skip, rep"},{"event":"cmd_output","timestamp":1607098322,"output":"o: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count,"},{"event":"cmd_output","timestamp":1607098322,"output":" :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098322,"output":"16:12:02.494 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.WaitingState with name Eli"},{"event":"cmd_output","timestamp":1607098322,"output":"xir.Ppl.PplBlocks.STMHandler.WaitingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", "},{"event":"cmd_output","timestamp":1607098322,"output":"[\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurring args: %{allowed_states: [\"waiting\", \"running\","},{"event":"cmd_output","timestamp":1607098322,"output":" \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"waitin"},{"event":"cmd_output","timestamp":1607098322,"output":"g\", publisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>, repo: Ppl."},{"event":"cmd_output","timestamp":1607098322,"output":"EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_i"},{"event":"cmd_output","timestamp":1607098322,"output":"d, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:0"},{"event":"cmd_output","timestamp":1607098322,"output":"2.495 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.RunningState with name Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098322,"output":".PplBlocks.STMHandler.RunningState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-P"},{"event":"cmd_output","timestamp":1607098322,"output":"plBlocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done"},{"event":"cmd_output","timestamp":1607098322,"output":"\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"running\", p"},{"event":"cmd_output","timestamp":1607098322,"output":"ublisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0>, repo: Ppl.Ecto"},{"event":"cmd_output","timestamp":1607098322,"output":"Repo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :"},{"event":"cmd_output","timestamp":1607098322,"output":"block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098322,"output":"16:12:02.496 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.StoppingState with name El"},{"event":"cmd_output","timestamp":1607098322,"output":"ixir.Ppl.PplBlocks.STMHandler.StoppingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\""},{"event":"cmd_output","timestamp":1607098322,"output":", [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\""},{"event":"cmd_output","timestamp":1607098322,"output":"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"stopping\", p"},{"event":"cmd_output","timestamp":1607098322,"output":"ublisher_cb: #Function<0.104215991/1 in Ppl.PplBlocks.STMHandler.StoppingState.args/0>, repo: Ppl.Ec"},{"event":"cmd_output","timestamp":1607098322,"output":"toRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id,"},{"event":"cmd_output","timestamp":1607098322,"output":" :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098322,"output":"\n16:12:02.497 [info] Periodic from module Elixir.Block.Blocks.STMHandler.InitializingState with na"},{"event":"cmd_output","timestamp":1607098322,"output":"me Elixir.Block.Blocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-w"},{"event":"cmd_output","timestamp":1607098322,"output":"ake_up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"running"},{"event":"cmd_output","timestamp":1607098322,"output":"\", \"done\"], cooling_time_sec: 0, initial_query: Block.Blocks.Model.Blocks, observed_state: \"initiali"},{"event":"cmd_output","timestamp":1607098322,"output":"zing\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, "},{"event":"cmd_output","timestamp":1607098322,"output":":state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0"},{"event":"cmd_output","timestamp":1607098322,"output":"m\u001b[22m\n16:12:02.497 [info] Periodic from module Elixir.Block.Blocks.STMHandler.RunningState with n"},{"event":"cmd_output","timestamp":1607098322,"output":"ame Elixir.Block.Blocks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_"},{"event":"cmd_output","timestamp":1607098322,"output":"up\", [\"Block-Blocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopp"},{"event":"cmd_output","timestamp":1607098322,"output":"ing\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"runn"},{"event":"cmd_output","timestamp":1607098322,"output":"ing\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :"},{"event":"cmd_output","timestamp":1607098322,"output":"state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m"},{"event":"cmd_output","timestamp":1607098322,"output":"\u001b[22m\n16:12:02.498 [info] Periodic from module Elixir.Block.Blocks.STMHandler.StoppingState with n"},{"event":"cmd_output","timestamp":1607098322,"output":"ame Elixir.Block.Blocks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake"},{"event":"cmd_output","timestamp":1607098322,"output":"_up\", [\"Block-Blocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"do"},{"event":"cmd_output","timestamp":1607098322,"output":"ne\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"stopping\", pu"},{"event":"cmd_output","timestamp":1607098322,"output":"blisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :"},{"event":"cmd_output","timestamp":1607098322,"output":"recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098322,"output":"6:12:02.499 [info] Periodic from module Elixir.Block.Tasks.STMHandler.PendingState with name Elixir"},{"event":"cmd_output","timestamp":1607098322,"output":".Block.Tasks.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Bloc"},{"event":"cmd_output","timestamp":1607098322,"output":"k-Tasks-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_t"},{"event":"cmd_output","timestamp":1607098322,"output":"ime_sec: 0, initial_query: Block.Tasks.Model.Tasks, observed_state: \"pending\", publisher_cb: :skip, "},{"event":"cmd_output","timestamp":1607098322,"output":"repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :bl"},{"event":"cmd_output","timestamp":1607098322,"output":"ock_id, :build_request_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098322,"output":"12:02.500 [info] Periodic from module Elixir.Block.Tasks.STMHandler.RunningState with name Elixir.B"},{"event":"cmd_output","timestamp":1607098322,"output":"lock.Tasks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-"},{"event":"cmd_output","timestamp":1607098322,"output":"Tasks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"],"},{"event":"cmd_output","timestamp":1607098322,"output":" cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"running\", publisher_"},{"event":"cmd_output","timestamp":1607098322,"output":"cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery"},{"event":"cmd_output","timestamp":1607098322,"output":"_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:02.50"},{"event":"cmd_output","timestamp":1607098322,"output":"1 [info] Periodic from module Elixir.Block.Tasks.STMHandler.StoppingState with name Elixir.Block.Ta"},{"event":"cmd_output","timestamp":1607098322,"output":"sks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-"},{"event":"cmd_output","timestamp":1607098322,"output":"STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_se"},{"event":"cmd_output","timestamp":1607098322,"output":"c: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"stopping\", publisher_cb: :skip, repo"},{"event":"cmd_output","timestamp":1607098322,"output":": Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_"},{"event":"cmd_output","timestamp":1607098322,"output":"id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:02.620 [info] ppl_i"},{"event":"cmd_output","timestamp":1607098322,"output":"d: 20298134-64c9-460b-9168-e1481af7bd1f, type: PplRequests, event: persisted source_args for pipelin"},{"event":"cmd_output","timestamp":1607098322,"output":"e: 20298134-64c9-460b-9168-e1481af7bd1f, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.ins"},{"event":"cmd_output","timestamp":1607098322,"output":"ert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:02.624 [info] ppl_id: 20298134-64c9-460b-9168-e1481af7bd1f, t"},{"event":"cmd_output","timestamp":1607098322,"output":"ype: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper."},{"event":"cmd_output","timestamp":1607098322,"output":"STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:02.662 [info] ppl_id: 20298134-64c9-460b-9168-"},{"event":"cmd_output","timestamp":1607098322,"output":"e1481af7bd1f, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098322,"output":"gin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:02.698 [info] ppl_id: 20298"},{"event":"cmd_output","timestamp":1607098322,"output":"134-64c9-460b-9168-e1481af7bd1f, type: PplRequests, event: persisted definition for request with req"},{"event":"cmd_output","timestamp":1607098322,"output":"uest_token: 71ca9d76-364b-11eb-bf9e-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQu"},{"event":"cmd_output","timestamp":1607098322,"output":"eries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:02.709 [info] Queue persisted: {:ok, %Ppl.Queues"},{"event":"cmd_output","timestamp":1607098322,"output":".Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:12:0"},{"event":"cmd_output","timestamp":1607098322,"output":"2.706744], name: \"456-.semaphore/skip_block.yml\", organization_id: \"cea8f8f5-c0c3-443a-8672-75c573f9"},{"event":"cmd_output","timestamp":1607098322,"output":"99ed\", project_id: \"5cce575a-c41c-4368-8884-8df346544b99\", queue_id: \"a5852eb4-3042-4a65-9206-9a8cff"},{"event":"cmd_output","timestamp":1607098322,"output":"5fbd39\", scope: \"project\", updated_at: ~N[2020-12-04 16:12:02.706758], user_generated: false}}\n\u001b[0m"},{"event":"cmd_output","timestamp":1607098322,"output":"\u001b[22m\n16:12:02.724 [info] ppl_id: not_available, event: created, origin: Elixir.Ppl.PplSubInits.ST"},{"event":"cmd_output","timestamp":1607098322,"output":"MHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:02.724 [info] event: created, origin:"},{"event":"cmd_output","timestamp":1607098322,"output":" Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:02.724 [info"},{"event":"cmd_output","timestamp":1607098322,"output":"] ppl_id: 20298134-64c9-460b-9168-e1481af7bd1f, type: PplBlocks, block_index: 0, state: initializin"},{"event":"cmd_output","timestamp":1607098322,"output":"g, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all"},{"event":"cmd_output","timestamp":1607098322,"output":"_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:02.724 [info] ppl_id: 20298134-64c9-460b-9168-e1481af7bd1f, type: "},{"event":"cmd_output","timestamp":1607098322,"output":"PplBlocks, block_index: 1, state: initializing, event: created, recovery_count: 0, origin: Elixir.Pp"},{"event":"cmd_output","timestamp":1607098322,"output":"l.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:02.728 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098322,"output":" 20298134-64c9-460b-9168-e1481af7bd1f, type: PplSubInits, state: done, result: passed, event: exit_s"},{"event":"cmd_output","timestamp":1607098322,"output":"cheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098322,"output":"6:12:02.739 [info] ppl_id: 20298134-64c9-460b-9168-e1481af7bd1f, type: Ppls, state: pending, event:"},{"event":"cmd_output","timestamp":1607098322,"output":" exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098322,"output":"[22m\n16:12:02.741 [info] ppl_id: 20298134-64c9-460b-9168-e1481af7bd1f, type: PplBlocks, block_inde"},{"event":"cmd_output","timestamp":1607098322,"output":"x: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_"},{"event":"cmd_output","timestamp":1607098322,"output":"state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:02.754 [info] ppl_id: 20298134-64c9-460b-9168-e1481af7bd1f,"},{"event":"cmd_output","timestamp":1607098322,"output":" type: PplBlocks, block_index: 1, state: waiting, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098322,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:02.761 [info] ppl_id: 20298134-"},{"event":"cmd_output","timestamp":1607098322,"output":"64c9-460b-9168-e1481af7bd1f, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098322,"output":"origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:02.774 [info] ppl_id: 20"},{"event":"cmd_output","timestamp":1607098322,"output":"298134-64c9-460b-9168-e1481af7bd1f, type: Ppls, state: running, event: exit_scheduling, recovery_cou"},{"event":"cmd_output","timestamp":1607098322,"output":"nt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:02.790 [info] Ppl"},{"event":"cmd_output","timestamp":1607098322,"output":"Blocks WaitingState STM is scheduling block 0 from pipeline: \"20298134-64c9-460b-9168-e1481af7bd1f\"\r"},{"event":"cmd_output","timestamp":1607098322,"output":"\n\u001b[0m\u001b[22m\n16:12:02.800 [info] block_id: 167f5bde-c0b4-4cfd-82ed-4f54e6f6333f, type: BlockRequests"},{"event":"cmd_output","timestamp":1607098322,"output":", event: persisted block run request from ppl 20298134-64c9-460b-9168-e1481af7bd1f for block 0, orig"},{"event":"cmd_output","timestamp":1607098322,"output":"in: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098322,"output":"2:02.803 [info] block_id: 167f5bde-c0b4-4cfd-82ed-4f54e6f6333f, type: Blocks, state: initializing, "},{"event":"cmd_output","timestamp":1607098322,"output":"event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43"},{"event":"cmd_output","timestamp":1607098322,"output":"), \n\u001b[0m\u001b[22m\n16:12:02.808 [info] Block 0 of pipeline with id: 20298134-64c9-460b-9168-e1481af7bd"},{"event":"cmd_output","timestamp":1607098322,"output":"1f scheduled in block service with id: : \"167f5bde-c0b4-4cfd-82ed-4f54e6f6333f\"\n\u001b[0m\u001b[22m\n16:12:02"},{"event":"cmd_output","timestamp":1607098322,"output":".812 [info] ppl_id: 20298134-64c9-460b-9168-e1481af7bd1f, type: PplBlocks, block_index: 0, state: r"},{"event":"cmd_output","timestamp":1607098322,"output":"unning, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1"},{"event":"cmd_output","timestamp":1607098322,"output":"(L90), \n\u001b[0m\u001b[22m\n16:12:02.816 [info] block_id: 167f5bde-c0b4-4cfd-82ed-4f54e6f6333f, type: Block"},{"event":"cmd_output","timestamp":1607098322,"output":"Requests, event: persisted build and sub_ppl details for block_request: 167f5bde-c0b4-4cfd-82ed-4f54"},{"event":"cmd_output","timestamp":1607098322,"output":"e6f6333f, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098322,"output":"[22m\n16:12:02.826 [info] block_id: 167f5bde-c0b4-4cfd-82ed-4f54e6f6333f, type: Tasks, state: pendi"},{"event":"cmd_output","timestamp":1607098322,"output":"ng, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_"},{"event":"cmd_output","timestamp":1607098322,"output":"ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:02.830 [info] block_id: 167f5bde-c0b4-4cfd-82ed-4f54e6f6333f, type:"},{"event":"cmd_output","timestamp":1607098322,"output":" Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.l"},{"event":"cmd_output","timestamp":1607098322,"output":"og_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:02.855 [info] block_id: 167f5bde-c0b4-4cfd-82ed-4f54e6f6"},{"event":"cmd_output","timestamp":1607098322,"output":"333f, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper."},{"event":"cmd_output","timestamp":1607098322,"output":"STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:02.949 [info] block_id: 167f5bde-c0b4-4cfd-82e"},{"event":"cmd_output","timestamp":1607098322,"output":"d-4f54e6f6333f, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098322,"output":"Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:02.959 [info] block_id: 167f5bde-c0b4-4"},{"event":"cmd_output","timestamp":1607098322,"output":"cfd-82ed-4f54e6f6333f, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098322,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:02.972 [info] ppl_id: 20298134-"},{"event":"cmd_output","timestamp":1607098322,"output":"64c9-460b-9168-e1481af7bd1f, block_id: 167f5bde-c0b4-4cfd-82ed-4f54e6f6333f, type: PplBlocks, block_"},{"event":"cmd_output","timestamp":1607098322,"output":"index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loo"},{"event":"cmd_output","timestamp":1607098322,"output":"per.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:02.987 [info] PplBlocks WaitingState STM i"},{"event":"cmd_output","timestamp":1607098323,"output":"s scheduling block 1 from pipeline: \"20298134-64c9-460b-9168-e1481af7bd1f\"\n\u001b[0m\u001b[22m\n16:12:03.003 "},{"event":"cmd_output","timestamp":1607098323,"output":"[info] block_id: 726b0ccc-6963-4521-b1f8-23d327668838, type: BlockRequests, event: persisted block "},{"event":"cmd_output","timestamp":1607098323,"output":"run request from ppl 20298134-64c9-460b-9168-e1481af7bd1f for block 1, origin: Elixir.Block.BlockReq"},{"event":"cmd_output","timestamp":1607098323,"output":"uests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:03.006 [info] block_id"},{"event":"cmd_output","timestamp":1607098323,"output":": 726b0ccc-6963-4521-b1f8-23d327668838, type: Blocks, state: initializing, event: initializing, reco"},{"event":"cmd_output","timestamp":1607098323,"output":"very_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:03."},{"event":"cmd_output","timestamp":1607098323,"output":"006 [info] Block 1 of pipeline with id: 20298134-64c9-460b-9168-e1481af7bd1f scheduled in block ser"},{"event":"cmd_output","timestamp":1607098323,"output":"vice with id: : \"726b0ccc-6963-4521-b1f8-23d327668838\"\n\u001b[0m\u001b[22m\n16:12:03.010 [info] ppl_id: 2029"},{"event":"cmd_output","timestamp":1607098323,"output":"8134-64c9-460b-9168-e1481af7bd1f, type: PplBlocks, block_index: 1, state: running, event: exit_sched"},{"event":"cmd_output","timestamp":1607098323,"output":"uling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12"},{"event":"cmd_output","timestamp":1607098323,"output":":03.016 [info] block_id: 726b0ccc-6963-4521-b1f8-23d327668838, type: BlockRequests, event: persiste"},{"event":"cmd_output","timestamp":1607098323,"output":"d build and sub_ppl details for block_request: 726b0ccc-6963-4521-b1f8-23d327668838, origin: Elixir."},{"event":"cmd_output","timestamp":1607098323,"output":"Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:03.019 [info]"},{"event":"cmd_output","timestamp":1607098323,"output":" block_id: 726b0ccc-6963-4521-b1f8-23d327668838, type: Tasks, state: pending, event: created, recov"},{"event":"cmd_output","timestamp":1607098323,"output":"ery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098323,"output":"\n16:12:03.022 [info] block_id: 726b0ccc-6963-4521-b1f8-23d327668838, type: Blocks, state: running, "},{"event":"cmd_output","timestamp":1607098323,"output":"event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \r"},{"event":"cmd_output","timestamp":1607098323,"output":"\n\u001b[0m\u001b[22m\n16:12:03.041 [info] block_id: 726b0ccc-6963-4521-b1f8-23d327668838, type: Tasks, state:"},{"event":"cmd_output","timestamp":1607098323,"output":" running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change"},{"event":"cmd_output","timestamp":1607098323,"output":"/1(L90), \n\u001b[0m\u001b[22m\n16:12:03.064 [info] block_id: 726b0ccc-6963-4521-b1f8-23d327668838, type: Tas"},{"event":"cmd_output","timestamp":1607098323,"output":"ks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state"},{"event":"cmd_output","timestamp":1607098323,"output":"_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:03.073 [info] block_id: 726b0ccc-6963-4521-b1f8-23d327668838, ty"},{"event":"cmd_output","timestamp":1607098323,"output":"pe: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.l"},{"event":"cmd_output","timestamp":1607098323,"output":"og_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:03.087 [info] ppl_id: 20298134-64c9-460b-9168-e1481af7bd"},{"event":"cmd_output","timestamp":1607098323,"output":"1f, block_id: 726b0ccc-6963-4521-b1f8-23d327668838, type: PplBlocks, block_index: 1, state: done, re"},{"event":"cmd_output","timestamp":1607098323,"output":"sult: failed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_ch"},{"event":"cmd_output","timestamp":1607098323,"output":"ange/1(L90), \n\u001b[0m\u001b[22m\n16:12:03.108 [info] ppl_id: 20298134-64c9-460b-9168-e1481af7bd1f, type: P"},{"event":"cmd_output","timestamp":1607098323,"output":"pls, state: done, result: failed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.S"},{"event":"cmd_output","timestamp":1607098323,"output":"TM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test skip-when condition is false for given pr - bl"},{"event":"cmd_output","timestamp":1607098323,"output":"ock executed (773.4ms)\u001b[0m\n * test skip-when condition is true for given pull_request - block skip"},{"event":"cmd_output","timestamp":1607098323,"output":"ped\u001b[22m\n16:12:03.235 [info] Request: 'run: %{\"branch_id\" => \"fa23e67b-639c-434a-bca3-2572ecbcde57"},{"event":"cmd_output","timestamp":1607098323,"output":"\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"skip_block.yml\", \"hook_i"},{"event":"cmd_output","timestamp":1607098323,"output":"d\" => \"pr\", \"label\" => \"123\", \"organization_id\" => \"38175963-b728-4bbd-80a4-53bc37e95a0a\", \"owner\" ="},{"event":"cmd_output","timestamp":1607098323,"output":"> \"rt\", \"project_id\" => \"e4a46b5c-405c-42d3-9abf-44c606226c66\", \"repo_name\" => \"22_skip_block\", \"req"},{"event":"cmd_output","timestamp":1607098323,"output":"uest_token\" => \"7242560e-364b-11eb-8d14-5254005464e2\", \"requester_id\" => \"fbd4c15f-8f92-4196-a7ab-2f"},{"event":"cmd_output","timestamp":1607098323,"output":"0afeabfa22\", \"service\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf"},{"event":"cmd_output","timestamp":1607098323,"output":"_id\" => \"fec8023f-722a-4efd-bda6-6f12f9906198\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:12:03."},{"event":"cmd_output","timestamp":1607098323,"output":"240 [info] ppl_id: 036f6ef2-4d97-4aa1-b79f-451f8c3b0150, type: PplRequests, event: persisted schedu"},{"event":"cmd_output","timestamp":1607098323,"output":"le request with request_token: 7242560e-364b-11eb-8d14-5254005464e2, origin: Elixir.Ppl.PplRequests."},{"event":"cmd_output","timestamp":1607098323,"output":"Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:03.246 [info] ppl_id: 036f6ef2"},{"event":"cmd_output","timestamp":1607098323,"output":"-4d97-4aa1-b79f-451f8c3b0150, type: Ppls, state: initializing, event: initializing, recovery_count: "},{"event":"cmd_output","timestamp":1607098323,"output":"0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:03.253 [in"},{"event":"cmd_output","timestamp":1607098323,"output":"fo] Project e4a46b5c-405c-42d3-9abf-44c606226c66 and branch masterlatest_wf details updated: \"wf_id"},{"event":"cmd_output","timestamp":1607098323,"output":": fec8023f-722a-4efd-bda6-6f12f9906198, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:12:03.256 [info] Persisted ppl"},{"event":"cmd_output","timestamp":1607098323,"output":"_sub_init for pipeline with ppl_id: 036f6ef2-4d97-4aa1-b79f-451f8c3b0150: %Ppl.PplSubInits.Model.Ppl"},{"event":"cmd_output","timestamp":1607098323,"output":"SubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error"},{"event":"cmd_output","timestamp":1607098323,"output":"_description: nil, id: 155, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 1"},{"event":"cmd_output","timestamp":1607098323,"output":"6:12:03.253312], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"036f6ef2-4d97-4aa1-b79f-451f8c3b0150\", recovery_count: 0, result: nil, result_re"},{"event":"cmd_output","timestamp":1607098323,"output":"ason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[202"},{"event":"cmd_output","timestamp":1607098323,"output":"0-12-04 16:12:03.253324]}\n\u001b[0m\u001b[22m\n16:12:03.262 [info] Periodic from module Elixir.Ppl.Ppls.STMH"},{"event":"cmd_output","timestamp":1607098323,"output":"andler.InitializingState with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms, m"},{"event":"cmd_output","timestamp":1607098323,"output":"etric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %{a"},{"event":"cmd_output","timestamp":1607098323,"output":"llowed_states: [\"initializing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Mod"},{"event":"cmd_output","timestamp":1607098323,"output":"el.Ppls, observed_state: \"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandle"},{"event":"cmd_output","timestamp":1607098323,"output":"r.InitializingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :"},{"event":"cmd_output","timestamp":1607098323,"output":"state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0"},{"event":"cmd_output","timestamp":1607098323,"output":"m\u001b[22m\n16:12:03.262 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingState with name "},{"event":"cmd_output","timestamp":1607098323,"output":"Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"P"},{"event":"cmd_output","timestamp":1607098323,"output":"pl-Ppls-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"pending\", \"queuing\", \"runnin"},{"event":"cmd_output","timestamp":1607098323,"output":"g\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", pub"},{"event":"cmd_output","timestamp":1607098323,"output":"lisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, re"},{"event":"cmd_output","timestamp":1607098323,"output":"turning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: "},{"event":"cmd_output","timestamp":1607098323,"output":"Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:12:03.263 [info] Periodic "},{"event":"cmd_output","timestamp":1607098323,"output":"from module Elixir.Ppl.Ppls.STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandler.QueuingStat"},{"event":"cmd_output","timestamp":1607098323,"output":"e :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, re"},{"event":"cmd_output","timestamp":1607098323,"output":"curring args: %{allowed_states: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, initial_query:"},{"event":"cmd_output","timestamp":1607098323,"output":" Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.S"},{"event":"cmd_output","timestamp":1607098323,"output":"TMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at"},{"event":"cmd_output","timestamp":1607098323,"output":", :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n"},{"event":"cmd_output","timestamp":1607098323,"output":"\u001b[0m\u001b[22m\n16:12:03.263 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.RunningState with na"},{"event":"cmd_output","timestamp":1607098323,"output":"me Elixir.Ppl.Ppls.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", "},{"event":"cmd_output","timestamp":1607098323,"output":"[\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"do"},{"event":"cmd_output","timestamp":1607098323,"output":"ne\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"running\", publisher"},{"event":"cmd_output","timestamp":1607098323,"output":"_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returni"},{"event":"cmd_output","timestamp":1607098323,"output":"ng: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.P"},{"event":"cmd_output","timestamp":1607098323,"output":"pls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:12:03.263 [info] Periodic from "},{"event":"cmd_output","timestamp":1607098323,"output":"module Elixir.Ppl.Ppls.STMHandler.StoppingState with name Elixir.Ppl.Ppls.STMHandler.StoppingState :"},{"event":"cmd_output","timestamp":1607098323,"output":": period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recu"},{"event":"cmd_output","timestamp":1607098323,"output":"rring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Mo"},{"event":"cmd_output","timestamp":1607098323,"output":"del.Ppls, observed_state: \"stopping\", publisher_cb: #Function<0.71803493/1 in Ppl.Ppls.STMHandler.St"},{"event":"cmd_output","timestamp":1607098323,"output":"oppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :"},{"event":"cmd_output","timestamp":1607098323,"output":"result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098323,"output":"16:12:03.263 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedState with name E"},{"event":"cmd_output","timestamp":1607098323,"output":"lixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up"},{"event":"cmd_output","timestamp":1607098323,"output":"\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args: %{allowed_states: [\"fetching\", \"don"},{"event":"cmd_output","timestamp":1607098323,"output":"e\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"created"},{"event":"cmd_output","timestamp":1607098323,"output":"\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state"},{"event":"cmd_output","timestamp":1607098323,"output":", :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :s"},{"event":"cmd_output","timestamp":1607098323,"output":"kip}\n\u001b[0m\u001b[22m\n16:12:03.263 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.Fetchin"},{"event":"cmd_output","timestamp":1607098323,"output":"gState with name Elixir.Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 ms, metric_name: {\"P"},{"event":"cmd_output","timestamp":1607098323,"output":"pl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %{allowed_state"},{"event":"cmd_output","timestamp":1607098323,"output":"s: [\"regular_init\", \"compilation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Mod"},{"event":"cmd_output","timestamp":1607098323,"output":"el.PplSubInits, observed_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id"},{"event":"cmd_output","timestamp":1607098323,"output":", :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubIni"},{"event":"cmd_output","timestamp":1607098323,"output":"ts.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:03.264 [info] Periodic from module "},{"event":"cmd_output","timestamp":1607098323,"output":"Elixir.Ppl.PplSubInits.STMHandler.CompilationState with name Elixir.Ppl.PplSubInits.STMHandler.Compi"},{"event":"cmd_output","timestamp":1607098323,"output":"lationState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-Co"},{"event":"cmd_output","timestamp":1607098323,"output":"mpilationState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"stopping\", \"do"},{"event":"cmd_output","timestamp":1607098323,"output":"ne\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"compi"},{"event":"cmd_output","timestamp":1607098323,"output":"lation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, "},{"event":"cmd_output","timestamp":1607098323,"output":":state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervis"},{"event":"cmd_output","timestamp":1607098323,"output":"or: :skip}\n\u001b[0m\u001b[22m\n16:12:03.264 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.R"},{"event":"cmd_output","timestamp":1607098323,"output":"egularInitState with name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period: 100 ms, metr"},{"event":"cmd_output","timestamp":1607098323,"output":"ic_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurring args: "},{"event":"cmd_output","timestamp":1607098323,"output":"%{allowed_states: [\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, o"},{"event":"cmd_output","timestamp":1607098323,"output":"bserved_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_"},{"event":"cmd_output","timestamp":1607098323,"output":"request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplS"},{"event":"cmd_output","timestamp":1607098323,"output":"ubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:03.264 [info] Periodic from module Elixir.Ppl.Pp"},{"event":"cmd_output","timestamp":1607098323,"output":"lBlocks.STMHandler.InitializingState with name Elixir.Ppl.PplBlocks.STMHandler.InitializingState :: "},{"event":"cmd_output","timestamp":1607098323,"output":"period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-InitializingState\"]"},{"event":"cmd_output","timestamp":1607098323,"output":"}, recurring args: %{allowed_states: [\"initializing\", \"waiting\", \"done\"], cooling_time_sec: 0, initi"},{"event":"cmd_output","timestamp":1607098323,"output":"al_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"initializing\", publisher_cb: :skip, repo: "},{"event":"cmd_output","timestamp":1607098323,"output":"Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :p"},{"event":"cmd_output","timestamp":1607098323,"output":"pl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098323,"output":"12:03.264 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.WaitingState with name Elixir"},{"event":"cmd_output","timestamp":1607098323,"output":".Ppl.PplBlocks.STMHandler.WaitingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"P"},{"event":"cmd_output","timestamp":1607098323,"output":"pl-PplBlocks-STMHandler-WaitingState\"]}, recurring args: %{allowed_states: [\"waiting\", \"running\", \"d"},{"event":"cmd_output","timestamp":1607098323,"output":"one\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"waiting\","},{"event":"cmd_output","timestamp":1607098323,"output":" publisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>, repo: Ppl.Ect"},{"event":"cmd_output","timestamp":1607098323,"output":"oRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, "},{"event":"cmd_output","timestamp":1607098323,"output":":block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:03.2"},{"event":"cmd_output","timestamp":1607098323,"output":"64 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.RunningState with name Elixir.Ppl.Pp"},{"event":"cmd_output","timestamp":1607098323,"output":"lBlocks.STMHandler.RunningState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplB"},{"event":"cmd_output","timestamp":1607098323,"output":"locks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"],"},{"event":"cmd_output","timestamp":1607098323,"output":" cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"running\", publ"},{"event":"cmd_output","timestamp":1607098323,"output":"isher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0>, repo: Ppl.EctoRep"},{"event":"cmd_output","timestamp":1607098323,"output":"o, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :blo"},{"event":"cmd_output","timestamp":1607098323,"output":"ck_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098323,"output":"12:03.265 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.StoppingState with name Elixi"},{"event":"cmd_output","timestamp":1607098323,"output":"r.Ppl.PplBlocks.STMHandler.StoppingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", ["},{"event":"cmd_output","timestamp":1607098323,"output":"\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], "},{"event":"cmd_output","timestamp":1607098323,"output":"cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"stopping\", publ"},{"event":"cmd_output","timestamp":1607098323,"output":"isher_cb: #Function<0.104215991/1 in Ppl.PplBlocks.STMHandler.StoppingState.args/0>, repo: Ppl.EctoR"},{"event":"cmd_output","timestamp":1607098323,"output":"epo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :b"},{"event":"cmd_output","timestamp":1607098323,"output":"lock_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098323,"output":"6:12:03.265 [info] Periodic from module Elixir.Block.Blocks.STMHandler.InitializingState with name "},{"event":"cmd_output","timestamp":1607098323,"output":"Elixir.Block.Blocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake"},{"event":"cmd_output","timestamp":1607098323,"output":"_up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"running\", "},{"event":"cmd_output","timestamp":1607098323,"output":"\"done\"], cooling_time_sec: 0, initial_query: Block.Blocks.Model.Blocks, observed_state: \"initializin"},{"event":"cmd_output","timestamp":1607098323,"output":"g\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :st"},{"event":"cmd_output","timestamp":1607098323,"output":"ate, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098323,"output":"22m\n16:12:03.265 [info] Periodic from module Elixir.Block.Blocks.STMHandler.RunningState with name"},{"event":"cmd_output","timestamp":1607098323,"output":" Elixir.Block.Blocks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\""},{"event":"cmd_output","timestamp":1607098323,"output":", [\"Block-Blocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping"},{"event":"cmd_output","timestamp":1607098323,"output":"\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"running"},{"event":"cmd_output","timestamp":1607098323,"output":"\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :sta"},{"event":"cmd_output","timestamp":1607098323,"output":"te, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098323,"output":"2m\n16:12:03.265 [info] Periodic from module Elixir.Block.Blocks.STMHandler.StoppingState with name"},{"event":"cmd_output","timestamp":1607098323,"output":" Elixir.Block.Blocks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up"},{"event":"cmd_output","timestamp":1607098323,"output":"\", [\"Block-Blocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\""},{"event":"cmd_output","timestamp":1607098323,"output":"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"stopping\", publi"},{"event":"cmd_output","timestamp":1607098323,"output":"sher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :rec"},{"event":"cmd_output","timestamp":1607098323,"output":"overy_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098323,"output":"2:03.266 [info] Periodic from module Elixir.Block.Tasks.STMHandler.PendingState with name Elixir.Bl"},{"event":"cmd_output","timestamp":1607098323,"output":"ock.Tasks.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-T"},{"event":"cmd_output","timestamp":1607098323,"output":"asks-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time"},{"event":"cmd_output","timestamp":1607098323,"output":"_sec: 0, initial_query: Block.Tasks.Model.Tasks, observed_state: \"pending\", publisher_cb: :skip, rep"},{"event":"cmd_output","timestamp":1607098323,"output":"o: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block"},{"event":"cmd_output","timestamp":1607098323,"output":"_id, :build_request_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:"},{"event":"cmd_output","timestamp":1607098323,"output":"03.266 [info] Periodic from module Elixir.Block.Tasks.STMHandler.RunningState with name Elixir.Bloc"},{"event":"cmd_output","timestamp":1607098323,"output":"k.Tasks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tas"},{"event":"cmd_output","timestamp":1607098323,"output":"ks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], co"},{"event":"cmd_output","timestamp":1607098323,"output":"oling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"running\", publisher_cb:"},{"event":"cmd_output","timestamp":1607098323,"output":" :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_co"},{"event":"cmd_output","timestamp":1607098323,"output":"unt, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:03.266 ["},{"event":"cmd_output","timestamp":1607098323,"output":"info] Periodic from module Elixir.Block.Tasks.STMHandler.StoppingState with name Elixir.Block.Tasks"},{"event":"cmd_output","timestamp":1607098323,"output":".STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STM"},{"event":"cmd_output","timestamp":1607098323,"output":"Handler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: "},{"event":"cmd_output","timestamp":1607098323,"output":"-2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"stopping\", publisher_cb: :skip, repo: B"},{"event":"cmd_output","timestamp":1607098323,"output":"lock.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id]"},{"event":"cmd_output","timestamp":1607098323,"output":", schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:03.394 [info] ppl_id: "},{"event":"cmd_output","timestamp":1607098323,"output":"036f6ef2-4d97-4aa1-b79f-451f8c3b0150, type: PplRequests, event: persisted source_args for pipeline: "},{"event":"cmd_output","timestamp":1607098323,"output":"036f6ef2-4d97-4aa1-b79f-451f8c3b0150, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert"},{"event":"cmd_output","timestamp":1607098323,"output":"_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:03.404 [info] ppl_id: 036f6ef2-4d97-4aa1-b79f-451f8c3b0150, type"},{"event":"cmd_output","timestamp":1607098323,"output":": PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM"},{"event":"cmd_output","timestamp":1607098323,"output":".Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:03.430 [info] ppl_id: 036f6ef2-4d97-4aa1-b79f-451"},{"event":"cmd_output","timestamp":1607098323,"output":"f8c3b0150, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098323,"output":": Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:03.455 [info] ppl_id: 036f6ef2"},{"event":"cmd_output","timestamp":1607098323,"output":"-4d97-4aa1-b79f-451f8c3b0150, type: PplRequests, event: persisted definition for request with reques"},{"event":"cmd_output","timestamp":1607098323,"output":"t_token: 7242560e-364b-11eb-8d14-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueri"},{"event":"cmd_output","timestamp":1607098323,"output":"es.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:03.460 [info] Queue persisted: {:ok, %Ppl.Queues.Mo"},{"event":"cmd_output","timestamp":1607098323,"output":"del.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:12:03.4"},{"event":"cmd_output","timestamp":1607098323,"output":"58797], name: \"123-.semaphore/skip_block.yml\", organization_id: \"38175963-b728-4bbd-80a4-53bc37e95a0"},{"event":"cmd_output","timestamp":1607098323,"output":"a\", project_id: \"e4a46b5c-405c-42d3-9abf-44c606226c66\", queue_id: \"edfe8e6d-81ca-4b84-9dbc-9b2b1f937"},{"event":"cmd_output","timestamp":1607098323,"output":"608\", scope: \"project\", updated_at: ~N[2020-12-04 16:12:03.458809], user_generated: false}}\n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098323,"output":"2m\n16:12:03.478 [info] ppl_id: not_available, event: created, origin: Elixir.Ppl.PplSubInits.STMHa"},{"event":"cmd_output","timestamp":1607098323,"output":"ndler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:03.478 [info] event: created, origin: El"},{"event":"cmd_output","timestamp":1607098323,"output":"ixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:03.478 [info] "},{"event":"cmd_output","timestamp":1607098323,"output":"ppl_id: 036f6ef2-4d97-4aa1-b79f-451f8c3b0150, type: PplBlocks, block_index: 0, state: initializing, "},{"event":"cmd_output","timestamp":1607098323,"output":"event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok"},{"event":"cmd_output","timestamp":1607098323,"output":"?/1(L105), \n\u001b[0m\u001b[22m\n16:12:03.478 [info] ppl_id: 036f6ef2-4d97-4aa1-b79f-451f8c3b0150, type: Ppl"},{"event":"cmd_output","timestamp":1607098323,"output":"Blocks, block_index: 1, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.P"},{"event":"cmd_output","timestamp":1607098323,"output":"plSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:03.483 [info] ppl_id: 03"},{"event":"cmd_output","timestamp":1607098323,"output":"6f6ef2-4d97-4aa1-b79f-451f8c3b0150, type: PplSubInits, state: done, result: passed, event: exit_sche"},{"event":"cmd_output","timestamp":1607098323,"output":"duling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098323,"output":"2:03.501 [info] ppl_id: 036f6ef2-4d97-4aa1-b79f-451f8c3b0150, type: Ppls, state: pending, event: ex"},{"event":"cmd_output","timestamp":1607098323,"output":"it_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098323,"output":"m\n16:12:03.509 [info] ppl_id: 036f6ef2-4d97-4aa1-b79f-451f8c3b0150, type: PplBlocks, block_index: "},{"event":"cmd_output","timestamp":1607098323,"output":"0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_sta"},{"event":"cmd_output","timestamp":1607098323,"output":"te_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:03.514 [info] ppl_id: 036f6ef2-4d97-4aa1-b79f-451f8c3b0150, ty"},{"event":"cmd_output","timestamp":1607098323,"output":"pe: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl."},{"event":"cmd_output","timestamp":1607098323,"output":"log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:03.523 [info] ppl_id: 036f6ef2-4d97-4aa1-b79f-451f8c3b0"},{"event":"cmd_output","timestamp":1607098323,"output":"150, type: PplBlocks, block_index: 1, state: waiting, event: exit_scheduling, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098323,"output":"gin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:03.528 [info] ppl_id: 036f6"},{"event":"cmd_output","timestamp":1607098323,"output":"ef2-4d97-4aa1-b79f-451f8c3b0150, type: Ppls, state: running, event: exit_scheduling, recovery_count:"},{"event":"cmd_output","timestamp":1607098323,"output":" 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:03.535 [info] PplBlo"},{"event":"cmd_output","timestamp":1607098323,"output":"cks WaitingState STM is scheduling block 0 from pipeline: \"036f6ef2-4d97-4aa1-b79f-451f8c3b0150\"\n\u001b["},{"event":"cmd_output","timestamp":1607098323,"output":"0m\u001b[22m\n16:12:03.546 [info] block_id: 6b5611d9-87f6-464f-840c-24917344aaee, type: BlockRequests, e"},{"event":"cmd_output","timestamp":1607098323,"output":"vent: persisted block run request from ppl 036f6ef2-4d97-4aa1-b79f-451f8c3b0150 for block 0, origin:"},{"event":"cmd_output","timestamp":1607098323,"output":" Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:0"},{"event":"cmd_output","timestamp":1607098323,"output":"3.550 [info] block_id: 6b5611d9-87f6-464f-840c-24917344aaee, type: Blocks, state: initializing, eve"},{"event":"cmd_output","timestamp":1607098323,"output":"nt: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), "},{"event":"cmd_output","timestamp":1607098323,"output":"\n\u001b[0m\u001b[22m\n16:12:03.552 [info] Block 0 of pipeline with id: 036f6ef2-4d97-4aa1-b79f-451f8c3b0150 "},{"event":"cmd_output","timestamp":1607098323,"output":"scheduled in block service with id: : \"6b5611d9-87f6-464f-840c-24917344aaee\"\n\u001b[0m\u001b[22m\n16:12:03.56"},{"event":"cmd_output","timestamp":1607098323,"output":"0 [info] ppl_id: 036f6ef2-4d97-4aa1-b79f-451f8c3b0150, type: PplBlocks, block_index: 0, state: runn"},{"event":"cmd_output","timestamp":1607098323,"output":"ing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L9"},{"event":"cmd_output","timestamp":1607098323,"output":"0), \n\u001b[0m\u001b[22m\n16:12:03.563 [info] block_id: 6b5611d9-87f6-464f-840c-24917344aaee, type: BlockReq"},{"event":"cmd_output","timestamp":1607098323,"output":"uests, event: persisted build and sub_ppl details for block_request: 6b5611d9-87f6-464f-840c-2491734"},{"event":"cmd_output","timestamp":1607098323,"output":"4aaee, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098323,"output":"m\n16:12:03.566 [info] block_id: 6b5611d9-87f6-464f-840c-24917344aaee, type: Tasks, state: pending,"},{"event":"cmd_output","timestamp":1607098323,"output":" event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?"},{"event":"cmd_output","timestamp":1607098323,"output":"/1(L167), \n\u001b[0m\u001b[22m\n16:12:03.568 [info] block_id: 6b5611d9-87f6-464f-840c-24917344aaee, type: Bl"},{"event":"cmd_output","timestamp":1607098323,"output":"ocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_"},{"event":"cmd_output","timestamp":1607098323,"output":"state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:03.591 [info] block_id: 6b5611d9-87f6-464f-840c-24917344aae"},{"event":"cmd_output","timestamp":1607098323,"output":"e, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM"},{"event":"cmd_output","timestamp":1607098323,"output":".Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:03.623 [info] block_id: 6b5611d9-87f6-464f-840c-2"},{"event":"cmd_output","timestamp":1607098323,"output":"4917344aaee, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loo"},{"event":"cmd_output","timestamp":1607098323,"output":"per.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:03.631 [info] block_id: 6b5611d9-87f6-464f"},{"event":"cmd_output","timestamp":1607098323,"output":"-840c-24917344aaee, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098323,"output":"ixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:03.641 [info] ppl_id: 036f6ef2-4d9"},{"event":"cmd_output","timestamp":1607098323,"output":"7-4aa1-b79f-451f8c3b0150, block_id: 6b5611d9-87f6-464f-840c-24917344aaee, type: PplBlocks, block_ind"},{"event":"cmd_output","timestamp":1607098323,"output":"ex: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper"},{"event":"cmd_output","timestamp":1607098323,"output":".STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:03.653 [info] PplBlocks WaitingState STM is s"},{"event":"cmd_output","timestamp":1607098323,"output":"cheduling block 1 from pipeline: \"036f6ef2-4d97-4aa1-b79f-451f8c3b0150\"\n\u001b[0m\u001b[22m\n16:12:03.659 [in"},{"event":"cmd_output","timestamp":1607098323,"output":"fo] ppl_id: 036f6ef2-4d97-4aa1-b79f-451f8c3b0150, type: PplBlocks, block_index: 1, state: done, res"},{"event":"cmd_output","timestamp":1607098323,"output":"ult: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_cha"},{"event":"cmd_output","timestamp":1607098323,"output":"nge/1(L90), \n\u001b[0m\u001b[22m\n16:12:03.677 [info] ppl_id: 036f6ef2-4d97-4aa1-b79f-451f8c3b0150, type: Pp"},{"event":"cmd_output","timestamp":1607098323,"output":"ls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.ST"},{"event":"cmd_output","timestamp":1607098323,"output":"M.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test skip-when condition is true for given pull_requ"},{"event":"cmd_output","timestamp":1607098323,"output":"est - block skipped (542.4ms)\u001b[0m\n * test skip-when condition false for given branch - block execu"},{"event":"cmd_output","timestamp":1607098323,"output":"ted\u001b[22m\n16:12:03.785 [info] Request: 'run: %{\"branch_id\" => \"5a82a41a-45b8-4116-9a4b-d07ebb7223e4"},{"event":"cmd_output","timestamp":1607098323,"output":"\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"skip_block.yml\", \"hook_i"},{"event":"cmd_output","timestamp":1607098323,"output":"d\" => \"7296446c-364b-11eb-b99c-5254005464e2\", \"label\" => \"master\", \"organization_id\" => \"7bdf6a7f-7b"},{"event":"cmd_output","timestamp":1607098323,"output":"ea-494a-b71f-c4432be7a349\", \"owner\" => \"rt\", \"project_id\" => \"c60dfcf5-d28d-476a-9876-f50a9ac576f8\","},{"event":"cmd_output","timestamp":1607098323,"output":" \"repo_name\" => \"22_skip_block\", \"request_token\" => \"72963904-364b-11eb-ac2e-5254005464e2\", \"request"},{"event":"cmd_output","timestamp":1607098323,"output":"er_id\" => \"c66d3e0c-150e-4f3a-9ae7-58a072bf60c1\", \"service\" => \"local\", \"suppressed_attributes\" => ["},{"event":"cmd_output","timestamp":1607098323,"output":"\"access_token\", \"client_secret\"], \"wf_id\" => \"13cd577a-9f7a-40d2-b980-3a84384061e8\", \"working_dir\" ="},{"event":"cmd_output","timestamp":1607098323,"output":"> \".semaphore\"}\n\u001b[0m\u001b[22m\n16:12:03.790 [info] ppl_id: b3dbcda4-0128-48cf-a6a0-47abb439deb5, type:"},{"event":"cmd_output","timestamp":1607098323,"output":" PplRequests, event: persisted schedule request with request_token: 72963904-364b-11eb-ac2e-52540054"},{"event":"cmd_output","timestamp":1607098323,"output":"64e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098323,"output":"16:12:03.794 [info] ppl_id: b3dbcda4-0128-48cf-a6a0-47abb439deb5, type: Ppls, state: initializing, "},{"event":"cmd_output","timestamp":1607098323,"output":"event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2"},{"event":"cmd_output","timestamp":1607098323,"output":"(L124), \n\u001b[0m\u001b[22m\n16:12:03.800 [info] Project c60dfcf5-d28d-476a-9876-f50a9ac576f8 and branch ma"},{"event":"cmd_output","timestamp":1607098323,"output":"sterlatest_wf details updated: \"wf_id: 13cd577a-9f7a-40d2-b980-3a84384061e8, wf_number: 1\"\n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098323,"output":"m\n16:12:03.803 [info] Persisted ppl_sub_init for pipeline with ppl_id: b3dbcda4-0128-48cf-a6a0-47a"},{"event":"cmd_output","timestamp":1607098323,"output":"bb439deb5: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub"},{"event":"cmd_output","timestamp":1607098323,"output":"_inits\">, compile_task_id: nil, error_description: nil, id: 156, in_scheduling: false, init_type: \"r"},{"event":"cmd_output","timestamp":1607098323,"output":"egular\", inserted_at: ~N[2020-12-04 16:12:03.800997], pipeline_requests: #Ecto.Association.NotLoaded"},{"event":"cmd_output","timestamp":1607098323,"output":", ppl_id: \"b3dbcda4-0128-48cf-a6a0-47abb439deb5\", reco"},{"event":"cmd_output","timestamp":1607098323,"output":"very_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_"},{"event":"cmd_output","timestamp":1607098323,"output":"request_desc: nil, updated_at: ~N[2020-12-04 16:12:03.801007]}\n\u001b[0m\u001b[22m\n16:12:03.809 [info] Peri"},{"event":"cmd_output","timestamp":1607098323,"output":"odic from module Elixir.Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.STMHandler.I"},{"event":"cmd_output","timestamp":1607098323,"output":"nitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Init"},{"event":"cmd_output","timestamp":1607098323,"output":"ializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], cooling_tim"},{"event":"cmd_output","timestamp":1607098323,"output":"e_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher_cb: #Functio"},{"event":"cmd_output","timestamp":1607098323,"output":"n<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, returning: [:i"},{"event":"cmd_output","timestamp":1607098323,"output":"d, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Mod"},{"event":"cmd_output","timestamp":1607098323,"output":"el.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:03.810 [info] Periodic from module Elixir.Ppl.Pp"},{"event":"cmd_output","timestamp":1607098323,"output":"ls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 100 ms, metr"},{"event":"cmd_output","timestamp":1607098323,"output":"ic_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args: %{allowed_s"},{"event":"cmd_output","timestamp":1607098323,"output":"tates: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model"},{"event":"cmd_output","timestamp":1607098323,"output":".Ppls, observed_state: \"pending\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler.Pending"},{"event":"cmd_output","timestamp":1607098323,"output":"State.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result"},{"event":"cmd_output","timestamp":1607098323,"output":", :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m"},{"event":"cmd_output","timestamp":1607098323,"output":"\u001b[22m\n16:12:03.810 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.QueuingState with name E"},{"event":"cmd_output","timestamp":1607098323,"output":"lixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Pp"},{"event":"cmd_output","timestamp":1607098323,"output":"l-Ppls-STMHandler-QueuingState\"]}, recurring args: %{allowed_states: [\"queuing\", \"running\", \"done\"],"},{"event":"cmd_output","timestamp":1607098323,"output":" cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", publisher_cb: "},{"event":"cmd_output","timestamp":1607098323,"output":"#Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, returning: "},{"event":"cmd_output","timestamp":1607098323,"output":"[:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls."},{"event":"cmd_output","timestamp":1607098323,"output":"Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:03.811 [info] Periodic from module Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098323,"output":".Ppls.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHandler.RunningState :: period: 100 ms, m"},{"event":"cmd_output","timestamp":1607098323,"output":"etric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring args: %{allowe"},{"event":"cmd_output","timestamp":1607098323,"output":"d_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls,"},{"event":"cmd_output","timestamp":1607098323,"output":" observed_state: \"running\", publisher_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler.RunningState"},{"event":"cmd_output","timestamp":1607098323,"output":".args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :re"},{"event":"cmd_output","timestamp":1607098323,"output":"covery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098323,"output":"\n16:12:03.811 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.StoppingState with name Elixi"},{"event":"cmd_output","timestamp":1607098323,"output":"r.Ppl.Ppls.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-P"},{"event":"cmd_output","timestamp":1607098323,"output":"pls-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_tim"},{"event":"cmd_output","timestamp":1607098323,"output":"e_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"stopping\", publisher_cb: #Function<0"},{"event":"cmd_output","timestamp":1607098323,"output":".71803493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :term"},{"event":"cmd_output","timestamp":1607098323,"output":"inate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls,"},{"event":"cmd_output","timestamp":1607098323,"output":" task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:03.812 [info] Periodic from module Elixir.Ppl.PplSubInit"},{"event":"cmd_output","timestamp":1607098323,"output":"s.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 100 ms"},{"event":"cmd_output","timestamp":1607098323,"output":", metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args"},{"event":"cmd_output","timestamp":1607098323,"output":": %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model."},{"event":"cmd_output","timestamp":1607098323,"output":"PplSubInits, observed_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :t"},{"event":"cmd_output","timestamp":1607098323,"output":"erminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.M"},{"event":"cmd_output","timestamp":1607098323,"output":"odel.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:03.812 [info] Periodic from module Elix"},{"event":"cmd_output","timestamp":1607098323,"output":"ir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler.FetchingStat"},{"event":"cmd_output","timestamp":1607098323,"output":"e :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingStat"},{"event":"cmd_output","timestamp":1607098323,"output":"e\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"done\"], cooling_time_sec: -"},{"event":"cmd_output","timestamp":1607098323,"output":"2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fetching\", publisher_cb: :skip"},{"event":"cmd_output","timestamp":1607098323,"output":", repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_c"},{"event":"cmd_output","timestamp":1607098323,"output":"ount, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12"},{"event":"cmd_output","timestamp":1607098323,"output":":03.813 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CompilationState with name El"},{"event":"cmd_output","timestamp":1607098323,"output":"ixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake"},{"event":"cmd_output","timestamp":1607098323,"output":"_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurring args: %{allowed_states: [\"regular_"},{"event":"cmd_output","timestamp":1607098323,"output":"init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Mode"},{"event":"cmd_output","timestamp":1607098323,"output":"l.PplSubInits, observed_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:"},{"event":"cmd_output","timestamp":1607098323,"output":"id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubI"},{"event":"cmd_output","timestamp":1607098323,"output":"nits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:03.813 [info] Periodic from modul"},{"event":"cmd_output","timestamp":1607098323,"output":"e Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHandler.Reg"},{"event":"cmd_output","timestamp":1607098323,"output":"ularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-"},{"event":"cmd_output","timestamp":1607098323,"output":"RegularInitState\"]}, recurring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, initial_query:"},{"event":"cmd_output","timestamp":1607098323,"output":" Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.E"},{"event":"cmd_output","timestamp":1607098323,"output":"ctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id"},{"event":"cmd_output","timestamp":1607098323,"output":"], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:03.814 [info"},{"event":"cmd_output","timestamp":1607098323,"output":"] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.InitializingState with name Elixir.Ppl.PplBl"},{"event":"cmd_output","timestamp":1607098323,"output":"ocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppl"},{"event":"cmd_output","timestamp":1607098323,"output":"Blocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"waiting\""},{"event":"cmd_output","timestamp":1607098323,"output":", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"initi"},{"event":"cmd_output","timestamp":1607098323,"output":"alizing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at,"},{"event":"cmd_output","timestamp":1607098323,"output":" :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, ta"},{"event":"cmd_output","timestamp":1607098323,"output":"sk_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:03.814 [info] Periodic from module Elixir.Ppl.PplBlocks.STM"},{"event":"cmd_output","timestamp":1607098323,"output":"Handler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler.WaitingState :: period: 1000 ms, metr"},{"event":"cmd_output","timestamp":1607098323,"output":"ic_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurring args: %{allo"},{"event":"cmd_output","timestamp":1607098323,"output":"wed_states: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model."},{"event":"cmd_output","timestamp":1607098323,"output":"PplBlocks, observed_state: \"waiting\", publisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.STMHandle"},{"event":"cmd_output","timestamp":1607098323,"output":"r.WaitingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state"},{"event":"cmd_output","timestamp":1607098323,"output":", :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supe"},{"event":"cmd_output","timestamp":1607098323,"output":"rvisor: :skip}\n\u001b[0m\u001b[22m\n16:12:03.814 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler"},{"event":"cmd_output","timestamp":1607098323,"output":".RunningState with name Elixir.Ppl.PplBlocks.STMHandler.RunningState :: period: 1000 ms, metric_name"},{"event":"cmd_output","timestamp":1607098323,"output":": {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, recurring args: %{allowed_sta"},{"event":"cmd_output","timestamp":1607098323,"output":"tes: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBl"},{"event":"cmd_output","timestamp":1607098323,"output":"ocks, observed_state: \"running\", publisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHandler.Ru"},{"event":"cmd_output","timestamp":1607098323,"output":"nningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :r"},{"event":"cmd_output","timestamp":1607098323,"output":"esult, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, ta"},{"event":"cmd_output","timestamp":1607098323,"output":"sk_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:03.815 [info] Periodic from module Elixir.Ppl.PplBlocks.STM"},{"event":"cmd_output","timestamp":1607098323,"output":"Handler.StoppingState with name Elixir.Ppl.PplBlocks.STMHandler.StoppingState :: period: 1000 ms, me"},{"event":"cmd_output","timestamp":1607098323,"output":"tric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurring args: %{a"},{"event":"cmd_output","timestamp":1607098323,"output":"llowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlo"},{"event":"cmd_output","timestamp":1607098323,"output":"cks, observed_state: \"stopping\", publisher_cb: #Function<0.104215991/1 in Ppl.PplBlocks.STMHandler.S"},{"event":"cmd_output","timestamp":1607098323,"output":"toppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, "},{"event":"cmd_output","timestamp":1607098323,"output":":result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, "},{"event":"cmd_output","timestamp":1607098323,"output":"task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:03.815 [info] Periodic from module Elixir.Block.Blocks.ST"},{"event":"cmd_output","timestamp":1607098323,"output":"MHandler.InitializingState with name Elixir.Block.Blocks.STMHandler.InitializingState :: period: 100"},{"event":"cmd_output","timestamp":1607098323,"output":" ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, recurring"},{"event":"cmd_output","timestamp":1607098323,"output":" args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Blocks.Model"},{"event":"cmd_output","timestamp":1607098323,"output":".Blocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id,"},{"event":"cmd_output","timestamp":1607098323,"output":" :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Bl"},{"event":"cmd_output","timestamp":1607098323,"output":"ocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:03.816 [info] Periodic from module Elixir.Block.Blo"},{"event":"cmd_output","timestamp":1607098323,"output":"cks.STMHandler.RunningState with name Elixir.Block.Blocks.STMHandler.RunningState :: period: 100 ms,"},{"event":"cmd_output","timestamp":1607098323,"output":" metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-RunningState\"]}, recurring args: %{"},{"event":"cmd_output","timestamp":1607098323,"output":"allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.M"},{"event":"cmd_output","timestamp":1607098323,"output":"odel.Blocks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, "},{"event":"cmd_output","timestamp":1607098323,"output":":terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blo"},{"event":"cmd_output","timestamp":1607098323,"output":"cks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:03.816 [info] Periodic from module Elixir.Block.Bloc"},{"event":"cmd_output","timestamp":1607098323,"output":"ks.STMHandler.StoppingState with name Elixir.Block.Blocks.STMHandler.StoppingState :: period: 100 ms"},{"event":"cmd_output","timestamp":1607098323,"output":", metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-StoppingState\"]}, recurring args: "},{"event":"cmd_output","timestamp":1607098323,"output":"%{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Bloc"},{"event":"cmd_output","timestamp":1607098323,"output":"ks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :termina"},{"event":"cmd_output","timestamp":1607098323,"output":"te_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, tas"},{"event":"cmd_output","timestamp":1607098323,"output":"k_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:03.817 [info] Periodic from module Elixir.Block.Tasks.STMHan"},{"event":"cmd_output","timestamp":1607098323,"output":"dler.PendingState with name Elixir.Block.Tasks.STMHandler.PendingState :: period: 100 ms, metric_nam"},{"event":"cmd_output","timestamp":1607098323,"output":"e: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingState\"]}, recurring args: %{allowed_stat"},{"event":"cmd_output","timestamp":1607098323,"output":"es: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Tasks.Model.Tasks, observed_state"},{"event":"cmd_output","timestamp":1607098323,"output":": \"pending\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :update"},{"event":"cmd_output","timestamp":1607098323,"output":"d_at, :state, :recovery_count, :block_id, :build_request_id], schema: Block.Tasks.Model.Tasks, task_"},{"event":"cmd_output","timestamp":1607098323,"output":"supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:03.817 [info] Periodic from module Elixir.Block.Tasks.STMHandl"},{"event":"cmd_output","timestamp":1607098323,"output":"er.RunningState with name Elixir.Block.Tasks.STMHandler.RunningState :: period: 100 ms, metric_name:"},{"event":"cmd_output","timestamp":1607098323,"output":" {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningState\"]}, recurring args: %{allowed_states"},{"event":"cmd_output","timestamp":1607098323,"output":": [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, obs"},{"event":"cmd_output","timestamp":1607098323,"output":"erved_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_reque"},{"event":"cmd_output","timestamp":1607098323,"output":"st, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervis"},{"event":"cmd_output","timestamp":1607098323,"output":"or: :skip}\n\u001b[0m\u001b[22m\n16:12:03.817 [info] Periodic from module Elixir.Block.Tasks.STMHandler.Stopp"},{"event":"cmd_output","timestamp":1607098323,"output":"ingState with name Elixir.Block.Tasks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl"},{"event":"cmd_output","timestamp":1607098323,"output":".beholder-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"s"},{"event":"cmd_output","timestamp":1607098323,"output":"topping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"st"},{"event":"cmd_output","timestamp":1607098323,"output":"opping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at"},{"event":"cmd_output","timestamp":1607098323,"output":", :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0"},{"event":"cmd_output","timestamp":1607098323,"output":"m\u001b[22m\n16:12:03.937 [info] ppl_id: b3dbcda4-0128-48cf-a6a0-47abb439deb5, type: PplRequests, event:"},{"event":"cmd_output","timestamp":1607098323,"output":" persisted source_args for pipeline: b3dbcda4-0128-48cf-a6a0-47abb439deb5, origin: Elixir.Ppl.PplReq"},{"event":"cmd_output","timestamp":1607098323,"output":"uests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:03.941 [info] ppl_id: b3dbc"},{"event":"cmd_output","timestamp":1607098323,"output":"da4-0128-48cf-a6a0-47abb439deb5, type: PplSubInits, state: fetching, event: exit_scheduling, recover"},{"event":"cmd_output","timestamp":1607098323,"output":"y_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:03.964 [info]"},{"event":"cmd_output","timestamp":1607098323,"output":" ppl_id: b3dbcda4-0128-48cf-a6a0-47abb439deb5, type: PplSubInits, state: regular_init, event: exit_"},{"event":"cmd_output","timestamp":1607098323,"output":"scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098323,"output":"16:12:03.994 [info] ppl_id: b3dbcda4-0128-48cf-a6a0-47abb439deb5, type: PplRequests, event: persist"},{"event":"cmd_output","timestamp":1607098323,"output":"ed definition for request with request_token: 72963904-364b-11eb-ac2e-5254005464e2, origin: Elixir.P"},{"event":"cmd_output","timestamp":1607098324,"output":"pl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:03.999 [info] "},{"event":"cmd_output","timestamp":1607098324,"output":"Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, "},{"event":"cmd_output","timestamp":1607098324,"output":"inserted_at: ~N[2020-12-04 16:12:03.997397], name: \"master-.semaphore/skip_block.yml\", organization_"},{"event":"cmd_output","timestamp":1607098324,"output":"id: \"7bdf6a7f-7bea-494a-b71f-c4432be7a349\", project_id: \"c60dfcf5-d28d-476a-9876-f50a9ac576f8\", queu"},{"event":"cmd_output","timestamp":1607098324,"output":"e_id: \"b786e6ef-403b-4ede-8719-1b4904c82c48\", scope: \"project\", updated_at: ~N[2020-12-04 16:12:03.9"},{"event":"cmd_output","timestamp":1607098324,"output":"97406], user_generated: false}}\n\u001b[0m\u001b[22m\n16:12:04.006 [info] ppl_id: not_available, event: creat"},{"event":"cmd_output","timestamp":1607098324,"output":"ed, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:0"},{"event":"cmd_output","timestamp":1607098324,"output":"4.006 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L"},{"event":"cmd_output","timestamp":1607098324,"output":"105), \n\u001b[0m\u001b[22m\n16:12:04.006 [info] ppl_id: b3dbcda4-0128-48cf-a6a0-47abb439deb5, type: PplBlock"},{"event":"cmd_output","timestamp":1607098324,"output":"s, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSub"},{"event":"cmd_output","timestamp":1607098324,"output":"Inits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:04.006 [info] ppl_id: b3dbcda"},{"event":"cmd_output","timestamp":1607098324,"output":"4-0128-48cf-a6a0-47abb439deb5, type: PplBlocks, block_index: 1, state: initializing, event: created,"},{"event":"cmd_output","timestamp":1607098324,"output":" recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b["},{"event":"cmd_output","timestamp":1607098324,"output":"0m\u001b[22m\n16:12:04.008 [info] ppl_id: b3dbcda4-0128-48cf-a6a0-47abb439deb5, type: PplSubInits, state"},{"event":"cmd_output","timestamp":1607098324,"output":": done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.lo"},{"event":"cmd_output","timestamp":1607098324,"output":"g_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:04.018 [info] ppl_id: b3dbcda4-0128-48cf-a6a0-47abb439deb"},{"event":"cmd_output","timestamp":1607098324,"output":"5, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM."},{"event":"cmd_output","timestamp":1607098324,"output":"Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:04.018 [info] ppl_id: b3dbcda4-0128-48cf-a6a0-47ab"},{"event":"cmd_output","timestamp":1607098324,"output":"b439deb5, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0"},{"event":"cmd_output","timestamp":1607098324,"output":", origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:04.032 [info] ppl_id: "},{"event":"cmd_output","timestamp":1607098324,"output":"b3dbcda4-0128-48cf-a6a0-47abb439deb5, type: Ppls, state: queuing, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098324,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:04.034 [info] p"},{"event":"cmd_output","timestamp":1607098324,"output":"pl_id: b3dbcda4-0128-48cf-a6a0-47abb439deb5, type: PplBlocks, block_index: 1, state: waiting, event:"},{"event":"cmd_output","timestamp":1607098324,"output":" exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098324,"output":"[22m\n16:12:04.052 [info] ppl_id: b3dbcda4-0128-48cf-a6a0-47abb439deb5, type: Ppls, state: running,"},{"event":"cmd_output","timestamp":1607098324,"output":" event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), "},{"event":"cmd_output","timestamp":1607098324,"output":"\n\u001b[0m\u001b[22m\n16:12:04.064 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"b"},{"event":"cmd_output","timestamp":1607098324,"output":"3dbcda4-0128-48cf-a6a0-47abb439deb5\"\n\u001b[0m\u001b[22m\n16:12:04.071 [info] block_id: 66291be9-cf0b-432f-9"},{"event":"cmd_output","timestamp":1607098324,"output":"ee0-5f73365ba7f1, type: BlockRequests, event: persisted block run request from ppl b3dbcda4-0128-48c"},{"event":"cmd_output","timestamp":1607098324,"output":"f-a6a0-47abb439deb5 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.proce"},{"event":"cmd_output","timestamp":1607098324,"output":"ss_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:04.079 [info] block_id: 66291be9-cf0b-432f-9ee0-5f73365ba7f1"},{"event":"cmd_output","timestamp":1607098324,"output":", type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Bl"},{"event":"cmd_output","timestamp":1607098324,"output":"ocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:04.082 [info] Block 0 of pipeline with i"},{"event":"cmd_output","timestamp":1607098324,"output":"d: b3dbcda4-0128-48cf-a6a0-47abb439deb5 scheduled in block service with id: : \"66291be9-cf0b-432f-9e"},{"event":"cmd_output","timestamp":1607098324,"output":"e0-5f73365ba7f1\"\n\u001b[0m\u001b[22m\n16:12:04.086 [info] ppl_id: b3dbcda4-0128-48cf-a6a0-47abb439deb5, type"},{"event":"cmd_output","timestamp":1607098324,"output":": PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098324,"output":"ir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:04.091 [info] block_id: 66291be9-cf0"},{"event":"cmd_output","timestamp":1607098324,"output":"b-432f-9ee0-5f73365ba7f1, type: BlockRequests, event: persisted build and sub_ppl details for block_"},{"event":"cmd_output","timestamp":1607098324,"output":"request: 66291be9-cf0b-432f-9ee0-5f73365ba7f1, origin: Elixir.Block.BlockRequests.Model.BlockRequest"},{"event":"cmd_output","timestamp":1607098324,"output":"sQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:04.094 [info] block_id: 66291be9-cf0b-432f-9ee0-5f"},{"event":"cmd_output","timestamp":1607098324,"output":"73365ba7f1, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blo"},{"event":"cmd_output","timestamp":1607098324,"output":"cks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:04.097 [info] block_id: 66291b"},{"event":"cmd_output","timestamp":1607098324,"output":"e9-cf0b-432f-9ee0-5f73365ba7f1, type: Blocks, state: running, event: exit_scheduling, recovery_count"},{"event":"cmd_output","timestamp":1607098324,"output":": 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:04.113 [info] block"},{"event":"cmd_output","timestamp":1607098324,"output":"_id: 66291be9-cf0b-432f-9ee0-5f73365ba7f1, type: Tasks, state: running, event: exit_scheduling, reco"},{"event":"cmd_output","timestamp":1607098324,"output":"very_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:04.154 [in"},{"event":"cmd_output","timestamp":1607098324,"output":"fo] block_id: 66291be9-cf0b-432f-9ee0-5f73365ba7f1, type: Tasks, state: done, event: exit_schedulin"},{"event":"cmd_output","timestamp":1607098324,"output":"g, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:04."},{"event":"cmd_output","timestamp":1607098324,"output":"166 [info] block_id: 66291be9-cf0b-432f-9ee0-5f73365ba7f1, type: Blocks, state: done, event: exit_s"},{"event":"cmd_output","timestamp":1607098324,"output":"cheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098324,"output":"6:12:04.176 [info] ppl_id: b3dbcda4-0128-48cf-a6a0-47abb439deb5, block_id: 66291be9-cf0b-432f-9ee0-"},{"event":"cmd_output","timestamp":1607098324,"output":"5f73365ba7f1, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, "},{"event":"cmd_output","timestamp":1607098324,"output":"recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:04.185"},{"event":"cmd_output","timestamp":1607098324,"output":" [info] PplBlocks WaitingState STM is scheduling block 1 from pipeline: \"b3dbcda4-0128-48cf-a6a0-47"},{"event":"cmd_output","timestamp":1607098324,"output":"abb439deb5\"\n\u001b[0m\u001b[22m\n16:12:04.193 [info] block_id: 601984c6-a71c-4dcd-8c1e-02da98248fc3, type: B"},{"event":"cmd_output","timestamp":1607098324,"output":"lockRequests, event: persisted block run request from ppl b3dbcda4-0128-48cf-a6a0-47abb439deb5 for b"},{"event":"cmd_output","timestamp":1607098324,"output":"lock 1, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098324,"output":"m\u001b[22m\n16:12:04.196 [info] block_id: 601984c6-a71c-4dcd-8c1e-02da98248fc3, type: Blocks, state: in"},{"event":"cmd_output","timestamp":1607098324,"output":"itializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries."},{"event":"cmd_output","timestamp":1607098324,"output":"insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:04.196 [info] Block 1 of pipeline with id: b3dbcda4-0128-48cf-a6a"},{"event":"cmd_output","timestamp":1607098324,"output":"0-47abb439deb5 scheduled in block service with id: : \"601984c6-a71c-4dcd-8c1e-02da98248fc3\"\n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098324,"output":"2m\n16:12:04.200 [info] ppl_id: b3dbcda4-0128-48cf-a6a0-47abb439deb5, type: PplBlocks, block_index:"},{"event":"cmd_output","timestamp":1607098324,"output":" 1, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_st"},{"event":"cmd_output","timestamp":1607098324,"output":"ate_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:04.207 [info] block_id: 601984c6-a71c-4dcd-8c1e-02da98248fc3,"},{"event":"cmd_output","timestamp":1607098324,"output":" type: BlockRequests, event: persisted build and sub_ppl details for block_request: 601984c6-a71c-4d"},{"event":"cmd_output","timestamp":1607098324,"output":"cd-8c1e-02da98248fc3, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L"},{"event":"cmd_output","timestamp":1607098324,"output":"41), \n\u001b[0m\u001b[22m\n16:12:04.209 [info] block_id: 601984c6-a71c-4dcd-8c1e-02da98248fc3, type: Tasks, "},{"event":"cmd_output","timestamp":1607098324,"output":"state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.Initializi"},{"event":"cmd_output","timestamp":1607098324,"output":"ngState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:04.212 [info] block_id: 601984c6-a71c-4dcd-8c1e-02da982"},{"event":"cmd_output","timestamp":1607098324,"output":"48fc3, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loope"},{"event":"cmd_output","timestamp":1607098324,"output":"r.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:04.236 [info] block_id: 601984c6-a71c-4dcd-8"},{"event":"cmd_output","timestamp":1607098324,"output":"c1e-02da98248fc3, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098324,"output":"ixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:04.272 [info] block_id: 601984c6-a"},{"event":"cmd_output","timestamp":1607098324,"output":"71c-4dcd-8c1e-02da98248fc3, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098324,"output":"gin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:04.284 [info] block_id: 601"},{"event":"cmd_output","timestamp":1607098324,"output":"984c6-a71c-4dcd-8c1e-02da98248fc3, type: Blocks, state: done, event: exit_scheduling, recovery_count"},{"event":"cmd_output","timestamp":1607098324,"output":": 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:04.293 [info] ppl_i"},{"event":"cmd_output","timestamp":1607098324,"output":"d: b3dbcda4-0128-48cf-a6a0-47abb439deb5, block_id: 601984c6-a71c-4dcd-8c1e-02da98248fc3, type: PplBl"},{"event":"cmd_output","timestamp":1607098324,"output":"ocks, block_index: 1, state: done, result: failed, event: exit_scheduling, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098324,"output":": Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:04.313 [info] ppl_id: b3dbcda4"},{"event":"cmd_output","timestamp":1607098324,"output":"-0128-48cf-a6a0-47abb439deb5, type: Ppls, state: done, result: failed, event: exit_scheduling, recov"},{"event":"cmd_output","timestamp":1607098324,"output":"ery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test skip-when"},{"event":"cmd_output","timestamp":1607098324,"output":" condition false for given branch - block executed (642.3ms)\u001b[0m\n\nPpl.PplBlocks.STMHandler.Waiting"},{"event":"cmd_output","timestamp":1607098324,"output":"State.Test\n * test PplBlocks run looper runs block without dependencies\r * test PplBlocks run loo"},{"event":"cmd_output","timestamp":1607098324,"output":"per runs block without dependencies (skipped)\n * test PplBlocks run looper runs block if dependenc"},{"event":"cmd_output","timestamp":1607098324,"output":"y passed\r * test PplBlocks run looper runs block if dependency passed (skipped)\n * test PplBlocks"},{"event":"cmd_output","timestamp":1607098324,"output":" run looper cancels block if dependency failed\r * test PplBlocks run looper cancels block if depend"},{"event":"cmd_output","timestamp":1607098324,"output":"ency failed (skipped)\n\nPpl.Grpc.Server.Test\n * test gRPC list_grouped() - both scopes user-gene"},{"event":"cmd_output","timestamp":1607098324,"output":"rated queues\u001b[22m\n16:12:04.407 [info] ppl_id: a4dcfce5-4b1f-4e7f-b605-ae1004e1a4b0, type: PplReque"},{"event":"cmd_output","timestamp":1607098324,"output":"sts, event: persisted schedule request with request_token: 3ae974a1-cbe9-4dd9-a3ef-aa53b9fccce6, ori"},{"event":"cmd_output","timestamp":1607098324,"output":"gin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:04."},{"event":"cmd_output","timestamp":1607098324,"output":"411 [info] ppl_id: a4dcfce5-4b1f-4e7f-b605-ae1004e1a4b0, type: PplRequests, event: persisted defini"},{"event":"cmd_output","timestamp":1607098324,"output":"tion for request with request_token: 3ae974a1-cbe9-4dd9-a3ef-aa53b9fccce6, origin: Elixir.Ppl.PplReq"},{"event":"cmd_output","timestamp":1607098324,"output":"uests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:04.416 [info] ppl_id: a"},{"event":"cmd_output","timestamp":1607098324,"output":"4dcfce5-4b1f-4e7f-b605-ae1004e1a4b0, type: Ppls, state: initializing, event: initializing, recovery_"},{"event":"cmd_output","timestamp":1607098324,"output":"count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:04."},{"event":"cmd_output","timestamp":1607098324,"output":"423 [info] Persisted ppl_sub_init for pipeline with ppl_id: a4dcfce5-4b1f-4e7f-b605-ae1004e1a4b0: %"},{"event":"cmd_output","timestamp":1607098324,"output":"Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, co"},{"event":"cmd_output","timestamp":1607098324,"output":"mpile_task_id: nil, error_description: nil, id: 157, in_scheduling: false, init_type: \"regular\", ins"},{"event":"cmd_output","timestamp":1607098324,"output":"erted_at: ~N[2020-12-04 16:12:04.421018], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"a4dcfce5-4b1f-4e7f-b605-ae1004e1a4b0\", recovery_count: "},{"event":"cmd_output","timestamp":1607098324,"output":"0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc"},{"event":"cmd_output","timestamp":1607098324,"output":": nil, updated_at: ~N[2020-12-04 16:12:04.421029]}\n\u001b[0m\u001b[22m\n16:12:04.429 [info] ppl_id: d07db697"},{"event":"cmd_output","timestamp":1607098324,"output":"-96b9-40db-8370-c7e39f6377a8, type: PplRequests, event: persisted schedule request with request_toke"},{"event":"cmd_output","timestamp":1607098324,"output":"n: 4e3c1053-1a21-40f0-864e-712cd94098a4, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.pro"},{"event":"cmd_output","timestamp":1607098324,"output":"cess_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:04.431 [info] ppl_id: d07db697-96b9-40db-8370-c7e39f6377a8"},{"event":"cmd_output","timestamp":1607098324,"output":", type: PplRequests, event: persisted definition for request with request_token: 4e3c1053-1a21-40f0-"},{"event":"cmd_output","timestamp":1607098324,"output":"864e-712cd94098a4, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76),"},{"event":"cmd_output","timestamp":1607098324,"output":" \n\u001b[0m\u001b[22m\n16:12:04.436 [info] ppl_id: d07db697-96b9-40db-8370-c7e39f6377a8, type: Ppls, state: "},{"event":"cmd_output","timestamp":1607098324,"output":"initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.proc"},{"event":"cmd_output","timestamp":1607098324,"output":"ess_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:04.443 [info] Persisted ppl_sub_init for pipeline with ppl"},{"event":"cmd_output","timestamp":1607098324,"output":"_id: d07db697-96b9-40db-8370-c7e39f6377a8: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema"},{"event":"cmd_output","timestamp":1607098324,"output":".Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 158, in_"},{"event":"cmd_output","timestamp":1607098324,"output":"scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:04.441108], pipeline_reque"},{"event":"cmd_output","timestamp":1607098324,"output":"sts: #Ecto.Association.NotLoaded, ppl_id: \"d07db697-96"},{"event":"cmd_output","timestamp":1607098324,"output":"b9-40db-8370-c7e39f6377a8\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", te"},{"event":"cmd_output","timestamp":1607098324,"output":"rminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:04.441151]}\n\u001b[0m"},{"event":"cmd_output","timestamp":1607098324,"output":"\u001b[22m\n16:12:04.450 [info] ppl_id: 706d2d37-096c-43b6-b3cd-bc4c1c6f402f, type: PplRequests, event: "},{"event":"cmd_output","timestamp":1607098324,"output":"persisted schedule request with request_token: 3b895083-2394-4673-a2fb-7deb36afa666, origin: Elixir."},{"event":"cmd_output","timestamp":1607098324,"output":"Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:04.452 [info] "},{"event":"cmd_output","timestamp":1607098324,"output":"ppl_id: 706d2d37-096c-43b6-b3cd-bc4c1c6f402f, type: PplRequests, event: persisted definition for req"},{"event":"cmd_output","timestamp":1607098324,"output":"uest with request_token: 3b895083-2394-4673-a2fb-7deb36afa666, origin: Elixir.Ppl.PplRequests.Model."},{"event":"cmd_output","timestamp":1607098324,"output":"PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:04.457 [info] ppl_id: 706d2d37-096c"},{"event":"cmd_output","timestamp":1607098324,"output":"-43b6-b3cd-bc4c1c6f402f, type: Ppls, state: initializing, event: initializing, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098324,"output":"igin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:04.462 [info] "},{"event":"cmd_output","timestamp":1607098324,"output":"Persisted ppl_sub_init for pipeline with ppl_id: 706d2d37-096c-43b6-b3cd-bc4c1c6f402f: %Ppl.PplSubIn"},{"event":"cmd_output","timestamp":1607098324,"output":"its.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_i"},{"event":"cmd_output","timestamp":1607098324,"output":"d: nil, error_description: nil, id: 159, in_scheduling: false, init_type: \"regular\", inserted_at: ~N"},{"event":"cmd_output","timestamp":1607098324,"output":"[2020-12-04 16:12:04.460524], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"706d2d37-096c-43b6-b3cd-bc4c1c6f402f\", recovery_count: 0, result: n"},{"event":"cmd_output","timestamp":1607098324,"output":"il, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updat"},{"event":"cmd_output","timestamp":1607098324,"output":"ed_at: ~N[2020-12-04 16:12:04.460537]}\n\u001b[0m\u001b[22m\n16:12:04.469 [info] ppl_id: b05c8b11-ba45-4ff9-9"},{"event":"cmd_output","timestamp":1607098324,"output":"46b-0c1b9a1b7071, type: PplRequests, event: persisted schedule request with request_token: 6b33668e-"},{"event":"cmd_output","timestamp":1607098324,"output":"836c-4824-8f0d-92da28aecf35, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_respons"},{"event":"cmd_output","timestamp":1607098324,"output":"e/2(L55), \n\u001b[0m\u001b[22m\n16:12:04.472 [info] ppl_id: b05c8b11-ba45-4ff9-946b-0c1b9a1b7071, type: PplR"},{"event":"cmd_output","timestamp":1607098324,"output":"equests, event: persisted definition for request with request_token: 6b33668e-836c-4824-8f0d-92da28a"},{"event":"cmd_output","timestamp":1607098324,"output":"ecf35, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098324,"output":"\n16:12:04.477 [info] ppl_id: b05c8b11-ba45-4ff9-946b-0c1b9a1b7071, type: Ppls, state: initializing"},{"event":"cmd_output","timestamp":1607098324,"output":", event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response"},{"event":"cmd_output","timestamp":1607098324,"output":"/2(L124), \n\u001b[0m\u001b[22m\n16:12:04.483 [info] Persisted ppl_sub_init for pipeline with ppl_id: b05c8b1"},{"event":"cmd_output","timestamp":1607098324,"output":"1-ba45-4ff9-946b-0c1b9a1b7071: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:l"},{"event":"cmd_output","timestamp":1607098324,"output":"oaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 160, in_scheduling: "},{"event":"cmd_output","timestamp":1607098324,"output":"false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:04.481177], pipeline_requests: #Ecto.A"},{"event":"cmd_output","timestamp":1607098324,"output":"ssociation.NotLoaded, ppl_id: \"b05c8b11-ba45-4ff9-946b"},{"event":"cmd_output","timestamp":1607098324,"output":"-0c1b9a1b7071\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_requ"},{"event":"cmd_output","timestamp":1607098324,"output":"est: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:04.481191]}\n\u001b[0m\u001b[22m\n16:12"},{"event":"cmd_output","timestamp":1607098324,"output":":04.489 [info] ppl_id: c6c7bf89-bdf9-433b-b8a4-4357bd9f7c1a, type: PplRequests, event: persisted sc"},{"event":"cmd_output","timestamp":1607098324,"output":"hedule request with request_token: 5a00b601-601f-425e-b169-8955baf9c806, origin: Elixir.Ppl.PplReque"},{"event":"cmd_output","timestamp":1607098324,"output":"sts.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:04.492 [info] ppl_id: c6c7"},{"event":"cmd_output","timestamp":1607098324,"output":"bf89-bdf9-433b-b8a4-4357bd9f7c1a, type: PplRequests, event: persisted definition for request with re"},{"event":"cmd_output","timestamp":1607098324,"output":"quest_token: 5a00b601-601f-425e-b169-8955baf9c806, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQ"},{"event":"cmd_output","timestamp":1607098324,"output":"ueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:04.497 [info] ppl_id: c6c7bf89-bdf9-433b-b8a4-4"},{"event":"cmd_output","timestamp":1607098324,"output":"357bd9f7c1a, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098324,"output":".Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:04.503 [info] Persisted pp"},{"event":"cmd_output","timestamp":1607098324,"output":"l_sub_init for pipeline with ppl_id: c6c7bf89-bdf9-433b-b8a4-4357bd9f7c1a: %Ppl.PplSubInits.Model.Pp"},{"event":"cmd_output","timestamp":1607098324,"output":"lSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, erro"},{"event":"cmd_output","timestamp":1607098324,"output":"r_description: nil, id: 161, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 "},{"event":"cmd_output","timestamp":1607098324,"output":"16:12:04.500803], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"c6c7bf89-bdf9-433b-b8a4-4357bd9f7c1a\", recovery_count: 0, result: nil, result_r"},{"event":"cmd_output","timestamp":1607098324,"output":"eason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[20"},{"event":"cmd_output","timestamp":1607098324,"output":"20-12-04 16:12:04.500841]}\n\u001b[0m\u001b[22m\n16:12:04.510 [info] ppl_id: 0531d42a-3eee-431d-aae5-34c9254c"},{"event":"cmd_output","timestamp":1607098324,"output":"a946, type: PplRequests, event: persisted schedule request with request_token: 3d42c780-d0a0-424c-98"},{"event":"cmd_output","timestamp":1607098324,"output":"85-243c37bd5b65, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n"},{"event":"cmd_output","timestamp":1607098324,"output":"\u001b[0m\u001b[22m\n16:12:04.512 [info] ppl_id: 0531d42a-3eee-431d-aae5-34c9254ca946, type: PplRequests, eve"},{"event":"cmd_output","timestamp":1607098324,"output":"nt: persisted definition for request with request_token: 3d42c780-d0a0-424c-9885-243c37bd5b65, origi"},{"event":"cmd_output","timestamp":1607098324,"output":"n: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:04.5"},{"event":"cmd_output","timestamp":1607098324,"output":"17 [info] ppl_id: 0531d42a-3eee-431d-aae5-34c9254ca946, type: Ppls, state: initializing, event: ini"},{"event":"cmd_output","timestamp":1607098324,"output":"tializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n"},{"event":"cmd_output","timestamp":1607098324,"output":"\u001b[0m\u001b[22m\n16:12:04.523 [info] Persisted ppl_sub_init for pipeline with ppl_id: 0531d42a-3eee-431d-"},{"event":"cmd_output","timestamp":1607098324,"output":"aae5-34c9254ca946: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipe"},{"event":"cmd_output","timestamp":1607098324,"output":"line_sub_inits\">, compile_task_id: nil, error_description: nil, id: 162, in_scheduling: false, init_"},{"event":"cmd_output","timestamp":1607098324,"output":"type: \"regular\", inserted_at: ~N[2020-12-04 16:12:04.522022], pipeline_requests: #Ecto.Association.N"},{"event":"cmd_output","timestamp":1607098324,"output":"otLoaded, ppl_id: \"0531d42a-3eee-431d-aae5-34c9254ca94"},{"event":"cmd_output","timestamp":1607098324,"output":"6\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, te"},{"event":"cmd_output","timestamp":1607098324,"output":"rminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:04.522036]}\n\u001b[0m\u001b[22m\n16:12:04.529 [inf"},{"event":"cmd_output","timestamp":1607098324,"output":"o] ppl_id: 69257f51-5d70-4717-bfae-596de5a30818, type: PplRequests, event: persisted schedule reque"},{"event":"cmd_output","timestamp":1607098324,"output":"st with request_token: 600293c3-18ae-490c-b8f7-f87c2338ec9f, origin: Elixir.Ppl.PplRequests.Model.Pp"},{"event":"cmd_output","timestamp":1607098324,"output":"lRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:04.531 [info] ppl_id: 69257f51-5d70-47"},{"event":"cmd_output","timestamp":1607098324,"output":"17-bfae-596de5a30818, type: PplRequests, event: persisted definition for request with request_token:"},{"event":"cmd_output","timestamp":1607098324,"output":" 600293c3-18ae-490c-b8f7-f87c2338ec9f, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.inser"},{"event":"cmd_output","timestamp":1607098324,"output":"t_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:04.535 [info] ppl_id: 69257f51-5d70-4717-bfae-596de5a30818,"},{"event":"cmd_output","timestamp":1607098324,"output":" type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Mo"},{"event":"cmd_output","timestamp":1607098324,"output":"del.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:04.542 [info] Persisted ppl_sub_init f"},{"event":"cmd_output","timestamp":1607098324,"output":"or pipeline with ppl_id: 69257f51-5d70-4717-bfae-596de5a30818: %Ppl.PplSubInits.Model.PplSubInits{__"},{"event":"cmd_output","timestamp":1607098324,"output":"meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_descriptio"},{"event":"cmd_output","timestamp":1607098324,"output":"n: nil, id: 163, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:04.540"},{"event":"cmd_output","timestamp":1607098324,"output":"737], pipeline_requests: #Ecto.Association.NotLoaded, "},{"event":"cmd_output","timestamp":1607098324,"output":"ppl_id: \"69257f51-5d70-4717-bfae-596de5a30818\", recovery_count: 0, result: nil, result_reason: nil, "},{"event":"cmd_output","timestamp":1607098324,"output":"state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:"},{"event":"cmd_output","timestamp":1607098324,"output":"12:04.540750]}\n\u001b[0m\u001b[22m\n16:12:04.549 [info] ppl_id: fa64ebfd-81b0-45f0-a462-f587e0dc6664, type: "},{"event":"cmd_output","timestamp":1607098324,"output":"PplRequests, event: persisted schedule request with request_token: 534e4b7c-ae61-400a-a6e1-aa1c3f9b1"},{"event":"cmd_output","timestamp":1607098324,"output":"010, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098324,"output":"6:12:04.552 [info] ppl_id: fa64ebfd-81b0-45f0-a462-f587e0dc6664, type: PplRequests, event: persiste"},{"event":"cmd_output","timestamp":1607098324,"output":"d definition for request with request_token: 534e4b7c-ae61-400a-a6e1-aa1c3f9b1010, origin: Elixir.Pp"},{"event":"cmd_output","timestamp":1607098324,"output":"l.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:04.555 [info] p"},{"event":"cmd_output","timestamp":1607098324,"output":"pl_id: fa64ebfd-81b0-45f0-a462-f587e0dc6664, type: Ppls, state: initializing, event: initializing, r"},{"event":"cmd_output","timestamp":1607098324,"output":"ecovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098324,"output":"6:12:04.559 [info] Persisted ppl_sub_init for pipeline with ppl_id: fa64ebfd-81b0-45f0-a462-f587e0d"},{"event":"cmd_output","timestamp":1607098324,"output":"c6664: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_ini"},{"event":"cmd_output","timestamp":1607098324,"output":"ts\">, compile_task_id: nil, error_description: nil, id: 164, in_scheduling: false, init_type: \"regul"},{"event":"cmd_output","timestamp":1607098324,"output":"ar\", inserted_at: ~N[2020-12-04 16:12:04.558235], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"fa64ebfd-81b0-45f0-a462-f587e0dc6664\", recovery"},{"event":"cmd_output","timestamp":1607098324,"output":"_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_requ"},{"event":"cmd_output","timestamp":1607098324,"output":"est_desc: nil, updated_at: ~N[2020-12-04 16:12:04.558248]}\n\u001b[0m\u001b[22m\n16:12:04.562 [info] Periodic"},{"event":"cmd_output","timestamp":1607098324,"output":" from module Elixir.Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.STMHandler.Initi"},{"event":"cmd_output","timestamp":1607098324,"output":"alizingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Initiali"},{"event":"cmd_output","timestamp":1607098324,"output":"zingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], cooling_time_se"},{"event":"cmd_output","timestamp":1607098324,"output":"c: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher_cb: #Function<0."},{"event":"cmd_output","timestamp":1607098324,"output":"125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :"},{"event":"cmd_output","timestamp":1607098324,"output":"terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.P"},{"event":"cmd_output","timestamp":1607098324,"output":"pls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:04.562 [info] Periodic from module Elixir.Ppl.Ppls.S"},{"event":"cmd_output","timestamp":1607098324,"output":"TMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 100 ms, metric_n"},{"event":"cmd_output","timestamp":1607098324,"output":"ame: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args: %{allowed_state"},{"event":"cmd_output","timestamp":1607098324,"output":"s: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppl"},{"event":"cmd_output","timestamp":1607098324,"output":"s, observed_state: \"pending\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler.PendingStat"},{"event":"cmd_output","timestamp":1607098324,"output":"e.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :r"},{"event":"cmd_output","timestamp":1607098324,"output":"ecovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098324,"output":"m\n16:12:04.563 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.QueuingState with name Elixi"},{"event":"cmd_output","timestamp":1607098324,"output":"r.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Pp"},{"event":"cmd_output","timestamp":1607098324,"output":"ls-STMHandler-QueuingState\"]}, recurring args: %{allowed_states: [\"queuing\", \"running\", \"done\"], coo"},{"event":"cmd_output","timestamp":1607098324,"output":"ling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", publisher_cb: #Fun"},{"event":"cmd_output","timestamp":1607098324,"output":"ction<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, returning: [:id"},{"event":"cmd_output","timestamp":1607098324,"output":", :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Mode"},{"event":"cmd_output","timestamp":1607098324,"output":"l.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:04.563 [info] Periodic from module Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098324,"output":"s.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHandler.RunningState :: period: 100 ms, metri"},{"event":"cmd_output","timestamp":1607098324,"output":"c_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring args: %{allowed_st"},{"event":"cmd_output","timestamp":1607098324,"output":"ates: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, obs"},{"event":"cmd_output","timestamp":1607098324,"output":"erved_state: \"running\", publisher_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler.RunningState.arg"},{"event":"cmd_output","timestamp":1607098324,"output":"s/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recove"},{"event":"cmd_output","timestamp":1607098324,"output":"ry_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098324,"output":":12:04.563 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.StoppingState with name Elixir.Pp"},{"event":"cmd_output","timestamp":1607098324,"output":"l.Ppls.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-"},{"event":"cmd_output","timestamp":1607098324,"output":"STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_se"},{"event":"cmd_output","timestamp":1607098324,"output":"c: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"stopping\", publisher_cb: #Function<0.718"},{"event":"cmd_output","timestamp":1607098324,"output":"03493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminat"},{"event":"cmd_output","timestamp":1607098324,"output":"e_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, tas"},{"event":"cmd_output","timestamp":1607098324,"output":"k_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:04.563 [info] Periodic from module Elixir.Ppl.PplSubInits.ST"},{"event":"cmd_output","timestamp":1607098324,"output":"MHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 100 ms, me"},{"event":"cmd_output","timestamp":1607098324,"output":"tric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args: %{"},{"event":"cmd_output","timestamp":1607098324,"output":"allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplS"},{"event":"cmd_output","timestamp":1607098324,"output":"ubInits, observed_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :termi"},{"event":"cmd_output","timestamp":1607098324,"output":"nate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model"},{"event":"cmd_output","timestamp":1607098324,"output":".PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:04.563 [info] Periodic from module Elixir.P"},{"event":"cmd_output","timestamp":1607098324,"output":"pl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler.FetchingState ::"},{"event":"cmd_output","timestamp":1607098324,"output":" period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}"},{"event":"cmd_output","timestamp":1607098324,"output":", recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"done\"], cooling_time_sec: -2, i"},{"event":"cmd_output","timestamp":1607098324,"output":"nitial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fetching\", publisher_cb: :skip, re"},{"event":"cmd_output","timestamp":1607098324,"output":"po: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count"},{"event":"cmd_output","timestamp":1607098324,"output":", :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:04."},{"event":"cmd_output","timestamp":1607098324,"output":"564 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CompilationState with name Elixir"},{"event":"cmd_output","timestamp":1607098324,"output":".Ppl.PplSubInits.STMHandler.CompilationState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\""},{"event":"cmd_output","timestamp":1607098324,"output":", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurring args: %{allowed_states: [\"regular_init"},{"event":"cmd_output","timestamp":1607098324,"output":"\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.Pp"},{"event":"cmd_output","timestamp":1607098324,"output":"lSubInits, observed_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, "},{"event":"cmd_output","timestamp":1607098324,"output":":terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits"},{"event":"cmd_output","timestamp":1607098324,"output":".Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:04.564 [info] Periodic from module El"},{"event":"cmd_output","timestamp":1607098324,"output":"ixir.Ppl.PplSubInits.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHandler.Regular"},{"event":"cmd_output","timestamp":1607098324,"output":"InitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-Regu"},{"event":"cmd_output","timestamp":1607098324,"output":"larInitState\"]}, recurring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, initial_query: Ppl"},{"event":"cmd_output","timestamp":1607098324,"output":".PplSubInits.Model.PplSubInits, observed_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoR"},{"event":"cmd_output","timestamp":1607098324,"output":"epo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], s"},{"event":"cmd_output","timestamp":1607098324,"output":"chema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:04.564 [info] P"},{"event":"cmd_output","timestamp":1607098324,"output":"eriodic from module Elixir.Ppl.PplBlocks.STMHandler.InitializingState with name Elixir.Ppl.PplBlocks"},{"event":"cmd_output","timestamp":1607098324,"output":".STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBloc"},{"event":"cmd_output","timestamp":1607098324,"output":"ks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"waiting\", \"d"},{"event":"cmd_output","timestamp":1607098324,"output":"one\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"initializ"},{"event":"cmd_output","timestamp":1607098324,"output":"ing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :st"},{"event":"cmd_output","timestamp":1607098324,"output":"ate, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_s"},{"event":"cmd_output","timestamp":1607098324,"output":"upervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:04.564 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHand"},{"event":"cmd_output","timestamp":1607098324,"output":"ler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler.WaitingState :: period: 1000 ms, metric_n"},{"event":"cmd_output","timestamp":1607098324,"output":"ame: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurring args: %{allowed_"},{"event":"cmd_output","timestamp":1607098324,"output":"states: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplB"},{"event":"cmd_output","timestamp":1607098324,"output":"locks, observed_state: \"waiting\", publisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.STMHandler.Wa"},{"event":"cmd_output","timestamp":1607098324,"output":"itingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :r"},{"event":"cmd_output","timestamp":1607098324,"output":"esult, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervis"},{"event":"cmd_output","timestamp":1607098324,"output":"or: :skip}\n\u001b[0m\u001b[22m\n16:12:04.565 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.Run"},{"event":"cmd_output","timestamp":1607098324,"output":"ningState with name Elixir.Ppl.PplBlocks.STMHandler.RunningState :: period: 1000 ms, metric_name: {\""},{"event":"cmd_output","timestamp":1607098324,"output":"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states:"},{"event":"cmd_output","timestamp":1607098324,"output":" [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks"},{"event":"cmd_output","timestamp":1607098324,"output":", observed_state: \"running\", publisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHandler.Runnin"},{"event":"cmd_output","timestamp":1607098324,"output":"gState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :resul"},{"event":"cmd_output","timestamp":1607098324,"output":"t, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_s"},{"event":"cmd_output","timestamp":1607098324,"output":"upervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:04.565 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHand"},{"event":"cmd_output","timestamp":1607098324,"output":"ler.StoppingState with name Elixir.Ppl.PplBlocks.STMHandler.StoppingState :: period: 1000 ms, metric"},{"event":"cmd_output","timestamp":1607098324,"output":"_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurring args: %{allow"},{"event":"cmd_output","timestamp":1607098324,"output":"ed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks,"},{"event":"cmd_output","timestamp":1607098324,"output":" observed_state: \"stopping\", publisher_cb: #Function<0.104215991/1 in Ppl.PplBlocks.STMHandler.Stopp"},{"event":"cmd_output","timestamp":1607098324,"output":"ingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :res"},{"event":"cmd_output","timestamp":1607098324,"output":"ult, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task"},{"event":"cmd_output","timestamp":1607098324,"output":"_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:04.565 [info] Periodic from module Elixir.Block.Blocks.STMHan"},{"event":"cmd_output","timestamp":1607098324,"output":"dler.InitializingState with name Elixir.Block.Blocks.STMHandler.InitializingState :: period: 100 ms,"},{"event":"cmd_output","timestamp":1607098324,"output":" metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, recurring arg"},{"event":"cmd_output","timestamp":1607098324,"output":"s: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Blocks.Model.Blo"},{"event":"cmd_output","timestamp":1607098324,"output":"cks, observed_state: \"initializing\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :te"},{"event":"cmd_output","timestamp":1607098324,"output":"rminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks"},{"event":"cmd_output","timestamp":1607098324,"output":", task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:04.565 [info] Periodic from module Elixir.Block.Blocks."},{"event":"cmd_output","timestamp":1607098324,"output":"STMHandler.RunningState with name Elixir.Block.Blocks.STMHandler.RunningState :: period: 100 ms, met"},{"event":"cmd_output","timestamp":1607098324,"output":"ric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-RunningState\"]}, recurring args: %{allo"},{"event":"cmd_output","timestamp":1607098324,"output":"wed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model"},{"event":"cmd_output","timestamp":1607098324,"output":".Blocks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :ter"},{"event":"cmd_output","timestamp":1607098324,"output":"minate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks,"},{"event":"cmd_output","timestamp":1607098324,"output":" task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:04.565 [info] Periodic from module Elixir.Block.Blocks.S"},{"event":"cmd_output","timestamp":1607098324,"output":"TMHandler.StoppingState with name Elixir.Block.Blocks.STMHandler.StoppingState :: period: 100 ms, me"},{"event":"cmd_output","timestamp":1607098324,"output":"tric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-StoppingState\"]}, recurring args: %{al"},{"event":"cmd_output","timestamp":1607098324,"output":"lowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, "},{"event":"cmd_output","timestamp":1607098324,"output":"observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_r"},{"event":"cmd_output","timestamp":1607098324,"output":"equest, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_su"},{"event":"cmd_output","timestamp":1607098324,"output":"pervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:04.566 [info] Periodic from module Elixir.Block.Tasks.STMHandler"},{"event":"cmd_output","timestamp":1607098324,"output":".PendingState with name Elixir.Block.Tasks.STMHandler.PendingState :: period: 100 ms, metric_name: {"},{"event":"cmd_output","timestamp":1607098324,"output":"\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingState\"]}, recurring args: %{allowed_states: "},{"event":"cmd_output","timestamp":1607098324,"output":"[\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Tasks.Model.Tasks, observed_state: \"p"},{"event":"cmd_output","timestamp":1607098324,"output":"ending\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at"},{"event":"cmd_output","timestamp":1607098324,"output":", :state, :recovery_count, :block_id, :build_request_id], schema: Block.Tasks.Model.Tasks, task_supe"},{"event":"cmd_output","timestamp":1607098324,"output":"rvisor: :skip}\n\u001b[0m\u001b[22m\n16:12:04.566 [info] Periodic from module Elixir.Block.Tasks.STMHandler.R"},{"event":"cmd_output","timestamp":1607098324,"output":"unningState with name Elixir.Block.Tasks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"P"},{"event":"cmd_output","timestamp":1607098324,"output":"pl.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\""},{"event":"cmd_output","timestamp":1607098324,"output":"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observe"},{"event":"cmd_output","timestamp":1607098324,"output":"d_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, "},{"event":"cmd_output","timestamp":1607098324,"output":":updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: "},{"event":"cmd_output","timestamp":1607098324,"output":":skip}\n\u001b[0m\u001b[22m\n16:12:04.566 [info] Periodic from module Elixir.Block.Tasks.STMHandler.StoppingS"},{"event":"cmd_output","timestamp":1607098324,"output":"tate with name Elixir.Block.Tasks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beh"},{"event":"cmd_output","timestamp":1607098324,"output":"older-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopp"},{"event":"cmd_output","timestamp":1607098324,"output":"ing\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"stoppi"},{"event":"cmd_output","timestamp":1607098324,"output":"ng\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :s"},{"event":"cmd_output","timestamp":1607098324,"output":"tate, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098324,"output":"2m\n16:12:04.687 [info] ppl_id: a4dcfce5-4b1f-4e7f-b605-ae1004e1a4b0, type: PplRequests, event: per"},{"event":"cmd_output","timestamp":1607098324,"output":"sisted source_args for pipeline: a4dcfce5-4b1f-4e7f-b605-ae1004e1a4b0, origin: Elixir.Ppl.PplRequest"},{"event":"cmd_output","timestamp":1607098324,"output":"s.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:04.691 [info] ppl_id: a4dcfce5-"},{"event":"cmd_output","timestamp":1607098324,"output":"4b1f-4e7f-b605-ae1004e1a4b0, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_co"},{"event":"cmd_output","timestamp":1607098324,"output":"unt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:04.715 [info] pp"},{"event":"cmd_output","timestamp":1607098324,"output":"l_id: a4dcfce5-4b1f-4e7f-b605-ae1004e1a4b0, type: PplSubInits, state: regular_init, event: exit_sche"},{"event":"cmd_output","timestamp":1607098324,"output":"duling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098324,"output":"2:04.742 [info] ppl_id: a4dcfce5-4b1f-4e7f-b605-ae1004e1a4b0, type: PplRequests, event: persisted d"},{"event":"cmd_output","timestamp":1607098324,"output":"efinition for request with request_token: 3ae974a1-cbe9-4dd9-a3ef-aa53b9fccce6, origin: Elixir.Ppl.P"},{"event":"cmd_output","timestamp":1607098324,"output":"plRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:04.747 [info] Queu"},{"event":"cmd_output","timestamp":1607098324,"output":"e persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inse"},{"event":"cmd_output","timestamp":1607098324,"output":"rted_at: ~N[2020-12-04 16:12:04.745188], name: \"master-.semaphore/semaphore.yml\", organization_id: \""},{"event":"cmd_output","timestamp":1607098324,"output":"c169bcc9-1ce8-4b57-897a-808d928239f9\", project_id: \"123\", queue_id: \"9d2eb7e9-0bf9-48ef-b3f9-3c18705"},{"event":"cmd_output","timestamp":1607098324,"output":"1aff6\", scope: \"project\", updated_at: ~N[2020-12-04 16:12:04.745199], user_generated: false}}\n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098324,"output":"[22m\n16:12:04.752 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitStat"},{"event":"cmd_output","timestamp":1607098324,"output":"e.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:04.752 [info] ppl_id: a4dcfce5-4b1f-4e7f-b605-ae1004e1a4b0, t"},{"event":"cmd_output","timestamp":1607098324,"output":"ype: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098324,"output":"ir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:04.763 [info] pp"},{"event":"cmd_output","timestamp":1607098324,"output":"l_id: a4dcfce5-4b1f-4e7f-b605-ae1004e1a4b0, type: PplSubInits, state: done, result: passed, event: e"},{"event":"cmd_output","timestamp":1607098324,"output":"xit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098324,"output":"2m\n16:12:04.770 [info] ppl_id: a4dcfce5-4b1f-4e7f-b605-ae1004e1a4b0, type: PplBlocks, block_index:"},{"event":"cmd_output","timestamp":1607098324,"output":" 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_st"},{"event":"cmd_output","timestamp":1607098324,"output":"ate_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:04.774 [info] ppl_id: a4dcfce5-4b1f-4e7f-b605-ae1004e1a4b0, t"},{"event":"cmd_output","timestamp":1607098324,"output":"ype: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl"},{"event":"cmd_output","timestamp":1607098324,"output":".log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:04.790 [info] ppl_id: a4dcfce5-4b1f-4e7f-b605-ae1004e1"},{"event":"cmd_output","timestamp":1607098324,"output":"a4b0, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.S"},{"event":"cmd_output","timestamp":1607098324,"output":"TM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:04.804 [info] ppl_id: a4dcfce5-4b1f-4e7f-b605-a"},{"event":"cmd_output","timestamp":1607098324,"output":"e1004e1a4b0, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098324,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:04.805 [info] ppl_id: d07db697-96b9-40db"},{"event":"cmd_output","timestamp":1607098324,"output":"-8370-c7e39f6377a8, type: PplRequests, event: persisted source_args for pipeline: d07db697-96b9-40db"},{"event":"cmd_output","timestamp":1607098324,"output":"-8370-c7e39f6377a8, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n"},{"event":"cmd_output","timestamp":1607098324,"output":"\u001b[0m\u001b[22m\n16:12:04.809 [info] ppl_id: d07db697-96b9-40db-8370-c7e39f6377a8, type: PplSubInits, sta"},{"event":"cmd_output","timestamp":1607098324,"output":"te: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_ch"},{"event":"cmd_output","timestamp":1607098324,"output":"ange/1(L90), \n\u001b[0m\u001b[22m\n16:12:04.816 [info] PplBlocks WaitingState STM is scheduling block 0 from"},{"event":"cmd_output","timestamp":1607098324,"output":" pipeline: \"a4dcfce5-4b1f-4e7f-b605-ae1004e1a4b0\"\n\u001b[0m\u001b[22m\n16:12:04.827 [info] block_id: 1c70911"},{"event":"cmd_output","timestamp":1607098324,"output":"a-735c-4d46-bbc6-f995091e2c7d, type: BlockRequests, event: persisted block run request from ppl a4dc"},{"event":"cmd_output","timestamp":1607098324,"output":"fce5-4b1f-4e7f-b605-ae1004e1a4b0 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequests"},{"event":"cmd_output","timestamp":1607098324,"output":"Queries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:04.830 [info] block_id: 1c70911a-735c-4d46-bbc6"},{"event":"cmd_output","timestamp":1607098324,"output":"-f995091e2c7d, type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098324,"output":"ixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:04.835 [info] Block 0 of pi"},{"event":"cmd_output","timestamp":1607098324,"output":"peline with id: a4dcfce5-4b1f-4e7f-b605-ae1004e1a4b0 scheduled in block service with id: : \"1c70911a"},{"event":"cmd_output","timestamp":1607098324,"output":"-735c-4d46-bbc6-f995091e2c7d\"\n\u001b[0m\u001b[22m\n16:12:04.839 [info] block_id: 1c70911a-735c-4d46-bbc6-f99"},{"event":"cmd_output","timestamp":1607098324,"output":"5091e2c7d, type: BlockRequests, event: persisted build and sub_ppl details for block_request: 1c7091"},{"event":"cmd_output","timestamp":1607098324,"output":"1a-735c-4d46-bbc6-f995091e2c7d, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert"},{"event":"cmd_output","timestamp":1607098324,"output":"_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:04.840 [info] ppl_id: a4dcfce5-4b1f-4e7f-b605-ae1004e1a4b0, type:"},{"event":"cmd_output","timestamp":1607098324,"output":" PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098324,"output":"r.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:04.844 [info] block_id: 1c70911a-735c"},{"event":"cmd_output","timestamp":1607098324,"output":"-4d46-bbc6-f995091e2c7d, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098324,"output":"xir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:04.846 [info] ppl"},{"event":"cmd_output","timestamp":1607098324,"output":"_id: d07db697-96b9-40db-8370-c7e39f6377a8, type: PplSubInits, state: regular_init, event: exit_sched"},{"event":"cmd_output","timestamp":1607098324,"output":"uling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12"},{"event":"cmd_output","timestamp":1607098324,"output":":04.848 [info] block_id: 1c70911a-735c-4d46-bbc6-f995091e2c7d, type: Blocks, state: running, event:"},{"event":"cmd_output","timestamp":1607098324,"output":" exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098324,"output":"[22m\n16:12:04.867 [info] block_id: 1c70911a-735c-4d46-bbc6-f995091e2c7d, type: Tasks, state: runni"},{"event":"cmd_output","timestamp":1607098324,"output":"ng, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90"},{"event":"cmd_output","timestamp":1607098324,"output":"), \n\u001b[0m\u001b[22m\n16:12:04.882 [info] ppl_id: d07db697-96b9-40db-8370-c7e39f6377a8, type: PplRequests"},{"event":"cmd_output","timestamp":1607098324,"output":", event: persisted definition for request with request_token: 4e3c1053-1a21-40f0-864e-712cd94098a4, "},{"event":"cmd_output","timestamp":1607098324,"output":"origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12"},{"event":"cmd_output","timestamp":1607098324,"output":":04.895 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1"},{"event":"cmd_output","timestamp":1607098324,"output":"(L105), \n\u001b[0m\u001b[22m\n16:12:04.895 [info] ppl_id: d07db697-96b9-40db-8370-c7e39f6377a8, type: PplBlo"},{"event":"cmd_output","timestamp":1607098324,"output":"cks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplS"},{"event":"cmd_output","timestamp":1607098324,"output":"ubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:04.899 [info] ppl_id: d07db"},{"event":"cmd_output","timestamp":1607098324,"output":"697-96b9-40db-8370-c7e39f6377a8, type: PplSubInits, state: done, result: passed, event: exit_schedul"},{"event":"cmd_output","timestamp":1607098324,"output":"ing, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:0"},{"event":"cmd_output","timestamp":1607098324,"output":"4.910 [info] block_id: 1c70911a-735c-4d46-bbc6-f995091e2c7d, type: Tasks, state: done, event: exit_"},{"event":"cmd_output","timestamp":1607098324,"output":"scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098324,"output":"16:12:04.921 [info] ppl_id: d07db697-96b9-40db-8370-c7e39f6377a8, type: PplBlocks, block_index: 0, "},{"event":"cmd_output","timestamp":1607098324,"output":"state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_"},{"event":"cmd_output","timestamp":1607098324,"output":"change/1(L90), \n\u001b[0m\u001b[22m\n16:12:04.923 [info] block_id: 1c70911a-735c-4d46-bbc6-f995091e2c7d, typ"},{"event":"cmd_output","timestamp":1607098324,"output":"e: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.lo"},{"event":"cmd_output","timestamp":1607098324,"output":"g_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:04.923 [info] ppl_id: 706d2d37-096c-43b6-b3cd-bc4c1c6f402"},{"event":"cmd_output","timestamp":1607098324,"output":"f, type: PplRequests, event: persisted source_args for pipeline: 706d2d37-096c-43b6-b3cd-bc4c1c6f402"},{"event":"cmd_output","timestamp":1607098324,"output":"f, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:"},{"event":"cmd_output","timestamp":1607098324,"output":"04.923 [info] ppl_id: d07db697-96b9-40db-8370-c7e39f6377a8, type: Ppls, state: pending, event: exit"},{"event":"cmd_output","timestamp":1607098324,"output":"_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098324,"output":"\n16:12:04.927 [info] ppl_id: 706d2d37-096c-43b6-b3cd-bc4c1c6f402f, type: PplSubInits, state: fetchi"},{"event":"cmd_output","timestamp":1607098324,"output":"ng, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90"},{"event":"cmd_output","timestamp":1607098324,"output":"), \n\u001b[0m\u001b[22m\n16:12:04.940 [info] ppl_id: d07db697-96b9-40db-8370-c7e39f6377a8, type: Ppls, state"},{"event":"cmd_output","timestamp":1607098324,"output":": queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chang"},{"event":"cmd_output","timestamp":1607098324,"output":"e/1(L90), \n\u001b[0m\u001b[22m\n16:12:04.945 [info] ppl_id: a4dcfce5-4b1f-4e7f-b605-ae1004e1a4b0, block_id: "},{"event":"cmd_output","timestamp":1607098324,"output":"1c70911a-735c-4d46-bbc6-f995091e2c7d, type: PplBlocks, block_index: 0, state: done, result: passed, "},{"event":"cmd_output","timestamp":1607098324,"output":"event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \r"},{"event":"cmd_output","timestamp":1607098324,"output":"\n\u001b[0m\u001b[22m\n16:12:04.969 [info] ppl_id: a4dcfce5-4b1f-4e7f-b605-ae1004e1a4b0, type: Ppls, state: do"},{"event":"cmd_output","timestamp":1607098324,"output":"ne, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_st"},{"event":"cmd_output","timestamp":1607098324,"output":"ate_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:04.975 [info] ppl_id: 706d2d37-096c-43b6-b3cd-bc4c1c6f402f, t"},{"event":"cmd_output","timestamp":1607098324,"output":"ype: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loo"},{"event":"cmd_output","timestamp":1607098325,"output":"per.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:05.012 [info] ppl_id: 706d2d37-096c-43b6-b"},{"event":"cmd_output","timestamp":1607098325,"output":"3cd-bc4c1c6f402f, type: PplRequests, event: persisted definition for request with request_token: 3b8"},{"event":"cmd_output","timestamp":1607098325,"output":"95083-2394-4673-a2fb-7deb36afa666, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_de"},{"event":"cmd_output","timestamp":1607098325,"output":"finition/3(L76), \n\u001b[0m\u001b[22m\n16:12:05.023 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{_"},{"event":"cmd_output","timestamp":1607098325,"output":"_meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:12:05.016862], name"},{"event":"cmd_output","timestamp":1607098325,"output":": \"master-.semaphore/semaphore.yml\", organization_id: \"bb36fa3f-af59-4fe2-a9ce-6aacb08c1ff2\", projec"},{"event":"cmd_output","timestamp":1607098325,"output":"t_id: \"456\", queue_id: \"ecf0cb51-9897-44c5-a3e7-50255b5a7346\", scope: \"project\", updated_at: ~N[2020"},{"event":"cmd_output","timestamp":1607098325,"output":"-12-04 16:12:05.016874], user_generated: false}}\n\u001b[0m\u001b[22m\n16:12:05.031 [info] event: created, or"},{"event":"cmd_output","timestamp":1607098325,"output":"igin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:05.031 "},{"event":"cmd_output","timestamp":1607098325,"output":"[info] ppl_id: 706d2d37-096c-43b6-b3cd-bc4c1c6f402f, type: PplBlocks, block_index: 0, state: initia"},{"event":"cmd_output","timestamp":1607098325,"output":"lizing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitStat"},{"event":"cmd_output","timestamp":1607098325,"output":"e.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:05.038 [info] ppl_id: 706d2d37-096c-43b6-b3cd-bc4c1c6f402f, t"},{"event":"cmd_output","timestamp":1607098325,"output":"ype: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098325,"output":"ixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:05.038 [info] ppl_id: d07db697-96b"},{"event":"cmd_output","timestamp":1607098325,"output":"9-40db-8370-c7e39f6377a8, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098325,"output":"gin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:05.050 [info] PplBlocks Wai"},{"event":"cmd_output","timestamp":1607098325,"output":"tingState STM is scheduling block 0 from pipeline: \"d07db697-96b9-40db-8370-c7e39f6377a8\"\n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098325,"output":"\n16:12:05.051 [info] ppl_id: b05c8b11-ba45-4ff9-946b-0c1b9a1b7071, type: PplRequests, event: persi"},{"event":"cmd_output","timestamp":1607098325,"output":"sted source_args for pipeline: b05c8b11-ba45-4ff9-946b-0c1b9a1b7071, origin: Elixir.Ppl.PplRequests."},{"event":"cmd_output","timestamp":1607098325,"output":"Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:05.052 [info] ppl_id: 706d2d37-09"},{"event":"cmd_output","timestamp":1607098325,"output":"6c-43b6-b3cd-bc4c1c6f402f, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, "},{"event":"cmd_output","timestamp":1607098325,"output":"recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:05.056"},{"event":"cmd_output","timestamp":1607098325,"output":" [info] ppl_id: b05c8b11-ba45-4ff9-946b-0c1b9a1b7071, type: PplSubInits, state: fetching, event: ex"},{"event":"cmd_output","timestamp":1607098325,"output":"it_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098325,"output":"m\n16:12:05.060 [info] block_id: 926ce34b-6184-46f2-9b4a-341f74019ae5, type: BlockRequests, event: "},{"event":"cmd_output","timestamp":1607098325,"output":"persisted block run request from ppl d07db697-96b9-40db-8370-c7e39f6377a8 for block 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098325,"output":"r.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:05.062 "},{"event":"cmd_output","timestamp":1607098325,"output":"[info] ppl_id: 706d2d37-096c-43b6-b3cd-bc4c1c6f402f, type: Ppls, state: pending, event: exit_schedu"},{"event":"cmd_output","timestamp":1607098325,"output":"ling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:"},{"event":"cmd_output","timestamp":1607098325,"output":"05.066 [info] block_id: 926ce34b-6184-46f2-9b4a-341f74019ae5, type: Blocks, state: initializing, ev"},{"event":"cmd_output","timestamp":1607098325,"output":"ent: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43),"},{"event":"cmd_output","timestamp":1607098325,"output":" \n\u001b[0m\u001b[22m\n16:12:05.070 [info] Block 0 of pipeline with id: d07db697-96b9-40db-8370-c7e39f6377a8"},{"event":"cmd_output","timestamp":1607098325,"output":" scheduled in block service with id: : \"926ce34b-6184-46f2-9b4a-341f74019ae5\"\n\u001b[0m\u001b[22m\n16:12:05.0"},{"event":"cmd_output","timestamp":1607098325,"output":"73 [info] ppl_id: d07db697-96b9-40db-8370-c7e39f6377a8, type: PplBlocks, block_index: 0, state: run"},{"event":"cmd_output","timestamp":1607098325,"output":"ning, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098325,"output":"90), \n\u001b[0m\u001b[22m\n16:12:05.078 [info] ppl_id: 706d2d37-096c-43b6-b3cd-bc4c1c6f402f, type: Ppls, sta"},{"event":"cmd_output","timestamp":1607098325,"output":"te: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_cha"},{"event":"cmd_output","timestamp":1607098325,"output":"nge/1(L90), \n\u001b[0m\u001b[22m\n16:12:05.085 [info] block_id: 926ce34b-6184-46f2-9b4a-341f74019ae5, type: "},{"event":"cmd_output","timestamp":1607098325,"output":"BlockRequests, event: persisted build and sub_ppl details for block_request: 926ce34b-6184-46f2-9b4a"},{"event":"cmd_output","timestamp":1607098325,"output":"-341f74019ae5, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n"},{"event":"cmd_output","timestamp":1607098325,"output":"\u001b[0m\u001b[22m\n16:12:05.089 [info] block_id: 926ce34b-6184-46f2-9b4a-341f74019ae5, type: Tasks, state: "},{"event":"cmd_output","timestamp":1607098325,"output":"pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState"},{"event":"cmd_output","timestamp":1607098325,"output":".all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:05.095 [info] ppl_id: 706d2d37-096c-43b6-b3cd-bc4c1c6f402f, ty"},{"event":"cmd_output","timestamp":1607098325,"output":"pe: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl."},{"event":"cmd_output","timestamp":1607098325,"output":"log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:05.096 [info] block_id: 926ce34b-6184-46f2-9b4a-341f740"},{"event":"cmd_output","timestamp":1607098325,"output":"19ae5, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loope"},{"event":"cmd_output","timestamp":1607098325,"output":"r.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:05.105 [info] ppl_id: b05c8b11-ba45-4ff9-946"},{"event":"cmd_output","timestamp":1607098325,"output":"b-0c1b9a1b7071, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098325,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:05.107 [info] PplBlocks W"},{"event":"cmd_output","timestamp":1607098325,"output":"aitingState STM is scheduling block 0 from pipeline: \"706d2d37-096c-43b6-b3cd-bc4c1c6f402f\"\n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098325,"output":"2m\n16:12:05.125 [info] block_id: 5085d705-a926-4d97-b514-5199500de24b, type: BlockRequests, event:"},{"event":"cmd_output","timestamp":1607098325,"output":" persisted block run request from ppl 706d2d37-096c-43b6-b3cd-bc4c1c6f402f for block 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098325,"output":"ir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:05.130"},{"event":"cmd_output","timestamp":1607098325,"output":" [info] block_id: 926ce34b-6184-46f2-9b4a-341f74019ae5, type: Tasks, state: running, event: exit_sc"},{"event":"cmd_output","timestamp":1607098325,"output":"heduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098325,"output":":12:05.132 [info] block_id: 5085d705-a926-4d97-b514-5199500de24b, type: Blocks, state: initializing"},{"event":"cmd_output","timestamp":1607098325,"output":", event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L"},{"event":"cmd_output","timestamp":1607098325,"output":"43), \n\u001b[0m\u001b[22m\n16:12:05.140 [info] Block 0 of pipeline with id: 706d2d37-096c-43b6-b3cd-bc4c1c6f"},{"event":"cmd_output","timestamp":1607098325,"output":"402f scheduled in block service with id: : \"5085d705-a926-4d97-b514-5199500de24b\"\n\u001b[0m\u001b[22m\n16:12:"},{"event":"cmd_output","timestamp":1607098325,"output":"05.147 [info] ppl_id: 706d2d37-096c-43b6-b3cd-bc4c1c6f402f, type: PplBlocks, block_index: 0, state:"},{"event":"cmd_output","timestamp":1607098325,"output":" running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change"},{"event":"cmd_output","timestamp":1607098325,"output":"/1(L90), \n\u001b[0m\u001b[22m\n16:12:05.159 [info] block_id: 5085d705-a926-4d97-b514-5199500de24b, type: Blo"},{"event":"cmd_output","timestamp":1607098325,"output":"ckRequests, event: persisted build and sub_ppl details for block_request: 5085d705-a926-4d97-b514-51"},{"event":"cmd_output","timestamp":1607098325,"output":"99500de24b, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098325,"output":"m\u001b[22m\n16:12:05.159 [info] block_id: 926ce34b-6184-46f2-9b4a-341f74019ae5, type: Tasks, state: don"},{"event":"cmd_output","timestamp":1607098325,"output":"e, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90)"},{"event":"cmd_output","timestamp":1607098325,"output":", \n\u001b[0m\u001b[22m\n16:12:05.167 [info] block_id: 5085d705-a926-4d97-b514-5199500de24b, type: Tasks, sta"},{"event":"cmd_output","timestamp":1607098325,"output":"te: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingS"},{"event":"cmd_output","timestamp":1607098325,"output":"tate.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:05.169 [info] block_id: 5085d705-a926-4d97-b514-5199500de2"},{"event":"cmd_output","timestamp":1607098325,"output":"4b, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.S"},{"event":"cmd_output","timestamp":1607098325,"output":"TM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:05.172 [info] ppl_id: b05c8b11-ba45-4ff9-946b-0"},{"event":"cmd_output","timestamp":1607098325,"output":"c1b9a1b7071, type: PplRequests, event: persisted definition for request with request_token: 6b33668e"},{"event":"cmd_output","timestamp":1607098325,"output":"-836c-4824-8f0d-92da28aecf35, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definit"},{"event":"cmd_output","timestamp":1607098325,"output":"ion/3(L76), \n\u001b[0m\u001b[22m\n16:12:05.180 [info] ppl_id: c6c7bf89-bdf9-433b-b8a4-4357bd9f7c1a, type: Pp"},{"event":"cmd_output","timestamp":1607098325,"output":"lRequests, event: persisted source_args for pipeline: c6c7bf89-bdf9-433b-b8a4-4357bd9f7c1a, origin: "},{"event":"cmd_output","timestamp":1607098325,"output":"Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:05.180 [inf"},{"event":"cmd_output","timestamp":1607098325,"output":"o] block_id: 926ce34b-6184-46f2-9b4a-341f74019ae5, type: Blocks, state: done, event: exit_schedulin"},{"event":"cmd_output","timestamp":1607098325,"output":"g, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:05."},{"event":"cmd_output","timestamp":1607098325,"output":"189 [info] ppl_id: c6c7bf89-bdf9-433b-b8a4-4357bd9f7c1a, type: PplSubInits, state: fetching, event:"},{"event":"cmd_output","timestamp":1607098325,"output":" exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098325,"output":"[22m\n16:12:05.196 [info] ppl_id: d07db697-96b9-40db-8370-c7e39f6377a8, block_id: 926ce34b-6184-46f"},{"event":"cmd_output","timestamp":1607098325,"output":"2-9b4a-341f74019ae5, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_sched"},{"event":"cmd_output","timestamp":1607098325,"output":"uling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12"},{"event":"cmd_output","timestamp":1607098325,"output":":05.203 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1"},{"event":"cmd_output","timestamp":1607098325,"output":"(L105), \n\u001b[0m\u001b[22m\n16:12:05.203 [info] ppl_id: b05c8b11-ba45-4ff9-946b-0c1b9a1b7071, type: PplBlo"},{"event":"cmd_output","timestamp":1607098325,"output":"cks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplS"},{"event":"cmd_output","timestamp":1607098325,"output":"ubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:05.204 [info] block_id: 508"},{"event":"cmd_output","timestamp":1607098325,"output":"5d705-a926-4d97-b514-5199500de24b, type: Tasks, state: running, event: exit_scheduling, recovery_cou"},{"event":"cmd_output","timestamp":1607098325,"output":"nt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:05.207 [info] ppl"},{"event":"cmd_output","timestamp":1607098325,"output":"_id: b05c8b11-ba45-4ff9-946b-0c1b9a1b7071, type: PplSubInits, state: done, result: passed, event: ex"},{"event":"cmd_output","timestamp":1607098325,"output":"it_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098325,"output":"m\n16:12:05.219 [info] ppl_id: b05c8b11-ba45-4ff9-946b-0c1b9a1b7071, type: PplBlocks, block_index: "},{"event":"cmd_output","timestamp":1607098325,"output":"0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_sta"},{"event":"cmd_output","timestamp":1607098325,"output":"te_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:05.231 [info] ppl_id: b05c8b11-ba45-4ff9-946b-0c1b9a1b7071, ty"},{"event":"cmd_output","timestamp":1607098325,"output":"pe: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl."},{"event":"cmd_output","timestamp":1607098325,"output":"log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:05.233 [info] ppl_id: d07db697-96b9-40db-8370-c7e39f637"},{"event":"cmd_output","timestamp":1607098325,"output":"7a8, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098325,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:05.243 [info] ppl_id: b05c8b11-ba45"},{"event":"cmd_output","timestamp":1607098325,"output":"-4ff9-946b-0c1b9a1b7071, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098325,"output":"in: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:05.252 [info] ppl_id: c6c7bf"},{"event":"cmd_output","timestamp":1607098325,"output":"89-bdf9-433b-b8a4-4357bd9f7c1a, type: PplSubInits, state: regular_init, event: exit_scheduling, reco"},{"event":"cmd_output","timestamp":1607098325,"output":"very_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:05.278 [in"},{"event":"cmd_output","timestamp":1607098325,"output":"fo] block_id: 5085d705-a926-4d97-b514-5199500de24b, type: Tasks, state: done, event: exit_schedulin"},{"event":"cmd_output","timestamp":1607098325,"output":"g, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:05."},{"event":"cmd_output","timestamp":1607098325,"output":"286 [info] block_id: 5085d705-a926-4d97-b514-5199500de24b, type: Blocks, state: done, event: exit_s"},{"event":"cmd_output","timestamp":1607098325,"output":"cheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098325,"output":"6:12:05.293 [info] ppl_id: c6c7bf89-bdf9-433b-b8a4-4357bd9f7c1a, type: PplRequests, event: persiste"},{"event":"cmd_output","timestamp":1607098325,"output":"d definition for request with request_token: 5a00b601-601f-425e-b169-8955baf9c806, origin: Elixir.Pp"},{"event":"cmd_output","timestamp":1607098325,"output":"l.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:05.302 [info] Q"},{"event":"cmd_output","timestamp":1607098325,"output":"ueue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, i"},{"event":"cmd_output","timestamp":1607098325,"output":"nserted_at: ~N[2020-12-04 16:12:05.297107], name: \"dev-.semaphore/semaphore.yml\", organization_id: \""},{"event":"cmd_output","timestamp":1607098325,"output":"b578ff0f-3758-448e-a619-1242ce45ec25\", project_id: \"123\", queue_id: \"108138c2-b718-400f-bfe7-92b155a"},{"event":"cmd_output","timestamp":1607098325,"output":"3315b\", scope: \"project\", updated_at: ~N[2020-12-04 16:12:05.297119], user_generated: false}}\n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098325,"output":"[22m\n16:12:05.303 [info] ppl_id: 706d2d37-096c-43b6-b3cd-bc4c1c6f402f, block_id: 5085d705-a926-4d9"},{"event":"cmd_output","timestamp":1607098325,"output":"7-b514-5199500de24b, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_sched"},{"event":"cmd_output","timestamp":1607098325,"output":"uling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12"},{"event":"cmd_output","timestamp":1607098325,"output":":05.307 [info] ppl_id: 0531d42a-3eee-431d-aae5-34c9254ca946, type: PplRequests, event: persisted so"},{"event":"cmd_output","timestamp":1607098325,"output":"urce_args for pipeline: 0531d42a-3eee-431d-aae5-34c9254ca946, origin: Elixir.Ppl.PplRequests.Model.P"},{"event":"cmd_output","timestamp":1607098325,"output":"plRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:05.308 [info] event: created, origin: El"},{"event":"cmd_output","timestamp":1607098325,"output":"ixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:05.308 [info] "},{"event":"cmd_output","timestamp":1607098325,"output":"ppl_id: c6c7bf89-bdf9-433b-b8a4-4357bd9f7c1a, type: PplBlocks, block_index: 0, state: initializing, "},{"event":"cmd_output","timestamp":1607098325,"output":"event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok"},{"event":"cmd_output","timestamp":1607098325,"output":"?/1(L105), \n\u001b[0m\u001b[22m\n16:12:05.311 [info] ppl_id: c6c7bf89-bdf9-433b-b8a4-4357bd9f7c1a, type: Ppl"},{"event":"cmd_output","timestamp":1607098325,"output":"SubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loo"},{"event":"cmd_output","timestamp":1607098325,"output":"per.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:05.317 [info] ppl_id: 0531d42a-3eee-431d-a"},{"event":"cmd_output","timestamp":1607098325,"output":"ae5-34c9254ca946, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098325,"output":"gin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:05.331 [info] ppl_id: c6c7b"},{"event":"cmd_output","timestamp":1607098325,"output":"f89-bdf9-433b-b8a4-4357bd9f7c1a, type: Ppls, state: pending, event: exit_scheduling, recovery_count:"},{"event":"cmd_output","timestamp":1607098325,"output":" 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:05.332 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098325,"output":": c6c7bf89-bdf9-433b-b8a4-4357bd9f7c1a, type: PplBlocks, block_index: 0, state: waiting, event: exit"},{"event":"cmd_output","timestamp":1607098325,"output":"_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098325,"output":"\n16:12:05.336 [info] ppl_id: 706d2d37-096c-43b6-b3cd-bc4c1c6f402f, type: Ppls, state: done, result:"},{"event":"cmd_output","timestamp":1607098325,"output":" passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/"},{"event":"cmd_output","timestamp":1607098325,"output":"1(L90), \n\u001b[0m\u001b[22m\n16:12:05.342 [info] ppl_id: c6c7bf89-bdf9-433b-b8a4-4357bd9f7c1a, type: Ppls, "},{"event":"cmd_output","timestamp":1607098325,"output":"state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_"},{"event":"cmd_output","timestamp":1607098325,"output":"change/1(L90), \n\u001b[0m\u001b[22m\n16:12:05.353 [info] ppl_id: c6c7bf89-bdf9-433b-b8a4-4357bd9f7c1a, type:"},{"event":"cmd_output","timestamp":1607098325,"output":" Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098325,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:05.360 [info] PplBlocks WaitingState STM is scheduling blo"},{"event":"cmd_output","timestamp":1607098325,"output":"ck 0 from pipeline: \"c6c7bf89-bdf9-433b-b8a4-4357bd9f7c1a\"\n\u001b[0m\u001b[22m\n16:12:05.362 [info] ppl_id: "},{"event":"cmd_output","timestamp":1607098325,"output":"0531d42a-3eee-431d-aae5-34c9254ca946, type: PplSubInits, state: regular_init, event: exit_scheduling"},{"event":"cmd_output","timestamp":1607098325,"output":", recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:05.3"},{"event":"cmd_output","timestamp":1607098325,"output":"71 [info] block_id: a7c2bf7a-3767-48f8-920d-cdb38adbb8c7, type: BlockRequests, event: persisted blo"},{"event":"cmd_output","timestamp":1607098325,"output":"ck run request from ppl c6c7bf89-bdf9-433b-b8a4-4357bd9f7c1a for block 0, origin: Elixir.Block.Block"},{"event":"cmd_output","timestamp":1607098325,"output":"Requests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:05.373 [info] block"},{"event":"cmd_output","timestamp":1607098325,"output":"_id: a7c2bf7a-3767-48f8-920d-cdb38adbb8c7, type: Blocks, state: initializing, event: initializing, r"},{"event":"cmd_output","timestamp":1607098325,"output":"ecovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:"},{"event":"cmd_output","timestamp":1607098325,"output":"05.376 [info] Block 0 of pipeline with id: c6c7bf89-bdf9-433b-b8a4-4357bd9f7c1a scheduled in block "},{"event":"cmd_output","timestamp":1607098325,"output":"service with id: : \"a7c2bf7a-3767-48f8-920d-cdb38adbb8c7\"\n\u001b[0m\u001b[22m\n16:12:05.381 [info] ppl_id: b"},{"event":"cmd_output","timestamp":1607098325,"output":"05c8b11-ba45-4ff9-946b-0c1b9a1b7071, type: Ppls, state: running, event: exit_scheduling, recovery_co"},{"event":"cmd_output","timestamp":1607098325,"output":"unt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:05.384 [info] bl"},{"event":"cmd_output","timestamp":1607098325,"output":"ock_id: a7c2bf7a-3767-48f8-920d-cdb38adbb8c7, type: BlockRequests, event: persisted build and sub_pp"},{"event":"cmd_output","timestamp":1607098325,"output":"l details for block_request: a7c2bf7a-3767-48f8-920d-cdb38adbb8c7, origin: Elixir.Block.BlockRequest"},{"event":"cmd_output","timestamp":1607098325,"output":"s.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:05.387 [info] ppl_id: c6c7bf89"},{"event":"cmd_output","timestamp":1607098325,"output":"-bdf9-433b-b8a4-4357bd9f7c1a, type: PplBlocks, block_index: 0, state: running, event: exit_schedulin"},{"event":"cmd_output","timestamp":1607098325,"output":"g, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:05."},{"event":"cmd_output","timestamp":1607098325,"output":"396 [info] block_id: a7c2bf7a-3767-48f8-920d-cdb38adbb8c7, type: Tasks, state: pending, event: crea"},{"event":"cmd_output","timestamp":1607098325,"output":"ted, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n"},{"event":"cmd_output","timestamp":1607098325,"output":"\u001b[0m\u001b[22m\n16:12:05.397 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"b05"},{"event":"cmd_output","timestamp":1607098325,"output":"c8b11-ba45-4ff9-946b-0c1b9a1b7071\"\n\u001b[0m\u001b[22m\n16:12:05.401 [info] block_id: a7c2bf7a-3767-48f8-920"},{"event":"cmd_output","timestamp":1607098325,"output":"d-cdb38adbb8c7, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098325,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:05.405 [info] ppl_id: 0531d42a-3eee"},{"event":"cmd_output","timestamp":1607098325,"output":"-431d-aae5-34c9254ca946, type: PplRequests, event: persisted definition for request with request_tok"},{"event":"cmd_output","timestamp":1607098325,"output":"en: 3d42c780-d0a0-424c-9885-243c37bd5b65, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.in"},{"event":"cmd_output","timestamp":1607098325,"output":"sert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:05.409 [info] block_id: ae0d430e-4f09-4896-a3eb-e84f1f62"},{"event":"cmd_output","timestamp":1607098325,"output":"5ce5, type: BlockRequests, event: persisted block run request from ppl b05c8b11-ba45-4ff9-946b-0c1b9"},{"event":"cmd_output","timestamp":1607098325,"output":"a1b7071 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/"},{"event":"cmd_output","timestamp":1607098325,"output":"4(L35), \n\u001b[0m\u001b[22m\n16:12:05.412 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler."},{"event":"cmd_output","timestamp":1607098325,"output":"RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:05.412 [info] ppl_id: 0531d42a-3eee-431d-aae5-"},{"event":"cmd_output","timestamp":1607098325,"output":"34c9254ca946, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: "},{"event":"cmd_output","timestamp":1607098325,"output":"0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:05"},{"event":"cmd_output","timestamp":1607098325,"output":".414 [info] ppl_id: 0531d42a-3eee-431d-aae5-34c9254ca946, type: PplSubInits, state: done, result: p"},{"event":"cmd_output","timestamp":1607098325,"output":"assed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1("},{"event":"cmd_output","timestamp":1607098325,"output":"L90), \n\u001b[0m\u001b[22m\n16:12:05.418 [info] block_id: ae0d430e-4f09-4896-a3eb-e84f1f625ce5, type: Blocks"},{"event":"cmd_output","timestamp":1607098325,"output":", state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.Blo"},{"event":"cmd_output","timestamp":1607098325,"output":"cksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:05.422 [info] Block 0 of pipeline with id: b05c8b11-ba"},{"event":"cmd_output","timestamp":1607098325,"output":"45-4ff9-946b-0c1b9a1b7071 scheduled in block service with id: : \"ae0d430e-4f09-4896-a3eb-e84f1f625ce"},{"event":"cmd_output","timestamp":1607098325,"output":"5\"\n\u001b[0m\u001b[22m\n16:12:05.426 [info] ppl_id: b05c8b11-ba45-4ff9-946b-0c1b9a1b7071, type: PplBlocks, b"},{"event":"cmd_output","timestamp":1607098325,"output":"lock_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM."},{"event":"cmd_output","timestamp":1607098325,"output":"Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:05.433 [info] block_id: ae0d430e-4f09-4896-a3eb-e8"},{"event":"cmd_output","timestamp":1607098325,"output":"4f1f625ce5, type: BlockRequests, event: persisted build and sub_ppl details for block_request: ae0d4"},{"event":"cmd_output","timestamp":1607098325,"output":"30e-4f09-4896-a3eb-e84f1f625ce5, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.inser"},{"event":"cmd_output","timestamp":1607098325,"output":"t_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:05.439 [info] block_id: ae0d430e-4f09-4896-a3eb-e84f1f625ce5, ty"},{"event":"cmd_output","timestamp":1607098325,"output":"pe: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler"},{"event":"cmd_output","timestamp":1607098325,"output":".InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:05.440 [info] block_id: a7c2bf7a-3767-48f8-9"},{"event":"cmd_output","timestamp":1607098325,"output":"20d-cdb38adbb8c7, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098325,"output":"ixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:05.441 [info] block_id: ae0d430e-4"},{"event":"cmd_output","timestamp":1607098325,"output":"f09-4896-a3eb-e84f1f625ce5, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098325,"output":" origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:05.443 [info] ppl_id: 0"},{"event":"cmd_output","timestamp":1607098325,"output":"531d42a-3eee-431d-aae5-34c9254ca946, type: PplBlocks, block_index: 0, state: waiting, event: exit_sc"},{"event":"cmd_output","timestamp":1607098325,"output":"heduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098325,"output":":12:05.453 [info] ppl_id: 0531d42a-3eee-431d-aae5-34c9254ca946, type: Ppls, state: pending, event: "},{"event":"cmd_output","timestamp":1607098325,"output":"exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098325,"output":"22m\n16:12:05.454 [info] ppl_id: 69257f51-5d70-4717-bfae-596de5a30818, type: PplRequests, event: pe"},{"event":"cmd_output","timestamp":1607098325,"output":"rsisted source_args for pipeline: 69257f51-5d70-4717-bfae-596de5a30818, origin: Elixir.Ppl.PplReques"},{"event":"cmd_output","timestamp":1607098325,"output":"ts.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:05.458 [info] ppl_id: 69257f51"},{"event":"cmd_output","timestamp":1607098325,"output":"-5d70-4717-bfae-596de5a30818, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098325,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:05.471 [info] p"},{"event":"cmd_output","timestamp":1607098325,"output":"pl_id: 0531d42a-3eee-431d-aae5-34c9254ca946, type: Ppls, state: queuing, event: exit_scheduling, rec"},{"event":"cmd_output","timestamp":1607098325,"output":"overy_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:05.482 [i"},{"event":"cmd_output","timestamp":1607098325,"output":"nfo] block_id: ae0d430e-4f09-4896-a3eb-e84f1f625ce5, type: Tasks, state: running, event: exit_sched"},{"event":"cmd_output","timestamp":1607098325,"output":"uling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12"},{"event":"cmd_output","timestamp":1607098325,"output":":05.493 [info] block_id: a7c2bf7a-3767-48f8-920d-cdb38adbb8c7, type: Tasks, state: done, event: exi"},{"event":"cmd_output","timestamp":1607098325,"output":"t_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098325,"output":"\n16:12:05.498 [info] ppl_id: 69257f51-5d70-4717-bfae-596de5a30818, type: PplSubInits, state: regul"},{"event":"cmd_output","timestamp":1607098325,"output":"ar_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/"},{"event":"cmd_output","timestamp":1607098325,"output":"1(L90), \n\u001b[0m\u001b[22m\n16:12:05.500 [info] block_id: a7c2bf7a-3767-48f8-920d-cdb38adbb8c7, type: Bloc"},{"event":"cmd_output","timestamp":1607098325,"output":"ks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state"},{"event":"cmd_output","timestamp":1607098325,"output":"_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:05.507 [info] ppl_id: c6c7bf89-bdf9-433b-b8a4-4357bd9f7c1a, bloc"},{"event":"cmd_output","timestamp":1607098325,"output":"k_id: a7c2bf7a-3767-48f8-920d-cdb38adbb8c7, type: PplBlocks, block_index: 0, state: done, result: pa"},{"event":"cmd_output","timestamp":1607098325,"output":"ssed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098325,"output":"90), \n\u001b[0m\u001b[22m\n16:12:05.523 [info] ppl_id: 69257f51-5d70-4717-bfae-596de5a30818, type: PplReques"},{"event":"cmd_output","timestamp":1607098325,"output":"ts, event: persisted definition for request with request_token: 600293c3-18ae-490c-b8f7-f87c2338ec9f"},{"event":"cmd_output","timestamp":1607098325,"output":", origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098325,"output":"12:05.528 [info] ppl_id: c6c7bf89-bdf9-433b-b8a4-4357bd9f7c1a, type: Ppls, state: done, result: pas"},{"event":"cmd_output","timestamp":1607098325,"output":"sed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L9"},{"event":"cmd_output","timestamp":1607098325,"output":"0), \n\u001b[0m\u001b[22m\n16:12:05.529 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ect"},{"event":"cmd_output","timestamp":1607098325,"output":"o.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:12:05.525958], name: \"dev-.semap"},{"event":"cmd_output","timestamp":1607098325,"output":"hore/semaphore.yml\", organization_id: \"f74e584a-5aae-4ffe-9f59-9b727dde500e\", project_id: \"456\", que"},{"event":"cmd_output","timestamp":1607098325,"output":"ue_id: \"6eb71cdc-98bf-4fb2-9526-885b8d59958b\", scope: \"project\", updated_at: ~N[2020-12-04 16:12:05."},{"event":"cmd_output","timestamp":1607098325,"output":"525967], user_generated: false}}\n\u001b[0m\u001b[22m\n16:12:05.534 [info] event: created, origin: Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098325,"output":".PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:05.534 [info] ppl_id: "},{"event":"cmd_output","timestamp":1607098325,"output":"69257f51-5d70-4717-bfae-596de5a30818, type: PplBlocks, block_index: 0, state: initializing, event: c"},{"event":"cmd_output","timestamp":1607098325,"output":"reated, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105"},{"event":"cmd_output","timestamp":1607098325,"output":"), \n\u001b[0m\u001b[22m\n16:12:05.536 [info] ppl_id: 69257f51-5d70-4717-bfae-596de5a30818, type: PplSubInits"},{"event":"cmd_output","timestamp":1607098325,"output":", state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM."},{"event":"cmd_output","timestamp":1607098325,"output":"Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:05.542 [info] ppl_id: 69257f51-5d70-4717-bfae-596d"},{"event":"cmd_output","timestamp":1607098325,"output":"e5a30818, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0"},{"event":"cmd_output","timestamp":1607098325,"output":", origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:05.546 [info] ppl_id: "},{"event":"cmd_output","timestamp":1607098325,"output":"69257f51-5d70-4717-bfae-596de5a30818, type: Ppls, state: pending, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098325,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:05.553 [info] p"},{"event":"cmd_output","timestamp":1607098325,"output":"pl_id: 69257f51-5d70-4717-bfae-596de5a30818, type: Ppls, state: queuing, event: exit_scheduling, rec"},{"event":"cmd_output","timestamp":1607098325,"output":"overy_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:05.560 [i"},{"event":"cmd_output","timestamp":1607098325,"output":"nfo] ppl_id: 0531d42a-3eee-431d-aae5-34c9254ca946, type: Ppls, state: running, event: exit_scheduli"},{"event":"cmd_output","timestamp":1607098325,"output":"ng, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:05"},{"event":"cmd_output","timestamp":1607098325,"output":".565 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"0531d42a-3eee-431d-aae"},{"event":"cmd_output","timestamp":1607098325,"output":"5-34c9254ca946\"\n\u001b[0m\u001b[22m\n16:12:05.571 [info] ppl_id: fa64ebfd-81b0-45f0-a462-f587e0dc6664, type:"},{"event":"cmd_output","timestamp":1607098325,"output":" PplRequests, event: persisted source_args for pipeline: fa64ebfd-81b0-45f0-a462-f587e0dc6664, origi"},{"event":"cmd_output","timestamp":1607098325,"output":"n: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:05.572 ["},{"event":"cmd_output","timestamp":1607098325,"output":"info] block_id: 8b8bcf2d-dd75-4492-9896-e2dc264af123, type: BlockRequests, event: persisted block r"},{"event":"cmd_output","timestamp":1607098325,"output":"un request from ppl 0531d42a-3eee-431d-aae5-34c9254ca946 for block 0, origin: Elixir.Block.BlockRequ"},{"event":"cmd_output","timestamp":1607098325,"output":"ests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:05.574 [info] block_id:"},{"event":"cmd_output","timestamp":1607098325,"output":" 8b8bcf2d-dd75-4492-9896-e2dc264af123, type: Blocks, state: initializing, event: initializing, recov"},{"event":"cmd_output","timestamp":1607098325,"output":"ery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:05.5"},{"event":"cmd_output","timestamp":1607098325,"output":"76 [info] ppl_id: fa64ebfd-81b0-45f0-a462-f587e0dc6664, type: PplSubInits, state: fetching, event: "},{"event":"cmd_output","timestamp":1607098325,"output":"exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098325,"output":"22m\n16:12:05.576 [info] Block 0 of pipeline with id: 0531d42a-3eee-431d-aae5-34c9254ca946 schedule"},{"event":"cmd_output","timestamp":1607098325,"output":"d in block service with id: : \"8b8bcf2d-dd75-4492-9896-e2dc264af123\"\n\u001b[0m\u001b[22m\n16:12:05.579 [info]"},{"event":"cmd_output","timestamp":1607098325,"output":" ppl_id: 0531d42a-3eee-431d-aae5-34c9254ca946, type: PplBlocks, block_index: 0, state: running, eve"},{"event":"cmd_output","timestamp":1607098325,"output":"nt: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b["},{"event":"cmd_output","timestamp":1607098325,"output":"0m\u001b[22m\n16:12:05.583 [info] block_id: 8b8bcf2d-dd75-4492-9896-e2dc264af123, type: BlockRequests, e"},{"event":"cmd_output","timestamp":1607098325,"output":"vent: persisted build and sub_ppl details for block_request: 8b8bcf2d-dd75-4492-9896-e2dc264af123, o"},{"event":"cmd_output","timestamp":1607098325,"output":"rigin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12"},{"event":"cmd_output","timestamp":1607098325,"output":":05.586 [info] block_id: 8b8bcf2d-dd75-4492-9896-e2dc264af123, type: Tasks, state: pending, event: "},{"event":"cmd_output","timestamp":1607098325,"output":"created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167)"},{"event":"cmd_output","timestamp":1607098325,"output":", \n\u001b[0m\u001b[22m\n16:12:05.588 [info] block_id: 8b8bcf2d-dd75-4492-9896-e2dc264af123, type: Blocks, st"},{"event":"cmd_output","timestamp":1607098325,"output":"ate: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_ch"},{"event":"cmd_output","timestamp":1607098325,"output":"ange/1(L90), \n\u001b[0m\u001b[22m\n16:12:05.601 [info] block_id: 8b8bcf2d-dd75-4492-9896-e2dc264af123, type:"},{"event":"cmd_output","timestamp":1607098325,"output":" Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.lo"},{"event":"cmd_output","timestamp":1607098325,"output":"g_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:05.605 [info] ppl_id: fa64ebfd-81b0-45f0-a462-f587e0dc666"},{"event":"cmd_output","timestamp":1607098325,"output":"4, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098325,"output":".Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:05.612 [info] ppl_id: 69257f51-5d70-47"},{"event":"cmd_output","timestamp":1607098325,"output":"17-bfae-596de5a30818, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098325,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:05.617 [info] block_id: ae0d430"},{"event":"cmd_output","timestamp":1607098325,"output":"e-4f09-4896-a3eb-e84f1f625ce5, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098325,"output":"origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:05.620 [info] PplBlocks "},{"event":"cmd_output","timestamp":1607098325,"output":"WaitingState STM is scheduling block 0 from pipeline: \"69257f51-5d70-4717-bfae-596de5a30818\"\n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098325,"output":"22m\n16:12:05.627 [info] block_id: ae0d430e-4f09-4896-a3eb-e84f1f625ce5, type: Blocks, state: done,"},{"event":"cmd_output","timestamp":1607098325,"output":" event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), "},{"event":"cmd_output","timestamp":1607098325,"output":"\n\u001b[0m\u001b[22m\n16:12:05.635 [info] block_id: 177a3a52-5676-469b-a475-05af549cbde3, type: BlockRequest"},{"event":"cmd_output","timestamp":1607098325,"output":"s, event: persisted block run request from ppl 69257f51-5d70-4717-bfae-596de5a30818 for block 0, ori"},{"event":"cmd_output","timestamp":1607098325,"output":"gin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098325,"output":"12:05.638 [info] ppl_id: fa64ebfd-81b0-45f0-a462-f587e0dc6664, type: PplRequests, event: persisted "},{"event":"cmd_output","timestamp":1607098325,"output":"definition for request with request_token: 534e4b7c-ae61-400a-a6e1-aa1c3f9b1010, origin: Elixir.Ppl."},{"event":"cmd_output","timestamp":1607098325,"output":"PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:05.639 [info] blo"},{"event":"cmd_output","timestamp":1607098325,"output":"ck_id: 177a3a52-5676-469b-a475-05af549cbde3, type: Blocks, state: initializing, event: initializing,"},{"event":"cmd_output","timestamp":1607098325,"output":" recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098325,"output":"2:05.643 [info] Block 0 of pipeline with id: 69257f51-5d70-4717-bfae-596de5a30818 scheduled in bloc"},{"event":"cmd_output","timestamp":1607098325,"output":"k service with id: : \"177a3a52-5676-469b-a475-05af549cbde3\"\n\u001b[0m\u001b[22m\n16:12:05.644 [info] event: "},{"event":"cmd_output","timestamp":1607098325,"output":"created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098325,"output":":12:05.644 [info] ppl_id: fa64ebfd-81b0-45f0-a462-f587e0dc6664, type: PplBlocks, block_index: 0, st"},{"event":"cmd_output","timestamp":1607098325,"output":"ate: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.Regu"},{"event":"cmd_output","timestamp":1607098325,"output":"larInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:05.648 [info] ppl_id: fa64ebfd-81b0-45f0-a462-f587"},{"event":"cmd_output","timestamp":1607098325,"output":"e0dc6664, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098325,"output":" origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:05.649 [info] block_id:"},{"event":"cmd_output","timestamp":1607098325,"output":" 177a3a52-5676-469b-a475-05af549cbde3, type: BlockRequests, event: persisted build and sub_ppl detai"},{"event":"cmd_output","timestamp":1607098325,"output":"ls for block_request: 177a3a52-5676-469b-a475-05af549cbde3, origin: Elixir.Block.BlockRequests.Model"},{"event":"cmd_output","timestamp":1607098325,"output":".BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:05.649 [info] ppl_id: 69257f51-5d70-4"},{"event":"cmd_output","timestamp":1607098325,"output":"717-bfae-596de5a30818, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, reco"},{"event":"cmd_output","timestamp":1607098325,"output":"very_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:05.652 [in"},{"event":"cmd_output","timestamp":1607098325,"output":"fo] ppl_id: b05c8b11-ba45-4ff9-946b-0c1b9a1b7071, block_id: ae0d430e-4f09-4896-a3eb-e84f1f625ce5, t"},{"event":"cmd_output","timestamp":1607098325,"output":"ype: PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count:"},{"event":"cmd_output","timestamp":1607098325,"output":" 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:05.653 [info] block_"},{"event":"cmd_output","timestamp":1607098325,"output":"id: 177a3a52-5676-469b-a475-05af549cbde3, type: Tasks, state: pending, event: created, recovery_coun"},{"event":"cmd_output","timestamp":1607098325,"output":"t: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:0"},{"event":"cmd_output","timestamp":1607098325,"output":"5.654 [info] ppl_id: fa64ebfd-81b0-45f0-a462-f587e0dc6664, type: Ppls, state: pending, event: exit_"},{"event":"cmd_output","timestamp":1607098325,"output":"scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098325,"output":"16:12:05.659 [info] block_id: 177a3a52-5676-469b-a475-05af549cbde3, type: Blocks, state: running, e"},{"event":"cmd_output","timestamp":1607098325,"output":"vent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n"},{"event":"cmd_output","timestamp":1607098325,"output":"\u001b[0m\u001b[22m\n16:12:05.664 [info] ppl_id: fa64ebfd-81b0-45f0-a462-f587e0dc6664, type: PplBlocks, block"},{"event":"cmd_output","timestamp":1607098325,"output":"_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl"},{"event":"cmd_output","timestamp":1607098325,"output":".log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:05.669 [info] ppl_id: fa64ebfd-81b0-45f0-a462-f587e0dc"},{"event":"cmd_output","timestamp":1607098325,"output":"6664, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.S"},{"event":"cmd_output","timestamp":1607098325,"output":"TM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:05.677 [info] ppl_id: b05c8b11-ba45-4ff9-946b-0"},{"event":"cmd_output","timestamp":1607098325,"output":"c1b9a1b7071, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098325,"output":"gin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:05.687 [info] block_id: 177"},{"event":"cmd_output","timestamp":1607098325,"output":"a3a52-5676-469b-a475-05af549cbde3, type: Tasks, state: running, event: exit_scheduling, recovery_cou"},{"event":"cmd_output","timestamp":1607098325,"output":"nt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:05.729 [info] blo"},{"event":"cmd_output","timestamp":1607098325,"output":"ck_id: 8b8bcf2d-dd75-4492-9896-e2dc264af123, type: Tasks, state: done, event: exit_scheduling, recov"},{"event":"cmd_output","timestamp":1607098325,"output":"ery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:05.736 [inf"},{"event":"cmd_output","timestamp":1607098325,"output":"o] block_id: 8b8bcf2d-dd75-4492-9896-e2dc264af123, type: Blocks, state: done, event: exit_schedulin"},{"event":"cmd_output","timestamp":1607098325,"output":"g, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:05."},{"event":"cmd_output","timestamp":1607098325,"output":"743 [info] ppl_id: 0531d42a-3eee-431d-aae5-34c9254ca946, block_id: 8b8bcf2d-dd75-4492-9896-e2dc264a"},{"event":"cmd_output","timestamp":1607098325,"output":"f123, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery"},{"event":"cmd_output","timestamp":1607098325,"output":"_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:05.755 [info] "},{"event":"cmd_output","timestamp":1607098325,"output":" ppl_id: 0531d42a-3eee-431d-aae5-34c9254ca946, type: Ppls, state: done, result: passed, event: exit_"},{"event":"cmd_output","timestamp":1607098325,"output":"scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098325,"output":"16:12:05.840 [info] block_id: 177a3a52-5676-469b-a475-05af549cbde3, type: Tasks, state: done, event"},{"event":"cmd_output","timestamp":1607098325,"output":": exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098325,"output":"\u001b[22m\n16:12:05.847 [info] block_id: 177a3a52-5676-469b-a475-05af549cbde3, type: Blocks, state: don"},{"event":"cmd_output","timestamp":1607098325,"output":"e, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90)"},{"event":"cmd_output","timestamp":1607098325,"output":", \n\u001b[0m\u001b[22m\n16:12:05.855 [info] ppl_id: 69257f51-5d70-4717-bfae-596de5a30818, block_id: 177a3a52"},{"event":"cmd_output","timestamp":1607098325,"output":"-5676-469b-a475-05af549cbde3, type: PplBlocks, block_index: 0, state: done, result: passed, event: e"},{"event":"cmd_output","timestamp":1607098325,"output":"xit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098325,"output":"2m\n16:12:05.868 [info] ppl_id: 69257f51-5d70-4717-bfae-596de5a30818, type: Ppls, state: done, resu"},{"event":"cmd_output","timestamp":1607098325,"output":"lt: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chan"},{"event":"cmd_output","timestamp":1607098325,"output":"ge/1(L90), \n\u001b[0m\u001b[22m\n16:12:05.931 [info] ppl_id: fa64ebfd-81b0-45f0-a462-f587e0dc6664, type: Ppl"},{"event":"cmd_output","timestamp":1607098325,"output":"s, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_sta"},{"event":"cmd_output","timestamp":1607098325,"output":"te_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:05.937 [info] PplBlocks WaitingState STM is scheduling block 0"},{"event":"cmd_output","timestamp":1607098325,"output":" from pipeline: \"fa64ebfd-81b0-45f0-a462-f587e0dc6664\"\n\u001b[0m\u001b[22m\n16:12:05.947 [info] block_id: 3b"},{"event":"cmd_output","timestamp":1607098325,"output":"92cf99-d453-43f3-954e-10ff84bda641, type: BlockRequests, event: persisted block run request from ppl"},{"event":"cmd_output","timestamp":1607098325,"output":" fa64ebfd-81b0-45f0-a462-f587e0dc6664 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockReq"},{"event":"cmd_output","timestamp":1607098325,"output":"uestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:05.949 [info] block_id: 3b92cf99-d453-43f3"},{"event":"cmd_output","timestamp":1607098325,"output":"-954e-10ff84bda641, type: Blocks, state: initializing, event: initializing, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098325,"output":"n: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:05.952 [info] Block 0 "},{"event":"cmd_output","timestamp":1607098325,"output":"of pipeline with id: fa64ebfd-81b0-45f0-a462-f587e0dc6664 scheduled in block service with id: : \"3b9"},{"event":"cmd_output","timestamp":1607098325,"output":"2cf99-d453-43f3-954e-10ff84bda641\"\n\u001b[0m\u001b[22m\n16:12:05.955 [info] ppl_id: fa64ebfd-81b0-45f0-a462-"},{"event":"cmd_output","timestamp":1607098325,"output":"f587e0dc6664, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_coun"},{"event":"cmd_output","timestamp":1607098325,"output":"t: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:05.956 [info] bloc"},{"event":"cmd_output","timestamp":1607098325,"output":"k_id: 3b92cf99-d453-43f3-954e-10ff84bda641, type: BlockRequests, event: persisted build and sub_ppl "},{"event":"cmd_output","timestamp":1607098325,"output":"details for block_request: 3b92cf99-d453-43f3-954e-10ff84bda641, origin: Elixir.Block.BlockRequests."},{"event":"cmd_output","timestamp":1607098325,"output":"Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:05.959 [info] block_id: 3b92cf99"},{"event":"cmd_output","timestamp":1607098325,"output":"-d453-43f3-954e-10ff84bda641, type: Tasks, state: pending, event: created, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098325,"output":": Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:05.962 [info]"},{"event":"cmd_output","timestamp":1607098325,"output":" block_id: 3b92cf99-d453-43f3-954e-10ff84bda641, type: Blocks, state: running, event: exit_scheduli"},{"event":"cmd_output","timestamp":1607098325,"output":"ng, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:05"},{"event":"cmd_output","timestamp":1607098325,"output":".976 [info] block_id: 3b92cf99-d453-43f3-954e-10ff84bda641, type: Tasks, state: running, event: exi"},{"event":"cmd_output","timestamp":1607098326,"output":"t_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098326,"output":"\n16:12:06.053 [info] block_id: 3b92cf99-d453-43f3-954e-10ff84bda641, type: Tasks, state: done, eve"},{"event":"cmd_output","timestamp":1607098326,"output":"nt: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b["},{"event":"cmd_output","timestamp":1607098326,"output":"0m\u001b[22m\n16:12:06.058 [info] block_id: 3b92cf99-d453-43f3-954e-10ff84bda641, type: Blocks, state: d"},{"event":"cmd_output","timestamp":1607098326,"output":"one, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L9"},{"event":"cmd_output","timestamp":1607098326,"output":"0), \n\u001b[0m\u001b[22m\n16:12:06.067 [info] ppl_id: fa64ebfd-81b0-45f0-a462-f587e0dc6664, block_id: 3b92cf"},{"event":"cmd_output","timestamp":1607098326,"output":"99-d453-43f3-954e-10ff84bda641, type: PplBlocks, block_index: 0, state: done, result: passed, event:"},{"event":"cmd_output","timestamp":1607098326,"output":" exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098326,"output":"[22m\n16:12:06.073 [info] ppl_id: fa64ebfd-81b0-45f0-a462-f587e0dc6664, type: Ppls, state: done, re"},{"event":"cmd_output","timestamp":1607098326,"output":"sult: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_ch"},{"event":"cmd_output","timestamp":1607098326,"output":"ange/1(L90), \n\u001b[0m\u001b[32m\r * test gRPC list_grouped() - both scopes user-generated queues (1848.8ms"},{"event":"cmd_output","timestamp":1607098326,"output":")\u001b[0m\n * test gRPC list() - fails when given timestamps are wrong (done before created etc.)\r * "},{"event":"cmd_output","timestamp":1607098326,"output":"test gRPC list() - fails when given timestamps are wrong (done before created etc.) (skipped)\n * "},{"event":"cmd_output","timestamp":1607098326,"output":"test gRPC partial_rebuild() - fails when ppl_id not found\r * test gRPC partial_rebuild() - fails wh"},{"event":"cmd_output","timestamp":1607098326,"output":"en ppl_id not found (skipped)\n * test gRPC describe_topology() - malformed pipeline\u001b[22m\n16:12:06"},{"event":"cmd_output","timestamp":1607098326,"output":".272 [info] Request: 'run: %{:repo_name => \"12_failing_deps\", \"branch_id\" => \"31f7bbd7-d8e7-423a-83"},{"event":"cmd_output","timestamp":1607098326,"output":"38-5ef12c5449e5\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"semaphore"},{"event":"cmd_output","timestamp":1607098326,"output":".yml\", \"hook_id\" => \"7411c0d2-364b-11eb-8748-5254005464e2\", \"label\" => \"master\", \"organization_id\" ="},{"event":"cmd_output","timestamp":1607098326,"output":"> \"f19c751a-b697-4d56-85c0-6d3f591c6991\", \"owner\" => \"rt\", \"project_id\" => \"0ac87546-9844-413c-9d6c-"},{"event":"cmd_output","timestamp":1607098326,"output":"fe02ee89dd28\", \"repo_name\" => \"2_basic\", \"request_token\" => \"7411b43e-364b-11eb-9830-5254005464e2\", "},{"event":"cmd_output","timestamp":1607098326,"output":"\"requester_id\" => \"185a6366-c7b5-4cad-a9c2-bc6c95674831\", \"service\" => \"local\", \"suppressed_attribut"},{"event":"cmd_output","timestamp":1607098326,"output":"es\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"ba58cb16-923a-43e5-a4ef-2e1a90cdd6a1\", \"workin"},{"event":"cmd_output","timestamp":1607098326,"output":"g_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:12:06.283 [info] ppl_id: 8b761b42-c54c-4b50-a33b-74174b0c5be"},{"event":"cmd_output","timestamp":1607098326,"output":"f, type: PplRequests, event: persisted schedule request with request_token: 7411b43e-364b-11eb-9830-"},{"event":"cmd_output","timestamp":1607098326,"output":"5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098326,"output":"m\u001b[22m\n16:12:06.287 [info] ppl_id: 8b761b42-c54c-4b50-a33b-74174b0c5bef, type: Ppls, state: initia"},{"event":"cmd_output","timestamp":1607098326,"output":"lizing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_re"},{"event":"cmd_output","timestamp":1607098326,"output":"sponse/2(L124), \n\u001b[0m\u001b[22m\n16:12:06.292 [info] Project 0ac87546-9844-413c-9d6c-fe02ee89dd28 and b"},{"event":"cmd_output","timestamp":1607098326,"output":"ranch masterlatest_wf details updated: \"wf_id: ba58cb16-923a-43e5-a4ef-2e1a90cdd6a1, wf_number: 1\"\n"},{"event":"cmd_output","timestamp":1607098326,"output":"\u001b[0m\u001b[22m\n16:12:06.294 [info] Persisted ppl_sub_init for pipeline with ppl_id: 8b761b42-c54c-4b50-"},{"event":"cmd_output","timestamp":1607098326,"output":"a33b-74174b0c5bef: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipe"},{"event":"cmd_output","timestamp":1607098326,"output":"line_sub_inits\">, compile_task_id: nil, error_description: nil, id: 165, in_scheduling: false, init_"},{"event":"cmd_output","timestamp":1607098326,"output":"type: \"regular\", inserted_at: ~N[2020-12-04 16:12:06.292917], pipeline_requests: #Ecto.Association.N"},{"event":"cmd_output","timestamp":1607098326,"output":"otLoaded, ppl_id: \"8b761b42-c54c-4b50-a33b-74174b0c5be"},{"event":"cmd_output","timestamp":1607098326,"output":"f\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, te"},{"event":"cmd_output","timestamp":1607098326,"output":"rminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:06.292929]}\n\u001b[0m\u001b[22m\n16:12:06.300 [inf"},{"event":"cmd_output","timestamp":1607098326,"output":"o] Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.STMH"},{"event":"cmd_output","timestamp":1607098326,"output":"andler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHand"},{"event":"cmd_output","timestamp":1607098326,"output":"ler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], coo"},{"event":"cmd_output","timestamp":1607098326,"output":"ling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher_cb: "},{"event":"cmd_output","timestamp":1607098326,"output":"#Function<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, return"},{"event":"cmd_output","timestamp":1607098326,"output":"ing: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl."},{"event":"cmd_output","timestamp":1607098326,"output":"Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:06.300 [info] Periodic from module Elixi"},{"event":"cmd_output","timestamp":1607098326,"output":"r.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 100 "},{"event":"cmd_output","timestamp":1607098326,"output":"ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args: %{a"},{"event":"cmd_output","timestamp":1607098326,"output":"llowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Pp"},{"event":"cmd_output","timestamp":1607098326,"output":"ls.Model.Ppls, observed_state: \"pending\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler"},{"event":"cmd_output","timestamp":1607098326,"output":".PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state,"},{"event":"cmd_output","timestamp":1607098326,"output":" :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSuperviso"},{"event":"cmd_output","timestamp":1607098326,"output":"r}\n\u001b[0m\u001b[22m\n16:12:06.302 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.QueuingState wit"},{"event":"cmd_output","timestamp":1607098326,"output":"h name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_u"},{"event":"cmd_output","timestamp":1607098326,"output":"p\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{allowed_states: [\"queuing\", \"running\", "},{"event":"cmd_output","timestamp":1607098326,"output":"\"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", publis"},{"event":"cmd_output","timestamp":1607098326,"output":"her_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, ret"},{"event":"cmd_output","timestamp":1607098326,"output":"urning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: P"},{"event":"cmd_output","timestamp":1607098326,"output":"pl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:06.303 [info] Periodic from module El"},{"event":"cmd_output","timestamp":1607098326,"output":"ixir.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHandler.RunningState :: period: 1"},{"event":"cmd_output","timestamp":1607098326,"output":"00 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring args: "},{"event":"cmd_output","timestamp":1607098326,"output":"%{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Mod"},{"event":"cmd_output","timestamp":1607098326,"output":"el.Ppls, observed_state: \"running\", publisher_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler.Runn"},{"event":"cmd_output","timestamp":1607098326,"output":"ingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :res"},{"event":"cmd_output","timestamp":1607098326,"output":"ult, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b"},{"event":"cmd_output","timestamp":1607098326,"output":"[0m\u001b[22m\n16:12:06.304 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.StoppingState with na"},{"event":"cmd_output","timestamp":1607098326,"output":"me Elixir.Ppl.Ppls.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\","},{"event":"cmd_output","timestamp":1607098326,"output":" [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], coo"},{"event":"cmd_output","timestamp":1607098326,"output":"ling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"stopping\", publisher_cb: #Fu"},{"event":"cmd_output","timestamp":1607098326,"output":"nction<0.71803493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:i"},{"event":"cmd_output","timestamp":1607098326,"output":"d, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Mod"},{"event":"cmd_output","timestamp":1607098326,"output":"el.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:06.305 [info] Periodic from module Elixir.Ppl.Pp"},{"event":"cmd_output","timestamp":1607098326,"output":"lSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period"},{"event":"cmd_output","timestamp":1607098326,"output":": 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurr"},{"event":"cmd_output","timestamp":1607098326,"output":"ing args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInit"},{"event":"cmd_output","timestamp":1607098326,"output":"s.Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: "},{"event":"cmd_output","timestamp":1607098326,"output":"[:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSu"},{"event":"cmd_output","timestamp":1607098326,"output":"bInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:06.306 [info] Periodic from mod"},{"event":"cmd_output","timestamp":1607098326,"output":"ule Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler.Fetc"},{"event":"cmd_output","timestamp":1607098326,"output":"hingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-Fetc"},{"event":"cmd_output","timestamp":1607098326,"output":"hingState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"done\"], cooling_tim"},{"event":"cmd_output","timestamp":1607098326,"output":"e_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fetching\", publisher_c"},{"event":"cmd_output","timestamp":1607098326,"output":"b: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :re"},{"event":"cmd_output","timestamp":1607098326,"output":"covery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098326,"output":"m\n16:12:06.308 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CompilationState with"},{"event":"cmd_output","timestamp":1607098326,"output":" name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 100 ms, metric_name: {\"Ppl.behol"},{"event":"cmd_output","timestamp":1607098326,"output":"der-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurring args: %{allowed_states: [\""},{"event":"cmd_output","timestamp":1607098326,"output":"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubIn"},{"event":"cmd_output","timestamp":1607098326,"output":"its.Model.PplSubInits, observed_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, retur"},{"event":"cmd_output","timestamp":1607098326,"output":"ning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl"},{"event":"cmd_output","timestamp":1607098326,"output":".PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:06.309 [info] Periodic fr"},{"event":"cmd_output","timestamp":1607098326,"output":"om module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHan"},{"event":"cmd_output","timestamp":1607098326,"output":"dler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STM"},{"event":"cmd_output","timestamp":1607098326,"output":"Handler-RegularInitState\"]}, recurring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, initia"},{"event":"cmd_output","timestamp":1607098326,"output":"l_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_init\", publisher_cb: :skip, rep"},{"event":"cmd_output","timestamp":1607098326,"output":"o: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count,"},{"event":"cmd_output","timestamp":1607098326,"output":" :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:06.3"},{"event":"cmd_output","timestamp":1607098326,"output":"10 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.InitializingState with name Elixir.P"},{"event":"cmd_output","timestamp":1607098326,"output":"pl.PplBlocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", ["},{"event":"cmd_output","timestamp":1607098326,"output":"\"Ppl-PplBlocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \""},{"event":"cmd_output","timestamp":1607098326,"output":"waiting\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state"},{"event":"cmd_output","timestamp":1607098326,"output":": \"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :upd"},{"event":"cmd_output","timestamp":1607098326,"output":"ated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBl"},{"event":"cmd_output","timestamp":1607098326,"output":"ocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:06.311 [info] Periodic from module Elixir.Ppl.PplBl"},{"event":"cmd_output","timestamp":1607098326,"output":"ocks.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler.WaitingState :: period: 1000 "},{"event":"cmd_output","timestamp":1607098326,"output":"ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurring args"},{"event":"cmd_output","timestamp":1607098326,"output":": %{allowed_states: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlock"},{"event":"cmd_output","timestamp":1607098326,"output":"s.Model.PplBlocks, observed_state: \"waiting\", publisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.S"},{"event":"cmd_output","timestamp":1607098326,"output":"TMHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at"},{"event":"cmd_output","timestamp":1607098326,"output":", :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, t"},{"event":"cmd_output","timestamp":1607098326,"output":"ask_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:06.313 [info] Periodic from module Elixir.Ppl.PplBlocks.ST"},{"event":"cmd_output","timestamp":1607098326,"output":"MHandler.RunningState with name Elixir.Ppl.PplBlocks.STMHandler.RunningState :: period: 1000 ms, met"},{"event":"cmd_output","timestamp":1607098326,"output":"ric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, recurring args: %{all"},{"event":"cmd_output","timestamp":1607098326,"output":"owed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Mod"},{"event":"cmd_output","timestamp":1607098326,"output":"el.PplBlocks, observed_state: \"running\", publisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHa"},{"event":"cmd_output","timestamp":1607098326,"output":"ndler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :s"},{"event":"cmd_output","timestamp":1607098326,"output":"tate, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBl"},{"event":"cmd_output","timestamp":1607098326,"output":"ocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:06.314 [info] Periodic from module Elixir.Ppl.PplBl"},{"event":"cmd_output","timestamp":1607098326,"output":"ocks.STMHandler.StoppingState with name Elixir.Ppl.PplBlocks.STMHandler.StoppingState :: period: 100"},{"event":"cmd_output","timestamp":1607098326,"output":"0 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurring a"},{"event":"cmd_output","timestamp":1607098326,"output":"rgs: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Mode"},{"event":"cmd_output","timestamp":1607098326,"output":"l.PplBlocks, observed_state: \"stopping\", publisher_cb: #Function<0.104215991/1 in Ppl.PplBlocks.STMH"},{"event":"cmd_output","timestamp":1607098326,"output":"andler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, "},{"event":"cmd_output","timestamp":1607098326,"output":":state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.Ppl"},{"event":"cmd_output","timestamp":1607098326,"output":"Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:06.314 [info] Periodic from module Elixir.Block.B"},{"event":"cmd_output","timestamp":1607098326,"output":"locks.STMHandler.InitializingState with name Elixir.Block.Blocks.STMHandler.InitializingState :: per"},{"event":"cmd_output","timestamp":1607098326,"output":"iod: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, r"},{"event":"cmd_output","timestamp":1607098326,"output":"ecurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Bloc"},{"event":"cmd_output","timestamp":1607098326,"output":"ks.Model.Blocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Block.EctoRepo, returnin"},{"event":"cmd_output","timestamp":1607098326,"output":"g: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks."},{"event":"cmd_output","timestamp":1607098326,"output":"Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:06.315 [info] Periodic from module Elixir.B"},{"event":"cmd_output","timestamp":1607098326,"output":"lock.Blocks.STMHandler.RunningState with name Elixir.Block.Blocks.STMHandler.RunningState :: period:"},{"event":"cmd_output","timestamp":1607098326,"output":" 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-RunningState\"]}, recurring "},{"event":"cmd_output","timestamp":1607098326,"output":"args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block."},{"event":"cmd_output","timestamp":1607098326,"output":"Blocks.Model.Blocks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning"},{"event":"cmd_output","timestamp":1607098326,"output":": [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.M"},{"event":"cmd_output","timestamp":1607098326,"output":"odel.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:06.315 [info] Periodic from module Elixir.Bl"},{"event":"cmd_output","timestamp":1607098326,"output":"ock.Blocks.STMHandler.StoppingState with name Elixir.Block.Blocks.STMHandler.StoppingState :: period"},{"event":"cmd_output","timestamp":1607098326,"output":": 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-StoppingState\"]}, recurrin"},{"event":"cmd_output","timestamp":1607098326,"output":"g args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Mo"},{"event":"cmd_output","timestamp":1607098326,"output":"del.Blocks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, "},{"event":"cmd_output","timestamp":1607098326,"output":":terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blo"},{"event":"cmd_output","timestamp":1607098326,"output":"cks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:06.316 [info] Periodic from module Elixir.Block.Task"},{"event":"cmd_output","timestamp":1607098326,"output":"s.STMHandler.PendingState with name Elixir.Block.Tasks.STMHandler.PendingState :: period: 100 ms, me"},{"event":"cmd_output","timestamp":1607098326,"output":"tric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingState\"]}, recurring args: %{allo"},{"event":"cmd_output","timestamp":1607098326,"output":"wed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Tasks.Model.Tasks, observ"},{"event":"cmd_output","timestamp":1607098326,"output":"ed_state: \"pending\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request,"},{"event":"cmd_output","timestamp":1607098326,"output":" :updated_at, :state, :recovery_count, :block_id, :build_request_id], schema: Block.Tasks.Model.Task"},{"event":"cmd_output","timestamp":1607098326,"output":"s, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:06.316 [info] Periodic from module Elixir.Block.Tasks."},{"event":"cmd_output","timestamp":1607098326,"output":"STMHandler.RunningState with name Elixir.Block.Tasks.STMHandler.RunningState :: period: 100 ms, metr"},{"event":"cmd_output","timestamp":1607098326,"output":"ic_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningState\"]}, recurring args: %{allowe"},{"event":"cmd_output","timestamp":1607098326,"output":"d_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Ta"},{"event":"cmd_output","timestamp":1607098326,"output":"sks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :termina"},{"event":"cmd_output","timestamp":1607098326,"output":"te_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_"},{"event":"cmd_output","timestamp":1607098326,"output":"supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:06.317 [info] Periodic from module Elixir.Block.Tasks.STMHandl"},{"event":"cmd_output","timestamp":1607098326,"output":"er.StoppingState with name Elixir.Block.Tasks.STMHandler.StoppingState :: period: 100 ms, metric_nam"},{"event":"cmd_output","timestamp":1607098326,"output":"e: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]}, recurring args: %{allowed_sta"},{"event":"cmd_output","timestamp":1607098326,"output":"tes: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_st"},{"event":"cmd_output","timestamp":1607098326,"output":"ate: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :up"},{"event":"cmd_output","timestamp":1607098326,"output":"dated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :sk"},{"event":"cmd_output","timestamp":1607098326,"output":"ip}\n\u001b[0m\u001b[22m\n16:12:06.425 [info] ppl_id: 8b761b42-c54c-4b50-a33b-74174b0c5bef, type: PplRequests"},{"event":"cmd_output","timestamp":1607098326,"output":", event: persisted source_args for pipeline: 8b761b42-c54c-4b50-a33b-74174b0c5bef, origin: Elixir.Pp"},{"event":"cmd_output","timestamp":1607098326,"output":"l.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:06.428 [info] ppl_i"},{"event":"cmd_output","timestamp":1607098326,"output":"d: 8b761b42-c54c-4b50-a33b-74174b0c5bef, type: PplSubInits, state: fetching, event: exit_scheduling,"},{"event":"cmd_output","timestamp":1607098326,"output":" recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:06.45"},{"event":"cmd_output","timestamp":1607098326,"output":"5 [info] ppl_id: 8b761b42-c54c-4b50-a33b-74174b0c5bef, type: PplSubInits, state: done, result: fail"},{"event":"cmd_output","timestamp":1607098326,"output":"ed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90"},{"event":"cmd_output","timestamp":1607098326,"output":"), \n\u001b[0m\u001b[22m\n16:12:06.469 [info] ppl_id: 8b761b42-c54c-4b50-a33b-74174b0c5bef, type: Ppls, state"},{"event":"cmd_output","timestamp":1607098326,"output":": done, result: failed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.lo"},{"event":"cmd_output","timestamp":1607098326,"output":"g_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test gRPC describe_topology() - malformed pipeline (350.4ms)\u001b"},{"event":"cmd_output","timestamp":1607098326,"output":"[0m\n * test gRPC list() - error when called without project_id or wf_id\r * test gRPC list() - err"},{"event":"cmd_output","timestamp":1607098326,"output":"or when called without project_id or wf_id (skipped)\n * test describe_many returns error when one "},{"event":"cmd_output","timestamp":1607098326,"output":"of ids is not a valid uuid\r * test describe_many returns error when one of ids is not a valid uuid "},{"event":"cmd_output","timestamp":1607098326,"output":"(skipped)\n * test gRPC validate_yaml() - valid yaml definition, refuse ppls scheduling if project"},{"event":"cmd_output","timestamp":1607098326,"output":" deletion was requested\r * test gRPC validate_yaml() - valid yaml definition, refuse ppls scheduli"},{"event":"cmd_output","timestamp":1607098326,"output":"ng if project deletion was requested (skipped)\n * test gRPC describe() - refuse request when there"},{"event":"cmd_output","timestamp":1607098326,"output":" are to many unfinished ones\r * test gRPC describe() - refuse request when there are to many unfini"},{"event":"cmd_output","timestamp":1607098326,"output":"shed ones (skipped)\n * test gRPC validate_yaml() - valid yaml definition, ppl scheduled\r * test g"},{"event":"cmd_output","timestamp":1607098326,"output":"RPC validate_yaml() - valid yaml definition, ppl scheduled (skipped)\n * test gRPC partial_rebuild("},{"event":"cmd_output","timestamp":1607098326,"output":") is idempotent\u001b[22m\n16:12:06.658 [info] Request: 'run: %{\"branch_id\" => \"c5d08cb5-0d38-4b85-8cfe-"},{"event":"cmd_output","timestamp":1607098326,"output":"61574fff879a\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"semaphore.ym"},{"event":"cmd_output","timestamp":1607098326,"output":"l\", \"hook_id\" => \"744c9f90-364b-11eb-a941-5254005464e2\", \"label\" => \"master\", \"organization_id\" => \""},{"event":"cmd_output","timestamp":1607098326,"output":"525c1075-defe-489f-932c-2aec51356bf5\", \"owner\" => \"rt\", \"project_id\" => \"50861ede-c88c-44e7-8973-d85"},{"event":"cmd_output","timestamp":1607098326,"output":"4dad8bde4\", \"repo_name\" => \"14_free_topology_failing_block\", \"request_token\" => \"744c91b2-364b-11eb-"},{"event":"cmd_output","timestamp":1607098326,"output":"8563-5254005464e2\", \"requester_id\" => \"2606383e-2111-42a7-8839-c08f5996d195\", \"service\" => \"local\", "},{"event":"cmd_output","timestamp":1607098326,"output":"\"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"33581241-6dcb-4c24-8920-75"},{"event":"cmd_output","timestamp":1607098326,"output":"d9678b8e2d\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:12:06.667 [info] ppl_id: 7c44d7ea-5e3d-4"},{"event":"cmd_output","timestamp":1607098326,"output":"9e4-bdfa-bbe92cca2b9b, type: PplRequests, event: persisted schedule request with request_token: 744c"},{"event":"cmd_output","timestamp":1607098326,"output":"91b2-364b-11eb-8563-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_re"},{"event":"cmd_output","timestamp":1607098326,"output":"sponse/2(L55), \n\u001b[0m\u001b[22m\n16:12:06.673 [info] ppl_id: 7c44d7ea-5e3d-49e4-bdfa-bbe92cca2b9b, type:"},{"event":"cmd_output","timestamp":1607098326,"output":" Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.Pp"},{"event":"cmd_output","timestamp":1607098326,"output":"lsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:06.681 [info] Project 50861ede-c88c-44e7-897"},{"event":"cmd_output","timestamp":1607098326,"output":"3-d854dad8bde4 and branch masterlatest_wf details updated: \"wf_id: 33581241-6dcb-4c24-8920-75d9678b8"},{"event":"cmd_output","timestamp":1607098326,"output":"e2d, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:12:06.684 [info] Persisted ppl_sub_init for pipeline with ppl_id:"},{"event":"cmd_output","timestamp":1607098326,"output":" 7c44d7ea-5e3d-49e4-bdfa-bbe92cca2b9b: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Met"},{"event":"cmd_output","timestamp":1607098326,"output":"adata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 166, in_sche"},{"event":"cmd_output","timestamp":1607098326,"output":"duling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:06.682034], pipeline_requests:"},{"event":"cmd_output","timestamp":1607098326,"output":" #Ecto.Association.NotLoaded, ppl_id: \"7c44d7ea-5e3d-4"},{"event":"cmd_output","timestamp":1607098326,"output":"9e4-bdfa-bbe92cca2b9b\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", termin"},{"event":"cmd_output","timestamp":1607098326,"output":"ate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:06.682047]}\n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098326,"output":"m\n16:12:06.691 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingState with name "},{"event":"cmd_output","timestamp":1607098326,"output":"Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\""},{"event":"cmd_output","timestamp":1607098326,"output":", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"pe"},{"event":"cmd_output","timestamp":1607098326,"output":"nding\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"initializ"},{"event":"cmd_output","timestamp":1607098326,"output":"ing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, repo: "},{"event":"cmd_output","timestamp":1607098326,"output":"Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :p"},{"event":"cmd_output","timestamp":1607098326,"output":"pl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:06.692 [info] Period"},{"event":"cmd_output","timestamp":1607098326,"output":"ic from module Elixir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler.PendingS"},{"event":"cmd_output","timestamp":1607098326,"output":"tate :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]},"},{"event":"cmd_output","timestamp":1607098326,"output":" recurring args: %{allowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_sec: 0, i"},{"event":"cmd_output","timestamp":1607098326,"output":"nitial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publisher_cb: #Function<0.8493005/1 in"},{"event":"cmd_output","timestamp":1607098326,"output":" Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, "},{"event":"cmd_output","timestamp":1607098326,"output":":updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_superviso"},{"event":"cmd_output","timestamp":1607098326,"output":"r: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:12:06.692 [info] Periodic from module Elixir.Ppl.Ppls.STMHand"},{"event":"cmd_output","timestamp":1607098326,"output":"ler.QueuingState with name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, metric_name: {"},{"event":"cmd_output","timestamp":1607098326,"output":"\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{allowed_states: [\"q"},{"event":"cmd_output","timestamp":1607098326,"output":"ueuing\", \"running\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_stat"},{"event":"cmd_output","timestamp":1607098326,"output":"e: \"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.args/0>, rep"},{"event":"cmd_output","timestamp":1607098326,"output":"o: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count,"},{"event":"cmd_output","timestamp":1607098326,"output":" :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:06.694 [info] Per"},{"event":"cmd_output","timestamp":1607098326,"output":"iodic from module Elixir.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHandler.Runni"},{"event":"cmd_output","timestamp":1607098326,"output":"ngState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\""},{"event":"cmd_output","timestamp":1607098326,"output":"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial"},{"event":"cmd_output","timestamp":1607098326,"output":"_query: Ppl.Ppls.Model.Ppls, observed_state: \"running\", publisher_cb: #Function<0.74670282/1 in Ppl."},{"event":"cmd_output","timestamp":1607098326,"output":"Ppls.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :upda"},{"event":"cmd_output","timestamp":1607098326,"output":"ted_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: Pp"},{"event":"cmd_output","timestamp":1607098326,"output":"lsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:12:06.695 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.S"},{"event":"cmd_output","timestamp":1607098326,"output":"toppingState with name Elixir.Ppl.Ppls.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Pp"},{"event":"cmd_output","timestamp":1607098326,"output":"l.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"sto"},{"event":"cmd_output","timestamp":1607098326,"output":"pping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"stopping"},{"event":"cmd_output","timestamp":1607098326,"output":"\", publisher_cb: #Function<0.71803493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, repo: Ppl.Ecto"},{"event":"cmd_output","timestamp":1607098326,"output":"Repo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], "},{"event":"cmd_output","timestamp":1607098326,"output":"schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:06.697 [info] Periodic from "},{"event":"cmd_output","timestamp":1607098326,"output":"module Elixir.Ppl.PplSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHandler.Cr"},{"event":"cmd_output","timestamp":1607098326,"output":"eatedState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-Cre"},{"event":"cmd_output","timestamp":1607098326,"output":"atedState\"]}, recurring args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_q"},{"event":"cmd_output","timestamp":1607098326,"output":"uery: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip, repo: Ppl.E"},{"event":"cmd_output","timestamp":1607098326,"output":"ctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id"},{"event":"cmd_output","timestamp":1607098326,"output":"], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:06.697 [info"},{"event":"cmd_output","timestamp":1607098326,"output":"] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl.PplSubI"},{"event":"cmd_output","timestamp":1607098326,"output":"nits.STMHandler.FetchingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubI"},{"event":"cmd_output","timestamp":1607098326,"output":"nits-STMHandler-FetchingState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", "},{"event":"cmd_output","timestamp":1607098326,"output":"\"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fe"},{"event":"cmd_output","timestamp":1607098326,"output":"tching\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, "},{"event":"cmd_output","timestamp":1607098326,"output":":state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervis"},{"event":"cmd_output","timestamp":1607098326,"output":"or: :skip}\n\u001b[0m\u001b[22m\n16:12:06.699 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.C"},{"event":"cmd_output","timestamp":1607098326,"output":"ompilationState with name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 100 ms, metr"},{"event":"cmd_output","timestamp":1607098326,"output":"ic_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurring args: "},{"event":"cmd_output","timestamp":1607098326,"output":"%{allowed_states: [\"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2, initial"},{"event":"cmd_output","timestamp":1607098326,"output":"_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"compilation\", publisher_cb: :skip, repo:"},{"event":"cmd_output","timestamp":1607098326,"output":" Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :"},{"event":"cmd_output","timestamp":1607098326,"output":"ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:06.700"},{"event":"cmd_output","timestamp":1607098326,"output":" [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with name Elixir.Pp"},{"event":"cmd_output","timestamp":1607098326,"output":"l.PplSubInits.STMHandler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", ["},{"event":"cmd_output","timestamp":1607098326,"output":"\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurring args: %{allowed_states: [\"done\"], cooling"},{"event":"cmd_output","timestamp":1607098326,"output":"_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_init\", publ"},{"event":"cmd_output","timestamp":1607098326,"output":"isher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :resu"},{"event":"cmd_output","timestamp":1607098326,"output":"lt, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b"},{"event":"cmd_output","timestamp":1607098326,"output":"[0m\u001b[22m\n16:12:06.701 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.InitializingStat"},{"event":"cmd_output","timestamp":1607098326,"output":"e with name Elixir.Ppl.PplBlocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl."},{"event":"cmd_output","timestamp":1607098326,"output":"beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states"},{"event":"cmd_output","timestamp":1607098326,"output":": [\"initializing\", \"waiting\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBl"},{"event":"cmd_output","timestamp":1607098326,"output":"ocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :ter"},{"event":"cmd_output","timestamp":1607098326,"output":"minate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.P"},{"event":"cmd_output","timestamp":1607098326,"output":"plBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:06.701 [info] Periodic from mod"},{"event":"cmd_output","timestamp":1607098326,"output":"ule Elixir.Ppl.PplBlocks.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler.WaitingSt"},{"event":"cmd_output","timestamp":1607098326,"output":"ate :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingStat"},{"event":"cmd_output","timestamp":1607098326,"output":"e\"]}, recurring args: %{allowed_states: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 0, initial"},{"event":"cmd_output","timestamp":1607098326,"output":"_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"waiting\", publisher_cb: #Function<0.8975022/"},{"event":"cmd_output","timestamp":1607098326,"output":"1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_"},{"event":"cmd_output","timestamp":1607098326,"output":"request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlock"},{"event":"cmd_output","timestamp":1607098326,"output":"s.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:06.703 [info] Periodic from module Eli"},{"event":"cmd_output","timestamp":1607098326,"output":"xir.Ppl.PplBlocks.STMHandler.RunningState with name Elixir.Ppl.PplBlocks.STMHandler.RunningState :: "},{"event":"cmd_output","timestamp":1607098326,"output":"period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, r"},{"event":"cmd_output","timestamp":1607098326,"output":"ecurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_quer"},{"event":"cmd_output","timestamp":1607098326,"output":"y: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"running\", publisher_cb: #Function<0.28166834/1 in"},{"event":"cmd_output","timestamp":1607098326,"output":" Ppl.PplBlocks.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_requ"},{"event":"cmd_output","timestamp":1607098326,"output":"est, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.P"},{"event":"cmd_output","timestamp":1607098326,"output":"plBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:06.704 [info] Periodic from mod"},{"event":"cmd_output","timestamp":1607098326,"output":"ule Elixir.Ppl.PplBlocks.STMHandler.StoppingState with name Elixir.Ppl.PplBlocks.STMHandler.Stopping"},{"event":"cmd_output","timestamp":1607098326,"output":"State :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-StoppingS"},{"event":"cmd_output","timestamp":1607098326,"output":"tate\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query"},{"event":"cmd_output","timestamp":1607098326,"output":": Ppl.PplBlocks.Model.PplBlocks, observed_state: \"stopping\", publisher_cb: #Function<0.104215991/1 i"},{"event":"cmd_output","timestamp":1607098326,"output":"n Ppl.PplBlocks.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_re"},{"event":"cmd_output","timestamp":1607098326,"output":"quest, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl"},{"event":"cmd_output","timestamp":1607098326,"output":".PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:06.705 [info] Periodic from m"},{"event":"cmd_output","timestamp":1607098326,"output":"odule Elixir.Block.Blocks.STMHandler.InitializingState with name Elixir.Block.Blocks.STMHandler.Init"},{"event":"cmd_output","timestamp":1607098326,"output":"ializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-Ini"},{"event":"cmd_output","timestamp":1607098326,"output":"tializingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initi"},{"event":"cmd_output","timestamp":1607098326,"output":"al_query: Block.Blocks.Model.Blocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Bloc"},{"event":"cmd_output","timestamp":1607098326,"output":"k.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], s"},{"event":"cmd_output","timestamp":1607098326,"output":"chema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:06.706 [info] Periodic "},{"event":"cmd_output","timestamp":1607098326,"output":"from module Elixir.Block.Blocks.STMHandler.RunningState with name Elixir.Block.Blocks.STMHandler.Run"},{"event":"cmd_output","timestamp":1607098326,"output":"ningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-Running"},{"event":"cmd_output","timestamp":1607098326,"output":"State\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, i"},{"event":"cmd_output","timestamp":1607098326,"output":"nitial_query: Block.Blocks.Model.Blocks, observed_state: \"running\", publisher_cb: :skip, repo: Block"},{"event":"cmd_output","timestamp":1607098326,"output":".EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], sc"},{"event":"cmd_output","timestamp":1607098326,"output":"hema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:06.707 [info] Periodic f"},{"event":"cmd_output","timestamp":1607098326,"output":"rom module Elixir.Block.Blocks.STMHandler.StoppingState with name Elixir.Block.Blocks.STMHandler.Sto"},{"event":"cmd_output","timestamp":1607098326,"output":"ppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-Stoppi"},{"event":"cmd_output","timestamp":1607098326,"output":"ngState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_qu"},{"event":"cmd_output","timestamp":1607098326,"output":"ery: Block.Blocks.Model.Blocks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRep"},{"event":"cmd_output","timestamp":1607098326,"output":"o, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Bl"},{"event":"cmd_output","timestamp":1607098326,"output":"ock.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:06.707 [info] Periodic from modu"},{"event":"cmd_output","timestamp":1607098326,"output":"le Elixir.Block.Tasks.STMHandler.PendingState with name Elixir.Block.Tasks.STMHandler.PendingState :"},{"event":"cmd_output","timestamp":1607098326,"output":": period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingState\"]}, re"},{"event":"cmd_output","timestamp":1607098326,"output":"curring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Tasks"},{"event":"cmd_output","timestamp":1607098326,"output":".Model.Tasks, observed_state: \"pending\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id,"},{"event":"cmd_output","timestamp":1607098326,"output":" :terminate_request, :updated_at, :state, :recovery_count, :block_id, :build_request_id], schema: Bl"},{"event":"cmd_output","timestamp":1607098326,"output":"ock.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:06.708 [info] Periodic from module"},{"event":"cmd_output","timestamp":1607098326,"output":" Elixir.Block.Tasks.STMHandler.RunningState with name Elixir.Block.Tasks.STMHandler.RunningState :: "},{"event":"cmd_output","timestamp":1607098326,"output":"period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningState\"]}, recu"},{"event":"cmd_output","timestamp":1607098326,"output":"rring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: "},{"event":"cmd_output","timestamp":1607098326,"output":"Block.Tasks.Model.Tasks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, retur"},{"event":"cmd_output","timestamp":1607098326,"output":"ning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Task"},{"event":"cmd_output","timestamp":1607098326,"output":"s.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:06.708 [info] Periodic from module Elixir."},{"event":"cmd_output","timestamp":1607098326,"output":"Block.Tasks.STMHandler.StoppingState with name Elixir.Block.Tasks.STMHandler.StoppingState :: period"},{"event":"cmd_output","timestamp":1607098326,"output":": 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]}, recurring"},{"event":"cmd_output","timestamp":1607098326,"output":" args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Mode"},{"event":"cmd_output","timestamp":1607098326,"output":"l.Tasks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :te"},{"event":"cmd_output","timestamp":1607098326,"output":"rminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, "},{"event":"cmd_output","timestamp":1607098326,"output":"task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:06.818 [info] ppl_id: 7c44d7ea-5e3d-49e4-bdfa-bbe92cca2b9"},{"event":"cmd_output","timestamp":1607098326,"output":"b, type: PplRequests, event: persisted source_args for pipeline: 7c44d7ea-5e3d-49e4-bdfa-bbe92cca2b9"},{"event":"cmd_output","timestamp":1607098326,"output":"b, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:"},{"event":"cmd_output","timestamp":1607098326,"output":"06.823 [info] ppl_id: 7c44d7ea-5e3d-49e4-bdfa-bbe92cca2b9b, type: PplSubInits, state: fetching, eve"},{"event":"cmd_output","timestamp":1607098326,"output":"nt: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b["},{"event":"cmd_output","timestamp":1607098326,"output":"0m\u001b[22m\n16:12:06.851 [info] ppl_id: 7c44d7ea-5e3d-49e4-bdfa-bbe92cca2b9b, type: PplSubInits, state"},{"event":"cmd_output","timestamp":1607098326,"output":": regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_"},{"event":"cmd_output","timestamp":1607098326,"output":"change/1(L90), \n\u001b[0m\u001b[22m\n16:12:06.881 [info] ppl_id: 7c44d7ea-5e3d-49e4-bdfa-bbe92cca2b9b, type:"},{"event":"cmd_output","timestamp":1607098326,"output":" PplRequests, event: persisted definition for request with request_token: 744c91b2-364b-11eb-8563-52"},{"event":"cmd_output","timestamp":1607098326,"output":"54005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098326,"output":"\u001b[22m\n16:12:06.886 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.M"},{"event":"cmd_output","timestamp":1607098326,"output":"etadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:12:06.884024], name: \"master-.semaphore/se"},{"event":"cmd_output","timestamp":1607098326,"output":"maphore.yml\", organization_id: \"525c1075-defe-489f-932c-2aec51356bf5\", project_id: \"50861ede-c88c-44"},{"event":"cmd_output","timestamp":1607098326,"output":"e7-8973-d854dad8bde4\", queue_id: \"a1825a99-2ec1-4692-a6e0-a32ce84442d1\", scope: \"project\", updated_a"},{"event":"cmd_output","timestamp":1607098326,"output":"t: ~N[2020-12-04 16:12:06.884036], user_generated: false}}\n\u001b[0m\u001b[22m\n16:12:06.904 [info] ppl_id: "},{"event":"cmd_output","timestamp":1607098326,"output":"not_available, event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1("},{"event":"cmd_output","timestamp":1607098326,"output":"L105), \n\u001b[0m\u001b[22m\n16:12:06.904 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.R"},{"event":"cmd_output","timestamp":1607098326,"output":"egularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:06.904 [info] ppl_id: 7c44d7ea-5e3d-49e4-bdfa-b"},{"event":"cmd_output","timestamp":1607098326,"output":"be92cca2b9b, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0"},{"event":"cmd_output","timestamp":1607098326,"output":", origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:06."},{"event":"cmd_output","timestamp":1607098326,"output":"904 [info] ppl_id: 7c44d7ea-5e3d-49e4-bdfa-bbe92cca2b9b, type: PplBlocks, block_index: 1, state: in"},{"event":"cmd_output","timestamp":1607098326,"output":"itializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInit"},{"event":"cmd_output","timestamp":1607098326,"output":"State.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:06.904 [info] ppl_id: 7c44d7ea-5e3d-49e4-bdfa-bbe92cca2b9"},{"event":"cmd_output","timestamp":1607098326,"output":"b, type: PplBlocks, block_index: 2, state: initializing, event: created, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098326,"output":"Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:06.904 [info]"},{"event":"cmd_output","timestamp":1607098326,"output":" ppl_id: 7c44d7ea-5e3d-49e4-bdfa-bbe92cca2b9b, type: PplBlocks, block_index: 3, state: initializing"},{"event":"cmd_output","timestamp":1607098326,"output":", event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_"},{"event":"cmd_output","timestamp":1607098326,"output":"ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:06.904 [info] ppl_id: 7c44d7ea-5e3d-49e4-bdfa-bbe92cca2b9b, type: P"},{"event":"cmd_output","timestamp":1607098326,"output":"plBlocks, block_index: 4, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098326,"output":".PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:06.909 [info] ppl_id: "},{"event":"cmd_output","timestamp":1607098326,"output":"7c44d7ea-5e3d-49e4-bdfa-bbe92cca2b9b, type: PplSubInits, state: done, result: passed, event: exit_sc"},{"event":"cmd_output","timestamp":1607098326,"output":"heduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098326,"output":":12:06.930 [info] ppl_id: 7c44d7ea-5e3d-49e4-bdfa-bbe92cca2b9b, type: PplBlocks, block_index: 0, st"},{"event":"cmd_output","timestamp":1607098326,"output":"ate: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_ch"},{"event":"cmd_output","timestamp":1607098326,"output":"ange/1(L90), \n\u001b[0m\u001b[22m\n16:12:06.932 [info] ppl_id: 7c44d7ea-5e3d-49e4-bdfa-bbe92cca2b9b, type: P"},{"event":"cmd_output","timestamp":1607098326,"output":"pls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_s"},{"event":"cmd_output","timestamp":1607098326,"output":"tate_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:06.939 [info] ppl_id: 7c44d7ea-5e3d-49e4-bdfa-bbe92cca2b9b, "},{"event":"cmd_output","timestamp":1607098326,"output":"type: PplBlocks, block_index: 1, state: waiting, event: exit_scheduling, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098326,"output":"Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:06.946 [info] ppl_id: 7c44d7ea-5"},{"event":"cmd_output","timestamp":1607098326,"output":"e3d-49e4-bdfa-bbe92cca2b9b, type: PplBlocks, block_index: 2, state: waiting, event: exit_scheduling,"},{"event":"cmd_output","timestamp":1607098326,"output":" recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:06.94"},{"event":"cmd_output","timestamp":1607098326,"output":"9 [info] ppl_id: 7c44d7ea-5e3d-49e4-bdfa-bbe92cca2b9b, type: Ppls, state: queuing, event: exit_sche"},{"event":"cmd_output","timestamp":1607098326,"output":"duling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098326,"output":"2:06.954 [info] ppl_id: 7c44d7ea-5e3d-49e4-bdfa-bbe92cca2b9b, type: PplBlocks, block_index: 3, stat"},{"event":"cmd_output","timestamp":1607098326,"output":"e: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chan"},{"event":"cmd_output","timestamp":1607098326,"output":"ge/1(L90), \n\u001b[0m\u001b[22m\n16:12:06.960 [info] ppl_id: 7c44d7ea-5e3d-49e4-bdfa-bbe92cca2b9b, type: Ppl"},{"event":"cmd_output","timestamp":1607098326,"output":"s, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_sta"},{"event":"cmd_output","timestamp":1607098326,"output":"te_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:06.965 [info] ppl_id: 7c44d7ea-5e3d-49e4-bdfa-bbe92cca2b9b, ty"},{"event":"cmd_output","timestamp":1607098326,"output":"pe: PplBlocks, block_index: 4, state: waiting, event: exit_scheduling, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098326,"output":"ixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:06.967 [info] PplBlocks WaitingSta"},{"event":"cmd_output","timestamp":1607098326,"output":"te STM is scheduling block 3 from pipeline: \"7c44d7ea-5e3d-49e4-bdfa-bbe92cca2b9b\"\n\u001b[0m\u001b[22m\n16:12"},{"event":"cmd_output","timestamp":1607098326,"output":":06.978 [info] block_id: 59cda0ef-261a-47fe-9ab0-33348b2e0e23, type: BlockRequests, event: persiste"},{"event":"cmd_output","timestamp":1607098326,"output":"d block run request from ppl 7c44d7ea-5e3d-49e4-bdfa-bbe92cca2b9b for block 3, origin: Elixir.Block."},{"event":"cmd_output","timestamp":1607098326,"output":"BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:06.981 [info] "},{"event":"cmd_output","timestamp":1607098326,"output":"block_id: 59cda0ef-261a-47fe-9ab0-33348b2e0e23, type: Blocks, state: initializing, event: initializi"},{"event":"cmd_output","timestamp":1607098326,"output":"ng, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098326,"output":"6:12:06.985 [info] Block 3 of pipeline with id: 7c44d7ea-5e3d-49e4-bdfa-bbe92cca2b9b scheduled in b"},{"event":"cmd_output","timestamp":1607098326,"output":"lock service with id: : \"59cda0ef-261a-47fe-9ab0-33348b2e0e23\"\n\u001b[0m\u001b[22m\n16:12:06.989 [info] bloc"},{"event":"cmd_output","timestamp":1607098326,"output":"k_id: 59cda0ef-261a-47fe-9ab0-33348b2e0e23, type: BlockRequests, event: persisted build and sub_ppl "},{"event":"cmd_output","timestamp":1607098326,"output":"details for block_request: 59cda0ef-261a-47fe-9ab0-33348b2e0e23, origin: Elixir.Block.BlockRequests."},{"event":"cmd_output","timestamp":1607098326,"output":"Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:06.989 [info] ppl_id: 7c44d7ea-5"},{"event":"cmd_output","timestamp":1607098326,"output":"e3d-49e4-bdfa-bbe92cca2b9b, type: PplBlocks, block_index: 3, state: running, event: exit_scheduling,"},{"event":"cmd_output","timestamp":1607098326,"output":" recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:06.99"},{"event":"cmd_output","timestamp":1607098326,"output":"4 [info] block_id: 59cda0ef-261a-47fe-9ab0-33348b2e0e23, type: Tasks, state: pending, event: create"},{"event":"cmd_output","timestamp":1607098326,"output":"d, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b["},{"event":"cmd_output","timestamp":1607098326,"output":"0m\u001b[22m\n16:12:06.997 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"7c44d"},{"event":"cmd_output","timestamp":1607098326,"output":"7ea-5e3d-49e4-bdfa-bbe92cca2b9b\"\n\u001b[0m\u001b[22m\n16:12:06.998 [info] block_id: 59cda0ef-261a-47fe-9ab0-"},{"event":"cmd_output","timestamp":1607098326,"output":"33348b2e0e23, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098327,"output":"r.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:07.006 [info] block_id: 1cd86980-0337"},{"event":"cmd_output","timestamp":1607098327,"output":"-4530-aa85-b4287f358aa5, type: BlockRequests, event: persisted block run request from ppl 7c44d7ea-5"},{"event":"cmd_output","timestamp":1607098327,"output":"e3d-49e4-bdfa-bbe92cca2b9b for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQuerie"},{"event":"cmd_output","timestamp":1607098327,"output":"s.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:07.013 [info] block_id: 1cd86980-0337-4530-aa85-b4287"},{"event":"cmd_output","timestamp":1607098327,"output":"f358aa5, type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.B"},{"event":"cmd_output","timestamp":1607098327,"output":"lock.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:07.017 [info] Block 0 of pipeline"},{"event":"cmd_output","timestamp":1607098327,"output":" with id: 7c44d7ea-5e3d-49e4-bdfa-bbe92cca2b9b scheduled in block service with id: : \"1cd86980-0337-"},{"event":"cmd_output","timestamp":1607098327,"output":"4530-aa85-b4287f358aa5\"\n\u001b[0m\u001b[22m\n16:12:07.024 [info] block_id: 59cda0ef-261a-47fe-9ab0-33348b2e0"},{"event":"cmd_output","timestamp":1607098327,"output":"e23, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.S"},{"event":"cmd_output","timestamp":1607098327,"output":"TM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:07.031 [info] ppl_id: 7c44d7ea-5e3d-49e4-bdfa-b"},{"event":"cmd_output","timestamp":1607098327,"output":"be92cca2b9b, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count"},{"event":"cmd_output","timestamp":1607098327,"output":": 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:07.040 [info] block"},{"event":"cmd_output","timestamp":1607098327,"output":"_id: 1cd86980-0337-4530-aa85-b4287f358aa5, type: BlockRequests, event: persisted build and sub_ppl d"},{"event":"cmd_output","timestamp":1607098327,"output":"etails for block_request: 1cd86980-0337-4530-aa85-b4287f358aa5, origin: Elixir.Block.BlockRequests.M"},{"event":"cmd_output","timestamp":1607098327,"output":"odel.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:07.052 [info] block_id: 1cd86980-"},{"event":"cmd_output","timestamp":1607098327,"output":"0337-4530-aa85-b4287f358aa5, type: Tasks, state: pending, event: created, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098327,"output":" Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:07.054 [info] "},{"event":"cmd_output","timestamp":1607098327,"output":" block_id: 1cd86980-0337-4530-aa85-b4287f358aa5, type: Blocks, state: running, event: exit_schedulin"},{"event":"cmd_output","timestamp":1607098327,"output":"g, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:07."},{"event":"cmd_output","timestamp":1607098327,"output":"077 [info] block_id: 1cd86980-0337-4530-aa85-b4287f358aa5, type: Tasks, state: running, event: exit"},{"event":"cmd_output","timestamp":1607098328,"output":"_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098328,"output":"\n16:12:08.063 [info] block_id: 59cda0ef-261a-47fe-9ab0-33348b2e0e23, type: Tasks, state: done, even"},{"event":"cmd_output","timestamp":1607098328,"output":"t: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098328,"output":"m\u001b[22m\n16:12:08.085 [info] block_id: 59cda0ef-261a-47fe-9ab0-33348b2e0e23, type: Blocks, state: do"},{"event":"cmd_output","timestamp":1607098328,"output":"ne, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90"},{"event":"cmd_output","timestamp":1607098328,"output":"), \n\u001b[0m\u001b[22m\n16:12:08.098 [info] ppl_id: 7c44d7ea-5e3d-49e4-bdfa-bbe92cca2b9b, block_id: 59cda0e"},{"event":"cmd_output","timestamp":1607098328,"output":"f-261a-47fe-9ab0-33348b2e0e23, type: PplBlocks, block_index: 3, state: done, result: failed, event: "},{"event":"cmd_output","timestamp":1607098328,"output":"exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098328,"output":"22m\n16:12:08.175 [info] block_id: 1cd86980-0337-4530-aa85-b4287f358aa5, type: Tasks, state: done, "},{"event":"cmd_output","timestamp":1607098328,"output":"event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \r"},{"event":"cmd_output","timestamp":1607098328,"output":"\n\u001b[0m\u001b[22m\n16:12:08.186 [info] block_id: 1cd86980-0337-4530-aa85-b4287f358aa5, type: Blocks, state"},{"event":"cmd_output","timestamp":1607098328,"output":": done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1"},{"event":"cmd_output","timestamp":1607098328,"output":"(L90), \n\u001b[0m\u001b[22m\n16:12:08.196 [info] ppl_id: 7c44d7ea-5e3d-49e4-bdfa-bbe92cca2b9b, block_id: 1cd"},{"event":"cmd_output","timestamp":1607098328,"output":"86980-0337-4530-aa85-b4287f358aa5, type: PplBlocks, block_index: 0, state: done, result: passed, eve"},{"event":"cmd_output","timestamp":1607098328,"output":"nt: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b["},{"event":"cmd_output","timestamp":1607098328,"output":"0m\u001b[22m\n16:12:08.207 [info] PplBlocks WaitingState STM is scheduling block 1 from pipeline: \"7c44d"},{"event":"cmd_output","timestamp":1607098328,"output":"7ea-5e3d-49e4-bdfa-bbe92cca2b9b\"\n\u001b[0m\u001b[22m\n16:12:08.218 [info] ppl_id: 7c44d7ea-5e3d-49e4-bdfa-bb"},{"event":"cmd_output","timestamp":1607098328,"output":"e92cca2b9b, type: PplBlocks, block_index: 1, state: done, result: canceled, event: exit_scheduling, "},{"event":"cmd_output","timestamp":1607098328,"output":"recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:08.223"},{"event":"cmd_output","timestamp":1607098328,"output":" [info] PplBlocks WaitingState STM is scheduling block 4 from pipeline: \"7c44d7ea-5e3d-49e4-bdfa-bb"},{"event":"cmd_output","timestamp":1607098328,"output":"e92cca2b9b\"\n\u001b[0m\u001b[22m\n16:12:08.230 [info] ppl_id: 7c44d7ea-5e3d-49e4-bdfa-bbe92cca2b9b, type: Ppl"},{"event":"cmd_output","timestamp":1607098328,"output":"Blocks, block_index: 4, state: done, result: canceled, event: exit_scheduling, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098328,"output":"igin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:08.235 [info] PplBlocks Wa"},{"event":"cmd_output","timestamp":1607098328,"output":"itingState STM is scheduling block 2 from pipeline: \"7c44d7ea-5e3d-49e4-bdfa-bbe92cca2b9b\"\n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098328,"output":"m\n16:12:08.239 [info] ppl_id: 7c44d7ea-5e3d-49e4-bdfa-bbe92cca2b9b, type: PplBlocks, block_index: "},{"event":"cmd_output","timestamp":1607098328,"output":"2, state: done, result: canceled, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.S"},{"event":"cmd_output","timestamp":1607098328,"output":"TM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:08.258 [info] ppl_id: 7c44d7ea-5e3d-49e4-bdfa-b"},{"event":"cmd_output","timestamp":1607098328,"output":"be92cca2b9b, type: Ppls, state: done, result: failed, event: exit_scheduling, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098328,"output":"gin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:08.287 [info] Request: 'par"},{"event":"cmd_output","timestamp":1607098328,"output":"tial_rebuild', request: %{ppl_id: \"7c44d7ea-5e3d-49e4-bdfa-bbe92cca2b9b\", request_token: \"e57a9f9e-6"},{"event":"cmd_output","timestamp":1607098328,"output":"eb8-4e01-bf60-684c06f46d28\", user_id: \"rebuild_user\"}\n\u001b[0m\u001b[22m\n16:12:08.290 [info] ppl_id: 0587e"},{"event":"cmd_output","timestamp":1607098328,"output":"87f-cc66-4058-8a61-4854740eb1fb, type: PplRequests, event: persisted schedule request with request_t"},{"event":"cmd_output","timestamp":1607098328,"output":"oken: e57a9f9e-6eb8-4e01-bf60-684c06f46d28, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries."},{"event":"cmd_output","timestamp":1607098328,"output":"process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:08.293 [info] ppl_id: 0587e87f-cc66-4058-8a61-4854740eb"},{"event":"cmd_output","timestamp":1607098328,"output":"1fb, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098328,"output":"s.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:08.300 [info] Persisted ppl_sub_in"},{"event":"cmd_output","timestamp":1607098328,"output":"it for pipeline with ppl_id: 0587e87f-cc66-4058-8a61-4854740eb1fb: %Ppl.PplSubInits.Model.PplSubInit"},{"event":"cmd_output","timestamp":1607098328,"output":"s{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_descri"},{"event":"cmd_output","timestamp":1607098328,"output":"ption: nil, id: 167, in_scheduling: false, init_type: \"rebuild\", inserted_at: ~N[2020-12-04 16:12:08"},{"event":"cmd_output","timestamp":1607098328,"output":".299761], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"0587e87f-cc66-4058-8a61-4854740eb1fb\", recovery_count: 0, result: nil, result_reason: n"},{"event":"cmd_output","timestamp":1607098328,"output":"il, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04"},{"event":"cmd_output","timestamp":1607098328,"output":" 16:12:08.299773]}\n\u001b[0m\u001b[22m\n16:12:08.316 [info] Request: 'partial_rebuild', request: %{ppl_id: \""},{"event":"cmd_output","timestamp":1607098328,"output":"7c44d7ea-5e3d-49e4-bdfa-bbe92cca2b9b\", request_token: \"e57a9f9e-6eb8-4e01-bf60-684c06f46d28\", user_i"},{"event":"cmd_output","timestamp":1607098328,"output":"d: \"rebuild_user\"}\n\u001b[0m\u001b[22m\n16:12:08.334 [info] PplRequestsQueries.insert_request() - There is a"},{"event":"cmd_output","timestamp":1607098328,"output":"lready pipeline request with request_token: : \"e57a9f9e-6eb8-4e01-bf60-684c06f46d28\"\n\u001b[0m\u001b[32m\r * "},{"event":"cmd_output","timestamp":1607098328,"output":"test gRPC partial_rebuild() is idempotent (1800.1ms)\u001b[0m\n * test gRPC validate_yaml() - only valid"},{"event":"cmd_output","timestamp":1607098328,"output":" yaml definition passed\r * test gRPC validate_yaml() - only valid yaml definition passed (skipped)\r"},{"event":"cmd_output","timestamp":1607098328,"output":"\n * test gRPC schedule_extension() GitHub - succedes when given valid params\u001b[22m\n16:12:08.421 [in"},{"event":"cmd_output","timestamp":1607098328,"output":"fo] Request: 'run: %{\"branch_id\" => \"76fbc9e6-05db-4376-bbd6-ea329b3983af\", \"branch_name\" => \"maste"},{"event":"cmd_output","timestamp":1607098328,"output":"r\", \"client_id\" => \"328c742132e5407abd7d\", \"commit_sha\" => \"eea1377\", \"file_name\" => \"semaphore.yml\""},{"event":"cmd_output","timestamp":1607098328,"output":", \"hook_id\" => \"f9a8fa5d-96ac-4bcd-ac58-56b656bd9c86\", \"label\" => \"schedule_extension\", \"organizatio"},{"event":"cmd_output","timestamp":1607098328,"output":"n_id\" => \"cf6df702-245b-42d3-ace9-7e6ff73fbaf7\", \"owner\" => \"renderedtext\", \"project_id\" => \"123\", \""},{"event":"cmd_output","timestamp":1607098328,"output":"repo_name\" => \"pipelines-test-repo-auto-call\", \"request_token\" => \"7559abd0-364b-11eb-95d5-525400546"},{"event":"cmd_output","timestamp":1607098328,"output":"4e2\", \"requester_id\" => \"8cc5eaa6-65e8-4f9c-b63e-2ca3367a7d8c\", \"service\" => \"git_hub\", \"suppressed_"},{"event":"cmd_output","timestamp":1607098328,"output":"attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"6afb43c3-29c3-477b-a101-0e483a0a68e5\","},{"event":"cmd_output","timestamp":1607098328,"output":" \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:12:08.456 [info] ppl_id: 9b16c5ea-7709-4ccb-b0bb-647"},{"event":"cmd_output","timestamp":1607098328,"output":"9c15455ff, type: PplRequests, event: persisted schedule request with request_token: 7559abd0-364b-11"},{"event":"cmd_output","timestamp":1607098328,"output":"eb-95d5-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55"},{"event":"cmd_output","timestamp":1607098328,"output":"), \n\u001b[0m\u001b[22m\n16:12:08.463 [info] ppl_id: 9b16c5ea-7709-4ccb-b0bb-6479c15455ff, type: Ppls, state"},{"event":"cmd_output","timestamp":1607098328,"output":": initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.pr"},{"event":"cmd_output","timestamp":1607098328,"output":"ocess_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:08.472 [info] Project 123 and branch masterlatest_wf det"},{"event":"cmd_output","timestamp":1607098328,"output":"ails updated: \"wf_id: 6afb43c3-29c3-477b-a101-0e483a0a68e5, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:12:08.476 ["},{"event":"cmd_output","timestamp":1607098328,"output":"info] Persisted ppl_sub_init for pipeline with ppl_id: 9b16c5ea-7709-4ccb-b0bb-6479c15455ff: %Ppl.P"},{"event":"cmd_output","timestamp":1607098328,"output":"plSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile"},{"event":"cmd_output","timestamp":1607098328,"output":"_task_id: nil, error_description: nil, id: 168, in_scheduling: false, init_type: \"regular\", inserted"},{"event":"cmd_output","timestamp":1607098328,"output":"_at: ~N[2020-12-04 16:12:08.474138], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"9b16c5ea-7709-4ccb-b0bb-6479c15455ff\", recovery_count: 0, re"},{"event":"cmd_output","timestamp":1607098328,"output":"sult: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil"},{"event":"cmd_output","timestamp":1607098328,"output":", updated_at: ~N[2020-12-04 16:12:08.474154]}\n\u001b[0m\u001b[22m\n16:12:08.485 [info] Periodic from module "},{"event":"cmd_output","timestamp":1607098328,"output":"Elixir.Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.STMHandler.InitializingState "},{"event":"cmd_output","timestamp":1607098328,"output":":: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]},"},{"event":"cmd_output","timestamp":1607098328,"output":" recurring args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], cooling_time_sec: 0, initial"},{"event":"cmd_output","timestamp":1607098328,"output":"_query: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher_cb: #Function<0.125326080/1 i"},{"event":"cmd_output","timestamp":1607098328,"output":"n Ppl.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_req"},{"event":"cmd_output","timestamp":1607098328,"output":"uest, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_sup"},{"event":"cmd_output","timestamp":1607098328,"output":"ervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:08.485 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.Pen"},{"event":"cmd_output","timestamp":1607098328,"output":"dingState with name Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.be"},{"event":"cmd_output","timestamp":1607098328,"output":"holder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"pending\""},{"event":"cmd_output","timestamp":1607098328,"output":", \"queuing\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_s"},{"event":"cmd_output","timestamp":1607098328,"output":"tate: \"pending\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, re"},{"event":"cmd_output","timestamp":1607098328,"output":"po: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count"},{"event":"cmd_output","timestamp":1607098328,"output":", :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:12:08.4"},{"event":"cmd_output","timestamp":1607098328,"output":"88 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.QueuingState with name Elixir.Ppl.Ppls.ST"},{"event":"cmd_output","timestamp":1607098328,"output":"MHandler.QueuingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler"},{"event":"cmd_output","timestamp":1607098328,"output":"-QueuingState\"]}, recurring args: %{allowed_states: [\"queuing\", \"running\", \"done\"], cooling_time_sec"},{"event":"cmd_output","timestamp":1607098328,"output":": -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", publisher_cb: #Function<0.12510"},{"event":"cmd_output","timestamp":1607098328,"output":"2843/1 in Ppl.Ppls.STMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_"},{"event":"cmd_output","timestamp":1607098328,"output":"request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_"},{"event":"cmd_output","timestamp":1607098328,"output":"supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:08.490 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler."},{"event":"cmd_output","timestamp":1607098328,"output":"RunningState with name Elixir.Ppl.Ppls.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl"},{"event":"cmd_output","timestamp":1607098328,"output":".beholder-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"runni"},{"event":"cmd_output","timestamp":1607098328,"output":"ng\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: "},{"event":"cmd_output","timestamp":1607098328,"output":"\"running\", publisher_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler.RunningState.args/0>, repo: P"},{"event":"cmd_output","timestamp":1607098328,"output":"pl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :pp"},{"event":"cmd_output","timestamp":1607098328,"output":"l_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:12:08.491 [i"},{"event":"cmd_output","timestamp":1607098328,"output":"nfo] Periodic from module Elixir.Ppl.Ppls.STMHandler.StoppingState with name Elixir.Ppl.Ppls.STMHan"},{"event":"cmd_output","timestamp":1607098328,"output":"dler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-St"},{"event":"cmd_output","timestamp":1607098328,"output":"oppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initia"},{"event":"cmd_output","timestamp":1607098328,"output":"l_query: Ppl.Ppls.Model.Ppls, observed_state: \"stopping\", publisher_cb: #Function<0.71803493/1 in Pp"},{"event":"cmd_output","timestamp":1607098328,"output":"l.Ppls.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :u"},{"event":"cmd_output","timestamp":1607098328,"output":"pdated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor:"},{"event":"cmd_output","timestamp":1607098328,"output":" :skip}\n\u001b[0m\u001b[22m\n16:12:08.493 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.Crea"},{"event":"cmd_output","timestamp":1607098328,"output":"tedState with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 100 ms, metric_name: {\""},{"event":"cmd_output","timestamp":1607098328,"output":"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args: %{allowed_state"},{"event":"cmd_output","timestamp":1607098328,"output":"s: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, obse"},{"event":"cmd_output","timestamp":1607098328,"output":"rved_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request,"},{"event":"cmd_output","timestamp":1607098328,"output":" :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits,"},{"event":"cmd_output","timestamp":1607098328,"output":" task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:08.494 [info] Periodic from module Elixir.Ppl.PplSubInit"},{"event":"cmd_output","timestamp":1607098328,"output":"s.STMHandler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 "},{"event":"cmd_output","timestamp":1607098328,"output":"ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring a"},{"event":"cmd_output","timestamp":1607098328,"output":"rgs: %{allowed_states: [\"regular_init\", \"compilation\", \"done\"], cooling_time_sec: -2, initial_query:"},{"event":"cmd_output","timestamp":1607098328,"output":" Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoR"},{"event":"cmd_output","timestamp":1607098328,"output":"epo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], s"},{"event":"cmd_output","timestamp":1607098328,"output":"chema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:08.496 [info] P"},{"event":"cmd_output","timestamp":1607098328,"output":"eriodic from module Elixir.Ppl.PplSubInits.STMHandler.CompilationState with name Elixir.Ppl.PplSubIn"},{"event":"cmd_output","timestamp":1607098328,"output":"its.STMHandler.CompilationState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSu"},{"event":"cmd_output","timestamp":1607098328,"output":"bInits-STMHandler-CompilationState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilati"},{"event":"cmd_output","timestamp":1607098328,"output":"on\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, ob"},{"event":"cmd_output","timestamp":1607098328,"output":"served_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_re"},{"event":"cmd_output","timestamp":1607098328,"output":"quest, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSub"},{"event":"cmd_output","timestamp":1607098328,"output":"Inits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:08.497 [info] Periodic from module Elixir.Ppl.PplS"},{"event":"cmd_output","timestamp":1607098328,"output":"ubInits.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: "},{"event":"cmd_output","timestamp":1607098328,"output":"period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\""},{"event":"cmd_output","timestamp":1607098328,"output":"]}, recurring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits."},{"event":"cmd_output","timestamp":1607098328,"output":"Model.PplSubInits, observed_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returnin"},{"event":"cmd_output","timestamp":1607098328,"output":"g: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Pp"},{"event":"cmd_output","timestamp":1607098328,"output":"lSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:08.499 [info] Periodic from "},{"event":"cmd_output","timestamp":1607098328,"output":"module Elixir.Ppl.PplBlocks.STMHandler.InitializingState with name Elixir.Ppl.PplBlocks.STMHandler.I"},{"event":"cmd_output","timestamp":1607098328,"output":"nitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler"},{"event":"cmd_output","timestamp":1607098328,"output":"-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"waiting\", \"done\"], coolin"},{"event":"cmd_output","timestamp":1607098328,"output":"g_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"initializing\", publish"},{"event":"cmd_output","timestamp":1607098328,"output":"er_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result,"},{"event":"cmd_output","timestamp":1607098328,"output":" :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :s"},{"event":"cmd_output","timestamp":1607098328,"output":"kip}\n\u001b[0m\u001b[22m\n16:12:08.500 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.WaitingSt"},{"event":"cmd_output","timestamp":1607098328,"output":"ate with name Elixir.Ppl.PplBlocks.STMHandler.WaitingState :: period: 1000 ms, metric_name: {\"Ppl.be"},{"event":"cmd_output","timestamp":1607098328,"output":"holder-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurring args: %{allowed_states: [\"wai"},{"event":"cmd_output","timestamp":1607098328,"output":"ting\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observ"},{"event":"cmd_output","timestamp":1607098328,"output":"ed_state: \"waiting\", publisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.ar"},{"event":"cmd_output","timestamp":1607098328,"output":"gs/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recov"},{"event":"cmd_output","timestamp":1607098328,"output":"ery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b"},{"event":"cmd_output","timestamp":1607098328,"output":"[0m\u001b[22m\n16:12:08.501 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.RunningState wit"},{"event":"cmd_output","timestamp":1607098328,"output":"h name Elixir.Ppl.PplBlocks.STMHandler.RunningState :: period: 1000 ms, metric_name: {\"Ppl.beholder-"},{"event":"cmd_output","timestamp":1607098328,"output":"wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", "},{"event":"cmd_output","timestamp":1607098328,"output":"\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_st"},{"event":"cmd_output","timestamp":1607098328,"output":"ate: \"running\", publisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0"},{"event":"cmd_output","timestamp":1607098328,"output":">, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_"},{"event":"cmd_output","timestamp":1607098328,"output":"count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :s"},{"event":"cmd_output","timestamp":1607098328,"output":"kip}\n\u001b[0m\u001b[22m\n16:12:08.503 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.StoppingS"},{"event":"cmd_output","timestamp":1607098328,"output":"tate with name Elixir.Ppl.PplBlocks.STMHandler.StoppingState :: period: 1000 ms, metric_name: {\"Ppl."},{"event":"cmd_output","timestamp":1607098328,"output":"beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\""},{"event":"cmd_output","timestamp":1607098328,"output":"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_sta"},{"event":"cmd_output","timestamp":1607098328,"output":"te: \"stopping\", publisher_cb: #Function<0.104215991/1 in Ppl.PplBlocks.STMHandler.StoppingState.args"},{"event":"cmd_output","timestamp":1607098328,"output":"/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recover"},{"event":"cmd_output","timestamp":1607098328,"output":"y_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: "},{"event":"cmd_output","timestamp":1607098328,"output":":skip}\n\u001b[0m\u001b[22m\n16:12:08.504 [info] Periodic from module Elixir.Block.Blocks.STMHandler.Initiali"},{"event":"cmd_output","timestamp":1607098328,"output":"zingState with name Elixir.Block.Blocks.STMHandler.InitializingState :: period: 100 ms, metric_name:"},{"event":"cmd_output","timestamp":1607098328,"output":" {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_"},{"event":"cmd_output","timestamp":1607098328,"output":"states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Blocks.Model.Blocks, observed"},{"event":"cmd_output","timestamp":1607098328,"output":"_state: \"initializing\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_reque"},{"event":"cmd_output","timestamp":1607098328,"output":"st, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_superv"},{"event":"cmd_output","timestamp":1607098328,"output":"isor: :skip}\n\u001b[0m\u001b[22m\n16:12:08.505 [info] Periodic from module Elixir.Block.Blocks.STMHandler.Ru"},{"event":"cmd_output","timestamp":1607098328,"output":"nningState with name Elixir.Block.Blocks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"P"},{"event":"cmd_output","timestamp":1607098328,"output":"pl.beholder-wake_up\", [\"Block-Blocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: ["},{"event":"cmd_output","timestamp":1607098328,"output":"\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, obse"},{"event":"cmd_output","timestamp":1607098328,"output":"rved_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_reques"},{"event":"cmd_output","timestamp":1607098328,"output":"t, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervi"},{"event":"cmd_output","timestamp":1607098328,"output":"sor: :skip}\n\u001b[0m\u001b[22m\n16:12:08.506 [info] Periodic from module Elixir.Block.Blocks.STMHandler.Sto"},{"event":"cmd_output","timestamp":1607098328,"output":"ppingState with name Elixir.Block.Blocks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\""},{"event":"cmd_output","timestamp":1607098328,"output":"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states:"},{"event":"cmd_output","timestamp":1607098328,"output":" [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_stat"},{"event":"cmd_output","timestamp":1607098328,"output":"e: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :upda"},{"event":"cmd_output","timestamp":1607098328,"output":"ted_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :sk"},{"event":"cmd_output","timestamp":1607098328,"output":"ip}\n\u001b[0m\u001b[22m\n16:12:08.508 [info] Periodic from module Elixir.Block.Tasks.STMHandler.PendingState"},{"event":"cmd_output","timestamp":1607098328,"output":" with name Elixir.Block.Tasks.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder"},{"event":"cmd_output","timestamp":1607098328,"output":"-wake_up\", [\"Block-Tasks-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"running\", \""},{"event":"cmd_output","timestamp":1607098328,"output":"done\"], cooling_time_sec: 0, initial_query: Block.Tasks.Model.Tasks, observed_state: \"pending\", publ"},{"event":"cmd_output","timestamp":1607098328,"output":"isher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :re"},{"event":"cmd_output","timestamp":1607098328,"output":"covery_count, :block_id, :build_request_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip"},{"event":"cmd_output","timestamp":1607098328,"output":"}\n\u001b[0m\u001b[22m\n16:12:08.509 [info] Periodic from module Elixir.Block.Tasks.STMHandler.RunningState w"},{"event":"cmd_output","timestamp":1607098328,"output":"ith name Elixir.Block.Tasks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-w"},{"event":"cmd_output","timestamp":1607098328,"output":"ake_up\", [\"Block-Tasks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"st"},{"event":"cmd_output","timestamp":1607098328,"output":"opping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"run"},{"event":"cmd_output","timestamp":1607098328,"output":"ning\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, "},{"event":"cmd_output","timestamp":1607098328,"output":":state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098328,"output":"[22m\n16:12:08.510 [info] Periodic from module Elixir.Block.Tasks.STMHandler.StoppingState with nam"},{"event":"cmd_output","timestamp":1607098328,"output":"e Elixir.Block.Tasks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up"},{"event":"cmd_output","timestamp":1607098328,"output":"\", [\"Block-Tasks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"]"},{"event":"cmd_output","timestamp":1607098328,"output":", cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"stopping\", publishe"},{"event":"cmd_output","timestamp":1607098328,"output":"r_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recove"},{"event":"cmd_output","timestamp":1607098328,"output":"ry_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:08."},{"event":"cmd_output","timestamp":1607098328,"output":"608 [info] ppl_id: 9b16c5ea-7709-4ccb-b0bb-6479c15455ff, type: PplRequests, event: persisted source"},{"event":"cmd_output","timestamp":1607098328,"output":"_args for pipeline: 9b16c5ea-7709-4ccb-b0bb-6479c15455ff, origin: Elixir.Ppl.PplRequests.Model.PplRe"},{"event":"cmd_output","timestamp":1607098328,"output":"questsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:08.614 [info] ppl_id: 9b16c5ea-7709-4ccb-b0b"},{"event":"cmd_output","timestamp":1607098328,"output":"b-6479c15455ff, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098329,"output":"n: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:09.308 [info] ppl_id: 9b16c5e"},{"event":"cmd_output","timestamp":1607098329,"output":"a-7709-4ccb-b0bb-6479c15455ff, type: PplSubInits, state: regular_init, event: exit_scheduling, recov"},{"event":"cmd_output","timestamp":1607098329,"output":"ery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:09.345 [inf"},{"event":"cmd_output","timestamp":1607098329,"output":"o] ppl_id: 9b16c5ea-7709-4ccb-b0bb-6479c15455ff, type: PplRequests, event: persisted definition for"},{"event":"cmd_output","timestamp":1607098329,"output":" request with request_token: 7559abd0-364b-11eb-95d5-5254005464e2, origin: Elixir.Ppl.PplRequests.Mo"},{"event":"cmd_output","timestamp":1607098329,"output":"del.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:09.353 [info] Queue persisted: "},{"event":"cmd_output","timestamp":1607098329,"output":"{:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2"},{"event":"cmd_output","timestamp":1607098329,"output":"020-12-04 16:12:09.351888], name: \"schedule_extension-.semaphore/semaphore.yml\", organization_id: \"c"},{"event":"cmd_output","timestamp":1607098329,"output":"f6df702-245b-42d3-ace9-7e6ff73fbaf7\", project_id: \"123\", queue_id: \"55d9372d-24bf-4eff-82a0-937df9c5"},{"event":"cmd_output","timestamp":1607098329,"output":"358c\", scope: \"project\", updated_at: ~N[2020-12-04 16:12:09.351902], user_generated: false}}\n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098329,"output":"22m\n16:12:09.366 [info] ppl_id: not_available, event: created, origin: Elixir.Ppl.PplSubInits.STMH"},{"event":"cmd_output","timestamp":1607098329,"output":"andler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:09.366 [info] event: created, origin: E"},{"event":"cmd_output","timestamp":1607098329,"output":"lixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:09.366 [info] "},{"event":"cmd_output","timestamp":1607098329,"output":" ppl_id: 9b16c5ea-7709-4ccb-b0bb-6479c15455ff, type: PplBlocks, block_index: 0, state: initializing,"},{"event":"cmd_output","timestamp":1607098329,"output":" event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_o"},{"event":"cmd_output","timestamp":1607098329,"output":"k?/1(L105), \n\u001b[0m\u001b[22m\n16:12:09.366 [info] ppl_id: 9b16c5ea-7709-4ccb-b0bb-6479c15455ff, type: Pp"},{"event":"cmd_output","timestamp":1607098329,"output":"lBlocks, block_index: 1, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl."},{"event":"cmd_output","timestamp":1607098329,"output":"PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:09.369 [info] ppl_id: 9"},{"event":"cmd_output","timestamp":1607098329,"output":"b16c5ea-7709-4ccb-b0bb-6479c15455ff, type: PplSubInits, state: done, result: passed, event: exit_sch"},{"event":"cmd_output","timestamp":1607098329,"output":"eduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098329,"output":"12:09.383 [info] ppl_id: 9b16c5ea-7709-4ccb-b0bb-6479c15455ff, type: Ppls, state: pending, event: e"},{"event":"cmd_output","timestamp":1607098329,"output":"xit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098329,"output":"2m\n16:12:09.384 [info] ppl_id: 9b16c5ea-7709-4ccb-b0bb-6479c15455ff, type: PplBlocks, block_index:"},{"event":"cmd_output","timestamp":1607098329,"output":" 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_st"},{"event":"cmd_output","timestamp":1607098329,"output":"ate_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:09.396 [info] ppl_id: 9b16c5ea-7709-4ccb-b0bb-6479c15455ff, t"},{"event":"cmd_output","timestamp":1607098329,"output":"ype: PplBlocks, block_index: 1, state: waiting, event: exit_scheduling, recovery_count: 0, origin: E"},{"event":"cmd_output","timestamp":1607098329,"output":"lixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:09.397 [info] ppl_id: 9b16c5ea-77"},{"event":"cmd_output","timestamp":1607098329,"output":"09-4ccb-b0bb-6479c15455ff, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098329,"output":"igin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:09.416 [info] ppl_id: 9b16"},{"event":"cmd_output","timestamp":1607098329,"output":"c5ea-7709-4ccb-b0bb-6479c15455ff, type: Ppls, state: running, event: exit_scheduling, recovery_count"},{"event":"cmd_output","timestamp":1607098329,"output":": 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:09.427 [info] PplBl"},{"event":"cmd_output","timestamp":1607098329,"output":"ocks WaitingState STM is scheduling block 0 from pipeline: \"9b16c5ea-7709-4ccb-b0bb-6479c15455ff\"\n\u001b"},{"event":"cmd_output","timestamp":1607098329,"output":"[0m\u001b[22m\n16:12:09.439 [info] block_id: 62c5793f-6d20-4471-a122-87724eead2fe, type: BlockRequests, "},{"event":"cmd_output","timestamp":1607098329,"output":"event: persisted block run request from ppl 9b16c5ea-7709-4ccb-b0bb-6479c15455ff for block 0, origin"},{"event":"cmd_output","timestamp":1607098329,"output":": Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:"},{"event":"cmd_output","timestamp":1607098329,"output":"09.444 [info] block_id: 62c5793f-6d20-4471-a122-87724eead2fe, type: Blocks, state: initializing, ev"},{"event":"cmd_output","timestamp":1607098329,"output":"ent: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43),"},{"event":"cmd_output","timestamp":1607098329,"output":" \n\u001b[0m\u001b[22m\n16:12:09.449 [info] Block 0 of pipeline with id: 9b16c5ea-7709-4ccb-b0bb-6479c15455ff"},{"event":"cmd_output","timestamp":1607098329,"output":" scheduled in block service with id: : \"62c5793f-6d20-4471-a122-87724eead2fe\"\n\u001b[0m\u001b[22m\n16:12:09.4"},{"event":"cmd_output","timestamp":1607098329,"output":"52 [info] ppl_id: 9b16c5ea-7709-4ccb-b0bb-6479c15455ff, type: PplBlocks, block_index: 0, state: run"},{"event":"cmd_output","timestamp":1607098329,"output":"ning, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098329,"output":"90), \n\u001b[0m\u001b[22m\n16:12:09.454 [info] block_id: 62c5793f-6d20-4471-a122-87724eead2fe, type: BlockRe"},{"event":"cmd_output","timestamp":1607098329,"output":"quests, event: persisted build and sub_ppl details for block_request: 62c5793f-6d20-4471-a122-87724e"},{"event":"cmd_output","timestamp":1607098329,"output":"ead2fe, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098329,"output":"2m\n16:12:09.457 [info] block_id: 62c5793f-6d20-4471-a122-87724eead2fe, type: Tasks, state: pending"},{"event":"cmd_output","timestamp":1607098329,"output":", event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok"},{"event":"cmd_output","timestamp":1607098329,"output":"?/1(L167), \n\u001b[0m\u001b[22m\n16:12:09.461 [info] block_id: 62c5793f-6d20-4471-a122-87724eead2fe, type: B"},{"event":"cmd_output","timestamp":1607098329,"output":"locks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098329,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:09.481 [info] block_id: 62c5793f-6d20-4471-a122-87724eead2"},{"event":"cmd_output","timestamp":1607098329,"output":"fe, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.ST"},{"event":"cmd_output","timestamp":1607098329,"output":"M.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:09.560 [info] block_id: 62c5793f-6d20-4471-a122-"},{"event":"cmd_output","timestamp":1607098329,"output":"87724eead2fe, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Lo"},{"event":"cmd_output","timestamp":1607098329,"output":"oper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:09.568 [info] block_id: 62c5793f-6d20-447"},{"event":"cmd_output","timestamp":1607098329,"output":"1-a122-87724eead2fe, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: E"},{"event":"cmd_output","timestamp":1607098329,"output":"lixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:09.579 [info] ppl_id: 9b16c5ea-77"},{"event":"cmd_output","timestamp":1607098329,"output":"09-4ccb-b0bb-6479c15455ff, block_id: 62c5793f-6d20-4471-a122-87724eead2fe, type: PplBlocks, block_in"},{"event":"cmd_output","timestamp":1607098329,"output":"dex: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loope"},{"event":"cmd_output","timestamp":1607098329,"output":"r.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:09.592 [info] PplBlocks WaitingState STM is "},{"event":"cmd_output","timestamp":1607098329,"output":"scheduling block 1 from pipeline: \"9b16c5ea-7709-4ccb-b0bb-6479c15455ff\"\n\u001b[0m\u001b[22m\n16:12:09.602 [i"},{"event":"cmd_output","timestamp":1607098329,"output":"nfo] block_id: 41f82f21-e829-4da6-910e-8092b707c48c, type: BlockRequests, event: persisted block ru"},{"event":"cmd_output","timestamp":1607098329,"output":"n request from ppl 9b16c5ea-7709-4ccb-b0bb-6479c15455ff for block 1, origin: Elixir.Block.BlockReque"},{"event":"cmd_output","timestamp":1607098329,"output":"sts.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:09.608 [info] block_id: "},{"event":"cmd_output","timestamp":1607098329,"output":"41f82f21-e829-4da6-910e-8092b707c48c, type: Blocks, state: initializing, event: initializing, recove"},{"event":"cmd_output","timestamp":1607098329,"output":"ry_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:09.60"},{"event":"cmd_output","timestamp":1607098329,"output":"8 [info] Block 1 of pipeline with id: 9b16c5ea-7709-4ccb-b0bb-6479c15455ff scheduled in block servi"},{"event":"cmd_output","timestamp":1607098329,"output":"ce with id: : \"41f82f21-e829-4da6-910e-8092b707c48c\"\n\u001b[0m\u001b[22m\n16:12:09.614 [info] ppl_id: 9b16c5"},{"event":"cmd_output","timestamp":1607098329,"output":"ea-7709-4ccb-b0bb-6479c15455ff, type: PplBlocks, block_index: 1, state: running, event: exit_schedul"},{"event":"cmd_output","timestamp":1607098329,"output":"ing, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:0"},{"event":"cmd_output","timestamp":1607098329,"output":"9.617 [info] block_id: 41f82f21-e829-4da6-910e-8092b707c48c, type: BlockRequests, event: persisted "},{"event":"cmd_output","timestamp":1607098329,"output":"build and sub_ppl details for block_request: 41f82f21-e829-4da6-910e-8092b707c48c, origin: Elixir.Bl"},{"event":"cmd_output","timestamp":1607098329,"output":"ock.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:09.621 [info] "},{"event":"cmd_output","timestamp":1607098329,"output":"block_id: 41f82f21-e829-4da6-910e-8092b707c48c, type: Tasks, state: pending, event: created, recover"},{"event":"cmd_output","timestamp":1607098329,"output":"y_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098329,"output":"6:12:09.624 [info] block_id: 41f82f21-e829-4da6-910e-8092b707c48c, type: Blocks, state: running, ev"},{"event":"cmd_output","timestamp":1607098329,"output":"ent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b"},{"event":"cmd_output","timestamp":1607098329,"output":"[0m\u001b[22m\n16:12:09.645 [info] block_id: 41f82f21-e829-4da6-910e-8092b707c48c, type: Tasks, state: r"},{"event":"cmd_output","timestamp":1607098329,"output":"unning, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1"},{"event":"cmd_output","timestamp":1607098329,"output":"(L90), \n\u001b[0m\u001b[22m\n16:12:09.685 [info] block_id: 41f82f21-e829-4da6-910e-8092b707c48c, type: Tasks"},{"event":"cmd_output","timestamp":1607098329,"output":", state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098329,"output":"hange/1(L90), \n\u001b[0m\u001b[22m\n16:12:09.692 [info] block_id: 41f82f21-e829-4da6-910e-8092b707c48c, type"},{"event":"cmd_output","timestamp":1607098329,"output":": Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098329,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:09.701 [info] ppl_id: 9b16c5ea-7709-4ccb-b0bb-6479c15455ff"},{"event":"cmd_output","timestamp":1607098329,"output":", block_id: 41f82f21-e829-4da6-910e-8092b707c48c, type: PplBlocks, block_index: 1, state: done, resu"},{"event":"cmd_output","timestamp":1607098329,"output":"lt: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chan"},{"event":"cmd_output","timestamp":1607098329,"output":"ge/1(L90), \n\u001b[0m\u001b[22m\n16:12:09.720 [info] ppl_id: 9b16c5ea-7709-4ccb-b0bb-6479c15455ff, type: Ppl"},{"event":"cmd_output","timestamp":1607098329,"output":"s, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM"},{"event":"cmd_output","timestamp":1607098330,"output":".Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:10.537 [info] Request: 'run: %{\"auto_promoted\" =>"},{"event":"cmd_output","timestamp":1607098330,"output":" false, \"branch_id\" => \"76fbc9e6-05db-4376-bbd6-ea329b3983af\", \"branch_name\" => \"master\", \"client_id"},{"event":"cmd_output","timestamp":1607098330,"output":"\" => \"328c742132e5407abd7d\", \"commit_sha\" => \"eea1377\", \"env_vars\" => [], \"extension_of\" => \"9b16c5e"},{"event":"cmd_output","timestamp":1607098330,"output":"a-7709-4ccb-b0bb-6479c15455ff\", \"file_name\" => \"/foo/bar/test.yml\", \"hook_id\" => \"f9a8fa5d-96ac-4bcd"},{"event":"cmd_output","timestamp":1607098330,"output":"-ac58-56b656bd9c86\", \"label\" => \"schedule_extension\", \"organization_id\" => \"cf6df702-245b-42d3-ace9-"},{"event":"cmd_output","timestamp":1607098330,"output":"7e6ff73fbaf7\", \"owner\" => \"renderedtext\", \"prev_ppl_artefact_ids\" => [\"9b16c5ea-7709-4ccb-b0bb-6479c"},{"event":"cmd_output","timestamp":1607098330,"output":"15455ff\"], \"project_id\" => \"123\", \"promoter_id\" => \"\", \"repo_name\" => \"pipelines-test-repo-auto-call"},{"event":"cmd_output","timestamp":1607098330,"output":"\", \"request_token\" => \"1d5eeb15-f36c-4aea-9cc0-fdfb7fba12e3\", \"requester_id\" => \"8cc5eaa6-65e8-4f9c-"},{"event":"cmd_output","timestamp":1607098330,"output":"b63e-2ca3367a7d8c\", \"service\" => \"git_hub\", \"suppressed_attributes\" => [\"access_token\", \"client_secr"},{"event":"cmd_output","timestamp":1607098330,"output":"et\"], \"wf_id\" => \"6afb43c3-29c3-477b-a101-0e483a0a68e5\", \"wf_number\" => 1, \"working_dir\" => \".semaph"},{"event":"cmd_output","timestamp":1607098330,"output":"ore\"}\n\u001b[0m\u001b[22m\n16:12:10.540 [info] ppl_id: c7f16fa5-7e62-4a37-a5a9-c06d359d1eb8, type: PplReques"},{"event":"cmd_output","timestamp":1607098330,"output":"ts, event: persisted schedule request with request_token: 1d5eeb15-f36c-4aea-9cc0-fdfb7fba12e3, orig"},{"event":"cmd_output","timestamp":1607098330,"output":"in: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:10.5"},{"event":"cmd_output","timestamp":1607098330,"output":"43 [info] ppl_id: c7f16fa5-7e62-4a37-a5a9-c06d359d1eb8, type: Ppls, state: initializing, event: ini"},{"event":"cmd_output","timestamp":1607098330,"output":"tializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n"},{"event":"cmd_output","timestamp":1607098330,"output":"\u001b[0m\u001b[22m\n16:12:10.546 [info] Persisted ppl_sub_init for pipeline with ppl_id: c7f16fa5-7e62-4a37-"},{"event":"cmd_output","timestamp":1607098330,"output":"a5a9-c06d359d1eb8: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipe"},{"event":"cmd_output","timestamp":1607098330,"output":"line_sub_inits\">, compile_task_id: nil, error_description: nil, id: 169, in_scheduling: false, init_"},{"event":"cmd_output","timestamp":1607098330,"output":"type: \"regular\", inserted_at: ~N[2020-12-04 16:12:10.545013], pipeline_requests: #Ecto.Association.N"},{"event":"cmd_output","timestamp":1607098330,"output":"otLoaded, ppl_id: \"c7f16fa5-7e62-4a37-a5a9-c06d359d1eb"},{"event":"cmd_output","timestamp":1607098330,"output":"8\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, te"},{"event":"cmd_output","timestamp":1607098330,"output":"rminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:10.545024]}\n\u001b[0m\u001b[22m\n16:12:10.551 [inf"},{"event":"cmd_output","timestamp":1607098330,"output":"o] Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.STMH"},{"event":"cmd_output","timestamp":1607098330,"output":"andler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHand"},{"event":"cmd_output","timestamp":1607098330,"output":"ler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], coo"},{"event":"cmd_output","timestamp":1607098330,"output":"ling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher_cb: "},{"event":"cmd_output","timestamp":1607098330,"output":"#Function<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, return"},{"event":"cmd_output","timestamp":1607098330,"output":"ing: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl."},{"event":"cmd_output","timestamp":1607098330,"output":"Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:10.551 [info] Periodic from module Elixi"},{"event":"cmd_output","timestamp":1607098330,"output":"r.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 100 "},{"event":"cmd_output","timestamp":1607098330,"output":"ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args: %{a"},{"event":"cmd_output","timestamp":1607098330,"output":"llowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Pp"},{"event":"cmd_output","timestamp":1607098330,"output":"ls.Model.Ppls, observed_state: \"pending\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler"},{"event":"cmd_output","timestamp":1607098330,"output":".PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state,"},{"event":"cmd_output","timestamp":1607098330,"output":" :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSuperviso"},{"event":"cmd_output","timestamp":1607098330,"output":"r}\n\u001b[0m\u001b[22m\n16:12:10.552 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.QueuingState wit"},{"event":"cmd_output","timestamp":1607098330,"output":"h name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_u"},{"event":"cmd_output","timestamp":1607098330,"output":"p\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{allowed_states: [\"queuing\", \"running\", "},{"event":"cmd_output","timestamp":1607098330,"output":"\"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", publis"},{"event":"cmd_output","timestamp":1607098330,"output":"her_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, ret"},{"event":"cmd_output","timestamp":1607098330,"output":"urning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: P"},{"event":"cmd_output","timestamp":1607098330,"output":"pl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:10.552 [info] Periodic from module El"},{"event":"cmd_output","timestamp":1607098330,"output":"ixir.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHandler.RunningState :: period: 1"},{"event":"cmd_output","timestamp":1607098330,"output":"00 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring args: "},{"event":"cmd_output","timestamp":1607098330,"output":"%{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Mod"},{"event":"cmd_output","timestamp":1607098330,"output":"el.Ppls, observed_state: \"running\", publisher_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler.Runn"},{"event":"cmd_output","timestamp":1607098330,"output":"ingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :res"},{"event":"cmd_output","timestamp":1607098330,"output":"ult, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b"},{"event":"cmd_output","timestamp":1607098330,"output":"[0m\u001b[22m\n16:12:10.552 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.StoppingState with na"},{"event":"cmd_output","timestamp":1607098330,"output":"me Elixir.Ppl.Ppls.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\","},{"event":"cmd_output","timestamp":1607098330,"output":" [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], coo"},{"event":"cmd_output","timestamp":1607098330,"output":"ling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"stopping\", publisher_cb: #Fu"},{"event":"cmd_output","timestamp":1607098330,"output":"nction<0.71803493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:i"},{"event":"cmd_output","timestamp":1607098330,"output":"d, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Mod"},{"event":"cmd_output","timestamp":1607098330,"output":"el.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:10.553 [info] Periodic from module Elixir.Ppl.Pp"},{"event":"cmd_output","timestamp":1607098330,"output":"lSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period"},{"event":"cmd_output","timestamp":1607098330,"output":": 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurr"},{"event":"cmd_output","timestamp":1607098330,"output":"ing args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInit"},{"event":"cmd_output","timestamp":1607098330,"output":"s.Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: "},{"event":"cmd_output","timestamp":1607098330,"output":"[:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSu"},{"event":"cmd_output","timestamp":1607098330,"output":"bInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:10.553 [info] Periodic from mod"},{"event":"cmd_output","timestamp":1607098330,"output":"ule Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler.Fetc"},{"event":"cmd_output","timestamp":1607098330,"output":"hingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-Fetc"},{"event":"cmd_output","timestamp":1607098330,"output":"hingState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"done\"], cooling_tim"},{"event":"cmd_output","timestamp":1607098330,"output":"e_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fetching\", publisher_c"},{"event":"cmd_output","timestamp":1607098330,"output":"b: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :re"},{"event":"cmd_output","timestamp":1607098330,"output":"covery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098330,"output":"m\n16:12:10.553 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CompilationState with"},{"event":"cmd_output","timestamp":1607098330,"output":" name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 100 ms, metric_name: {\"Ppl.behol"},{"event":"cmd_output","timestamp":1607098330,"output":"der-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurring args: %{allowed_states: [\""},{"event":"cmd_output","timestamp":1607098330,"output":"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubIn"},{"event":"cmd_output","timestamp":1607098330,"output":"its.Model.PplSubInits, observed_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, retur"},{"event":"cmd_output","timestamp":1607098330,"output":"ning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl"},{"event":"cmd_output","timestamp":1607098330,"output":".PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:10.554 [info] Periodic fr"},{"event":"cmd_output","timestamp":1607098330,"output":"om module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHan"},{"event":"cmd_output","timestamp":1607098330,"output":"dler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STM"},{"event":"cmd_output","timestamp":1607098330,"output":"Handler-RegularInitState\"]}, recurring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, initia"},{"event":"cmd_output","timestamp":1607098330,"output":"l_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_init\", publisher_cb: :skip, rep"},{"event":"cmd_output","timestamp":1607098330,"output":"o: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count,"},{"event":"cmd_output","timestamp":1607098330,"output":" :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:10.5"},{"event":"cmd_output","timestamp":1607098330,"output":"54 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.InitializingState with name Elixir.P"},{"event":"cmd_output","timestamp":1607098330,"output":"pl.PplBlocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", ["},{"event":"cmd_output","timestamp":1607098330,"output":"\"Ppl-PplBlocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \""},{"event":"cmd_output","timestamp":1607098330,"output":"waiting\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state"},{"event":"cmd_output","timestamp":1607098330,"output":": \"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :upd"},{"event":"cmd_output","timestamp":1607098330,"output":"ated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBl"},{"event":"cmd_output","timestamp":1607098330,"output":"ocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:10.554 [info] Periodic from module Elixir.Ppl.PplBl"},{"event":"cmd_output","timestamp":1607098330,"output":"ocks.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler.WaitingState :: period: 1000 "},{"event":"cmd_output","timestamp":1607098330,"output":"ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurring args"},{"event":"cmd_output","timestamp":1607098330,"output":": %{allowed_states: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlock"},{"event":"cmd_output","timestamp":1607098330,"output":"s.Model.PplBlocks, observed_state: \"waiting\", publisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.S"},{"event":"cmd_output","timestamp":1607098330,"output":"TMHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at"},{"event":"cmd_output","timestamp":1607098330,"output":", :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, t"},{"event":"cmd_output","timestamp":1607098330,"output":"ask_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:10.555 [info] Periodic from module Elixir.Ppl.PplBlocks.ST"},{"event":"cmd_output","timestamp":1607098330,"output":"MHandler.RunningState with name Elixir.Ppl.PplBlocks.STMHandler.RunningState :: period: 1000 ms, met"},{"event":"cmd_output","timestamp":1607098330,"output":"ric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, recurring args: %{all"},{"event":"cmd_output","timestamp":1607098330,"output":"owed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Mod"},{"event":"cmd_output","timestamp":1607098330,"output":"el.PplBlocks, observed_state: \"running\", publisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHa"},{"event":"cmd_output","timestamp":1607098330,"output":"ndler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :s"},{"event":"cmd_output","timestamp":1607098330,"output":"tate, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBl"},{"event":"cmd_output","timestamp":1607098330,"output":"ocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:10.555 [info] Periodic from module Elixir.Ppl.PplBl"},{"event":"cmd_output","timestamp":1607098330,"output":"ocks.STMHandler.StoppingState with name Elixir.Ppl.PplBlocks.STMHandler.StoppingState :: period: 100"},{"event":"cmd_output","timestamp":1607098330,"output":"0 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurring a"},{"event":"cmd_output","timestamp":1607098330,"output":"rgs: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Mode"},{"event":"cmd_output","timestamp":1607098330,"output":"l.PplBlocks, observed_state: \"stopping\", publisher_cb: #Function<0.104215991/1 in Ppl.PplBlocks.STMH"},{"event":"cmd_output","timestamp":1607098330,"output":"andler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, "},{"event":"cmd_output","timestamp":1607098330,"output":":state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.Ppl"},{"event":"cmd_output","timestamp":1607098330,"output":"Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:10.555 [info] Periodic from module Elixir.Block.B"},{"event":"cmd_output","timestamp":1607098330,"output":"locks.STMHandler.InitializingState with name Elixir.Block.Blocks.STMHandler.InitializingState :: per"},{"event":"cmd_output","timestamp":1607098330,"output":"iod: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, r"},{"event":"cmd_output","timestamp":1607098330,"output":"ecurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Bloc"},{"event":"cmd_output","timestamp":1607098330,"output":"ks.Model.Blocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Block.EctoRepo, returnin"},{"event":"cmd_output","timestamp":1607098330,"output":"g: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks."},{"event":"cmd_output","timestamp":1607098330,"output":"Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:10.556 [info] Periodic from module Elixir.B"},{"event":"cmd_output","timestamp":1607098330,"output":"lock.Blocks.STMHandler.RunningState with name Elixir.Block.Blocks.STMHandler.RunningState :: period:"},{"event":"cmd_output","timestamp":1607098330,"output":" 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-RunningState\"]}, recurring "},{"event":"cmd_output","timestamp":1607098330,"output":"args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block."},{"event":"cmd_output","timestamp":1607098330,"output":"Blocks.Model.Blocks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning"},{"event":"cmd_output","timestamp":1607098330,"output":": [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.M"},{"event":"cmd_output","timestamp":1607098330,"output":"odel.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:10.556 [info] Periodic from module Elixir.Bl"},{"event":"cmd_output","timestamp":1607098330,"output":"ock.Blocks.STMHandler.StoppingState with name Elixir.Block.Blocks.STMHandler.StoppingState :: period"},{"event":"cmd_output","timestamp":1607098330,"output":": 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-StoppingState\"]}, recurrin"},{"event":"cmd_output","timestamp":1607098330,"output":"g args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Mo"},{"event":"cmd_output","timestamp":1607098330,"output":"del.Blocks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, "},{"event":"cmd_output","timestamp":1607098330,"output":":terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blo"},{"event":"cmd_output","timestamp":1607098330,"output":"cks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:10.556 [info] Periodic from module Elixir.Block.Task"},{"event":"cmd_output","timestamp":1607098330,"output":"s.STMHandler.PendingState with name Elixir.Block.Tasks.STMHandler.PendingState :: period: 100 ms, me"},{"event":"cmd_output","timestamp":1607098330,"output":"tric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingState\"]}, recurring args: %{allo"},{"event":"cmd_output","timestamp":1607098330,"output":"wed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Tasks.Model.Tasks, observ"},{"event":"cmd_output","timestamp":1607098330,"output":"ed_state: \"pending\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request,"},{"event":"cmd_output","timestamp":1607098330,"output":" :updated_at, :state, :recovery_count, :block_id, :build_request_id], schema: Block.Tasks.Model.Task"},{"event":"cmd_output","timestamp":1607098330,"output":"s, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:10.556 [info] Periodic from module Elixir.Block.Tasks."},{"event":"cmd_output","timestamp":1607098330,"output":"STMHandler.RunningState with name Elixir.Block.Tasks.STMHandler.RunningState :: period: 100 ms, metr"},{"event":"cmd_output","timestamp":1607098330,"output":"ic_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningState\"]}, recurring args: %{allowe"},{"event":"cmd_output","timestamp":1607098330,"output":"d_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Ta"},{"event":"cmd_output","timestamp":1607098330,"output":"sks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :termina"},{"event":"cmd_output","timestamp":1607098330,"output":"te_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_"},{"event":"cmd_output","timestamp":1607098330,"output":"supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:10.556 [info] Periodic from module Elixir.Block.Tasks.STMHandl"},{"event":"cmd_output","timestamp":1607098330,"output":"er.StoppingState with name Elixir.Block.Tasks.STMHandler.StoppingState :: period: 100 ms, metric_nam"},{"event":"cmd_output","timestamp":1607098330,"output":"e: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]}, recurring args: %{allowed_sta"},{"event":"cmd_output","timestamp":1607098330,"output":"tes: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_st"},{"event":"cmd_output","timestamp":1607098330,"output":"ate: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :up"},{"event":"cmd_output","timestamp":1607098330,"output":"dated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :sk"},{"event":"cmd_output","timestamp":1607098330,"output":"ip}\n\u001b[0m\u001b[22m\n16:12:10.666 [info] ppl_id: c7f16fa5-7e62-4a37-a5a9-c06d359d1eb8, type: PplRequests"},{"event":"cmd_output","timestamp":1607098330,"output":", event: persisted source_args for pipeline: c7f16fa5-7e62-4a37-a5a9-c06d359d1eb8, origin: Elixir.Pp"},{"event":"cmd_output","timestamp":1607098330,"output":"l.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:10.669 [info] ppl_i"},{"event":"cmd_output","timestamp":1607098330,"output":"d: c7f16fa5-7e62-4a37-a5a9-c06d359d1eb8, type: PplSubInits, state: fetching, event: exit_scheduling,"},{"event":"cmd_output","timestamp":1607098330,"output":" recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:10.90"},{"event":"cmd_output","timestamp":1607098330,"output":"0 [info] ppl_id: c7f16fa5-7e62-4a37-a5a9-c06d359d1eb8, type: PplSubInits, state: regular_init, even"},{"event":"cmd_output","timestamp":1607098330,"output":"t: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098330,"output":"m\u001b[22m\n16:12:10.927 [info] ppl_id: c7f16fa5-7e62-4a37-a5a9-c06d359d1eb8, type: PplRequests, event:"},{"event":"cmd_output","timestamp":1607098330,"output":" persisted definition for request with request_token: 1d5eeb15-f36c-4aea-9cc0-fdfb7fba12e3, origin: "},{"event":"cmd_output","timestamp":1607098330,"output":"Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:10.930 "},{"event":"cmd_output","timestamp":1607098330,"output":"[info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"qu"},{"event":"cmd_output","timestamp":1607098330,"output":"eues\">, inserted_at: ~N[2020-12-04 16:12:10.929528], name: \"schedule_extension-/foo/bar/test.yml\", o"},{"event":"cmd_output","timestamp":1607098330,"output":"rganization_id: \"cf6df702-245b-42d3-ace9-7e6ff73fbaf7\", project_id: \"123\", queue_id: \"5689c595-b4f5-"},{"event":"cmd_output","timestamp":1607098330,"output":"4dd2-9634-592142bd1487\", scope: \"project\", updated_at: ~N[2020-12-04 16:12:10.929537], user_generate"},{"event":"cmd_output","timestamp":1607098330,"output":"d: false}}\n\u001b[0m\u001b[22m\n16:12:10.935 [info] ppl_id: not_available, event: created, origin: Elixir.Pp"},{"event":"cmd_output","timestamp":1607098330,"output":"l.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:10.935 [info] event: "},{"event":"cmd_output","timestamp":1607098330,"output":"created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098330,"output":":12:10.935 [info] ppl_id: c7f16fa5-7e62-4a37-a5a9-c06d359d1eb8, type: PplBlocks, block_index: 0, st"},{"event":"cmd_output","timestamp":1607098330,"output":"ate: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.Regu"},{"event":"cmd_output","timestamp":1607098330,"output":"larInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:10.935 [info] ppl_id: c7f16fa5-7e62-4a37-a5a9-c06d"},{"event":"cmd_output","timestamp":1607098330,"output":"359d1eb8, type: PplBlocks, block_index: 1, state: initializing, event: created, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098330,"output":"rigin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:10.937"},{"event":"cmd_output","timestamp":1607098330,"output":" [info] ppl_id: c7f16fa5-7e62-4a37-a5a9-c06d359d1eb8, type: PplSubInits, state: done, result: passe"},{"event":"cmd_output","timestamp":1607098330,"output":"d, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90)"},{"event":"cmd_output","timestamp":1607098330,"output":", \n\u001b[0m\u001b[22m\n16:12:10.944 [info] ppl_id: c7f16fa5-7e62-4a37-a5a9-c06d359d1eb8, type: PplBlocks, b"},{"event":"cmd_output","timestamp":1607098330,"output":"lock_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM."},{"event":"cmd_output","timestamp":1607098330,"output":"Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:10.947 [info] ppl_id: c7f16fa5-7e62-4a37-a5a9-c06d"},{"event":"cmd_output","timestamp":1607098330,"output":"359d1eb8, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loop"},{"event":"cmd_output","timestamp":1607098330,"output":"er.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:10.952 [info] ppl_id: c7f16fa5-7e62-4a37-a5"},{"event":"cmd_output","timestamp":1607098330,"output":"a9-c06d359d1eb8, type: PplBlocks, block_index: 1, state: waiting, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098330,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:10.963 [info] p"},{"event":"cmd_output","timestamp":1607098330,"output":"pl_id: c7f16fa5-7e62-4a37-a5a9-c06d359d1eb8, type: Ppls, state: queuing, event: exit_scheduling, rec"},{"event":"cmd_output","timestamp":1607098330,"output":"overy_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:10.973 [i"},{"event":"cmd_output","timestamp":1607098330,"output":"nfo] ppl_id: c7f16fa5-7e62-4a37-a5a9-c06d359d1eb8, type: Ppls, state: running, event: exit_scheduli"},{"event":"cmd_output","timestamp":1607098330,"output":"ng, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:10"},{"event":"cmd_output","timestamp":1607098330,"output":".980 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"c7f16fa5-7e62-4a37-a5a"},{"event":"cmd_output","timestamp":1607098330,"output":"9-c06d359d1eb8\"\n\u001b[0m\u001b[22m\n16:12:10.988 [info] block_id: 4642ad65-63a1-416e-bad7-92f6036c5df5, typ"},{"event":"cmd_output","timestamp":1607098330,"output":"e: BlockRequests, event: persisted block run request from ppl c7f16fa5-7e62-4a37-a5a9-c06d359d1eb8 f"},{"event":"cmd_output","timestamp":1607098330,"output":"or block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \r"},{"event":"cmd_output","timestamp":1607098330,"output":"\n\u001b[0m\u001b[22m\n16:12:10.990 [info] block_id: 4642ad65-63a1-416e-bad7-92f6036c5df5, type: Blocks, state"},{"event":"cmd_output","timestamp":1607098330,"output":": initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQuer"},{"event":"cmd_output","timestamp":1607098330,"output":"ies.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:10.992 [info] Block 0 of pipeline with id: c7f16fa5-7e62-4a37"},{"event":"cmd_output","timestamp":1607098330,"output":"-a5a9-c06d359d1eb8 scheduled in block service with id: : \"4642ad65-63a1-416e-bad7-92f6036c5df5\"\n\u001b[0"},{"event":"cmd_output","timestamp":1607098330,"output":"m\u001b[22m\n16:12:10.994 [info] ppl_id: c7f16fa5-7e62-4a37-a5a9-c06d359d1eb8, type: PplBlocks, block_in"},{"event":"cmd_output","timestamp":1607098330,"output":"dex: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.lo"},{"event":"cmd_output","timestamp":1607098330,"output":"g_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:10.996 [info] block_id: 4642ad65-63a1-416e-bad7-92f6036c5"},{"event":"cmd_output","timestamp":1607098330,"output":"df5, type: BlockRequests, event: persisted build and sub_ppl details for block_request: 4642ad65-63a"},{"event":"cmd_output","timestamp":1607098330,"output":"1-416e-bad7-92f6036c5df5, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build"},{"event":"cmd_output","timestamp":1607098330,"output":"/2(L41), \n\u001b[0m\u001b[22m\n16:12:10.998 [info] block_id: 4642ad65-63a1-416e-bad7-92f6036c5df5, type: Tas"},{"event":"cmd_output","timestamp":1607098330,"output":"ks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.Initia"},{"event":"cmd_output","timestamp":1607098331,"output":"lizingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:11.001 [info] block_id: 4642ad65-63a1-416e-bad7-92f"},{"event":"cmd_output","timestamp":1607098331,"output":"6036c5df5, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098331,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:11.030 [info] block_id: 4642ad65-63a1-41"},{"event":"cmd_output","timestamp":1607098331,"output":"6e-bad7-92f6036c5df5, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098331,"output":": Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:11.090 [info] block_id: 4642ad"},{"event":"cmd_output","timestamp":1607098331,"output":"65-63a1-416e-bad7-92f6036c5df5, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098331,"output":" origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:11.098 [info] block_id:"},{"event":"cmd_output","timestamp":1607098331,"output":" 4642ad65-63a1-416e-bad7-92f6036c5df5, type: Blocks, state: done, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098331,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:11.106 [info] p"},{"event":"cmd_output","timestamp":1607098331,"output":"pl_id: c7f16fa5-7e62-4a37-a5a9-c06d359d1eb8, block_id: 4642ad65-63a1-416e-bad7-92f6036c5df5, type: P"},{"event":"cmd_output","timestamp":1607098331,"output":"plBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098331,"output":"igin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:11.115 [info] PplBlocks Wa"},{"event":"cmd_output","timestamp":1607098331,"output":"itingState STM is scheduling block 1 from pipeline: \"c7f16fa5-7e62-4a37-a5a9-c06d359d1eb8\"\n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098331,"output":"m\n16:12:11.123 [info] block_id: a3c4f2fe-079b-4f15-9225-ffdf67f10b8c, type: BlockRequests, event: "},{"event":"cmd_output","timestamp":1607098331,"output":"persisted block run request from ppl c7f16fa5-7e62-4a37-a5a9-c06d359d1eb8 for block 1, origin: Elixi"},{"event":"cmd_output","timestamp":1607098331,"output":"r.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:11.126 "},{"event":"cmd_output","timestamp":1607098331,"output":"[info] block_id: a3c4f2fe-079b-4f15-9225-ffdf67f10b8c, type: Blocks, state: initializing, event: in"},{"event":"cmd_output","timestamp":1607098331,"output":"itializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098331,"output":"\u001b[22m\n16:12:11.126 [info] Block 1 of pipeline with id: c7f16fa5-7e62-4a37-a5a9-c06d359d1eb8 schedu"},{"event":"cmd_output","timestamp":1607098331,"output":"led in block service with id: : \"a3c4f2fe-079b-4f15-9225-ffdf67f10b8c\"\n\u001b[0m\u001b[22m\n16:12:11.129 [inf"},{"event":"cmd_output","timestamp":1607098331,"output":"o] ppl_id: c7f16fa5-7e62-4a37-a5a9-c06d359d1eb8, type: PplBlocks, block_index: 1, state: running, e"},{"event":"cmd_output","timestamp":1607098331,"output":"vent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n"},{"event":"cmd_output","timestamp":1607098331,"output":"\u001b[0m\u001b[22m\n16:12:11.133 [info] block_id: a3c4f2fe-079b-4f15-9225-ffdf67f10b8c, type: BlockRequests,"},{"event":"cmd_output","timestamp":1607098331,"output":" event: persisted build and sub_ppl details for block_request: a3c4f2fe-079b-4f15-9225-ffdf67f10b8c,"},{"event":"cmd_output","timestamp":1607098331,"output":" origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098331,"output":"12:11.138 [info] block_id: a3c4f2fe-079b-4f15-9225-ffdf67f10b8c, type: Tasks, state: pending, event"},{"event":"cmd_output","timestamp":1607098331,"output":": created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L16"},{"event":"cmd_output","timestamp":1607098331,"output":"7), \n\u001b[0m\u001b[22m\n16:12:11.140 [info] block_id: a3c4f2fe-079b-4f15-9225-ffdf67f10b8c, type: Blocks, "},{"event":"cmd_output","timestamp":1607098331,"output":"state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_"},{"event":"cmd_output","timestamp":1607098331,"output":"change/1(L90), \n\u001b[0m\u001b[22m\n16:12:11.164 [info] block_id: a3c4f2fe-079b-4f15-9225-ffdf67f10b8c, typ"},{"event":"cmd_output","timestamp":1607098331,"output":"e: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl."},{"event":"cmd_output","timestamp":1607098331,"output":"log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:11.205 [info] block_id: a3c4f2fe-079b-4f15-9225-ffdf67f"},{"event":"cmd_output","timestamp":1607098331,"output":"10b8c, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.ST"},{"event":"cmd_output","timestamp":1607098331,"output":"M.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:11.220 [info] block_id: a3c4f2fe-079b-4f15-9225-"},{"event":"cmd_output","timestamp":1607098331,"output":"ffdf67f10b8c, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098331,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:11.232 [info] ppl_id: c7f16fa5-7e62-4a37"},{"event":"cmd_output","timestamp":1607098331,"output":"-a5a9-c06d359d1eb8, block_id: a3c4f2fe-079b-4f15-9225-ffdf67f10b8c, type: PplBlocks, block_index: 1,"},{"event":"cmd_output","timestamp":1607098331,"output":" state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.I"},{"event":"cmd_output","timestamp":1607098331,"output":"mpl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:11.247 [info] ppl_id: c7f16fa5-7e62-4a37-a5a9-c06d3"},{"event":"cmd_output","timestamp":1607098331,"output":"59d1eb8, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098331,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test gRPC schedule_extension() GitH"},{"event":"cmd_output","timestamp":1607098331,"output":"ub - succedes when given valid params (3226.2ms)\u001b[0m\n * test gRPC partial_rebuild() - fails when g"},{"event":"cmd_output","timestamp":1607098331,"output":"iven pipeline is passed\u001b[22m\n16:12:11.643 [info] Request: 'run: %{\"branch_id\" => \"1c4e051e-5bff-44"},{"event":"cmd_output","timestamp":1607098331,"output":"77-9070-6daf71f98d05\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"sema"},{"event":"cmd_output","timestamp":1607098331,"output":"phore.yml\", \"hook_id\" => \"7744aa44-364b-11eb-a84c-5254005464e2\", \"label\" => \"master\", \"organization_"},{"event":"cmd_output","timestamp":1607098331,"output":"id\" => \"4372b116-b937-41fa-b81e-a0b84837c773\", \"owner\" => \"rt\", \"project_id\" => \"54bcc1d3-f8a2-4397-"},{"event":"cmd_output","timestamp":1607098331,"output":"9982-9190551709a9\", \"repo_name\" => \"5_v1_full\", \"request_token\" => \"7744a076-364b-11eb-942d-52540054"},{"event":"cmd_output","timestamp":1607098331,"output":"64e2\", \"requester_id\" => \"bf21cce0-80ea-4282-a079-721be3338065\", \"service\" => \"local\", \"suppressed_a"},{"event":"cmd_output","timestamp":1607098331,"output":"ttributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"5dcb951b-d4da-4e6f-b270-9903524c4d51\", "},{"event":"cmd_output","timestamp":1607098331,"output":"\"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:12:11.646 [info] ppl_id: efe30e31-aa94-446a-a24e-fdc3"},{"event":"cmd_output","timestamp":1607098331,"output":"37c8246c, type: PplRequests, event: persisted schedule request with request_token: 7744a076-364b-11e"},{"event":"cmd_output","timestamp":1607098331,"output":"b-942d-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55)"},{"event":"cmd_output","timestamp":1607098331,"output":", \n\u001b[0m\u001b[22m\n16:12:11.650 [info] ppl_id: efe30e31-aa94-446a-a24e-fdc337c8246c, type: Ppls, state:"},{"event":"cmd_output","timestamp":1607098331,"output":" initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.pro"},{"event":"cmd_output","timestamp":1607098331,"output":"cess_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:11.655 [info] Project 54bcc1d3-f8a2-4397-9982-9190551709a"},{"event":"cmd_output","timestamp":1607098331,"output":"9 and branch masterlatest_wf details updated: \"wf_id: 5dcb951b-d4da-4e6f-b270-9903524c4d51, wf_numbe"},{"event":"cmd_output","timestamp":1607098331,"output":"r: 1\"\n\u001b[0m\u001b[22m\n16:12:11.657 [info] Persisted ppl_sub_init for pipeline with ppl_id: efe30e31-aa9"},{"event":"cmd_output","timestamp":1607098331,"output":"4-446a-a24e-fdc337c8246c: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded"},{"event":"cmd_output","timestamp":1607098331,"output":", \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 170, in_scheduling: false"},{"event":"cmd_output","timestamp":1607098331,"output":", init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:11.655893], pipeline_requests: #Ecto.Associ"},{"event":"cmd_output","timestamp":1607098331,"output":"ation.NotLoaded, ppl_id: \"efe30e31-aa94-446a-a24e-fdc3"},{"event":"cmd_output","timestamp":1607098331,"output":"37c8246c\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: "},{"event":"cmd_output","timestamp":1607098331,"output":"nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:11.655939]}\n\u001b[0m\u001b[22m\n16:12:11.6"},{"event":"cmd_output","timestamp":1607098331,"output":"62 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Pp"},{"event":"cmd_output","timestamp":1607098331,"output":"ls.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-"},{"event":"cmd_output","timestamp":1607098331,"output":"STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"pending\", \"done"},{"event":"cmd_output","timestamp":1607098331,"output":"\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publish"},{"event":"cmd_output","timestamp":1607098331,"output":"er_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo,"},{"event":"cmd_output","timestamp":1607098331,"output":" returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schem"},{"event":"cmd_output","timestamp":1607098331,"output":"a: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:11.662 [info] Periodic from modul"},{"event":"cmd_output","timestamp":1607098331,"output":"e Elixir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler.PendingState :: perio"},{"event":"cmd_output","timestamp":1607098331,"output":"d: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring ar"},{"event":"cmd_output","timestamp":1607098331,"output":"gs: %{allowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_sec: 0, initial_query:"},{"event":"cmd_output","timestamp":1607098331,"output":" Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STM"},{"event":"cmd_output","timestamp":1607098331,"output":"Handler.PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, "},{"event":"cmd_output","timestamp":1607098331,"output":":state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSu"},{"event":"cmd_output","timestamp":1607098331,"output":"pervisor}\n\u001b[0m\u001b[22m\n16:12:11.663 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.QueuingSt"},{"event":"cmd_output","timestamp":1607098331,"output":"ate with name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, metric_name: {\"Ppl.beholder"},{"event":"cmd_output","timestamp":1607098331,"output":"-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{allowed_states: [\"queuing\", \"run"},{"event":"cmd_output","timestamp":1607098331,"output":"ning\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\","},{"event":"cmd_output","timestamp":1607098331,"output":" publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.args/0>, repo: Ppl.EctoRe"},{"event":"cmd_output","timestamp":1607098331,"output":"po, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], sc"},{"event":"cmd_output","timestamp":1607098331,"output":"hema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:11.663 [info] Periodic from mo"},{"event":"cmd_output","timestamp":1607098331,"output":"dule Elixir.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHandler.RunningState :: pe"},{"event":"cmd_output","timestamp":1607098331,"output":"riod: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring"},{"event":"cmd_output","timestamp":1607098331,"output":" args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.P"},{"event":"cmd_output","timestamp":1607098331,"output":"pls.Model.Ppls, observed_state: \"running\", publisher_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandl"},{"event":"cmd_output","timestamp":1607098331,"output":"er.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :stat"},{"event":"cmd_output","timestamp":1607098331,"output":"e, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervi"},{"event":"cmd_output","timestamp":1607098331,"output":"sor}\n\u001b[0m\u001b[22m\n16:12:11.664 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.StoppingState "},{"event":"cmd_output","timestamp":1607098331,"output":"with name Elixir.Ppl.Ppls.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wa"},{"event":"cmd_output","timestamp":1607098331,"output":"ke_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done"},{"event":"cmd_output","timestamp":1607098331,"output":"\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"stopping\", publisher_"},{"event":"cmd_output","timestamp":1607098331,"output":"cb: #Function<0.71803493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returni"},{"event":"cmd_output","timestamp":1607098331,"output":"ng: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.P"},{"event":"cmd_output","timestamp":1607098331,"output":"pls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:11.664 [info] Periodic from module Elixir"},{"event":"cmd_output","timestamp":1607098331,"output":".Ppl.PplSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState ::"},{"event":"cmd_output","timestamp":1607098331,"output":" period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]},"},{"event":"cmd_output","timestamp":1607098331,"output":" recurring args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098331,"output":"SubInits.Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, retu"},{"event":"cmd_output","timestamp":1607098331,"output":"rning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Pp"},{"event":"cmd_output","timestamp":1607098331,"output":"l.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:11.664 [info] Periodic f"},{"event":"cmd_output","timestamp":1607098331,"output":"rom module Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandl"},{"event":"cmd_output","timestamp":1607098331,"output":"er.FetchingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandl"},{"event":"cmd_output","timestamp":1607098331,"output":"er-FetchingState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"done\"], cool"},{"event":"cmd_output","timestamp":1607098331,"output":"ing_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fetching\", publ"},{"event":"cmd_output","timestamp":1607098331,"output":"isher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :resu"},{"event":"cmd_output","timestamp":1607098331,"output":"lt, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b"},{"event":"cmd_output","timestamp":1607098331,"output":"[0m\u001b[22m\n16:12:11.665 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CompilationSta"},{"event":"cmd_output","timestamp":1607098331,"output":"te with name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 100 ms, metric_name: {\"Pp"},{"event":"cmd_output","timestamp":1607098331,"output":"l.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurring args: %{allowed_sta"},{"event":"cmd_output","timestamp":1607098331,"output":"tes: [\"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.P"},{"event":"cmd_output","timestamp":1607098331,"output":"plSubInits.Model.PplSubInits, observed_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo"},{"event":"cmd_output","timestamp":1607098331,"output":", returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], sche"},{"event":"cmd_output","timestamp":1607098331,"output":"ma: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:11.665 [info] Peri"},{"event":"cmd_output","timestamp":1607098331,"output":"odic from module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits"},{"event":"cmd_output","timestamp":1607098331,"output":".STMHandler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubIn"},{"event":"cmd_output","timestamp":1607098331,"output":"its-STMHandler-RegularInitState\"]}, recurring args: %{allowed_states: [\"done\"], cooling_time_sec: 0,"},{"event":"cmd_output","timestamp":1607098331,"output":" initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_init\", publisher_cb: :sk"},{"event":"cmd_output","timestamp":1607098331,"output":"ip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery"},{"event":"cmd_output","timestamp":1607098331,"output":"_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098331,"output":"12:11.665 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.InitializingState with name E"},{"event":"cmd_output","timestamp":1607098331,"output":"lixir.Ppl.PplBlocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake"},{"event":"cmd_output","timestamp":1607098331,"output":"_up\", [\"Ppl-PplBlocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializ"},{"event":"cmd_output","timestamp":1607098331,"output":"ing\", \"waiting\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observe"},{"event":"cmd_output","timestamp":1607098331,"output":"d_state: \"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_reques"},{"event":"cmd_output","timestamp":1607098331,"output":"t, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Mode"},{"event":"cmd_output","timestamp":1607098331,"output":"l.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:11.666 [info] Periodic from module Elixir.Pp"},{"event":"cmd_output","timestamp":1607098331,"output":"l.PplBlocks.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler.WaitingState :: period"},{"event":"cmd_output","timestamp":1607098331,"output":": 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurri"},{"event":"cmd_output","timestamp":1607098331,"output":"ng args: %{allowed_states: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.P"},{"event":"cmd_output","timestamp":1607098331,"output":"plBlocks.Model.PplBlocks, observed_state: \"waiting\", publisher_cb: #Function<0.8975022/1 in Ppl.PplB"},{"event":"cmd_output","timestamp":1607098331,"output":"locks.STMHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :upd"},{"event":"cmd_output","timestamp":1607098331,"output":"ated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBl"},{"event":"cmd_output","timestamp":1607098331,"output":"ocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:11.666 [info] Periodic from module Elixir.Ppl.PplBl"},{"event":"cmd_output","timestamp":1607098331,"output":"ocks.STMHandler.RunningState with name Elixir.Ppl.PplBlocks.STMHandler.RunningState :: period: 1000 "},{"event":"cmd_output","timestamp":1607098331,"output":"ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, recurring args"},{"event":"cmd_output","timestamp":1607098331,"output":": %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlo"},{"event":"cmd_output","timestamp":1607098331,"output":"cks.Model.PplBlocks, observed_state: \"running\", publisher_cb: #Function<0.28166834/1 in Ppl.PplBlock"},{"event":"cmd_output","timestamp":1607098331,"output":"s.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated"},{"event":"cmd_output","timestamp":1607098331,"output":"_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Mode"},{"event":"cmd_output","timestamp":1607098331,"output":"l.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:11.667 [info] Periodic from module Elixir.Pp"},{"event":"cmd_output","timestamp":1607098331,"output":"l.PplBlocks.STMHandler.StoppingState with name Elixir.Ppl.PplBlocks.STMHandler.StoppingState :: peri"},{"event":"cmd_output","timestamp":1607098331,"output":"od: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recu"},{"event":"cmd_output","timestamp":1607098331,"output":"rring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBloc"},{"event":"cmd_output","timestamp":1607098331,"output":"ks.Model.PplBlocks, observed_state: \"stopping\", publisher_cb: #Function<0.104215991/1 in Ppl.PplBloc"},{"event":"cmd_output","timestamp":1607098331,"output":"ks.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updat"},{"event":"cmd_output","timestamp":1607098331,"output":"ed_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Mo"},{"event":"cmd_output","timestamp":1607098331,"output":"del.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:11.667 [info] Periodic from module Elixir."},{"event":"cmd_output","timestamp":1607098331,"output":"Block.Blocks.STMHandler.InitializingState with name Elixir.Block.Blocks.STMHandler.InitializingState"},{"event":"cmd_output","timestamp":1607098331,"output":" :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-InitializingStat"},{"event":"cmd_output","timestamp":1607098331,"output":"e\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Blo"},{"event":"cmd_output","timestamp":1607098331,"output":"ck.Blocks.Model.Blocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Block.EctoRepo, r"},{"event":"cmd_output","timestamp":1607098331,"output":"eturning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block."},{"event":"cmd_output","timestamp":1607098331,"output":"Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:11.668 [info] Periodic from module E"},{"event":"cmd_output","timestamp":1607098331,"output":"lixir.Block.Blocks.STMHandler.RunningState with name Elixir.Block.Blocks.STMHandler.RunningState :: "},{"event":"cmd_output","timestamp":1607098331,"output":"period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-RunningState\"]}, rec"},{"event":"cmd_output","timestamp":1607098331,"output":"urring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query:"},{"event":"cmd_output","timestamp":1607098331,"output":" Block.Blocks.Model.Blocks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, re"},{"event":"cmd_output","timestamp":1607098331,"output":"turning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.B"},{"event":"cmd_output","timestamp":1607098331,"output":"locks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:11.671 [info] Periodic from module El"},{"event":"cmd_output","timestamp":1607098331,"output":"ixir.Block.Blocks.STMHandler.StoppingState with name Elixir.Block.Blocks.STMHandler.StoppingState ::"},{"event":"cmd_output","timestamp":1607098331,"output":" period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-StoppingState\"]}, r"},{"event":"cmd_output","timestamp":1607098331,"output":"ecurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Bl"},{"event":"cmd_output","timestamp":1607098331,"output":"ocks.Model.Blocks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning:"},{"event":"cmd_output","timestamp":1607098331,"output":" [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Mo"},{"event":"cmd_output","timestamp":1607098331,"output":"del.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:11.672 [info] Periodic from module Elixir.Blo"},{"event":"cmd_output","timestamp":1607098331,"output":"ck.Tasks.STMHandler.PendingState with name Elixir.Block.Tasks.STMHandler.PendingState :: period: 100"},{"event":"cmd_output","timestamp":1607098331,"output":" ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingState\"]}, recurring args:"},{"event":"cmd_output","timestamp":1607098331,"output":" %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Tasks.Model.Tasks,"},{"event":"cmd_output","timestamp":1607098331,"output":" observed_state: \"pending\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_r"},{"event":"cmd_output","timestamp":1607098331,"output":"equest, :updated_at, :state, :recovery_count, :block_id, :build_request_id], schema: Block.Tasks.Mod"},{"event":"cmd_output","timestamp":1607098331,"output":"el.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:11.672 [info] Periodic from module Elixir.Block"},{"event":"cmd_output","timestamp":1607098331,"output":".Tasks.STMHandler.RunningState with name Elixir.Block.Tasks.STMHandler.RunningState :: period: 100 m"},{"event":"cmd_output","timestamp":1607098331,"output":"s, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningState\"]}, recurring args: %"},{"event":"cmd_output","timestamp":1607098331,"output":"{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.M"},{"event":"cmd_output","timestamp":1607098331,"output":"odel.Tasks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :"},{"event":"cmd_output","timestamp":1607098331,"output":"terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks"},{"event":"cmd_output","timestamp":1607098331,"output":", task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:11.673 [info] Periodic from module Elixir.Block.Tasks.S"},{"event":"cmd_output","timestamp":1607098331,"output":"TMHandler.StoppingState with name Elixir.Block.Tasks.STMHandler.StoppingState :: period: 100 ms, met"},{"event":"cmd_output","timestamp":1607098331,"output":"ric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]}, recurring args: %{allo"},{"event":"cmd_output","timestamp":1607098331,"output":"wed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, obse"},{"event":"cmd_output","timestamp":1607098331,"output":"rved_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_reque"},{"event":"cmd_output","timestamp":1607098331,"output":"st, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervis"},{"event":"cmd_output","timestamp":1607098331,"output":"or: :skip}\n\u001b[0m\u001b[22m\n16:12:11.782 [info] ppl_id: efe30e31-aa94-446a-a24e-fdc337c8246c, type: PplR"},{"event":"cmd_output","timestamp":1607098331,"output":"equests, event: persisted source_args for pipeline: efe30e31-aa94-446a-a24e-fdc337c8246c, origin: El"},{"event":"cmd_output","timestamp":1607098331,"output":"ixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:11.785 [info]"},{"event":"cmd_output","timestamp":1607098331,"output":" ppl_id: efe30e31-aa94-446a-a24e-fdc337c8246c, type: PplSubInits, state: fetching, event: exit_sche"},{"event":"cmd_output","timestamp":1607098331,"output":"duling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098331,"output":"2:11.814 [info] ppl_id: efe30e31-aa94-446a-a24e-fdc337c8246c, type: PplSubInits, state: regular_ini"},{"event":"cmd_output","timestamp":1607098331,"output":"t, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90)"},{"event":"cmd_output","timestamp":1607098331,"output":", \n\u001b[0m\u001b[22m\n16:12:11.842 [info] ppl_id: efe30e31-aa94-446a-a24e-fdc337c8246c, type: PplRequests,"},{"event":"cmd_output","timestamp":1607098331,"output":" event: persisted definition for request with request_token: 7744a076-364b-11eb-942d-5254005464e2, o"},{"event":"cmd_output","timestamp":1607098331,"output":"rigin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:"},{"event":"cmd_output","timestamp":1607098331,"output":"11.846 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:load"},{"event":"cmd_output","timestamp":1607098331,"output":"ed, \"queues\">, inserted_at: ~N[2020-12-04 16:12:11.844738], name: \"master-.semaphore/semaphore.yml\","},{"event":"cmd_output","timestamp":1607098331,"output":" organization_id: \"4372b116-b937-41fa-b81e-a0b84837c773\", project_id: \"54bcc1d3-f8a2-4397-9982-91905"},{"event":"cmd_output","timestamp":1607098331,"output":"51709a9\", queue_id: \"22122626-67c8-4568-8f49-6375735139bc\", scope: \"project\", updated_at: ~N[2020-12"},{"event":"cmd_output","timestamp":1607098331,"output":"-04 16:12:11.844748], user_generated: false}}\n\u001b[0m\u001b[22m\n16:12:11.851 [info] ppl_id: not_available"},{"event":"cmd_output","timestamp":1607098331,"output":", event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098331,"output":"\u001b[22m\n16:12:11.851 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitSta"},{"event":"cmd_output","timestamp":1607098331,"output":"te.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:11.851 [info] ppl_id: efe30e31-aa94-446a-a24e-fdc337c8246c, "},{"event":"cmd_output","timestamp":1607098331,"output":"type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098331,"output":"xir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:11.851 [info] p"},{"event":"cmd_output","timestamp":1607098331,"output":"pl_id: efe30e31-aa94-446a-a24e-fdc337c8246c, type: PplBlocks, block_index: 1, state: initializing, e"},{"event":"cmd_output","timestamp":1607098331,"output":"vent: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?"},{"event":"cmd_output","timestamp":1607098331,"output":"/1(L105), \n\u001b[0m\u001b[22m\n16:12:11.857 [info] ppl_id: efe30e31-aa94-446a-a24e-fdc337c8246c, type: PplS"},{"event":"cmd_output","timestamp":1607098331,"output":"ubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loop"},{"event":"cmd_output","timestamp":1607098331,"output":"er.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:11.864 [info] ppl_id: efe30e31-aa94-446a-a2"},{"event":"cmd_output","timestamp":1607098331,"output":"4e-fdc337c8246c, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098331,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:11.871 [info] p"},{"event":"cmd_output","timestamp":1607098331,"output":"pl_id: efe30e31-aa94-446a-a24e-fdc337c8246c, type: Ppls, state: pending, event: exit_scheduling, rec"},{"event":"cmd_output","timestamp":1607098331,"output":"overy_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:11.872 [i"},{"event":"cmd_output","timestamp":1607098331,"output":"nfo] ppl_id: efe30e31-aa94-446a-a24e-fdc337c8246c, type: PplBlocks, block_index: 1, state: waiting,"},{"event":"cmd_output","timestamp":1607098331,"output":" event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), "},{"event":"cmd_output","timestamp":1607098331,"output":"\n\u001b[0m\u001b[22m\n16:12:11.881 [info] ppl_id: efe30e31-aa94-446a-a24e-fdc337c8246c, type: Ppls, state: q"},{"event":"cmd_output","timestamp":1607098331,"output":"ueuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1"},{"event":"cmd_output","timestamp":1607098331,"output":"(L90), \n\u001b[0m\u001b[22m\n16:12:11.893 [info] ppl_id: efe30e31-aa94-446a-a24e-fdc337c8246c, type: Ppls, s"},{"event":"cmd_output","timestamp":1607098331,"output":"tate: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098331,"output":"hange/1(L90), \n\u001b[0m\u001b[22m\n16:12:11.899 [info] PplBlocks WaitingState STM is scheduling block 0 fro"},{"event":"cmd_output","timestamp":1607098331,"output":"m pipeline: \"efe30e31-aa94-446a-a24e-fdc337c8246c\"\n\u001b[0m\u001b[22m\n16:12:11.906 [info] block_id: e51b45"},{"event":"cmd_output","timestamp":1607098331,"output":"3f-5e00-4be1-b333-fe73c6f74253, type: BlockRequests, event: persisted block run request from ppl efe"},{"event":"cmd_output","timestamp":1607098331,"output":"30e31-aa94-446a-a24e-fdc337c8246c for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequest"},{"event":"cmd_output","timestamp":1607098331,"output":"sQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:11.918 [info] block_id: e51b453f-5e00-4be1-b33"},{"event":"cmd_output","timestamp":1607098331,"output":"3-fe73c6f74253, type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: E"},{"event":"cmd_output","timestamp":1607098331,"output":"lixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:11.922 [info] Block 0 of p"},{"event":"cmd_output","timestamp":1607098331,"output":"ipeline with id: efe30e31-aa94-446a-a24e-fdc337c8246c scheduled in block service with id: : \"e51b453"},{"event":"cmd_output","timestamp":1607098331,"output":"f-5e00-4be1-b333-fe73c6f74253\"\n\u001b[0m\u001b[22m\n16:12:11.927 [info] ppl_id: efe30e31-aa94-446a-a24e-fdc3"},{"event":"cmd_output","timestamp":1607098331,"output":"37c8246c, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0"},{"event":"cmd_output","timestamp":1607098331,"output":", origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:11.929 [info] block_id"},{"event":"cmd_output","timestamp":1607098331,"output":": e51b453f-5e00-4be1-b333-fe73c6f74253, type: BlockRequests, event: persisted build and sub_ppl deta"},{"event":"cmd_output","timestamp":1607098331,"output":"ils for block_request: e51b453f-5e00-4be1-b333-fe73c6f74253, origin: Elixir.Block.BlockRequests.Mode"},{"event":"cmd_output","timestamp":1607098331,"output":"l.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:11.934 [info] block_id: e51b453f-5e0"},{"event":"cmd_output","timestamp":1607098331,"output":"0-4be1-b333-fe73c6f74253, type: Tasks, state: pending, event: created, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098331,"output":"ixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:11.936 [info] bl"},{"event":"cmd_output","timestamp":1607098331,"output":"ock_id: e51b453f-5e00-4be1-b333-fe73c6f74253, type: Blocks, state: running, event: exit_scheduling, "},{"event":"cmd_output","timestamp":1607098331,"output":"recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:11.969"},{"event":"cmd_output","timestamp":1607098331,"output":" [info] block_id: e51b453f-5e00-4be1-b333-fe73c6f74253, type: Tasks, state: running, event: exit_sc"},{"event":"cmd_output","timestamp":1607098332,"output":"heduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098332,"output":":12:12.250 [info] block_id: e51b453f-5e00-4be1-b333-fe73c6f74253, type: Tasks, state: done, event: "},{"event":"cmd_output","timestamp":1607098332,"output":"exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098332,"output":"22m\n16:12:12.264 [info] block_id: e51b453f-5e00-4be1-b333-fe73c6f74253, type: Blocks, state: done,"},{"event":"cmd_output","timestamp":1607098332,"output":" event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), "},{"event":"cmd_output","timestamp":1607098332,"output":"\n\u001b[0m\u001b[22m\n16:12:12.275 [info] ppl_id: efe30e31-aa94-446a-a24e-fdc337c8246c, block_id: e51b453f-5"},{"event":"cmd_output","timestamp":1607098332,"output":"e00-4be1-b333-fe73c6f74253, type: PplBlocks, block_index: 0, state: done, result: passed, event: exi"},{"event":"cmd_output","timestamp":1607098332,"output":"t_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098332,"output":"\n16:12:12.285 [info] PplBlocks WaitingState STM is scheduling block 1 from pipeline: \"efe30e31-aa9"},{"event":"cmd_output","timestamp":1607098332,"output":"4-446a-a24e-fdc337c8246c\"\n\u001b[0m\u001b[22m\n16:12:12.296 [info] block_id: 2ad2542e-8088-431e-87bb-75e906b"},{"event":"cmd_output","timestamp":1607098332,"output":"e07c8, type: BlockRequests, event: persisted block run request from ppl efe30e31-aa94-446a-a24e-fdc3"},{"event":"cmd_output","timestamp":1607098332,"output":"37c8246c for block 1, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response"},{"event":"cmd_output","timestamp":1607098332,"output":"/4(L35), \n\u001b[0m\u001b[22m\n16:12:12.300 [info] block_id: 2ad2542e-8088-431e-87bb-75e906be07c8, type: Blo"},{"event":"cmd_output","timestamp":1607098332,"output":"cks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model."},{"event":"cmd_output","timestamp":1607098332,"output":"BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:12.300 [info] Block 1 of pipeline with id: efe30e31"},{"event":"cmd_output","timestamp":1607098332,"output":"-aa94-446a-a24e-fdc337c8246c scheduled in block service with id: : \"2ad2542e-8088-431e-87bb-75e906be"},{"event":"cmd_output","timestamp":1607098332,"output":"07c8\"\n\u001b[0m\u001b[22m\n16:12:12.304 [info] ppl_id: efe30e31-aa94-446a-a24e-fdc337c8246c, type: PplBlocks"},{"event":"cmd_output","timestamp":1607098332,"output":", block_index: 1, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.S"},{"event":"cmd_output","timestamp":1607098332,"output":"TM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:12.312 [info] block_id: 2ad2542e-8088-431e-87bb"},{"event":"cmd_output","timestamp":1607098332,"output":"-75e906be07c8, type: BlockRequests, event: persisted build and sub_ppl details for block_request: 2a"},{"event":"cmd_output","timestamp":1607098332,"output":"d2542e-8088-431e-87bb-75e906be07c8, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.in"},{"event":"cmd_output","timestamp":1607098332,"output":"sert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:12.315 [info] block_id: 2ad2542e-8088-431e-87bb-75e906be07c8,"},{"event":"cmd_output","timestamp":1607098332,"output":" type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHand"},{"event":"cmd_output","timestamp":1607098332,"output":"ler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:12.318 [info] block_id: 2ad2542e-8088-431"},{"event":"cmd_output","timestamp":1607098332,"output":"e-87bb-75e906be07c8, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098332,"output":": Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:12.344 [info] block_id: 2ad254"},{"event":"cmd_output","timestamp":1607098332,"output":"2e-8088-431e-87bb-75e906be07c8, type: Tasks, state: running, event: exit_scheduling, recovery_count:"},{"event":"cmd_output","timestamp":1607098332,"output":" 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:12.367 [info] block_"},{"event":"cmd_output","timestamp":1607098332,"output":"id: 2ad2542e-8088-431e-87bb-75e906be07c8, type: Tasks, state: done, event: exit_scheduling, recovery"},{"event":"cmd_output","timestamp":1607098332,"output":"_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:12.375 [info] "},{"event":"cmd_output","timestamp":1607098332,"output":" block_id: 2ad2542e-8088-431e-87bb-75e906be07c8, type: Blocks, state: done, event: exit_scheduling, "},{"event":"cmd_output","timestamp":1607098332,"output":"recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:12.384"},{"event":"cmd_output","timestamp":1607098332,"output":" [info] ppl_id: efe30e31-aa94-446a-a24e-fdc337c8246c, block_id: 2ad2542e-8088-431e-87bb-75e906be07c"},{"event":"cmd_output","timestamp":1607098332,"output":"8, type: PplBlocks, block_index: 1, state: done, result: passed, event: exit_scheduling, recovery_co"},{"event":"cmd_output","timestamp":1607098332,"output":"unt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:12.409 [info] pp"},{"event":"cmd_output","timestamp":1607098332,"output":"l_id: efe30e31-aa94-446a-a24e-fdc337c8246c, type: Ppls, state: done, result: passed, event: exit_sch"},{"event":"cmd_output","timestamp":1607098332,"output":"eduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * "},{"event":"cmd_output","timestamp":1607098332,"output":"test gRPC partial_rebuild() - fails when given pipeline is passed (945.1ms)\u001b[0m\n * test gRPC list_"},{"event":"cmd_output","timestamp":1607098332,"output":"grouped() - project scoped implicit queues\u001b[22m\n16:12:12.571 [info] ppl_id: 2f03e514-d7ee-4233-b0"},{"event":"cmd_output","timestamp":1607098332,"output":"ff-c20a93b26c93, type: PplRequests, event: persisted schedule request with request_token: 28eacd58-c"},{"event":"cmd_output","timestamp":1607098332,"output":"61d-4bc3-bd77-5a52108a1b4c, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response"},{"event":"cmd_output","timestamp":1607098332,"output":"/2(L55), \n\u001b[0m\u001b[22m\n16:12:12.574 [info] ppl_id: 2f03e514-d7ee-4233-b0ff-c20a93b26c93, type: PplRe"},{"event":"cmd_output","timestamp":1607098332,"output":"quests, event: persisted definition for request with request_token: 28eacd58-c61d-4bc3-bd77-5a52108a"},{"event":"cmd_output","timestamp":1607098332,"output":"1b4c, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098332,"output":"\n16:12:12.578 [info] ppl_id: 2f03e514-d7ee-4233-b0ff-c20a93b26c93, type: Ppls, state: initializing,"},{"event":"cmd_output","timestamp":1607098332,"output":" event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/"},{"event":"cmd_output","timestamp":1607098332,"output":"2(L124), \n\u001b[0m\u001b[22m\n16:12:12.589 [info] Persisted ppl_sub_init for pipeline with ppl_id: 2f03e514"},{"event":"cmd_output","timestamp":1607098332,"output":"-d7ee-4233-b0ff-c20a93b26c93: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:lo"},{"event":"cmd_output","timestamp":1607098332,"output":"aded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 171, in_scheduling: f"},{"event":"cmd_output","timestamp":1607098332,"output":"alse, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:12.582850], pipeline_requests: #Ecto.As"},{"event":"cmd_output","timestamp":1607098332,"output":"sociation.NotLoaded, ppl_id: \"2f03e514-d7ee-4233-b0ff-"},{"event":"cmd_output","timestamp":1607098332,"output":"c20a93b26c93\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_reque"},{"event":"cmd_output","timestamp":1607098332,"output":"st: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:12.582862]}\n\u001b[0m\u001b[22m\n16:12:"},{"event":"cmd_output","timestamp":1607098332,"output":"12.596 [info] ppl_id: b16ba897-fd73-4807-8a0c-9906757826c7, type: PplRequests, event: persisted sch"},{"event":"cmd_output","timestamp":1607098332,"output":"edule request with request_token: 02e0e8b2-1e85-4c49-8ea6-6ff958ea2e21, origin: Elixir.Ppl.PplReques"},{"event":"cmd_output","timestamp":1607098332,"output":"ts.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:12.598 [info] ppl_id: b16ba"},{"event":"cmd_output","timestamp":1607098332,"output":"897-fd73-4807-8a0c-9906757826c7, type: PplRequests, event: persisted definition for request with req"},{"event":"cmd_output","timestamp":1607098332,"output":"uest_token: 02e0e8b2-1e85-4c49-8ea6-6ff958ea2e21, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQu"},{"event":"cmd_output","timestamp":1607098332,"output":"eries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:12.602 [info] ppl_id: b16ba897-fd73-4807-8a0c-99"},{"event":"cmd_output","timestamp":1607098332,"output":"06757826c7, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098332,"output":"Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:12.608 [info] Persisted ppl"},{"event":"cmd_output","timestamp":1607098332,"output":"_sub_init for pipeline with ppl_id: b16ba897-fd73-4807-8a0c-9906757826c7: %Ppl.PplSubInits.Model.Ppl"},{"event":"cmd_output","timestamp":1607098332,"output":"SubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error"},{"event":"cmd_output","timestamp":1607098332,"output":"_description: nil, id: 172, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 1"},{"event":"cmd_output","timestamp":1607098332,"output":"6:12:12.606306], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"b16ba897-fd73-4807-8a0c-9906757826c7\", recovery_count: 0, result: nil, result_re"},{"event":"cmd_output","timestamp":1607098332,"output":"ason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[202"},{"event":"cmd_output","timestamp":1607098332,"output":"0-12-04 16:12:12.606319]}\n\u001b[0m\u001b[22m\n16:12:12.614 [info] ppl_id: 461da51c-7fb6-4fea-ae26-7badf5d5b"},{"event":"cmd_output","timestamp":1607098332,"output":"2ea, type: PplRequests, event: persisted schedule request with request_token: 38d4f3b1-8f4f-4975-b9b"},{"event":"cmd_output","timestamp":1607098332,"output":"5-045115f903b1, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b"},{"event":"cmd_output","timestamp":1607098332,"output":"[0m\u001b[22m\n16:12:12.616 [info] ppl_id: 461da51c-7fb6-4fea-ae26-7badf5d5b2ea, type: PplRequests, even"},{"event":"cmd_output","timestamp":1607098332,"output":"t: persisted definition for request with request_token: 38d4f3b1-8f4f-4975-b9b5-045115f903b1, origin"},{"event":"cmd_output","timestamp":1607098332,"output":": Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:12.62"},{"event":"cmd_output","timestamp":1607098332,"output":"1 [info] ppl_id: 461da51c-7fb6-4fea-ae26-7badf5d5b2ea, type: Ppls, state: initializing, event: init"},{"event":"cmd_output","timestamp":1607098332,"output":"ializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b"},{"event":"cmd_output","timestamp":1607098332,"output":"[0m\u001b[22m\n16:12:12.626 [info] Persisted ppl_sub_init for pipeline with ppl_id: 461da51c-7fb6-4fea-a"},{"event":"cmd_output","timestamp":1607098332,"output":"e26-7badf5d5b2ea: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipel"},{"event":"cmd_output","timestamp":1607098332,"output":"ine_sub_inits\">, compile_task_id: nil, error_description: nil, id: 173, in_scheduling: false, init_t"},{"event":"cmd_output","timestamp":1607098332,"output":"ype: \"regular\", inserted_at: ~N[2020-12-04 16:12:12.624205], pipeline_requests: #Ecto.Association.No"},{"event":"cmd_output","timestamp":1607098332,"output":"tLoaded, ppl_id: \"461da51c-7fb6-4fea-ae26-7badf5d5b2ea"},{"event":"cmd_output","timestamp":1607098332,"output":"\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, ter"},{"event":"cmd_output","timestamp":1607098332,"output":"minate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:12.624214]}\n\u001b[0m\u001b[22m\n16:12:12.631 [info"},{"event":"cmd_output","timestamp":1607098332,"output":"] ppl_id: f8ae9054-a14f-4255-a24c-efb7c98bb181, type: PplRequests, event: persisted schedule reques"},{"event":"cmd_output","timestamp":1607098332,"output":"t with request_token: 1d505c6c-0295-40e6-a07a-2b6c3f9f1289, origin: Elixir.Ppl.PplRequests.Model.Ppl"},{"event":"cmd_output","timestamp":1607098332,"output":"RequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:12.633 [info] ppl_id: f8ae9054-a14f-425"},{"event":"cmd_output","timestamp":1607098332,"output":"5-a24c-efb7c98bb181, type: PplRequests, event: persisted definition for request with request_token: "},{"event":"cmd_output","timestamp":1607098332,"output":"1d505c6c-0295-40e6-a07a-2b6c3f9f1289, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert"},{"event":"cmd_output","timestamp":1607098332,"output":"_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:12.636 [info] ppl_id: f8ae9054-a14f-4255-a24c-efb7c98bb181, "},{"event":"cmd_output","timestamp":1607098332,"output":"type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Mod"},{"event":"cmd_output","timestamp":1607098332,"output":"el.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:12.641 [info] Persisted ppl_sub_init fo"},{"event":"cmd_output","timestamp":1607098332,"output":"r pipeline with ppl_id: f8ae9054-a14f-4255-a24c-efb7c98bb181: %Ppl.PplSubInits.Model.PplSubInits{__m"},{"event":"cmd_output","timestamp":1607098332,"output":"eta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description"},{"event":"cmd_output","timestamp":1607098332,"output":": nil, id: 174, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:12.6398"},{"event":"cmd_output","timestamp":1607098332,"output":"02], pipeline_requests: #Ecto.Association.NotLoaded, p"},{"event":"cmd_output","timestamp":1607098332,"output":"pl_id: \"f8ae9054-a14f-4255-a24c-efb7c98bb181\", recovery_count: 0, result: nil, result_reason: nil, s"},{"event":"cmd_output","timestamp":1607098332,"output":"tate: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:1"},{"event":"cmd_output","timestamp":1607098332,"output":"2:12.639815]}\n\u001b[0m\u001b[22m\n16:12:12.648 [info] ppl_id: c9bc04fa-7912-45ba-b2c7-7b05e0ba04c4, type: P"},{"event":"cmd_output","timestamp":1607098332,"output":"plRequests, event: persisted schedule request with request_token: e1a0ad25-aec5-4d18-8dc6-d89000ade2"},{"event":"cmd_output","timestamp":1607098332,"output":"4d, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098332,"output":":12:12.650 [info] ppl_id: c9bc04fa-7912-45ba-b2c7-7b05e0ba04c4, type: PplRequests, event: persisted"},{"event":"cmd_output","timestamp":1607098332,"output":" definition for request with request_token: e1a0ad25-aec5-4d18-8dc6-d89000ade24d, origin: Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098332,"output":".PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:12.657 [info] pp"},{"event":"cmd_output","timestamp":1607098332,"output":"l_id: c9bc04fa-7912-45ba-b2c7-7b05e0ba04c4, type: Ppls, state: initializing, event: initializing, re"},{"event":"cmd_output","timestamp":1607098332,"output":"covery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098332,"output":":12:12.662 [info] Persisted ppl_sub_init for pipeline with ppl_id: c9bc04fa-7912-45ba-b2c7-7b05e0ba"},{"event":"cmd_output","timestamp":1607098332,"output":"04c4: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_init"},{"event":"cmd_output","timestamp":1607098332,"output":"s\">, compile_task_id: nil, error_description: nil, id: 175, in_scheduling: false, init_type: \"regula"},{"event":"cmd_output","timestamp":1607098332,"output":"r\", inserted_at: ~N[2020-12-04 16:12:12.660524], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"c9bc04fa-7912-45ba-b2c7-7b05e0ba04c4\", recovery_"},{"event":"cmd_output","timestamp":1607098332,"output":"count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_reque"},{"event":"cmd_output","timestamp":1607098332,"output":"st_desc: nil, updated_at: ~N[2020-12-04 16:12:12.660536]}\n\u001b[0m\u001b[22m\n16:12:12.668 [info] ppl_id: b"},{"event":"cmd_output","timestamp":1607098332,"output":"de73561-8a20-43d2-9b3c-42fab53b730c, type: PplRequests, event: persisted schedule request with reque"},{"event":"cmd_output","timestamp":1607098332,"output":"st_token: 95972b5a-fd63-4c16-92fe-464858020587, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQuer"},{"event":"cmd_output","timestamp":1607098332,"output":"ies.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:12.670 [info] ppl_id: bde73561-8a20-43d2-9b3c-42fab"},{"event":"cmd_output","timestamp":1607098332,"output":"53b730c, type: PplRequests, event: persisted definition for request with request_token: 95972b5a-fd6"},{"event":"cmd_output","timestamp":1607098332,"output":"3-4c16-92fe-464858020587, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/"},{"event":"cmd_output","timestamp":1607098332,"output":"3(L76), \n\u001b[0m\u001b[22m\n16:12:12.676 [info] ppl_id: bde73561-8a20-43d2-9b3c-42fab53b730c, type: Ppls, "},{"event":"cmd_output","timestamp":1607098332,"output":"state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueri"},{"event":"cmd_output","timestamp":1607098332,"output":"es.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:12.681 [info] Persisted ppl_sub_init for pipeline w"},{"event":"cmd_output","timestamp":1607098332,"output":"ith ppl_id: bde73561-8a20-43d2-9b3c-42fab53b730c: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto"},{"event":"cmd_output","timestamp":1607098332,"output":".Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 1"},{"event":"cmd_output","timestamp":1607098332,"output":"76, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:12.680044], pipelin"},{"event":"cmd_output","timestamp":1607098332,"output":"e_requests: #Ecto.Association.NotLoaded, ppl_id: \"bde7"},{"event":"cmd_output","timestamp":1607098332,"output":"3561-8a20-43d2-9b3c-42fab53b730c\", recovery_count: 0, result: nil, result_reason: nil, state: \"creat"},{"event":"cmd_output","timestamp":1607098332,"output":"ed\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:12.680056]"},{"event":"cmd_output","timestamp":1607098332,"output":"}\n\u001b[0m\u001b[22m\n16:12:12.687 [info] ppl_id: ae0f1d96-3bea-43dd-8078-d7f07c07c257, type: PplRequests, "},{"event":"cmd_output","timestamp":1607098332,"output":"event: persisted schedule request with request_token: 69d07a9c-a8aa-4c5f-b76e-26146f443496, origin: "},{"event":"cmd_output","timestamp":1607098332,"output":"Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:12.689 ["},{"event":"cmd_output","timestamp":1607098332,"output":"info] ppl_id: ae0f1d96-3bea-43dd-8078-d7f07c07c257, type: PplRequests, event: persisted definition "},{"event":"cmd_output","timestamp":1607098332,"output":"for request with request_token: 69d07a9c-a8aa-4c5f-b76e-26146f443496, origin: Elixir.Ppl.PplRequests"},{"event":"cmd_output","timestamp":1607098332,"output":".Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:12.692 [info] ppl_id: ae0f1d"},{"event":"cmd_output","timestamp":1607098332,"output":"96-3bea-43dd-8078-d7f07c07c257, type: Ppls, state: initializing, event: initializing, recovery_count"},{"event":"cmd_output","timestamp":1607098332,"output":": 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:12.696 ["},{"event":"cmd_output","timestamp":1607098332,"output":"info] Persisted ppl_sub_init for pipeline with ppl_id: ae0f1d96-3bea-43dd-8078-d7f07c07c257: %Ppl.P"},{"event":"cmd_output","timestamp":1607098332,"output":"plSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile"},{"event":"cmd_output","timestamp":1607098332,"output":"_task_id: nil, error_description: nil, id: 177, in_scheduling: false, init_type: \"regular\", inserted"},{"event":"cmd_output","timestamp":1607098332,"output":"_at: ~N[2020-12-04 16:12:12.695201], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"ae0f1d96-3bea-43dd-8078-d7f07c07c257\", recovery_count: 0, re"},{"event":"cmd_output","timestamp":1607098332,"output":"sult: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil"},{"event":"cmd_output","timestamp":1607098332,"output":", updated_at: ~N[2020-12-04 16:12:12.695213]}\n\u001b[0m\u001b[22m\n16:12:12.704 [info] ppl_id: e06554e5-e9d5"},{"event":"cmd_output","timestamp":1607098332,"output":"-4e22-b778-efe0bdcf2091, type: PplRequests, event: persisted schedule request with request_token: 60"},{"event":"cmd_output","timestamp":1607098332,"output":"da5ef1-f9e0-4b53-a8ba-d85a47ed50c0, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_"},{"event":"cmd_output","timestamp":1607098332,"output":"response/2(L55), \n\u001b[0m\u001b[22m\n16:12:12.709 [info] ppl_id: e06554e5-e9d5-4e22-b778-efe0bdcf2091, typ"},{"event":"cmd_output","timestamp":1607098332,"output":"e: PplRequests, event: persisted definition for request with request_token: 60da5ef1-f9e0-4b53-a8ba-"},{"event":"cmd_output","timestamp":1607098332,"output":"d85a47ed50c0, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b["},{"event":"cmd_output","timestamp":1607098332,"output":"0m\u001b[22m\n16:12:12.717 [info] ppl_id: e06554e5-e9d5-4e22-b778-efe0bdcf2091, type: Ppls, state: initi"},{"event":"cmd_output","timestamp":1607098332,"output":"alizing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_r"},{"event":"cmd_output","timestamp":1607098332,"output":"esponse/2(L124), \n\u001b[0m\u001b[22m\n16:12:12.722 [info] Persisted ppl_sub_init for pipeline with ppl_id: "},{"event":"cmd_output","timestamp":1607098332,"output":"e06554e5-e9d5-4e22-b778-efe0bdcf2091: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Meta"},{"event":"cmd_output","timestamp":1607098332,"output":"data<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 178, in_sched"},{"event":"cmd_output","timestamp":1607098332,"output":"uling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:12.720031], pipeline_requests: "},{"event":"cmd_output","timestamp":1607098332,"output":"#Ecto.Association.NotLoaded, ppl_id: \"e06554e5-e9d5-4e"},{"event":"cmd_output","timestamp":1607098332,"output":"22-b778-efe0bdcf2091\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", termina"},{"event":"cmd_output","timestamp":1607098332,"output":"te_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:12.720043]}\n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098332,"output":"\n16:12:12.725 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingState with name E"},{"event":"cmd_output","timestamp":1607098332,"output":"lixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\","},{"event":"cmd_output","timestamp":1607098332,"output":" [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"pen"},{"event":"cmd_output","timestamp":1607098332,"output":"ding\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"initializi"},{"event":"cmd_output","timestamp":1607098332,"output":"ng\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, repo: P"},{"event":"cmd_output","timestamp":1607098332,"output":"pl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :pp"},{"event":"cmd_output","timestamp":1607098332,"output":"l_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:12.725 [info] Periodi"},{"event":"cmd_output","timestamp":1607098332,"output":"c from module Elixir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler.PendingSt"},{"event":"cmd_output","timestamp":1607098332,"output":"ate :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, "},{"event":"cmd_output","timestamp":1607098332,"output":"recurring args: %{allowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_sec: 0, in"},{"event":"cmd_output","timestamp":1607098332,"output":"itial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publisher_cb: #Function<0.8493005/1 in "},{"event":"cmd_output","timestamp":1607098332,"output":"Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :"},{"event":"cmd_output","timestamp":1607098332,"output":"updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor"},{"event":"cmd_output","timestamp":1607098332,"output":": PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:12:12.725 [info] Periodic from module Elixir.Ppl.Ppls.STMHandl"},{"event":"cmd_output","timestamp":1607098332,"output":"er.QueuingState with name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, metric_name: {\""},{"event":"cmd_output","timestamp":1607098332,"output":"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{allowed_states: [\"qu"},{"event":"cmd_output","timestamp":1607098332,"output":"euing\", \"running\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state"},{"event":"cmd_output","timestamp":1607098332,"output":": \"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.args/0>, repo"},{"event":"cmd_output","timestamp":1607098332,"output":": Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, "},{"event":"cmd_output","timestamp":1607098332,"output":":ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:12.726 [info] Peri"},{"event":"cmd_output","timestamp":1607098332,"output":"odic from module Elixir.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHandler.Runnin"},{"event":"cmd_output","timestamp":1607098332,"output":"gState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]"},{"event":"cmd_output","timestamp":1607098332,"output":"}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_"},{"event":"cmd_output","timestamp":1607098332,"output":"query: Ppl.Ppls.Model.Ppls, observed_state: \"running\", publisher_cb: #Function<0.74670282/1 in Ppl.P"},{"event":"cmd_output","timestamp":1607098332,"output":"pls.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updat"},{"event":"cmd_output","timestamp":1607098332,"output":"ed_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: Ppl"},{"event":"cmd_output","timestamp":1607098332,"output":"sTaskSupervisor}\n\u001b[0m\u001b[22m\n16:12:12.726 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.St"},{"event":"cmd_output","timestamp":1607098332,"output":"oppingState with name Elixir.Ppl.Ppls.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl"},{"event":"cmd_output","timestamp":1607098332,"output":".beholder-wake_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stop"},{"event":"cmd_output","timestamp":1607098332,"output":"ping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"stopping\""},{"event":"cmd_output","timestamp":1607098332,"output":", publisher_cb: #Function<0.71803493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, repo: Ppl.EctoR"},{"event":"cmd_output","timestamp":1607098332,"output":"epo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], s"},{"event":"cmd_output","timestamp":1607098332,"output":"chema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:12.726 [info] Periodic from m"},{"event":"cmd_output","timestamp":1607098332,"output":"odule Elixir.Ppl.PplSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHandler.Cre"},{"event":"cmd_output","timestamp":1607098332,"output":"atedState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-Crea"},{"event":"cmd_output","timestamp":1607098332,"output":"tedState\"]}, recurring args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_qu"},{"event":"cmd_output","timestamp":1607098332,"output":"ery: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip, repo: Ppl.Ec"},{"event":"cmd_output","timestamp":1607098332,"output":"toRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id]"},{"event":"cmd_output","timestamp":1607098332,"output":", schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:12.726 [info]"},{"event":"cmd_output","timestamp":1607098332,"output":" Periodic from module Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl.PplSubIn"},{"event":"cmd_output","timestamp":1607098332,"output":"its.STMHandler.FetchingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubIn"},{"event":"cmd_output","timestamp":1607098332,"output":"its-STMHandler-FetchingState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \""},{"event":"cmd_output","timestamp":1607098332,"output":"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fet"},{"event":"cmd_output","timestamp":1607098332,"output":"ching\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :"},{"event":"cmd_output","timestamp":1607098332,"output":"state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_superviso"},{"event":"cmd_output","timestamp":1607098332,"output":"r: :skip}\n\u001b[0m\u001b[22m\n16:12:12.726 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.Co"},{"event":"cmd_output","timestamp":1607098332,"output":"mpilationState with name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 100 ms, metri"},{"event":"cmd_output","timestamp":1607098332,"output":"c_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurring args: %"},{"event":"cmd_output","timestamp":1607098332,"output":"{allowed_states: [\"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_"},{"event":"cmd_output","timestamp":1607098332,"output":"query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"compilation\", publisher_cb: :skip, repo: "},{"event":"cmd_output","timestamp":1607098332,"output":"Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :p"},{"event":"cmd_output","timestamp":1607098332,"output":"pl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:12.727 "},{"event":"cmd_output","timestamp":1607098332,"output":"[info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with name Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098332,"output":".PplSubInits.STMHandler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\""},{"event":"cmd_output","timestamp":1607098332,"output":"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurring args: %{allowed_states: [\"done\"], cooling_"},{"event":"cmd_output","timestamp":1607098332,"output":"time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_init\", publi"},{"event":"cmd_output","timestamp":1607098332,"output":"sher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :resul"},{"event":"cmd_output","timestamp":1607098332,"output":"t, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b["},{"event":"cmd_output","timestamp":1607098332,"output":"0m\u001b[22m\n16:12:12.727 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.InitializingState"},{"event":"cmd_output","timestamp":1607098332,"output":" with name Elixir.Ppl.PplBlocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.b"},{"event":"cmd_output","timestamp":1607098332,"output":"eholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states:"},{"event":"cmd_output","timestamp":1607098332,"output":" [\"initializing\", \"waiting\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlo"},{"event":"cmd_output","timestamp":1607098332,"output":"cks, observed_state: \"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :term"},{"event":"cmd_output","timestamp":1607098332,"output":"inate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.Pp"},{"event":"cmd_output","timestamp":1607098332,"output":"lBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:12.727 [info] Periodic from modu"},{"event":"cmd_output","timestamp":1607098332,"output":"le Elixir.Ppl.PplBlocks.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler.WaitingSta"},{"event":"cmd_output","timestamp":1607098332,"output":"te :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState"},{"event":"cmd_output","timestamp":1607098332,"output":"\"]}, recurring args: %{allowed_states: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 0, initial_"},{"event":"cmd_output","timestamp":1607098332,"output":"query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"waiting\", publisher_cb: #Function<0.8975022/1"},{"event":"cmd_output","timestamp":1607098332,"output":" in Ppl.PplBlocks.STMHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_r"},{"event":"cmd_output","timestamp":1607098332,"output":"equest, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks"},{"event":"cmd_output","timestamp":1607098332,"output":".Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:12.727 [info] Periodic from module Elix"},{"event":"cmd_output","timestamp":1607098332,"output":"ir.Ppl.PplBlocks.STMHandler.RunningState with name Elixir.Ppl.PplBlocks.STMHandler.RunningState :: p"},{"event":"cmd_output","timestamp":1607098332,"output":"eriod: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, re"},{"event":"cmd_output","timestamp":1607098332,"output":"curring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query"},{"event":"cmd_output","timestamp":1607098332,"output":": Ppl.PplBlocks.Model.PplBlocks, observed_state: \"running\", publisher_cb: #Function<0.28166834/1 in "},{"event":"cmd_output","timestamp":1607098332,"output":"Ppl.PplBlocks.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_reque"},{"event":"cmd_output","timestamp":1607098332,"output":"st, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.Pp"},{"event":"cmd_output","timestamp":1607098332,"output":"lBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:12.727 [info] Periodic from modu"},{"event":"cmd_output","timestamp":1607098332,"output":"le Elixir.Ppl.PplBlocks.STMHandler.StoppingState with name Elixir.Ppl.PplBlocks.STMHandler.StoppingS"},{"event":"cmd_output","timestamp":1607098332,"output":"tate :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-StoppingSt"},{"event":"cmd_output","timestamp":1607098332,"output":"ate\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query:"},{"event":"cmd_output","timestamp":1607098332,"output":" Ppl.PplBlocks.Model.PplBlocks, observed_state: \"stopping\", publisher_cb: #Function<0.104215991/1 in"},{"event":"cmd_output","timestamp":1607098332,"output":" Ppl.PplBlocks.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_req"},{"event":"cmd_output","timestamp":1607098332,"output":"uest, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl."},{"event":"cmd_output","timestamp":1607098332,"output":"PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:12.727 [info] Periodic from mo"},{"event":"cmd_output","timestamp":1607098332,"output":"dule Elixir.Block.Blocks.STMHandler.InitializingState with name Elixir.Block.Blocks.STMHandler.Initi"},{"event":"cmd_output","timestamp":1607098332,"output":"alizingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-Init"},{"event":"cmd_output","timestamp":1607098332,"output":"ializingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initia"},{"event":"cmd_output","timestamp":1607098332,"output":"l_query: Block.Blocks.Model.Blocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Block"},{"event":"cmd_output","timestamp":1607098332,"output":".EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], sc"},{"event":"cmd_output","timestamp":1607098332,"output":"hema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:12.727 [info] Periodic f"},{"event":"cmd_output","timestamp":1607098332,"output":"rom module Elixir.Block.Blocks.STMHandler.RunningState with name Elixir.Block.Blocks.STMHandler.Runn"},{"event":"cmd_output","timestamp":1607098332,"output":"ingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-RunningS"},{"event":"cmd_output","timestamp":1607098332,"output":"tate\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, in"},{"event":"cmd_output","timestamp":1607098332,"output":"itial_query: Block.Blocks.Model.Blocks, observed_state: \"running\", publisher_cb: :skip, repo: Block."},{"event":"cmd_output","timestamp":1607098332,"output":"EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], sch"},{"event":"cmd_output","timestamp":1607098332,"output":"ema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:12.727 [info] Periodic fr"},{"event":"cmd_output","timestamp":1607098332,"output":"om module Elixir.Block.Blocks.STMHandler.StoppingState with name Elixir.Block.Blocks.STMHandler.Stop"},{"event":"cmd_output","timestamp":1607098332,"output":"pingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-Stoppin"},{"event":"cmd_output","timestamp":1607098332,"output":"gState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_que"},{"event":"cmd_output","timestamp":1607098332,"output":"ry: Block.Blocks.Model.Blocks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo"},{"event":"cmd_output","timestamp":1607098332,"output":", returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Blo"},{"event":"cmd_output","timestamp":1607098332,"output":"ck.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:12.728 [info] Periodic from modul"},{"event":"cmd_output","timestamp":1607098332,"output":"e Elixir.Block.Tasks.STMHandler.PendingState with name Elixir.Block.Tasks.STMHandler.PendingState ::"},{"event":"cmd_output","timestamp":1607098332,"output":" period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingState\"]}, rec"},{"event":"cmd_output","timestamp":1607098332,"output":"urring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Tasks."},{"event":"cmd_output","timestamp":1607098332,"output":"Model.Tasks, observed_state: \"pending\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, "},{"event":"cmd_output","timestamp":1607098332,"output":":terminate_request, :updated_at, :state, :recovery_count, :block_id, :build_request_id], schema: Blo"},{"event":"cmd_output","timestamp":1607098332,"output":"ck.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:12.728 [info] Periodic from module "},{"event":"cmd_output","timestamp":1607098332,"output":"Elixir.Block.Tasks.STMHandler.RunningState with name Elixir.Block.Tasks.STMHandler.RunningState :: p"},{"event":"cmd_output","timestamp":1607098332,"output":"eriod: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningState\"]}, recur"},{"event":"cmd_output","timestamp":1607098332,"output":"ring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: B"},{"event":"cmd_output","timestamp":1607098332,"output":"lock.Tasks.Model.Tasks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, return"},{"event":"cmd_output","timestamp":1607098332,"output":"ing: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks"},{"event":"cmd_output","timestamp":1607098332,"output":".Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:12.728 [info] Periodic from module Elixir.B"},{"event":"cmd_output","timestamp":1607098332,"output":"lock.Tasks.STMHandler.StoppingState with name Elixir.Block.Tasks.STMHandler.StoppingState :: period:"},{"event":"cmd_output","timestamp":1607098332,"output":" 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]}, recurring "},{"event":"cmd_output","timestamp":1607098332,"output":"args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model"},{"event":"cmd_output","timestamp":1607098332,"output":".Tasks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :ter"},{"event":"cmd_output","timestamp":1607098332,"output":"minate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, t"},{"event":"cmd_output","timestamp":1607098332,"output":"ask_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:12.852 [info] ppl_id: 2f03e514-d7ee-4233-b0ff-c20a93b26c93"},{"event":"cmd_output","timestamp":1607098332,"output":", type: PplRequests, event: persisted source_args for pipeline: 2f03e514-d7ee-4233-b0ff-c20a93b26c93"},{"event":"cmd_output","timestamp":1607098332,"output":", origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:1"},{"event":"cmd_output","timestamp":1607098332,"output":"2.856 [info] ppl_id: 2f03e514-d7ee-4233-b0ff-c20a93b26c93, type: PplSubInits, state: fetching, even"},{"event":"cmd_output","timestamp":1607098332,"output":"t: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098332,"output":"m\u001b[22m\n16:12:12.888 [info] ppl_id: 2f03e514-d7ee-4233-b0ff-c20a93b26c93, type: PplSubInits, state:"},{"event":"cmd_output","timestamp":1607098332,"output":" regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098332,"output":"hange/1(L90), \n\u001b[0m\u001b[22m\n16:12:12.924 [info] ppl_id: 2f03e514-d7ee-4233-b0ff-c20a93b26c93, type: "},{"event":"cmd_output","timestamp":1607098332,"output":"PplRequests, event: persisted definition for request with request_token: 28eacd58-c61d-4bc3-bd77-5a5"},{"event":"cmd_output","timestamp":1607098332,"output":"2108a1b4c, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098332,"output":"[22m\n16:12:12.928 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Me"},{"event":"cmd_output","timestamp":1607098332,"output":"tadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:12:12.926641], name: \"master-.semaphore/sem"},{"event":"cmd_output","timestamp":1607098332,"output":"aphore.yml\", organization_id: \"8cbd16ad-f7d0-48ae-ac75-4850402aae91\", project_id: \"123\", queue_id: \""},{"event":"cmd_output","timestamp":1607098332,"output":"2a86a5af-2a6b-42bc-b7d6-df5bac6d437a\", scope: \"project\", updated_at: ~N[2020-12-04 16:12:12.926653],"},{"event":"cmd_output","timestamp":1607098332,"output":" user_generated: false}}\n\u001b[0m\u001b[22m\n16:12:12.934 [info] event: created, origin: Elixir.Ppl.PplSubI"},{"event":"cmd_output","timestamp":1607098332,"output":"nits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:12.934 [info] ppl_id: 2f03e514"},{"event":"cmd_output","timestamp":1607098332,"output":"-d7ee-4233-b0ff-c20a93b26c93, type: PplBlocks, block_index: 0, state: initializing, event: created, "},{"event":"cmd_output","timestamp":1607098332,"output":"recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098332,"output":"m\u001b[22m\n16:12:12.938 [info] ppl_id: 2f03e514-d7ee-4233-b0ff-c20a93b26c93, type: PplSubInits, state:"},{"event":"cmd_output","timestamp":1607098332,"output":" done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098332,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:12.952 [info] ppl_id: 2f03e514-d7ee-4233-b0ff-c20a93b26c93"},{"event":"cmd_output","timestamp":1607098332,"output":", type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.I"},{"event":"cmd_output","timestamp":1607098332,"output":"mpl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:12.964 [info] ppl_id: 2f03e514-d7ee-4233-b0ff-c20a9"},{"event":"cmd_output","timestamp":1607098332,"output":"3b26c93, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098332,"output":" origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:12.971 [info] ppl_id: b"},{"event":"cmd_output","timestamp":1607098332,"output":"16ba897-fd73-4807-8a0c-9906757826c7, type: PplRequests, event: persisted source_args for pipeline: b"},{"event":"cmd_output","timestamp":1607098332,"output":"16ba897-fd73-4807-8a0c-9906757826c7, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_"},{"event":"cmd_output","timestamp":1607098332,"output":"source/2(L89), \n\u001b[0m\u001b[22m\n16:12:12.975 [info] ppl_id: b16ba897-fd73-4807-8a0c-9906757826c7, type:"},{"event":"cmd_output","timestamp":1607098332,"output":" PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM."},{"event":"cmd_output","timestamp":1607098332,"output":"Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:12.977 [info] ppl_id: 2f03e514-d7ee-4233-b0ff-c20a"},{"event":"cmd_output","timestamp":1607098332,"output":"93b26c93, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loop"},{"event":"cmd_output","timestamp":1607098332,"output":"er.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:12.994 [info] ppl_id: 2f03e514-d7ee-4233-b0"},{"event":"cmd_output","timestamp":1607098332,"output":"ff-c20a93b26c93, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098333,"output":"ir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.006 [info] PplBlocks WaitingState"},{"event":"cmd_output","timestamp":1607098333,"output":" STM is scheduling block 0 from pipeline: \"2f03e514-d7ee-4233-b0ff-c20a93b26c93\"\n\u001b[0m\u001b[22m\n16:12:1"},{"event":"cmd_output","timestamp":1607098333,"output":"3.007 [info] ppl_id: b16ba897-fd73-4807-8a0c-9906757826c7, type: PplSubInits, state: regular_init, "},{"event":"cmd_output","timestamp":1607098333,"output":"event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \r"},{"event":"cmd_output","timestamp":1607098333,"output":"\n\u001b[0m\u001b[22m\n16:12:13.012 [info] block_id: 10881fd4-2ab1-4908-bb59-aa842189f343, type: BlockRequests"},{"event":"cmd_output","timestamp":1607098333,"output":", event: persisted block run request from ppl 2f03e514-d7ee-4233-b0ff-c20a93b26c93 for block 0, orig"},{"event":"cmd_output","timestamp":1607098333,"output":"in: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098333,"output":"2:13.016 [info] block_id: 10881fd4-2ab1-4908-bb59-aa842189f343, type: Blocks, state: initializing, "},{"event":"cmd_output","timestamp":1607098333,"output":"event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43"},{"event":"cmd_output","timestamp":1607098333,"output":"), \n\u001b[0m\u001b[22m\n16:12:13.020 [info] Block 0 of pipeline with id: 2f03e514-d7ee-4233-b0ff-c20a93b26c"},{"event":"cmd_output","timestamp":1607098333,"output":"93 scheduled in block service with id: : \"10881fd4-2ab1-4908-bb59-aa842189f343\"\n\u001b[0m\u001b[22m\n16:12:13"},{"event":"cmd_output","timestamp":1607098333,"output":".023 [info] ppl_id: 2f03e514-d7ee-4233-b0ff-c20a93b26c93, type: PplBlocks, block_index: 0, state: r"},{"event":"cmd_output","timestamp":1607098333,"output":"unning, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1"},{"event":"cmd_output","timestamp":1607098333,"output":"(L90), \n\u001b[0m\u001b[22m\n16:12:13.029 [info] block_id: 10881fd4-2ab1-4908-bb59-aa842189f343, type: Block"},{"event":"cmd_output","timestamp":1607098333,"output":"Requests, event: persisted build and sub_ppl details for block_request: 10881fd4-2ab1-4908-bb59-aa84"},{"event":"cmd_output","timestamp":1607098333,"output":"2189f343, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098333,"output":"[22m\n16:12:13.032 [info] block_id: 10881fd4-2ab1-4908-bb59-aa842189f343, type: Tasks, state: pendi"},{"event":"cmd_output","timestamp":1607098333,"output":"ng, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_"},{"event":"cmd_output","timestamp":1607098333,"output":"ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:13.035 [info] block_id: 10881fd4-2ab1-4908-bb59-aa842189f343, type:"},{"event":"cmd_output","timestamp":1607098333,"output":" Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.l"},{"event":"cmd_output","timestamp":1607098333,"output":"og_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.061 [info] block_id: 10881fd4-2ab1-4908-bb59-aa842189"},{"event":"cmd_output","timestamp":1607098333,"output":"f343, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper."},{"event":"cmd_output","timestamp":1607098333,"output":"STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.064 [info] ppl_id: b16ba897-fd73-4807-8a0c-"},{"event":"cmd_output","timestamp":1607098333,"output":"9906757826c7, type: PplRequests, event: persisted definition for request with request_token: 02e0e8b"},{"event":"cmd_output","timestamp":1607098333,"output":"2-1e85-4c49-8ea6-6ff958ea2e21, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_defini"},{"event":"cmd_output","timestamp":1607098333,"output":"tion/3(L76), \n\u001b[0m\u001b[22m\n16:12:13.076 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHan"},{"event":"cmd_output","timestamp":1607098333,"output":"dler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:13.076 [info] ppl_id: b16ba897-fd73-4807-"},{"event":"cmd_output","timestamp":1607098333,"output":"8a0c-9906757826c7, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_co"},{"event":"cmd_output","timestamp":1607098333,"output":"unt: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098333,"output":"12:13.083 [info] ppl_id: b16ba897-fd73-4807-8a0c-9906757826c7, type: PplSubInits, state: done, resu"},{"event":"cmd_output","timestamp":1607098333,"output":"lt: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chan"},{"event":"cmd_output","timestamp":1607098333,"output":"ge/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.095 [info] ppl_id: 461da51c-7fb6-4fea-ae26-7badf5d5b2ea, type: Ppl"},{"event":"cmd_output","timestamp":1607098333,"output":"Requests, event: persisted source_args for pipeline: 461da51c-7fb6-4fea-ae26-7badf5d5b2ea, origin: E"},{"event":"cmd_output","timestamp":1607098333,"output":"lixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:13.098 [info"},{"event":"cmd_output","timestamp":1607098333,"output":"] ppl_id: b16ba897-fd73-4807-8a0c-9906757826c7, type: PplBlocks, block_index: 0, state: waiting, ev"},{"event":"cmd_output","timestamp":1607098333,"output":"ent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b"},{"event":"cmd_output","timestamp":1607098333,"output":"[0m\u001b[22m\n16:12:13.102 [info] ppl_id: 461da51c-7fb6-4fea-ae26-7badf5d5b2ea, type: PplSubInits, stat"},{"event":"cmd_output","timestamp":1607098333,"output":"e: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_cha"},{"event":"cmd_output","timestamp":1607098333,"output":"nge/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.103 [info] ppl_id: b16ba897-fd73-4807-8a0c-9906757826c7, type: Pp"},{"event":"cmd_output","timestamp":1607098333,"output":"ls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_st"},{"event":"cmd_output","timestamp":1607098333,"output":"ate_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.114 [info] ppl_id: b16ba897-fd73-4807-8a0c-9906757826c7, t"},{"event":"cmd_output","timestamp":1607098333,"output":"ype: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl"},{"event":"cmd_output","timestamp":1607098333,"output":".log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.139 [info] ppl_id: 461da51c-7fb6-4fea-ae26-7badf5d5"},{"event":"cmd_output","timestamp":1607098333,"output":"b2ea, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098333,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.161 [info] block_id: 10881fd4-2a"},{"event":"cmd_output","timestamp":1607098333,"output":"b1-4908-bb59-aa842189f343, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098333,"output":"in: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.180 [info] block_id: 1088"},{"event":"cmd_output","timestamp":1607098333,"output":"1fd4-2ab1-4908-bb59-aa842189f343, type: Blocks, state: done, event: exit_scheduling, recovery_count:"},{"event":"cmd_output","timestamp":1607098333,"output":" 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.190 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098333,"output":": 461da51c-7fb6-4fea-ae26-7badf5d5b2ea, type: PplRequests, event: persisted definition for request w"},{"event":"cmd_output","timestamp":1607098333,"output":"ith request_token: 38d4f3b1-8f4f-4975-b9b5-045115f903b1, origin: Elixir.Ppl.PplRequests.Model.PplReq"},{"event":"cmd_output","timestamp":1607098333,"output":"uestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:13.196 [info] Queue persisted: {:ok, %Ppl"},{"event":"cmd_output","timestamp":1607098333,"output":".Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 "},{"event":"cmd_output","timestamp":1607098333,"output":"16:12:13.193300], name: \"master-.semaphore/semaphore.yml\", organization_id: \"8fe12f16-a190-48ad-8e9d"},{"event":"cmd_output","timestamp":1607098333,"output":"-eb9f4fccb78a\", project_id: \"456\", queue_id: \"2f112728-80e9-4a97-819a-958448c2fa72\", scope: \"project"},{"event":"cmd_output","timestamp":1607098333,"output":"\", updated_at: ~N[2020-12-04 16:12:13.193310], user_generated: false}}\n\u001b[0m\u001b[22m\n16:12:13.202 [inf"},{"event":"cmd_output","timestamp":1607098333,"output":"o] ppl_id: 2f03e514-d7ee-4233-b0ff-c20a93b26c93, block_id: 10881fd4-2ab1-4908-bb59-aa842189f343, ty"},{"event":"cmd_output","timestamp":1607098333,"output":"pe: PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: "},{"event":"cmd_output","timestamp":1607098333,"output":"0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.207 [info] event: "},{"event":"cmd_output","timestamp":1607098333,"output":"created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098333,"output":":12:13.207 [info] ppl_id: 461da51c-7fb6-4fea-ae26-7badf5d5b2ea, type: PplBlocks, block_index: 0, st"},{"event":"cmd_output","timestamp":1607098333,"output":"ate: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.Regu"},{"event":"cmd_output","timestamp":1607098333,"output":"larInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:13.223 [info] ppl_id: 461da51c-7fb6-4fea-ae26-7bad"},{"event":"cmd_output","timestamp":1607098333,"output":"f5d5b2ea, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098333,"output":" origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.239 [info] ppl_id: f"},{"event":"cmd_output","timestamp":1607098333,"output":"8ae9054-a14f-4255-a24c-efb7c98bb181, type: PplRequests, event: persisted source_args for pipeline: f"},{"event":"cmd_output","timestamp":1607098333,"output":"8ae9054-a14f-4255-a24c-efb7c98bb181, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_"},{"event":"cmd_output","timestamp":1607098333,"output":"source/2(L89), \n\u001b[0m\u001b[22m\n16:12:13.244 [info] ppl_id: 461da51c-7fb6-4fea-ae26-7badf5d5b2ea, type:"},{"event":"cmd_output","timestamp":1607098333,"output":" Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098333,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.246 [info] ppl_id: 461da51c-7fb6-4fea-ae26-7badf5d5b2ea"},{"event":"cmd_output","timestamp":1607098333,"output":", type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098333,"output":": Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.253 [info] ppl_id: f8ae9054"},{"event":"cmd_output","timestamp":1607098333,"output":"-a14f-4255-a24c-efb7c98bb181, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098333,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.257 [info] p"},{"event":"cmd_output","timestamp":1607098333,"output":"pl_id: 2f03e514-d7ee-4233-b0ff-c20a93b26c93, type: Ppls, state: done, result: passed, event: exit_sc"},{"event":"cmd_output","timestamp":1607098333,"output":"heduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098333,"output":":12:13.265 [info] ppl_id: 461da51c-7fb6-4fea-ae26-7badf5d5b2ea, type: Ppls, state: queuing, event: "},{"event":"cmd_output","timestamp":1607098333,"output":"exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098333,"output":"22m\n16:12:13.283 [info] ppl_id: b16ba897-fd73-4807-8a0c-9906757826c7, type: Ppls, state: running, "},{"event":"cmd_output","timestamp":1607098333,"output":"event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \r"},{"event":"cmd_output","timestamp":1607098333,"output":"\n\u001b[0m\u001b[22m\n16:12:13.291 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"b1"},{"event":"cmd_output","timestamp":1607098333,"output":"6ba897-fd73-4807-8a0c-9906757826c7\"\n\u001b[0m\u001b[22m\n16:12:13.300 [info] block_id: edf337f2-40b7-4699-b2"},{"event":"cmd_output","timestamp":1607098333,"output":"70-64d00d1e7ac6, type: BlockRequests, event: persisted block run request from ppl b16ba897-fd73-4807"},{"event":"cmd_output","timestamp":1607098333,"output":"-8a0c-9906757826c7 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.proces"},{"event":"cmd_output","timestamp":1607098333,"output":"s_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:13.304 [info] block_id: edf337f2-40b7-4699-b270-64d00d1e7ac6,"},{"event":"cmd_output","timestamp":1607098333,"output":" type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blo"},{"event":"cmd_output","timestamp":1607098333,"output":"cks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:13.308 [info] ppl_id: f8ae9054-a14f-4255-"},{"event":"cmd_output","timestamp":1607098333,"output":"a24c-efb7c98bb181, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0"},{"event":"cmd_output","timestamp":1607098333,"output":", origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.310 [info] Block 0 "},{"event":"cmd_output","timestamp":1607098333,"output":"of pipeline with id: b16ba897-fd73-4807-8a0c-9906757826c7 scheduled in block service with id: : \"edf"},{"event":"cmd_output","timestamp":1607098333,"output":"337f2-40b7-4699-b270-64d00d1e7ac6\"\n\u001b[0m\u001b[22m\n16:12:13.318 [info] ppl_id: b16ba897-fd73-4807-8a0c-"},{"event":"cmd_output","timestamp":1607098333,"output":"9906757826c7, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_coun"},{"event":"cmd_output","timestamp":1607098333,"output":"t: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.324 [info] bloc"},{"event":"cmd_output","timestamp":1607098333,"output":"k_id: edf337f2-40b7-4699-b270-64d00d1e7ac6, type: BlockRequests, event: persisted build and sub_ppl "},{"event":"cmd_output","timestamp":1607098333,"output":"details for block_request: edf337f2-40b7-4699-b270-64d00d1e7ac6, origin: Elixir.Block.BlockRequests."},{"event":"cmd_output","timestamp":1607098333,"output":"Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:13.324 [info] ppl_id: 461da51c-7"},{"event":"cmd_output","timestamp":1607098333,"output":"fb6-4fea-ae26-7badf5d5b2ea, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098333,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.330 [info] PplBlocks W"},{"event":"cmd_output","timestamp":1607098333,"output":"aitingState STM is scheduling block 0 from pipeline: \"461da51c-7fb6-4fea-ae26-7badf5d5b2ea\"\n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098333,"output":"2m\n16:12:13.333 [info] block_id: edf337f2-40b7-4699-b270-64d00d1e7ac6, type: Tasks, state: pending"},{"event":"cmd_output","timestamp":1607098333,"output":", event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok"},{"event":"cmd_output","timestamp":1607098333,"output":"?/1(L167), \n\u001b[0m\u001b[22m\n16:12:13.337 [info] block_id: edf337f2-40b7-4699-b270-64d00d1e7ac6, type: B"},{"event":"cmd_output","timestamp":1607098333,"output":"locks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098333,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.346 [info] block_id: 6c3aef22-3a29-4262-9e1a-4d3e18c14c"},{"event":"cmd_output","timestamp":1607098333,"output":"14, type: BlockRequests, event: persisted block run request from ppl 461da51c-7fb6-4fea-ae26-7badf5d"},{"event":"cmd_output","timestamp":1607098333,"output":"5b2ea for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4("},{"event":"cmd_output","timestamp":1607098333,"output":"L35), \n\u001b[0m\u001b[22m\n16:12:13.349 [info] block_id: 6c3aef22-3a29-4262-9e1a-4d3e18c14c14, type: Blocks"},{"event":"cmd_output","timestamp":1607098333,"output":", state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.Blo"},{"event":"cmd_output","timestamp":1607098333,"output":"cksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:13.353 [info] Block 0 of pipeline with id: 461da51c-7f"},{"event":"cmd_output","timestamp":1607098333,"output":"b6-4fea-ae26-7badf5d5b2ea scheduled in block service with id: : \"6c3aef22-3a29-4262-9e1a-4d3e18c14c1"},{"event":"cmd_output","timestamp":1607098333,"output":"4\"\n\u001b[0m\u001b[22m\n16:12:13.361 [info] block_id: edf337f2-40b7-4699-b270-64d00d1e7ac6, type: Tasks, sta"},{"event":"cmd_output","timestamp":1607098333,"output":"te: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_cha"},{"event":"cmd_output","timestamp":1607098333,"output":"nge/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.363 [info] ppl_id: 461da51c-7fb6-4fea-ae26-7badf5d5b2ea, type: Pp"},{"event":"cmd_output","timestamp":1607098333,"output":"lBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098333,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.366 [info] block_id: 6c3aef22-3a29-42"},{"event":"cmd_output","timestamp":1607098333,"output":"62-9e1a-4d3e18c14c14, type: BlockRequests, event: persisted build and sub_ppl details for block_requ"},{"event":"cmd_output","timestamp":1607098333,"output":"est: 6c3aef22-3a29-4262-9e1a-4d3e18c14c14, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQue"},{"event":"cmd_output","timestamp":1607098333,"output":"ries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:13.370 [info] block_id: 6c3aef22-3a29-4262-9e1a-4d3e18"},{"event":"cmd_output","timestamp":1607098333,"output":"c14c14, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks."},{"event":"cmd_output","timestamp":1607098333,"output":"STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:13.375 [info] block_id: 6c3aef22-3"},{"event":"cmd_output","timestamp":1607098333,"output":"a29-4262-9e1a-4d3e18c14c14, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098333,"output":" origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.385 [info] ppl_id: c"},{"event":"cmd_output","timestamp":1607098333,"output":"9bc04fa-7912-45ba-b2c7-7b05e0ba04c4, type: PplRequests, event: persisted source_args for pipeline: c"},{"event":"cmd_output","timestamp":1607098333,"output":"9bc04fa-7912-45ba-b2c7-7b05e0ba04c4, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_"},{"event":"cmd_output","timestamp":1607098333,"output":"source/2(L89), \n\u001b[0m\u001b[22m\n16:12:13.386 [info] block_id: edf337f2-40b7-4699-b270-64d00d1e7ac6, typ"},{"event":"cmd_output","timestamp":1607098333,"output":"e: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098333,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.395 [info] ppl_id: f8ae9054-a14f-4255-a24c-efb7c98bb181"},{"event":"cmd_output","timestamp":1607098333,"output":", type: PplRequests, event: persisted definition for request with request_token: 1d505c6c-0295-40e6-"},{"event":"cmd_output","timestamp":1607098333,"output":"a07a-2b6c3f9f1289, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76),"},{"event":"cmd_output","timestamp":1607098333,"output":" \n\u001b[0m\u001b[22m\n16:12:13.397 [info] ppl_id: c9bc04fa-7912-45ba-b2c7-7b05e0ba04c4, type: PplSubInits, "},{"event":"cmd_output","timestamp":1607098333,"output":"state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state"},{"event":"cmd_output","timestamp":1607098333,"output":"_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.404 [info] block_id: edf337f2-40b7-4699-b270-64d00d1e7ac6, ty"},{"event":"cmd_output","timestamp":1607098333,"output":"pe: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.l"},{"event":"cmd_output","timestamp":1607098333,"output":"og_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.404 [info] block_id: 6c3aef22-3a29-4262-9e1a-4d3e18c1"},{"event":"cmd_output","timestamp":1607098333,"output":"4c14, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper."},{"event":"cmd_output","timestamp":1607098333,"output":"STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.415 [info] event: created, origin: Elixir.P"},{"event":"cmd_output","timestamp":1607098333,"output":"pl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:13.415 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098333,"output":": f8ae9054-a14f-4255-a24c-efb7c98bb181, type: PplBlocks, block_index: 0, state: initializing, event:"},{"event":"cmd_output","timestamp":1607098333,"output":" created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L1"},{"event":"cmd_output","timestamp":1607098333,"output":"05), \n\u001b[0m\u001b[22m\n16:12:13.420 [info] ppl_id: f8ae9054-a14f-4255-a24c-efb7c98bb181, type: PplSubIni"},{"event":"cmd_output","timestamp":1607098333,"output":"ts, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.ST"},{"event":"cmd_output","timestamp":1607098333,"output":"M.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.426 [info] ppl_id: b16ba897-fd73-4807-8a0c-99"},{"event":"cmd_output","timestamp":1607098333,"output":"06757826c7, block_id: edf337f2-40b7-4699-b270-64d00d1e7ac6, type: PplBlocks, block_index: 0, state: "},{"event":"cmd_output","timestamp":1607098333,"output":"done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_"},{"event":"cmd_output","timestamp":1607098333,"output":"state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.438 [info] ppl_id: f8ae9054-a14f-4255-a24c-efb7c98bb181,"},{"event":"cmd_output","timestamp":1607098333,"output":" type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098333,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.443 [info] ppl_id: c9bc04fa-"},{"event":"cmd_output","timestamp":1607098333,"output":"7912-45ba-b2c7-7b05e0ba04c4, type: PplSubInits, state: regular_init, event: exit_scheduling, recover"},{"event":"cmd_output","timestamp":1607098333,"output":"y_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.450 [info]"},{"event":"cmd_output","timestamp":1607098333,"output":" ppl_id: f8ae9054-a14f-4255-a24c-efb7c98bb181, type: Ppls, state: pending, event: exit_scheduling, "},{"event":"cmd_output","timestamp":1607098333,"output":"recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.456"},{"event":"cmd_output","timestamp":1607098333,"output":" [info] ppl_id: b16ba897-fd73-4807-8a0c-9906757826c7, type: Ppls, state: done, result: passed, even"},{"event":"cmd_output","timestamp":1607098333,"output":"t: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098333,"output":"m\u001b[22m\n16:12:13.467 [info] ppl_id: f8ae9054-a14f-4255-a24c-efb7c98bb181, type: Ppls, state: queuin"},{"event":"cmd_output","timestamp":1607098333,"output":"g, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90)"},{"event":"cmd_output","timestamp":1607098333,"output":", \n\u001b[0m\u001b[22m\n16:12:13.486 [info] ppl_id: c9bc04fa-7912-45ba-b2c7-7b05e0ba04c4, type: PplRequests,"},{"event":"cmd_output","timestamp":1607098333,"output":" event: persisted definition for request with request_token: e1a0ad25-aec5-4d18-8dc6-d89000ade24d, o"},{"event":"cmd_output","timestamp":1607098333,"output":"rigin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:"},{"event":"cmd_output","timestamp":1607098333,"output":"13.492 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:load"},{"event":"cmd_output","timestamp":1607098333,"output":"ed, \"queues\">, inserted_at: ~N[2020-12-04 16:12:13.488601], name: \"dev-.semaphore/semaphore.yml\", or"},{"event":"cmd_output","timestamp":1607098333,"output":"ganization_id: \"c7d7263a-1b0b-48a0-97e6-57ad6c42c297\", project_id: \"123\", queue_id: \"2cf6bcbd-821a-4"},{"event":"cmd_output","timestamp":1607098333,"output":"922-8986-1addf94e2140\", scope: \"project\", updated_at: ~N[2020-12-04 16:12:13.488614], user_generated"},{"event":"cmd_output","timestamp":1607098333,"output":": false}}\n\u001b[0m\u001b[22m\n16:12:13.498 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler"},{"event":"cmd_output","timestamp":1607098333,"output":".RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:13.498 [info] ppl_id: c9bc04fa-7912-45ba-b2c7"},{"event":"cmd_output","timestamp":1607098333,"output":"-7b05e0ba04c4, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count:"},{"event":"cmd_output","timestamp":1607098333,"output":" 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:1"},{"event":"cmd_output","timestamp":1607098333,"output":"3.503 [info] ppl_id: c9bc04fa-7912-45ba-b2c7-7b05e0ba04c4, type: PplSubInits, state: done, result: "},{"event":"cmd_output","timestamp":1607098333,"output":"passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1"},{"event":"cmd_output","timestamp":1607098333,"output":"(L90), \n\u001b[0m\u001b[22m\n16:12:13.508 [info] block_id: 6c3aef22-3a29-4262-9e1a-4d3e18c14c14, type: Tasks"},{"event":"cmd_output","timestamp":1607098333,"output":", state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098333,"output":"hange/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.519 [info] ppl_id: c9bc04fa-7912-45ba-b2c7-7b05e0ba04c4, type: "},{"event":"cmd_output","timestamp":1607098333,"output":"PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098333,"output":".Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.521 [info] ppl_id: bde73561-8a20-43"},{"event":"cmd_output","timestamp":1607098333,"output":"d2-9b3c-42fab53b730c, type: PplRequests, event: persisted source_args for pipeline: bde73561-8a20-43"},{"event":"cmd_output","timestamp":1607098333,"output":"d2-9b3c-42fab53b730c, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), "},{"event":"cmd_output","timestamp":1607098333,"output":"\n\u001b[0m\u001b[22m\n16:12:13.526 [info] ppl_id: c9bc04fa-7912-45ba-b2c7-7b05e0ba04c4, type: Ppls, state: p"},{"event":"cmd_output","timestamp":1607098333,"output":"ending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1"},{"event":"cmd_output","timestamp":1607098333,"output":"(L90), \n\u001b[0m\u001b[22m\n16:12:13.527 [info] block_id: 6c3aef22-3a29-4262-9e1a-4d3e18c14c14, type: Block"},{"event":"cmd_output","timestamp":1607098333,"output":"s, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_"},{"event":"cmd_output","timestamp":1607098333,"output":"change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.531 [info] ppl_id: bde73561-8a20-43d2-9b3c-42fab53b730c, type:"},{"event":"cmd_output","timestamp":1607098333,"output":" PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM."},{"event":"cmd_output","timestamp":1607098333,"output":"Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.547 [info] ppl_id: 461da51c-7fb6-4fea-ae26-7bad"},{"event":"cmd_output","timestamp":1607098333,"output":"f5d5b2ea, block_id: 6c3aef22-3a29-4262-9e1a-4d3e18c14c14, type: PplBlocks, block_index: 0, state: do"},{"event":"cmd_output","timestamp":1607098333,"output":"ne, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_st"},{"event":"cmd_output","timestamp":1607098333,"output":"ate_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.547 [info] ppl_id: c9bc04fa-7912-45ba-b2c7-7b05e0ba04c4, t"},{"event":"cmd_output","timestamp":1607098333,"output":"ype: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl"},{"event":"cmd_output","timestamp":1607098333,"output":".log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.577 [info] ppl_id: c9bc04fa-7912-45ba-b2c7-7b05e0ba"},{"event":"cmd_output","timestamp":1607098333,"output":"04c4, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.S"},{"event":"cmd_output","timestamp":1607098333,"output":"TM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.579 [info] ppl_id: 461da51c-7fb6-4fea-ae26-7"},{"event":"cmd_output","timestamp":1607098333,"output":"badf5d5b2ea, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098333,"output":"gin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.593 [info] ppl_id: bde73"},{"event":"cmd_output","timestamp":1607098333,"output":"561-8a20-43d2-9b3c-42fab53b730c, type: PplSubInits, state: regular_init, event: exit_scheduling, rec"},{"event":"cmd_output","timestamp":1607098333,"output":"overy_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.595 [i"},{"event":"cmd_output","timestamp":1607098333,"output":"nfo] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"c9bc04fa-7912-45ba-b2c7-7b05e"},{"event":"cmd_output","timestamp":1607098333,"output":"0ba04c4\"\n\u001b[0m\u001b[22m\n16:12:13.605 [info] block_id: 794c223d-e8ca-4b1d-b1b7-a7b0529c50fe, type: Bloc"},{"event":"cmd_output","timestamp":1607098333,"output":"kRequests, event: persisted block run request from ppl c9bc04fa-7912-45ba-b2c7-7b05e0ba04c4 for bloc"},{"event":"cmd_output","timestamp":1607098333,"output":"k 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098333,"output":"22m\n16:12:13.608 [info] block_id: 794c223d-e8ca-4b1d-b1b7-a7b0529c50fe, type: Blocks, state: initi"},{"event":"cmd_output","timestamp":1607098333,"output":"alizing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.ins"},{"event":"cmd_output","timestamp":1607098333,"output":"ert/1(L43), \n\u001b[0m\u001b[22m\n16:12:13.612 [info] Block 0 of pipeline with id: c9bc04fa-7912-45ba-b2c7-7"},{"event":"cmd_output","timestamp":1607098333,"output":"b05e0ba04c4 scheduled in block service with id: : \"794c223d-e8ca-4b1d-b1b7-a7b0529c50fe\"\n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098333,"output":"\n16:12:13.617 [info] block_id: 794c223d-e8ca-4b1d-b1b7-a7b0529c50fe, type: BlockRequests, event: pe"},{"event":"cmd_output","timestamp":1607098333,"output":"rsisted build and sub_ppl details for block_request: 794c223d-e8ca-4b1d-b1b7-a7b0529c50fe, origin: E"},{"event":"cmd_output","timestamp":1607098333,"output":"lixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:13.621 "},{"event":"cmd_output","timestamp":1607098333,"output":"[info] block_id: 794c223d-e8ca-4b1d-b1b7-a7b0529c50fe, type: Tasks, state: pending, event: created,"},{"event":"cmd_output","timestamp":1607098333,"output":" recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098333,"output":"\u001b[22m\n16:12:13.621 [info] ppl_id: c9bc04fa-7912-45ba-b2c7-7b05e0ba04c4, type: PplBlocks, block_ind"},{"event":"cmd_output","timestamp":1607098333,"output":"ex: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098333,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.625 [info] block_id: 794c223d-e8ca-4b1d-b1b7-a7b0529c50"},{"event":"cmd_output","timestamp":1607098333,"output":"fe, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.S"},{"event":"cmd_output","timestamp":1607098333,"output":"TM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.649 [info] block_id: 794c223d-e8ca-4b1d-b1b7"},{"event":"cmd_output","timestamp":1607098333,"output":"-a7b0529c50fe, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098333,"output":"r.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.649 [info] ppl_id: ae0f1d96-3bea-4"},{"event":"cmd_output","timestamp":1607098333,"output":"3dd-8078-d7f07c07c257, type: PplRequests, event: persisted source_args for pipeline: ae0f1d96-3bea-4"},{"event":"cmd_output","timestamp":1607098333,"output":"3dd-8078-d7f07c07c257, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89),"},{"event":"cmd_output","timestamp":1607098333,"output":" \n\u001b[0m\u001b[22m\n16:12:13.655 [info] ppl_id: bde73561-8a20-43d2-9b3c-42fab53b730c, type: PplRequests, "},{"event":"cmd_output","timestamp":1607098333,"output":"event: persisted definition for request with request_token: 95972b5a-fd63-4c16-92fe-464858020587, or"},{"event":"cmd_output","timestamp":1607098333,"output":"igin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:1"},{"event":"cmd_output","timestamp":1607098333,"output":"3.661 [info] ppl_id: ae0f1d96-3bea-43dd-8078-d7f07c07c257, type: PplSubInits, state: fetching, even"},{"event":"cmd_output","timestamp":1607098333,"output":"t: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098333,"output":"m\u001b[22m\n16:12:13.663 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitSt"},{"event":"cmd_output","timestamp":1607098333,"output":"ate.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:13.663 [info] ppl_id: bde73561-8a20-43d2-9b3c-42fab53b730c,"},{"event":"cmd_output","timestamp":1607098333,"output":" type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098333,"output":"ixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:13.668 [info] "},{"event":"cmd_output","timestamp":1607098333,"output":"ppl_id: f8ae9054-a14f-4255-a24c-efb7c98bb181, type: Ppls, state: running, event: exit_scheduling, re"},{"event":"cmd_output","timestamp":1607098333,"output":"covery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.668 ["},{"event":"cmd_output","timestamp":1607098333,"output":"info] ppl_id: bde73561-8a20-43d2-9b3c-42fab53b730c, type: PplSubInits, state: done, result: passed,"},{"event":"cmd_output","timestamp":1607098333,"output":" event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), "},{"event":"cmd_output","timestamp":1607098333,"output":"\n\u001b[0m\u001b[22m\n16:12:13.676 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"f"},{"event":"cmd_output","timestamp":1607098333,"output":"8ae9054-a14f-4255-a24c-efb7c98bb181\"\n\u001b[0m\u001b[22m\n16:12:13.684 [info] ppl_id: bde73561-8a20-43d2-9b3"},{"event":"cmd_output","timestamp":1607098333,"output":"c-42fab53b730c, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098333,"output":"r.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.689 [info] block_id: bd2f8586-558c"},{"event":"cmd_output","timestamp":1607098333,"output":"-427d-8af2-71ea0a1f3956, type: BlockRequests, event: persisted block run request from ppl f8ae9054-a"},{"event":"cmd_output","timestamp":1607098333,"output":"14f-4255-a24c-efb7c98bb181 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQuerie"},{"event":"cmd_output","timestamp":1607098333,"output":"s.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:13.694 [info] ppl_id: bde73561-8a20-43d2-9b3c-42fab53"},{"event":"cmd_output","timestamp":1607098333,"output":"b730c, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098333,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.699 [info] block_id: b"},{"event":"cmd_output","timestamp":1607098333,"output":"d2f8586-558c-427d-8af2-71ea0a1f3956, type: Blocks, state: initializing, event: initializing, recover"},{"event":"cmd_output","timestamp":1607098333,"output":"y_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:13.700"},{"event":"cmd_output","timestamp":1607098333,"output":" [info] ppl_id: bde73561-8a20-43d2-9b3c-42fab53b730c, type: Ppls, state: queuing, event: exit_sched"},{"event":"cmd_output","timestamp":1607098333,"output":"uling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12"},{"event":"cmd_output","timestamp":1607098333,"output":":13.708 [info] Block 0 of pipeline with id: f8ae9054-a14f-4255-a24c-efb7c98bb181 scheduled in block"},{"event":"cmd_output","timestamp":1607098333,"output":" service with id: : \"bd2f8586-558c-427d-8af2-71ea0a1f3956\"\n\u001b[0m\u001b[22m\n16:12:13.712 [info] block_id"},{"event":"cmd_output","timestamp":1607098333,"output":": bd2f8586-558c-427d-8af2-71ea0a1f3956, type: BlockRequests, event: persisted build and sub_ppl deta"},{"event":"cmd_output","timestamp":1607098333,"output":"ils for block_request: bd2f8586-558c-427d-8af2-71ea0a1f3956, origin: Elixir.Block.BlockRequests.Mode"},{"event":"cmd_output","timestamp":1607098333,"output":"l.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:13.717 [info] ppl_id: f8ae9054-a14f-"},{"event":"cmd_output","timestamp":1607098333,"output":"4255-a24c-efb7c98bb181, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, rec"},{"event":"cmd_output","timestamp":1607098333,"output":"overy_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.724 [i"},{"event":"cmd_output","timestamp":1607098333,"output":"nfo] ppl_id: ae0f1d96-3bea-43dd-8078-d7f07c07c257, type: PplSubInits, state: regular_init, event: e"},{"event":"cmd_output","timestamp":1607098333,"output":"xit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098333,"output":"2m\n16:12:13.726 [info] block_id: bd2f8586-558c-427d-8af2-71ea0a1f3956, type: Tasks, state: pending"},{"event":"cmd_output","timestamp":1607098333,"output":", event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok"},{"event":"cmd_output","timestamp":1607098333,"output":"?/1(L167), \n\u001b[0m\u001b[22m\n16:12:13.734 [info] block_id: bd2f8586-558c-427d-8af2-71ea0a1f3956, type: B"},{"event":"cmd_output","timestamp":1607098333,"output":"locks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098333,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.757 [info] block_id: bd2f8586-558c-427d-8af2-71ea0a1f39"},{"event":"cmd_output","timestamp":1607098333,"output":"56, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.ST"},{"event":"cmd_output","timestamp":1607098333,"output":"M.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.764 [info] block_id: 794c223d-e8ca-4b1d-b1b7-"},{"event":"cmd_output","timestamp":1607098333,"output":"a7b0529c50fe, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Lo"},{"event":"cmd_output","timestamp":1607098333,"output":"oper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.778 [info] block_id: 794c223d-e8ca-4b1"},{"event":"cmd_output","timestamp":1607098333,"output":"d-b1b7-a7b0529c50fe, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: E"},{"event":"cmd_output","timestamp":1607098333,"output":"lixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.781 [info] ppl_id: e06554e5-e9"},{"event":"cmd_output","timestamp":1607098333,"output":"d5-4e22-b778-efe0bdcf2091, type: PplRequests, event: persisted source_args for pipeline: e06554e5-e9"},{"event":"cmd_output","timestamp":1607098333,"output":"d5-4e22-b778-efe0bdcf2091, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L"},{"event":"cmd_output","timestamp":1607098333,"output":"89), \n\u001b[0m\u001b[22m\n16:12:13.790 [info] ppl_id: e06554e5-e9d5-4e22-b778-efe0bdcf2091, type: PplSubIni"},{"event":"cmd_output","timestamp":1607098333,"output":"ts, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_s"},{"event":"cmd_output","timestamp":1607098333,"output":"tate_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.797 [info] ppl_id: c9bc04fa-7912-45ba-b2c7-7b05e0ba04c4, "},{"event":"cmd_output","timestamp":1607098333,"output":"block_id: 794c223d-e8ca-4b1d-b1b7-a7b0529c50fe, type: PplBlocks, block_index: 0, state: done, result"},{"event":"cmd_output","timestamp":1607098333,"output":": passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change"},{"event":"cmd_output","timestamp":1607098333,"output":"/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.799 [info] ppl_id: ae0f1d96-3bea-43dd-8078-d7f07c07c257, type: PplRe"},{"event":"cmd_output","timestamp":1607098333,"output":"quests, event: persisted definition for request with request_token: 69d07a9c-a8aa-4c5f-b76e-26146f44"},{"event":"cmd_output","timestamp":1607098333,"output":"3496, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098333,"output":"\n16:12:13.815 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadat"},{"event":"cmd_output","timestamp":1607098333,"output":"a<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:12:13.808959], name: \"dev-.semaphore/semaphore.y"},{"event":"cmd_output","timestamp":1607098333,"output":"ml\", organization_id: \"798f9659-86a3-48fa-bd7a-a84fc9515b69\", project_id: \"456\", queue_id: \"75a2ff91"},{"event":"cmd_output","timestamp":1607098333,"output":"-a546-4ee5-be3d-114c22d0476a\", scope: \"project\", updated_at: ~N[2020-12-04 16:12:13.808968], user_ge"},{"event":"cmd_output","timestamp":1607098333,"output":"nerated: false}}\n\u001b[0m\u001b[22m\n16:12:13.826 [info] event: created, origin: Elixir.Ppl.PplSubInits.STM"},{"event":"cmd_output","timestamp":1607098333,"output":"Handler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:13.826 [info] ppl_id: ae0f1d96-3bea-43"},{"event":"cmd_output","timestamp":1607098333,"output":"dd-8078-d7f07c07c257, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery"},{"event":"cmd_output","timestamp":1607098333,"output":"_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098333,"output":"16:12:13.828 [info] ppl_id: ae0f1d96-3bea-43dd-8078-d7f07c07c257, type: PplSubInits, state: done, r"},{"event":"cmd_output","timestamp":1607098333,"output":"esult: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098333,"output":"hange/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.838 [info] ppl_id: c9bc04fa-7912-45ba-b2c7-7b05e0ba04c4, type: "},{"event":"cmd_output","timestamp":1607098333,"output":"Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper."},{"event":"cmd_output","timestamp":1607098333,"output":"STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.845 [info] ppl_id: ae0f1d96-3bea-43dd-8078-"},{"event":"cmd_output","timestamp":1607098333,"output":"d7f07c07c257, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_coun"},{"event":"cmd_output","timestamp":1607098333,"output":"t: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.846 [info] ppl_"},{"event":"cmd_output","timestamp":1607098333,"output":"id: ae0f1d96-3bea-43dd-8078-d7f07c07c257, type: Ppls, state: pending, event: exit_scheduling, recove"},{"event":"cmd_output","timestamp":1607098333,"output":"ry_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.848 [info"},{"event":"cmd_output","timestamp":1607098333,"output":"] ppl_id: e06554e5-e9d5-4e22-b778-efe0bdcf2091, type: PplSubInits, state: regular_init, event: exit"},{"event":"cmd_output","timestamp":1607098333,"output":"_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098333,"output":"\n16:12:13.861 [info] ppl_id: ae0f1d96-3bea-43dd-8078-d7f07c07c257, type: Ppls, state: queuing, even"},{"event":"cmd_output","timestamp":1607098333,"output":"t: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098333,"output":"m\u001b[22m\n16:12:13.878 [info] ppl_id: bde73561-8a20-43d2-9b3c-42fab53b730c, type: Ppls, state: runnin"},{"event":"cmd_output","timestamp":1607098333,"output":"g, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90)"},{"event":"cmd_output","timestamp":1607098333,"output":", \n\u001b[0m\u001b[22m\n16:12:13.892 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: "},{"event":"cmd_output","timestamp":1607098333,"output":"\"bde73561-8a20-43d2-9b3c-42fab53b730c\"\n\u001b[0m\u001b[22m\n16:12:13.896 [info] block_id: bd2f8586-558c-427d"},{"event":"cmd_output","timestamp":1607098333,"output":"-8af2-71ea0a1f3956, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098333,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.898 [info] ppl_id: e06554e5-e9d5"},{"event":"cmd_output","timestamp":1607098333,"output":"-4e22-b778-efe0bdcf2091, type: PplRequests, event: persisted definition for request with request_tok"},{"event":"cmd_output","timestamp":1607098333,"output":"en: 60da5ef1-f9e0-4b53-a8ba-d85a47ed50c0, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.in"},{"event":"cmd_output","timestamp":1607098333,"output":"sert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:13.906 [info] block_id: bd2f8586-558c-427d-8af2-71ea0a1f"},{"event":"cmd_output","timestamp":1607098333,"output":"3956, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.ST"},{"event":"cmd_output","timestamp":1607098333,"output":"M.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.906 [info] block_id: 34679ca7-4957-460b-bc51-"},{"event":"cmd_output","timestamp":1607098333,"output":"95b022fa74f8, type: BlockRequests, event: persisted block run request from ppl bde73561-8a20-43d2-9b"},{"event":"cmd_output","timestamp":1607098333,"output":"3c-42fab53b730c for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_r"},{"event":"cmd_output","timestamp":1607098333,"output":"esponse/4(L35), \n\u001b[0m\u001b[22m\n16:12:13.913 [info] block_id: 34679ca7-4957-460b-bc51-95b022fa74f8, ty"},{"event":"cmd_output","timestamp":1607098333,"output":"pe: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks"},{"event":"cmd_output","timestamp":1607098333,"output":".Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:13.915 [info] ppl_id: ae0f1d96-3bea-43dd-807"},{"event":"cmd_output","timestamp":1607098333,"output":"8-d7f07c07c257, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098333,"output":"r.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.917 [info] Block 0 of pipeline wit"},{"event":"cmd_output","timestamp":1607098333,"output":"h id: bde73561-8a20-43d2-9b3c-42fab53b730c scheduled in block service with id: : \"34679ca7-4957-460b"},{"event":"cmd_output","timestamp":1607098333,"output":"-bc51-95b022fa74f8\"\n\u001b[0m\u001b[22m\n16:12:13.919 [info] event: created, origin: Elixir.Ppl.PplSubInits."},{"event":"cmd_output","timestamp":1607098333,"output":"STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:13.919 [info] ppl_id: e06554e5-e9d5"},{"event":"cmd_output","timestamp":1607098333,"output":"-4e22-b778-efe0bdcf2091, type: PplBlocks, block_index: 0, state: initializing, event: created, recov"},{"event":"cmd_output","timestamp":1607098333,"output":"ery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098333,"output":"m\n16:12:13.924 [info] ppl_id: e06554e5-e9d5-4e22-b778-efe0bdcf2091, type: PplSubInits, state: done"},{"event":"cmd_output","timestamp":1607098333,"output":", result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_stat"},{"event":"cmd_output","timestamp":1607098333,"output":"e_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.927 [info] ppl_id: bde73561-8a20-43d2-9b3c-42fab53b730c, typ"},{"event":"cmd_output","timestamp":1607098333,"output":"e: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098333,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.930 [info] ppl_id: f8ae9054-a14f"},{"event":"cmd_output","timestamp":1607098333,"output":"-4255-a24c-efb7c98bb181, block_id: bd2f8586-558c-427d-8af2-71ea0a1f3956, type: PplBlocks, block_inde"},{"event":"cmd_output","timestamp":1607098333,"output":"x: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper."},{"event":"cmd_output","timestamp":1607098333,"output":"STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.935 [info] block_id: 34679ca7-4957-460b-bc5"},{"event":"cmd_output","timestamp":1607098333,"output":"1-95b022fa74f8, type: BlockRequests, event: persisted build and sub_ppl details for block_request: 3"},{"event":"cmd_output","timestamp":1607098333,"output":"4679ca7-4957-460b-bc51-95b022fa74f8, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.i"},{"event":"cmd_output","timestamp":1607098333,"output":"nsert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:13.935 [info] PplBlocks WaitingState STM is scheduling block"},{"event":"cmd_output","timestamp":1607098333,"output":" 0 from pipeline: \"ae0f1d96-3bea-43dd-8078-d7f07c07c257\"\n\u001b[0m\u001b[22m\n16:12:13.941 [info] block_id: "},{"event":"cmd_output","timestamp":1607098333,"output":"34679ca7-4957-460b-bc51-95b022fa74f8, type: Tasks, state: pending, event: created, recovery_count: 0"},{"event":"cmd_output","timestamp":1607098333,"output":", origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:13.94"},{"event":"cmd_output","timestamp":1607098333,"output":"6 [info] block_id: 34679ca7-4957-460b-bc51-95b022fa74f8, type: Blocks, state: running, event: exit_"},{"event":"cmd_output","timestamp":1607098333,"output":"scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098333,"output":"16:12:13.950 [info] ppl_id: e06554e5-e9d5-4e22-b778-efe0bdcf2091, type: PplBlocks, block_index: 0, "},{"event":"cmd_output","timestamp":1607098333,"output":"state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_"},{"event":"cmd_output","timestamp":1607098333,"output":"change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.954 [info] block_id: 7518e9ad-e6b0-4f9c-bcb0-608f4c5a5804, typ"},{"event":"cmd_output","timestamp":1607098333,"output":"e: BlockRequests, event: persisted block run request from ppl ae0f1d96-3bea-43dd-8078-d7f07c07c257 f"},{"event":"cmd_output","timestamp":1607098333,"output":"or block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \r"},{"event":"cmd_output","timestamp":1607098333,"output":"\n\u001b[0m\u001b[22m\n16:12:13.960 [info] block_id: 7518e9ad-e6b0-4f9c-bcb0-608f4c5a5804, type: Blocks, state"},{"event":"cmd_output","timestamp":1607098333,"output":": initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQuer"},{"event":"cmd_output","timestamp":1607098333,"output":"ies.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:13.964 [info] Block 0 of pipeline with id: ae0f1d96-3bea-43dd"},{"event":"cmd_output","timestamp":1607098333,"output":"-8078-d7f07c07c257 scheduled in block service with id: : \"7518e9ad-e6b0-4f9c-bcb0-608f4c5a5804\"\n\u001b[0"},{"event":"cmd_output","timestamp":1607098333,"output":"m\u001b[22m\n16:12:13.964 [info] ppl_id: e06554e5-e9d5-4e22-b778-efe0bdcf2091, type: Ppls, state: pendin"},{"event":"cmd_output","timestamp":1607098333,"output":"g, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90)"},{"event":"cmd_output","timestamp":1607098333,"output":", \n\u001b[0m\u001b[22m\n16:12:13.964 [info] ppl_id: f8ae9054-a14f-4255-a24c-efb7c98bb181, type: Ppls, state:"},{"event":"cmd_output","timestamp":1607098333,"output":" done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098333,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.968 [info] ppl_id: ae0f1d96-3bea-43dd-8078-d7f07c07c257"},{"event":"cmd_output","timestamp":1607098333,"output":", type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098333,"output":": Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.977 [info] block_id: 7518e9"},{"event":"cmd_output","timestamp":1607098333,"output":"ad-e6b0-4f9c-bcb0-608f4c5a5804, type: BlockRequests, event: persisted build and sub_ppl details for "},{"event":"cmd_output","timestamp":1607098333,"output":"block_request: 7518e9ad-e6b0-4f9c-bcb0-608f4c5a5804, origin: Elixir.Block.BlockRequests.Model.BlockR"},{"event":"cmd_output","timestamp":1607098333,"output":"equestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:13.983 [info] block_id: 34679ca7-4957-460b-b"},{"event":"cmd_output","timestamp":1607098333,"output":"c51-95b022fa74f8, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098333,"output":"ixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.986 [info] block_id: 7518e9ad-e"},{"event":"cmd_output","timestamp":1607098333,"output":"6b0-4f9c-bcb0-608f4c5a5804, type: Tasks, state: pending, event: created, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098333,"output":"Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:13.989 [info] "},{"event":"cmd_output","timestamp":1607098333,"output":"block_id: 7518e9ad-e6b0-4f9c-bcb0-608f4c5a5804, type: Blocks, state: running, event: exit_scheduling"},{"event":"cmd_output","timestamp":1607098333,"output":", recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.9"},{"event":"cmd_output","timestamp":1607098333,"output":"92 [info] ppl_id: e06554e5-e9d5-4e22-b778-efe0bdcf2091, type: Ppls, state: queuing, event: exit_sch"},{"event":"cmd_output","timestamp":1607098334,"output":"eduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098334,"output":"12:14.014 [info] block_id: 7518e9ad-e6b0-4f9c-bcb0-608f4c5a5804, type: Tasks, state: running, event"},{"event":"cmd_output","timestamp":1607098334,"output":": exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098334,"output":"\u001b[22m\n16:12:14.021 [info] block_id: 34679ca7-4957-460b-bc51-95b022fa74f8, type: Tasks, state: done"},{"event":"cmd_output","timestamp":1607098334,"output":", event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90),"},{"event":"cmd_output","timestamp":1607098334,"output":" \n\u001b[0m\u001b[22m\n16:12:14.025 [info] block_id: 34679ca7-4957-460b-bc51-95b022fa74f8, type: Blocks, sta"},{"event":"cmd_output","timestamp":1607098334,"output":"te: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change"},{"event":"cmd_output","timestamp":1607098334,"output":"/1(L90), \n\u001b[0m\u001b[22m\n16:12:14.034 [info] ppl_id: bde73561-8a20-43d2-9b3c-42fab53b730c, block_id: 3"},{"event":"cmd_output","timestamp":1607098334,"output":"4679ca7-4957-460b-bc51-95b022fa74f8, type: PplBlocks, block_index: 0, state: done, result: passed, e"},{"event":"cmd_output","timestamp":1607098334,"output":"vent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n"},{"event":"cmd_output","timestamp":1607098334,"output":"\u001b[0m\u001b[22m\n16:12:14.048 [info] ppl_id: bde73561-8a20-43d2-9b3c-42fab53b730c, type: Ppls, state: don"},{"event":"cmd_output","timestamp":1607098334,"output":"e, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_sta"},{"event":"cmd_output","timestamp":1607098334,"output":"te_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:14.139 [info] block_id: 7518e9ad-e6b0-4f9c-bcb0-608f4c5a5804, "},{"event":"cmd_output","timestamp":1607098334,"output":"type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl."},{"event":"cmd_output","timestamp":1607098334,"output":"log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:14.147 [info] block_id: 7518e9ad-e6b0-4f9c-bcb0-608f4c5"},{"event":"cmd_output","timestamp":1607098334,"output":"a5804, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.S"},{"event":"cmd_output","timestamp":1607098334,"output":"TM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:14.154 [info] ppl_id: ae0f1d96-3bea-43dd-8078-d"},{"event":"cmd_output","timestamp":1607098334,"output":"7f07c07c257, block_id: 7518e9ad-e6b0-4f9c-bcb0-608f4c5a5804, type: PplBlocks, block_index: 0, state:"},{"event":"cmd_output","timestamp":1607098334,"output":" done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098334,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:14.174 [info] ppl_id: ae0f1d96-3bea-43dd-8078-d7f07c07c257"},{"event":"cmd_output","timestamp":1607098334,"output":", type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098334,"output":".Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:14.245 [info] ppl_id: e06554e5-e9d5-4e"},{"event":"cmd_output","timestamp":1607098334,"output":"22-b778-efe0bdcf2091, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098334,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:14.250 [info] PplBlocks Waiting"},{"event":"cmd_output","timestamp":1607098334,"output":"State STM is scheduling block 0 from pipeline: \"e06554e5-e9d5-4e22-b778-efe0bdcf2091\"\n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098334,"output":":12:14.262 [info] block_id: 20cb5751-99b3-4d6c-87f0-13c9e7ac7bf8, type: BlockRequests, event: persi"},{"event":"cmd_output","timestamp":1607098334,"output":"sted block run request from ppl e06554e5-e9d5-4e22-b778-efe0bdcf2091 for block 0, origin: Elixir.Blo"},{"event":"cmd_output","timestamp":1607098334,"output":"ck.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:14.264 [info"},{"event":"cmd_output","timestamp":1607098334,"output":"] block_id: 20cb5751-99b3-4d6c-87f0-13c9e7ac7bf8, type: Blocks, state: initializing, event: initial"},{"event":"cmd_output","timestamp":1607098334,"output":"izing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098334,"output":"\n16:12:14.265 [info] Block 0 of pipeline with id: e06554e5-e9d5-4e22-b778-efe0bdcf2091 scheduled i"},{"event":"cmd_output","timestamp":1607098334,"output":"n block service with id: : \"20cb5751-99b3-4d6c-87f0-13c9e7ac7bf8\"\n\u001b[0m\u001b[22m\n16:12:14.267 [info] p"},{"event":"cmd_output","timestamp":1607098334,"output":"pl_id: e06554e5-e9d5-4e22-b778-efe0bdcf2091, type: PplBlocks, block_index: 0, state: running, event:"},{"event":"cmd_output","timestamp":1607098334,"output":" exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098334,"output":"[22m\n16:12:14.269 [info] block_id: 20cb5751-99b3-4d6c-87f0-13c9e7ac7bf8, type: BlockRequests, even"},{"event":"cmd_output","timestamp":1607098334,"output":"t: persisted build and sub_ppl details for block_request: 20cb5751-99b3-4d6c-87f0-13c9e7ac7bf8, orig"},{"event":"cmd_output","timestamp":1607098334,"output":"in: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:14"},{"event":"cmd_output","timestamp":1607098334,"output":".271 [info] block_id: 20cb5751-99b3-4d6c-87f0-13c9e7ac7bf8, type: Tasks, state: pending, event: cre"},{"event":"cmd_output","timestamp":1607098334,"output":"ated, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \r"},{"event":"cmd_output","timestamp":1607098334,"output":"\n\u001b[0m\u001b[22m\n16:12:14.273 [info] block_id: 20cb5751-99b3-4d6c-87f0-13c9e7ac7bf8, type: Blocks, state"},{"event":"cmd_output","timestamp":1607098334,"output":": running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chang"},{"event":"cmd_output","timestamp":1607098334,"output":"e/1(L90), \n\u001b[0m\u001b[22m\n16:12:14.289 [info] block_id: 20cb5751-99b3-4d6c-87f0-13c9e7ac7bf8, type: Ta"},{"event":"cmd_output","timestamp":1607098334,"output":"sks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_s"},{"event":"cmd_output","timestamp":1607098334,"output":"tate_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:14.357 [info] block_id: 20cb5751-99b3-4d6c-87f0-13c9e7ac7bf8"},{"event":"cmd_output","timestamp":1607098334,"output":", type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Imp"},{"event":"cmd_output","timestamp":1607098334,"output":"l.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:14.365 [info] block_id: 20cb5751-99b3-4d6c-87f0-13c9e"},{"event":"cmd_output","timestamp":1607098334,"output":"7ac7bf8, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper"},{"event":"cmd_output","timestamp":1607098334,"output":".STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:14.381 [info] ppl_id: e06554e5-e9d5-4e22-b778"},{"event":"cmd_output","timestamp":1607098334,"output":"-efe0bdcf2091, block_id: 20cb5751-99b3-4d6c-87f0-13c9e7ac7bf8, type: PplBlocks, block_index: 0, stat"},{"event":"cmd_output","timestamp":1607098334,"output":"e: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.l"},{"event":"cmd_output","timestamp":1607098334,"output":"og_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:14.395 [info] ppl_id: e06554e5-e9d5-4e22-b778-efe0bdcf20"},{"event":"cmd_output","timestamp":1607098334,"output":"91, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098334,"output":"ir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test gRPC list_grouped() - project scop"},{"event":"cmd_output","timestamp":1607098334,"output":"ed implicit queues (1892.0ms)\u001b[0m\n * test gRPC list_keyset() - fails when given timestamps are wr"},{"event":"cmd_output","timestamp":1607098334,"output":"ong (done before created etc.)\r * test gRPC list_keyset() - fails when given timestamps are wrong "},{"event":"cmd_output","timestamp":1607098334,"output":"(done before created etc.) (skipped)\n * test gRPC list_activity() - valid request => paginated res"},{"event":"cmd_output","timestamp":1607098334,"output":"ults returned\u001b[22m\n16:12:14.465 [info] Request: 'run: %{\"branch_id\" => \"341baf85-f13e-4059-b8fe-a1"},{"event":"cmd_output","timestamp":1607098334,"output":"cebab0f7d5\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"semaphore.yml\""},{"event":"cmd_output","timestamp":1607098334,"output":", \"hook_id\" => \"78f3ff66-364b-11eb-9d0d-5254005464e2\", \"label\" => \"master\", \"organization_id\" => \"12"},{"event":"cmd_output","timestamp":1607098334,"output":"3\", \"owner\" => \"rt\", \"project_id\" => \"0987\", \"repo_name\" => \"7_termination\", \"request_token\" => \"78f"},{"event":"cmd_output","timestamp":1607098334,"output":"3f71e-364b-11eb-830f-5254005464e2\", \"requester_id\" => \"1661b5e0-c457-4426-8104-b2bd87aa227f\", \"servi"},{"event":"cmd_output","timestamp":1607098334,"output":"ce\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"744491dc-b"},{"event":"cmd_output","timestamp":1607098334,"output":"4f7-400d-9d55-3e248bdbc01e\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:12:14.469 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098334,"output":" 5305db1f-762d-4531-a91d-26dbbe611917, type: PplRequests, event: persisted schedule request with req"},{"event":"cmd_output","timestamp":1607098334,"output":"uest_token: 78f3f71e-364b-11eb-830f-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQu"},{"event":"cmd_output","timestamp":1607098334,"output":"eries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:14.472 [info] ppl_id: 5305db1f-762d-4531-a91d-26d"},{"event":"cmd_output","timestamp":1607098334,"output":"bbe611917, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.P"},{"event":"cmd_output","timestamp":1607098334,"output":"pl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:14.479 [info] Project 0987 a"},{"event":"cmd_output","timestamp":1607098334,"output":"nd branch masterlatest_wf details updated: \"wf_id: 744491dc-b4f7-400d-9d55-3e248bdbc01e, wf_number: "},{"event":"cmd_output","timestamp":1607098334,"output":"1\"\n\u001b[0m\u001b[22m\n16:12:14.482 [info] Persisted ppl_sub_init for pipeline with ppl_id: 5305db1f-762d-4"},{"event":"cmd_output","timestamp":1607098334,"output":"531-a91d-26dbbe611917: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \""},{"event":"cmd_output","timestamp":1607098334,"output":"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 179, in_scheduling: false, i"},{"event":"cmd_output","timestamp":1607098334,"output":"nit_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:14.479362], pipeline_requests: #Ecto.Associati"},{"event":"cmd_output","timestamp":1607098334,"output":"on.NotLoaded, ppl_id: \"5305db1f-762d-4531-a91d-26dbbe6"},{"event":"cmd_output","timestamp":1607098334,"output":"11917\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil"},{"event":"cmd_output","timestamp":1607098334,"output":", terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:14.479371]}\n\u001b[0m\u001b[22m\n16:12:14.489 "},{"event":"cmd_output","timestamp":1607098334,"output":"[info] Request: 'run: %{\"branch_id\" => \"5c4ebff7-6cdd-497a-89c1-24d7478cec79\", \"branch_name\" => \"ma"},{"event":"cmd_output","timestamp":1607098334,"output":"ster\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"semaphore.yml\", \"hook_id\" => \"78f7a972-364b-11e"},{"event":"cmd_output","timestamp":1607098334,"output":"b-809c-5254005464e2\", \"label\" => \"dev\", \"organization_id\" => \"123\", \"owner\" => \"rt\", \"project_id\" =>"},{"event":"cmd_output","timestamp":1607098334,"output":" \"0987\", \"repo_name\" => \"7_termination\", \"request_token\" => \"78f79d2e-364b-11eb-814e-5254005464e2\", "},{"event":"cmd_output","timestamp":1607098334,"output":"\"requester_id\" => \"697847d5-11b1-4f19-9dc1-d293f1c1fbdf\", \"service\" => \"local\", \"suppressed_attribut"},{"event":"cmd_output","timestamp":1607098334,"output":"es\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"9194d034-005d-4114-8c5a-1cf9fae230d4\", \"workin"},{"event":"cmd_output","timestamp":1607098334,"output":"g_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:12:14.493 [info] ppl_id: 51ae9f8d-f676-4e5e-9e68-901e036723a"},{"event":"cmd_output","timestamp":1607098334,"output":"1, type: PplRequests, event: persisted schedule request with request_token: 78f79d2e-364b-11eb-814e-"},{"event":"cmd_output","timestamp":1607098334,"output":"5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098334,"output":"m\u001b[22m\n16:12:14.496 [info] ppl_id: 51ae9f8d-f676-4e5e-9e68-901e036723a1, type: Ppls, state: initia"},{"event":"cmd_output","timestamp":1607098334,"output":"lizing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_re"},{"event":"cmd_output","timestamp":1607098334,"output":"sponse/2(L124), \n\u001b[0m\u001b[22m\n16:12:14.500 [info] Project 0987 and branch masterlatest_wf details up"},{"event":"cmd_output","timestamp":1607098334,"output":"dated: \"wf_id: 9194d034-005d-4114-8c5a-1cf9fae230d4, wf_number: 2\"\n\u001b[0m\u001b[22m\n16:12:14.502 [info] "},{"event":"cmd_output","timestamp":1607098334,"output":"Persisted ppl_sub_init for pipeline with ppl_id: 51ae9f8d-f676-4e5e-9e68-901e036723a1: %Ppl.PplSubIn"},{"event":"cmd_output","timestamp":1607098334,"output":"its.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_i"},{"event":"cmd_output","timestamp":1607098334,"output":"d: nil, error_description: nil, id: 180, in_scheduling: false, init_type: \"regular\", inserted_at: ~N"},{"event":"cmd_output","timestamp":1607098334,"output":"[2020-12-04 16:12:14.500749], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"51ae9f8d-f676-4e5e-9e68-901e036723a1\", recovery_count: 0, result: n"},{"event":"cmd_output","timestamp":1607098334,"output":"il, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updat"},{"event":"cmd_output","timestamp":1607098334,"output":"ed_at: ~N[2020-12-04 16:12:14.500757]}\n\u001b[0m\u001b[22m\n16:12:14.510 [info] Request: 'run: %{\"branch_id\""},{"event":"cmd_output","timestamp":1607098334,"output":" => \"b3efa69e-9702-45fa-82c2-214b90493b04\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469\","},{"event":"cmd_output","timestamp":1607098334,"output":" \"file_name\" => \"semaphore.yml\", \"hook_id\" => \"78fabf7c-364b-11eb-9792-5254005464e2\", \"label\" => \"st"},{"event":"cmd_output","timestamp":1607098334,"output":"g\", \"organization_id\" => \"123\", \"owner\" => \"rt\", \"project_id\" => \"0987\", \"repo_name\" => \"7_terminati"},{"event":"cmd_output","timestamp":1607098334,"output":"on\", \"request_token\" => \"78fab54a-364b-11eb-828b-5254005464e2\", \"requester_id\" => \"81404154-d74e-4ef"},{"event":"cmd_output","timestamp":1607098334,"output":"9-be58-e3e4cf8b5261\", \"service\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secr"},{"event":"cmd_output","timestamp":1607098334,"output":"et\"], \"wf_id\" => \"255ab32f-3584-4354-bf79-6814ef9b6267\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098334,"output":"16:12:14.512 [info] ppl_id: f45126d7-b733-43f6-8d89-7a57e8e786ab, type: PplRequests, event: persist"},{"event":"cmd_output","timestamp":1607098334,"output":"ed schedule request with request_token: 78fab54a-364b-11eb-828b-5254005464e2, origin: Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098334,"output":"Requests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:14.515 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098334,"output":" f45126d7-b733-43f6-8d89-7a57e8e786ab, type: Ppls, state: initializing, event: initializing, recover"},{"event":"cmd_output","timestamp":1607098334,"output":"y_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:1"},{"event":"cmd_output","timestamp":1607098334,"output":"4.518 [info] Project 0987 and branch masterlatest_wf details updated: \"wf_id: 255ab32f-3584-4354-bf"},{"event":"cmd_output","timestamp":1607098334,"output":"79-6814ef9b6267, wf_number: 3\"\n\u001b[0m\u001b[22m\n16:12:14.519 [info] Persisted ppl_sub_init for pipeline "},{"event":"cmd_output","timestamp":1607098334,"output":"with ppl_id: f45126d7-b733-43f6-8d89-7a57e8e786ab: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ect"},{"event":"cmd_output","timestamp":1607098334,"output":"o.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: "},{"event":"cmd_output","timestamp":1607098334,"output":"181, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:14.518109], pipeli"},{"event":"cmd_output","timestamp":1607098334,"output":"ne_requests: #Ecto.Association.NotLoaded, ppl_id: \"f45"},{"event":"cmd_output","timestamp":1607098334,"output":"126d7-b733-43f6-8d89-7a57e8e786ab\", recovery_count: 0, result: nil, result_reason: nil, state: \"crea"},{"event":"cmd_output","timestamp":1607098334,"output":"ted\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:14.518118"},{"event":"cmd_output","timestamp":1607098334,"output":"]}\n\u001b[0m\u001b[22m\n16:12:14.528 [info] Request: 'run: %{\"branch_id\" => \"62885afa-d8a8-4aa4-81dc-fca1547"},{"event":"cmd_output","timestamp":1607098334,"output":"328a1\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"semaphore.yml\", \"ho"},{"event":"cmd_output","timestamp":1607098334,"output":"ok_id\" => \"78fd7276-364b-11eb-b683-5254005464e2\", \"label\" => \"asdf\", \"organization_id\" => \"456\", \"ow"},{"event":"cmd_output","timestamp":1607098334,"output":"ner\" => \"rt\", \"project_id\" => \"0987\", \"repo_name\" => \"7_termination\", \"request_token\" => \"78fd63d0-3"},{"event":"cmd_output","timestamp":1607098334,"output":"64b-11eb-bc67-5254005464e2\", \"requester_id\" => \"e9f6d88f-1196-4325-b9a1-f73b767bb060\", \"service\" => "},{"event":"cmd_output","timestamp":1607098334,"output":"\"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"5798e42c-3bb8-425"},{"event":"cmd_output","timestamp":1607098334,"output":"3-9807-04c7ed736ce6\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:12:14.531 [info] ppl_id: 41e875"},{"event":"cmd_output","timestamp":1607098334,"output":"f1-4f79-4695-94cf-0bcaaf085a42, type: PplRequests, event: persisted schedule request with request_to"},{"event":"cmd_output","timestamp":1607098334,"output":"ken: 78fd63d0-364b-11eb-bc67-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.p"},{"event":"cmd_output","timestamp":1607098334,"output":"rocess_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:14.534 [info] ppl_id: 41e875f1-4f79-4695-94cf-0bcaaf085a"},{"event":"cmd_output","timestamp":1607098334,"output":"42, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls"},{"event":"cmd_output","timestamp":1607098334,"output":".Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:14.536 [info] Project 0987 and bran"},{"event":"cmd_output","timestamp":1607098334,"output":"ch masterlatest_wf details updated: \"wf_id: 5798e42c-3bb8-4253-9807-04c7ed736ce6, wf_number: 4\"\n\u001b[0"},{"event":"cmd_output","timestamp":1607098334,"output":"m\u001b[22m\n16:12:14.538 [info] Persisted ppl_sub_init for pipeline with ppl_id: 41e875f1-4f79-4695-94c"},{"event":"cmd_output","timestamp":1607098334,"output":"f-0bcaaf085a42: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipelin"},{"event":"cmd_output","timestamp":1607098334,"output":"e_sub_inits\">, compile_task_id: nil, error_description: nil, id: 182, in_scheduling: false, init_typ"},{"event":"cmd_output","timestamp":1607098334,"output":"e: \"regular\", inserted_at: ~N[2020-12-04 16:12:14.536858], pipeline_requests: #Ecto.Association.NotL"},{"event":"cmd_output","timestamp":1607098334,"output":"oaded, ppl_id: \"41e875f1-4f79-4695-94cf-0bcaaf085a42\","},{"event":"cmd_output","timestamp":1607098334,"output":" recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, termi"},{"event":"cmd_output","timestamp":1607098334,"output":"nate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:14.537310]}\n\u001b[0m\u001b[22m\n16:12:14.544 [info] "},{"event":"cmd_output","timestamp":1607098334,"output":" Request: 'run: %{\"branch_id\" => \"13859b6f-8bdd-4b38-ba6a-ed2af408efce\", \"branch_name\" => \"master\", "},{"event":"cmd_output","timestamp":1607098334,"output":"\"commit_sha\" => \"75891a4469\", \"file_name\" => \"semaphore.yml\", \"hook_id\" => \"790021e2-364b-11eb-abae-"},{"event":"cmd_output","timestamp":1607098334,"output":"5254005464e2\", \"label\" => \"asdf\", \"organization_id\" => \"456\", \"owner\" => \"rt\", \"project_id\" => \"0987"},{"event":"cmd_output","timestamp":1607098334,"output":"\", \"repo_name\" => \"7_termination\", \"request_token\" => \"790013c8-364b-11eb-a8c5-5254005464e2\", \"reque"},{"event":"cmd_output","timestamp":1607098334,"output":"ster_id\" => \"33ec8d2f-910f-4722-8fee-46908388f9c1\", \"service\" => \"local\", \"suppressed_attributes\" =>"},{"event":"cmd_output","timestamp":1607098334,"output":" [\"access_token\", \"client_secret\"], \"wf_id\" => \"a7dbd934-5673-4d42-beff-130eb7f19dd6\", \"working_dir\""},{"event":"cmd_output","timestamp":1607098334,"output":" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:12:14.552 [info] ppl_id: 00b0bd50-0660-4b13-9b33-cd4d5cd2ec49, typ"},{"event":"cmd_output","timestamp":1607098334,"output":"e: PplRequests, event: persisted schedule request with request_token: 790013c8-364b-11eb-a8c5-525400"},{"event":"cmd_output","timestamp":1607098334,"output":"5464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098334,"output":"\n16:12:14.555 [info] ppl_id: 00b0bd50-0660-4b13-9b33-cd4d5cd2ec49, type: Ppls, state: initializing"},{"event":"cmd_output","timestamp":1607098334,"output":", event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response"},{"event":"cmd_output","timestamp":1607098334,"output":"/2(L124), \n\u001b[0m\u001b[22m\n16:12:14.558 [info] Project 0987 and branch masterlatest_wf details updated:"},{"event":"cmd_output","timestamp":1607098334,"output":" \"wf_id: a7dbd934-5673-4d42-beff-130eb7f19dd6, wf_number: 5\"\n\u001b[0m\u001b[22m\n16:12:14.560 [info] Persis"},{"event":"cmd_output","timestamp":1607098334,"output":"ted ppl_sub_init for pipeline with ppl_id: 00b0bd50-0660-4b13-9b33-cd4d5cd2ec49: %Ppl.PplSubInits.Mo"},{"event":"cmd_output","timestamp":1607098334,"output":"del.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil"},{"event":"cmd_output","timestamp":1607098334,"output":", error_description: nil, id: 183, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-"},{"event":"cmd_output","timestamp":1607098334,"output":"12-04 16:12:14.558548], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"00b0bd50-0660-4b13-9b33-cd4d5cd2ec49\", recovery_count: 0, result: nil, re"},{"event":"cmd_output","timestamp":1607098334,"output":"sult_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at:"},{"event":"cmd_output","timestamp":1607098334,"output":" ~N[2020-12-04 16:12:14.558556]}\n\u001b[0m\u001b[22m\n16:12:14.565 [info] Periodic from module Elixir.Ppl.Pp"},{"event":"cmd_output","timestamp":1607098334,"output":"ls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 10"},{"event":"cmd_output","timestamp":1607098334,"output":"0 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring ar"},{"event":"cmd_output","timestamp":1607098334,"output":"gs: %{allowed_states: [\"initializing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.P"},{"event":"cmd_output","timestamp":1607098334,"output":"pls.Model.Ppls, observed_state: \"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.ST"},{"event":"cmd_output","timestamp":1607098334,"output":"MHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :update"},{"event":"cmd_output","timestamp":1607098334,"output":"d_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :ski"},{"event":"cmd_output","timestamp":1607098334,"output":"p}\n\u001b[0m\u001b[22m\n16:12:14.565 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingState wit"},{"event":"cmd_output","timestamp":1607098334,"output":"h name Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_u"},{"event":"cmd_output","timestamp":1607098334,"output":"p\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"pending\", \"queuing\", "},{"event":"cmd_output","timestamp":1607098334,"output":"\"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pendin"},{"event":"cmd_output","timestamp":1607098334,"output":"g\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoR"},{"event":"cmd_output","timestamp":1607098334,"output":"epo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], s"},{"event":"cmd_output","timestamp":1607098334,"output":"chema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:12:14.566 [info] Pe"},{"event":"cmd_output","timestamp":1607098334,"output":"riodic from module Elixir.Ppl.Ppls.STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandler.Queu"},{"event":"cmd_output","timestamp":1607098334,"output":"ingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState"},{"event":"cmd_output","timestamp":1607098334,"output":"\"]}, recurring args: %{allowed_states: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, initial"},{"event":"cmd_output","timestamp":1607098334,"output":"_query: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl"},{"event":"cmd_output","timestamp":1607098334,"output":".Ppls.STMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :upd"},{"event":"cmd_output","timestamp":1607098334,"output":"ated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :"},{"event":"cmd_output","timestamp":1607098334,"output":"skip}\n\u001b[0m\u001b[22m\n16:12:14.566 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.Create"},{"event":"cmd_output","timestamp":1607098334,"output":"dState with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 100 ms, metric_name: {\"Pp"},{"event":"cmd_output","timestamp":1607098334,"output":"l.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args: %{allowed_states:"},{"event":"cmd_output","timestamp":1607098334,"output":" [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observ"},{"event":"cmd_output","timestamp":1607098334,"output":"ed_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :"},{"event":"cmd_output","timestamp":1607098334,"output":"updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, t"},{"event":"cmd_output","timestamp":1607098334,"output":"ask_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:14.567 [info] Periodic from module Elixir.Ppl.PplSubInits."},{"event":"cmd_output","timestamp":1607098334,"output":"STMHandler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 ms"},{"event":"cmd_output","timestamp":1607098334,"output":", metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring arg"},{"event":"cmd_output","timestamp":1607098334,"output":"s: %{allowed_states: [\"regular_init\", \"compilation\", \"done\"], cooling_time_sec: -2, initial_query: P"},{"event":"cmd_output","timestamp":1607098334,"output":"pl.PplSubInits.Model.PplSubInits, observed_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRep"},{"event":"cmd_output","timestamp":1607098334,"output":"o, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], sch"},{"event":"cmd_output","timestamp":1607098334,"output":"ema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:14.567 [info] Per"},{"event":"cmd_output","timestamp":1607098334,"output":"iodic from module Elixir.Ppl.PplSubInits.STMHandler.CompilationState with name Elixir.Ppl.PplSubInit"},{"event":"cmd_output","timestamp":1607098334,"output":"s.STMHandler.CompilationState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubI"},{"event":"cmd_output","timestamp":1607098334,"output":"nits-STMHandler-CompilationState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation"},{"event":"cmd_output","timestamp":1607098334,"output":"\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, obse"},{"event":"cmd_output","timestamp":1607098334,"output":"rved_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_requ"},{"event":"cmd_output","timestamp":1607098334,"output":"est, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubIn"},{"event":"cmd_output","timestamp":1607098334,"output":"its, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:14.567 [info] Periodic from module Elixir.Ppl.PplSub"},{"event":"cmd_output","timestamp":1607098334,"output":"Inits.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: pe"},{"event":"cmd_output","timestamp":1607098334,"output":"riod: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}"},{"event":"cmd_output","timestamp":1607098334,"output":", recurring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Mo"},{"event":"cmd_output","timestamp":1607098334,"output":"del.PplSubInits, observed_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning:"},{"event":"cmd_output","timestamp":1607098334,"output":" [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplS"},{"event":"cmd_output","timestamp":1607098334,"output":"ubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:14.568 [info] Periodic from mo"},{"event":"cmd_output","timestamp":1607098334,"output":"dule Elixir.Ppl.PplBlocks.STMHandler.InitializingState with name Elixir.Ppl.PplBlocks.STMHandler.Ini"},{"event":"cmd_output","timestamp":1607098334,"output":"tializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-I"},{"event":"cmd_output","timestamp":1607098334,"output":"nitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"waiting\", \"done\"], cooling_"},{"event":"cmd_output","timestamp":1607098334,"output":"time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"initializing\", publisher"},{"event":"cmd_output","timestamp":1607098334,"output":"_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :"},{"event":"cmd_output","timestamp":1607098334,"output":"recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :ski"},{"event":"cmd_output","timestamp":1607098334,"output":"p}\n\u001b[0m\u001b[22m\n16:12:14.568 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.WaitingStat"},{"event":"cmd_output","timestamp":1607098334,"output":"e with name Elixir.Ppl.PplBlocks.STMHandler.WaitingState :: period: 1000 ms, metric_name: {\"Ppl.beho"},{"event":"cmd_output","timestamp":1607098334,"output":"lder-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurring args: %{allowed_states: [\"waiti"},{"event":"cmd_output","timestamp":1607098334,"output":"ng\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed"},{"event":"cmd_output","timestamp":1607098334,"output":"_state: \"waiting\", publisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args"},{"event":"cmd_output","timestamp":1607098334,"output":"/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recover"},{"event":"cmd_output","timestamp":1607098334,"output":"y_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0"},{"event":"cmd_output","timestamp":1607098334,"output":"m\u001b[22m\n16:12:14.569 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.RunningState with "},{"event":"cmd_output","timestamp":1607098334,"output":"name Elixir.Ppl.PplBlocks.STMHandler.RunningState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wa"},{"event":"cmd_output","timestamp":1607098334,"output":"ke_up\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"s"},{"event":"cmd_output","timestamp":1607098334,"output":"topping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_stat"},{"event":"cmd_output","timestamp":1607098334,"output":"e: \"running\", publisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0>,"},{"event":"cmd_output","timestamp":1607098334,"output":" repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_co"},{"event":"cmd_output","timestamp":1607098334,"output":"unt, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :ski"},{"event":"cmd_output","timestamp":1607098334,"output":"p}\n\u001b[0m\u001b[22m\n16:12:14.569 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.StoppingSta"},{"event":"cmd_output","timestamp":1607098334,"output":"te with name Elixir.Ppl.PplBlocks.STMHandler.StoppingState :: period: 1000 ms, metric_name: {\"Ppl.be"},{"event":"cmd_output","timestamp":1607098334,"output":"holder-wake_up\", [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"st"},{"event":"cmd_output","timestamp":1607098334,"output":"opping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state"},{"event":"cmd_output","timestamp":1607098334,"output":": \"stopping\", publisher_cb: #Function<0.104215991/1 in Ppl.PplBlocks.STMHandler.StoppingState.args/0"},{"event":"cmd_output","timestamp":1607098334,"output":">, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_"},{"event":"cmd_output","timestamp":1607098334,"output":"count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :s"},{"event":"cmd_output","timestamp":1607098334,"output":"kip}\n\u001b[0m\u001b[22m\n16:12:14.679 [info] ppl_id: 5305db1f-762d-4531-a91d-26dbbe611917, type: PplRequest"},{"event":"cmd_output","timestamp":1607098334,"output":"s, event: persisted source_args for pipeline: 5305db1f-762d-4531-a91d-26dbbe611917, origin: Elixir.P"},{"event":"cmd_output","timestamp":1607098334,"output":"pl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:14.681 [info] ppl_"},{"event":"cmd_output","timestamp":1607098334,"output":"id: 5305db1f-762d-4531-a91d-26dbbe611917, type: PplSubInits, state: fetching, event: exit_scheduling"},{"event":"cmd_output","timestamp":1607098334,"output":", recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:14.7"},{"event":"cmd_output","timestamp":1607098334,"output":"04 [info] ppl_id: 5305db1f-762d-4531-a91d-26dbbe611917, type: PplSubInits, state: regular_init, eve"},{"event":"cmd_output","timestamp":1607098334,"output":"nt: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b["},{"event":"cmd_output","timestamp":1607098334,"output":"0m\u001b[22m\n16:12:14.723 [info] ppl_id: 5305db1f-762d-4531-a91d-26dbbe611917, type: PplRequests, event"},{"event":"cmd_output","timestamp":1607098334,"output":": persisted definition for request with request_token: 78f3f71e-364b-11eb-830f-5254005464e2, origin:"},{"event":"cmd_output","timestamp":1607098334,"output":" Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:14.728"},{"event":"cmd_output","timestamp":1607098334,"output":" [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"q"},{"event":"cmd_output","timestamp":1607098334,"output":"ueues\">, inserted_at: ~N[2020-12-04 16:12:14.726723], name: \"master-.semaphore/semaphore.yml\", organ"},{"event":"cmd_output","timestamp":1607098334,"output":"ization_id: \"123\", project_id: \"0987\", queue_id: \"ee119ca0-97fb-4699-a902-d78fe8b65a83\", scope: \"pro"},{"event":"cmd_output","timestamp":1607098334,"output":"ject\", updated_at: ~N[2020-12-04 16:12:14.726732], user_generated: false}}\n\u001b[0m\u001b[22m\n16:12:14.734 "},{"event":"cmd_output","timestamp":1607098334,"output":"[info] ppl_id: not_available, event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInit"},{"event":"cmd_output","timestamp":1607098334,"output":"State.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:14.734 [info] event: created, origin: Elixir.Ppl.PplSubIn"},{"event":"cmd_output","timestamp":1607098334,"output":"its.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:14.734 [info] ppl_id: 5305db1f-"},{"event":"cmd_output","timestamp":1607098334,"output":"762d-4531-a91d-26dbbe611917, type: PplBlocks, block_index: 0, state: initializing, event: created, r"},{"event":"cmd_output","timestamp":1607098334,"output":"ecovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098334,"output":"\u001b[22m\n16:12:14.734 [info] ppl_id: 5305db1f-762d-4531-a91d-26dbbe611917, type: PplBlocks, block_ind"},{"event":"cmd_output","timestamp":1607098334,"output":"ex: 1, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHan"},{"event":"cmd_output","timestamp":1607098334,"output":"dler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:14.736 [info] ppl_id: 5305db1f-762d-4531-"},{"event":"cmd_output","timestamp":1607098334,"output":"a91d-26dbbe611917, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_"},{"event":"cmd_output","timestamp":1607098334,"output":"count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:14.743 [info] "},{"event":"cmd_output","timestamp":1607098334,"output":"ppl_id: 5305db1f-762d-4531-a91d-26dbbe611917, type: Ppls, state: pending, event: exit_scheduling, re"},{"event":"cmd_output","timestamp":1607098334,"output":"covery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:14.746 ["},{"event":"cmd_output","timestamp":1607098334,"output":"info] ppl_id: 5305db1f-762d-4531-a91d-26dbbe611917, type: PplBlocks, block_index: 0, state: waiting"},{"event":"cmd_output","timestamp":1607098334,"output":", event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90),"},{"event":"cmd_output","timestamp":1607098334,"output":" \n\u001b[0m\u001b[22m\n16:12:14.753 [info] ppl_id: 5305db1f-762d-4531-a91d-26dbbe611917, type: Ppls, state: "},{"event":"cmd_output","timestamp":1607098334,"output":"queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/"},{"event":"cmd_output","timestamp":1607098334,"output":"1(L90), \n\u001b[0m\u001b[22m\n16:12:14.754 [info] ppl_id: 5305db1f-762d-4531-a91d-26dbbe611917, type: PplBlo"},{"event":"cmd_output","timestamp":1607098334,"output":"cks, block_index: 1, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loope"},{"event":"cmd_output","timestamp":1607098334,"output":"r.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:14.762 [info] ppl_id: 5305db1f-762d-4531-a91"},{"event":"cmd_output","timestamp":1607098334,"output":"d-26dbbe611917, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098334,"output":"r.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:14.769 [info] PplBlocks WaitingState "},{"event":"cmd_output","timestamp":1607098334,"output":"STM is scheduling block 0 from pipeline: \"5305db1f-762d-4531-a91d-26dbbe611917\"\n\u001b[0m\u001b[22m\n16:12:14"},{"event":"cmd_output","timestamp":1607098334,"output":".776 [info] block_id: 5479eca1-ebbb-44e7-8b9c-44937ea5ff45, type: BlockRequests, event: persisted b"},{"event":"cmd_output","timestamp":1607098334,"output":"lock run request from ppl 5305db1f-762d-4531-a91d-26dbbe611917 for block 0, origin: Elixir.Block.Blo"},{"event":"cmd_output","timestamp":1607098334,"output":"ckRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:14.779 [info] blo"},{"event":"cmd_output","timestamp":1607098334,"output":"ck_id: 5479eca1-ebbb-44e7-8b9c-44937ea5ff45, type: Blocks, state: initializing, event: initializing,"},{"event":"cmd_output","timestamp":1607098334,"output":" recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098334,"output":"2:14.782 [info] Block 0 of pipeline with id: 5305db1f-762d-4531-a91d-26dbbe611917 scheduled in bloc"},{"event":"cmd_output","timestamp":1607098334,"output":"k service with id: : \"5479eca1-ebbb-44e7-8b9c-44937ea5ff45\"\n\u001b[0m\u001b[22m\n16:12:14.785 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098334,"output":" 5305db1f-762d-4531-a91d-26dbbe611917, type: PplBlocks, block_index: 0, state: running, event: exit_"},{"event":"cmd_output","timestamp":1607098334,"output":"scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098334,"output":"16:12:14.791 [info] ppl_id: 51ae9f8d-f676-4e5e-9e68-901e036723a1, type: PplRequests, event: persist"},{"event":"cmd_output","timestamp":1607098334,"output":"ed source_args for pipeline: 51ae9f8d-f676-4e5e-9e68-901e036723a1, origin: Elixir.Ppl.PplRequests.Mo"},{"event":"cmd_output","timestamp":1607098334,"output":"del.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:14.794 [info] ppl_id: 51ae9f8d-f676"},{"event":"cmd_output","timestamp":1607098334,"output":"-4e5e-9e68-901e036723a1, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count:"},{"event":"cmd_output","timestamp":1607098334,"output":" 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:14.810 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098334,"output":": 51ae9f8d-f676-4e5e-9e68-901e036723a1, type: PplSubInits, state: regular_init, event: exit_scheduli"},{"event":"cmd_output","timestamp":1607098334,"output":"ng, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:14"},{"event":"cmd_output","timestamp":1607098334,"output":".837 [info] ppl_id: 51ae9f8d-f676-4e5e-9e68-901e036723a1, type: PplRequests, event: persisted defin"},{"event":"cmd_output","timestamp":1607098334,"output":"ition for request with request_token: 78f79d2e-364b-11eb-814e-5254005464e2, origin: Elixir.Ppl.PplRe"},{"event":"cmd_output","timestamp":1607098334,"output":"quests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:14.840 [info] Queue pe"},{"event":"cmd_output","timestamp":1607098334,"output":"rsisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted"},{"event":"cmd_output","timestamp":1607098334,"output":"_at: ~N[2020-12-04 16:12:14.839207], name: \"dev-.semaphore/semaphore.yml\", organization_id: \"123\", p"},{"event":"cmd_output","timestamp":1607098334,"output":"roject_id: \"0987\", queue_id: \"0d773292-c660-4d2f-a4c1-255ff7e6d5e0\", scope: \"project\", updated_at: ~"},{"event":"cmd_output","timestamp":1607098334,"output":"N[2020-12-04 16:12:14.839217], user_generated: false}}\n\u001b[0m\u001b[22m\n16:12:14.846 [info] ppl_id: not_"},{"event":"cmd_output","timestamp":1607098334,"output":"available, event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105"},{"event":"cmd_output","timestamp":1607098334,"output":"), \n\u001b[0m\u001b[22m\n16:12:14.846 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.Regul"},{"event":"cmd_output","timestamp":1607098334,"output":"arInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:14.846 [info] ppl_id: 51ae9f8d-f676-4e5e-9e68-901e0"},{"event":"cmd_output","timestamp":1607098334,"output":"36723a1, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098334,"output":"igin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:14.846 "},{"event":"cmd_output","timestamp":1607098334,"output":"[info] ppl_id: 51ae9f8d-f676-4e5e-9e68-901e036723a1, type: PplBlocks, block_index: 1, state: initia"},{"event":"cmd_output","timestamp":1607098334,"output":"lizing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitStat"},{"event":"cmd_output","timestamp":1607098334,"output":"e.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:14.848 [info] ppl_id: 51ae9f8d-f676-4e5e-9e68-901e036723a1, t"},{"event":"cmd_output","timestamp":1607098334,"output":"ype: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098334,"output":"ixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:14.856 [info] ppl_id: 51ae9f8d-f67"},{"event":"cmd_output","timestamp":1607098334,"output":"6-4e5e-9e68-901e036723a1, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098334,"output":"gin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:14.857 [info] ppl_id: 51ae9"},{"event":"cmd_output","timestamp":1607098334,"output":"f8d-f676-4e5e-9e68-901e036723a1, type: PplBlocks, block_index: 0, state: waiting, event: exit_schedu"},{"event":"cmd_output","timestamp":1607098334,"output":"ling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:"},{"event":"cmd_output","timestamp":1607098334,"output":"14.865 [info] ppl_id: 51ae9f8d-f676-4e5e-9e68-901e036723a1, type: PplBlocks, block_index: 1, state:"},{"event":"cmd_output","timestamp":1607098334,"output":" waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change"},{"event":"cmd_output","timestamp":1607098334,"output":"/1(L90), \n\u001b[0m\u001b[22m\n16:12:14.866 [info] ppl_id: 51ae9f8d-f676-4e5e-9e68-901e036723a1, type: Ppls,"},{"event":"cmd_output","timestamp":1607098334,"output":" state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state"},{"event":"cmd_output","timestamp":1607098334,"output":"_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:14.875 [info] ppl_id: 51ae9f8d-f676-4e5e-9e68-901e036723a1, type"},{"event":"cmd_output","timestamp":1607098334,"output":": Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.lo"},{"event":"cmd_output","timestamp":1607098334,"output":"g_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:14.888 [info] PplBlocks WaitingState STM is scheduling bl"},{"event":"cmd_output","timestamp":1607098334,"output":"ock 0 from pipeline: \"51ae9f8d-f676-4e5e-9e68-901e036723a1\"\n\u001b[0m\u001b[22m\n16:12:14.895 [info] block_i"},{"event":"cmd_output","timestamp":1607098334,"output":"d: 843380ce-11c0-488c-b870-2164fd2b2512, type: BlockRequests, event: persisted block run request fro"},{"event":"cmd_output","timestamp":1607098334,"output":"m ppl 51ae9f8d-f676-4e5e-9e68-901e036723a1 for block 0, origin: Elixir.Block.BlockRequests.Model.Blo"},{"event":"cmd_output","timestamp":1607098334,"output":"ckRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:14.899 [info] block_id: 843380ce-11c0"},{"event":"cmd_output","timestamp":1607098334,"output":"-488c-b870-2164fd2b2512, type: Blocks, state: initializing, event: initializing, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098334,"output":"origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:14.901 [info] Blo"},{"event":"cmd_output","timestamp":1607098334,"output":"ck 0 of pipeline with id: 51ae9f8d-f676-4e5e-9e68-901e036723a1 scheduled in block service with id: :"},{"event":"cmd_output","timestamp":1607098334,"output":" \"843380ce-11c0-488c-b870-2164fd2b2512\"\n\u001b[0m\u001b[22m\n16:12:14.905 [info] ppl_id: 51ae9f8d-f676-4e5e-"},{"event":"cmd_output","timestamp":1607098334,"output":"9e68-901e036723a1, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery"},{"event":"cmd_output","timestamp":1607098334,"output":"_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:14.906 [info] "},{"event":"cmd_output","timestamp":1607098334,"output":" ppl_id: f45126d7-b733-43f6-8d89-7a57e8e786ab, type: PplRequests, event: persisted source_args for p"},{"event":"cmd_output","timestamp":1607098334,"output":"ipeline: f45126d7-b733-43f6-8d89-7a57e8e786ab, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueri"},{"event":"cmd_output","timestamp":1607098334,"output":"es.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:14.909 [info] ppl_id: f45126d7-b733-43f6-8d89-7a57e8e78"},{"event":"cmd_output","timestamp":1607098334,"output":"6ab, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098334,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:14.933 [info] ppl_id: f45126d7-b733-43f6"},{"event":"cmd_output","timestamp":1607098334,"output":"-8d89-7a57e8e786ab, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: "},{"event":"cmd_output","timestamp":1607098334,"output":"0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:14.957 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098334,"output":" f45126d7-b733-43f6-8d89-7a57e8e786ab, type: PplRequests, event: persisted definition for request wi"},{"event":"cmd_output","timestamp":1607098334,"output":"th request_token: 78fab54a-364b-11eb-828b-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequ"},{"event":"cmd_output","timestamp":1607098334,"output":"estsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:14.960 [info] Queue persisted: {:ok, %Ppl."},{"event":"cmd_output","timestamp":1607098334,"output":"Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 1"},{"event":"cmd_output","timestamp":1607098334,"output":"6:12:14.959557], name: \"stg-.semaphore/semaphore.yml\", organization_id: \"123\", project_id: \"0987\", q"},{"event":"cmd_output","timestamp":1607098334,"output":"ueue_id: \"ece6fb68-2ddd-45f0-bffc-2fa5d2b417c8\", scope: \"project\", updated_at: ~N[2020-12-04 16:12:1"},{"event":"cmd_output","timestamp":1607098334,"output":"4.959567], user_generated: false}}\n\u001b[0m\u001b[22m\n16:12:14.964 [info] ppl_id: not_available, event: cr"},{"event":"cmd_output","timestamp":1607098334,"output":"eated, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098334,"output":"2:14.964 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/"},{"event":"cmd_output","timestamp":1607098334,"output":"1(L105), \n\u001b[0m\u001b[22m\n16:12:14.964 [info] ppl_id: f45126d7-b733-43f6-8d89-7a57e8e786ab, type: PplBl"},{"event":"cmd_output","timestamp":1607098334,"output":"ocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098334,"output":"SubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:14.964 [info] ppl_id: f451"},{"event":"cmd_output","timestamp":1607098334,"output":"26d7-b733-43f6-8d89-7a57e8e786ab, type: PplBlocks, block_index: 1, state: initializing, event: creat"},{"event":"cmd_output","timestamp":1607098334,"output":"ed, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \r"},{"event":"cmd_output","timestamp":1607098334,"output":"\n\u001b[0m\u001b[22m\n16:12:14.966 [info] ppl_id: f45126d7-b733-43f6-8d89-7a57e8e786ab, type: PplSubInits, st"},{"event":"cmd_output","timestamp":1607098334,"output":"ate: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl"},{"event":"cmd_output","timestamp":1607098334,"output":".log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:14.973 [info] ppl_id: f45126d7-b733-43f6-8d89-7a57e8e7"},{"event":"cmd_output","timestamp":1607098334,"output":"86ab, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098334,"output":"igin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:14.975 [info] ppl_id: f451"},{"event":"cmd_output","timestamp":1607098334,"output":"26d7-b733-43f6-8d89-7a57e8e786ab, type: Ppls, state: pending, event: exit_scheduling, recovery_count"},{"event":"cmd_output","timestamp":1607098334,"output":": 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:14.983 [info] ppl_i"},{"event":"cmd_output","timestamp":1607098334,"output":"d: f45126d7-b733-43f6-8d89-7a57e8e786ab, type: PplBlocks, block_index: 1, state: waiting, event: exi"},{"event":"cmd_output","timestamp":1607098334,"output":"t_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098334,"output":"\n16:12:14.986 [info] ppl_id: f45126d7-b733-43f6-8d89-7a57e8e786ab, type: Ppls, state: queuing, eve"},{"event":"cmd_output","timestamp":1607098334,"output":"nt: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b["},{"event":"cmd_output","timestamp":1607098334,"output":"0m\u001b[22m\n16:12:14.994 [info] ppl_id: f45126d7-b733-43f6-8d89-7a57e8e786ab, type: Ppls, state: runni"},{"event":"cmd_output","timestamp":1607098334,"output":"ng, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90"},{"event":"cmd_output","timestamp":1607098335,"output":"), \n\u001b[0m\u001b[22m\n16:12:15.000 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline:"},{"event":"cmd_output","timestamp":1607098335,"output":" \"f45126d7-b733-43f6-8d89-7a57e8e786ab\"\n\u001b[0m\u001b[22m\n16:12:15.007 [info] block_id: 75756cdd-45c3-4d1"},{"event":"cmd_output","timestamp":1607098335,"output":"6-b5b3-bfa901e5151a, type: BlockRequests, event: persisted block run request from ppl f45126d7-b733-"},{"event":"cmd_output","timestamp":1607098335,"output":"43f6-8d89-7a57e8e786ab for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.pr"},{"event":"cmd_output","timestamp":1607098335,"output":"ocess_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:15.010 [info] block_id: 75756cdd-45c3-4d16-b5b3-bfa901e51"},{"event":"cmd_output","timestamp":1607098335,"output":"51a, type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block"},{"event":"cmd_output","timestamp":1607098335,"output":".Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:15.012 [info] Block 0 of pipeline wit"},{"event":"cmd_output","timestamp":1607098335,"output":"h id: f45126d7-b733-43f6-8d89-7a57e8e786ab scheduled in block service with id: : \"75756cdd-45c3-4d16"},{"event":"cmd_output","timestamp":1607098335,"output":"-b5b3-bfa901e5151a\"\n\u001b[0m\u001b[22m\n16:12:15.018 [info] ppl_id: f45126d7-b733-43f6-8d89-7a57e8e786ab, t"},{"event":"cmd_output","timestamp":1607098335,"output":"ype: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: E"},{"event":"cmd_output","timestamp":1607098335,"output":"lixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:15.020 [info] ppl_id: 41e875f1-4f"},{"event":"cmd_output","timestamp":1607098335,"output":"79-4695-94cf-0bcaaf085a42, type: PplRequests, event: persisted source_args for pipeline: 41e875f1-4f"},{"event":"cmd_output","timestamp":1607098335,"output":"79-4695-94cf-0bcaaf085a42, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L"},{"event":"cmd_output","timestamp":1607098335,"output":"89), \n\u001b[0m\u001b[22m\n16:12:15.024 [info] ppl_id: 41e875f1-4f79-4695-94cf-0bcaaf085a42, type: PplSubIni"},{"event":"cmd_output","timestamp":1607098335,"output":"ts, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_s"},{"event":"cmd_output","timestamp":1607098335,"output":"tate_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:15.048 [info] ppl_id: 41e875f1-4f79-4695-94cf-0bcaaf085a42, "},{"event":"cmd_output","timestamp":1607098335,"output":"type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Lo"},{"event":"cmd_output","timestamp":1607098335,"output":"oper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:15.076 [info] ppl_id: 41e875f1-4f79-4695-"},{"event":"cmd_output","timestamp":1607098335,"output":"94cf-0bcaaf085a42, type: PplRequests, event: persisted definition for request with request_token: 78"},{"event":"cmd_output","timestamp":1607098335,"output":"fd63d0-364b-11eb-bc67-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_d"},{"event":"cmd_output","timestamp":1607098335,"output":"efinition/3(L76), \n\u001b[0m\u001b[22m\n16:12:15.080 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{"},{"event":"cmd_output","timestamp":1607098335,"output":"__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:12:15.078106], nam"},{"event":"cmd_output","timestamp":1607098335,"output":"e: \"asdf-.semaphore/semaphore.yml\", organization_id: \"456\", project_id: \"0987\", queue_id: \"a2c31ff2-"},{"event":"cmd_output","timestamp":1607098335,"output":"9bc3-45fc-9899-988311260228\", scope: \"project\", updated_at: ~N[2020-12-04 16:12:15.078118], user_gen"},{"event":"cmd_output","timestamp":1607098335,"output":"erated: false}}\n\u001b[0m\u001b[22m\n16:12:15.086 [info] ppl_id: not_available, event: created, origin: Elix"},{"event":"cmd_output","timestamp":1607098335,"output":"ir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:15.086 [info] ev"},{"event":"cmd_output","timestamp":1607098335,"output":"ent: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098335,"output":"m\n16:12:15.086 [info] ppl_id: 41e875f1-4f79-4695-94cf-0bcaaf085a42, type: PplBlocks, block_index: "},{"event":"cmd_output","timestamp":1607098335,"output":"0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler"},{"event":"cmd_output","timestamp":1607098335,"output":".RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:15.086 [info] ppl_id: 41e875f1-4f79-4695-94cf"},{"event":"cmd_output","timestamp":1607098335,"output":"-0bcaaf085a42, type: PplBlocks, block_index: 1, state: initializing, event: created, recovery_count:"},{"event":"cmd_output","timestamp":1607098335,"output":" 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:1"},{"event":"cmd_output","timestamp":1607098335,"output":"5.089 [info] ppl_id: 41e875f1-4f79-4695-94cf-0bcaaf085a42, type: PplSubInits, state: done, result: "},{"event":"cmd_output","timestamp":1607098335,"output":"passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1"},{"event":"cmd_output","timestamp":1607098335,"output":"(L90), \n\u001b[0m\u001b[22m\n16:12:15.101 [info] ppl_id: 41e875f1-4f79-4695-94cf-0bcaaf085a42, type: Ppls, s"},{"event":"cmd_output","timestamp":1607098335,"output":"tate: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098335,"output":"hange/1(L90), \n\u001b[0m\u001b[22m\n16:12:15.108 [info] ppl_id: 41e875f1-4f79-4695-94cf-0bcaaf085a42, type: "},{"event":"cmd_output","timestamp":1607098335,"output":"PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098335,"output":".Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:15.122 [info] ppl_id: 41e875f1-4f79-46"},{"event":"cmd_output","timestamp":1607098335,"output":"95-94cf-0bcaaf085a42, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098335,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:15.127 [info] ppl_id: 41e875f1-"},{"event":"cmd_output","timestamp":1607098335,"output":"4f79-4695-94cf-0bcaaf085a42, type: PplBlocks, block_index: 1, state: waiting, event: exit_scheduling"},{"event":"cmd_output","timestamp":1607098335,"output":", recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:15.1"},{"event":"cmd_output","timestamp":1607098335,"output":"37 [info] ppl_id: 00b0bd50-0660-4b13-9b33-cd4d5cd2ec49, type: PplRequests, event: persisted source_"},{"event":"cmd_output","timestamp":1607098335,"output":"args for pipeline: 00b0bd50-0660-4b13-9b33-cd4d5cd2ec49, origin: Elixir.Ppl.PplRequests.Model.PplReq"},{"event":"cmd_output","timestamp":1607098335,"output":"uestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:15.138 [info] ppl_id: 41e875f1-4f79-4695-94cf"},{"event":"cmd_output","timestamp":1607098335,"output":"-0bcaaf085a42, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098335,"output":".Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:15.140 [info] ppl_id: 00b0bd50-0660-4b"},{"event":"cmd_output","timestamp":1607098335,"output":"13-9b33-cd4d5cd2ec49, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098335,"output":" origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:15.146 [info] PplBlocks"},{"event":"cmd_output","timestamp":1607098335,"output":" WaitingState STM is scheduling block 0 from pipeline: \"41e875f1-4f79-4695-94cf-0bcaaf085a42\"\n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098335,"output":"[22m\n16:12:15.153 [info] block_id: 751c7ac1-d18e-423d-9f9b-841a3d20176a, type: BlockRequests, even"},{"event":"cmd_output","timestamp":1607098335,"output":"t: persisted block run request from ppl 41e875f1-4f79-4695-94cf-0bcaaf085a42 for block 0, origin: El"},{"event":"cmd_output","timestamp":1607098335,"output":"ixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:15.1"},{"event":"cmd_output","timestamp":1607098335,"output":"56 [info] block_id: 751c7ac1-d18e-423d-9f9b-841a3d20176a, type: Blocks, state: initializing, event:"},{"event":"cmd_output","timestamp":1607098335,"output":" initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b"},{"event":"cmd_output","timestamp":1607098335,"output":"[0m\u001b[22m\n16:12:15.159 [info] Block 0 of pipeline with id: 41e875f1-4f79-4695-94cf-0bcaaf085a42 sch"},{"event":"cmd_output","timestamp":1607098335,"output":"eduled in block service with id: : \"751c7ac1-d18e-423d-9f9b-841a3d20176a\"\n\u001b[0m\u001b[22m\n16:12:15.163 ["},{"event":"cmd_output","timestamp":1607098335,"output":"info] ppl_id: 41e875f1-4f79-4695-94cf-0bcaaf085a42, type: PplBlocks, block_index: 0, state: running"},{"event":"cmd_output","timestamp":1607098335,"output":", event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90),"},{"event":"cmd_output","timestamp":1607098335,"output":" \n\u001b[0m\u001b[22m\n16:12:15.166 [info] ppl_id: 00b0bd50-0660-4b13-9b33-cd4d5cd2ec49, type: PplSubInits, "},{"event":"cmd_output","timestamp":1607098335,"output":"state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_s"},{"event":"cmd_output","timestamp":1607098335,"output":"tate_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:15.196 [info] ppl_id: 00b0bd50-0660-4b13-9b33-cd4d5cd2ec49, "},{"event":"cmd_output","timestamp":1607098335,"output":"type: PplRequests, event: persisted definition for request with request_token: 790013c8-364b-11eb-a8"},{"event":"cmd_output","timestamp":1607098335,"output":"c5-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \r"},{"event":"cmd_output","timestamp":1607098335,"output":"\n\u001b[0m\u001b[22m\n16:12:15.202 [info] ppl_id: not_available, event: created, origin: Elixir.Ppl.PplSubIni"},{"event":"cmd_output","timestamp":1607098335,"output":"ts.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:15.202 [info] event: created, or"},{"event":"cmd_output","timestamp":1607098335,"output":"igin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:15.203 "},{"event":"cmd_output","timestamp":1607098335,"output":"[info] ppl_id: 00b0bd50-0660-4b13-9b33-cd4d5cd2ec49, type: PplBlocks, block_index: 0, state: initia"},{"event":"cmd_output","timestamp":1607098335,"output":"lizing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitStat"},{"event":"cmd_output","timestamp":1607098335,"output":"e.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:15.203 [info] ppl_id: 00b0bd50-0660-4b13-9b33-cd4d5cd2ec49, t"},{"event":"cmd_output","timestamp":1607098335,"output":"ype: PplBlocks, block_index: 1, state: initializing, event: created, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098335,"output":"ir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:15.205 [info] pp"},{"event":"cmd_output","timestamp":1607098335,"output":"l_id: 00b0bd50-0660-4b13-9b33-cd4d5cd2ec49, type: PplSubInits, state: done, result: passed, event: e"},{"event":"cmd_output","timestamp":1607098335,"output":"xit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098335,"output":"2m\n16:12:15.212 [info] ppl_id: 00b0bd50-0660-4b13-9b33-cd4d5cd2ec49, type: PplBlocks, block_index:"},{"event":"cmd_output","timestamp":1607098335,"output":" 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_st"},{"event":"cmd_output","timestamp":1607098335,"output":"ate_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:15.213 [info] ppl_id: 00b0bd50-0660-4b13-9b33-cd4d5cd2ec49, t"},{"event":"cmd_output","timestamp":1607098335,"output":"ype: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl"},{"event":"cmd_output","timestamp":1607098335,"output":".log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:15.222 [info] ppl_id: 00b0bd50-0660-4b13-9b33-cd4d5cd2"},{"event":"cmd_output","timestamp":1607098335,"output":"ec49, type: PplBlocks, block_index: 1, state: waiting, event: exit_scheduling, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098335,"output":"igin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:15.224 [info] ppl_id: 00b0"},{"event":"cmd_output","timestamp":1607098335,"output":"bd50-0660-4b13-9b33-cd4d5cd2ec49, type: Ppls, state: queuing, event: exit_scheduling, recovery_count"},{"event":"cmd_output","timestamp":1607098335,"output":": 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test gRPC list_activity"},{"event":"cmd_output","timestamp":1607098335,"output":"() - valid request => paginated results returned (960.4ms)\u001b[0m\n * test gRPC list_grouped() - both"},{"event":"cmd_output","timestamp":1607098335,"output":" scopes, both queue types\u001b[22m\n16:12:15.431 [info] ppl_id: 0c4a4d38-35b4-4c23-a217-d60bf8cf457b, t"},{"event":"cmd_output","timestamp":1607098335,"output":"ype: PplRequests, event: persisted schedule request with request_token: 2b92140f-8005-4217-9a05-1ebf"},{"event":"cmd_output","timestamp":1607098335,"output":"23c8bd7e, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098335,"output":"2m\n16:12:15.434 [info] ppl_id: 0c4a4d38-35b4-4c23-a217-d60bf8cf457b, type: PplRequests, event: per"},{"event":"cmd_output","timestamp":1607098335,"output":"sisted definition for request with request_token: 2b92140f-8005-4217-9a05-1ebf23c8bd7e, origin: Elix"},{"event":"cmd_output","timestamp":1607098335,"output":"ir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:15.442 [inf"},{"event":"cmd_output","timestamp":1607098335,"output":"o] ppl_id: 0c4a4d38-35b4-4c23-a217-d60bf8cf457b, type: Ppls, state: initializing, event: initializi"},{"event":"cmd_output","timestamp":1607098335,"output":"ng, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098335,"output":"2m\n16:12:15.450 [info] Persisted ppl_sub_init for pipeline with ppl_id: 0c4a4d38-35b4-4c23-a217-d6"},{"event":"cmd_output","timestamp":1607098335,"output":"0bf8cf457b: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_su"},{"event":"cmd_output","timestamp":1607098335,"output":"b_inits\">, compile_task_id: nil, error_description: nil, id: 184, in_scheduling: false, init_type: \""},{"event":"cmd_output","timestamp":1607098335,"output":"regular\", inserted_at: ~N[2020-12-04 16:12:15.447955], pipeline_requests: #Ecto.Association.NotLoade"},{"event":"cmd_output","timestamp":1607098335,"output":"d, ppl_id: \"0c4a4d38-35b4-4c23-a217-d60bf8cf457b\", rec"},{"event":"cmd_output","timestamp":1607098335,"output":"overy_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate"},{"event":"cmd_output","timestamp":1607098335,"output":"_request_desc: nil, updated_at: ~N[2020-12-04 16:12:15.447966]}\n\u001b[0m\u001b[22m\n16:12:15.459 [info] ppl"},{"event":"cmd_output","timestamp":1607098335,"output":"_id: 59e26e96-52bb-497b-8775-8274bf3bcb86, type: PplRequests, event: persisted schedule request with"},{"event":"cmd_output","timestamp":1607098335,"output":" request_token: 864287cf-221c-482b-9325-f80fff3c12ec, origin: Elixir.Ppl.PplRequests.Model.PplReques"},{"event":"cmd_output","timestamp":1607098335,"output":"tsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:15.463 [info] ppl_id: 59e26e96-52bb-497b-8775"},{"event":"cmd_output","timestamp":1607098335,"output":"-8274bf3bcb86, type: PplRequests, event: persisted definition for request with request_token: 864287"},{"event":"cmd_output","timestamp":1607098335,"output":"cf-221c-482b-9325-f80fff3c12ec, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_defin"},{"event":"cmd_output","timestamp":1607098335,"output":"ition/3(L76), \n\u001b[0m\u001b[22m\n16:12:15.467 [info] ppl_id: 59e26e96-52bb-497b-8775-8274bf3bcb86, type: "},{"event":"cmd_output","timestamp":1607098335,"output":"Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.Ppl"},{"event":"cmd_output","timestamp":1607098335,"output":"sQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:15.473 [info] Persisted ppl_sub_init for pipe"},{"event":"cmd_output","timestamp":1607098335,"output":"line with ppl_id: 59e26e96-52bb-497b-8775-8274bf3bcb86: %Ppl.PplSubInits.Model.PplSubInits{__meta__:"},{"event":"cmd_output","timestamp":1607098335,"output":" #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil,"},{"event":"cmd_output","timestamp":1607098335,"output":" id: 185, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:15.471724], p"},{"event":"cmd_output","timestamp":1607098335,"output":"ipeline_requests: #Ecto.Association.NotLoaded, ppl_id:"},{"event":"cmd_output","timestamp":1607098335,"output":" \"59e26e96-52bb-497b-8775-8274bf3bcb86\", recovery_count: 0, result: nil, result_reason: nil, state: "},{"event":"cmd_output","timestamp":1607098335,"output":"\"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:15.4"},{"event":"cmd_output","timestamp":1607098335,"output":"71756]}\n\u001b[0m\u001b[22m\n16:12:15.480 [info] ppl_id: 0e081064-8f37-4a11-8398-bcfacca6b578, type: PplRequ"},{"event":"cmd_output","timestamp":1607098335,"output":"ests, event: persisted schedule request with request_token: 6e381721-fd25-42bc-919a-631d943f8858, or"},{"event":"cmd_output","timestamp":1607098335,"output":"igin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:15"},{"event":"cmd_output","timestamp":1607098335,"output":".486 [info] ppl_id: 0e081064-8f37-4a11-8398-bcfacca6b578, type: PplRequests, event: persisted defin"},{"event":"cmd_output","timestamp":1607098335,"output":"ition for request with request_token: 6e381721-fd25-42bc-919a-631d943f8858, origin: Elixir.Ppl.PplRe"},{"event":"cmd_output","timestamp":1607098335,"output":"quests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:15.490 [info] ppl_id: "},{"event":"cmd_output","timestamp":1607098335,"output":"0e081064-8f37-4a11-8398-bcfacca6b578, type: Ppls, state: initializing, event: initializing, recovery"},{"event":"cmd_output","timestamp":1607098335,"output":"_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:15"},{"event":"cmd_output","timestamp":1607098335,"output":".495 [info] Persisted ppl_sub_init for pipeline with ppl_id: 0e081064-8f37-4a11-8398-bcfacca6b578: "},{"event":"cmd_output","timestamp":1607098335,"output":"%Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, c"},{"event":"cmd_output","timestamp":1607098335,"output":"ompile_task_id: nil, error_description: nil, id: 186, in_scheduling: false, init_type: \"regular\", in"},{"event":"cmd_output","timestamp":1607098335,"output":"serted_at: ~N[2020-12-04 16:12:15.493094], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"0e081064-8f37-4a11-8398-bcfacca6b578\", recovery_count:"},{"event":"cmd_output","timestamp":1607098335,"output":" 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_des"},{"event":"cmd_output","timestamp":1607098335,"output":"c: nil, updated_at: ~N[2020-12-04 16:12:15.493106]}\n\u001b[0m\u001b[22m\n16:12:15.499 [info] ppl_id: e2aac0d"},{"event":"cmd_output","timestamp":1607098335,"output":"4-9248-48cd-8539-63dd59ebde04, type: PplRequests, event: persisted schedule request with request_tok"},{"event":"cmd_output","timestamp":1607098335,"output":"en: ede73935-b9dc-4e5e-b0c4-6dea08824c59, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.pr"},{"event":"cmd_output","timestamp":1607098335,"output":"ocess_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:15.502 [info] ppl_id: e2aac0d4-9248-48cd-8539-63dd59ebde0"},{"event":"cmd_output","timestamp":1607098335,"output":"4, type: PplRequests, event: persisted definition for request with request_token: ede73935-b9dc-4e5e"},{"event":"cmd_output","timestamp":1607098335,"output":"-b0c4-6dea08824c59, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76)"},{"event":"cmd_output","timestamp":1607098335,"output":", \n\u001b[0m\u001b[22m\n16:12:15.506 [info] ppl_id: e2aac0d4-9248-48cd-8539-63dd59ebde04, type: Ppls, state:"},{"event":"cmd_output","timestamp":1607098335,"output":" initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.pro"},{"event":"cmd_output","timestamp":1607098335,"output":"cess_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:15.513 [info] Persisted ppl_sub_init for pipeline with pp"},{"event":"cmd_output","timestamp":1607098335,"output":"l_id: e2aac0d4-9248-48cd-8539-63dd59ebde04: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schem"},{"event":"cmd_output","timestamp":1607098335,"output":"a.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 187, in"},{"event":"cmd_output","timestamp":1607098335,"output":"_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:15.511562], pipeline_requ"},{"event":"cmd_output","timestamp":1607098335,"output":"ests: #Ecto.Association.NotLoaded, ppl_id: \"e2aac0d4-9"},{"event":"cmd_output","timestamp":1607098335,"output":"248-48cd-8539-63dd59ebde04\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", t"},{"event":"cmd_output","timestamp":1607098335,"output":"erminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:15.511575]}\n\u001b[0"},{"event":"cmd_output","timestamp":1607098335,"output":"m\u001b[22m\n16:12:15.518 [info] ppl_id: 9c97a8b9-f12a-4958-8bda-09797ceb03b2, type: PplRequests, event:"},{"event":"cmd_output","timestamp":1607098335,"output":" persisted schedule request with request_token: c0d5a39c-79b2-4266-abc4-c8a37617659a, origin: Elixir"},{"event":"cmd_output","timestamp":1607098335,"output":".Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:15.520 [info] "},{"event":"cmd_output","timestamp":1607098335,"output":" ppl_id: 9c97a8b9-f12a-4958-8bda-09797ceb03b2, type: PplRequests, event: persisted definition for re"},{"event":"cmd_output","timestamp":1607098335,"output":"quest with request_token: c0d5a39c-79b2-4266-abc4-c8a37617659a, origin: Elixir.Ppl.PplRequests.Model"},{"event":"cmd_output","timestamp":1607098335,"output":".PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:15.523 [info] ppl_id: 9c97a8b9-f12"},{"event":"cmd_output","timestamp":1607098335,"output":"a-4958-8bda-09797ceb03b2, type: Ppls, state: initializing, event: initializing, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098335,"output":"rigin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:15.533 [info] "},{"event":"cmd_output","timestamp":1607098335,"output":" Persisted ppl_sub_init for pipeline with ppl_id: 9c97a8b9-f12a-4958-8bda-09797ceb03b2: %Ppl.PplSubI"},{"event":"cmd_output","timestamp":1607098335,"output":"nits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_"},{"event":"cmd_output","timestamp":1607098335,"output":"id: nil, error_description: nil, id: 188, in_scheduling: false, init_type: \"regular\", inserted_at: ~"},{"event":"cmd_output","timestamp":1607098335,"output":"N[2020-12-04 16:12:15.531484], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"9c97a8b9-f12a-4958-8bda-09797ceb03b2\", recovery_count: 0, result: "},{"event":"cmd_output","timestamp":1607098335,"output":"nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, upda"},{"event":"cmd_output","timestamp":1607098335,"output":"ted_at: ~N[2020-12-04 16:12:15.531497]}\n\u001b[0m\u001b[22m\n16:12:15.539 [info] ppl_id: 1807f765-d430-431f-"},{"event":"cmd_output","timestamp":1607098335,"output":"bc59-4af5f2f31bf3, type: PplRequests, event: persisted schedule request with request_token: 2eee40da"},{"event":"cmd_output","timestamp":1607098335,"output":"-845e-4261-af04-9e544cd65ac5, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_respon"},{"event":"cmd_output","timestamp":1607098335,"output":"se/2(L55), \n\u001b[0m\u001b[22m\n16:12:15.540 [info] ppl_id: 1807f765-d430-431f-bc59-4af5f2f31bf3, type: Ppl"},{"event":"cmd_output","timestamp":1607098335,"output":"Requests, event: persisted definition for request with request_token: 2eee40da-845e-4261-af04-9e544c"},{"event":"cmd_output","timestamp":1607098335,"output":"d65ac5, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098335,"output":"m\n16:12:15.545 [info] ppl_id: 1807f765-d430-431f-bc59-4af5f2f31bf3, type: Ppls, state: initializin"},{"event":"cmd_output","timestamp":1607098335,"output":"g, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_respons"},{"event":"cmd_output","timestamp":1607098335,"output":"e/2(L124), \n\u001b[0m\u001b[22m\n16:12:15.549 [info] Persisted ppl_sub_init for pipeline with ppl_id: 1807f7"},{"event":"cmd_output","timestamp":1607098335,"output":"65-d430-431f-bc59-4af5f2f31bf3: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:"},{"event":"cmd_output","timestamp":1607098335,"output":"loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 189, in_scheduling:"},{"event":"cmd_output","timestamp":1607098335,"output":" false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:15.547570], pipeline_requests: #Ecto."},{"event":"cmd_output","timestamp":1607098335,"output":"Association.NotLoaded, ppl_id: \"1807f765-d430-431f-bc5"},{"event":"cmd_output","timestamp":1607098335,"output":"9-4af5f2f31bf3\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_req"},{"event":"cmd_output","timestamp":1607098335,"output":"uest: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:15.547598]}\n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098335,"output":"2:15.554 [info] ppl_id: 44bf22d5-ba00-4ff8-93ba-b92f9276e89e, type: PplRequests, event: persisted s"},{"event":"cmd_output","timestamp":1607098335,"output":"chedule request with request_token: 993877e0-ffae-40cc-b08d-fa7f8c5c76fa, origin: Elixir.Ppl.PplRequ"},{"event":"cmd_output","timestamp":1607098335,"output":"ests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:15.560 [info] ppl_id: 44b"},{"event":"cmd_output","timestamp":1607098335,"output":"f22d5-ba00-4ff8-93ba-b92f9276e89e, type: PplRequests, event: persisted definition for request with r"},{"event":"cmd_output","timestamp":1607098335,"output":"equest_token: 993877e0-ffae-40cc-b08d-fa7f8c5c76fa, origin: Elixir.Ppl.PplRequests.Model.PplRequests"},{"event":"cmd_output","timestamp":1607098335,"output":"Queries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:15.563 [info] ppl_id: 44bf22d5-ba00-4ff8-93ba-"},{"event":"cmd_output","timestamp":1607098335,"output":"b92f9276e89e, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098335,"output":"r.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:15.567 [info] Persisted p"},{"event":"cmd_output","timestamp":1607098335,"output":"pl_sub_init for pipeline with ppl_id: 44bf22d5-ba00-4ff8-93ba-b92f9276e89e: %Ppl.PplSubInits.Model.P"},{"event":"cmd_output","timestamp":1607098335,"output":"plSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, err"},{"event":"cmd_output","timestamp":1607098335,"output":"or_description: nil, id: 190, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04"},{"event":"cmd_output","timestamp":1607098335,"output":" 16:12:15.565894], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"44bf22d5-ba00-4ff8-93ba-b92f9276e89e\", recovery_count: 0, result: nil, result_"},{"event":"cmd_output","timestamp":1607098335,"output":"reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2"},{"event":"cmd_output","timestamp":1607098335,"output":"020-12-04 16:12:15.565906]}\n\u001b[0m\u001b[22m\n16:12:15.574 [info] ppl_id: 67613c39-77d5-47a3-bfb9-1a5a33e"},{"event":"cmd_output","timestamp":1607098335,"output":"e6390, type: PplRequests, event: persisted schedule request with request_token: 68106a5e-ede4-4309-9"},{"event":"cmd_output","timestamp":1607098335,"output":"851-23ecedd90998, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \r"},{"event":"cmd_output","timestamp":1607098335,"output":"\n\u001b[0m\u001b[22m\n16:12:15.576 [info] ppl_id: 67613c39-77d5-47a3-bfb9-1a5a33ee6390, type: PplRequests, ev"},{"event":"cmd_output","timestamp":1607098335,"output":"ent: persisted definition for request with request_token: 68106a5e-ede4-4309-9851-23ecedd90998, orig"},{"event":"cmd_output","timestamp":1607098335,"output":"in: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:15."},{"event":"cmd_output","timestamp":1607098335,"output":"578 [info] ppl_id: 67613c39-77d5-47a3-bfb9-1a5a33ee6390, type: Ppls, state: initializing, event: in"},{"event":"cmd_output","timestamp":1607098335,"output":"itializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \r"},{"event":"cmd_output","timestamp":1607098335,"output":"\n\u001b[0m\u001b[22m\n16:12:15.582 [info] Persisted ppl_sub_init for pipeline with ppl_id: 67613c39-77d5-47a3"},{"event":"cmd_output","timestamp":1607098335,"output":"-bfb9-1a5a33ee6390: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pip"},{"event":"cmd_output","timestamp":1607098335,"output":"eline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 191, in_scheduling: false, init"},{"event":"cmd_output","timestamp":1607098335,"output":"_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:15.580975], pipeline_requests: #Ecto.Association."},{"event":"cmd_output","timestamp":1607098335,"output":"NotLoaded, ppl_id: \"67613c39-77d5-47a3-bfb9-1a5a33ee63"},{"event":"cmd_output","timestamp":1607098335,"output":"90\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, t"},{"event":"cmd_output","timestamp":1607098335,"output":"erminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:15.580985]}\n\u001b[0m\u001b[22m\n16:12:15.584 [in"},{"event":"cmd_output","timestamp":1607098335,"output":"fo] Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.STM"},{"event":"cmd_output","timestamp":1607098335,"output":"Handler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHan"},{"event":"cmd_output","timestamp":1607098335,"output":"dler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], co"},{"event":"cmd_output","timestamp":1607098335,"output":"oling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher_cb:"},{"event":"cmd_output","timestamp":1607098335,"output":" #Function<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, retur"},{"event":"cmd_output","timestamp":1607098335,"output":"ning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl"},{"event":"cmd_output","timestamp":1607098335,"output":".Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:15.585 [info] Periodic from module Elix"},{"event":"cmd_output","timestamp":1607098335,"output":"ir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 100"},{"event":"cmd_output","timestamp":1607098335,"output":" ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args: %{"},{"event":"cmd_output","timestamp":1607098335,"output":"allowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.P"},{"event":"cmd_output","timestamp":1607098335,"output":"pls.Model.Ppls, observed_state: \"pending\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandle"},{"event":"cmd_output","timestamp":1607098335,"output":"r.PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state"},{"event":"cmd_output","timestamp":1607098335,"output":", :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervis"},{"event":"cmd_output","timestamp":1607098335,"output":"or}\n\u001b[0m\u001b[22m\n16:12:15.586 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.QueuingState wi"},{"event":"cmd_output","timestamp":1607098335,"output":"th name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_"},{"event":"cmd_output","timestamp":1607098335,"output":"up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{allowed_states: [\"queuing\", \"running\","},{"event":"cmd_output","timestamp":1607098335,"output":" \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", publi"},{"event":"cmd_output","timestamp":1607098335,"output":"sher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, re"},{"event":"cmd_output","timestamp":1607098335,"output":"turning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: "},{"event":"cmd_output","timestamp":1607098335,"output":"Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:15.587 [info] Periodic from module E"},{"event":"cmd_output","timestamp":1607098335,"output":"lixir.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHandler.RunningState :: period: "},{"event":"cmd_output","timestamp":1607098335,"output":"100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring args:"},{"event":"cmd_output","timestamp":1607098335,"output":" %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Mo"},{"event":"cmd_output","timestamp":1607098335,"output":"del.Ppls, observed_state: \"running\", publisher_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler.Run"},{"event":"cmd_output","timestamp":1607098335,"output":"ningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :re"},{"event":"cmd_output","timestamp":1607098335,"output":"sult, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n"},{"event":"cmd_output","timestamp":1607098335,"output":"\u001b[0m\u001b[22m\n16:12:15.588 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.StoppingState with n"},{"event":"cmd_output","timestamp":1607098335,"output":"ame Elixir.Ppl.Ppls.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\""},{"event":"cmd_output","timestamp":1607098335,"output":", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], co"},{"event":"cmd_output","timestamp":1607098335,"output":"oling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"stopping\", publisher_cb: #F"},{"event":"cmd_output","timestamp":1607098335,"output":"unction<0.71803493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:"},{"event":"cmd_output","timestamp":1607098335,"output":"id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Mo"},{"event":"cmd_output","timestamp":1607098335,"output":"del.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:15.590 [info] Periodic from module Elixir.Ppl.P"},{"event":"cmd_output","timestamp":1607098335,"output":"plSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: perio"},{"event":"cmd_output","timestamp":1607098335,"output":"d: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recur"},{"event":"cmd_output","timestamp":1607098335,"output":"ring args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubIni"},{"event":"cmd_output","timestamp":1607098335,"output":"ts.Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning:"},{"event":"cmd_output","timestamp":1607098335,"output":" [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplS"},{"event":"cmd_output","timestamp":1607098335,"output":"ubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:15.591 [info] Periodic from mo"},{"event":"cmd_output","timestamp":1607098335,"output":"dule Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler.Fet"},{"event":"cmd_output","timestamp":1607098335,"output":"chingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-Fet"},{"event":"cmd_output","timestamp":1607098335,"output":"chingState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"done\"], cooling_ti"},{"event":"cmd_output","timestamp":1607098335,"output":"me_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fetching\", publisher_"},{"event":"cmd_output","timestamp":1607098335,"output":"cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :r"},{"event":"cmd_output","timestamp":1607098335,"output":"ecovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098335,"output":"2m\n16:12:15.592 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CompilationState wit"},{"event":"cmd_output","timestamp":1607098335,"output":"h name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 100 ms, metric_name: {\"Ppl.beho"},{"event":"cmd_output","timestamp":1607098335,"output":"lder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurring args: %{allowed_states: ["},{"event":"cmd_output","timestamp":1607098335,"output":"\"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubI"},{"event":"cmd_output","timestamp":1607098335,"output":"nits.Model.PplSubInits, observed_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, retu"},{"event":"cmd_output","timestamp":1607098335,"output":"rning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Pp"},{"event":"cmd_output","timestamp":1607098335,"output":"l.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:15.593 [info] Periodic f"},{"event":"cmd_output","timestamp":1607098335,"output":"rom module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHa"},{"event":"cmd_output","timestamp":1607098335,"output":"ndler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-ST"},{"event":"cmd_output","timestamp":1607098335,"output":"MHandler-RegularInitState\"]}, recurring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, initi"},{"event":"cmd_output","timestamp":1607098335,"output":"al_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_init\", publisher_cb: :skip, re"},{"event":"cmd_output","timestamp":1607098335,"output":"po: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count"},{"event":"cmd_output","timestamp":1607098335,"output":", :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:15."},{"event":"cmd_output","timestamp":1607098335,"output":"594 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.InitializingState with name Elixir."},{"event":"cmd_output","timestamp":1607098335,"output":"Ppl.PplBlocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", "},{"event":"cmd_output","timestamp":1607098335,"output":"[\"Ppl-PplBlocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", "},{"event":"cmd_output","timestamp":1607098335,"output":"\"waiting\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_stat"},{"event":"cmd_output","timestamp":1607098335,"output":"e: \"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :up"},{"event":"cmd_output","timestamp":1607098335,"output":"dated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplB"},{"event":"cmd_output","timestamp":1607098335,"output":"locks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:15.595 [info] Periodic from module Elixir.Ppl.PplB"},{"event":"cmd_output","timestamp":1607098335,"output":"locks.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler.WaitingState :: period: 1000"},{"event":"cmd_output","timestamp":1607098335,"output":" ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurring arg"},{"event":"cmd_output","timestamp":1607098335,"output":"s: %{allowed_states: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBloc"},{"event":"cmd_output","timestamp":1607098335,"output":"ks.Model.PplBlocks, observed_state: \"waiting\", publisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks."},{"event":"cmd_output","timestamp":1607098335,"output":"STMHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_a"},{"event":"cmd_output","timestamp":1607098335,"output":"t, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, "},{"event":"cmd_output","timestamp":1607098335,"output":"task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:15.596 [info] Periodic from module Elixir.Ppl.PplBlocks.S"},{"event":"cmd_output","timestamp":1607098335,"output":"TMHandler.RunningState with name Elixir.Ppl.PplBlocks.STMHandler.RunningState :: period: 1000 ms, me"},{"event":"cmd_output","timestamp":1607098335,"output":"tric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, recurring args: %{al"},{"event":"cmd_output","timestamp":1607098335,"output":"lowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Mo"},{"event":"cmd_output","timestamp":1607098335,"output":"del.PplBlocks, observed_state: \"running\", publisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMH"},{"event":"cmd_output","timestamp":1607098335,"output":"andler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :"},{"event":"cmd_output","timestamp":1607098335,"output":"state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplB"},{"event":"cmd_output","timestamp":1607098335,"output":"locks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:15.597 [info] Periodic from module Elixir.Ppl.PplB"},{"event":"cmd_output","timestamp":1607098335,"output":"locks.STMHandler.StoppingState with name Elixir.Ppl.PplBlocks.STMHandler.StoppingState :: period: 10"},{"event":"cmd_output","timestamp":1607098335,"output":"00 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurring "},{"event":"cmd_output","timestamp":1607098335,"output":"args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Mod"},{"event":"cmd_output","timestamp":1607098335,"output":"el.PplBlocks, observed_state: \"stopping\", publisher_cb: #Function<0.104215991/1 in Ppl.PplBlocks.STM"},{"event":"cmd_output","timestamp":1607098335,"output":"Handler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at,"},{"event":"cmd_output","timestamp":1607098335,"output":" :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.Pp"},{"event":"cmd_output","timestamp":1607098335,"output":"lBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:15.599 [info] Periodic from module Elixir.Block."},{"event":"cmd_output","timestamp":1607098335,"output":"Blocks.STMHandler.InitializingState with name Elixir.Block.Blocks.STMHandler.InitializingState :: pe"},{"event":"cmd_output","timestamp":1607098335,"output":"riod: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, "},{"event":"cmd_output","timestamp":1607098335,"output":"recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Blo"},{"event":"cmd_output","timestamp":1607098335,"output":"cks.Model.Blocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Block.EctoRepo, returni"},{"event":"cmd_output","timestamp":1607098335,"output":"ng: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks"},{"event":"cmd_output","timestamp":1607098335,"output":".Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:15.600 [info] Periodic from module Elixir."},{"event":"cmd_output","timestamp":1607098335,"output":"Block.Blocks.STMHandler.RunningState with name Elixir.Block.Blocks.STMHandler.RunningState :: period"},{"event":"cmd_output","timestamp":1607098335,"output":": 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-RunningState\"]}, recurring"},{"event":"cmd_output","timestamp":1607098335,"output":" args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block"},{"event":"cmd_output","timestamp":1607098335,"output":".Blocks.Model.Blocks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returnin"},{"event":"cmd_output","timestamp":1607098335,"output":"g: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks."},{"event":"cmd_output","timestamp":1607098335,"output":"Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:15.601 [info] Periodic from module Elixir.B"},{"event":"cmd_output","timestamp":1607098335,"output":"lock.Blocks.STMHandler.StoppingState with name Elixir.Block.Blocks.STMHandler.StoppingState :: perio"},{"event":"cmd_output","timestamp":1607098335,"output":"d: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-StoppingState\"]}, recurri"},{"event":"cmd_output","timestamp":1607098335,"output":"ng args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.M"},{"event":"cmd_output","timestamp":1607098335,"output":"odel.Blocks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id,"},{"event":"cmd_output","timestamp":1607098335,"output":" :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Bl"},{"event":"cmd_output","timestamp":1607098335,"output":"ocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:15.602 [info] Periodic from module Elixir.Block.Tas"},{"event":"cmd_output","timestamp":1607098335,"output":"ks.STMHandler.PendingState with name Elixir.Block.Tasks.STMHandler.PendingState :: period: 100 ms, m"},{"event":"cmd_output","timestamp":1607098335,"output":"etric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingState\"]}, recurring args: %{all"},{"event":"cmd_output","timestamp":1607098335,"output":"owed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Tasks.Model.Tasks, obser"},{"event":"cmd_output","timestamp":1607098335,"output":"ved_state: \"pending\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request"},{"event":"cmd_output","timestamp":1607098335,"output":", :updated_at, :state, :recovery_count, :block_id, :build_request_id], schema: Block.Tasks.Model.Tas"},{"event":"cmd_output","timestamp":1607098335,"output":"ks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:15.603 [info] Periodic from module Elixir.Block.Tasks"},{"event":"cmd_output","timestamp":1607098335,"output":".STMHandler.RunningState with name Elixir.Block.Tasks.STMHandler.RunningState :: period: 100 ms, met"},{"event":"cmd_output","timestamp":1607098335,"output":"ric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningState\"]}, recurring args: %{allow"},{"event":"cmd_output","timestamp":1607098335,"output":"ed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.T"},{"event":"cmd_output","timestamp":1607098335,"output":"asks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :termin"},{"event":"cmd_output","timestamp":1607098335,"output":"ate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task"},{"event":"cmd_output","timestamp":1607098335,"output":"_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:15.604 [info] Periodic from module Elixir.Block.Tasks.STMHand"},{"event":"cmd_output","timestamp":1607098335,"output":"ler.StoppingState with name Elixir.Block.Tasks.STMHandler.StoppingState :: period: 100 ms, metric_na"},{"event":"cmd_output","timestamp":1607098335,"output":"me: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]}, recurring args: %{allowed_st"},{"event":"cmd_output","timestamp":1607098335,"output":"ates: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_s"},{"event":"cmd_output","timestamp":1607098335,"output":"tate: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :u"},{"event":"cmd_output","timestamp":1607098335,"output":"pdated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :s"},{"event":"cmd_output","timestamp":1607098335,"output":"kip}\n\u001b[0m\u001b[22m\n16:12:15.706 [info] ppl_id: 0c4a4d38-35b4-4c23-a217-d60bf8cf457b, type: PplRequest"},{"event":"cmd_output","timestamp":1607098335,"output":"s, event: persisted source_args for pipeline: 0c4a4d38-35b4-4c23-a217-d60bf8cf457b, origin: Elixir.P"},{"event":"cmd_output","timestamp":1607098335,"output":"pl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:15.712 [info] ppl_"},{"event":"cmd_output","timestamp":1607098335,"output":"id: 0c4a4d38-35b4-4c23-a217-d60bf8cf457b, type: PplSubInits, state: fetching, event: exit_scheduling"},{"event":"cmd_output","timestamp":1607098335,"output":", recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:15.7"},{"event":"cmd_output","timestamp":1607098335,"output":"41 [info] ppl_id: 0c4a4d38-35b4-4c23-a217-d60bf8cf457b, type: PplSubInits, state: regular_init, eve"},{"event":"cmd_output","timestamp":1607098335,"output":"nt: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b["},{"event":"cmd_output","timestamp":1607098335,"output":"0m\u001b[22m\n16:12:15.762 [info] ppl_id: 0c4a4d38-35b4-4c23-a217-d60bf8cf457b, type: PplRequests, event"},{"event":"cmd_output","timestamp":1607098335,"output":": persisted definition for request with request_token: 2b92140f-8005-4217-9a05-1ebf23c8bd7e, origin:"},{"event":"cmd_output","timestamp":1607098335,"output":" Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:15.772"},{"event":"cmd_output","timestamp":1607098335,"output":" [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"q"},{"event":"cmd_output","timestamp":1607098335,"output":"ueues\">, inserted_at: ~N[2020-12-04 16:12:15.770780], name: \"master-.semaphore/semaphore.yml\", organ"},{"event":"cmd_output","timestamp":1607098335,"output":"ization_id: \"1807d46e-417f-43dc-9985-6bbaf038c5f4\", project_id: \"123\", queue_id: \"fc11df91-3109-43f5"},{"event":"cmd_output","timestamp":1607098335,"output":"-97de-c429ff6e3e86\", scope: \"project\", updated_at: ~N[2020-12-04 16:12:15.770793], user_generated: f"},{"event":"cmd_output","timestamp":1607098335,"output":"alse}}\n\u001b[0m\u001b[22m\n16:12:15.777 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.Re"},{"event":"cmd_output","timestamp":1607098335,"output":"gularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:15.777 [info] ppl_id: 0c4a4d38-35b4-4c23-a217-d6"},{"event":"cmd_output","timestamp":1607098335,"output":"0bf8cf457b, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098335,"output":" origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:15.7"},{"event":"cmd_output","timestamp":1607098335,"output":"79 [info] ppl_id: 0c4a4d38-35b4-4c23-a217-d60bf8cf457b, type: PplSubInits, state: done, result: pas"},{"event":"cmd_output","timestamp":1607098335,"output":"sed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L9"},{"event":"cmd_output","timestamp":1607098335,"output":"0), \n\u001b[0m\u001b[22m\n16:12:15.788 [info] ppl_id: 0c4a4d38-35b4-4c23-a217-d60bf8cf457b, type: PplBlocks,"},{"event":"cmd_output","timestamp":1607098335,"output":" block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.ST"},{"event":"cmd_output","timestamp":1607098335,"output":"M.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:15.794 [info] ppl_id: 0c4a4d38-35b4-4c23-a217-d6"},{"event":"cmd_output","timestamp":1607098335,"output":"0bf8cf457b, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Lo"},{"event":"cmd_output","timestamp":1607098335,"output":"oper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:15.806 [info] ppl_id: 0c4a4d38-35b4-4c23-"},{"event":"cmd_output","timestamp":1607098335,"output":"a217-d60bf8cf457b, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098335,"output":"ixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:15.820 [info] ppl_id: 0c4a4d38-35b"},{"event":"cmd_output","timestamp":1607098335,"output":"4-4c23-a217-d60bf8cf457b, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098335,"output":"gin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:15.826 [info] ppl_id: 59e26"},{"event":"cmd_output","timestamp":1607098335,"output":"e96-52bb-497b-8775-8274bf3bcb86, type: PplRequests, event: persisted source_args for pipeline: 59e26"},{"event":"cmd_output","timestamp":1607098335,"output":"e96-52bb-497b-8775-8274bf3bcb86, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_sour"},{"event":"cmd_output","timestamp":1607098335,"output":"ce/2(L89), \n\u001b[0m\u001b[22m\n16:12:15.828 [info] PplBlocks WaitingState STM is scheduling block 0 from p"},{"event":"cmd_output","timestamp":1607098335,"output":"ipeline: \"0c4a4d38-35b4-4c23-a217-d60bf8cf457b\"\n\u001b[0m\u001b[22m\n16:12:15.830 [info] ppl_id: 59e26e96-52"},{"event":"cmd_output","timestamp":1607098335,"output":"bb-497b-8775-8274bf3bcb86, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_coun"},{"event":"cmd_output","timestamp":1607098335,"output":"t: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:15.833 [info] bloc"},{"event":"cmd_output","timestamp":1607098335,"output":"k_id: e98edc9a-4b97-4699-b7f8-61b8a84dd8c6, type: BlockRequests, event: persisted block run request "},{"event":"cmd_output","timestamp":1607098335,"output":"from ppl 0c4a4d38-35b4-4c23-a217-d60bf8cf457b for block 0, origin: Elixir.Block.BlockRequests.Model."},{"event":"cmd_output","timestamp":1607098335,"output":"BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:15.836 [info] block_id: e98edc9a-4"},{"event":"cmd_output","timestamp":1607098335,"output":"b97-4699-b7f8-61b8a84dd8c6, type: Blocks, state: initializing, event: initializing, recovery_count: "},{"event":"cmd_output","timestamp":1607098335,"output":"0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:15.841 [info] "},{"event":"cmd_output","timestamp":1607098335,"output":"Block 0 of pipeline with id: 0c4a4d38-35b4-4c23-a217-d60bf8cf457b scheduled in block service with id"},{"event":"cmd_output","timestamp":1607098335,"output":": : \"e98edc9a-4b97-4699-b7f8-61b8a84dd8c6\"\n\u001b[0m\u001b[22m\n16:12:15.843 [info] ppl_id: 0c4a4d38-35b4-4c"},{"event":"cmd_output","timestamp":1607098335,"output":"23-a217-d60bf8cf457b, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recov"},{"event":"cmd_output","timestamp":1607098335,"output":"ery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:15.844 [inf"},{"event":"cmd_output","timestamp":1607098335,"output":"o] block_id: e98edc9a-4b97-4699-b7f8-61b8a84dd8c6, type: BlockRequests, event: persisted build and "},{"event":"cmd_output","timestamp":1607098335,"output":"sub_ppl details for block_request: e98edc9a-4b97-4699-b7f8-61b8a84dd8c6, origin: Elixir.Block.BlockR"},{"event":"cmd_output","timestamp":1607098335,"output":"equests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:15.846 [info] block_id: "},{"event":"cmd_output","timestamp":1607098335,"output":"e98edc9a-4b97-4699-b7f8-61b8a84dd8c6, type: Tasks, state: pending, event: created, recovery_count: 0"},{"event":"cmd_output","timestamp":1607098335,"output":", origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:15.84"},{"event":"cmd_output","timestamp":1607098335,"output":"8 [info] block_id: e98edc9a-4b97-4699-b7f8-61b8a84dd8c6, type: Blocks, state: running, event: exit_"},{"event":"cmd_output","timestamp":1607098335,"output":"scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098335,"output":"16:12:15.859 [info] ppl_id: 59e26e96-52bb-497b-8775-8274bf3bcb86, type: PplSubInits, state: regular"},{"event":"cmd_output","timestamp":1607098335,"output":"_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1("},{"event":"cmd_output","timestamp":1607098335,"output":"L90), \n\u001b[0m\u001b[22m\n16:12:15.866 [info] block_id: e98edc9a-4b97-4699-b7f8-61b8a84dd8c6, type: Tasks,"},{"event":"cmd_output","timestamp":1607098335,"output":" state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state"},{"event":"cmd_output","timestamp":1607098335,"output":"_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:15.894 [info] ppl_id: 59e26e96-52bb-497b-8775-8274bf3bcb86, type"},{"event":"cmd_output","timestamp":1607098335,"output":": PplRequests, event: persisted definition for request with request_token: 864287cf-221c-482b-9325-f"},{"event":"cmd_output","timestamp":1607098335,"output":"80fff3c12ec, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098335,"output":"m\u001b[22m\n16:12:15.903 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitSt"},{"event":"cmd_output","timestamp":1607098335,"output":"ate.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:15.903 [info] ppl_id: 59e26e96-52bb-497b-8775-8274bf3bcb86,"},{"event":"cmd_output","timestamp":1607098335,"output":" type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098335,"output":"ixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:15.906 [info] "},{"event":"cmd_output","timestamp":1607098335,"output":"ppl_id: 59e26e96-52bb-497b-8775-8274bf3bcb86, type: PplSubInits, state: done, result: passed, event:"},{"event":"cmd_output","timestamp":1607098335,"output":" exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098335,"output":"[22m\n16:12:15.916 [info] ppl_id: 59e26e96-52bb-497b-8775-8274bf3bcb86, type: PplBlocks, block_inde"},{"event":"cmd_output","timestamp":1607098335,"output":"x: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_"},{"event":"cmd_output","timestamp":1607098335,"output":"state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:15.920 [info] ppl_id: 59e26e96-52bb-497b-8775-8274bf3bcb86,"},{"event":"cmd_output","timestamp":1607098335,"output":" type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Im"},{"event":"cmd_output","timestamp":1607098335,"output":"pl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:15.932 [info] ppl_id: 59e26e96-52bb-497b-8775-8274bf"},{"event":"cmd_output","timestamp":1607098335,"output":"3bcb86, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper"},{"event":"cmd_output","timestamp":1607098335,"output":".STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:15.934 [info] block_id: e98edc9a-4b97-4699-b7"},{"event":"cmd_output","timestamp":1607098335,"output":"f8-61b8a84dd8c6, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098335,"output":".Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:15.941 [info] ppl_id: 0e081064-8f37-4a"},{"event":"cmd_output","timestamp":1607098335,"output":"11-8398-bcfacca6b578, type: PplRequests, event: persisted source_args for pipeline: 0e081064-8f37-4a"},{"event":"cmd_output","timestamp":1607098335,"output":"11-8398-bcfacca6b578, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), "},{"event":"cmd_output","timestamp":1607098335,"output":"\n\u001b[0m\u001b[22m\n16:12:15.944 [info] ppl_id: 0e081064-8f37-4a11-8398-bcfacca6b578, type: PplSubInits, s"},{"event":"cmd_output","timestamp":1607098335,"output":"tate: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_"},{"event":"cmd_output","timestamp":1607098335,"output":"change/1(L90), \n\u001b[0m\u001b[22m\n16:12:15.944 [info] block_id: e98edc9a-4b97-4699-b7f8-61b8a84dd8c6, typ"},{"event":"cmd_output","timestamp":1607098335,"output":"e: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.lo"},{"event":"cmd_output","timestamp":1607098335,"output":"g_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:15.956 [info] ppl_id: 0c4a4d38-35b4-4c23-a217-d60bf8cf457"},{"event":"cmd_output","timestamp":1607098335,"output":"b, block_id: e98edc9a-4b97-4699-b7f8-61b8a84dd8c6, type: PplBlocks, block_index: 0, state: done, res"},{"event":"cmd_output","timestamp":1607098335,"output":"ult: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_cha"},{"event":"cmd_output","timestamp":1607098335,"output":"nge/1(L90), \n\u001b[0m\u001b[22m\n16:12:15.969 [info] ppl_id: 0e081064-8f37-4a11-8398-bcfacca6b578, type: Pp"},{"event":"cmd_output","timestamp":1607098335,"output":"lSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM"},{"event":"cmd_output","timestamp":1607098335,"output":".Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:15.973 [info] ppl_id: 0c4a4d38-35b4-4c23-a217-d60"},{"event":"cmd_output","timestamp":1607098335,"output":"bf8cf457b, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098335,"output":"n: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:15.991 [info] ppl_id: 0e08106"},{"event":"cmd_output","timestamp":1607098335,"output":"4-8f37-4a11-8398-bcfacca6b578, type: PplRequests, event: persisted definition for request with reque"},{"event":"cmd_output","timestamp":1607098335,"output":"st_token: 6e381721-fd25-42bc-919a-631d943f8858, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQuer"},{"event":"cmd_output","timestamp":1607098336,"output":"ies.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:16.003 [info] Queue persisted: {:ok, %Ppl.Queues.M"},{"event":"cmd_output","timestamp":1607098336,"output":"odel.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:12:16."},{"event":"cmd_output","timestamp":1607098336,"output":"002058], name: \"master-.semaphore/semaphore.yml\", organization_id: \"09538c4c-2ee8-45d3-8f5b-b3c55977"},{"event":"cmd_output","timestamp":1607098336,"output":"dcd0\", project_id: \"456\", queue_id: \"fe9198a0-6741-4d2b-8ef5-3c2e4b33b1fd\", scope: \"project\", update"},{"event":"cmd_output","timestamp":1607098336,"output":"d_at: ~N[2020-12-04 16:12:16.002068], user_generated: false}}\n\u001b[0m\u001b[22m\n16:12:16.010 [info] event"},{"event":"cmd_output","timestamp":1607098336,"output":": created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098336,"output":"16:12:16.010 [info] ppl_id: 0e081064-8f37-4a11-8398-bcfacca6b578, type: PplBlocks, block_index: 0, "},{"event":"cmd_output","timestamp":1607098336,"output":"state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.Re"},{"event":"cmd_output","timestamp":1607098336,"output":"gularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:16.015 [info] ppl_id: 0e081064-8f37-4a11-8398-bc"},{"event":"cmd_output","timestamp":1607098336,"output":"facca6b578, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: "},{"event":"cmd_output","timestamp":1607098336,"output":"0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.016 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098336,"output":" 59e26e96-52bb-497b-8775-8274bf3bcb86, type: Ppls, state: running, event: exit_scheduling, recovery_"},{"event":"cmd_output","timestamp":1607098336,"output":"count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.025 [info] "},{"event":"cmd_output","timestamp":1607098336,"output":"PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"59e26e96-52bb-497b-8775-8274bf3bcb8"},{"event":"cmd_output","timestamp":1607098336,"output":"6\"\n\u001b[0m\u001b[22m\n16:12:16.027 [info] ppl_id: 0e081064-8f37-4a11-8398-bcfacca6b578, type: Ppls, state:"},{"event":"cmd_output","timestamp":1607098336,"output":" pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change"},{"event":"cmd_output","timestamp":1607098336,"output":"/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.035 [info] ppl_id: 0e081064-8f37-4a11-8398-bcfacca6b578, type: PplBl"},{"event":"cmd_output","timestamp":1607098336,"output":"ocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loop"},{"event":"cmd_output","timestamp":1607098336,"output":"er.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.040 [info] block_id: b2182b0e-5a1b-445b-"},{"event":"cmd_output","timestamp":1607098336,"output":"92e7-def81e2894ba, type: BlockRequests, event: persisted block run request from ppl 59e26e96-52bb-49"},{"event":"cmd_output","timestamp":1607098336,"output":"7b-8775-8274bf3bcb86 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.proc"},{"event":"cmd_output","timestamp":1607098336,"output":"ess_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:16.042 [info] block_id: b2182b0e-5a1b-445b-92e7-def81e2894b"},{"event":"cmd_output","timestamp":1607098336,"output":"a, type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.B"},{"event":"cmd_output","timestamp":1607098336,"output":"locks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:16.045 [info] ppl_id: 0e081064-8f37-4a1"},{"event":"cmd_output","timestamp":1607098336,"output":"1-8398-bcfacca6b578, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098336,"output":"Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.047 [info] Block 0 of pipelin"},{"event":"cmd_output","timestamp":1607098336,"output":"e with id: 59e26e96-52bb-497b-8775-8274bf3bcb86 scheduled in block service with id: : \"b2182b0e-5a1b"},{"event":"cmd_output","timestamp":1607098336,"output":"-445b-92e7-def81e2894ba\"\n\u001b[0m\u001b[22m\n16:12:16.051 [info] block_id: b2182b0e-5a1b-445b-92e7-def81e28"},{"event":"cmd_output","timestamp":1607098336,"output":"94ba, type: BlockRequests, event: persisted build and sub_ppl details for block_request: b2182b0e-5a"},{"event":"cmd_output","timestamp":1607098336,"output":"1b-445b-92e7-def81e2894ba, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_buil"},{"event":"cmd_output","timestamp":1607098336,"output":"d/2(L41), \n\u001b[0m\u001b[22m\n16:12:16.053 [info] ppl_id: 59e26e96-52bb-497b-8775-8274bf3bcb86, type: PplB"},{"event":"cmd_output","timestamp":1607098336,"output":"locks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loo"},{"event":"cmd_output","timestamp":1607098336,"output":"per.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.058 [info] block_id: b2182b0e-5a1b-445b"},{"event":"cmd_output","timestamp":1607098336,"output":"-92e7-def81e2894ba, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.B"},{"event":"cmd_output","timestamp":1607098336,"output":"lock.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:16.059 [info] ppl_id: "},{"event":"cmd_output","timestamp":1607098336,"output":"e2aac0d4-9248-48cd-8539-63dd59ebde04, type: PplRequests, event: persisted source_args for pipeline: "},{"event":"cmd_output","timestamp":1607098336,"output":"e2aac0d4-9248-48cd-8539-63dd59ebde04, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert"},{"event":"cmd_output","timestamp":1607098336,"output":"_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:16.061 [info] block_id: b2182b0e-5a1b-445b-92e7-def81e2894ba, ty"},{"event":"cmd_output","timestamp":1607098336,"output":"pe: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Imp"},{"event":"cmd_output","timestamp":1607098336,"output":"l.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.063 [info] ppl_id: e2aac0d4-9248-48cd-8539-63dd59e"},{"event":"cmd_output","timestamp":1607098336,"output":"bde04, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098336,"output":".Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.063 [info] ppl_id: 0e081064-8f37-4a"},{"event":"cmd_output","timestamp":1607098336,"output":"11-8398-bcfacca6b578, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098336,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.071 [info] PplBlocks Waiting"},{"event":"cmd_output","timestamp":1607098336,"output":"State STM is scheduling block 0 from pipeline: \"0e081064-8f37-4a11-8398-bcfacca6b578\"\n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098336,"output":":12:16.087 [info] block_id: f5af6fa6-10ad-4f64-a36f-2958b17f00a1, type: BlockRequests, event: persi"},{"event":"cmd_output","timestamp":1607098336,"output":"sted block run request from ppl 0e081064-8f37-4a11-8398-bcfacca6b578 for block 0, origin: Elixir.Blo"},{"event":"cmd_output","timestamp":1607098336,"output":"ck.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:16.087 [info"},{"event":"cmd_output","timestamp":1607098336,"output":"] block_id: b2182b0e-5a1b-445b-92e7-def81e2894ba, type: Tasks, state: running, event: exit_scheduli"},{"event":"cmd_output","timestamp":1607098336,"output":"ng, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:16"},{"event":"cmd_output","timestamp":1607098336,"output":".092 [info] block_id: f5af6fa6-10ad-4f64-a36f-2958b17f00a1, type: Blocks, state: initializing, even"},{"event":"cmd_output","timestamp":1607098336,"output":"t: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \r"},{"event":"cmd_output","timestamp":1607098336,"output":"\n\u001b[0m\u001b[22m\n16:12:16.096 [info] Block 0 of pipeline with id: 0e081064-8f37-4a11-8398-bcfacca6b578 s"},{"event":"cmd_output","timestamp":1607098336,"output":"cheduled in block service with id: : \"f5af6fa6-10ad-4f64-a36f-2958b17f00a1\"\n\u001b[0m\u001b[22m\n16:12:16.099"},{"event":"cmd_output","timestamp":1607098336,"output":" [info] ppl_id: 0e081064-8f37-4a11-8398-bcfacca6b578, type: PplBlocks, block_index: 0, state: runni"},{"event":"cmd_output","timestamp":1607098336,"output":"ng, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90"},{"event":"cmd_output","timestamp":1607098336,"output":"), \n\u001b[0m\u001b[22m\n16:12:16.102 [info] block_id: f5af6fa6-10ad-4f64-a36f-2958b17f00a1, type: BlockRequ"},{"event":"cmd_output","timestamp":1607098336,"output":"ests, event: persisted build and sub_ppl details for block_request: f5af6fa6-10ad-4f64-a36f-2958b17f"},{"event":"cmd_output","timestamp":1607098336,"output":"00a1, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098336,"output":"\n16:12:16.104 [info] block_id: f5af6fa6-10ad-4f64-a36f-2958b17f00a1, type: Tasks, state: pending, "},{"event":"cmd_output","timestamp":1607098336,"output":"event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/"},{"event":"cmd_output","timestamp":1607098336,"output":"1(L167), \n\u001b[0m\u001b[22m\n16:12:16.107 [info] block_id: f5af6fa6-10ad-4f64-a36f-2958b17f00a1, type: Blo"},{"event":"cmd_output","timestamp":1607098336,"output":"cks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_s"},{"event":"cmd_output","timestamp":1607098336,"output":"tate_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.111 [info] ppl_id: e2aac0d4-9248-48cd-8539-63dd59ebde04, "},{"event":"cmd_output","timestamp":1607098336,"output":"type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Lo"},{"event":"cmd_output","timestamp":1607098336,"output":"oper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.128 [info] block_id: f5af6fa6-10ad-4f6"},{"event":"cmd_output","timestamp":1607098336,"output":"4-a36f-2958b17f00a1, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098336,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.155 [info] ppl_id: e2aac0d4-"},{"event":"cmd_output","timestamp":1607098336,"output":"9248-48cd-8539-63dd59ebde04, type: PplRequests, event: persisted definition for request with request"},{"event":"cmd_output","timestamp":1607098336,"output":"_token: ede73935-b9dc-4e5e-b0c4-6dea08824c59, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQuerie"},{"event":"cmd_output","timestamp":1607098336,"output":"s.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:16.159 [info] block_id: b2182b0e-5a1b-445b-92e7-def8"},{"event":"cmd_output","timestamp":1607098336,"output":"1e2894ba, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper"},{"event":"cmd_output","timestamp":1607098336,"output":".STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.166 [info] event: created, origin: Elixir."},{"event":"cmd_output","timestamp":1607098336,"output":"Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:16.166 [info] block"},{"event":"cmd_output","timestamp":1607098336,"output":"_id: b2182b0e-5a1b-445b-92e7-def81e2894ba, type: Blocks, state: done, event: exit_scheduling, recove"},{"event":"cmd_output","timestamp":1607098336,"output":"ry_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.166 [info"},{"event":"cmd_output","timestamp":1607098336,"output":"] ppl_id: e2aac0d4-9248-48cd-8539-63dd59ebde04, type: PplBlocks, block_index: 0, state: initializin"},{"event":"cmd_output","timestamp":1607098336,"output":"g, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all"},{"event":"cmd_output","timestamp":1607098336,"output":"_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:16.169 [info] ppl_id: e2aac0d4-9248-48cd-8539-63dd59ebde04, type: "},{"event":"cmd_output","timestamp":1607098336,"output":"PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098336,"output":"Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.179 [info] ppl_id: 9c97a8b9-f12a-495"},{"event":"cmd_output","timestamp":1607098336,"output":"8-8bda-09797ceb03b2, type: PplRequests, event: persisted source_args for pipeline: 9c97a8b9-f12a-495"},{"event":"cmd_output","timestamp":1607098336,"output":"8-8bda-09797ceb03b2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \r"},{"event":"cmd_output","timestamp":1607098336,"output":"\n\u001b[0m\u001b[22m\n16:12:16.180 [info] ppl_id: e2aac0d4-9248-48cd-8539-63dd59ebde04, type: Ppls, state: pe"},{"event":"cmd_output","timestamp":1607098336,"output":"nding, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1("},{"event":"cmd_output","timestamp":1607098336,"output":"L90), \n\u001b[0m\u001b[22m\n16:12:16.185 [info] ppl_id: 9c97a8b9-f12a-4958-8bda-09797ceb03b2, type: PplSubIn"},{"event":"cmd_output","timestamp":1607098336,"output":"its, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_"},{"event":"cmd_output","timestamp":1607098336,"output":"state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.187 [info] ppl_id: 59e26e96-52bb-497b-8775-8274bf3bcb86,"},{"event":"cmd_output","timestamp":1607098336,"output":" block_id: b2182b0e-5a1b-445b-92e7-def81e2894ba, type: PplBlocks, block_index: 0, state: done, resul"},{"event":"cmd_output","timestamp":1607098336,"output":"t: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chang"},{"event":"cmd_output","timestamp":1607098336,"output":"e/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.189 [info] ppl_id: e2aac0d4-9248-48cd-8539-63dd59ebde04, type: PplB"},{"event":"cmd_output","timestamp":1607098336,"output":"locks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loo"},{"event":"cmd_output","timestamp":1607098336,"output":"per.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.199 [info] ppl_id: e2aac0d4-9248-48cd-8"},{"event":"cmd_output","timestamp":1607098336,"output":"539-63dd59ebde04, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098336,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.208 [info] ppl_id: 59e26e96-52bb"},{"event":"cmd_output","timestamp":1607098336,"output":"-497b-8775-8274bf3bcb86, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098336,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.221 [info] p"},{"event":"cmd_output","timestamp":1607098336,"output":"pl_id: 9c97a8b9-f12a-4958-8bda-09797ceb03b2, type: PplSubInits, state: regular_init, event: exit_sch"},{"event":"cmd_output","timestamp":1607098336,"output":"eduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098336,"output":"12:16.251 [info] ppl_id: 9c97a8b9-f12a-4958-8bda-09797ceb03b2, type: PplRequests, event: persisted "},{"event":"cmd_output","timestamp":1607098336,"output":"definition for request with request_token: c0d5a39c-79b2-4266-abc4-c8a37617659a, origin: Elixir.Ppl."},{"event":"cmd_output","timestamp":1607098336,"output":"PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:16.254 [info] Que"},{"event":"cmd_output","timestamp":1607098336,"output":"ue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, ins"},{"event":"cmd_output","timestamp":1607098336,"output":"erted_at: ~N[2020-12-04 16:12:16.253466], name: \"dev-.semaphore/semaphore.yml\", organization_id: \"fb"},{"event":"cmd_output","timestamp":1607098336,"output":"0e5bae-b316-4417-8c4c-15fffb10b5f6\", project_id: \"123\", queue_id: \"ad6159a5-1e65-420b-983d-c03126af9"},{"event":"cmd_output","timestamp":1607098336,"output":"036\", scope: \"project\", updated_at: ~N[2020-12-04 16:12:16.253489], user_generated: false}}\n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098336,"output":"2m\n16:12:16.264 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState."},{"event":"cmd_output","timestamp":1607098336,"output":"all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:16.264 [info] ppl_id: 9c97a8b9-f12a-4958-8bda-09797ceb03b2, typ"},{"event":"cmd_output","timestamp":1607098336,"output":"e: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098336,"output":".Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:16.267 [info] ppl_"},{"event":"cmd_output","timestamp":1607098336,"output":"id: 9c97a8b9-f12a-4958-8bda-09797ceb03b2, type: PplSubInits, state: done, result: passed, event: exi"},{"event":"cmd_output","timestamp":1607098336,"output":"t_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098336,"output":"\n16:12:16.277 [info] block_id: f5af6fa6-10ad-4f64-a36f-2958b17f00a1, type: Tasks, state: done, eve"},{"event":"cmd_output","timestamp":1607098336,"output":"nt: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b["},{"event":"cmd_output","timestamp":1607098336,"output":"0m\u001b[22m\n16:12:16.281 [info] ppl_id: 9c97a8b9-f12a-4958-8bda-09797ceb03b2, type: Ppls, state: pendi"},{"event":"cmd_output","timestamp":1607098336,"output":"ng, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90"},{"event":"cmd_output","timestamp":1607098336,"output":"), \n\u001b[0m\u001b[22m\n16:12:16.284 [info] ppl_id: 9c97a8b9-f12a-4958-8bda-09797ceb03b2, type: PplBlocks, "},{"event":"cmd_output","timestamp":1607098336,"output":"block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM"},{"event":"cmd_output","timestamp":1607098336,"output":".Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.289 [info] block_id: f5af6fa6-10ad-4f64-a36f-2"},{"event":"cmd_output","timestamp":1607098336,"output":"958b17f00a1, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Lo"},{"event":"cmd_output","timestamp":1607098336,"output":"oper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.292 [info] ppl_id: 9c97a8b9-f12a-4958-"},{"event":"cmd_output","timestamp":1607098336,"output":"8bda-09797ceb03b2, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098336,"output":"ixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.300 [info] ppl_id: 0e081064-8f3"},{"event":"cmd_output","timestamp":1607098336,"output":"7-4a11-8398-bcfacca6b578, block_id: f5af6fa6-10ad-4f64-a36f-2958b17f00a1, type: PplBlocks, block_ind"},{"event":"cmd_output","timestamp":1607098336,"output":"ex: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper"},{"event":"cmd_output","timestamp":1607098336,"output":".STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.301 [info] ppl_id: 1807f765-d430-431f-bc59"},{"event":"cmd_output","timestamp":1607098336,"output":"-4af5f2f31bf3, type: PplRequests, event: persisted source_args for pipeline: 1807f765-d430-431f-bc59"},{"event":"cmd_output","timestamp":1607098336,"output":"-4af5f2f31bf3, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098336,"output":"[22m\n16:12:16.304 [info] ppl_id: 1807f765-d430-431f-bc59-4af5f2f31bf3, type: PplSubInits, state: f"},{"event":"cmd_output","timestamp":1607098336,"output":"etching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/"},{"event":"cmd_output","timestamp":1607098336,"output":"1(L90), \n\u001b[0m\u001b[22m\n16:12:16.309 [info] ppl_id: 9c97a8b9-f12a-4958-8bda-09797ceb03b2, type: Ppls, "},{"event":"cmd_output","timestamp":1607098336,"output":"state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_"},{"event":"cmd_output","timestamp":1607098336,"output":"change/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.311 [info] PplBlocks WaitingState STM is scheduling block 0 fr"},{"event":"cmd_output","timestamp":1607098336,"output":"om pipeline: \"9c97a8b9-f12a-4958-8bda-09797ceb03b2\"\n\u001b[0m\u001b[22m\n16:12:16.321 [info] block_id: de4e2"},{"event":"cmd_output","timestamp":1607098336,"output":"f96-21b8-4adf-9783-a185daa283bb, type: BlockRequests, event: persisted block run request from ppl 9c"},{"event":"cmd_output","timestamp":1607098336,"output":"97a8b9-f12a-4958-8bda-09797ceb03b2 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockReques"},{"event":"cmd_output","timestamp":1607098336,"output":"tsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:16.324 [info] block_id: de4e2f96-21b8-4adf-97"},{"event":"cmd_output","timestamp":1607098336,"output":"83-a185daa283bb, type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098336,"output":"Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:16.327 [info] Block 0 of "},{"event":"cmd_output","timestamp":1607098336,"output":"pipeline with id: 9c97a8b9-f12a-4958-8bda-09797ceb03b2 scheduled in block service with id: : \"de4e2f"},{"event":"cmd_output","timestamp":1607098336,"output":"96-21b8-4adf-9783-a185daa283bb\"\n\u001b[0m\u001b[22m\n16:12:16.330 [info] ppl_id: 0e081064-8f37-4a11-8398-bcf"},{"event":"cmd_output","timestamp":1607098336,"output":"acca6b578, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098336,"output":"n: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.331 [info] ppl_id: 9c97a8b"},{"event":"cmd_output","timestamp":1607098336,"output":"9-f12a-4958-8bda-09797ceb03b2, type: PplBlocks, block_index: 0, state: running, event: exit_scheduli"},{"event":"cmd_output","timestamp":1607098336,"output":"ng, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:16"},{"event":"cmd_output","timestamp":1607098336,"output":".339 [info] block_id: de4e2f96-21b8-4adf-9783-a185daa283bb, type: BlockRequests, event: persisted b"},{"event":"cmd_output","timestamp":1607098336,"output":"uild and sub_ppl details for block_request: de4e2f96-21b8-4adf-9783-a185daa283bb, origin: Elixir.Blo"},{"event":"cmd_output","timestamp":1607098336,"output":"ck.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:16.346 [info] b"},{"event":"cmd_output","timestamp":1607098336,"output":"lock_id: de4e2f96-21b8-4adf-9783-a185daa283bb, type: Tasks, state: pending, event: created, recovery"},{"event":"cmd_output","timestamp":1607098336,"output":"_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098336,"output":":12:16.349 [info] ppl_id: 1807f765-d430-431f-bc59-4af5f2f31bf3, type: PplSubInits, state: regular_i"},{"event":"cmd_output","timestamp":1607098336,"output":"nit, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L9"},{"event":"cmd_output","timestamp":1607098336,"output":"0), \n\u001b[0m\u001b[22m\n16:12:16.353 [info] block_id: de4e2f96-21b8-4adf-9783-a185daa283bb, type: Blocks, "},{"event":"cmd_output","timestamp":1607098336,"output":"state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_"},{"event":"cmd_output","timestamp":1607098336,"output":"change/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.358 [info] ppl_id: e2aac0d4-9248-48cd-8539-63dd59ebde04, type:"},{"event":"cmd_output","timestamp":1607098336,"output":" Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098336,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.376 [info] PplBlocks WaitingState STM is scheduling blo"},{"event":"cmd_output","timestamp":1607098336,"output":"ck 0 from pipeline: \"e2aac0d4-9248-48cd-8539-63dd59ebde04\"\n\u001b[0m\u001b[22m\n16:12:16.384 [info] block_id"},{"event":"cmd_output","timestamp":1607098336,"output":": de4e2f96-21b8-4adf-9783-a185daa283bb, type: Tasks, state: running, event: exit_scheduling, recover"},{"event":"cmd_output","timestamp":1607098336,"output":"y_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.395 [info]"},{"event":"cmd_output","timestamp":1607098336,"output":" block_id: 184ee5e7-fc40-4962-9c30-d2f269b5d4bc, type: BlockRequests, event: persisted block run re"},{"event":"cmd_output","timestamp":1607098336,"output":"quest from ppl e2aac0d4-9248-48cd-8539-63dd59ebde04 for block 0, origin: Elixir.Block.BlockRequests."},{"event":"cmd_output","timestamp":1607098336,"output":"Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:16.398 [info] block_id: 184e"},{"event":"cmd_output","timestamp":1607098336,"output":"e5e7-fc40-4962-9c30-d2f269b5d4bc, type: Blocks, state: initializing, event: initializing, recovery_c"},{"event":"cmd_output","timestamp":1607098336,"output":"ount: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:16.400 [i"},{"event":"cmd_output","timestamp":1607098336,"output":"nfo] block_id: de4e2f96-21b8-4adf-9783-a185daa283bb, type: Tasks, state: done, event: exit_scheduli"},{"event":"cmd_output","timestamp":1607098336,"output":"ng, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:16"},{"event":"cmd_output","timestamp":1607098336,"output":".401 [info] ppl_id: 1807f765-d430-431f-bc59-4af5f2f31bf3, type: PplRequests, event: persisted defin"},{"event":"cmd_output","timestamp":1607098336,"output":"ition for request with request_token: 2eee40da-845e-4261-af04-9e544cd65ac5, origin: Elixir.Ppl.PplRe"},{"event":"cmd_output","timestamp":1607098336,"output":"quests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:16.404 [info] Block 0 "},{"event":"cmd_output","timestamp":1607098336,"output":"of pipeline with id: e2aac0d4-9248-48cd-8539-63dd59ebde04 scheduled in block service with id: : \"184"},{"event":"cmd_output","timestamp":1607098336,"output":"ee5e7-fc40-4962-9c30-d2f269b5d4bc\"\n\u001b[0m\u001b[22m\n16:12:16.407 [info] ppl_id: e2aac0d4-9248-48cd-8539-"},{"event":"cmd_output","timestamp":1607098336,"output":"63dd59ebde04, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_coun"},{"event":"cmd_output","timestamp":1607098336,"output":"t: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.408 [info] bloc"},{"event":"cmd_output","timestamp":1607098336,"output":"k_id: de4e2f96-21b8-4adf-9783-a185daa283bb, type: Blocks, state: done, event: exit_scheduling, recov"},{"event":"cmd_output","timestamp":1607098336,"output":"ery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.409 [inf"},{"event":"cmd_output","timestamp":1607098336,"output":"o] block_id: 184ee5e7-fc40-4962-9c30-d2f269b5d4bc, type: BlockRequests, event: persisted build and "},{"event":"cmd_output","timestamp":1607098336,"output":"sub_ppl details for block_request: 184ee5e7-fc40-4962-9c30-d2f269b5d4bc, origin: Elixir.Block.BlockR"},{"event":"cmd_output","timestamp":1607098336,"output":"equests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:16.413 [info] event: cre"},{"event":"cmd_output","timestamp":1607098336,"output":"ated, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12"},{"event":"cmd_output","timestamp":1607098336,"output":":16.413 [info] ppl_id: 1807f765-d430-431f-bc59-4af5f2f31bf3, type: PplBlocks, block_index: 0, state"},{"event":"cmd_output","timestamp":1607098336,"output":": initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.Regular"},{"event":"cmd_output","timestamp":1607098336,"output":"InitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:16.413 [info] block_id: 184ee5e7-fc40-4962-9c30-d2f26"},{"event":"cmd_output","timestamp":1607098336,"output":"9b5d4bc, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks"},{"event":"cmd_output","timestamp":1607098336,"output":".STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:16.416 [info] ppl_id: 1807f765-d4"},{"event":"cmd_output","timestamp":1607098336,"output":"30-431f-bc59-4af5f2f31bf3, type: PplSubInits, state: done, result: passed, event: exit_scheduling, r"},{"event":"cmd_output","timestamp":1607098336,"output":"ecovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.420 "},{"event":"cmd_output","timestamp":1607098336,"output":"[info] block_id: 184ee5e7-fc40-4962-9c30-d2f269b5d4bc, type: Blocks, state: running, event: exit_sc"},{"event":"cmd_output","timestamp":1607098336,"output":"heduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098336,"output":":12:16.423 [info] ppl_id: 44bf22d5-ba00-4ff8-93ba-b92f9276e89e, type: PplRequests, event: persisted"},{"event":"cmd_output","timestamp":1607098336,"output":" source_args for pipeline: 44bf22d5-ba00-4ff8-93ba-b92f9276e89e, origin: Elixir.Ppl.PplRequests.Mode"},{"event":"cmd_output","timestamp":1607098336,"output":"l.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:16.427 [info] ppl_id: 44bf22d5-ba00-4"},{"event":"cmd_output","timestamp":1607098336,"output":"ff8-93ba-b92f9276e89e, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0"},{"event":"cmd_output","timestamp":1607098336,"output":", origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.430 [info] ppl_id: "},{"event":"cmd_output","timestamp":1607098336,"output":"1807f765-d430-431f-bc59-4af5f2f31bf3, type: PplBlocks, block_index: 0, state: waiting, event: exit_s"},{"event":"cmd_output","timestamp":1607098336,"output":"cheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098336,"output":"6:12:16.433 [info] ppl_id: 9c97a8b9-f12a-4958-8bda-09797ceb03b2, block_id: de4e2f96-21b8-4adf-9783-"},{"event":"cmd_output","timestamp":1607098336,"output":"a185daa283bb, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, "},{"event":"cmd_output","timestamp":1607098336,"output":"recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.443"},{"event":"cmd_output","timestamp":1607098336,"output":" [info] ppl_id: 1807f765-d430-431f-bc59-4af5f2f31bf3, type: Ppls, state: pending, event: exit_sched"},{"event":"cmd_output","timestamp":1607098336,"output":"uling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12"},{"event":"cmd_output","timestamp":1607098336,"output":":16.449 [info] block_id: 184ee5e7-fc40-4962-9c30-d2f269b5d4bc, type: Tasks, state: running, event: "},{"event":"cmd_output","timestamp":1607098336,"output":"exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098336,"output":"22m\n16:12:16.463 [info] ppl_id: 1807f765-d430-431f-bc59-4af5f2f31bf3, type: Ppls, state: queuing, "},{"event":"cmd_output","timestamp":1607098336,"output":"event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \r"},{"event":"cmd_output","timestamp":1607098336,"output":"\n\u001b[0m\u001b[22m\n16:12:16.468 [info] ppl_id: 9c97a8b9-f12a-4958-8bda-09797ceb03b2, type: Ppls, state: do"},{"event":"cmd_output","timestamp":1607098336,"output":"ne, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_st"},{"event":"cmd_output","timestamp":1607098336,"output":"ate_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.475 [info] ppl_id: 44bf22d5-ba00-4ff8-93ba-b92f9276e89e, t"},{"event":"cmd_output","timestamp":1607098336,"output":"ype: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loo"},{"event":"cmd_output","timestamp":1607098336,"output":"per.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.479 [info] ppl_id: 1807f765-d430-431f-b"},{"event":"cmd_output","timestamp":1607098336,"output":"c59-4af5f2f31bf3, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098336,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.488 [info] PplBlocks WaitingStat"},{"event":"cmd_output","timestamp":1607098336,"output":"e STM is scheduling block 0 from pipeline: \"1807f765-d430-431f-bc59-4af5f2f31bf3\"\n\u001b[0m\u001b[22m\n16:12:"},{"event":"cmd_output","timestamp":1607098336,"output":"16.496 [info] block_id: 69fd5a3c-ad3a-465d-b87b-fc60528ca960, type: BlockRequests, event: persisted"},{"event":"cmd_output","timestamp":1607098336,"output":" block run request from ppl 1807f765-d430-431f-bc59-4af5f2f31bf3 for block 0, origin: Elixir.Block.B"},{"event":"cmd_output","timestamp":1607098336,"output":"lockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:16.499 [info] b"},{"event":"cmd_output","timestamp":1607098336,"output":"lock_id: 69fd5a3c-ad3a-465d-b87b-fc60528ca960, type: Blocks, state: initializing, event: initializin"},{"event":"cmd_output","timestamp":1607098336,"output":"g, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098336,"output":":12:16.502 [info] Block 0 of pipeline with id: 1807f765-d430-431f-bc59-4af5f2f31bf3 scheduled in bl"},{"event":"cmd_output","timestamp":1607098336,"output":"ock service with id: : \"69fd5a3c-ad3a-465d-b87b-fc60528ca960\"\n\u001b[0m\u001b[22m\n16:12:16.511 [info] ppl_i"},{"event":"cmd_output","timestamp":1607098336,"output":"d: 1807f765-d430-431f-bc59-4af5f2f31bf3, type: PplBlocks, block_index: 0, state: running, event: exi"},{"event":"cmd_output","timestamp":1607098336,"output":"t_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098336,"output":"\n16:12:16.511 [info] block_id: 69fd5a3c-ad3a-465d-b87b-fc60528ca960, type: BlockRequests, event: p"},{"event":"cmd_output","timestamp":1607098336,"output":"ersisted build and sub_ppl details for block_request: 69fd5a3c-ad3a-465d-b87b-fc60528ca960, origin: "},{"event":"cmd_output","timestamp":1607098336,"output":"Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:16.515"},{"event":"cmd_output","timestamp":1607098336,"output":" [info] block_id: 69fd5a3c-ad3a-465d-b87b-fc60528ca960, type: Tasks, state: pending, event: created"},{"event":"cmd_output","timestamp":1607098336,"output":", recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098336,"output":"m\u001b[22m\n16:12:16.521 [info] block_id: 69fd5a3c-ad3a-465d-b87b-fc60528ca960, type: Blocks, state: ru"},{"event":"cmd_output","timestamp":1607098336,"output":"nning, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1("},{"event":"cmd_output","timestamp":1607098336,"output":"L90), \n\u001b[0m\u001b[22m\n16:12:16.529 [info] block_id: 184ee5e7-fc40-4962-9c30-d2f269b5d4bc, type: Tasks,"},{"event":"cmd_output","timestamp":1607098336,"output":" state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_ch"},{"event":"cmd_output","timestamp":1607098336,"output":"ange/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.533 [info] ppl_id: 44bf22d5-ba00-4ff8-93ba-b92f9276e89e, type: P"},{"event":"cmd_output","timestamp":1607098336,"output":"plRequests, event: persisted definition for request with request_token: 993877e0-ffae-40cc-b08d-fa7f"},{"event":"cmd_output","timestamp":1607098336,"output":"8c5c76fa, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098336,"output":"22m\n16:12:16.541 [info] block_id: 184ee5e7-fc40-4962-9c30-d2f269b5d4bc, type: Blocks, state: done,"},{"event":"cmd_output","timestamp":1607098336,"output":" event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), "},{"event":"cmd_output","timestamp":1607098336,"output":"\n\u001b[0m\u001b[22m\n16:12:16.545 [info] ppl_id: 67613c39-77d5-47a3-bfb9-1a5a33ee6390, type: PplRequests, e"},{"event":"cmd_output","timestamp":1607098336,"output":"vent: persisted source_args for pipeline: 67613c39-77d5-47a3-bfb9-1a5a33ee6390, origin: Elixir.Ppl.P"},{"event":"cmd_output","timestamp":1607098336,"output":"plRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:16.548 [info] Queue pe"},{"event":"cmd_output","timestamp":1607098336,"output":"rsisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted"},{"event":"cmd_output","timestamp":1607098336,"output":"_at: ~N[2020-12-04 16:12:16.538345], name: \"dev-.semaphore/semaphore.yml\", organization_id: \"aa09754"},{"event":"cmd_output","timestamp":1607098336,"output":"8-ed4a-480d-9b0e-697a1ea0b94a\", project_id: \"456\", queue_id: \"4ac6756b-6661-4525-9fae-a90a90241aa4\","},{"event":"cmd_output","timestamp":1607098336,"output":" scope: \"project\", updated_at: ~N[2020-12-04 16:12:16.538358], user_generated: false}}\n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098336,"output":"6:12:16.552 [info] block_id: 69fd5a3c-ad3a-465d-b87b-fc60528ca960, type: Tasks, state: running, eve"},{"event":"cmd_output","timestamp":1607098336,"output":"nt: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b["},{"event":"cmd_output","timestamp":1607098336,"output":"0m\u001b[22m\n16:12:16.557 [info] ppl_id: 67613c39-77d5-47a3-bfb9-1a5a33ee6390, type: PplSubInits, state"},{"event":"cmd_output","timestamp":1607098336,"output":": fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chan"},{"event":"cmd_output","timestamp":1607098336,"output":"ge/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.567 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandl"},{"event":"cmd_output","timestamp":1607098336,"output":"er.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:16.567 [info] ppl_id: 44bf22d5-ba00-4ff8-93"},{"event":"cmd_output","timestamp":1607098336,"output":"ba-b92f9276e89e, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_coun"},{"event":"cmd_output","timestamp":1607098336,"output":"t: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12"},{"event":"cmd_output","timestamp":1607098336,"output":":16.571 [info] ppl_id: e2aac0d4-9248-48cd-8539-63dd59ebde04, block_id: 184ee5e7-fc40-4962-9c30-d2f2"},{"event":"cmd_output","timestamp":1607098336,"output":"69b5d4bc, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, reco"},{"event":"cmd_output","timestamp":1607098336,"output":"very_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.572 [in"},{"event":"cmd_output","timestamp":1607098336,"output":"fo] ppl_id: 44bf22d5-ba00-4ff8-93ba-b92f9276e89e, type: PplSubInits, state: done, result: passed, e"},{"event":"cmd_output","timestamp":1607098336,"output":"vent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n"},{"event":"cmd_output","timestamp":1607098336,"output":"\u001b[0m\u001b[22m\n16:12:16.596 [info] ppl_id: 44bf22d5-ba00-4ff8-93ba-b92f9276e89e, type: PplBlocks, block"},{"event":"cmd_output","timestamp":1607098336,"output":"_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl"},{"event":"cmd_output","timestamp":1607098336,"output":".log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.598 [info] ppl_id: 44bf22d5-ba00-4ff8-93ba-b92f9276"},{"event":"cmd_output","timestamp":1607098336,"output":"e89e, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.S"},{"event":"cmd_output","timestamp":1607098336,"output":"TM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.605 [info] ppl_id: 67613c39-77d5-47a3-bfb9-1"},{"event":"cmd_output","timestamp":1607098336,"output":"a5a33ee6390, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098336,"output":"in: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.610 [info] ppl_id: e2aac0"},{"event":"cmd_output","timestamp":1607098336,"output":"d4-9248-48cd-8539-63dd59ebde04, type: Ppls, state: done, result: passed, event: exit_scheduling, rec"},{"event":"cmd_output","timestamp":1607098336,"output":"overy_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.622 [i"},{"event":"cmd_output","timestamp":1607098336,"output":"nfo] ppl_id: 44bf22d5-ba00-4ff8-93ba-b92f9276e89e, type: Ppls, state: queuing, event: exit_scheduli"},{"event":"cmd_output","timestamp":1607098336,"output":"ng, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:16"},{"event":"cmd_output","timestamp":1607098336,"output":".642 [info] ppl_id: 44bf22d5-ba00-4ff8-93ba-b92f9276e89e, type: Ppls, state: running, event: exit_s"},{"event":"cmd_output","timestamp":1607098336,"output":"cheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098336,"output":"6:12:16.653 [info] block_id: 69fd5a3c-ad3a-465d-b87b-fc60528ca960, type: Tasks, state: done, event:"},{"event":"cmd_output","timestamp":1607098336,"output":" exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098336,"output":"[22m\n16:12:16.659 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"44bf22d5"},{"event":"cmd_output","timestamp":1607098336,"output":"-ba00-4ff8-93ba-b92f9276e89e\"\n\u001b[0m\u001b[22m\n16:12:16.667 [info] ppl_id: 67613c39-77d5-47a3-bfb9-1a5a3"},{"event":"cmd_output","timestamp":1607098336,"output":"3ee6390, type: PplRequests, event: persisted definition for request with request_token: 68106a5e-ede"},{"event":"cmd_output","timestamp":1607098336,"output":"4-4309-9851-23ecedd90998, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/"},{"event":"cmd_output","timestamp":1607098336,"output":"3(L76), \n\u001b[0m\u001b[22m\n16:12:16.670 [info] block_id: 69fd5a3c-ad3a-465d-b87b-fc60528ca960, type: Bloc"},{"event":"cmd_output","timestamp":1607098336,"output":"ks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state"},{"event":"cmd_output","timestamp":1607098336,"output":"_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.671 [info] block_id: 8b9724ad-9572-48e6-b819-1ec2fefffb1b, ty"},{"event":"cmd_output","timestamp":1607098336,"output":"pe: BlockRequests, event: persisted block run request from ppl 44bf22d5-ba00-4ff8-93ba-b92f9276e89e "},{"event":"cmd_output","timestamp":1607098336,"output":"for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), "},{"event":"cmd_output","timestamp":1607098336,"output":"\n\u001b[0m\u001b[22m\n16:12:16.676 [info] block_id: 8b9724ad-9572-48e6-b819-1ec2fefffb1b, type: Blocks, stat"},{"event":"cmd_output","timestamp":1607098336,"output":"e: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQue"},{"event":"cmd_output","timestamp":1607098336,"output":"ries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:16.680 [info] event: created, origin: Elixir.Ppl.PplSubInits"},{"event":"cmd_output","timestamp":1607098336,"output":".STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:16.680 [info] ppl_id: 67613c39-77d"},{"event":"cmd_output","timestamp":1607098336,"output":"5-47a3-bfb9-1a5a33ee6390, type: PplBlocks, block_index: 0, state: initializing, event: created, reco"},{"event":"cmd_output","timestamp":1607098336,"output":"very_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098336,"output":"2m\n16:12:16.683 [info] ppl_id: 67613c39-77d5-47a3-bfb9-1a5a33ee6390, type: PplSubInits, state: don"},{"event":"cmd_output","timestamp":1607098336,"output":"e, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_sta"},{"event":"cmd_output","timestamp":1607098336,"output":"te_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.684 [info] Block 0 of pipeline with id: 44bf22d5-ba00-4ff8-"},{"event":"cmd_output","timestamp":1607098336,"output":"93ba-b92f9276e89e scheduled in block service with id: : \"8b9724ad-9572-48e6-b819-1ec2fefffb1b\"\n\u001b[0m"},{"event":"cmd_output","timestamp":1607098336,"output":"\u001b[22m\n16:12:16.688 [info] ppl_id: 1807f765-d430-431f-bc59-4af5f2f31bf3, block_id: 69fd5a3c-ad3a-46"},{"event":"cmd_output","timestamp":1607098336,"output":"5d-b87b-fc60528ca960, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_sche"},{"event":"cmd_output","timestamp":1607098336,"output":"duling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098336,"output":"2:16.688 [info] ppl_id: 44bf22d5-ba00-4ff8-93ba-b92f9276e89e, type: PplBlocks, block_index: 0, stat"},{"event":"cmd_output","timestamp":1607098336,"output":"e: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chan"},{"event":"cmd_output","timestamp":1607098336,"output":"ge/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.695 [info] block_id: 8b9724ad-9572-48e6-b819-1ec2fefffb1b, type: B"},{"event":"cmd_output","timestamp":1607098336,"output":"lockRequests, event: persisted build and sub_ppl details for block_request: 8b9724ad-9572-48e6-b819-"},{"event":"cmd_output","timestamp":1607098336,"output":"1ec2fefffb1b, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b"},{"event":"cmd_output","timestamp":1607098336,"output":"[0m\u001b[22m\n16:12:16.696 [info] ppl_id: 67613c39-77d5-47a3-bfb9-1a5a33ee6390, type: Ppls, state: pend"},{"event":"cmd_output","timestamp":1607098336,"output":"ing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L9"},{"event":"cmd_output","timestamp":1607098336,"output":"0), \n\u001b[0m\u001b[22m\n16:12:16.702 [info] block_id: 8b9724ad-9572-48e6-b819-1ec2fefffb1b, type: Tasks, s"},{"event":"cmd_output","timestamp":1607098336,"output":"tate: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.Initializin"},{"event":"cmd_output","timestamp":1607098336,"output":"gState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:16.706 [info] ppl_id: 67613c39-77d5-47a3-bfb9-1a5a33ee63"},{"event":"cmd_output","timestamp":1607098336,"output":"90, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098336,"output":"in: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.709 [info] block_id: 8b97"},{"event":"cmd_output","timestamp":1607098336,"output":"24ad-9572-48e6-b819-1ec2fefffb1b, type: Blocks, state: running, event: exit_scheduling, recovery_cou"},{"event":"cmd_output","timestamp":1607098336,"output":"nt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.713 [info] ppl"},{"event":"cmd_output","timestamp":1607098336,"output":"_id: 67613c39-77d5-47a3-bfb9-1a5a33ee6390, type: Ppls, state: queuing, event: exit_scheduling, recov"},{"event":"cmd_output","timestamp":1607098336,"output":"ery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.722 [inf"},{"event":"cmd_output","timestamp":1607098336,"output":"o] ppl_id: 1807f765-d430-431f-bc59-4af5f2f31bf3, type: Ppls, state: done, result: passed, event: ex"},{"event":"cmd_output","timestamp":1607098336,"output":"it_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098336,"output":"m\n16:12:16.737 [info] block_id: 8b9724ad-9572-48e6-b819-1ec2fefffb1b, type: Tasks, state: running,"},{"event":"cmd_output","timestamp":1607098336,"output":" event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), "},{"event":"cmd_output","timestamp":1607098336,"output":"\n\u001b[0m\u001b[22m\n16:12:16.770 [info] block_id: 8b9724ad-9572-48e6-b819-1ec2fefffb1b, type: Tasks, state"},{"event":"cmd_output","timestamp":1607098336,"output":": done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1"},{"event":"cmd_output","timestamp":1607098336,"output":"(L90), \n\u001b[0m\u001b[22m\n16:12:16.777 [info] block_id: 8b9724ad-9572-48e6-b819-1ec2fefffb1b, type: Block"},{"event":"cmd_output","timestamp":1607098336,"output":"s, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_"},{"event":"cmd_output","timestamp":1607098336,"output":"change/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.787 [info] ppl_id: 44bf22d5-ba00-4ff8-93ba-b92f9276e89e, block"},{"event":"cmd_output","timestamp":1607098336,"output":"_id: 8b9724ad-9572-48e6-b819-1ec2fefffb1b, type: PplBlocks, block_index: 0, state: done, result: pas"},{"event":"cmd_output","timestamp":1607098336,"output":"sed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L9"},{"event":"cmd_output","timestamp":1607098336,"output":"0), \n\u001b[0m\u001b[22m\n16:12:16.803 [info] ppl_id: 44bf22d5-ba00-4ff8-93ba-b92f9276e89e, type: Ppls, stat"},{"event":"cmd_output","timestamp":1607098336,"output":"e: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.l"},{"event":"cmd_output","timestamp":1607098336,"output":"og_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.910 [info] ppl_id: 67613c39-77d5-47a3-bfb9-1a5a33ee63"},{"event":"cmd_output","timestamp":1607098336,"output":"90, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM"},{"event":"cmd_output","timestamp":1607098336,"output":".Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.917 [info] PplBlocks WaitingState STM is sched"},{"event":"cmd_output","timestamp":1607098336,"output":"uling block 0 from pipeline: \"67613c39-77d5-47a3-bfb9-1a5a33ee6390\"\n\u001b[0m\u001b[22m\n16:12:16.924 [info] "},{"event":"cmd_output","timestamp":1607098336,"output":" block_id: 50729749-407c-49bf-89c0-3097a19629c7, type: BlockRequests, event: persisted block run req"},{"event":"cmd_output","timestamp":1607098336,"output":"uest from ppl 67613c39-77d5-47a3-bfb9-1a5a33ee6390 for block 0, origin: Elixir.Block.BlockRequests.M"},{"event":"cmd_output","timestamp":1607098336,"output":"odel.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:16.927 [info] block_id: 50729"},{"event":"cmd_output","timestamp":1607098336,"output":"749-407c-49bf-89c0-3097a19629c7, type: Blocks, state: initializing, event: initializing, recovery_co"},{"event":"cmd_output","timestamp":1607098336,"output":"unt: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:16.928 [in"},{"event":"cmd_output","timestamp":1607098336,"output":"fo] Block 0 of pipeline with id: 67613c39-77d5-47a3-bfb9-1a5a33ee6390 scheduled in block service wi"},{"event":"cmd_output","timestamp":1607098336,"output":"th id: : \"50729749-407c-49bf-89c0-3097a19629c7\"\n\u001b[0m\u001b[22m\n16:12:16.932 [info] ppl_id: 67613c39-77"},{"event":"cmd_output","timestamp":1607098336,"output":"d5-47a3-bfb9-1a5a33ee6390, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, "},{"event":"cmd_output","timestamp":1607098336,"output":"recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.937"},{"event":"cmd_output","timestamp":1607098336,"output":" [info] block_id: 50729749-407c-49bf-89c0-3097a19629c7, type: BlockRequests, event: persisted build"},{"event":"cmd_output","timestamp":1607098336,"output":" and sub_ppl details for block_request: 50729749-407c-49bf-89c0-3097a19629c7, origin: Elixir.Block.B"},{"event":"cmd_output","timestamp":1607098336,"output":"lockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:16.939 [info] block"},{"event":"cmd_output","timestamp":1607098336,"output":"_id: 50729749-407c-49bf-89c0-3097a19629c7, type: Tasks, state: pending, event: created, recovery_cou"},{"event":"cmd_output","timestamp":1607098336,"output":"nt: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:"},{"event":"cmd_output","timestamp":1607098336,"output":"16.942 [info] block_id: 50729749-407c-49bf-89c0-3097a19629c7, type: Blocks, state: running, event: "},{"event":"cmd_output","timestamp":1607098336,"output":"exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098336,"output":"22m\n16:12:16.960 [info] block_id: 50729749-407c-49bf-89c0-3097a19629c7, type: Tasks, state: runnin"},{"event":"cmd_output","timestamp":1607098336,"output":"g, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90)"},{"event":"cmd_output","timestamp":1607098336,"output":", \n\u001b[0m\u001b[22m\n16:12:16.984 [info] block_id: 50729749-407c-49bf-89c0-3097a19629c7, type: Tasks, sta"},{"event":"cmd_output","timestamp":1607098336,"output":"te: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change"},{"event":"cmd_output","timestamp":1607098336,"output":"/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.991 [info] block_id: 50729749-407c-49bf-89c0-3097a19629c7, type: Blo"},{"event":"cmd_output","timestamp":1607098336,"output":"cks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_stat"},{"event":"cmd_output","timestamp":1607098337,"output":"e_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:17.007 [info] ppl_id: 67613c39-77d5-47a3-bfb9-1a5a33ee6390, blo"},{"event":"cmd_output","timestamp":1607098337,"output":"ck_id: 50729749-407c-49bf-89c0-3097a19629c7, type: PplBlocks, block_index: 0, state: done, result: p"},{"event":"cmd_output","timestamp":1607098337,"output":"assed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1("},{"event":"cmd_output","timestamp":1607098337,"output":"L90), \n\u001b[0m\u001b[22m\n16:12:17.023 [info] ppl_id: 67613c39-77d5-47a3-bfb9-1a5a33ee6390, type: Ppls, st"},{"event":"cmd_output","timestamp":1607098337,"output":"ate: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl"},{"event":"cmd_output","timestamp":1607098337,"output":".log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test gRPC list_grouped() - both scopes, both queue types "},{"event":"cmd_output","timestamp":1607098337,"output":"(1723.6ms)\u001b[0m\n * test gRPC list_grouped() - org scoped implicit queues\u001b[22m\n16:12:17.169 [info]"},{"event":"cmd_output","timestamp":1607098337,"output":" ppl_id: e2af7788-ae99-44aa-bfd6-4348e961560a, type: PplRequests, event: persisted schedule request"},{"event":"cmd_output","timestamp":1607098337,"output":" with request_token: c7725675-21a5-4706-b235-30358ce3ef68, origin: Elixir.Ppl.PplRequests.Model.PplR"},{"event":"cmd_output","timestamp":1607098337,"output":"equestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:17.174 [info] ppl_id: e2af7788-ae99-44aa"},{"event":"cmd_output","timestamp":1607098337,"output":"-bfd6-4348e961560a, type: PplRequests, event: persisted definition for request with request_token: c"},{"event":"cmd_output","timestamp":1607098337,"output":"7725675-21a5-4706-b235-30358ce3ef68, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_"},{"event":"cmd_output","timestamp":1607098337,"output":"definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:17.180 [info] ppl_id: e2af7788-ae99-44aa-bfd6-4348e961560a, t"},{"event":"cmd_output","timestamp":1607098337,"output":"ype: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Mode"},{"event":"cmd_output","timestamp":1607098337,"output":"l.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:17.188 [info] Persisted ppl_sub_init for"},{"event":"cmd_output","timestamp":1607098337,"output":" pipeline with ppl_id: e2af7788-ae99-44aa-bfd6-4348e961560a: %Ppl.PplSubInits.Model.PplSubInits{__me"},{"event":"cmd_output","timestamp":1607098337,"output":"ta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description:"},{"event":"cmd_output","timestamp":1607098337,"output":" nil, id: 192, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:17.18548"},{"event":"cmd_output","timestamp":1607098337,"output":"9], pipeline_requests: #Ecto.Association.NotLoaded, pp"},{"event":"cmd_output","timestamp":1607098337,"output":"l_id: \"e2af7788-ae99-44aa-bfd6-4348e961560a\", recovery_count: 0, result: nil, result_reason: nil, st"},{"event":"cmd_output","timestamp":1607098337,"output":"ate: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12"},{"event":"cmd_output","timestamp":1607098337,"output":":17.185504]}\n\u001b[0m\u001b[22m\n16:12:17.196 [info] ppl_id: c3f8e7c2-e5ce-43cb-a3aa-1a30f1034996, type: Pp"},{"event":"cmd_output","timestamp":1607098337,"output":"lRequests, event: persisted schedule request with request_token: 8acb3345-469b-4d8c-992b-54c5dcd9127"},{"event":"cmd_output","timestamp":1607098337,"output":"a, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098337,"output":"12:17.200 [info] ppl_id: c3f8e7c2-e5ce-43cb-a3aa-1a30f1034996, type: PplRequests, event: persisted "},{"event":"cmd_output","timestamp":1607098337,"output":"definition for request with request_token: 8acb3345-469b-4d8c-992b-54c5dcd9127a, origin: Elixir.Ppl."},{"event":"cmd_output","timestamp":1607098337,"output":"PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:17.205 [info] ppl"},{"event":"cmd_output","timestamp":1607098337,"output":"_id: c3f8e7c2-e5ce-43cb-a3aa-1a30f1034996, type: Ppls, state: initializing, event: initializing, rec"},{"event":"cmd_output","timestamp":1607098337,"output":"overy_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098337,"output":"12:17.211 [info] Persisted ppl_sub_init for pipeline with ppl_id: c3f8e7c2-e5ce-43cb-a3aa-1a30f1034"},{"event":"cmd_output","timestamp":1607098337,"output":"996: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits"},{"event":"cmd_output","timestamp":1607098337,"output":"\">, compile_task_id: nil, error_description: nil, id: 193, in_scheduling: false, init_type: \"regular"},{"event":"cmd_output","timestamp":1607098337,"output":"\", inserted_at: ~N[2020-12-04 16:12:17.209515], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"c3f8e7c2-e5ce-43cb-a3aa-1a30f1034996\", recovery_c"},{"event":"cmd_output","timestamp":1607098337,"output":"ount: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_reques"},{"event":"cmd_output","timestamp":1607098337,"output":"t_desc: nil, updated_at: ~N[2020-12-04 16:12:17.209529]}\n\u001b[0m\u001b[22m\n16:12:17.217 [info] ppl_id: 2f"},{"event":"cmd_output","timestamp":1607098337,"output":"0cf62b-c83b-4e58-aaa2-02c8b6dd2695, type: PplRequests, event: persisted schedule request with reques"},{"event":"cmd_output","timestamp":1607098337,"output":"t_token: aaa8e655-e5c7-4034-875a-530342fad49b, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueri"},{"event":"cmd_output","timestamp":1607098337,"output":"es.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:17.220 [info] ppl_id: 2f0cf62b-c83b-4e58-aaa2-02c8b6"},{"event":"cmd_output","timestamp":1607098337,"output":"dd2695, type: PplRequests, event: persisted definition for request with request_token: aaa8e655-e5c7"},{"event":"cmd_output","timestamp":1607098337,"output":"-4034-875a-530342fad49b, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3"},{"event":"cmd_output","timestamp":1607098337,"output":"(L76), \n\u001b[0m\u001b[22m\n16:12:17.225 [info] ppl_id: 2f0cf62b-c83b-4e58-aaa2-02c8b6dd2695, type: Ppls, s"},{"event":"cmd_output","timestamp":1607098337,"output":"tate: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQuerie"},{"event":"cmd_output","timestamp":1607098337,"output":"s.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:17.231 [info] Persisted ppl_sub_init for pipeline wi"},{"event":"cmd_output","timestamp":1607098337,"output":"th ppl_id: 2f0cf62b-c83b-4e58-aaa2-02c8b6dd2695: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto."},{"event":"cmd_output","timestamp":1607098337,"output":"Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 19"},{"event":"cmd_output","timestamp":1607098337,"output":"4, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:17.229706], pipeline"},{"event":"cmd_output","timestamp":1607098337,"output":"_requests: #Ecto.Association.NotLoaded, ppl_id: \"2f0cf"},{"event":"cmd_output","timestamp":1607098337,"output":"62b-c83b-4e58-aaa2-02c8b6dd2695\", recovery_count: 0, result: nil, result_reason: nil, state: \"create"},{"event":"cmd_output","timestamp":1607098337,"output":"d\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:17.229719]}"},{"event":"cmd_output","timestamp":1607098337,"output":"\n\u001b[0m\u001b[22m\n16:12:17.238 [info] ppl_id: 96e3308f-e03c-414b-895d-869eee827c80, type: PplRequests, e"},{"event":"cmd_output","timestamp":1607098337,"output":"vent: persisted schedule request with request_token: c5e775d9-ec92-47ba-b7ba-38f3316abcbd, origin: E"},{"event":"cmd_output","timestamp":1607098337,"output":"lixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:17.242 [i"},{"event":"cmd_output","timestamp":1607098337,"output":"nfo] ppl_id: 96e3308f-e03c-414b-895d-869eee827c80, type: PplRequests, event: persisted definition f"},{"event":"cmd_output","timestamp":1607098337,"output":"or request with request_token: c5e775d9-ec92-47ba-b7ba-38f3316abcbd, origin: Elixir.Ppl.PplRequests."},{"event":"cmd_output","timestamp":1607098337,"output":"Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:17.246 [info] ppl_id: 96e3308"},{"event":"cmd_output","timestamp":1607098337,"output":"f-e03c-414b-895d-869eee827c80, type: Ppls, state: initializing, event: initializing, recovery_count:"},{"event":"cmd_output","timestamp":1607098337,"output":" 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:17.252 [i"},{"event":"cmd_output","timestamp":1607098337,"output":"nfo] Persisted ppl_sub_init for pipeline with ppl_id: 96e3308f-e03c-414b-895d-869eee827c80: %Ppl.Pp"},{"event":"cmd_output","timestamp":1607098337,"output":"lSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_"},{"event":"cmd_output","timestamp":1607098337,"output":"task_id: nil, error_description: nil, id: 195, in_scheduling: false, init_type: \"regular\", inserted_"},{"event":"cmd_output","timestamp":1607098337,"output":"at: ~N[2020-12-04 16:12:17.250465], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"96e3308f-e03c-414b-895d-869eee827c80\", recovery_count: 0, res"},{"event":"cmd_output","timestamp":1607098337,"output":"ult: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil,"},{"event":"cmd_output","timestamp":1607098337,"output":" updated_at: ~N[2020-12-04 16:12:17.250506]}\n\u001b[0m\u001b[22m\n16:12:17.261 [info] ppl_id: c55e84f0-57d9-"},{"event":"cmd_output","timestamp":1607098337,"output":"48fc-9148-d94261b935e1, type: PplRequests, event: persisted schedule request with request_token: ed2"},{"event":"cmd_output","timestamp":1607098337,"output":"ad020-e76b-40f3-aee6-6cbb40e0511d, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_r"},{"event":"cmd_output","timestamp":1607098337,"output":"esponse/2(L55), \n\u001b[0m\u001b[22m\n16:12:17.264 [info] ppl_id: c55e84f0-57d9-48fc-9148-d94261b935e1, type"},{"event":"cmd_output","timestamp":1607098337,"output":": PplRequests, event: persisted definition for request with request_token: ed2ad020-e76b-40f3-aee6-6"},{"event":"cmd_output","timestamp":1607098337,"output":"cbb40e0511d, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098337,"output":"m\u001b[22m\n16:12:17.268 [info] ppl_id: c55e84f0-57d9-48fc-9148-d94261b935e1, type: Ppls, state: initia"},{"event":"cmd_output","timestamp":1607098337,"output":"lizing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_re"},{"event":"cmd_output","timestamp":1607098337,"output":"sponse/2(L124), \n\u001b[0m\u001b[22m\n16:12:17.273 [info] Persisted ppl_sub_init for pipeline with ppl_id: c"},{"event":"cmd_output","timestamp":1607098337,"output":"55e84f0-57d9-48fc-9148-d94261b935e1: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metad"},{"event":"cmd_output","timestamp":1607098337,"output":"ata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 196, in_schedu"},{"event":"cmd_output","timestamp":1607098337,"output":"ling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:17.271441], pipeline_requests: #"},{"event":"cmd_output","timestamp":1607098337,"output":"Ecto.Association.NotLoaded, ppl_id: \"c55e84f0-57d9-48f"},{"event":"cmd_output","timestamp":1607098337,"output":"c-9148-d94261b935e1\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminat"},{"event":"cmd_output","timestamp":1607098337,"output":"e_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:17.271455]}\n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098337,"output":"\n16:12:17.280 [info] ppl_id: 834aee84-245e-4b9d-ac4b-cb6c248fa413, type: PplRequests, event: persis"},{"event":"cmd_output","timestamp":1607098337,"output":"ted schedule request with request_token: d9e636a0-d1e6-4028-8e62-40f827365041, origin: Elixir.Ppl.Pp"},{"event":"cmd_output","timestamp":1607098337,"output":"lRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:17.283 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098337,"output":": 834aee84-245e-4b9d-ac4b-cb6c248fa413, type: PplRequests, event: persisted definition for request w"},{"event":"cmd_output","timestamp":1607098337,"output":"ith request_token: d9e636a0-d1e6-4028-8e62-40f827365041, origin: Elixir.Ppl.PplRequests.Model.PplReq"},{"event":"cmd_output","timestamp":1607098337,"output":"uestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:17.287 [info] ppl_id: 834aee84-245e-4b9d-"},{"event":"cmd_output","timestamp":1607098337,"output":"ac4b-cb6c248fa413, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098337,"output":"Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:17.294 [info] Persis"},{"event":"cmd_output","timestamp":1607098337,"output":"ted ppl_sub_init for pipeline with ppl_id: 834aee84-245e-4b9d-ac4b-cb6c248fa413: %Ppl.PplSubInits.Mo"},{"event":"cmd_output","timestamp":1607098337,"output":"del.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil"},{"event":"cmd_output","timestamp":1607098337,"output":", error_description: nil, id: 197, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-"},{"event":"cmd_output","timestamp":1607098337,"output":"12-04 16:12:17.292962], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"834aee84-245e-4b9d-ac4b-cb6c248fa413\", recovery_count: 0, result: nil, re"},{"event":"cmd_output","timestamp":1607098337,"output":"sult_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at:"},{"event":"cmd_output","timestamp":1607098337,"output":" ~N[2020-12-04 16:12:17.292977]}\n\u001b[0m\u001b[22m\n16:12:17.300 [info] ppl_id: 0a77bc14-048a-4583-99b8-90"},{"event":"cmd_output","timestamp":1607098337,"output":"b634b60238, type: PplRequests, event: persisted schedule request with request_token: 466b3b1e-3538-4"},{"event":"cmd_output","timestamp":1607098337,"output":"f8e-bf2e-b4f8c7eec577, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L5"},{"event":"cmd_output","timestamp":1607098337,"output":"5), \n\u001b[0m\u001b[22m\n16:12:17.303 [info] ppl_id: 0a77bc14-048a-4583-99b8-90b634b60238, type: PplRequest"},{"event":"cmd_output","timestamp":1607098337,"output":"s, event: persisted definition for request with request_token: 466b3b1e-3538-4f8e-bf2e-b4f8c7eec577,"},{"event":"cmd_output","timestamp":1607098337,"output":" origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098337,"output":"2:17.306 [info] ppl_id: 0a77bc14-048a-4583-99b8-90b634b60238, type: Ppls, state: initializing, even"},{"event":"cmd_output","timestamp":1607098337,"output":"t: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L12"},{"event":"cmd_output","timestamp":1607098337,"output":"4), \n\u001b[0m\u001b[22m\n16:12:17.312 [info] Persisted ppl_sub_init for pipeline with ppl_id: 0a77bc14-048a"},{"event":"cmd_output","timestamp":1607098337,"output":"-4583-99b8-90b634b60238: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded,"},{"event":"cmd_output","timestamp":1607098337,"output":" \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 198, in_scheduling: false,"},{"event":"cmd_output","timestamp":1607098337,"output":" init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:17.309960], pipeline_requests: #Ecto.Associa"},{"event":"cmd_output","timestamp":1607098337,"output":"tion.NotLoaded, ppl_id: \"0a77bc14-048a-4583-99b8-90b63"},{"event":"cmd_output","timestamp":1607098337,"output":"4b60238\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: n"},{"event":"cmd_output","timestamp":1607098337,"output":"il, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:17.309998]}\n\u001b[0m\u001b[22m\n16:12:17.31"},{"event":"cmd_output","timestamp":1607098337,"output":"8 [info] ppl_id: da6fd73c-c139-41fa-b172-82bac129f984, type: PplRequests, event: persisted schedule"},{"event":"cmd_output","timestamp":1607098337,"output":" request with request_token: 2690c32b-84da-4172-b965-a7a692bff524, origin: Elixir.Ppl.PplRequests.Mo"},{"event":"cmd_output","timestamp":1607098337,"output":"del.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:17.321 [info] ppl_id: da6fd73c-c"},{"event":"cmd_output","timestamp":1607098337,"output":"139-41fa-b172-82bac129f984, type: PplRequests, event: persisted definition for request with request_"},{"event":"cmd_output","timestamp":1607098337,"output":"token: 2690c32b-84da-4172-b965-a7a692bff524, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries"},{"event":"cmd_output","timestamp":1607098337,"output":".insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:17.331 [info] ppl_id: da6fd73c-c139-41fa-b172-82bac12"},{"event":"cmd_output","timestamp":1607098337,"output":"9f984, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.P"},{"event":"cmd_output","timestamp":1607098337,"output":"pls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:17.336 [info] Persisted ppl_sub_"},{"event":"cmd_output","timestamp":1607098337,"output":"init for pipeline with ppl_id: da6fd73c-c139-41fa-b172-82bac129f984: %Ppl.PplSubInits.Model.PplSubIn"},{"event":"cmd_output","timestamp":1607098337,"output":"its{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_desc"},{"event":"cmd_output","timestamp":1607098337,"output":"ription: nil, id: 199, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:"},{"event":"cmd_output","timestamp":1607098337,"output":"17.335009], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"da6fd73c-c139-41fa-b172-82bac129f984\", recovery_count: 0, result: nil, result_reason:"},{"event":"cmd_output","timestamp":1607098337,"output":" nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-"},{"event":"cmd_output","timestamp":1607098337,"output":"04 16:12:17.335024]}\n\u001b[0m\u001b[22m\n16:12:17.340 [info] Periodic from module Elixir.Ppl.Ppls.STMHandle"},{"event":"cmd_output","timestamp":1607098337,"output":"r.InitializingState with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms, metric"},{"event":"cmd_output","timestamp":1607098337,"output":"_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %{allowe"},{"event":"cmd_output","timestamp":1607098337,"output":"d_states: [\"initializing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Pp"},{"event":"cmd_output","timestamp":1607098337,"output":"ls, observed_state: \"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.Ini"},{"event":"cmd_output","timestamp":1607098337,"output":"tializingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state"},{"event":"cmd_output","timestamp":1607098337,"output":", :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098337,"output":"m\n16:12:17.342 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingState with name Elixi"},{"event":"cmd_output","timestamp":1607098337,"output":"r.Ppl.Ppls.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Pp"},{"event":"cmd_output","timestamp":1607098337,"output":"ls-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"pending\", \"queuing\", \"running\", \""},{"event":"cmd_output","timestamp":1607098337,"output":"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publishe"},{"event":"cmd_output","timestamp":1607098337,"output":"r_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, returni"},{"event":"cmd_output","timestamp":1607098337,"output":"ng: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.P"},{"event":"cmd_output","timestamp":1607098337,"output":"pls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:12:17.343 [info] Periodic from "},{"event":"cmd_output","timestamp":1607098337,"output":"module Elixir.Ppl.Ppls.STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandler.QueuingState :: "},{"event":"cmd_output","timestamp":1607098337,"output":"period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurri"},{"event":"cmd_output","timestamp":1607098337,"output":"ng args: %{allowed_states: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, initial_query: Ppl."},{"event":"cmd_output","timestamp":1607098337,"output":"Ppls.Model.Ppls, observed_state: \"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHan"},{"event":"cmd_output","timestamp":1607098337,"output":"dler.QueuingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :st"},{"event":"cmd_output","timestamp":1607098337,"output":"ate, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098337,"output":"[22m\n16:12:17.345 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.RunningState with name El"},{"event":"cmd_output","timestamp":1607098337,"output":"ixir.Ppl.Ppls.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl"},{"event":"cmd_output","timestamp":1607098337,"output":"-Ppls-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"],"},{"event":"cmd_output","timestamp":1607098337,"output":" cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"running\", publisher_cb: "},{"event":"cmd_output","timestamp":1607098337,"output":"#Function<0.74670282/1 in Ppl.Ppls.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: ["},{"event":"cmd_output","timestamp":1607098337,"output":":id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.M"},{"event":"cmd_output","timestamp":1607098337,"output":"odel.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:12:17.346 [info] Periodic from modul"},{"event":"cmd_output","timestamp":1607098337,"output":"e Elixir.Ppl.Ppls.STMHandler.StoppingState with name Elixir.Ppl.Ppls.STMHandler.StoppingState :: per"},{"event":"cmd_output","timestamp":1607098337,"output":"iod: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring"},{"event":"cmd_output","timestamp":1607098337,"output":" args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.P"},{"event":"cmd_output","timestamp":1607098337,"output":"pls, observed_state: \"stopping\", publisher_cb: #Function<0.71803493/1 in Ppl.Ppls.STMHandler.Stoppin"},{"event":"cmd_output","timestamp":1607098337,"output":"gState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :resul"},{"event":"cmd_output","timestamp":1607098337,"output":"t, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12"},{"event":"cmd_output","timestamp":1607098337,"output":":17.347 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedState with name Elixir"},{"event":"cmd_output","timestamp":1607098337,"output":".Ppl.PplSubInits.STMHandler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\""},{"event":"cmd_output","timestamp":1607098337,"output":"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args: %{allowed_states: [\"fetching\", \"done\"], "},{"event":"cmd_output","timestamp":1607098337,"output":"cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"created\", pu"},{"event":"cmd_output","timestamp":1607098337,"output":"blisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :re"},{"event":"cmd_output","timestamp":1607098337,"output":"sult, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\r"},{"event":"cmd_output","timestamp":1607098337,"output":"\n\u001b[0m\u001b[22m\n16:12:17.349 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.FetchingStat"},{"event":"cmd_output","timestamp":1607098337,"output":"e with name Elixir.Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 ms, metric_name: {\"Ppl.be"},{"event":"cmd_output","timestamp":1607098337,"output":"holder-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %{allowed_states: [\""},{"event":"cmd_output","timestamp":1607098337,"output":"regular_init\", \"compilation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.Pp"},{"event":"cmd_output","timestamp":1607098337,"output":"lSubInits, observed_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :te"},{"event":"cmd_output","timestamp":1607098337,"output":"rminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Mo"},{"event":"cmd_output","timestamp":1607098337,"output":"del.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:17.350 [info] Periodic from module Elixi"},{"event":"cmd_output","timestamp":1607098337,"output":"r.Ppl.PplSubInits.STMHandler.CompilationState with name Elixir.Ppl.PplSubInits.STMHandler.Compilatio"},{"event":"cmd_output","timestamp":1607098337,"output":"nState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-Compila"},{"event":"cmd_output","timestamp":1607098337,"output":"tionState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"stopping\", \"done\"],"},{"event":"cmd_output","timestamp":1607098337,"output":" cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"compilatio"},{"event":"cmd_output","timestamp":1607098337,"output":"n\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :stat"},{"event":"cmd_output","timestamp":1607098337,"output":"e, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :"},{"event":"cmd_output","timestamp":1607098337,"output":"skip}\n\u001b[0m\u001b[22m\n16:12:17.351 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.Regula"},{"event":"cmd_output","timestamp":1607098337,"output":"rInitState with name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period: 100 ms, metric_na"},{"event":"cmd_output","timestamp":1607098337,"output":"me: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurring args: %{all"},{"event":"cmd_output","timestamp":1607098337,"output":"owed_states: [\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observ"},{"event":"cmd_output","timestamp":1607098337,"output":"ed_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_reque"},{"event":"cmd_output","timestamp":1607098337,"output":"st, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubIni"},{"event":"cmd_output","timestamp":1607098337,"output":"ts, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:17.351 [info] Periodic from module Elixir.Ppl.PplBloc"},{"event":"cmd_output","timestamp":1607098337,"output":"ks.STMHandler.InitializingState with name Elixir.Ppl.PplBlocks.STMHandler.InitializingState :: perio"},{"event":"cmd_output","timestamp":1607098337,"output":"d: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-InitializingState\"]}, re"},{"event":"cmd_output","timestamp":1607098337,"output":"curring args: %{allowed_states: [\"initializing\", \"waiting\", \"done\"], cooling_time_sec: 0, initial_qu"},{"event":"cmd_output","timestamp":1607098337,"output":"ery: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Ppl.E"},{"event":"cmd_output","timestamp":1607098337,"output":"ctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id"},{"event":"cmd_output","timestamp":1607098337,"output":", :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:17"},{"event":"cmd_output","timestamp":1607098337,"output":".351 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.WaitingState with name Elixir.Ppl."},{"event":"cmd_output","timestamp":1607098337,"output":"PplBlocks.STMHandler.WaitingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Pp"},{"event":"cmd_output","timestamp":1607098337,"output":"lBlocks-STMHandler-WaitingState\"]}, recurring args: %{allowed_states: [\"waiting\", \"running\", \"done\"]"},{"event":"cmd_output","timestamp":1607098337,"output":", cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"waiting\", publ"},{"event":"cmd_output","timestamp":1607098337,"output":"isher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>, repo: Ppl.EctoRepo"},{"event":"cmd_output","timestamp":1607098337,"output":", returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :bloc"},{"event":"cmd_output","timestamp":1607098337,"output":"k_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:17.352 [i"},{"event":"cmd_output","timestamp":1607098337,"output":"nfo] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.RunningState with name Elixir.Ppl.PplBloc"},{"event":"cmd_output","timestamp":1607098337,"output":"ks.STMHandler.RunningState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks"},{"event":"cmd_output","timestamp":1607098337,"output":"-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cool"},{"event":"cmd_output","timestamp":1607098337,"output":"ing_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"running\", publisher"},{"event":"cmd_output","timestamp":1607098337,"output":"_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, re"},{"event":"cmd_output","timestamp":1607098337,"output":"turning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_in"},{"event":"cmd_output","timestamp":1607098337,"output":"dex, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:17"},{"event":"cmd_output","timestamp":1607098337,"output":".352 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.StoppingState with name Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098337,"output":".PplBlocks.STMHandler.StoppingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-"},{"event":"cmd_output","timestamp":1607098337,"output":"PplBlocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooli"},{"event":"cmd_output","timestamp":1607098337,"output":"ng_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"stopping\", publisher"},{"event":"cmd_output","timestamp":1607098337,"output":"_cb: #Function<0.104215991/1 in Ppl.PplBlocks.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, "},{"event":"cmd_output","timestamp":1607098337,"output":"returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_"},{"event":"cmd_output","timestamp":1607098337,"output":"index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:"},{"event":"cmd_output","timestamp":1607098337,"output":"17.352 [info] Periodic from module Elixir.Block.Blocks.STMHandler.InitializingState with name Elixi"},{"event":"cmd_output","timestamp":1607098337,"output":"r.Block.Blocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\","},{"event":"cmd_output","timestamp":1607098337,"output":" [\"Block-Blocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"running\", \"done"},{"event":"cmd_output","timestamp":1607098337,"output":"\"], cooling_time_sec: 0, initial_query: Block.Blocks.Model.Blocks, observed_state: \"initializing\", p"},{"event":"cmd_output","timestamp":1607098337,"output":"ublisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, "},{"event":"cmd_output","timestamp":1607098337,"output":":recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098337,"output":"16:12:17.352 [info] Periodic from module Elixir.Block.Blocks.STMHandler.RunningState with name Elix"},{"event":"cmd_output","timestamp":1607098337,"output":"ir.Block.Blocks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"B"},{"event":"cmd_output","timestamp":1607098337,"output":"lock-Blocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"d"},{"event":"cmd_output","timestamp":1607098337,"output":"one\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"running\", pu"},{"event":"cmd_output","timestamp":1607098337,"output":"blisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :"},{"event":"cmd_output","timestamp":1607098337,"output":"recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098337,"output":"6:12:17.352 [info] Periodic from module Elixir.Block.Blocks.STMHandler.StoppingState with name Elix"},{"event":"cmd_output","timestamp":1607098337,"output":"ir.Block.Blocks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\""},{"event":"cmd_output","timestamp":1607098337,"output":"Block-Blocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], co"},{"event":"cmd_output","timestamp":1607098337,"output":"oling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"stopping\", publisher_"},{"event":"cmd_output","timestamp":1607098337,"output":"cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery"},{"event":"cmd_output","timestamp":1607098337,"output":"_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:17."},{"event":"cmd_output","timestamp":1607098337,"output":"353 [info] Periodic from module Elixir.Block.Tasks.STMHandler.PendingState with name Elixir.Block.T"},{"event":"cmd_output","timestamp":1607098337,"output":"asks.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-"},{"event":"cmd_output","timestamp":1607098337,"output":"STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec:"},{"event":"cmd_output","timestamp":1607098337,"output":" 0, initial_query: Block.Tasks.Model.Tasks, observed_state: \"pending\", publisher_cb: :skip, repo: Bl"},{"event":"cmd_output","timestamp":1607098337,"output":"ock.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id, "},{"event":"cmd_output","timestamp":1607098337,"output":":build_request_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:17.35"},{"event":"cmd_output","timestamp":1607098337,"output":"3 [info] Periodic from module Elixir.Block.Tasks.STMHandler.RunningState with name Elixir.Block.Tas"},{"event":"cmd_output","timestamp":1607098337,"output":"ks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-ST"},{"event":"cmd_output","timestamp":1607098337,"output":"MHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling"},{"event":"cmd_output","timestamp":1607098337,"output":"_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"running\", publisher_cb: :ski"},{"event":"cmd_output","timestamp":1607098337,"output":"p, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, "},{"event":"cmd_output","timestamp":1607098337,"output":":block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:17.353 [info]"},{"event":"cmd_output","timestamp":1607098337,"output":" Periodic from module Elixir.Block.Tasks.STMHandler.StoppingState with name Elixir.Block.Tasks.STMH"},{"event":"cmd_output","timestamp":1607098337,"output":"andler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandl"},{"event":"cmd_output","timestamp":1607098337,"output":"er-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, i"},{"event":"cmd_output","timestamp":1607098337,"output":"nitial_query: Block.Tasks.Model.Tasks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block."},{"event":"cmd_output","timestamp":1607098337,"output":"EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], sch"},{"event":"cmd_output","timestamp":1607098337,"output":"ema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:17.465 [info] ppl_id: e2af7"},{"event":"cmd_output","timestamp":1607098337,"output":"788-ae99-44aa-bfd6-4348e961560a, type: PplRequests, event: persisted source_args for pipeline: e2af7"},{"event":"cmd_output","timestamp":1607098337,"output":"788-ae99-44aa-bfd6-4348e961560a, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_sour"},{"event":"cmd_output","timestamp":1607098337,"output":"ce/2(L89), \n\u001b[0m\u001b[22m\n16:12:17.476 [info] ppl_id: e2af7788-ae99-44aa-bfd6-4348e961560a, type: Ppl"},{"event":"cmd_output","timestamp":1607098337,"output":"SubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl"},{"event":"cmd_output","timestamp":1607098337,"output":".log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:17.504 [info] ppl_id: e2af7788-ae99-44aa-bfd6-4348e961"},{"event":"cmd_output","timestamp":1607098337,"output":"560a, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098337,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:17.541 [info] ppl_id: e2af7788-ae99"},{"event":"cmd_output","timestamp":1607098337,"output":"-44aa-bfd6-4348e961560a, type: PplRequests, event: persisted definition for request with request_tok"},{"event":"cmd_output","timestamp":1607098337,"output":"en: c7725675-21a5-4706-b235-30358ce3ef68, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.in"},{"event":"cmd_output","timestamp":1607098337,"output":"sert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:17.547 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Q"},{"event":"cmd_output","timestamp":1607098337,"output":"ueues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:12:17.544594"},{"event":"cmd_output","timestamp":1607098337,"output":"], name: \"master-.semaphore/semaphore.yml\", organization_id: \"56a9a678-a4d2-45c6-90a5-c3791b8f8836\","},{"event":"cmd_output","timestamp":1607098337,"output":" project_id: \"123\", queue_id: \"37d744b4-2320-44d2-9368-29092dc72969\", scope: \"project\", updated_at: "},{"event":"cmd_output","timestamp":1607098337,"output":"~N[2020-12-04 16:12:17.544608], user_generated: false}}\n\u001b[0m\u001b[22m\n16:12:17.553 [info] event: crea"},{"event":"cmd_output","timestamp":1607098337,"output":"ted, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:"},{"event":"cmd_output","timestamp":1607098337,"output":"17.553 [info] ppl_id: e2af7788-ae99-44aa-bfd6-4348e961560a, type: PplBlocks, block_index: 0, state:"},{"event":"cmd_output","timestamp":1607098337,"output":" initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularI"},{"event":"cmd_output","timestamp":1607098337,"output":"nitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:17.556 [info] ppl_id: e2af7788-ae99-44aa-bfd6-4348e961"},{"event":"cmd_output","timestamp":1607098337,"output":"560a, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098337,"output":"gin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:17.574 [info] ppl_id: e2af7"},{"event":"cmd_output","timestamp":1607098337,"output":"788-ae99-44aa-bfd6-4348e961560a, type: PplBlocks, block_index: 0, state: waiting, event: exit_schedu"},{"event":"cmd_output","timestamp":1607098337,"output":"ling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:"},{"event":"cmd_output","timestamp":1607098337,"output":"17.583 [info] ppl_id: e2af7788-ae99-44aa-bfd6-4348e961560a, type: Ppls, state: pending, event: exit"},{"event":"cmd_output","timestamp":1607098337,"output":"_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098337,"output":"\n16:12:17.594 [info] ppl_id: c3f8e7c2-e5ce-43cb-a3aa-1a30f1034996, type: PplRequests, event: persis"},{"event":"cmd_output","timestamp":1607098337,"output":"ted source_args for pipeline: c3f8e7c2-e5ce-43cb-a3aa-1a30f1034996, origin: Elixir.Ppl.PplRequests.M"},{"event":"cmd_output","timestamp":1607098337,"output":"odel.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:17.597 [info] ppl_id: c3f8e7c2-e5c"},{"event":"cmd_output","timestamp":1607098337,"output":"e-43cb-a3aa-1a30f1034996, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count"},{"event":"cmd_output","timestamp":1607098337,"output":": 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:17.603 [info] ppl_i"},{"event":"cmd_output","timestamp":1607098337,"output":"d: e2af7788-ae99-44aa-bfd6-4348e961560a, type: Ppls, state: queuing, event: exit_scheduling, recover"},{"event":"cmd_output","timestamp":1607098337,"output":"y_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:17.615 [info]"},{"event":"cmd_output","timestamp":1607098337,"output":" ppl_id: e2af7788-ae99-44aa-bfd6-4348e961560a, type: Ppls, state: running, event: exit_scheduling, "},{"event":"cmd_output","timestamp":1607098337,"output":"recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:17.626"},{"event":"cmd_output","timestamp":1607098337,"output":" [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"e2af7788-ae99-44aa-bfd6-43"},{"event":"cmd_output","timestamp":1607098337,"output":"48e961560a\"\n\u001b[0m\u001b[22m\n16:12:17.635 [info] block_id: b295e86b-7321-483e-be57-85d97bef13ac, type: B"},{"event":"cmd_output","timestamp":1607098337,"output":"lockRequests, event: persisted block run request from ppl e2af7788-ae99-44aa-bfd6-4348e961560a for b"},{"event":"cmd_output","timestamp":1607098337,"output":"lock 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098337,"output":"m\u001b[22m\n16:12:17.636 [info] ppl_id: c3f8e7c2-e5ce-43cb-a3aa-1a30f1034996, type: PplSubInits, state:"},{"event":"cmd_output","timestamp":1607098337,"output":" regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098337,"output":"hange/1(L90), \n\u001b[0m\u001b[22m\n16:12:17.640 [info] block_id: b295e86b-7321-483e-be57-85d97bef13ac, type"},{"event":"cmd_output","timestamp":1607098337,"output":": Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.M"},{"event":"cmd_output","timestamp":1607098337,"output":"odel.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:17.644 [info] Block 0 of pipeline with id: e2a"},{"event":"cmd_output","timestamp":1607098337,"output":"f7788-ae99-44aa-bfd6-4348e961560a scheduled in block service with id: : \"b295e86b-7321-483e-be57-85d"},{"event":"cmd_output","timestamp":1607098337,"output":"97bef13ac\"\n\u001b[0m\u001b[22m\n16:12:17.646 [info] block_id: b295e86b-7321-483e-be57-85d97bef13ac, type: Bl"},{"event":"cmd_output","timestamp":1607098337,"output":"ockRequests, event: persisted build and sub_ppl details for block_request: b295e86b-7321-483e-be57-8"},{"event":"cmd_output","timestamp":1607098337,"output":"5d97bef13ac, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b["},{"event":"cmd_output","timestamp":1607098337,"output":"0m\u001b[22m\n16:12:17.652 [info] block_id: b295e86b-7321-483e-be57-85d97bef13ac, type: Tasks, state: pe"},{"event":"cmd_output","timestamp":1607098337,"output":"nding, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.a"},{"event":"cmd_output","timestamp":1607098337,"output":"ll_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:17.652 [info] ppl_id: e2af7788-ae99-44aa-bfd6-4348e961560a, type"},{"event":"cmd_output","timestamp":1607098337,"output":": PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098337,"output":"ir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:17.656 [info] block_id: b295e86b-732"},{"event":"cmd_output","timestamp":1607098337,"output":"1-483e-be57-85d97bef13ac, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098337,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:17.695 [info] block_id: b"},{"event":"cmd_output","timestamp":1607098337,"output":"295e86b-7321-483e-be57-85d97bef13ac, type: Tasks, state: running, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098337,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:17.710 [info] p"},{"event":"cmd_output","timestamp":1607098337,"output":"pl_id: 2f0cf62b-c83b-4e58-aaa2-02c8b6dd2695, type: PplRequests, event: persisted source_args for pip"},{"event":"cmd_output","timestamp":1607098337,"output":"eline: 2f0cf62b-c83b-4e58-aaa2-02c8b6dd2695, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries"},{"event":"cmd_output","timestamp":1607098337,"output":".insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:17.711 [info] ppl_id: c3f8e7c2-e5ce-43cb-a3aa-1a30f103499"},{"event":"cmd_output","timestamp":1607098337,"output":"6, type: PplRequests, event: persisted definition for request with request_token: 8acb3345-469b-4d8c"},{"event":"cmd_output","timestamp":1607098337,"output":"-992b-54c5dcd9127a, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76)"},{"event":"cmd_output","timestamp":1607098337,"output":", \n\u001b[0m\u001b[22m\n16:12:17.714 [info] ppl_id: 2f0cf62b-c83b-4e58-aaa2-02c8b6dd2695, type: PplSubInits,"},{"event":"cmd_output","timestamp":1607098337,"output":" state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_stat"},{"event":"cmd_output","timestamp":1607098337,"output":"e_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:17.720 [info] event: created, origin: Elixir.Ppl.PplSubInits.ST"},{"event":"cmd_output","timestamp":1607098337,"output":"MHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:17.721 [info] ppl_id: c3f8e7c2-e5ce-4"},{"event":"cmd_output","timestamp":1607098337,"output":"3cb-a3aa-1a30f1034996, type: PplBlocks, block_index: 0, state: initializing, event: created, recover"},{"event":"cmd_output","timestamp":1607098337,"output":"y_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098337,"output":"\n16:12:17.724 [info] ppl_id: c3f8e7c2-e5ce-43cb-a3aa-1a30f1034996, type: PplSubInits, state: done, "},{"event":"cmd_output","timestamp":1607098337,"output":"result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_"},{"event":"cmd_output","timestamp":1607098337,"output":"change/1(L90), \n\u001b[0m\u001b[22m\n16:12:17.735 [info] ppl_id: c3f8e7c2-e5ce-43cb-a3aa-1a30f1034996, type:"},{"event":"cmd_output","timestamp":1607098337,"output":" PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098337,"output":"r.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:17.739 [info] ppl_id: c3f8e7c2-e5ce-4"},{"event":"cmd_output","timestamp":1607098337,"output":"3cb-a3aa-1a30f1034996, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098337,"output":": Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:17.750 [info] ppl_id: c3f8e7c2"},{"event":"cmd_output","timestamp":1607098337,"output":"-e5ce-43cb-a3aa-1a30f1034996, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098337,"output":" origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:17.760 [info] ppl_id: 2"},{"event":"cmd_output","timestamp":1607098337,"output":"f0cf62b-c83b-4e58-aaa2-02c8b6dd2695, type: PplSubInits, state: regular_init, event: exit_scheduling,"},{"event":"cmd_output","timestamp":1607098337,"output":" recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:17.79"},{"event":"cmd_output","timestamp":1607098337,"output":"6 [info] block_id: b295e86b-7321-483e-be57-85d97bef13ac, type: Tasks, state: done, event: exit_sche"},{"event":"cmd_output","timestamp":1607098337,"output":"duling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098337,"output":"2:17.808 [info] block_id: b295e86b-7321-483e-be57-85d97bef13ac, type: Blocks, state: done, event: e"},{"event":"cmd_output","timestamp":1607098337,"output":"xit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098337,"output":"2m\n16:12:17.823 [info] ppl_id: 2f0cf62b-c83b-4e58-aaa2-02c8b6dd2695, type: PplRequests, event: per"},{"event":"cmd_output","timestamp":1607098337,"output":"sisted definition for request with request_token: aaa8e655-e5c7-4034-875a-530342fad49b, origin: Elix"},{"event":"cmd_output","timestamp":1607098337,"output":"ir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:17.826 [inf"},{"event":"cmd_output","timestamp":1607098337,"output":"o] ppl_id: e2af7788-ae99-44aa-bfd6-4348e961560a, block_id: b295e86b-7321-483e-be57-85d97bef13ac, ty"},{"event":"cmd_output","timestamp":1607098337,"output":"pe: PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: "},{"event":"cmd_output","timestamp":1607098337,"output":"0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:17.834 [info] Queue p"},{"event":"cmd_output","timestamp":1607098337,"output":"ersisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserte"},{"event":"cmd_output","timestamp":1607098337,"output":"d_at: ~N[2020-12-04 16:12:17.828728], name: \"master-.semaphore/semaphore.yml\", organization_id: \"bc9"},{"event":"cmd_output","timestamp":1607098337,"output":"6d64b-11cc-4b36-be9b-26d303a90c9d\", project_id: \"456\", queue_id: \"d2a05725-2316-42aa-b9ea-5048cb2ac4"},{"event":"cmd_output","timestamp":1607098337,"output":"89\", scope: \"project\", updated_at: ~N[2020-12-04 16:12:17.828740], user_generated: false}}\n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098337,"output":"m\n16:12:17.841 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.a"},{"event":"cmd_output","timestamp":1607098337,"output":"ll_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:17.841 [info] ppl_id: 2f0cf62b-c83b-4e58-aaa2-02c8b6dd2695, type"},{"event":"cmd_output","timestamp":1607098337,"output":": PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098337,"output":"Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:17.841 [info] ppl_i"},{"event":"cmd_output","timestamp":1607098337,"output":"d: 96e3308f-e03c-414b-895d-869eee827c80, type: PplRequests, event: persisted source_args for pipelin"},{"event":"cmd_output","timestamp":1607098337,"output":"e: 96e3308f-e03c-414b-895d-869eee827c80, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.ins"},{"event":"cmd_output","timestamp":1607098337,"output":"ert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:17.845 [info] ppl_id: 2f0cf62b-c83b-4e58-aaa2-02c8b6dd2695, t"},{"event":"cmd_output","timestamp":1607098337,"output":"ype: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098337,"output":"ixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:17.850 [info] ppl_id: 96e3308f-e03"},{"event":"cmd_output","timestamp":1607098337,"output":"c-414b-895d-869eee827c80, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count"},{"event":"cmd_output","timestamp":1607098337,"output":": 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:17.853 [info] ppl_i"},{"event":"cmd_output","timestamp":1607098337,"output":"d: e2af7788-ae99-44aa-bfd6-4348e961560a, type: Ppls, state: done, result: passed, event: exit_schedu"},{"event":"cmd_output","timestamp":1607098337,"output":"ling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:"},{"event":"cmd_output","timestamp":1607098337,"output":"17.864 [info] ppl_id: 2f0cf62b-c83b-4e58-aaa2-02c8b6dd2695, type: PplBlocks, block_index: 0, state:"},{"event":"cmd_output","timestamp":1607098337,"output":" waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change"},{"event":"cmd_output","timestamp":1607098337,"output":"/1(L90), \n\u001b[0m\u001b[22m\n16:12:17.866 [info] ppl_id: 2f0cf62b-c83b-4e58-aaa2-02c8b6dd2695, type: Ppls,"},{"event":"cmd_output","timestamp":1607098337,"output":" state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state"},{"event":"cmd_output","timestamp":1607098337,"output":"_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:17.879 [info] ppl_id: 2f0cf62b-c83b-4e58-aaa2-02c8b6dd2695, type"},{"event":"cmd_output","timestamp":1607098337,"output":": Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.lo"},{"event":"cmd_output","timestamp":1607098337,"output":"g_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:17.895 [info] ppl_id: 96e3308f-e03c-414b-895d-869eee827c8"},{"event":"cmd_output","timestamp":1607098337,"output":"0, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098337,"output":".Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:17.903 [info] ppl_id: c3f8e7c2-e5ce-43"},{"event":"cmd_output","timestamp":1607098337,"output":"cb-a3aa-1a30f1034996, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098337,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:17.913 [info] PplBlocks Waiting"},{"event":"cmd_output","timestamp":1607098337,"output":"State STM is scheduling block 0 from pipeline: \"c3f8e7c2-e5ce-43cb-a3aa-1a30f1034996\"\n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098337,"output":":12:17.932 [info] block_id: cff75dec-5302-4708-82a6-006ae7c1df51, type: BlockRequests, event: persi"},{"event":"cmd_output","timestamp":1607098337,"output":"sted block run request from ppl c3f8e7c2-e5ce-43cb-a3aa-1a30f1034996 for block 0, origin: Elixir.Blo"},{"event":"cmd_output","timestamp":1607098337,"output":"ck.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:17.937 [info"},{"event":"cmd_output","timestamp":1607098337,"output":"] block_id: cff75dec-5302-4708-82a6-006ae7c1df51, type: Blocks, state: initializing, event: initial"},{"event":"cmd_output","timestamp":1607098337,"output":"izing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098337,"output":"\n16:12:17.946 [info] Block 0 of pipeline with id: c3f8e7c2-e5ce-43cb-a3aa-1a30f1034996 scheduled i"},{"event":"cmd_output","timestamp":1607098337,"output":"n block service with id: : \"cff75dec-5302-4708-82a6-006ae7c1df51\"\n\u001b[0m\u001b[22m\n16:12:17.946 [info] p"},{"event":"cmd_output","timestamp":1607098337,"output":"pl_id: 2f0cf62b-c83b-4e58-aaa2-02c8b6dd2695, type: Ppls, state: running, event: exit_scheduling, rec"},{"event":"cmd_output","timestamp":1607098337,"output":"overy_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:17.951 [i"},{"event":"cmd_output","timestamp":1607098337,"output":"nfo] block_id: cff75dec-5302-4708-82a6-006ae7c1df51, type: BlockRequests, event: persisted build an"},{"event":"cmd_output","timestamp":1607098337,"output":"d sub_ppl details for block_request: cff75dec-5302-4708-82a6-006ae7c1df51, origin: Elixir.Block.Bloc"},{"event":"cmd_output","timestamp":1607098337,"output":"kRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:17.953 [info] ppl_id: "},{"event":"cmd_output","timestamp":1607098337,"output":"c3f8e7c2-e5ce-43cb-a3aa-1a30f1034996, type: PplBlocks, block_index: 0, state: running, event: exit_s"},{"event":"cmd_output","timestamp":1607098337,"output":"cheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098337,"output":"6:12:17.956 [info] block_id: cff75dec-5302-4708-82a6-006ae7c1df51, type: Tasks, state: pending, eve"},{"event":"cmd_output","timestamp":1607098337,"output":"nt: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L"},{"event":"cmd_output","timestamp":1607098337,"output":"167), \n\u001b[0m\u001b[22m\n16:12:17.964 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeli"},{"event":"cmd_output","timestamp":1607098337,"output":"ne: \"2f0cf62b-c83b-4e58-aaa2-02c8b6dd2695\"\n\u001b[0m\u001b[22m\n16:12:17.969 [info] block_id: cff75dec-5302-"},{"event":"cmd_output","timestamp":1607098337,"output":"4708-82a6-006ae7c1df51, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098337,"output":"gin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:17.976 [info] ppl_id: c55e8"},{"event":"cmd_output","timestamp":1607098337,"output":"4f0-57d9-48fc-9148-d94261b935e1, type: PplRequests, event: persisted source_args for pipeline: c55e8"},{"event":"cmd_output","timestamp":1607098337,"output":"4f0-57d9-48fc-9148-d94261b935e1, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_sour"},{"event":"cmd_output","timestamp":1607098337,"output":"ce/2(L89), \n\u001b[0m\u001b[22m\n16:12:17.978 [info] ppl_id: 96e3308f-e03c-414b-895d-869eee827c80, type: Ppl"},{"event":"cmd_output","timestamp":1607098337,"output":"Requests, event: persisted definition for request with request_token: c5e775d9-ec92-47ba-b7ba-38f331"},{"event":"cmd_output","timestamp":1607098337,"output":"6abcbd, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098337,"output":"m\n16:12:17.981 [info] block_id: 589171b4-1488-4d79-a030-26899030bc74, type: BlockRequests, event: "},{"event":"cmd_output","timestamp":1607098337,"output":"persisted block run request from ppl 2f0cf62b-c83b-4e58-aaa2-02c8b6dd2695 for block 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098337,"output":"r.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:17.984 "},{"event":"cmd_output","timestamp":1607098337,"output":"[info] ppl_id: c55e84f0-57d9-48fc-9148-d94261b935e1, type: PplSubInits, state: fetching, event: exi"},{"event":"cmd_output","timestamp":1607098337,"output":"t_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098337,"output":"\n16:12:17.988 [info] block_id: 589171b4-1488-4d79-a030-26899030bc74, type: Blocks, state: initiali"},{"event":"cmd_output","timestamp":1607098337,"output":"zing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert"},{"event":"cmd_output","timestamp":1607098338,"output":"/1(L43), \n\u001b[0m\u001b[22m\n16:12:18.005 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler"},{"event":"cmd_output","timestamp":1607098338,"output":".RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:18.005 [info] ppl_id: 96e3308f-e03c-414b-895d"},{"event":"cmd_output","timestamp":1607098338,"output":"-869eee827c80, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count:"},{"event":"cmd_output","timestamp":1607098338,"output":" 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:1"},{"event":"cmd_output","timestamp":1607098338,"output":"8.006 [info] Block 0 of pipeline with id: 2f0cf62b-c83b-4e58-aaa2-02c8b6dd2695 scheduled in block s"},{"event":"cmd_output","timestamp":1607098338,"output":"ervice with id: : \"589171b4-1488-4d79-a030-26899030bc74\"\n\u001b[0m\u001b[22m\n16:12:18.013 [info] ppl_id: 2f"},{"event":"cmd_output","timestamp":1607098338,"output":"0cf62b-c83b-4e58-aaa2-02c8b6dd2695, type: PplBlocks, block_index: 0, state: running, event: exit_sch"},{"event":"cmd_output","timestamp":1607098338,"output":"eduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098338,"output":"12:18.019 [info] ppl_id: 96e3308f-e03c-414b-895d-869eee827c80, type: PplSubInits, state: done, resu"},{"event":"cmd_output","timestamp":1607098338,"output":"lt: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chan"},{"event":"cmd_output","timestamp":1607098338,"output":"ge/1(L90), \n\u001b[0m\u001b[22m\n16:12:18.019 [info] block_id: 589171b4-1488-4d79-a030-26899030bc74, type: B"},{"event":"cmd_output","timestamp":1607098338,"output":"lockRequests, event: persisted build and sub_ppl details for block_request: 589171b4-1488-4d79-a030-"},{"event":"cmd_output","timestamp":1607098338,"output":"26899030bc74, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b"},{"event":"cmd_output","timestamp":1607098338,"output":"[0m\u001b[22m\n16:12:18.030 [info] block_id: 589171b4-1488-4d79-a030-26899030bc74, type: Tasks, state: p"},{"event":"cmd_output","timestamp":1607098338,"output":"ending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState."},{"event":"cmd_output","timestamp":1607098338,"output":"all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:18.034 [info] block_id: cff75dec-5302-4708-82a6-006ae7c1df51, t"},{"event":"cmd_output","timestamp":1607098338,"output":"ype: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Imp"},{"event":"cmd_output","timestamp":1607098338,"output":"l.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:18.037 [info] block_id: 589171b4-1488-4d79-a030-26899"},{"event":"cmd_output","timestamp":1607098338,"output":"030bc74, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loo"},{"event":"cmd_output","timestamp":1607098338,"output":"per.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:18.042 [info] ppl_id: 96e3308f-e03c-414b-8"},{"event":"cmd_output","timestamp":1607098338,"output":"95d-869eee827c80, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_"},{"event":"cmd_output","timestamp":1607098338,"output":"count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:18.047 [info] "},{"event":"cmd_output","timestamp":1607098338,"output":"ppl_id: 96e3308f-e03c-414b-895d-869eee827c80, type: Ppls, state: pending, event: exit_scheduling, re"},{"event":"cmd_output","timestamp":1607098338,"output":"covery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:18.053 ["},{"event":"cmd_output","timestamp":1607098338,"output":"info] ppl_id: c55e84f0-57d9-48fc-9148-d94261b935e1, type: PplSubInits, state: regular_init, event: "},{"event":"cmd_output","timestamp":1607098338,"output":"exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098338,"output":"22m\n16:12:18.074 [info] block_id: 589171b4-1488-4d79-a030-26899030bc74, type: Tasks, state: runnin"},{"event":"cmd_output","timestamp":1607098338,"output":"g, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90)"},{"event":"cmd_output","timestamp":1607098338,"output":", \n\u001b[0m\u001b[22m\n16:12:18.081 [info] ppl_id: 96e3308f-e03c-414b-895d-869eee827c80, type: Ppls, state:"},{"event":"cmd_output","timestamp":1607098338,"output":" queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change"},{"event":"cmd_output","timestamp":1607098338,"output":"/1(L90), \n\u001b[0m\u001b[22m\n16:12:18.100 [info] ppl_id: 834aee84-245e-4b9d-ac4b-cb6c248fa413, type: PplRe"},{"event":"cmd_output","timestamp":1607098338,"output":"quests, event: persisted source_args for pipeline: 834aee84-245e-4b9d-ac4b-cb6c248fa413, origin: Eli"},{"event":"cmd_output","timestamp":1607098338,"output":"xir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:18.105 [info] "},{"event":"cmd_output","timestamp":1607098338,"output":" ppl_id: 834aee84-245e-4b9d-ac4b-cb6c248fa413, type: PplSubInits, state: fetching, event: exit_sched"},{"event":"cmd_output","timestamp":1607098338,"output":"uling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12"},{"event":"cmd_output","timestamp":1607098338,"output":":18.117 [info] ppl_id: c55e84f0-57d9-48fc-9148-d94261b935e1, type: PplRequests, event: persisted de"},{"event":"cmd_output","timestamp":1607098338,"output":"finition for request with request_token: ed2ad020-e76b-40f3-aee6-6cbb40e0511d, origin: Elixir.Ppl.Pp"},{"event":"cmd_output","timestamp":1607098338,"output":"lRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:18.122 [info] Queue"},{"event":"cmd_output","timestamp":1607098338,"output":" persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inser"},{"event":"cmd_output","timestamp":1607098338,"output":"ted_at: ~N[2020-12-04 16:12:18.119898], name: \"dev-.semaphore/semaphore.yml\", organization_id: \"7719"},{"event":"cmd_output","timestamp":1607098338,"output":"9270-80fd-4070-a4b2-c6e8945476f7\", project_id: \"123\", queue_id: \"24329ca8-267b-48c9-873c-f4e577f7a11"},{"event":"cmd_output","timestamp":1607098338,"output":"2\", scope: \"project\", updated_at: ~N[2020-12-04 16:12:18.119912], user_generated: false}}\n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098338,"output":"\n16:12:18.130 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.al"},{"event":"cmd_output","timestamp":1607098338,"output":"l_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:18.130 [info] ppl_id: c55e84f0-57d9-48fc-9148-d94261b935e1, type:"},{"event":"cmd_output","timestamp":1607098338,"output":" PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.P"},{"event":"cmd_output","timestamp":1607098338,"output":"pl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:18.133 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098338,"output":": c55e84f0-57d9-48fc-9148-d94261b935e1, type: PplSubInits, state: done, result: passed, event: exit_"},{"event":"cmd_output","timestamp":1607098338,"output":"scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098338,"output":"16:12:18.154 [info] ppl_id: 834aee84-245e-4b9d-ac4b-cb6c248fa413, type: PplSubInits, state: regular"},{"event":"cmd_output","timestamp":1607098338,"output":"_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1("},{"event":"cmd_output","timestamp":1607098338,"output":"L90), \n\u001b[0m\u001b[22m\n16:12:18.158 [info] ppl_id: c55e84f0-57d9-48fc-9148-d94261b935e1, type: PplBlock"},{"event":"cmd_output","timestamp":1607098338,"output":"s, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper."},{"event":"cmd_output","timestamp":1607098338,"output":"STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:18.158 [info] block_id: cff75dec-5302-4708-82a"},{"event":"cmd_output","timestamp":1607098338,"output":"6-006ae7c1df51, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098338,"output":"Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:18.161 [info] ppl_id: c55e84f0-57d9-48f"},{"event":"cmd_output","timestamp":1607098338,"output":"c-9148-d94261b935e1, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098338,"output":"Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:18.174 [info] block_id: cff75dec"},{"event":"cmd_output","timestamp":1607098338,"output":"-5302-4708-82a6-006ae7c1df51, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098338,"output":"origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:18.184 [info] ppl_id: c5"},{"event":"cmd_output","timestamp":1607098338,"output":"5e84f0-57d9-48fc-9148-d94261b935e1, type: Ppls, state: queuing, event: exit_scheduling, recovery_cou"},{"event":"cmd_output","timestamp":1607098338,"output":"nt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:18.200 [info] ppl"},{"event":"cmd_output","timestamp":1607098338,"output":"_id: c3f8e7c2-e5ce-43cb-a3aa-1a30f1034996, block_id: cff75dec-5302-4708-82a6-006ae7c1df51, type: Ppl"},{"event":"cmd_output","timestamp":1607098338,"output":"Blocks, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098338,"output":"in: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:18.216 [info] ppl_id: c55e84"},{"event":"cmd_output","timestamp":1607098338,"output":"f0-57d9-48fc-9148-d94261b935e1, type: Ppls, state: running, event: exit_scheduling, recovery_count: "},{"event":"cmd_output","timestamp":1607098338,"output":"0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:18.221 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098338,"output":" 834aee84-245e-4b9d-ac4b-cb6c248fa413, type: PplRequests, event: persisted definition for request wi"},{"event":"cmd_output","timestamp":1607098338,"output":"th request_token: d9e636a0-d1e6-4028-8e62-40f827365041, origin: Elixir.Ppl.PplRequests.Model.PplRequ"},{"event":"cmd_output","timestamp":1607098338,"output":"estsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:18.221 [info] PplBlocks WaitingState STM i"},{"event":"cmd_output","timestamp":1607098338,"output":"s scheduling block 0 from pipeline: \"c55e84f0-57d9-48fc-9148-d94261b935e1\"\n\u001b[0m\u001b[22m\n16:12:18.232 "},{"event":"cmd_output","timestamp":1607098338,"output":"[info] ppl_id: 0a77bc14-048a-4583-99b8-90b634b60238, type: PplRequests, event: persisted source_arg"},{"event":"cmd_output","timestamp":1607098338,"output":"s for pipeline: 0a77bc14-048a-4583-99b8-90b634b60238, origin: Elixir.Ppl.PplRequests.Model.PplReques"},{"event":"cmd_output","timestamp":1607098338,"output":"tsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:18.233 [info] event: created, origin: Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098338,"output":".PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:18.233 [info] ppl_id: "},{"event":"cmd_output","timestamp":1607098338,"output":"834aee84-245e-4b9d-ac4b-cb6c248fa413, type: PplBlocks, block_index: 0, state: initializing, event: c"},{"event":"cmd_output","timestamp":1607098338,"output":"reated, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105"},{"event":"cmd_output","timestamp":1607098338,"output":"), \n\u001b[0m\u001b[22m\n16:12:18.234 [info] block_id: d4f0650d-b021-42a5-adfe-3c2deba2eebb, type: BlockRequ"},{"event":"cmd_output","timestamp":1607098338,"output":"ests, event: persisted block run request from ppl c55e84f0-57d9-48fc-9148-d94261b935e1 for block 0, "},{"event":"cmd_output","timestamp":1607098338,"output":"origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098338,"output":"16:12:18.238 [info] ppl_id: 834aee84-245e-4b9d-ac4b-cb6c248fa413, type: PplSubInits, state: done, r"},{"event":"cmd_output","timestamp":1607098338,"output":"esult: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098338,"output":"hange/1(L90), \n\u001b[0m\u001b[22m\n16:12:18.240 [info] block_id: d4f0650d-b021-42a5-adfe-3c2deba2eebb, type"},{"event":"cmd_output","timestamp":1607098338,"output":": Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.M"},{"event":"cmd_output","timestamp":1607098338,"output":"odel.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:18.242 [info] ppl_id: 0a77bc14-048a-4583-99b8-"},{"event":"cmd_output","timestamp":1607098338,"output":"90b634b60238, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098338,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:18.244 [info] Block 0 of pipeli"},{"event":"cmd_output","timestamp":1607098338,"output":"ne with id: c55e84f0-57d9-48fc-9148-d94261b935e1 scheduled in block service with id: : \"d4f0650d-b02"},{"event":"cmd_output","timestamp":1607098338,"output":"1-42a5-adfe-3c2deba2eebb\"\n\u001b[0m\u001b[22m\n16:12:18.249 [info] ppl_id: c55e84f0-57d9-48fc-9148-d94261b93"},{"event":"cmd_output","timestamp":1607098338,"output":"5e1, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098338,"output":"gin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:18.260 [info] ppl_id: c3f8e"},{"event":"cmd_output","timestamp":1607098338,"output":"7c2-e5ce-43cb-a3aa-1a30f1034996, type: Ppls, state: done, result: passed, event: exit_scheduling, re"},{"event":"cmd_output","timestamp":1607098338,"output":"covery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:18.261 ["},{"event":"cmd_output","timestamp":1607098338,"output":"info] block_id: d4f0650d-b021-42a5-adfe-3c2deba2eebb, type: BlockRequests, event: persisted build a"},{"event":"cmd_output","timestamp":1607098338,"output":"nd sub_ppl details for block_request: d4f0650d-b021-42a5-adfe-3c2deba2eebb, origin: Elixir.Block.Blo"},{"event":"cmd_output","timestamp":1607098338,"output":"ckRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:18.263 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098338,"output":" 834aee84-245e-4b9d-ac4b-cb6c248fa413, type: Ppls, state: pending, event: exit_scheduling, recovery_"},{"event":"cmd_output","timestamp":1607098338,"output":"count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:18.262 [info] "},{"event":"cmd_output","timestamp":1607098338,"output":"ppl_id: 834aee84-245e-4b9d-ac4b-cb6c248fa413, type: PplBlocks, block_index: 0, state: waiting, event"},{"event":"cmd_output","timestamp":1607098338,"output":": exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098338,"output":"\u001b[22m\n16:12:18.273 [info] block_id: d4f0650d-b021-42a5-adfe-3c2deba2eebb, type: Tasks, state: pend"},{"event":"cmd_output","timestamp":1607098338,"output":"ing, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all"},{"event":"cmd_output","timestamp":1607098338,"output":"_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:18.287 [info] block_id: d4f0650d-b021-42a5-adfe-3c2deba2eebb, type"},{"event":"cmd_output","timestamp":1607098338,"output":": Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl."},{"event":"cmd_output","timestamp":1607098338,"output":"log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:18.296 [info] block_id: 589171b4-1488-4d79-a030-2689903"},{"event":"cmd_output","timestamp":1607098338,"output":"0bc74, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.ST"},{"event":"cmd_output","timestamp":1607098338,"output":"M.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:18.304 [info] ppl_id: 834aee84-245e-4b9d-ac4b-cb"},{"event":"cmd_output","timestamp":1607098338,"output":"6c248fa413, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Lo"},{"event":"cmd_output","timestamp":1607098338,"output":"oper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:18.310 [info] ppl_id: 0a77bc14-048a-4583-"},{"event":"cmd_output","timestamp":1607098338,"output":"99b8-90b634b60238, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0"},{"event":"cmd_output","timestamp":1607098338,"output":", origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:18.321 [info] block_id"},{"event":"cmd_output","timestamp":1607098338,"output":": 589171b4-1488-4d79-a030-26899030bc74, type: Blocks, state: done, event: exit_scheduling, recovery_"},{"event":"cmd_output","timestamp":1607098338,"output":"count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:18.331 [info] "},{"event":"cmd_output","timestamp":1607098338,"output":"block_id: d4f0650d-b021-42a5-adfe-3c2deba2eebb, type: Tasks, state: running, event: exit_scheduling,"},{"event":"cmd_output","timestamp":1607098338,"output":" recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:18.34"},{"event":"cmd_output","timestamp":1607098338,"output":"8 [info] ppl_id: 2f0cf62b-c83b-4e58-aaa2-02c8b6dd2695, block_id: 589171b4-1488-4d79-a030-26899030bc"},{"event":"cmd_output","timestamp":1607098338,"output":"74, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098338,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:18.369 [info] p"},{"event":"cmd_output","timestamp":1607098338,"output":"pl_id: da6fd73c-c139-41fa-b172-82bac129f984, type: PplRequests, event: persisted source_args for pip"},{"event":"cmd_output","timestamp":1607098338,"output":"eline: da6fd73c-c139-41fa-b172-82bac129f984, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries"},{"event":"cmd_output","timestamp":1607098338,"output":".insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:18.373 [info] ppl_id: da6fd73c-c139-41fa-b172-82bac129f98"},{"event":"cmd_output","timestamp":1607098338,"output":"4, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loo"},{"event":"cmd_output","timestamp":1607098338,"output":"per.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:18.377 [info] ppl_id: 0a77bc14-048a-4583-9"},{"event":"cmd_output","timestamp":1607098338,"output":"9b8-90b634b60238, type: PplRequests, event: persisted definition for request with request_token: 466"},{"event":"cmd_output","timestamp":1607098338,"output":"b3b1e-3538-4f8e-bf2e-b4f8c7eec577, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_de"},{"event":"cmd_output","timestamp":1607098338,"output":"finition/3(L76), \n\u001b[0m\u001b[22m\n16:12:18.383 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{_"},{"event":"cmd_output","timestamp":1607098338,"output":"_meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:12:18.380519], name"},{"event":"cmd_output","timestamp":1607098338,"output":": \"dev-.semaphore/semaphore.yml\", organization_id: \"6baebdd5-bba9-429d-9dac-457329dc6945\", project_i"},{"event":"cmd_output","timestamp":1607098338,"output":"d: \"456\", queue_id: \"fad717d3-24e3-4b87-9465-4cb7ecdedbe9\", scope: \"project\", updated_at: ~N[2020-12"},{"event":"cmd_output","timestamp":1607098338,"output":"-04 16:12:18.380530], user_generated: false}}\n\u001b[0m\u001b[22m\n16:12:18.388 [info] ppl_id: 2f0cf62b-c83b"},{"event":"cmd_output","timestamp":1607098338,"output":"-4e58-aaa2-02c8b6dd2695, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098338,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:18.391 [info] e"},{"event":"cmd_output","timestamp":1607098338,"output":"vent: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098338,"output":"2m\n16:12:18.391 [info] ppl_id: 0a77bc14-048a-4583-99b8-90b634b60238, type: PplBlocks, block_index:"},{"event":"cmd_output","timestamp":1607098338,"output":" 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandle"},{"event":"cmd_output","timestamp":1607098338,"output":"r.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:18.397 [info] ppl_id: 0a77bc14-048a-4583-99b"},{"event":"cmd_output","timestamp":1607098338,"output":"8-90b634b60238, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_cou"},{"event":"cmd_output","timestamp":1607098338,"output":"nt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:18.425 [info] ppl"},{"event":"cmd_output","timestamp":1607098338,"output":"_id: 96e3308f-e03c-414b-895d-869eee827c80, type: Ppls, state: running, event: exit_scheduling, recov"},{"event":"cmd_output","timestamp":1607098338,"output":"ery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:18.430 [inf"},{"event":"cmd_output","timestamp":1607098338,"output":"o] ppl_id: 0a77bc14-048a-4583-99b8-90b634b60238, type: PplBlocks, block_index: 0, state: waiting, e"},{"event":"cmd_output","timestamp":1607098338,"output":"vent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n"},{"event":"cmd_output","timestamp":1607098338,"output":"\u001b[0m\u001b[22m\n16:12:18.432 [info] block_id: d4f0650d-b021-42a5-adfe-3c2deba2eebb, type: Tasks, state: "},{"event":"cmd_output","timestamp":1607098338,"output":"done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098338,"output":"90), \n\u001b[0m\u001b[22m\n16:12:18.439 [info] PplBlocks WaitingState STM is scheduling block 0 from pipelin"},{"event":"cmd_output","timestamp":1607098338,"output":"e: \"96e3308f-e03c-414b-895d-869eee827c80\"\n\u001b[0m\u001b[22m\n16:12:18.439 [info] ppl_id: 0a77bc14-048a-458"},{"event":"cmd_output","timestamp":1607098338,"output":"3-99b8-90b634b60238, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098338,"output":"Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:18.445 [info] ppl_id: da6fd73c-c"},{"event":"cmd_output","timestamp":1607098338,"output":"139-41fa-b172-82bac129f984, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery"},{"event":"cmd_output","timestamp":1607098338,"output":"_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:18.456 [info] "},{"event":"cmd_output","timestamp":1607098338,"output":" block_id: d4f0650d-b021-42a5-adfe-3c2deba2eebb, type: Blocks, state: done, event: exit_scheduling, "},{"event":"cmd_output","timestamp":1607098338,"output":"recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:18.459"},{"event":"cmd_output","timestamp":1607098338,"output":" [info] block_id: c529fad0-126c-4cff-9b32-9d23208060ef, type: BlockRequests, event: persisted block"},{"event":"cmd_output","timestamp":1607098338,"output":" run request from ppl 96e3308f-e03c-414b-895d-869eee827c80 for block 0, origin: Elixir.Block.BlockRe"},{"event":"cmd_output","timestamp":1607098338,"output":"quests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:18.466 [info] block_i"},{"event":"cmd_output","timestamp":1607098338,"output":"d: c529fad0-126c-4cff-9b32-9d23208060ef, type: Blocks, state: initializing, event: initializing, rec"},{"event":"cmd_output","timestamp":1607098338,"output":"overy_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:18"},{"event":"cmd_output","timestamp":1607098338,"output":".468 [info] ppl_id: 0a77bc14-048a-4583-99b8-90b634b60238, type: Ppls, state: queuing, event: exit_s"},{"event":"cmd_output","timestamp":1607098338,"output":"cheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098338,"output":"6:12:18.475 [info] Block 0 of pipeline with id: 96e3308f-e03c-414b-895d-869eee827c80 scheduled in b"},{"event":"cmd_output","timestamp":1607098338,"output":"lock service with id: : \"c529fad0-126c-4cff-9b32-9d23208060ef\"\n\u001b[0m\u001b[22m\n16:12:18.486 [info] ppl_"},{"event":"cmd_output","timestamp":1607098338,"output":"id: c55e84f0-57d9-48fc-9148-d94261b935e1, block_id: d4f0650d-b021-42a5-adfe-3c2deba2eebb, type: PplB"},{"event":"cmd_output","timestamp":1607098338,"output":"locks, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098338,"output":"n: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:18.487 [info] block_id: c529f"},{"event":"cmd_output","timestamp":1607098338,"output":"ad0-126c-4cff-9b32-9d23208060ef, type: BlockRequests, event: persisted build and sub_ppl details for"},{"event":"cmd_output","timestamp":1607098338,"output":" block_request: c529fad0-126c-4cff-9b32-9d23208060ef, origin: Elixir.Block.BlockRequests.Model.Block"},{"event":"cmd_output","timestamp":1607098338,"output":"RequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:18.487 [info] ppl_id: 96e3308f-e03c-414b-89"},{"event":"cmd_output","timestamp":1607098338,"output":"5d-869eee827c80, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098338,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:18.494 [info] b"},{"event":"cmd_output","timestamp":1607098338,"output":"lock_id: c529fad0-126c-4cff-9b32-9d23208060ef, type: Tasks, state: pending, event: created, recovery"},{"event":"cmd_output","timestamp":1607098338,"output":"_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098338,"output":":12:18.501 [info] ppl_id: 0a77bc14-048a-4583-99b8-90b634b60238, type: Ppls, state: running, event: "},{"event":"cmd_output","timestamp":1607098338,"output":"exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098338,"output":"22m\n16:12:18.503 [info] block_id: c529fad0-126c-4cff-9b32-9d23208060ef, type: Blocks, state: runni"},{"event":"cmd_output","timestamp":1607098338,"output":"ng, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90"},{"event":"cmd_output","timestamp":1607098338,"output":"), \n\u001b[0m\u001b[22m\n16:12:18.515 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline:"},{"event":"cmd_output","timestamp":1607098338,"output":" \"0a77bc14-048a-4583-99b8-90b634b60238\"\n\u001b[0m\u001b[22m\n16:12:18.527 [info] ppl_id: c55e84f0-57d9-48fc-"},{"event":"cmd_output","timestamp":1607098338,"output":"9148-d94261b935e1, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: "},{"event":"cmd_output","timestamp":1607098338,"output":"0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:18.532 [info] block_i"},{"event":"cmd_output","timestamp":1607098338,"output":"d: ad8ece2d-defd-404a-b0e6-b5c129e1a552, type: BlockRequests, event: persisted block run request fro"},{"event":"cmd_output","timestamp":1607098338,"output":"m ppl 0a77bc14-048a-4583-99b8-90b634b60238 for block 0, origin: Elixir.Block.BlockRequests.Model.Blo"},{"event":"cmd_output","timestamp":1607098338,"output":"ckRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:18.533 [info] ppl_id: da6fd73c-c139-4"},{"event":"cmd_output","timestamp":1607098338,"output":"1fa-b172-82bac129f984, type: PplRequests, event: persisted definition for request with request_token"},{"event":"cmd_output","timestamp":1607098338,"output":": 2690c32b-84da-4172-b965-a7a692bff524, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.inse"},{"event":"cmd_output","timestamp":1607098338,"output":"rt_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:18.535 [info] block_id: ad8ece2d-defd-404a-b0e6-b5c129e1a5"},{"event":"cmd_output","timestamp":1607098338,"output":"52, type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block."},{"event":"cmd_output","timestamp":1607098338,"output":"Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:18.543 [info] Block 0 of pipeline with"},{"event":"cmd_output","timestamp":1607098338,"output":" id: 0a77bc14-048a-4583-99b8-90b634b60238 scheduled in block service with id: : \"ad8ece2d-defd-404a-"},{"event":"cmd_output","timestamp":1607098338,"output":"b0e6-b5c129e1a552\"\n\u001b[0m\u001b[22m\n16:12:18.550 [info] block_id: ad8ece2d-defd-404a-b0e6-b5c129e1a552, "},{"event":"cmd_output","timestamp":1607098338,"output":"type: BlockRequests, event: persisted build and sub_ppl details for block_request: ad8ece2d-defd-404"},{"event":"cmd_output","timestamp":1607098338,"output":"a-b0e6-b5c129e1a552, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L4"},{"event":"cmd_output","timestamp":1607098338,"output":"1), \n\u001b[0m\u001b[22m\n16:12:18.551 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.Regu"},{"event":"cmd_output","timestamp":1607098338,"output":"larInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:18.551 [info] ppl_id: da6fd73c-c139-41fa-b172-82ba"},{"event":"cmd_output","timestamp":1607098338,"output":"c129f984, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098338,"output":"rigin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:18.555"},{"event":"cmd_output","timestamp":1607098338,"output":" [info] ppl_id: 0a77bc14-048a-4583-99b8-90b634b60238, type: PplBlocks, block_index: 0, state: runni"},{"event":"cmd_output","timestamp":1607098338,"output":"ng, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90"},{"event":"cmd_output","timestamp":1607098338,"output":"), \n\u001b[0m\u001b[22m\n16:12:18.555 [info] ppl_id: da6fd73c-c139-41fa-b172-82bac129f984, type: PplSubInits"},{"event":"cmd_output","timestamp":1607098338,"output":", state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM."},{"event":"cmd_output","timestamp":1607098338,"output":"Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:18.557 [info] block_id: c529fad0-126c-4cff-9b32-9d"},{"event":"cmd_output","timestamp":1607098338,"output":"23208060ef, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098338,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:18.559 [info] block_id: ad8ece2d-defd-40"},{"event":"cmd_output","timestamp":1607098338,"output":"4a-b0e6-b5c129e1a552, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098338,"output":".Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:18.567 [info] block_"},{"event":"cmd_output","timestamp":1607098338,"output":"id: ad8ece2d-defd-404a-b0e6-b5c129e1a552, type: Blocks, state: running, event: exit_scheduling, reco"},{"event":"cmd_output","timestamp":1607098338,"output":"very_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:18.568 [in"},{"event":"cmd_output","timestamp":1607098338,"output":"fo] ppl_id: 834aee84-245e-4b9d-ac4b-cb6c248fa413, type: Ppls, state: running, event: exit_schedulin"},{"event":"cmd_output","timestamp":1607098338,"output":"g, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:18."},{"event":"cmd_output","timestamp":1607098338,"output":"580 [info] ppl_id: da6fd73c-c139-41fa-b172-82bac129f984, type: PplBlocks, block_index: 0, state: wa"},{"event":"cmd_output","timestamp":1607098338,"output":"iting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1("},{"event":"cmd_output","timestamp":1607098338,"output":"L90), \n\u001b[0m\u001b[22m\n16:12:18.583 [info] ppl_id: da6fd73c-c139-41fa-b172-82bac129f984, type: Ppls, st"},{"event":"cmd_output","timestamp":1607098338,"output":"ate: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_ch"},{"event":"cmd_output","timestamp":1607098338,"output":"ange/1(L90), \n\u001b[0m\u001b[22m\n16:12:18.596 [info] PplBlocks WaitingState STM is scheduling block 0 from"},{"event":"cmd_output","timestamp":1607098338,"output":" pipeline: \"834aee84-245e-4b9d-ac4b-cb6c248fa413\"\n\u001b[0m\u001b[22m\n16:12:18.597 [info] block_id: ad8ece2"},{"event":"cmd_output","timestamp":1607098338,"output":"d-defd-404a-b0e6-b5c129e1a552, type: Tasks, state: running, event: exit_scheduling, recovery_count: "},{"event":"cmd_output","timestamp":1607098338,"output":"0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:18.601 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098338,"output":" da6fd73c-c139-41fa-b172-82bac129f984, type: Ppls, state: queuing, event: exit_scheduling, recovery_"},{"event":"cmd_output","timestamp":1607098338,"output":"count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:18.609 [info] "},{"event":"cmd_output","timestamp":1607098338,"output":"block_id: 58d823c3-3ead-4adf-8866-300f85328105, type: BlockRequests, event: persisted block run requ"},{"event":"cmd_output","timestamp":1607098338,"output":"est from ppl 834aee84-245e-4b9d-ac4b-cb6c248fa413 for block 0, origin: Elixir.Block.BlockRequests.Mo"},{"event":"cmd_output","timestamp":1607098338,"output":"del.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:18.612 [info] block_id: 58d823"},{"event":"cmd_output","timestamp":1607098338,"output":"c3-3ead-4adf-8866-300f85328105, type: Blocks, state: initializing, event: initializing, recovery_cou"},{"event":"cmd_output","timestamp":1607098338,"output":"nt: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:18.614 [inf"},{"event":"cmd_output","timestamp":1607098338,"output":"o] Block 0 of pipeline with id: 834aee84-245e-4b9d-ac4b-cb6c248fa413 scheduled in block service wit"},{"event":"cmd_output","timestamp":1607098338,"output":"h id: : \"58d823c3-3ead-4adf-8866-300f85328105\"\n\u001b[0m\u001b[22m\n16:12:18.618 [info] ppl_id: 834aee84-245"},{"event":"cmd_output","timestamp":1607098338,"output":"e-4b9d-ac4b-cb6c248fa413, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, r"},{"event":"cmd_output","timestamp":1607098338,"output":"ecovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:18.622 "},{"event":"cmd_output","timestamp":1607098338,"output":"[info] block_id: 58d823c3-3ead-4adf-8866-300f85328105, type: BlockRequests, event: persisted build "},{"event":"cmd_output","timestamp":1607098338,"output":"and sub_ppl details for block_request: 58d823c3-3ead-4adf-8866-300f85328105, origin: Elixir.Block.Bl"},{"event":"cmd_output","timestamp":1607098338,"output":"ockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:18.625 [info] block_"},{"event":"cmd_output","timestamp":1607098338,"output":"id: 58d823c3-3ead-4adf-8866-300f85328105, type: Tasks, state: pending, event: created, recovery_coun"},{"event":"cmd_output","timestamp":1607098338,"output":"t: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:1"},{"event":"cmd_output","timestamp":1607098338,"output":"8.628 [info] block_id: 58d823c3-3ead-4adf-8866-300f85328105, type: Blocks, state: running, event: e"},{"event":"cmd_output","timestamp":1607098338,"output":"xit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098338,"output":"2m\n16:12:18.652 [info] block_id: 58d823c3-3ead-4adf-8866-300f85328105, type: Tasks, state: running"},{"event":"cmd_output","timestamp":1607098338,"output":", event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90),"},{"event":"cmd_output","timestamp":1607098338,"output":" \n\u001b[0m\u001b[22m\n16:12:18.656 [info] block_id: c529fad0-126c-4cff-9b32-9d23208060ef, type: Tasks, stat"},{"event":"cmd_output","timestamp":1607098338,"output":"e: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/"},{"event":"cmd_output","timestamp":1607098338,"output":"1(L90), \n\u001b[0m\u001b[22m\n16:12:18.665 [info] block_id: c529fad0-126c-4cff-9b32-9d23208060ef, type: Bloc"},{"event":"cmd_output","timestamp":1607098338,"output":"ks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state"},{"event":"cmd_output","timestamp":1607098338,"output":"_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:18.676 [info] ppl_id: 96e3308f-e03c-414b-895d-869eee827c80, bloc"},{"event":"cmd_output","timestamp":1607098338,"output":"k_id: c529fad0-126c-4cff-9b32-9d23208060ef, type: PplBlocks, block_index: 0, state: done, result: pa"},{"event":"cmd_output","timestamp":1607098338,"output":"ssed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098338,"output":"90), \n\u001b[0m\u001b[22m\n16:12:18.691 [info] ppl_id: 96e3308f-e03c-414b-895d-869eee827c80, type: Ppls, sta"},{"event":"cmd_output","timestamp":1607098338,"output":"te: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl."},{"event":"cmd_output","timestamp":1607098338,"output":"log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:18.780 [info] block_id: ad8ece2d-defd-404a-b0e6-b5c129e"},{"event":"cmd_output","timestamp":1607098338,"output":"1a552, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.ST"},{"event":"cmd_output","timestamp":1607098338,"output":"M.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:18.787 [info] block_id: ad8ece2d-defd-404a-b0e6-"},{"event":"cmd_output","timestamp":1607098338,"output":"b5c129e1a552, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098338,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:18.802 [info] ppl_id: 0a77bc14-048a-4583"},{"event":"cmd_output","timestamp":1607098338,"output":"-99b8-90b634b60238, block_id: ad8ece2d-defd-404a-b0e6-b5c129e1a552, type: PplBlocks, block_index: 0,"},{"event":"cmd_output","timestamp":1607098338,"output":" state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.I"},{"event":"cmd_output","timestamp":1607098338,"output":"mpl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:18.816 [info] ppl_id: 0a77bc14-048a-4583-99b8-90b63"},{"event":"cmd_output","timestamp":1607098338,"output":"4b60238, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098338,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:18.897 [info] block_id: 58d823c"},{"event":"cmd_output","timestamp":1607098338,"output":"3-3ead-4adf-8866-300f85328105, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098338,"output":"origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:18.910 [info] block_id: "},{"event":"cmd_output","timestamp":1607098338,"output":"58d823c3-3ead-4adf-8866-300f85328105, type: Blocks, state: done, event: exit_scheduling, recovery_co"},{"event":"cmd_output","timestamp":1607098338,"output":"unt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:18.928 [info] pp"},{"event":"cmd_output","timestamp":1607098338,"output":"l_id: da6fd73c-c139-41fa-b172-82bac129f984, type: Ppls, state: running, event: exit_scheduling, reco"},{"event":"cmd_output","timestamp":1607098338,"output":"very_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:18.932 [in"},{"event":"cmd_output","timestamp":1607098338,"output":"fo] ppl_id: 834aee84-245e-4b9d-ac4b-cb6c248fa413, block_id: 58d823c3-3ead-4adf-8866-300f85328105, t"},{"event":"cmd_output","timestamp":1607098338,"output":"ype: PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count:"},{"event":"cmd_output","timestamp":1607098338,"output":" 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:18.939 [info] PplBlo"},{"event":"cmd_output","timestamp":1607098338,"output":"cks WaitingState STM is scheduling block 0 from pipeline: \"da6fd73c-c139-41fa-b172-82bac129f984\"\n\u001b["},{"event":"cmd_output","timestamp":1607098338,"output":"0m\u001b[22m\n16:12:18.948 [info] block_id: db909ec0-6864-400e-971e-9f36fc071cce, type: BlockRequests, e"},{"event":"cmd_output","timestamp":1607098338,"output":"vent: persisted block run request from ppl da6fd73c-c139-41fa-b172-82bac129f984 for block 0, origin:"},{"event":"cmd_output","timestamp":1607098338,"output":" Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:1"},{"event":"cmd_output","timestamp":1607098338,"output":"8.952 [info] block_id: db909ec0-6864-400e-971e-9f36fc071cce, type: Blocks, state: initializing, eve"},{"event":"cmd_output","timestamp":1607098338,"output":"nt: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), "},{"event":"cmd_output","timestamp":1607098338,"output":"\n\u001b[0m\u001b[22m\n16:12:18.956 [info] ppl_id: 834aee84-245e-4b9d-ac4b-cb6c248fa413, type: Ppls, state: d"},{"event":"cmd_output","timestamp":1607098338,"output":"one, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_s"},{"event":"cmd_output","timestamp":1607098338,"output":"tate_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:18.959 [info] Block 0 of pipeline with id: da6fd73c-c139-41f"},{"event":"cmd_output","timestamp":1607098338,"output":"a-b172-82bac129f984 scheduled in block service with id: : \"db909ec0-6864-400e-971e-9f36fc071cce\"\n\u001b["},{"event":"cmd_output","timestamp":1607098338,"output":"0m\u001b[22m\n16:12:18.967 [info] block_id: db909ec0-6864-400e-971e-9f36fc071cce, type: BlockRequests, e"},{"event":"cmd_output","timestamp":1607098338,"output":"vent: persisted build and sub_ppl details for block_request: db909ec0-6864-400e-971e-9f36fc071cce, o"},{"event":"cmd_output","timestamp":1607098338,"output":"rigin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12"},{"event":"cmd_output","timestamp":1607098338,"output":":18.969 [info] ppl_id: da6fd73c-c139-41fa-b172-82bac129f984, type: PplBlocks, block_index: 0, state"},{"event":"cmd_output","timestamp":1607098338,"output":": running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chang"},{"event":"cmd_output","timestamp":1607098338,"output":"e/1(L90), \n\u001b[0m\u001b[22m\n16:12:18.971 [info] block_id: db909ec0-6864-400e-971e-9f36fc071cce, type: Ta"},{"event":"cmd_output","timestamp":1607098338,"output":"sks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.Initi"},{"event":"cmd_output","timestamp":1607098338,"output":"alizingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:18.975 [info] block_id: db909ec0-6864-400e-971e-9f"},{"event":"cmd_output","timestamp":1607098338,"output":"36fc071cce, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098339,"output":"Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:19.005 [info] block_id: db909ec0-6864-4"},{"event":"cmd_output","timestamp":1607098339,"output":"00e-971e-9f36fc071cce, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098339,"output":"n: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:19.114 [info] block_id: db909"},{"event":"cmd_output","timestamp":1607098339,"output":"ec0-6864-400e-971e-9f36fc071cce, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0"},{"event":"cmd_output","timestamp":1607098339,"output":", origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:19.122 [info] block_id"},{"event":"cmd_output","timestamp":1607098339,"output":": db909ec0-6864-400e-971e-9f36fc071cce, type: Blocks, state: done, event: exit_scheduling, recovery_"},{"event":"cmd_output","timestamp":1607098339,"output":"count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:19.133 [info] "},{"event":"cmd_output","timestamp":1607098339,"output":"ppl_id: da6fd73c-c139-41fa-b172-82bac129f984, block_id: db909ec0-6864-400e-971e-9f36fc071cce, type: "},{"event":"cmd_output","timestamp":1607098339,"output":"PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098339,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:19.152 [info] ppl_id: da6"},{"event":"cmd_output","timestamp":1607098339,"output":"fd73c-c139-41fa-b172-82bac129f984, type: Ppls, state: done, result: passed, event: exit_scheduling, "},{"event":"cmd_output","timestamp":1607098339,"output":"recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test gRPC"},{"event":"cmd_output","timestamp":1607098339,"output":" list_grouped() - org scoped implicit queues (2171.9ms)\u001b[0m\n * test gRPC list() - refuse request "},{"event":"cmd_output","timestamp":1607098339,"output":"when there are to many unfinished ones\r * test gRPC list() - refuse request when there are to many "},{"event":"cmd_output","timestamp":1607098339,"output":"unfinished ones (skipped)\n * test gRPC validate_yaml() - invalid yaml definition, ppl is not sched"},{"event":"cmd_output","timestamp":1607098339,"output":"uled\r * test gRPC validate_yaml() - invalid yaml definition, ppl is not scheduled (skipped)\n * te"},{"event":"cmd_output","timestamp":1607098339,"output":"st gRPC schedule_extension() - refuse if project deletion was requested\r * test gRPC schedule_exten"},{"event":"cmd_output","timestamp":1607098339,"output":"sion() - refuse if project deletion was requested (skipped)\n * test gRPC partial_rebuild() - refus"},{"event":"cmd_output","timestamp":1607098339,"output":"e if project deletion was requested\r * test gRPC partial_rebuild() - refuse if project deletion was"},{"event":"cmd_output","timestamp":1607098339,"output":" requested (skipped)\n * test gRPC validate_yaml() - only invalid yaml definition passed\r * test g"},{"event":"cmd_output","timestamp":1607098339,"output":"RPC validate_yaml() - only invalid yaml definition passed (skipped)\n * test gRPC get_project_id() "},{"event":"cmd_output","timestamp":1607098339,"output":"- valid params - success\r * test gRPC get_project_id() - valid params - success (skipped)\n * test"},{"event":"cmd_output","timestamp":1607098339,"output":" gRPC delete() - deletes everything when given valid params\u001b[22m\n16:12:19.358 [info] Request: 'run"},{"event":"cmd_output","timestamp":1607098339,"output":": %{\"branch_id\" => \"18053a3e-f271-4285-88c8-106879b74c98\", \"branch_name\" => \"master\", \"commit_sha\" ="},{"event":"cmd_output","timestamp":1607098339,"output":"> \"75891a4469\", \"file_name\" => \"semaphore.yml\", \"hook_id\" => \"7bde6950-364b-11eb-b74f-5254005464e2\","},{"event":"cmd_output","timestamp":1607098339,"output":" \"label\" => \"master\", \"organization_id\" => \"5cef4418-0ba4-44d6-a573-bb4d16c55a66\", \"owner\" => \"rt\", "},{"event":"cmd_output","timestamp":1607098339,"output":"\"project_id\" => \"to-delete\", \"repo_name\" => \"5_v1_full\", \"request_token\" => \"7bde5c12-364b-11eb-8c87"},{"event":"cmd_output","timestamp":1607098339,"output":"-5254005464e2\", \"requester_id\" => \"2870cb44-3625-4450-b189-4beb3aa7760b\", \"service\" => \"local\", \"sup"},{"event":"cmd_output","timestamp":1607098339,"output":"pressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"e48438a0-dd13-4e99-ae27-aeac39"},{"event":"cmd_output","timestamp":1607098339,"output":"52c018\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:12:19.369 [info] ppl_id: cd3ec530-d3ee-4803-"},{"event":"cmd_output","timestamp":1607098339,"output":"9b57-d444ffc9ebc9, type: PplRequests, event: persisted schedule request with request_token: 7bde5c12"},{"event":"cmd_output","timestamp":1607098339,"output":"-364b-11eb-8c87-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_respon"},{"event":"cmd_output","timestamp":1607098339,"output":"se/2(L55), \n\u001b[0m\u001b[22m\n16:12:19.374 [info] ppl_id: cd3ec530-d3ee-4803-9b57-d444ffc9ebc9, type: Ppl"},{"event":"cmd_output","timestamp":1607098339,"output":"s, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQu"},{"event":"cmd_output","timestamp":1607098339,"output":"eries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:19.383 [info] Project to-delete and branch maste"},{"event":"cmd_output","timestamp":1607098339,"output":"rlatest_wf details updated: \"wf_id: e48438a0-dd13-4e99-ae27-aeac3952c018, wf_number: 1\"\n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098339,"output":"16:12:19.387 [info] Persisted ppl_sub_init for pipeline with ppl_id: cd3ec530-d3ee-4803-9b57-d444ff"},{"event":"cmd_output","timestamp":1607098339,"output":"c9ebc9: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_in"},{"event":"cmd_output","timestamp":1607098339,"output":"its\">, compile_task_id: nil, error_description: nil, id: 200, in_scheduling: false, init_type: \"regu"},{"event":"cmd_output","timestamp":1607098339,"output":"lar\", inserted_at: ~N[2020-12-04 16:12:19.385002], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"cd3ec530-d3ee-4803-9b57-d444ffc9ebc9\", recover"},{"event":"cmd_output","timestamp":1607098339,"output":"y_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_req"},{"event":"cmd_output","timestamp":1607098339,"output":"uest_desc: nil, updated_at: ~N[2020-12-04 16:12:19.385015]}\n\u001b[0m\u001b[22m\n16:12:19.395 [info] Periodi"},{"event":"cmd_output","timestamp":1607098339,"output":"c from module Elixir.Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.STMHandler.Init"},{"event":"cmd_output","timestamp":1607098339,"output":"ializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Initial"},{"event":"cmd_output","timestamp":1607098339,"output":"izingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], cooling_time_s"},{"event":"cmd_output","timestamp":1607098339,"output":"ec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher_cb: #Function<0"},{"event":"cmd_output","timestamp":1607098339,"output":".125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, "},{"event":"cmd_output","timestamp":1607098339,"output":":terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model."},{"event":"cmd_output","timestamp":1607098339,"output":"Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:19.397 [info] Periodic from module Elixir.Ppl.Ppls."},{"event":"cmd_output","timestamp":1607098339,"output":"STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 100 ms, metric_"},{"event":"cmd_output","timestamp":1607098339,"output":"name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args: %{allowed_stat"},{"event":"cmd_output","timestamp":1607098339,"output":"es: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Pp"},{"event":"cmd_output","timestamp":1607098339,"output":"ls, observed_state: \"pending\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler.PendingSta"},{"event":"cmd_output","timestamp":1607098339,"output":"te.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :"},{"event":"cmd_output","timestamp":1607098339,"output":"recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098339,"output":"2m\n16:12:19.398 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.QueuingState with name Elix"},{"event":"cmd_output","timestamp":1607098339,"output":"ir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-P"},{"event":"cmd_output","timestamp":1607098339,"output":"pls-STMHandler-QueuingState\"]}, recurring args: %{allowed_states: [\"queuing\", \"running\", \"done\"], co"},{"event":"cmd_output","timestamp":1607098339,"output":"oling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", publisher_cb: #Fu"},{"event":"cmd_output","timestamp":1607098339,"output":"nction<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, returning: [:i"},{"event":"cmd_output","timestamp":1607098339,"output":"d, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Mod"},{"event":"cmd_output","timestamp":1607098339,"output":"el.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:19.399 [info] Periodic from module Elixir.Ppl.Pp"},{"event":"cmd_output","timestamp":1607098339,"output":"ls.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHandler.RunningState :: period: 100 ms, metr"},{"event":"cmd_output","timestamp":1607098339,"output":"ic_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring args: %{allowed_s"},{"event":"cmd_output","timestamp":1607098339,"output":"tates: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, ob"},{"event":"cmd_output","timestamp":1607098339,"output":"served_state: \"running\", publisher_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler.RunningState.ar"},{"event":"cmd_output","timestamp":1607098339,"output":"gs/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recov"},{"event":"cmd_output","timestamp":1607098339,"output":"ery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098339,"output":"6:12:19.401 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.StoppingState with name Elixir.P"},{"event":"cmd_output","timestamp":1607098339,"output":"pl.Ppls.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls"},{"event":"cmd_output","timestamp":1607098339,"output":"-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_s"},{"event":"cmd_output","timestamp":1607098339,"output":"ec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"stopping\", publisher_cb: #Function<0.71"},{"event":"cmd_output","timestamp":1607098339,"output":"803493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :termina"},{"event":"cmd_output","timestamp":1607098339,"output":"te_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, ta"},{"event":"cmd_output","timestamp":1607098339,"output":"sk_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:19.402 [info] Periodic from module Elixir.Ppl.PplSubInits.S"},{"event":"cmd_output","timestamp":1607098339,"output":"TMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 100 ms, m"},{"event":"cmd_output","timestamp":1607098339,"output":"etric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args: %"},{"event":"cmd_output","timestamp":1607098339,"output":"{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.Ppl"},{"event":"cmd_output","timestamp":1607098339,"output":"SubInits, observed_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :term"},{"event":"cmd_output","timestamp":1607098339,"output":"inate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Mode"},{"event":"cmd_output","timestamp":1607098339,"output":"l.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:19.403 [info] Periodic from module Elixir."},{"event":"cmd_output","timestamp":1607098339,"output":"Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler.FetchingState :"},{"event":"cmd_output","timestamp":1607098339,"output":": period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]"},{"event":"cmd_output","timestamp":1607098339,"output":"}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"done\"], cooling_time_sec: -2, "},{"event":"cmd_output","timestamp":1607098339,"output":"initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fetching\", publisher_cb: :skip, r"},{"event":"cmd_output","timestamp":1607098339,"output":"epo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_coun"},{"event":"cmd_output","timestamp":1607098339,"output":"t, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:19"},{"event":"cmd_output","timestamp":1607098339,"output":".405 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CompilationState with name Elixi"},{"event":"cmd_output","timestamp":1607098339,"output":"r.Ppl.PplSubInits.STMHandler.CompilationState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up"},{"event":"cmd_output","timestamp":1607098339,"output":"\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurring args: %{allowed_states: [\"regular_ini"},{"event":"cmd_output","timestamp":1607098339,"output":"t\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.P"},{"event":"cmd_output","timestamp":1607098339,"output":"plSubInits, observed_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id,"},{"event":"cmd_output","timestamp":1607098339,"output":" :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInit"},{"event":"cmd_output","timestamp":1607098339,"output":"s.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:19.406 [info] Periodic from module E"},{"event":"cmd_output","timestamp":1607098339,"output":"lixir.Ppl.PplSubInits.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHandler.Regula"},{"event":"cmd_output","timestamp":1607098339,"output":"rInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-Reg"},{"event":"cmd_output","timestamp":1607098339,"output":"ularInitState\"]}, recurring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, initial_query: Pp"},{"event":"cmd_output","timestamp":1607098339,"output":"l.PplSubInits.Model.PplSubInits, observed_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.Ecto"},{"event":"cmd_output","timestamp":1607098339,"output":"Repo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], "},{"event":"cmd_output","timestamp":1607098339,"output":"schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:19.406 [info] "},{"event":"cmd_output","timestamp":1607098339,"output":"Periodic from module Elixir.Ppl.PplBlocks.STMHandler.InitializingState with name Elixir.Ppl.PplBlock"},{"event":"cmd_output","timestamp":1607098339,"output":"s.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlo"},{"event":"cmd_output","timestamp":1607098339,"output":"cks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"waiting\", \""},{"event":"cmd_output","timestamp":1607098339,"output":"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"initiali"},{"event":"cmd_output","timestamp":1607098339,"output":"zing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :s"},{"event":"cmd_output","timestamp":1607098339,"output":"tate, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_"},{"event":"cmd_output","timestamp":1607098339,"output":"supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:19.407 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHan"},{"event":"cmd_output","timestamp":1607098339,"output":"dler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler.WaitingState :: period: 1000 ms, metric_"},{"event":"cmd_output","timestamp":1607098339,"output":"name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurring args: %{allowed"},{"event":"cmd_output","timestamp":1607098339,"output":"_states: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.Ppl"},{"event":"cmd_output","timestamp":1607098339,"output":"Blocks, observed_state: \"waiting\", publisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.STMHandler.W"},{"event":"cmd_output","timestamp":1607098339,"output":"aitingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :"},{"event":"cmd_output","timestamp":1607098339,"output":"result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervi"},{"event":"cmd_output","timestamp":1607098339,"output":"sor: :skip}\n\u001b[0m\u001b[22m\n16:12:19.407 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.Ru"},{"event":"cmd_output","timestamp":1607098339,"output":"nningState with name Elixir.Ppl.PplBlocks.STMHandler.RunningState :: period: 1000 ms, metric_name: {"},{"event":"cmd_output","timestamp":1607098339,"output":"\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states"},{"event":"cmd_output","timestamp":1607098339,"output":": [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlock"},{"event":"cmd_output","timestamp":1607098339,"output":"s, observed_state: \"running\", publisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHandler.Runni"},{"event":"cmd_output","timestamp":1607098339,"output":"ngState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :resu"},{"event":"cmd_output","timestamp":1607098339,"output":"lt, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_"},{"event":"cmd_output","timestamp":1607098339,"output":"supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:19.407 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHan"},{"event":"cmd_output","timestamp":1607098339,"output":"dler.StoppingState with name Elixir.Ppl.PplBlocks.STMHandler.StoppingState :: period: 1000 ms, metri"},{"event":"cmd_output","timestamp":1607098339,"output":"c_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurring args: %{allo"},{"event":"cmd_output","timestamp":1607098339,"output":"wed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks"},{"event":"cmd_output","timestamp":1607098339,"output":", observed_state: \"stopping\", publisher_cb: #Function<0.104215991/1 in Ppl.PplBlocks.STMHandler.Stop"},{"event":"cmd_output","timestamp":1607098339,"output":"pingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :re"},{"event":"cmd_output","timestamp":1607098339,"output":"sult, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, tas"},{"event":"cmd_output","timestamp":1607098339,"output":"k_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:19.407 [info] Periodic from module Elixir.Block.Blocks.STMHa"},{"event":"cmd_output","timestamp":1607098339,"output":"ndler.InitializingState with name Elixir.Block.Blocks.STMHandler.InitializingState :: period: 100 ms"},{"event":"cmd_output","timestamp":1607098339,"output":", metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, recurring ar"},{"event":"cmd_output","timestamp":1607098339,"output":"gs: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Blocks.Model.Bl"},{"event":"cmd_output","timestamp":1607098339,"output":"ocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :t"},{"event":"cmd_output","timestamp":1607098339,"output":"erminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Block"},{"event":"cmd_output","timestamp":1607098339,"output":"s, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:19.408 [info] Periodic from module Elixir.Block.Blocks"},{"event":"cmd_output","timestamp":1607098339,"output":".STMHandler.RunningState with name Elixir.Block.Blocks.STMHandler.RunningState :: period: 100 ms, me"},{"event":"cmd_output","timestamp":1607098339,"output":"tric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-RunningState\"]}, recurring args: %{all"},{"event":"cmd_output","timestamp":1607098339,"output":"owed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Mode"},{"event":"cmd_output","timestamp":1607098339,"output":"l.Blocks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :te"},{"event":"cmd_output","timestamp":1607098339,"output":"rminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks"},{"event":"cmd_output","timestamp":1607098339,"output":", task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:19.408 [info] Periodic from module Elixir.Block.Blocks."},{"event":"cmd_output","timestamp":1607098339,"output":"STMHandler.StoppingState with name Elixir.Block.Blocks.STMHandler.StoppingState :: period: 100 ms, m"},{"event":"cmd_output","timestamp":1607098339,"output":"etric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-StoppingState\"]}, recurring args: %{a"},{"event":"cmd_output","timestamp":1607098339,"output":"llowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks,"},{"event":"cmd_output","timestamp":1607098339,"output":" observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_"},{"event":"cmd_output","timestamp":1607098339,"output":"request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_s"},{"event":"cmd_output","timestamp":1607098339,"output":"upervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:19.408 [info] Periodic from module Elixir.Block.Tasks.STMHandle"},{"event":"cmd_output","timestamp":1607098339,"output":"r.PendingState with name Elixir.Block.Tasks.STMHandler.PendingState :: period: 100 ms, metric_name: "},{"event":"cmd_output","timestamp":1607098339,"output":"{\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingState\"]}, recurring args: %{allowed_states:"},{"event":"cmd_output","timestamp":1607098339,"output":" [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Tasks.Model.Tasks, observed_state: \""},{"event":"cmd_output","timestamp":1607098339,"output":"pending\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_a"},{"event":"cmd_output","timestamp":1607098339,"output":"t, :state, :recovery_count, :block_id, :build_request_id], schema: Block.Tasks.Model.Tasks, task_sup"},{"event":"cmd_output","timestamp":1607098339,"output":"ervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:19.408 [info] Periodic from module Elixir.Block.Tasks.STMHandler."},{"event":"cmd_output","timestamp":1607098339,"output":"RunningState with name Elixir.Block.Tasks.STMHandler.RunningState :: period: 100 ms, metric_name: {\""},{"event":"cmd_output","timestamp":1607098339,"output":"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: ["},{"event":"cmd_output","timestamp":1607098339,"output":"\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observ"},{"event":"cmd_output","timestamp":1607098339,"output":"ed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request,"},{"event":"cmd_output","timestamp":1607098339,"output":" :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor:"},{"event":"cmd_output","timestamp":1607098339,"output":" :skip}\n\u001b[0m\u001b[22m\n16:12:19.408 [info] Periodic from module Elixir.Block.Tasks.STMHandler.Stopping"},{"event":"cmd_output","timestamp":1607098339,"output":"State with name Elixir.Block.Tasks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.be"},{"event":"cmd_output","timestamp":1607098339,"output":"holder-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stop"},{"event":"cmd_output","timestamp":1607098339,"output":"ping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"stopp"},{"event":"cmd_output","timestamp":1607098339,"output":"ing\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :"},{"event":"cmd_output","timestamp":1607098339,"output":"state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098339,"output":"22m\n16:12:19.527 [info] ppl_id: cd3ec530-d3ee-4803-9b57-d444ffc9ebc9, type: PplRequests, event: pe"},{"event":"cmd_output","timestamp":1607098339,"output":"rsisted source_args for pipeline: cd3ec530-d3ee-4803-9b57-d444ffc9ebc9, origin: Elixir.Ppl.PplReques"},{"event":"cmd_output","timestamp":1607098339,"output":"ts.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:19.530 [info] ppl_id: cd3ec530"},{"event":"cmd_output","timestamp":1607098339,"output":"-d3ee-4803-9b57-d444ffc9ebc9, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098339,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:19.569 [info] p"},{"event":"cmd_output","timestamp":1607098339,"output":"pl_id: cd3ec530-d3ee-4803-9b57-d444ffc9ebc9, type: PplSubInits, state: regular_init, event: exit_sch"},{"event":"cmd_output","timestamp":1607098339,"output":"eduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098339,"output":"12:19.594 [info] ppl_id: cd3ec530-d3ee-4803-9b57-d444ffc9ebc9, type: PplRequests, event: persisted "},{"event":"cmd_output","timestamp":1607098339,"output":"definition for request with request_token: 7bde5c12-364b-11eb-8c87-5254005464e2, origin: Elixir.Ppl."},{"event":"cmd_output","timestamp":1607098339,"output":"PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:19.600 [info] Que"},{"event":"cmd_output","timestamp":1607098339,"output":"ue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, ins"},{"event":"cmd_output","timestamp":1607098339,"output":"erted_at: ~N[2020-12-04 16:12:19.598585], name: \"master-.semaphore/semaphore.yml\", organization_id: "},{"event":"cmd_output","timestamp":1607098339,"output":"\"5cef4418-0ba4-44d6-a573-bb4d16c55a66\", project_id: \"to-delete\", queue_id: \"8fb0adff-6390-47db-b050-"},{"event":"cmd_output","timestamp":1607098339,"output":"3db18c85e4dd\", scope: \"project\", updated_at: ~N[2020-12-04 16:12:19.598598], user_generated: false}}"},{"event":"cmd_output","timestamp":1607098339,"output":"\n\u001b[0m\u001b[22m\n16:12:19.608 [info] ppl_id: not_available, event: created, origin: Elixir.Ppl.PplSubIn"},{"event":"cmd_output","timestamp":1607098339,"output":"its.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:19.609 [info] event: created, o"},{"event":"cmd_output","timestamp":1607098339,"output":"rigin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:19.609"},{"event":"cmd_output","timestamp":1607098339,"output":" [info] ppl_id: cd3ec530-d3ee-4803-9b57-d444ffc9ebc9, type: PplBlocks, block_index: 0, state: initi"},{"event":"cmd_output","timestamp":1607098339,"output":"alizing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitSta"},{"event":"cmd_output","timestamp":1607098339,"output":"te.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:19.609 [info] ppl_id: cd3ec530-d3ee-4803-9b57-d444ffc9ebc9, "},{"event":"cmd_output","timestamp":1607098339,"output":"type: PplBlocks, block_index: 1, state: initializing, event: created, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098339,"output":"xir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:19.613 [info] p"},{"event":"cmd_output","timestamp":1607098339,"output":"pl_id: cd3ec530-d3ee-4803-9b57-d444ffc9ebc9, type: PplSubInits, state: done, result: passed, event: "},{"event":"cmd_output","timestamp":1607098339,"output":"exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098339,"output":"22m\n16:12:19.625 [info] ppl_id: cd3ec530-d3ee-4803-9b57-d444ffc9ebc9, type: PplBlocks, block_index"},{"event":"cmd_output","timestamp":1607098339,"output":": 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_s"},{"event":"cmd_output","timestamp":1607098339,"output":"tate_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:19.629 [info] ppl_id: cd3ec530-d3ee-4803-9b57-d444ffc9ebc9, "},{"event":"cmd_output","timestamp":1607098339,"output":"type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Imp"},{"event":"cmd_output","timestamp":1607098339,"output":"l.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:19.640 [info] ppl_id: cd3ec530-d3ee-4803-9b57-d444ffc"},{"event":"cmd_output","timestamp":1607098339,"output":"9ebc9, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper."},{"event":"cmd_output","timestamp":1607098339,"output":"STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:19.640 [info] ppl_id: cd3ec530-d3ee-4803-9b57-"},{"event":"cmd_output","timestamp":1607098339,"output":"d444ffc9ebc9, type: PplBlocks, block_index: 1, state: waiting, event: exit_scheduling, recovery_coun"},{"event":"cmd_output","timestamp":1607098339,"output":"t: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:19.655 [info] ppl_"},{"event":"cmd_output","timestamp":1607098339,"output":"id: cd3ec530-d3ee-4803-9b57-d444ffc9ebc9, type: Ppls, state: running, event: exit_scheduling, recove"},{"event":"cmd_output","timestamp":1607098339,"output":"ry_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:19.665 [info"},{"event":"cmd_output","timestamp":1607098339,"output":"] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"cd3ec530-d3ee-4803-9b57-d444ffc9"},{"event":"cmd_output","timestamp":1607098339,"output":"ebc9\"\n\u001b[0m\u001b[22m\n16:12:19.676 [info] block_id: 11ddec06-f7af-44da-8b80-ca3062432da1, type: BlockRe"},{"event":"cmd_output","timestamp":1607098339,"output":"quests, event: persisted block run request from ppl cd3ec530-d3ee-4803-9b57-d444ffc9ebc9 for block 0"},{"event":"cmd_output","timestamp":1607098339,"output":", origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098339,"output":"\n16:12:19.679 [info] block_id: 11ddec06-f7af-44da-8b80-ca3062432da1, type: Blocks, state: initiali"},{"event":"cmd_output","timestamp":1607098339,"output":"zing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert"},{"event":"cmd_output","timestamp":1607098339,"output":"/1(L43), \n\u001b[0m\u001b[22m\n16:12:19.681 [info] Block 0 of pipeline with id: cd3ec530-d3ee-4803-9b57-d444"},{"event":"cmd_output","timestamp":1607098339,"output":"ffc9ebc9 scheduled in block service with id: : \"11ddec06-f7af-44da-8b80-ca3062432da1\"\n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098339,"output":":12:19.686 [info] ppl_id: cd3ec530-d3ee-4803-9b57-d444ffc9ebc9, type: PplBlocks, block_index: 0, st"},{"event":"cmd_output","timestamp":1607098339,"output":"ate: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_ch"},{"event":"cmd_output","timestamp":1607098339,"output":"ange/1(L90), \n\u001b[0m\u001b[22m\n16:12:19.692 [info] block_id: 11ddec06-f7af-44da-8b80-ca3062432da1, type:"},{"event":"cmd_output","timestamp":1607098339,"output":" BlockRequests, event: persisted build and sub_ppl details for block_request: 11ddec06-f7af-44da-8b8"},{"event":"cmd_output","timestamp":1607098339,"output":"0-ca3062432da1, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \r"},{"event":"cmd_output","timestamp":1607098339,"output":"\n\u001b[0m\u001b[22m\n16:12:19.695 [info] block_id: 11ddec06-f7af-44da-8b80-ca3062432da1, type: Tasks, state:"},{"event":"cmd_output","timestamp":1607098339,"output":" pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingStat"},{"event":"cmd_output","timestamp":1607098339,"output":"e.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:19.707 [info] block_id: 11ddec06-f7af-44da-8b80-ca3062432da1,"},{"event":"cmd_output","timestamp":1607098339,"output":" type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM."},{"event":"cmd_output","timestamp":1607098339,"output":"Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:19.782 [info] block_id: 11ddec06-f7af-44da-8b80-ca"},{"event":"cmd_output","timestamp":1607098339,"output":"3062432da1, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098339,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:19.988 [info] block_id: 11ddec06-f7af-44"},{"event":"cmd_output","timestamp":1607098339,"output":"da-8b80-ca3062432da1, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: E"},{"event":"cmd_output","timestamp":1607098339,"output":"lixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:19.990 [info] block_id: 11ddec06-"},{"event":"cmd_output","timestamp":1607098339,"output":"f7af-44da-8b80-ca3062432da1, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098340,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:20.003 [info] ppl_id: cd3"},{"event":"cmd_output","timestamp":1607098340,"output":"ec530-d3ee-4803-9b57-d444ffc9ebc9, block_id: 11ddec06-f7af-44da-8b80-ca3062432da1, type: PplBlocks, "},{"event":"cmd_output","timestamp":1607098340,"output":"block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098340,"output":"ir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:20.014 [info] PplBlocks WaitingState"},{"event":"cmd_output","timestamp":1607098340,"output":" STM is scheduling block 1 from pipeline: \"cd3ec530-d3ee-4803-9b57-d444ffc9ebc9\"\n\u001b[0m\u001b[22m\n16:12:2"},{"event":"cmd_output","timestamp":1607098340,"output":"0.021 [info] block_id: 1989d0b8-0ad8-4911-84b2-fa4d189c8a4a, type: BlockRequests, event: persisted "},{"event":"cmd_output","timestamp":1607098340,"output":"block run request from ppl cd3ec530-d3ee-4803-9b57-d444ffc9ebc9 for block 1, origin: Elixir.Block.Bl"},{"event":"cmd_output","timestamp":1607098340,"output":"ockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:20.026 [info] bl"},{"event":"cmd_output","timestamp":1607098340,"output":"ock_id: 1989d0b8-0ad8-4911-84b2-fa4d189c8a4a, type: Blocks, state: initializing, event: initializing"},{"event":"cmd_output","timestamp":1607098340,"output":", recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098340,"output":"12:20.026 [info] Block 1 of pipeline with id: cd3ec530-d3ee-4803-9b57-d444ffc9ebc9 scheduled in blo"},{"event":"cmd_output","timestamp":1607098340,"output":"ck service with id: : \"1989d0b8-0ad8-4911-84b2-fa4d189c8a4a\"\n\u001b[0m\u001b[22m\n16:12:20.034 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098340,"output":": cd3ec530-d3ee-4803-9b57-d444ffc9ebc9, type: PplBlocks, block_index: 1, state: running, event: exit"},{"event":"cmd_output","timestamp":1607098340,"output":"_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098340,"output":"\n16:12:20.041 [info] block_id: 1989d0b8-0ad8-4911-84b2-fa4d189c8a4a, type: BlockRequests, event: pe"},{"event":"cmd_output","timestamp":1607098340,"output":"rsisted build and sub_ppl details for block_request: 1989d0b8-0ad8-4911-84b2-fa4d189c8a4a, origin: E"},{"event":"cmd_output","timestamp":1607098340,"output":"lixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:20.044 "},{"event":"cmd_output","timestamp":1607098340,"output":"[info] block_id: 1989d0b8-0ad8-4911-84b2-fa4d189c8a4a, type: Tasks, state: pending, event: created,"},{"event":"cmd_output","timestamp":1607098340,"output":" recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098340,"output":"\u001b[22m\n16:12:20.046 [info] block_id: 1989d0b8-0ad8-4911-84b2-fa4d189c8a4a, type: Blocks, state: run"},{"event":"cmd_output","timestamp":1607098340,"output":"ning, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098340,"output":"90), \n\u001b[0m\u001b[22m\n16:12:20.068 [info] block_id: 1989d0b8-0ad8-4911-84b2-fa4d189c8a4a, type: Tasks, "},{"event":"cmd_output","timestamp":1607098340,"output":"state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_"},{"event":"cmd_output","timestamp":1607098340,"output":"change/1(L90), \n\u001b[0m\u001b[22m\n16:12:20.098 [info] block_id: 1989d0b8-0ad8-4911-84b2-fa4d189c8a4a, typ"},{"event":"cmd_output","timestamp":1607098340,"output":"e: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098340,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:20.106 [info] block_id: 1989d0b8-0ad8-4911-84b2-fa4d189c8a"},{"event":"cmd_output","timestamp":1607098340,"output":"4a, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM."},{"event":"cmd_output","timestamp":1607098340,"output":"Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:20.117 [info] ppl_id: cd3ec530-d3ee-4803-9b57-d444"},{"event":"cmd_output","timestamp":1607098340,"output":"ffc9ebc9, block_id: 1989d0b8-0ad8-4911-84b2-fa4d189c8a4a, type: PplBlocks, block_index: 1, state: do"},{"event":"cmd_output","timestamp":1607098340,"output":"ne, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_st"},{"event":"cmd_output","timestamp":1607098340,"output":"ate_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:20.123 [info] ppl_id: cd3ec530-d3ee-4803-9b57-d444ffc9ebc9, t"},{"event":"cmd_output","timestamp":1607098340,"output":"ype: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Lo"},{"event":"cmd_output","timestamp":1607098340,"output":"oper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:20.142 [info] Request: 'run: %{\"branch_id"},{"event":"cmd_output","timestamp":1607098340,"output":"\" => \"7c375d0a-bd8e-41c2-9dfd-2fb6ec33ba91\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469\""},{"event":"cmd_output","timestamp":1607098340,"output":", \"file_name\" => \"semaphore.yml\", \"hook_id\" => \"7c560f82-364b-11eb-a5b6-5254005464e2\", \"label\" => \"m"},{"event":"cmd_output","timestamp":1607098340,"output":"aster\", \"organization_id\" => \"cd825a9a-69f9-4cd7-95dc-8d6392b66d39\", \"owner\" => \"rt\", \"project_id\" ="},{"event":"cmd_output","timestamp":1607098340,"output":"> \"to-delete\", \"repo_name\" => \"5_v1_full\", \"request_token\" => \"7c560226-364b-11eb-96ff-5254005464e2\""},{"event":"cmd_output","timestamp":1607098340,"output":", \"requester_id\" => \"1ab3238a-75f4-4753-a8e8-f19a7a62ebcd\", \"service\" => \"local\", \"suppressed_attrib"},{"event":"cmd_output","timestamp":1607098340,"output":"utes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"40a02645-c384-4023-818f-4929f9f4c584\", \"work"},{"event":"cmd_output","timestamp":1607098340,"output":"ing_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:12:20.144 [info] ppl_id: 95bd37e3-226b-4f4a-80b5-55c88f4d9"},{"event":"cmd_output","timestamp":1607098340,"output":"00e, type: PplRequests, event: persisted schedule request with request_token: 7c560226-364b-11eb-96f"},{"event":"cmd_output","timestamp":1607098340,"output":"f-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b"},{"event":"cmd_output","timestamp":1607098340,"output":"[0m\u001b[22m\n16:12:20.147 [info] ppl_id: 95bd37e3-226b-4f4a-80b5-55c88f4d900e, type: Ppls, state: init"},{"event":"cmd_output","timestamp":1607098340,"output":"ializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_"},{"event":"cmd_output","timestamp":1607098340,"output":"response/2(L124), \n\u001b[0m\u001b[22m\n16:12:20.150 [info] Project to-delete and branch masterlatest_wf det"},{"event":"cmd_output","timestamp":1607098340,"output":"ails updated: \"wf_id: 40a02645-c384-4023-818f-4929f9f4c584, wf_number: 2\"\n\u001b[0m\u001b[22m\n16:12:20.152 ["},{"event":"cmd_output","timestamp":1607098340,"output":"info] Persisted ppl_sub_init for pipeline with ppl_id: 95bd37e3-226b-4f4a-80b5-55c88f4d900e: %Ppl.P"},{"event":"cmd_output","timestamp":1607098340,"output":"plSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile"},{"event":"cmd_output","timestamp":1607098340,"output":"_task_id: nil, error_description: nil, id: 201, in_scheduling: false, init_type: \"regular\", inserted"},{"event":"cmd_output","timestamp":1607098340,"output":"_at: ~N[2020-12-04 16:12:20.150842], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"95bd37e3-226b-4f4a-80b5-55c88f4d900e\", recovery_count: 0, re"},{"event":"cmd_output","timestamp":1607098340,"output":"sult: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil"},{"event":"cmd_output","timestamp":1607098340,"output":", updated_at: ~N[2020-12-04 16:12:20.150853]}\n\u001b[0m\u001b[22m\n16:12:20.155 [info] Periodic from module "},{"event":"cmd_output","timestamp":1607098340,"output":"Elixir.Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.STMHandler.InitializingState "},{"event":"cmd_output","timestamp":1607098340,"output":":: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]},"},{"event":"cmd_output","timestamp":1607098340,"output":" recurring args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], cooling_time_sec: 0, initial"},{"event":"cmd_output","timestamp":1607098340,"output":"_query: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher_cb: #Function<0.125326080/1 i"},{"event":"cmd_output","timestamp":1607098340,"output":"n Ppl.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_req"},{"event":"cmd_output","timestamp":1607098340,"output":"uest, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_sup"},{"event":"cmd_output","timestamp":1607098340,"output":"ervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:20.157 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.Pen"},{"event":"cmd_output","timestamp":1607098340,"output":"dingState with name Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.be"},{"event":"cmd_output","timestamp":1607098340,"output":"holder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"pending\""},{"event":"cmd_output","timestamp":1607098340,"output":", \"queuing\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_s"},{"event":"cmd_output","timestamp":1607098340,"output":"tate: \"pending\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, re"},{"event":"cmd_output","timestamp":1607098340,"output":"po: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count"},{"event":"cmd_output","timestamp":1607098340,"output":", :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:12:20.1"},{"event":"cmd_output","timestamp":1607098340,"output":"58 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.QueuingState with name Elixir.Ppl.Ppls.ST"},{"event":"cmd_output","timestamp":1607098340,"output":"MHandler.QueuingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler"},{"event":"cmd_output","timestamp":1607098340,"output":"-QueuingState\"]}, recurring args: %{allowed_states: [\"queuing\", \"running\", \"done\"], cooling_time_sec"},{"event":"cmd_output","timestamp":1607098340,"output":": -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", publisher_cb: #Function<0.12510"},{"event":"cmd_output","timestamp":1607098340,"output":"2843/1 in Ppl.Ppls.STMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_"},{"event":"cmd_output","timestamp":1607098340,"output":"request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_"},{"event":"cmd_output","timestamp":1607098340,"output":"supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:20.159 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler."},{"event":"cmd_output","timestamp":1607098340,"output":"RunningState with name Elixir.Ppl.Ppls.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl"},{"event":"cmd_output","timestamp":1607098340,"output":".beholder-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"runni"},{"event":"cmd_output","timestamp":1607098340,"output":"ng\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: "},{"event":"cmd_output","timestamp":1607098340,"output":"\"running\", publisher_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler.RunningState.args/0>, repo: P"},{"event":"cmd_output","timestamp":1607098340,"output":"pl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :pp"},{"event":"cmd_output","timestamp":1607098340,"output":"l_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:12:20.159 [i"},{"event":"cmd_output","timestamp":1607098340,"output":"nfo] Periodic from module Elixir.Ppl.Ppls.STMHandler.StoppingState with name Elixir.Ppl.Ppls.STMHan"},{"event":"cmd_output","timestamp":1607098340,"output":"dler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-St"},{"event":"cmd_output","timestamp":1607098340,"output":"oppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initia"},{"event":"cmd_output","timestamp":1607098340,"output":"l_query: Ppl.Ppls.Model.Ppls, observed_state: \"stopping\", publisher_cb: #Function<0.71803493/1 in Pp"},{"event":"cmd_output","timestamp":1607098340,"output":"l.Ppls.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :u"},{"event":"cmd_output","timestamp":1607098340,"output":"pdated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor:"},{"event":"cmd_output","timestamp":1607098340,"output":" :skip}\n\u001b[0m\u001b[22m\n16:12:20.159 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.Crea"},{"event":"cmd_output","timestamp":1607098340,"output":"tedState with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 100 ms, metric_name: {\""},{"event":"cmd_output","timestamp":1607098340,"output":"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args: %{allowed_state"},{"event":"cmd_output","timestamp":1607098340,"output":"s: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, obse"},{"event":"cmd_output","timestamp":1607098340,"output":"rved_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request,"},{"event":"cmd_output","timestamp":1607098340,"output":" :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits,"},{"event":"cmd_output","timestamp":1607098340,"output":" task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:20.160 [info] Periodic from module Elixir.Ppl.PplSubInit"},{"event":"cmd_output","timestamp":1607098340,"output":"s.STMHandler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 "},{"event":"cmd_output","timestamp":1607098340,"output":"ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring a"},{"event":"cmd_output","timestamp":1607098340,"output":"rgs: %{allowed_states: [\"regular_init\", \"compilation\", \"done\"], cooling_time_sec: -2, initial_query:"},{"event":"cmd_output","timestamp":1607098340,"output":" Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoR"},{"event":"cmd_output","timestamp":1607098340,"output":"epo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], s"},{"event":"cmd_output","timestamp":1607098340,"output":"chema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:20.160 [info] P"},{"event":"cmd_output","timestamp":1607098340,"output":"eriodic from module Elixir.Ppl.PplSubInits.STMHandler.CompilationState with name Elixir.Ppl.PplSubIn"},{"event":"cmd_output","timestamp":1607098340,"output":"its.STMHandler.CompilationState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSu"},{"event":"cmd_output","timestamp":1607098340,"output":"bInits-STMHandler-CompilationState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilati"},{"event":"cmd_output","timestamp":1607098340,"output":"on\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, ob"},{"event":"cmd_output","timestamp":1607098340,"output":"served_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_re"},{"event":"cmd_output","timestamp":1607098340,"output":"quest, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSub"},{"event":"cmd_output","timestamp":1607098340,"output":"Inits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:20.160 [info] Periodic from module Elixir.Ppl.PplS"},{"event":"cmd_output","timestamp":1607098340,"output":"ubInits.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: "},{"event":"cmd_output","timestamp":1607098340,"output":"period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\""},{"event":"cmd_output","timestamp":1607098340,"output":"]}, recurring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits."},{"event":"cmd_output","timestamp":1607098340,"output":"Model.PplSubInits, observed_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returnin"},{"event":"cmd_output","timestamp":1607098340,"output":"g: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Pp"},{"event":"cmd_output","timestamp":1607098340,"output":"lSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:20.161 [info] Periodic from "},{"event":"cmd_output","timestamp":1607098340,"output":"module Elixir.Ppl.PplBlocks.STMHandler.InitializingState with name Elixir.Ppl.PplBlocks.STMHandler.I"},{"event":"cmd_output","timestamp":1607098340,"output":"nitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler"},{"event":"cmd_output","timestamp":1607098340,"output":"-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"waiting\", \"done\"], coolin"},{"event":"cmd_output","timestamp":1607098340,"output":"g_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"initializing\", publish"},{"event":"cmd_output","timestamp":1607098340,"output":"er_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result,"},{"event":"cmd_output","timestamp":1607098340,"output":" :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :s"},{"event":"cmd_output","timestamp":1607098340,"output":"kip}\n\u001b[0m\u001b[22m\n16:12:20.161 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.WaitingSt"},{"event":"cmd_output","timestamp":1607098340,"output":"ate with name Elixir.Ppl.PplBlocks.STMHandler.WaitingState :: period: 1000 ms, metric_name: {\"Ppl.be"},{"event":"cmd_output","timestamp":1607098340,"output":"holder-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurring args: %{allowed_states: [\"wai"},{"event":"cmd_output","timestamp":1607098340,"output":"ting\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observ"},{"event":"cmd_output","timestamp":1607098340,"output":"ed_state: \"waiting\", publisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.ar"},{"event":"cmd_output","timestamp":1607098340,"output":"gs/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recov"},{"event":"cmd_output","timestamp":1607098340,"output":"ery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b"},{"event":"cmd_output","timestamp":1607098340,"output":"[0m\u001b[22m\n16:12:20.161 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.RunningState wit"},{"event":"cmd_output","timestamp":1607098340,"output":"h name Elixir.Ppl.PplBlocks.STMHandler.RunningState :: period: 1000 ms, metric_name: {\"Ppl.beholder-"},{"event":"cmd_output","timestamp":1607098340,"output":"wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", "},{"event":"cmd_output","timestamp":1607098340,"output":"\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_st"},{"event":"cmd_output","timestamp":1607098340,"output":"ate: \"running\", publisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0"},{"event":"cmd_output","timestamp":1607098340,"output":">, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_"},{"event":"cmd_output","timestamp":1607098340,"output":"count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :s"},{"event":"cmd_output","timestamp":1607098340,"output":"kip}\n\u001b[0m\u001b[22m\n16:12:20.161 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.StoppingS"},{"event":"cmd_output","timestamp":1607098340,"output":"tate with name Elixir.Ppl.PplBlocks.STMHandler.StoppingState :: period: 1000 ms, metric_name: {\"Ppl."},{"event":"cmd_output","timestamp":1607098340,"output":"beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\""},{"event":"cmd_output","timestamp":1607098340,"output":"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_sta"},{"event":"cmd_output","timestamp":1607098340,"output":"te: \"stopping\", publisher_cb: #Function<0.104215991/1 in Ppl.PplBlocks.STMHandler.StoppingState.args"},{"event":"cmd_output","timestamp":1607098340,"output":"/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recover"},{"event":"cmd_output","timestamp":1607098340,"output":"y_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: "},{"event":"cmd_output","timestamp":1607098340,"output":":skip}\n\u001b[0m\u001b[22m\n16:12:20.161 [info] Periodic from module Elixir.Block.Blocks.STMHandler.Initiali"},{"event":"cmd_output","timestamp":1607098340,"output":"zingState with name Elixir.Block.Blocks.STMHandler.InitializingState :: period: 100 ms, metric_name:"},{"event":"cmd_output","timestamp":1607098340,"output":" {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_"},{"event":"cmd_output","timestamp":1607098340,"output":"states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Blocks.Model.Blocks, observed"},{"event":"cmd_output","timestamp":1607098340,"output":"_state: \"initializing\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_reque"},{"event":"cmd_output","timestamp":1607098340,"output":"st, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_superv"},{"event":"cmd_output","timestamp":1607098340,"output":"isor: :skip}\n\u001b[0m\u001b[22m\n16:12:20.162 [info] Periodic from module Elixir.Block.Blocks.STMHandler.Ru"},{"event":"cmd_output","timestamp":1607098340,"output":"nningState with name Elixir.Block.Blocks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"P"},{"event":"cmd_output","timestamp":1607098340,"output":"pl.beholder-wake_up\", [\"Block-Blocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: ["},{"event":"cmd_output","timestamp":1607098340,"output":"\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, obse"},{"event":"cmd_output","timestamp":1607098340,"output":"rved_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_reques"},{"event":"cmd_output","timestamp":1607098340,"output":"t, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervi"},{"event":"cmd_output","timestamp":1607098340,"output":"sor: :skip}\n\u001b[0m\u001b[22m\n16:12:20.162 [info] Periodic from module Elixir.Block.Blocks.STMHandler.Sto"},{"event":"cmd_output","timestamp":1607098340,"output":"ppingState with name Elixir.Block.Blocks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\""},{"event":"cmd_output","timestamp":1607098340,"output":"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states:"},{"event":"cmd_output","timestamp":1607098340,"output":" [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_stat"},{"event":"cmd_output","timestamp":1607098340,"output":"e: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :upda"},{"event":"cmd_output","timestamp":1607098340,"output":"ted_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :sk"},{"event":"cmd_output","timestamp":1607098340,"output":"ip}\n\u001b[0m\u001b[22m\n16:12:20.162 [info] Periodic from module Elixir.Block.Tasks.STMHandler.PendingState"},{"event":"cmd_output","timestamp":1607098340,"output":" with name Elixir.Block.Tasks.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder"},{"event":"cmd_output","timestamp":1607098340,"output":"-wake_up\", [\"Block-Tasks-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"running\", \""},{"event":"cmd_output","timestamp":1607098340,"output":"done\"], cooling_time_sec: 0, initial_query: Block.Tasks.Model.Tasks, observed_state: \"pending\", publ"},{"event":"cmd_output","timestamp":1607098340,"output":"isher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :re"},{"event":"cmd_output","timestamp":1607098340,"output":"covery_count, :block_id, :build_request_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip"},{"event":"cmd_output","timestamp":1607098340,"output":"}\n\u001b[0m\u001b[22m\n16:12:20.162 [info] Periodic from module Elixir.Block.Tasks.STMHandler.RunningState w"},{"event":"cmd_output","timestamp":1607098340,"output":"ith name Elixir.Block.Tasks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-w"},{"event":"cmd_output","timestamp":1607098340,"output":"ake_up\", [\"Block-Tasks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"st"},{"event":"cmd_output","timestamp":1607098340,"output":"opping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"run"},{"event":"cmd_output","timestamp":1607098340,"output":"ning\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, "},{"event":"cmd_output","timestamp":1607098340,"output":":state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098340,"output":"[22m\n16:12:20.162 [info] Periodic from module Elixir.Block.Tasks.STMHandler.StoppingState with nam"},{"event":"cmd_output","timestamp":1607098340,"output":"e Elixir.Block.Tasks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up"},{"event":"cmd_output","timestamp":1607098340,"output":"\", [\"Block-Tasks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"]"},{"event":"cmd_output","timestamp":1607098340,"output":", cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"stopping\", publishe"},{"event":"cmd_output","timestamp":1607098340,"output":"r_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recove"},{"event":"cmd_output","timestamp":1607098340,"output":"ry_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:20."},{"event":"cmd_output","timestamp":1607098340,"output":"277 [info] ppl_id: 95bd37e3-226b-4f4a-80b5-55c88f4d900e, type: PplRequests, event: persisted source"},{"event":"cmd_output","timestamp":1607098340,"output":"_args for pipeline: 95bd37e3-226b-4f4a-80b5-55c88f4d900e, origin: Elixir.Ppl.PplRequests.Model.PplRe"},{"event":"cmd_output","timestamp":1607098340,"output":"questsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:20.280 [info] ppl_id: 95bd37e3-226b-4f4a-80b"},{"event":"cmd_output","timestamp":1607098340,"output":"5-55c88f4d900e, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098340,"output":"n: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:20.305 [info] ppl_id: 95bd37e"},{"event":"cmd_output","timestamp":1607098340,"output":"3-226b-4f4a-80b5-55c88f4d900e, type: PplSubInits, state: regular_init, event: exit_scheduling, recov"},{"event":"cmd_output","timestamp":1607098340,"output":"ery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:20.340 [inf"},{"event":"cmd_output","timestamp":1607098340,"output":"o] ppl_id: 95bd37e3-226b-4f4a-80b5-55c88f4d900e, type: PplRequests, event: persisted definition for"},{"event":"cmd_output","timestamp":1607098340,"output":" request with request_token: 7c560226-364b-11eb-96ff-5254005464e2, origin: Elixir.Ppl.PplRequests.Mo"},{"event":"cmd_output","timestamp":1607098340,"output":"del.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:20.348 [info] ppl_id: not_avail"},{"event":"cmd_output","timestamp":1607098340,"output":"able, event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n"},{"event":"cmd_output","timestamp":1607098340,"output":"\u001b[0m\u001b[22m\n16:12:20.348 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularIni"},{"event":"cmd_output","timestamp":1607098340,"output":"tState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:20.348 [info] ppl_id: 95bd37e3-226b-4f4a-80b5-55c88f4d90"},{"event":"cmd_output","timestamp":1607098340,"output":"0e, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098340,"output":" Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:20.349 [info"},{"event":"cmd_output","timestamp":1607098340,"output":"] ppl_id: 95bd37e3-226b-4f4a-80b5-55c88f4d900e, type: PplBlocks, block_index: 1, state: initializin"},{"event":"cmd_output","timestamp":1607098340,"output":"g, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all"},{"event":"cmd_output","timestamp":1607098340,"output":"_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:20.352 [info] ppl_id: 95bd37e3-226b-4f4a-80b5-55c88f4d900e, type: "},{"event":"cmd_output","timestamp":1607098340,"output":"PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098340,"output":"Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:20.363 [info] ppl_id: 95bd37e3-226b-4f4"},{"event":"cmd_output","timestamp":1607098340,"output":"a-80b5-55c88f4d900e, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recove"},{"event":"cmd_output","timestamp":1607098340,"output":"ry_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:20.363 [info"},{"event":"cmd_output","timestamp":1607098340,"output":"] ppl_id: 95bd37e3-226b-4f4a-80b5-55c88f4d900e, type: Ppls, state: pending, event: exit_scheduling,"},{"event":"cmd_output","timestamp":1607098340,"output":" recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:20.37"},{"event":"cmd_output","timestamp":1607098340,"output":"9 [info] ppl_id: 95bd37e3-226b-4f4a-80b5-55c88f4d900e, type: PplBlocks, block_index: 1, state: wait"},{"event":"cmd_output","timestamp":1607098340,"output":"ing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L9"},{"event":"cmd_output","timestamp":1607098340,"output":"0), \n\u001b[0m\u001b[22m\n16:12:20.381 [info] ppl_id: 95bd37e3-226b-4f4a-80b5-55c88f4d900e, type: Ppls, stat"},{"event":"cmd_output","timestamp":1607098340,"output":"e: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chan"},{"event":"cmd_output","timestamp":1607098340,"output":"ge/1(L90), \n\u001b[0m\u001b[22m\n16:12:20.392 [info] ppl_id: 95bd37e3-226b-4f4a-80b5-55c88f4d900e, type: Ppl"},{"event":"cmd_output","timestamp":1607098340,"output":"s, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_sta"},{"event":"cmd_output","timestamp":1607098340,"output":"te_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:20.399 [info] PplBlocks WaitingState STM is scheduling block 0"},{"event":"cmd_output","timestamp":1607098340,"output":" from pipeline: \"95bd37e3-226b-4f4a-80b5-55c88f4d900e\"\n\u001b[0m\u001b[22m\n16:12:20.412 [info] block_id: c1"},{"event":"cmd_output","timestamp":1607098340,"output":"b7a979-5c5f-4ad7-ae1f-2d6d4bb5b37f, type: BlockRequests, event: persisted block run request from ppl"},{"event":"cmd_output","timestamp":1607098340,"output":" 95bd37e3-226b-4f4a-80b5-55c88f4d900e for block 0, origin: Elixir.Block.BlockRequests.Model.BlockReq"},{"event":"cmd_output","timestamp":1607098340,"output":"uestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:20.414 [info] block_id: c1b7a979-5c5f-4ad7"},{"event":"cmd_output","timestamp":1607098340,"output":"-ae1f-2d6d4bb5b37f, type: Blocks, state: initializing, event: initializing, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098340,"output":"n: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:20.419 [info] Block 0 "},{"event":"cmd_output","timestamp":1607098340,"output":"of pipeline with id: 95bd37e3-226b-4f4a-80b5-55c88f4d900e scheduled in block service with id: : \"c1b"},{"event":"cmd_output","timestamp":1607098340,"output":"7a979-5c5f-4ad7-ae1f-2d6d4bb5b37f\"\n\u001b[0m\u001b[22m\n16:12:20.424 [info] block_id: c1b7a979-5c5f-4ad7-ae1"},{"event":"cmd_output","timestamp":1607098340,"output":"f-2d6d4bb5b37f, type: BlockRequests, event: persisted build and sub_ppl details for block_request: c"},{"event":"cmd_output","timestamp":1607098340,"output":"1b7a979-5c5f-4ad7-ae1f-2d6d4bb5b37f, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.i"},{"event":"cmd_output","timestamp":1607098340,"output":"nsert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:20.426 [info] ppl_id: 95bd37e3-226b-4f4a-80b5-55c88f4d900e, "},{"event":"cmd_output","timestamp":1607098340,"output":"type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098340,"output":"Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:20.428 [info] block_id: c1b7a979"},{"event":"cmd_output","timestamp":1607098340,"output":"-5c5f-4ad7-ae1f-2d6d4bb5b37f, type: Tasks, state: pending, event: created, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098340,"output":": Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:20.432 [info]"},{"event":"cmd_output","timestamp":1607098340,"output":" block_id: c1b7a979-5c5f-4ad7-ae1f-2d6d4bb5b37f, type: Blocks, state: running, event: exit_scheduli"},{"event":"cmd_output","timestamp":1607098340,"output":"ng, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:20"},{"event":"cmd_output","timestamp":1607098340,"output":".500 [info] block_id: c1b7a979-5c5f-4ad7-ae1f-2d6d4bb5b37f, type: Tasks, state: running, event: exi"},{"event":"cmd_output","timestamp":1607098340,"output":"t_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098340,"output":"\n16:12:20.736 [info] block_id: c1b7a979-5c5f-4ad7-ae1f-2d6d4bb5b37f, type: Tasks, state: done, eve"},{"event":"cmd_output","timestamp":1607098340,"output":"nt: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b["},{"event":"cmd_output","timestamp":1607098340,"output":"0m\u001b[22m\n16:12:20.747 [info] block_id: c1b7a979-5c5f-4ad7-ae1f-2d6d4bb5b37f, type: Blocks, state: d"},{"event":"cmd_output","timestamp":1607098340,"output":"one, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L9"},{"event":"cmd_output","timestamp":1607098340,"output":"0), \n\u001b[0m\u001b[22m\n16:12:20.758 [info] ppl_id: 95bd37e3-226b-4f4a-80b5-55c88f4d900e, block_id: c1b7a9"},{"event":"cmd_output","timestamp":1607098340,"output":"79-5c5f-4ad7-ae1f-2d6d4bb5b37f, type: PplBlocks, block_index: 0, state: done, result: passed, event:"},{"event":"cmd_output","timestamp":1607098340,"output":" exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098340,"output":"[22m\n16:12:20.767 [info] PplBlocks WaitingState STM is scheduling block 1 from pipeline: \"95bd37e3"},{"event":"cmd_output","timestamp":1607098340,"output":"-226b-4f4a-80b5-55c88f4d900e\"\n\u001b[0m\u001b[22m\n16:12:20.773 [info] block_id: 31279fe0-7a50-4bc2-8e31-141"},{"event":"cmd_output","timestamp":1607098340,"output":"80f078cdd, type: BlockRequests, event: persisted block run request from ppl 95bd37e3-226b-4f4a-80b5-"},{"event":"cmd_output","timestamp":1607098340,"output":"55c88f4d900e for block 1, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_resp"},{"event":"cmd_output","timestamp":1607098340,"output":"onse/4(L35), \n\u001b[0m\u001b[22m\n16:12:20.776 [info] block_id: 31279fe0-7a50-4bc2-8e31-14180f078cdd, type:"},{"event":"cmd_output","timestamp":1607098340,"output":" Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Mo"},{"event":"cmd_output","timestamp":1607098340,"output":"del.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:20.776 [info] Block 1 of pipeline with id: 95bd"},{"event":"cmd_output","timestamp":1607098340,"output":"37e3-226b-4f4a-80b5-55c88f4d900e scheduled in block service with id: : \"31279fe0-7a50-4bc2-8e31-1418"},{"event":"cmd_output","timestamp":1607098340,"output":"0f078cdd\"\n\u001b[0m\u001b[22m\n16:12:20.781 [info] ppl_id: 95bd37e3-226b-4f4a-80b5-55c88f4d900e, type: PplBl"},{"event":"cmd_output","timestamp":1607098340,"output":"ocks, block_index: 1, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loop"},{"event":"cmd_output","timestamp":1607098340,"output":"er.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:20.785 [info] block_id: 31279fe0-7a50-4bc2-"},{"event":"cmd_output","timestamp":1607098340,"output":"8e31-14180f078cdd, type: BlockRequests, event: persisted build and sub_ppl details for block_request"},{"event":"cmd_output","timestamp":1607098340,"output":": 31279fe0-7a50-4bc2-8e31-14180f078cdd, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQuerie"},{"event":"cmd_output","timestamp":1607098340,"output":"s.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:20.789 [info] block_id: 31279fe0-7a50-4bc2-8e31-14180f078"},{"event":"cmd_output","timestamp":1607098340,"output":"cdd, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STM"},{"event":"cmd_output","timestamp":1607098340,"output":"Handler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:20.795 [info] block_id: 31279fe0-7a50"},{"event":"cmd_output","timestamp":1607098340,"output":"-4bc2-8e31-14180f078cdd, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098340,"output":"igin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:20.835 [info] block_id: 31"},{"event":"cmd_output","timestamp":1607098340,"output":"279fe0-7a50-4bc2-8e31-14180f078cdd, type: Tasks, state: running, event: exit_scheduling, recovery_co"},{"event":"cmd_output","timestamp":1607098340,"output":"unt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:20.849 [info] bl"},{"event":"cmd_output","timestamp":1607098340,"output":"ock_id: 31279fe0-7a50-4bc2-8e31-14180f078cdd, type: Tasks, state: done, event: exit_scheduling, reco"},{"event":"cmd_output","timestamp":1607098340,"output":"very_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:20.856 [in"},{"event":"cmd_output","timestamp":1607098340,"output":"fo] block_id: 31279fe0-7a50-4bc2-8e31-14180f078cdd, type: Blocks, state: done, event: exit_scheduli"},{"event":"cmd_output","timestamp":1607098340,"output":"ng, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:20"},{"event":"cmd_output","timestamp":1607098340,"output":".868 [info] ppl_id: 95bd37e3-226b-4f4a-80b5-55c88f4d900e, block_id: 31279fe0-7a50-4bc2-8e31-14180f0"},{"event":"cmd_output","timestamp":1607098340,"output":"78cdd, type: PplBlocks, block_index: 1, state: done, result: passed, event: exit_scheduling, recover"},{"event":"cmd_output","timestamp":1607098340,"output":"y_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:20.875 [info]"},{"event":"cmd_output","timestamp":1607098340,"output":" ppl_id: 95bd37e3-226b-4f4a-80b5-55c88f4d900e, type: Ppls, state: done, result: passed, event: exit"},{"event":"cmd_output","timestamp":1607098340,"output":"_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098340,"output":"\n16:12:20.916 [info] Persisted delete_request for pipelines from project with project_id: to-delete"},{"event":"cmd_output","timestamp":1607098340,"output":": %Ppl.DeleteRequests.Model.DeleteRequests{__meta__: #Ecto.Schema.Metadata<:loaded, \"delete_requests"},{"event":"cmd_output","timestamp":1607098340,"output":"\">, error_description: nil, id: 1, in_scheduling: false, inserted_at: ~N[2020-12-04 16:12:20.914808]"},{"event":"cmd_output","timestamp":1607098340,"output":", project_id: \"to-delete\", recovery_count: 0, requester: \"sudo\", result: nil, result_reason: nil, st"},{"event":"cmd_output","timestamp":1607098340,"output":"ate: \"pending\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12"},{"event":"cmd_output","timestamp":1607098340,"output":":20.914823]}\n\u001b[0m\u001b[22m\n16:12:20.925 [info] Periodic from module Elixir.Ppl.DeleteRequests.STMHand"},{"event":"cmd_output","timestamp":1607098340,"output":"ler.PendingState with name Elixir.Ppl.DeleteRequests.STMHandler.PendingState :: period: 100 ms, metr"},{"event":"cmd_output","timestamp":1607098340,"output":"ic_name: {\"Ppl.beholder-wake_up\", [\"Ppl-DeleteRequests-STMHandler-PendingState\"]}, recurring args: %"},{"event":"cmd_output","timestamp":1607098340,"output":"{allowed_states: [\"deleting\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.DeleteRequests.Model"},{"event":"cmd_output","timestamp":1607098340,"output":".DeleteRequests, observed_state: \"pending\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id"},{"event":"cmd_output","timestamp":1607098340,"output":", :terminate_request, :updated_at, :state, :recovery_count, :project_id], schema: Ppl.DeleteRequests"},{"event":"cmd_output","timestamp":1607098340,"output":".Model.DeleteRequests, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:20.933 [info] Periodic from module"},{"event":"cmd_output","timestamp":1607098340,"output":" Elixir.Ppl.DeleteRequests.STMHandler.DeletingState with name Elixir.Ppl.DeleteRequests.STMHandler.D"},{"event":"cmd_output","timestamp":1607098340,"output":"eletingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-DeleteRequests-STMHandle"},{"event":"cmd_output","timestamp":1607098340,"output":"r-DeletingState\"]}, recurring args: %{allowed_states: [\"deleting\", \"queue_deleting\", \"done\"], coolin"},{"event":"cmd_output","timestamp":1607098340,"output":"g_time_sec: -2, initial_query: #Ecto.Query, observed_state: \"deleti"},{"event":"cmd_output","timestamp":1607098340,"output":"ng\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :sta"},{"event":"cmd_output","timestamp":1607098340,"output":"te, :recovery_count, :project_id], schema: Ppl.DeleteRequests.Model.DeleteRequests, task_supervisor:"},{"event":"cmd_output","timestamp":1607098340,"output":" :skip}\n\u001b[0m\u001b[22m\n16:12:20.937 [info] Periodic from module Elixir.Ppl.DeleteRequests.STMHandler.Q"},{"event":"cmd_output","timestamp":1607098340,"output":"ueueDeletingState with name Elixir.Ppl.DeleteRequests.STMHandler.QueueDeletingState :: period: 100 m"},{"event":"cmd_output","timestamp":1607098340,"output":"s, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-DeleteRequests-STMHandler-QueueDeletingState\"]}, recu"},{"event":"cmd_output","timestamp":1607098340,"output":"rring args: %{allowed_states: [\"queue_deleting\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.D"},{"event":"cmd_output","timestamp":1607098340,"output":"eleteRequests.Model.DeleteRequests, observed_state: \"queue_deleting\", publisher_cb: :skip, repo: Ppl"},{"event":"cmd_output","timestamp":1607098340,"output":".EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :project_id], "},{"event":"cmd_output","timestamp":1607098341,"output":"schema: Ppl.DeleteRequests.Model.DeleteRequests, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:21.041 [i"},{"event":"cmd_output","timestamp":1607098341,"output":"nfo] type: DeleteRequests, state: deleting, event: exit_scheduling, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098341,"output":"ir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:21.147 [info] Deleted pipeline 95bd3"},{"event":"cmd_output","timestamp":1607098341,"output":"7e3-226b-4f4a-80b5-55c88f4d900e from project:: \"to-delete\"\n\u001b[0m\u001b[22m\n16:12:21.279 [info] Deleted "},{"event":"cmd_output","timestamp":1607098341,"output":"pipeline cd3ec530-d3ee-4803-9b57-d444ffc9ebc9 from project:: \"to-delete\"\n\u001b[0m\u001b[22m\n16:12:21.391 [i"},{"event":"cmd_output","timestamp":1607098341,"output":"nfo] type: DeleteRequests, state: queue_deleting, event: exit_scheduling, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098341,"output":": Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:21.459 [info] Deleted queue ma"},{"event":"cmd_output","timestamp":1607098341,"output":"ster-.semaphore/semaphore.yml from project:: \"to-delete\"\n\u001b[0m\u001b[22m\n16:12:21.569 [info] type: Dele"},{"event":"cmd_output","timestamp":1607098341,"output":"teRequests, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.l"},{"event":"cmd_output","timestamp":1607098343,"output":"og_state_change/1(L90), \n\u001b[0m\u001b[31m\n16:12:23.950 [error] Describe request failure: {:error, \"Pipeli"},{"event":"cmd_output","timestamp":1607098343,"output":"ne with id: cd3ec530-d3ee-4803-9b57-d444ffc9ebc9 not found\"}\n\u001b[0m\u001b[31m\n16:12:23.954 [error] Descri"},{"event":"cmd_output","timestamp":1607098343,"output":"be request failure: {:error, \"Pipeline with id: 95bd37e3-226b-4f4a-80b5-55c88f4d900e not found\"}\n\u001b["},{"event":"cmd_output","timestamp":1607098343,"output":"0m\u001b[32m\r * test gRPC delete() - deletes everything when given valid params (4692.4ms)\u001b[0m\n * test"},{"event":"cmd_output","timestamp":1607098344,"output":" gRPC describe_topology() - explicit depndencies\u001b[22m\n16:12:24.024 [info] Request: 'run: %{:repo_n"},{"event":"cmd_output","timestamp":1607098344,"output":"ame => \"13_free_topology\", \"branch_id\" => \"24da85db-9ae5-4747-898b-3bbbe1661f70\", \"branch_name\" => \""},{"event":"cmd_output","timestamp":1607098344,"output":"master\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"semaphore.yml\", \"hook_id\" => \"7ea69860-364b-1"},{"event":"cmd_output","timestamp":1607098344,"output":"1eb-a34a-5254005464e2\", \"label\" => \"master\", \"organization_id\" => \"e50ac4bc-2cc6-4922-ba3a-a5abe98a1"},{"event":"cmd_output","timestamp":1607098344,"output":"ad2\", \"owner\" => \"rt\", \"project_id\" => \"86684775-a9b0-4fde-8401-cb94c3c8a2c1\", \"repo_name\" => \"2_bas"},{"event":"cmd_output","timestamp":1607098344,"output":"ic\", \"request_token\" => \"7ea68a78-364b-11eb-8edf-5254005464e2\", \"requester_id\" => \"40e43385-af58-4c8"},{"event":"cmd_output","timestamp":1607098344,"output":"1-802e-45071f320772\", \"service\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secr"},{"event":"cmd_output","timestamp":1607098344,"output":"et\"], \"wf_id\" => \"2a7b41e0-7685-4e4e-aaf7-1181d957ce14\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098344,"output":"16:12:24.027 [info] ppl_id: ba470f00-97d9-4747-92b1-b632a788b601, type: PplRequests, event: persist"},{"event":"cmd_output","timestamp":1607098344,"output":"ed schedule request with request_token: 7ea68a78-364b-11eb-8edf-5254005464e2, origin: Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098344,"output":"Requests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:24.030 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098344,"output":" ba470f00-97d9-4747-92b1-b632a788b601, type: Ppls, state: initializing, event: initializing, recover"},{"event":"cmd_output","timestamp":1607098344,"output":"y_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:2"},{"event":"cmd_output","timestamp":1607098344,"output":"4.034 [info] Project 86684775-a9b0-4fde-8401-cb94c3c8a2c1 and branch masterlatest_wf details update"},{"event":"cmd_output","timestamp":1607098344,"output":"d: \"wf_id: 2a7b41e0-7685-4e4e-aaf7-1181d957ce14, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:12:24.035 [info] Pers"},{"event":"cmd_output","timestamp":1607098344,"output":"isted ppl_sub_init for pipeline with ppl_id: ba470f00-97d9-4747-92b1-b632a788b601: %Ppl.PplSubInits."},{"event":"cmd_output","timestamp":1607098344,"output":"Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: n"},{"event":"cmd_output","timestamp":1607098344,"output":"il, error_description: nil, id: 202, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[202"},{"event":"cmd_output","timestamp":1607098344,"output":"0-12-04 16:12:24.034654], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"ba470f00-97d9-4747-92b1-b632a788b601\", recovery_count: 0, result: nil, "},{"event":"cmd_output","timestamp":1607098344,"output":"result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_a"},{"event":"cmd_output","timestamp":1607098344,"output":"t: ~N[2020-12-04 16:12:24.034660]}\n\u001b[0m\u001b[22m\n16:12:24.039 [info] Periodic from module Elixir.Ppl."},{"event":"cmd_output","timestamp":1607098344,"output":"Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: "},{"event":"cmd_output","timestamp":1607098344,"output":"100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring "},{"event":"cmd_output","timestamp":1607098344,"output":"args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl"},{"event":"cmd_output","timestamp":1607098344,"output":".Ppls.Model.Ppls, observed_state: \"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls."},{"event":"cmd_output","timestamp":1607098344,"output":"STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :upda"},{"event":"cmd_output","timestamp":1607098344,"output":"ted_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :s"},{"event":"cmd_output","timestamp":1607098344,"output":"kip}\n\u001b[0m\u001b[22m\n16:12:24.039 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.Regular"},{"event":"cmd_output","timestamp":1607098344,"output":"InitState with name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period: 100 ms, metric_nam"},{"event":"cmd_output","timestamp":1607098344,"output":"e: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurring args: %{allo"},{"event":"cmd_output","timestamp":1607098344,"output":"wed_states: [\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observe"},{"event":"cmd_output","timestamp":1607098344,"output":"d_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_reques"},{"event":"cmd_output","timestamp":1607098344,"output":"t, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInit"},{"event":"cmd_output","timestamp":1607098344,"output":"s, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:24.040 [info] Periodic from module Elixir.Ppl.PplSubIn"},{"event":"cmd_output","timestamp":1607098344,"output":"its.STMHandler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler.FetchingState :: period: 10"},{"event":"cmd_output","timestamp":1607098344,"output":"0 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring"},{"event":"cmd_output","timestamp":1607098344,"output":" args: %{allowed_states: [\"regular_init\", \"compilation\", \"done\"], cooling_time_sec: -2, initial_quer"},{"event":"cmd_output","timestamp":1607098344,"output":"y: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fetching\", publisher_cb: :skip, repo: Ppl.Ect"},{"event":"cmd_output","timestamp":1607098344,"output":"oRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id],"},{"event":"cmd_output","timestamp":1607098344,"output":" schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:24.042 [info] "},{"event":"cmd_output","timestamp":1607098344,"output":" Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CompilationState with name Elixir.Ppl.PplSub"},{"event":"cmd_output","timestamp":1607098344,"output":"Inits.STMHandler.CompilationState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppl"},{"event":"cmd_output","timestamp":1607098344,"output":"SubInits-STMHandler-CompilationState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compila"},{"event":"cmd_output","timestamp":1607098344,"output":"tion\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, "},{"event":"cmd_output","timestamp":1607098344,"output":"observed_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_"},{"event":"cmd_output","timestamp":1607098344,"output":"request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplS"},{"event":"cmd_output","timestamp":1607098344,"output":"ubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:24.043 [info] Periodic from module Elixir.Ppl.Pp"},{"event":"cmd_output","timestamp":1607098344,"output":"lSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period"},{"event":"cmd_output","timestamp":1607098344,"output":": 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurr"},{"event":"cmd_output","timestamp":1607098344,"output":"ing args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInit"},{"event":"cmd_output","timestamp":1607098344,"output":"s.Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: "},{"event":"cmd_output","timestamp":1607098344,"output":"[:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSu"},{"event":"cmd_output","timestamp":1607098344,"output":"bInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:24.154 [info] ppl_id: ba470f00-"},{"event":"cmd_output","timestamp":1607098344,"output":"97d9-4747-92b1-b632a788b601, type: PplRequests, event: persisted source_args for pipeline: ba470f00-"},{"event":"cmd_output","timestamp":1607098344,"output":"97d9-4747-92b1-b632a788b601, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2"},{"event":"cmd_output","timestamp":1607098344,"output":"(L89), \n\u001b[0m\u001b[22m\n16:12:24.157 [info] ppl_id: ba470f00-97d9-4747-92b1-b632a788b601, type: PplSubI"},{"event":"cmd_output","timestamp":1607098344,"output":"nits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098344,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:24.181 [info] ppl_id: ba470f00-97d9-4747-92b1-b632a788b601"},{"event":"cmd_output","timestamp":1607098344,"output":", type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098344,"output":"Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:24.215 [info] ppl_id: ba470f00-97d9-474"},{"event":"cmd_output","timestamp":1607098344,"output":"7-92b1-b632a788b601, type: PplRequests, event: persisted definition for request with request_token: "},{"event":"cmd_output","timestamp":1607098344,"output":"7ea68a78-364b-11eb-8edf-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert"},{"event":"cmd_output","timestamp":1607098344,"output":"_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:24.220 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queue"},{"event":"cmd_output","timestamp":1607098344,"output":"s{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:12:24.218841], n"},{"event":"cmd_output","timestamp":1607098344,"output":"ame: \"master-.semaphore/semaphore.yml\", organization_id: \"e50ac4bc-2cc6-4922-ba3a-a5abe98a1ad2\", pro"},{"event":"cmd_output","timestamp":1607098344,"output":"ject_id: \"86684775-a9b0-4fde-8401-cb94c3c8a2c1\", queue_id: \"414706dc-0af0-4111-ae79-f28c146b9f39\", s"},{"event":"cmd_output","timestamp":1607098344,"output":"cope: \"project\", updated_at: ~N[2020-12-04 16:12:24.218874], user_generated: false}}\n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098344,"output":"12:24.229 [info] ppl_id: not_available, event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.R"},{"event":"cmd_output","timestamp":1607098344,"output":"egularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:24.229 [info] event: created, origin: Elixir.Pp"},{"event":"cmd_output","timestamp":1607098344,"output":"l.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:24.229 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098344,"output":" ba470f00-97d9-4747-92b1-b632a788b601, type: PplBlocks, block_index: 0, state: initializing, event: "},{"event":"cmd_output","timestamp":1607098344,"output":"created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L10"},{"event":"cmd_output","timestamp":1607098344,"output":"5), \n\u001b[0m\u001b[22m\n16:12:24.229 [info] ppl_id: ba470f00-97d9-4747-92b1-b632a788b601, type: PplBlocks,"},{"event":"cmd_output","timestamp":1607098344,"output":" block_index: 1, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubIn"},{"event":"cmd_output","timestamp":1607098344,"output":"its.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:24.229 [info] ppl_id: ba470f00-"},{"event":"cmd_output","timestamp":1607098344,"output":"97d9-4747-92b1-b632a788b601, type: PplBlocks, block_index: 2, state: initializing, event: created, r"},{"event":"cmd_output","timestamp":1607098344,"output":"ecovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098344,"output":"\u001b[22m\n16:12:24.229 [info] ppl_id: ba470f00-97d9-4747-92b1-b632a788b601, type: PplBlocks, block_ind"},{"event":"cmd_output","timestamp":1607098344,"output":"ex: 3, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHan"},{"event":"cmd_output","timestamp":1607098344,"output":"dler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:24.229 [info] ppl_id: ba470f00-97d9-4747-"},{"event":"cmd_output","timestamp":1607098344,"output":"92b1-b632a788b601, type: PplBlocks, block_index: 4, state: initializing, event: created, recovery_co"},{"event":"cmd_output","timestamp":1607098344,"output":"unt: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098344,"output":"12:24.232 [info] ppl_id: ba470f00-97d9-4747-92b1-b632a788b601, type: PplSubInits, state: done, resu"},{"event":"cmd_output","timestamp":1607098344,"output":"lt: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chan"},{"event":"cmd_output","timestamp":1607098344,"output":"ge/1(L90), \n\u001b[0m\u001b[22m\n16:12:24.247 [info] ppl_id: ba470f00-97d9-4747-92b1-b632a788b601, type: Ppl"},{"event":"cmd_output","timestamp":1607098344,"output":"s, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_sta"},{"event":"cmd_output","timestamp":1607098344,"output":"te_change/1(L90), \n\u001b[0m\u001b[32m\r * test gRPC describe_topology() - explicit depndencies (300.0ms)\u001b[0m"},{"event":"cmd_output","timestamp":1607098344,"output":"\n * test gRPC validate_yaml() - scheduled pipeline execution passed, origin data saved\u001b[22m\n16:12"},{"event":"cmd_output","timestamp":1607098344,"output":":24.308 [info] Request: 'run: %{\"branch_id\" => \"b234a675-a90b-4de2-ba7a-59e6b6f7b1b4\", \"branch_name"},{"event":"cmd_output","timestamp":1607098344,"output":"\" => \"master\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"semaphore.yml\", \"hook_id\" => \"7ed1edee-"},{"event":"cmd_output","timestamp":1607098344,"output":"364b-11eb-bae5-5254005464e2\", \"label\" => \"master\", \"organization_id\" => \"134f2829-201c-42c4-adfa-c04"},{"event":"cmd_output","timestamp":1607098344,"output":"1f057afe9\", \"owner\" => \"rt\", \"project_id\" => \"77736474-659a-4e43-9ded-626dafa5ef65\", \"repo_name\" => "},{"event":"cmd_output","timestamp":1607098344,"output":"\"5_v1_full\", \"request_token\" => \"7ed1e588-364b-11eb-82b4-5254005464e2\", \"requester_id\" => \"837437a0-"},{"event":"cmd_output","timestamp":1607098344,"output":"b4a7-4988-8ab0-de0aaaaf4e5a\", \"service\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"cli"},{"event":"cmd_output","timestamp":1607098344,"output":"ent_secret\"], \"wf_id\" => \"efb3fbe2-78c5-4e18-8ef4-0ba98abd6e1d\", \"working_dir\" => \".semaphore\"}\n\u001b[0"},{"event":"cmd_output","timestamp":1607098344,"output":"m\u001b[22m\n16:12:24.311 [info] ppl_id: 2b788786-0a8b-44ff-83da-f42c7114dff4, type: PplRequests, event:"},{"event":"cmd_output","timestamp":1607098344,"output":" persisted schedule request with request_token: 7ed1e588-364b-11eb-82b4-5254005464e2, origin: Elixir"},{"event":"cmd_output","timestamp":1607098344,"output":".Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:24.315 [info] "},{"event":"cmd_output","timestamp":1607098344,"output":" ppl_id: 2b788786-0a8b-44ff-83da-f42c7114dff4, type: Ppls, state: initializing, event: initializing,"},{"event":"cmd_output","timestamp":1607098344,"output":" recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098344,"output":"\n16:12:24.320 [info] Project 77736474-659a-4e43-9ded-626dafa5ef65 and branch masterlatest_wf detail"},{"event":"cmd_output","timestamp":1607098344,"output":"s updated: \"wf_id: efb3fbe2-78c5-4e18-8ef4-0ba98abd6e1d, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:12:24.321 [inf"},{"event":"cmd_output","timestamp":1607098344,"output":"o] Persisted ppl_sub_init for pipeline with ppl_id: 2b788786-0a8b-44ff-83da-f42c7114dff4: %Ppl.PplS"},{"event":"cmd_output","timestamp":1607098344,"output":"ubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_ta"},{"event":"cmd_output","timestamp":1607098344,"output":"sk_id: nil, error_description: nil, id: 203, in_scheduling: false, init_type: \"regular\", inserted_at"},{"event":"cmd_output","timestamp":1607098344,"output":": ~N[2020-12-04 16:12:24.320718], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"2b788786-0a8b-44ff-83da-f42c7114dff4\", recovery_count: 0, resul"},{"event":"cmd_output","timestamp":1607098344,"output":"t: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, u"},{"event":"cmd_output","timestamp":1607098344,"output":"pdated_at: ~N[2020-12-04 16:12:24.320725]}\n\u001b[0m\u001b[22m\n16:12:24.325 [info] Periodic from module Eli"},{"event":"cmd_output","timestamp":1607098344,"output":"xir.Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: "},{"event":"cmd_output","timestamp":1607098344,"output":"period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, re"},{"event":"cmd_output","timestamp":1607098344,"output":"curring args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_qu"},{"event":"cmd_output","timestamp":1607098344,"output":"ery: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher_cb: #Function<0.125326080/1 in P"},{"event":"cmd_output","timestamp":1607098344,"output":"pl.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_reques"},{"event":"cmd_output","timestamp":1607098344,"output":"t, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_superv"},{"event":"cmd_output","timestamp":1607098344,"output":"isor: :skip}\n\u001b[0m\u001b[22m\n16:12:24.326 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.Pendin"},{"event":"cmd_output","timestamp":1607098344,"output":"gState with name Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.behol"},{"event":"cmd_output","timestamp":1607098344,"output":"der-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"pending\", \""},{"event":"cmd_output","timestamp":1607098344,"output":"queuing\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_stat"},{"event":"cmd_output","timestamp":1607098344,"output":"e: \"pending\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo:"},{"event":"cmd_output","timestamp":1607098344,"output":" Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :"},{"event":"cmd_output","timestamp":1607098344,"output":"ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:12:24.327 "},{"event":"cmd_output","timestamp":1607098344,"output":"[info] Periodic from module Elixir.Ppl.Ppls.STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHa"},{"event":"cmd_output","timestamp":1607098344,"output":"ndler.QueuingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Qu"},{"event":"cmd_output","timestamp":1607098344,"output":"euingState\"]}, recurring args: %{allowed_states: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -"},{"event":"cmd_output","timestamp":1607098344,"output":"2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", publisher_cb: #Function<0.12510284"},{"event":"cmd_output","timestamp":1607098344,"output":"3/1 in Ppl.Ppls.STMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_req"},{"event":"cmd_output","timestamp":1607098344,"output":"uest, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_sup"},{"event":"cmd_output","timestamp":1607098344,"output":"ervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:24.327 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.Run"},{"event":"cmd_output","timestamp":1607098344,"output":"ningState with name Elixir.Ppl.Ppls.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.be"},{"event":"cmd_output","timestamp":1607098344,"output":"holder-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\""},{"event":"cmd_output","timestamp":1607098344,"output":", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"ru"},{"event":"cmd_output","timestamp":1607098344,"output":"nning\", publisher_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler.RunningState.args/0>, repo: Ppl."},{"event":"cmd_output","timestamp":1607098344,"output":"EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_i"},{"event":"cmd_output","timestamp":1607098344,"output":"d], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:12:24.328 [info"},{"event":"cmd_output","timestamp":1607098344,"output":"] Periodic from module Elixir.Ppl.Ppls.STMHandler.StoppingState with name Elixir.Ppl.Ppls.STMHandle"},{"event":"cmd_output","timestamp":1607098344,"output":"r.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Stopp"},{"event":"cmd_output","timestamp":1607098344,"output":"ingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_q"},{"event":"cmd_output","timestamp":1607098344,"output":"uery: Ppl.Ppls.Model.Ppls, observed_state: \"stopping\", publisher_cb: #Function<0.71803493/1 in Ppl.P"},{"event":"cmd_output","timestamp":1607098344,"output":"pls.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :upda"},{"event":"cmd_output","timestamp":1607098344,"output":"ted_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :s"},{"event":"cmd_output","timestamp":1607098344,"output":"kip}\n\u001b[0m\u001b[22m\n16:12:24.329 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.Created"},{"event":"cmd_output","timestamp":1607098344,"output":"State with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 100 ms, metric_name: {\"Ppl"},{"event":"cmd_output","timestamp":1607098344,"output":".beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args: %{allowed_states: "},{"event":"cmd_output","timestamp":1607098344,"output":"[\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observe"},{"event":"cmd_output","timestamp":1607098344,"output":"d_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :u"},{"event":"cmd_output","timestamp":1607098344,"output":"pdated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, ta"},{"event":"cmd_output","timestamp":1607098344,"output":"sk_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:24.329 [info] Periodic from module Elixir.Ppl.PplSubInits.S"},{"event":"cmd_output","timestamp":1607098344,"output":"TMHandler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 ms,"},{"event":"cmd_output","timestamp":1607098344,"output":" metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring args"},{"event":"cmd_output","timestamp":1607098344,"output":": %{allowed_states: [\"regular_init\", \"compilation\", \"done\"], cooling_time_sec: -2, initial_query: Pp"},{"event":"cmd_output","timestamp":1607098344,"output":"l.PplSubInits.Model.PplSubInits, observed_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo"},{"event":"cmd_output","timestamp":1607098344,"output":", returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], sche"},{"event":"cmd_output","timestamp":1607098344,"output":"ma: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:24.330 [info] Peri"},{"event":"cmd_output","timestamp":1607098344,"output":"odic from module Elixir.Ppl.PplSubInits.STMHandler.CompilationState with name Elixir.Ppl.PplSubInits"},{"event":"cmd_output","timestamp":1607098344,"output":".STMHandler.CompilationState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubIn"},{"event":"cmd_output","timestamp":1607098344,"output":"its-STMHandler-CompilationState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\""},{"event":"cmd_output","timestamp":1607098344,"output":", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, obser"},{"event":"cmd_output","timestamp":1607098344,"output":"ved_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_reque"},{"event":"cmd_output","timestamp":1607098344,"output":"st, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubIni"},{"event":"cmd_output","timestamp":1607098344,"output":"ts, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:24.331 [info] Periodic from module Elixir.Ppl.PplSubI"},{"event":"cmd_output","timestamp":1607098344,"output":"nits.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: per"},{"event":"cmd_output","timestamp":1607098344,"output":"iod: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]},"},{"event":"cmd_output","timestamp":1607098344,"output":" recurring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Mod"},{"event":"cmd_output","timestamp":1607098344,"output":"el.PplSubInits, observed_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: "},{"event":"cmd_output","timestamp":1607098344,"output":"[:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSu"},{"event":"cmd_output","timestamp":1607098344,"output":"bInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:24.331 [info] Periodic from mod"},{"event":"cmd_output","timestamp":1607098344,"output":"ule Elixir.Ppl.PplBlocks.STMHandler.InitializingState with name Elixir.Ppl.PplBlocks.STMHandler.Init"},{"event":"cmd_output","timestamp":1607098344,"output":"ializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-In"},{"event":"cmd_output","timestamp":1607098344,"output":"itializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"waiting\", \"done\"], cooling_t"},{"event":"cmd_output","timestamp":1607098344,"output":"ime_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"initializing\", publisher_"},{"event":"cmd_output","timestamp":1607098344,"output":"cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :r"},{"event":"cmd_output","timestamp":1607098344,"output":"ecovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip"},{"event":"cmd_output","timestamp":1607098344,"output":"}\n\u001b[0m\u001b[22m\n16:12:24.332 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.WaitingState"},{"event":"cmd_output","timestamp":1607098344,"output":" with name Elixir.Ppl.PplBlocks.STMHandler.WaitingState :: period: 1000 ms, metric_name: {\"Ppl.behol"},{"event":"cmd_output","timestamp":1607098344,"output":"der-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurring args: %{allowed_states: [\"waitin"},{"event":"cmd_output","timestamp":1607098344,"output":"g\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_"},{"event":"cmd_output","timestamp":1607098344,"output":"state: \"waiting\", publisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/"},{"event":"cmd_output","timestamp":1607098344,"output":"0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery"},{"event":"cmd_output","timestamp":1607098344,"output":"_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m"},{"event":"cmd_output","timestamp":1607098344,"output":"\u001b[22m\n16:12:24.333 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.RunningState with n"},{"event":"cmd_output","timestamp":1607098344,"output":"ame Elixir.Ppl.PplBlocks.STMHandler.RunningState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wak"},{"event":"cmd_output","timestamp":1607098344,"output":"e_up\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"st"},{"event":"cmd_output","timestamp":1607098344,"output":"opping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state"},{"event":"cmd_output","timestamp":1607098344,"output":": \"running\", publisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0>, "},{"event":"cmd_output","timestamp":1607098344,"output":"repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_cou"},{"event":"cmd_output","timestamp":1607098344,"output":"nt, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip"},{"event":"cmd_output","timestamp":1607098344,"output":"}\n\u001b[0m\u001b[22m\n16:12:24.333 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.StoppingStat"},{"event":"cmd_output","timestamp":1607098344,"output":"e with name Elixir.Ppl.PplBlocks.STMHandler.StoppingState :: period: 1000 ms, metric_name: {\"Ppl.beh"},{"event":"cmd_output","timestamp":1607098344,"output":"older-wake_up\", [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"sto"},{"event":"cmd_output","timestamp":1607098344,"output":"pping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state:"},{"event":"cmd_output","timestamp":1607098344,"output":" \"stopping\", publisher_cb: #Function<0.104215991/1 in Ppl.PplBlocks.STMHandler.StoppingState.args/0>"},{"event":"cmd_output","timestamp":1607098344,"output":", repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_c"},{"event":"cmd_output","timestamp":1607098344,"output":"ount, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :sk"},{"event":"cmd_output","timestamp":1607098344,"output":"ip}\n\u001b[0m\u001b[22m\n16:12:24.334 [info] Periodic from module Elixir.Block.Blocks.STMHandler.Initializin"},{"event":"cmd_output","timestamp":1607098344,"output":"gState with name Elixir.Block.Blocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\""},{"event":"cmd_output","timestamp":1607098344,"output":"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_sta"},{"event":"cmd_output","timestamp":1607098344,"output":"tes: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Blocks.Model.Blocks, observed_st"},{"event":"cmd_output","timestamp":1607098344,"output":"ate: \"initializing\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request,"},{"event":"cmd_output","timestamp":1607098344,"output":" :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_superviso"},{"event":"cmd_output","timestamp":1607098344,"output":"r: :skip}\n\u001b[0m\u001b[22m\n16:12:24.334 [info] Periodic from module Elixir.Block.Blocks.STMHandler.Runni"},{"event":"cmd_output","timestamp":1607098344,"output":"ngState with name Elixir.Block.Blocks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl."},{"event":"cmd_output","timestamp":1607098344,"output":"beholder-wake_up\", [\"Block-Blocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"ru"},{"event":"cmd_output","timestamp":1607098344,"output":"nning\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observe"},{"event":"cmd_output","timestamp":1607098344,"output":"d_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, "},{"event":"cmd_output","timestamp":1607098344,"output":":updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor"},{"event":"cmd_output","timestamp":1607098344,"output":": :skip}\n\u001b[0m\u001b[22m\n16:12:24.334 [info] Periodic from module Elixir.Block.Blocks.STMHandler.Stoppi"},{"event":"cmd_output","timestamp":1607098344,"output":"ngState with name Elixir.Block.Blocks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl"},{"event":"cmd_output","timestamp":1607098344,"output":".beholder-wake_up\", [\"Block-Blocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\""},{"event":"cmd_output","timestamp":1607098344,"output":"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: "},{"event":"cmd_output","timestamp":1607098344,"output":"\"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated"},{"event":"cmd_output","timestamp":1607098344,"output":"_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}"},{"event":"cmd_output","timestamp":1607098344,"output":"\n\u001b[0m\u001b[22m\n16:12:24.335 [info] Periodic from module Elixir.Block.Tasks.STMHandler.PendingState wi"},{"event":"cmd_output","timestamp":1607098344,"output":"th name Elixir.Block.Tasks.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wa"},{"event":"cmd_output","timestamp":1607098344,"output":"ke_up\", [\"Block-Tasks-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"running\", \"don"},{"event":"cmd_output","timestamp":1607098344,"output":"e\"], cooling_time_sec: 0, initial_query: Block.Tasks.Model.Tasks, observed_state: \"pending\", publish"},{"event":"cmd_output","timestamp":1607098344,"output":"er_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recov"},{"event":"cmd_output","timestamp":1607098344,"output":"ery_count, :block_id, :build_request_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n"},{"event":"cmd_output","timestamp":1607098344,"output":"\u001b[0m\u001b[22m\n16:12:24.336 [info] Periodic from module Elixir.Block.Tasks.STMHandler.RunningState with"},{"event":"cmd_output","timestamp":1607098344,"output":" name Elixir.Block.Tasks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake"},{"event":"cmd_output","timestamp":1607098344,"output":"_up\", [\"Block-Tasks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopp"},{"event":"cmd_output","timestamp":1607098344,"output":"ing\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"runnin"},{"event":"cmd_output","timestamp":1607098344,"output":"g\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :st"},{"event":"cmd_output","timestamp":1607098344,"output":"ate, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098344,"output":"m\n16:12:24.336 [info] Periodic from module Elixir.Block.Tasks.STMHandler.StoppingState with name E"},{"event":"cmd_output","timestamp":1607098344,"output":"lixir.Block.Tasks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", "},{"event":"cmd_output","timestamp":1607098344,"output":"[\"Block-Tasks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], c"},{"event":"cmd_output","timestamp":1607098344,"output":"ooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"stopping\", publisher_c"},{"event":"cmd_output","timestamp":1607098344,"output":"b: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_"},{"event":"cmd_output","timestamp":1607098344,"output":"count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:24.455"},{"event":"cmd_output","timestamp":1607098344,"output":" [info] ppl_id: 2b788786-0a8b-44ff-83da-f42c7114dff4, type: PplRequests, event: persisted source_ar"},{"event":"cmd_output","timestamp":1607098344,"output":"gs for pipeline: 2b788786-0a8b-44ff-83da-f42c7114dff4, origin: Elixir.Ppl.PplRequests.Model.PplReque"},{"event":"cmd_output","timestamp":1607098344,"output":"stsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:24.459 [info] ppl_id: 2b788786-0a8b-44ff-83da-f"},{"event":"cmd_output","timestamp":1607098344,"output":"42c7114dff4, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098344,"output":"Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:24.492 [info] ppl_id: 2b788786-0"},{"event":"cmd_output","timestamp":1607098344,"output":"a8b-44ff-83da-f42c7114dff4, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery"},{"event":"cmd_output","timestamp":1607098344,"output":"_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:24.527 [info] "},{"event":"cmd_output","timestamp":1607098344,"output":" ppl_id: 2b788786-0a8b-44ff-83da-f42c7114dff4, type: PplRequests, event: persisted definition for re"},{"event":"cmd_output","timestamp":1607098344,"output":"quest with request_token: 7ed1e588-364b-11eb-82b4-5254005464e2, origin: Elixir.Ppl.PplRequests.Model"},{"event":"cmd_output","timestamp":1607098344,"output":".PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:24.531 [info] Queue persisted: {:o"},{"event":"cmd_output","timestamp":1607098344,"output":"k, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020"},{"event":"cmd_output","timestamp":1607098344,"output":"-12-04 16:12:24.529757], name: \"master-.semaphore/semaphore.yml\", organization_id: \"134f2829-201c-42"},{"event":"cmd_output","timestamp":1607098344,"output":"c4-adfa-c041f057afe9\", project_id: \"77736474-659a-4e43-9ded-626dafa5ef65\", queue_id: \"c2feb075-1eca-"},{"event":"cmd_output","timestamp":1607098344,"output":"4125-b9fc-1a10d5631e32\", scope: \"project\", updated_at: ~N[2020-12-04 16:12:24.529769], user_generate"},{"event":"cmd_output","timestamp":1607098344,"output":"d: false}}\n\u001b[0m\u001b[22m\n16:12:24.546 [info] ppl_id: not_available, event: created, origin: Elixir.Pp"},{"event":"cmd_output","timestamp":1607098344,"output":"l.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:24.546 [info] event: "},{"event":"cmd_output","timestamp":1607098344,"output":"created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098344,"output":":12:24.546 [info] ppl_id: 2b788786-0a8b-44ff-83da-f42c7114dff4, type: PplBlocks, block_index: 0, st"},{"event":"cmd_output","timestamp":1607098344,"output":"ate: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.Regu"},{"event":"cmd_output","timestamp":1607098344,"output":"larInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:24.546 [info] ppl_id: 2b788786-0a8b-44ff-83da-f42c"},{"event":"cmd_output","timestamp":1607098344,"output":"7114dff4, type: PplBlocks, block_index: 1, state: initializing, event: created, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098344,"output":"rigin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:24.553"},{"event":"cmd_output","timestamp":1607098344,"output":" [info] ppl_id: 2b788786-0a8b-44ff-83da-f42c7114dff4, type: PplSubInits, state: done, result: passe"},{"event":"cmd_output","timestamp":1607098344,"output":"d, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90)"},{"event":"cmd_output","timestamp":1607098344,"output":", \n\u001b[0m\u001b[22m\n16:12:24.568 [info] ppl_id: 2b788786-0a8b-44ff-83da-f42c7114dff4, type: PplBlocks, b"},{"event":"cmd_output","timestamp":1607098344,"output":"lock_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM."},{"event":"cmd_output","timestamp":1607098344,"output":"Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:24.574 [info] ppl_id: 2b788786-0a8b-44ff-83da-f42c"},{"event":"cmd_output","timestamp":1607098344,"output":"7114dff4, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loop"},{"event":"cmd_output","timestamp":1607098344,"output":"er.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:24.577 [info] ppl_id: 2b788786-0a8b-44ff-83"},{"event":"cmd_output","timestamp":1607098344,"output":"da-f42c7114dff4, type: PplBlocks, block_index: 1, state: waiting, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098344,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:24.585 [info] p"},{"event":"cmd_output","timestamp":1607098344,"output":"pl_id: 2b788786-0a8b-44ff-83da-f42c7114dff4, type: Ppls, state: queuing, event: exit_scheduling, rec"},{"event":"cmd_output","timestamp":1607098344,"output":"overy_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:24.598 [i"},{"event":"cmd_output","timestamp":1607098344,"output":"nfo] ppl_id: 2b788786-0a8b-44ff-83da-f42c7114dff4, type: Ppls, state: running, event: exit_scheduli"},{"event":"cmd_output","timestamp":1607098344,"output":"ng, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:24"},{"event":"cmd_output","timestamp":1607098344,"output":".608 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"2b788786-0a8b-44ff-83d"},{"event":"cmd_output","timestamp":1607098344,"output":"a-f42c7114dff4\"\n\u001b[0m\u001b[22m\n16:12:24.616 [info] block_id: 016ecd66-149d-4c8b-8c38-777da7875235, typ"},{"event":"cmd_output","timestamp":1607098344,"output":"e: BlockRequests, event: persisted block run request from ppl 2b788786-0a8b-44ff-83da-f42c7114dff4 f"},{"event":"cmd_output","timestamp":1607098344,"output":"or block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \r"},{"event":"cmd_output","timestamp":1607098344,"output":"\n\u001b[0m\u001b[22m\n16:12:24.618 [info] block_id: 016ecd66-149d-4c8b-8c38-777da7875235, type: Blocks, state"},{"event":"cmd_output","timestamp":1607098344,"output":": initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQuer"},{"event":"cmd_output","timestamp":1607098344,"output":"ies.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:24.622 [info] Block 0 of pipeline with id: 2b788786-0a8b-44ff"},{"event":"cmd_output","timestamp":1607098344,"output":"-83da-f42c7114dff4 scheduled in block service with id: : \"016ecd66-149d-4c8b-8c38-777da7875235\"\n\u001b[0"},{"event":"cmd_output","timestamp":1607098344,"output":"m\u001b[22m\n16:12:24.625 [info] ppl_id: 2b788786-0a8b-44ff-83da-f42c7114dff4, type: PplBlocks, block_in"},{"event":"cmd_output","timestamp":1607098344,"output":"dex: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.lo"},{"event":"cmd_output","timestamp":1607098344,"output":"g_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:24.626 [info] block_id: 016ecd66-149d-4c8b-8c38-777da7875"},{"event":"cmd_output","timestamp":1607098344,"output":"235, type: BlockRequests, event: persisted build and sub_ppl details for block_request: 016ecd66-149"},{"event":"cmd_output","timestamp":1607098344,"output":"d-4c8b-8c38-777da7875235, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build"},{"event":"cmd_output","timestamp":1607098344,"output":"/2(L41), \n\u001b[0m\u001b[22m\n16:12:24.628 [info] block_id: 016ecd66-149d-4c8b-8c38-777da7875235, type: Tas"},{"event":"cmd_output","timestamp":1607098344,"output":"ks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.Initia"},{"event":"cmd_output","timestamp":1607098344,"output":"lizingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:24.631 [info] block_id: 016ecd66-149d-4c8b-8c38-777"},{"event":"cmd_output","timestamp":1607098344,"output":"da7875235, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098344,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:24.672 [info] block_id: 016ecd66-149d-4c"},{"event":"cmd_output","timestamp":1607098344,"output":"8b-8c38-777da7875235, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098344,"output":": Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:24.916 [info] block_id: 016ecd"},{"event":"cmd_output","timestamp":1607098344,"output":"66-149d-4c8b-8c38-777da7875235, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098344,"output":" origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:24.925 [info] block_id:"},{"event":"cmd_output","timestamp":1607098344,"output":" 016ecd66-149d-4c8b-8c38-777da7875235, type: Blocks, state: done, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098344,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:24.941 [info] p"},{"event":"cmd_output","timestamp":1607098344,"output":"pl_id: 2b788786-0a8b-44ff-83da-f42c7114dff4, block_id: 016ecd66-149d-4c8b-8c38-777da7875235, type: P"},{"event":"cmd_output","timestamp":1607098344,"output":"plBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098344,"output":"igin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:24.949 [info] PplBlocks Wa"},{"event":"cmd_output","timestamp":1607098344,"output":"itingState STM is scheduling block 1 from pipeline: \"2b788786-0a8b-44ff-83da-f42c7114dff4\"\n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098344,"output":"m\n16:12:24.955 [info] block_id: 005e92a2-742f-4d19-872e-7e83856643d0, type: BlockRequests, event: "},{"event":"cmd_output","timestamp":1607098344,"output":"persisted block run request from ppl 2b788786-0a8b-44ff-83da-f42c7114dff4 for block 1, origin: Elixi"},{"event":"cmd_output","timestamp":1607098344,"output":"r.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:24.957 "},{"event":"cmd_output","timestamp":1607098344,"output":"[info] block_id: 005e92a2-742f-4d19-872e-7e83856643d0, type: Blocks, state: initializing, event: in"},{"event":"cmd_output","timestamp":1607098344,"output":"itializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098344,"output":"\u001b[22m\n16:12:24.957 [info] Block 1 of pipeline with id: 2b788786-0a8b-44ff-83da-f42c7114dff4 schedu"},{"event":"cmd_output","timestamp":1607098344,"output":"led in block service with id: : \"005e92a2-742f-4d19-872e-7e83856643d0\"\n\u001b[0m\u001b[22m\n16:12:24.960 [inf"},{"event":"cmd_output","timestamp":1607098344,"output":"o] ppl_id: 2b788786-0a8b-44ff-83da-f42c7114dff4, type: PplBlocks, block_index: 1, state: running, e"},{"event":"cmd_output","timestamp":1607098344,"output":"vent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n"},{"event":"cmd_output","timestamp":1607098344,"output":"\u001b[0m\u001b[22m\n16:12:24.966 [info] block_id: 005e92a2-742f-4d19-872e-7e83856643d0, type: BlockRequests,"},{"event":"cmd_output","timestamp":1607098344,"output":" event: persisted build and sub_ppl details for block_request: 005e92a2-742f-4d19-872e-7e83856643d0,"},{"event":"cmd_output","timestamp":1607098344,"output":" origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098344,"output":"12:24.968 [info] block_id: 005e92a2-742f-4d19-872e-7e83856643d0, type: Tasks, state: pending, event"},{"event":"cmd_output","timestamp":1607098344,"output":": created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L16"},{"event":"cmd_output","timestamp":1607098344,"output":"7), \n\u001b[0m\u001b[22m\n16:12:24.971 [info] block_id: 005e92a2-742f-4d19-872e-7e83856643d0, type: Blocks, "},{"event":"cmd_output","timestamp":1607098344,"output":"state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_"},{"event":"cmd_output","timestamp":1607098344,"output":"change/1(L90), \n\u001b[0m\u001b[22m\n16:12:24.983 [info] block_id: 005e92a2-742f-4d19-872e-7e83856643d0, typ"},{"event":"cmd_output","timestamp":1607098344,"output":"e: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl."},{"event":"cmd_output","timestamp":1607098345,"output":"log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:25.024 [info] block_id: 005e92a2-742f-4d19-872e-7e83856"},{"event":"cmd_output","timestamp":1607098345,"output":"643d0, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.ST"},{"event":"cmd_output","timestamp":1607098345,"output":"M.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:25.038 [info] block_id: 005e92a2-742f-4d19-872e-"},{"event":"cmd_output","timestamp":1607098345,"output":"7e83856643d0, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098345,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:25.045 [info] ppl_id: 2b788786-0a8b-44ff"},{"event":"cmd_output","timestamp":1607098345,"output":"-83da-f42c7114dff4, block_id: 005e92a2-742f-4d19-872e-7e83856643d0, type: PplBlocks, block_index: 1,"},{"event":"cmd_output","timestamp":1607098345,"output":" state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.I"},{"event":"cmd_output","timestamp":1607098345,"output":"mpl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:25.057 [info] ppl_id: 2b788786-0a8b-44ff-83da-f42c7"},{"event":"cmd_output","timestamp":1607098345,"output":"114dff4, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098345,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test gRPC validate_yaml() - schedul"},{"event":"cmd_output","timestamp":1607098345,"output":"ed pipeline execution passed, origin data saved (1086.4ms)\u001b[0m\n * test gRPC list() - filter by que"},{"event":"cmd_output","timestamp":1607098345,"output":"ue_id\u001b[22m\n16:12:25.406 [info] ppl_id: 2a87ecf1-b627-4289-aa66-333b89adfced, type: PplRequests, ev"},{"event":"cmd_output","timestamp":1607098345,"output":"ent: persisted schedule request with request_token: cdfae374-517d-408d-80b5-9dfccc27dbc6, origin: El"},{"event":"cmd_output","timestamp":1607098345,"output":"ixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:25.408 [in"},{"event":"cmd_output","timestamp":1607098345,"output":"fo] ppl_id: 2a87ecf1-b627-4289-aa66-333b89adfced, type: PplRequests, event: persisted definition fo"},{"event":"cmd_output","timestamp":1607098345,"output":"r request with request_token: cdfae374-517d-408d-80b5-9dfccc27dbc6, origin: Elixir.Ppl.PplRequests.M"},{"event":"cmd_output","timestamp":1607098345,"output":"odel.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:25.412 [info] ppl_id: 2a87ecf1"},{"event":"cmd_output","timestamp":1607098345,"output":"-b627-4289-aa66-333b89adfced, type: Ppls, state: initializing, event: initializing, recovery_count: "},{"event":"cmd_output","timestamp":1607098345,"output":"0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:25.416 [in"},{"event":"cmd_output","timestamp":1607098345,"output":"fo] Persisted ppl_sub_init for pipeline with ppl_id: 2a87ecf1-b627-4289-aa66-333b89adfced: %Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098345,"output":"SubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_t"},{"event":"cmd_output","timestamp":1607098345,"output":"ask_id: nil, error_description: nil, id: 204, in_scheduling: false, init_type: \"regular\", inserted_a"},{"event":"cmd_output","timestamp":1607098345,"output":"t: ~N[2020-12-04 16:12:25.415460], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"2a87ecf1-b627-4289-aa66-333b89adfced\", recovery_count: 0, resu"},{"event":"cmd_output","timestamp":1607098345,"output":"lt: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, "},{"event":"cmd_output","timestamp":1607098345,"output":"updated_at: ~N[2020-12-04 16:12:25.415469]}\n\u001b[0m\u001b[22m\n16:12:25.421 [info] ppl_id: f8caedad-19b1-4"},{"event":"cmd_output","timestamp":1607098345,"output":"f1f-af9b-e8a5e27069e6, type: PplRequests, event: persisted schedule request with request_token: ea4a"},{"event":"cmd_output","timestamp":1607098345,"output":"d9c8-0421-4d72-8fce-f8408d6c8c3c, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_re"},{"event":"cmd_output","timestamp":1607098345,"output":"sponse/2(L55), \n\u001b[0m\u001b[22m\n16:12:25.427 [info] ppl_id: f8caedad-19b1-4f1f-af9b-e8a5e27069e6, type:"},{"event":"cmd_output","timestamp":1607098345,"output":" PplRequests, event: persisted definition for request with request_token: ea4ad9c8-0421-4d72-8fce-f8"},{"event":"cmd_output","timestamp":1607098345,"output":"408d6c8c3c, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098345,"output":"\u001b[22m\n16:12:25.430 [info] ppl_id: f8caedad-19b1-4f1f-af9b-e8a5e27069e6, type: Ppls, state: initial"},{"event":"cmd_output","timestamp":1607098345,"output":"izing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_res"},{"event":"cmd_output","timestamp":1607098345,"output":"ponse/2(L124), \n\u001b[0m\u001b[22m\n16:12:25.434 [info] Persisted ppl_sub_init for pipeline with ppl_id: f8"},{"event":"cmd_output","timestamp":1607098345,"output":"caedad-19b1-4f1f-af9b-e8a5e27069e6: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metada"},{"event":"cmd_output","timestamp":1607098345,"output":"ta<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 205, in_schedul"},{"event":"cmd_output","timestamp":1607098345,"output":"ing: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:25.433103], pipeline_requests: #E"},{"event":"cmd_output","timestamp":1607098345,"output":"cto.Association.NotLoaded, ppl_id: \"f8caedad-19b1-4f1f"},{"event":"cmd_output","timestamp":1607098345,"output":"-af9b-e8a5e27069e6\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate"},{"event":"cmd_output","timestamp":1607098345,"output":"_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:25.433112]}\n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098345,"output":"16:12:25.438 [info] ppl_id: 222a5b80-856f-4331-9e18-18aabc90420d, type: PplRequests, event: persist"},{"event":"cmd_output","timestamp":1607098345,"output":"ed schedule request with request_token: fbf895d1-73e0-46b6-9c5a-5150e6619704, origin: Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098345,"output":"Requests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:25.440 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098345,"output":" 222a5b80-856f-4331-9e18-18aabc90420d, type: PplRequests, event: persisted definition for request wi"},{"event":"cmd_output","timestamp":1607098345,"output":"th request_token: fbf895d1-73e0-46b6-9c5a-5150e6619704, origin: Elixir.Ppl.PplRequests.Model.PplRequ"},{"event":"cmd_output","timestamp":1607098345,"output":"estsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:25.442 [info] ppl_id: 222a5b80-856f-4331-9"},{"event":"cmd_output","timestamp":1607098345,"output":"e18-18aabc90420d, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: E"},{"event":"cmd_output","timestamp":1607098345,"output":"lixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:25.445 [info] Persist"},{"event":"cmd_output","timestamp":1607098345,"output":"ed ppl_sub_init for pipeline with ppl_id: 222a5b80-856f-4331-9e18-18aabc90420d: %Ppl.PplSubInits.Mod"},{"event":"cmd_output","timestamp":1607098345,"output":"el.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil,"},{"event":"cmd_output","timestamp":1607098345,"output":" error_description: nil, id: 206, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-1"},{"event":"cmd_output","timestamp":1607098345,"output":"2-04 16:12:25.444686], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"222a5b80-856f-4331-9e18-18aabc90420d\", recovery_count: 0, result: nil, res"},{"event":"cmd_output","timestamp":1607098345,"output":"ult_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: "},{"event":"cmd_output","timestamp":1607098345,"output":"~N[2020-12-04 16:12:25.444694]}\n\u001b[0m\u001b[22m\n16:12:25.450 [info] ppl_id: 9a062404-4fc1-4b55-bc91-650"},{"event":"cmd_output","timestamp":1607098345,"output":"8c639e269, type: PplRequests, event: persisted schedule request with request_token: 12c82aa4-8492-4b"},{"event":"cmd_output","timestamp":1607098345,"output":"21-acfd-f4e925a7fa87, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55"},{"event":"cmd_output","timestamp":1607098345,"output":"), \n\u001b[0m\u001b[22m\n16:12:25.451 [info] ppl_id: 9a062404-4fc1-4b55-bc91-6508c639e269, type: PplRequests"},{"event":"cmd_output","timestamp":1607098345,"output":", event: persisted definition for request with request_token: 12c82aa4-8492-4b21-acfd-f4e925a7fa87, "},{"event":"cmd_output","timestamp":1607098345,"output":"origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12"},{"event":"cmd_output","timestamp":1607098345,"output":":25.453 [info] ppl_id: 9a062404-4fc1-4b55-bc91-6508c639e269, type: Ppls, state: initializing, event"},{"event":"cmd_output","timestamp":1607098345,"output":": initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124"},{"event":"cmd_output","timestamp":1607098345,"output":"), \n\u001b[0m\u001b[22m\n16:12:25.456 [info] Persisted ppl_sub_init for pipeline with ppl_id: 9a062404-4fc1-"},{"event":"cmd_output","timestamp":1607098345,"output":"4b55-bc91-6508c639e269: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, "},{"event":"cmd_output","timestamp":1607098345,"output":"\"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 207, in_scheduling: false, "},{"event":"cmd_output","timestamp":1607098345,"output":"init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:25.455759], pipeline_requests: #Ecto.Associat"},{"event":"cmd_output","timestamp":1607098345,"output":"ion.NotLoaded, ppl_id: \"9a062404-4fc1-4b55-bc91-6508c6"},{"event":"cmd_output","timestamp":1607098345,"output":"39e269\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: ni"},{"event":"cmd_output","timestamp":1607098345,"output":"l, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:25.455767]}\n\u001b[0m\u001b[22m\n16:12:25.461"},{"event":"cmd_output","timestamp":1607098345,"output":" [info] ppl_id: f4011aa7-ee69-4984-b1d6-9387594654d3, type: PplRequests, event: persisted schedule "},{"event":"cmd_output","timestamp":1607098345,"output":"request with request_token: 3861f68a-d6b6-4c09-99de-97325cd6c7fa, origin: Elixir.Ppl.PplRequests.Mod"},{"event":"cmd_output","timestamp":1607098345,"output":"el.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:25.464 [info] ppl_id: f4011aa7-ee"},{"event":"cmd_output","timestamp":1607098345,"output":"69-4984-b1d6-9387594654d3, type: PplRequests, event: persisted definition for request with request_t"},{"event":"cmd_output","timestamp":1607098345,"output":"oken: 3861f68a-d6b6-4c09-99de-97325cd6c7fa, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries."},{"event":"cmd_output","timestamp":1607098345,"output":"insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:25.468 [info] ppl_id: f4011aa7-ee69-4984-b1d6-93875946"},{"event":"cmd_output","timestamp":1607098345,"output":"54d3, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Pp"},{"event":"cmd_output","timestamp":1607098345,"output":"ls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:25.473 [info] Persisted ppl_sub_i"},{"event":"cmd_output","timestamp":1607098345,"output":"nit for pipeline with ppl_id: f4011aa7-ee69-4984-b1d6-9387594654d3: %Ppl.PplSubInits.Model.PplSubIni"},{"event":"cmd_output","timestamp":1607098345,"output":"ts{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_descr"},{"event":"cmd_output","timestamp":1607098345,"output":"iption: nil, id: 208, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:2"},{"event":"cmd_output","timestamp":1607098345,"output":"5.471982], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"f4011aa7-ee69-4984-b1d6-9387594654d3\", recovery_count: 0, result: nil, result_reason: "},{"event":"cmd_output","timestamp":1607098345,"output":"nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-0"},{"event":"cmd_output","timestamp":1607098345,"output":"4 16:12:25.471993]}\n\u001b[0m\u001b[22m\n16:12:25.477 [info] ppl_id: c7b7aae5-dd73-4d9d-a717-448fc00aa17d, t"},{"event":"cmd_output","timestamp":1607098345,"output":"ype: PplRequests, event: persisted schedule request with request_token: b54d678f-a912-423d-b8ec-5b70"},{"event":"cmd_output","timestamp":1607098345,"output":"4b2c079f, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098345,"output":"2m\n16:12:25.479 [info] ppl_id: c7b7aae5-dd73-4d9d-a717-448fc00aa17d, type: PplRequests, event: per"},{"event":"cmd_output","timestamp":1607098345,"output":"sisted definition for request with request_token: b54d678f-a912-423d-b8ec-5b704b2c079f, origin: Elix"},{"event":"cmd_output","timestamp":1607098345,"output":"ir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:25.481 [inf"},{"event":"cmd_output","timestamp":1607098345,"output":"o] ppl_id: c7b7aae5-dd73-4d9d-a717-448fc00aa17d, type: Ppls, state: initializing, event: initializi"},{"event":"cmd_output","timestamp":1607098345,"output":"ng, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098345,"output":"2m\n16:12:25.484 [info] Persisted ppl_sub_init for pipeline with ppl_id: c7b7aae5-dd73-4d9d-a717-44"},{"event":"cmd_output","timestamp":1607098345,"output":"8fc00aa17d: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_su"},{"event":"cmd_output","timestamp":1607098345,"output":"b_inits\">, compile_task_id: nil, error_description: nil, id: 209, in_scheduling: false, init_type: \""},{"event":"cmd_output","timestamp":1607098345,"output":"regular\", inserted_at: ~N[2020-12-04 16:12:25.483664], pipeline_requests: #Ecto.Association.NotLoade"},{"event":"cmd_output","timestamp":1607098345,"output":"d, ppl_id: \"c7b7aae5-dd73-4d9d-a717-448fc00aa17d\", rec"},{"event":"cmd_output","timestamp":1607098345,"output":"overy_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate"},{"event":"cmd_output","timestamp":1607098345,"output":"_request_desc: nil, updated_at: ~N[2020-12-04 16:12:25.483672]}\n\u001b[0m\u001b[22m\n16:12:25.488 [info] ppl"},{"event":"cmd_output","timestamp":1607098345,"output":"_id: a0905eb0-9159-4e8e-8eb8-7081ae0756aa, type: PplRequests, event: persisted schedule request with"},{"event":"cmd_output","timestamp":1607098345,"output":" request_token: 101ae5e2-0c27-4dd6-8734-d4801eb15419, origin: Elixir.Ppl.PplRequests.Model.PplReques"},{"event":"cmd_output","timestamp":1607098345,"output":"tsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:25.491 [info] ppl_id: a0905eb0-9159-4e8e-8eb8"},{"event":"cmd_output","timestamp":1607098345,"output":"-7081ae0756aa, type: PplRequests, event: persisted definition for request with request_token: 101ae5"},{"event":"cmd_output","timestamp":1607098345,"output":"e2-0c27-4dd6-8734-d4801eb15419, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_defin"},{"event":"cmd_output","timestamp":1607098345,"output":"ition/3(L76), \n\u001b[0m\u001b[22m\n16:12:25.494 [info] ppl_id: a0905eb0-9159-4e8e-8eb8-7081ae0756aa, type: "},{"event":"cmd_output","timestamp":1607098345,"output":"Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.Ppl"},{"event":"cmd_output","timestamp":1607098345,"output":"sQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:25.504 [info] Persisted ppl_sub_init for pipe"},{"event":"cmd_output","timestamp":1607098345,"output":"line with ppl_id: a0905eb0-9159-4e8e-8eb8-7081ae0756aa: %Ppl.PplSubInits.Model.PplSubInits{__meta__:"},{"event":"cmd_output","timestamp":1607098345,"output":" #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil,"},{"event":"cmd_output","timestamp":1607098345,"output":" id: 210, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:25.502800], p"},{"event":"cmd_output","timestamp":1607098345,"output":"ipeline_requests: #Ecto.Association.NotLoaded, ppl_id:"},{"event":"cmd_output","timestamp":1607098345,"output":" \"a0905eb0-9159-4e8e-8eb8-7081ae0756aa\", recovery_count: 0, result: nil, result_reason: nil, state: "},{"event":"cmd_output","timestamp":1607098345,"output":"\"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:25.5"},{"event":"cmd_output","timestamp":1607098345,"output":"02809]}\n\u001b[0m\u001b[22m\n16:12:25.507 [info] ppl_id: 940ce33b-207d-493e-ae11-ce4033b80ba0, type: PplRequ"},{"event":"cmd_output","timestamp":1607098345,"output":"ests, event: persisted schedule request with request_token: b7635df1-5628-48a5-8df1-fb9e8d20f6e4, or"},{"event":"cmd_output","timestamp":1607098345,"output":"igin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:25"},{"event":"cmd_output","timestamp":1607098345,"output":".508 [info] ppl_id: 940ce33b-207d-493e-ae11-ce4033b80ba0, type: PplRequests, event: persisted defin"},{"event":"cmd_output","timestamp":1607098345,"output":"ition for request with request_token: b7635df1-5628-48a5-8df1-fb9e8d20f6e4, origin: Elixir.Ppl.PplRe"},{"event":"cmd_output","timestamp":1607098345,"output":"quests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:25.510 [info] ppl_id: "},{"event":"cmd_output","timestamp":1607098345,"output":"940ce33b-207d-493e-ae11-ce4033b80ba0, type: Ppls, state: initializing, event: initializing, recovery"},{"event":"cmd_output","timestamp":1607098345,"output":"_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:25"},{"event":"cmd_output","timestamp":1607098345,"output":".516 [info] Persisted ppl_sub_init for pipeline with ppl_id: 940ce33b-207d-493e-ae11-ce4033b80ba0: "},{"event":"cmd_output","timestamp":1607098345,"output":"%Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, c"},{"event":"cmd_output","timestamp":1607098345,"output":"ompile_task_id: nil, error_description: nil, id: 211, in_scheduling: false, init_type: \"regular\", in"},{"event":"cmd_output","timestamp":1607098345,"output":"serted_at: ~N[2020-12-04 16:12:25.514824], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"940ce33b-207d-493e-ae11-ce4033b80ba0\", recovery_count:"},{"event":"cmd_output","timestamp":1607098345,"output":" 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_des"},{"event":"cmd_output","timestamp":1607098345,"output":"c: nil, updated_at: ~N[2020-12-04 16:12:25.514859]}\n\u001b[0m\u001b[22m\n16:12:25.521 [info] ppl_id: 8e6d872"},{"event":"cmd_output","timestamp":1607098345,"output":"e-c76d-4cee-949e-7fe3f4fd6c6d, type: PplRequests, event: persisted schedule request with request_tok"},{"event":"cmd_output","timestamp":1607098345,"output":"en: 425cb6cd-4c18-440a-9104-88ad4a059b34, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.pr"},{"event":"cmd_output","timestamp":1607098345,"output":"ocess_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:25.523 [info] ppl_id: 8e6d872e-c76d-4cee-949e-7fe3f4fd6c6"},{"event":"cmd_output","timestamp":1607098345,"output":"d, type: PplRequests, event: persisted definition for request with request_token: 425cb6cd-4c18-440a"},{"event":"cmd_output","timestamp":1607098345,"output":"-9104-88ad4a059b34, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76)"},{"event":"cmd_output","timestamp":1607098345,"output":", \n\u001b[0m\u001b[22m\n16:12:25.526 [info] ppl_id: 8e6d872e-c76d-4cee-949e-7fe3f4fd6c6d, type: Ppls, state:"},{"event":"cmd_output","timestamp":1607098345,"output":" initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.pro"},{"event":"cmd_output","timestamp":1607098345,"output":"cess_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:25.533 [info] Persisted ppl_sub_init for pipeline with pp"},{"event":"cmd_output","timestamp":1607098345,"output":"l_id: 8e6d872e-c76d-4cee-949e-7fe3f4fd6c6d: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schem"},{"event":"cmd_output","timestamp":1607098345,"output":"a.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 212, in"},{"event":"cmd_output","timestamp":1607098345,"output":"_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:25.531685], pipeline_requ"},{"event":"cmd_output","timestamp":1607098345,"output":"ests: #Ecto.Association.NotLoaded, ppl_id: \"8e6d872e-c"},{"event":"cmd_output","timestamp":1607098345,"output":"76d-4cee-949e-7fe3f4fd6c6d\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", t"},{"event":"cmd_output","timestamp":1607098345,"output":"erminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:25.531698]}\n\u001b[0"},{"event":"cmd_output","timestamp":1607098345,"output":"m\u001b[22m\n16:12:25.537 [info] ppl_id: b776f37b-f60f-4093-8526-2ff1c8f5127e, type: PplRequests, event:"},{"event":"cmd_output","timestamp":1607098345,"output":" persisted schedule request with request_token: 2396ad81-2657-45f2-b411-0e0ca338881d, origin: Elixir"},{"event":"cmd_output","timestamp":1607098345,"output":".Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:25.538 [info] "},{"event":"cmd_output","timestamp":1607098345,"output":" ppl_id: b776f37b-f60f-4093-8526-2ff1c8f5127e, type: PplRequests, event: persisted definition for re"},{"event":"cmd_output","timestamp":1607098345,"output":"quest with request_token: 2396ad81-2657-45f2-b411-0e0ca338881d, origin: Elixir.Ppl.PplRequests.Model"},{"event":"cmd_output","timestamp":1607098345,"output":".PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:25.540 [info] ppl_id: b776f37b-f60"},{"event":"cmd_output","timestamp":1607098345,"output":"f-4093-8526-2ff1c8f5127e, type: Ppls, state: initializing, event: initializing, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098345,"output":"rigin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:25.543 [info] "},{"event":"cmd_output","timestamp":1607098345,"output":" Persisted ppl_sub_init for pipeline with ppl_id: b776f37b-f60f-4093-8526-2ff1c8f5127e: %Ppl.PplSubI"},{"event":"cmd_output","timestamp":1607098345,"output":"nits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_"},{"event":"cmd_output","timestamp":1607098345,"output":"id: nil, error_description: nil, id: 213, in_scheduling: false, init_type: \"regular\", inserted_at: ~"},{"event":"cmd_output","timestamp":1607098345,"output":"N[2020-12-04 16:12:25.542421], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"b776f37b-f60f-4093-8526-2ff1c8f5127e\", recovery_count: 0, result: "},{"event":"cmd_output","timestamp":1607098345,"output":"nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, upda"},{"event":"cmd_output","timestamp":1607098345,"output":"ted_at: ~N[2020-12-04 16:12:25.542448]}\n\u001b[0m\u001b[22m\n16:12:25.546 [info] Periodic from module Elixir"},{"event":"cmd_output","timestamp":1607098345,"output":".Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: per"},{"event":"cmd_output","timestamp":1607098345,"output":"iod: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recur"},{"event":"cmd_output","timestamp":1607098345,"output":"ring args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query"},{"event":"cmd_output","timestamp":1607098345,"output":": Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl."},{"event":"cmd_output","timestamp":1607098345,"output":"Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, "},{"event":"cmd_output","timestamp":1607098345,"output":":updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_superviso"},{"event":"cmd_output","timestamp":1607098345,"output":"r: :skip}\n\u001b[0m\u001b[22m\n16:12:25.547 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingSt"},{"event":"cmd_output","timestamp":1607098345,"output":"ate with name Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder"},{"event":"cmd_output","timestamp":1607098345,"output":"-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"pending\", \"que"},{"event":"cmd_output","timestamp":1607098345,"output":"uing\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: "},{"event":"cmd_output","timestamp":1607098345,"output":"\"pending\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Pp"},{"event":"cmd_output","timestamp":1607098345,"output":"l.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl"},{"event":"cmd_output","timestamp":1607098345,"output":"_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:12:25.547 [in"},{"event":"cmd_output","timestamp":1607098345,"output":"fo] Periodic from module Elixir.Ppl.Ppls.STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandl"},{"event":"cmd_output","timestamp":1607098345,"output":"er.QueuingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Queui"},{"event":"cmd_output","timestamp":1607098345,"output":"ngState\"]}, recurring args: %{allowed_states: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, "},{"event":"cmd_output","timestamp":1607098345,"output":"initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", publisher_cb: #Function<0.125102843/1"},{"event":"cmd_output","timestamp":1607098345,"output":" in Ppl.Ppls.STMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_reques"},{"event":"cmd_output","timestamp":1607098345,"output":"t, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_superv"},{"event":"cmd_output","timestamp":1607098345,"output":"isor: :skip}\n\u001b[0m\u001b[22m\n16:12:25.547 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.Runnin"},{"event":"cmd_output","timestamp":1607098345,"output":"gState with name Elixir.Ppl.Ppls.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.behol"},{"event":"cmd_output","timestamp":1607098345,"output":"der-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \""},{"event":"cmd_output","timestamp":1607098345,"output":"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"runni"},{"event":"cmd_output","timestamp":1607098345,"output":"ng\", publisher_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler.RunningState.args/0>, repo: Ppl.Ect"},{"event":"cmd_output","timestamp":1607098345,"output":"oRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id],"},{"event":"cmd_output","timestamp":1607098345,"output":" schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:12:25.547 [info] "},{"event":"cmd_output","timestamp":1607098345,"output":"Periodic from module Elixir.Ppl.Ppls.STMHandler.StoppingState with name Elixir.Ppl.Ppls.STMHandler.S"},{"event":"cmd_output","timestamp":1607098345,"output":"toppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Stopping"},{"event":"cmd_output","timestamp":1607098345,"output":"State\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_quer"},{"event":"cmd_output","timestamp":1607098345,"output":"y: Ppl.Ppls.Model.Ppls, observed_state: \"stopping\", publisher_cb: #Function<0.71803493/1 in Ppl.Ppls"},{"event":"cmd_output","timestamp":1607098345,"output":".STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated"},{"event":"cmd_output","timestamp":1607098345,"output":"_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip"},{"event":"cmd_output","timestamp":1607098345,"output":"}\n\u001b[0m\u001b[22m\n16:12:25.548 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedSta"},{"event":"cmd_output","timestamp":1607098345,"output":"te with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.be"},{"event":"cmd_output","timestamp":1607098345,"output":"holder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args: %{allowed_states: [\"f"},{"event":"cmd_output","timestamp":1607098345,"output":"etching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_s"},{"event":"cmd_output","timestamp":1607098345,"output":"tate: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :upda"},{"event":"cmd_output","timestamp":1607098345,"output":"ted_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_"},{"event":"cmd_output","timestamp":1607098345,"output":"supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:25.548 [info] Periodic from module Elixir.Ppl.PplSubInits.STMH"},{"event":"cmd_output","timestamp":1607098345,"output":"andler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 ms, me"},{"event":"cmd_output","timestamp":1607098345,"output":"tric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %"},{"event":"cmd_output","timestamp":1607098345,"output":"{allowed_states: [\"regular_init\", \"compilation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.P"},{"event":"cmd_output","timestamp":1607098345,"output":"plSubInits.Model.PplSubInits, observed_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, r"},{"event":"cmd_output","timestamp":1607098345,"output":"eturning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema:"},{"event":"cmd_output","timestamp":1607098345,"output":" Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:25.548 [info] Periodi"},{"event":"cmd_output","timestamp":1607098345,"output":"c from module Elixir.Ppl.PplSubInits.STMHandler.CompilationState with name Elixir.Ppl.PplSubInits.ST"},{"event":"cmd_output","timestamp":1607098345,"output":"MHandler.CompilationState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits"},{"event":"cmd_output","timestamp":1607098345,"output":"-STMHandler-CompilationState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \""},{"event":"cmd_output","timestamp":1607098345,"output":"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed"},{"event":"cmd_output","timestamp":1607098345,"output":"_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request,"},{"event":"cmd_output","timestamp":1607098345,"output":" :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits,"},{"event":"cmd_output","timestamp":1607098345,"output":" task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:25.548 [info] Periodic from module Elixir.Ppl.PplSubInit"},{"event":"cmd_output","timestamp":1607098345,"output":"s.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period"},{"event":"cmd_output","timestamp":1607098345,"output":": 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, re"},{"event":"cmd_output","timestamp":1607098345,"output":"curring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model."},{"event":"cmd_output","timestamp":1607098345,"output":"PplSubInits, observed_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:i"},{"event":"cmd_output","timestamp":1607098345,"output":"d, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubIn"},{"event":"cmd_output","timestamp":1607098345,"output":"its.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:25.548 [info] Periodic from module"},{"event":"cmd_output","timestamp":1607098345,"output":" Elixir.Ppl.PplBlocks.STMHandler.InitializingState with name Elixir.Ppl.PplBlocks.STMHandler.Initial"},{"event":"cmd_output","timestamp":1607098345,"output":"izingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-Initi"},{"event":"cmd_output","timestamp":1607098345,"output":"alizingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"waiting\", \"done\"], cooling_time"},{"event":"cmd_output","timestamp":1607098345,"output":"_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"initializing\", publisher_cb:"},{"event":"cmd_output","timestamp":1607098345,"output":" :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :reco"},{"event":"cmd_output","timestamp":1607098345,"output":"very_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n"},{"event":"cmd_output","timestamp":1607098345,"output":"\u001b[0m\u001b[22m\n16:12:25.549 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.WaitingState wi"},{"event":"cmd_output","timestamp":1607098345,"output":"th name Elixir.Ppl.PplBlocks.STMHandler.WaitingState :: period: 1000 ms, metric_name: {\"Ppl.beholder"},{"event":"cmd_output","timestamp":1607098345,"output":"-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurring args: %{allowed_states: [\"waiting\","},{"event":"cmd_output","timestamp":1607098345,"output":" \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_sta"},{"event":"cmd_output","timestamp":1607098345,"output":"te: \"waiting\", publisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>,"},{"event":"cmd_output","timestamp":1607098345,"output":" repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_co"},{"event":"cmd_output","timestamp":1607098345,"output":"unt, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098345,"output":"2m\n16:12:25.549 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.RunningState with name"},{"event":"cmd_output","timestamp":1607098345,"output":" Elixir.Ppl.PplBlocks.STMHandler.RunningState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_u"},{"event":"cmd_output","timestamp":1607098345,"output":"p\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopp"},{"event":"cmd_output","timestamp":1607098345,"output":"ing\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \""},{"event":"cmd_output","timestamp":1607098345,"output":"running\", publisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0>, rep"},{"event":"cmd_output","timestamp":1607098345,"output":"o: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count,"},{"event":"cmd_output","timestamp":1607098345,"output":" :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n"},{"event":"cmd_output","timestamp":1607098345,"output":"\u001b[0m\u001b[22m\n16:12:25.550 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.StoppingState w"},{"event":"cmd_output","timestamp":1607098345,"output":"ith name Elixir.Ppl.PplBlocks.STMHandler.StoppingState :: period: 1000 ms, metric_name: {\"Ppl.behold"},{"event":"cmd_output","timestamp":1607098345,"output":"er-wake_up\", [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stoppi"},{"event":"cmd_output","timestamp":1607098345,"output":"ng\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"s"},{"event":"cmd_output","timestamp":1607098345,"output":"topping\", publisher_cb: #Function<0.104215991/1 in Ppl.PplBlocks.STMHandler.StoppingState.args/0>, r"},{"event":"cmd_output","timestamp":1607098345,"output":"epo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_coun"},{"event":"cmd_output","timestamp":1607098345,"output":"t, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}"},{"event":"cmd_output","timestamp":1607098345,"output":"\n\u001b[0m\u001b[22m\n16:12:25.551 [info] Periodic from module Elixir.Block.Blocks.STMHandler.InitializingSt"},{"event":"cmd_output","timestamp":1607098345,"output":"ate with name Elixir.Block.Blocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl"},{"event":"cmd_output","timestamp":1607098345,"output":".beholder-wake_up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states"},{"event":"cmd_output","timestamp":1607098345,"output":": [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Blocks.Model.Blocks, observed_state"},{"event":"cmd_output","timestamp":1607098345,"output":": \"initializing\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :u"},{"event":"cmd_output","timestamp":1607098345,"output":"pdated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: "},{"event":"cmd_output","timestamp":1607098345,"output":":skip}\n\u001b[0m\u001b[22m\n16:12:25.551 [info] Periodic from module Elixir.Block.Blocks.STMHandler.RunningS"},{"event":"cmd_output","timestamp":1607098345,"output":"tate with name Elixir.Block.Blocks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beh"},{"event":"cmd_output","timestamp":1607098345,"output":"older-wake_up\", [\"Block-Blocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"runni"},{"event":"cmd_output","timestamp":1607098345,"output":"ng\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_s"},{"event":"cmd_output","timestamp":1607098345,"output":"tate: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :up"},{"event":"cmd_output","timestamp":1607098345,"output":"dated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :"},{"event":"cmd_output","timestamp":1607098345,"output":"skip}\n\u001b[0m\u001b[22m\n16:12:25.551 [info] Periodic from module Elixir.Block.Blocks.STMHandler.StoppingS"},{"event":"cmd_output","timestamp":1607098345,"output":"tate with name Elixir.Block.Blocks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.be"},{"event":"cmd_output","timestamp":1607098345,"output":"holder-wake_up\", [\"Block-Blocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"sto"},{"event":"cmd_output","timestamp":1607098345,"output":"pping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"st"},{"event":"cmd_output","timestamp":1607098345,"output":"opping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at"},{"event":"cmd_output","timestamp":1607098345,"output":", :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b"},{"event":"cmd_output","timestamp":1607098345,"output":"[0m\u001b[22m\n16:12:25.555 [info] Periodic from module Elixir.Block.Tasks.STMHandler.PendingState with "},{"event":"cmd_output","timestamp":1607098345,"output":"name Elixir.Block.Tasks.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_"},{"event":"cmd_output","timestamp":1607098345,"output":"up\", [\"Block-Tasks-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"]"},{"event":"cmd_output","timestamp":1607098345,"output":", cooling_time_sec: 0, initial_query: Block.Tasks.Model.Tasks, observed_state: \"pending\", publisher_"},{"event":"cmd_output","timestamp":1607098345,"output":"cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery"},{"event":"cmd_output","timestamp":1607098345,"output":"_count, :block_id, :build_request_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0"},{"event":"cmd_output","timestamp":1607098345,"output":"m\u001b[22m\n16:12:25.555 [info] Periodic from module Elixir.Block.Tasks.STMHandler.RunningState with na"},{"event":"cmd_output","timestamp":1607098345,"output":"me Elixir.Block.Tasks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up"},{"event":"cmd_output","timestamp":1607098345,"output":"\", [\"Block-Tasks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping"},{"event":"cmd_output","timestamp":1607098345,"output":"\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"running\","},{"event":"cmd_output","timestamp":1607098345,"output":" publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state"},{"event":"cmd_output","timestamp":1607098345,"output":", :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098345,"output":"16:12:25.556 [info] Periodic from module Elixir.Block.Tasks.STMHandler.StoppingState with name Elix"},{"event":"cmd_output","timestamp":1607098345,"output":"ir.Block.Tasks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"B"},{"event":"cmd_output","timestamp":1607098345,"output":"lock-Tasks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cool"},{"event":"cmd_output","timestamp":1607098345,"output":"ing_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"stopping\", publisher_cb: "},{"event":"cmd_output","timestamp":1607098345,"output":":skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_cou"},{"event":"cmd_output","timestamp":1607098345,"output":"nt, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:25.666 [i"},{"event":"cmd_output","timestamp":1607098345,"output":"nfo] ppl_id: 2a87ecf1-b627-4289-aa66-333b89adfced, type: PplRequests, event: persisted source_args "},{"event":"cmd_output","timestamp":1607098345,"output":"for pipeline: 2a87ecf1-b627-4289-aa66-333b89adfced, origin: Elixir.Ppl.PplRequests.Model.PplRequests"},{"event":"cmd_output","timestamp":1607098345,"output":"Queries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:25.669 [info] ppl_id: 2a87ecf1-b627-4289-aa66-333b"},{"event":"cmd_output","timestamp":1607098345,"output":"89adfced, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098345,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:25.684 [info] ppl_id: 2a87ecf1-b627"},{"event":"cmd_output","timestamp":1607098345,"output":"-4289-aa66-333b89adfced, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_co"},{"event":"cmd_output","timestamp":1607098345,"output":"unt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:25.712 [info] pp"},{"event":"cmd_output","timestamp":1607098345,"output":"l_id: 2a87ecf1-b627-4289-aa66-333b89adfced, type: PplRequests, event: persisted definition for reque"},{"event":"cmd_output","timestamp":1607098345,"output":"st with request_token: cdfae374-517d-408d-80b5-9dfccc27dbc6, origin: Elixir.Ppl.PplRequests.Model.Pp"},{"event":"cmd_output","timestamp":1607098345,"output":"lRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:25.717 [info] Queue persisted: {:ok, "},{"event":"cmd_output","timestamp":1607098345,"output":"%Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12"},{"event":"cmd_output","timestamp":1607098345,"output":"-04 16:12:25.715162], name: \"master-.semaphore/semaphore.yml\", organization_id: \"538f2d0f-9200-4363-"},{"event":"cmd_output","timestamp":1607098345,"output":"beac-2a6e567f1fd9\", project_id: \"123\", queue_id: \"a338e872-2483-4dd0-a39c-d9de7773659d\", scope: \"pro"},{"event":"cmd_output","timestamp":1607098345,"output":"ject\", updated_at: ~N[2020-12-04 16:12:25.715171], user_generated: false}}\n\u001b[0m\u001b[22m\n16:12:25.724 "},{"event":"cmd_output","timestamp":1607098345,"output":"[info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), "},{"event":"cmd_output","timestamp":1607098345,"output":"\n\u001b[0m\u001b[22m\n16:12:25.724 [info] ppl_id: 2a87ecf1-b627-4289-aa66-333b89adfced, type: PplBlocks, blo"},{"event":"cmd_output","timestamp":1607098345,"output":"ck_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits."},{"event":"cmd_output","timestamp":1607098345,"output":"STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:25.726 [info] ppl_id: 2a87ecf1-b627"},{"event":"cmd_output","timestamp":1607098345,"output":"-4289-aa66-333b89adfced, type: PplSubInits, state: done, result: passed, event: exit_scheduling, rec"},{"event":"cmd_output","timestamp":1607098345,"output":"overy_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:25.734 [i"},{"event":"cmd_output","timestamp":1607098345,"output":"nfo] ppl_id: 2a87ecf1-b627-4289-aa66-333b89adfced, type: PplBlocks, block_index: 0, state: waiting,"},{"event":"cmd_output","timestamp":1607098345,"output":" event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), "},{"event":"cmd_output","timestamp":1607098345,"output":"\n\u001b[0m\u001b[22m\n16:12:25.735 [info] ppl_id: 2a87ecf1-b627-4289-aa66-333b89adfced, type: Ppls, state: p"},{"event":"cmd_output","timestamp":1607098345,"output":"ending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1"},{"event":"cmd_output","timestamp":1607098345,"output":"(L90), \n\u001b[0m\u001b[22m\n16:12:25.751 [info] ppl_id: 2a87ecf1-b627-4289-aa66-333b89adfced, type: Ppls, s"},{"event":"cmd_output","timestamp":1607098345,"output":"tate: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098345,"output":"hange/1(L90), \n\u001b[0m\u001b[22m\n16:12:25.761 [info] ppl_id: 2a87ecf1-b627-4289-aa66-333b89adfced, type: "},{"event":"cmd_output","timestamp":1607098345,"output":"Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_"},{"event":"cmd_output","timestamp":1607098345,"output":"state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:25.773 [info] PplBlocks WaitingState STM is scheduling bloc"},{"event":"cmd_output","timestamp":1607098345,"output":"k 0 from pipeline: \"2a87ecf1-b627-4289-aa66-333b89adfced\"\n\u001b[0m\u001b[22m\n16:12:25.779 [info] ppl_id: f"},{"event":"cmd_output","timestamp":1607098345,"output":"8caedad-19b1-4f1f-af9b-e8a5e27069e6, type: PplRequests, event: persisted source_args for pipeline: f"},{"event":"cmd_output","timestamp":1607098345,"output":"8caedad-19b1-4f1f-af9b-e8a5e27069e6, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_"},{"event":"cmd_output","timestamp":1607098345,"output":"source/2(L89), \n\u001b[0m\u001b[22m\n16:12:25.780 [info] block_id: 2e45d0a7-63ce-4fdb-a5c8-1107ac832032, typ"},{"event":"cmd_output","timestamp":1607098345,"output":"e: BlockRequests, event: persisted block run request from ppl 2a87ecf1-b627-4289-aa66-333b89adfced f"},{"event":"cmd_output","timestamp":1607098345,"output":"or block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \r"},{"event":"cmd_output","timestamp":1607098345,"output":"\n\u001b[0m\u001b[22m\n16:12:25.783 [info] ppl_id: f8caedad-19b1-4f1f-af9b-e8a5e27069e6, type: PplSubInits, st"},{"event":"cmd_output","timestamp":1607098345,"output":"ate: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098345,"output":"hange/1(L90), \n\u001b[0m\u001b[22m\n16:12:25.786 [info] block_id: 2e45d0a7-63ce-4fdb-a5c8-1107ac832032, type"},{"event":"cmd_output","timestamp":1607098345,"output":": Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.M"},{"event":"cmd_output","timestamp":1607098345,"output":"odel.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:25.789 [info] Block 0 of pipeline with id: 2a8"},{"event":"cmd_output","timestamp":1607098345,"output":"7ecf1-b627-4289-aa66-333b89adfced scheduled in block service with id: : \"2e45d0a7-63ce-4fdb-a5c8-110"},{"event":"cmd_output","timestamp":1607098345,"output":"7ac832032\"\n\u001b[0m\u001b[22m\n16:12:25.791 [info] ppl_id: 2a87ecf1-b627-4289-aa66-333b89adfced, type: PplB"},{"event":"cmd_output","timestamp":1607098345,"output":"locks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loo"},{"event":"cmd_output","timestamp":1607098345,"output":"per.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:25.792 [info] block_id: 2e45d0a7-63ce-4fdb"},{"event":"cmd_output","timestamp":1607098345,"output":"-a5c8-1107ac832032, type: BlockRequests, event: persisted build and sub_ppl details for block_reques"},{"event":"cmd_output","timestamp":1607098345,"output":"t: 2e45d0a7-63ce-4fdb-a5c8-1107ac832032, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueri"},{"event":"cmd_output","timestamp":1607098345,"output":"es.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:25.796 [info] block_id: 2e45d0a7-63ce-4fdb-a5c8-1107ac83"},{"event":"cmd_output","timestamp":1607098345,"output":"2032, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.ST"},{"event":"cmd_output","timestamp":1607098345,"output":"MHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:25.798 [info] block_id: 2e45d0a7-63c"},{"event":"cmd_output","timestamp":1607098345,"output":"e-4fdb-a5c8-1107ac832032, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098345,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:25.816 [info] block_id: 2"},{"event":"cmd_output","timestamp":1607098345,"output":"e45d0a7-63ce-4fdb-a5c8-1107ac832032, type: Tasks, state: running, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098345,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:25.829 [info] p"},{"event":"cmd_output","timestamp":1607098345,"output":"pl_id: f8caedad-19b1-4f1f-af9b-e8a5e27069e6, type: PplSubInits, state: regular_init, event: exit_sch"},{"event":"cmd_output","timestamp":1607098345,"output":"eduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098345,"output":"12:25.852 [info] ppl_id: f8caedad-19b1-4f1f-af9b-e8a5e27069e6, type: PplRequests, event: persisted "},{"event":"cmd_output","timestamp":1607098345,"output":"definition for request with request_token: ea4ad9c8-0421-4d72-8fce-f8408d6c8c3c, origin: Elixir.Ppl."},{"event":"cmd_output","timestamp":1607098345,"output":"PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:25.863 [info] eve"},{"event":"cmd_output","timestamp":1607098345,"output":"nt: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098345,"output":"\n16:12:25.863 [info] ppl_id: f8caedad-19b1-4f1f-af9b-e8a5e27069e6, type: PplBlocks, block_index: 0"},{"event":"cmd_output","timestamp":1607098345,"output":", state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler."},{"event":"cmd_output","timestamp":1607098345,"output":"RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:25.867 [info] ppl_id: f8caedad-19b1-4f1f-af9b-"},{"event":"cmd_output","timestamp":1607098345,"output":"e8a5e27069e6, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count"},{"event":"cmd_output","timestamp":1607098345,"output":": 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:25.883 [info] ppl_i"},{"event":"cmd_output","timestamp":1607098345,"output":"d: f8caedad-19b1-4f1f-af9b-e8a5e27069e6, type: Ppls, state: pending, event: exit_scheduling, recover"},{"event":"cmd_output","timestamp":1607098345,"output":"y_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:25.889 [info]"},{"event":"cmd_output","timestamp":1607098345,"output":" ppl_id: f8caedad-19b1-4f1f-af9b-e8a5e27069e6, type: PplBlocks, block_index: 0, state: waiting, eve"},{"event":"cmd_output","timestamp":1607098345,"output":"nt: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b["},{"event":"cmd_output","timestamp":1607098345,"output":"0m\u001b[22m\n16:12:25.897 [info] block_id: 2e45d0a7-63ce-4fdb-a5c8-1107ac832032, type: Tasks, state: do"},{"event":"cmd_output","timestamp":1607098345,"output":"ne, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90"},{"event":"cmd_output","timestamp":1607098345,"output":"), \n\u001b[0m\u001b[22m\n16:12:25.903 [info] ppl_id: f8caedad-19b1-4f1f-af9b-e8a5e27069e6, type: Ppls, state"},{"event":"cmd_output","timestamp":1607098345,"output":": queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chang"},{"event":"cmd_output","timestamp":1607098345,"output":"e/1(L90), \n\u001b[0m\u001b[22m\n16:12:25.909 [info] block_id: 2e45d0a7-63ce-4fdb-a5c8-1107ac832032, type: Bl"},{"event":"cmd_output","timestamp":1607098345,"output":"ocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_sta"},{"event":"cmd_output","timestamp":1607098345,"output":"te_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:25.910 [info] ppl_id: 222a5b80-856f-4331-9e18-18aabc90420d, ty"},{"event":"cmd_output","timestamp":1607098345,"output":"pe: PplRequests, event: persisted source_args for pipeline: 222a5b80-856f-4331-9e18-18aabc90420d, or"},{"event":"cmd_output","timestamp":1607098345,"output":"igin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:25.91"},{"event":"cmd_output","timestamp":1607098345,"output":"3 [info] ppl_id: 222a5b80-856f-4331-9e18-18aabc90420d, type: PplSubInits, state: fetching, event: e"},{"event":"cmd_output","timestamp":1607098345,"output":"xit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098345,"output":"2m\n16:12:25.918 [info] ppl_id: 2a87ecf1-b627-4289-aa66-333b89adfced, block_id: 2e45d0a7-63ce-4fdb-"},{"event":"cmd_output","timestamp":1607098345,"output":"a5c8-1107ac832032, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_schedul"},{"event":"cmd_output","timestamp":1607098345,"output":"ing, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:2"},{"event":"cmd_output","timestamp":1607098345,"output":"5.931 [info] ppl_id: 2a87ecf1-b627-4289-aa66-333b89adfced, type: Ppls, state: done, result: passed,"},{"event":"cmd_output","timestamp":1607098345,"output":" event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), "},{"event":"cmd_output","timestamp":1607098345,"output":"\n\u001b[0m\u001b[22m\n16:12:25.938 [info] ppl_id: 222a5b80-856f-4331-9e18-18aabc90420d, type: PplSubInits, s"},{"event":"cmd_output","timestamp":1607098345,"output":"tate: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_st"},{"event":"cmd_output","timestamp":1607098345,"output":"ate_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:25.958 [info] ppl_id: 222a5b80-856f-4331-9e18-18aabc90420d, t"},{"event":"cmd_output","timestamp":1607098345,"output":"ype: PplRequests, event: persisted definition for request with request_token: fbf895d1-73e0-46b6-9c5"},{"event":"cmd_output","timestamp":1607098345,"output":"a-5150e6619704, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n"},{"event":"cmd_output","timestamp":1607098345,"output":"\u001b[0m\u001b[22m\n16:12:25.974 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularIni"},{"event":"cmd_output","timestamp":1607098345,"output":"tState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:25.974 [info] ppl_id: 222a5b80-856f-4331-9e18-18aabc9042"},{"event":"cmd_output","timestamp":1607098345,"output":"0d, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098345,"output":" Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:25.978 [info"},{"event":"cmd_output","timestamp":1607098345,"output":"] ppl_id: 222a5b80-856f-4331-9e18-18aabc90420d, type: PplSubInits, state: done, result: passed, eve"},{"event":"cmd_output","timestamp":1607098345,"output":"nt: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b["},{"event":"cmd_output","timestamp":1607098345,"output":"0m\u001b[22m\n16:12:25.985 [info] ppl_id: 222a5b80-856f-4331-9e18-18aabc90420d, type: PplBlocks, block_i"},{"event":"cmd_output","timestamp":1607098345,"output":"ndex: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.l"},{"event":"cmd_output","timestamp":1607098345,"output":"og_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:25.988 [info] ppl_id: 222a5b80-856f-4331-9e18-18aabc9042"},{"event":"cmd_output","timestamp":1607098345,"output":"0d, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM"},{"event":"cmd_output","timestamp":1607098345,"output":".Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:25.994 [info] ppl_id: f8caedad-19b1-4f1f-af9b-e8a"},{"event":"cmd_output","timestamp":1607098345,"output":"5e27069e6, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loo"},{"event":"cmd_output","timestamp":1607098346,"output":"per.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.002 [info] ppl_id: 222a5b80-856f-4331-9"},{"event":"cmd_output","timestamp":1607098346,"output":"e18-18aabc90420d, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098346,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.006 [info] PplBlocks WaitingStat"},{"event":"cmd_output","timestamp":1607098346,"output":"e STM is scheduling block 0 from pipeline: \"f8caedad-19b1-4f1f-af9b-e8a5e27069e6\"\n\u001b[0m\u001b[22m\n16:12:"},{"event":"cmd_output","timestamp":1607098346,"output":"26.011 [info] block_id: c421d033-aeab-4d69-9e7e-d12e7f975e83, type: BlockRequests, event: persisted"},{"event":"cmd_output","timestamp":1607098346,"output":" block run request from ppl f8caedad-19b1-4f1f-af9b-e8a5e27069e6 for block 0, origin: Elixir.Block.B"},{"event":"cmd_output","timestamp":1607098346,"output":"lockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:26.013 [info] b"},{"event":"cmd_output","timestamp":1607098346,"output":"lock_id: c421d033-aeab-4d69-9e7e-d12e7f975e83, type: Blocks, state: initializing, event: initializin"},{"event":"cmd_output","timestamp":1607098346,"output":"g, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098346,"output":":12:26.014 [info] Block 0 of pipeline with id: f8caedad-19b1-4f1f-af9b-e8a5e27069e6 scheduled in bl"},{"event":"cmd_output","timestamp":1607098346,"output":"ock service with id: : \"c421d033-aeab-4d69-9e7e-d12e7f975e83\"\n\u001b[0m\u001b[22m\n16:12:26.017 [info] ppl_i"},{"event":"cmd_output","timestamp":1607098346,"output":"d: f8caedad-19b1-4f1f-af9b-e8a5e27069e6, type: PplBlocks, block_index: 0, state: running, event: exi"},{"event":"cmd_output","timestamp":1607098346,"output":"t_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098346,"output":"\n16:12:26.019 [info] block_id: c421d033-aeab-4d69-9e7e-d12e7f975e83, type: BlockRequests, event: p"},{"event":"cmd_output","timestamp":1607098346,"output":"ersisted build and sub_ppl details for block_request: c421d033-aeab-4d69-9e7e-d12e7f975e83, origin: "},{"event":"cmd_output","timestamp":1607098346,"output":"Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:26.021"},{"event":"cmd_output","timestamp":1607098346,"output":" [info] block_id: c421d033-aeab-4d69-9e7e-d12e7f975e83, type: Tasks, state: pending, event: created"},{"event":"cmd_output","timestamp":1607098346,"output":", recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098346,"output":"m\u001b[22m\n16:12:26.023 [info] ppl_id: 9a062404-4fc1-4b55-bc91-6508c639e269, type: PplRequests, event:"},{"event":"cmd_output","timestamp":1607098346,"output":" persisted source_args for pipeline: 9a062404-4fc1-4b55-bc91-6508c639e269, origin: Elixir.Ppl.PplReq"},{"event":"cmd_output","timestamp":1607098346,"output":"uests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:26.025 [info] ppl_id: 9a062"},{"event":"cmd_output","timestamp":1607098346,"output":"404-4fc1-4b55-bc91-6508c639e269, type: PplSubInits, state: fetching, event: exit_scheduling, recover"},{"event":"cmd_output","timestamp":1607098346,"output":"y_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.025 [info]"},{"event":"cmd_output","timestamp":1607098346,"output":" block_id: c421d033-aeab-4d69-9e7e-d12e7f975e83, type: Blocks, state: running, event: exit_scheduli"},{"event":"cmd_output","timestamp":1607098346,"output":"ng, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26"},{"event":"cmd_output","timestamp":1607098346,"output":".041 [info] block_id: c421d033-aeab-4d69-9e7e-d12e7f975e83, type: Tasks, state: running, event: exi"},{"event":"cmd_output","timestamp":1607098346,"output":"t_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098346,"output":"\n16:12:26.050 [info] ppl_id: 9a062404-4fc1-4b55-bc91-6508c639e269, type: PplSubInits, state: regul"},{"event":"cmd_output","timestamp":1607098346,"output":"ar_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/"},{"event":"cmd_output","timestamp":1607098346,"output":"1(L90), \n\u001b[0m\u001b[22m\n16:12:26.067 [info] ppl_id: 9a062404-4fc1-4b55-bc91-6508c639e269, type: PplReq"},{"event":"cmd_output","timestamp":1607098346,"output":"uests, event: persisted definition for request with request_token: 12c82aa4-8492-4b21-acfd-f4e925a7f"},{"event":"cmd_output","timestamp":1607098346,"output":"a87, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098346,"output":"16:12:26.076 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_"},{"event":"cmd_output","timestamp":1607098346,"output":"ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:26.076 [info] ppl_id: 9a062404-4fc1-4b55-bc91-6508c639e269, type: P"},{"event":"cmd_output","timestamp":1607098346,"output":"plBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098346,"output":".PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:26.079 [info] ppl_id: "},{"event":"cmd_output","timestamp":1607098346,"output":"9a062404-4fc1-4b55-bc91-6508c639e269, type: PplSubInits, state: done, result: passed, event: exit_sc"},{"event":"cmd_output","timestamp":1607098346,"output":"heduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098346,"output":":12:26.088 [info] ppl_id: 9a062404-4fc1-4b55-bc91-6508c639e269, type: PplBlocks, block_index: 0, st"},{"event":"cmd_output","timestamp":1607098346,"output":"ate: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_ch"},{"event":"cmd_output","timestamp":1607098346,"output":"ange/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.089 [info] ppl_id: 9a062404-4fc1-4b55-bc91-6508c639e269, type: P"},{"event":"cmd_output","timestamp":1607098346,"output":"pls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_s"},{"event":"cmd_output","timestamp":1607098346,"output":"tate_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.096 [info] ppl_id: 9a062404-4fc1-4b55-bc91-6508c639e269, "},{"event":"cmd_output","timestamp":1607098346,"output":"type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Imp"},{"event":"cmd_output","timestamp":1607098346,"output":"l.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.111 [info] block_id: c421d033-aeab-4d69-9e7e-d12e7"},{"event":"cmd_output","timestamp":1607098346,"output":"f975e83, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper."},{"event":"cmd_output","timestamp":1607098346,"output":"STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.117 [info] block_id: c421d033-aeab-4d69-9e7"},{"event":"cmd_output","timestamp":1607098346,"output":"e-d12e7f975e83, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098346,"output":".Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.126 [info] ppl_id: f8caedad-19b1-4f"},{"event":"cmd_output","timestamp":1607098346,"output":"1f-af9b-e8a5e27069e6, block_id: c421d033-aeab-4d69-9e7e-d12e7f975e83, type: PplBlocks, block_index: "},{"event":"cmd_output","timestamp":1607098346,"output":"0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM"},{"event":"cmd_output","timestamp":1607098346,"output":".Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.137 [info] ppl_id: f4011aa7-ee69-4984-b1d6-938"},{"event":"cmd_output","timestamp":1607098346,"output":"7594654d3, type: PplRequests, event: persisted source_args for pipeline: f4011aa7-ee69-4984-b1d6-938"},{"event":"cmd_output","timestamp":1607098346,"output":"7594654d3, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098346,"output":"\n16:12:26.140 [info] ppl_id: f4011aa7-ee69-4984-b1d6-9387594654d3, type: PplSubInits, state: fetch"},{"event":"cmd_output","timestamp":1607098346,"output":"ing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L9"},{"event":"cmd_output","timestamp":1607098346,"output":"0), \n\u001b[0m\u001b[22m\n16:12:26.143 [info] ppl_id: f8caedad-19b1-4f1f-af9b-e8a5e27069e6, type: Ppls, stat"},{"event":"cmd_output","timestamp":1607098346,"output":"e: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.l"},{"event":"cmd_output","timestamp":1607098346,"output":"og_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.160 [info] ppl_id: f4011aa7-ee69-4984-b1d6-9387594654"},{"event":"cmd_output","timestamp":1607098346,"output":"d3, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098346,"output":"r.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.188 [info] ppl_id: f4011aa7-ee69-4"},{"event":"cmd_output","timestamp":1607098346,"output":"984-b1d6-9387594654d3, type: PplRequests, event: persisted definition for request with request_token"},{"event":"cmd_output","timestamp":1607098346,"output":": 3861f68a-d6b6-4c09-99de-97325cd6c7fa, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.inse"},{"event":"cmd_output","timestamp":1607098346,"output":"rt_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:26.192 [info] event: created, origin: Elixir.Ppl.PplSubIni"},{"event":"cmd_output","timestamp":1607098346,"output":"ts.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:26.192 [info] ppl_id: f4011aa7-e"},{"event":"cmd_output","timestamp":1607098346,"output":"e69-4984-b1d6-9387594654d3, type: PplBlocks, block_index: 0, state: initializing, event: created, re"},{"event":"cmd_output","timestamp":1607098346,"output":"covery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098346,"output":"[22m\n16:12:26.194 [info] ppl_id: f4011aa7-ee69-4984-b1d6-9387594654d3, type: PplSubInits, state: d"},{"event":"cmd_output","timestamp":1607098346,"output":"one, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_s"},{"event":"cmd_output","timestamp":1607098346,"output":"tate_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.203 [info] ppl_id: f4011aa7-ee69-4984-b1d6-9387594654d3, "},{"event":"cmd_output","timestamp":1607098346,"output":"type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098346,"output":"Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.206 [info] ppl_id: f4011aa7-e"},{"event":"cmd_output","timestamp":1607098346,"output":"e69-4984-b1d6-9387594654d3, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098346,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.214 [info] ppl_id: f40"},{"event":"cmd_output","timestamp":1607098346,"output":"11aa7-ee69-4984-b1d6-9387594654d3, type: Ppls, state: queuing, event: exit_scheduling, recovery_coun"},{"event":"cmd_output","timestamp":1607098346,"output":"t: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.216 [info] ppl_"},{"event":"cmd_output","timestamp":1607098346,"output":"id: 222a5b80-856f-4331-9e18-18aabc90420d, type: Ppls, state: running, event: exit_scheduling, recove"},{"event":"cmd_output","timestamp":1607098346,"output":"ry_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.221 [info"},{"event":"cmd_output","timestamp":1607098346,"output":"] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"222a5b80-856f-4331-9e18-18aabc90"},{"event":"cmd_output","timestamp":1607098346,"output":"420d\"\n\u001b[0m\u001b[22m\n16:12:26.225 [info] block_id: 6d0e52bb-b493-456e-bfd2-76d5ce927c96, type: BlockRe"},{"event":"cmd_output","timestamp":1607098346,"output":"quests, event: persisted block run request from ppl 222a5b80-856f-4331-9e18-18aabc90420d for block 0"},{"event":"cmd_output","timestamp":1607098346,"output":", origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098346,"output":"\n16:12:26.228 [info] block_id: 6d0e52bb-b493-456e-bfd2-76d5ce927c96, type: Blocks, state: initiali"},{"event":"cmd_output","timestamp":1607098346,"output":"zing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert"},{"event":"cmd_output","timestamp":1607098346,"output":"/1(L43), \n\u001b[0m\u001b[22m\n16:12:26.229 [info] Block 0 of pipeline with id: 222a5b80-856f-4331-9e18-18aa"},{"event":"cmd_output","timestamp":1607098346,"output":"bc90420d scheduled in block service with id: : \"6d0e52bb-b493-456e-bfd2-76d5ce927c96\"\n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098346,"output":":12:26.232 [info] ppl_id: 222a5b80-856f-4331-9e18-18aabc90420d, type: PplBlocks, block_index: 0, st"},{"event":"cmd_output","timestamp":1607098346,"output":"ate: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_ch"},{"event":"cmd_output","timestamp":1607098346,"output":"ange/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.234 [info] block_id: 6d0e52bb-b493-456e-bfd2-76d5ce927c96, type:"},{"event":"cmd_output","timestamp":1607098346,"output":" BlockRequests, event: persisted build and sub_ppl details for block_request: 6d0e52bb-b493-456e-bfd"},{"event":"cmd_output","timestamp":1607098346,"output":"2-76d5ce927c96, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \r"},{"event":"cmd_output","timestamp":1607098346,"output":"\n\u001b[0m\u001b[22m\n16:12:26.238 [info] block_id: 6d0e52bb-b493-456e-bfd2-76d5ce927c96, type: Tasks, state:"},{"event":"cmd_output","timestamp":1607098346,"output":" pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingStat"},{"event":"cmd_output","timestamp":1607098346,"output":"e.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:26.240 [info] block_id: 6d0e52bb-b493-456e-bfd2-76d5ce927c96,"},{"event":"cmd_output","timestamp":1607098346,"output":" type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM."},{"event":"cmd_output","timestamp":1607098346,"output":"Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.256 [info] ppl_id: c7b7aae5-dd73-4d9d-a717-448f"},{"event":"cmd_output","timestamp":1607098346,"output":"c00aa17d, type: PplRequests, event: persisted source_args for pipeline: c7b7aae5-dd73-4d9d-a717-448f"},{"event":"cmd_output","timestamp":1607098346,"output":"c00aa17d, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098346,"output":"\n16:12:26.260 [info] ppl_id: c7b7aae5-dd73-4d9d-a717-448fc00aa17d, type: PplSubInits, state: fetchi"},{"event":"cmd_output","timestamp":1607098346,"output":"ng, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90"},{"event":"cmd_output","timestamp":1607098346,"output":"), \n\u001b[0m\u001b[22m\n16:12:26.260 [info] block_id: 6d0e52bb-b493-456e-bfd2-76d5ce927c96, type: Tasks, st"},{"event":"cmd_output","timestamp":1607098346,"output":"ate: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_ch"},{"event":"cmd_output","timestamp":1607098346,"output":"ange/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.276 [info] ppl_id: c7b7aae5-dd73-4d9d-a717-448fc00aa17d, type: P"},{"event":"cmd_output","timestamp":1607098346,"output":"plSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.ST"},{"event":"cmd_output","timestamp":1607098346,"output":"M.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.296 [info] ppl_id: c7b7aae5-dd73-4d9d-a717-44"},{"event":"cmd_output","timestamp":1607098346,"output":"8fc00aa17d, type: PplRequests, event: persisted definition for request with request_token: b54d678f-"},{"event":"cmd_output","timestamp":1607098346,"output":"a912-423d-b8ec-5b704b2c079f, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definiti"},{"event":"cmd_output","timestamp":1607098346,"output":"on/3(L76), \n\u001b[0m\u001b[22m\n16:12:26.298 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta_"},{"event":"cmd_output","timestamp":1607098346,"output":"_: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:12:26.297304], name: \"v1."},{"event":"cmd_output","timestamp":1607098346,"output":"0.2-.semaphore/semaphore.yml\", organization_id: \"8ce2d6e8-ed56-4ddd-81da-92a95172fcd2\", project_id: "},{"event":"cmd_output","timestamp":1607098346,"output":"\"123\", queue_id: \"0d077010-139e-4436-a8bc-43d69173fce4\", scope: \"project\", updated_at: ~N[2020-12-04"},{"event":"cmd_output","timestamp":1607098346,"output":" 16:12:26.297312], user_generated: false}}\n\u001b[0m\u001b[22m\n16:12:26.301 [info] event: created, origin: "},{"event":"cmd_output","timestamp":1607098346,"output":"Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:26.301 [info]"},{"event":"cmd_output","timestamp":1607098346,"output":" ppl_id: c7b7aae5-dd73-4d9d-a717-448fc00aa17d, type: PplBlocks, block_index: 0, state: initializing"},{"event":"cmd_output","timestamp":1607098346,"output":", event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_"},{"event":"cmd_output","timestamp":1607098346,"output":"ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:26.304 [info] ppl_id: c7b7aae5-dd73-4d9d-a717-448fc00aa17d, type: P"},{"event":"cmd_output","timestamp":1607098346,"output":"plSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098346,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.311 [info] ppl_id: c7b7aae5-dd73-4d9d"},{"event":"cmd_output","timestamp":1607098346,"output":"-a717-448fc00aa17d, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recover"},{"event":"cmd_output","timestamp":1607098346,"output":"y_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.312 [info]"},{"event":"cmd_output","timestamp":1607098346,"output":" ppl_id: c7b7aae5-dd73-4d9d-a717-448fc00aa17d, type: Ppls, state: pending, event: exit_scheduling, "},{"event":"cmd_output","timestamp":1607098346,"output":"recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.319"},{"event":"cmd_output","timestamp":1607098346,"output":" [info] ppl_id: c7b7aae5-dd73-4d9d-a717-448fc00aa17d, type: Ppls, state: queuing, event: exit_sched"},{"event":"cmd_output","timestamp":1607098346,"output":"uling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12"},{"event":"cmd_output","timestamp":1607098346,"output":":26.324 [info] block_id: 6d0e52bb-b493-456e-bfd2-76d5ce927c96, type: Tasks, state: done, event: exi"},{"event":"cmd_output","timestamp":1607098346,"output":"t_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098346,"output":"\n16:12:26.330 [info] block_id: 6d0e52bb-b493-456e-bfd2-76d5ce927c96, type: Blocks, state: done, ev"},{"event":"cmd_output","timestamp":1607098346,"output":"ent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b"},{"event":"cmd_output","timestamp":1607098346,"output":"[0m\u001b[22m\n16:12:26.332 [info] ppl_id: c7b7aae5-dd73-4d9d-a717-448fc00aa17d, type: Ppls, state: runn"},{"event":"cmd_output","timestamp":1607098346,"output":"ing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L9"},{"event":"cmd_output","timestamp":1607098346,"output":"0), \n\u001b[0m\u001b[22m\n16:12:26.337 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline"},{"event":"cmd_output","timestamp":1607098346,"output":": \"c7b7aae5-dd73-4d9d-a717-448fc00aa17d\"\n\u001b[0m\u001b[22m\n16:12:26.340 [info] ppl_id: 222a5b80-856f-4331"},{"event":"cmd_output","timestamp":1607098346,"output":"-9e18-18aabc90420d, block_id: 6d0e52bb-b493-456e-bfd2-76d5ce927c96, type: PplBlocks, block_index: 0,"},{"event":"cmd_output","timestamp":1607098346,"output":" state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.I"},{"event":"cmd_output","timestamp":1607098346,"output":"mpl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.341 [info] block_id: 665748f2-a1a1-41b2-b1a1-ba8"},{"event":"cmd_output","timestamp":1607098346,"output":"4472a5d0f, type: BlockRequests, event: persisted block run request from ppl c7b7aae5-dd73-4d9d-a717-"},{"event":"cmd_output","timestamp":1607098346,"output":"448fc00aa17d for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_resp"},{"event":"cmd_output","timestamp":1607098346,"output":"onse/4(L35), \n\u001b[0m\u001b[22m\n16:12:26.346 [info] block_id: 665748f2-a1a1-41b2-b1a1-ba84472a5d0f, type:"},{"event":"cmd_output","timestamp":1607098346,"output":" Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Mo"},{"event":"cmd_output","timestamp":1607098346,"output":"del.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:26.348 [info] Block 0 of pipeline with id: c7b7"},{"event":"cmd_output","timestamp":1607098346,"output":"aae5-dd73-4d9d-a717-448fc00aa17d scheduled in block service with id: : \"665748f2-a1a1-41b2-b1a1-ba84"},{"event":"cmd_output","timestamp":1607098346,"output":"472a5d0f\"\n\u001b[0m\u001b[22m\n16:12:26.351 [info] ppl_id: c7b7aae5-dd73-4d9d-a717-448fc00aa17d, type: PplBl"},{"event":"cmd_output","timestamp":1607098346,"output":"ocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loop"},{"event":"cmd_output","timestamp":1607098346,"output":"er.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.353 [info] block_id: 665748f2-a1a1-41b2-"},{"event":"cmd_output","timestamp":1607098346,"output":"b1a1-ba84472a5d0f, type: BlockRequests, event: persisted build and sub_ppl details for block_request"},{"event":"cmd_output","timestamp":1607098346,"output":": 665748f2-a1a1-41b2-b1a1-ba84472a5d0f, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQuerie"},{"event":"cmd_output","timestamp":1607098346,"output":"s.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:26.353 [info] ppl_id: 222a5b80-856f-4331-9e18-18aabc90420"},{"event":"cmd_output","timestamp":1607098346,"output":"d, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098346,"output":"r.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.356 [info] block_id: 665748f2-a1a1"},{"event":"cmd_output","timestamp":1607098346,"output":"-41b2-b1a1-ba84472a5d0f, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098346,"output":"xir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:26.357 [info] blo"},{"event":"cmd_output","timestamp":1607098346,"output":"ck_id: 665748f2-a1a1-41b2-b1a1-ba84472a5d0f, type: Blocks, state: running, event: exit_scheduling, r"},{"event":"cmd_output","timestamp":1607098346,"output":"ecovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.370 "},{"event":"cmd_output","timestamp":1607098346,"output":"[info] block_id: 665748f2-a1a1-41b2-b1a1-ba84472a5d0f, type: Tasks, state: running, event: exit_sch"},{"event":"cmd_output","timestamp":1607098346,"output":"eduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098346,"output":"12:26.374 [info] ppl_id: a0905eb0-9159-4e8e-8eb8-7081ae0756aa, type: PplRequests, event: persisted "},{"event":"cmd_output","timestamp":1607098346,"output":"source_args for pipeline: a0905eb0-9159-4e8e-8eb8-7081ae0756aa, origin: Elixir.Ppl.PplRequests.Model"},{"event":"cmd_output","timestamp":1607098346,"output":".PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:26.376 [info] ppl_id: a0905eb0-9159-4e"},{"event":"cmd_output","timestamp":1607098346,"output":"8e-8eb8-7081ae0756aa, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098346,"output":" origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.391 [info] ppl_id: a"},{"event":"cmd_output","timestamp":1607098346,"output":"0905eb0-9159-4e8e-8eb8-7081ae0756aa, type: PplSubInits, state: regular_init, event: exit_scheduling,"},{"event":"cmd_output","timestamp":1607098346,"output":" recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.40"},{"event":"cmd_output","timestamp":1607098346,"output":"8 [info] ppl_id: a0905eb0-9159-4e8e-8eb8-7081ae0756aa, type: PplRequests, event: persisted definiti"},{"event":"cmd_output","timestamp":1607098346,"output":"on for request with request_token: 101ae5e2-0c27-4dd6-8734-d4801eb15419, origin: Elixir.Ppl.PplReque"},{"event":"cmd_output","timestamp":1607098346,"output":"sts.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:26.412 [info] event: crea"},{"event":"cmd_output","timestamp":1607098346,"output":"ted, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:"},{"event":"cmd_output","timestamp":1607098346,"output":"26.412 [info] ppl_id: a0905eb0-9159-4e8e-8eb8-7081ae0756aa, type: PplBlocks, block_index: 0, state:"},{"event":"cmd_output","timestamp":1607098346,"output":" initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularI"},{"event":"cmd_output","timestamp":1607098346,"output":"nitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:26.416 [info] ppl_id: a0905eb0-9159-4e8e-8eb8-7081ae07"},{"event":"cmd_output","timestamp":1607098346,"output":"56aa, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098346,"output":"gin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.419 [info] ppl_id: a0905"},{"event":"cmd_output","timestamp":1607098346,"output":"eb0-9159-4e8e-8eb8-7081ae0756aa, type: PplBlocks, block_index: 0, state: waiting, event: exit_schedu"},{"event":"cmd_output","timestamp":1607098346,"output":"ling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:"},{"event":"cmd_output","timestamp":1607098346,"output":"26.422 [info] ppl_id: a0905eb0-9159-4e8e-8eb8-7081ae0756aa, type: Ppls, state: pending, event: exit"},{"event":"cmd_output","timestamp":1607098346,"output":"_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098346,"output":"\n16:12:26.435 [info] ppl_id: a0905eb0-9159-4e8e-8eb8-7081ae0756aa, type: Ppls, state: queuing, even"},{"event":"cmd_output","timestamp":1607098346,"output":"t: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098346,"output":"m\u001b[22m\n16:12:26.439 [info] block_id: 665748f2-a1a1-41b2-b1a1-ba84472a5d0f, type: Tasks, state: don"},{"event":"cmd_output","timestamp":1607098346,"output":"e, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90)"},{"event":"cmd_output","timestamp":1607098346,"output":", \n\u001b[0m\u001b[22m\n16:12:26.445 [info] ppl_id: 9a062404-4fc1-4b55-bc91-6508c639e269, type: Ppls, state:"},{"event":"cmd_output","timestamp":1607098346,"output":" running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change"},{"event":"cmd_output","timestamp":1607098346,"output":"/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.445 [info] block_id: 665748f2-a1a1-41b2-b1a1-ba84472a5d0f, type: Blo"},{"event":"cmd_output","timestamp":1607098346,"output":"cks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_stat"},{"event":"cmd_output","timestamp":1607098346,"output":"e_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.454 [info] ppl_id: c7b7aae5-dd73-4d9d-a717-448fc00aa17d, blo"},{"event":"cmd_output","timestamp":1607098346,"output":"ck_id: 665748f2-a1a1-41b2-b1a1-ba84472a5d0f, type: PplBlocks, block_index: 0, state: done, result: p"},{"event":"cmd_output","timestamp":1607098346,"output":"assed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1("},{"event":"cmd_output","timestamp":1607098346,"output":"L90), \n\u001b[0m\u001b[22m\n16:12:26.455 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeli"},{"event":"cmd_output","timestamp":1607098346,"output":"ne: \"9a062404-4fc1-4b55-bc91-6508c639e269\"\n\u001b[0m\u001b[22m\n16:12:26.462 [info] block_id: a20bf6a9-c90b-"},{"event":"cmd_output","timestamp":1607098346,"output":"49a5-971b-b97ac2d7f016, type: BlockRequests, event: persisted block run request from ppl 9a062404-4f"},{"event":"cmd_output","timestamp":1607098346,"output":"c1-4b55-bc91-6508c639e269 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries"},{"event":"cmd_output","timestamp":1607098346,"output":".process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:26.465 [info] block_id: a20bf6a9-c90b-49a5-971b-b97ac2"},{"event":"cmd_output","timestamp":1607098346,"output":"d7f016, type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Bl"},{"event":"cmd_output","timestamp":1607098346,"output":"ock.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:26.467 [info] Block 0 of pipeline "},{"event":"cmd_output","timestamp":1607098346,"output":"with id: 9a062404-4fc1-4b55-bc91-6508c639e269 scheduled in block service with id: : \"a20bf6a9-c90b-4"},{"event":"cmd_output","timestamp":1607098346,"output":"9a5-971b-b97ac2d7f016\"\n\u001b[0m\u001b[22m\n16:12:26.469 [info] ppl_id: 9a062404-4fc1-4b55-bc91-6508c639e269"},{"event":"cmd_output","timestamp":1607098346,"output":", type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098346,"output":": Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.470 [info] ppl_id: c7b7aae5"},{"event":"cmd_output","timestamp":1607098346,"output":"-dd73-4d9d-a717-448fc00aa17d, type: Ppls, state: done, result: passed, event: exit_scheduling, recov"},{"event":"cmd_output","timestamp":1607098346,"output":"ery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.472 [inf"},{"event":"cmd_output","timestamp":1607098346,"output":"o] block_id: a20bf6a9-c90b-49a5-971b-b97ac2d7f016, type: BlockRequests, event: persisted build and "},{"event":"cmd_output","timestamp":1607098346,"output":"sub_ppl details for block_request: a20bf6a9-c90b-49a5-971b-b97ac2d7f016, origin: Elixir.Block.BlockR"},{"event":"cmd_output","timestamp":1607098346,"output":"equests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:26.473 [info] block_id: "},{"event":"cmd_output","timestamp":1607098346,"output":"a20bf6a9-c90b-49a5-971b-b97ac2d7f016, type: Tasks, state: pending, event: created, recovery_count: 0"},{"event":"cmd_output","timestamp":1607098346,"output":", origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:26.47"},{"event":"cmd_output","timestamp":1607098346,"output":"5 [info] block_id: a20bf6a9-c90b-49a5-971b-b97ac2d7f016, type: Blocks, state: running, event: exit_"},{"event":"cmd_output","timestamp":1607098346,"output":"scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098346,"output":"16:12:26.491 [info] ppl_id: 940ce33b-207d-493e-ae11-ce4033b80ba0, type: PplRequests, event: persist"},{"event":"cmd_output","timestamp":1607098346,"output":"ed source_args for pipeline: 940ce33b-207d-493e-ae11-ce4033b80ba0, origin: Elixir.Ppl.PplRequests.Mo"},{"event":"cmd_output","timestamp":1607098346,"output":"del.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:26.491 [info] block_id: a20bf6a9-c9"},{"event":"cmd_output","timestamp":1607098346,"output":"0b-49a5-971b-b97ac2d7f016, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098346,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.493 [info] ppl_id: 940"},{"event":"cmd_output","timestamp":1607098346,"output":"ce33b-207d-493e-ae11-ce4033b80ba0, type: PplSubInits, state: fetching, event: exit_scheduling, recov"},{"event":"cmd_output","timestamp":1607098346,"output":"ery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.506 [inf"},{"event":"cmd_output","timestamp":1607098346,"output":"o] ppl_id: 940ce33b-207d-493e-ae11-ce4033b80ba0, type: PplSubInits, state: regular_init, event: exi"},{"event":"cmd_output","timestamp":1607098346,"output":"t_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098346,"output":"\n16:12:26.524 [info] ppl_id: 940ce33b-207d-493e-ae11-ce4033b80ba0, type: PplRequests, event: persi"},{"event":"cmd_output","timestamp":1607098346,"output":"sted definition for request with request_token: b7635df1-5628-48a5-8df1-fb9e8d20f6e4, origin: Elixir"},{"event":"cmd_output","timestamp":1607098346,"output":".Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:26.531 [info]"},{"event":"cmd_output","timestamp":1607098346,"output":" event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098346,"output":"\u001b[22m\n16:12:26.531 [info] ppl_id: 940ce33b-207d-493e-ae11-ce4033b80ba0, type: PplBlocks, block_ind"},{"event":"cmd_output","timestamp":1607098346,"output":"ex: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHan"},{"event":"cmd_output","timestamp":1607098346,"output":"dler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:26.533 [info] ppl_id: 940ce33b-207d-493e-"},{"event":"cmd_output","timestamp":1607098346,"output":"ae11-ce4033b80ba0, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_"},{"event":"cmd_output","timestamp":1607098346,"output":"count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.538 [info] "},{"event":"cmd_output","timestamp":1607098346,"output":"ppl_id: 940ce33b-207d-493e-ae11-ce4033b80ba0, type: Ppls, state: pending, event: exit_scheduling, re"},{"event":"cmd_output","timestamp":1607098346,"output":"covery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.541 ["},{"event":"cmd_output","timestamp":1607098346,"output":"info] ppl_id: 940ce33b-207d-493e-ae11-ce4033b80ba0, type: PplBlocks, block_index: 0, state: waiting"},{"event":"cmd_output","timestamp":1607098346,"output":", event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90),"},{"event":"cmd_output","timestamp":1607098346,"output":" \n\u001b[0m\u001b[22m\n16:12:26.546 [info] ppl_id: 940ce33b-207d-493e-ae11-ce4033b80ba0, type: Ppls, state: "},{"event":"cmd_output","timestamp":1607098346,"output":"queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/"},{"event":"cmd_output","timestamp":1607098346,"output":"1(L90), \n\u001b[0m\u001b[22m\n16:12:26.555 [info] block_id: a20bf6a9-c90b-49a5-971b-b97ac2d7f016, type: Task"},{"event":"cmd_output","timestamp":1607098346,"output":"s, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_"},{"event":"cmd_output","timestamp":1607098346,"output":"change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.559 [info] ppl_id: a0905eb0-9159-4e8e-8eb8-7081ae0756aa, type:"},{"event":"cmd_output","timestamp":1607098346,"output":" Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098346,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.561 [info] block_id: a20bf6a9-c90b-49a5-971b-b97ac2d7f0"},{"event":"cmd_output","timestamp":1607098346,"output":"16, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM."},{"event":"cmd_output","timestamp":1607098346,"output":"Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.565 [info] PplBlocks WaitingState STM is schedu"},{"event":"cmd_output","timestamp":1607098346,"output":"ling block 0 from pipeline: \"a0905eb0-9159-4e8e-8eb8-7081ae0756aa\"\n\u001b[0m\u001b[22m\n16:12:26.569 [info] "},{"event":"cmd_output","timestamp":1607098346,"output":"block_id: dc7e0b84-b522-4790-a441-295530cb8b99, type: BlockRequests, event: persisted block run requ"},{"event":"cmd_output","timestamp":1607098346,"output":"est from ppl a0905eb0-9159-4e8e-8eb8-7081ae0756aa for block 0, origin: Elixir.Block.BlockRequests.Mo"},{"event":"cmd_output","timestamp":1607098346,"output":"del.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:26.571 [info] ppl_id: 9a062404"},{"event":"cmd_output","timestamp":1607098346,"output":"-4fc1-4b55-bc91-6508c639e269, block_id: a20bf6a9-c90b-49a5-971b-b97ac2d7f016, type: PplBlocks, block"},{"event":"cmd_output","timestamp":1607098346,"output":"_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Lo"},{"event":"cmd_output","timestamp":1607098346,"output":"oper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.571 [info] block_id: dc7e0b84-b522-479"},{"event":"cmd_output","timestamp":1607098346,"output":"0-a441-295530cb8b99, type: Blocks, state: initializing, event: initializing, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098346,"output":"in: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:26.574 [info] Block 0"},{"event":"cmd_output","timestamp":1607098346,"output":" of pipeline with id: a0905eb0-9159-4e8e-8eb8-7081ae0756aa scheduled in block service with id: : \"dc"},{"event":"cmd_output","timestamp":1607098346,"output":"7e0b84-b522-4790-a441-295530cb8b99\"\n\u001b[0m\u001b[22m\n16:12:26.578 [info] ppl_id: a0905eb0-9159-4e8e-8eb8"},{"event":"cmd_output","timestamp":1607098346,"output":"-7081ae0756aa, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_cou"},{"event":"cmd_output","timestamp":1607098346,"output":"nt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.580 [info] blo"},{"event":"cmd_output","timestamp":1607098346,"output":"ck_id: dc7e0b84-b522-4790-a441-295530cb8b99, type: BlockRequests, event: persisted build and sub_ppl"},{"event":"cmd_output","timestamp":1607098346,"output":" details for block_request: dc7e0b84-b522-4790-a441-295530cb8b99, origin: Elixir.Block.BlockRequests"},{"event":"cmd_output","timestamp":1607098346,"output":".Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:26.582 [info] block_id: dc7e0b8"},{"event":"cmd_output","timestamp":1607098346,"output":"4-b522-4790-a441-295530cb8b99, type: Tasks, state: pending, event: created, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098346,"output":"n: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:26.584 [info"},{"event":"cmd_output","timestamp":1607098346,"output":"] block_id: dc7e0b84-b522-4790-a441-295530cb8b99, type: Blocks, state: running, event: exit_schedul"},{"event":"cmd_output","timestamp":1607098346,"output":"ing, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:2"},{"event":"cmd_output","timestamp":1607098346,"output":"6.586 [info] ppl_id: 9a062404-4fc1-4b55-bc91-6508c639e269, type: Ppls, state: done, result: passed,"},{"event":"cmd_output","timestamp":1607098346,"output":" event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), "},{"event":"cmd_output","timestamp":1607098346,"output":"\n\u001b[0m\u001b[22m\n16:12:26.598 [info] block_id: dc7e0b84-b522-4790-a441-295530cb8b99, type: Tasks, state"},{"event":"cmd_output","timestamp":1607098346,"output":": running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chang"},{"event":"cmd_output","timestamp":1607098346,"output":"e/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.602 [info] ppl_id: 8e6d872e-c76d-4cee-949e-7fe3f4fd6c6d, type: PplR"},{"event":"cmd_output","timestamp":1607098346,"output":"equests, event: persisted source_args for pipeline: 8e6d872e-c76d-4cee-949e-7fe3f4fd6c6d, origin: El"},{"event":"cmd_output","timestamp":1607098346,"output":"ixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:26.604 [info]"},{"event":"cmd_output","timestamp":1607098346,"output":" ppl_id: 8e6d872e-c76d-4cee-949e-7fe3f4fd6c6d, type: PplSubInits, state: fetching, event: exit_sche"},{"event":"cmd_output","timestamp":1607098346,"output":"duling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098346,"output":"2:26.619 [info] ppl_id: 8e6d872e-c76d-4cee-949e-7fe3f4fd6c6d, type: PplSubInits, state: regular_ini"},{"event":"cmd_output","timestamp":1607098346,"output":"t, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90)"},{"event":"cmd_output","timestamp":1607098346,"output":", \n\u001b[0m\u001b[22m\n16:12:26.638 [info] ppl_id: 8e6d872e-c76d-4cee-949e-7fe3f4fd6c6d, type: PplRequests,"},{"event":"cmd_output","timestamp":1607098346,"output":" event: persisted definition for request with request_token: 425cb6cd-4c18-440a-9104-88ad4a059b34, o"},{"event":"cmd_output","timestamp":1607098346,"output":"rigin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:"},{"event":"cmd_output","timestamp":1607098346,"output":"26.641 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1("},{"event":"cmd_output","timestamp":1607098346,"output":"L105), \n\u001b[0m\u001b[22m\n16:12:26.641 [info] ppl_id: 8e6d872e-c76d-4cee-949e-7fe3f4fd6c6d, type: PplBloc"},{"event":"cmd_output","timestamp":1607098346,"output":"ks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSu"},{"event":"cmd_output","timestamp":1607098346,"output":"bInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:26.643 [info] ppl_id: 8e6d87"},{"event":"cmd_output","timestamp":1607098346,"output":"2e-c76d-4cee-949e-7fe3f4fd6c6d, type: PplSubInits, state: done, result: passed, event: exit_scheduli"},{"event":"cmd_output","timestamp":1607098346,"output":"ng, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26"},{"event":"cmd_output","timestamp":1607098346,"output":".648 [info] ppl_id: 8e6d872e-c76d-4cee-949e-7fe3f4fd6c6d, type: PplBlocks, block_index: 0, state: w"},{"event":"cmd_output","timestamp":1607098346,"output":"aiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1"},{"event":"cmd_output","timestamp":1607098346,"output":"(L90), \n\u001b[0m\u001b[22m\n16:12:26.650 [info] ppl_id: 8e6d872e-c76d-4cee-949e-7fe3f4fd6c6d, type: Ppls, s"},{"event":"cmd_output","timestamp":1607098346,"output":"tate: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098346,"output":"hange/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.657 [info] ppl_id: 8e6d872e-c76d-4cee-949e-7fe3f4fd6c6d, type: "},{"event":"cmd_output","timestamp":1607098346,"output":"Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_"},{"event":"cmd_output","timestamp":1607098346,"output":"state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.665 [info] block_id: dc7e0b84-b522-4790-a441-295530cb8b9"},{"event":"cmd_output","timestamp":1607098346,"output":"9, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Im"},{"event":"cmd_output","timestamp":1607098346,"output":"pl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.671 [info] block_id: dc7e0b84-b522-4790-a441-2955"},{"event":"cmd_output","timestamp":1607098346,"output":"30cb8b99, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loope"},{"event":"cmd_output","timestamp":1607098346,"output":"r.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.673 [info] ppl_id: f4011aa7-ee69-4984-b1d"},{"event":"cmd_output","timestamp":1607098346,"output":"6-9387594654d3, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098346,"output":"r.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.679 [info] ppl_id: a0905eb0-9159-4"},{"event":"cmd_output","timestamp":1607098346,"output":"e8e-8eb8-7081ae0756aa, block_id: dc7e0b84-b522-4790-a441-295530cb8b99, type: PplBlocks, block_index:"},{"event":"cmd_output","timestamp":1607098346,"output":" 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.ST"},{"event":"cmd_output","timestamp":1607098346,"output":"M.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.679 [info] PplBlocks WaitingState STM is sche"},{"event":"cmd_output","timestamp":1607098346,"output":"duling block 0 from pipeline: \"f4011aa7-ee69-4984-b1d6-9387594654d3\"\n\u001b[0m\u001b[22m\n16:12:26.684 [info]"},{"event":"cmd_output","timestamp":1607098346,"output":" block_id: bab59026-bd14-4a36-b118-c08a9131814d, type: BlockRequests, event: persisted block run re"},{"event":"cmd_output","timestamp":1607098346,"output":"quest from ppl f4011aa7-ee69-4984-b1d6-9387594654d3 for block 0, origin: Elixir.Block.BlockRequests."},{"event":"cmd_output","timestamp":1607098346,"output":"Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:26.686 [info] block_id: bab5"},{"event":"cmd_output","timestamp":1607098346,"output":"9026-bd14-4a36-b118-c08a9131814d, type: Blocks, state: initializing, event: initializing, recovery_c"},{"event":"cmd_output","timestamp":1607098346,"output":"ount: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:26.687 [i"},{"event":"cmd_output","timestamp":1607098346,"output":"nfo] Block 0 of pipeline with id: f4011aa7-ee69-4984-b1d6-9387594654d3 scheduled in block service w"},{"event":"cmd_output","timestamp":1607098346,"output":"ith id: : \"bab59026-bd14-4a36-b118-c08a9131814d\"\n\u001b[0m\u001b[22m\n16:12:26.691 [info] ppl_id: a0905eb0-9"},{"event":"cmd_output","timestamp":1607098346,"output":"159-4e8e-8eb8-7081ae0756aa, type: Ppls, state: done, result: passed, event: exit_scheduling, recover"},{"event":"cmd_output","timestamp":1607098346,"output":"y_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.691 [info]"},{"event":"cmd_output","timestamp":1607098346,"output":" ppl_id: f4011aa7-ee69-4984-b1d6-9387594654d3, type: PplBlocks, block_index: 0, state: running, eve"},{"event":"cmd_output","timestamp":1607098346,"output":"nt: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b["},{"event":"cmd_output","timestamp":1607098346,"output":"0m\u001b[22m\n16:12:26.694 [info] block_id: bab59026-bd14-4a36-b118-c08a9131814d, type: BlockRequests, e"},{"event":"cmd_output","timestamp":1607098346,"output":"vent: persisted build and sub_ppl details for block_request: bab59026-bd14-4a36-b118-c08a9131814d, o"},{"event":"cmd_output","timestamp":1607098346,"output":"rigin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12"},{"event":"cmd_output","timestamp":1607098346,"output":":26.697 [info] block_id: bab59026-bd14-4a36-b118-c08a9131814d, type: Tasks, state: pending, event: "},{"event":"cmd_output","timestamp":1607098346,"output":"created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167)"},{"event":"cmd_output","timestamp":1607098346,"output":", \n\u001b[0m\u001b[22m\n16:12:26.699 [info] block_id: bab59026-bd14-4a36-b118-c08a9131814d, type: Blocks, st"},{"event":"cmd_output","timestamp":1607098346,"output":"ate: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_ch"},{"event":"cmd_output","timestamp":1607098346,"output":"ange/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.710 [info] block_id: bab59026-bd14-4a36-b118-c08a9131814d, type:"},{"event":"cmd_output","timestamp":1607098346,"output":" Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.lo"},{"event":"cmd_output","timestamp":1607098346,"output":"g_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.713 [info] ppl_id: b776f37b-f60f-4093-8526-2ff1c8f5127"},{"event":"cmd_output","timestamp":1607098346,"output":"e, type: PplRequests, event: persisted source_args for pipeline: b776f37b-f60f-4093-8526-2ff1c8f5127"},{"event":"cmd_output","timestamp":1607098346,"output":"e, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:"},{"event":"cmd_output","timestamp":1607098346,"output":"26.714 [info] ppl_id: b776f37b-f60f-4093-8526-2ff1c8f5127e, type: PplSubInits, state: fetching, eve"},{"event":"cmd_output","timestamp":1607098346,"output":"nt: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b["},{"event":"cmd_output","timestamp":1607098346,"output":"0m\u001b[22m\n16:12:26.729 [info] ppl_id: b776f37b-f60f-4093-8526-2ff1c8f5127e, type: PplSubInits, state"},{"event":"cmd_output","timestamp":1607098346,"output":": regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_"},{"event":"cmd_output","timestamp":1607098346,"output":"change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.746 [info] ppl_id: b776f37b-f60f-4093-8526-2ff1c8f5127e, type:"},{"event":"cmd_output","timestamp":1607098346,"output":" PplRequests, event: persisted definition for request with request_token: 2396ad81-2657-45f2-b411-0e"},{"event":"cmd_output","timestamp":1607098346,"output":"0ca338881d, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098346,"output":"\u001b[22m\n16:12:26.749 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitSta"},{"event":"cmd_output","timestamp":1607098346,"output":"te.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:26.749 [info] ppl_id: b776f37b-f60f-4093-8526-2ff1c8f5127e, "},{"event":"cmd_output","timestamp":1607098346,"output":"type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098346,"output":"xir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:26.751 [info] p"},{"event":"cmd_output","timestamp":1607098346,"output":"pl_id: b776f37b-f60f-4093-8526-2ff1c8f5127e, type: PplSubInits, state: done, result: passed, event: "},{"event":"cmd_output","timestamp":1607098346,"output":"exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098346,"output":"22m\n16:12:26.757 [info] ppl_id: b776f37b-f60f-4093-8526-2ff1c8f5127e, type: Ppls, state: pending, "},{"event":"cmd_output","timestamp":1607098346,"output":"event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \r"},{"event":"cmd_output","timestamp":1607098346,"output":"\n\u001b[0m\u001b[22m\n16:12:26.758 [info] ppl_id: b776f37b-f60f-4093-8526-2ff1c8f5127e, type: PplBlocks, bloc"},{"event":"cmd_output","timestamp":1607098346,"output":"k_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Imp"},{"event":"cmd_output","timestamp":1607098346,"output":"l.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.763 [info] ppl_id: b776f37b-f60f-4093-8526-2ff1c8f"},{"event":"cmd_output","timestamp":1607098346,"output":"5127e, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper."},{"event":"cmd_output","timestamp":1607098346,"output":"STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.769 [info] ppl_id: 940ce33b-207d-493e-ae11-"},{"event":"cmd_output","timestamp":1607098346,"output":"ce4033b80ba0, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098346,"output":"Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.776 [info] block_id: bab59026-bd14-4"},{"event":"cmd_output","timestamp":1607098346,"output":"a36-b118-c08a9131814d, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098346,"output":"Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.779 [info] PplBlocks WaitingS"},{"event":"cmd_output","timestamp":1607098346,"output":"tate STM is scheduling block 0 from pipeline: \"940ce33b-207d-493e-ae11-ce4033b80ba0\"\n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098346,"output":"12:26.782 [info] block_id: bab59026-bd14-4a36-b118-c08a9131814d, type: Blocks, state: done, event: "},{"event":"cmd_output","timestamp":1607098346,"output":"exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098346,"output":"22m\n16:12:26.785 [info] block_id: 8177e309-a0b1-492e-bc0b-c2290fb0b8d4, type: BlockRequests, event"},{"event":"cmd_output","timestamp":1607098346,"output":": persisted block run request from ppl 940ce33b-207d-493e-ae11-ce4033b80ba0 for block 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098346,"output":"xir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:26.78"},{"event":"cmd_output","timestamp":1607098346,"output":"7 [info] block_id: 8177e309-a0b1-492e-bc0b-c2290fb0b8d4, type: Blocks, state: initializing, event: "},{"event":"cmd_output","timestamp":1607098346,"output":"initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b["},{"event":"cmd_output","timestamp":1607098346,"output":"0m\u001b[22m\n16:12:26.789 [info] Block 0 of pipeline with id: 940ce33b-207d-493e-ae11-ce4033b80ba0 sche"},{"event":"cmd_output","timestamp":1607098346,"output":"duled in block service with id: : \"8177e309-a0b1-492e-bc0b-c2290fb0b8d4\"\n\u001b[0m\u001b[22m\n16:12:26.791 [i"},{"event":"cmd_output","timestamp":1607098346,"output":"nfo] ppl_id: 940ce33b-207d-493e-ae11-ce4033b80ba0, type: PplBlocks, block_index: 0, state: running,"},{"event":"cmd_output","timestamp":1607098346,"output":" event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), "},{"event":"cmd_output","timestamp":1607098346,"output":"\n\u001b[0m\u001b[22m\n16:12:26.791 [info] block_id: 8177e309-a0b1-492e-bc0b-c2290fb0b8d4, type: BlockRequest"},{"event":"cmd_output","timestamp":1607098346,"output":"s, event: persisted build and sub_ppl details for block_request: 8177e309-a0b1-492e-bc0b-c2290fb0b8d"},{"event":"cmd_output","timestamp":1607098346,"output":"4, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098346,"output":"6:12:26.791 [info] ppl_id: f4011aa7-ee69-4984-b1d6-9387594654d3, block_id: bab59026-bd14-4a36-b118-"},{"event":"cmd_output","timestamp":1607098346,"output":"c08a9131814d, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, "},{"event":"cmd_output","timestamp":1607098346,"output":"recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.793"},{"event":"cmd_output","timestamp":1607098346,"output":" [info] block_id: 8177e309-a0b1-492e-bc0b-c2290fb0b8d4, type: Tasks, state: pending, event: created"},{"event":"cmd_output","timestamp":1607098346,"output":", recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098346,"output":"m\u001b[22m\n16:12:26.796 [info] block_id: 8177e309-a0b1-492e-bc0b-c2290fb0b8d4, type: Blocks, state: ru"},{"event":"cmd_output","timestamp":1607098346,"output":"nning, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1("},{"event":"cmd_output","timestamp":1607098346,"output":"L90), \n\u001b[0m\u001b[22m\n16:12:26.810 [info] ppl_id: f4011aa7-ee69-4984-b1d6-9387594654d3, type: Ppls, st"},{"event":"cmd_output","timestamp":1607098346,"output":"ate: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl"},{"event":"cmd_output","timestamp":1607098346,"output":".log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.812 [info] block_id: 8177e309-a0b1-492e-bc0b-c2290f"},{"event":"cmd_output","timestamp":1607098346,"output":"b0b8d4, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loope"},{"event":"cmd_output","timestamp":1607098346,"output":"r.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.894 [info] block_id: 8177e309-a0b1-492e-b"},{"event":"cmd_output","timestamp":1607098346,"output":"c0b-c2290fb0b8d4, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098346,"output":"r.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.898 [info] block_id: 8177e309-a0b1"},{"event":"cmd_output","timestamp":1607098346,"output":"-492e-bc0b-c2290fb0b8d4, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098346,"output":"n: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.905 [info] ppl_id: 940ce33"},{"event":"cmd_output","timestamp":1607098346,"output":"b-207d-493e-ae11-ce4033b80ba0, block_id: 8177e309-a0b1-492e-bc0b-c2290fb0b8d4, type: PplBlocks, bloc"},{"event":"cmd_output","timestamp":1607098346,"output":"k_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098346,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.921 [info] ppl_id: 940ce33b-207d-493e"},{"event":"cmd_output","timestamp":1607098346,"output":"-ae11-ce4033b80ba0, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count:"},{"event":"cmd_output","timestamp":1607098346,"output":" 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.998 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098346,"output":": 8e6d872e-c76d-4cee-949e-7fe3f4fd6c6d, type: Ppls, state: running, event: exit_scheduling, recovery"},{"event":"cmd_output","timestamp":1607098347,"output":"_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:27.003 [info] "},{"event":"cmd_output","timestamp":1607098347,"output":" PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"8e6d872e-c76d-4cee-949e-7fe3f4fd6c"},{"event":"cmd_output","timestamp":1607098347,"output":"6d\"\n\u001b[0m\u001b[22m\n16:12:27.013 [info] block_id: 1659daa8-b03e-4912-baf7-e5363fd536da, type: BlockRequ"},{"event":"cmd_output","timestamp":1607098347,"output":"ests, event: persisted block run request from ppl 8e6d872e-c76d-4cee-949e-7fe3f4fd6c6d for block 0, "},{"event":"cmd_output","timestamp":1607098347,"output":"origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098347,"output":"16:12:27.015 [info] block_id: 1659daa8-b03e-4912-baf7-e5363fd536da, type: Blocks, state: initializi"},{"event":"cmd_output","timestamp":1607098347,"output":"ng, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1"},{"event":"cmd_output","timestamp":1607098347,"output":"(L43), \n\u001b[0m\u001b[22m\n16:12:27.016 [info] Block 0 of pipeline with id: 8e6d872e-c76d-4cee-949e-7fe3f4"},{"event":"cmd_output","timestamp":1607098347,"output":"fd6c6d scheduled in block service with id: : \"1659daa8-b03e-4912-baf7-e5363fd536da\"\n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098347,"output":"2:27.018 [info] ppl_id: 8e6d872e-c76d-4cee-949e-7fe3f4fd6c6d, type: PplBlocks, block_index: 0, stat"},{"event":"cmd_output","timestamp":1607098347,"output":"e: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chan"},{"event":"cmd_output","timestamp":1607098347,"output":"ge/1(L90), \n\u001b[0m\u001b[22m\n16:12:27.020 [info] block_id: 1659daa8-b03e-4912-baf7-e5363fd536da, type: B"},{"event":"cmd_output","timestamp":1607098347,"output":"lockRequests, event: persisted build and sub_ppl details for block_request: 1659daa8-b03e-4912-baf7-"},{"event":"cmd_output","timestamp":1607098347,"output":"e5363fd536da, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b"},{"event":"cmd_output","timestamp":1607098347,"output":"[0m\u001b[22m\n16:12:27.022 [info] block_id: 1659daa8-b03e-4912-baf7-e5363fd536da, type: Tasks, state: p"},{"event":"cmd_output","timestamp":1607098347,"output":"ending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState."},{"event":"cmd_output","timestamp":1607098347,"output":"all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:27.023 [info] block_id: 1659daa8-b03e-4912-baf7-e5363fd536da, t"},{"event":"cmd_output","timestamp":1607098347,"output":"ype: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Im"},{"event":"cmd_output","timestamp":1607098347,"output":"pl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:27.037 [info] block_id: 1659daa8-b03e-4912-baf7-e536"},{"event":"cmd_output","timestamp":1607098347,"output":"3fd536da, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loo"},{"event":"cmd_output","timestamp":1607098347,"output":"per.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:27.106 [info] block_id: 1659daa8-b03e-4912"},{"event":"cmd_output","timestamp":1607098347,"output":"-baf7-e5363fd536da, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098347,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:27.118 [info] block_id: 1659daa8-b0"},{"event":"cmd_output","timestamp":1607098347,"output":"3e-4912-baf7-e5363fd536da, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098347,"output":"gin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:27.124 [info] ppl_id: 8e6d8"},{"event":"cmd_output","timestamp":1607098347,"output":"72e-c76d-4cee-949e-7fe3f4fd6c6d, block_id: 1659daa8-b03e-4912-baf7-e5363fd536da, type: PplBlocks, bl"},{"event":"cmd_output","timestamp":1607098347,"output":"ock_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098347,"output":".Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:27.141 [info] ppl_id: 8e6d872e-c76d-4c"},{"event":"cmd_output","timestamp":1607098347,"output":"ee-949e-7fe3f4fd6c6d, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_coun"},{"event":"cmd_output","timestamp":1607098347,"output":"t: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:27.214 [info] ppl_"},{"event":"cmd_output","timestamp":1607098347,"output":"id: b776f37b-f60f-4093-8526-2ff1c8f5127e, type: Ppls, state: running, event: exit_scheduling, recove"},{"event":"cmd_output","timestamp":1607098347,"output":"ry_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:27.218 [info"},{"event":"cmd_output","timestamp":1607098347,"output":"] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"b776f37b-f60f-4093-8526-2ff1c8f5"},{"event":"cmd_output","timestamp":1607098347,"output":"127e\"\n\u001b[0m\u001b[22m\n16:12:27.223 [info] block_id: 1aa42ce0-99e2-4bd2-ae7f-8cb2224e0c99, type: BlockRe"},{"event":"cmd_output","timestamp":1607098347,"output":"quests, event: persisted block run request from ppl b776f37b-f60f-4093-8526-2ff1c8f5127e for block 0"},{"event":"cmd_output","timestamp":1607098347,"output":", origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098347,"output":"\n16:12:27.225 [info] block_id: 1aa42ce0-99e2-4bd2-ae7f-8cb2224e0c99, type: Blocks, state: initiali"},{"event":"cmd_output","timestamp":1607098347,"output":"zing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert"},{"event":"cmd_output","timestamp":1607098347,"output":"/1(L43), \n\u001b[0m\u001b[22m\n16:12:27.226 [info] Block 0 of pipeline with id: b776f37b-f60f-4093-8526-2ff1"},{"event":"cmd_output","timestamp":1607098347,"output":"c8f5127e scheduled in block service with id: : \"1aa42ce0-99e2-4bd2-ae7f-8cb2224e0c99\"\n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098347,"output":":12:27.228 [info] ppl_id: b776f37b-f60f-4093-8526-2ff1c8f5127e, type: PplBlocks, block_index: 0, st"},{"event":"cmd_output","timestamp":1607098347,"output":"ate: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_ch"},{"event":"cmd_output","timestamp":1607098347,"output":"ange/1(L90), \n\u001b[0m\u001b[22m\n16:12:27.238 [info] block_id: 1aa42ce0-99e2-4bd2-ae7f-8cb2224e0c99, type:"},{"event":"cmd_output","timestamp":1607098347,"output":" BlockRequests, event: persisted build and sub_ppl details for block_request: 1aa42ce0-99e2-4bd2-ae7"},{"event":"cmd_output","timestamp":1607098347,"output":"f-8cb2224e0c99, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \r"},{"event":"cmd_output","timestamp":1607098347,"output":"\n\u001b[0m\u001b[22m\n16:12:27.240 [info] block_id: 1aa42ce0-99e2-4bd2-ae7f-8cb2224e0c99, type: Tasks, state:"},{"event":"cmd_output","timestamp":1607098347,"output":" pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingStat"},{"event":"cmd_output","timestamp":1607098347,"output":"e.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:27.242 [info] block_id: 1aa42ce0-99e2-4bd2-ae7f-8cb2224e0c99,"},{"event":"cmd_output","timestamp":1607098347,"output":" type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM."},{"event":"cmd_output","timestamp":1607098347,"output":"Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:27.254 [info] block_id: 1aa42ce0-99e2-4bd2-ae7f-8c"},{"event":"cmd_output","timestamp":1607098347,"output":"b2224e0c99, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098347,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:27.321 [info] block_id: 1aa42ce0-99e2-4b"},{"event":"cmd_output","timestamp":1607098347,"output":"d2-ae7f-8cb2224e0c99, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: E"},{"event":"cmd_output","timestamp":1607098347,"output":"lixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:27.328 [info] block_id: 1aa42ce0-"},{"event":"cmd_output","timestamp":1607098347,"output":"99e2-4bd2-ae7f-8cb2224e0c99, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098347,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:27.334 [info] ppl_id: b77"},{"event":"cmd_output","timestamp":1607098347,"output":"6f37b-f60f-4093-8526-2ff1c8f5127e, block_id: 1aa42ce0-99e2-4bd2-ae7f-8cb2224e0c99, type: PplBlocks, "},{"event":"cmd_output","timestamp":1607098347,"output":"block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098347,"output":"ir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:27.345 [info] ppl_id: b776f37b-f60f-"},{"event":"cmd_output","timestamp":1607098347,"output":"4093-8526-2ff1c8f5127e, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_co"},{"event":"cmd_output","timestamp":1607098347,"output":"unt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test gRPC list() - f"},{"event":"cmd_output","timestamp":1607098347,"output":"ilter by queue_id (2080.7ms)\u001b[0m\n * test gRPC get_project_id() - non-existin ppl_id - fail\r * tes"},{"event":"cmd_output","timestamp":1607098347,"output":"t gRPC get_project_id() - non-existin ppl_id - fail (skipped)\n * test gRPC list() - filter by labe"},{"event":"cmd_output","timestamp":1607098347,"output":"l\u001b[22m\n16:12:27.477 [info] ppl_id: 28b0b7b7-ba29-49a0-aa3f-ca1860acc9f8, type: PplRequests, event:"},{"event":"cmd_output","timestamp":1607098347,"output":" persisted schedule request with request_token: ec2df3cc-785a-43ad-b6ec-fd8ecf407a51, origin: Elixir"},{"event":"cmd_output","timestamp":1607098347,"output":".Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:27.479 [info] "},{"event":"cmd_output","timestamp":1607098347,"output":" ppl_id: 28b0b7b7-ba29-49a0-aa3f-ca1860acc9f8, type: PplRequests, event: persisted definition for re"},{"event":"cmd_output","timestamp":1607098347,"output":"quest with request_token: ec2df3cc-785a-43ad-b6ec-fd8ecf407a51, origin: Elixir.Ppl.PplRequests.Model"},{"event":"cmd_output","timestamp":1607098347,"output":".PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:27.488 [info] ppl_id: 28b0b7b7-ba2"},{"event":"cmd_output","timestamp":1607098347,"output":"9-49a0-aa3f-ca1860acc9f8, type: Ppls, state: initializing, event: initializing, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098347,"output":"rigin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:27.493 [info] "},{"event":"cmd_output","timestamp":1607098347,"output":" Persisted ppl_sub_init for pipeline with ppl_id: 28b0b7b7-ba29-49a0-aa3f-ca1860acc9f8: %Ppl.PplSubI"},{"event":"cmd_output","timestamp":1607098347,"output":"nits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_"},{"event":"cmd_output","timestamp":1607098347,"output":"id: nil, error_description: nil, id: 214, in_scheduling: false, init_type: \"regular\", inserted_at: ~"},{"event":"cmd_output","timestamp":1607098347,"output":"N[2020-12-04 16:12:27.491812], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"28b0b7b7-ba29-49a0-aa3f-ca1860acc9f8\", recovery_count: 0, result: "},{"event":"cmd_output","timestamp":1607098347,"output":"nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, upda"},{"event":"cmd_output","timestamp":1607098347,"output":"ted_at: ~N[2020-12-04 16:12:27.491821]}\n\u001b[0m\u001b[22m\n16:12:27.499 [info] ppl_id: a6a2dad4-1767-408d-"},{"event":"cmd_output","timestamp":1607098347,"output":"bb5f-63668052aa13, type: PplRequests, event: persisted schedule request with request_token: 6a0f4075"},{"event":"cmd_output","timestamp":1607098347,"output":"-0654-41bd-a8f3-408ddc144929, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_respon"},{"event":"cmd_output","timestamp":1607098347,"output":"se/2(L55), \n\u001b[0m\u001b[22m\n16:12:27.500 [info] ppl_id: a6a2dad4-1767-408d-bb5f-63668052aa13, type: Ppl"},{"event":"cmd_output","timestamp":1607098347,"output":"Requests, event: persisted definition for request with request_token: 6a0f4075-0654-41bd-a8f3-408ddc"},{"event":"cmd_output","timestamp":1607098347,"output":"144929, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098347,"output":"m\n16:12:27.503 [info] ppl_id: a6a2dad4-1767-408d-bb5f-63668052aa13, type: Ppls, state: initializin"},{"event":"cmd_output","timestamp":1607098347,"output":"g, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_respons"},{"event":"cmd_output","timestamp":1607098347,"output":"e/2(L124), \n\u001b[0m\u001b[22m\n16:12:27.507 [info] Persisted ppl_sub_init for pipeline with ppl_id: a6a2da"},{"event":"cmd_output","timestamp":1607098347,"output":"d4-1767-408d-bb5f-63668052aa13: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:"},{"event":"cmd_output","timestamp":1607098347,"output":"loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 215, in_scheduling:"},{"event":"cmd_output","timestamp":1607098347,"output":" false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:27.505716], pipeline_requests: #Ecto."},{"event":"cmd_output","timestamp":1607098347,"output":"Association.NotLoaded, ppl_id: \"a6a2dad4-1767-408d-bb5"},{"event":"cmd_output","timestamp":1607098347,"output":"f-63668052aa13\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_req"},{"event":"cmd_output","timestamp":1607098347,"output":"uest: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:27.505724]}\n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098347,"output":"2:27.510 [info] ppl_id: 749f47f1-5af9-4522-9d3a-226ed7020a38, type: PplRequests, event: persisted s"},{"event":"cmd_output","timestamp":1607098347,"output":"chedule request with request_token: d2c6b894-cc0f-44b2-8962-88f19fd9709d, origin: Elixir.Ppl.PplRequ"},{"event":"cmd_output","timestamp":1607098347,"output":"ests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:27.512 [info] ppl_id: 749"},{"event":"cmd_output","timestamp":1607098347,"output":"f47f1-5af9-4522-9d3a-226ed7020a38, type: PplRequests, event: persisted definition for request with r"},{"event":"cmd_output","timestamp":1607098347,"output":"equest_token: d2c6b894-cc0f-44b2-8962-88f19fd9709d, origin: Elixir.Ppl.PplRequests.Model.PplRequests"},{"event":"cmd_output","timestamp":1607098347,"output":"Queries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:27.514 [info] ppl_id: 749f47f1-5af9-4522-9d3a-"},{"event":"cmd_output","timestamp":1607098347,"output":"226ed7020a38, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098347,"output":"r.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:27.517 [info] Persisted p"},{"event":"cmd_output","timestamp":1607098347,"output":"pl_sub_init for pipeline with ppl_id: 749f47f1-5af9-4522-9d3a-226ed7020a38: %Ppl.PplSubInits.Model.P"},{"event":"cmd_output","timestamp":1607098347,"output":"plSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, err"},{"event":"cmd_output","timestamp":1607098347,"output":"or_description: nil, id: 216, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04"},{"event":"cmd_output","timestamp":1607098347,"output":" 16:12:27.516259], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"749f47f1-5af9-4522-9d3a-226ed7020a38\", recovery_count: 0, result: nil, result_"},{"event":"cmd_output","timestamp":1607098347,"output":"reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2"},{"event":"cmd_output","timestamp":1607098347,"output":"020-12-04 16:12:27.516267]}\n\u001b[0m\u001b[22m\n16:12:27.520 [info] ppl_id: 12683dff-9dfd-4aed-986e-60b4427"},{"event":"cmd_output","timestamp":1607098347,"output":"58e07, type: PplRequests, event: persisted schedule request with request_token: 0e3c6ef9-a5af-4956-a"},{"event":"cmd_output","timestamp":1607098347,"output":"633-5fdbad581b3b, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \r"},{"event":"cmd_output","timestamp":1607098347,"output":"\n\u001b[0m\u001b[22m\n16:12:27.522 [info] ppl_id: 12683dff-9dfd-4aed-986e-60b442758e07, type: PplRequests, ev"},{"event":"cmd_output","timestamp":1607098347,"output":"ent: persisted definition for request with request_token: 0e3c6ef9-a5af-4956-a633-5fdbad581b3b, orig"},{"event":"cmd_output","timestamp":1607098347,"output":"in: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:27."},{"event":"cmd_output","timestamp":1607098347,"output":"524 [info] ppl_id: 12683dff-9dfd-4aed-986e-60b442758e07, type: Ppls, state: initializing, event: in"},{"event":"cmd_output","timestamp":1607098347,"output":"itializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \r"},{"event":"cmd_output","timestamp":1607098347,"output":"\n\u001b[0m\u001b[22m\n16:12:27.528 [info] Persisted ppl_sub_init for pipeline with ppl_id: 12683dff-9dfd-4aed"},{"event":"cmd_output","timestamp":1607098347,"output":"-986e-60b442758e07: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pip"},{"event":"cmd_output","timestamp":1607098347,"output":"eline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 217, in_scheduling: false, init"},{"event":"cmd_output","timestamp":1607098347,"output":"_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:27.527747], pipeline_requests: #Ecto.Association."},{"event":"cmd_output","timestamp":1607098347,"output":"NotLoaded, ppl_id: \"12683dff-9dfd-4aed-986e-60b442758e"},{"event":"cmd_output","timestamp":1607098347,"output":"07\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, t"},{"event":"cmd_output","timestamp":1607098347,"output":"erminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:27.527755]}\n\u001b[0m\u001b[22m\n16:12:27.532 [in"},{"event":"cmd_output","timestamp":1607098347,"output":"fo] ppl_id: ceb13926-a5a6-4f58-87d9-7d07a0191b92, type: PplRequests, event: persisted schedule requ"},{"event":"cmd_output","timestamp":1607098347,"output":"est with request_token: 831c6e1f-e780-4626-b935-a509dd2d60be, origin: Elixir.Ppl.PplRequests.Model.P"},{"event":"cmd_output","timestamp":1607098347,"output":"plRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:27.533 [info] ppl_id: ceb13926-a5a6-4"},{"event":"cmd_output","timestamp":1607098347,"output":"f58-87d9-7d07a0191b92, type: PplRequests, event: persisted definition for request with request_token"},{"event":"cmd_output","timestamp":1607098347,"output":": 831c6e1f-e780-4626-b935-a509dd2d60be, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.inse"},{"event":"cmd_output","timestamp":1607098347,"output":"rt_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:27.535 [info] ppl_id: ceb13926-a5a6-4f58-87d9-7d07a0191b92"},{"event":"cmd_output","timestamp":1607098347,"output":", type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.M"},{"event":"cmd_output","timestamp":1607098347,"output":"odel.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:27.538 [info] Persisted ppl_sub_init "},{"event":"cmd_output","timestamp":1607098347,"output":"for pipeline with ppl_id: ceb13926-a5a6-4f58-87d9-7d07a0191b92: %Ppl.PplSubInits.Model.PplSubInits{_"},{"event":"cmd_output","timestamp":1607098347,"output":"_meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_descripti"},{"event":"cmd_output","timestamp":1607098347,"output":"on: nil, id: 218, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:27.53"},{"event":"cmd_output","timestamp":1607098347,"output":"7323], pipeline_requests: #Ecto.Association.NotLoaded,"},{"event":"cmd_output","timestamp":1607098347,"output":" ppl_id: \"ceb13926-a5a6-4f58-87d9-7d07a0191b92\", recovery_count: 0, result: nil, result_reason: nil,"},{"event":"cmd_output","timestamp":1607098347,"output":" state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16"},{"event":"cmd_output","timestamp":1607098347,"output":":12:27.537330]}\n\u001b[0m\u001b[22m\n16:12:27.541 [info] ppl_id: 6084631b-60bb-43eb-8757-6c35cfb666c4, type:"},{"event":"cmd_output","timestamp":1607098347,"output":" PplRequests, event: persisted schedule request with request_token: 50db6b16-db5a-47f5-93ed-6f327763"},{"event":"cmd_output","timestamp":1607098347,"output":"b21f, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098347,"output":"16:12:27.543 [info] ppl_id: 6084631b-60bb-43eb-8757-6c35cfb666c4, type: PplRequests, event: persist"},{"event":"cmd_output","timestamp":1607098347,"output":"ed definition for request with request_token: 50db6b16-db5a-47f5-93ed-6f327763b21f, origin: Elixir.P"},{"event":"cmd_output","timestamp":1607098347,"output":"pl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:27.545 [info] "},{"event":"cmd_output","timestamp":1607098347,"output":"ppl_id: 6084631b-60bb-43eb-8757-6c35cfb666c4, type: Ppls, state: initializing, event: initializing, "},{"event":"cmd_output","timestamp":1607098347,"output":"recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098347,"output":"16:12:27.548 [info] Persisted ppl_sub_init for pipeline with ppl_id: 6084631b-60bb-43eb-8757-6c35cf"},{"event":"cmd_output","timestamp":1607098347,"output":"b666c4: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_in"},{"event":"cmd_output","timestamp":1607098347,"output":"its\">, compile_task_id: nil, error_description: nil, id: 219, in_scheduling: false, init_type: \"regu"},{"event":"cmd_output","timestamp":1607098347,"output":"lar\", inserted_at: ~N[2020-12-04 16:12:27.547661], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"6084631b-60bb-43eb-8757-6c35cfb666c4\", recover"},{"event":"cmd_output","timestamp":1607098347,"output":"y_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_req"},{"event":"cmd_output","timestamp":1607098347,"output":"uest_desc: nil, updated_at: ~N[2020-12-04 16:12:27.547669]}\n\u001b[0m\u001b[22m\n16:12:27.552 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098347,"output":" f467f226-99ad-4b7e-8c7b-e0c8a90ce6b2, type: PplRequests, event: persisted schedule request with req"},{"event":"cmd_output","timestamp":1607098347,"output":"uest_token: 95bcc86a-9bde-4988-bad9-6e817cdfeef0, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQu"},{"event":"cmd_output","timestamp":1607098347,"output":"eries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:27.554 [info] ppl_id: f467f226-99ad-4b7e-8c7b-e0c"},{"event":"cmd_output","timestamp":1607098347,"output":"8a90ce6b2, type: PplRequests, event: persisted definition for request with request_token: 95bcc86a-9"},{"event":"cmd_output","timestamp":1607098347,"output":"bde-4988-bad9-6e817cdfeef0, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definitio"},{"event":"cmd_output","timestamp":1607098347,"output":"n/3(L76), \n\u001b[0m\u001b[22m\n16:12:27.556 [info] ppl_id: f467f226-99ad-4b7e-8c7b-e0c8a90ce6b2, type: Ppls"},{"event":"cmd_output","timestamp":1607098347,"output":", state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQue"},{"event":"cmd_output","timestamp":1607098347,"output":"ries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:27.559 [info] Persisted ppl_sub_init for pipeline"},{"event":"cmd_output","timestamp":1607098347,"output":" with ppl_id: f467f226-99ad-4b7e-8c7b-e0c8a90ce6b2: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ec"},{"event":"cmd_output","timestamp":1607098347,"output":"to.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id:"},{"event":"cmd_output","timestamp":1607098347,"output":" 220, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:27.558131], pipel"},{"event":"cmd_output","timestamp":1607098347,"output":"ine_requests: #Ecto.Association.NotLoaded, ppl_id: \"f4"},{"event":"cmd_output","timestamp":1607098347,"output":"67f226-99ad-4b7e-8c7b-e0c8a90ce6b2\", recovery_count: 0, result: nil, result_reason: nil, state: \"cre"},{"event":"cmd_output","timestamp":1607098347,"output":"ated\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:27.55813"},{"event":"cmd_output","timestamp":1607098347,"output":"9]}\n\u001b[0m\u001b[22m\n16:12:27.563 [info] ppl_id: 2c80744c-10bb-4119-89e8-cb6395c17dc7, type: PplRequests"},{"event":"cmd_output","timestamp":1607098347,"output":", event: persisted schedule request with request_token: ee0c4626-6984-4abc-bb89-c9f775290ad4, origin"},{"event":"cmd_output","timestamp":1607098347,"output":": Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:27.564"},{"event":"cmd_output","timestamp":1607098347,"output":" [info] ppl_id: 2c80744c-10bb-4119-89e8-cb6395c17dc7, type: PplRequests, event: persisted definitio"},{"event":"cmd_output","timestamp":1607098347,"output":"n for request with request_token: ee0c4626-6984-4abc-bb89-c9f775290ad4, origin: Elixir.Ppl.PplReques"},{"event":"cmd_output","timestamp":1607098347,"output":"ts.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:27.566 [info] ppl_id: 2c80"},{"event":"cmd_output","timestamp":1607098347,"output":"744c-10bb-4119-89e8-cb6395c17dc7, type: Ppls, state: initializing, event: initializing, recovery_cou"},{"event":"cmd_output","timestamp":1607098347,"output":"nt: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:27.569"},{"event":"cmd_output","timestamp":1607098347,"output":" [info] Persisted ppl_sub_init for pipeline with ppl_id: 2c80744c-10bb-4119-89e8-cb6395c17dc7: %Ppl"},{"event":"cmd_output","timestamp":1607098347,"output":".PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compi"},{"event":"cmd_output","timestamp":1607098347,"output":"le_task_id: nil, error_description: nil, id: 221, in_scheduling: false, init_type: \"regular\", insert"},{"event":"cmd_output","timestamp":1607098347,"output":"ed_at: ~N[2020-12-04 16:12:27.568635], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"2c80744c-10bb-4119-89e8-cb6395c17dc7\", recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098347,"output":"result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: n"},{"event":"cmd_output","timestamp":1607098347,"output":"il, updated_at: ~N[2020-12-04 16:12:27.568642]}\n\u001b[0m\u001b[22m\n16:12:27.573 [info] ppl_id: 937e64e9-a2"},{"event":"cmd_output","timestamp":1607098347,"output":"f6-4595-937d-741706413032, type: PplRequests, event: persisted schedule request with request_token: "},{"event":"cmd_output","timestamp":1607098347,"output":"3400c067-5f27-4314-8867-540b8ce0d72c, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.proces"},{"event":"cmd_output","timestamp":1607098347,"output":"s_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:27.575 [info] ppl_id: 937e64e9-a2f6-4595-937d-741706413032, t"},{"event":"cmd_output","timestamp":1607098347,"output":"ype: PplRequests, event: persisted definition for request with request_token: 3400c067-5f27-4314-886"},{"event":"cmd_output","timestamp":1607098347,"output":"7-540b8ce0d72c, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n"},{"event":"cmd_output","timestamp":1607098347,"output":"\u001b[0m\u001b[22m\n16:12:27.577 [info] ppl_id: 937e64e9-a2f6-4595-937d-741706413032, type: Ppls, state: ini"},{"event":"cmd_output","timestamp":1607098347,"output":"tializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process"},{"event":"cmd_output","timestamp":1607098347,"output":"_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:27.580 [info] Persisted ppl_sub_init for pipeline with ppl_id"},{"event":"cmd_output","timestamp":1607098347,"output":": 937e64e9-a2f6-4595-937d-741706413032: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Me"},{"event":"cmd_output","timestamp":1607098347,"output":"tadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 222, in_sch"},{"event":"cmd_output","timestamp":1607098347,"output":"eduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:27.579833], pipeline_requests"},{"event":"cmd_output","timestamp":1607098347,"output":": #Ecto.Association.NotLoaded, ppl_id: \"937e64e9-a2f6-"},{"event":"cmd_output","timestamp":1607098347,"output":"4595-937d-741706413032\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", termi"},{"event":"cmd_output","timestamp":1607098347,"output":"nate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:27.579840]}\n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098347,"output":"2m\n16:12:27.584 [info] ppl_id: b33fcf21-dced-4d27-968c-73815f2c6538, type: PplRequests, event: per"},{"event":"cmd_output","timestamp":1607098347,"output":"sisted schedule request with request_token: 4a7b7e1e-f5ca-4ab1-9177-f8fc94cdd585, origin: Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098347,"output":".PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:27.585 [info] ppl"},{"event":"cmd_output","timestamp":1607098347,"output":"_id: b33fcf21-dced-4d27-968c-73815f2c6538, type: PplRequests, event: persisted definition for reques"},{"event":"cmd_output","timestamp":1607098347,"output":"t with request_token: 4a7b7e1e-f5ca-4ab1-9177-f8fc94cdd585, origin: Elixir.Ppl.PplRequests.Model.Ppl"},{"event":"cmd_output","timestamp":1607098347,"output":"RequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:27.587 [info] ppl_id: b33fcf21-dced-4d"},{"event":"cmd_output","timestamp":1607098347,"output":"27-968c-73815f2c6538, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098347,"output":"n: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:27.590 [info] Per"},{"event":"cmd_output","timestamp":1607098347,"output":"sisted ppl_sub_init for pipeline with ppl_id: b33fcf21-dced-4d27-968c-73815f2c6538: %Ppl.PplSubInits"},{"event":"cmd_output","timestamp":1607098347,"output":".Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: "},{"event":"cmd_output","timestamp":1607098347,"output":"nil, error_description: nil, id: 223, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[20"},{"event":"cmd_output","timestamp":1607098347,"output":"20-12-04 16:12:27.589042], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"b33fcf21-dced-4d27-968c-73815f2c6538\", recovery_count: 0, result: nil,"},{"event":"cmd_output","timestamp":1607098347,"output":" result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_"},{"event":"cmd_output","timestamp":1607098347,"output":"at: ~N[2020-12-04 16:12:27.589049]}\n\u001b[0m\u001b[22m\n16:12:27.593 [info] ppl_id: 72df80f2-85f9-4bab-a04a"},{"event":"cmd_output","timestamp":1607098347,"output":"-48a786d2ecdf, type: PplRequests, event: persisted schedule request with request_token: af0b9181-667"},{"event":"cmd_output","timestamp":1607098347,"output":"c-4617-8489-f9ab80daeaed, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2"},{"event":"cmd_output","timestamp":1607098347,"output":"(L55), \n\u001b[0m\u001b[22m\n16:12:27.594 [info] ppl_id: 72df80f2-85f9-4bab-a04a-48a786d2ecdf, type: PplRequ"},{"event":"cmd_output","timestamp":1607098347,"output":"ests, event: persisted definition for request with request_token: af0b9181-667c-4617-8489-f9ab80daea"},{"event":"cmd_output","timestamp":1607098347,"output":"ed, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098347,"output":"6:12:27.596 [info] ppl_id: 72df80f2-85f9-4bab-a04a-48a786d2ecdf, type: Ppls, state: initializing, e"},{"event":"cmd_output","timestamp":1607098347,"output":"vent: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2("},{"event":"cmd_output","timestamp":1607098347,"output":"L124), \n\u001b[0m\u001b[22m\n16:12:27.599 [info] Persisted ppl_sub_init for pipeline with ppl_id: 72df80f2-8"},{"event":"cmd_output","timestamp":1607098347,"output":"5f9-4bab-a04a-48a786d2ecdf: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:load"},{"event":"cmd_output","timestamp":1607098347,"output":"ed, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 224, in_scheduling: fal"},{"event":"cmd_output","timestamp":1607098347,"output":"se, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:27.597984], pipeline_requests: #Ecto.Asso"},{"event":"cmd_output","timestamp":1607098347,"output":"ciation.NotLoaded, ppl_id: \"72df80f2-85f9-4bab-a04a-48"},{"event":"cmd_output","timestamp":1607098347,"output":"a786d2ecdf\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request"},{"event":"cmd_output","timestamp":1607098347,"output":": nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:27.597992]}\n\u001b[0m\u001b[22m\n16:12:27"},{"event":"cmd_output","timestamp":1607098347,"output":".602 [info] ppl_id: 7b8281a4-691c-4318-a92e-d8a9d30f364a, type: PplRequests, event: persisted sched"},{"event":"cmd_output","timestamp":1607098347,"output":"ule request with request_token: 9d70d9c7-ae67-435a-8fcc-590e81b37cee, origin: Elixir.Ppl.PplRequests"},{"event":"cmd_output","timestamp":1607098347,"output":".Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:27.604 [info] ppl_id: 7b8281a"},{"event":"cmd_output","timestamp":1607098347,"output":"4-691c-4318-a92e-d8a9d30f364a, type: PplRequests, event: persisted definition for request with reque"},{"event":"cmd_output","timestamp":1607098347,"output":"st_token: 9d70d9c7-ae67-435a-8fcc-590e81b37cee, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQuer"},{"event":"cmd_output","timestamp":1607098347,"output":"ies.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:27.605 [info] ppl_id: 7b8281a4-691c-4318-a92e-d8a9"},{"event":"cmd_output","timestamp":1607098347,"output":"d30f364a, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Pp"},{"event":"cmd_output","timestamp":1607098347,"output":"l.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:27.613 [info] Persisted ppl_s"},{"event":"cmd_output","timestamp":1607098347,"output":"ub_init for pipeline with ppl_id: 7b8281a4-691c-4318-a92e-d8a9d30f364a: %Ppl.PplSubInits.Model.PplSu"},{"event":"cmd_output","timestamp":1607098347,"output":"bInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_d"},{"event":"cmd_output","timestamp":1607098347,"output":"escription: nil, id: 225, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:"},{"event":"cmd_output","timestamp":1607098347,"output":"12:27.611996], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"7b8281a4-691c-4318-a92e-d8a9d30f364a\", recovery_count: 0, result: nil, result_reas"},{"event":"cmd_output","timestamp":1607098347,"output":"on: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-"},{"event":"cmd_output","timestamp":1607098347,"output":"12-04 16:12:27.612004]}\n\u001b[0m\u001b[22m\n16:12:27.616 [info] ppl_id: 2d70290c-dd55-45f4-91c1-0ed508ae7a8"},{"event":"cmd_output","timestamp":1607098347,"output":"b, type: PplRequests, event: persisted schedule request with request_token: 7a168a47-7190-4a8c-977f-"},{"event":"cmd_output","timestamp":1607098347,"output":"a5008e05a4bb, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098347,"output":"m\u001b[22m\n16:12:27.617 [info] ppl_id: 2d70290c-dd55-45f4-91c1-0ed508ae7a8b, type: PplRequests, event:"},{"event":"cmd_output","timestamp":1607098347,"output":" persisted definition for request with request_token: 7a168a47-7190-4a8c-977f-a5008e05a4bb, origin: "},{"event":"cmd_output","timestamp":1607098347,"output":"Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:27.619 "},{"event":"cmd_output","timestamp":1607098347,"output":"[info] ppl_id: 2d70290c-dd55-45f4-91c1-0ed508ae7a8b, type: Ppls, state: initializing, event: initia"},{"event":"cmd_output","timestamp":1607098347,"output":"lizing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098347,"output":"m\u001b[22m\n16:12:27.622 [info] Persisted ppl_sub_init for pipeline with ppl_id: 2d70290c-dd55-45f4-91c"},{"event":"cmd_output","timestamp":1607098347,"output":"1-0ed508ae7a8b: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipelin"},{"event":"cmd_output","timestamp":1607098347,"output":"e_sub_inits\">, compile_task_id: nil, error_description: nil, id: 226, in_scheduling: false, init_typ"},{"event":"cmd_output","timestamp":1607098347,"output":"e: \"regular\", inserted_at: ~N[2020-12-04 16:12:27.621463], pipeline_requests: #Ecto.Association.NotL"},{"event":"cmd_output","timestamp":1607098347,"output":"oaded, ppl_id: \"2d70290c-dd55-45f4-91c1-0ed508ae7a8b\","},{"event":"cmd_output","timestamp":1607098347,"output":" recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, termi"},{"event":"cmd_output","timestamp":1607098347,"output":"nate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:27.621471]}\n\u001b[0m\u001b[22m\n16:12:27.625 [info] "},{"event":"cmd_output","timestamp":1607098347,"output":" ppl_id: c20d2029-d5c4-4b7f-b2d8-90e14011f6d6, type: PplRequests, event: persisted schedule request "},{"event":"cmd_output","timestamp":1607098347,"output":"with request_token: b6c3b96f-4ad9-4f09-a82f-0465a3f705eb, origin: Elixir.Ppl.PplRequests.Model.PplRe"},{"event":"cmd_output","timestamp":1607098347,"output":"questsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:27.634 [info] ppl_id: c20d2029-d5c4-4b7f-"},{"event":"cmd_output","timestamp":1607098347,"output":"b2d8-90e14011f6d6, type: PplRequests, event: persisted definition for request with request_token: b6"},{"event":"cmd_output","timestamp":1607098347,"output":"c3b96f-4ad9-4f09-a82f-0465a3f705eb, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_d"},{"event":"cmd_output","timestamp":1607098347,"output":"efinition/3(L76), \n\u001b[0m\u001b[22m\n16:12:27.635 [info] ppl_id: c20d2029-d5c4-4b7f-b2d8-90e14011f6d6, ty"},{"event":"cmd_output","timestamp":1607098347,"output":"pe: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model"},{"event":"cmd_output","timestamp":1607098347,"output":".PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:27.638 [info] Persisted ppl_sub_init for "},{"event":"cmd_output","timestamp":1607098347,"output":"pipeline with ppl_id: c20d2029-d5c4-4b7f-b2d8-90e14011f6d6: %Ppl.PplSubInits.Model.PplSubInits{__met"},{"event":"cmd_output","timestamp":1607098347,"output":"a__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: "},{"event":"cmd_output","timestamp":1607098347,"output":"nil, id: 227, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:27.637150"},{"event":"cmd_output","timestamp":1607098347,"output":"], pipeline_requests: #Ecto.Association.NotLoaded, ppl"},{"event":"cmd_output","timestamp":1607098347,"output":"_id: \"c20d2029-d5c4-4b7f-b2d8-90e14011f6d6\", recovery_count: 0, result: nil, result_reason: nil, sta"},{"event":"cmd_output","timestamp":1607098347,"output":"te: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:"},{"event":"cmd_output","timestamp":1607098347,"output":"27.637159]}\n\u001b[0m\u001b[22m\n16:12:27.640 [info] ppl_id: c15cfe28-7d59-4daf-bcb2-55af3c517ab7, type: Ppl"},{"event":"cmd_output","timestamp":1607098347,"output":"Requests, event: persisted schedule request with request_token: fa8ad601-77b4-42ae-a0c8-5e7e930b6c4e"},{"event":"cmd_output","timestamp":1607098347,"output":", origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098347,"output":"2:27.641 [info] ppl_id: c15cfe28-7d59-4daf-bcb2-55af3c517ab7, type: PplRequests, event: persisted d"},{"event":"cmd_output","timestamp":1607098347,"output":"efinition for request with request_token: fa8ad601-77b4-42ae-a0c8-5e7e930b6c4e, origin: Elixir.Ppl.P"},{"event":"cmd_output","timestamp":1607098347,"output":"plRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:27.643 [info] ppl_"},{"event":"cmd_output","timestamp":1607098347,"output":"id: c15cfe28-7d59-4daf-bcb2-55af3c517ab7, type: Ppls, state: initializing, event: initializing, reco"},{"event":"cmd_output","timestamp":1607098347,"output":"very_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098347,"output":"2:27.645 [info] Persisted ppl_sub_init for pipeline with ppl_id: c15cfe28-7d59-4daf-bcb2-55af3c517a"},{"event":"cmd_output","timestamp":1607098347,"output":"b7: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\""},{"event":"cmd_output","timestamp":1607098347,"output":">, compile_task_id: nil, error_description: nil, id: 228, in_scheduling: false, init_type: \"regular\""},{"event":"cmd_output","timestamp":1607098347,"output":", inserted_at: ~N[2020-12-04 16:12:27.644755], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"c15cfe28-7d59-4daf-bcb2-55af3c517ab7\", recovery_co"},{"event":"cmd_output","timestamp":1607098347,"output":"unt: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request"},{"event":"cmd_output","timestamp":1607098347,"output":"_desc: nil, updated_at: ~N[2020-12-04 16:12:27.644771]}\n\u001b[0m\u001b[22m\n16:12:27.647 [info] Periodic fr"},{"event":"cmd_output","timestamp":1607098347,"output":"om module Elixir.Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.STMHandler.Initiali"},{"event":"cmd_output","timestamp":1607098347,"output":"zingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Initializin"},{"event":"cmd_output","timestamp":1607098347,"output":"gState\"]}, recurring args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], cooling_time_sec: "},{"event":"cmd_output","timestamp":1607098347,"output":"0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher_cb: #Function<0.125"},{"event":"cmd_output","timestamp":1607098347,"output":"326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :ter"},{"event":"cmd_output","timestamp":1607098347,"output":"minate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls"},{"event":"cmd_output","timestamp":1607098347,"output":", task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:27.647 [info] Periodic from module Elixir.Ppl.Ppls.STMH"},{"event":"cmd_output","timestamp":1607098347,"output":"andler.PendingState with name Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 100 ms, metric_name"},{"event":"cmd_output","timestamp":1607098347,"output":": {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args: %{allowed_states: "},{"event":"cmd_output","timestamp":1607098347,"output":"[\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, "},{"event":"cmd_output","timestamp":1607098347,"output":"observed_state: \"pending\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler.PendingState.a"},{"event":"cmd_output","timestamp":1607098347,"output":"rgs/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :reco"},{"event":"cmd_output","timestamp":1607098347,"output":"very_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098347,"output":"16:12:27.647 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.QueuingState with name Elixir.P"},{"event":"cmd_output","timestamp":1607098347,"output":"pl.Ppls.STMHandler.QueuingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-"},{"event":"cmd_output","timestamp":1607098347,"output":"STMHandler-QueuingState\"]}, recurring args: %{allowed_states: [\"queuing\", \"running\", \"done\"], coolin"},{"event":"cmd_output","timestamp":1607098347,"output":"g_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", publisher_cb: #Functi"},{"event":"cmd_output","timestamp":1607098347,"output":"on<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :"},{"event":"cmd_output","timestamp":1607098347,"output":"terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.P"},{"event":"cmd_output","timestamp":1607098347,"output":"pls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:27.648 [info] Periodic from module Elixir.Ppl.Ppls.S"},{"event":"cmd_output","timestamp":1607098347,"output":"TMHandler.RunningState with name Elixir.Ppl.Ppls.STMHandler.RunningState :: period: 100 ms, metric_n"},{"event":"cmd_output","timestamp":1607098347,"output":"ame: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring args: %{allowed_state"},{"event":"cmd_output","timestamp":1607098347,"output":"s: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observ"},{"event":"cmd_output","timestamp":1607098347,"output":"ed_state: \"running\", publisher_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler.RunningState.args/0"},{"event":"cmd_output","timestamp":1607098347,"output":">, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_"},{"event":"cmd_output","timestamp":1607098347,"output":"count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:12"},{"event":"cmd_output","timestamp":1607098347,"output":":27.648 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.StoppingState with name Elixir.Ppl.P"},{"event":"cmd_output","timestamp":1607098347,"output":"pls.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STM"},{"event":"cmd_output","timestamp":1607098347,"output":"Handler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: "},{"event":"cmd_output","timestamp":1607098347,"output":"-2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"stopping\", publisher_cb: #Function<0.718034"},{"event":"cmd_output","timestamp":1607098347,"output":"93/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_r"},{"event":"cmd_output","timestamp":1607098347,"output":"equest, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_s"},{"event":"cmd_output","timestamp":1607098347,"output":"upervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:27.648 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHa"},{"event":"cmd_output","timestamp":1607098347,"output":"ndler.CreatedState with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 100 ms, metri"},{"event":"cmd_output","timestamp":1607098347,"output":"c_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args: %{all"},{"event":"cmd_output","timestamp":1607098347,"output":"owed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubI"},{"event":"cmd_output","timestamp":1607098347,"output":"nits, observed_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminat"},{"event":"cmd_output","timestamp":1607098347,"output":"e_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.Pp"},{"event":"cmd_output","timestamp":1607098347,"output":"lSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:27.649 [info] Periodic from module Elixir.Ppl."},{"event":"cmd_output","timestamp":1607098347,"output":"PplSubInits.STMHandler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler.FetchingState :: pe"},{"event":"cmd_output","timestamp":1607098347,"output":"riod: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, r"},{"event":"cmd_output","timestamp":1607098347,"output":"ecurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"done\"], cooling_time_sec: -2, init"},{"event":"cmd_output","timestamp":1607098347,"output":"ial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fetching\", publisher_cb: :skip, repo:"},{"event":"cmd_output","timestamp":1607098347,"output":" Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :"},{"event":"cmd_output","timestamp":1607098347,"output":"ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:27.649"},{"event":"cmd_output","timestamp":1607098347,"output":" [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CompilationState with name Elixir.Pp"},{"event":"cmd_output","timestamp":1607098347,"output":"l.PplSubInits.STMHandler.CompilationState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", ["},{"event":"cmd_output","timestamp":1607098347,"output":"\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurring args: %{allowed_states: [\"regular_init\", "},{"event":"cmd_output","timestamp":1607098347,"output":"\"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSu"},{"event":"cmd_output","timestamp":1607098347,"output":"bInits, observed_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :te"},{"event":"cmd_output","timestamp":1607098347,"output":"rminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Mo"},{"event":"cmd_output","timestamp":1607098347,"output":"del.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:27.649 [info] Periodic from module Elixi"},{"event":"cmd_output","timestamp":1607098347,"output":"r.Ppl.PplSubInits.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHandler.RegularIni"},{"event":"cmd_output","timestamp":1607098347,"output":"tState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-Regular"},{"event":"cmd_output","timestamp":1607098347,"output":"InitState\"]}, recurring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, initial_query: Ppl.Pp"},{"event":"cmd_output","timestamp":1607098347,"output":"lSubInits.Model.PplSubInits, observed_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo"},{"event":"cmd_output","timestamp":1607098347,"output":", returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], sche"},{"event":"cmd_output","timestamp":1607098347,"output":"ma: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:27.650 [info] Peri"},{"event":"cmd_output","timestamp":1607098347,"output":"odic from module Elixir.Ppl.PplBlocks.STMHandler.InitializingState with name Elixir.Ppl.PplBlocks.ST"},{"event":"cmd_output","timestamp":1607098347,"output":"MHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-"},{"event":"cmd_output","timestamp":1607098347,"output":"STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"waiting\", \"done"},{"event":"cmd_output","timestamp":1607098347,"output":"\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"initializing"},{"event":"cmd_output","timestamp":1607098347,"output":"\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state"},{"event":"cmd_output","timestamp":1607098347,"output":", :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supe"},{"event":"cmd_output","timestamp":1607098347,"output":"rvisor: :skip}\n\u001b[0m\u001b[22m\n16:12:27.650 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler"},{"event":"cmd_output","timestamp":1607098347,"output":".WaitingState with name Elixir.Ppl.PplBlocks.STMHandler.WaitingState :: period: 1000 ms, metric_name"},{"event":"cmd_output","timestamp":1607098347,"output":": {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurring args: %{allowed_sta"},{"event":"cmd_output","timestamp":1607098347,"output":"tes: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBloc"},{"event":"cmd_output","timestamp":1607098347,"output":"ks, observed_state: \"waiting\", publisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.STMHandler.Waiti"},{"event":"cmd_output","timestamp":1607098347,"output":"ngState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :resu"},{"event":"cmd_output","timestamp":1607098347,"output":"lt, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor:"},{"event":"cmd_output","timestamp":1607098347,"output":" :skip}\n\u001b[0m\u001b[22m\n16:12:27.650 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.Runnin"},{"event":"cmd_output","timestamp":1607098347,"output":"gState with name Elixir.Ppl.PplBlocks.STMHandler.RunningState :: period: 1000 ms, metric_name: {\"Ppl"},{"event":"cmd_output","timestamp":1607098347,"output":".beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\""},{"event":"cmd_output","timestamp":1607098347,"output":"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, o"},{"event":"cmd_output","timestamp":1607098347,"output":"bserved_state: \"running\", publisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHandler.RunningSt"},{"event":"cmd_output","timestamp":1607098347,"output":"ate.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, "},{"event":"cmd_output","timestamp":1607098347,"output":":recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supe"},{"event":"cmd_output","timestamp":1607098347,"output":"rvisor: :skip}\n\u001b[0m\u001b[22m\n16:12:27.651 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler"},{"event":"cmd_output","timestamp":1607098347,"output":".StoppingState with name Elixir.Ppl.PplBlocks.STMHandler.StoppingState :: period: 1000 ms, metric_na"},{"event":"cmd_output","timestamp":1607098347,"output":"me: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_"},{"event":"cmd_output","timestamp":1607098347,"output":"states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, ob"},{"event":"cmd_output","timestamp":1607098347,"output":"served_state: \"stopping\", publisher_cb: #Function<0.104215991/1 in Ppl.PplBlocks.STMHandler.Stopping"},{"event":"cmd_output","timestamp":1607098347,"output":"State.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result"},{"event":"cmd_output","timestamp":1607098347,"output":", :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_su"},{"event":"cmd_output","timestamp":1607098347,"output":"pervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:27.651 [info] Periodic from module Elixir.Block.Blocks.STMHandle"},{"event":"cmd_output","timestamp":1607098347,"output":"r.InitializingState with name Elixir.Block.Blocks.STMHandler.InitializingState :: period: 100 ms, me"},{"event":"cmd_output","timestamp":1607098347,"output":"tric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, recurring args: "},{"event":"cmd_output","timestamp":1607098347,"output":"%{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Blocks.Model.Blocks"},{"event":"cmd_output","timestamp":1607098347,"output":", observed_state: \"initializing\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :termi"},{"event":"cmd_output","timestamp":1607098347,"output":"nate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, t"},{"event":"cmd_output","timestamp":1607098347,"output":"ask_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:27.651 [info] Periodic from module Elixir.Block.Blocks.STM"},{"event":"cmd_output","timestamp":1607098347,"output":"Handler.RunningState with name Elixir.Block.Blocks.STMHandler.RunningState :: period: 100 ms, metric"},{"event":"cmd_output","timestamp":1607098347,"output":"_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-RunningState\"]}, recurring args: %{allowed"},{"event":"cmd_output","timestamp":1607098347,"output":"_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Bl"},{"event":"cmd_output","timestamp":1607098347,"output":"ocks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :termin"},{"event":"cmd_output","timestamp":1607098347,"output":"ate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, ta"},{"event":"cmd_output","timestamp":1607098347,"output":"sk_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:27.651 [info] Periodic from module Elixir.Block.Blocks.STMH"},{"event":"cmd_output","timestamp":1607098347,"output":"andler.StoppingState with name Elixir.Block.Blocks.STMHandler.StoppingState :: period: 100 ms, metri"},{"event":"cmd_output","timestamp":1607098347,"output":"c_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-StoppingState\"]}, recurring args: %{allow"},{"event":"cmd_output","timestamp":1607098347,"output":"ed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, obs"},{"event":"cmd_output","timestamp":1607098347,"output":"erved_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_requ"},{"event":"cmd_output","timestamp":1607098347,"output":"est, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_super"},{"event":"cmd_output","timestamp":1607098347,"output":"visor: :skip}\n\u001b[0m\u001b[22m\n16:12:27.651 [info] Periodic from module Elixir.Block.Tasks.STMHandler.Pe"},{"event":"cmd_output","timestamp":1607098347,"output":"ndingState with name Elixir.Block.Tasks.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Pp"},{"event":"cmd_output","timestamp":1607098347,"output":"l.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"r"},{"event":"cmd_output","timestamp":1607098347,"output":"unning\", \"done\"], cooling_time_sec: 0, initial_query: Block.Tasks.Model.Tasks, observed_state: \"pend"},{"event":"cmd_output","timestamp":1607098347,"output":"ing\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :"},{"event":"cmd_output","timestamp":1607098347,"output":"state, :recovery_count, :block_id, :build_request_id], schema: Block.Tasks.Model.Tasks, task_supervi"},{"event":"cmd_output","timestamp":1607098347,"output":"sor: :skip}\n\u001b[0m\u001b[22m\n16:12:27.651 [info] Periodic from module Elixir.Block.Tasks.STMHandler.Runn"},{"event":"cmd_output","timestamp":1607098347,"output":"ingState with name Elixir.Block.Tasks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl."},{"event":"cmd_output","timestamp":1607098347,"output":"beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"run"},{"event":"cmd_output","timestamp":1607098347,"output":"ning\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_s"},{"event":"cmd_output","timestamp":1607098347,"output":"tate: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :up"},{"event":"cmd_output","timestamp":1607098347,"output":"dated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :sk"},{"event":"cmd_output","timestamp":1607098347,"output":"ip}\n\u001b[0m\u001b[22m\n16:12:27.652 [info] Periodic from module Elixir.Block.Tasks.STMHandler.StoppingStat"},{"event":"cmd_output","timestamp":1607098347,"output":"e with name Elixir.Block.Tasks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.behold"},{"event":"cmd_output","timestamp":1607098347,"output":"er-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping"},{"event":"cmd_output","timestamp":1607098347,"output":"\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"stopping\""},{"event":"cmd_output","timestamp":1607098347,"output":", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :stat"},{"event":"cmd_output","timestamp":1607098347,"output":"e, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098347,"output":"\n16:12:27.762 [info] ppl_id: 28b0b7b7-ba29-49a0-aa3f-ca1860acc9f8, type: PplRequests, event: persis"},{"event":"cmd_output","timestamp":1607098347,"output":"ted source_args for pipeline: 28b0b7b7-ba29-49a0-aa3f-ca1860acc9f8, origin: Elixir.Ppl.PplRequests.M"},{"event":"cmd_output","timestamp":1607098347,"output":"odel.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:27.764 [info] ppl_id: 28b0b7b7-ba2"},{"event":"cmd_output","timestamp":1607098347,"output":"9-49a0-aa3f-ca1860acc9f8, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count"},{"event":"cmd_output","timestamp":1607098347,"output":": 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:27.782 [info] ppl_i"},{"event":"cmd_output","timestamp":1607098347,"output":"d: 28b0b7b7-ba29-49a0-aa3f-ca1860acc9f8, type: PplSubInits, state: regular_init, event: exit_schedul"},{"event":"cmd_output","timestamp":1607098347,"output":"ing, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:2"},{"event":"cmd_output","timestamp":1607098347,"output":"7.810 [info] ppl_id: 28b0b7b7-ba29-49a0-aa3f-ca1860acc9f8, type: PplRequests, event: persisted defi"},{"event":"cmd_output","timestamp":1607098347,"output":"nition for request with request_token: ec2df3cc-785a-43ad-b6ec-fd8ecf407a51, origin: Elixir.Ppl.PplR"},{"event":"cmd_output","timestamp":1607098347,"output":"equests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:27.819 [info] Queue p"},{"event":"cmd_output","timestamp":1607098347,"output":"ersisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserte"},{"event":"cmd_output","timestamp":1607098347,"output":"d_at: ~N[2020-12-04 16:12:27.818594], name: \"master-.semaphore/semaphore.yml\", organization_id: \"f9a"},{"event":"cmd_output","timestamp":1607098347,"output":"f9387-5a62-4256-8056-4f50af393056\", project_id: \"123\", queue_id: \"ba345962-823e-4a5e-9317-49016f4104"},{"event":"cmd_output","timestamp":1607098347,"output":"3b\", scope: \"project\", updated_at: ~N[2020-12-04 16:12:27.818602], user_generated: false}}\n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098347,"output":"m\n16:12:27.824 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.a"},{"event":"cmd_output","timestamp":1607098347,"output":"ll_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:27.824 [info] ppl_id: 28b0b7b7-ba29-49a0-aa3f-ca1860acc9f8, type"},{"event":"cmd_output","timestamp":1607098347,"output":": PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098347,"output":"Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:27.826 [info] ppl_i"},{"event":"cmd_output","timestamp":1607098347,"output":"d: 28b0b7b7-ba29-49a0-aa3f-ca1860acc9f8, type: PplSubInits, state: done, result: passed, event: exit"},{"event":"cmd_output","timestamp":1607098347,"output":"_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098347,"output":"\n16:12:27.838 [info] ppl_id: 28b0b7b7-ba29-49a0-aa3f-ca1860acc9f8, type: PplBlocks, block_index: 0,"},{"event":"cmd_output","timestamp":1607098347,"output":" state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state"},{"event":"cmd_output","timestamp":1607098347,"output":"_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:27.840 [info] ppl_id: 28b0b7b7-ba29-49a0-aa3f-ca1860acc9f8, type"},{"event":"cmd_output","timestamp":1607098347,"output":": Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.lo"},{"event":"cmd_output","timestamp":1607098347,"output":"g_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:27.852 [info] ppl_id: 28b0b7b7-ba29-49a0-aa3f-ca1860acc9f"},{"event":"cmd_output","timestamp":1607098347,"output":"8, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM."},{"event":"cmd_output","timestamp":1607098347,"output":"Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:27.867 [info] ppl_id: 28b0b7b7-ba29-49a0-aa3f-ca18"},{"event":"cmd_output","timestamp":1607098347,"output":"60acc9f8, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loop"},{"event":"cmd_output","timestamp":1607098347,"output":"er.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:27.874 [info] PplBlocks WaitingState STM is"},{"event":"cmd_output","timestamp":1607098347,"output":" scheduling block 0 from pipeline: \"28b0b7b7-ba29-49a0-aa3f-ca1860acc9f8\"\n\u001b[0m\u001b[22m\n16:12:27.878 ["},{"event":"cmd_output","timestamp":1607098347,"output":"info] ppl_id: a6a2dad4-1767-408d-bb5f-63668052aa13, type: PplRequests, event: persisted source_args"},{"event":"cmd_output","timestamp":1607098347,"output":" for pipeline: a6a2dad4-1767-408d-bb5f-63668052aa13, origin: Elixir.Ppl.PplRequests.Model.PplRequest"},{"event":"cmd_output","timestamp":1607098347,"output":"sQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:27.881 [info] ppl_id: a6a2dad4-1767-408d-bb5f-636"},{"event":"cmd_output","timestamp":1607098347,"output":"68052aa13, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098347,"output":"ixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:27.881 [info] block_id: 0f06ba4d-4"},{"event":"cmd_output","timestamp":1607098347,"output":"e8b-4941-a648-f0ba679033e7, type: BlockRequests, event: persisted block run request from ppl 28b0b7b"},{"event":"cmd_output","timestamp":1607098347,"output":"7-ba29-49a0-aa3f-ca1860acc9f8 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQue"},{"event":"cmd_output","timestamp":1607098347,"output":"ries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:27.885 [info] block_id: 0f06ba4d-4e8b-4941-a648-f0"},{"event":"cmd_output","timestamp":1607098347,"output":"ba679033e7, type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098347,"output":"r.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:27.887 [info] Block 0 of pipel"},{"event":"cmd_output","timestamp":1607098347,"output":"ine with id: 28b0b7b7-ba29-49a0-aa3f-ca1860acc9f8 scheduled in block service with id: : \"0f06ba4d-4e"},{"event":"cmd_output","timestamp":1607098347,"output":"8b-4941-a648-f0ba679033e7\"\n\u001b[0m\u001b[22m\n16:12:27.891 [info] ppl_id: 28b0b7b7-ba29-49a0-aa3f-ca1860ac"},{"event":"cmd_output","timestamp":1607098347,"output":"c9f8, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098347,"output":"igin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:27.895 [info] block_id: 0f"},{"event":"cmd_output","timestamp":1607098347,"output":"06ba4d-4e8b-4941-a648-f0ba679033e7, type: BlockRequests, event: persisted build and sub_ppl details "},{"event":"cmd_output","timestamp":1607098347,"output":"for block_request: 0f06ba4d-4e8b-4941-a648-f0ba679033e7, origin: Elixir.Block.BlockRequests.Model.Bl"},{"event":"cmd_output","timestamp":1607098347,"output":"ockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:27.898 [info] block_id: 0f06ba4d-4e8b-49"},{"event":"cmd_output","timestamp":1607098347,"output":"41-a648-f0ba679033e7, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098347,"output":".Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:27.900 [info] block_"},{"event":"cmd_output","timestamp":1607098347,"output":"id: 0f06ba4d-4e8b-4941-a648-f0ba679033e7, type: Blocks, state: running, event: exit_scheduling, reco"},{"event":"cmd_output","timestamp":1607098347,"output":"very_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:27.906 [in"},{"event":"cmd_output","timestamp":1607098347,"output":"fo] ppl_id: a6a2dad4-1767-408d-bb5f-63668052aa13, type: PplSubInits, state: regular_init, event: ex"},{"event":"cmd_output","timestamp":1607098347,"output":"it_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098347,"output":"m\n16:12:27.919 [info] block_id: 0f06ba4d-4e8b-4941-a648-f0ba679033e7, type: Tasks, state: running,"},{"event":"cmd_output","timestamp":1607098347,"output":" event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), "},{"event":"cmd_output","timestamp":1607098347,"output":"\n\u001b[0m\u001b[22m\n16:12:27.930 [info] ppl_id: a6a2dad4-1767-408d-bb5f-63668052aa13, type: PplRequests, e"},{"event":"cmd_output","timestamp":1607098347,"output":"vent: persisted definition for request with request_token: 6a0f4075-0654-41bd-a8f3-408ddc144929, ori"},{"event":"cmd_output","timestamp":1607098347,"output":"gin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:27"},{"event":"cmd_output","timestamp":1607098347,"output":".936 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L1"},{"event":"cmd_output","timestamp":1607098347,"output":"05), \n\u001b[0m\u001b[22m\n16:12:27.936 [info] ppl_id: a6a2dad4-1767-408d-bb5f-63668052aa13, type: PplBlocks"},{"event":"cmd_output","timestamp":1607098347,"output":", block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubI"},{"event":"cmd_output","timestamp":1607098347,"output":"nits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:27.937 [info] ppl_id: a6a2dad4"},{"event":"cmd_output","timestamp":1607098347,"output":"-1767-408d-bb5f-63668052aa13, type: PplSubInits, state: done, result: passed, event: exit_scheduling"},{"event":"cmd_output","timestamp":1607098347,"output":", recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:27.9"},{"event":"cmd_output","timestamp":1607098347,"output":"44 [info] ppl_id: a6a2dad4-1767-408d-bb5f-63668052aa13, type: Ppls, state: pending, event: exit_sch"},{"event":"cmd_output","timestamp":1607098347,"output":"eduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098347,"output":"12:27.947 [info] ppl_id: a6a2dad4-1767-408d-bb5f-63668052aa13, type: PplBlocks, block_index: 0, sta"},{"event":"cmd_output","timestamp":1607098347,"output":"te: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_cha"},{"event":"cmd_output","timestamp":1607098347,"output":"nge/1(L90), \n\u001b[0m\u001b[22m\n16:12:27.958 [info] ppl_id: a6a2dad4-1767-408d-bb5f-63668052aa13, type: Pp"},{"event":"cmd_output","timestamp":1607098347,"output":"ls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_st"},{"event":"cmd_output","timestamp":1607098347,"output":"ate_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:27.981 [info] block_id: 0f06ba4d-4e8b-4941-a648-f0ba679033e7,"},{"event":"cmd_output","timestamp":1607098347,"output":" type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl"},{"event":"cmd_output","timestamp":1607098347,"output":".log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:27.990 [info] block_id: 0f06ba4d-4e8b-4941-a648-f0ba67"},{"event":"cmd_output","timestamp":1607098347,"output":"9033e7, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper."},{"event":"cmd_output","timestamp":1607098347,"output":"STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:27.990 [info] ppl_id: 749f47f1-5af9-4522-9d3a-"},{"event":"cmd_output","timestamp":1607098347,"output":"226ed7020a38, type: PplRequests, event: persisted source_args for pipeline: 749f47f1-5af9-4522-9d3a-"},{"event":"cmd_output","timestamp":1607098347,"output":"226ed7020a38, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098347,"output":"22m\n16:12:27.994 [info] ppl_id: 749f47f1-5af9-4522-9d3a-226ed7020a38, type: PplSubInits, state: fe"},{"event":"cmd_output","timestamp":1607098347,"output":"tching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1"},{"event":"cmd_output","timestamp":1607098347,"output":"(L90), \n\u001b[0m\u001b[22m\n16:12:27.997 [info] ppl_id: 28b0b7b7-ba29-49a0-aa3f-ca1860acc9f8, block_id: 0f0"},{"event":"cmd_output","timestamp":1607098347,"output":"6ba4d-4e8b-4941-a648-f0ba679033e7, type: PplBlocks, block_index: 0, state: done, result: passed, eve"},{"event":"cmd_output","timestamp":1607098347,"output":"nt: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b["},{"event":"cmd_output","timestamp":1607098348,"output":"0m\u001b[22m\n16:12:28.012 [info] ppl_id: 28b0b7b7-ba29-49a0-aa3f-ca1860acc9f8, type: Ppls, state: done,"},{"event":"cmd_output","timestamp":1607098348,"output":" result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state"},{"event":"cmd_output","timestamp":1607098348,"output":"_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.027 [info] ppl_id: 749f47f1-5af9-4522-9d3a-226ed7020a38, type"},{"event":"cmd_output","timestamp":1607098348,"output":": PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper"},{"event":"cmd_output","timestamp":1607098348,"output":".STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.047 [info] ppl_id: 749f47f1-5af9-4522-9d3a"},{"event":"cmd_output","timestamp":1607098348,"output":"-226ed7020a38, type: PplRequests, event: persisted definition for request with request_token: d2c6b8"},{"event":"cmd_output","timestamp":1607098348,"output":"94-cc0f-44b2-8962-88f19fd9709d, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_defin"},{"event":"cmd_output","timestamp":1607098348,"output":"ition/3(L76), \n\u001b[0m\u001b[22m\n16:12:28.052 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHa"},{"event":"cmd_output","timestamp":1607098348,"output":"ndler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:28.052 [info] ppl_id: 749f47f1-5af9-4522"},{"event":"cmd_output","timestamp":1607098348,"output":"-9d3a-226ed7020a38, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_c"},{"event":"cmd_output","timestamp":1607098348,"output":"ount: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098348,"output":":12:28.054 [info] ppl_id: 749f47f1-5af9-4522-9d3a-226ed7020a38, type: PplSubInits, state: done, res"},{"event":"cmd_output","timestamp":1607098348,"output":"ult: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_cha"},{"event":"cmd_output","timestamp":1607098348,"output":"nge/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.061 [info] ppl_id: 749f47f1-5af9-4522-9d3a-226ed7020a38, type: Pp"},{"event":"cmd_output","timestamp":1607098348,"output":"lBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098348,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.061 [info] ppl_id: 749f47f1-5af9-4522"},{"event":"cmd_output","timestamp":1607098348,"output":"-9d3a-226ed7020a38, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: E"},{"event":"cmd_output","timestamp":1607098348,"output":"lixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.067 [info] ppl_id: 749f47f1-5a"},{"event":"cmd_output","timestamp":1607098348,"output":"f9-4522-9d3a-226ed7020a38, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098348,"output":"igin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.078 [info] ppl_id: a6a2"},{"event":"cmd_output","timestamp":1607098348,"output":"dad4-1767-408d-bb5f-63668052aa13, type: Ppls, state: running, event: exit_scheduling, recovery_count"},{"event":"cmd_output","timestamp":1607098348,"output":": 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.085 [info] PplBl"},{"event":"cmd_output","timestamp":1607098348,"output":"ocks WaitingState STM is scheduling block 0 from pipeline: \"a6a2dad4-1767-408d-bb5f-63668052aa13\"\n\u001b"},{"event":"cmd_output","timestamp":1607098348,"output":"[0m\u001b[22m\n16:12:28.093 [info] block_id: 5073be06-0502-422a-a4d9-f7905b9968b6, type: BlockRequests, "},{"event":"cmd_output","timestamp":1607098348,"output":"event: persisted block run request from ppl a6a2dad4-1767-408d-bb5f-63668052aa13 for block 0, origin"},{"event":"cmd_output","timestamp":1607098348,"output":": Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:"},{"event":"cmd_output","timestamp":1607098348,"output":"28.095 [info] block_id: 5073be06-0502-422a-a4d9-f7905b9968b6, type: Blocks, state: initializing, ev"},{"event":"cmd_output","timestamp":1607098348,"output":"ent: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43),"},{"event":"cmd_output","timestamp":1607098348,"output":" \n\u001b[0m\u001b[22m\n16:12:28.098 [info] Block 0 of pipeline with id: a6a2dad4-1767-408d-bb5f-63668052aa13"},{"event":"cmd_output","timestamp":1607098348,"output":" scheduled in block service with id: : \"5073be06-0502-422a-a4d9-f7905b9968b6\"\n\u001b[0m\u001b[22m\n16:12:28.1"},{"event":"cmd_output","timestamp":1607098348,"output":"00 [info] ppl_id: a6a2dad4-1767-408d-bb5f-63668052aa13, type: PplBlocks, block_index: 0, state: run"},{"event":"cmd_output","timestamp":1607098348,"output":"ning, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098348,"output":"90), \n\u001b[0m\u001b[22m\n16:12:28.103 [info] ppl_id: 12683dff-9dfd-4aed-986e-60b442758e07, type: PplReques"},{"event":"cmd_output","timestamp":1607098348,"output":"ts, event: persisted source_args for pipeline: 12683dff-9dfd-4aed-986e-60b442758e07, origin: Elixir."},{"event":"cmd_output","timestamp":1607098348,"output":"Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:28.103 [info] blo"},{"event":"cmd_output","timestamp":1607098348,"output":"ck_id: 5073be06-0502-422a-a4d9-f7905b9968b6, type: BlockRequests, event: persisted build and sub_ppl"},{"event":"cmd_output","timestamp":1607098348,"output":" details for block_request: 5073be06-0502-422a-a4d9-f7905b9968b6, origin: Elixir.Block.BlockRequests"},{"event":"cmd_output","timestamp":1607098348,"output":".Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:28.110 [info] ppl_id: 12683dff-"},{"event":"cmd_output","timestamp":1607098348,"output":"9dfd-4aed-986e-60b442758e07, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_co"},{"event":"cmd_output","timestamp":1607098348,"output":"unt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.111 [info] bl"},{"event":"cmd_output","timestamp":1607098348,"output":"ock_id: 5073be06-0502-422a-a4d9-f7905b9968b6, type: Tasks, state: pending, event: created, recovery_"},{"event":"cmd_output","timestamp":1607098348,"output":"count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098348,"output":"12:28.113 [info] block_id: 5073be06-0502-422a-a4d9-f7905b9968b6, type: Blocks, state: running, even"},{"event":"cmd_output","timestamp":1607098348,"output":"t: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098348,"output":"m\u001b[22m\n16:12:28.130 [info] block_id: 5073be06-0502-422a-a4d9-f7905b9968b6, type: Tasks, state: run"},{"event":"cmd_output","timestamp":1607098348,"output":"ning, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098348,"output":"90), \n\u001b[0m\u001b[22m\n16:12:28.132 [info] ppl_id: 12683dff-9dfd-4aed-986e-60b442758e07, type: PplSubIni"},{"event":"cmd_output","timestamp":1607098348,"output":"ts, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.l"},{"event":"cmd_output","timestamp":1607098348,"output":"og_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.154 [info] ppl_id: 12683dff-9dfd-4aed-986e-60b442758e"},{"event":"cmd_output","timestamp":1607098348,"output":"07, type: PplRequests, event: persisted definition for request with request_token: 0e3c6ef9-a5af-495"},{"event":"cmd_output","timestamp":1607098348,"output":"6-a633-5fdbad581b3b, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76"},{"event":"cmd_output","timestamp":1607098348,"output":"), \n\u001b[0m\u001b[22m\n16:12:28.161 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.Regul"},{"event":"cmd_output","timestamp":1607098348,"output":"arInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:28.161 [info] ppl_id: 12683dff-9dfd-4aed-986e-60b44"},{"event":"cmd_output","timestamp":1607098348,"output":"2758e07, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098348,"output":"igin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:28.162 "},{"event":"cmd_output","timestamp":1607098348,"output":"[info] ppl_id: 12683dff-9dfd-4aed-986e-60b442758e07, type: PplSubInits, state: done, result: passed"},{"event":"cmd_output","timestamp":1607098348,"output":", event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90),"},{"event":"cmd_output","timestamp":1607098348,"output":" \n\u001b[0m\u001b[22m\n16:12:28.168 [info] ppl_id: 12683dff-9dfd-4aed-986e-60b442758e07, type: PplBlocks, bl"},{"event":"cmd_output","timestamp":1607098348,"output":"ock_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.I"},{"event":"cmd_output","timestamp":1607098348,"output":"mpl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.168 [info] ppl_id: 12683dff-9dfd-4aed-986e-60b44"},{"event":"cmd_output","timestamp":1607098348,"output":"2758e07, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loope"},{"event":"cmd_output","timestamp":1607098348,"output":"r.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.175 [info] ppl_id: 12683dff-9dfd-4aed-986"},{"event":"cmd_output","timestamp":1607098348,"output":"e-60b442758e07, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098348,"output":"r.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.191 [info] block_id: 5073be06-0502"},{"event":"cmd_output","timestamp":1607098348,"output":"-422a-a4d9-f7905b9968b6, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098348,"output":": Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.195 [info] block_id: 5073be"},{"event":"cmd_output","timestamp":1607098348,"output":"06-0502-422a-a4d9-f7905b9968b6, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0"},{"event":"cmd_output","timestamp":1607098348,"output":", origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.201 [info] ppl_id: "},{"event":"cmd_output","timestamp":1607098348,"output":"a6a2dad4-1767-408d-bb5f-63668052aa13, block_id: 5073be06-0502-422a-a4d9-f7905b9968b6, type: PplBlock"},{"event":"cmd_output","timestamp":1607098348,"output":"s, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: E"},{"event":"cmd_output","timestamp":1607098348,"output":"lixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.206 [info] ppl_id: a6a2dad4-17"},{"event":"cmd_output","timestamp":1607098348,"output":"67-408d-bb5f-63668052aa13, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery"},{"event":"cmd_output","timestamp":1607098348,"output":"_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.216 [info] "},{"event":"cmd_output","timestamp":1607098348,"output":" ppl_id: ceb13926-a5a6-4f58-87d9-7d07a0191b92, type: PplRequests, event: persisted source_args for p"},{"event":"cmd_output","timestamp":1607098348,"output":"ipeline: ceb13926-a5a6-4f58-87d9-7d07a0191b92, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueri"},{"event":"cmd_output","timestamp":1607098348,"output":"es.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:28.223 [info] ppl_id: ceb13926-a5a6-4f58-87d9-7d07a0191"},{"event":"cmd_output","timestamp":1607098348,"output":"b92, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098348,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.236 [info] ppl_id: ceb13926-a5a6-4f58"},{"event":"cmd_output","timestamp":1607098348,"output":"-87d9-7d07a0191b92, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: "},{"event":"cmd_output","timestamp":1607098348,"output":"0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.254 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098348,"output":" ceb13926-a5a6-4f58-87d9-7d07a0191b92, type: PplRequests, event: persisted definition for request wi"},{"event":"cmd_output","timestamp":1607098348,"output":"th request_token: 831c6e1f-e780-4626-b935-a509dd2d60be, origin: Elixir.Ppl.PplRequests.Model.PplRequ"},{"event":"cmd_output","timestamp":1607098348,"output":"estsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:28.257 [info] event: created, origin: Elix"},{"event":"cmd_output","timestamp":1607098348,"output":"ir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:28.257 [info] pp"},{"event":"cmd_output","timestamp":1607098348,"output":"l_id: ceb13926-a5a6-4f58-87d9-7d07a0191b92, type: PplBlocks, block_index: 0, state: initializing, ev"},{"event":"cmd_output","timestamp":1607098348,"output":"ent: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/"},{"event":"cmd_output","timestamp":1607098348,"output":"1(L105), \n\u001b[0m\u001b[22m\n16:12:28.259 [info] ppl_id: ceb13926-a5a6-4f58-87d9-7d07a0191b92, type: PplSu"},{"event":"cmd_output","timestamp":1607098348,"output":"bInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loope"},{"event":"cmd_output","timestamp":1607098348,"output":"r.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.265 [info] ppl_id: ceb13926-a5a6-4f58-87d"},{"event":"cmd_output","timestamp":1607098348,"output":"9-7d07a0191b92, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_co"},{"event":"cmd_output","timestamp":1607098348,"output":"unt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.265 [info] pp"},{"event":"cmd_output","timestamp":1607098348,"output":"l_id: ceb13926-a5a6-4f58-87d9-7d07a0191b92, type: Ppls, state: pending, event: exit_scheduling, reco"},{"event":"cmd_output","timestamp":1607098348,"output":"very_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.275 [in"},{"event":"cmd_output","timestamp":1607098348,"output":"fo] ppl_id: ceb13926-a5a6-4f58-87d9-7d07a0191b92, type: Ppls, state: queuing, event: exit_schedulin"},{"event":"cmd_output","timestamp":1607098348,"output":"g, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28."},{"event":"cmd_output","timestamp":1607098348,"output":"284 [info] ppl_id: 749f47f1-5af9-4522-9d3a-226ed7020a38, type: Ppls, state: running, event: exit_sc"},{"event":"cmd_output","timestamp":1607098348,"output":"heduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098348,"output":":12:28.289 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"749f47f1-5af9-45"},{"event":"cmd_output","timestamp":1607098348,"output":"22-9d3a-226ed7020a38\"\n\u001b[0m\u001b[22m\n16:12:28.292 [info] block_id: 641e76bd-2cbd-42fb-8d0e-e514caabbc4"},{"event":"cmd_output","timestamp":1607098348,"output":"f, type: BlockRequests, event: persisted block run request from ppl 749f47f1-5af9-4522-9d3a-226ed702"},{"event":"cmd_output","timestamp":1607098348,"output":"0a38 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L"},{"event":"cmd_output","timestamp":1607098348,"output":"35), \n\u001b[0m\u001b[22m\n16:12:28.294 [info] block_id: 641e76bd-2cbd-42fb-8d0e-e514caabbc4f, type: Blocks,"},{"event":"cmd_output","timestamp":1607098348,"output":" state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.Bloc"},{"event":"cmd_output","timestamp":1607098348,"output":"ksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:28.295 [info] Block 0 of pipeline with id: 749f47f1-5af"},{"event":"cmd_output","timestamp":1607098348,"output":"9-4522-9d3a-226ed7020a38 scheduled in block service with id: : \"641e76bd-2cbd-42fb-8d0e-e514caabbc4f"},{"event":"cmd_output","timestamp":1607098348,"output":"\"\n\u001b[0m\u001b[22m\n16:12:28.297 [info] ppl_id: 749f47f1-5af9-4522-9d3a-226ed7020a38, type: PplBlocks, bl"},{"event":"cmd_output","timestamp":1607098348,"output":"ock_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.I"},{"event":"cmd_output","timestamp":1607098348,"output":"mpl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.299 [info] block_id: 641e76bd-2cbd-42fb-8d0e-e51"},{"event":"cmd_output","timestamp":1607098348,"output":"4caabbc4f, type: BlockRequests, event: persisted build and sub_ppl details for block_request: 641e76"},{"event":"cmd_output","timestamp":1607098348,"output":"bd-2cbd-42fb-8d0e-e514caabbc4f, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert"},{"event":"cmd_output","timestamp":1607098348,"output":"_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:28.302 [info] block_id: 641e76bd-2cbd-42fb-8d0e-e514caabbc4f, typ"},{"event":"cmd_output","timestamp":1607098348,"output":"e: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler."},{"event":"cmd_output","timestamp":1607098348,"output":"InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:28.304 [info] block_id: 641e76bd-2cbd-42fb-8d"},{"event":"cmd_output","timestamp":1607098348,"output":"0e-e514caabbc4f, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098348,"output":"ixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.316 [info] block_id: 641e76bd-2"},{"event":"cmd_output","timestamp":1607098348,"output":"cbd-42fb-8d0e-e514caabbc4f, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098348,"output":"origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.330 [info] ppl_id: 60"},{"event":"cmd_output","timestamp":1607098348,"output":"84631b-60bb-43eb-8757-6c35cfb666c4, type: PplRequests, event: persisted source_args for pipeline: 60"},{"event":"cmd_output","timestamp":1607098348,"output":"84631b-60bb-43eb-8757-6c35cfb666c4, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_s"},{"event":"cmd_output","timestamp":1607098348,"output":"ource/2(L89), \n\u001b[0m\u001b[22m\n16:12:28.331 [info] ppl_id: 6084631b-60bb-43eb-8757-6c35cfb666c4, type: "},{"event":"cmd_output","timestamp":1607098348,"output":"PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.I"},{"event":"cmd_output","timestamp":1607098348,"output":"mpl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.352 [info] ppl_id: 6084631b-60bb-43eb-8757-6c35c"},{"event":"cmd_output","timestamp":1607098348,"output":"fb666c4, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098348,"output":"Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.368 [info] ppl_id: 6084631b-6"},{"event":"cmd_output","timestamp":1607098348,"output":"0bb-43eb-8757-6c35cfb666c4, type: PplRequests, event: persisted definition for request with request_"},{"event":"cmd_output","timestamp":1607098348,"output":"token: 50db6b16-db5a-47f5-93ed-6f327763b21f, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries"},{"event":"cmd_output","timestamp":1607098348,"output":".insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:28.375 [info] Queue persisted: {:ok, %Ppl.Queues.Mode"},{"event":"cmd_output","timestamp":1607098348,"output":"l.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:12:28.369"},{"event":"cmd_output","timestamp":1607098348,"output":"750], name: \"v1.0.2-.semaphore/semaphore.yml\", organization_id: \"59d829a6-699d-4997-b17c-4b7796f7d28"},{"event":"cmd_output","timestamp":1607098348,"output":"d\", project_id: \"123\", queue_id: \"288c9adf-6824-4c98-ac41-aaf04c7dd3e9\", scope: \"project\", updated_a"},{"event":"cmd_output","timestamp":1607098348,"output":"t: ~N[2020-12-04 16:12:28.369758], user_generated: false}}\n\u001b[0m\u001b[22m\n16:12:28.379 [info] event: c"},{"event":"cmd_output","timestamp":1607098348,"output":"reated, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098348,"output":"12:28.379 [info] ppl_id: 6084631b-60bb-43eb-8757-6c35cfb666c4, type: PplBlocks, block_index: 0, sta"},{"event":"cmd_output","timestamp":1607098348,"output":"te: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.Regul"},{"event":"cmd_output","timestamp":1607098348,"output":"arInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:28.382 [info] ppl_id: 6084631b-60bb-43eb-8757-6c35c"},{"event":"cmd_output","timestamp":1607098348,"output":"fb666c4, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098348,"output":"origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.390 [info] ppl_id: 60"},{"event":"cmd_output","timestamp":1607098348,"output":"84631b-60bb-43eb-8757-6c35cfb666c4, type: PplBlocks, block_index: 0, state: waiting, event: exit_sch"},{"event":"cmd_output","timestamp":1607098348,"output":"eduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098348,"output":"12:28.393 [info] ppl_id: 6084631b-60bb-43eb-8757-6c35cfb666c4, type: Ppls, state: pending, event: e"},{"event":"cmd_output","timestamp":1607098348,"output":"xit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098348,"output":"2m\n16:12:28.404 [info] ppl_id: 6084631b-60bb-43eb-8757-6c35cfb666c4, type: Ppls, state: queuing, e"},{"event":"cmd_output","timestamp":1607098348,"output":"vent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n"},{"event":"cmd_output","timestamp":1607098348,"output":"\u001b[0m\u001b[22m\n16:12:28.405 [info] block_id: 641e76bd-2cbd-42fb-8d0e-e514caabbc4f, type: Tasks, state: "},{"event":"cmd_output","timestamp":1607098348,"output":"done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098348,"output":"90), \n\u001b[0m\u001b[22m\n16:12:28.410 [info] block_id: 641e76bd-2cbd-42fb-8d0e-e514caabbc4f, type: Blocks,"},{"event":"cmd_output","timestamp":1607098348,"output":" state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_ch"},{"event":"cmd_output","timestamp":1607098348,"output":"ange/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.413 [info] ppl_id: 6084631b-60bb-43eb-8757-6c35cfb666c4, type: P"},{"event":"cmd_output","timestamp":1607098348,"output":"pls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_s"},{"event":"cmd_output","timestamp":1607098348,"output":"tate_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.418 [info] PplBlocks WaitingState STM is scheduling block"},{"event":"cmd_output","timestamp":1607098348,"output":" 0 from pipeline: \"6084631b-60bb-43eb-8757-6c35cfb666c4\"\n\u001b[0m\u001b[22m\n16:12:28.420 [info] ppl_id: 74"},{"event":"cmd_output","timestamp":1607098348,"output":"9f47f1-5af9-4522-9d3a-226ed7020a38, block_id: 641e76bd-2cbd-42fb-8d0e-e514caabbc4f, type: PplBlocks,"},{"event":"cmd_output","timestamp":1607098348,"output":" block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098348,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.423 [info] block_id: 7fd906b8-44"},{"event":"cmd_output","timestamp":1607098348,"output":"b8-4b7b-ac21-1fc93ee5dbd6, type: BlockRequests, event: persisted block run request from ppl 6084631b"},{"event":"cmd_output","timestamp":1607098348,"output":"-60bb-43eb-8757-6c35cfb666c4 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQuer"},{"event":"cmd_output","timestamp":1607098348,"output":"ies.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:28.425 [info] block_id: 7fd906b8-44b8-4b7b-ac21-1fc"},{"event":"cmd_output","timestamp":1607098348,"output":"93ee5dbd6, type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098348,"output":".Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:28.427 [info] Block 0 of pipeli"},{"event":"cmd_output","timestamp":1607098348,"output":"ne with id: 6084631b-60bb-43eb-8757-6c35cfb666c4 scheduled in block service with id: : \"7fd906b8-44b"},{"event":"cmd_output","timestamp":1607098348,"output":"8-4b7b-ac21-1fc93ee5dbd6\"\n\u001b[0m\u001b[22m\n16:12:28.428 [info] ppl_id: 6084631b-60bb-43eb-8757-6c35cfb66"},{"event":"cmd_output","timestamp":1607098348,"output":"6c4, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098348,"output":"gin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.433 [info] block_id: 7fd"},{"event":"cmd_output","timestamp":1607098348,"output":"906b8-44b8-4b7b-ac21-1fc93ee5dbd6, type: BlockRequests, event: persisted build and sub_ppl details f"},{"event":"cmd_output","timestamp":1607098348,"output":"or block_request: 7fd906b8-44b8-4b7b-ac21-1fc93ee5dbd6, origin: Elixir.Block.BlockRequests.Model.Blo"},{"event":"cmd_output","timestamp":1607098348,"output":"ckRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:28.434 [info] ppl_id: 749f47f1-5af9-4522-"},{"event":"cmd_output","timestamp":1607098348,"output":"9d3a-226ed7020a38, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: "},{"event":"cmd_output","timestamp":1607098348,"output":"0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.437 [info] block_i"},{"event":"cmd_output","timestamp":1607098348,"output":"d: 7fd906b8-44b8-4b7b-ac21-1fc93ee5dbd6, type: Tasks, state: pending, event: created, recovery_count"},{"event":"cmd_output","timestamp":1607098348,"output":": 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:28"},{"event":"cmd_output","timestamp":1607098348,"output":".440 [info] block_id: 7fd906b8-44b8-4b7b-ac21-1fc93ee5dbd6, type: Blocks, state: running, event: ex"},{"event":"cmd_output","timestamp":1607098348,"output":"it_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098348,"output":"m\n16:12:28.443 [info] ppl_id: f467f226-99ad-4b7e-8c7b-e0c8a90ce6b2, type: PplRequests, event: pers"},{"event":"cmd_output","timestamp":1607098348,"output":"isted source_args for pipeline: f467f226-99ad-4b7e-8c7b-e0c8a90ce6b2, origin: Elixir.Ppl.PplRequests"},{"event":"cmd_output","timestamp":1607098348,"output":".Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:28.445 [info] ppl_id: f467f226-9"},{"event":"cmd_output","timestamp":1607098348,"output":"9ad-4b7e-8c7b-e0c8a90ce6b2, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_cou"},{"event":"cmd_output","timestamp":1607098348,"output":"nt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.453 [info] blo"},{"event":"cmd_output","timestamp":1607098348,"output":"ck_id: 7fd906b8-44b8-4b7b-ac21-1fc93ee5dbd6, type: Tasks, state: running, event: exit_scheduling, re"},{"event":"cmd_output","timestamp":1607098348,"output":"covery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.470 ["},{"event":"cmd_output","timestamp":1607098348,"output":"info] ppl_id: f467f226-99ad-4b7e-8c7b-e0c8a90ce6b2, type: PplSubInits, state: regular_init, event: "},{"event":"cmd_output","timestamp":1607098348,"output":"exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098348,"output":"22m\n16:12:28.486 [info] ppl_id: f467f226-99ad-4b7e-8c7b-e0c8a90ce6b2, type: PplRequests, event: pe"},{"event":"cmd_output","timestamp":1607098348,"output":"rsisted definition for request with request_token: 95bcc86a-9bde-4988-bad9-6e817cdfeef0, origin: Eli"},{"event":"cmd_output","timestamp":1607098348,"output":"xir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:28.498 [in"},{"event":"cmd_output","timestamp":1607098348,"output":"fo] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b"},{"event":"cmd_output","timestamp":1607098348,"output":"[0m\u001b[22m\n16:12:28.498 [info] ppl_id: f467f226-99ad-4b7e-8c7b-e0c8a90ce6b2, type: PplBlocks, block_"},{"event":"cmd_output","timestamp":1607098348,"output":"index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STM"},{"event":"cmd_output","timestamp":1607098348,"output":"Handler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:28.500 [info] ppl_id: f467f226-99ad-4b"},{"event":"cmd_output","timestamp":1607098348,"output":"7e-8c7b-e0c8a90ce6b2, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recove"},{"event":"cmd_output","timestamp":1607098348,"output":"ry_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.505 [info"},{"event":"cmd_output","timestamp":1607098348,"output":"] ppl_id: f467f226-99ad-4b7e-8c7b-e0c8a90ce6b2, type: Ppls, state: pending, event: exit_scheduling,"},{"event":"cmd_output","timestamp":1607098348,"output":" recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.50"},{"event":"cmd_output","timestamp":1607098348,"output":"8 [info] ppl_id: 12683dff-9dfd-4aed-986e-60b442758e07, type: Ppls, state: running, event: exit_sche"},{"event":"cmd_output","timestamp":1607098348,"output":"duling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098348,"output":"2:28.511 [info] ppl_id: f467f226-99ad-4b7e-8c7b-e0c8a90ce6b2, type: PplBlocks, block_index: 0, stat"},{"event":"cmd_output","timestamp":1607098348,"output":"e: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chan"},{"event":"cmd_output","timestamp":1607098348,"output":"ge/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.517 [info] PplBlocks WaitingState STM is scheduling block 0 from p"},{"event":"cmd_output","timestamp":1607098348,"output":"ipeline: \"12683dff-9dfd-4aed-986e-60b442758e07\"\n\u001b[0m\u001b[22m\n16:12:28.517 [info] ppl_id: f467f226-99"},{"event":"cmd_output","timestamp":1607098348,"output":"ad-4b7e-8c7b-e0c8a90ce6b2, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098348,"output":"igin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.518 [info] block_id: 7f"},{"event":"cmd_output","timestamp":1607098348,"output":"d906b8-44b8-4b7b-ac21-1fc93ee5dbd6, type: Tasks, state: done, event: exit_scheduling, recovery_count"},{"event":"cmd_output","timestamp":1607098348,"output":": 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.525 [info] block"},{"event":"cmd_output","timestamp":1607098348,"output":"_id: 7fd906b8-44b8-4b7b-ac21-1fc93ee5dbd6, type: Blocks, state: done, event: exit_scheduling, recove"},{"event":"cmd_output","timestamp":1607098348,"output":"ry_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.527 [info"},{"event":"cmd_output","timestamp":1607098348,"output":"] block_id: d7cdd87a-9536-4f32-b0ce-601c8853437d, type: BlockRequests, event: persisted block run r"},{"event":"cmd_output","timestamp":1607098348,"output":"equest from ppl 12683dff-9dfd-4aed-986e-60b442758e07 for block 0, origin: Elixir.Block.BlockRequests"},{"event":"cmd_output","timestamp":1607098348,"output":".Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:28.529 [info] block_id: d7c"},{"event":"cmd_output","timestamp":1607098348,"output":"dd87a-9536-4f32-b0ce-601c8853437d, type: Blocks, state: initializing, event: initializing, recovery_"},{"event":"cmd_output","timestamp":1607098348,"output":"count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:28.531 ["},{"event":"cmd_output","timestamp":1607098348,"output":"info] Block 0 of pipeline with id: 12683dff-9dfd-4aed-986e-60b442758e07 scheduled in block service "},{"event":"cmd_output","timestamp":1607098348,"output":"with id: : \"d7cdd87a-9536-4f32-b0ce-601c8853437d\"\n\u001b[0m\u001b[22m\n16:12:28.534 [info] ppl_id: 6084631b-"},{"event":"cmd_output","timestamp":1607098348,"output":"60bb-43eb-8757-6c35cfb666c4, block_id: 7fd906b8-44b8-4b7b-ac21-1fc93ee5dbd6, type: PplBlocks, block_"},{"event":"cmd_output","timestamp":1607098348,"output":"index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loo"},{"event":"cmd_output","timestamp":1607098348,"output":"per.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.535 [info] ppl_id: 12683dff-9dfd-4aed-9"},{"event":"cmd_output","timestamp":1607098348,"output":"86e-60b442758e07, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_"},{"event":"cmd_output","timestamp":1607098348,"output":"count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.537 [info] "},{"event":"cmd_output","timestamp":1607098348,"output":"block_id: d7cdd87a-9536-4f32-b0ce-601c8853437d, type: BlockRequests, event: persisted build and sub_"},{"event":"cmd_output","timestamp":1607098348,"output":"ppl details for block_request: d7cdd87a-9536-4f32-b0ce-601c8853437d, origin: Elixir.Block.BlockReque"},{"event":"cmd_output","timestamp":1607098348,"output":"sts.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:28.539 [info] block_id: d7cd"},{"event":"cmd_output","timestamp":1607098348,"output":"d87a-9536-4f32-b0ce-601c8853437d, type: Tasks, state: pending, event: created, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098348,"output":"igin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:28.542 [i"},{"event":"cmd_output","timestamp":1607098348,"output":"nfo] block_id: d7cdd87a-9536-4f32-b0ce-601c8853437d, type: Blocks, state: running, event: exit_sche"},{"event":"cmd_output","timestamp":1607098348,"output":"duling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098348,"output":"2:28.547 [info] ppl_id: 6084631b-60bb-43eb-8757-6c35cfb666c4, type: Ppls, state: done, result: pass"},{"event":"cmd_output","timestamp":1607098348,"output":"ed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90"},{"event":"cmd_output","timestamp":1607098348,"output":"), \n\u001b[0m\u001b[22m\n16:12:28.558 [info] block_id: d7cdd87a-9536-4f32-b0ce-601c8853437d, type: Tasks, st"},{"event":"cmd_output","timestamp":1607098348,"output":"ate: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_ch"},{"event":"cmd_output","timestamp":1607098348,"output":"ange/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.563 [info] ppl_id: 2c80744c-10bb-4119-89e8-cb6395c17dc7, type: P"},{"event":"cmd_output","timestamp":1607098348,"output":"plRequests, event: persisted source_args for pipeline: 2c80744c-10bb-4119-89e8-cb6395c17dc7, origin:"},{"event":"cmd_output","timestamp":1607098348,"output":" Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:28.565 [in"},{"event":"cmd_output","timestamp":1607098348,"output":"fo] ppl_id: 2c80744c-10bb-4119-89e8-cb6395c17dc7, type: PplSubInits, state: fetching, event: exit_s"},{"event":"cmd_output","timestamp":1607098348,"output":"cheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098348,"output":"6:12:28.579 [info] ppl_id: 2c80744c-10bb-4119-89e8-cb6395c17dc7, type: PplSubInits, state: regular_"},{"event":"cmd_output","timestamp":1607098348,"output":"init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098348,"output":"90), \n\u001b[0m\u001b[22m\n16:12:28.598 [info] ppl_id: 2c80744c-10bb-4119-89e8-cb6395c17dc7, type: PplReques"},{"event":"cmd_output","timestamp":1607098348,"output":"ts, event: persisted definition for request with request_token: ee0c4626-6984-4abc-bb89-c9f775290ad4"},{"event":"cmd_output","timestamp":1607098348,"output":", origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098348,"output":"12:28.605 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?"},{"event":"cmd_output","timestamp":1607098348,"output":"/1(L105), \n\u001b[0m\u001b[22m\n16:12:28.605 [info] ppl_id: 2c80744c-10bb-4119-89e8-cb6395c17dc7, type: PplB"},{"event":"cmd_output","timestamp":1607098348,"output":"locks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.Pp"},{"event":"cmd_output","timestamp":1607098348,"output":"lSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:28.607 [info] ppl_id: 2c8"},{"event":"cmd_output","timestamp":1607098348,"output":"0744c-10bb-4119-89e8-cb6395c17dc7, type: PplSubInits, state: done, result: passed, event: exit_sched"},{"event":"cmd_output","timestamp":1607098348,"output":"uling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12"},{"event":"cmd_output","timestamp":1607098348,"output":":28.612 [info] ppl_id: 2c80744c-10bb-4119-89e8-cb6395c17dc7, type: PplBlocks, block_index: 0, state"},{"event":"cmd_output","timestamp":1607098348,"output":": waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chang"},{"event":"cmd_output","timestamp":1607098348,"output":"e/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.615 [info] ppl_id: 2c80744c-10bb-4119-89e8-cb6395c17dc7, type: Ppls"},{"event":"cmd_output","timestamp":1607098348,"output":", state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_stat"},{"event":"cmd_output","timestamp":1607098348,"output":"e_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.619 [info] ppl_id: f467f226-99ad-4b7e-8c7b-e0c8a90ce6b2, typ"},{"event":"cmd_output","timestamp":1607098348,"output":"e: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.l"},{"event":"cmd_output","timestamp":1607098348,"output":"og_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.621 [info] ppl_id: 2c80744c-10bb-4119-89e8-cb6395c17d"},{"event":"cmd_output","timestamp":1607098348,"output":"c7, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM"},{"event":"cmd_output","timestamp":1607098348,"output":".Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.626 [info] PplBlocks WaitingState STM is sched"},{"event":"cmd_output","timestamp":1607098348,"output":"uling block 0 from pipeline: \"f467f226-99ad-4b7e-8c7b-e0c8a90ce6b2\"\n\u001b[0m\u001b[22m\n16:12:28.630 [info] "},{"event":"cmd_output","timestamp":1607098348,"output":" block_id: d7cdd87a-9536-4f32-b0ce-601c8853437d, type: Tasks, state: done, event: exit_scheduling, r"},{"event":"cmd_output","timestamp":1607098348,"output":"ecovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.633 "},{"event":"cmd_output","timestamp":1607098348,"output":"[info] block_id: a65ea8d5-c669-4f8d-95fb-6e314b2d0d73, type: BlockRequests, event: persisted block "},{"event":"cmd_output","timestamp":1607098348,"output":"run request from ppl f467f226-99ad-4b7e-8c7b-e0c8a90ce6b2 for block 0, origin: Elixir.Block.BlockReq"},{"event":"cmd_output","timestamp":1607098348,"output":"uests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:28.637 [info] block_id"},{"event":"cmd_output","timestamp":1607098348,"output":": a65ea8d5-c669-4f8d-95fb-6e314b2d0d73, type: Blocks, state: initializing, event: initializing, reco"},{"event":"cmd_output","timestamp":1607098348,"output":"very_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:28."},{"event":"cmd_output","timestamp":1607098348,"output":"637 [info] block_id: d7cdd87a-9536-4f32-b0ce-601c8853437d, type: Blocks, state: done, event: exit_s"},{"event":"cmd_output","timestamp":1607098348,"output":"cheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098348,"output":"6:12:28.639 [info] Block 0 of pipeline with id: f467f226-99ad-4b7e-8c7b-e0c8a90ce6b2 scheduled in b"},{"event":"cmd_output","timestamp":1607098348,"output":"lock service with id: : \"a65ea8d5-c669-4f8d-95fb-6e314b2d0d73\"\n\u001b[0m\u001b[22m\n16:12:28.641 [info] ppl_"},{"event":"cmd_output","timestamp":1607098348,"output":"id: f467f226-99ad-4b7e-8c7b-e0c8a90ce6b2, type: PplBlocks, block_index: 0, state: running, event: ex"},{"event":"cmd_output","timestamp":1607098348,"output":"it_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098348,"output":"m\n16:12:28.644 [info] block_id: a65ea8d5-c669-4f8d-95fb-6e314b2d0d73, type: BlockRequests, event: "},{"event":"cmd_output","timestamp":1607098348,"output":"persisted build and sub_ppl details for block_request: a65ea8d5-c669-4f8d-95fb-6e314b2d0d73, origin:"},{"event":"cmd_output","timestamp":1607098348,"output":" Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:28.64"},{"event":"cmd_output","timestamp":1607098348,"output":"6 [info] ppl_id: 12683dff-9dfd-4aed-986e-60b442758e07, block_id: d7cdd87a-9536-4f32-b0ce-601c885343"},{"event":"cmd_output","timestamp":1607098348,"output":"7d, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098348,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.646 [info] b"},{"event":"cmd_output","timestamp":1607098348,"output":"lock_id: a65ea8d5-c669-4f8d-95fb-6e314b2d0d73, type: Tasks, state: pending, event: created, recovery"},{"event":"cmd_output","timestamp":1607098348,"output":"_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098348,"output":":12:28.649 [info] block_id: a65ea8d5-c669-4f8d-95fb-6e314b2d0d73, type: Blocks, state: running, eve"},{"event":"cmd_output","timestamp":1607098348,"output":"nt: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b["},{"event":"cmd_output","timestamp":1607098348,"output":"0m\u001b[22m\n16:12:28.663 [info] ppl_id: 12683dff-9dfd-4aed-986e-60b442758e07, type: Ppls, state: done,"},{"event":"cmd_output","timestamp":1607098348,"output":" result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state"},{"event":"cmd_output","timestamp":1607098348,"output":"_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.666 [info] block_id: a65ea8d5-c669-4f8d-95fb-6e314b2d0d73, ty"},{"event":"cmd_output","timestamp":1607098348,"output":"pe: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl"},{"event":"cmd_output","timestamp":1607098348,"output":".log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.673 [info] ppl_id: 937e64e9-a2f6-4595-937d-74170641"},{"event":"cmd_output","timestamp":1607098348,"output":"3032, type: PplRequests, event: persisted source_args for pipeline: 937e64e9-a2f6-4595-937d-74170641"},{"event":"cmd_output","timestamp":1607098348,"output":"3032, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098348,"output":"12:28.675 [info] ppl_id: 937e64e9-a2f6-4595-937d-741706413032, type: PplSubInits, state: fetching, "},{"event":"cmd_output","timestamp":1607098348,"output":"event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \r"},{"event":"cmd_output","timestamp":1607098348,"output":"\n\u001b[0m\u001b[22m\n16:12:28.687 [info] ppl_id: 937e64e9-a2f6-4595-937d-741706413032, type: PplSubInits, st"},{"event":"cmd_output","timestamp":1607098348,"output":"ate: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_sta"},{"event":"cmd_output","timestamp":1607098348,"output":"te_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.709 [info] ppl_id: 937e64e9-a2f6-4595-937d-741706413032, ty"},{"event":"cmd_output","timestamp":1607098348,"output":"pe: PplRequests, event: persisted definition for request with request_token: 3400c067-5f27-4314-8867"},{"event":"cmd_output","timestamp":1607098348,"output":"-540b8ce0d72c, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b"},{"event":"cmd_output","timestamp":1607098348,"output":"[0m\u001b[22m\n16:12:28.714 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInit"},{"event":"cmd_output","timestamp":1607098348,"output":"State.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:28.714 [info] ppl_id: 937e64e9-a2f6-4595-937d-74170641303"},{"event":"cmd_output","timestamp":1607098348,"output":"2, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098348,"output":"Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:28.716 [info]"},{"event":"cmd_output","timestamp":1607098348,"output":" ppl_id: 937e64e9-a2f6-4595-937d-741706413032, type: PplSubInits, state: done, result: passed, even"},{"event":"cmd_output","timestamp":1607098348,"output":"t: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098348,"output":"m\u001b[22m\n16:12:28.723 [info] ppl_id: 937e64e9-a2f6-4595-937d-741706413032, type: PplBlocks, block_in"},{"event":"cmd_output","timestamp":1607098348,"output":"dex: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.lo"},{"event":"cmd_output","timestamp":1607098348,"output":"g_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.728 [info] ppl_id: 937e64e9-a2f6-4595-937d-74170641303"},{"event":"cmd_output","timestamp":1607098348,"output":"2, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM."},{"event":"cmd_output","timestamp":1607098348,"output":"Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.730 [info] ppl_id: ceb13926-a5a6-4f58-87d9-7d07"},{"event":"cmd_output","timestamp":1607098348,"output":"a0191b92, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loop"},{"event":"cmd_output","timestamp":1607098348,"output":"er.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.734 [info] PplBlocks WaitingState STM is"},{"event":"cmd_output","timestamp":1607098348,"output":" scheduling block 0 from pipeline: \"ceb13926-a5a6-4f58-87d9-7d07a0191b92\"\n\u001b[0m\u001b[22m\n16:12:28.739 ["},{"event":"cmd_output","timestamp":1607098348,"output":"info] ppl_id: 937e64e9-a2f6-4595-937d-741706413032, type: Ppls, state: queuing, event: exit_schedul"},{"event":"cmd_output","timestamp":1607098348,"output":"ing, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:2"},{"event":"cmd_output","timestamp":1607098348,"output":"8.742 [info] block_id: f3cb4385-e70b-4201-8658-46fa1d4fb369, type: BlockRequests, event: persisted "},{"event":"cmd_output","timestamp":1607098348,"output":"block run request from ppl ceb13926-a5a6-4f58-87d9-7d07a0191b92 for block 0, origin: Elixir.Block.Bl"},{"event":"cmd_output","timestamp":1607098348,"output":"ockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:28.746 [info] bl"},{"event":"cmd_output","timestamp":1607098348,"output":"ock_id: f3cb4385-e70b-4201-8658-46fa1d4fb369, type: Blocks, state: initializing, event: initializing"},{"event":"cmd_output","timestamp":1607098348,"output":", recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098348,"output":"12:28.746 [info] block_id: a65ea8d5-c669-4f8d-95fb-6e314b2d0d73, type: Tasks, state: done, event: e"},{"event":"cmd_output","timestamp":1607098348,"output":"xit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098348,"output":"2m\n16:12:28.748 [info] Block 0 of pipeline with id: ceb13926-a5a6-4f58-87d9-7d07a0191b92 scheduled"},{"event":"cmd_output","timestamp":1607098348,"output":" in block service with id: : \"f3cb4385-e70b-4201-8658-46fa1d4fb369\"\n\u001b[0m\u001b[22m\n16:12:28.750 [info] "},{"event":"cmd_output","timestamp":1607098348,"output":" ppl_id: ceb13926-a5a6-4f58-87d9-7d07a0191b92, type: PplBlocks, block_index: 0, state: running, even"},{"event":"cmd_output","timestamp":1607098348,"output":"t: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098348,"output":"m\u001b[22m\n16:12:28.752 [info] block_id: a65ea8d5-c669-4f8d-95fb-6e314b2d0d73, type: Blocks, state: do"},{"event":"cmd_output","timestamp":1607098348,"output":"ne, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90"},{"event":"cmd_output","timestamp":1607098348,"output":"), \n\u001b[0m\u001b[22m\n16:12:28.754 [info] block_id: f3cb4385-e70b-4201-8658-46fa1d4fb369, type: BlockRequ"},{"event":"cmd_output","timestamp":1607098348,"output":"ests, event: persisted build and sub_ppl details for block_request: f3cb4385-e70b-4201-8658-46fa1d4f"},{"event":"cmd_output","timestamp":1607098348,"output":"b369, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098348,"output":"\n16:12:28.756 [info] block_id: f3cb4385-e70b-4201-8658-46fa1d4fb369, type: Tasks, state: pending, "},{"event":"cmd_output","timestamp":1607098348,"output":"event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/"},{"event":"cmd_output","timestamp":1607098348,"output":"1(L167), \n\u001b[0m\u001b[22m\n16:12:28.758 [info] block_id: f3cb4385-e70b-4201-8658-46fa1d4fb369, type: Blo"},{"event":"cmd_output","timestamp":1607098348,"output":"cks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_s"},{"event":"cmd_output","timestamp":1607098348,"output":"tate_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.762 [info] ppl_id: f467f226-99ad-4b7e-8c7b-e0c8a90ce6b2, "},{"event":"cmd_output","timestamp":1607098348,"output":"block_id: a65ea8d5-c669-4f8d-95fb-6e314b2d0d73, type: PplBlocks, block_index: 0, state: done, result"},{"event":"cmd_output","timestamp":1607098348,"output":": passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change"},{"event":"cmd_output","timestamp":1607098348,"output":"/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.773 [info] block_id: f3cb4385-e70b-4201-8658-46fa1d4fb369, type: Tas"},{"event":"cmd_output","timestamp":1607098348,"output":"ks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_st"},{"event":"cmd_output","timestamp":1607098348,"output":"ate_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.776 [info] ppl_id: f467f226-99ad-4b7e-8c7b-e0c8a90ce6b2, t"},{"event":"cmd_output","timestamp":1607098348,"output":"ype: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Lo"},{"event":"cmd_output","timestamp":1607098348,"output":"oper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.781 [info] ppl_id: b33fcf21-dced-4d27-"},{"event":"cmd_output","timestamp":1607098348,"output":"968c-73815f2c6538, type: PplRequests, event: persisted source_args for pipeline: b33fcf21-dced-4d27-"},{"event":"cmd_output","timestamp":1607098348,"output":"968c-73815f2c6538, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b"},{"event":"cmd_output","timestamp":1607098348,"output":"[0m\u001b[22m\n16:12:28.783 [info] ppl_id: b33fcf21-dced-4d27-968c-73815f2c6538, type: PplSubInits, stat"},{"event":"cmd_output","timestamp":1607098348,"output":"e: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_cha"},{"event":"cmd_output","timestamp":1607098348,"output":"nge/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.798 [info] ppl_id: b33fcf21-dced-4d27-968c-73815f2c6538, type: Pp"},{"event":"cmd_output","timestamp":1607098348,"output":"lSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM"},{"event":"cmd_output","timestamp":1607098348,"output":".Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.818 [info] ppl_id: b33fcf21-dced-4d27-968c-738"},{"event":"cmd_output","timestamp":1607098348,"output":"15f2c6538, type: PplRequests, event: persisted definition for request with request_token: 4a7b7e1e-f"},{"event":"cmd_output","timestamp":1607098348,"output":"5ca-4ab1-9177-f8fc94cdd585, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definitio"},{"event":"cmd_output","timestamp":1607098348,"output":"n/3(L76), \n\u001b[0m\u001b[22m\n16:12:28.824 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandle"},{"event":"cmd_output","timestamp":1607098348,"output":"r.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:28.824 [info] ppl_id: b33fcf21-dced-4d27-968"},{"event":"cmd_output","timestamp":1607098348,"output":"c-73815f2c6538, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count"},{"event":"cmd_output","timestamp":1607098348,"output":": 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:"},{"event":"cmd_output","timestamp":1607098348,"output":"28.825 [info] ppl_id: b33fcf21-dced-4d27-968c-73815f2c6538, type: PplSubInits, state: done, result:"},{"event":"cmd_output","timestamp":1607098348,"output":" passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/"},{"event":"cmd_output","timestamp":1607098348,"output":"1(L90), \n\u001b[0m\u001b[22m\n16:12:28.831 [info] ppl_id: b33fcf21-dced-4d27-968c-73815f2c6538, type: PplBlo"},{"event":"cmd_output","timestamp":1607098348,"output":"cks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loope"},{"event":"cmd_output","timestamp":1607098348,"output":"r.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.839 [info] ppl_id: b33fcf21-dced-4d27-968"},{"event":"cmd_output","timestamp":1607098348,"output":"c-73815f2c6538, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098348,"output":"r.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.841 [info] ppl_id: 2c80744c-10bb-4"},{"event":"cmd_output","timestamp":1607098348,"output":"119-89e8-cb6395c17dc7, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098348,"output":": Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.846 [info] PplBlocks Waitin"},{"event":"cmd_output","timestamp":1607098348,"output":"gState STM is scheduling block 0 from pipeline: \"2c80744c-10bb-4119-89e8-cb6395c17dc7\"\n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098348,"output":"6:12:28.852 [info] block_id: 94062711-956a-4c77-828a-ca17525b7c23, type: BlockRequests, event: pers"},{"event":"cmd_output","timestamp":1607098348,"output":"isted block run request from ppl 2c80744c-10bb-4119-89e8-cb6395c17dc7 for block 0, origin: Elixir.Bl"},{"event":"cmd_output","timestamp":1607098348,"output":"ock.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:28.855 [inf"},{"event":"cmd_output","timestamp":1607098348,"output":"o] ppl_id: b33fcf21-dced-4d27-968c-73815f2c6538, type: Ppls, state: queuing, event: exit_scheduling"},{"event":"cmd_output","timestamp":1607098348,"output":", recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.8"},{"event":"cmd_output","timestamp":1607098348,"output":"57 [info] block_id: 94062711-956a-4c77-828a-ca17525b7c23, type: Blocks, state: initializing, event:"},{"event":"cmd_output","timestamp":1607098348,"output":" initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b"},{"event":"cmd_output","timestamp":1607098348,"output":"[0m\u001b[22m\n16:12:28.864 [info] block_id: f3cb4385-e70b-4201-8658-46fa1d4fb369, type: Tasks, state: d"},{"event":"cmd_output","timestamp":1607098348,"output":"one, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L9"},{"event":"cmd_output","timestamp":1607098348,"output":"0), \n\u001b[0m\u001b[22m\n16:12:28.865 [info] Block 0 of pipeline with id: 2c80744c-10bb-4119-89e8-cb6395c17"},{"event":"cmd_output","timestamp":1607098348,"output":"dc7 scheduled in block service with id: : \"94062711-956a-4c77-828a-ca17525b7c23\"\n\u001b[0m\u001b[22m\n16:12:2"},{"event":"cmd_output","timestamp":1607098348,"output":"8.869 [info] ppl_id: 2c80744c-10bb-4119-89e8-cb6395c17dc7, type: PplBlocks, block_index: 0, state: "},{"event":"cmd_output","timestamp":1607098348,"output":"running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/"},{"event":"cmd_output","timestamp":1607098348,"output":"1(L90), \n\u001b[0m\u001b[22m\n16:12:28.871 [info] block_id: 94062711-956a-4c77-828a-ca17525b7c23, type: Bloc"},{"event":"cmd_output","timestamp":1607098348,"output":"kRequests, event: persisted build and sub_ppl details for block_request: 94062711-956a-4c77-828a-ca1"},{"event":"cmd_output","timestamp":1607098348,"output":"7525b7c23, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098348,"output":"\u001b[22m\n16:12:28.873 [info] block_id: f3cb4385-e70b-4201-8658-46fa1d4fb369, type: Blocks, state: don"},{"event":"cmd_output","timestamp":1607098348,"output":"e, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90)"},{"event":"cmd_output","timestamp":1607098348,"output":", \n\u001b[0m\u001b[22m\n16:12:28.874 [info] block_id: 94062711-956a-4c77-828a-ca17525b7c23, type: Tasks, sta"},{"event":"cmd_output","timestamp":1607098348,"output":"te: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingS"},{"event":"cmd_output","timestamp":1607098348,"output":"tate.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:28.878 [info] block_id: 94062711-956a-4c77-828a-ca17525b7c"},{"event":"cmd_output","timestamp":1607098348,"output":"23, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.S"},{"event":"cmd_output","timestamp":1607098348,"output":"TM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.882 [info] ppl_id: ceb13926-a5a6-4f58-87d9-7"},{"event":"cmd_output","timestamp":1607098348,"output":"d07a0191b92, block_id: f3cb4385-e70b-4201-8658-46fa1d4fb369, type: PplBlocks, block_index: 0, state:"},{"event":"cmd_output","timestamp":1607098348,"output":" done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098348,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.893 [info] block_id: 94062711-956a-4c77-828a-ca17525b7c"},{"event":"cmd_output","timestamp":1607098348,"output":"23, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.ST"},{"event":"cmd_output","timestamp":1607098348,"output":"M.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.894 [info] ppl_id: 72df80f2-85f9-4bab-a04a-48"},{"event":"cmd_output","timestamp":1607098348,"output":"a786d2ecdf, type: PplRequests, event: persisted source_args for pipeline: 72df80f2-85f9-4bab-a04a-48"},{"event":"cmd_output","timestamp":1607098348,"output":"a786d2ecdf, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098348,"output":"m\n16:12:28.896 [info] ppl_id: 72df80f2-85f9-4bab-a04a-48a786d2ecdf, type: PplSubInits, state: fetc"},{"event":"cmd_output","timestamp":1607098348,"output":"hing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098348,"output":"90), \n\u001b[0m\u001b[22m\n16:12:28.901 [info] ppl_id: ceb13926-a5a6-4f58-87d9-7d07a0191b92, type: Ppls, sta"},{"event":"cmd_output","timestamp":1607098348,"output":"te: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl."},{"event":"cmd_output","timestamp":1607098348,"output":"log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.915 [info] ppl_id: 72df80f2-85f9-4bab-a04a-48a786d2e"},{"event":"cmd_output","timestamp":1607098348,"output":"cdf, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098348,"output":"ir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.932 [info] ppl_id: 72df80f2-85f9-"},{"event":"cmd_output","timestamp":1607098348,"output":"4bab-a04a-48a786d2ecdf, type: PplRequests, event: persisted definition for request with request_toke"},{"event":"cmd_output","timestamp":1607098348,"output":"n: af0b9181-667c-4617-8489-f9ab80daeaed, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.ins"},{"event":"cmd_output","timestamp":1607098348,"output":"ert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:28.934 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Qu"},{"event":"cmd_output","timestamp":1607098348,"output":"eues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:12:28.933866]"},{"event":"cmd_output","timestamp":1607098348,"output":", name: \"123-.semaphore/semaphore.yml\", organization_id: \"0be6a0a4-5d43-4e66-a69a-8abddcf31c5e\", pro"},{"event":"cmd_output","timestamp":1607098348,"output":"ject_id: \"123\", queue_id: \"00b138a0-ee50-4168-9832-16a40bc0aa95\", scope: \"project\", updated_at: ~N[2"},{"event":"cmd_output","timestamp":1607098348,"output":"020-12-04 16:12:28.933875], user_generated: false}}\n\u001b[0m\u001b[22m\n16:12:28.937 [info] event: created,"},{"event":"cmd_output","timestamp":1607098348,"output":" origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:28.9"},{"event":"cmd_output","timestamp":1607098348,"output":"37 [info] ppl_id: 72df80f2-85f9-4bab-a04a-48a786d2ecdf, type: PplBlocks, block_index: 0, state: ini"},{"event":"cmd_output","timestamp":1607098348,"output":"tializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitS"},{"event":"cmd_output","timestamp":1607098348,"output":"tate.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:28.938 [info] ppl_id: 72df80f2-85f9-4bab-a04a-48a786d2ecdf"},{"event":"cmd_output","timestamp":1607098348,"output":", type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098348,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.943 [info] ppl_id: 72df80f2-"},{"event":"cmd_output","timestamp":1607098348,"output":"85f9-4bab-a04a-48a786d2ecdf, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling"},{"event":"cmd_output","timestamp":1607098348,"output":", recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.9"},{"event":"cmd_output","timestamp":1607098348,"output":"45 [info] ppl_id: 72df80f2-85f9-4bab-a04a-48a786d2ecdf, type: Ppls, state: pending, event: exit_sch"},{"event":"cmd_output","timestamp":1607098348,"output":"eduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098348,"output":"12:28.956 [info] ppl_id: 72df80f2-85f9-4bab-a04a-48a786d2ecdf, type: Ppls, state: queuing, event: e"},{"event":"cmd_output","timestamp":1607098348,"output":"xit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098348,"output":"2m\n16:12:28.965 [info] ppl_id: 72df80f2-85f9-4bab-a04a-48a786d2ecdf, type: Ppls, state: running, e"},{"event":"cmd_output","timestamp":1607098348,"output":"vent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n"},{"event":"cmd_output","timestamp":1607098348,"output":"\u001b[0m\u001b[22m\n16:12:28.969 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"72d"},{"event":"cmd_output","timestamp":1607098348,"output":"f80f2-85f9-4bab-a04a-48a786d2ecdf\"\n\u001b[0m\u001b[22m\n16:12:28.974 [info] block_id: 17017af4-ef32-4b0f-91a"},{"event":"cmd_output","timestamp":1607098348,"output":"3-f0599e940489, type: BlockRequests, event: persisted block run request from ppl 72df80f2-85f9-4bab-"},{"event":"cmd_output","timestamp":1607098348,"output":"a04a-48a786d2ecdf for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process"},{"event":"cmd_output","timestamp":1607098348,"output":"_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:28.977 [info] block_id: 17017af4-ef32-4b0f-91a3-f0599e940489, "},{"event":"cmd_output","timestamp":1607098348,"output":"type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Bloc"},{"event":"cmd_output","timestamp":1607098348,"output":"ks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:28.979 [info] block_id: 94062711-956a-4c77"},{"event":"cmd_output","timestamp":1607098348,"output":"-828a-ca17525b7c23, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098348,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.979 [info] Block 0 of pipeline w"},{"event":"cmd_output","timestamp":1607098348,"output":"ith id: 72df80f2-85f9-4bab-a04a-48a786d2ecdf scheduled in block service with id: : \"17017af4-ef32-4b"},{"event":"cmd_output","timestamp":1607098348,"output":"0f-91a3-f0599e940489\"\n\u001b[0m\u001b[22m\n16:12:28.981 [info] ppl_id: 72df80f2-85f9-4bab-a04a-48a786d2ecdf,"},{"event":"cmd_output","timestamp":1607098348,"output":" type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098348,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.983 [info] block_id: 17017af"},{"event":"cmd_output","timestamp":1607098348,"output":"4-ef32-4b0f-91a3-f0599e940489, type: BlockRequests, event: persisted build and sub_ppl details for b"},{"event":"cmd_output","timestamp":1607098348,"output":"lock_request: 17017af4-ef32-4b0f-91a3-f0599e940489, origin: Elixir.Block.BlockRequests.Model.BlockRe"},{"event":"cmd_output","timestamp":1607098348,"output":"questsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:28.985 [info] block_id: 94062711-956a-4c77-82"},{"event":"cmd_output","timestamp":1607098348,"output":"8a-ca17525b7c23, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098348,"output":"r.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.986 [info] block_id: 17017af4-ef32"},{"event":"cmd_output","timestamp":1607098348,"output":"-4b0f-91a3-f0599e940489, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098348,"output":"xir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:28.988 [info] blo"},{"event":"cmd_output","timestamp":1607098348,"output":"ck_id: 17017af4-ef32-4b0f-91a3-f0599e940489, type: Blocks, state: running, event: exit_scheduling, r"},{"event":"cmd_output","timestamp":1607098348,"output":"ecovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.993 "},{"event":"cmd_output","timestamp":1607098348,"output":"[info] ppl_id: 2c80744c-10bb-4119-89e8-cb6395c17dc7, block_id: 94062711-956a-4c77-828a-ca17525b7c23"},{"event":"cmd_output","timestamp":1607098348,"output":", type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_cou"},{"event":"cmd_output","timestamp":1607098349,"output":"nt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:29.004 [info] blo"},{"event":"cmd_output","timestamp":1607098349,"output":"ck_id: 17017af4-ef32-4b0f-91a3-f0599e940489, type: Tasks, state: running, event: exit_scheduling, re"},{"event":"cmd_output","timestamp":1607098349,"output":"covery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:29.011 ["},{"event":"cmd_output","timestamp":1607098349,"output":"info] ppl_id: 7b8281a4-691c-4318-a92e-d8a9d30f364a, type: PplRequests, event: persisted source_args"},{"event":"cmd_output","timestamp":1607098349,"output":" for pipeline: 7b8281a4-691c-4318-a92e-d8a9d30f364a, origin: Elixir.Ppl.PplRequests.Model.PplRequest"},{"event":"cmd_output","timestamp":1607098349,"output":"sQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:29.012 [info] ppl_id: 2c80744c-10bb-4119-89e8-cb6"},{"event":"cmd_output","timestamp":1607098349,"output":"395c17dc7, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098349,"output":"n: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:29.013 [info] ppl_id: 7b8281a"},{"event":"cmd_output","timestamp":1607098349,"output":"4-691c-4318-a92e-d8a9d30f364a, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_"},{"event":"cmd_output","timestamp":1607098349,"output":"count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:29.031 [info] "},{"event":"cmd_output","timestamp":1607098349,"output":"ppl_id: 7b8281a4-691c-4318-a92e-d8a9d30f364a, type: PplSubInits, state: regular_init, event: exit_sc"},{"event":"cmd_output","timestamp":1607098349,"output":"heduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098349,"output":":12:29.047 [info] ppl_id: 7b8281a4-691c-4318-a92e-d8a9d30f364a, type: PplRequests, event: persisted"},{"event":"cmd_output","timestamp":1607098349,"output":" definition for request with request_token: 9d70d9c7-ae67-435a-8fcc-590e81b37cee, origin: Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098349,"output":".PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:29.053 [info] ev"},{"event":"cmd_output","timestamp":1607098349,"output":"ent: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098349,"output":"m\n16:12:29.053 [info] ppl_id: 7b8281a4-691c-4318-a92e-d8a9d30f364a, type: PplBlocks, block_index: "},{"event":"cmd_output","timestamp":1607098349,"output":"0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler"},{"event":"cmd_output","timestamp":1607098349,"output":".RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:29.055 [info] ppl_id: 7b8281a4-691c-4318-a92e"},{"event":"cmd_output","timestamp":1607098349,"output":"-d8a9d30f364a, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_coun"},{"event":"cmd_output","timestamp":1607098349,"output":"t: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:29.055 [info] ppl_"},{"event":"cmd_output","timestamp":1607098349,"output":"id: 937e64e9-a2f6-4595-937d-741706413032, type: Ppls, state: running, event: exit_scheduling, recove"},{"event":"cmd_output","timestamp":1607098349,"output":"ry_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:29.060 [info"},{"event":"cmd_output","timestamp":1607098349,"output":"] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"937e64e9-a2f6-4595-937d-74170641"},{"event":"cmd_output","timestamp":1607098349,"output":"3032\"\n\u001b[0m\u001b[22m\n16:12:29.064 [info] ppl_id: 7b8281a4-691c-4318-a92e-d8a9d30f364a, type: PplBlocks"},{"event":"cmd_output","timestamp":1607098349,"output":", block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.S"},{"event":"cmd_output","timestamp":1607098349,"output":"TM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:29.064 [info] block_id: 7f6a97c0-dea3-48d0-a91d"},{"event":"cmd_output","timestamp":1607098349,"output":"-5856cdea9f26, type: BlockRequests, event: persisted block run request from ppl 937e64e9-a2f6-4595-9"},{"event":"cmd_output","timestamp":1607098349,"output":"37d-741706413032 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_"},{"event":"cmd_output","timestamp":1607098349,"output":"response/4(L35), \n\u001b[0m\u001b[22m\n16:12:29.066 [info] ppl_id: 7b8281a4-691c-4318-a92e-d8a9d30f364a, typ"},{"event":"cmd_output","timestamp":1607098349,"output":"e: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.l"},{"event":"cmd_output","timestamp":1607098349,"output":"og_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:29.067 [info] block_id: 7f6a97c0-dea3-48d0-a91d-5856cdea"},{"event":"cmd_output","timestamp":1607098349,"output":"9f26, type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Bloc"},{"event":"cmd_output","timestamp":1607098349,"output":"k.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:29.069 [info] Block 0 of pipeline wi"},{"event":"cmd_output","timestamp":1607098349,"output":"th id: 937e64e9-a2f6-4595-937d-741706413032 scheduled in block service with id: : \"7f6a97c0-dea3-48d"},{"event":"cmd_output","timestamp":1607098349,"output":"0-a91d-5856cdea9f26\"\n\u001b[0m\u001b[22m\n16:12:29.073 [info] ppl_id: 937e64e9-a2f6-4595-937d-741706413032, "},{"event":"cmd_output","timestamp":1607098349,"output":"type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098349,"output":"Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:29.074 [info] ppl_id: 7b8281a4-6"},{"event":"cmd_output","timestamp":1607098349,"output":"91c-4318-a92e-d8a9d30f364a, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098349,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:29.074 [info] block_id: 7"},{"event":"cmd_output","timestamp":1607098349,"output":"f6a97c0-dea3-48d0-a91d-5856cdea9f26, type: BlockRequests, event: persisted build and sub_ppl details"},{"event":"cmd_output","timestamp":1607098349,"output":" for block_request: 7f6a97c0-dea3-48d0-a91d-5856cdea9f26, origin: Elixir.Block.BlockRequests.Model.B"},{"event":"cmd_output","timestamp":1607098349,"output":"lockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:29.078 [info] block_id: 7f6a97c0-dea3-4"},{"event":"cmd_output","timestamp":1607098349,"output":"8d0-a91d-5856cdea9f26, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098349,"output":"r.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:29.080 [info] block"},{"event":"cmd_output","timestamp":1607098349,"output":"_id: 7f6a97c0-dea3-48d0-a91d-5856cdea9f26, type: Blocks, state: running, event: exit_scheduling, rec"},{"event":"cmd_output","timestamp":1607098349,"output":"overy_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:29.089 [i"},{"event":"cmd_output","timestamp":1607098349,"output":"nfo] block_id: 17017af4-ef32-4b0f-91a3-f0599e940489, type: Tasks, state: done, event: exit_scheduli"},{"event":"cmd_output","timestamp":1607098349,"output":"ng, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:29"},{"event":"cmd_output","timestamp":1607098349,"output":".092 [info] block_id: 7f6a97c0-dea3-48d0-a91d-5856cdea9f26, type: Tasks, state: running, event: exi"},{"event":"cmd_output","timestamp":1607098349,"output":"t_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098349,"output":"\n16:12:29.096 [info] block_id: 17017af4-ef32-4b0f-91a3-f0599e940489, type: Blocks, state: done, ev"},{"event":"cmd_output","timestamp":1607098349,"output":"ent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b"},{"event":"cmd_output","timestamp":1607098349,"output":"[0m\u001b[22m\n16:12:29.102 [info] ppl_id: 72df80f2-85f9-4bab-a04a-48a786d2ecdf, block_id: 17017af4-ef32"},{"event":"cmd_output","timestamp":1607098349,"output":"-4b0f-91a3-f0599e940489, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_s"},{"event":"cmd_output","timestamp":1607098349,"output":"cheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098349,"output":"6:12:29.111 [info] ppl_id: 72df80f2-85f9-4bab-a04a-48a786d2ecdf, type: Ppls, state: done, result: p"},{"event":"cmd_output","timestamp":1607098349,"output":"assed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1("},{"event":"cmd_output","timestamp":1607098349,"output":"L90), \n\u001b[0m\u001b[22m\n16:12:29.121 [info] ppl_id: 2d70290c-dd55-45f4-91c1-0ed508ae7a8b, type: PplReque"},{"event":"cmd_output","timestamp":1607098349,"output":"sts, event: persisted source_args for pipeline: 2d70290c-dd55-45f4-91c1-0ed508ae7a8b, origin: Elixir"},{"event":"cmd_output","timestamp":1607098349,"output":".Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:29.122 [info] pp"},{"event":"cmd_output","timestamp":1607098349,"output":"l_id: 2d70290c-dd55-45f4-91c1-0ed508ae7a8b, type: PplSubInits, state: fetching, event: exit_scheduli"},{"event":"cmd_output","timestamp":1607098349,"output":"ng, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:29"},{"event":"cmd_output","timestamp":1607098349,"output":".143 [info] ppl_id: 2d70290c-dd55-45f4-91c1-0ed508ae7a8b, type: PplSubInits, state: regular_init, e"},{"event":"cmd_output","timestamp":1607098349,"output":"vent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n"},{"event":"cmd_output","timestamp":1607098349,"output":"\u001b[0m\u001b[22m\n16:12:29.161 [info] ppl_id: 2d70290c-dd55-45f4-91c1-0ed508ae7a8b, type: PplRequests, eve"},{"event":"cmd_output","timestamp":1607098349,"output":"nt: persisted definition for request with request_token: 7a168a47-7190-4a8c-977f-a5008e05a4bb, origi"},{"event":"cmd_output","timestamp":1607098349,"output":"n: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:29.1"},{"event":"cmd_output","timestamp":1607098349,"output":"63 [info] ppl_id: 7b8281a4-691c-4318-a92e-d8a9d30f364a, type: Ppls, state: running, event: exit_sch"},{"event":"cmd_output","timestamp":1607098349,"output":"eduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098349,"output":"12:29.166 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?"},{"event":"cmd_output","timestamp":1607098349,"output":"/1(L105), \n\u001b[0m\u001b[22m\n16:12:29.166 [info] ppl_id: 2d70290c-dd55-45f4-91c1-0ed508ae7a8b, type: PplB"},{"event":"cmd_output","timestamp":1607098349,"output":"locks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.Pp"},{"event":"cmd_output","timestamp":1607098349,"output":"lSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:29.167 [info] ppl_id: 2d7"},{"event":"cmd_output","timestamp":1607098349,"output":"0290c-dd55-45f4-91c1-0ed508ae7a8b, type: PplSubInits, state: done, result: passed, event: exit_sched"},{"event":"cmd_output","timestamp":1607098349,"output":"uling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12"},{"event":"cmd_output","timestamp":1607098349,"output":":29.170 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"7b8281a4-691c-4318-"},{"event":"cmd_output","timestamp":1607098349,"output":"a92e-d8a9d30f364a\"\n\u001b[0m\u001b[22m\n16:12:29.172 [info] ppl_id: 2d70290c-dd55-45f4-91c1-0ed508ae7a8b, ty"},{"event":"cmd_output","timestamp":1607098349,"output":"pe: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098349,"output":"ixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:29.174 [info] block_id: eb9e5abb-d"},{"event":"cmd_output","timestamp":1607098349,"output":"070-4745-b64b-ab4d98a9fd72, type: BlockRequests, event: persisted block run request from ppl 7b8281a"},{"event":"cmd_output","timestamp":1607098349,"output":"4-691c-4318-a92e-d8a9d30f364a for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQue"},{"event":"cmd_output","timestamp":1607098349,"output":"ries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:29.176 [info] block_id: eb9e5abb-d070-4745-b64b-ab"},{"event":"cmd_output","timestamp":1607098349,"output":"4d98a9fd72, type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098349,"output":"r.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:29.177 [info] ppl_id: 2d70290c"},{"event":"cmd_output","timestamp":1607098349,"output":"-dd55-45f4-91c1-0ed508ae7a8b, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098349,"output":" origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:29.178 [info] Block 0 o"},{"event":"cmd_output","timestamp":1607098349,"output":"f pipeline with id: 7b8281a4-691c-4318-a92e-d8a9d30f364a scheduled in block service with id: : \"eb9e"},{"event":"cmd_output","timestamp":1607098349,"output":"5abb-d070-4745-b64b-ab4d98a9fd72\"\n\u001b[0m\u001b[22m\n16:12:29.180 [info] ppl_id: 7b8281a4-691c-4318-a92e-d"},{"event":"cmd_output","timestamp":1607098349,"output":"8a9d30f364a, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count"},{"event":"cmd_output","timestamp":1607098349,"output":": 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:29.183 [info] block"},{"event":"cmd_output","timestamp":1607098349,"output":"_id: eb9e5abb-d070-4745-b64b-ab4d98a9fd72, type: BlockRequests, event: persisted build and sub_ppl d"},{"event":"cmd_output","timestamp":1607098349,"output":"etails for block_request: eb9e5abb-d070-4745-b64b-ab4d98a9fd72, origin: Elixir.Block.BlockRequests.M"},{"event":"cmd_output","timestamp":1607098349,"output":"odel.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:29.185 [info] ppl_id: 2d70290c-dd"},{"event":"cmd_output","timestamp":1607098349,"output":"55-45f4-91c1-0ed508ae7a8b, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098349,"output":"igin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:29.185 [info] block_id: eb"},{"event":"cmd_output","timestamp":1607098349,"output":"9e5abb-d070-4745-b64b-ab4d98a9fd72, type: Tasks, state: pending, event: created, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098349,"output":"origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:29.189 "},{"event":"cmd_output","timestamp":1607098349,"output":"[info] block_id: eb9e5abb-d070-4745-b64b-ab4d98a9fd72, type: Blocks, state: running, event: exit_sc"},{"event":"cmd_output","timestamp":1607098349,"output":"heduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098349,"output":":12:29.203 [info] block_id: eb9e5abb-d070-4745-b64b-ab4d98a9fd72, type: Tasks, state: running, even"},{"event":"cmd_output","timestamp":1607098349,"output":"t: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098349,"output":"m\u001b[22m\n16:12:29.209 [info] block_id: 7f6a97c0-dea3-48d0-a91d-5856cdea9f26, type: Tasks, state: don"},{"event":"cmd_output","timestamp":1607098349,"output":"e, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90)"},{"event":"cmd_output","timestamp":1607098349,"output":", \n\u001b[0m\u001b[22m\n16:12:29.214 [info] block_id: 7f6a97c0-dea3-48d0-a91d-5856cdea9f26, type: Blocks, st"},{"event":"cmd_output","timestamp":1607098349,"output":"ate: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chang"},{"event":"cmd_output","timestamp":1607098349,"output":"e/1(L90), \n\u001b[0m\u001b[22m\n16:12:29.220 [info] ppl_id: 937e64e9-a2f6-4595-937d-741706413032, block_id: "},{"event":"cmd_output","timestamp":1607098349,"output":"7f6a97c0-dea3-48d0-a91d-5856cdea9f26, type: PplBlocks, block_index: 0, state: done, result: passed, "},{"event":"cmd_output","timestamp":1607098349,"output":"event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \r"},{"event":"cmd_output","timestamp":1607098349,"output":"\n\u001b[0m\u001b[22m\n16:12:29.228 [info] ppl_id: c20d2029-d5c4-4b7f-b2d8-90e14011f6d6, type: PplRequests, ev"},{"event":"cmd_output","timestamp":1607098349,"output":"ent: persisted source_args for pipeline: c20d2029-d5c4-4b7f-b2d8-90e14011f6d6, origin: Elixir.Ppl.Pp"},{"event":"cmd_output","timestamp":1607098349,"output":"lRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:29.230 [info] ppl_id: c"},{"event":"cmd_output","timestamp":1607098349,"output":"20d2029-d5c4-4b7f-b2d8-90e14011f6d6, type: PplSubInits, state: fetching, event: exit_scheduling, rec"},{"event":"cmd_output","timestamp":1607098349,"output":"overy_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:29.232 [i"},{"event":"cmd_output","timestamp":1607098349,"output":"nfo] ppl_id: 937e64e9-a2f6-4595-937d-741706413032, type: Ppls, state: done, result: passed, event: "},{"event":"cmd_output","timestamp":1607098349,"output":"exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098349,"output":"22m\n16:12:29.245 [info] ppl_id: c20d2029-d5c4-4b7f-b2d8-90e14011f6d6, type: PplSubInits, state: re"},{"event":"cmd_output","timestamp":1607098349,"output":"gular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chan"},{"event":"cmd_output","timestamp":1607098349,"output":"ge/1(L90), \n\u001b[0m\u001b[22m\n16:12:29.270 [info] ppl_id: c20d2029-d5c4-4b7f-b2d8-90e14011f6d6, type: Ppl"},{"event":"cmd_output","timestamp":1607098349,"output":"Requests, event: persisted definition for request with request_token: b6c3b96f-4ad9-4f09-a82f-0465a3"},{"event":"cmd_output","timestamp":1607098349,"output":"f705eb, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098349,"output":"m\n16:12:29.275 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.a"},{"event":"cmd_output","timestamp":1607098349,"output":"ll_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:29.275 [info] ppl_id: c20d2029-d5c4-4b7f-b2d8-90e14011f6d6, type"},{"event":"cmd_output","timestamp":1607098349,"output":": PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098349,"output":"Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:29.276 [info] ppl_i"},{"event":"cmd_output","timestamp":1607098349,"output":"d: c20d2029-d5c4-4b7f-b2d8-90e14011f6d6, type: PplSubInits, state: done, result: passed, event: exit"},{"event":"cmd_output","timestamp":1607098349,"output":"_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098349,"output":"\n16:12:29.277 [info] ppl_id: b33fcf21-dced-4d27-968c-73815f2c6538, type: Ppls, state: running, even"},{"event":"cmd_output","timestamp":1607098349,"output":"t: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098349,"output":"m\u001b[22m\n16:12:29.283 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"b33fcf"},{"event":"cmd_output","timestamp":1607098349,"output":"21-dced-4d27-968c-73815f2c6538\"\n\u001b[0m\u001b[22m\n16:12:29.284 [info] ppl_id: c20d2029-d5c4-4b7f-b2d8-90e"},{"event":"cmd_output","timestamp":1607098349,"output":"14011f6d6, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loo"},{"event":"cmd_output","timestamp":1607098349,"output":"per.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:29.284 [info] ppl_id: c20d2029-d5c4-4b7f-b"},{"event":"cmd_output","timestamp":1607098349,"output":"2d8-90e14011f6d6, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_"},{"event":"cmd_output","timestamp":1607098349,"output":"count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:29.288 [info] "},{"event":"cmd_output","timestamp":1607098349,"output":"block_id: 4d29200c-259c-41d7-ba41-5ef3df3bf81d, type: BlockRequests, event: persisted block run requ"},{"event":"cmd_output","timestamp":1607098349,"output":"est from ppl b33fcf21-dced-4d27-968c-73815f2c6538 for block 0, origin: Elixir.Block.BlockRequests.Mo"},{"event":"cmd_output","timestamp":1607098349,"output":"del.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:29.289 [info] block_id: 4d2920"},{"event":"cmd_output","timestamp":1607098349,"output":"0c-259c-41d7-ba41-5ef3df3bf81d, type: Blocks, state: initializing, event: initializing, recovery_cou"},{"event":"cmd_output","timestamp":1607098349,"output":"nt: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:29.289 [inf"},{"event":"cmd_output","timestamp":1607098349,"output":"o] ppl_id: c20d2029-d5c4-4b7f-b2d8-90e14011f6d6, type: Ppls, state: queuing, event: exit_scheduling"},{"event":"cmd_output","timestamp":1607098349,"output":", recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:29.2"},{"event":"cmd_output","timestamp":1607098349,"output":"91 [info] Block 0 of pipeline with id: b33fcf21-dced-4d27-968c-73815f2c6538 scheduled in block serv"},{"event":"cmd_output","timestamp":1607098349,"output":"ice with id: : \"4d29200c-259c-41d7-ba41-5ef3df3bf81d\"\n\u001b[0m\u001b[22m\n16:12:29.293 [info] ppl_id: b33fc"},{"event":"cmd_output","timestamp":1607098349,"output":"f21-dced-4d27-968c-73815f2c6538, type: PplBlocks, block_index: 0, state: running, event: exit_schedu"},{"event":"cmd_output","timestamp":1607098349,"output":"ling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:"},{"event":"cmd_output","timestamp":1607098349,"output":"29.294 [info] block_id: 4d29200c-259c-41d7-ba41-5ef3df3bf81d, type: BlockRequests, event: persisted"},{"event":"cmd_output","timestamp":1607098349,"output":" build and sub_ppl details for block_request: 4d29200c-259c-41d7-ba41-5ef3df3bf81d, origin: Elixir.B"},{"event":"cmd_output","timestamp":1607098349,"output":"lock.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:29.295 [info] "},{"event":"cmd_output","timestamp":1607098349,"output":" block_id: 4d29200c-259c-41d7-ba41-5ef3df3bf81d, type: Tasks, state: pending, event: created, recove"},{"event":"cmd_output","timestamp":1607098349,"output":"ry_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098349,"output":"16:12:29.296 [info] block_id: 4d29200c-259c-41d7-ba41-5ef3df3bf81d, type: Blocks, state: running, e"},{"event":"cmd_output","timestamp":1607098349,"output":"vent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n"},{"event":"cmd_output","timestamp":1607098349,"output":"\u001b[0m\u001b[22m\n16:12:29.309 [info] block_id: 4d29200c-259c-41d7-ba41-5ef3df3bf81d, type: Tasks, state: "},{"event":"cmd_output","timestamp":1607098349,"output":"running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/"},{"event":"cmd_output","timestamp":1607098349,"output":"1(L90), \n\u001b[0m\u001b[22m\n16:12:29.316 [info] block_id: eb9e5abb-d070-4745-b64b-ab4d98a9fd72, type: Task"},{"event":"cmd_output","timestamp":1607098349,"output":"s, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_"},{"event":"cmd_output","timestamp":1607098349,"output":"change/1(L90), \n\u001b[0m\u001b[22m\n16:12:29.321 [info] block_id: eb9e5abb-d070-4745-b64b-ab4d98a9fd72, typ"},{"event":"cmd_output","timestamp":1607098349,"output":"e: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.lo"},{"event":"cmd_output","timestamp":1607098349,"output":"g_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:29.325 [info] ppl_id: 7b8281a4-691c-4318-a92e-d8a9d30f364"},{"event":"cmd_output","timestamp":1607098349,"output":"a, block_id: eb9e5abb-d070-4745-b64b-ab4d98a9fd72, type: PplBlocks, block_index: 0, state: done, res"},{"event":"cmd_output","timestamp":1607098349,"output":"ult: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_cha"},{"event":"cmd_output","timestamp":1607098349,"output":"nge/1(L90), \n\u001b[0m\u001b[22m\n16:12:29.335 [info] ppl_id: 7b8281a4-691c-4318-a92e-d8a9d30f364a, type: Pp"},{"event":"cmd_output","timestamp":1607098349,"output":"ls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.ST"},{"event":"cmd_output","timestamp":1607098349,"output":"M.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:29.337 [info] ppl_id: c15cfe28-7d59-4daf-bcb2-55"},{"event":"cmd_output","timestamp":1607098349,"output":"af3c517ab7, type: PplRequests, event: persisted source_args for pipeline: c15cfe28-7d59-4daf-bcb2-55"},{"event":"cmd_output","timestamp":1607098349,"output":"af3c517ab7, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098349,"output":"m\n16:12:29.338 [info] ppl_id: c15cfe28-7d59-4daf-bcb2-55af3c517ab7, type: PplSubInits, state: fetc"},{"event":"cmd_output","timestamp":1607098349,"output":"hing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098349,"output":"90), \n\u001b[0m\u001b[22m\n16:12:29.355 [info] ppl_id: c15cfe28-7d59-4daf-bcb2-55af3c517ab7, type: PplSubIni"},{"event":"cmd_output","timestamp":1607098349,"output":"ts, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.l"},{"event":"cmd_output","timestamp":1607098349,"output":"og_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:29.375 [info] ppl_id: c15cfe28-7d59-4daf-bcb2-55af3c517a"},{"event":"cmd_output","timestamp":1607098349,"output":"b7, type: PplRequests, event: persisted definition for request with request_token: fa8ad601-77b4-42a"},{"event":"cmd_output","timestamp":1607098349,"output":"e-a0c8-5e7e930b6c4e, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76"},{"event":"cmd_output","timestamp":1607098349,"output":"), \n\u001b[0m\u001b[22m\n16:12:29.379 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.Regul"},{"event":"cmd_output","timestamp":1607098349,"output":"arInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:29.380 [info] ppl_id: c15cfe28-7d59-4daf-bcb2-55af3"},{"event":"cmd_output","timestamp":1607098349,"output":"c517ab7, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098349,"output":"igin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:29.382 "},{"event":"cmd_output","timestamp":1607098349,"output":"[info] ppl_id: c15cfe28-7d59-4daf-bcb2-55af3c517ab7, type: PplSubInits, state: done, result: passed"},{"event":"cmd_output","timestamp":1607098349,"output":", event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90),"},{"event":"cmd_output","timestamp":1607098349,"output":" \n\u001b[0m\u001b[22m\n16:12:29.390 [info] ppl_id: c15cfe28-7d59-4daf-bcb2-55af3c517ab7, type: Ppls, state: "},{"event":"cmd_output","timestamp":1607098349,"output":"pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/"},{"event":"cmd_output","timestamp":1607098349,"output":"1(L90), \n\u001b[0m\u001b[22m\n16:12:29.390 [info] ppl_id: c15cfe28-7d59-4daf-bcb2-55af3c517ab7, type: PplBlo"},{"event":"cmd_output","timestamp":1607098349,"output":"cks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loope"},{"event":"cmd_output","timestamp":1607098349,"output":"r.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:29.392 [info] ppl_id: 2d70290c-dd55-45f4-91c"},{"event":"cmd_output","timestamp":1607098349,"output":"1-0ed508ae7a8b, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098349,"output":"r.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:29.398 [info] PplBlocks WaitingState "},{"event":"cmd_output","timestamp":1607098349,"output":"STM is scheduling block 0 from pipeline: \"2d70290c-dd55-45f4-91c1-0ed508ae7a8b\"\n\u001b[0m\u001b[22m\n16:12:29"},{"event":"cmd_output","timestamp":1607098349,"output":".398 [info] ppl_id: c15cfe28-7d59-4daf-bcb2-55af3c517ab7, type: Ppls, state: queuing, event: exit_s"},{"event":"cmd_output","timestamp":1607098349,"output":"cheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098349,"output":"6:12:29.404 [info] block_id: b77af6ef-f599-4ae4-b734-23940d6a8ba5, type: BlockRequests, event: pers"},{"event":"cmd_output","timestamp":1607098349,"output":"isted block run request from ppl 2d70290c-dd55-45f4-91c1-0ed508ae7a8b for block 0, origin: Elixir.Bl"},{"event":"cmd_output","timestamp":1607098349,"output":"ock.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:29.406 [inf"},{"event":"cmd_output","timestamp":1607098349,"output":"o] block_id: b77af6ef-f599-4ae4-b734-23940d6a8ba5, type: Blocks, state: initializing, event: initia"},{"event":"cmd_output","timestamp":1607098349,"output":"lizing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098349,"output":"m\n16:12:29.408 [info] Block 0 of pipeline with id: 2d70290c-dd55-45f4-91c1-0ed508ae7a8b scheduled "},{"event":"cmd_output","timestamp":1607098349,"output":"in block service with id: : \"b77af6ef-f599-4ae4-b734-23940d6a8ba5\"\n\u001b[0m\u001b[22m\n16:12:29.410 [info] "},{"event":"cmd_output","timestamp":1607098349,"output":"ppl_id: 2d70290c-dd55-45f4-91c1-0ed508ae7a8b, type: PplBlocks, block_index: 0, state: running, event"},{"event":"cmd_output","timestamp":1607098349,"output":": exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098349,"output":"\u001b[22m\n16:12:29.411 [info] block_id: b77af6ef-f599-4ae4-b734-23940d6a8ba5, type: BlockRequests, eve"},{"event":"cmd_output","timestamp":1607098349,"output":"nt: persisted build and sub_ppl details for block_request: b77af6ef-f599-4ae4-b734-23940d6a8ba5, ori"},{"event":"cmd_output","timestamp":1607098349,"output":"gin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:2"},{"event":"cmd_output","timestamp":1607098349,"output":"9.413 [info] block_id: b77af6ef-f599-4ae4-b734-23940d6a8ba5, type: Tasks, state: pending, event: cr"},{"event":"cmd_output","timestamp":1607098349,"output":"eated, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), "},{"event":"cmd_output","timestamp":1607098349,"output":"\n\u001b[0m\u001b[22m\n16:12:29.414 [info] block_id: b77af6ef-f599-4ae4-b734-23940d6a8ba5, type: Blocks, stat"},{"event":"cmd_output","timestamp":1607098349,"output":"e: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chan"},{"event":"cmd_output","timestamp":1607098349,"output":"ge/1(L90), \n\u001b[0m\u001b[22m\n16:12:29.425 [info] block_id: 4d29200c-259c-41d7-ba41-5ef3df3bf81d, type: T"},{"event":"cmd_output","timestamp":1607098349,"output":"asks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_sta"},{"event":"cmd_output","timestamp":1607098349,"output":"te_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:29.431 [info] block_id: 4d29200c-259c-41d7-ba41-5ef3df3bf81d, "},{"event":"cmd_output","timestamp":1607098349,"output":"type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl"},{"event":"cmd_output","timestamp":1607098349,"output":".log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:29.431 [info] block_id: b77af6ef-f599-4ae4-b734-23940d"},{"event":"cmd_output","timestamp":1607098349,"output":"6a8ba5, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loope"},{"event":"cmd_output","timestamp":1607098349,"output":"r.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:29.437 [info] ppl_id: b33fcf21-dced-4d27-968"},{"event":"cmd_output","timestamp":1607098349,"output":"c-73815f2c6538, block_id: 4d29200c-259c-41d7-ba41-5ef3df3bf81d, type: PplBlocks, block_index: 0, sta"},{"event":"cmd_output","timestamp":1607098349,"output":"te: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl."},{"event":"cmd_output","timestamp":1607098349,"output":"log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:29.446 [info] ppl_id: b33fcf21-dced-4d27-968c-73815f2c6"},{"event":"cmd_output","timestamp":1607098349,"output":"538, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098349,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:29.535 [info] block_id: b77af6ef-f5"},{"event":"cmd_output","timestamp":1607098349,"output":"99-4ae4-b734-23940d6a8ba5, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098349,"output":"in: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:29.538 [info] block_id: b77a"},{"event":"cmd_output","timestamp":1607098349,"output":"f6ef-f599-4ae4-b734-23940d6a8ba5, type: Blocks, state: done, event: exit_scheduling, recovery_count:"},{"event":"cmd_output","timestamp":1607098349,"output":" 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:29.543 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098349,"output":": 2d70290c-dd55-45f4-91c1-0ed508ae7a8b, block_id: b77af6ef-f599-4ae4-b734-23940d6a8ba5, type: PplBlo"},{"event":"cmd_output","timestamp":1607098349,"output":"cks, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098349,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:29.560 [info] ppl_id: 2d70290c-"},{"event":"cmd_output","timestamp":1607098349,"output":"dd55-45f4-91c1-0ed508ae7a8b, type: Ppls, state: done, result: passed, event: exit_scheduling, recove"},{"event":"cmd_output","timestamp":1607098349,"output":"ry_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:29.603 [info"},{"event":"cmd_output","timestamp":1607098349,"output":"] ppl_id: c20d2029-d5c4-4b7f-b2d8-90e14011f6d6, type: Ppls, state: running, event: exit_scheduling,"},{"event":"cmd_output","timestamp":1607098349,"output":" recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:29.60"},{"event":"cmd_output","timestamp":1607098349,"output":"7 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"c20d2029-d5c4-4b7f-b2d8-9"},{"event":"cmd_output","timestamp":1607098349,"output":"0e14011f6d6\"\n\u001b[0m\u001b[22m\n16:12:29.610 [info] block_id: 072a490a-50bf-4fbf-a612-5d156750fe35, type: "},{"event":"cmd_output","timestamp":1607098349,"output":"BlockRequests, event: persisted block run request from ppl c20d2029-d5c4-4b7f-b2d8-90e14011f6d6 for "},{"event":"cmd_output","timestamp":1607098349,"output":"block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b["},{"event":"cmd_output","timestamp":1607098349,"output":"0m\u001b[22m\n16:12:29.612 [info] block_id: 072a490a-50bf-4fbf-a612-5d156750fe35, type: Blocks, state: i"},{"event":"cmd_output","timestamp":1607098349,"output":"nitializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries"},{"event":"cmd_output","timestamp":1607098349,"output":".insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:29.613 [info] Block 0 of pipeline with id: c20d2029-d5c4-4b7f-b2"},{"event":"cmd_output","timestamp":1607098349,"output":"d8-90e14011f6d6 scheduled in block service with id: : \"072a490a-50bf-4fbf-a612-5d156750fe35\"\n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098349,"output":"22m\n16:12:29.615 [info] ppl_id: c20d2029-d5c4-4b7f-b2d8-90e14011f6d6, type: PplBlocks, block_index"},{"event":"cmd_output","timestamp":1607098349,"output":": 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_s"},{"event":"cmd_output","timestamp":1607098349,"output":"tate_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:29.616 [info] block_id: 072a490a-50bf-4fbf-a612-5d156750fe35"},{"event":"cmd_output","timestamp":1607098349,"output":", type: BlockRequests, event: persisted build and sub_ppl details for block_request: 072a490a-50bf-4"},{"event":"cmd_output","timestamp":1607098349,"output":"fbf-a612-5d156750fe35, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2("},{"event":"cmd_output","timestamp":1607098349,"output":"L41), \n\u001b[0m\u001b[22m\n16:12:29.618 [info] block_id: 072a490a-50bf-4fbf-a612-5d156750fe35, type: Tasks,"},{"event":"cmd_output","timestamp":1607098349,"output":" state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.Initializ"},{"event":"cmd_output","timestamp":1607098349,"output":"ingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:29.620 [info] block_id: 072a490a-50bf-4fbf-a612-5d1567"},{"event":"cmd_output","timestamp":1607098349,"output":"50fe35, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loop"},{"event":"cmd_output","timestamp":1607098349,"output":"er.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:29.629 [info] block_id: 072a490a-50bf-4fbf-"},{"event":"cmd_output","timestamp":1607098349,"output":"a612-5d156750fe35, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: E"},{"event":"cmd_output","timestamp":1607098349,"output":"lixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:29.642 [info] block_id: 072a490a-"},{"event":"cmd_output","timestamp":1607098349,"output":"50bf-4fbf-a612-5d156750fe35, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098349,"output":"igin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:29.646 [info] block_id: 07"},{"event":"cmd_output","timestamp":1607098349,"output":"2a490a-50bf-4fbf-a612-5d156750fe35, type: Blocks, state: done, event: exit_scheduling, recovery_coun"},{"event":"cmd_output","timestamp":1607098349,"output":"t: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:29.652 [info] ppl_"},{"event":"cmd_output","timestamp":1607098349,"output":"id: c20d2029-d5c4-4b7f-b2d8-90e14011f6d6, block_id: 072a490a-50bf-4fbf-a612-5d156750fe35, type: PplB"},{"event":"cmd_output","timestamp":1607098349,"output":"locks, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098349,"output":"n: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:29.662 [info] ppl_id: c20d202"},{"event":"cmd_output","timestamp":1607098349,"output":"9-d5c4-4b7f-b2d8-90e14011f6d6, type: Ppls, state: done, result: passed, event: exit_scheduling, reco"},{"event":"cmd_output","timestamp":1607098349,"output":"very_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:29.711 [in"},{"event":"cmd_output","timestamp":1607098349,"output":"fo] ppl_id: c15cfe28-7d59-4daf-bcb2-55af3c517ab7, type: Ppls, state: running, event: exit_schedulin"},{"event":"cmd_output","timestamp":1607098349,"output":"g, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:29."},{"event":"cmd_output","timestamp":1607098349,"output":"714 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"c15cfe28-7d59-4daf-bcb2"},{"event":"cmd_output","timestamp":1607098349,"output":"-55af3c517ab7\"\n\u001b[0m\u001b[22m\n16:12:29.718 [info] block_id: 38f9878a-df40-459c-adae-bd2760987d20, type"},{"event":"cmd_output","timestamp":1607098349,"output":": BlockRequests, event: persisted block run request from ppl c15cfe28-7d59-4daf-bcb2-55af3c517ab7 fo"},{"event":"cmd_output","timestamp":1607098349,"output":"r block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n"},{"event":"cmd_output","timestamp":1607098349,"output":"\u001b[0m\u001b[22m\n16:12:29.720 [info] block_id: 38f9878a-df40-459c-adae-bd2760987d20, type: Blocks, state:"},{"event":"cmd_output","timestamp":1607098349,"output":" initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueri"},{"event":"cmd_output","timestamp":1607098349,"output":"es.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:29.723 [info] Block 0 of pipeline with id: c15cfe28-7d59-4daf-"},{"event":"cmd_output","timestamp":1607098349,"output":"bcb2-55af3c517ab7 scheduled in block service with id: : \"38f9878a-df40-459c-adae-bd2760987d20\"\n\u001b[0m"},{"event":"cmd_output","timestamp":1607098349,"output":"\u001b[22m\n16:12:29.725 [info] ppl_id: c15cfe28-7d59-4daf-bcb2-55af3c517ab7, type: PplBlocks, block_ind"},{"event":"cmd_output","timestamp":1607098349,"output":"ex: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098349,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:29.727 [info] block_id: 38f9878a-df40-459c-adae-bd2760987d"},{"event":"cmd_output","timestamp":1607098349,"output":"20, type: BlockRequests, event: persisted build and sub_ppl details for block_request: 38f9878a-df40"},{"event":"cmd_output","timestamp":1607098349,"output":"-459c-adae-bd2760987d20, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/"},{"event":"cmd_output","timestamp":1607098349,"output":"2(L41), \n\u001b[0m\u001b[22m\n16:12:29.738 [info] block_id: 38f9878a-df40-459c-adae-bd2760987d20, type: Task"},{"event":"cmd_output","timestamp":1607098349,"output":"s, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.Initial"},{"event":"cmd_output","timestamp":1607098349,"output":"izingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:29.741 [info] block_id: 38f9878a-df40-459c-adae-bd27"},{"event":"cmd_output","timestamp":1607098349,"output":"60987d20, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Lo"},{"event":"cmd_output","timestamp":1607098349,"output":"oper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:29.753 [info] block_id: 38f9878a-df40-459"},{"event":"cmd_output","timestamp":1607098349,"output":"c-adae-bd2760987d20, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098349,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:29.860 [info] block_id: 38f9878"},{"event":"cmd_output","timestamp":1607098349,"output":"a-df40-459c-adae-bd2760987d20, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098349,"output":"origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:29.870 [info] block_id: "},{"event":"cmd_output","timestamp":1607098349,"output":"38f9878a-df40-459c-adae-bd2760987d20, type: Blocks, state: done, event: exit_scheduling, recovery_co"},{"event":"cmd_output","timestamp":1607098349,"output":"unt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:29.877 [info] pp"},{"event":"cmd_output","timestamp":1607098349,"output":"l_id: c15cfe28-7d59-4daf-bcb2-55af3c517ab7, block_id: 38f9878a-df40-459c-adae-bd2760987d20, type: Pp"},{"event":"cmd_output","timestamp":1607098349,"output":"lBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098349,"output":"gin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:29.896 [info] ppl_id: c15cf"},{"event":"cmd_output","timestamp":1607098349,"output":"e28-7d59-4daf-bcb2-55af3c517ab7, type: Ppls, state: done, result: passed, event: exit_scheduling, re"},{"event":"cmd_output","timestamp":1607098349,"output":"covery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test gRPC l"},{"event":"cmd_output","timestamp":1607098349,"output":"ist() - filter by label (2509.9ms)\u001b[0m\n * test gRPC partial_rebuild() - succedes when given valid "},{"event":"cmd_output","timestamp":1607098349,"output":"params\u001b[22m\n16:12:29.985 [info] Request: 'run: %{\"branch_id\" => \"dd4cf2a8-d3ab-4fda-8918-83f675b46"},{"event":"cmd_output","timestamp":1607098349,"output":"7c2\", \"branch_name\" => \"master\", \"commit_sha\" => \"1234567\", \"file_name\" => \"semaphore.yml\", \"hook_id"},{"event":"cmd_output","timestamp":1607098349,"output":"\" => \"82343f6e-364b-11eb-bbbb-5254005464e2\", \"label\" => \"master\", \"organization_id\" => \"bb9e3d65-38c"},{"event":"cmd_output","timestamp":1607098349,"output":"5-44d3-95dd-7bcc18890b83\", \"owner\" => \"rt\", \"project_id\" => \"9070a062-cb46-4fbc-b709-37ea7973e7ff\", "},{"event":"cmd_output","timestamp":1607098349,"output":"\"repo_name\" => \"14_free_topology_failing_block\", \"request_token\" => \"823437ee-364b-11eb-98d8-5254005"},{"event":"cmd_output","timestamp":1607098349,"output":"464e2\", \"requester_id\" => \"c6c11b35-523b-43dd-9efe-d178cc2c59a5\", \"service\" => \"local\", \"suppressed_"},{"event":"cmd_output","timestamp":1607098349,"output":"attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"f569bc54-acbe-4cb2-84af-c7b640713606\","},{"event":"cmd_output","timestamp":1607098349,"output":" \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:12:29.988 [info] ppl_id: ae9a044e-19b6-4994-9250-3af"},{"event":"cmd_output","timestamp":1607098349,"output":"16c1f45e6, type: PplRequests, event: persisted schedule request with request_token: 823437ee-364b-11"},{"event":"cmd_output","timestamp":1607098349,"output":"eb-98d8-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55"},{"event":"cmd_output","timestamp":1607098349,"output":"), \n\u001b[0m\u001b[22m\n16:12:29.991 [info] ppl_id: ae9a044e-19b6-4994-9250-3af16c1f45e6, type: Ppls, state"},{"event":"cmd_output","timestamp":1607098349,"output":": initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.pr"},{"event":"cmd_output","timestamp":1607098349,"output":"ocess_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:29.994 [info] Project 9070a062-cb46-4fbc-b709-37ea7973e7"},{"event":"cmd_output","timestamp":1607098349,"output":"ff and branch masterlatest_wf details updated: \"wf_id: f569bc54-acbe-4cb2-84af-c7b640713606, wf_numb"},{"event":"cmd_output","timestamp":1607098349,"output":"er: 1\"\n\u001b[0m\u001b[22m\n16:12:29.996 [info] Persisted ppl_sub_init for pipeline with ppl_id: ae9a044e-19"},{"event":"cmd_output","timestamp":1607098349,"output":"b6-4994-9250-3af16c1f45e6: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loade"},{"event":"cmd_output","timestamp":1607098349,"output":"d, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 229, in_scheduling: fals"},{"event":"cmd_output","timestamp":1607098349,"output":"e, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:29.994969], pipeline_requests: #Ecto.Assoc"},{"event":"cmd_output","timestamp":1607098349,"output":"iation.NotLoaded, ppl_id: \"ae9a044e-19b6-4994-9250-3af"},{"event":"cmd_output","timestamp":1607098349,"output":"16c1f45e6\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request:"},{"event":"cmd_output","timestamp":1607098350,"output":" nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:29.995010]}\n\u001b[0m\u001b[22m\n16:12:30."},{"event":"cmd_output","timestamp":1607098350,"output":"000 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.P"},{"event":"cmd_output","timestamp":1607098350,"output":"pls.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls"},{"event":"cmd_output","timestamp":1607098350,"output":"-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"pending\", \"don"},{"event":"cmd_output","timestamp":1607098350,"output":"e\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publis"},{"event":"cmd_output","timestamp":1607098350,"output":"her_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo"},{"event":"cmd_output","timestamp":1607098350,"output":", returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], sche"},{"event":"cmd_output","timestamp":1607098350,"output":"ma: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:30.000 [info] Periodic from modu"},{"event":"cmd_output","timestamp":1607098350,"output":"le Elixir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler.PendingState :: peri"},{"event":"cmd_output","timestamp":1607098350,"output":"od: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring a"},{"event":"cmd_output","timestamp":1607098350,"output":"rgs: %{allowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_sec: 0, initial_query"},{"event":"cmd_output","timestamp":1607098350,"output":": Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.ST"},{"event":"cmd_output","timestamp":1607098350,"output":"MHandler.PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at,"},{"event":"cmd_output","timestamp":1607098350,"output":" :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskS"},{"event":"cmd_output","timestamp":1607098350,"output":"upervisor}\n\u001b[0m\u001b[22m\n16:12:30.001 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.QueuingS"},{"event":"cmd_output","timestamp":1607098350,"output":"tate with name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, metric_name: {\"Ppl.beholde"},{"event":"cmd_output","timestamp":1607098350,"output":"r-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{allowed_states: [\"queuing\", \"ru"},{"event":"cmd_output","timestamp":1607098350,"output":"nning\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\""},{"event":"cmd_output","timestamp":1607098350,"output":", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.args/0>, repo: Ppl.EctoR"},{"event":"cmd_output","timestamp":1607098350,"output":"epo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], s"},{"event":"cmd_output","timestamp":1607098350,"output":"chema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:30.002 [info] Periodic from m"},{"event":"cmd_output","timestamp":1607098350,"output":"odule Elixir.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHandler.RunningState :: p"},{"event":"cmd_output","timestamp":1607098350,"output":"eriod: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurrin"},{"event":"cmd_output","timestamp":1607098350,"output":"g args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl."},{"event":"cmd_output","timestamp":1607098350,"output":"Ppls.Model.Ppls, observed_state: \"running\", publisher_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHand"},{"event":"cmd_output","timestamp":1607098350,"output":"ler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :sta"},{"event":"cmd_output","timestamp":1607098350,"output":"te, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSuperv"},{"event":"cmd_output","timestamp":1607098350,"output":"isor}\n\u001b[0m\u001b[22m\n16:12:30.003 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.StoppingState"},{"event":"cmd_output","timestamp":1607098350,"output":" with name Elixir.Ppl.Ppls.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-w"},{"event":"cmd_output","timestamp":1607098350,"output":"ake_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"don"},{"event":"cmd_output","timestamp":1607098350,"output":"e\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"stopping\", publisher"},{"event":"cmd_output","timestamp":1607098350,"output":"_cb: #Function<0.71803493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, return"},{"event":"cmd_output","timestamp":1607098350,"output":"ing: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl."},{"event":"cmd_output","timestamp":1607098350,"output":"Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:30.004 [info] Periodic from module Elixi"},{"event":"cmd_output","timestamp":1607098350,"output":"r.Ppl.PplSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :"},{"event":"cmd_output","timestamp":1607098350,"output":": period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}"},{"event":"cmd_output","timestamp":1607098350,"output":", recurring args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Pp"},{"event":"cmd_output","timestamp":1607098350,"output":"lSubInits.Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, ret"},{"event":"cmd_output","timestamp":1607098350,"output":"urning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: P"},{"event":"cmd_output","timestamp":1607098350,"output":"pl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:30.005 [info] Periodic "},{"event":"cmd_output","timestamp":1607098350,"output":"from module Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl.PplSubInits.STMHand"},{"event":"cmd_output","timestamp":1607098350,"output":"ler.FetchingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHand"},{"event":"cmd_output","timestamp":1607098350,"output":"ler-FetchingState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"done\"], coo"},{"event":"cmd_output","timestamp":1607098350,"output":"ling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fetching\", pub"},{"event":"cmd_output","timestamp":1607098350,"output":"lisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :res"},{"event":"cmd_output","timestamp":1607098350,"output":"ult, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n"},{"event":"cmd_output","timestamp":1607098350,"output":"\u001b[0m\u001b[22m\n16:12:30.006 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CompilationSt"},{"event":"cmd_output","timestamp":1607098350,"output":"ate with name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 100 ms, metric_name: {\"P"},{"event":"cmd_output","timestamp":1607098350,"output":"pl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurring args: %{allowed_st"},{"event":"cmd_output","timestamp":1607098350,"output":"ates: [\"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl."},{"event":"cmd_output","timestamp":1607098350,"output":"PplSubInits.Model.PplSubInits, observed_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRep"},{"event":"cmd_output","timestamp":1607098350,"output":"o, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], sch"},{"event":"cmd_output","timestamp":1607098350,"output":"ema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:30.007 [info] Per"},{"event":"cmd_output","timestamp":1607098350,"output":"iodic from module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInit"},{"event":"cmd_output","timestamp":1607098350,"output":"s.STMHandler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubI"},{"event":"cmd_output","timestamp":1607098350,"output":"nits-STMHandler-RegularInitState\"]}, recurring args: %{allowed_states: [\"done\"], cooling_time_sec: 0"},{"event":"cmd_output","timestamp":1607098350,"output":", initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_init\", publisher_cb: :s"},{"event":"cmd_output","timestamp":1607098350,"output":"kip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recover"},{"event":"cmd_output","timestamp":1607098350,"output":"y_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098350,"output":":12:30.008 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.InitializingState with name "},{"event":"cmd_output","timestamp":1607098350,"output":"Elixir.Ppl.PplBlocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wak"},{"event":"cmd_output","timestamp":1607098350,"output":"e_up\", [\"Ppl-PplBlocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initiali"},{"event":"cmd_output","timestamp":1607098350,"output":"zing\", \"waiting\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observ"},{"event":"cmd_output","timestamp":1607098350,"output":"ed_state: \"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_reque"},{"event":"cmd_output","timestamp":1607098350,"output":"st, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Mod"},{"event":"cmd_output","timestamp":1607098350,"output":"el.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:30.008 [info] Periodic from module Elixir.P"},{"event":"cmd_output","timestamp":1607098350,"output":"pl.PplBlocks.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler.WaitingState :: perio"},{"event":"cmd_output","timestamp":1607098350,"output":"d: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurr"},{"event":"cmd_output","timestamp":1607098350,"output":"ing args: %{allowed_states: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl."},{"event":"cmd_output","timestamp":1607098350,"output":"PplBlocks.Model.PplBlocks, observed_state: \"waiting\", publisher_cb: #Function<0.8975022/1 in Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098350,"output":"Blocks.STMHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :up"},{"event":"cmd_output","timestamp":1607098350,"output":"dated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplB"},{"event":"cmd_output","timestamp":1607098350,"output":"locks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:30.009 [info] Periodic from module Elixir.Ppl.PplB"},{"event":"cmd_output","timestamp":1607098350,"output":"locks.STMHandler.RunningState with name Elixir.Ppl.PplBlocks.STMHandler.RunningState :: period: 1000"},{"event":"cmd_output","timestamp":1607098350,"output":" ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, recurring arg"},{"event":"cmd_output","timestamp":1607098350,"output":"s: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBl"},{"event":"cmd_output","timestamp":1607098350,"output":"ocks.Model.PplBlocks, observed_state: \"running\", publisher_cb: #Function<0.28166834/1 in Ppl.PplBloc"},{"event":"cmd_output","timestamp":1607098350,"output":"ks.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :update"},{"event":"cmd_output","timestamp":1607098350,"output":"d_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Mod"},{"event":"cmd_output","timestamp":1607098350,"output":"el.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:30.010 [info] Periodic from module Elixir.P"},{"event":"cmd_output","timestamp":1607098350,"output":"pl.PplBlocks.STMHandler.StoppingState with name Elixir.Ppl.PplBlocks.STMHandler.StoppingState :: per"},{"event":"cmd_output","timestamp":1607098350,"output":"iod: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, rec"},{"event":"cmd_output","timestamp":1607098350,"output":"urring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlo"},{"event":"cmd_output","timestamp":1607098350,"output":"cks.Model.PplBlocks, observed_state: \"stopping\", publisher_cb: #Function<0.104215991/1 in Ppl.PplBlo"},{"event":"cmd_output","timestamp":1607098350,"output":"cks.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :upda"},{"event":"cmd_output","timestamp":1607098350,"output":"ted_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.M"},{"event":"cmd_output","timestamp":1607098350,"output":"odel.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:30.011 [info] Periodic from module Elixir"},{"event":"cmd_output","timestamp":1607098350,"output":".Block.Blocks.STMHandler.InitializingState with name Elixir.Block.Blocks.STMHandler.InitializingStat"},{"event":"cmd_output","timestamp":1607098350,"output":"e :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-InitializingSta"},{"event":"cmd_output","timestamp":1607098350,"output":"te\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Bl"},{"event":"cmd_output","timestamp":1607098350,"output":"ock.Blocks.Model.Blocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Block.EctoRepo, "},{"event":"cmd_output","timestamp":1607098350,"output":"returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block"},{"event":"cmd_output","timestamp":1607098350,"output":".Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:30.012 [info] Periodic from module "},{"event":"cmd_output","timestamp":1607098350,"output":"Elixir.Block.Blocks.STMHandler.RunningState with name Elixir.Block.Blocks.STMHandler.RunningState ::"},{"event":"cmd_output","timestamp":1607098350,"output":" period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-RunningState\"]}, re"},{"event":"cmd_output","timestamp":1607098350,"output":"curring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query"},{"event":"cmd_output","timestamp":1607098350,"output":": Block.Blocks.Model.Blocks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, r"},{"event":"cmd_output","timestamp":1607098350,"output":"eturning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block."},{"event":"cmd_output","timestamp":1607098350,"output":"Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:30.012 [info] Periodic from module E"},{"event":"cmd_output","timestamp":1607098350,"output":"lixir.Block.Blocks.STMHandler.StoppingState with name Elixir.Block.Blocks.STMHandler.StoppingState :"},{"event":"cmd_output","timestamp":1607098350,"output":": period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-StoppingState\"]}, "},{"event":"cmd_output","timestamp":1607098350,"output":"recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.B"},{"event":"cmd_output","timestamp":1607098350,"output":"locks.Model.Blocks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning"},{"event":"cmd_output","timestamp":1607098350,"output":": [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.M"},{"event":"cmd_output","timestamp":1607098350,"output":"odel.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:30.013 [info] Periodic from module Elixir.Bl"},{"event":"cmd_output","timestamp":1607098350,"output":"ock.Tasks.STMHandler.PendingState with name Elixir.Block.Tasks.STMHandler.PendingState :: period: 10"},{"event":"cmd_output","timestamp":1607098350,"output":"0 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingState\"]}, recurring args"},{"event":"cmd_output","timestamp":1607098350,"output":": %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Tasks.Model.Tasks"},{"event":"cmd_output","timestamp":1607098350,"output":", observed_state: \"pending\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_"},{"event":"cmd_output","timestamp":1607098350,"output":"request, :updated_at, :state, :recovery_count, :block_id, :build_request_id], schema: Block.Tasks.Mo"},{"event":"cmd_output","timestamp":1607098350,"output":"del.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:30.014 [info] Periodic from module Elixir.Bloc"},{"event":"cmd_output","timestamp":1607098350,"output":"k.Tasks.STMHandler.RunningState with name Elixir.Block.Tasks.STMHandler.RunningState :: period: 100 "},{"event":"cmd_output","timestamp":1607098350,"output":"ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningState\"]}, recurring args: "},{"event":"cmd_output","timestamp":1607098350,"output":"%{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks."},{"event":"cmd_output","timestamp":1607098350,"output":"Model.Tasks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, "},{"event":"cmd_output","timestamp":1607098350,"output":":terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Task"},{"event":"cmd_output","timestamp":1607098350,"output":"s, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:30.014 [info] Periodic from module Elixir.Block.Tasks."},{"event":"cmd_output","timestamp":1607098350,"output":"STMHandler.StoppingState with name Elixir.Block.Tasks.STMHandler.StoppingState :: period: 100 ms, me"},{"event":"cmd_output","timestamp":1607098350,"output":"tric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]}, recurring args: %{all"},{"event":"cmd_output","timestamp":1607098350,"output":"owed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, obs"},{"event":"cmd_output","timestamp":1607098350,"output":"erved_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_requ"},{"event":"cmd_output","timestamp":1607098350,"output":"est, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervi"},{"event":"cmd_output","timestamp":1607098350,"output":"sor: :skip}\n\u001b[0m\u001b[22m\n16:12:30.127 [info] ppl_id: ae9a044e-19b6-4994-9250-3af16c1f45e6, type: Ppl"},{"event":"cmd_output","timestamp":1607098350,"output":"Requests, event: persisted source_args for pipeline: ae9a044e-19b6-4994-9250-3af16c1f45e6, origin: E"},{"event":"cmd_output","timestamp":1607098350,"output":"lixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:30.130 [info"},{"event":"cmd_output","timestamp":1607098350,"output":"] ppl_id: ae9a044e-19b6-4994-9250-3af16c1f45e6, type: PplSubInits, state: fetching, event: exit_sch"},{"event":"cmd_output","timestamp":1607098350,"output":"eduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098350,"output":"12:30.155 [info] ppl_id: ae9a044e-19b6-4994-9250-3af16c1f45e6, type: PplSubInits, state: regular_in"},{"event":"cmd_output","timestamp":1607098350,"output":"it, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90"},{"event":"cmd_output","timestamp":1607098350,"output":"), \n\u001b[0m\u001b[22m\n16:12:30.184 [info] ppl_id: ae9a044e-19b6-4994-9250-3af16c1f45e6, type: PplRequests"},{"event":"cmd_output","timestamp":1607098350,"output":", event: persisted definition for request with request_token: 823437ee-364b-11eb-98d8-5254005464e2, "},{"event":"cmd_output","timestamp":1607098350,"output":"origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12"},{"event":"cmd_output","timestamp":1607098350,"output":":30.192 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loa"},{"event":"cmd_output","timestamp":1607098350,"output":"ded, \"queues\">, inserted_at: ~N[2020-12-04 16:12:30.187608], name: \"master-.semaphore/semaphore.yml\""},{"event":"cmd_output","timestamp":1607098350,"output":", organization_id: \"bb9e3d65-38c5-44d3-95dd-7bcc18890b83\", project_id: \"9070a062-cb46-4fbc-b709-37ea"},{"event":"cmd_output","timestamp":1607098350,"output":"7973e7ff\", queue_id: \"a8f69c43-17fb-4b41-8141-c34895c3d858\", scope: \"project\", updated_at: ~N[2020-1"},{"event":"cmd_output","timestamp":1607098350,"output":"2-04 16:12:30.187620], user_generated: false}}\n\u001b[0m\u001b[22m\n16:12:30.200 [info] ppl_id: not_availabl"},{"event":"cmd_output","timestamp":1607098350,"output":"e, event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098350,"output":"m\u001b[22m\n16:12:30.200 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitSt"},{"event":"cmd_output","timestamp":1607098350,"output":"ate.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:30.200 [info] ppl_id: ae9a044e-19b6-4994-9250-3af16c1f45e6,"},{"event":"cmd_output","timestamp":1607098350,"output":" type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098350,"output":"ixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:30.200 [info] "},{"event":"cmd_output","timestamp":1607098350,"output":"ppl_id: ae9a044e-19b6-4994-9250-3af16c1f45e6, type: PplBlocks, block_index: 1, state: initializing, "},{"event":"cmd_output","timestamp":1607098350,"output":"event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok"},{"event":"cmd_output","timestamp":1607098350,"output":"?/1(L105), \n\u001b[0m\u001b[22m\n16:12:30.200 [info] ppl_id: ae9a044e-19b6-4994-9250-3af16c1f45e6, type: Ppl"},{"event":"cmd_output","timestamp":1607098350,"output":"Blocks, block_index: 2, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.P"},{"event":"cmd_output","timestamp":1607098350,"output":"plSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:30.201 [info] ppl_id: ae"},{"event":"cmd_output","timestamp":1607098350,"output":"9a044e-19b6-4994-9250-3af16c1f45e6, type: PplBlocks, block_index: 3, state: initializing, event: cre"},{"event":"cmd_output","timestamp":1607098350,"output":"ated, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105),"},{"event":"cmd_output","timestamp":1607098350,"output":" \n\u001b[0m\u001b[22m\n16:12:30.201 [info] ppl_id: ae9a044e-19b6-4994-9250-3af16c1f45e6, type: PplBlocks, bl"},{"event":"cmd_output","timestamp":1607098350,"output":"ock_index: 4, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits"},{"event":"cmd_output","timestamp":1607098350,"output":".STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:30.203 [info] ppl_id: ae9a044e-19b"},{"event":"cmd_output","timestamp":1607098350,"output":"6-4994-9250-3af16c1f45e6, type: PplSubInits, state: done, result: passed, event: exit_scheduling, re"},{"event":"cmd_output","timestamp":1607098350,"output":"covery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:30.223 ["},{"event":"cmd_output","timestamp":1607098350,"output":"info] ppl_id: ae9a044e-19b6-4994-9250-3af16c1f45e6, type: PplBlocks, block_index: 0, state: waiting"},{"event":"cmd_output","timestamp":1607098350,"output":", event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90),"},{"event":"cmd_output","timestamp":1607098350,"output":" \n\u001b[0m\u001b[22m\n16:12:30.226 [info] ppl_id: ae9a044e-19b6-4994-9250-3af16c1f45e6, type: Ppls, state: "},{"event":"cmd_output","timestamp":1607098350,"output":"pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/"},{"event":"cmd_output","timestamp":1607098350,"output":"1(L90), \n\u001b[0m\u001b[22m\n16:12:30.232 [info] ppl_id: ae9a044e-19b6-4994-9250-3af16c1f45e6, type: PplBlo"},{"event":"cmd_output","timestamp":1607098350,"output":"cks, block_index: 1, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loope"},{"event":"cmd_output","timestamp":1607098350,"output":"r.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:30.237 [info] ppl_id: ae9a044e-19b6-4994-925"},{"event":"cmd_output","timestamp":1607098350,"output":"0-3af16c1f45e6, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098350,"output":"r.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:30.240 [info] ppl_id: ae9a044e-19b6-4"},{"event":"cmd_output","timestamp":1607098350,"output":"994-9250-3af16c1f45e6, type: PplBlocks, block_index: 2, state: waiting, event: exit_scheduling, reco"},{"event":"cmd_output","timestamp":1607098350,"output":"very_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:30.247 [in"},{"event":"cmd_output","timestamp":1607098350,"output":"fo] ppl_id: ae9a044e-19b6-4994-9250-3af16c1f45e6, type: PplBlocks, block_index: 3, state: waiting, "},{"event":"cmd_output","timestamp":1607098350,"output":"event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \r"},{"event":"cmd_output","timestamp":1607098350,"output":"\n\u001b[0m\u001b[22m\n16:12:30.248 [info] ppl_id: ae9a044e-19b6-4994-9250-3af16c1f45e6, type: Ppls, state: ru"},{"event":"cmd_output","timestamp":1607098350,"output":"nning, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1("},{"event":"cmd_output","timestamp":1607098350,"output":"L90), \n\u001b[0m\u001b[22m\n16:12:30.252 [info] ppl_id: ae9a044e-19b6-4994-9250-3af16c1f45e6, type: PplBlock"},{"event":"cmd_output","timestamp":1607098350,"output":"s, block_index: 4, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper."},{"event":"cmd_output","timestamp":1607098350,"output":"STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:30.256 [info] PplBlocks WaitingState STM is sc"},{"event":"cmd_output","timestamp":1607098350,"output":"heduling block 3 from pipeline: \"ae9a044e-19b6-4994-9250-3af16c1f45e6\"\n\u001b[0m\u001b[22m\n16:12:30.263 [inf"},{"event":"cmd_output","timestamp":1607098350,"output":"o] block_id: c7d2acef-4286-4c48-93d1-a988cc3cff36, type: BlockRequests, event: persisted block run "},{"event":"cmd_output","timestamp":1607098350,"output":"request from ppl ae9a044e-19b6-4994-9250-3af16c1f45e6 for block 3, origin: Elixir.Block.BlockRequest"},{"event":"cmd_output","timestamp":1607098350,"output":"s.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:30.267 [info] block_id: c7"},{"event":"cmd_output","timestamp":1607098350,"output":"d2acef-4286-4c48-93d1-a988cc3cff36, type: Blocks, state: initializing, event: initializing, recovery"},{"event":"cmd_output","timestamp":1607098350,"output":"_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:30.269 "},{"event":"cmd_output","timestamp":1607098350,"output":"[info] Block 3 of pipeline with id: ae9a044e-19b6-4994-9250-3af16c1f45e6 scheduled in block service"},{"event":"cmd_output","timestamp":1607098350,"output":" with id: : \"c7d2acef-4286-4c48-93d1-a988cc3cff36\"\n\u001b[0m\u001b[22m\n16:12:30.272 [info] ppl_id: ae9a044e"},{"event":"cmd_output","timestamp":1607098350,"output":"-19b6-4994-9250-3af16c1f45e6, type: PplBlocks, block_index: 3, state: running, event: exit_schedulin"},{"event":"cmd_output","timestamp":1607098350,"output":"g, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:30."},{"event":"cmd_output","timestamp":1607098350,"output":"273 [info] block_id: c7d2acef-4286-4c48-93d1-a988cc3cff36, type: BlockRequests, event: persisted bu"},{"event":"cmd_output","timestamp":1607098350,"output":"ild and sub_ppl details for block_request: c7d2acef-4286-4c48-93d1-a988cc3cff36, origin: Elixir.Bloc"},{"event":"cmd_output","timestamp":1607098350,"output":"k.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:30.276 [info] Pp"},{"event":"cmd_output","timestamp":1607098350,"output":"lBlocks WaitingState STM is scheduling block 0 from pipeline: \"ae9a044e-19b6-4994-9250-3af16c1f45e6\""},{"event":"cmd_output","timestamp":1607098350,"output":"\n\u001b[0m\u001b[22m\n16:12:30.280 [info] block_id: c7d2acef-4286-4c48-93d1-a988cc3cff36, type: Tasks, state"},{"event":"cmd_output","timestamp":1607098350,"output":": pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingSta"},{"event":"cmd_output","timestamp":1607098350,"output":"te.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:30.281 [info] block_id: 23c7bd55-9003-4068-aa92-40d853407eb9"},{"event":"cmd_output","timestamp":1607098350,"output":", type: BlockRequests, event: persisted block run request from ppl ae9a044e-19b6-4994-9250-3af16c1f4"},{"event":"cmd_output","timestamp":1607098350,"output":"5e6 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L3"},{"event":"cmd_output","timestamp":1607098350,"output":"5), \n\u001b[0m\u001b[22m\n16:12:30.282 [info] block_id: 23c7bd55-9003-4068-aa92-40d853407eb9, type: Blocks, "},{"event":"cmd_output","timestamp":1607098350,"output":"state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.Block"},{"event":"cmd_output","timestamp":1607098350,"output":"sQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:30.282 [info] block_id: c7d2acef-4286-4c48-93d1-a988cc3c"},{"event":"cmd_output","timestamp":1607098350,"output":"ff36, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper"},{"event":"cmd_output","timestamp":1607098350,"output":".STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:30.287 [info] Block 0 of pipeline with id: ae"},{"event":"cmd_output","timestamp":1607098350,"output":"9a044e-19b6-4994-9250-3af16c1f45e6 scheduled in block service with id: : \"23c7bd55-9003-4068-aa92-40"},{"event":"cmd_output","timestamp":1607098350,"output":"d853407eb9\"\n\u001b[0m\u001b[22m\n16:12:30.289 [info] ppl_id: ae9a044e-19b6-4994-9250-3af16c1f45e6, type: Ppl"},{"event":"cmd_output","timestamp":1607098350,"output":"Blocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Lo"},{"event":"cmd_output","timestamp":1607098350,"output":"oper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:30.294 [info] block_id: 23c7bd55-9003-406"},{"event":"cmd_output","timestamp":1607098350,"output":"8-aa92-40d853407eb9, type: BlockRequests, event: persisted build and sub_ppl details for block_reque"},{"event":"cmd_output","timestamp":1607098350,"output":"st: 23c7bd55-9003-4068-aa92-40d853407eb9, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQuer"},{"event":"cmd_output","timestamp":1607098350,"output":"ies.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:30.298 [info] block_id: 23c7bd55-9003-4068-aa92-40d8534"},{"event":"cmd_output","timestamp":1607098350,"output":"07eb9, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.S"},{"event":"cmd_output","timestamp":1607098350,"output":"TMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:30.300 [info] block_id: c7d2acef-42"},{"event":"cmd_output","timestamp":1607098350,"output":"86-4c48-93d1-a988cc3cff36, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098350,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:30.304 [info] block_id: 2"},{"event":"cmd_output","timestamp":1607098350,"output":"3c7bd55-9003-4068-aa92-40d853407eb9, type: Blocks, state: running, event: exit_scheduling, recovery_"},{"event":"cmd_output","timestamp":1607098350,"output":"count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:30.328 [info] "},{"event":"cmd_output","timestamp":1607098350,"output":"block_id: 23c7bd55-9003-4068-aa92-40d853407eb9, type: Tasks, state: running, event: exit_scheduling,"},{"event":"cmd_output","timestamp":1607098351,"output":" recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:31.43"},{"event":"cmd_output","timestamp":1607098351,"output":"7 [info] block_id: c7d2acef-4286-4c48-93d1-a988cc3cff36, type: Tasks, state: done, event: exit_sche"},{"event":"cmd_output","timestamp":1607098351,"output":"duling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098351,"output":"2:31.441 [info] block_id: c7d2acef-4286-4c48-93d1-a988cc3cff36, type: Blocks, state: done, event: e"},{"event":"cmd_output","timestamp":1607098351,"output":"xit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098351,"output":"2m\n16:12:31.447 [info] ppl_id: ae9a044e-19b6-4994-9250-3af16c1f45e6, block_id: c7d2acef-4286-4c48-"},{"event":"cmd_output","timestamp":1607098351,"output":"93d1-a988cc3cff36, type: PplBlocks, block_index: 3, state: done, result: failed, event: exit_schedul"},{"event":"cmd_output","timestamp":1607098351,"output":"ing, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:3"},{"event":"cmd_output","timestamp":1607098351,"output":"1.543 [info] block_id: 23c7bd55-9003-4068-aa92-40d853407eb9, type: Tasks, state: done, event: exit_"},{"event":"cmd_output","timestamp":1607098351,"output":"scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098351,"output":"16:12:31.548 [info] block_id: 23c7bd55-9003-4068-aa92-40d853407eb9, type: Blocks, state: done, even"},{"event":"cmd_output","timestamp":1607098351,"output":"t: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098351,"output":"m\u001b[22m\n16:12:31.552 [info] ppl_id: ae9a044e-19b6-4994-9250-3af16c1f45e6, block_id: 23c7bd55-9003-4"},{"event":"cmd_output","timestamp":1607098351,"output":"068-aa92-40d853407eb9, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_sch"},{"event":"cmd_output","timestamp":1607098351,"output":"eduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098351,"output":"12:31.558 [info] PplBlocks WaitingState STM is scheduling block 1 from pipeline: \"ae9a044e-19b6-499"},{"event":"cmd_output","timestamp":1607098351,"output":"4-9250-3af16c1f45e6\"\n\u001b[0m\u001b[22m\n16:12:31.562 [info] ppl_id: ae9a044e-19b6-4994-9250-3af16c1f45e6, "},{"event":"cmd_output","timestamp":1607098351,"output":"type: PplBlocks, block_index: 1, state: done, result: canceled, event: exit_scheduling, recovery_cou"},{"event":"cmd_output","timestamp":1607098351,"output":"nt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:31.567 [info] Ppl"},{"event":"cmd_output","timestamp":1607098351,"output":"Blocks WaitingState STM is scheduling block 4 from pipeline: \"ae9a044e-19b6-4994-9250-3af16c1f45e6\"\r"},{"event":"cmd_output","timestamp":1607098351,"output":"\n\u001b[0m\u001b[22m\n16:12:31.570 [info] ppl_id: ae9a044e-19b6-4994-9250-3af16c1f45e6, type: PplBlocks, bloc"},{"event":"cmd_output","timestamp":1607098351,"output":"k_index: 4, state: done, result: canceled, event: exit_scheduling, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098351,"output":".Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:31.572 [info] PplBlocks WaitingState S"},{"event":"cmd_output","timestamp":1607098351,"output":"TM is scheduling block 2 from pipeline: \"ae9a044e-19b6-4994-9250-3af16c1f45e6\"\n\u001b[0m\u001b[22m\n16:12:31."},{"event":"cmd_output","timestamp":1607098351,"output":"575 [info] ppl_id: ae9a044e-19b6-4994-9250-3af16c1f45e6, type: PplBlocks, block_index: 2, state: do"},{"event":"cmd_output","timestamp":1607098351,"output":"ne, result: canceled, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_"},{"event":"cmd_output","timestamp":1607098351,"output":"state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:31.583 [info] ppl_id: ae9a044e-19b6-4994-9250-3af16c1f45e6,"},{"event":"cmd_output","timestamp":1607098351,"output":" type: Ppls, state: done, result: failed, event: exit_scheduling, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098351,"output":"Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:31.663 [info] Request: 'partial_rebuild"},{"event":"cmd_output","timestamp":1607098351,"output":"', request: %{ppl_id: \"ae9a044e-19b6-4994-9250-3af16c1f45e6\", request_token: \"ee2e688d-5b31-44bb-8b7"},{"event":"cmd_output","timestamp":1607098351,"output":"2-c8cdda89d1dd\", user_id: \"rebuild_user\"}\n\u001b[0m\u001b[22m\n16:12:31.665 [info] ppl_id: 88b33bca-77a6-482"},{"event":"cmd_output","timestamp":1607098351,"output":"d-a1ab-deda93445dc0, type: PplRequests, event: persisted schedule request with request_token: ee2e68"},{"event":"cmd_output","timestamp":1607098351,"output":"8d-5b31-44bb-8b72-c8cdda89d1dd, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_resp"},{"event":"cmd_output","timestamp":1607098351,"output":"onse/2(L55), \n\u001b[0m\u001b[22m\n16:12:31.667 [info] ppl_id: 88b33bca-77a6-482d-a1ab-deda93445dc0, type: P"},{"event":"cmd_output","timestamp":1607098351,"output":"pls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.Ppls"},{"event":"cmd_output","timestamp":1607098351,"output":"Queries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:31.671 [info] Persisted ppl_sub_init for pipel"},{"event":"cmd_output","timestamp":1607098351,"output":"ine with ppl_id: 88b33bca-77a6-482d-a1ab-deda93445dc0: %Ppl.PplSubInits.Model.PplSubInits{__meta__: "},{"event":"cmd_output","timestamp":1607098351,"output":"#Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, "},{"event":"cmd_output","timestamp":1607098351,"output":"id: 230, in_scheduling: false, init_type: \"rebuild\", inserted_at: ~N[2020-12-04 16:12:31.670482], pi"},{"event":"cmd_output","timestamp":1607098351,"output":"peline_requests: #Ecto.Association.NotLoaded, ppl_id: "},{"event":"cmd_output","timestamp":1607098351,"output":"\"88b33bca-77a6-482d-a1ab-deda93445dc0\", recovery_count: 0, result: nil, result_reason: nil, state: \""},{"event":"cmd_output","timestamp":1607098351,"output":"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:31.67"},{"event":"cmd_output","timestamp":1607098351,"output":"0488]}\n\u001b[0m\u001b[22m\n16:12:31.678 [info] ppl_id: 88b33bca-77a6-482d-a1ab-deda93445dc0, type: PplReque"},{"event":"cmd_output","timestamp":1607098351,"output":"sts, event: persisted source_args for pipeline: 88b33bca-77a6-482d-a1ab-deda93445dc0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098351,"output":".Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:31.679 [info] pp"},{"event":"cmd_output","timestamp":1607098351,"output":"l_id: 88b33bca-77a6-482d-a1ab-deda93445dc0, type: PplSubInits, state: fetching, event: exit_scheduli"},{"event":"cmd_output","timestamp":1607098351,"output":"ng, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:31"},{"event":"cmd_output","timestamp":1607098351,"output":".697 [info] ppl_id: 88b33bca-77a6-482d-a1ab-deda93445dc0, type: PplSubInits, state: regular_init, e"},{"event":"cmd_output","timestamp":1607098351,"output":"vent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n"},{"event":"cmd_output","timestamp":1607098351,"output":"\u001b[0m\u001b[22m\n16:12:31.722 [info] ppl_id: 88b33bca-77a6-482d-a1ab-deda93445dc0, type: PplRequests, eve"},{"event":"cmd_output","timestamp":1607098351,"output":"nt: persisted definition for request with request_token: ee2e688d-5b31-44bb-8b72-c8cdda89d1dd, origi"},{"event":"cmd_output","timestamp":1607098351,"output":"n: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:31.7"},{"event":"cmd_output","timestamp":1607098351,"output":"28 [info] ppl_id: not_available, event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularI"},{"event":"cmd_output","timestamp":1607098351,"output":"nitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:31.728 [info] event: created, origin: Elixir.Ppl.PplSu"},{"event":"cmd_output","timestamp":1607098351,"output":"bInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:31.728 [info] ppl_id: 88b33b"},{"event":"cmd_output","timestamp":1607098351,"output":"ca-77a6-482d-a1ab-deda93445dc0, type: PplBlocks, block_index: 0, state: initializing, event: created"},{"event":"cmd_output","timestamp":1607098351,"output":", recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b"},{"event":"cmd_output","timestamp":1607098351,"output":"[0m\u001b[22m\n16:12:31.728 [info] ppl_id: 88b33bca-77a6-482d-a1ab-deda93445dc0, type: PplBlocks, block_"},{"event":"cmd_output","timestamp":1607098351,"output":"index: 1, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STM"},{"event":"cmd_output","timestamp":1607098351,"output":"Handler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:31.728 [info] ppl_id: 88b33bca-77a6-48"},{"event":"cmd_output","timestamp":1607098351,"output":"2d-a1ab-deda93445dc0, type: PplBlocks, block_index: 2, state: initializing, event: created, recovery"},{"event":"cmd_output","timestamp":1607098351,"output":"_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098351,"output":"16:12:31.728 [info] ppl_id: 88b33bca-77a6-482d-a1ab-deda93445dc0, type: PplBlocks, block_index: 3, "},{"event":"cmd_output","timestamp":1607098351,"output":"state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.Re"},{"event":"cmd_output","timestamp":1607098351,"output":"gularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:31.728 [info] ppl_id: 88b33bca-77a6-482d-a1ab-de"},{"event":"cmd_output","timestamp":1607098351,"output":"da93445dc0, type: PplBlocks, block_index: 4, state: initializing, event: created, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098351,"output":" origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:31.7"},{"event":"cmd_output","timestamp":1607098351,"output":"37 [info] ppl_id: 88b33bca-77a6-482d-a1ab-deda93445dc0, type: PplSubInits, state: done, result: pas"},{"event":"cmd_output","timestamp":1607098351,"output":"sed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L9"},{"event":"cmd_output","timestamp":1607098351,"output":"0), \n\u001b[0m\u001b[22m\n16:12:31.744 [info] ppl_id: 88b33bca-77a6-482d-a1ab-deda93445dc0, type: Ppls, stat"},{"event":"cmd_output","timestamp":1607098351,"output":"e: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chan"},{"event":"cmd_output","timestamp":1607098351,"output":"ge/1(L90), \n\u001b[0m\u001b[22m\n16:12:31.749 [info] ppl_id: 88b33bca-77a6-482d-a1ab-deda93445dc0, type: Ppl"},{"event":"cmd_output","timestamp":1607098351,"output":"Blocks, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098351,"output":"in: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:31.750 [info] ppl_id: 88b33b"},{"event":"cmd_output","timestamp":1607098351,"output":"ca-77a6-482d-a1ab-deda93445dc0, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: "},{"event":"cmd_output","timestamp":1607098351,"output":"0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:31.756 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098351,"output":" 88b33bca-77a6-482d-a1ab-deda93445dc0, type: PplBlocks, block_index: 1, state: waiting, event: exit_"},{"event":"cmd_output","timestamp":1607098351,"output":"scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098351,"output":"16:12:31.758 [info] ppl_id: 88b33bca-77a6-482d-a1ab-deda93445dc0, type: Ppls, state: running, event"},{"event":"cmd_output","timestamp":1607098351,"output":": exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098351,"output":"\u001b[22m\n16:12:31.762 [info] ppl_id: 88b33bca-77a6-482d-a1ab-deda93445dc0, type: PplBlocks, block_ind"},{"event":"cmd_output","timestamp":1607098351,"output":"ex: 2, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098351,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:31.772 [info] PplBlocks WaitingState STM is scheduling blo"},{"event":"cmd_output","timestamp":1607098351,"output":"ck 3 from pipeline: \"88b33bca-77a6-482d-a1ab-deda93445dc0\"\n\u001b[0m\u001b[22m\n16:12:31.772 [info] ppl_id: "},{"event":"cmd_output","timestamp":1607098351,"output":"88b33bca-77a6-482d-a1ab-deda93445dc0, type: PplBlocks, block_index: 3, state: waiting, event: exit_s"},{"event":"cmd_output","timestamp":1607098351,"output":"cheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098351,"output":"6:12:31.777 [info] ppl_id: 88b33bca-77a6-482d-a1ab-deda93445dc0, type: PplBlocks, block_index: 4, s"},{"event":"cmd_output","timestamp":1607098351,"output":"tate: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098351,"output":"hange/1(L90), \n\u001b[0m\u001b[22m\n16:12:31.778 [info] block_id: ef384c7f-7c26-448a-b739-ad0ba1938d87, type"},{"event":"cmd_output","timestamp":1607098351,"output":": BlockRequests, event: persisted block run request from ppl 88b33bca-77a6-482d-a1ab-deda93445dc0 fo"},{"event":"cmd_output","timestamp":1607098351,"output":"r block 3, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n"},{"event":"cmd_output","timestamp":1607098351,"output":"\u001b[0m\u001b[22m\n16:12:31.780 [info] block_id: ef384c7f-7c26-448a-b739-ad0ba1938d87, type: Blocks, state:"},{"event":"cmd_output","timestamp":1607098351,"output":" initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueri"},{"event":"cmd_output","timestamp":1607098351,"output":"es.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:31.781 [info] Block 3 of pipeline with id: 88b33bca-77a6-482d-"},{"event":"cmd_output","timestamp":1607098351,"output":"a1ab-deda93445dc0 scheduled in block service with id: : \"ef384c7f-7c26-448a-b739-ad0ba1938d87\"\n\u001b[0m"},{"event":"cmd_output","timestamp":1607098351,"output":"\u001b[22m\n16:12:31.783 [info] ppl_id: 88b33bca-77a6-482d-a1ab-deda93445dc0, type: PplBlocks, block_ind"},{"event":"cmd_output","timestamp":1607098351,"output":"ex: 3, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098351,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:31.786 [info] block_id: ef384c7f-7c26-448a-b739-ad0ba1938d"},{"event":"cmd_output","timestamp":1607098351,"output":"87, type: BlockRequests, event: persisted build and sub_ppl details for block_request: ef384c7f-7c26"},{"event":"cmd_output","timestamp":1607098351,"output":"-448a-b739-ad0ba1938d87, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/"},{"event":"cmd_output","timestamp":1607098351,"output":"2(L41), \n\u001b[0m\u001b[22m\n16:12:31.788 [info] block_id: ef384c7f-7c26-448a-b739-ad0ba1938d87, type: Task"},{"event":"cmd_output","timestamp":1607098351,"output":"s, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.Initial"},{"event":"cmd_output","timestamp":1607098351,"output":"izingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:31.791 [info] block_id: ef384c7f-7c26-448a-b739-ad0b"},{"event":"cmd_output","timestamp":1607098351,"output":"a1938d87, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Lo"},{"event":"cmd_output","timestamp":1607098351,"output":"oper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:31.804 [info] block_id: ef384c7f-7c26-448"},{"event":"cmd_output","timestamp":1607098351,"output":"a-b739-ad0ba1938d87, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098352,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:32.831 [info] block_id: ef384c7"},{"event":"cmd_output","timestamp":1607098352,"output":"f-7c26-448a-b739-ad0ba1938d87, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098352,"output":"origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:32.834 [info] block_id: "},{"event":"cmd_output","timestamp":1607098352,"output":"ef384c7f-7c26-448a-b739-ad0ba1938d87, type: Blocks, state: done, event: exit_scheduling, recovery_co"},{"event":"cmd_output","timestamp":1607098352,"output":"unt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:32.843 [info] pp"},{"event":"cmd_output","timestamp":1607098352,"output":"l_id: 88b33bca-77a6-482d-a1ab-deda93445dc0, block_id: ef384c7f-7c26-448a-b739-ad0ba1938d87, type: Pp"},{"event":"cmd_output","timestamp":1607098352,"output":"lBlocks, block_index: 3, state: done, result: failed, event: exit_scheduling, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098352,"output":"gin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:32.847 [info] PplBlocks Wai"},{"event":"cmd_output","timestamp":1607098352,"output":"tingState STM is scheduling block 1 from pipeline: \"88b33bca-77a6-482d-a1ab-deda93445dc0\"\n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098352,"output":"\n16:12:32.853 [info] ppl_id: 88b33bca-77a6-482d-a1ab-deda93445dc0, type: PplBlocks, block_index: 1"},{"event":"cmd_output","timestamp":1607098352,"output":", state: done, result: canceled, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.ST"},{"event":"cmd_output","timestamp":1607098352,"output":"M.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:32.857 [info] PplBlocks WaitingState STM is sche"},{"event":"cmd_output","timestamp":1607098352,"output":"duling block 4 from pipeline: \"88b33bca-77a6-482d-a1ab-deda93445dc0\"\n\u001b[0m\u001b[22m\n16:12:32.861 [info]"},{"event":"cmd_output","timestamp":1607098352,"output":" ppl_id: 88b33bca-77a6-482d-a1ab-deda93445dc0, type: PplBlocks, block_index: 4, state: done, result"},{"event":"cmd_output","timestamp":1607098352,"output":": canceled, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chan"},{"event":"cmd_output","timestamp":1607098352,"output":"ge/1(L90), \n\u001b[0m\u001b[22m\n16:12:32.865 [info] PplBlocks WaitingState STM is scheduling block 2 from p"},{"event":"cmd_output","timestamp":1607098352,"output":"ipeline: \"88b33bca-77a6-482d-a1ab-deda93445dc0\"\n\u001b[0m\u001b[22m\n16:12:32.868 [info] ppl_id: 88b33bca-77"},{"event":"cmd_output","timestamp":1607098352,"output":"a6-482d-a1ab-deda93445dc0, type: PplBlocks, block_index: 2, state: done, result: canceled, event: ex"},{"event":"cmd_output","timestamp":1607098352,"output":"it_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098352,"output":"m\n16:12:32.882 [info] ppl_id: 88b33bca-77a6-482d-a1ab-deda93445dc0, type: Ppls, state: done, resul"},{"event":"cmd_output","timestamp":1607098352,"output":"t: failed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chang"},{"event":"cmd_output","timestamp":1607098352,"output":"e/1(L90), \n\u001b[0m\u001b[32m\r * test gRPC partial_rebuild() - succedes when given valid params (2961.2ms)\u001b"},{"event":"cmd_output","timestamp":1607098352,"output":"[0m\n * test gRPC describe() - ppl_id not found\u001b[31m\n16:12:32.947 [error] Describe request failure"},{"event":"cmd_output","timestamp":1607098352,"output":": {:error, \"Pipeline with id: 'does-not-exist' not found.\"}\n\u001b[0m\u001b[32m\r * test gRPC describe() - pp"},{"event":"cmd_output","timestamp":1607098352,"output":"l_id not found (51.5ms)\u001b[0m\n * test v1: gRPC describe() - pipeline execution passed, initial def s"},{"event":"cmd_output","timestamp":1607098352,"output":"aved\u001b[22m\n16:12:32.990 [info] Request: 'run: %{\"branch_id\" => \"33ab1259-fc28-47a0-9796-b580ce89f35"},{"event":"cmd_output","timestamp":1607098352,"output":"3\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"semaphore.yml\", \"hook_i"},{"event":"cmd_output","timestamp":1607098352,"output":"d\" => \"83fec27e-364b-11eb-9362-5254005464e2\", \"label\" => \"master\", \"organization_id\" => \"8768e248-30"},{"event":"cmd_output","timestamp":1607098352,"output":"26-4e73-8eb5-071e7311a2e8\", \"owner\" => \"rt\", \"project_id\" => \"42a97fa0-cf14-4574-a956-b2e1118745e2\","},{"event":"cmd_output","timestamp":1607098352,"output":" \"repo_name\" => \"5_v1_full\", \"request_token\" => \"83febb3a-364b-11eb-8295-5254005464e2\", \"requester_i"},{"event":"cmd_output","timestamp":1607098352,"output":"d\" => \"0644ec6d-61dc-45bf-9604-8345af36a3fd\", \"service\" => \"local\", \"suppressed_attributes\" => [\"acc"},{"event":"cmd_output","timestamp":1607098352,"output":"ess_token\", \"client_secret\"], \"wf_id\" => \"adff21e6-4f81-460e-8a9b-a12701c395ca\", \"working_dir\" => \"."},{"event":"cmd_output","timestamp":1607098352,"output":"semaphore\"}\n\u001b[0m\u001b[22m\n16:12:32.997 [info] ppl_id: 6f1ff7c2-9877-4792-bcb5-471626771c08, type: Ppl"},{"event":"cmd_output","timestamp":1607098352,"output":"Requests, event: persisted schedule request with request_token: 83febb3a-364b-11eb-8295-5254005464e2"},{"event":"cmd_output","timestamp":1607098352,"output":", origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098352,"output":"2:32.999 [info] ppl_id: 6f1ff7c2-9877-4792-bcb5-471626771c08, type: Ppls, state: initializing, even"},{"event":"cmd_output","timestamp":1607098352,"output":"t: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L12"},{"event":"cmd_output","timestamp":1607098353,"output":"4), \n\u001b[0m\u001b[22m\n16:12:33.003 [info] Project 42a97fa0-cf14-4574-a956-b2e1118745e2 and branch master"},{"event":"cmd_output","timestamp":1607098353,"output":"latest_wf details updated: \"wf_id: adff21e6-4f81-460e-8a9b-a12701c395ca, wf_number: 1\"\n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098353,"output":"6:12:33.005 [info] Persisted ppl_sub_init for pipeline with ppl_id: 6f1ff7c2-9877-4792-bcb5-4716267"},{"event":"cmd_output","timestamp":1607098353,"output":"71c08: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_ini"},{"event":"cmd_output","timestamp":1607098353,"output":"ts\">, compile_task_id: nil, error_description: nil, id: 231, in_scheduling: false, init_type: \"regul"},{"event":"cmd_output","timestamp":1607098353,"output":"ar\", inserted_at: ~N[2020-12-04 16:12:33.003462], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"6f1ff7c2-9877-4792-bcb5-471626771c08\", recovery"},{"event":"cmd_output","timestamp":1607098353,"output":"_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_requ"},{"event":"cmd_output","timestamp":1607098353,"output":"est_desc: nil, updated_at: ~N[2020-12-04 16:12:33.003468]}\n\u001b[0m\u001b[22m\n16:12:33.009 [info] Periodic"},{"event":"cmd_output","timestamp":1607098353,"output":" from module Elixir.Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.STMHandler.Initi"},{"event":"cmd_output","timestamp":1607098353,"output":"alizingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Initiali"},{"event":"cmd_output","timestamp":1607098353,"output":"zingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], cooling_time_se"},{"event":"cmd_output","timestamp":1607098353,"output":"c: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher_cb: #Function<0."},{"event":"cmd_output","timestamp":1607098353,"output":"125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :"},{"event":"cmd_output","timestamp":1607098353,"output":"terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.P"},{"event":"cmd_output","timestamp":1607098353,"output":"pls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:33.010 [info] Periodic from module Elixir.Ppl.Ppls.S"},{"event":"cmd_output","timestamp":1607098353,"output":"TMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 100 ms, metric_n"},{"event":"cmd_output","timestamp":1607098353,"output":"ame: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args: %{allowed_state"},{"event":"cmd_output","timestamp":1607098353,"output":"s: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppl"},{"event":"cmd_output","timestamp":1607098353,"output":"s, observed_state: \"pending\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler.PendingStat"},{"event":"cmd_output","timestamp":1607098353,"output":"e.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :r"},{"event":"cmd_output","timestamp":1607098353,"output":"ecovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098353,"output":"m\n16:12:33.010 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.QueuingState with name Elixi"},{"event":"cmd_output","timestamp":1607098353,"output":"r.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Pp"},{"event":"cmd_output","timestamp":1607098353,"output":"ls-STMHandler-QueuingState\"]}, recurring args: %{allowed_states: [\"queuing\", \"running\", \"done\"], coo"},{"event":"cmd_output","timestamp":1607098353,"output":"ling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", publisher_cb: #Fun"},{"event":"cmd_output","timestamp":1607098353,"output":"ction<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, returning: [:id"},{"event":"cmd_output","timestamp":1607098353,"output":", :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Mode"},{"event":"cmd_output","timestamp":1607098353,"output":"l.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:33.010 [info] Periodic from module Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098353,"output":"s.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHandler.RunningState :: period: 100 ms, metri"},{"event":"cmd_output","timestamp":1607098353,"output":"c_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring args: %{allowed_st"},{"event":"cmd_output","timestamp":1607098353,"output":"ates: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, obs"},{"event":"cmd_output","timestamp":1607098353,"output":"erved_state: \"running\", publisher_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler.RunningState.arg"},{"event":"cmd_output","timestamp":1607098353,"output":"s/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recove"},{"event":"cmd_output","timestamp":1607098353,"output":"ry_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098353,"output":":12:33.011 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.StoppingState with name Elixir.Pp"},{"event":"cmd_output","timestamp":1607098353,"output":"l.Ppls.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-"},{"event":"cmd_output","timestamp":1607098353,"output":"STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_se"},{"event":"cmd_output","timestamp":1607098353,"output":"c: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"stopping\", publisher_cb: #Function<0.718"},{"event":"cmd_output","timestamp":1607098353,"output":"03493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminat"},{"event":"cmd_output","timestamp":1607098353,"output":"e_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, tas"},{"event":"cmd_output","timestamp":1607098353,"output":"k_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:33.011 [info] Periodic from module Elixir.Ppl.PplSubInits.ST"},{"event":"cmd_output","timestamp":1607098353,"output":"MHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 100 ms, me"},{"event":"cmd_output","timestamp":1607098353,"output":"tric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args: %{"},{"event":"cmd_output","timestamp":1607098353,"output":"allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplS"},{"event":"cmd_output","timestamp":1607098353,"output":"ubInits, observed_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :termi"},{"event":"cmd_output","timestamp":1607098353,"output":"nate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model"},{"event":"cmd_output","timestamp":1607098353,"output":".PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:33.011 [info] Periodic from module Elixir.P"},{"event":"cmd_output","timestamp":1607098353,"output":"pl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler.FetchingState ::"},{"event":"cmd_output","timestamp":1607098353,"output":" period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}"},{"event":"cmd_output","timestamp":1607098353,"output":", recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"done\"], cooling_time_sec: -2, i"},{"event":"cmd_output","timestamp":1607098353,"output":"nitial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fetching\", publisher_cb: :skip, re"},{"event":"cmd_output","timestamp":1607098353,"output":"po: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count"},{"event":"cmd_output","timestamp":1607098353,"output":", :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:33."},{"event":"cmd_output","timestamp":1607098353,"output":"011 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CompilationState with name Elixir"},{"event":"cmd_output","timestamp":1607098353,"output":".Ppl.PplSubInits.STMHandler.CompilationState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\""},{"event":"cmd_output","timestamp":1607098353,"output":", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurring args: %{allowed_states: [\"regular_init"},{"event":"cmd_output","timestamp":1607098353,"output":"\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.Pp"},{"event":"cmd_output","timestamp":1607098353,"output":"lSubInits, observed_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, "},{"event":"cmd_output","timestamp":1607098353,"output":":terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits"},{"event":"cmd_output","timestamp":1607098353,"output":".Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:33.012 [info] Periodic from module El"},{"event":"cmd_output","timestamp":1607098353,"output":"ixir.Ppl.PplSubInits.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHandler.Regular"},{"event":"cmd_output","timestamp":1607098353,"output":"InitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-Regu"},{"event":"cmd_output","timestamp":1607098353,"output":"larInitState\"]}, recurring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, initial_query: Ppl"},{"event":"cmd_output","timestamp":1607098353,"output":".PplSubInits.Model.PplSubInits, observed_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoR"},{"event":"cmd_output","timestamp":1607098353,"output":"epo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], s"},{"event":"cmd_output","timestamp":1607098353,"output":"chema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:33.012 [info] P"},{"event":"cmd_output","timestamp":1607098353,"output":"eriodic from module Elixir.Ppl.PplBlocks.STMHandler.InitializingState with name Elixir.Ppl.PplBlocks"},{"event":"cmd_output","timestamp":1607098353,"output":".STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBloc"},{"event":"cmd_output","timestamp":1607098353,"output":"ks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"waiting\", \"d"},{"event":"cmd_output","timestamp":1607098353,"output":"one\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"initializ"},{"event":"cmd_output","timestamp":1607098353,"output":"ing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :st"},{"event":"cmd_output","timestamp":1607098353,"output":"ate, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_s"},{"event":"cmd_output","timestamp":1607098353,"output":"upervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:33.012 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHand"},{"event":"cmd_output","timestamp":1607098353,"output":"ler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler.WaitingState :: period: 1000 ms, metric_n"},{"event":"cmd_output","timestamp":1607098353,"output":"ame: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurring args: %{allowed_"},{"event":"cmd_output","timestamp":1607098353,"output":"states: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplB"},{"event":"cmd_output","timestamp":1607098353,"output":"locks, observed_state: \"waiting\", publisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.STMHandler.Wa"},{"event":"cmd_output","timestamp":1607098353,"output":"itingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :r"},{"event":"cmd_output","timestamp":1607098353,"output":"esult, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervis"},{"event":"cmd_output","timestamp":1607098353,"output":"or: :skip}\n\u001b[0m\u001b[22m\n16:12:33.012 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.Run"},{"event":"cmd_output","timestamp":1607098353,"output":"ningState with name Elixir.Ppl.PplBlocks.STMHandler.RunningState :: period: 1000 ms, metric_name: {\""},{"event":"cmd_output","timestamp":1607098353,"output":"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states:"},{"event":"cmd_output","timestamp":1607098353,"output":" [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks"},{"event":"cmd_output","timestamp":1607098353,"output":", observed_state: \"running\", publisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHandler.Runnin"},{"event":"cmd_output","timestamp":1607098353,"output":"gState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :resul"},{"event":"cmd_output","timestamp":1607098353,"output":"t, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_s"},{"event":"cmd_output","timestamp":1607098353,"output":"upervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:33.012 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHand"},{"event":"cmd_output","timestamp":1607098353,"output":"ler.StoppingState with name Elixir.Ppl.PplBlocks.STMHandler.StoppingState :: period: 1000 ms, metric"},{"event":"cmd_output","timestamp":1607098353,"output":"_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurring args: %{allow"},{"event":"cmd_output","timestamp":1607098353,"output":"ed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks,"},{"event":"cmd_output","timestamp":1607098353,"output":" observed_state: \"stopping\", publisher_cb: #Function<0.104215991/1 in Ppl.PplBlocks.STMHandler.Stopp"},{"event":"cmd_output","timestamp":1607098353,"output":"ingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :res"},{"event":"cmd_output","timestamp":1607098353,"output":"ult, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task"},{"event":"cmd_output","timestamp":1607098353,"output":"_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:33.012 [info] Periodic from module Elixir.Block.Blocks.STMHan"},{"event":"cmd_output","timestamp":1607098353,"output":"dler.InitializingState with name Elixir.Block.Blocks.STMHandler.InitializingState :: period: 100 ms,"},{"event":"cmd_output","timestamp":1607098353,"output":" metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, recurring arg"},{"event":"cmd_output","timestamp":1607098353,"output":"s: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Blocks.Model.Blo"},{"event":"cmd_output","timestamp":1607098353,"output":"cks, observed_state: \"initializing\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :te"},{"event":"cmd_output","timestamp":1607098353,"output":"rminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks"},{"event":"cmd_output","timestamp":1607098353,"output":", task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:33.012 [info] Periodic from module Elixir.Block.Blocks."},{"event":"cmd_output","timestamp":1607098353,"output":"STMHandler.RunningState with name Elixir.Block.Blocks.STMHandler.RunningState :: period: 100 ms, met"},{"event":"cmd_output","timestamp":1607098353,"output":"ric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-RunningState\"]}, recurring args: %{allo"},{"event":"cmd_output","timestamp":1607098353,"output":"wed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model"},{"event":"cmd_output","timestamp":1607098353,"output":".Blocks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :ter"},{"event":"cmd_output","timestamp":1607098353,"output":"minate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks,"},{"event":"cmd_output","timestamp":1607098353,"output":" task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:33.012 [info] Periodic from module Elixir.Block.Blocks.S"},{"event":"cmd_output","timestamp":1607098353,"output":"TMHandler.StoppingState with name Elixir.Block.Blocks.STMHandler.StoppingState :: period: 100 ms, me"},{"event":"cmd_output","timestamp":1607098353,"output":"tric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-StoppingState\"]}, recurring args: %{al"},{"event":"cmd_output","timestamp":1607098353,"output":"lowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, "},{"event":"cmd_output","timestamp":1607098353,"output":"observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_r"},{"event":"cmd_output","timestamp":1607098353,"output":"equest, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_su"},{"event":"cmd_output","timestamp":1607098353,"output":"pervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:33.012 [info] Periodic from module Elixir.Block.Tasks.STMHandler"},{"event":"cmd_output","timestamp":1607098353,"output":".PendingState with name Elixir.Block.Tasks.STMHandler.PendingState :: period: 100 ms, metric_name: {"},{"event":"cmd_output","timestamp":1607098353,"output":"\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingState\"]}, recurring args: %{allowed_states: "},{"event":"cmd_output","timestamp":1607098353,"output":"[\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Tasks.Model.Tasks, observed_state: \"p"},{"event":"cmd_output","timestamp":1607098353,"output":"ending\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at"},{"event":"cmd_output","timestamp":1607098353,"output":", :state, :recovery_count, :block_id, :build_request_id], schema: Block.Tasks.Model.Tasks, task_supe"},{"event":"cmd_output","timestamp":1607098353,"output":"rvisor: :skip}\n\u001b[0m\u001b[22m\n16:12:33.012 [info] Periodic from module Elixir.Block.Tasks.STMHandler.R"},{"event":"cmd_output","timestamp":1607098353,"output":"unningState with name Elixir.Block.Tasks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"P"},{"event":"cmd_output","timestamp":1607098353,"output":"pl.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\""},{"event":"cmd_output","timestamp":1607098353,"output":"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observe"},{"event":"cmd_output","timestamp":1607098353,"output":"d_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, "},{"event":"cmd_output","timestamp":1607098353,"output":":updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: "},{"event":"cmd_output","timestamp":1607098353,"output":":skip}\n\u001b[0m\u001b[22m\n16:12:33.013 [info] Periodic from module Elixir.Block.Tasks.STMHandler.StoppingS"},{"event":"cmd_output","timestamp":1607098353,"output":"tate with name Elixir.Block.Tasks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beh"},{"event":"cmd_output","timestamp":1607098353,"output":"older-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopp"},{"event":"cmd_output","timestamp":1607098353,"output":"ing\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"stoppi"},{"event":"cmd_output","timestamp":1607098353,"output":"ng\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :s"},{"event":"cmd_output","timestamp":1607098353,"output":"tate, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098353,"output":"2m\n16:12:33.125 [info] ppl_id: 6f1ff7c2-9877-4792-bcb5-471626771c08, type: PplRequests, event: per"},{"event":"cmd_output","timestamp":1607098353,"output":"sisted source_args for pipeline: 6f1ff7c2-9877-4792-bcb5-471626771c08, origin: Elixir.Ppl.PplRequest"},{"event":"cmd_output","timestamp":1607098353,"output":"s.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:33.128 [info] ppl_id: 6f1ff7c2-"},{"event":"cmd_output","timestamp":1607098353,"output":"9877-4792-bcb5-471626771c08, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_co"},{"event":"cmd_output","timestamp":1607098353,"output":"unt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:33.144 [info] pp"},{"event":"cmd_output","timestamp":1607098353,"output":"l_id: 6f1ff7c2-9877-4792-bcb5-471626771c08, type: PplSubInits, state: regular_init, event: exit_sche"},{"event":"cmd_output","timestamp":1607098353,"output":"duling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098353,"output":"2:33.173 [info] ppl_id: 6f1ff7c2-9877-4792-bcb5-471626771c08, type: PplRequests, event: persisted d"},{"event":"cmd_output","timestamp":1607098353,"output":"efinition for request with request_token: 83febb3a-364b-11eb-8295-5254005464e2, origin: Elixir.Ppl.P"},{"event":"cmd_output","timestamp":1607098353,"output":"plRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:33.176 [info] Queu"},{"event":"cmd_output","timestamp":1607098353,"output":"e persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inse"},{"event":"cmd_output","timestamp":1607098353,"output":"rted_at: ~N[2020-12-04 16:12:33.175194], name: \"master-.semaphore/semaphore.yml\", organization_id: \""},{"event":"cmd_output","timestamp":1607098353,"output":"8768e248-3026-4e73-8eb5-071e7311a2e8\", project_id: \"42a97fa0-cf14-4574-a956-b2e1118745e2\", queue_id:"},{"event":"cmd_output","timestamp":1607098353,"output":" \"fd1a8cf1-3183-4e7a-96e4-9ec0cd493daf\", scope: \"project\", updated_at: ~N[2020-12-04 16:12:33.175204"},{"event":"cmd_output","timestamp":1607098353,"output":"], user_generated: false}}\n\u001b[0m\u001b[22m\n16:12:33.182 [info] ppl_id: not_available, event: created, o"},{"event":"cmd_output","timestamp":1607098353,"output":"rigin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:33.182"},{"event":"cmd_output","timestamp":1607098353,"output":" [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105),"},{"event":"cmd_output","timestamp":1607098353,"output":" \n\u001b[0m\u001b[22m\n16:12:33.182 [info] ppl_id: 6f1ff7c2-9877-4792-bcb5-471626771c08, type: PplBlocks, bl"},{"event":"cmd_output","timestamp":1607098353,"output":"ock_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits"},{"event":"cmd_output","timestamp":1607098353,"output":".STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:33.182 [info] ppl_id: 6f1ff7c2-987"},{"event":"cmd_output","timestamp":1607098353,"output":"7-4792-bcb5-471626771c08, type: PplBlocks, block_index: 1, state: initializing, event: created, reco"},{"event":"cmd_output","timestamp":1607098353,"output":"very_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098353,"output":"2m\n16:12:33.184 [info] ppl_id: 6f1ff7c2-9877-4792-bcb5-471626771c08, type: PplSubInits, state: don"},{"event":"cmd_output","timestamp":1607098353,"output":"e, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_sta"},{"event":"cmd_output","timestamp":1607098353,"output":"te_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:33.191 [info] ppl_id: 6f1ff7c2-9877-4792-bcb5-471626771c08, ty"},{"event":"cmd_output","timestamp":1607098353,"output":"pe: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl."},{"event":"cmd_output","timestamp":1607098353,"output":"log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:33.193 [info] ppl_id: 6f1ff7c2-9877-4792-bcb5-471626771"},{"event":"cmd_output","timestamp":1607098353,"output":"c08, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098353,"output":"gin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:33.200 [info] ppl_id: 6f1ff"},{"event":"cmd_output","timestamp":1607098353,"output":"7c2-9877-4792-bcb5-471626771c08, type: Ppls, state: queuing, event: exit_scheduling, recovery_count:"},{"event":"cmd_output","timestamp":1607098353,"output":" 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:33.200 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098353,"output":": 6f1ff7c2-9877-4792-bcb5-471626771c08, type: PplBlocks, block_index: 1, state: waiting, event: exit"},{"event":"cmd_output","timestamp":1607098353,"output":"_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098353,"output":"\n16:12:33.208 [info] ppl_id: 6f1ff7c2-9877-4792-bcb5-471626771c08, type: Ppls, state: running, even"},{"event":"cmd_output","timestamp":1607098353,"output":"t: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098353,"output":"m\u001b[22m\n16:12:33.214 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"6f1ff7"},{"event":"cmd_output","timestamp":1607098353,"output":"c2-9877-4792-bcb5-471626771c08\"\n\u001b[0m\u001b[22m\n16:12:33.221 [info] block_id: b805eab2-0dbe-4b69-ae3f-d"},{"event":"cmd_output","timestamp":1607098353,"output":"ff6f1ad8188, type: BlockRequests, event: persisted block run request from ppl 6f1ff7c2-9877-4792-bcb"},{"event":"cmd_output","timestamp":1607098353,"output":"5-471626771c08 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_re"},{"event":"cmd_output","timestamp":1607098353,"output":"sponse/4(L35), \n\u001b[0m\u001b[22m\n16:12:33.226 [info] block_id: b805eab2-0dbe-4b69-ae3f-dff6f1ad8188, typ"},{"event":"cmd_output","timestamp":1607098353,"output":"e: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks."},{"event":"cmd_output","timestamp":1607098353,"output":"Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:33.229 [info] Block 0 of pipeline with id: 6f"},{"event":"cmd_output","timestamp":1607098353,"output":"1ff7c2-9877-4792-bcb5-471626771c08 scheduled in block service with id: : \"b805eab2-0dbe-4b69-ae3f-df"},{"event":"cmd_output","timestamp":1607098353,"output":"f6f1ad8188\"\n\u001b[0m\u001b[22m\n16:12:33.232 [info] ppl_id: 6f1ff7c2-9877-4792-bcb5-471626771c08, type: Ppl"},{"event":"cmd_output","timestamp":1607098353,"output":"Blocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Lo"},{"event":"cmd_output","timestamp":1607098353,"output":"oper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:33.235 [info] block_id: b805eab2-0dbe-4b6"},{"event":"cmd_output","timestamp":1607098353,"output":"9-ae3f-dff6f1ad8188, type: BlockRequests, event: persisted build and sub_ppl details for block_reque"},{"event":"cmd_output","timestamp":1607098353,"output":"st: b805eab2-0dbe-4b69-ae3f-dff6f1ad8188, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQuer"},{"event":"cmd_output","timestamp":1607098353,"output":"ies.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:33.236 [info] block_id: b805eab2-0dbe-4b69-ae3f-dff6f1a"},{"event":"cmd_output","timestamp":1607098353,"output":"d8188, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.S"},{"event":"cmd_output","timestamp":1607098353,"output":"TMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:33.245 [info] block_id: b805eab2-0d"},{"event":"cmd_output","timestamp":1607098353,"output":"be-4b69-ae3f-dff6f1ad8188, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098353,"output":"origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:33.280 [info] block_id: "},{"event":"cmd_output","timestamp":1607098353,"output":"b805eab2-0dbe-4b69-ae3f-dff6f1ad8188, type: Tasks, state: running, event: exit_scheduling, recovery_"},{"event":"cmd_output","timestamp":1607098353,"output":"count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:33.467 [info] "},{"event":"cmd_output","timestamp":1607098353,"output":"block_id: b805eab2-0dbe-4b69-ae3f-dff6f1ad8188, type: Tasks, state: done, event: exit_scheduling, re"},{"event":"cmd_output","timestamp":1607098353,"output":"covery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:33.472 ["},{"event":"cmd_output","timestamp":1607098353,"output":"info] block_id: b805eab2-0dbe-4b69-ae3f-dff6f1ad8188, type: Blocks, state: done, event: exit_schedu"},{"event":"cmd_output","timestamp":1607098353,"output":"ling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:"},{"event":"cmd_output","timestamp":1607098353,"output":"33.477 [info] ppl_id: 6f1ff7c2-9877-4792-bcb5-471626771c08, block_id: b805eab2-0dbe-4b69-ae3f-dff6f"},{"event":"cmd_output","timestamp":1607098353,"output":"1ad8188, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, recov"},{"event":"cmd_output","timestamp":1607098353,"output":"ery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:33.483 [inf"},{"event":"cmd_output","timestamp":1607098353,"output":"o] PplBlocks WaitingState STM is scheduling block 1 from pipeline: \"6f1ff7c2-9877-4792-bcb5-4716267"},{"event":"cmd_output","timestamp":1607098353,"output":"71c08\"\n\u001b[0m\u001b[22m\n16:12:33.489 [info] block_id: ff6a7eea-1535-4245-80f4-932fef615cc7, type: BlockR"},{"event":"cmd_output","timestamp":1607098353,"output":"equests, event: persisted block run request from ppl 6f1ff7c2-9877-4792-bcb5-471626771c08 for block "},{"event":"cmd_output","timestamp":1607098353,"output":"1, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098353,"output":"m\n16:12:33.490 [info] block_id: ff6a7eea-1535-4245-80f4-932fef615cc7, type: Blocks, state: initial"},{"event":"cmd_output","timestamp":1607098353,"output":"izing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.inser"},{"event":"cmd_output","timestamp":1607098353,"output":"t/1(L43), \n\u001b[0m\u001b[22m\n16:12:33.490 [info] Block 1 of pipeline with id: 6f1ff7c2-9877-4792-bcb5-471"},{"event":"cmd_output","timestamp":1607098353,"output":"626771c08 scheduled in block service with id: : \"ff6a7eea-1535-4245-80f4-932fef615cc7\"\n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098353,"output":"6:12:33.493 [info] ppl_id: 6f1ff7c2-9877-4792-bcb5-471626771c08, type: PplBlocks, block_index: 1, s"},{"event":"cmd_output","timestamp":1607098353,"output":"tate: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098353,"output":"hange/1(L90), \n\u001b[0m\u001b[22m\n16:12:33.496 [info] block_id: ff6a7eea-1535-4245-80f4-932fef615cc7, type"},{"event":"cmd_output","timestamp":1607098353,"output":": BlockRequests, event: persisted build and sub_ppl details for block_request: ff6a7eea-1535-4245-80"},{"event":"cmd_output","timestamp":1607098353,"output":"f4-932fef615cc7, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), "},{"event":"cmd_output","timestamp":1607098353,"output":"\n\u001b[0m\u001b[22m\n16:12:33.498 [info] block_id: ff6a7eea-1535-4245-80f4-932fef615cc7, type: Tasks, state"},{"event":"cmd_output","timestamp":1607098353,"output":": pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingSta"},{"event":"cmd_output","timestamp":1607098353,"output":"te.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:33.499 [info] block_id: ff6a7eea-1535-4245-80f4-932fef615cc7"},{"event":"cmd_output","timestamp":1607098353,"output":", type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM"},{"event":"cmd_output","timestamp":1607098353,"output":".Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:33.512 [info] block_id: ff6a7eea-1535-4245-80f4-9"},{"event":"cmd_output","timestamp":1607098353,"output":"32fef615cc7, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098353,"output":"Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:33.575 [info] block_id: ff6a7eea-1535-4"},{"event":"cmd_output","timestamp":1607098353,"output":"245-80f4-932fef615cc7, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098353,"output":"Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:33.587 [info] block_id: ff6a7eea"},{"event":"cmd_output","timestamp":1607098353,"output":"-1535-4245-80f4-932fef615cc7, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098353,"output":"origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:33.592 [info] ppl_id: 6f"},{"event":"cmd_output","timestamp":1607098353,"output":"1ff7c2-9877-4792-bcb5-471626771c08, block_id: ff6a7eea-1535-4245-80f4-932fef615cc7, type: PplBlocks,"},{"event":"cmd_output","timestamp":1607098353,"output":" block_index: 1, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098353,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:33.609 [info] ppl_id: 6f1ff7c2-9877"},{"event":"cmd_output","timestamp":1607098353,"output":"-4792-bcb5-471626771c08, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098354,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test v1: gRPC descr"},{"event":"cmd_output","timestamp":1607098354,"output":"ibe() - pipeline execution passed, initial def saved (1071.0ms)\u001b[0m\n * test gRPC describe_topology"},{"event":"cmd_output","timestamp":1607098354,"output":"() - ppl_id not found\r * test gRPC describe_topology() - ppl_id not found (skipped)\n * test gRPC "},{"event":"cmd_output","timestamp":1607098354,"output":"schedule_extension() local - succedes when given valid params\u001b[22m\n16:12:34.072 [info] Request: 'r"},{"event":"cmd_output","timestamp":1607098354,"output":"un: %{\"branch_id\" => \"5ddca45f-dec5-4fb7-9ef2-09aade4a0bfa\", \"branch_name\" => \"master\", \"commit_sha\""},{"event":"cmd_output","timestamp":1607098354,"output":" => \"75891a4469\", \"file_name\" => \"semaphore.yml\", \"hook_id\" => \"84a3e146-364b-11eb-a28b-5254005464e2"},{"event":"cmd_output","timestamp":1607098354,"output":"\", \"label\" => \"master\", \"organization_id\" => \"081bd93b-b273-4e06-a75f-f606e93a0276\", \"owner\" => \"rt\""},{"event":"cmd_output","timestamp":1607098354,"output":", \"project_id\" => \"e7c09b92-85fe-4181-bbae-03a5b0e2aa93\", \"repo_name\" => \"10_schedule_extension\", \"r"},{"event":"cmd_output","timestamp":1607098354,"output":"equest_token\" => \"84a3d96c-364b-11eb-b31c-5254005464e2\", \"requester_id\" => \"26cecb05-a9b2-4227-80cd-"},{"event":"cmd_output","timestamp":1607098354,"output":"0bd6217fc227\", \"service\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \""},{"event":"cmd_output","timestamp":1607098354,"output":"wf_id\" => \"1d0ba96f-1def-460b-af4b-c57108d6570f\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:12:3"},{"event":"cmd_output","timestamp":1607098354,"output":"4.074 [info] ppl_id: 33aeabab-bd86-4666-aec7-8ab06ab7472f, type: PplRequests, event: persisted sche"},{"event":"cmd_output","timestamp":1607098354,"output":"dule request with request_token: 84a3d96c-364b-11eb-b31c-5254005464e2, origin: Elixir.Ppl.PplRequest"},{"event":"cmd_output","timestamp":1607098354,"output":"s.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:34.077 [info] ppl_id: 33aeab"},{"event":"cmd_output","timestamp":1607098354,"output":"ab-bd86-4666-aec7-8ab06ab7472f, type: Ppls, state: initializing, event: initializing, recovery_count"},{"event":"cmd_output","timestamp":1607098354,"output":": 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:34.080 ["},{"event":"cmd_output","timestamp":1607098354,"output":"info] Project e7c09b92-85fe-4181-bbae-03a5b0e2aa93 and branch masterlatest_wf details updated: \"wf_"},{"event":"cmd_output","timestamp":1607098354,"output":"id: 1d0ba96f-1def-460b-af4b-c57108d6570f, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:12:34.081 [info] Persisted p"},{"event":"cmd_output","timestamp":1607098354,"output":"pl_sub_init for pipeline with ppl_id: 33aeabab-bd86-4666-aec7-8ab06ab7472f: %Ppl.PplSubInits.Model.P"},{"event":"cmd_output","timestamp":1607098354,"output":"plSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, err"},{"event":"cmd_output","timestamp":1607098354,"output":"or_description: nil, id: 232, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04"},{"event":"cmd_output","timestamp":1607098354,"output":" 16:12:34.080265], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"33aeabab-bd86-4666-aec7-8ab06ab7472f\", recovery_count: 0, result: nil, result_"},{"event":"cmd_output","timestamp":1607098354,"output":"reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2"},{"event":"cmd_output","timestamp":1607098354,"output":"020-12-04 16:12:34.080271]}\n\u001b[0m\u001b[22m\n16:12:34.090 [info] Periodic from module Elixir.Ppl.Ppls.ST"},{"event":"cmd_output","timestamp":1607098354,"output":"MHandler.InitializingState with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms,"},{"event":"cmd_output","timestamp":1607098354,"output":" metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %"},{"event":"cmd_output","timestamp":1607098354,"output":"{allowed_states: [\"initializing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.M"},{"event":"cmd_output","timestamp":1607098354,"output":"odel.Ppls, observed_state: \"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHand"},{"event":"cmd_output","timestamp":1607098354,"output":"ler.InitializingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at,"},{"event":"cmd_output","timestamp":1607098354,"output":" :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b"},{"event":"cmd_output","timestamp":1607098354,"output":"[0m\u001b[22m\n16:12:34.090 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingState with nam"},{"event":"cmd_output","timestamp":1607098354,"output":"e Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", ["},{"event":"cmd_output","timestamp":1607098354,"output":"\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"pending\", \"queuing\", \"runn"},{"event":"cmd_output","timestamp":1607098354,"output":"ing\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", p"},{"event":"cmd_output","timestamp":1607098354,"output":"ublisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, "},{"event":"cmd_output","timestamp":1607098354,"output":"returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema"},{"event":"cmd_output","timestamp":1607098354,"output":": Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:12:34.090 [info] Periodi"},{"event":"cmd_output","timestamp":1607098354,"output":"c from module Elixir.Ppl.Ppls.STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandler.QueuingSt"},{"event":"cmd_output","timestamp":1607098354,"output":"ate :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, "},{"event":"cmd_output","timestamp":1607098354,"output":"recurring args: %{allowed_states: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, initial_quer"},{"event":"cmd_output","timestamp":1607098354,"output":"y: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls"},{"event":"cmd_output","timestamp":1607098354,"output":".STMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_"},{"event":"cmd_output","timestamp":1607098354,"output":"at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}"},{"event":"cmd_output","timestamp":1607098354,"output":"\n\u001b[0m\u001b[22m\n16:12:34.090 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.RunningState with "},{"event":"cmd_output","timestamp":1607098354,"output":"name Elixir.Ppl.Ppls.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\""},{"event":"cmd_output","timestamp":1607098354,"output":", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \""},{"event":"cmd_output","timestamp":1607098354,"output":"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"running\", publish"},{"event":"cmd_output","timestamp":1607098354,"output":"er_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, retur"},{"event":"cmd_output","timestamp":1607098354,"output":"ning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl"},{"event":"cmd_output","timestamp":1607098354,"output":".Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:12:34.090 [info] Periodic fro"},{"event":"cmd_output","timestamp":1607098354,"output":"m module Elixir.Ppl.Ppls.STMHandler.StoppingState with name Elixir.Ppl.Ppls.STMHandler.StoppingState"},{"event":"cmd_output","timestamp":1607098354,"output":" :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, re"},{"event":"cmd_output","timestamp":1607098354,"output":"curring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls."},{"event":"cmd_output","timestamp":1607098354,"output":"Model.Ppls, observed_state: \"stopping\", publisher_cb: #Function<0.71803493/1 in Ppl.Ppls.STMHandler."},{"event":"cmd_output","timestamp":1607098354,"output":"StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state,"},{"event":"cmd_output","timestamp":1607098354,"output":" :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098354,"output":"\n16:12:34.090 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedState with name"},{"event":"cmd_output","timestamp":1607098354,"output":" Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_"},{"event":"cmd_output","timestamp":1607098354,"output":"up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args: %{allowed_states: [\"fetching\", \"d"},{"event":"cmd_output","timestamp":1607098354,"output":"one\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"creat"},{"event":"cmd_output","timestamp":1607098354,"output":"ed\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :sta"},{"event":"cmd_output","timestamp":1607098354,"output":"te, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: "},{"event":"cmd_output","timestamp":1607098354,"output":":skip}\n\u001b[0m\u001b[22m\n16:12:34.090 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.Fetch"},{"event":"cmd_output","timestamp":1607098354,"output":"ingState with name Elixir.Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 ms, metric_name: {"},{"event":"cmd_output","timestamp":1607098354,"output":"\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %{allowed_sta"},{"event":"cmd_output","timestamp":1607098354,"output":"tes: [\"regular_init\", \"compilation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.M"},{"event":"cmd_output","timestamp":1607098354,"output":"odel.PplSubInits, observed_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:"},{"event":"cmd_output","timestamp":1607098354,"output":"id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubI"},{"event":"cmd_output","timestamp":1607098354,"output":"nits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:34.091 [info] Periodic from modul"},{"event":"cmd_output","timestamp":1607098354,"output":"e Elixir.Ppl.PplSubInits.STMHandler.CompilationState with name Elixir.Ppl.PplSubInits.STMHandler.Com"},{"event":"cmd_output","timestamp":1607098354,"output":"pilationState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-"},{"event":"cmd_output","timestamp":1607098354,"output":"CompilationState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"stopping\", \""},{"event":"cmd_output","timestamp":1607098354,"output":"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"com"},{"event":"cmd_output","timestamp":1607098354,"output":"pilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at"},{"event":"cmd_output","timestamp":1607098354,"output":", :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_superv"},{"event":"cmd_output","timestamp":1607098354,"output":"isor: :skip}\n\u001b[0m\u001b[22m\n16:12:34.091 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler"},{"event":"cmd_output","timestamp":1607098354,"output":".RegularInitState with name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period: 100 ms, me"},{"event":"cmd_output","timestamp":1607098354,"output":"tric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurring args"},{"event":"cmd_output","timestamp":1607098354,"output":": %{allowed_states: [\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits,"},{"event":"cmd_output","timestamp":1607098354,"output":" observed_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminat"},{"event":"cmd_output","timestamp":1607098354,"output":"e_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.Pp"},{"event":"cmd_output","timestamp":1607098354,"output":"lSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:34.091 [info] Periodic from module Elixir.Ppl."},{"event":"cmd_output","timestamp":1607098354,"output":"PplBlocks.STMHandler.InitializingState with name Elixir.Ppl.PplBlocks.STMHandler.InitializingState :"},{"event":"cmd_output","timestamp":1607098354,"output":": period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-InitializingState"},{"event":"cmd_output","timestamp":1607098354,"output":"\"]}, recurring args: %{allowed_states: [\"initializing\", \"waiting\", \"done\"], cooling_time_sec: 0, ini"},{"event":"cmd_output","timestamp":1607098354,"output":"tial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"initializing\", publisher_cb: :skip, repo"},{"event":"cmd_output","timestamp":1607098354,"output":": Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, "},{"event":"cmd_output","timestamp":1607098354,"output":":ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098354,"output":"6:12:34.091 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.WaitingState with name Elix"},{"event":"cmd_output","timestamp":1607098354,"output":"ir.Ppl.PplBlocks.STMHandler.WaitingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", ["},{"event":"cmd_output","timestamp":1607098354,"output":"\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurring args: %{allowed_states: [\"waiting\", \"running\", "},{"event":"cmd_output","timestamp":1607098354,"output":"\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"waiting"},{"event":"cmd_output","timestamp":1607098354,"output":"\", publisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>, repo: Ppl.E"},{"event":"cmd_output","timestamp":1607098354,"output":"ctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id"},{"event":"cmd_output","timestamp":1607098354,"output":", :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:34"},{"event":"cmd_output","timestamp":1607098354,"output":".091 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.RunningState with name Elixir.Ppl."},{"event":"cmd_output","timestamp":1607098354,"output":"PplBlocks.STMHandler.RunningState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Pp"},{"event":"cmd_output","timestamp":1607098354,"output":"lBlocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\""},{"event":"cmd_output","timestamp":1607098354,"output":"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"running\", pu"},{"event":"cmd_output","timestamp":1607098354,"output":"blisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0>, repo: Ppl.EctoR"},{"event":"cmd_output","timestamp":1607098354,"output":"epo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :b"},{"event":"cmd_output","timestamp":1607098354,"output":"lock_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098354,"output":"6:12:34.091 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.StoppingState with name Eli"},{"event":"cmd_output","timestamp":1607098354,"output":"xir.Ppl.PplBlocks.STMHandler.StoppingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\","},{"event":"cmd_output","timestamp":1607098354,"output":" [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"]"},{"event":"cmd_output","timestamp":1607098354,"output":", cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"stopping\", pu"},{"event":"cmd_output","timestamp":1607098354,"output":"blisher_cb: #Function<0.104215991/1 in Ppl.PplBlocks.STMHandler.StoppingState.args/0>, repo: Ppl.Ect"},{"event":"cmd_output","timestamp":1607098354,"output":"oRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, "},{"event":"cmd_output","timestamp":1607098354,"output":":block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098354,"output":"\n16:12:34.091 [info] Periodic from module Elixir.Block.Blocks.STMHandler.InitializingState with nam"},{"event":"cmd_output","timestamp":1607098354,"output":"e Elixir.Block.Blocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wa"},{"event":"cmd_output","timestamp":1607098354,"output":"ke_up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"running\""},{"event":"cmd_output","timestamp":1607098354,"output":", \"done\"], cooling_time_sec: 0, initial_query: Block.Blocks.Model.Blocks, observed_state: \"initializ"},{"event":"cmd_output","timestamp":1607098354,"output":"ing\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :"},{"event":"cmd_output","timestamp":1607098354,"output":"state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m"},{"event":"cmd_output","timestamp":1607098354,"output":"\u001b[22m\n16:12:34.091 [info] Periodic from module Elixir.Block.Blocks.STMHandler.RunningState with na"},{"event":"cmd_output","timestamp":1607098354,"output":"me Elixir.Block.Blocks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_u"},{"event":"cmd_output","timestamp":1607098354,"output":"p\", [\"Block-Blocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stoppi"},{"event":"cmd_output","timestamp":1607098354,"output":"ng\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"runni"},{"event":"cmd_output","timestamp":1607098354,"output":"ng\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :s"},{"event":"cmd_output","timestamp":1607098354,"output":"tate, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098354,"output":"[22m\n16:12:34.091 [info] Periodic from module Elixir.Block.Blocks.STMHandler.StoppingState with na"},{"event":"cmd_output","timestamp":1607098354,"output":"me Elixir.Block.Blocks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_"},{"event":"cmd_output","timestamp":1607098354,"output":"up\", [\"Block-Blocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"don"},{"event":"cmd_output","timestamp":1607098354,"output":"e\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"stopping\", pub"},{"event":"cmd_output","timestamp":1607098354,"output":"lisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :r"},{"event":"cmd_output","timestamp":1607098354,"output":"ecovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098354,"output":":12:34.092 [info] Periodic from module Elixir.Block.Tasks.STMHandler.PendingState with name Elixir."},{"event":"cmd_output","timestamp":1607098354,"output":"Block.Tasks.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block"},{"event":"cmd_output","timestamp":1607098354,"output":"-Tasks-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_ti"},{"event":"cmd_output","timestamp":1607098354,"output":"me_sec: 0, initial_query: Block.Tasks.Model.Tasks, observed_state: \"pending\", publisher_cb: :skip, r"},{"event":"cmd_output","timestamp":1607098354,"output":"epo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :blo"},{"event":"cmd_output","timestamp":1607098354,"output":"ck_id, :build_request_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098354,"output":"2:34.092 [info] Periodic from module Elixir.Block.Tasks.STMHandler.RunningState with name Elixir.Bl"},{"event":"cmd_output","timestamp":1607098354,"output":"ock.Tasks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-T"},{"event":"cmd_output","timestamp":1607098354,"output":"asks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], "},{"event":"cmd_output","timestamp":1607098354,"output":"cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"running\", publisher_c"},{"event":"cmd_output","timestamp":1607098354,"output":"b: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_"},{"event":"cmd_output","timestamp":1607098354,"output":"count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:34.092"},{"event":"cmd_output","timestamp":1607098354,"output":" [info] Periodic from module Elixir.Block.Tasks.STMHandler.StoppingState with name Elixir.Block.Tas"},{"event":"cmd_output","timestamp":1607098354,"output":"ks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-S"},{"event":"cmd_output","timestamp":1607098354,"output":"TMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec"},{"event":"cmd_output","timestamp":1607098354,"output":": -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"stopping\", publisher_cb: :skip, repo:"},{"event":"cmd_output","timestamp":1607098354,"output":" Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_i"},{"event":"cmd_output","timestamp":1607098354,"output":"d], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:34.204 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098354,"output":": 33aeabab-bd86-4666-aec7-8ab06ab7472f, type: PplRequests, event: persisted source_args for pipeline"},{"event":"cmd_output","timestamp":1607098354,"output":": 33aeabab-bd86-4666-aec7-8ab06ab7472f, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.inse"},{"event":"cmd_output","timestamp":1607098354,"output":"rt_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:34.206 [info] ppl_id: 33aeabab-bd86-4666-aec7-8ab06ab7472f, ty"},{"event":"cmd_output","timestamp":1607098354,"output":"pe: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.S"},{"event":"cmd_output","timestamp":1607098354,"output":"TM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:34.220 [info] ppl_id: 33aeabab-bd86-4666-aec7-8"},{"event":"cmd_output","timestamp":1607098354,"output":"ab06ab7472f, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098354,"output":"in: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:34.240 [info] ppl_id: 33aeab"},{"event":"cmd_output","timestamp":1607098354,"output":"ab-bd86-4666-aec7-8ab06ab7472f, type: PplRequests, event: persisted definition for request with requ"},{"event":"cmd_output","timestamp":1607098354,"output":"est_token: 84a3d96c-364b-11eb-b31c-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQue"},{"event":"cmd_output","timestamp":1607098354,"output":"ries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:34.242 [info] Queue persisted: {:ok, %Ppl.Queues."},{"event":"cmd_output","timestamp":1607098354,"output":"Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:12:34"},{"event":"cmd_output","timestamp":1607098354,"output":".241563], name: \"master-.semaphore/semaphore.yml\", organization_id: \"081bd93b-b273-4e06-a75f-f606e93"},{"event":"cmd_output","timestamp":1607098354,"output":"a0276\", project_id: \"e7c09b92-85fe-4181-bbae-03a5b0e2aa93\", queue_id: \"d653a9b4-d874-4f6f-a681-4ee3a"},{"event":"cmd_output","timestamp":1607098354,"output":"05c3d42\", scope: \"project\", updated_at: ~N[2020-12-04 16:12:34.241573], user_generated: false}}\n\u001b[0"},{"event":"cmd_output","timestamp":1607098354,"output":"m\u001b[22m\n16:12:34.247 [info] ppl_id: not_available, event: created, origin: Elixir.Ppl.PplSubInits.S"},{"event":"cmd_output","timestamp":1607098354,"output":"TMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:34.247 [info] event: created, origin"},{"event":"cmd_output","timestamp":1607098354,"output":": Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:34.247 [inf"},{"event":"cmd_output","timestamp":1607098354,"output":"o] ppl_id: 33aeabab-bd86-4666-aec7-8ab06ab7472f, type: PplBlocks, block_index: 0, state: initializi"},{"event":"cmd_output","timestamp":1607098354,"output":"ng, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.al"},{"event":"cmd_output","timestamp":1607098354,"output":"l_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:34.247 [info] ppl_id: 33aeabab-bd86-4666-aec7-8ab06ab7472f, type:"},{"event":"cmd_output","timestamp":1607098354,"output":" PplBlocks, block_index: 1, state: initializing, event: created, recovery_count: 0, origin: Elixir.P"},{"event":"cmd_output","timestamp":1607098354,"output":"pl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:34.249 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098354,"output":": 33aeabab-bd86-4666-aec7-8ab06ab7472f, type: PplSubInits, state: done, result: passed, event: exit_"},{"event":"cmd_output","timestamp":1607098354,"output":"scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098354,"output":"16:12:34.255 [info] ppl_id: 33aeabab-bd86-4666-aec7-8ab06ab7472f, type: PplBlocks, block_index: 0, "},{"event":"cmd_output","timestamp":1607098354,"output":"state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_"},{"event":"cmd_output","timestamp":1607098354,"output":"change/1(L90), \n\u001b[0m\u001b[22m\n16:12:34.259 [info] ppl_id: 33aeabab-bd86-4666-aec7-8ab06ab7472f, type:"},{"event":"cmd_output","timestamp":1607098354,"output":" Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098354,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:34.261 [info] ppl_id: 33aeabab-bd86-4666-aec7-8ab06ab7472f"},{"event":"cmd_output","timestamp":1607098354,"output":", type: PplBlocks, block_index: 1, state: waiting, event: exit_scheduling, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098354,"output":": Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:34.274 [info] ppl_id: 33aeabab"},{"event":"cmd_output","timestamp":1607098354,"output":"-bd86-4666-aec7-8ab06ab7472f, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098354,"output":" origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:34.281 [info] ppl_id: 3"},{"event":"cmd_output","timestamp":1607098354,"output":"3aeabab-bd86-4666-aec7-8ab06ab7472f, type: Ppls, state: running, event: exit_scheduling, recovery_co"},{"event":"cmd_output","timestamp":1607098354,"output":"unt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:34.286 [info] Pp"},{"event":"cmd_output","timestamp":1607098354,"output":"lBlocks WaitingState STM is scheduling block 0 from pipeline: \"33aeabab-bd86-4666-aec7-8ab06ab7472f\""},{"event":"cmd_output","timestamp":1607098354,"output":"\n\u001b[0m\u001b[22m\n16:12:34.294 [info] block_id: 61474504-e19c-46d1-b996-91ecf14e0415, type: BlockRequest"},{"event":"cmd_output","timestamp":1607098354,"output":"s, event: persisted block run request from ppl 33aeabab-bd86-4666-aec7-8ab06ab7472f for block 0, ori"},{"event":"cmd_output","timestamp":1607098354,"output":"gin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098354,"output":"12:34.296 [info] block_id: 61474504-e19c-46d1-b996-91ecf14e0415, type: Blocks, state: initializing,"},{"event":"cmd_output","timestamp":1607098354,"output":" event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L4"},{"event":"cmd_output","timestamp":1607098354,"output":"3), \n\u001b[0m\u001b[22m\n16:12:34.298 [info] Block 0 of pipeline with id: 33aeabab-bd86-4666-aec7-8ab06ab74"},{"event":"cmd_output","timestamp":1607098354,"output":"72f scheduled in block service with id: : \"61474504-e19c-46d1-b996-91ecf14e0415\"\n\u001b[0m\u001b[22m\n16:12:3"},{"event":"cmd_output","timestamp":1607098354,"output":"4.303 [info] ppl_id: 33aeabab-bd86-4666-aec7-8ab06ab7472f, type: PplBlocks, block_index: 0, state: "},{"event":"cmd_output","timestamp":1607098354,"output":"running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/"},{"event":"cmd_output","timestamp":1607098354,"output":"1(L90), \n\u001b[0m\u001b[22m\n16:12:34.309 [info] block_id: 61474504-e19c-46d1-b996-91ecf14e0415, type: Bloc"},{"event":"cmd_output","timestamp":1607098354,"output":"kRequests, event: persisted build and sub_ppl details for block_request: 61474504-e19c-46d1-b996-91e"},{"event":"cmd_output","timestamp":1607098354,"output":"cf14e0415, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098354,"output":"\u001b[22m\n16:12:34.311 [info] block_id: 61474504-e19c-46d1-b996-91ecf14e0415, type: Tasks, state: pend"},{"event":"cmd_output","timestamp":1607098354,"output":"ing, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all"},{"event":"cmd_output","timestamp":1607098354,"output":"_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:34.312 [info] block_id: 61474504-e19c-46d1-b996-91ecf14e0415, type"},{"event":"cmd_output","timestamp":1607098354,"output":": Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl."},{"event":"cmd_output","timestamp":1607098354,"output":"log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:34.327 [info] block_id: 61474504-e19c-46d1-b996-91ecf14"},{"event":"cmd_output","timestamp":1607098354,"output":"e0415, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper"},{"event":"cmd_output","timestamp":1607098354,"output":".STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:34.419 [info] block_id: 61474504-e19c-46d1-b9"},{"event":"cmd_output","timestamp":1607098354,"output":"96-91ecf14e0415, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098354,"output":".Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:34.424 [info] block_id: 61474504-e19c-"},{"event":"cmd_output","timestamp":1607098354,"output":"46d1-b996-91ecf14e0415, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098354,"output":": Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:34.437 [info] ppl_id: 33aeabab"},{"event":"cmd_output","timestamp":1607098354,"output":"-bd86-4666-aec7-8ab06ab7472f, block_id: 61474504-e19c-46d1-b996-91ecf14e0415, type: PplBlocks, block"},{"event":"cmd_output","timestamp":1607098354,"output":"_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Lo"},{"event":"cmd_output","timestamp":1607098354,"output":"oper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:34.441 [info] PplBlocks WaitingState STM "},{"event":"cmd_output","timestamp":1607098354,"output":"is scheduling block 1 from pipeline: \"33aeabab-bd86-4666-aec7-8ab06ab7472f\"\n\u001b[0m\u001b[22m\n16:12:34.445"},{"event":"cmd_output","timestamp":1607098354,"output":" [info] block_id: a8c04875-6613-430f-b66f-5d27acfe1e52, type: BlockRequests, event: persisted block"},{"event":"cmd_output","timestamp":1607098354,"output":" run request from ppl 33aeabab-bd86-4666-aec7-8ab06ab7472f for block 1, origin: Elixir.Block.BlockRe"},{"event":"cmd_output","timestamp":1607098354,"output":"quests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:34.447 [info] block_i"},{"event":"cmd_output","timestamp":1607098354,"output":"d: a8c04875-6613-430f-b66f-5d27acfe1e52, type: Blocks, state: initializing, event: initializing, rec"},{"event":"cmd_output","timestamp":1607098354,"output":"overy_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:34"},{"event":"cmd_output","timestamp":1607098354,"output":".447 [info] Block 1 of pipeline with id: 33aeabab-bd86-4666-aec7-8ab06ab7472f scheduled in block se"},{"event":"cmd_output","timestamp":1607098354,"output":"rvice with id: : \"a8c04875-6613-430f-b66f-5d27acfe1e52\"\n\u001b[0m\u001b[22m\n16:12:34.449 [info] ppl_id: 33a"},{"event":"cmd_output","timestamp":1607098354,"output":"eabab-bd86-4666-aec7-8ab06ab7472f, type: PplBlocks, block_index: 1, state: running, event: exit_sche"},{"event":"cmd_output","timestamp":1607098354,"output":"duling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098354,"output":"2:34.453 [info] block_id: a8c04875-6613-430f-b66f-5d27acfe1e52, type: BlockRequests, event: persist"},{"event":"cmd_output","timestamp":1607098354,"output":"ed build and sub_ppl details for block_request: a8c04875-6613-430f-b66f-5d27acfe1e52, origin: Elixir"},{"event":"cmd_output","timestamp":1607098354,"output":".Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:34.455 [info"},{"event":"cmd_output","timestamp":1607098354,"output":"] block_id: a8c04875-6613-430f-b66f-5d27acfe1e52, type: Tasks, state: pending, event: created, reco"},{"event":"cmd_output","timestamp":1607098354,"output":"very_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098354,"output":"\n16:12:34.457 [info] block_id: a8c04875-6613-430f-b66f-5d27acfe1e52, type: Blocks, state: running,"},{"event":"cmd_output","timestamp":1607098354,"output":" event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), "},{"event":"cmd_output","timestamp":1607098354,"output":"\n\u001b[0m\u001b[22m\n16:12:34.468 [info] block_id: a8c04875-6613-430f-b66f-5d27acfe1e52, type: Tasks, state"},{"event":"cmd_output","timestamp":1607098354,"output":": running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chang"},{"event":"cmd_output","timestamp":1607098354,"output":"e/1(L90), \n\u001b[0m\u001b[22m\n16:12:34.529 [info] block_id: a8c04875-6613-430f-b66f-5d27acfe1e52, type: Ta"},{"event":"cmd_output","timestamp":1607098354,"output":"sks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_stat"},{"event":"cmd_output","timestamp":1607098354,"output":"e_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:34.534 [info] block_id: a8c04875-6613-430f-b66f-5d27acfe1e52, t"},{"event":"cmd_output","timestamp":1607098354,"output":"ype: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl."},{"event":"cmd_output","timestamp":1607098354,"output":"log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:34.547 [info] ppl_id: 33aeabab-bd86-4666-aec7-8ab06ab74"},{"event":"cmd_output","timestamp":1607098354,"output":"72f, block_id: a8c04875-6613-430f-b66f-5d27acfe1e52, type: PplBlocks, block_index: 1, state: done, r"},{"event":"cmd_output","timestamp":1607098354,"output":"esult: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098354,"output":"hange/1(L90), \n\u001b[0m\u001b[22m\n16:12:34.558 [info] ppl_id: 33aeabab-bd86-4666-aec7-8ab06ab7472f, type: "},{"event":"cmd_output","timestamp":1607098354,"output":"Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper."},{"event":"cmd_output","timestamp":1607098355,"output":"STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:35.108 [info] Request: 'run: %{\"auto_promoted\""},{"event":"cmd_output","timestamp":1607098355,"output":" => false, \"branch_id\" => \"5ddca45f-dec5-4fb7-9ef2-09aade4a0bfa\", \"branch_name\" => \"master\", \"commit"},{"event":"cmd_output","timestamp":1607098355,"output":"_sha\" => \"75891a4469\", \"env_vars\" => [], \"extension_of\" => \"33aeabab-bd86-4666-aec7-8ab06ab7472f\", \""},{"event":"cmd_output","timestamp":1607098355,"output":"file_name\" => \"/foo/bar/test.yml\", \"hook_id\" => \"84a3e146-364b-11eb-a28b-5254005464e2\", \"label\" => \""},{"event":"cmd_output","timestamp":1607098355,"output":"master\", \"organization_id\" => \"081bd93b-b273-4e06-a75f-f606e93a0276\", \"owner\" => \"rt\", \"prev_ppl_art"},{"event":"cmd_output","timestamp":1607098355,"output":"efact_ids\" => [\"33aeabab-bd86-4666-aec7-8ab06ab7472f\"], \"project_id\" => \"e7c09b92-85fe-4181-bbae-03a"},{"event":"cmd_output","timestamp":1607098355,"output":"5b0e2aa93\", \"promoter_id\" => \"\", \"repo_name\" => \"10_schedule_extension\", \"request_token\" => \"4fea15c"},{"event":"cmd_output","timestamp":1607098355,"output":"3-5829-4eda-9860-3ebb023e2575\", \"requester_id\" => \"26cecb05-a9b2-4227-80cd-0bd6217fc227\", \"service\" "},{"event":"cmd_output","timestamp":1607098355,"output":"=> \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"1d0ba96f-1def-"},{"event":"cmd_output","timestamp":1607098355,"output":"460b-af4b-c57108d6570f\", \"wf_number\" => 1, \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:12:35.110 ["},{"event":"cmd_output","timestamp":1607098355,"output":"info] ppl_id: f05e3534-ac91-4a1e-8fa6-79ec096be120, type: PplRequests, event: persisted schedule re"},{"event":"cmd_output","timestamp":1607098355,"output":"quest with request_token: 4fea15c3-5829-4eda-9860-3ebb023e2575, origin: Elixir.Ppl.PplRequests.Model"},{"event":"cmd_output","timestamp":1607098355,"output":".PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:35.113 [info] ppl_id: f05e3534-ac91"},{"event":"cmd_output","timestamp":1607098355,"output":"-4a1e-8fa6-79ec096be120, type: Ppls, state: initializing, event: initializing, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098355,"output":"igin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:35.115 [info] "},{"event":"cmd_output","timestamp":1607098355,"output":"Persisted ppl_sub_init for pipeline with ppl_id: f05e3534-ac91-4a1e-8fa6-79ec096be120: %Ppl.PplSubIn"},{"event":"cmd_output","timestamp":1607098355,"output":"its.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_i"},{"event":"cmd_output","timestamp":1607098355,"output":"d: nil, error_description: nil, id: 233, in_scheduling: false, init_type: \"regular\", inserted_at: ~N"},{"event":"cmd_output","timestamp":1607098355,"output":"[2020-12-04 16:12:35.115301], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"f05e3534-ac91-4a1e-8fa6-79ec096be120\", recovery_count: 0, result: n"},{"event":"cmd_output","timestamp":1607098355,"output":"il, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updat"},{"event":"cmd_output","timestamp":1607098355,"output":"ed_at: ~N[2020-12-04 16:12:35.115308]}\n\u001b[0m\u001b[22m\n16:12:35.120 [info] Periodic from module Elixir."},{"event":"cmd_output","timestamp":1607098355,"output":"Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: peri"},{"event":"cmd_output","timestamp":1607098355,"output":"od: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurr"},{"event":"cmd_output","timestamp":1607098355,"output":"ing args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query:"},{"event":"cmd_output","timestamp":1607098355,"output":" Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl.P"},{"event":"cmd_output","timestamp":1607098355,"output":"pls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :"},{"event":"cmd_output","timestamp":1607098355,"output":"updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor"},{"event":"cmd_output","timestamp":1607098355,"output":": :skip}\n\u001b[0m\u001b[22m\n16:12:35.120 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingSta"},{"event":"cmd_output","timestamp":1607098355,"output":"te with name Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-"},{"event":"cmd_output","timestamp":1607098355,"output":"wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"pending\", \"queu"},{"event":"cmd_output","timestamp":1607098355,"output":"ing\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \""},{"event":"cmd_output","timestamp":1607098355,"output":"pending\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl"},{"event":"cmd_output","timestamp":1607098355,"output":".EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_"},{"event":"cmd_output","timestamp":1607098355,"output":"id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:12:35.120 [inf"},{"event":"cmd_output","timestamp":1607098355,"output":"o] Periodic from module Elixir.Ppl.Ppls.STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandle"},{"event":"cmd_output","timestamp":1607098355,"output":"r.QueuingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Queuin"},{"event":"cmd_output","timestamp":1607098355,"output":"gState\"]}, recurring args: %{allowed_states: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, i"},{"event":"cmd_output","timestamp":1607098355,"output":"nitial_query: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", publisher_cb: #Function<0.125102843/1 "},{"event":"cmd_output","timestamp":1607098355,"output":"in Ppl.Ppls.STMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request"},{"event":"cmd_output","timestamp":1607098355,"output":", :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervi"},{"event":"cmd_output","timestamp":1607098355,"output":"sor: :skip}\n\u001b[0m\u001b[22m\n16:12:35.122 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.Running"},{"event":"cmd_output","timestamp":1607098355,"output":"State with name Elixir.Ppl.Ppls.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.behold"},{"event":"cmd_output","timestamp":1607098355,"output":"er-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"s"},{"event":"cmd_output","timestamp":1607098355,"output":"topping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"runnin"},{"event":"cmd_output","timestamp":1607098355,"output":"g\", publisher_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler.RunningState.args/0>, repo: Ppl.Ecto"},{"event":"cmd_output","timestamp":1607098355,"output":"Repo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], "},{"event":"cmd_output","timestamp":1607098355,"output":"schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:12:35.123 [info] P"},{"event":"cmd_output","timestamp":1607098355,"output":"eriodic from module Elixir.Ppl.Ppls.STMHandler.StoppingState with name Elixir.Ppl.Ppls.STMHandler.St"},{"event":"cmd_output","timestamp":1607098355,"output":"oppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-StoppingS"},{"event":"cmd_output","timestamp":1607098355,"output":"tate\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query"},{"event":"cmd_output","timestamp":1607098355,"output":": Ppl.Ppls.Model.Ppls, observed_state: \"stopping\", publisher_cb: #Function<0.71803493/1 in Ppl.Ppls."},{"event":"cmd_output","timestamp":1607098355,"output":"STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_"},{"event":"cmd_output","timestamp":1607098355,"output":"at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}"},{"event":"cmd_output","timestamp":1607098355,"output":"\n\u001b[0m\u001b[22m\n16:12:35.123 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedStat"},{"event":"cmd_output","timestamp":1607098355,"output":"e with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.beh"},{"event":"cmd_output","timestamp":1607098355,"output":"older-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args: %{allowed_states: [\"fe"},{"event":"cmd_output","timestamp":1607098355,"output":"tching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_st"},{"event":"cmd_output","timestamp":1607098355,"output":"ate: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updat"},{"event":"cmd_output","timestamp":1607098355,"output":"ed_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_s"},{"event":"cmd_output","timestamp":1607098355,"output":"upervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:35.124 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHa"},{"event":"cmd_output","timestamp":1607098355,"output":"ndler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 ms, met"},{"event":"cmd_output","timestamp":1607098355,"output":"ric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %{"},{"event":"cmd_output","timestamp":1607098355,"output":"allowed_states: [\"regular_init\", \"compilation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Pp"},{"event":"cmd_output","timestamp":1607098355,"output":"lSubInits.Model.PplSubInits, observed_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, re"},{"event":"cmd_output","timestamp":1607098355,"output":"turning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: "},{"event":"cmd_output","timestamp":1607098355,"output":"Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:35.124 [info] Periodic"},{"event":"cmd_output","timestamp":1607098355,"output":" from module Elixir.Ppl.PplSubInits.STMHandler.CompilationState with name Elixir.Ppl.PplSubInits.STM"},{"event":"cmd_output","timestamp":1607098355,"output":"Handler.CompilationState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-"},{"event":"cmd_output","timestamp":1607098355,"output":"STMHandler-CompilationState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"s"},{"event":"cmd_output","timestamp":1607098355,"output":"topping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_"},{"event":"cmd_output","timestamp":1607098355,"output":"state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, "},{"event":"cmd_output","timestamp":1607098355,"output":":updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, "},{"event":"cmd_output","timestamp":1607098355,"output":"task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:35.125 [info] Periodic from module Elixir.Ppl.PplSubInits"},{"event":"cmd_output","timestamp":1607098355,"output":".STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period:"},{"event":"cmd_output","timestamp":1607098355,"output":" 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, rec"},{"event":"cmd_output","timestamp":1607098355,"output":"urring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.P"},{"event":"cmd_output","timestamp":1607098355,"output":"plSubInits, observed_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id"},{"event":"cmd_output","timestamp":1607098355,"output":", :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubIni"},{"event":"cmd_output","timestamp":1607098355,"output":"ts.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:35.125 [info] Periodic from module "},{"event":"cmd_output","timestamp":1607098355,"output":"Elixir.Ppl.PplBlocks.STMHandler.InitializingState with name Elixir.Ppl.PplBlocks.STMHandler.Initiali"},{"event":"cmd_output","timestamp":1607098355,"output":"zingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-Initia"},{"event":"cmd_output","timestamp":1607098355,"output":"lizingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"waiting\", \"done\"], cooling_time_"},{"event":"cmd_output","timestamp":1607098355,"output":"sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"initializing\", publisher_cb: "},{"event":"cmd_output","timestamp":1607098355,"output":":skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recov"},{"event":"cmd_output","timestamp":1607098355,"output":"ery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b"},{"event":"cmd_output","timestamp":1607098355,"output":"[0m\u001b[22m\n16:12:35.126 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.WaitingState wit"},{"event":"cmd_output","timestamp":1607098355,"output":"h name Elixir.Ppl.PplBlocks.STMHandler.WaitingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-"},{"event":"cmd_output","timestamp":1607098355,"output":"wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurring args: %{allowed_states: [\"waiting\", "},{"event":"cmd_output","timestamp":1607098355,"output":"\"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_stat"},{"event":"cmd_output","timestamp":1607098355,"output":"e: \"waiting\", publisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>, "},{"event":"cmd_output","timestamp":1607098355,"output":"repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_cou"},{"event":"cmd_output","timestamp":1607098355,"output":"nt, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098355,"output":"m\n16:12:35.126 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.RunningState with name "},{"event":"cmd_output","timestamp":1607098355,"output":"Elixir.Ppl.PplBlocks.STMHandler.RunningState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up"},{"event":"cmd_output","timestamp":1607098355,"output":"\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stoppi"},{"event":"cmd_output","timestamp":1607098355,"output":"ng\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"r"},{"event":"cmd_output","timestamp":1607098355,"output":"unning\", publisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0>, repo"},{"event":"cmd_output","timestamp":1607098355,"output":": Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, "},{"event":"cmd_output","timestamp":1607098355,"output":":ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b"},{"event":"cmd_output","timestamp":1607098355,"output":"[0m\u001b[22m\n16:12:35.127 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.StoppingState wi"},{"event":"cmd_output","timestamp":1607098355,"output":"th name Elixir.Ppl.PplBlocks.STMHandler.StoppingState :: period: 1000 ms, metric_name: {\"Ppl.beholde"},{"event":"cmd_output","timestamp":1607098355,"output":"r-wake_up\", [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stoppin"},{"event":"cmd_output","timestamp":1607098355,"output":"g\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"st"},{"event":"cmd_output","timestamp":1607098355,"output":"opping\", publisher_cb: #Function<0.104215991/1 in Ppl.PplBlocks.STMHandler.StoppingState.args/0>, re"},{"event":"cmd_output","timestamp":1607098355,"output":"po: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count"},{"event":"cmd_output","timestamp":1607098355,"output":", :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\r"},{"event":"cmd_output","timestamp":1607098355,"output":"\n\u001b[0m\u001b[22m\n16:12:35.127 [info] Periodic from module Elixir.Block.Blocks.STMHandler.InitializingSta"},{"event":"cmd_output","timestamp":1607098355,"output":"te with name Elixir.Block.Blocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl."},{"event":"cmd_output","timestamp":1607098355,"output":"beholder-wake_up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states:"},{"event":"cmd_output","timestamp":1607098355,"output":" [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Blocks.Model.Blocks, observed_state:"},{"event":"cmd_output","timestamp":1607098355,"output":" \"initializing\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :up"},{"event":"cmd_output","timestamp":1607098355,"output":"dated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :"},{"event":"cmd_output","timestamp":1607098355,"output":"skip}\n\u001b[0m\u001b[22m\n16:12:35.128 [info] Periodic from module Elixir.Block.Blocks.STMHandler.RunningSt"},{"event":"cmd_output","timestamp":1607098355,"output":"ate with name Elixir.Block.Blocks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beho"},{"event":"cmd_output","timestamp":1607098355,"output":"lder-wake_up\", [\"Block-Blocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"runnin"},{"event":"cmd_output","timestamp":1607098355,"output":"g\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_st"},{"event":"cmd_output","timestamp":1607098355,"output":"ate: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :upd"},{"event":"cmd_output","timestamp":1607098355,"output":"ated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :s"},{"event":"cmd_output","timestamp":1607098355,"output":"kip}\n\u001b[0m\u001b[22m\n16:12:35.128 [info] Periodic from module Elixir.Block.Blocks.STMHandler.StoppingSt"},{"event":"cmd_output","timestamp":1607098355,"output":"ate with name Elixir.Block.Blocks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beh"},{"event":"cmd_output","timestamp":1607098355,"output":"older-wake_up\", [\"Block-Blocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stop"},{"event":"cmd_output","timestamp":1607098355,"output":"ping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"sto"},{"event":"cmd_output","timestamp":1607098355,"output":"pping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at,"},{"event":"cmd_output","timestamp":1607098355,"output":" :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b["},{"event":"cmd_output","timestamp":1607098355,"output":"0m\u001b[22m\n16:12:35.129 [info] Periodic from module Elixir.Block.Tasks.STMHandler.PendingState with n"},{"event":"cmd_output","timestamp":1607098355,"output":"ame Elixir.Block.Tasks.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_u"},{"event":"cmd_output","timestamp":1607098355,"output":"p\", [\"Block-Tasks-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"],"},{"event":"cmd_output","timestamp":1607098355,"output":" cooling_time_sec: 0, initial_query: Block.Tasks.Model.Tasks, observed_state: \"pending\", publisher_c"},{"event":"cmd_output","timestamp":1607098355,"output":"b: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_"},{"event":"cmd_output","timestamp":1607098355,"output":"count, :block_id, :build_request_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m"},{"event":"cmd_output","timestamp":1607098355,"output":"\u001b[22m\n16:12:35.129 [info] Periodic from module Elixir.Block.Tasks.STMHandler.RunningState with nam"},{"event":"cmd_output","timestamp":1607098355,"output":"e Elixir.Block.Tasks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\""},{"event":"cmd_output","timestamp":1607098355,"output":", [\"Block-Tasks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\""},{"event":"cmd_output","timestamp":1607098355,"output":", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"running\", "},{"event":"cmd_output","timestamp":1607098355,"output":"publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state,"},{"event":"cmd_output","timestamp":1607098355,"output":" :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098355,"output":"6:12:35.130 [info] Periodic from module Elixir.Block.Tasks.STMHandler.StoppingState with name Elixi"},{"event":"cmd_output","timestamp":1607098355,"output":"r.Block.Tasks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Bl"},{"event":"cmd_output","timestamp":1607098355,"output":"ock-Tasks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooli"},{"event":"cmd_output","timestamp":1607098355,"output":"ng_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"stopping\", publisher_cb: :"},{"event":"cmd_output","timestamp":1607098355,"output":"skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_coun"},{"event":"cmd_output","timestamp":1607098355,"output":"t, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:35.229 [in"},{"event":"cmd_output","timestamp":1607098355,"output":"fo] ppl_id: f05e3534-ac91-4a1e-8fa6-79ec096be120, type: PplRequests, event: persisted source_args f"},{"event":"cmd_output","timestamp":1607098355,"output":"or pipeline: f05e3534-ac91-4a1e-8fa6-79ec096be120, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQ"},{"event":"cmd_output","timestamp":1607098355,"output":"ueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:35.232 [info] ppl_id: f05e3534-ac91-4a1e-8fa6-79ec0"},{"event":"cmd_output","timestamp":1607098355,"output":"96be120, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098355,"output":"ir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:35.245 [info] ppl_id: f05e3534-ac91-"},{"event":"cmd_output","timestamp":1607098355,"output":"4a1e-8fa6-79ec096be120, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_cou"},{"event":"cmd_output","timestamp":1607098355,"output":"nt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:35.266 [info] ppl"},{"event":"cmd_output","timestamp":1607098355,"output":"_id: f05e3534-ac91-4a1e-8fa6-79ec096be120, type: PplRequests, event: persisted definition for reques"},{"event":"cmd_output","timestamp":1607098355,"output":"t with request_token: 4fea15c3-5829-4eda-9860-3ebb023e2575, origin: Elixir.Ppl.PplRequests.Model.Ppl"},{"event":"cmd_output","timestamp":1607098355,"output":"RequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:35.270 [info] Queue persisted: {:ok, %"},{"event":"cmd_output","timestamp":1607098355,"output":"Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-"},{"event":"cmd_output","timestamp":1607098355,"output":"04 16:12:35.269580], name: \"master-/foo/bar/test.yml\", organization_id: \"081bd93b-b273-4e06-a75f-f60"},{"event":"cmd_output","timestamp":1607098355,"output":"6e93a0276\", project_id: \"e7c09b92-85fe-4181-bbae-03a5b0e2aa93\", queue_id: \"991d5e6a-81c5-4c45-a67e-8"},{"event":"cmd_output","timestamp":1607098355,"output":"5852f21c904\", scope: \"project\", updated_at: ~N[2020-12-04 16:12:35.269588], user_generated: false}}\r"},{"event":"cmd_output","timestamp":1607098355,"output":"\n\u001b[0m\u001b[22m\n16:12:35.275 [info] ppl_id: not_available, event: created, origin: Elixir.Ppl.PplSubIni"},{"event":"cmd_output","timestamp":1607098355,"output":"ts.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:35.275 [info] event: created, or"},{"event":"cmd_output","timestamp":1607098355,"output":"igin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:35.275 "},{"event":"cmd_output","timestamp":1607098355,"output":"[info] ppl_id: f05e3534-ac91-4a1e-8fa6-79ec096be120, type: PplBlocks, block_index: 0, state: initia"},{"event":"cmd_output","timestamp":1607098355,"output":"lizing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitStat"},{"event":"cmd_output","timestamp":1607098355,"output":"e.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:35.275 [info] ppl_id: f05e3534-ac91-4a1e-8fa6-79ec096be120, t"},{"event":"cmd_output","timestamp":1607098355,"output":"ype: PplBlocks, block_index: 1, state: initializing, event: created, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098355,"output":"ir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:35.277 [info] pp"},{"event":"cmd_output","timestamp":1607098355,"output":"l_id: f05e3534-ac91-4a1e-8fa6-79ec096be120, type: PplSubInits, state: done, result: passed, event: e"},{"event":"cmd_output","timestamp":1607098355,"output":"xit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098355,"output":"2m\n16:12:35.282 [info] ppl_id: f05e3534-ac91-4a1e-8fa6-79ec096be120, type: PplBlocks, block_index:"},{"event":"cmd_output","timestamp":1607098355,"output":" 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_st"},{"event":"cmd_output","timestamp":1607098355,"output":"ate_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:35.285 [info] ppl_id: f05e3534-ac91-4a1e-8fa6-79ec096be120, t"},{"event":"cmd_output","timestamp":1607098355,"output":"ype: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl"},{"event":"cmd_output","timestamp":1607098355,"output":".log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:35.287 [info] ppl_id: f05e3534-ac91-4a1e-8fa6-79ec096b"},{"event":"cmd_output","timestamp":1607098355,"output":"e120, type: PplBlocks, block_index: 1, state: waiting, event: exit_scheduling, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098355,"output":"igin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:35.291 [info] ppl_id: f05e"},{"event":"cmd_output","timestamp":1607098355,"output":"3534-ac91-4a1e-8fa6-79ec096be120, type: Ppls, state: queuing, event: exit_scheduling, recovery_count"},{"event":"cmd_output","timestamp":1607098355,"output":": 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:35.303 [info] ppl_i"},{"event":"cmd_output","timestamp":1607098355,"output":"d: f05e3534-ac91-4a1e-8fa6-79ec096be120, type: Ppls, state: running, event: exit_scheduling, recover"},{"event":"cmd_output","timestamp":1607098355,"output":"y_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:35.308 [info]"},{"event":"cmd_output","timestamp":1607098355,"output":" PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"f05e3534-ac91-4a1e-8fa6-79ec096be"},{"event":"cmd_output","timestamp":1607098355,"output":"120\"\n\u001b[0m\u001b[22m\n16:12:35.312 [info] block_id: b8eec317-4f55-4ab1-8d53-ee0304a44ed1, type: BlockReq"},{"event":"cmd_output","timestamp":1607098355,"output":"uests, event: persisted block run request from ppl f05e3534-ac91-4a1e-8fa6-79ec096be120 for block 0,"},{"event":"cmd_output","timestamp":1607098355,"output":" origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098355,"output":"\n16:12:35.313 [info] block_id: b8eec317-4f55-4ab1-8d53-ee0304a44ed1, type: Blocks, state: initializ"},{"event":"cmd_output","timestamp":1607098355,"output":"ing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/"},{"event":"cmd_output","timestamp":1607098355,"output":"1(L43), \n\u001b[0m\u001b[22m\n16:12:35.315 [info] Block 0 of pipeline with id: f05e3534-ac91-4a1e-8fa6-79ec0"},{"event":"cmd_output","timestamp":1607098355,"output":"96be120 scheduled in block service with id: : \"b8eec317-4f55-4ab1-8d53-ee0304a44ed1\"\n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098355,"output":"12:35.317 [info] ppl_id: f05e3534-ac91-4a1e-8fa6-79ec096be120, type: PplBlocks, block_index: 0, sta"},{"event":"cmd_output","timestamp":1607098355,"output":"te: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_cha"},{"event":"cmd_output","timestamp":1607098355,"output":"nge/1(L90), \n\u001b[0m\u001b[22m\n16:12:35.321 [info] block_id: b8eec317-4f55-4ab1-8d53-ee0304a44ed1, type: "},{"event":"cmd_output","timestamp":1607098355,"output":"BlockRequests, event: persisted build and sub_ppl details for block_request: b8eec317-4f55-4ab1-8d53"},{"event":"cmd_output","timestamp":1607098355,"output":"-ee0304a44ed1, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n"},{"event":"cmd_output","timestamp":1607098355,"output":"\u001b[0m\u001b[22m\n16:12:35.323 [info] block_id: b8eec317-4f55-4ab1-8d53-ee0304a44ed1, type: Tasks, state: "},{"event":"cmd_output","timestamp":1607098355,"output":"pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState"},{"event":"cmd_output","timestamp":1607098355,"output":".all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:35.324 [info] block_id: b8eec317-4f55-4ab1-8d53-ee0304a44ed1, "},{"event":"cmd_output","timestamp":1607098355,"output":"type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.I"},{"event":"cmd_output","timestamp":1607098355,"output":"mpl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:35.344 [info] block_id: b8eec317-4f55-4ab1-8d53-ee0"},{"event":"cmd_output","timestamp":1607098355,"output":"304a44ed1, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Lo"},{"event":"cmd_output","timestamp":1607098355,"output":"oper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:35.450 [info] block_id: b8eec317-4f55-4ab"},{"event":"cmd_output","timestamp":1607098355,"output":"1-8d53-ee0304a44ed1, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098355,"output":"ixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:35.455 [info] block_id: b8eec317-4"},{"event":"cmd_output","timestamp":1607098355,"output":"f55-4ab1-8d53-ee0304a44ed1, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098355,"output":"igin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:35.465 [info] ppl_id: f05e"},{"event":"cmd_output","timestamp":1607098355,"output":"3534-ac91-4a1e-8fa6-79ec096be120, block_id: b8eec317-4f55-4ab1-8d53-ee0304a44ed1, type: PplBlocks, b"},{"event":"cmd_output","timestamp":1607098355,"output":"lock_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098355,"output":"r.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:35.471 [info] PplBlocks WaitingState "},{"event":"cmd_output","timestamp":1607098355,"output":"STM is scheduling block 1 from pipeline: \"f05e3534-ac91-4a1e-8fa6-79ec096be120\"\n\u001b[0m\u001b[22m\n16:12:35"},{"event":"cmd_output","timestamp":1607098355,"output":".478 [info] block_id: 540a6fa2-2c5b-4d76-a054-5d9556ce6cea, type: BlockRequests, event: persisted b"},{"event":"cmd_output","timestamp":1607098355,"output":"lock run request from ppl f05e3534-ac91-4a1e-8fa6-79ec096be120 for block 1, origin: Elixir.Block.Blo"},{"event":"cmd_output","timestamp":1607098355,"output":"ckRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:35.480 [info] blo"},{"event":"cmd_output","timestamp":1607098355,"output":"ck_id: 540a6fa2-2c5b-4d76-a054-5d9556ce6cea, type: Blocks, state: initializing, event: initializing,"},{"event":"cmd_output","timestamp":1607098355,"output":" recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098355,"output":"2:35.480 [info] Block 1 of pipeline with id: f05e3534-ac91-4a1e-8fa6-79ec096be120 scheduled in bloc"},{"event":"cmd_output","timestamp":1607098355,"output":"k service with id: : \"540a6fa2-2c5b-4d76-a054-5d9556ce6cea\"\n\u001b[0m\u001b[22m\n16:12:35.481 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098355,"output":" f05e3534-ac91-4a1e-8fa6-79ec096be120, type: PplBlocks, block_index: 1, state: running, event: exit_"},{"event":"cmd_output","timestamp":1607098355,"output":"scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098355,"output":"16:12:35.487 [info] block_id: 540a6fa2-2c5b-4d76-a054-5d9556ce6cea, type: BlockRequests, event: per"},{"event":"cmd_output","timestamp":1607098355,"output":"sisted build and sub_ppl details for block_request: 540a6fa2-2c5b-4d76-a054-5d9556ce6cea, origin: El"},{"event":"cmd_output","timestamp":1607098355,"output":"ixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:35.489 ["},{"event":"cmd_output","timestamp":1607098355,"output":"info] block_id: 540a6fa2-2c5b-4d76-a054-5d9556ce6cea, type: Tasks, state: pending, event: created, "},{"event":"cmd_output","timestamp":1607098355,"output":"recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098355,"output":"[22m\n16:12:35.491 [info] block_id: 540a6fa2-2c5b-4d76-a054-5d9556ce6cea, type: Blocks, state: runn"},{"event":"cmd_output","timestamp":1607098355,"output":"ing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L9"},{"event":"cmd_output","timestamp":1607098355,"output":"0), \n\u001b[0m\u001b[22m\n16:12:35.505 [info] block_id: 540a6fa2-2c5b-4d76-a054-5d9556ce6cea, type: Tasks, s"},{"event":"cmd_output","timestamp":1607098355,"output":"tate: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098355,"output":"hange/1(L90), \n\u001b[0m\u001b[22m\n16:12:35.560 [info] block_id: 540a6fa2-2c5b-4d76-a054-5d9556ce6cea, type"},{"event":"cmd_output","timestamp":1607098355,"output":": Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_"},{"event":"cmd_output","timestamp":1607098355,"output":"state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:35.566 [info] block_id: 540a6fa2-2c5b-4d76-a054-5d9556ce6ce"},{"event":"cmd_output","timestamp":1607098355,"output":"a, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.I"},{"event":"cmd_output","timestamp":1607098355,"output":"mpl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:35.578 [info] ppl_id: f05e3534-ac91-4a1e-8fa6-79ec0"},{"event":"cmd_output","timestamp":1607098355,"output":"96be120, block_id: 540a6fa2-2c5b-4d76-a054-5d9556ce6cea, type: PplBlocks, block_index: 1, state: don"},{"event":"cmd_output","timestamp":1607098355,"output":"e, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_sta"},{"event":"cmd_output","timestamp":1607098355,"output":"te_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:35.599 [info] ppl_id: f05e3534-ac91-4a1e-8fa6-79ec096be120, ty"},{"event":"cmd_output","timestamp":1607098355,"output":"pe: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loo"},{"event":"cmd_output","timestamp":1607098356,"output":"per.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test gRPC schedule_extension() local - succede"},{"event":"cmd_output","timestamp":1607098356,"output":"s when given valid params (2117.5ms)\u001b[0m\n * test gRPC list_queues() - valid params - result is emp"},{"event":"cmd_output","timestamp":1607098356,"output":"ty list\r * test gRPC list_queues() - valid params - result is empty list (skipped)\n * test gRPC d"},{"event":"cmd_output","timestamp":1607098356,"output":"escribe_topology()\r * test gRPC describe_topology() (skipped)\n * test gRPC list_grouped() - both"},{"event":"cmd_output","timestamp":1607098356,"output":" scopes implicit queues\u001b[22m\n16:12:36.197 [info] ppl_id: cfab4a23-af72-4148-91d7-20a516d94a18, typ"},{"event":"cmd_output","timestamp":1607098356,"output":"e: PplRequests, event: persisted schedule request with request_token: b7f26847-e7b6-4e9e-bbb2-e6ae71"},{"event":"cmd_output","timestamp":1607098356,"output":"241b0f, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098356,"output":"\n16:12:36.200 [info] ppl_id: cfab4a23-af72-4148-91d7-20a516d94a18, type: PplRequests, event: persi"},{"event":"cmd_output","timestamp":1607098356,"output":"sted definition for request with request_token: b7f26847-e7b6-4e9e-bbb2-e6ae71241b0f, origin: Elixir"},{"event":"cmd_output","timestamp":1607098356,"output":".Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:36.204 [info]"},{"event":"cmd_output","timestamp":1607098356,"output":" ppl_id: cfab4a23-af72-4148-91d7-20a516d94a18, type: Ppls, state: initializing, event: initializing"},{"event":"cmd_output","timestamp":1607098356,"output":", recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098356,"output":"\n16:12:36.208 [info] Persisted ppl_sub_init for pipeline with ppl_id: cfab4a23-af72-4148-91d7-20a5"},{"event":"cmd_output","timestamp":1607098356,"output":"16d94a18: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_"},{"event":"cmd_output","timestamp":1607098356,"output":"inits\">, compile_task_id: nil, error_description: nil, id: 234, in_scheduling: false, init_type: \"re"},{"event":"cmd_output","timestamp":1607098356,"output":"gular\", inserted_at: ~N[2020-12-04 16:12:36.207006], pipeline_requests: #Ecto.Association.NotLoaded<"},{"event":"cmd_output","timestamp":1607098356,"output":"association :pipeline_requests is not loaded>, ppl_id: \"cfab4a23-af72-4148-91d7-20a516d94a18\", recov"},{"event":"cmd_output","timestamp":1607098356,"output":"ery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_r"},{"event":"cmd_output","timestamp":1607098356,"output":"equest_desc: nil, updated_at: ~N[2020-12-04 16:12:36.207014]}\n\u001b[0m\u001b[22m\n16:12:36.213 [info] ppl_i"},{"event":"cmd_output","timestamp":1607098356,"output":"d: 2bb1ebfa-0522-4b3d-82b6-a46f9282e46e, type: PplRequests, event: persisted schedule request with r"},{"event":"cmd_output","timestamp":1607098356,"output":"equest_token: 8c8cd4a8-38c0-4ce4-88d3-536432d16581, origin: Elixir.Ppl.PplRequests.Model.PplRequests"},{"event":"cmd_output","timestamp":1607098356,"output":"Queries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:36.214 [info] ppl_id: 2bb1ebfa-0522-4b3d-82b6-a"},{"event":"cmd_output","timestamp":1607098356,"output":"46f9282e46e, type: PplRequests, event: persisted definition for request with request_token: 8c8cd4a8"},{"event":"cmd_output","timestamp":1607098356,"output":"-38c0-4ce4-88d3-536432d16581, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definit"},{"event":"cmd_output","timestamp":1607098356,"output":"ion/3(L76), \n\u001b[0m\u001b[22m\n16:12:36.217 [info] ppl_id: 2bb1ebfa-0522-4b3d-82b6-a46f9282e46e, type: Pp"},{"event":"cmd_output","timestamp":1607098356,"output":"ls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQ"},{"event":"cmd_output","timestamp":1607098356,"output":"ueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:36.220 [info] Persisted ppl_sub_init for pipeli"},{"event":"cmd_output","timestamp":1607098356,"output":"ne with ppl_id: 2bb1ebfa-0522-4b3d-82b6-a46f9282e46e: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #"},{"event":"cmd_output","timestamp":1607098356,"output":"Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, i"},{"event":"cmd_output","timestamp":1607098356,"output":"d: 235, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:36.219394], pip"},{"event":"cmd_output","timestamp":1607098356,"output":"eline_requests: #Ecto.Association.NotLoaded, ppl_id: \""},{"event":"cmd_output","timestamp":1607098356,"output":"2bb1ebfa-0522-4b3d-82b6-a46f9282e46e\", recovery_count: 0, result: nil, result_reason: nil, state: \"c"},{"event":"cmd_output","timestamp":1607098356,"output":"reated\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:36.219"},{"event":"cmd_output","timestamp":1607098356,"output":"403]}\n\u001b[0m\u001b[22m\n16:12:36.224 [info] ppl_id: 3e2dd4e2-3726-4b8f-a5a5-c77e1a428fff, type: PplReques"},{"event":"cmd_output","timestamp":1607098356,"output":"ts, event: persisted schedule request with request_token: b24dedc0-6c5d-4ce8-8535-63ed7f949efb, orig"},{"event":"cmd_output","timestamp":1607098356,"output":"in: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:36.2"},{"event":"cmd_output","timestamp":1607098356,"output":"25 [info] ppl_id: 3e2dd4e2-3726-4b8f-a5a5-c77e1a428fff, type: PplRequests, event: persisted definit"},{"event":"cmd_output","timestamp":1607098356,"output":"ion for request with request_token: b24dedc0-6c5d-4ce8-8535-63ed7f949efb, origin: Elixir.Ppl.PplRequ"},{"event":"cmd_output","timestamp":1607098356,"output":"ests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:36.228 [info] ppl_id: 3e"},{"event":"cmd_output","timestamp":1607098356,"output":"2dd4e2-3726-4b8f-a5a5-c77e1a428fff, type: Ppls, state: initializing, event: initializing, recovery_c"},{"event":"cmd_output","timestamp":1607098356,"output":"ount: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:36.2"},{"event":"cmd_output","timestamp":1607098356,"output":"32 [info] Persisted ppl_sub_init for pipeline with ppl_id: 3e2dd4e2-3726-4b8f-a5a5-c77e1a428fff: %P"},{"event":"cmd_output","timestamp":1607098356,"output":"pl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, com"},{"event":"cmd_output","timestamp":1607098356,"output":"pile_task_id: nil, error_description: nil, id: 236, in_scheduling: false, init_type: \"regular\", inse"},{"event":"cmd_output","timestamp":1607098356,"output":"rted_at: ~N[2020-12-04 16:12:36.231218], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"3e2dd4e2-3726-4b8f-a5a5-c77e1a428fff\", recovery_count: 0"},{"event":"cmd_output","timestamp":1607098356,"output":", result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc:"},{"event":"cmd_output","timestamp":1607098356,"output":" nil, updated_at: ~N[2020-12-04 16:12:36.231239]}\n\u001b[0m\u001b[22m\n16:12:36.235 [info] ppl_id: 86254150-"},{"event":"cmd_output","timestamp":1607098356,"output":"22ce-4a48-82d5-4a5c67f97470, type: PplRequests, event: persisted schedule request with request_token"},{"event":"cmd_output","timestamp":1607098356,"output":": 380f146a-f122-472b-8129-b10eee8a578c, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.proc"},{"event":"cmd_output","timestamp":1607098356,"output":"ess_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:36.237 [info] ppl_id: 86254150-22ce-4a48-82d5-4a5c67f97470,"},{"event":"cmd_output","timestamp":1607098356,"output":" type: PplRequests, event: persisted definition for request with request_token: 380f146a-f122-472b-8"},{"event":"cmd_output","timestamp":1607098356,"output":"129-b10eee8a578c, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), "},{"event":"cmd_output","timestamp":1607098356,"output":"\n\u001b[0m\u001b[22m\n16:12:36.240 [info] ppl_id: 86254150-22ce-4a48-82d5-4a5c67f97470, type: Ppls, state: i"},{"event":"cmd_output","timestamp":1607098356,"output":"nitializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.proce"},{"event":"cmd_output","timestamp":1607098356,"output":"ss_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:36.243 [info] Persisted ppl_sub_init for pipeline with ppl_"},{"event":"cmd_output","timestamp":1607098356,"output":"id: 86254150-22ce-4a48-82d5-4a5c67f97470: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema."},{"event":"cmd_output","timestamp":1607098356,"output":"Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 237, in_s"},{"event":"cmd_output","timestamp":1607098356,"output":"cheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:36.241966], pipeline_reques"},{"event":"cmd_output","timestamp":1607098356,"output":"ts: #Ecto.Association.NotLoaded, ppl_id: \"86254150-22c"},{"event":"cmd_output","timestamp":1607098356,"output":"e-4a48-82d5-4a5c67f97470\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", ter"},{"event":"cmd_output","timestamp":1607098356,"output":"minate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:36.241974]}\n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098356,"output":"[22m\n16:12:36.246 [info] ppl_id: 6f84c893-6c7d-4362-9d68-86013033d134, type: PplRequests, event: p"},{"event":"cmd_output","timestamp":1607098356,"output":"ersisted schedule request with request_token: 01fcbe26-c909-47e6-bbba-ad02881c8452, origin: Elixir.P"},{"event":"cmd_output","timestamp":1607098356,"output":"pl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:36.248 [info] p"},{"event":"cmd_output","timestamp":1607098356,"output":"pl_id: 6f84c893-6c7d-4362-9d68-86013033d134, type: PplRequests, event: persisted definition for requ"},{"event":"cmd_output","timestamp":1607098356,"output":"est with request_token: 01fcbe26-c909-47e6-bbba-ad02881c8452, origin: Elixir.Ppl.PplRequests.Model.P"},{"event":"cmd_output","timestamp":1607098356,"output":"plRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:36.251 [info] ppl_id: 6f84c893-6c7d-"},{"event":"cmd_output","timestamp":1607098356,"output":"4362-9d68-86013033d134, type: Ppls, state: initializing, event: initializing, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098356,"output":"gin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:36.254 [info] P"},{"event":"cmd_output","timestamp":1607098356,"output":"ersisted ppl_sub_init for pipeline with ppl_id: 6f84c893-6c7d-4362-9d68-86013033d134: %Ppl.PplSubIni"},{"event":"cmd_output","timestamp":1607098356,"output":"ts.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id"},{"event":"cmd_output","timestamp":1607098356,"output":": nil, error_description: nil, id: 238, in_scheduling: false, init_type: \"regular\", inserted_at: ~N["},{"event":"cmd_output","timestamp":1607098356,"output":"2020-12-04 16:12:36.253157], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"6f84c893-6c7d-4362-9d68-86013033d134\", recovery_count: 0, result: ni"},{"event":"cmd_output","timestamp":1607098356,"output":"l, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, update"},{"event":"cmd_output","timestamp":1607098356,"output":"d_at: ~N[2020-12-04 16:12:36.253167]}\n\u001b[0m\u001b[22m\n16:12:36.258 [info] ppl_id: 20f8d23c-9481-4cf7-b6"},{"event":"cmd_output","timestamp":1607098356,"output":"0e-e5967aaa7824, type: PplRequests, event: persisted schedule request with request_token: 5de0d2d1-6"},{"event":"cmd_output","timestamp":1607098356,"output":"6bd-4f3f-a298-5e791ccc5820, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response"},{"event":"cmd_output","timestamp":1607098356,"output":"/2(L55), \n\u001b[0m\u001b[22m\n16:12:36.259 [info] ppl_id: 20f8d23c-9481-4cf7-b60e-e5967aaa7824, type: PplRe"},{"event":"cmd_output","timestamp":1607098356,"output":"quests, event: persisted definition for request with request_token: 5de0d2d1-66bd-4f3f-a298-5e791ccc"},{"event":"cmd_output","timestamp":1607098356,"output":"5820, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098356,"output":"\n16:12:36.261 [info] ppl_id: 20f8d23c-9481-4cf7-b60e-e5967aaa7824, type: Ppls, state: initializing,"},{"event":"cmd_output","timestamp":1607098356,"output":" event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/"},{"event":"cmd_output","timestamp":1607098356,"output":"2(L124), \n\u001b[0m\u001b[22m\n16:12:36.265 [info] Persisted ppl_sub_init for pipeline with ppl_id: 20f8d23c"},{"event":"cmd_output","timestamp":1607098356,"output":"-9481-4cf7-b60e-e5967aaa7824: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:lo"},{"event":"cmd_output","timestamp":1607098356,"output":"aded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 239, in_scheduling: f"},{"event":"cmd_output","timestamp":1607098356,"output":"alse, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:36.263896], pipeline_requests: #Ecto.As"},{"event":"cmd_output","timestamp":1607098356,"output":"sociation.NotLoaded, ppl_id: \"20f8d23c-9481-4cf7-b60e-"},{"event":"cmd_output","timestamp":1607098356,"output":"e5967aaa7824\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_reque"},{"event":"cmd_output","timestamp":1607098356,"output":"st: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:36.263905]}\n\u001b[0m\u001b[22m\n16:12:"},{"event":"cmd_output","timestamp":1607098356,"output":"36.268 [info] ppl_id: 1f904094-47e5-4cdb-95b8-73e75430e431, type: PplRequests, event: persisted sch"},{"event":"cmd_output","timestamp":1607098356,"output":"edule request with request_token: 1c087bbb-9dcb-45bd-9ee5-dc018741a655, origin: Elixir.Ppl.PplReques"},{"event":"cmd_output","timestamp":1607098356,"output":"ts.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:36.271 [info] ppl_id: 1f904"},{"event":"cmd_output","timestamp":1607098356,"output":"094-47e5-4cdb-95b8-73e75430e431, type: PplRequests, event: persisted definition for request with req"},{"event":"cmd_output","timestamp":1607098356,"output":"uest_token: 1c087bbb-9dcb-45bd-9ee5-dc018741a655, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQu"},{"event":"cmd_output","timestamp":1607098356,"output":"eries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:36.273 [info] ppl_id: 1f904094-47e5-4cdb-95b8-73"},{"event":"cmd_output","timestamp":1607098356,"output":"e75430e431, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098356,"output":"Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:36.276 [info] Persisted ppl"},{"event":"cmd_output","timestamp":1607098356,"output":"_sub_init for pipeline with ppl_id: 1f904094-47e5-4cdb-95b8-73e75430e431: %Ppl.PplSubInits.Model.Ppl"},{"event":"cmd_output","timestamp":1607098356,"output":"SubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error"},{"event":"cmd_output","timestamp":1607098356,"output":"_description: nil, id: 240, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 1"},{"event":"cmd_output","timestamp":1607098356,"output":"6:12:36.275480], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"1f904094-47e5-4cdb-95b8-73e75430e431\", recovery_count: 0, result: nil, result_re"},{"event":"cmd_output","timestamp":1607098356,"output":"ason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[202"},{"event":"cmd_output","timestamp":1607098356,"output":"0-12-04 16:12:36.275489]}\n\u001b[0m\u001b[22m\n16:12:36.280 [info] ppl_id: 780e101c-f6e8-412d-9d39-bc934d421"},{"event":"cmd_output","timestamp":1607098356,"output":"03a, type: PplRequests, event: persisted schedule request with request_token: 5182b55d-4ee1-4169-85d"},{"event":"cmd_output","timestamp":1607098356,"output":"4-ed4842bff1a3, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b"},{"event":"cmd_output","timestamp":1607098356,"output":"[0m\u001b[22m\n16:12:36.282 [info] ppl_id: 780e101c-f6e8-412d-9d39-bc934d42103a, type: PplRequests, even"},{"event":"cmd_output","timestamp":1607098356,"output":"t: persisted definition for request with request_token: 5182b55d-4ee1-4169-85d4-ed4842bff1a3, origin"},{"event":"cmd_output","timestamp":1607098356,"output":": Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:36.28"},{"event":"cmd_output","timestamp":1607098356,"output":"4 [info] ppl_id: 780e101c-f6e8-412d-9d39-bc934d42103a, type: Ppls, state: initializing, event: init"},{"event":"cmd_output","timestamp":1607098356,"output":"ializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b"},{"event":"cmd_output","timestamp":1607098356,"output":"[0m\u001b[22m\n16:12:36.287 [info] Persisted ppl_sub_init for pipeline with ppl_id: 780e101c-f6e8-412d-9"},{"event":"cmd_output","timestamp":1607098356,"output":"d39-bc934d42103a: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipel"},{"event":"cmd_output","timestamp":1607098356,"output":"ine_sub_inits\">, compile_task_id: nil, error_description: nil, id: 241, in_scheduling: false, init_t"},{"event":"cmd_output","timestamp":1607098356,"output":"ype: \"regular\", inserted_at: ~N[2020-12-04 16:12:36.286345], pipeline_requests: #Ecto.Association.No"},{"event":"cmd_output","timestamp":1607098356,"output":"tLoaded, ppl_id: \"780e101c-f6e8-412d-9d39-bc934d42103a"},{"event":"cmd_output","timestamp":1607098356,"output":"\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, ter"},{"event":"cmd_output","timestamp":1607098356,"output":"minate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:36.286367]}\n\u001b[0m\u001b[22m\n16:12:36.289 [info"},{"event":"cmd_output","timestamp":1607098356,"output":"] Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.STMHa"},{"event":"cmd_output","timestamp":1607098356,"output":"ndler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandl"},{"event":"cmd_output","timestamp":1607098356,"output":"er-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], cool"},{"event":"cmd_output","timestamp":1607098356,"output":"ing_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher_cb: #"},{"event":"cmd_output","timestamp":1607098356,"output":"Function<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, returni"},{"event":"cmd_output","timestamp":1607098356,"output":"ng: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.P"},{"event":"cmd_output","timestamp":1607098356,"output":"pls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:36.289 [info] Periodic from module Elixir"},{"event":"cmd_output","timestamp":1607098356,"output":".Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 100 m"},{"event":"cmd_output","timestamp":1607098356,"output":"s, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args: %{al"},{"event":"cmd_output","timestamp":1607098356,"output":"lowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098356,"output":"s.Model.Ppls, observed_state: \"pending\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler."},{"event":"cmd_output","timestamp":1607098356,"output":"PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, "},{"event":"cmd_output","timestamp":1607098356,"output":":result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor"},{"event":"cmd_output","timestamp":1607098356,"output":"}\n\u001b[0m\u001b[22m\n16:12:36.290 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.QueuingState with"},{"event":"cmd_output","timestamp":1607098356,"output":" name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up"},{"event":"cmd_output","timestamp":1607098356,"output":"\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{allowed_states: [\"queuing\", \"running\", \""},{"event":"cmd_output","timestamp":1607098356,"output":"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", publish"},{"event":"cmd_output","timestamp":1607098356,"output":"er_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, retu"},{"event":"cmd_output","timestamp":1607098356,"output":"rning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Pp"},{"event":"cmd_output","timestamp":1607098356,"output":"l.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:36.291 [info] Periodic from module Eli"},{"event":"cmd_output","timestamp":1607098356,"output":"xir.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHandler.RunningState :: period: 10"},{"event":"cmd_output","timestamp":1607098356,"output":"0 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring args: %"},{"event":"cmd_output","timestamp":1607098356,"output":"{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Mode"},{"event":"cmd_output","timestamp":1607098356,"output":"l.Ppls, observed_state: \"running\", publisher_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler.Runni"},{"event":"cmd_output","timestamp":1607098356,"output":"ngState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :resu"},{"event":"cmd_output","timestamp":1607098356,"output":"lt, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b["},{"event":"cmd_output","timestamp":1607098356,"output":"0m\u001b[22m\n16:12:36.291 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.StoppingState with nam"},{"event":"cmd_output","timestamp":1607098356,"output":"e Elixir.Ppl.Ppls.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", "},{"event":"cmd_output","timestamp":1607098356,"output":"[\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cool"},{"event":"cmd_output","timestamp":1607098356,"output":"ing_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"stopping\", publisher_cb: #Fun"},{"event":"cmd_output","timestamp":1607098356,"output":"ction<0.71803493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id"},{"event":"cmd_output","timestamp":1607098356,"output":", :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Mode"},{"event":"cmd_output","timestamp":1607098356,"output":"l.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:36.292 [info] Periodic from module Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098356,"output":"SubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period:"},{"event":"cmd_output","timestamp":1607098356,"output":" 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurri"},{"event":"cmd_output","timestamp":1607098356,"output":"ng args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits"},{"event":"cmd_output","timestamp":1607098356,"output":".Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: ["},{"event":"cmd_output","timestamp":1607098356,"output":":id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSub"},{"event":"cmd_output","timestamp":1607098356,"output":"Inits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:36.292 [info] Periodic from modu"},{"event":"cmd_output","timestamp":1607098356,"output":"le Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler.Fetch"},{"event":"cmd_output","timestamp":1607098356,"output":"ingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-Fetch"},{"event":"cmd_output","timestamp":1607098356,"output":"ingState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"done\"], cooling_time"},{"event":"cmd_output","timestamp":1607098356,"output":"_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fetching\", publisher_cb"},{"event":"cmd_output","timestamp":1607098356,"output":": :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :rec"},{"event":"cmd_output","timestamp":1607098356,"output":"overy_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098356,"output":"\n16:12:36.293 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CompilationState with "},{"event":"cmd_output","timestamp":1607098356,"output":"name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 100 ms, metric_name: {\"Ppl.behold"},{"event":"cmd_output","timestamp":1607098356,"output":"er-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurring args: %{allowed_states: [\"r"},{"event":"cmd_output","timestamp":1607098356,"output":"egular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubIni"},{"event":"cmd_output","timestamp":1607098356,"output":"ts.Model.PplSubInits, observed_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, return"},{"event":"cmd_output","timestamp":1607098356,"output":"ing: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl."},{"event":"cmd_output","timestamp":1607098356,"output":"PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:36.293 [info] Periodic fro"},{"event":"cmd_output","timestamp":1607098356,"output":"m module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHand"},{"event":"cmd_output","timestamp":1607098356,"output":"ler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMH"},{"event":"cmd_output","timestamp":1607098356,"output":"andler-RegularInitState\"]}, recurring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, initial"},{"event":"cmd_output","timestamp":1607098356,"output":"_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_init\", publisher_cb: :skip, repo"},{"event":"cmd_output","timestamp":1607098356,"output":": Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, "},{"event":"cmd_output","timestamp":1607098356,"output":":ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:36.29"},{"event":"cmd_output","timestamp":1607098356,"output":"3 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.InitializingState with name Elixir.Pp"},{"event":"cmd_output","timestamp":1607098356,"output":"l.PplBlocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\""},{"event":"cmd_output","timestamp":1607098356,"output":"Ppl-PplBlocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"w"},{"event":"cmd_output","timestamp":1607098356,"output":"aiting\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state:"},{"event":"cmd_output","timestamp":1607098356,"output":" \"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :upda"},{"event":"cmd_output","timestamp":1607098356,"output":"ted_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlo"},{"event":"cmd_output","timestamp":1607098356,"output":"cks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:36.294 [info] Periodic from module Elixir.Ppl.PplBlo"},{"event":"cmd_output","timestamp":1607098356,"output":"cks.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler.WaitingState :: period: 1000 m"},{"event":"cmd_output","timestamp":1607098356,"output":"s, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurring args:"},{"event":"cmd_output","timestamp":1607098356,"output":" %{allowed_states: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks"},{"event":"cmd_output","timestamp":1607098356,"output":".Model.PplBlocks, observed_state: \"waiting\", publisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.ST"},{"event":"cmd_output","timestamp":1607098356,"output":"MHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at,"},{"event":"cmd_output","timestamp":1607098356,"output":" :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, ta"},{"event":"cmd_output","timestamp":1607098356,"output":"sk_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:36.294 [info] Periodic from module Elixir.Ppl.PplBlocks.STM"},{"event":"cmd_output","timestamp":1607098356,"output":"Handler.RunningState with name Elixir.Ppl.PplBlocks.STMHandler.RunningState :: period: 1000 ms, metr"},{"event":"cmd_output","timestamp":1607098356,"output":"ic_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, recurring args: %{allo"},{"event":"cmd_output","timestamp":1607098356,"output":"wed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Mode"},{"event":"cmd_output","timestamp":1607098356,"output":"l.PplBlocks, observed_state: \"running\", publisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHan"},{"event":"cmd_output","timestamp":1607098356,"output":"dler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :st"},{"event":"cmd_output","timestamp":1607098356,"output":"ate, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlo"},{"event":"cmd_output","timestamp":1607098356,"output":"cks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:36.294 [info] Periodic from module Elixir.Ppl.PplBlo"},{"event":"cmd_output","timestamp":1607098356,"output":"cks.STMHandler.StoppingState with name Elixir.Ppl.PplBlocks.STMHandler.StoppingState :: period: 1000"},{"event":"cmd_output","timestamp":1607098356,"output":" ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurring ar"},{"event":"cmd_output","timestamp":1607098356,"output":"gs: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model"},{"event":"cmd_output","timestamp":1607098356,"output":".PplBlocks, observed_state: \"stopping\", publisher_cb: #Function<0.104215991/1 in Ppl.PplBlocks.STMHa"},{"event":"cmd_output","timestamp":1607098356,"output":"ndler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :"},{"event":"cmd_output","timestamp":1607098356,"output":"state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplB"},{"event":"cmd_output","timestamp":1607098356,"output":"locks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:36.295 [info] Periodic from module Elixir.Block.Bl"},{"event":"cmd_output","timestamp":1607098356,"output":"ocks.STMHandler.InitializingState with name Elixir.Block.Blocks.STMHandler.InitializingState :: peri"},{"event":"cmd_output","timestamp":1607098356,"output":"od: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, re"},{"event":"cmd_output","timestamp":1607098356,"output":"curring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Block"},{"event":"cmd_output","timestamp":1607098356,"output":"s.Model.Blocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Block.EctoRepo, returning"},{"event":"cmd_output","timestamp":1607098356,"output":": [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.M"},{"event":"cmd_output","timestamp":1607098356,"output":"odel.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:36.296 [info] Periodic from module Elixir.Bl"},{"event":"cmd_output","timestamp":1607098356,"output":"ock.Blocks.STMHandler.RunningState with name Elixir.Block.Blocks.STMHandler.RunningState :: period: "},{"event":"cmd_output","timestamp":1607098356,"output":"100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-RunningState\"]}, recurring a"},{"event":"cmd_output","timestamp":1607098356,"output":"rgs: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.B"},{"event":"cmd_output","timestamp":1607098356,"output":"locks.Model.Blocks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning:"},{"event":"cmd_output","timestamp":1607098356,"output":" [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Mo"},{"event":"cmd_output","timestamp":1607098356,"output":"del.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:36.297 [info] Periodic from module Elixir.Blo"},{"event":"cmd_output","timestamp":1607098356,"output":"ck.Blocks.STMHandler.StoppingState with name Elixir.Block.Blocks.STMHandler.StoppingState :: period:"},{"event":"cmd_output","timestamp":1607098356,"output":" 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-StoppingState\"]}, recurring"},{"event":"cmd_output","timestamp":1607098356,"output":" args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Mod"},{"event":"cmd_output","timestamp":1607098356,"output":"el.Blocks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :"},{"event":"cmd_output","timestamp":1607098356,"output":"terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Bloc"},{"event":"cmd_output","timestamp":1607098356,"output":"ks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:36.297 [info] Periodic from module Elixir.Block.Tasks"},{"event":"cmd_output","timestamp":1607098356,"output":".STMHandler.PendingState with name Elixir.Block.Tasks.STMHandler.PendingState :: period: 100 ms, met"},{"event":"cmd_output","timestamp":1607098356,"output":"ric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingState\"]}, recurring args: %{allow"},{"event":"cmd_output","timestamp":1607098356,"output":"ed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Tasks.Model.Tasks, observe"},{"event":"cmd_output","timestamp":1607098356,"output":"d_state: \"pending\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, "},{"event":"cmd_output","timestamp":1607098356,"output":":updated_at, :state, :recovery_count, :block_id, :build_request_id], schema: Block.Tasks.Model.Tasks"},{"event":"cmd_output","timestamp":1607098356,"output":", task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:36.298 [info] Periodic from module Elixir.Block.Tasks.S"},{"event":"cmd_output","timestamp":1607098356,"output":"TMHandler.RunningState with name Elixir.Block.Tasks.STMHandler.RunningState :: period: 100 ms, metri"},{"event":"cmd_output","timestamp":1607098356,"output":"c_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningState\"]}, recurring args: %{allowed"},{"event":"cmd_output","timestamp":1607098356,"output":"_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tas"},{"event":"cmd_output","timestamp":1607098356,"output":"ks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminat"},{"event":"cmd_output","timestamp":1607098356,"output":"e_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_s"},{"event":"cmd_output","timestamp":1607098356,"output":"upervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:36.299 [info] Periodic from module Elixir.Block.Tasks.STMHandle"},{"event":"cmd_output","timestamp":1607098356,"output":"r.StoppingState with name Elixir.Block.Tasks.STMHandler.StoppingState :: period: 100 ms, metric_name"},{"event":"cmd_output","timestamp":1607098356,"output":": {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]}, recurring args: %{allowed_stat"},{"event":"cmd_output","timestamp":1607098356,"output":"es: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_sta"},{"event":"cmd_output","timestamp":1607098356,"output":"te: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :upd"},{"event":"cmd_output","timestamp":1607098356,"output":"ated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :ski"},{"event":"cmd_output","timestamp":1607098356,"output":"p}\n\u001b[0m\u001b[22m\n16:12:36.403 [info] ppl_id: cfab4a23-af72-4148-91d7-20a516d94a18, type: PplRequests,"},{"event":"cmd_output","timestamp":1607098356,"output":" event: persisted source_args for pipeline: cfab4a23-af72-4148-91d7-20a516d94a18, origin: Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098356,"output":".PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:36.405 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098356,"output":": cfab4a23-af72-4148-91d7-20a516d94a18, type: PplSubInits, state: fetching, event: exit_scheduling, "},{"event":"cmd_output","timestamp":1607098356,"output":"recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:36.423"},{"event":"cmd_output","timestamp":1607098356,"output":" [info] ppl_id: cfab4a23-af72-4148-91d7-20a516d94a18, type: PplSubInits, state: regular_init, event"},{"event":"cmd_output","timestamp":1607098356,"output":": exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098356,"output":"\u001b[22m\n16:12:36.442 [info] ppl_id: cfab4a23-af72-4148-91d7-20a516d94a18, type: PplRequests, event: "},{"event":"cmd_output","timestamp":1607098356,"output":"persisted definition for request with request_token: b7f26847-e7b6-4e9e-bbb2-e6ae71241b0f, origin: E"},{"event":"cmd_output","timestamp":1607098356,"output":"lixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:36.445 ["},{"event":"cmd_output","timestamp":1607098356,"output":"info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"que"},{"event":"cmd_output","timestamp":1607098356,"output":"ues\">, inserted_at: ~N[2020-12-04 16:12:36.444408], name: \"master-.semaphore/semaphore.yml\", organiz"},{"event":"cmd_output","timestamp":1607098356,"output":"ation_id: \"583ca096-41b7-46d2-94e4-d70a6aca7eab\", project_id: \"123\", queue_id: \"2fe1aa42-cae0-4bc5-8"},{"event":"cmd_output","timestamp":1607098356,"output":"4b1-739f109313a6\", scope: \"project\", updated_at: ~N[2020-12-04 16:12:36.444416], user_generated: fal"},{"event":"cmd_output","timestamp":1607098356,"output":"se}}\n\u001b[0m\u001b[22m\n16:12:36.448 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.Regu"},{"event":"cmd_output","timestamp":1607098356,"output":"larInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:36.448 [info] ppl_id: cfab4a23-af72-4148-91d7-20a5"},{"event":"cmd_output","timestamp":1607098356,"output":"16d94a18, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098356,"output":"rigin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:36.450"},{"event":"cmd_output","timestamp":1607098356,"output":" [info] ppl_id: cfab4a23-af72-4148-91d7-20a516d94a18, type: PplSubInits, state: done, result: passe"},{"event":"cmd_output","timestamp":1607098356,"output":"d, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90)"},{"event":"cmd_output","timestamp":1607098356,"output":", \n\u001b[0m\u001b[22m\n16:12:36.457 [info] ppl_id: cfab4a23-af72-4148-91d7-20a516d94a18, type: Ppls, state:"},{"event":"cmd_output","timestamp":1607098356,"output":" pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change"},{"event":"cmd_output","timestamp":1607098356,"output":"/1(L90), \n\u001b[0m\u001b[22m\n16:12:36.461 [info] ppl_id: cfab4a23-af72-4148-91d7-20a516d94a18, type: PplBl"},{"event":"cmd_output","timestamp":1607098356,"output":"ocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loop"},{"event":"cmd_output","timestamp":1607098356,"output":"er.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:36.463 [info] ppl_id: cfab4a23-af72-4148-91"},{"event":"cmd_output","timestamp":1607098356,"output":"d7-20a516d94a18, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098356,"output":"ir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:36.469 [info] ppl_id: cfab4a23-af72-"},{"event":"cmd_output","timestamp":1607098356,"output":"4148-91d7-20a516d94a18, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098356,"output":"n: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:36.472 [info] PplBlocks Waiti"},{"event":"cmd_output","timestamp":1607098356,"output":"ngState STM is scheduling block 0 from pipeline: \"cfab4a23-af72-4148-91d7-20a516d94a18\"\n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098356,"output":"16:12:36.476 [info] block_id: 13e21497-e50a-4cd9-9301-338c212c55f6, type: BlockRequests, event: per"},{"event":"cmd_output","timestamp":1607098356,"output":"sisted block run request from ppl cfab4a23-af72-4148-91d7-20a516d94a18 for block 0, origin: Elixir.B"},{"event":"cmd_output","timestamp":1607098356,"output":"lock.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:36.477 [in"},{"event":"cmd_output","timestamp":1607098356,"output":"fo] block_id: 13e21497-e50a-4cd9-9301-338c212c55f6, type: Blocks, state: initializing, event: initi"},{"event":"cmd_output","timestamp":1607098356,"output":"alizing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098356,"output":"2m\n16:12:36.479 [info] Block 0 of pipeline with id: cfab4a23-af72-4148-91d7-20a516d94a18 scheduled"},{"event":"cmd_output","timestamp":1607098356,"output":" in block service with id: : \"13e21497-e50a-4cd9-9301-338c212c55f6\"\n\u001b[0m\u001b[22m\n16:12:36.480 [info] "},{"event":"cmd_output","timestamp":1607098356,"output":" ppl_id: cfab4a23-af72-4148-91d7-20a516d94a18, type: PplBlocks, block_index: 0, state: running, even"},{"event":"cmd_output","timestamp":1607098356,"output":"t: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098356,"output":"m\u001b[22m\n16:12:36.482 [info] block_id: 13e21497-e50a-4cd9-9301-338c212c55f6, type: BlockRequests, ev"},{"event":"cmd_output","timestamp":1607098356,"output":"ent: persisted build and sub_ppl details for block_request: 13e21497-e50a-4cd9-9301-338c212c55f6, or"},{"event":"cmd_output","timestamp":1607098356,"output":"igin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:"},{"event":"cmd_output","timestamp":1607098356,"output":"36.484 [info] block_id: 13e21497-e50a-4cd9-9301-338c212c55f6, type: Tasks, state: pending, event: c"},{"event":"cmd_output","timestamp":1607098356,"output":"reated, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167),"},{"event":"cmd_output","timestamp":1607098356,"output":" \n\u001b[0m\u001b[22m\n16:12:36.491 [info] block_id: 13e21497-e50a-4cd9-9301-338c212c55f6, type: Blocks, sta"},{"event":"cmd_output","timestamp":1607098356,"output":"te: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_cha"},{"event":"cmd_output","timestamp":1607098356,"output":"nge/1(L90), \n\u001b[0m\u001b[22m\n16:12:36.508 [info] block_id: 13e21497-e50a-4cd9-9301-338c212c55f6, type: "},{"event":"cmd_output","timestamp":1607098356,"output":"Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098356,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:36.521 [info] ppl_id: 2bb1ebfa-0522-4b3d-82b6-a46f9282e46e"},{"event":"cmd_output","timestamp":1607098356,"output":", type: PplRequests, event: persisted source_args for pipeline: 2bb1ebfa-0522-4b3d-82b6-a46f9282e46e"},{"event":"cmd_output","timestamp":1607098356,"output":", origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:3"},{"event":"cmd_output","timestamp":1607098356,"output":"6.526 [info] ppl_id: 2bb1ebfa-0522-4b3d-82b6-a46f9282e46e, type: PplSubInits, state: fetching, even"},{"event":"cmd_output","timestamp":1607098356,"output":"t: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098356,"output":"m\u001b[22m\n16:12:36.538 [info] ppl_id: 2bb1ebfa-0522-4b3d-82b6-a46f9282e46e, type: PplSubInits, state:"},{"event":"cmd_output","timestamp":1607098356,"output":" regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098356,"output":"hange/1(L90), \n\u001b[0m\u001b[22m\n16:12:36.563 [info] ppl_id: 2bb1ebfa-0522-4b3d-82b6-a46f9282e46e, type: "},{"event":"cmd_output","timestamp":1607098356,"output":"PplRequests, event: persisted definition for request with request_token: 8c8cd4a8-38c0-4ce4-88d3-536"},{"event":"cmd_output","timestamp":1607098356,"output":"432d16581, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098356,"output":"[22m\n16:12:36.567 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitStat"},{"event":"cmd_output","timestamp":1607098356,"output":"e.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:36.567 [info] ppl_id: 2bb1ebfa-0522-4b3d-82b6-a46f9282e46e, t"},{"event":"cmd_output","timestamp":1607098356,"output":"ype: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098356,"output":"ir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:36.569 [info] pp"},{"event":"cmd_output","timestamp":1607098356,"output":"l_id: 2bb1ebfa-0522-4b3d-82b6-a46f9282e46e, type: PplSubInits, state: done, result: passed, event: e"},{"event":"cmd_output","timestamp":1607098356,"output":"xit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098356,"output":"2m\n16:12:36.573 [info] ppl_id: 2bb1ebfa-0522-4b3d-82b6-a46f9282e46e, type: PplBlocks, block_index:"},{"event":"cmd_output","timestamp":1607098356,"output":" 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_st"},{"event":"cmd_output","timestamp":1607098356,"output":"ate_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:36.575 [info] ppl_id: 2bb1ebfa-0522-4b3d-82b6-a46f9282e46e, t"},{"event":"cmd_output","timestamp":1607098356,"output":"ype: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl"},{"event":"cmd_output","timestamp":1607098356,"output":".log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:36.589 [info] ppl_id: 2bb1ebfa-0522-4b3d-82b6-a46f9282"},{"event":"cmd_output","timestamp":1607098356,"output":"e46e, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.S"},{"event":"cmd_output","timestamp":1607098356,"output":"TM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:36.618 [info] block_id: 13e21497-e50a-4cd9-9301"},{"event":"cmd_output","timestamp":1607098356,"output":"-338c212c55f6, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098356,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:36.624 [info] block_id: 13e21497-e50a-4c"},{"event":"cmd_output","timestamp":1607098356,"output":"d9-9301-338c212c55f6, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098356,"output":"Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:36.632 [info] ppl_id: cfab4a23-a"},{"event":"cmd_output","timestamp":1607098356,"output":"f72-4148-91d7-20a516d94a18, block_id: 13e21497-e50a-4cd9-9301-338c212c55f6, type: PplBlocks, block_i"},{"event":"cmd_output","timestamp":1607098356,"output":"ndex: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loop"},{"event":"cmd_output","timestamp":1607098356,"output":"er.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:36.634 [info] ppl_id: 3e2dd4e2-3726-4b8f-a5"},{"event":"cmd_output","timestamp":1607098356,"output":"a5-c77e1a428fff, type: PplRequests, event: persisted source_args for pipeline: 3e2dd4e2-3726-4b8f-a5"},{"event":"cmd_output","timestamp":1607098356,"output":"a5-c77e1a428fff, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098356,"output":"m\u001b[22m\n16:12:36.638 [info] ppl_id: 3e2dd4e2-3726-4b8f-a5a5-c77e1a428fff, type: PplSubInits, state:"},{"event":"cmd_output","timestamp":1607098356,"output":" fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chang"},{"event":"cmd_output","timestamp":1607098356,"output":"e/1(L90), \n\u001b[0m\u001b[22m\n16:12:36.642 [info] ppl_id: cfab4a23-af72-4148-91d7-20a516d94a18, type: Ppls"},{"event":"cmd_output","timestamp":1607098356,"output":", state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM."},{"event":"cmd_output","timestamp":1607098356,"output":"Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:36.652 [info] ppl_id: 3e2dd4e2-3726-4b8f-a5a5-c77e"},{"event":"cmd_output","timestamp":1607098356,"output":"1a428fff, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098356,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:36.667 [info] ppl_id: 3e2dd4e2-"},{"event":"cmd_output","timestamp":1607098356,"output":"3726-4b8f-a5a5-c77e1a428fff, type: PplRequests, event: persisted definition for request with request"},{"event":"cmd_output","timestamp":1607098356,"output":"_token: b24dedc0-6c5d-4ce8-8535-63ed7f949efb, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQuerie"},{"event":"cmd_output","timestamp":1607098356,"output":"s.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:36.678 [info] Queue persisted: {:ok, %Ppl.Queues.Mod"},{"event":"cmd_output","timestamp":1607098356,"output":"el.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:12:36.67"},{"event":"cmd_output","timestamp":1607098356,"output":"7737], name: \"master-.semaphore/semaphore.yml\", organization_id: \"fa2af97f-2bb9-474f-a3bc-39c12a5d37"},{"event":"cmd_output","timestamp":1607098356,"output":"34\", project_id: \"456\", queue_id: \"85b6a2af-c7ff-4bcf-9811-b92098f6e821\", scope: \"project\", updated_"},{"event":"cmd_output","timestamp":1607098356,"output":"at: ~N[2020-12-04 16:12:36.677746], user_generated: false}}\n\u001b[0m\u001b[22m\n16:12:36.681 [info] event: "},{"event":"cmd_output","timestamp":1607098356,"output":"created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098356,"output":":12:36.681 [info] ppl_id: 3e2dd4e2-3726-4b8f-a5a5-c77e1a428fff, type: PplBlocks, block_index: 0, st"},{"event":"cmd_output","timestamp":1607098356,"output":"ate: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.Regu"},{"event":"cmd_output","timestamp":1607098356,"output":"larInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:36.682 [info] ppl_id: 3e2dd4e2-3726-4b8f-a5a5-c77e"},{"event":"cmd_output","timestamp":1607098356,"output":"1a428fff, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098356,"output":" origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:36.691 [info] ppl_id: 3"},{"event":"cmd_output","timestamp":1607098356,"output":"e2dd4e2-3726-4b8f-a5a5-c77e1a428fff, type: PplBlocks, block_index: 0, state: waiting, event: exit_sc"},{"event":"cmd_output","timestamp":1607098356,"output":"heduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098356,"output":":12:36.692 [info] ppl_id: 3e2dd4e2-3726-4b8f-a5a5-c77e1a428fff, type: Ppls, state: pending, event: "},{"event":"cmd_output","timestamp":1607098356,"output":"exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098356,"output":"22m\n16:12:36.696 [info] ppl_id: 3e2dd4e2-3726-4b8f-a5a5-c77e1a428fff, type: Ppls, state: queuing, "},{"event":"cmd_output","timestamp":1607098356,"output":"event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \r"},{"event":"cmd_output","timestamp":1607098356,"output":"\n\u001b[0m\u001b[22m\n16:12:36.703 [info] ppl_id: 2bb1ebfa-0522-4b3d-82b6-a46f9282e46e, type: Ppls, state: ru"},{"event":"cmd_output","timestamp":1607098356,"output":"nning, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1("},{"event":"cmd_output","timestamp":1607098356,"output":"L90), \n\u001b[0m\u001b[22m\n16:12:36.707 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeli"},{"event":"cmd_output","timestamp":1607098356,"output":"ne: \"2bb1ebfa-0522-4b3d-82b6-a46f9282e46e\"\n\u001b[0m\u001b[22m\n16:12:36.710 [info] block_id: 17cb60c9-d924-"},{"event":"cmd_output","timestamp":1607098356,"output":"495f-95c4-be1c338c40d9, type: BlockRequests, event: persisted block run request from ppl 2bb1ebfa-05"},{"event":"cmd_output","timestamp":1607098356,"output":"22-4b3d-82b6-a46f9282e46e for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries"},{"event":"cmd_output","timestamp":1607098356,"output":".process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:36.713 [info] block_id: 17cb60c9-d924-495f-95c4-be1c33"},{"event":"cmd_output","timestamp":1607098356,"output":"8c40d9, type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Bl"},{"event":"cmd_output","timestamp":1607098356,"output":"ock.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:36.714 [info] Block 0 of pipeline "},{"event":"cmd_output","timestamp":1607098356,"output":"with id: 2bb1ebfa-0522-4b3d-82b6-a46f9282e46e scheduled in block service with id: : \"17cb60c9-d924-4"},{"event":"cmd_output","timestamp":1607098356,"output":"95f-95c4-be1c338c40d9\"\n\u001b[0m\u001b[22m\n16:12:36.716 [info] ppl_id: 2bb1ebfa-0522-4b3d-82b6-a46f9282e46e"},{"event":"cmd_output","timestamp":1607098356,"output":", type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098356,"output":": Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:36.719 [info] block_id: 17cb60"},{"event":"cmd_output","timestamp":1607098356,"output":"c9-d924-495f-95c4-be1c338c40d9, type: BlockRequests, event: persisted build and sub_ppl details for "},{"event":"cmd_output","timestamp":1607098356,"output":"block_request: 17cb60c9-d924-495f-95c4-be1c338c40d9, origin: Elixir.Block.BlockRequests.Model.BlockR"},{"event":"cmd_output","timestamp":1607098356,"output":"equestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:36.721 [info] block_id: 17cb60c9-d924-495f-9"},{"event":"cmd_output","timestamp":1607098356,"output":"5c4-be1c338c40d9, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Blo"},{"event":"cmd_output","timestamp":1607098356,"output":"ck.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:36.723 [info] block_id: "},{"event":"cmd_output","timestamp":1607098356,"output":"17cb60c9-d924-495f-95c4-be1c338c40d9, type: Blocks, state: running, event: exit_scheduling, recovery"},{"event":"cmd_output","timestamp":1607098356,"output":"_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:36.734 [info] "},{"event":"cmd_output","timestamp":1607098356,"output":" block_id: 17cb60c9-d924-495f-95c4-be1c338c40d9, type: Tasks, state: running, event: exit_scheduling"},{"event":"cmd_output","timestamp":1607098356,"output":", recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:36.7"},{"event":"cmd_output","timestamp":1607098356,"output":"36 [info] ppl_id: 3e2dd4e2-3726-4b8f-a5a5-c77e1a428fff, type: Ppls, state: running, event: exit_sch"},{"event":"cmd_output","timestamp":1607098356,"output":"eduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098356,"output":"12:36.742 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"3e2dd4e2-3726-4b8"},{"event":"cmd_output","timestamp":1607098356,"output":"f-a5a5-c77e1a428fff\"\n\u001b[0m\u001b[22m\n16:12:36.750 [info] block_id: 44c03c28-d3de-496f-9c0d-758cf130924e"},{"event":"cmd_output","timestamp":1607098356,"output":", type: BlockRequests, event: persisted block run request from ppl 3e2dd4e2-3726-4b8f-a5a5-c77e1a428"},{"event":"cmd_output","timestamp":1607098356,"output":"fff for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L3"},{"event":"cmd_output","timestamp":1607098356,"output":"5), \n\u001b[0m\u001b[22m\n16:12:36.751 [info] ppl_id: 86254150-22ce-4a48-82d5-4a5c67f97470, type: PplRequest"},{"event":"cmd_output","timestamp":1607098356,"output":"s, event: persisted source_args for pipeline: 86254150-22ce-4a48-82d5-4a5c67f97470, origin: Elixir.P"},{"event":"cmd_output","timestamp":1607098356,"output":"pl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:36.752 [info] bloc"},{"event":"cmd_output","timestamp":1607098356,"output":"k_id: 44c03c28-d3de-496f-9c0d-758cf130924e, type: Blocks, state: initializing, event: initializing, "},{"event":"cmd_output","timestamp":1607098356,"output":"recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12"},{"event":"cmd_output","timestamp":1607098356,"output":":36.754 [info] Block 0 of pipeline with id: 3e2dd4e2-3726-4b8f-a5a5-c77e1a428fff scheduled in block"},{"event":"cmd_output","timestamp":1607098356,"output":" service with id: : \"44c03c28-d3de-496f-9c0d-758cf130924e\"\n\u001b[0m\u001b[22m\n16:12:36.755 [info] ppl_id: "},{"event":"cmd_output","timestamp":1607098356,"output":"86254150-22ce-4a48-82d5-4a5c67f97470, type: PplSubInits, state: fetching, event: exit_scheduling, re"},{"event":"cmd_output","timestamp":1607098356,"output":"covery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:36.756 ["},{"event":"cmd_output","timestamp":1607098356,"output":"info] ppl_id: 3e2dd4e2-3726-4b8f-a5a5-c77e1a428fff, type: PplBlocks, block_index: 0, state: running"},{"event":"cmd_output","timestamp":1607098356,"output":", event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90),"},{"event":"cmd_output","timestamp":1607098356,"output":" \n\u001b[0m\u001b[22m\n16:12:36.758 [info] block_id: 44c03c28-d3de-496f-9c0d-758cf130924e, type: BlockReques"},{"event":"cmd_output","timestamp":1607098356,"output":"ts, event: persisted build and sub_ppl details for block_request: 44c03c28-d3de-496f-9c0d-758cf13092"},{"event":"cmd_output","timestamp":1607098356,"output":"4e, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098356,"output":"16:12:36.760 [info] block_id: 44c03c28-d3de-496f-9c0d-758cf130924e, type: Tasks, state: pending, ev"},{"event":"cmd_output","timestamp":1607098356,"output":"ent: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1("},{"event":"cmd_output","timestamp":1607098356,"output":"L167), \n\u001b[0m\u001b[22m\n16:12:36.763 [info] block_id: 44c03c28-d3de-496f-9c0d-758cf130924e, type: Block"},{"event":"cmd_output","timestamp":1607098356,"output":"s, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_sta"},{"event":"cmd_output","timestamp":1607098356,"output":"te_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:36.777 [info] block_id: 44c03c28-d3de-496f-9c0d-758cf130924e, "},{"event":"cmd_output","timestamp":1607098356,"output":"type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Im"},{"event":"cmd_output","timestamp":1607098356,"output":"pl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:36.779 [info] ppl_id: 86254150-22ce-4a48-82d5-4a5c67"},{"event":"cmd_output","timestamp":1607098356,"output":"f97470, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: E"},{"event":"cmd_output","timestamp":1607098356,"output":"lixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:36.798 [info] ppl_id: 86254150-22"},{"event":"cmd_output","timestamp":1607098356,"output":"ce-4a48-82d5-4a5c67f97470, type: PplRequests, event: persisted definition for request with request_t"},{"event":"cmd_output","timestamp":1607098356,"output":"oken: 380f146a-f122-472b-8129-b10eee8a578c, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries."},{"event":"cmd_output","timestamp":1607098356,"output":"insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:36.801 [info] event: created, origin: Elixir.Ppl.PplSu"},{"event":"cmd_output","timestamp":1607098356,"output":"bInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:36.801 [info] ppl_id: 862541"},{"event":"cmd_output","timestamp":1607098356,"output":"50-22ce-4a48-82d5-4a5c67f97470, type: PplBlocks, block_index: 0, state: initializing, event: created"},{"event":"cmd_output","timestamp":1607098356,"output":", recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b"},{"event":"cmd_output","timestamp":1607098356,"output":"[0m\u001b[22m\n16:12:36.803 [info] ppl_id: 86254150-22ce-4a48-82d5-4a5c67f97470, type: PplSubInits, stat"},{"event":"cmd_output","timestamp":1607098356,"output":"e: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.l"},{"event":"cmd_output","timestamp":1607098356,"output":"og_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:36.809 [info] ppl_id: 86254150-22ce-4a48-82d5-4a5c67f974"},{"event":"cmd_output","timestamp":1607098356,"output":"70, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM"},{"event":"cmd_output","timestamp":1607098356,"output":".Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:36.810 [info] ppl_id: 86254150-22ce-4a48-82d5-4a5"},{"event":"cmd_output","timestamp":1607098356,"output":"c67f97470, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: "},{"event":"cmd_output","timestamp":1607098356,"output":"0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:36.815 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098356,"output":" 86254150-22ce-4a48-82d5-4a5c67f97470, type: Ppls, state: queuing, event: exit_scheduling, recovery_"},{"event":"cmd_output","timestamp":1607098356,"output":"count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:36.834 [info] "},{"event":"cmd_output","timestamp":1607098356,"output":"block_id: 17cb60c9-d924-495f-95c4-be1c338c40d9, type: Tasks, state: done, event: exit_scheduling, re"},{"event":"cmd_output","timestamp":1607098356,"output":"covery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:36.838 ["},{"event":"cmd_output","timestamp":1607098356,"output":"info] block_id: 17cb60c9-d924-495f-95c4-be1c338c40d9, type: Blocks, state: done, event: exit_schedu"},{"event":"cmd_output","timestamp":1607098356,"output":"ling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:"},{"event":"cmd_output","timestamp":1607098356,"output":"36.845 [info] ppl_id: 2bb1ebfa-0522-4b3d-82b6-a46f9282e46e, block_id: 17cb60c9-d924-495f-95c4-be1c3"},{"event":"cmd_output","timestamp":1607098356,"output":"38c40d9, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, recov"},{"event":"cmd_output","timestamp":1607098356,"output":"ery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:36.858 [inf"},{"event":"cmd_output","timestamp":1607098356,"output":"o] ppl_id: 2bb1ebfa-0522-4b3d-82b6-a46f9282e46e, type: Ppls, state: done, result: passed, event: ex"},{"event":"cmd_output","timestamp":1607098356,"output":"it_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098356,"output":"m\n16:12:36.862 [info] ppl_id: 6f84c893-6c7d-4362-9d68-86013033d134, type: PplRequests, event: pers"},{"event":"cmd_output","timestamp":1607098356,"output":"isted source_args for pipeline: 6f84c893-6c7d-4362-9d68-86013033d134, origin: Elixir.Ppl.PplRequests"},{"event":"cmd_output","timestamp":1607098356,"output":".Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:36.863 [info] ppl_id: 6f84c893-6"},{"event":"cmd_output","timestamp":1607098356,"output":"c7d-4362-9d68-86013033d134, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_cou"},{"event":"cmd_output","timestamp":1607098356,"output":"nt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:36.878 [info] ppl"},{"event":"cmd_output","timestamp":1607098356,"output":"_id: 6f84c893-6c7d-4362-9d68-86013033d134, type: PplSubInits, state: regular_init, event: exit_sched"},{"event":"cmd_output","timestamp":1607098356,"output":"uling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12"},{"event":"cmd_output","timestamp":1607098356,"output":":36.894 [info] ppl_id: 6f84c893-6c7d-4362-9d68-86013033d134, type: PplRequests, event: persisted de"},{"event":"cmd_output","timestamp":1607098356,"output":"finition for request with request_token: 01fcbe26-c909-47e6-bbba-ad02881c8452, origin: Elixir.Ppl.Pp"},{"event":"cmd_output","timestamp":1607098356,"output":"lRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:36.896 [info] Queue"},{"event":"cmd_output","timestamp":1607098356,"output":" persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inser"},{"event":"cmd_output","timestamp":1607098356,"output":"ted_at: ~N[2020-12-04 16:12:36.895317], name: \"dev-.semaphore/semaphore.yml\", organization_id: \"995c"},{"event":"cmd_output","timestamp":1607098356,"output":"6319-e331-4b27-9e7d-58da4df35792\", project_id: \"123\", queue_id: \"dfa723cb-6bd4-43d7-bf73-15692ff4b18"},{"event":"cmd_output","timestamp":1607098356,"output":"7\", scope: \"project\", updated_at: ~N[2020-12-04 16:12:36.895326], user_generated: false}}\n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098356,"output":"\n16:12:36.904 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.al"},{"event":"cmd_output","timestamp":1607098356,"output":"l_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:36.904 [info] ppl_id: 6f84c893-6c7d-4362-9d68-86013033d134, type:"},{"event":"cmd_output","timestamp":1607098356,"output":" PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.P"},{"event":"cmd_output","timestamp":1607098356,"output":"pl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:36.906 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098356,"output":": 6f84c893-6c7d-4362-9d68-86013033d134, type: PplSubInits, state: done, result: passed, event: exit_"},{"event":"cmd_output","timestamp":1607098356,"output":"scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098356,"output":"16:12:36.911 [info] ppl_id: 6f84c893-6c7d-4362-9d68-86013033d134, type: Ppls, state: pending, event"},{"event":"cmd_output","timestamp":1607098356,"output":": exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098356,"output":"\u001b[22m\n16:12:36.912 [info] ppl_id: 6f84c893-6c7d-4362-9d68-86013033d134, type: PplBlocks, block_ind"},{"event":"cmd_output","timestamp":1607098356,"output":"ex: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098356,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:36.917 [info] ppl_id: 6f84c893-6c7d-4362-9d68-86013033d134"},{"event":"cmd_output","timestamp":1607098356,"output":", type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.I"},{"event":"cmd_output","timestamp":1607098356,"output":"mpl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:36.927 [info] ppl_id: 6f84c893-6c7d-4362-9d68-86013"},{"event":"cmd_output","timestamp":1607098356,"output":"033d134, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loope"},{"event":"cmd_output","timestamp":1607098356,"output":"r.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:36.931 [info] PplBlocks WaitingState STM is "},{"event":"cmd_output","timestamp":1607098356,"output":"scheduling block 0 from pipeline: \"6f84c893-6c7d-4362-9d68-86013033d134\"\n\u001b[0m\u001b[22m\n16:12:36.935 [i"},{"event":"cmd_output","timestamp":1607098356,"output":"nfo] block_id: e4e0aa0c-a706-49a1-bc91-0b1a392f2c5d, type: BlockRequests, event: persisted block ru"},{"event":"cmd_output","timestamp":1607098356,"output":"n request from ppl 6f84c893-6c7d-4362-9d68-86013033d134 for block 0, origin: Elixir.Block.BlockReque"},{"event":"cmd_output","timestamp":1607098356,"output":"sts.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:36.936 [info] block_id: "},{"event":"cmd_output","timestamp":1607098356,"output":"e4e0aa0c-a706-49a1-bc91-0b1a392f2c5d, type: Blocks, state: initializing, event: initializing, recove"},{"event":"cmd_output","timestamp":1607098356,"output":"ry_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:36.93"},{"event":"cmd_output","timestamp":1607098356,"output":"9 [info] Block 0 of pipeline with id: 6f84c893-6c7d-4362-9d68-86013033d134 scheduled in block servi"},{"event":"cmd_output","timestamp":1607098356,"output":"ce with id: : \"e4e0aa0c-a706-49a1-bc91-0b1a392f2c5d\"\n\u001b[0m\u001b[22m\n16:12:36.943 [info] ppl_id: 6f84c8"},{"event":"cmd_output","timestamp":1607098356,"output":"93-6c7d-4362-9d68-86013033d134, type: PplBlocks, block_index: 0, state: running, event: exit_schedul"},{"event":"cmd_output","timestamp":1607098356,"output":"ing, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:3"},{"event":"cmd_output","timestamp":1607098356,"output":"6.944 [info] block_id: e4e0aa0c-a706-49a1-bc91-0b1a392f2c5d, type: BlockRequests, event: persisted "},{"event":"cmd_output","timestamp":1607098356,"output":"build and sub_ppl details for block_request: e4e0aa0c-a706-49a1-bc91-0b1a392f2c5d, origin: Elixir.Bl"},{"event":"cmd_output","timestamp":1607098356,"output":"ock.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:36.945 [info] "},{"event":"cmd_output","timestamp":1607098356,"output":"block_id: 44c03c28-d3de-496f-9c0d-758cf130924e, type: Tasks, state: done, event: exit_scheduling, re"},{"event":"cmd_output","timestamp":1607098356,"output":"covery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:36.949 ["},{"event":"cmd_output","timestamp":1607098356,"output":"info] block_id: e4e0aa0c-a706-49a1-bc91-0b1a392f2c5d, type: Tasks, state: pending, event: created, "},{"event":"cmd_output","timestamp":1607098356,"output":"recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098356,"output":"[22m\n16:12:36.951 [info] block_id: e4e0aa0c-a706-49a1-bc91-0b1a392f2c5d, type: Blocks, state: runn"},{"event":"cmd_output","timestamp":1607098356,"output":"ing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L9"},{"event":"cmd_output","timestamp":1607098356,"output":"0), \n\u001b[0m\u001b[22m\n16:12:36.952 [info] block_id: 44c03c28-d3de-496f-9c0d-758cf130924e, type: Blocks, "},{"event":"cmd_output","timestamp":1607098356,"output":"state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_cha"},{"event":"cmd_output","timestamp":1607098356,"output":"nge/1(L90), \n\u001b[0m\u001b[22m\n16:12:36.969 [info] block_id: e4e0aa0c-a706-49a1-bc91-0b1a392f2c5d, type: "},{"event":"cmd_output","timestamp":1607098356,"output":"Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098356,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:36.969 [info] ppl_id: 3e2dd4e2-3726-4b8f-a5a5-c77e1a428fff"},{"event":"cmd_output","timestamp":1607098356,"output":", block_id: 44c03c28-d3de-496f-9c0d-758cf130924e, type: PplBlocks, block_index: 0, state: done, resu"},{"event":"cmd_output","timestamp":1607098356,"output":"lt: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chan"},{"event":"cmd_output","timestamp":1607098356,"output":"ge/1(L90), \n\u001b[0m\u001b[22m\n16:12:36.976 [info] ppl_id: 20f8d23c-9481-4cf7-b60e-e5967aaa7824, type: Ppl"},{"event":"cmd_output","timestamp":1607098356,"output":"Requests, event: persisted source_args for pipeline: 20f8d23c-9481-4cf7-b60e-e5967aaa7824, origin: E"},{"event":"cmd_output","timestamp":1607098356,"output":"lixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:36.978 [info"},{"event":"cmd_output","timestamp":1607098356,"output":"] ppl_id: 3e2dd4e2-3726-4b8f-a5a5-c77e1a428fff, type: Ppls, state: done, result: passed, event: exi"},{"event":"cmd_output","timestamp":1607098356,"output":"t_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098356,"output":"\n16:12:36.978 [info] ppl_id: 20f8d23c-9481-4cf7-b60e-e5967aaa7824, type: PplSubInits, state: fetch"},{"event":"cmd_output","timestamp":1607098356,"output":"ing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L9"},{"event":"cmd_output","timestamp":1607098356,"output":"0), \n\u001b[0m\u001b[22m\n16:12:36.995 [info] ppl_id: 20f8d23c-9481-4cf7-b60e-e5967aaa7824, type: PplSubInit"},{"event":"cmd_output","timestamp":1607098356,"output":"s, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.lo"},{"event":"cmd_output","timestamp":1607098357,"output":"g_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:37.016 [info] ppl_id: 20f8d23c-9481-4cf7-b60e-e5967aaa782"},{"event":"cmd_output","timestamp":1607098357,"output":"4, type: PplRequests, event: persisted definition for request with request_token: 5de0d2d1-66bd-4f3f"},{"event":"cmd_output","timestamp":1607098357,"output":"-a298-5e791ccc5820, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76)"},{"event":"cmd_output","timestamp":1607098357,"output":", \n\u001b[0m\u001b[22m\n16:12:37.021 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.Regula"},{"event":"cmd_output","timestamp":1607098357,"output":"rInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:37.021 [info] ppl_id: 20f8d23c-9481-4cf7-b60e-e5967a"},{"event":"cmd_output","timestamp":1607098357,"output":"aa7824, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098357,"output":"gin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:37.022 ["},{"event":"cmd_output","timestamp":1607098357,"output":"info] ppl_id: 20f8d23c-9481-4cf7-b60e-e5967aaa7824, type: PplSubInits, state: done, result: passed,"},{"event":"cmd_output","timestamp":1607098357,"output":" event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), "},{"event":"cmd_output","timestamp":1607098357,"output":"\n\u001b[0m\u001b[22m\n16:12:37.030 [info] ppl_id: 20f8d23c-9481-4cf7-b60e-e5967aaa7824, type: Ppls, state: p"},{"event":"cmd_output","timestamp":1607098357,"output":"ending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1"},{"event":"cmd_output","timestamp":1607098357,"output":"(L90), \n\u001b[0m\u001b[22m\n16:12:37.034 [info] ppl_id: 20f8d23c-9481-4cf7-b60e-e5967aaa7824, type: PplBloc"},{"event":"cmd_output","timestamp":1607098357,"output":"ks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper"},{"event":"cmd_output","timestamp":1607098357,"output":".STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:37.047 [info] ppl_id: 20f8d23c-9481-4cf7-b60e"},{"event":"cmd_output","timestamp":1607098357,"output":"-e5967aaa7824, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098357,"output":".Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:37.056 [info] block_id: e4e0aa0c-a706-"},{"event":"cmd_output","timestamp":1607098357,"output":"49a1-bc91-0b1a392f2c5d, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098357,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:37.059 [info] ppl_id: 86254150-"},{"event":"cmd_output","timestamp":1607098357,"output":"22ce-4a48-82d5-4a5c67f97470, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098357,"output":"origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:37.061 [info] block_id: "},{"event":"cmd_output","timestamp":1607098357,"output":"e4e0aa0c-a706-49a1-bc91-0b1a392f2c5d, type: Blocks, state: done, event: exit_scheduling, recovery_co"},{"event":"cmd_output","timestamp":1607098357,"output":"unt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:37.068 [info] Pp"},{"event":"cmd_output","timestamp":1607098357,"output":"lBlocks WaitingState STM is scheduling block 0 from pipeline: \"86254150-22ce-4a48-82d5-4a5c67f97470\""},{"event":"cmd_output","timestamp":1607098357,"output":"\n\u001b[0m\u001b[22m\n16:12:37.073 [info] block_id: f5c1c3c7-db04-45df-bc85-cf26fff5b429, type: BlockRequest"},{"event":"cmd_output","timestamp":1607098357,"output":"s, event: persisted block run request from ppl 86254150-22ce-4a48-82d5-4a5c67f97470 for block 0, ori"},{"event":"cmd_output","timestamp":1607098357,"output":"gin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098357,"output":"12:37.074 [info] ppl_id: 6f84c893-6c7d-4362-9d68-86013033d134, block_id: e4e0aa0c-a706-49a1-bc91-0b"},{"event":"cmd_output","timestamp":1607098357,"output":"1a392f2c5d, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, re"},{"event":"cmd_output","timestamp":1607098357,"output":"covery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:37.076 ["},{"event":"cmd_output","timestamp":1607098357,"output":"info] block_id: f5c1c3c7-db04-45df-bc85-cf26fff5b429, type: Blocks, state: initializing, event: ini"},{"event":"cmd_output","timestamp":1607098357,"output":"tializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098357,"output":"[22m\n16:12:37.078 [info] Block 0 of pipeline with id: 86254150-22ce-4a48-82d5-4a5c67f97470 schedul"},{"event":"cmd_output","timestamp":1607098357,"output":"ed in block service with id: : \"f5c1c3c7-db04-45df-bc85-cf26fff5b429\"\n\u001b[0m\u001b[22m\n16:12:37.082 [info"},{"event":"cmd_output","timestamp":1607098357,"output":"] block_id: f5c1c3c7-db04-45df-bc85-cf26fff5b429, type: BlockRequests, event: persisted build and s"},{"event":"cmd_output","timestamp":1607098357,"output":"ub_ppl details for block_request: f5c1c3c7-db04-45df-bc85-cf26fff5b429, origin: Elixir.Block.BlockRe"},{"event":"cmd_output","timestamp":1607098357,"output":"quests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:37.082 [info] ppl_id: 862"},{"event":"cmd_output","timestamp":1607098357,"output":"54150-22ce-4a48-82d5-4a5c67f97470, type: PplBlocks, block_index: 0, state: running, event: exit_sche"},{"event":"cmd_output","timestamp":1607098357,"output":"duling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098357,"output":"2:37.084 [info] block_id: f5c1c3c7-db04-45df-bc85-cf26fff5b429, type: Tasks, state: pending, event:"},{"event":"cmd_output","timestamp":1607098357,"output":" created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167"},{"event":"cmd_output","timestamp":1607098357,"output":"), \n\u001b[0m\u001b[22m\n16:12:37.087 [info] ppl_id: 1f904094-47e5-4cdb-95b8-73e75430e431, type: PplRequests"},{"event":"cmd_output","timestamp":1607098357,"output":", event: persisted source_args for pipeline: 1f904094-47e5-4cdb-95b8-73e75430e431, origin: Elixir.Pp"},{"event":"cmd_output","timestamp":1607098357,"output":"l.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:37.090 [info] block"},{"event":"cmd_output","timestamp":1607098357,"output":"_id: f5c1c3c7-db04-45df-bc85-cf26fff5b429, type: Blocks, state: running, event: exit_scheduling, rec"},{"event":"cmd_output","timestamp":1607098357,"output":"overy_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:37.092 [i"},{"event":"cmd_output","timestamp":1607098357,"output":"nfo] ppl_id: 1f904094-47e5-4cdb-95b8-73e75430e431, type: PplSubInits, state: fetching, event: exit_"},{"event":"cmd_output","timestamp":1607098357,"output":"scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098357,"output":"16:12:37.095 [info] ppl_id: 6f84c893-6c7d-4362-9d68-86013033d134, type: Ppls, state: done, result: "},{"event":"cmd_output","timestamp":1607098357,"output":"passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1"},{"event":"cmd_output","timestamp":1607098357,"output":"(L90), \n\u001b[0m\u001b[22m\n16:12:37.105 [info] block_id: f5c1c3c7-db04-45df-bc85-cf26fff5b429, type: Tasks"},{"event":"cmd_output","timestamp":1607098357,"output":", state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_stat"},{"event":"cmd_output","timestamp":1607098357,"output":"e_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:37.116 [info] ppl_id: 1f904094-47e5-4cdb-95b8-73e75430e431, typ"},{"event":"cmd_output","timestamp":1607098357,"output":"e: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loope"},{"event":"cmd_output","timestamp":1607098357,"output":"r.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:37.132 [info] ppl_id: 1f904094-47e5-4cdb-95b"},{"event":"cmd_output","timestamp":1607098357,"output":"8-73e75430e431, type: PplRequests, event: persisted definition for request with request_token: 1c087"},{"event":"cmd_output","timestamp":1607098357,"output":"bbb-9dcb-45bd-9ee5-dc018741a655, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_defi"},{"event":"cmd_output","timestamp":1607098357,"output":"nition/3(L76), \n\u001b[0m\u001b[22m\n16:12:37.139 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__m"},{"event":"cmd_output","timestamp":1607098357,"output":"eta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:12:37.133684], name: "},{"event":"cmd_output","timestamp":1607098357,"output":"\"dev-.semaphore/semaphore.yml\", organization_id: \"3d6f6885-2eb3-488d-8dc4-3b6bbdafe357\", project_id:"},{"event":"cmd_output","timestamp":1607098357,"output":" \"456\", queue_id: \"45d160ba-e16a-487e-aeb9-b68451ee595c\", scope: \"project\", updated_at: ~N[2020-12-0"},{"event":"cmd_output","timestamp":1607098357,"output":"4 16:12:37.133692], user_generated: false}}\n\u001b[0m\u001b[22m\n16:12:37.142 [info] event: created, origin:"},{"event":"cmd_output","timestamp":1607098357,"output":" Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:37.142 [info"},{"event":"cmd_output","timestamp":1607098357,"output":"] ppl_id: 1f904094-47e5-4cdb-95b8-73e75430e431, type: PplBlocks, block_index: 0, state: initializin"},{"event":"cmd_output","timestamp":1607098357,"output":"g, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all"},{"event":"cmd_output","timestamp":1607098357,"output":"_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:37.146 [info] ppl_id: 1f904094-47e5-4cdb-95b8-73e75430e431, type: "},{"event":"cmd_output","timestamp":1607098357,"output":"PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098357,"output":"Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:37.153 [info] ppl_id: 1f904094-47e5-4cd"},{"event":"cmd_output","timestamp":1607098357,"output":"b-95b8-73e75430e431, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recove"},{"event":"cmd_output","timestamp":1607098357,"output":"ry_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:37.154 [info"},{"event":"cmd_output","timestamp":1607098357,"output":"] ppl_id: 1f904094-47e5-4cdb-95b8-73e75430e431, type: Ppls, state: pending, event: exit_scheduling,"},{"event":"cmd_output","timestamp":1607098357,"output":" recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:37.15"},{"event":"cmd_output","timestamp":1607098357,"output":"9 [info] ppl_id: 1f904094-47e5-4cdb-95b8-73e75430e431, type: Ppls, state: queuing, event: exit_sche"},{"event":"cmd_output","timestamp":1607098357,"output":"duling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098357,"output":"2:37.167 [info] block_id: f5c1c3c7-db04-45df-bc85-cf26fff5b429, type: Tasks, state: done, event: ex"},{"event":"cmd_output","timestamp":1607098357,"output":"it_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098357,"output":"m\n16:12:37.167 [info] ppl_id: 1f904094-47e5-4cdb-95b8-73e75430e431, type: Ppls, state: running, ev"},{"event":"cmd_output","timestamp":1607098357,"output":"ent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b"},{"event":"cmd_output","timestamp":1607098357,"output":"[0m\u001b[22m\n16:12:37.172 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"1f90"},{"event":"cmd_output","timestamp":1607098357,"output":"4094-47e5-4cdb-95b8-73e75430e431\"\n\u001b[0m\u001b[22m\n16:12:37.175 [info] block_id: f5c1c3c7-db04-45df-bc85"},{"event":"cmd_output","timestamp":1607098357,"output":"-cf26fff5b429, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098357,"output":"Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:37.176 [info] ppl_id: 20f8d23c-9481-4cf"},{"event":"cmd_output","timestamp":1607098357,"output":"7-b60e-e5967aaa7824, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098357,"output":"Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:37.179 [info] block_id: d1b56592"},{"event":"cmd_output","timestamp":1607098357,"output":"-0677-41de-b73e-726f1b723466, type: BlockRequests, event: persisted block run request from ppl 1f904"},{"event":"cmd_output","timestamp":1607098357,"output":"094-47e5-4cdb-95b8-73e75430e431 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQ"},{"event":"cmd_output","timestamp":1607098357,"output":"ueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:37.181 [info] block_id: d1b56592-0677-41de-b73e-"},{"event":"cmd_output","timestamp":1607098357,"output":"726f1b723466, type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098357,"output":"xir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:37.183 [info] Block 0 of pip"},{"event":"cmd_output","timestamp":1607098357,"output":"eline with id: 1f904094-47e5-4cdb-95b8-73e75430e431 scheduled in block service with id: : \"d1b56592-"},{"event":"cmd_output","timestamp":1607098357,"output":"0677-41de-b73e-726f1b723466\"\n\u001b[0m\u001b[22m\n16:12:37.185 [info] ppl_id: 86254150-22ce-4a48-82d5-4a5c67"},{"event":"cmd_output","timestamp":1607098357,"output":"f97470, block_id: f5c1c3c7-db04-45df-bc85-cf26fff5b429, type: PplBlocks, block_index: 0, state: done"},{"event":"cmd_output","timestamp":1607098357,"output":", result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_stat"},{"event":"cmd_output","timestamp":1607098357,"output":"e_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:37.188 [info] block_id: d1b56592-0677-41de-b73e-726f1b723466, t"},{"event":"cmd_output","timestamp":1607098357,"output":"ype: BlockRequests, event: persisted build and sub_ppl details for block_request: d1b56592-0677-41de"},{"event":"cmd_output","timestamp":1607098357,"output":"-b73e-726f1b723466, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41"},{"event":"cmd_output","timestamp":1607098357,"output":"), \n\u001b[0m\u001b[22m\n16:12:37.188 [info] ppl_id: 1f904094-47e5-4cdb-95b8-73e75430e431, type: PplBlocks, "},{"event":"cmd_output","timestamp":1607098357,"output":"block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM"},{"event":"cmd_output","timestamp":1607098357,"output":".Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:37.191 [info] block_id: d1b56592-0677-41de-b73e-7"},{"event":"cmd_output","timestamp":1607098357,"output":"26f1b723466, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Bl"},{"event":"cmd_output","timestamp":1607098357,"output":"ocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:37.193 [info] block_id: d1b56"},{"event":"cmd_output","timestamp":1607098357,"output":"592-0677-41de-b73e-726f1b723466, type: Blocks, state: running, event: exit_scheduling, recovery_coun"},{"event":"cmd_output","timestamp":1607098357,"output":"t: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:37.194 [info] PplB"},{"event":"cmd_output","timestamp":1607098357,"output":"locks WaitingState STM is scheduling block 0 from pipeline: \"20f8d23c-9481-4cf7-b60e-e5967aaa7824\"\n"},{"event":"cmd_output","timestamp":1607098357,"output":"\u001b[0m\u001b[22m\n16:12:37.203 [info] ppl_id: 780e101c-f6e8-412d-9d39-bc934d42103a, type: PplRequests, eve"},{"event":"cmd_output","timestamp":1607098357,"output":"nt: persisted source_args for pipeline: 780e101c-f6e8-412d-9d39-bc934d42103a, origin: Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098357,"output":"Requests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:37.207 [info] ppl_id: 78"},{"event":"cmd_output","timestamp":1607098357,"output":"0e101c-f6e8-412d-9d39-bc934d42103a, type: PplSubInits, state: fetching, event: exit_scheduling, reco"},{"event":"cmd_output","timestamp":1607098357,"output":"very_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:37.208 [in"},{"event":"cmd_output","timestamp":1607098357,"output":"fo] ppl_id: 86254150-22ce-4a48-82d5-4a5c67f97470, type: Ppls, state: done, result: passed, event: e"},{"event":"cmd_output","timestamp":1607098357,"output":"xit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098357,"output":"2m\n16:12:37.208 [info] block_id: b126edbc-6ada-4b3b-9318-de4feb206c20, type: BlockRequests, event:"},{"event":"cmd_output","timestamp":1607098357,"output":" persisted block run request from ppl 20f8d23c-9481-4cf7-b60e-e5967aaa7824 for block 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098357,"output":"ir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:37.210"},{"event":"cmd_output","timestamp":1607098357,"output":" [info] block_id: b126edbc-6ada-4b3b-9318-de4feb206c20, type: Blocks, state: initializing, event: i"},{"event":"cmd_output","timestamp":1607098357,"output":"nitializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098357,"output":"m\u001b[22m\n16:12:37.214 [info] block_id: d1b56592-0677-41de-b73e-726f1b723466, type: Tasks, state: run"},{"event":"cmd_output","timestamp":1607098357,"output":"ning, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098357,"output":"90), \n\u001b[0m\u001b[22m\n16:12:37.216 [info] Block 0 of pipeline with id: 20f8d23c-9481-4cf7-b60e-e5967aaa"},{"event":"cmd_output","timestamp":1607098357,"output":"7824 scheduled in block service with id: : \"b126edbc-6ada-4b3b-9318-de4feb206c20\"\n\u001b[0m\u001b[22m\n16:12:"},{"event":"cmd_output","timestamp":1607098357,"output":"37.218 [info] ppl_id: 20f8d23c-9481-4cf7-b60e-e5967aaa7824, type: PplBlocks, block_index: 0, state:"},{"event":"cmd_output","timestamp":1607098357,"output":" running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change"},{"event":"cmd_output","timestamp":1607098357,"output":"/1(L90), \n\u001b[0m\u001b[22m\n16:12:37.219 [info] block_id: b126edbc-6ada-4b3b-9318-de4feb206c20, type: Blo"},{"event":"cmd_output","timestamp":1607098357,"output":"ckRequests, event: persisted build and sub_ppl details for block_request: b126edbc-6ada-4b3b-9318-de"},{"event":"cmd_output","timestamp":1607098357,"output":"4feb206c20, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098357,"output":"m\u001b[22m\n16:12:37.224 [info] block_id: b126edbc-6ada-4b3b-9318-de4feb206c20, type: Tasks, state: pen"},{"event":"cmd_output","timestamp":1607098357,"output":"ding, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.al"},{"event":"cmd_output","timestamp":1607098357,"output":"l_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:37.227 [info] block_id: b126edbc-6ada-4b3b-9318-de4feb206c20, typ"},{"event":"cmd_output","timestamp":1607098357,"output":"e: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl"},{"event":"cmd_output","timestamp":1607098357,"output":".log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:37.239 [info] ppl_id: 780e101c-f6e8-412d-9d39-bc934d42"},{"event":"cmd_output","timestamp":1607098357,"output":"103a, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098357,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:37.240 [info] block_id: b126edbc-6a"},{"event":"cmd_output","timestamp":1607098357,"output":"da-4b3b-9318-de4feb206c20, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098357,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:37.266 [info] ppl_id: 780"},{"event":"cmd_output","timestamp":1607098357,"output":"e101c-f6e8-412d-9d39-bc934d42103a, type: PplRequests, event: persisted definition for request with r"},{"event":"cmd_output","timestamp":1607098357,"output":"equest_token: 5182b55d-4ee1-4169-85d4-ed4842bff1a3, origin: Elixir.Ppl.PplRequests.Model.PplRequests"},{"event":"cmd_output","timestamp":1607098357,"output":"Queries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:37.269 [info] event: created, origin: Elixir.P"},{"event":"cmd_output","timestamp":1607098357,"output":"pl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:37.269 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098357,"output":": 780e101c-f6e8-412d-9d39-bc934d42103a, type: PplBlocks, block_index: 0, state: initializing, event:"},{"event":"cmd_output","timestamp":1607098357,"output":" created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L1"},{"event":"cmd_output","timestamp":1607098357,"output":"05), \n\u001b[0m\u001b[22m\n16:12:37.272 [info] ppl_id: 780e101c-f6e8-412d-9d39-bc934d42103a, type: PplSubIni"},{"event":"cmd_output","timestamp":1607098357,"output":"ts, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.ST"},{"event":"cmd_output","timestamp":1607098357,"output":"M.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:37.282 [info] block_id: d1b56592-0677-41de-b73e-"},{"event":"cmd_output","timestamp":1607098357,"output":"726f1b723466, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Lo"},{"event":"cmd_output","timestamp":1607098357,"output":"oper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:37.282 [info] ppl_id: 780e101c-f6e8-412d-"},{"event":"cmd_output","timestamp":1607098357,"output":"9d39-bc934d42103a, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery"},{"event":"cmd_output","timestamp":1607098357,"output":"_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:37.285 [info] "},{"event":"cmd_output","timestamp":1607098357,"output":" ppl_id: 780e101c-f6e8-412d-9d39-bc934d42103a, type: Ppls, state: pending, event: exit_scheduling, r"},{"event":"cmd_output","timestamp":1607098357,"output":"ecovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:37.286 "},{"event":"cmd_output","timestamp":1607098357,"output":"[info] block_id: d1b56592-0677-41de-b73e-726f1b723466, type: Blocks, state: done, event: exit_sched"},{"event":"cmd_output","timestamp":1607098357,"output":"uling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12"},{"event":"cmd_output","timestamp":1607098357,"output":":37.292 [info] ppl_id: 780e101c-f6e8-412d-9d39-bc934d42103a, type: Ppls, state: queuing, event: exi"},{"event":"cmd_output","timestamp":1607098357,"output":"t_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098357,"output":"\n16:12:37.293 [info] ppl_id: 1f904094-47e5-4cdb-95b8-73e75430e431, block_id: d1b56592-0677-41de-b7"},{"event":"cmd_output","timestamp":1607098357,"output":"3e-726f1b723466, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_schedulin"},{"event":"cmd_output","timestamp":1607098357,"output":"g, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:37."},{"event":"cmd_output","timestamp":1607098357,"output":"304 [info] ppl_id: 1f904094-47e5-4cdb-95b8-73e75430e431, type: Ppls, state: done, result: passed, e"},{"event":"cmd_output","timestamp":1607098357,"output":"vent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n"},{"event":"cmd_output","timestamp":1607098357,"output":"\u001b[0m\u001b[22m\n16:12:37.389 [info] block_id: b126edbc-6ada-4b3b-9318-de4feb206c20, type: Tasks, state: "},{"event":"cmd_output","timestamp":1607098357,"output":"done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098357,"output":"90), \n\u001b[0m\u001b[22m\n16:12:37.394 [info] block_id: b126edbc-6ada-4b3b-9318-de4feb206c20, type: Blocks,"},{"event":"cmd_output","timestamp":1607098357,"output":" state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_ch"},{"event":"cmd_output","timestamp":1607098357,"output":"ange/1(L90), \n\u001b[0m\u001b[22m\n16:12:37.397 [info] ppl_id: 780e101c-f6e8-412d-9d39-bc934d42103a, type: P"},{"event":"cmd_output","timestamp":1607098357,"output":"pls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_s"},{"event":"cmd_output","timestamp":1607098357,"output":"tate_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:37.402 [info] ppl_id: 20f8d23c-9481-4cf7-b60e-e5967aaa7824, "},{"event":"cmd_output","timestamp":1607098357,"output":"block_id: b126edbc-6ada-4b3b-9318-de4feb206c20, type: PplBlocks, block_index: 0, state: done, result"},{"event":"cmd_output","timestamp":1607098357,"output":": passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change"},{"event":"cmd_output","timestamp":1607098357,"output":"/1(L90), \n\u001b[0m\u001b[22m\n16:12:37.404 [info] PplBlocks WaitingState STM is scheduling block 0 from pip"},{"event":"cmd_output","timestamp":1607098357,"output":"eline: \"780e101c-f6e8-412d-9d39-bc934d42103a\"\n\u001b[0m\u001b[22m\n16:12:37.409 [info] block_id: 1a50859b-3a"},{"event":"cmd_output","timestamp":1607098357,"output":"70-4cbf-a311-c2676fb6902e, type: BlockRequests, event: persisted block run request from ppl 780e101c"},{"event":"cmd_output","timestamp":1607098357,"output":"-f6e8-412d-9d39-bc934d42103a for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQuer"},{"event":"cmd_output","timestamp":1607098357,"output":"ies.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:37.412 [info] block_id: 1a50859b-3a70-4cbf-a311-c26"},{"event":"cmd_output","timestamp":1607098357,"output":"76fb6902e, type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098357,"output":".Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:37.414 [info] Block 0 of pipeli"},{"event":"cmd_output","timestamp":1607098357,"output":"ne with id: 780e101c-f6e8-412d-9d39-bc934d42103a scheduled in block service with id: : \"1a50859b-3a7"},{"event":"cmd_output","timestamp":1607098357,"output":"0-4cbf-a311-c2676fb6902e\"\n\u001b[0m\u001b[22m\n16:12:37.417 [info] ppl_id: 780e101c-f6e8-412d-9d39-bc934d421"},{"event":"cmd_output","timestamp":1607098357,"output":"03a, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098357,"output":"gin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:37.418 [info] ppl_id: 20f8d"},{"event":"cmd_output","timestamp":1607098357,"output":"23c-9481-4cf7-b60e-e5967aaa7824, type: Ppls, state: done, result: passed, event: exit_scheduling, re"},{"event":"cmd_output","timestamp":1607098357,"output":"covery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:37.420 ["},{"event":"cmd_output","timestamp":1607098357,"output":"info] block_id: 1a50859b-3a70-4cbf-a311-c2676fb6902e, type: BlockRequests, event: persisted build a"},{"event":"cmd_output","timestamp":1607098357,"output":"nd sub_ppl details for block_request: 1a50859b-3a70-4cbf-a311-c2676fb6902e, origin: Elixir.Block.Blo"},{"event":"cmd_output","timestamp":1607098357,"output":"ckRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:37.423 [info] block_i"},{"event":"cmd_output","timestamp":1607098357,"output":"d: 1a50859b-3a70-4cbf-a311-c2676fb6902e, type: Tasks, state: pending, event: created, recovery_count"},{"event":"cmd_output","timestamp":1607098357,"output":": 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:37"},{"event":"cmd_output","timestamp":1607098357,"output":".425 [info] block_id: 1a50859b-3a70-4cbf-a311-c2676fb6902e, type: Blocks, state: running, event: ex"},{"event":"cmd_output","timestamp":1607098357,"output":"it_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098357,"output":"m\n16:12:37.439 [info] block_id: 1a50859b-3a70-4cbf-a311-c2676fb6902e, type: Tasks, state: running,"},{"event":"cmd_output","timestamp":1607098357,"output":" event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), "},{"event":"cmd_output","timestamp":1607098357,"output":"\n\u001b[0m\u001b[22m\n16:12:37.497 [info] block_id: 1a50859b-3a70-4cbf-a311-c2676fb6902e, type: Tasks, state"},{"event":"cmd_output","timestamp":1607098357,"output":": done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1"},{"event":"cmd_output","timestamp":1607098357,"output":"(L90), \n\u001b[0m\u001b[22m\n16:12:37.503 [info] block_id: 1a50859b-3a70-4cbf-a311-c2676fb6902e, type: Block"},{"event":"cmd_output","timestamp":1607098357,"output":"s, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_"},{"event":"cmd_output","timestamp":1607098357,"output":"change/1(L90), \n\u001b[0m\u001b[22m\n16:12:37.509 [info] ppl_id: 780e101c-f6e8-412d-9d39-bc934d42103a, block"},{"event":"cmd_output","timestamp":1607098357,"output":"_id: 1a50859b-3a70-4cbf-a311-c2676fb6902e, type: PplBlocks, block_index: 0, state: done, result: pas"},{"event":"cmd_output","timestamp":1607098357,"output":"sed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L9"},{"event":"cmd_output","timestamp":1607098357,"output":"0), \n\u001b[0m\u001b[22m\n16:12:37.518 [info] ppl_id: 780e101c-f6e8-412d-9d39-bc934d42103a, type: Ppls, stat"},{"event":"cmd_output","timestamp":1607098357,"output":"e: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.l"},{"event":"cmd_output","timestamp":1607098357,"output":"og_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test gRPC list_grouped() - both scopes implicit queues (141"},{"event":"cmd_output","timestamp":1607098357,"output":"0.7ms)\u001b[0m\n * test gRPC list_queues() - invalid params - both project_id and organization_id are m"},{"event":"cmd_output","timestamp":1607098357,"output":"issing\r * test gRPC list_queues() - invalid params - both project_id and organization_id are missin"},{"event":"cmd_output","timestamp":1607098357,"output":"g (skipped)\n * test describe_many returns pipeline descriptions when given valid ids\r * test desc"},{"event":"cmd_output","timestamp":1607098357,"output":"ribe_many returns pipeline descriptions when given valid ids (skipped)\n * test gRPC list_keyset() "},{"event":"cmd_output","timestamp":1607098357,"output":"- successfully walk the list in both directions\r * test gRPC list_keyset() - successfully walk the "},{"event":"cmd_output","timestamp":1607098357,"output":"list in both directions (skipped)\n * test gRPC describe(), detailed and regular - response_status."},{"event":"cmd_output","timestamp":1607098357,"output":"code = OK for scheduled ppl\u001b[22m\n16:12:37.609 [info] Periodic from module Elixir.Ppl.Ppls.STMHandl"},{"event":"cmd_output","timestamp":1607098357,"output":"er.InitializingState with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms, metri"},{"event":"cmd_output","timestamp":1607098357,"output":"c_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %{allow"},{"event":"cmd_output","timestamp":1607098357,"output":"ed_states: [\"initializing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.P"},{"event":"cmd_output","timestamp":1607098357,"output":"pls, observed_state: \"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.In"},{"event":"cmd_output","timestamp":1607098357,"output":"itializingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :stat"},{"event":"cmd_output","timestamp":1607098357,"output":"e, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098357,"output":"2m\n16:12:37.610 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingState with name Elix"},{"event":"cmd_output","timestamp":1607098357,"output":"ir.Ppl.Ppls.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-P"},{"event":"cmd_output","timestamp":1607098357,"output":"pls-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"pending\", \"queuing\", \"running\", "},{"event":"cmd_output","timestamp":1607098357,"output":"\"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publish"},{"event":"cmd_output","timestamp":1607098357,"output":"er_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, return"},{"event":"cmd_output","timestamp":1607098357,"output":"ing: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl."},{"event":"cmd_output","timestamp":1607098357,"output":"Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:12:37.610 [info] Periodic from"},{"event":"cmd_output","timestamp":1607098357,"output":" module Elixir.Ppl.Ppls.STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandler.QueuingState ::"},{"event":"cmd_output","timestamp":1607098357,"output":" period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurr"},{"event":"cmd_output","timestamp":1607098357,"output":"ing args: %{allowed_states: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, initial_query: Ppl"},{"event":"cmd_output","timestamp":1607098357,"output":".Ppls.Model.Ppls, observed_state: \"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHa"},{"event":"cmd_output","timestamp":1607098357,"output":"ndler.QueuingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :s"},{"event":"cmd_output","timestamp":1607098357,"output":"tate, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m"},{"event":"cmd_output","timestamp":1607098357,"output":"\u001b[22m\n16:12:37.610 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.RunningState with name E"},{"event":"cmd_output","timestamp":1607098357,"output":"lixir.Ppl.Ppls.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Pp"},{"event":"cmd_output","timestamp":1607098357,"output":"l-Ppls-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"]"},{"event":"cmd_output","timestamp":1607098357,"output":", cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"running\", publisher_cb:"},{"event":"cmd_output","timestamp":1607098357,"output":" #Function<0.74670282/1 in Ppl.Ppls.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: "},{"event":"cmd_output","timestamp":1607098357,"output":"[:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls."},{"event":"cmd_output","timestamp":1607098357,"output":"Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:12:37.610 [info] Periodic from modu"},{"event":"cmd_output","timestamp":1607098357,"output":"le Elixir.Ppl.Ppls.STMHandler.StoppingState with name Elixir.Ppl.Ppls.STMHandler.StoppingState :: pe"},{"event":"cmd_output","timestamp":1607098357,"output":"riod: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurrin"},{"event":"cmd_output","timestamp":1607098357,"output":"g args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model."},{"event":"cmd_output","timestamp":1607098357,"output":"Ppls, observed_state: \"stopping\", publisher_cb: #Function<0.71803493/1 in Ppl.Ppls.STMHandler.Stoppi"},{"event":"cmd_output","timestamp":1607098357,"output":"ngState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :resu"},{"event":"cmd_output","timestamp":1607098357,"output":"lt, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098357,"output":"2:37.610 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedState with name Elixi"},{"event":"cmd_output","timestamp":1607098357,"output":"r.Ppl.PplSubInits.STMHandler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", ["},{"event":"cmd_output","timestamp":1607098357,"output":"\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args: %{allowed_states: [\"fetching\", \"done\"],"},{"event":"cmd_output","timestamp":1607098357,"output":" cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"created\", p"},{"event":"cmd_output","timestamp":1607098357,"output":"ublisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :r"},{"event":"cmd_output","timestamp":1607098357,"output":"esult, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}"},{"event":"cmd_output","timestamp":1607098357,"output":"\n\u001b[0m\u001b[22m\n16:12:37.610 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.FetchingSta"},{"event":"cmd_output","timestamp":1607098357,"output":"te with name Elixir.Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 ms, metric_name: {\"Ppl.b"},{"event":"cmd_output","timestamp":1607098357,"output":"eholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %{allowed_states: ["},{"event":"cmd_output","timestamp":1607098357,"output":"\"regular_init\", \"compilation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.P"},{"event":"cmd_output","timestamp":1607098357,"output":"plSubInits, observed_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :t"},{"event":"cmd_output","timestamp":1607098357,"output":"erminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.M"},{"event":"cmd_output","timestamp":1607098357,"output":"odel.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:37.610 [info] Periodic from module Elix"},{"event":"cmd_output","timestamp":1607098357,"output":"ir.Ppl.PplSubInits.STMHandler.CompilationState with name Elixir.Ppl.PplSubInits.STMHandler.Compilati"},{"event":"cmd_output","timestamp":1607098357,"output":"onState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-Compil"},{"event":"cmd_output","timestamp":1607098357,"output":"ationState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"stopping\", \"done\"]"},{"event":"cmd_output","timestamp":1607098357,"output":", cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"compilati"},{"event":"cmd_output","timestamp":1607098357,"output":"on\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :sta"},{"event":"cmd_output","timestamp":1607098357,"output":"te, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: "},{"event":"cmd_output","timestamp":1607098357,"output":":skip}\n\u001b[0m\u001b[22m\n16:12:37.610 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.Regul"},{"event":"cmd_output","timestamp":1607098357,"output":"arInitState with name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period: 100 ms, metric_n"},{"event":"cmd_output","timestamp":1607098357,"output":"ame: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurring args: %{al"},{"event":"cmd_output","timestamp":1607098357,"output":"lowed_states: [\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, obser"},{"event":"cmd_output","timestamp":1607098357,"output":"ved_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_requ"},{"event":"cmd_output","timestamp":1607098357,"output":"est, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubIn"},{"event":"cmd_output","timestamp":1607098357,"output":"its, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:37.610 [info] Periodic from module Elixir.Ppl.PplBlo"},{"event":"cmd_output","timestamp":1607098357,"output":"cks.STMHandler.InitializingState with name Elixir.Ppl.PplBlocks.STMHandler.InitializingState :: peri"},{"event":"cmd_output","timestamp":1607098357,"output":"od: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-InitializingState\"]}, r"},{"event":"cmd_output","timestamp":1607098357,"output":"ecurring args: %{allowed_states: [\"initializing\", \"waiting\", \"done\"], cooling_time_sec: 0, initial_q"},{"event":"cmd_output","timestamp":1607098357,"output":"uery: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Ppl."},{"event":"cmd_output","timestamp":1607098357,"output":"EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_i"},{"event":"cmd_output","timestamp":1607098357,"output":"d, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:3"},{"event":"cmd_output","timestamp":1607098357,"output":"7.611 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.WaitingState with name Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098357,"output":".PplBlocks.STMHandler.WaitingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-P"},{"event":"cmd_output","timestamp":1607098357,"output":"plBlocks-STMHandler-WaitingState\"]}, recurring args: %{allowed_states: [\"waiting\", \"running\", \"done\""},{"event":"cmd_output","timestamp":1607098357,"output":"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"waiting\", pub"},{"event":"cmd_output","timestamp":1607098357,"output":"lisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>, repo: Ppl.EctoRep"},{"event":"cmd_output","timestamp":1607098357,"output":"o, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :blo"},{"event":"cmd_output","timestamp":1607098357,"output":"ck_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:37.611 ["},{"event":"cmd_output","timestamp":1607098357,"output":"info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.RunningState with name Elixir.Ppl.PplBlo"},{"event":"cmd_output","timestamp":1607098357,"output":"cks.STMHandler.RunningState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlock"},{"event":"cmd_output","timestamp":1607098357,"output":"s-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], coo"},{"event":"cmd_output","timestamp":1607098357,"output":"ling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"running\", publishe"},{"event":"cmd_output","timestamp":1607098357,"output":"r_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, r"},{"event":"cmd_output","timestamp":1607098357,"output":"eturning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_i"},{"event":"cmd_output","timestamp":1607098357,"output":"ndex, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:3"},{"event":"cmd_output","timestamp":1607098357,"output":"7.611 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.StoppingState with name Elixir.Pp"},{"event":"cmd_output","timestamp":1607098357,"output":"l.PplBlocks.STMHandler.StoppingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl"},{"event":"cmd_output","timestamp":1607098357,"output":"-PplBlocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cool"},{"event":"cmd_output","timestamp":1607098357,"output":"ing_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"stopping\", publishe"},{"event":"cmd_output","timestamp":1607098357,"output":"r_cb: #Function<0.104215991/1 in Ppl.PplBlocks.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo,"},{"event":"cmd_output","timestamp":1607098357,"output":" returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block"},{"event":"cmd_output","timestamp":1607098357,"output":"_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12"},{"event":"cmd_output","timestamp":1607098357,"output":":37.611 [info] Periodic from module Elixir.Block.Blocks.STMHandler.InitializingState with name Elix"},{"event":"cmd_output","timestamp":1607098357,"output":"ir.Block.Blocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\""},{"event":"cmd_output","timestamp":1607098357,"output":", [\"Block-Blocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"running\", \"don"},{"event":"cmd_output","timestamp":1607098357,"output":"e\"], cooling_time_sec: 0, initial_query: Block.Blocks.Model.Blocks, observed_state: \"initializing\", "},{"event":"cmd_output","timestamp":1607098357,"output":"publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state,"},{"event":"cmd_output","timestamp":1607098357,"output":" :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098357,"output":"\n16:12:37.611 [info] Periodic from module Elixir.Block.Blocks.STMHandler.RunningState with name Eli"},{"event":"cmd_output","timestamp":1607098357,"output":"xir.Block.Blocks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\""},{"event":"cmd_output","timestamp":1607098357,"output":"Block-Blocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \""},{"event":"cmd_output","timestamp":1607098357,"output":"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"running\", p"},{"event":"cmd_output","timestamp":1607098357,"output":"ublisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, "},{"event":"cmd_output","timestamp":1607098357,"output":":recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098357,"output":"16:12:37.611 [info] Periodic from module Elixir.Block.Blocks.STMHandler.StoppingState with name Eli"},{"event":"cmd_output","timestamp":1607098357,"output":"xir.Block.Blocks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", ["},{"event":"cmd_output","timestamp":1607098357,"output":"\"Block-Blocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], c"},{"event":"cmd_output","timestamp":1607098357,"output":"ooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"stopping\", publisher"},{"event":"cmd_output","timestamp":1607098357,"output":"_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recover"},{"event":"cmd_output","timestamp":1607098357,"output":"y_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:37"},{"event":"cmd_output","timestamp":1607098357,"output":".611 [info] Periodic from module Elixir.Block.Tasks.STMHandler.PendingState with name Elixir.Block."},{"event":"cmd_output","timestamp":1607098357,"output":"Tasks.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks"},{"event":"cmd_output","timestamp":1607098357,"output":"-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec"},{"event":"cmd_output","timestamp":1607098357,"output":": 0, initial_query: Block.Tasks.Model.Tasks, observed_state: \"pending\", publisher_cb: :skip, repo: B"},{"event":"cmd_output","timestamp":1607098357,"output":"lock.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id,"},{"event":"cmd_output","timestamp":1607098357,"output":" :build_request_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:37.6"},{"event":"cmd_output","timestamp":1607098357,"output":"11 [info] Periodic from module Elixir.Block.Tasks.STMHandler.RunningState with name Elixir.Block.Ta"},{"event":"cmd_output","timestamp":1607098357,"output":"sks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-S"},{"event":"cmd_output","timestamp":1607098357,"output":"TMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], coolin"},{"event":"cmd_output","timestamp":1607098357,"output":"g_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"running\", publisher_cb: :sk"},{"event":"cmd_output","timestamp":1607098357,"output":"ip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count,"},{"event":"cmd_output","timestamp":1607098357,"output":" :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:37.611 [info"},{"event":"cmd_output","timestamp":1607098357,"output":"] Periodic from module Elixir.Block.Tasks.STMHandler.StoppingState with name Elixir.Block.Tasks.STM"},{"event":"cmd_output","timestamp":1607098357,"output":"Handler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHand"},{"event":"cmd_output","timestamp":1607098357,"output":"ler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, "},{"event":"cmd_output","timestamp":1607098357,"output":"initial_query: Block.Tasks.Model.Tasks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block"},{"event":"cmd_output","timestamp":1607098357,"output":".EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], sc"},{"event":"cmd_output","timestamp":1607098357,"output":"hema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:37.614 [info] Request: 'ru"},{"event":"cmd_output","timestamp":1607098357,"output":"n: %{\"branch_id\" => \"ceb50a06-41e0-40da-92ba-d771950c18c9\", \"branch_name\" => \"master\", \"commit_sha\" "},{"event":"cmd_output","timestamp":1607098357,"output":"=> \"75891a4469\", \"file_name\" => \"semaphore.yml\", \"hook_id\" => \"86c03a06-364b-11eb-b5c7-5254005464e2\""},{"event":"cmd_output","timestamp":1607098357,"output":", \"label\" => \"master\", \"organization_id\" => \"4825294d-6c2a-4c6b-b387-9ab24e835d19\", \"owner\" => \"rt\","},{"event":"cmd_output","timestamp":1607098357,"output":" \"project_id\" => \"bf15b508-a3ba-46a6-afbf-740397029ff9\", \"repo_name\" => \"2_basic\", \"request_token\" ="},{"event":"cmd_output","timestamp":1607098357,"output":"> \"86c0334e-364b-11eb-906c-5254005464e2\", \"requester_id\" => \"e5615f35-f6ee-4577-bb7c-3a65c2befb2f\", "},{"event":"cmd_output","timestamp":1607098357,"output":"\"service\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"ca32"},{"event":"cmd_output","timestamp":1607098357,"output":"cbaf-10ae-4376-8ec5-284dd304bb75\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:12:37.626 [info] p"},{"event":"cmd_output","timestamp":1607098357,"output":"pl_id: 8e079f64-d49f-485a-9b1a-3e6e972b653e, type: PplRequests, event: persisted schedule request wi"},{"event":"cmd_output","timestamp":1607098357,"output":"th request_token: 86c0334e-364b-11eb-906c-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequ"},{"event":"cmd_output","timestamp":1607098357,"output":"estsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:37.627 [info] ppl_id: 8e079f64-d49f-485a-9b"},{"event":"cmd_output","timestamp":1607098357,"output":"1a-3e6e972b653e, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098357,"output":"ixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:37.632 [info] Project "},{"event":"cmd_output","timestamp":1607098357,"output":"bf15b508-a3ba-46a6-afbf-740397029ff9 and branch masterlatest_wf details updated: \"wf_id: ca32cbaf-10"},{"event":"cmd_output","timestamp":1607098357,"output":"ae-4376-8ec5-284dd304bb75, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:12:37.634 [info] Persisted ppl_sub_init for"},{"event":"cmd_output","timestamp":1607098357,"output":" pipeline with ppl_id: 8e079f64-d49f-485a-9b1a-3e6e972b653e: %Ppl.PplSubInits.Model.PplSubInits{__me"},{"event":"cmd_output","timestamp":1607098357,"output":"ta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description:"},{"event":"cmd_output","timestamp":1607098357,"output":" nil, id: 242, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:37.63291"},{"event":"cmd_output","timestamp":1607098357,"output":"8], pipeline_requests: #Ecto.Association.NotLoaded, pp"},{"event":"cmd_output","timestamp":1607098357,"output":"l_id: \"8e079f64-d49f-485a-9b1a-3e6e972b653e\", recovery_count: 0, result: nil, result_reason: nil, st"},{"event":"cmd_output","timestamp":1607098357,"output":"ate: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12"},{"event":"cmd_output","timestamp":1607098357,"output":":37.632925]}\n\u001b[0m\u001b[22m\n16:12:37.644 [info] ppl_id: 8e079f64-d49f-485a-9b1a-3e6e972b653e, type: Pp"},{"event":"cmd_output","timestamp":1607098357,"output":"lRequests, event: persisted source_args for pipeline: 8e079f64-d49f-485a-9b1a-3e6e972b653e, origin: "},{"event":"cmd_output","timestamp":1607098357,"output":"Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:37.646 [inf"},{"event":"cmd_output","timestamp":1607098357,"output":"o] ppl_id: 8e079f64-d49f-485a-9b1a-3e6e972b653e, type: PplSubInits, state: fetching, event: exit_sc"},{"event":"cmd_output","timestamp":1607098357,"output":"heduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098357,"output":":12:37.659 [info] ppl_id: 8e079f64-d49f-485a-9b1a-3e6e972b653e, type: PplSubInits, state: regular_i"},{"event":"cmd_output","timestamp":1607098357,"output":"nit, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L9"},{"event":"cmd_output","timestamp":1607098357,"output":"0), \n\u001b[0m\u001b[22m\n16:12:37.676 [info] ppl_id: 8e079f64-d49f-485a-9b1a-3e6e972b653e, type: PplRequest"},{"event":"cmd_output","timestamp":1607098357,"output":"s, event: persisted definition for request with request_token: 86c0334e-364b-11eb-906c-5254005464e2,"},{"event":"cmd_output","timestamp":1607098357,"output":" origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098357,"output":"2:37.680 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:lo"},{"event":"cmd_output","timestamp":1607098357,"output":"aded, \"queues\">, inserted_at: ~N[2020-12-04 16:12:37.679394], name: \"master-.semaphore/semaphore.yml"},{"event":"cmd_output","timestamp":1607098357,"output":"\", organization_id: \"4825294d-6c2a-4c6b-b387-9ab24e835d19\", project_id: \"bf15b508-a3ba-46a6-afbf-740"},{"event":"cmd_output","timestamp":1607098357,"output":"397029ff9\", queue_id: \"faa1b390-9199-4f7c-8e02-df16930c54a1\", scope: \"project\", updated_at: ~N[2020-"},{"event":"cmd_output","timestamp":1607098357,"output":"12-04 16:12:37.679402], user_generated: false}}\n\u001b[0m\u001b[22m\n16:12:37.683 [info] event: created, ori"},{"event":"cmd_output","timestamp":1607098357,"output":"gin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:37.683 ["},{"event":"cmd_output","timestamp":1607098357,"output":"info] ppl_id: 8e079f64-d49f-485a-9b1a-3e6e972b653e, type: PplBlocks, block_index: 0, state: initial"},{"event":"cmd_output","timestamp":1607098357,"output":"izing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState"},{"event":"cmd_output","timestamp":1607098357,"output":".all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:37.685 [info] ppl_id: 8e079f64-d49f-485a-9b1a-3e6e972b653e, ty"},{"event":"cmd_output","timestamp":1607098357,"output":"pe: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098357,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:37.691 [info] ppl_id: 8e079f64-d49f"},{"event":"cmd_output","timestamp":1607098357,"output":"-485a-9b1a-3e6e972b653e, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098357,"output":"in: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:37.693 [info] ppl_id: 8e079f"},{"event":"cmd_output","timestamp":1607098357,"output":"64-d49f-485a-9b1a-3e6e972b653e, type: PplBlocks, block_index: 0, state: waiting, event: exit_schedul"},{"event":"cmd_output","timestamp":1607098357,"output":"ing, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:3"},{"event":"cmd_output","timestamp":1607098357,"output":"7.703 [info] ppl_id: 8e079f64-d49f-485a-9b1a-3e6e972b653e, type: Ppls, state: queuing, event: exit_"},{"event":"cmd_output","timestamp":1607098357,"output":"scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098357,"output":"16:12:37.710 [info] ppl_id: 8e079f64-d49f-485a-9b1a-3e6e972b653e, type: Ppls, state: running, event"},{"event":"cmd_output","timestamp":1607098357,"output":": exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098357,"output":"\u001b[22m\n16:12:37.717 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"8e079f6"},{"event":"cmd_output","timestamp":1607098357,"output":"4-d49f-485a-9b1a-3e6e972b653e\"\n\u001b[0m\u001b[22m\n16:12:37.725 [info] block_id: 6b536260-0718-4629-b24e-15"},{"event":"cmd_output","timestamp":1607098357,"output":"f19daa28a1, type: BlockRequests, event: persisted block run request from ppl 8e079f64-d49f-485a-9b1a"},{"event":"cmd_output","timestamp":1607098357,"output":"-3e6e972b653e for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_res"},{"event":"cmd_output","timestamp":1607098357,"output":"ponse/4(L35), \n\u001b[0m\u001b[22m\n16:12:37.727 [info] block_id: 6b536260-0718-4629-b24e-15f19daa28a1, type"},{"event":"cmd_output","timestamp":1607098357,"output":": Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.M"},{"event":"cmd_output","timestamp":1607098357,"output":"odel.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:37.729 [info] Block 0 of pipeline with id: 8e0"},{"event":"cmd_output","timestamp":1607098357,"output":"79f64-d49f-485a-9b1a-3e6e972b653e scheduled in block service with id: : \"6b536260-0718-4629-b24e-15f"},{"event":"cmd_output","timestamp":1607098357,"output":"19daa28a1\"\n\u001b[0m\u001b[22m\n16:12:37.732 [info] ppl_id: 8e079f64-d49f-485a-9b1a-3e6e972b653e, type: PplB"},{"event":"cmd_output","timestamp":1607098357,"output":"locks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loo"},{"event":"cmd_output","timestamp":1607098357,"output":"per.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:37.733 [info] block_id: 6b536260-0718-4629"},{"event":"cmd_output","timestamp":1607098357,"output":"-b24e-15f19daa28a1, type: BlockRequests, event: persisted build and sub_ppl details for block_reques"},{"event":"cmd_output","timestamp":1607098357,"output":"t: 6b536260-0718-4629-b24e-15f19daa28a1, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueri"},{"event":"cmd_output","timestamp":1607098357,"output":"es.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:37.736 [info] block_id: 6b536260-0718-4629-b24e-15f19daa"},{"event":"cmd_output","timestamp":1607098357,"output":"28a1, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.ST"},{"event":"cmd_output","timestamp":1607098357,"output":"MHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:37.738 [info] block_id: 6b536260-071"},{"event":"cmd_output","timestamp":1607098357,"output":"8-4629-b24e-15f19daa28a1, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098357,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:37.749 [info] block_id: 6"},{"event":"cmd_output","timestamp":1607098357,"output":"b536260-0718-4629-b24e-15f19daa28a1, type: Tasks, state: running, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098357,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:37.827 [info] b"},{"event":"cmd_output","timestamp":1607098357,"output":"lock_id: 6b536260-0718-4629-b24e-15f19daa28a1, type: Tasks, state: done, event: exit_scheduling, rec"},{"event":"cmd_output","timestamp":1607098357,"output":"overy_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:37.833 [i"},{"event":"cmd_output","timestamp":1607098357,"output":"nfo] block_id: 6b536260-0718-4629-b24e-15f19daa28a1, type: Blocks, state: done, event: exit_schedul"},{"event":"cmd_output","timestamp":1607098357,"output":"ing, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:3"},{"event":"cmd_output","timestamp":1607098357,"output":"7.848 [info] ppl_id: 8e079f64-d49f-485a-9b1a-3e6e972b653e, block_id: 6b536260-0718-4629-b24e-15f19d"},{"event":"cmd_output","timestamp":1607098357,"output":"aa28a1, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, recove"},{"event":"cmd_output","timestamp":1607098357,"output":"ry_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:37.857 [info"},{"event":"cmd_output","timestamp":1607098357,"output":"] ppl_id: 8e079f64-d49f-485a-9b1a-3e6e972b653e, type: Ppls, state: done, result: passed, event: exi"},{"event":"cmd_output","timestamp":1607098357,"output":"t_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m"},{"event":"cmd_output","timestamp":1607098357,"output":"\r * test gRPC describe(), detailed and regular - response_status.code = OK for scheduled ppl (416.1"},{"event":"cmd_output","timestamp":1607098357,"output":"ms)\u001b[0m\n * test gRPC list_queues() - invalid params - no 'type' param\r * test gRPC list_queues() "},{"event":"cmd_output","timestamp":1607098357,"output":"- invalid params - no 'type' param (skipped)\n * test gRPC list() - filter by created(done)_before("},{"event":"cmd_output","timestamp":1607098358,"output":"after) timestamps\u001b[22m\n16:12:38.008 [info] Request: 'run: %{\"branch_id\" => \"20bc5869-1014-4868-985"},{"event":"cmd_output","timestamp":1607098358,"output":"7-e7df7089968c\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"semaphore."},{"event":"cmd_output","timestamp":1607098358,"output":"yml\", \"hook_id\" => \"86fc6db4-364b-11eb-ad76-5254005464e2\", \"label\" => \"master\", \"organization_id\" =>"},{"event":"cmd_output","timestamp":1607098358,"output":" \"d3155e3e-c01c-4537-836a-ea00585e77ff\", \"owner\" => \"rt\", \"project_id\" => \"123\", \"repo_name\" => \"2_b"},{"event":"cmd_output","timestamp":1607098358,"output":"asic\", \"request_token\" => \"86fc6620-364b-11eb-abf7-5254005464e2\", \"requester_id\" => \"c35120fb-0019-4"},{"event":"cmd_output","timestamp":1607098358,"output":"5bf-9eaf-22f1030ffce4\", \"service\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_se"},{"event":"cmd_output","timestamp":1607098358,"output":"cret\"], \"wf_id\" => \"2ae07f92-35fa-49d9-947a-b0b19c47fe9b\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098358,"output":"\n16:12:38.010 [info] ppl_id: 9190717e-700a-4a0c-a5ee-8eba640d6073, type: PplRequests, event: persi"},{"event":"cmd_output","timestamp":1607098358,"output":"sted schedule request with request_token: 86fc6620-364b-11eb-abf7-5254005464e2, origin: Elixir.Ppl.P"},{"event":"cmd_output","timestamp":1607098358,"output":"plRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:38.012 [info] ppl_i"},{"event":"cmd_output","timestamp":1607098358,"output":"d: 9190717e-700a-4a0c-a5ee-8eba640d6073, type: Ppls, state: initializing, event: initializing, recov"},{"event":"cmd_output","timestamp":1607098358,"output":"ery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12"},{"event":"cmd_output","timestamp":1607098358,"output":":38.016 [info] Project 123 and branch masterlatest_wf details updated: \"wf_id: 2ae07f92-35fa-49d9-9"},{"event":"cmd_output","timestamp":1607098358,"output":"47a-b0b19c47fe9b, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:12:38.017 [info] Persisted ppl_sub_init for pipeline"},{"event":"cmd_output","timestamp":1607098358,"output":" with ppl_id: 9190717e-700a-4a0c-a5ee-8eba640d6073: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ec"},{"event":"cmd_output","timestamp":1607098358,"output":"to.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id:"},{"event":"cmd_output","timestamp":1607098358,"output":" 243, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:38.016469], pipel"},{"event":"cmd_output","timestamp":1607098358,"output":"ine_requests: #Ecto.Association.NotLoaded, ppl_id: \"91"},{"event":"cmd_output","timestamp":1607098358,"output":"90717e-700a-4a0c-a5ee-8eba640d6073\", recovery_count: 0, result: nil, result_reason: nil, state: \"cre"},{"event":"cmd_output","timestamp":1607098358,"output":"ated\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:38.01647"},{"event":"cmd_output","timestamp":1607098358,"output":"5]}\n\u001b[0m\u001b[22m\n16:12:38.022 [info] Request: 'run: %{\"branch_id\" => \"20a6164a-c55c-4e49-8c72-e7db12"},{"event":"cmd_output","timestamp":1607098358,"output":"06adac\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"semaphore.yml\", \"h"},{"event":"cmd_output","timestamp":1607098358,"output":"ook_id\" => \"86fea80e-364b-11eb-99a7-5254005464e2\", \"label\" => \"master\", \"organization_id\" => \"d45059"},{"event":"cmd_output","timestamp":1607098358,"output":"45-f7c6-4d81-8587-6e919b669ed9\", \"owner\" => \"rt\", \"project_id\" => \"123\", \"repo_name\" => \"2_basic\", \""},{"event":"cmd_output","timestamp":1607098358,"output":"request_token\" => \"86fe9ef4-364b-11eb-b4b7-5254005464e2\", \"requester_id\" => \"a3d6c356-6f68-4b1b-9238"},{"event":"cmd_output","timestamp":1607098358,"output":"-431a8f03435f\", \"service\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], "},{"event":"cmd_output","timestamp":1607098358,"output":"\"wf_id\" => \"7a802937-5b85-4e25-9d3a-e5b7c0964a73\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:12:"},{"event":"cmd_output","timestamp":1607098358,"output":"38.030 [info] ppl_id: 89b877a9-e650-408b-ab2b-bea08c2f013c, type: PplRequests, event: persisted sch"},{"event":"cmd_output","timestamp":1607098358,"output":"edule request with request_token: 86fe9ef4-364b-11eb-b4b7-5254005464e2, origin: Elixir.Ppl.PplReques"},{"event":"cmd_output","timestamp":1607098358,"output":"ts.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:38.032 [info] ppl_id: 89b87"},{"event":"cmd_output","timestamp":1607098358,"output":"7a9-e650-408b-ab2b-bea08c2f013c, type: Ppls, state: initializing, event: initializing, recovery_coun"},{"event":"cmd_output","timestamp":1607098358,"output":"t: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:38.033 "},{"event":"cmd_output","timestamp":1607098358,"output":"[info] Project 123 and branch masterlatest_wf details updated: \"wf_id: 7a802937-5b85-4e25-9d3a-e5b7"},{"event":"cmd_output","timestamp":1607098358,"output":"c0964a73, wf_number: 2\"\n\u001b[0m\u001b[22m\n16:12:38.034 [info] Persisted ppl_sub_init for pipeline with pp"},{"event":"cmd_output","timestamp":1607098358,"output":"l_id: 89b877a9-e650-408b-ab2b-bea08c2f013c: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schem"},{"event":"cmd_output","timestamp":1607098358,"output":"a.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 244, in"},{"event":"cmd_output","timestamp":1607098358,"output":"_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:38.033672], pipeline_requ"},{"event":"cmd_output","timestamp":1607098358,"output":"ests: #Ecto.Association.NotLoaded, ppl_id: \"89b877a9-e"},{"event":"cmd_output","timestamp":1607098358,"output":"650-408b-ab2b-bea08c2f013c\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", t"},{"event":"cmd_output","timestamp":1607098358,"output":"erminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:38.033677]}\n\u001b[0"},{"event":"cmd_output","timestamp":1607098358,"output":"m\u001b[22m\n16:12:38.036 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingState with "},{"event":"cmd_output","timestamp":1607098358,"output":"name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wak"},{"event":"cmd_output","timestamp":1607098358,"output":"e_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\""},{"event":"cmd_output","timestamp":1607098358,"output":", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"init"},{"event":"cmd_output","timestamp":1607098358,"output":"ializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, r"},{"event":"cmd_output","timestamp":1607098358,"output":"epo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_coun"},{"event":"cmd_output","timestamp":1607098358,"output":"t, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:38.036 [info] P"},{"event":"cmd_output","timestamp":1607098358,"output":"eriodic from module Elixir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler.Pen"},{"event":"cmd_output","timestamp":1607098358,"output":"dingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingStat"},{"event":"cmd_output","timestamp":1607098358,"output":"e\"]}, recurring args: %{allowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_sec:"},{"event":"cmd_output","timestamp":1607098358,"output":" 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publisher_cb: #Function<0.8493005"},{"event":"cmd_output","timestamp":1607098358,"output":"/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_requ"},{"event":"cmd_output","timestamp":1607098358,"output":"est, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supe"},{"event":"cmd_output","timestamp":1607098358,"output":"rvisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:12:38.036 [info] Periodic from module Elixir.Ppl.Ppls.ST"},{"event":"cmd_output","timestamp":1607098358,"output":"MHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, metric_na"},{"event":"cmd_output","timestamp":1607098358,"output":"me: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{allowed_states"},{"event":"cmd_output","timestamp":1607098358,"output":": [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed"},{"event":"cmd_output","timestamp":1607098358,"output":"_state: \"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.args/0>"},{"event":"cmd_output","timestamp":1607098358,"output":", repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_c"},{"event":"cmd_output","timestamp":1607098358,"output":"ount, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:38.037 [info]"},{"event":"cmd_output","timestamp":1607098358,"output":" Periodic from module Elixir.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHandler."},{"event":"cmd_output","timestamp":1607098358,"output":"RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-RunningS"},{"event":"cmd_output","timestamp":1607098358,"output":"tate\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, in"},{"event":"cmd_output","timestamp":1607098358,"output":"itial_query: Ppl.Ppls.Model.Ppls, observed_state: \"running\", publisher_cb: #Function<0.74670282/1 in"},{"event":"cmd_output","timestamp":1607098358,"output":" Ppl.Ppls.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, "},{"event":"cmd_output","timestamp":1607098358,"output":":updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_superviso"},{"event":"cmd_output","timestamp":1607098358,"output":"r: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:12:38.037 [info] Periodic from module Elixir.Ppl.Ppls.STMHand"},{"event":"cmd_output","timestamp":1607098358,"output":"ler.StoppingState with name Elixir.Ppl.Ppls.STMHandler.StoppingState :: period: 100 ms, metric_name:"},{"event":"cmd_output","timestamp":1607098358,"output":" {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: "},{"event":"cmd_output","timestamp":1607098358,"output":"[\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"sto"},{"event":"cmd_output","timestamp":1607098358,"output":"pping\", publisher_cb: #Function<0.71803493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, repo: Ppl"},{"event":"cmd_output","timestamp":1607098358,"output":".EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_"},{"event":"cmd_output","timestamp":1607098358,"output":"id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:38.037 [info] Periodic "},{"event":"cmd_output","timestamp":1607098358,"output":"from module Elixir.Ppl.PplSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHandl"},{"event":"cmd_output","timestamp":1607098358,"output":"er.CreatedState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandle"},{"event":"cmd_output","timestamp":1607098358,"output":"r-CreatedState\"]}, recurring args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, init"},{"event":"cmd_output","timestamp":1607098358,"output":"ial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip, repo: "},{"event":"cmd_output","timestamp":1607098358,"output":"Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :p"},{"event":"cmd_output","timestamp":1607098358,"output":"pl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:38.037 "},{"event":"cmd_output","timestamp":1607098358,"output":"[info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl.Pp"},{"event":"cmd_output","timestamp":1607098358,"output":"lSubInits.STMHandler.FetchingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Pp"},{"event":"cmd_output","timestamp":1607098358,"output":"lSubInits-STMHandler-FetchingState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilati"},{"event":"cmd_output","timestamp":1607098358,"output":"on\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state"},{"event":"cmd_output","timestamp":1607098358,"output":": \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated"},{"event":"cmd_output","timestamp":1607098358,"output":"_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_sup"},{"event":"cmd_output","timestamp":1607098358,"output":"ervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:38.037 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHand"},{"event":"cmd_output","timestamp":1607098358,"output":"ler.CompilationState with name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 100 ms,"},{"event":"cmd_output","timestamp":1607098358,"output":" metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurring a"},{"event":"cmd_output","timestamp":1607098358,"output":"rgs: %{allowed_states: [\"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2, in"},{"event":"cmd_output","timestamp":1607098358,"output":"itial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"compilation\", publisher_cb: :skip, "},{"event":"cmd_output","timestamp":1607098358,"output":"repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_cou"},{"event":"cmd_output","timestamp":1607098358,"output":"nt, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:3"},{"event":"cmd_output","timestamp":1607098358,"output":"8.037 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with name Elix"},{"event":"cmd_output","timestamp":1607098358,"output":"ir.Ppl.PplSubInits.STMHandler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_u"},{"event":"cmd_output","timestamp":1607098358,"output":"p\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurring args: %{allowed_states: [\"done\"], co"},{"event":"cmd_output","timestamp":1607098358,"output":"oling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_init\","},{"event":"cmd_output","timestamp":1607098358,"output":" publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, "},{"event":"cmd_output","timestamp":1607098358,"output":":result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :ski"},{"event":"cmd_output","timestamp":1607098358,"output":"p}\n\u001b[0m\u001b[22m\n16:12:38.038 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.Initializin"},{"event":"cmd_output","timestamp":1607098358,"output":"gState with name Elixir.Ppl.PplBlocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {"},{"event":"cmd_output","timestamp":1607098358,"output":"\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_s"},{"event":"cmd_output","timestamp":1607098358,"output":"tates: [\"initializing\", \"waiting\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model."},{"event":"cmd_output","timestamp":1607098358,"output":"PplBlocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id,"},{"event":"cmd_output","timestamp":1607098358,"output":" :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: "},{"event":"cmd_output","timestamp":1607098358,"output":"Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:38.038 [info] Periodic fro"},{"event":"cmd_output","timestamp":1607098358,"output":"m module Elixir.Ppl.PplBlocks.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler.Wait"},{"event":"cmd_output","timestamp":1607098358,"output":"ingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-Waitin"},{"event":"cmd_output","timestamp":1607098358,"output":"gState\"]}, recurring args: %{allowed_states: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 0, in"},{"event":"cmd_output","timestamp":1607098358,"output":"itial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"waiting\", publisher_cb: #Function<0.897"},{"event":"cmd_output","timestamp":1607098358,"output":"5022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :termi"},{"event":"cmd_output","timestamp":1607098358,"output":"nate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098358,"output":"Blocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:38.038 [info] Periodic from modul"},{"event":"cmd_output","timestamp":1607098358,"output":"e Elixir.Ppl.PplBlocks.STMHandler.RunningState with name Elixir.Ppl.PplBlocks.STMHandler.RunningStat"},{"event":"cmd_output","timestamp":1607098358,"output":"e :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningState\""},{"event":"cmd_output","timestamp":1607098358,"output":"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial"},{"event":"cmd_output","timestamp":1607098358,"output":"_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"running\", publisher_cb: #Function<0.28166834"},{"event":"cmd_output","timestamp":1607098358,"output":"/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate"},{"event":"cmd_output","timestamp":1607098358,"output":"_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: "},{"event":"cmd_output","timestamp":1607098358,"output":"Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:38.038 [info] Periodic fro"},{"event":"cmd_output","timestamp":1607098358,"output":"m module Elixir.Ppl.PplBlocks.STMHandler.StoppingState with name Elixir.Ppl.PplBlocks.STMHandler.Sto"},{"event":"cmd_output","timestamp":1607098358,"output":"ppingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-Stop"},{"event":"cmd_output","timestamp":1607098358,"output":"pingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_"},{"event":"cmd_output","timestamp":1607098358,"output":"query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"stopping\", publisher_cb: #Function<0.10421599"},{"event":"cmd_output","timestamp":1607098358,"output":"1/1 in Ppl.PplBlocks.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :termina"},{"event":"cmd_output","timestamp":1607098358,"output":"te_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema"},{"event":"cmd_output","timestamp":1607098358,"output":": Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:38.039 [info] Periodic f"},{"event":"cmd_output","timestamp":1607098358,"output":"rom module Elixir.Block.Blocks.STMHandler.InitializingState with name Elixir.Block.Blocks.STMHandler"},{"event":"cmd_output","timestamp":1607098358,"output":".InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandle"},{"event":"cmd_output","timestamp":1607098358,"output":"r-InitializingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, "},{"event":"cmd_output","timestamp":1607098358,"output":"initial_query: Block.Blocks.Model.Blocks, observed_state: \"initializing\", publisher_cb: :skip, repo:"},{"event":"cmd_output","timestamp":1607098358,"output":" Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_i"},{"event":"cmd_output","timestamp":1607098358,"output":"d], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:38.039 [info] Peri"},{"event":"cmd_output","timestamp":1607098358,"output":"odic from module Elixir.Block.Blocks.STMHandler.RunningState with name Elixir.Block.Blocks.STMHandle"},{"event":"cmd_output","timestamp":1607098358,"output":"r.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-Ru"},{"event":"cmd_output","timestamp":1607098358,"output":"nningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: "},{"event":"cmd_output","timestamp":1607098358,"output":"-2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"running\", publisher_cb: :skip, repo: "},{"event":"cmd_output","timestamp":1607098358,"output":"Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id"},{"event":"cmd_output","timestamp":1607098358,"output":"], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:38.039 [info] Perio"},{"event":"cmd_output","timestamp":1607098358,"output":"dic from module Elixir.Block.Blocks.STMHandler.StoppingState with name Elixir.Block.Blocks.STMHandle"},{"event":"cmd_output","timestamp":1607098358,"output":"r.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-S"},{"event":"cmd_output","timestamp":1607098358,"output":"toppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initi"},{"event":"cmd_output","timestamp":1607098358,"output":"al_query: Block.Blocks.Model.Blocks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.Ec"},{"event":"cmd_output","timestamp":1607098358,"output":"toRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schem"},{"event":"cmd_output","timestamp":1607098358,"output":"a: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:38.039 [info] Periodic from"},{"event":"cmd_output","timestamp":1607098358,"output":" module Elixir.Block.Tasks.STMHandler.PendingState with name Elixir.Block.Tasks.STMHandler.PendingSt"},{"event":"cmd_output","timestamp":1607098358,"output":"ate :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingState\"]"},{"event":"cmd_output","timestamp":1607098358,"output":"}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block."},{"event":"cmd_output","timestamp":1607098358,"output":"Tasks.Model.Tasks, observed_state: \"pending\", publisher_cb: :skip, repo: Block.EctoRepo, returning: "},{"event":"cmd_output","timestamp":1607098358,"output":"[:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id, :build_request_id], schem"},{"event":"cmd_output","timestamp":1607098358,"output":"a: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:38.039 [info] Periodic from m"},{"event":"cmd_output","timestamp":1607098358,"output":"odule Elixir.Block.Tasks.STMHandler.RunningState with name Elixir.Block.Tasks.STMHandler.RunningStat"},{"event":"cmd_output","timestamp":1607098358,"output":"e :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningState\"]},"},{"event":"cmd_output","timestamp":1607098358,"output":" recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_qu"},{"event":"cmd_output","timestamp":1607098358,"output":"ery: Block.Tasks.Model.Tasks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, "},{"event":"cmd_output","timestamp":1607098358,"output":"returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block"},{"event":"cmd_output","timestamp":1607098358,"output":".Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:38.040 [info] Periodic from module El"},{"event":"cmd_output","timestamp":1607098358,"output":"ixir.Block.Tasks.STMHandler.StoppingState with name Elixir.Block.Tasks.STMHandler.StoppingState :: p"},{"event":"cmd_output","timestamp":1607098358,"output":"eriod: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]}, recu"},{"event":"cmd_output","timestamp":1607098358,"output":"rring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks"},{"event":"cmd_output","timestamp":1607098358,"output":".Model.Tasks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id"},{"event":"cmd_output","timestamp":1607098358,"output":", :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Ta"},{"event":"cmd_output","timestamp":1607098358,"output":"sks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:38.151 [info] ppl_id: 9190717e-700a-4a0c-a5ee-8eba64"},{"event":"cmd_output","timestamp":1607098358,"output":"0d6073, type: PplRequests, event: persisted source_args for pipeline: 9190717e-700a-4a0c-a5ee-8eba64"},{"event":"cmd_output","timestamp":1607098358,"output":"0d6073, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098358,"output":"6:12:38.152 [info] ppl_id: 9190717e-700a-4a0c-a5ee-8eba640d6073, type: PplSubInits, state: fetching"},{"event":"cmd_output","timestamp":1607098358,"output":", event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90),"},{"event":"cmd_output","timestamp":1607098358,"output":" \n\u001b[0m\u001b[22m\n16:12:38.164 [info] ppl_id: 9190717e-700a-4a0c-a5ee-8eba640d6073, type: PplSubInits, "},{"event":"cmd_output","timestamp":1607098358,"output":"state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_s"},{"event":"cmd_output","timestamp":1607098358,"output":"tate_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:38.182 [info] ppl_id: 9190717e-700a-4a0c-a5ee-8eba640d6073, "},{"event":"cmd_output","timestamp":1607098358,"output":"type: PplRequests, event: persisted definition for request with request_token: 86fc6620-364b-11eb-ab"},{"event":"cmd_output","timestamp":1607098358,"output":"f7-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \r"},{"event":"cmd_output","timestamp":1607098358,"output":"\n\u001b[0m\u001b[22m\n16:12:38.184 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Sch"},{"event":"cmd_output","timestamp":1607098358,"output":"ema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:12:38.184043], name: \"master-.semapho"},{"event":"cmd_output","timestamp":1607098358,"output":"re/semaphore.yml\", organization_id: \"d3155e3e-c01c-4537-836a-ea00585e77ff\", project_id: \"123\", queue"},{"event":"cmd_output","timestamp":1607098358,"output":"_id: \"5cd2f0ca-d05b-4e76-b121-ca4f0e987995\", scope: \"project\", updated_at: ~N[2020-12-04 16:12:38.18"},{"event":"cmd_output","timestamp":1607098358,"output":"4051], user_generated: false}}\n\u001b[0m\u001b[22m\n16:12:38.188 [info] event: created, origin: Elixir.Ppl.P"},{"event":"cmd_output","timestamp":1607098358,"output":"plSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:38.188 [info] ppl_id: 91"},{"event":"cmd_output","timestamp":1607098358,"output":"90717e-700a-4a0c-a5ee-8eba640d6073, type: PplBlocks, block_index: 0, state: initializing, event: cre"},{"event":"cmd_output","timestamp":1607098358,"output":"ated, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105),"},{"event":"cmd_output","timestamp":1607098358,"output":" \n\u001b[0m\u001b[22m\n16:12:38.189 [info] ppl_id: 9190717e-700a-4a0c-a5ee-8eba640d6073, type: PplSubInits, "},{"event":"cmd_output","timestamp":1607098358,"output":"state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Im"},{"event":"cmd_output","timestamp":1607098358,"output":"pl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:38.196 [info] ppl_id: 9190717e-700a-4a0c-a5ee-8eba64"},{"event":"cmd_output","timestamp":1607098358,"output":"0d6073, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098358,"output":"origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:38.198 [info] ppl_id: 91"},{"event":"cmd_output","timestamp":1607098358,"output":"90717e-700a-4a0c-a5ee-8eba640d6073, type: Ppls, state: pending, event: exit_scheduling, recovery_cou"},{"event":"cmd_output","timestamp":1607098358,"output":"nt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:38.210 [info] ppl"},{"event":"cmd_output","timestamp":1607098358,"output":"_id: 9190717e-700a-4a0c-a5ee-8eba640d6073, type: Ppls, state: queuing, event: exit_scheduling, recov"},{"event":"cmd_output","timestamp":1607098358,"output":"ery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:38.216 [inf"},{"event":"cmd_output","timestamp":1607098358,"output":"o] ppl_id: 9190717e-700a-4a0c-a5ee-8eba640d6073, type: Ppls, state: running, event: exit_scheduling"},{"event":"cmd_output","timestamp":1607098358,"output":", recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:38.2"},{"event":"cmd_output","timestamp":1607098358,"output":"20 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"9190717e-700a-4a0c-a5ee-"},{"event":"cmd_output","timestamp":1607098358,"output":"8eba640d6073\"\n\u001b[0m\u001b[22m\n16:12:38.230 [info] block_id: bb68c72d-c205-4a4c-a1be-0686f0ebff8d, type:"},{"event":"cmd_output","timestamp":1607098358,"output":" BlockRequests, event: persisted block run request from ppl 9190717e-700a-4a0c-a5ee-8eba640d6073 for"},{"event":"cmd_output","timestamp":1607098358,"output":" block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b"},{"event":"cmd_output","timestamp":1607098358,"output":"[0m\u001b[22m\n16:12:38.232 [info] block_id: bb68c72d-c205-4a4c-a1be-0686f0ebff8d, type: Blocks, state: "},{"event":"cmd_output","timestamp":1607098358,"output":"initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQuerie"},{"event":"cmd_output","timestamp":1607098358,"output":"s.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:38.233 [info] Block 0 of pipeline with id: 9190717e-700a-4a0c-a"},{"event":"cmd_output","timestamp":1607098358,"output":"5ee-8eba640d6073 scheduled in block service with id: : \"bb68c72d-c205-4a4c-a1be-0686f0ebff8d\"\n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098358,"output":"[22m\n16:12:38.235 [info] ppl_id: 9190717e-700a-4a0c-a5ee-8eba640d6073, type: PplBlocks, block_inde"},{"event":"cmd_output","timestamp":1607098358,"output":"x: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_"},{"event":"cmd_output","timestamp":1607098358,"output":"state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:38.239 [info] block_id: bb68c72d-c205-4a4c-a1be-0686f0ebff8"},{"event":"cmd_output","timestamp":1607098358,"output":"d, type: BlockRequests, event: persisted build and sub_ppl details for block_request: bb68c72d-c205-"},{"event":"cmd_output","timestamp":1607098358,"output":"4a4c-a1be-0686f0ebff8d, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2"},{"event":"cmd_output","timestamp":1607098358,"output":"(L41), \n\u001b[0m\u001b[22m\n16:12:38.244 [info] block_id: bb68c72d-c205-4a4c-a1be-0686f0ebff8d, type: Tasks"},{"event":"cmd_output","timestamp":1607098358,"output":", state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.Initiali"},{"event":"cmd_output","timestamp":1607098358,"output":"zingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:38.250 [info] block_id: bb68c72d-c205-4a4c-a1be-0686f"},{"event":"cmd_output","timestamp":1607098358,"output":"0ebff8d, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loo"},{"event":"cmd_output","timestamp":1607098358,"output":"per.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:38.264 [info] block_id: bb68c72d-c205-4a4c"},{"event":"cmd_output","timestamp":1607098358,"output":"-a1be-0686f0ebff8d, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098358,"output":"Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:38.265 [info] ppl_id: 89b877a9-e"},{"event":"cmd_output","timestamp":1607098358,"output":"650-408b-ab2b-bea08c2f013c, type: PplRequests, event: persisted source_args for pipeline: 89b877a9-e"},{"event":"cmd_output","timestamp":1607098358,"output":"650-408b-ab2b-bea08c2f013c, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2("},{"event":"cmd_output","timestamp":1607098358,"output":"L89), \n\u001b[0m\u001b[22m\n16:12:38.267 [info] ppl_id: 89b877a9-e650-408b-ab2b-bea08c2f013c, type: PplSubIn"},{"event":"cmd_output","timestamp":1607098358,"output":"its, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_"},{"event":"cmd_output","timestamp":1607098358,"output":"state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:38.283 [info] ppl_id: 89b877a9-e650-408b-ab2b-bea08c2f013c,"},{"event":"cmd_output","timestamp":1607098358,"output":" type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098358,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:38.299 [info] ppl_id: 89b877a9-e650-408b"},{"event":"cmd_output","timestamp":1607098358,"output":"-ab2b-bea08c2f013c, type: PplRequests, event: persisted definition for request with request_token: 8"},{"event":"cmd_output","timestamp":1607098358,"output":"6fe9ef4-364b-11eb-b4b7-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_"},{"event":"cmd_output","timestamp":1607098358,"output":"definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:38.302 [info] event: created, origin: Elixir.Ppl.PplSubInits."},{"event":"cmd_output","timestamp":1607098358,"output":"STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:38.303 [info] ppl_id: 89b877a9-e650"},{"event":"cmd_output","timestamp":1607098358,"output":"-408b-ab2b-bea08c2f013c, type: PplBlocks, block_index: 0, state: initializing, event: created, recov"},{"event":"cmd_output","timestamp":1607098358,"output":"ery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098358,"output":"m\n16:12:38.304 [info] ppl_id: 89b877a9-e650-408b-ab2b-bea08c2f013c, type: PplSubInits, state: done"},{"event":"cmd_output","timestamp":1607098358,"output":", result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_stat"},{"event":"cmd_output","timestamp":1607098358,"output":"e_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:38.310 [info] ppl_id: 89b877a9-e650-408b-ab2b-bea08c2f013c, typ"},{"event":"cmd_output","timestamp":1607098358,"output":"e: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098358,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:38.311 [info] ppl_id: 89b877a9-e650"},{"event":"cmd_output","timestamp":1607098358,"output":"-408b-ab2b-bea08c2f013c, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098358,"output":"in: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:38.326 [info] ppl_id: 89b877"},{"event":"cmd_output","timestamp":1607098358,"output":"a9-e650-408b-ab2b-bea08c2f013c, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: "},{"event":"cmd_output","timestamp":1607098358,"output":"0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:38.362 [info] block_i"},{"event":"cmd_output","timestamp":1607098358,"output":"d: bb68c72d-c205-4a4c-a1be-0686f0ebff8d, type: Tasks, state: done, event: exit_scheduling, recovery_"},{"event":"cmd_output","timestamp":1607098358,"output":"count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:38.366 [info] "},{"event":"cmd_output","timestamp":1607098358,"output":"block_id: bb68c72d-c205-4a4c-a1be-0686f0ebff8d, type: Blocks, state: done, event: exit_scheduling, r"},{"event":"cmd_output","timestamp":1607098358,"output":"ecovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:38.371 "},{"event":"cmd_output","timestamp":1607098358,"output":"[info] ppl_id: 9190717e-700a-4a0c-a5ee-8eba640d6073, block_id: bb68c72d-c205-4a4c-a1be-0686f0ebff8d"},{"event":"cmd_output","timestamp":1607098358,"output":", type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_cou"},{"event":"cmd_output","timestamp":1607098358,"output":"nt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:38.381 [info] ppl"},{"event":"cmd_output","timestamp":1607098358,"output":"_id: 9190717e-700a-4a0c-a5ee-8eba640d6073, type: Ppls, state: done, result: passed, event: exit_sche"},{"event":"cmd_output","timestamp":1607098358,"output":"duling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098358,"output":"2:38.468 [info] ppl_id: 89b877a9-e650-408b-ab2b-bea08c2f013c, type: Ppls, state: running, event: ex"},{"event":"cmd_output","timestamp":1607098358,"output":"it_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098358,"output":"m\n16:12:38.473 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"89b877a9-e6"},{"event":"cmd_output","timestamp":1607098358,"output":"50-408b-ab2b-bea08c2f013c\"\n\u001b[0m\u001b[22m\n16:12:38.483 [info] block_id: 4145b9b0-384e-497e-b27a-8a6330"},{"event":"cmd_output","timestamp":1607098358,"output":"70093e, type: BlockRequests, event: persisted block run request from ppl 89b877a9-e650-408b-ab2b-bea"},{"event":"cmd_output","timestamp":1607098358,"output":"08c2f013c for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_respons"},{"event":"cmd_output","timestamp":1607098358,"output":"e/4(L35), \n\u001b[0m\u001b[22m\n16:12:38.485 [info] block_id: 4145b9b0-384e-497e-b27a-8a633070093e, type: Bl"},{"event":"cmd_output","timestamp":1607098358,"output":"ocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model"},{"event":"cmd_output","timestamp":1607098358,"output":".BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:38.486 [info] Block 0 of pipeline with id: 89b877a"},{"event":"cmd_output","timestamp":1607098358,"output":"9-e650-408b-ab2b-bea08c2f013c scheduled in block service with id: : \"4145b9b0-384e-497e-b27a-8a63307"},{"event":"cmd_output","timestamp":1607098358,"output":"0093e\"\n\u001b[0m\u001b[22m\n16:12:38.487 [info] ppl_id: 89b877a9-e650-408b-ab2b-bea08c2f013c, type: PplBlock"},{"event":"cmd_output","timestamp":1607098358,"output":"s, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper."},{"event":"cmd_output","timestamp":1607098358,"output":"STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:38.489 [info] block_id: 4145b9b0-384e-497e-b27"},{"event":"cmd_output","timestamp":1607098358,"output":"a-8a633070093e, type: BlockRequests, event: persisted build and sub_ppl details for block_request: 4"},{"event":"cmd_output","timestamp":1607098358,"output":"145b9b0-384e-497e-b27a-8a633070093e, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.i"},{"event":"cmd_output","timestamp":1607098358,"output":"nsert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:38.491 [info] block_id: 4145b9b0-384e-497e-b27a-8a633070093e"},{"event":"cmd_output","timestamp":1607098358,"output":", type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHan"},{"event":"cmd_output","timestamp":1607098358,"output":"dler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:38.492 [info] block_id: 4145b9b0-384e-49"},{"event":"cmd_output","timestamp":1607098358,"output":"7e-b27a-8a633070093e, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098358,"output":"n: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:38.510 [info] block_id: 4145b"},{"event":"cmd_output","timestamp":1607098358,"output":"9b0-384e-497e-b27a-8a633070093e, type: Tasks, state: running, event: exit_scheduling, recovery_count"},{"event":"cmd_output","timestamp":1607098358,"output":": 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:38.584 [info] block"},{"event":"cmd_output","timestamp":1607098358,"output":"_id: 4145b9b0-384e-497e-b27a-8a633070093e, type: Tasks, state: done, event: exit_scheduling, recover"},{"event":"cmd_output","timestamp":1607098358,"output":"y_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:38.588 [info]"},{"event":"cmd_output","timestamp":1607098358,"output":" block_id: 4145b9b0-384e-497e-b27a-8a633070093e, type: Blocks, state: done, event: exit_scheduling,"},{"event":"cmd_output","timestamp":1607098358,"output":" recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:38.59"},{"event":"cmd_output","timestamp":1607098358,"output":"7 [info] ppl_id: 89b877a9-e650-408b-ab2b-bea08c2f013c, block_id: 4145b9b0-384e-497e-b27a-8a63307009"},{"event":"cmd_output","timestamp":1607098358,"output":"3e, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098358,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:38.606 [info] p"},{"event":"cmd_output","timestamp":1607098358,"output":"pl_id: 89b877a9-e650-408b-ab2b-bea08c2f013c, type: Ppls, state: done, result: passed, event: exit_sc"},{"event":"cmd_output","timestamp":1607098358,"output":"heduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098358,"output":":12:38.663 [info] Request: 'run: %{\"branch_id\" => \"664dc2a4-6016-494c-9513-7fef54679e55\", \"branch_n"},{"event":"cmd_output","timestamp":1607098358,"output":"ame\" => \"master\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"semaphore.yml\", \"hook_id\" => \"876037"},{"event":"cmd_output","timestamp":1607098358,"output":"36-364b-11eb-8173-5254005464e2\", \"label\" => \"master\", \"organization_id\" => \"5d10427e-066d-492a-a6ba-"},{"event":"cmd_output","timestamp":1607098358,"output":"4d292c68f2c9\", \"owner\" => \"rt\", \"project_id\" => \"123\", \"repo_name\" => \"2_basic\", \"request_token\" => "},{"event":"cmd_output","timestamp":1607098358,"output":"\"87602f8e-364b-11eb-801a-5254005464e2\", \"requester_id\" => \"230bef93-bd80-4c1d-9256-ce21197e6b13\", \"s"},{"event":"cmd_output","timestamp":1607098358,"output":"ervice\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"d1ad97"},{"event":"cmd_output","timestamp":1607098358,"output":"a1-bc11-4b19-9e43-5a7fffb52517\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:12:38.664 [info] ppl"},{"event":"cmd_output","timestamp":1607098358,"output":"_id: 4c1de4f9-c3b5-44a9-8782-20cdaecd891f, type: PplRequests, event: persisted schedule request with"},{"event":"cmd_output","timestamp":1607098358,"output":" request_token: 87602f8e-364b-11eb-801a-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplReques"},{"event":"cmd_output","timestamp":1607098358,"output":"tsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:38.665 [info] ppl_id: 4c1de4f9-c3b5-44a9-8782"},{"event":"cmd_output","timestamp":1607098358,"output":"-20cdaecd891f, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098358,"output":"ir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:38.667 [info] Project 12"},{"event":"cmd_output","timestamp":1607098358,"output":"3 and branch masterlatest_wf details updated: \"wf_id: d1ad97a1-bc11-4b19-9e43-5a7fffb52517, wf_numbe"},{"event":"cmd_output","timestamp":1607098358,"output":"r: 3\"\n\u001b[0m\u001b[22m\n16:12:38.668 [info] Persisted ppl_sub_init for pipeline with ppl_id: 4c1de4f9-c3b"},{"event":"cmd_output","timestamp":1607098358,"output":"5-44a9-8782-20cdaecd891f: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded"},{"event":"cmd_output","timestamp":1607098358,"output":", \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 245, in_scheduling: false"},{"event":"cmd_output","timestamp":1607098358,"output":", init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:38.667749], pipeline_requests: #Ecto.Associ"},{"event":"cmd_output","timestamp":1607098358,"output":"ation.NotLoaded, ppl_id: \"4c1de4f9-c3b5-44a9-8782-20cd"},{"event":"cmd_output","timestamp":1607098358,"output":"aecd891f\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: "},{"event":"cmd_output","timestamp":1607098358,"output":"nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:38.667755]}\n\u001b[0m\u001b[22m\n16:12:38.6"},{"event":"cmd_output","timestamp":1607098358,"output":"75 [info] ppl_id: 4c1de4f9-c3b5-44a9-8782-20cdaecd891f, type: PplRequests, event: persisted source_"},{"event":"cmd_output","timestamp":1607098358,"output":"args for pipeline: 4c1de4f9-c3b5-44a9-8782-20cdaecd891f, origin: Elixir.Ppl.PplRequests.Model.PplReq"},{"event":"cmd_output","timestamp":1607098358,"output":"uestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:38.677 [info] ppl_id: 4c1de4f9-c3b5-44a9-8782"},{"event":"cmd_output","timestamp":1607098358,"output":"-20cdaecd891f, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098358,"output":": Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:38.699 [info] ppl_id: 4c1de4f9"},{"event":"cmd_output","timestamp":1607098358,"output":"-c3b5-44a9-8782-20cdaecd891f, type: PplSubInits, state: regular_init, event: exit_scheduling, recove"},{"event":"cmd_output","timestamp":1607098358,"output":"ry_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:38.715 [info"},{"event":"cmd_output","timestamp":1607098358,"output":"] ppl_id: 4c1de4f9-c3b5-44a9-8782-20cdaecd891f, type: PplRequests, event: persisted definition for "},{"event":"cmd_output","timestamp":1607098358,"output":"request with request_token: 87602f8e-364b-11eb-801a-5254005464e2, origin: Elixir.Ppl.PplRequests.Mod"},{"event":"cmd_output","timestamp":1607098358,"output":"el.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:38.718 [info] event: created, or"},{"event":"cmd_output","timestamp":1607098358,"output":"igin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:38.718 "},{"event":"cmd_output","timestamp":1607098358,"output":"[info] ppl_id: 4c1de4f9-c3b5-44a9-8782-20cdaecd891f, type: PplBlocks, block_index: 0, state: initia"},{"event":"cmd_output","timestamp":1607098358,"output":"lizing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitStat"},{"event":"cmd_output","timestamp":1607098358,"output":"e.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:38.719 [info] ppl_id: 4c1de4f9-c3b5-44a9-8782-20cdaecd891f, t"},{"event":"cmd_output","timestamp":1607098358,"output":"ype: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098358,"output":"ixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:38.725 [info] ppl_id: 4c1de4f9-c3b"},{"event":"cmd_output","timestamp":1607098358,"output":"5-44a9-8782-20cdaecd891f, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, r"},{"event":"cmd_output","timestamp":1607098358,"output":"ecovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:38.725 "},{"event":"cmd_output","timestamp":1607098358,"output":"[info] ppl_id: 4c1de4f9-c3b5-44a9-8782-20cdaecd891f, type: Ppls, state: pending, event: exit_schedu"},{"event":"cmd_output","timestamp":1607098358,"output":"ling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:"},{"event":"cmd_output","timestamp":1607098358,"output":"38.730 [info] ppl_id: 4c1de4f9-c3b5-44a9-8782-20cdaecd891f, type: Ppls, state: queuing, event: exit"},{"event":"cmd_output","timestamp":1607098358,"output":"_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098358,"output":"\n16:12:38.740 [info] ppl_id: 4c1de4f9-c3b5-44a9-8782-20cdaecd891f, type: Ppls, state: running, even"},{"event":"cmd_output","timestamp":1607098358,"output":"t: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098358,"output":"m\u001b[22m\n16:12:38.744 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"4c1de4"},{"event":"cmd_output","timestamp":1607098358,"output":"f9-c3b5-44a9-8782-20cdaecd891f\"\n\u001b[0m\u001b[22m\n16:12:38.755 [info] block_id: ad623ee5-dfda-47f9-a5e4-9"},{"event":"cmd_output","timestamp":1607098358,"output":"7cf8c3216b6, type: BlockRequests, event: persisted block run request from ppl 4c1de4f9-c3b5-44a9-878"},{"event":"cmd_output","timestamp":1607098358,"output":"2-20cdaecd891f for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_re"},{"event":"cmd_output","timestamp":1607098358,"output":"sponse/4(L35), \n\u001b[0m\u001b[22m\n16:12:38.757 [info] block_id: ad623ee5-dfda-47f9-a5e4-97cf8c3216b6, typ"},{"event":"cmd_output","timestamp":1607098358,"output":"e: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks."},{"event":"cmd_output","timestamp":1607098358,"output":"Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:38.758 [info] Block 0 of pipeline with id: 4c"},{"event":"cmd_output","timestamp":1607098358,"output":"1de4f9-c3b5-44a9-8782-20cdaecd891f scheduled in block service with id: : \"ad623ee5-dfda-47f9-a5e4-97"},{"event":"cmd_output","timestamp":1607098358,"output":"cf8c3216b6\"\n\u001b[0m\u001b[22m\n16:12:38.760 [info] ppl_id: 4c1de4f9-c3b5-44a9-8782-20cdaecd891f, type: Ppl"},{"event":"cmd_output","timestamp":1607098358,"output":"Blocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Lo"},{"event":"cmd_output","timestamp":1607098358,"output":"oper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:38.763 [info] block_id: ad623ee5-dfda-47f"},{"event":"cmd_output","timestamp":1607098358,"output":"9-a5e4-97cf8c3216b6, type: BlockRequests, event: persisted build and sub_ppl details for block_reque"},{"event":"cmd_output","timestamp":1607098358,"output":"st: ad623ee5-dfda-47f9-a5e4-97cf8c3216b6, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQuer"},{"event":"cmd_output","timestamp":1607098358,"output":"ies.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:38.765 [info] block_id: ad623ee5-dfda-47f9-a5e4-97cf8c3"},{"event":"cmd_output","timestamp":1607098358,"output":"216b6, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.S"},{"event":"cmd_output","timestamp":1607098358,"output":"TMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:38.771 [info] block_id: ad623ee5-df"},{"event":"cmd_output","timestamp":1607098358,"output":"da-47f9-a5e4-97cf8c3216b6, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098358,"output":"origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:38.786 [info] block_id: "},{"event":"cmd_output","timestamp":1607098358,"output":"ad623ee5-dfda-47f9-a5e4-97cf8c3216b6, type: Tasks, state: running, event: exit_scheduling, recovery_"},{"event":"cmd_output","timestamp":1607098358,"output":"count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:38.798 [info] "},{"event":"cmd_output","timestamp":1607098358,"output":"block_id: ad623ee5-dfda-47f9-a5e4-97cf8c3216b6, type: Tasks, state: done, event: exit_scheduling, re"},{"event":"cmd_output","timestamp":1607098358,"output":"covery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:38.803 ["},{"event":"cmd_output","timestamp":1607098358,"output":"info] block_id: ad623ee5-dfda-47f9-a5e4-97cf8c3216b6, type: Blocks, state: done, event: exit_schedu"},{"event":"cmd_output","timestamp":1607098358,"output":"ling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:"},{"event":"cmd_output","timestamp":1607098358,"output":"38.812 [info] ppl_id: 4c1de4f9-c3b5-44a9-8782-20cdaecd891f, block_id: ad623ee5-dfda-47f9-a5e4-97cf8"},{"event":"cmd_output","timestamp":1607098358,"output":"c3216b6, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, recov"},{"event":"cmd_output","timestamp":1607098358,"output":"ery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:38.821 [inf"},{"event":"cmd_output","timestamp":1607098358,"output":"o] ppl_id: 4c1de4f9-c3b5-44a9-8782-20cdaecd891f, type: Ppls, state: done, result: passed, event: ex"},{"event":"cmd_output","timestamp":1607098358,"output":"it_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32"},{"event":"cmd_output","timestamp":1607098358,"output":"m\r * test gRPC list() - filter by created(done)_before(after) timestamps (1017.9ms)\u001b[0m\n * test g"},{"event":"cmd_output","timestamp":1607098359,"output":"RPC list_activity() - invalid request parameters => error returned \u001b[32m\r * test gRPC list_activity"},{"event":"cmd_output","timestamp":1607098359,"output":"() - invalid request parameters => error returned (42.1ms)\u001b[0m\n * test gRPC describe_topology() -"},{"event":"cmd_output","timestamp":1607098359,"output":" implicit depndencies\u001b[22m\n16:12:39.080 [info] Request: 'run: %{:repo_name => \"5_v1_full\", \"branch"},{"event":"cmd_output","timestamp":1607098359,"output":"_id\" => \"21b5b83a-5377-4ed9-ae9c-1138df3d0099\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a44"},{"event":"cmd_output","timestamp":1607098359,"output":"69\", \"file_name\" => \"semaphore.yml\", \"hook_id\" => \"879feed0-364b-11eb-a9bf-5254005464e2\", \"label\" =>"},{"event":"cmd_output","timestamp":1607098359,"output":" \"master\", \"organization_id\" => \"e1a2b05a-afb9-41d6-b885-550cfd0bcad0\", \"owner\" => \"rt\", \"project_id"},{"event":"cmd_output","timestamp":1607098359,"output":"\" => \"b9981ca8-19cd-4ae8-bdb1-468437087993\", \"repo_name\" => \"2_basic\", \"request_token\" => \"879fe692-"},{"event":"cmd_output","timestamp":1607098359,"output":"364b-11eb-9ebb-5254005464e2\", \"requester_id\" => \"ceadde0e-6499-4656-9ac3-cc6ab7d848b8\", \"service\" =>"},{"event":"cmd_output","timestamp":1607098359,"output":" \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"a6c27833-ea48-40"},{"event":"cmd_output","timestamp":1607098359,"output":"e5-861a-05bba35c1041\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:12:39.082 [info] ppl_id: 1874a"},{"event":"cmd_output","timestamp":1607098359,"output":"c3c-65cf-48d6-9f14-cf3e376ebb85, type: PplRequests, event: persisted schedule request with request_t"},{"event":"cmd_output","timestamp":1607098359,"output":"oken: 879fe692-364b-11eb-9ebb-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries."},{"event":"cmd_output","timestamp":1607098359,"output":"process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:39.085 [info] ppl_id: 1874ac3c-65cf-48d6-9f14-cf3e376eb"},{"event":"cmd_output","timestamp":1607098359,"output":"b85, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098359,"output":"s.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:39.092 [info] Project b9981ca8-19c"},{"event":"cmd_output","timestamp":1607098359,"output":"d-4ae8-bdb1-468437087993 and branch masterlatest_wf details updated: \"wf_id: a6c27833-ea48-40e5-861a"},{"event":"cmd_output","timestamp":1607098359,"output":"-05bba35c1041, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:12:39.094 [info] Persisted ppl_sub_init for pipeline wi"},{"event":"cmd_output","timestamp":1607098359,"output":"th ppl_id: 1874ac3c-65cf-48d6-9f14-cf3e376ebb85: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto."},{"event":"cmd_output","timestamp":1607098359,"output":"Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 24"},{"event":"cmd_output","timestamp":1607098359,"output":"6, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:39.093493], pipeline"},{"event":"cmd_output","timestamp":1607098359,"output":"_requests: #Ecto.Association.NotLoaded, ppl_id: \"1874a"},{"event":"cmd_output","timestamp":1607098359,"output":"c3c-65cf-48d6-9f14-cf3e376ebb85\", recovery_count: 0, result: nil, result_reason: nil, state: \"create"},{"event":"cmd_output","timestamp":1607098359,"output":"d\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:39.093500]}"},{"event":"cmd_output","timestamp":1607098359,"output":"\n\u001b[0m\u001b[22m\n16:12:39.099 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingState "},{"event":"cmd_output","timestamp":1607098359,"output":"with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholde"},{"event":"cmd_output","timestamp":1607098359,"output":"r-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initiali"},{"event":"cmd_output","timestamp":1607098359,"output":"zing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: "},{"event":"cmd_output","timestamp":1607098359,"output":"\"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/"},{"event":"cmd_output","timestamp":1607098359,"output":"0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery"},{"event":"cmd_output","timestamp":1607098359,"output":"_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:39.099 [inf"},{"event":"cmd_output","timestamp":1607098359,"output":"o] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with name Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098359,"output":"SubInits.STMHandler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-"},{"event":"cmd_output","timestamp":1607098359,"output":"PplSubInits-STMHandler-RegularInitState\"]}, recurring args: %{allowed_states: [\"done\"], cooling_time"},{"event":"cmd_output","timestamp":1607098359,"output":"_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_init\", publisher"},{"event":"cmd_output","timestamp":1607098359,"output":"_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :"},{"event":"cmd_output","timestamp":1607098359,"output":"recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098359,"output":"22m\n16:12:39.100 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.FetchingState with "},{"event":"cmd_output","timestamp":1607098359,"output":"name Elixir.Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 ms, metric_name: {\"Ppl.beholder-"},{"event":"cmd_output","timestamp":1607098359,"output":"wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %{allowed_states: [\"regular"},{"event":"cmd_output","timestamp":1607098359,"output":"_init\", \"compilation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubIni"},{"event":"cmd_output","timestamp":1607098359,"output":"ts, observed_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate"},{"event":"cmd_output","timestamp":1607098359,"output":"_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.Ppl"},{"event":"cmd_output","timestamp":1607098359,"output":"SubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:39.101 [info] Periodic from module Elixir.Ppl.P"},{"event":"cmd_output","timestamp":1607098359,"output":"plSubInits.STMHandler.CompilationState with name Elixir.Ppl.PplSubInits.STMHandler.CompilationState "},{"event":"cmd_output","timestamp":1607098359,"output":":: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationSta"},{"event":"cmd_output","timestamp":1607098359,"output":"te\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"stopping\", \"done\"], coolin"},{"event":"cmd_output","timestamp":1607098359,"output":"g_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"compilation\", pub"},{"event":"cmd_output","timestamp":1607098359,"output":"lisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :res"},{"event":"cmd_output","timestamp":1607098359,"output":"ult, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n"},{"event":"cmd_output","timestamp":1607098359,"output":"\u001b[0m\u001b[22m\n16:12:39.101 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedState "},{"event":"cmd_output","timestamp":1607098359,"output":"with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.behol"},{"event":"cmd_output","timestamp":1607098359,"output":"der-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args: %{allowed_states: [\"fetc"},{"event":"cmd_output","timestamp":1607098359,"output":"hing\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_stat"},{"event":"cmd_output","timestamp":1607098359,"output":"e: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated"},{"event":"cmd_output","timestamp":1607098359,"output":"_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_sup"},{"event":"cmd_output","timestamp":1607098359,"output":"ervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:39.214 [info] ppl_id: 1874ac3c-65cf-48d6-9f14-cf3e376ebb85, type:"},{"event":"cmd_output","timestamp":1607098359,"output":" PplRequests, event: persisted source_args for pipeline: 1874ac3c-65cf-48d6-9f14-cf3e376ebb85, origi"},{"event":"cmd_output","timestamp":1607098359,"output":"n: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:39.216 ["},{"event":"cmd_output","timestamp":1607098359,"output":"info] ppl_id: 1874ac3c-65cf-48d6-9f14-cf3e376ebb85, type: PplSubInits, state: fetching, event: exit"},{"event":"cmd_output","timestamp":1607098359,"output":"_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098359,"output":"\n16:12:39.245 [info] ppl_id: 1874ac3c-65cf-48d6-9f14-cf3e376ebb85, type: PplSubInits, state: regula"},{"event":"cmd_output","timestamp":1607098359,"output":"r_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1"},{"event":"cmd_output","timestamp":1607098359,"output":"(L90), \n\u001b[0m\u001b[22m\n16:12:39.270 [info] ppl_id: 1874ac3c-65cf-48d6-9f14-cf3e376ebb85, type: PplRequ"},{"event":"cmd_output","timestamp":1607098359,"output":"ests, event: persisted definition for request with request_token: 879fe692-364b-11eb-9ebb-5254005464"},{"event":"cmd_output","timestamp":1607098359,"output":"e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098359,"output":"6:12:39.278 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<"},{"event":"cmd_output","timestamp":1607098359,"output":":loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:12:39.273791], name: \"master-.semaphore/semaphore."},{"event":"cmd_output","timestamp":1607098359,"output":"yml\", organization_id: \"e1a2b05a-afb9-41d6-b885-550cfd0bcad0\", project_id: \"b9981ca8-19cd-4ae8-bdb1-"},{"event":"cmd_output","timestamp":1607098359,"output":"468437087993\", queue_id: \"7210c289-7fb2-49cb-a5ca-9319085fc612\", scope: \"project\", updated_at: ~N[20"},{"event":"cmd_output","timestamp":1607098359,"output":"20-12-04 16:12:39.273816], user_generated: false}}\n\u001b[0m\u001b[22m\n16:12:39.285 [info] ppl_id: not_avai"},{"event":"cmd_output","timestamp":1607098359,"output":"lable, event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \r"},{"event":"cmd_output","timestamp":1607098359,"output":"\n\u001b[0m\u001b[22m\n16:12:39.285 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularIn"},{"event":"cmd_output","timestamp":1607098359,"output":"itState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:39.285 [info] ppl_id: 1874ac3c-65cf-48d6-9f14-cf3e376eb"},{"event":"cmd_output","timestamp":1607098359,"output":"b85, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098359,"output":": Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:39.286 [inf"},{"event":"cmd_output","timestamp":1607098359,"output":"o] ppl_id: 1874ac3c-65cf-48d6-9f14-cf3e376ebb85, type: PplBlocks, block_index: 1, state: initializi"},{"event":"cmd_output","timestamp":1607098359,"output":"ng, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.al"},{"event":"cmd_output","timestamp":1607098359,"output":"l_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:39.288 [info] ppl_id: 1874ac3c-65cf-48d6-9f14-cf3e376ebb85, type:"},{"event":"cmd_output","timestamp":1607098359,"output":" PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098359,"output":".Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:39.296 [info] ppl_id: 1874ac3c-65cf-48"},{"event":"cmd_output","timestamp":1607098359,"output":"d6-9f14-cf3e376ebb85, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098359,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test gRPC describe_topology() - imp"},{"event":"cmd_output","timestamp":1607098359,"output":"licit depndencies (287.6ms)\u001b[0m\n * test gRPC describe_many() - refuse request when there are to ma"},{"event":"cmd_output","timestamp":1607098359,"output":"ny unfinished ones\r * test gRPC describe_many() - refuse request when there are to many unfinished "},{"event":"cmd_output","timestamp":1607098359,"output":"ones (skipped)\n * test gRPC list_activity() - no active pipelines => empty list returned\u001b[32m\r * "},{"event":"cmd_output","timestamp":1607098359,"output":"test gRPC list_activity() - no active pipelines => empty list returned (53.6ms)\u001b[0m\n * test gRPC l"},{"event":"cmd_output","timestamp":1607098359,"output":"ist() - valid params - success\r * test gRPC list() - valid params - success (skipped)\n * test gRP"},{"event":"cmd_output","timestamp":1607098359,"output":"C terminate() - - ppl_id not found\r * test gRPC terminate() - - ppl_id not found (skipped)\n * t"},{"event":"cmd_output","timestamp":1607098359,"output":"est gRPC list() - filter by yml_file_path and branch\r * test gRPC list() - filter by yml_file_path "},{"event":"cmd_output","timestamp":1607098359,"output":"and branch (skipped)\n * test gRPC list_keyset() - refuse request when there are to many unfinished"},{"event":"cmd_output","timestamp":1607098359,"output":" ones\r * test gRPC list_keyset() - refuse request when there are to many unfinished ones (skipped)\r"},{"event":"cmd_output","timestamp":1607098359,"output":"\n * test gRPC list_grouped() - org scoped user generated queues\u001b[22m\n16:12:39.420 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098359,"output":" 0b1dedf5-3aa9-4066-82de-b4c9391235f2, type: PplRequests, event: persisted schedule request with req"},{"event":"cmd_output","timestamp":1607098359,"output":"uest_token: fafc37a4-22b8-4321-a08d-d74b484a2b58, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQu"},{"event":"cmd_output","timestamp":1607098359,"output":"eries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:39.425 [info] ppl_id: 0b1dedf5-3aa9-4066-82de-b4c"},{"event":"cmd_output","timestamp":1607098359,"output":"9391235f2, type: PplRequests, event: persisted definition for request with request_token: fafc37a4-2"},{"event":"cmd_output","timestamp":1607098359,"output":"2b8-4321-a08d-d74b484a2b58, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definitio"},{"event":"cmd_output","timestamp":1607098359,"output":"n/3(L76), \n\u001b[0m\u001b[22m\n16:12:39.428 [info] ppl_id: 0b1dedf5-3aa9-4066-82de-b4c9391235f2, type: Ppls"},{"event":"cmd_output","timestamp":1607098359,"output":", state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQue"},{"event":"cmd_output","timestamp":1607098359,"output":"ries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:39.432 [info] Persisted ppl_sub_init for pipeline"},{"event":"cmd_output","timestamp":1607098359,"output":" with ppl_id: 0b1dedf5-3aa9-4066-82de-b4c9391235f2: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ec"},{"event":"cmd_output","timestamp":1607098359,"output":"to.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id:"},{"event":"cmd_output","timestamp":1607098359,"output":" 247, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:39.431106], pipel"},{"event":"cmd_output","timestamp":1607098359,"output":"ine_requests: #Ecto.Association.NotLoaded, ppl_id: \"0b"},{"event":"cmd_output","timestamp":1607098359,"output":"1dedf5-3aa9-4066-82de-b4c9391235f2\", recovery_count: 0, result: nil, result_reason: nil, state: \"cre"},{"event":"cmd_output","timestamp":1607098359,"output":"ated\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:39.43111"},{"event":"cmd_output","timestamp":1607098359,"output":"4]}\n\u001b[0m\u001b[22m\n16:12:39.441 [info] ppl_id: 235b9bec-509e-4ab8-b807-f78116e16182, type: PplRequests"},{"event":"cmd_output","timestamp":1607098359,"output":", event: persisted schedule request with request_token: 4064a46e-97c3-44c3-a0bc-2417d22ac288, origin"},{"event":"cmd_output","timestamp":1607098359,"output":": Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:39.443"},{"event":"cmd_output","timestamp":1607098359,"output":" [info] ppl_id: 235b9bec-509e-4ab8-b807-f78116e16182, type: PplRequests, event: persisted definitio"},{"event":"cmd_output","timestamp":1607098359,"output":"n for request with request_token: 4064a46e-97c3-44c3-a0bc-2417d22ac288, origin: Elixir.Ppl.PplReques"},{"event":"cmd_output","timestamp":1607098359,"output":"ts.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:39.446 [info] ppl_id: 235b"},{"event":"cmd_output","timestamp":1607098359,"output":"9bec-509e-4ab8-b807-f78116e16182, type: Ppls, state: initializing, event: initializing, recovery_cou"},{"event":"cmd_output","timestamp":1607098359,"output":"nt: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:39.453"},{"event":"cmd_output","timestamp":1607098359,"output":" [info] Persisted ppl_sub_init for pipeline with ppl_id: 235b9bec-509e-4ab8-b807-f78116e16182: %Ppl"},{"event":"cmd_output","timestamp":1607098359,"output":".PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compi"},{"event":"cmd_output","timestamp":1607098359,"output":"le_task_id: nil, error_description: nil, id: 248, in_scheduling: false, init_type: \"regular\", insert"},{"event":"cmd_output","timestamp":1607098359,"output":"ed_at: ~N[2020-12-04 16:12:39.451973], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"235b9bec-509e-4ab8-b807-f78116e16182\", recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098359,"output":"result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: n"},{"event":"cmd_output","timestamp":1607098359,"output":"il, updated_at: ~N[2020-12-04 16:12:39.451982]}\n\u001b[0m\u001b[22m\n16:12:39.456 [info] ppl_id: e4de57ec-31"},{"event":"cmd_output","timestamp":1607098359,"output":"2c-4986-87b4-3beafcad1182, type: PplRequests, event: persisted schedule request with request_token: "},{"event":"cmd_output","timestamp":1607098359,"output":"450b1a1a-c141-4924-ae70-87dfe73eb91d, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.proces"},{"event":"cmd_output","timestamp":1607098359,"output":"s_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:39.457 [info] ppl_id: e4de57ec-312c-4986-87b4-3beafcad1182, t"},{"event":"cmd_output","timestamp":1607098359,"output":"ype: PplRequests, event: persisted definition for request with request_token: 450b1a1a-c141-4924-ae7"},{"event":"cmd_output","timestamp":1607098359,"output":"0-87dfe73eb91d, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n"},{"event":"cmd_output","timestamp":1607098359,"output":"\u001b[0m\u001b[22m\n16:12:39.460 [info] ppl_id: e4de57ec-312c-4986-87b4-3beafcad1182, type: Ppls, state: ini"},{"event":"cmd_output","timestamp":1607098359,"output":"tializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process"},{"event":"cmd_output","timestamp":1607098359,"output":"_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:39.462 [info] Persisted ppl_sub_init for pipeline with ppl_id"},{"event":"cmd_output","timestamp":1607098359,"output":": e4de57ec-312c-4986-87b4-3beafcad1182: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Me"},{"event":"cmd_output","timestamp":1607098359,"output":"tadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 249, in_sch"},{"event":"cmd_output","timestamp":1607098359,"output":"eduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:39.461703], pipeline_requests"},{"event":"cmd_output","timestamp":1607098359,"output":": #Ecto.Association.NotLoaded, ppl_id: \"e4de57ec-312c-"},{"event":"cmd_output","timestamp":1607098359,"output":"4986-87b4-3beafcad1182\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", termi"},{"event":"cmd_output","timestamp":1607098359,"output":"nate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:39.461710]}\n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098359,"output":"2m\n16:12:39.465 [info] ppl_id: 70b85e8f-44a0-41ed-8229-40f0047f1835, type: PplRequests, event: per"},{"event":"cmd_output","timestamp":1607098359,"output":"sisted schedule request with request_token: 84377d54-e92e-43bc-98da-bce9da0f2073, origin: Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098359,"output":".PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:39.466 [info] ppl"},{"event":"cmd_output","timestamp":1607098359,"output":"_id: 70b85e8f-44a0-41ed-8229-40f0047f1835, type: PplRequests, event: persisted definition for reques"},{"event":"cmd_output","timestamp":1607098359,"output":"t with request_token: 84377d54-e92e-43bc-98da-bce9da0f2073, origin: Elixir.Ppl.PplRequests.Model.Ppl"},{"event":"cmd_output","timestamp":1607098359,"output":"RequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:39.468 [info] ppl_id: 70b85e8f-44a0-41"},{"event":"cmd_output","timestamp":1607098359,"output":"ed-8229-40f0047f1835, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098359,"output":"n: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:39.471 [info] Per"},{"event":"cmd_output","timestamp":1607098359,"output":"sisted ppl_sub_init for pipeline with ppl_id: 70b85e8f-44a0-41ed-8229-40f0047f1835: %Ppl.PplSubInits"},{"event":"cmd_output","timestamp":1607098359,"output":".Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: "},{"event":"cmd_output","timestamp":1607098359,"output":"nil, error_description: nil, id: 250, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[20"},{"event":"cmd_output","timestamp":1607098359,"output":"20-12-04 16:12:39.470538], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"70b85e8f-44a0-41ed-8229-40f0047f1835\", recovery_count: 0, result: nil,"},{"event":"cmd_output","timestamp":1607098359,"output":" result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_"},{"event":"cmd_output","timestamp":1607098359,"output":"at: ~N[2020-12-04 16:12:39.470545]}\n\u001b[0m\u001b[22m\n16:12:39.474 [info] ppl_id: 68a5c6f6-33c3-4253-89f5"},{"event":"cmd_output","timestamp":1607098359,"output":"-7f0f2c18d6e2, type: PplRequests, event: persisted schedule request with request_token: e3694e25-5d9"},{"event":"cmd_output","timestamp":1607098359,"output":"8-4573-ab97-f8b2d33db1aa, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2"},{"event":"cmd_output","timestamp":1607098359,"output":"(L55), \n\u001b[0m\u001b[22m\n16:12:39.484 [info] ppl_id: 68a5c6f6-33c3-4253-89f5-7f0f2c18d6e2, type: PplRequ"},{"event":"cmd_output","timestamp":1607098359,"output":"ests, event: persisted definition for request with request_token: e3694e25-5d98-4573-ab97-f8b2d33db1"},{"event":"cmd_output","timestamp":1607098359,"output":"aa, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098359,"output":"6:12:39.486 [info] ppl_id: 68a5c6f6-33c3-4253-89f5-7f0f2c18d6e2, type: Ppls, state: initializing, e"},{"event":"cmd_output","timestamp":1607098359,"output":"vent: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2("},{"event":"cmd_output","timestamp":1607098359,"output":"L124), \n\u001b[0m\u001b[22m\n16:12:39.489 [info] Persisted ppl_sub_init for pipeline with ppl_id: 68a5c6f6-3"},{"event":"cmd_output","timestamp":1607098359,"output":"3c3-4253-89f5-7f0f2c18d6e2: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:load"},{"event":"cmd_output","timestamp":1607098359,"output":"ed, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 251, in_scheduling: fal"},{"event":"cmd_output","timestamp":1607098359,"output":"se, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:39.488086], pipeline_requests: #Ecto.Asso"},{"event":"cmd_output","timestamp":1607098359,"output":"ciation.NotLoaded, ppl_id: \"68a5c6f6-33c3-4253-89f5-7f"},{"event":"cmd_output","timestamp":1607098359,"output":"0f2c18d6e2\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request"},{"event":"cmd_output","timestamp":1607098359,"output":": nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:39.488104]}\n\u001b[0m\u001b[22m\n16:12:39"},{"event":"cmd_output","timestamp":1607098359,"output":".491 [info] ppl_id: 0bf50b5f-d726-4d0b-8453-3c296be7a44e, type: PplRequests, event: persisted sched"},{"event":"cmd_output","timestamp":1607098359,"output":"ule request with request_token: decc0ab3-b404-468a-8c65-133ac843ac9f, origin: Elixir.Ppl.PplRequests"},{"event":"cmd_output","timestamp":1607098359,"output":".Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:39.492 [info] ppl_id: 0bf50b5"},{"event":"cmd_output","timestamp":1607098359,"output":"f-d726-4d0b-8453-3c296be7a44e, type: PplRequests, event: persisted definition for request with reque"},{"event":"cmd_output","timestamp":1607098359,"output":"st_token: decc0ab3-b404-468a-8c65-133ac843ac9f, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQuer"},{"event":"cmd_output","timestamp":1607098359,"output":"ies.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:39.495 [info] ppl_id: 0bf50b5f-d726-4d0b-8453-3c29"},{"event":"cmd_output","timestamp":1607098359,"output":"6be7a44e, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Pp"},{"event":"cmd_output","timestamp":1607098359,"output":"l.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:39.498 [info] Persisted ppl_s"},{"event":"cmd_output","timestamp":1607098359,"output":"ub_init for pipeline with ppl_id: 0bf50b5f-d726-4d0b-8453-3c296be7a44e: %Ppl.PplSubInits.Model.PplSu"},{"event":"cmd_output","timestamp":1607098359,"output":"bInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_d"},{"event":"cmd_output","timestamp":1607098359,"output":"escription: nil, id: 252, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:"},{"event":"cmd_output","timestamp":1607098359,"output":"12:39.496890], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"0bf50b5f-d726-4d0b-8453-3c296be7a44e\", recovery_count: 0, result: nil, result_reas"},{"event":"cmd_output","timestamp":1607098359,"output":"on: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-"},{"event":"cmd_output","timestamp":1607098359,"output":"12-04 16:12:39.496897]}\n\u001b[0m\u001b[22m\n16:12:39.501 [info] ppl_id: 49bf201d-fbc9-4782-96fa-4d356073b39"},{"event":"cmd_output","timestamp":1607098359,"output":"d, type: PplRequests, event: persisted schedule request with request_token: 28590fb4-8de2-411d-8304-"},{"event":"cmd_output","timestamp":1607098359,"output":"824eb7fd254f, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098359,"output":"m\u001b[22m\n16:12:39.502 [info] ppl_id: 49bf201d-fbc9-4782-96fa-4d356073b39d, type: PplRequests, event:"},{"event":"cmd_output","timestamp":1607098359,"output":" persisted definition for request with request_token: 28590fb4-8de2-411d-8304-824eb7fd254f, origin: "},{"event":"cmd_output","timestamp":1607098359,"output":"Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:39.503 "},{"event":"cmd_output","timestamp":1607098359,"output":"[info] ppl_id: 49bf201d-fbc9-4782-96fa-4d356073b39d, type: Ppls, state: initializing, event: initia"},{"event":"cmd_output","timestamp":1607098359,"output":"lizing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098359,"output":"m\u001b[22m\n16:12:39.507 [info] Persisted ppl_sub_init for pipeline with ppl_id: 49bf201d-fbc9-4782-96f"},{"event":"cmd_output","timestamp":1607098359,"output":"a-4d356073b39d: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipelin"},{"event":"cmd_output","timestamp":1607098359,"output":"e_sub_inits\">, compile_task_id: nil, error_description: nil, id: 253, in_scheduling: false, init_typ"},{"event":"cmd_output","timestamp":1607098359,"output":"e: \"regular\", inserted_at: ~N[2020-12-04 16:12:39.505921], pipeline_requests: #Ecto.Association.NotL"},{"event":"cmd_output","timestamp":1607098359,"output":"oaded, ppl_id: \"49bf201d-fbc9-4782-96fa-4d356073b39d\","},{"event":"cmd_output","timestamp":1607098359,"output":" recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, termi"},{"event":"cmd_output","timestamp":1607098359,"output":"nate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:39.505929]}\n\u001b[0m\u001b[22m\n16:12:39.510 [info] "},{"event":"cmd_output","timestamp":1607098359,"output":" ppl_id: 4e792e1f-fc4b-482d-b5a8-fa123e4502d9, type: PplRequests, event: persisted schedule request "},{"event":"cmd_output","timestamp":1607098359,"output":"with request_token: 6e7d40d2-715a-4089-a5ca-8ac2b075bc65, origin: Elixir.Ppl.PplRequests.Model.PplRe"},{"event":"cmd_output","timestamp":1607098359,"output":"questsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:39.512 [info] ppl_id: 4e792e1f-fc4b-482d-"},{"event":"cmd_output","timestamp":1607098359,"output":"b5a8-fa123e4502d9, type: PplRequests, event: persisted definition for request with request_token: 6e"},{"event":"cmd_output","timestamp":1607098359,"output":"7d40d2-715a-4089-a5ca-8ac2b075bc65, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_d"},{"event":"cmd_output","timestamp":1607098359,"output":"efinition/3(L76), \n\u001b[0m\u001b[22m\n16:12:39.514 [info] ppl_id: 4e792e1f-fc4b-482d-b5a8-fa123e4502d9, ty"},{"event":"cmd_output","timestamp":1607098359,"output":"pe: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model"},{"event":"cmd_output","timestamp":1607098359,"output":".PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:39.517 [info] Persisted ppl_sub_init for "},{"event":"cmd_output","timestamp":1607098359,"output":"pipeline with ppl_id: 4e792e1f-fc4b-482d-b5a8-fa123e4502d9: %Ppl.PplSubInits.Model.PplSubInits{__met"},{"event":"cmd_output","timestamp":1607098359,"output":"a__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: "},{"event":"cmd_output","timestamp":1607098359,"output":"nil, id: 254, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:39.516282"},{"event":"cmd_output","timestamp":1607098359,"output":"], pipeline_requests: #Ecto.Association.NotLoaded, ppl"},{"event":"cmd_output","timestamp":1607098359,"output":"_id: \"4e792e1f-fc4b-482d-b5a8-fa123e4502d9\", recovery_count: 0, result: nil, result_reason: nil, sta"},{"event":"cmd_output","timestamp":1607098359,"output":"te: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:"},{"event":"cmd_output","timestamp":1607098359,"output":"39.516289]}\n\u001b[0m\u001b[22m\n16:12:39.519 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.Initial"},{"event":"cmd_output","timestamp":1607098359,"output":"izingState with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms, metric_name: {\""},{"event":"cmd_output","timestamp":1607098359,"output":"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %{allowed_states:"},{"event":"cmd_output","timestamp":1607098359,"output":" [\"initializing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, obser"},{"event":"cmd_output","timestamp":1607098359,"output":"ved_state: \"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.Initializing"},{"event":"cmd_output","timestamp":1607098359,"output":"State.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result"},{"event":"cmd_output","timestamp":1607098359,"output":", :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:"},{"event":"cmd_output","timestamp":1607098359,"output":"39.519 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098359,"output":"s.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHan"},{"event":"cmd_output","timestamp":1607098359,"output":"dler-PendingState\"]}, recurring args: %{allowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], c"},{"event":"cmd_output","timestamp":1607098359,"output":"ooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publisher_cb: #Fu"},{"event":"cmd_output","timestamp":1607098359,"output":"nction<0.8493005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id,"},{"event":"cmd_output","timestamp":1607098359,"output":" :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model"},{"event":"cmd_output","timestamp":1607098359,"output":".Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:12:39.520 [info] Periodic from module El"},{"event":"cmd_output","timestamp":1607098359,"output":"ixir.Ppl.Ppls.STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 1"},{"event":"cmd_output","timestamp":1607098359,"output":"00 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: "},{"event":"cmd_output","timestamp":1607098359,"output":"%{allowed_states: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Mode"},{"event":"cmd_output","timestamp":1607098359,"output":"l.Ppls, observed_state: \"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.Queu"},{"event":"cmd_output","timestamp":1607098359,"output":"ingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :res"},{"event":"cmd_output","timestamp":1607098359,"output":"ult, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098359,"output":"12:39.520 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl."},{"event":"cmd_output","timestamp":1607098359,"output":"Ppls.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STM"},{"event":"cmd_output","timestamp":1607098359,"output":"Handler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_"},{"event":"cmd_output","timestamp":1607098359,"output":"time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"running\", publisher_cb: #Function"},{"event":"cmd_output","timestamp":1607098359,"output":"<0.74670282/1 in Ppl.Ppls.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :ter"},{"event":"cmd_output","timestamp":1607098359,"output":"minate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls"},{"event":"cmd_output","timestamp":1607098359,"output":", task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:12:39.520 [info] Periodic from module Elixir."},{"event":"cmd_output","timestamp":1607098359,"output":"Ppl.Ppls.STMHandler.StoppingState with name Elixir.Ppl.Ppls.STMHandler.StoppingState :: period: 100 "},{"event":"cmd_output","timestamp":1607098359,"output":"ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring args: %{"},{"event":"cmd_output","timestamp":1607098359,"output":"allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, obse"},{"event":"cmd_output","timestamp":1607098359,"output":"rved_state: \"stopping\", publisher_cb: #Function<0.71803493/1 in Ppl.Ppls.STMHandler.StoppingState.ar"},{"event":"cmd_output","timestamp":1607098359,"output":"gs/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recov"},{"event":"cmd_output","timestamp":1607098359,"output":"ery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:39.521 ["},{"event":"cmd_output","timestamp":1607098359,"output":"info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplS"},{"event":"cmd_output","timestamp":1607098359,"output":"ubInits.STMHandler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSu"},{"event":"cmd_output","timestamp":1607098359,"output":"bInits-STMHandler-CreatedState\"]}, recurring args: %{allowed_states: [\"fetching\", \"done\"], cooling_t"},{"event":"cmd_output","timestamp":1607098359,"output":"ime_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"created\", publisher_c"},{"event":"cmd_output","timestamp":1607098359,"output":"b: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :re"},{"event":"cmd_output","timestamp":1607098359,"output":"covery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098359,"output":"m\n16:12:39.521 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.FetchingState with na"},{"event":"cmd_output","timestamp":1607098359,"output":"me Elixir.Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wa"},{"event":"cmd_output","timestamp":1607098359,"output":"ke_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %{allowed_states: [\"regular_i"},{"event":"cmd_output","timestamp":1607098359,"output":"nit\", \"compilation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits"},{"event":"cmd_output","timestamp":1607098359,"output":", observed_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_r"},{"event":"cmd_output","timestamp":1607098359,"output":"equest, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSu"},{"event":"cmd_output","timestamp":1607098359,"output":"bInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:39.521 [info] Periodic from module Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098359,"output":"SubInits.STMHandler.CompilationState with name Elixir.Ppl.PplSubInits.STMHandler.CompilationState ::"},{"event":"cmd_output","timestamp":1607098359,"output":" period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState"},{"event":"cmd_output","timestamp":1607098359,"output":"\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_"},{"event":"cmd_output","timestamp":1607098359,"output":"time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"compilation\", publi"},{"event":"cmd_output","timestamp":1607098359,"output":"sher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :resul"},{"event":"cmd_output","timestamp":1607098359,"output":"t, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b["},{"event":"cmd_output","timestamp":1607098359,"output":"0m\u001b[22m\n16:12:39.522 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.RegularInitStat"},{"event":"cmd_output","timestamp":1607098359,"output":"e with name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl"},{"event":"cmd_output","timestamp":1607098359,"output":".beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurring args: %{allowed_stat"},{"event":"cmd_output","timestamp":1607098359,"output":"es: [\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state:"},{"event":"cmd_output","timestamp":1607098359,"output":" \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :upda"},{"event":"cmd_output","timestamp":1607098359,"output":"ted_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_"},{"event":"cmd_output","timestamp":1607098359,"output":"supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:39.522 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHan"},{"event":"cmd_output","timestamp":1607098359,"output":"dler.InitializingState with name Elixir.Ppl.PplBlocks.STMHandler.InitializingState :: period: 100 ms"},{"event":"cmd_output","timestamp":1607098359,"output":", metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-InitializingState\"]}, recurring a"},{"event":"cmd_output","timestamp":1607098359,"output":"rgs: %{allowed_states: [\"initializing\", \"waiting\", \"done\"], cooling_time_sec: 0, initial_query: Ppl."},{"event":"cmd_output","timestamp":1607098359,"output":"PplBlocks.Model.PplBlocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, "},{"event":"cmd_output","timestamp":1607098359,"output":"returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_"},{"event":"cmd_output","timestamp":1607098359,"output":"index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:39.523 [inf"},{"event":"cmd_output","timestamp":1607098359,"output":"o] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks"},{"event":"cmd_output","timestamp":1607098359,"output":".STMHandler.WaitingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-S"},{"event":"cmd_output","timestamp":1607098359,"output":"TMHandler-WaitingState\"]}, recurring args: %{allowed_states: [\"waiting\", \"running\", \"done\"], cooling"},{"event":"cmd_output","timestamp":1607098359,"output":"_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"waiting\", publisher_cb:"},{"event":"cmd_output","timestamp":1607098359,"output":" #Function<0.8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, returni"},{"event":"cmd_output","timestamp":1607098359,"output":"ng: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index],"},{"event":"cmd_output","timestamp":1607098359,"output":" schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:39.523 [info] Per"},{"event":"cmd_output","timestamp":1607098359,"output":"iodic from module Elixir.Ppl.PplBlocks.STMHandler.RunningState with name Elixir.Ppl.PplBlocks.STMHan"},{"event":"cmd_output","timestamp":1607098359,"output":"dler.RunningState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandl"},{"event":"cmd_output","timestamp":1607098359,"output":"er-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_"},{"event":"cmd_output","timestamp":1607098359,"output":"sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"running\", publisher_cb: #Fun"},{"event":"cmd_output","timestamp":1607098359,"output":"ction<0.28166834/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: "},{"event":"cmd_output","timestamp":1607098359,"output":"[:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :blo"},{"event":"cmd_output","timestamp":1607098359,"output":"ck_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:39.524 [inf"},{"event":"cmd_output","timestamp":1607098359,"output":"o] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.StoppingState with name Elixir.Ppl.PplBlock"},{"event":"cmd_output","timestamp":1607098359,"output":"s.STMHandler.StoppingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks"},{"event":"cmd_output","timestamp":1607098359,"output":"-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_s"},{"event":"cmd_output","timestamp":1607098359,"output":"ec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"stopping\", publisher_cb: #Fun"},{"event":"cmd_output","timestamp":1607098359,"output":"ction<0.104215991/1 in Ppl.PplBlocks.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning"},{"event":"cmd_output","timestamp":1607098359,"output":": [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :b"},{"event":"cmd_output","timestamp":1607098359,"output":"lock_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:39.524 [i"},{"event":"cmd_output","timestamp":1607098359,"output":"nfo] Periodic from module Elixir.Block.Blocks.STMHandler.InitializingState with name Elixir.Block.B"},{"event":"cmd_output","timestamp":1607098359,"output":"locks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-"},{"event":"cmd_output","timestamp":1607098359,"output":"Blocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooli"},{"event":"cmd_output","timestamp":1607098359,"output":"ng_time_sec: 0, initial_query: Block.Blocks.Model.Blocks, observed_state: \"initializing\", publisher_"},{"event":"cmd_output","timestamp":1607098359,"output":"cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery"},{"event":"cmd_output","timestamp":1607098359,"output":"_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:39."},{"event":"cmd_output","timestamp":1607098359,"output":"525 [info] Periodic from module Elixir.Block.Blocks.STMHandler.RunningState with name Elixir.Block."},{"event":"cmd_output","timestamp":1607098359,"output":"Blocks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Bloc"},{"event":"cmd_output","timestamp":1607098359,"output":"ks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], co"},{"event":"cmd_output","timestamp":1607098359,"output":"oling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"running\", publisher_c"},{"event":"cmd_output","timestamp":1607098359,"output":"b: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_"},{"event":"cmd_output","timestamp":1607098359,"output":"count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:39.5"},{"event":"cmd_output","timestamp":1607098359,"output":"25 [info] Periodic from module Elixir.Block.Blocks.STMHandler.StoppingState with name Elixir.Block."},{"event":"cmd_output","timestamp":1607098359,"output":"Blocks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blo"},{"event":"cmd_output","timestamp":1607098359,"output":"cks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_tim"},{"event":"cmd_output","timestamp":1607098359,"output":"e_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"stopping\", publisher_cb: :skip"},{"event":"cmd_output","timestamp":1607098359,"output":", repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :"},{"event":"cmd_output","timestamp":1607098359,"output":"block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:39.525 [info"},{"event":"cmd_output","timestamp":1607098359,"output":"] Periodic from module Elixir.Block.Tasks.STMHandler.PendingState with name Elixir.Block.Tasks.STMH"},{"event":"cmd_output","timestamp":1607098359,"output":"andler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandle"},{"event":"cmd_output","timestamp":1607098359,"output":"r-PendingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initi"},{"event":"cmd_output","timestamp":1607098359,"output":"al_query: Block.Tasks.Model.Tasks, observed_state: \"pending\", publisher_cb: :skip, repo: Block.EctoR"},{"event":"cmd_output","timestamp":1607098359,"output":"epo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id, :build_re"},{"event":"cmd_output","timestamp":1607098359,"output":"quest_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:39.526 [info] "},{"event":"cmd_output","timestamp":1607098359,"output":" Periodic from module Elixir.Block.Tasks.STMHandler.RunningState with name Elixir.Block.Tasks.STMHan"},{"event":"cmd_output","timestamp":1607098359,"output":"dler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-"},{"event":"cmd_output","timestamp":1607098359,"output":"RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec"},{"event":"cmd_output","timestamp":1607098359,"output":": -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"running\", publisher_cb: :skip, repo: "},{"event":"cmd_output","timestamp":1607098359,"output":"Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id"},{"event":"cmd_output","timestamp":1607098359,"output":"], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:39.526 [info] Periodi"},{"event":"cmd_output","timestamp":1607098359,"output":"c from module Elixir.Block.Tasks.STMHandler.StoppingState with name Elixir.Block.Tasks.STMHandler.St"},{"event":"cmd_output","timestamp":1607098359,"output":"oppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-Stoppi"},{"event":"cmd_output","timestamp":1607098359,"output":"ngState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_qu"},{"event":"cmd_output","timestamp":1607098359,"output":"ery: Block.Tasks.Model.Tasks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo,"},{"event":"cmd_output","timestamp":1607098359,"output":" returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Bloc"},{"event":"cmd_output","timestamp":1607098359,"output":"k.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:39.633 [info] ppl_id: 0b1dedf5-3aa9-"},{"event":"cmd_output","timestamp":1607098359,"output":"4066-82de-b4c9391235f2, type: PplRequests, event: persisted source_args for pipeline: 0b1dedf5-3aa9-"},{"event":"cmd_output","timestamp":1607098359,"output":"4066-82de-b4c9391235f2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89)"},{"event":"cmd_output","timestamp":1607098359,"output":", \n\u001b[0m\u001b[22m\n16:12:39.635 [info] ppl_id: 0b1dedf5-3aa9-4066-82de-b4c9391235f2, type: PplSubInits,"},{"event":"cmd_output","timestamp":1607098359,"output":" state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_stat"},{"event":"cmd_output","timestamp":1607098359,"output":"e_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:39.647 [info] ppl_id: 0b1dedf5-3aa9-4066-82de-b4c9391235f2, typ"},{"event":"cmd_output","timestamp":1607098359,"output":"e: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loope"},{"event":"cmd_output","timestamp":1607098359,"output":"r.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:39.672 [info] ppl_id: 0b1dedf5-3aa9-4066-82d"},{"event":"cmd_output","timestamp":1607098359,"output":"e-b4c9391235f2, type: PplRequests, event: persisted definition for request with request_token: fafc3"},{"event":"cmd_output","timestamp":1607098359,"output":"7a4-22b8-4321-a08d-d74b484a2b58, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_defi"},{"event":"cmd_output","timestamp":1607098359,"output":"nition/3(L76), \n\u001b[0m\u001b[22m\n16:12:39.675 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__m"},{"event":"cmd_output","timestamp":1607098359,"output":"eta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:12:39.674249], name: "},{"event":"cmd_output","timestamp":1607098359,"output":"\"master-.semaphore/semaphore.yml\", organization_id: \"bb33d42e-c8ce-489f-a50f-b773ae4aba2c\", project_"},{"event":"cmd_output","timestamp":1607098359,"output":"id: \"123\", queue_id: \"7b359666-f9e6-4ec3-a7f6-bafc67872553\", scope: \"project\", updated_at: ~N[2020-1"},{"event":"cmd_output","timestamp":1607098359,"output":"2-04 16:12:39.674257], user_generated: false}}\n\u001b[0m\u001b[22m\n16:12:39.678 [info] event: created, orig"},{"event":"cmd_output","timestamp":1607098359,"output":"in: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:39.678 [i"},{"event":"cmd_output","timestamp":1607098359,"output":"nfo] ppl_id: 0b1dedf5-3aa9-4066-82de-b4c9391235f2, type: PplBlocks, block_index: 0, state: initiali"},{"event":"cmd_output","timestamp":1607098359,"output":"zing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState."},{"event":"cmd_output","timestamp":1607098359,"output":"all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:39.680 [info] ppl_id: 0b1dedf5-3aa9-4066-82de-b4c9391235f2, typ"},{"event":"cmd_output","timestamp":1607098359,"output":"e: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098359,"output":"ir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:39.686 [info] ppl_id: 0b1dedf5-3aa9-"},{"event":"cmd_output","timestamp":1607098359,"output":"4066-82de-b4c9391235f2, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098359,"output":"n: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:39.686 [info] ppl_id: 0b1dedf"},{"event":"cmd_output","timestamp":1607098359,"output":"5-3aa9-4066-82de-b4c9391235f2, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduli"},{"event":"cmd_output","timestamp":1607098359,"output":"ng, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:39"},{"event":"cmd_output","timestamp":1607098359,"output":".698 [info] ppl_id: 0b1dedf5-3aa9-4066-82de-b4c9391235f2, type: Ppls, state: queuing, event: exit_s"},{"event":"cmd_output","timestamp":1607098359,"output":"cheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098359,"output":"6:12:39.705 [info] ppl_id: 0b1dedf5-3aa9-4066-82de-b4c9391235f2, type: Ppls, state: running, event:"},{"event":"cmd_output","timestamp":1607098359,"output":" exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098359,"output":"[22m\n16:12:39.710 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"0b1dedf5"},{"event":"cmd_output","timestamp":1607098359,"output":"-3aa9-4066-82de-b4c9391235f2\"\n\u001b[0m\u001b[22m\n16:12:39.714 [info] block_id: 17497488-0f0c-4209-b9d5-3fb"},{"event":"cmd_output","timestamp":1607098359,"output":"b1a4074ac, type: BlockRequests, event: persisted block run request from ppl 0b1dedf5-3aa9-4066-82de-"},{"event":"cmd_output","timestamp":1607098359,"output":"b4c9391235f2 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_resp"},{"event":"cmd_output","timestamp":1607098359,"output":"onse/4(L35), \n\u001b[0m\u001b[22m\n16:12:39.716 [info] block_id: 17497488-0f0c-4209-b9d5-3fbb1a4074ac, type:"},{"event":"cmd_output","timestamp":1607098359,"output":" Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Mo"},{"event":"cmd_output","timestamp":1607098359,"output":"del.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:39.720 [info] Block 0 of pipeline with id: 0b1d"},{"event":"cmd_output","timestamp":1607098359,"output":"edf5-3aa9-4066-82de-b4c9391235f2 scheduled in block service with id: : \"17497488-0f0c-4209-b9d5-3fbb"},{"event":"cmd_output","timestamp":1607098359,"output":"1a4074ac\"\n\u001b[0m\u001b[22m\n16:12:39.723 [info] ppl_id: 0b1dedf5-3aa9-4066-82de-b4c9391235f2, type: PplBl"},{"event":"cmd_output","timestamp":1607098359,"output":"ocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loop"},{"event":"cmd_output","timestamp":1607098359,"output":"er.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:39.724 [info] block_id: 17497488-0f0c-4209-"},{"event":"cmd_output","timestamp":1607098359,"output":"b9d5-3fbb1a4074ac, type: BlockRequests, event: persisted build and sub_ppl details for block_request"},{"event":"cmd_output","timestamp":1607098359,"output":": 17497488-0f0c-4209-b9d5-3fbb1a4074ac, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQuerie"},{"event":"cmd_output","timestamp":1607098359,"output":"s.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:39.729 [info] block_id: 17497488-0f0c-4209-b9d5-3fbb1a407"},{"event":"cmd_output","timestamp":1607098359,"output":"4ac, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STM"},{"event":"cmd_output","timestamp":1607098359,"output":"Handler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:39.735 [info] block_id: 17497488-0f0c"},{"event":"cmd_output","timestamp":1607098359,"output":"-4209-b9d5-3fbb1a4074ac, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098359,"output":"igin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:39.751 [info] ppl_id: 235b"},{"event":"cmd_output","timestamp":1607098359,"output":"9bec-509e-4ab8-b807-f78116e16182, type: PplRequests, event: persisted source_args for pipeline: 235b"},{"event":"cmd_output","timestamp":1607098359,"output":"9bec-509e-4ab8-b807-f78116e16182, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_sou"},{"event":"cmd_output","timestamp":1607098359,"output":"rce/2(L89), \n\u001b[0m\u001b[22m\n16:12:39.753 [info] ppl_id: 235b9bec-509e-4ab8-b807-f78116e16182, type: Pp"},{"event":"cmd_output","timestamp":1607098359,"output":"lSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Imp"},{"event":"cmd_output","timestamp":1607098359,"output":"l.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:39.764 [info] block_id: 17497488-0f0c-4209-b9d5-3fbb1"},{"event":"cmd_output","timestamp":1607098359,"output":"a4074ac, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loop"},{"event":"cmd_output","timestamp":1607098359,"output":"er.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:39.771 [info] ppl_id: 235b9bec-509e-4ab8-b8"},{"event":"cmd_output","timestamp":1607098359,"output":"07-f78116e16182, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098359,"output":"origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:39.788 [info] ppl_id: 23"},{"event":"cmd_output","timestamp":1607098359,"output":"5b9bec-509e-4ab8-b807-f78116e16182, type: PplRequests, event: persisted definition for request with "},{"event":"cmd_output","timestamp":1607098359,"output":"request_token: 4064a46e-97c3-44c3-a0bc-2417d22ac288, origin: Elixir.Ppl.PplRequests.Model.PplRequest"},{"event":"cmd_output","timestamp":1607098359,"output":"sQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:39.792 [info] event: created, origin: Elixir."},{"event":"cmd_output","timestamp":1607098359,"output":"Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:39.793 [info] ppl_i"},{"event":"cmd_output","timestamp":1607098359,"output":"d: 235b9bec-509e-4ab8-b807-f78116e16182, type: PplBlocks, block_index: 0, state: initializing, event"},{"event":"cmd_output","timestamp":1607098359,"output":": created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L"},{"event":"cmd_output","timestamp":1607098359,"output":"105), \n\u001b[0m\u001b[22m\n16:12:39.794 [info] ppl_id: 235b9bec-509e-4ab8-b807-f78116e16182, type: PplSubIn"},{"event":"cmd_output","timestamp":1607098359,"output":"its, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.S"},{"event":"cmd_output","timestamp":1607098359,"output":"TM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:39.804 [info] ppl_id: 235b9bec-509e-4ab8-b807-f"},{"event":"cmd_output","timestamp":1607098359,"output":"78116e16182, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098359,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:39.805 [info] ppl_id: 235b9bec-509e-4ab8"},{"event":"cmd_output","timestamp":1607098359,"output":"-b807-f78116e16182, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recover"},{"event":"cmd_output","timestamp":1607098359,"output":"y_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:39.810 [info]"},{"event":"cmd_output","timestamp":1607098359,"output":" ppl_id: 235b9bec-509e-4ab8-b807-f78116e16182, type: Ppls, state: queuing, event: exit_scheduling, "},{"event":"cmd_output","timestamp":1607098359,"output":"recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:39.850"},{"event":"cmd_output","timestamp":1607098359,"output":" [info] block_id: 17497488-0f0c-4209-b9d5-3fbb1a4074ac, type: Tasks, state: done, event: exit_sched"},{"event":"cmd_output","timestamp":1607098359,"output":"uling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12"},{"event":"cmd_output","timestamp":1607098359,"output":":39.857 [info] block_id: 17497488-0f0c-4209-b9d5-3fbb1a4074ac, type: Blocks, state: done, event: ex"},{"event":"cmd_output","timestamp":1607098359,"output":"it_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098359,"output":"m\n16:12:39.864 [info] ppl_id: 0b1dedf5-3aa9-4066-82de-b4c9391235f2, block_id: 17497488-0f0c-4209-b"},{"event":"cmd_output","timestamp":1607098359,"output":"9d5-3fbb1a4074ac, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduli"},{"event":"cmd_output","timestamp":1607098359,"output":"ng, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:39"},{"event":"cmd_output","timestamp":1607098359,"output":".864 [info] ppl_id: e4de57ec-312c-4986-87b4-3beafcad1182, type: PplRequests, event: persisted sourc"},{"event":"cmd_output","timestamp":1607098359,"output":"e_args for pipeline: e4de57ec-312c-4986-87b4-3beafcad1182, origin: Elixir.Ppl.PplRequests.Model.PplR"},{"event":"cmd_output","timestamp":1607098359,"output":"equestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:39.866 [info] ppl_id: e4de57ec-312c-4986-87"},{"event":"cmd_output","timestamp":1607098359,"output":"b4-3beafcad1182, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098359,"output":"in: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:39.874 [info] ppl_id: 0b1ded"},{"event":"cmd_output","timestamp":1607098359,"output":"f5-3aa9-4066-82de-b4c9391235f2, type: Ppls, state: done, result: passed, event: exit_scheduling, rec"},{"event":"cmd_output","timestamp":1607098359,"output":"overy_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:39.886 [i"},{"event":"cmd_output","timestamp":1607098359,"output":"nfo] ppl_id: e4de57ec-312c-4986-87b4-3beafcad1182, type: PplSubInits, state: regular_init, event: e"},{"event":"cmd_output","timestamp":1607098359,"output":"xit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098359,"output":"2m\n16:12:39.901 [info] ppl_id: e4de57ec-312c-4986-87b4-3beafcad1182, type: PplRequests, event: per"},{"event":"cmd_output","timestamp":1607098359,"output":"sisted definition for request with request_token: 450b1a1a-c141-4924-ae70-87dfe73eb91d, origin: Elix"},{"event":"cmd_output","timestamp":1607098359,"output":"ir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:39.904 [inf"},{"event":"cmd_output","timestamp":1607098359,"output":"o] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues"},{"event":"cmd_output","timestamp":1607098359,"output":"\">, inserted_at: ~N[2020-12-04 16:12:39.903357], name: \"master-.semaphore/semaphore.yml\", organizati"},{"event":"cmd_output","timestamp":1607098359,"output":"on_id: \"617d30a9-80cf-48d5-9d7f-759424b48b3a\", project_id: \"456\", queue_id: \"f59432a4-e991-45b6-a5da"},{"event":"cmd_output","timestamp":1607098359,"output":"-b66e16cc8336\", scope: \"project\", updated_at: ~N[2020-12-04 16:12:39.903365], user_generated: false}"},{"event":"cmd_output","timestamp":1607098359,"output":"}\n\u001b[0m\u001b[22m\n16:12:39.907 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.Regular"},{"event":"cmd_output","timestamp":1607098359,"output":"InitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:39.907 [info] ppl_id: e4de57ec-312c-4986-87b4-3beafca"},{"event":"cmd_output","timestamp":1607098359,"output":"d1182, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098359,"output":"in: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:39.909 [i"},{"event":"cmd_output","timestamp":1607098359,"output":"nfo] ppl_id: e4de57ec-312c-4986-87b4-3beafcad1182, type: PplSubInits, state: done, result: passed, "},{"event":"cmd_output","timestamp":1607098359,"output":"event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \r"},{"event":"cmd_output","timestamp":1607098359,"output":"\n\u001b[0m\u001b[22m\n16:12:39.914 [info] ppl_id: e4de57ec-312c-4986-87b4-3beafcad1182, type: PplBlocks, bloc"},{"event":"cmd_output","timestamp":1607098359,"output":"k_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Imp"},{"event":"cmd_output","timestamp":1607098359,"output":"l.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:39.926 [info] ppl_id: e4de57ec-312c-4986-87b4-3beafca"},{"event":"cmd_output","timestamp":1607098359,"output":"d1182, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper."},{"event":"cmd_output","timestamp":1607098359,"output":"STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:39.932 [info] ppl_id: e4de57ec-312c-4986-87b4-"},{"event":"cmd_output","timestamp":1607098359,"output":"3beafcad1182, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098359,"output":"Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:39.939 [info] ppl_id: 235b9bec-509e-4ab"},{"event":"cmd_output","timestamp":1607098359,"output":"8-b807-f78116e16182, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098359,"output":"Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:39.946 [info] PplBlocks WaitingS"},{"event":"cmd_output","timestamp":1607098359,"output":"tate STM is scheduling block 0 from pipeline: \"235b9bec-509e-4ab8-b807-f78116e16182\"\n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098359,"output":"12:39.952 [info] block_id: 7c4e6e14-ee26-4225-ac5a-dd6c45e9f2ee, type: BlockRequests, event: persis"},{"event":"cmd_output","timestamp":1607098359,"output":"ted block run request from ppl 235b9bec-509e-4ab8-b807-f78116e16182 for block 0, origin: Elixir.Bloc"},{"event":"cmd_output","timestamp":1607098359,"output":"k.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:39.956 [info]"},{"event":"cmd_output","timestamp":1607098359,"output":" block_id: 7c4e6e14-ee26-4225-ac5a-dd6c45e9f2ee, type: Blocks, state: initializing, event: initiali"},{"event":"cmd_output","timestamp":1607098359,"output":"zing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098359,"output":"\n16:12:39.958 [info] Block 0 of pipeline with id: 235b9bec-509e-4ab8-b807-f78116e16182 scheduled in"},{"event":"cmd_output","timestamp":1607098359,"output":" block service with id: : \"7c4e6e14-ee26-4225-ac5a-dd6c45e9f2ee\"\n\u001b[0m\u001b[22m\n16:12:39.962 [info] pp"},{"event":"cmd_output","timestamp":1607098359,"output":"l_id: 235b9bec-509e-4ab8-b807-f78116e16182, type: PplBlocks, block_index: 0, state: running, event: "},{"event":"cmd_output","timestamp":1607098359,"output":"exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098359,"output":"22m\n16:12:39.964 [info] block_id: 7c4e6e14-ee26-4225-ac5a-dd6c45e9f2ee, type: BlockRequests, event"},{"event":"cmd_output","timestamp":1607098359,"output":": persisted build and sub_ppl details for block_request: 7c4e6e14-ee26-4225-ac5a-dd6c45e9f2ee, origi"},{"event":"cmd_output","timestamp":1607098359,"output":"n: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:39."},{"event":"cmd_output","timestamp":1607098359,"output":"966 [info] block_id: 7c4e6e14-ee26-4225-ac5a-dd6c45e9f2ee, type: Tasks, state: pending, event: crea"},{"event":"cmd_output","timestamp":1607098359,"output":"ted, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n"},{"event":"cmd_output","timestamp":1607098359,"output":"\u001b[0m\u001b[22m\n16:12:39.967 [info] block_id: 7c4e6e14-ee26-4225-ac5a-dd6c45e9f2ee, type: Blocks, state:"},{"event":"cmd_output","timestamp":1607098359,"output":" running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change"},{"event":"cmd_output","timestamp":1607098359,"output":"/1(L90), \n\u001b[0m\u001b[22m\n16:12:39.968 [info] ppl_id: e4de57ec-312c-4986-87b4-3beafcad1182, type: Ppls,"},{"event":"cmd_output","timestamp":1607098359,"output":" state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state"},{"event":"cmd_output","timestamp":1607098359,"output":"_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:39.975 [info] PplBlocks WaitingState STM is scheduling block 0 f"},{"event":"cmd_output","timestamp":1607098359,"output":"rom pipeline: \"e4de57ec-312c-4986-87b4-3beafcad1182\"\n\u001b[0m\u001b[22m\n16:12:39.977 [info] ppl_id: 70b85e"},{"event":"cmd_output","timestamp":1607098359,"output":"8f-44a0-41ed-8229-40f0047f1835, type: PplRequests, event: persisted source_args for pipeline: 70b85e"},{"event":"cmd_output","timestamp":1607098359,"output":"8f-44a0-41ed-8229-40f0047f1835, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_sourc"},{"event":"cmd_output","timestamp":1607098359,"output":"e/2(L89), \n\u001b[0m\u001b[22m\n16:12:39.980 [info] ppl_id: 70b85e8f-44a0-41ed-8229-40f0047f1835, type: PplS"},{"event":"cmd_output","timestamp":1607098359,"output":"ubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl."},{"event":"cmd_output","timestamp":1607098359,"output":"log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:39.995 [info] block_id: 7c4e6e14-ee26-4225-ac5a-dd6c45e"},{"event":"cmd_output","timestamp":1607098359,"output":"9f2ee, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper"},{"event":"cmd_output","timestamp":1607098359,"output":".STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:39.998 [info] block_id: d8214b5b-09db-4641-8f"},{"event":"cmd_output","timestamp":1607098359,"output":"66-35f3f51dfd40, type: BlockRequests, event: persisted block run request from ppl e4de57ec-312c-4986"},{"event":"cmd_output","timestamp":1607098359,"output":"-87b4-3beafcad1182 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.proces"},{"event":"cmd_output","timestamp":1607098360,"output":"s_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:40.001 [info] block_id: d8214b5b-09db-4641-8f66-35f3f51dfd40,"},{"event":"cmd_output","timestamp":1607098360,"output":" type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blo"},{"event":"cmd_output","timestamp":1607098360,"output":"cks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:40.007 [info] Block 0 of pipeline with id"},{"event":"cmd_output","timestamp":1607098360,"output":": e4de57ec-312c-4986-87b4-3beafcad1182 scheduled in block service with id: : \"d8214b5b-09db-4641-8f6"},{"event":"cmd_output","timestamp":1607098360,"output":"6-35f3f51dfd40\"\n\u001b[0m\u001b[22m\n16:12:40.007 [info] block_id: d8214b5b-09db-4641-8f66-35f3f51dfd40, typ"},{"event":"cmd_output","timestamp":1607098360,"output":"e: BlockRequests, event: persisted build and sub_ppl details for block_request: d8214b5b-09db-4641-8"},{"event":"cmd_output","timestamp":1607098360,"output":"f66-35f3f51dfd40, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41),"},{"event":"cmd_output","timestamp":1607098360,"output":" \n\u001b[0m\u001b[22m\n16:12:40.009 [info] block_id: d8214b5b-09db-4641-8f66-35f3f51dfd40, type: Tasks, stat"},{"event":"cmd_output","timestamp":1607098360,"output":"e: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingSt"},{"event":"cmd_output","timestamp":1607098360,"output":"ate.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:40.011 [info] ppl_id: e4de57ec-312c-4986-87b4-3beafcad1182,"},{"event":"cmd_output","timestamp":1607098360,"output":" type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098360,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.012 [info] block_id: d8214b5"},{"event":"cmd_output","timestamp":1607098360,"output":"b-09db-4641-8f66-35f3f51dfd40, type: Blocks, state: running, event: exit_scheduling, recovery_count:"},{"event":"cmd_output","timestamp":1607098360,"output":" 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.015 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098360,"output":": 70b85e8f-44a0-41ed-8229-40f0047f1835, type: PplSubInits, state: regular_init, event: exit_scheduli"},{"event":"cmd_output","timestamp":1607098360,"output":"ng, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40"},{"event":"cmd_output","timestamp":1607098360,"output":".025 [info] block_id: d8214b5b-09db-4641-8f66-35f3f51dfd40, type: Tasks, state: running, event: exi"},{"event":"cmd_output","timestamp":1607098360,"output":"t_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098360,"output":"\n16:12:40.037 [info] ppl_id: 70b85e8f-44a0-41ed-8229-40f0047f1835, type: PplRequests, event: persi"},{"event":"cmd_output","timestamp":1607098360,"output":"sted definition for request with request_token: 84377d54-e92e-43bc-98da-bce9da0f2073, origin: Elixir"},{"event":"cmd_output","timestamp":1607098360,"output":".Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:40.047 [info]"},{"event":"cmd_output","timestamp":1607098360,"output":" event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098360,"output":"\u001b[22m\n16:12:40.047 [info] ppl_id: 70b85e8f-44a0-41ed-8229-40f0047f1835, type: PplBlocks, block_ind"},{"event":"cmd_output","timestamp":1607098360,"output":"ex: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHan"},{"event":"cmd_output","timestamp":1607098360,"output":"dler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:40.049 [info] ppl_id: 70b85e8f-44a0-41ed-"},{"event":"cmd_output","timestamp":1607098360,"output":"8229-40f0047f1835, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_"},{"event":"cmd_output","timestamp":1607098360,"output":"count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.057 [info] "},{"event":"cmd_output","timestamp":1607098360,"output":"ppl_id: 70b85e8f-44a0-41ed-8229-40f0047f1835, type: PplBlocks, block_index: 0, state: waiting, event"},{"event":"cmd_output","timestamp":1607098360,"output":": exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098360,"output":"\u001b[22m\n16:12:40.058 [info] ppl_id: 70b85e8f-44a0-41ed-8229-40f0047f1835, type: Ppls, state: pending"},{"event":"cmd_output","timestamp":1607098360,"output":", event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90),"},{"event":"cmd_output","timestamp":1607098360,"output":" \n\u001b[0m\u001b[22m\n16:12:40.065 [info] ppl_id: 70b85e8f-44a0-41ed-8229-40f0047f1835, type: Ppls, state: "},{"event":"cmd_output","timestamp":1607098360,"output":"queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/"},{"event":"cmd_output","timestamp":1607098360,"output":"1(L90), \n\u001b[0m\u001b[22m\n16:12:40.065 [info] block_id: 7c4e6e14-ee26-4225-ac5a-dd6c45e9f2ee, type: Task"},{"event":"cmd_output","timestamp":1607098360,"output":"s, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_"},{"event":"cmd_output","timestamp":1607098360,"output":"change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.070 [info] block_id: 7c4e6e14-ee26-4225-ac5a-dd6c45e9f2ee, typ"},{"event":"cmd_output","timestamp":1607098360,"output":"e: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.lo"},{"event":"cmd_output","timestamp":1607098360,"output":"g_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.078 [info] ppl_id: 235b9bec-509e-4ab8-b807-f78116e1618"},{"event":"cmd_output","timestamp":1607098360,"output":"2, block_id: 7c4e6e14-ee26-4225-ac5a-dd6c45e9f2ee, type: PplBlocks, block_index: 0, state: done, res"},{"event":"cmd_output","timestamp":1607098360,"output":"ult: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_cha"},{"event":"cmd_output","timestamp":1607098360,"output":"nge/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.089 [info] ppl_id: 68a5c6f6-33c3-4253-89f5-7f0f2c18d6e2, type: Pp"},{"event":"cmd_output","timestamp":1607098360,"output":"lRequests, event: persisted source_args for pipeline: 68a5c6f6-33c3-4253-89f5-7f0f2c18d6e2, origin: "},{"event":"cmd_output","timestamp":1607098360,"output":"Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:40.091 [inf"},{"event":"cmd_output","timestamp":1607098360,"output":"o] ppl_id: 68a5c6f6-33c3-4253-89f5-7f0f2c18d6e2, type: PplSubInits, state: fetching, event: exit_sc"},{"event":"cmd_output","timestamp":1607098360,"output":"heduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098360,"output":":12:40.092 [info] ppl_id: 235b9bec-509e-4ab8-b807-f78116e16182, type: Ppls, state: done, result: pa"},{"event":"cmd_output","timestamp":1607098360,"output":"ssed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098360,"output":"90), \n\u001b[0m\u001b[22m\n16:12:40.107 [info] ppl_id: 68a5c6f6-33c3-4253-89f5-7f0f2c18d6e2, type: PplSubIni"},{"event":"cmd_output","timestamp":1607098360,"output":"ts, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.l"},{"event":"cmd_output","timestamp":1607098360,"output":"og_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.127 [info] ppl_id: 68a5c6f6-33c3-4253-89f5-7f0f2c18d6"},{"event":"cmd_output","timestamp":1607098360,"output":"e2, type: PplRequests, event: persisted definition for request with request_token: e3694e25-5d98-457"},{"event":"cmd_output","timestamp":1607098360,"output":"3-ab97-f8b2d33db1aa, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76"},{"event":"cmd_output","timestamp":1607098360,"output":"), \n\u001b[0m\u001b[22m\n16:12:40.130 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto"},{"event":"cmd_output","timestamp":1607098360,"output":".Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:12:40.128868], name: \"dev-.semaph"},{"event":"cmd_output","timestamp":1607098360,"output":"ore/semaphore.yml\", organization_id: \"45882ba8-3099-4b64-b584-d96636136e65\", project_id: \"123\", queu"},{"event":"cmd_output","timestamp":1607098360,"output":"e_id: \"0e9e4f9c-2432-4289-b4a1-4c28a79b9ed1\", scope: \"project\", updated_at: ~N[2020-12-04 16:12:40.1"},{"event":"cmd_output","timestamp":1607098360,"output":"28876], user_generated: false}}\n\u001b[0m\u001b[22m\n16:12:40.134 [info] event: created, origin: Elixir.Ppl."},{"event":"cmd_output","timestamp":1607098360,"output":"PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:40.135 [info] ppl_id: 6"},{"event":"cmd_output","timestamp":1607098360,"output":"8a5c6f6-33c3-4253-89f5-7f0f2c18d6e2, type: PplBlocks, block_index: 0, state: initializing, event: cr"},{"event":"cmd_output","timestamp":1607098360,"output":"eated, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105)"},{"event":"cmd_output","timestamp":1607098360,"output":", \n\u001b[0m\u001b[22m\n16:12:40.136 [info] ppl_id: 68a5c6f6-33c3-4253-89f5-7f0f2c18d6e2, type: PplSubInits,"},{"event":"cmd_output","timestamp":1607098360,"output":" state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.I"},{"event":"cmd_output","timestamp":1607098360,"output":"mpl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.143 [info] ppl_id: 68a5c6f6-33c3-4253-89f5-7f0f2"},{"event":"cmd_output","timestamp":1607098360,"output":"c18d6e2, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098360,"output":" origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.145 [info] ppl_id: 6"},{"event":"cmd_output","timestamp":1607098360,"output":"8a5c6f6-33c3-4253-89f5-7f0f2c18d6e2, type: Ppls, state: pending, event: exit_scheduling, recovery_co"},{"event":"cmd_output","timestamp":1607098360,"output":"unt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.151 [info] pp"},{"event":"cmd_output","timestamp":1607098360,"output":"l_id: 68a5c6f6-33c3-4253-89f5-7f0f2c18d6e2, type: Ppls, state: queuing, event: exit_scheduling, reco"},{"event":"cmd_output","timestamp":1607098360,"output":"very_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.157 [in"},{"event":"cmd_output","timestamp":1607098360,"output":"fo] ppl_id: 68a5c6f6-33c3-4253-89f5-7f0f2c18d6e2, type: Ppls, state: running, event: exit_schedulin"},{"event":"cmd_output","timestamp":1607098360,"output":"g, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40."},{"event":"cmd_output","timestamp":1607098360,"output":"162 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"68a5c6f6-33c3-4253-89f5"},{"event":"cmd_output","timestamp":1607098360,"output":"-7f0f2c18d6e2\"\n\u001b[0m\u001b[22m\n16:12:40.166 [info] block_id: e0b6b6a1-dd7c-430e-83b7-f82bf2b25d35, type"},{"event":"cmd_output","timestamp":1607098360,"output":": BlockRequests, event: persisted block run request from ppl 68a5c6f6-33c3-4253-89f5-7f0f2c18d6e2 fo"},{"event":"cmd_output","timestamp":1607098360,"output":"r block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n"},{"event":"cmd_output","timestamp":1607098360,"output":"\u001b[0m\u001b[22m\n16:12:40.167 [info] block_id: e0b6b6a1-dd7c-430e-83b7-f82bf2b25d35, type: Blocks, state:"},{"event":"cmd_output","timestamp":1607098360,"output":" initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueri"},{"event":"cmd_output","timestamp":1607098360,"output":"es.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:40.171 [info] Block 0 of pipeline with id: 68a5c6f6-33c3-4253-"},{"event":"cmd_output","timestamp":1607098360,"output":"89f5-7f0f2c18d6e2 scheduled in block service with id: : \"e0b6b6a1-dd7c-430e-83b7-f82bf2b25d35\"\n\u001b[0m"},{"event":"cmd_output","timestamp":1607098360,"output":"\u001b[22m\n16:12:40.174 [info] ppl_id: 68a5c6f6-33c3-4253-89f5-7f0f2c18d6e2, type: PplBlocks, block_ind"},{"event":"cmd_output","timestamp":1607098360,"output":"ex: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098360,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.174 [info] block_id: e0b6b6a1-dd7c-430e-83b7-f82bf2b25d"},{"event":"cmd_output","timestamp":1607098360,"output":"35, type: BlockRequests, event: persisted build and sub_ppl details for block_request: e0b6b6a1-dd7c"},{"event":"cmd_output","timestamp":1607098360,"output":"-430e-83b7-f82bf2b25d35, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/"},{"event":"cmd_output","timestamp":1607098360,"output":"2(L41), \n\u001b[0m\u001b[22m\n16:12:40.180 [info] block_id: e0b6b6a1-dd7c-430e-83b7-f82bf2b25d35, type: Task"},{"event":"cmd_output","timestamp":1607098360,"output":"s, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.Initial"},{"event":"cmd_output","timestamp":1607098360,"output":"izingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:40.181 [info] block_id: e0b6b6a1-dd7c-430e-83b7-f82b"},{"event":"cmd_output","timestamp":1607098360,"output":"f2b25d35, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Lo"},{"event":"cmd_output","timestamp":1607098360,"output":"oper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.182 [info] block_id: d8214b5b-09db-464"},{"event":"cmd_output","timestamp":1607098360,"output":"1-8f66-35f3f51dfd40, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098360,"output":"ixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.187 [info] block_id: d8214b5b-0"},{"event":"cmd_output","timestamp":1607098360,"output":"9db-4641-8f66-35f3f51dfd40, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098360,"output":"igin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.195 [info] block_id: e0"},{"event":"cmd_output","timestamp":1607098360,"output":"b6b6a1-dd7c-430e-83b7-f82bf2b25d35, type: Tasks, state: running, event: exit_scheduling, recovery_co"},{"event":"cmd_output","timestamp":1607098360,"output":"unt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.200 [info] pp"},{"event":"cmd_output","timestamp":1607098360,"output":"l_id: e4de57ec-312c-4986-87b4-3beafcad1182, block_id: d8214b5b-09db-4641-8f66-35f3f51dfd40, type: Pp"},{"event":"cmd_output","timestamp":1607098360,"output":"lBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098360,"output":"gin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.202 [info] ppl_id: 0bf50"},{"event":"cmd_output","timestamp":1607098360,"output":"b5f-d726-4d0b-8453-3c296be7a44e, type: PplRequests, event: persisted source_args for pipeline: 0bf50"},{"event":"cmd_output","timestamp":1607098360,"output":"b5f-d726-4d0b-8453-3c296be7a44e, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_sour"},{"event":"cmd_output","timestamp":1607098360,"output":"ce/2(L89), \n\u001b[0m\u001b[22m\n16:12:40.207 [info] ppl_id: 0bf50b5f-d726-4d0b-8453-3c296be7a44e, type: Ppl"},{"event":"cmd_output","timestamp":1607098360,"output":"SubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl"},{"event":"cmd_output","timestamp":1607098360,"output":".log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.215 [info] ppl_id: e4de57ec-312c-4986-87b4-3beafcad"},{"event":"cmd_output","timestamp":1607098360,"output":"1182, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098360,"output":"ixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.232 [info] ppl_id: 0bf50b5f-d72"},{"event":"cmd_output","timestamp":1607098360,"output":"6-4d0b-8453-3c296be7a44e, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098360,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.251 [info] p"},{"event":"cmd_output","timestamp":1607098360,"output":"pl_id: 0bf50b5f-d726-4d0b-8453-3c296be7a44e, type: PplRequests, event: persisted definition for requ"},{"event":"cmd_output","timestamp":1607098360,"output":"est with request_token: decc0ab3-b404-468a-8c65-133ac843ac9f, origin: Elixir.Ppl.PplRequests.Model.P"},{"event":"cmd_output","timestamp":1607098360,"output":"plRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:40.256 [info] event: created, origin"},{"event":"cmd_output","timestamp":1607098360,"output":": Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:40.256 [inf"},{"event":"cmd_output","timestamp":1607098360,"output":"o] ppl_id: 0bf50b5f-d726-4d0b-8453-3c296be7a44e, type: PplBlocks, block_index: 0, state: initializi"},{"event":"cmd_output","timestamp":1607098360,"output":"ng, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.al"},{"event":"cmd_output","timestamp":1607098360,"output":"l_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:40.257 [info] ppl_id: 0bf50b5f-d726-4d0b-8453-3c296be7a44e, type:"},{"event":"cmd_output","timestamp":1607098360,"output":" PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098360,"output":".Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.263 [info] ppl_id: 0bf50b5f-d726-4d"},{"event":"cmd_output","timestamp":1607098360,"output":"0b-8453-3c296be7a44e, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recov"},{"event":"cmd_output","timestamp":1607098360,"output":"ery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.264 [inf"},{"event":"cmd_output","timestamp":1607098360,"output":"o] ppl_id: 0bf50b5f-d726-4d0b-8453-3c296be7a44e, type: Ppls, state: pending, event: exit_scheduling"},{"event":"cmd_output","timestamp":1607098360,"output":", recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.2"},{"event":"cmd_output","timestamp":1607098360,"output":"68 [info] ppl_id: 0bf50b5f-d726-4d0b-8453-3c296be7a44e, type: Ppls, state: queuing, event: exit_sch"},{"event":"cmd_output","timestamp":1607098360,"output":"eduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098360,"output":"12:40.274 [info] ppl_id: 70b85e8f-44a0-41ed-8229-40f0047f1835, type: Ppls, state: running, event: e"},{"event":"cmd_output","timestamp":1607098360,"output":"xit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098360,"output":"2m\n16:12:40.278 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"70b85e8f-4"},{"event":"cmd_output","timestamp":1607098360,"output":"4a0-41ed-8229-40f0047f1835\"\n\u001b[0m\u001b[22m\n16:12:40.281 [info] block_id: e11fb940-3b9e-4429-8ce8-05b39"},{"event":"cmd_output","timestamp":1607098360,"output":"0c4c228, type: BlockRequests, event: persisted block run request from ppl 70b85e8f-44a0-41ed-8229-40"},{"event":"cmd_output","timestamp":1607098360,"output":"f0047f1835 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_respon"},{"event":"cmd_output","timestamp":1607098360,"output":"se/4(L35), \n\u001b[0m\u001b[22m\n16:12:40.284 [info] block_id: e11fb940-3b9e-4429-8ce8-05b390c4c228, type: B"},{"event":"cmd_output","timestamp":1607098360,"output":"locks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Mode"},{"event":"cmd_output","timestamp":1607098360,"output":"l.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:40.286 [info] Block 0 of pipeline with id: 70b85e"},{"event":"cmd_output","timestamp":1607098360,"output":"8f-44a0-41ed-8229-40f0047f1835 scheduled in block service with id: : \"e11fb940-3b9e-4429-8ce8-05b390"},{"event":"cmd_output","timestamp":1607098360,"output":"c4c228\"\n\u001b[0m\u001b[22m\n16:12:40.291 [info] ppl_id: 70b85e8f-44a0-41ed-8229-40f0047f1835, type: PplBloc"},{"event":"cmd_output","timestamp":1607098360,"output":"ks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper"},{"event":"cmd_output","timestamp":1607098360,"output":".STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.292 [info] block_id: e11fb940-3b9e-4429-8c"},{"event":"cmd_output","timestamp":1607098360,"output":"e8-05b390c4c228, type: BlockRequests, event: persisted build and sub_ppl details for block_request: "},{"event":"cmd_output","timestamp":1607098360,"output":"e11fb940-3b9e-4429-8ce8-05b390c4c228, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries."},{"event":"cmd_output","timestamp":1607098360,"output":"insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:40.292 [info] block_id: e0b6b6a1-dd7c-430e-83b7-f82bf2b25d3"},{"event":"cmd_output","timestamp":1607098360,"output":"5, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Im"},{"event":"cmd_output","timestamp":1607098360,"output":"pl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.293 [info] block_id: e11fb940-3b9e-4429-8ce8-05b3"},{"event":"cmd_output","timestamp":1607098360,"output":"90c4c228, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Block"},{"event":"cmd_output","timestamp":1607098360,"output":"s.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:40.295 [info] block_id: e11fb940"},{"event":"cmd_output","timestamp":1607098360,"output":"-3b9e-4429-8ce8-05b390c4c228, type: Blocks, state: running, event: exit_scheduling, recovery_count: "},{"event":"cmd_output","timestamp":1607098360,"output":"0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.298 [info] block_i"},{"event":"cmd_output","timestamp":1607098360,"output":"d: e0b6b6a1-dd7c-430e-83b7-f82bf2b25d35, type: Blocks, state: done, event: exit_scheduling, recovery"},{"event":"cmd_output","timestamp":1607098360,"output":"_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.312 [info] "},{"event":"cmd_output","timestamp":1607098360,"output":" ppl_id: 68a5c6f6-33c3-4253-89f5-7f0f2c18d6e2, block_id: e0b6b6a1-dd7c-430e-83b7-f82bf2b25d35, type:"},{"event":"cmd_output","timestamp":1607098360,"output":" PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098360,"output":"origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.312 [info] block_id: "},{"event":"cmd_output","timestamp":1607098360,"output":"e11fb940-3b9e-4429-8ce8-05b390c4c228, type: Tasks, state: running, event: exit_scheduling, recovery_"},{"event":"cmd_output","timestamp":1607098360,"output":"count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.318 [info] "},{"event":"cmd_output","timestamp":1607098360,"output":"ppl_id: 49bf201d-fbc9-4782-96fa-4d356073b39d, type: PplRequests, event: persisted source_args for pi"},{"event":"cmd_output","timestamp":1607098360,"output":"peline: 49bf201d-fbc9-4782-96fa-4d356073b39d, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQuerie"},{"event":"cmd_output","timestamp":1607098360,"output":"s.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:40.320 [info] ppl_id: 49bf201d-fbc9-4782-96fa-4d356073b3"},{"event":"cmd_output","timestamp":1607098360,"output":"9d, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Lo"},{"event":"cmd_output","timestamp":1607098360,"output":"oper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.324 [info] ppl_id: 68a5c6f6-33c3-4253-"},{"event":"cmd_output","timestamp":1607098360,"output":"89f5-7f0f2c18d6e2, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: "},{"event":"cmd_output","timestamp":1607098360,"output":"0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.339 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098360,"output":" 49bf201d-fbc9-4782-96fa-4d356073b39d, type: PplSubInits, state: regular_init, event: exit_schedulin"},{"event":"cmd_output","timestamp":1607098360,"output":"g, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40."},{"event":"cmd_output","timestamp":1607098360,"output":"358 [info] ppl_id: 49bf201d-fbc9-4782-96fa-4d356073b39d, type: PplRequests, event: persisted defini"},{"event":"cmd_output","timestamp":1607098360,"output":"tion for request with request_token: 28590fb4-8de2-411d-8304-824eb7fd254f, origin: Elixir.Ppl.PplReq"},{"event":"cmd_output","timestamp":1607098360,"output":"uests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:40.361 [info] Queue per"},{"event":"cmd_output","timestamp":1607098360,"output":"sisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_"},{"event":"cmd_output","timestamp":1607098360,"output":"at: ~N[2020-12-04 16:12:40.360690], name: \"dev-.semaphore/semaphore.yml\", organization_id: \"742c623e"},{"event":"cmd_output","timestamp":1607098360,"output":"-3421-4f5c-b440-5b47c622ff44\", project_id: \"456\", queue_id: \"23c8f076-f1f6-4ba6-8581-a41a9d27a96d\", "},{"event":"cmd_output","timestamp":1607098360,"output":"scope: \"project\", updated_at: ~N[2020-12-04 16:12:40.360698], user_generated: false}}\n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098360,"output":":12:40.364 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok"},{"event":"cmd_output","timestamp":1607098360,"output":"?/1(L105), \n\u001b[0m\u001b[22m\n16:12:40.364 [info] ppl_id: 49bf201d-fbc9-4782-96fa-4d356073b39d, type: Ppl"},{"event":"cmd_output","timestamp":1607098360,"output":"Blocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.P"},{"event":"cmd_output","timestamp":1607098360,"output":"plSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:40.366 [info] ppl_id: 49"},{"event":"cmd_output","timestamp":1607098360,"output":"bf201d-fbc9-4782-96fa-4d356073b39d, type: PplSubInits, state: done, result: passed, event: exit_sche"},{"event":"cmd_output","timestamp":1607098360,"output":"duling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098360,"output":"2:40.371 [info] ppl_id: 49bf201d-fbc9-4782-96fa-4d356073b39d, type: PplBlocks, block_index: 0, stat"},{"event":"cmd_output","timestamp":1607098360,"output":"e: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chan"},{"event":"cmd_output","timestamp":1607098360,"output":"ge/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.371 [info] ppl_id: 49bf201d-fbc9-4782-96fa-4d356073b39d, type: Ppl"},{"event":"cmd_output","timestamp":1607098360,"output":"s, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_sta"},{"event":"cmd_output","timestamp":1607098360,"output":"te_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.377 [info] ppl_id: 49bf201d-fbc9-4782-96fa-4d356073b39d, ty"},{"event":"cmd_output","timestamp":1607098360,"output":"pe: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl."},{"event":"cmd_output","timestamp":1607098360,"output":"log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.384 [info] ppl_id: 0bf50b5f-d726-4d0b-8453-3c296be7a"},{"event":"cmd_output","timestamp":1607098360,"output":"44e, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.ST"},{"event":"cmd_output","timestamp":1607098360,"output":"M.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.391 [info] PplBlocks WaitingState STM is sche"},{"event":"cmd_output","timestamp":1607098360,"output":"duling block 0 from pipeline: \"0bf50b5f-d726-4d0b-8453-3c296be7a44e\"\n\u001b[0m\u001b[22m\n16:12:40.395 [info]"},{"event":"cmd_output","timestamp":1607098360,"output":" block_id: dd880ca4-1654-4c63-b5ac-428b4d278070, type: BlockRequests, event: persisted block run re"},{"event":"cmd_output","timestamp":1607098360,"output":"quest from ppl 0bf50b5f-d726-4d0b-8453-3c296be7a44e for block 0, origin: Elixir.Block.BlockRequests."},{"event":"cmd_output","timestamp":1607098360,"output":"Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:40.400 [info] ppl_id: 49bf20"},{"event":"cmd_output","timestamp":1607098360,"output":"1d-fbc9-4782-96fa-4d356073b39d, type: Ppls, state: running, event: exit_scheduling, recovery_count: "},{"event":"cmd_output","timestamp":1607098360,"output":"0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.400 [info] block_i"},{"event":"cmd_output","timestamp":1607098360,"output":"d: dd880ca4-1654-4c63-b5ac-428b4d278070, type: Blocks, state: initializing, event: initializing, rec"},{"event":"cmd_output","timestamp":1607098360,"output":"overy_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:40"},{"event":"cmd_output","timestamp":1607098360,"output":".404 [info] Block 0 of pipeline with id: 0bf50b5f-d726-4d0b-8453-3c296be7a44e scheduled in block se"},{"event":"cmd_output","timestamp":1607098360,"output":"rvice with id: : \"dd880ca4-1654-4c63-b5ac-428b4d278070\"\n\u001b[0m\u001b[22m\n16:12:40.407 [info] block_id: e"},{"event":"cmd_output","timestamp":1607098360,"output":"11fb940-3b9e-4429-8ce8-05b390c4c228, type: Tasks, state: done, event: exit_scheduling, recovery_coun"},{"event":"cmd_output","timestamp":1607098360,"output":"t: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.408 [info] ppl_"},{"event":"cmd_output","timestamp":1607098360,"output":"id: 0bf50b5f-d726-4d0b-8453-3c296be7a44e, type: PplBlocks, block_index: 0, state: running, event: ex"},{"event":"cmd_output","timestamp":1607098360,"output":"it_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098360,"output":"m\n16:12:40.410 [info] block_id: dd880ca4-1654-4c63-b5ac-428b4d278070, type: BlockRequests, event: "},{"event":"cmd_output","timestamp":1607098360,"output":"persisted build and sub_ppl details for block_request: dd880ca4-1654-4c63-b5ac-428b4d278070, origin:"},{"event":"cmd_output","timestamp":1607098360,"output":" Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:40.41"},{"event":"cmd_output","timestamp":1607098360,"output":"2 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"49bf201d-fbc9-4782-96fa-4"},{"event":"cmd_output","timestamp":1607098360,"output":"d356073b39d\"\n\u001b[0m\u001b[22m\n16:12:40.412 [info] block_id: dd880ca4-1654-4c63-b5ac-428b4d278070, type: "},{"event":"cmd_output","timestamp":1607098360,"output":"Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.Ini"},{"event":"cmd_output","timestamp":1607098360,"output":"tializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:40.415 [info] block_id: dd880ca4-1654-4c63-b5ac-"},{"event":"cmd_output","timestamp":1607098360,"output":"428b4d278070, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098360,"output":"r.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.415 [info] block_id: e11fb940-3b9e"},{"event":"cmd_output","timestamp":1607098360,"output":"-4429-8ce8-05b390c4c228, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098360,"output":"n: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.420 [info] block_id: 5196e"},{"event":"cmd_output","timestamp":1607098360,"output":"490-319b-4a83-b375-3e632c7af221, type: BlockRequests, event: persisted block run request from ppl 49"},{"event":"cmd_output","timestamp":1607098360,"output":"bf201d-fbc9-4782-96fa-4d356073b39d for block 0, origin: Elixir.Block.BlockRequests.Model.BlockReques"},{"event":"cmd_output","timestamp":1607098360,"output":"tsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:40.428 [info] block_id: 5196e490-319b-4a83-b3"},{"event":"cmd_output","timestamp":1607098360,"output":"75-3e632c7af221, type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098360,"output":"Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:40.434 [info] Block 0 of "},{"event":"cmd_output","timestamp":1607098360,"output":"pipeline with id: 49bf201d-fbc9-4782-96fa-4d356073b39d scheduled in block service with id: : \"5196e4"},{"event":"cmd_output","timestamp":1607098360,"output":"90-319b-4a83-b375-3e632c7af221\"\n\u001b[0m\u001b[22m\n16:12:40.435 [info] ppl_id: 70b85e8f-44a0-41ed-8229-40f"},{"event":"cmd_output","timestamp":1607098360,"output":"0047f1835, block_id: e11fb940-3b9e-4429-8ce8-05b390c4c228, type: PplBlocks, block_index: 0, state: d"},{"event":"cmd_output","timestamp":1607098360,"output":"one, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_s"},{"event":"cmd_output","timestamp":1607098360,"output":"tate_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.439 [info] block_id: dd880ca4-1654-4c63-b5ac-428b4d278070"},{"event":"cmd_output","timestamp":1607098360,"output":", type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM."},{"event":"cmd_output","timestamp":1607098360,"output":"Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.439 [info] ppl_id: 49bf201d-fbc9-4782-96fa-4d35"},{"event":"cmd_output","timestamp":1607098360,"output":"6073b39d, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0"},{"event":"cmd_output","timestamp":1607098360,"output":", origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.441 [info] block_id"},{"event":"cmd_output","timestamp":1607098360,"output":": 5196e490-319b-4a83-b375-3e632c7af221, type: BlockRequests, event: persisted build and sub_ppl deta"},{"event":"cmd_output","timestamp":1607098360,"output":"ils for block_request: 5196e490-319b-4a83-b375-3e632c7af221, origin: Elixir.Block.BlockRequests.Mode"},{"event":"cmd_output","timestamp":1607098360,"output":"l.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:40.443 [info] block_id: 5196e490-319"},{"event":"cmd_output","timestamp":1607098360,"output":"b-4a83-b375-3e632c7af221, type: Tasks, state: pending, event: created, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098360,"output":"ixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:40.445 [info] bl"},{"event":"cmd_output","timestamp":1607098360,"output":"ock_id: 5196e490-319b-4a83-b375-3e632c7af221, type: Blocks, state: running, event: exit_scheduling, "},{"event":"cmd_output","timestamp":1607098360,"output":"recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.448"},{"event":"cmd_output","timestamp":1607098360,"output":" [info] ppl_id: 4e792e1f-fc4b-482d-b5a8-fa123e4502d9, type: PplRequests, event: persisted source_ar"},{"event":"cmd_output","timestamp":1607098360,"output":"gs for pipeline: 4e792e1f-fc4b-482d-b5a8-fa123e4502d9, origin: Elixir.Ppl.PplRequests.Model.PplReque"},{"event":"cmd_output","timestamp":1607098360,"output":"stsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:40.450 [info] ppl_id: 4e792e1f-fc4b-482d-b5a8-f"},{"event":"cmd_output","timestamp":1607098360,"output":"a123e4502d9, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098360,"output":"Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.463 [info] block_id: 5196e490"},{"event":"cmd_output","timestamp":1607098360,"output":"-319b-4a83-b375-3e632c7af221, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0"},{"event":"cmd_output","timestamp":1607098360,"output":", origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.467 [info] ppl_id: "},{"event":"cmd_output","timestamp":1607098360,"output":"70b85e8f-44a0-41ed-8229-40f0047f1835, type: Ppls, state: done, result: passed, event: exit_schedulin"},{"event":"cmd_output","timestamp":1607098360,"output":"g, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40."},{"event":"cmd_output","timestamp":1607098360,"output":"480 [info] ppl_id: 4e792e1f-fc4b-482d-b5a8-fa123e4502d9, type: PplSubInits, state: regular_init, ev"},{"event":"cmd_output","timestamp":1607098360,"output":"ent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b"},{"event":"cmd_output","timestamp":1607098360,"output":"[0m\u001b[22m\n16:12:40.498 [info] ppl_id: 4e792e1f-fc4b-482d-b5a8-fa123e4502d9, type: PplRequests, even"},{"event":"cmd_output","timestamp":1607098360,"output":"t: persisted definition for request with request_token: 6e7d40d2-715a-4089-a5ca-8ac2b075bc65, origin"},{"event":"cmd_output","timestamp":1607098360,"output":": Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:40.50"},{"event":"cmd_output","timestamp":1607098360,"output":"1 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105)"},{"event":"cmd_output","timestamp":1607098360,"output":", \n\u001b[0m\u001b[22m\n16:12:40.502 [info] ppl_id: 4e792e1f-fc4b-482d-b5a8-fa123e4502d9, type: PplBlocks, b"},{"event":"cmd_output","timestamp":1607098360,"output":"lock_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInit"},{"event":"cmd_output","timestamp":1607098360,"output":"s.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:40.504 [info] ppl_id: 4e792e1f-fc"},{"event":"cmd_output","timestamp":1607098360,"output":"4b-482d-b5a8-fa123e4502d9, type: PplSubInits, state: done, result: passed, event: exit_scheduling, r"},{"event":"cmd_output","timestamp":1607098360,"output":"ecovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.510 "},{"event":"cmd_output","timestamp":1607098360,"output":"[info] ppl_id: 4e792e1f-fc4b-482d-b5a8-fa123e4502d9, type: Ppls, state: pending, event: exit_schedu"},{"event":"cmd_output","timestamp":1607098360,"output":"ling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:"},{"event":"cmd_output","timestamp":1607098360,"output":"40.511 [info] ppl_id: 4e792e1f-fc4b-482d-b5a8-fa123e4502d9, type: PplBlocks, block_index: 0, state:"},{"event":"cmd_output","timestamp":1607098360,"output":" waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change"},{"event":"cmd_output","timestamp":1607098360,"output":"/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.517 [info] block_id: dd880ca4-1654-4c63-b5ac-428b4d278070, type: Tas"},{"event":"cmd_output","timestamp":1607098360,"output":"ks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state"},{"event":"cmd_output","timestamp":1607098360,"output":"_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.519 [info] ppl_id: 4e792e1f-fc4b-482d-b5a8-fa123e4502d9, type"},{"event":"cmd_output","timestamp":1607098360,"output":": Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.lo"},{"event":"cmd_output","timestamp":1607098360,"output":"g_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.522 [info] block_id: dd880ca4-1654-4c63-b5ac-428b4d278"},{"event":"cmd_output","timestamp":1607098360,"output":"070, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM"},{"event":"cmd_output","timestamp":1607098360,"output":".Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.531 [info] ppl_id: 0bf50b5f-d726-4d0b-8453-3c2"},{"event":"cmd_output","timestamp":1607098360,"output":"96be7a44e, block_id: dd880ca4-1654-4c63-b5ac-428b4d278070, type: PplBlocks, block_index: 0, state: d"},{"event":"cmd_output","timestamp":1607098360,"output":"one, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_s"},{"event":"cmd_output","timestamp":1607098360,"output":"tate_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.540 [info] ppl_id: 0bf50b5f-d726-4d0b-8453-3c296be7a44e, "},{"event":"cmd_output","timestamp":1607098360,"output":"type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098360,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.624 [info] block_id: 5196e490-319b-4a"},{"event":"cmd_output","timestamp":1607098360,"output":"83-b375-3e632c7af221, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: E"},{"event":"cmd_output","timestamp":1607098360,"output":"lixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.628 [info] block_id: 5196e490-"},{"event":"cmd_output","timestamp":1607098360,"output":"319b-4a83-b375-3e632c7af221, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098360,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.632 [info] ppl_id: 49b"},{"event":"cmd_output","timestamp":1607098360,"output":"f201d-fbc9-4782-96fa-4d356073b39d, block_id: 5196e490-319b-4a83-b375-3e632c7af221, type: PplBlocks, "},{"event":"cmd_output","timestamp":1607098360,"output":"block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098360,"output":"ir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.641 [info] ppl_id: 49bf201d-fbc9-"},{"event":"cmd_output","timestamp":1607098360,"output":"4782-96fa-4d356073b39d, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_co"},{"event":"cmd_output","timestamp":1607098360,"output":"unt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.715 [info] pp"},{"event":"cmd_output","timestamp":1607098360,"output":"l_id: 4e792e1f-fc4b-482d-b5a8-fa123e4502d9, type: Ppls, state: running, event: exit_scheduling, reco"},{"event":"cmd_output","timestamp":1607098360,"output":"very_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.719 [in"},{"event":"cmd_output","timestamp":1607098360,"output":"fo] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"4e792e1f-fc4b-482d-b5a8-fa123e"},{"event":"cmd_output","timestamp":1607098360,"output":"4502d9\"\n\u001b[0m\u001b[22m\n16:12:40.726 [info] block_id: a2a151f3-057d-4c30-b770-8a2b16621cd2, type: Block"},{"event":"cmd_output","timestamp":1607098360,"output":"Requests, event: persisted block run request from ppl 4e792e1f-fc4b-482d-b5a8-fa123e4502d9 for block"},{"event":"cmd_output","timestamp":1607098360,"output":" 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098360,"output":"2m\n16:12:40.727 [info] block_id: a2a151f3-057d-4c30-b770-8a2b16621cd2, type: Blocks, state: initia"},{"event":"cmd_output","timestamp":1607098360,"output":"lizing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.inse"},{"event":"cmd_output","timestamp":1607098360,"output":"rt/1(L43), \n\u001b[0m\u001b[22m\n16:12:40.729 [info] Block 0 of pipeline with id: 4e792e1f-fc4b-482d-b5a8-fa"},{"event":"cmd_output","timestamp":1607098360,"output":"123e4502d9 scheduled in block service with id: : \"a2a151f3-057d-4c30-b770-8a2b16621cd2\"\n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098360,"output":"16:12:40.731 [info] ppl_id: 4e792e1f-fc4b-482d-b5a8-fa123e4502d9, type: PplBlocks, block_index: 0, "},{"event":"cmd_output","timestamp":1607098360,"output":"state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_"},{"event":"cmd_output","timestamp":1607098360,"output":"change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.733 [info] block_id: a2a151f3-057d-4c30-b770-8a2b16621cd2, typ"},{"event":"cmd_output","timestamp":1607098360,"output":"e: BlockRequests, event: persisted build and sub_ppl details for block_request: a2a151f3-057d-4c30-b"},{"event":"cmd_output","timestamp":1607098360,"output":"770-8a2b16621cd2, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41),"},{"event":"cmd_output","timestamp":1607098360,"output":" \n\u001b[0m\u001b[22m\n16:12:40.734 [info] block_id: a2a151f3-057d-4c30-b770-8a2b16621cd2, type: Tasks, stat"},{"event":"cmd_output","timestamp":1607098360,"output":"e: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingSt"},{"event":"cmd_output","timestamp":1607098360,"output":"ate.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:40.741 [info] block_id: a2a151f3-057d-4c30-b770-8a2b16621cd"},{"event":"cmd_output","timestamp":1607098360,"output":"2, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.ST"},{"event":"cmd_output","timestamp":1607098360,"output":"M.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.758 [info] block_id: a2a151f3-057d-4c30-b770-"},{"event":"cmd_output","timestamp":1607098360,"output":"8a2b16621cd2, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098360,"output":".Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.840 [info] block_id: a2a151f3-057d-"},{"event":"cmd_output","timestamp":1607098360,"output":"4c30-b770-8a2b16621cd2, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098360,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.844 [info] block_id: a2a151f"},{"event":"cmd_output","timestamp":1607098360,"output":"3-057d-4c30-b770-8a2b16621cd2, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098360,"output":" origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.855 [info] ppl_id: 4"},{"event":"cmd_output","timestamp":1607098360,"output":"e792e1f-fc4b-482d-b5a8-fa123e4502d9, block_id: a2a151f3-057d-4c30-b770-8a2b16621cd2, type: PplBlocks"},{"event":"cmd_output","timestamp":1607098360,"output":", block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098360,"output":"ixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.864 [info] ppl_id: 4e792e1f-fc4"},{"event":"cmd_output","timestamp":1607098360,"output":"b-482d-b5a8-fa123e4502d9, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_"},{"event":"cmd_output","timestamp":1607098360,"output":"count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test gRPC list_gro"},{"event":"cmd_output","timestamp":1607098360,"output":"uped() - org scoped user generated queues (1601.2ms)\u001b[0m\n * test gRPC terminate() - terminate run"},{"event":"cmd_output","timestamp":1607098361,"output":"ning pipeline\u001b[22m\n16:12:41.032 [info] Request: 'run: %{\"branch_id\" => \"1506a2ab-da20-43ff-8c67-77"},{"event":"cmd_output","timestamp":1607098361,"output":"eae01f0093\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"semaphore.yml\""},{"event":"cmd_output","timestamp":1607098361,"output":", \"hook_id\" => \"88c9dcbc-364b-11eb-b18a-5254005464e2\", \"label\" => \"master\", \"organization_id\" => \"86"},{"event":"cmd_output","timestamp":1607098361,"output":"b4a9e9-969f-401b-b58f-a4aecdc85f2a\", \"owner\" => \"rt\", \"project_id\" => \"757f29e6-abd9-44d0-be5f-bf570"},{"event":"cmd_output","timestamp":1607098361,"output":"b35df24\", \"repo_name\" => \"7_termination\", \"request_token\" => \"88c9d53c-364b-11eb-9a67-5254005464e2\","},{"event":"cmd_output","timestamp":1607098361,"output":" \"requester_id\" => \"c778128c-06d8-4427-b505-215a2bf12ec8\", \"service\" => \"local\", \"suppressed_attribu"},{"event":"cmd_output","timestamp":1607098361,"output":"tes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"d2ed9033-e01b-4b0e-b056-1bfc7389c5e7\", \"worki"},{"event":"cmd_output","timestamp":1607098361,"output":"ng_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:12:41.036 [info] ppl_id: d9ce2d1e-ec7b-4d84-8597-7874c6cc3f"},{"event":"cmd_output","timestamp":1607098361,"output":"59, type: PplRequests, event: persisted schedule request with request_token: 88c9d53c-364b-11eb-9a67"},{"event":"cmd_output","timestamp":1607098361,"output":"-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b["},{"event":"cmd_output","timestamp":1607098361,"output":"0m\u001b[22m\n16:12:41.039 [info] ppl_id: d9ce2d1e-ec7b-4d84-8597-7874c6cc3f59, type: Ppls, state: initi"},{"event":"cmd_output","timestamp":1607098361,"output":"alizing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_r"},{"event":"cmd_output","timestamp":1607098361,"output":"esponse/2(L124), \n\u001b[0m\u001b[22m\n16:12:41.042 [info] Project 757f29e6-abd9-44d0-be5f-bf570b35df24 and "},{"event":"cmd_output","timestamp":1607098361,"output":"branch masterlatest_wf details updated: \"wf_id: d2ed9033-e01b-4b0e-b056-1bfc7389c5e7, wf_number: 1\"\r"},{"event":"cmd_output","timestamp":1607098361,"output":"\n\u001b[0m\u001b[22m\n16:12:41.043 [info] Persisted ppl_sub_init for pipeline with ppl_id: d9ce2d1e-ec7b-4d84"},{"event":"cmd_output","timestamp":1607098361,"output":"-8597-7874c6cc3f59: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pip"},{"event":"cmd_output","timestamp":1607098361,"output":"eline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 255, in_scheduling: false, init"},{"event":"cmd_output","timestamp":1607098361,"output":"_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:41.042183], pipeline_requests: #Ecto.Association."},{"event":"cmd_output","timestamp":1607098361,"output":"NotLoaded, ppl_id: \"d9ce2d1e-ec7b-4d84-8597-7874c6cc3f"},{"event":"cmd_output","timestamp":1607098361,"output":"59\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, t"},{"event":"cmd_output","timestamp":1607098361,"output":"erminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:41.042188]}\n\u001b[0m\u001b[22m\n16:12:41.046 [in"},{"event":"cmd_output","timestamp":1607098361,"output":"fo] Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.STM"},{"event":"cmd_output","timestamp":1607098361,"output":"Handler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHan"},{"event":"cmd_output","timestamp":1607098361,"output":"dler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], co"},{"event":"cmd_output","timestamp":1607098361,"output":"oling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher_cb:"},{"event":"cmd_output","timestamp":1607098361,"output":" #Function<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, retur"},{"event":"cmd_output","timestamp":1607098361,"output":"ning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl"},{"event":"cmd_output","timestamp":1607098361,"output":".Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:41.046 [info] Periodic from module Elix"},{"event":"cmd_output","timestamp":1607098361,"output":"ir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 100"},{"event":"cmd_output","timestamp":1607098361,"output":" ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args: %{"},{"event":"cmd_output","timestamp":1607098361,"output":"allowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.P"},{"event":"cmd_output","timestamp":1607098361,"output":"pls.Model.Ppls, observed_state: \"pending\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandle"},{"event":"cmd_output","timestamp":1607098361,"output":"r.PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state"},{"event":"cmd_output","timestamp":1607098361,"output":", :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervis"},{"event":"cmd_output","timestamp":1607098361,"output":"or}\n\u001b[0m\u001b[22m\n16:12:41.047 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.QueuingState wi"},{"event":"cmd_output","timestamp":1607098361,"output":"th name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_"},{"event":"cmd_output","timestamp":1607098361,"output":"up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{allowed_states: [\"queuing\", \"running\","},{"event":"cmd_output","timestamp":1607098361,"output":" \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", publi"},{"event":"cmd_output","timestamp":1607098361,"output":"sher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, re"},{"event":"cmd_output","timestamp":1607098361,"output":"turning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: "},{"event":"cmd_output","timestamp":1607098361,"output":"Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:41.048 [info] Periodic from module E"},{"event":"cmd_output","timestamp":1607098361,"output":"lixir.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHandler.RunningState :: period: "},{"event":"cmd_output","timestamp":1607098361,"output":"100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring args:"},{"event":"cmd_output","timestamp":1607098361,"output":" %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Mo"},{"event":"cmd_output","timestamp":1607098361,"output":"del.Ppls, observed_state: \"running\", publisher_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler.Run"},{"event":"cmd_output","timestamp":1607098361,"output":"ningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :re"},{"event":"cmd_output","timestamp":1607098361,"output":"sult, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n"},{"event":"cmd_output","timestamp":1607098361,"output":"\u001b[0m\u001b[22m\n16:12:41.049 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.StoppingState with n"},{"event":"cmd_output","timestamp":1607098361,"output":"ame Elixir.Ppl.Ppls.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\""},{"event":"cmd_output","timestamp":1607098361,"output":", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], co"},{"event":"cmd_output","timestamp":1607098361,"output":"oling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"stopping\", publisher_cb: #F"},{"event":"cmd_output","timestamp":1607098361,"output":"unction<0.71803493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:"},{"event":"cmd_output","timestamp":1607098361,"output":"id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Mo"},{"event":"cmd_output","timestamp":1607098361,"output":"del.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:41.049 [info] Periodic from module Elixir.Ppl.P"},{"event":"cmd_output","timestamp":1607098361,"output":"plSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: perio"},{"event":"cmd_output","timestamp":1607098361,"output":"d: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recur"},{"event":"cmd_output","timestamp":1607098361,"output":"ring args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubIni"},{"event":"cmd_output","timestamp":1607098361,"output":"ts.Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning:"},{"event":"cmd_output","timestamp":1607098361,"output":" [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplS"},{"event":"cmd_output","timestamp":1607098361,"output":"ubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:41.050 [info] Periodic from mo"},{"event":"cmd_output","timestamp":1607098361,"output":"dule Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler.Fet"},{"event":"cmd_output","timestamp":1607098361,"output":"chingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-Fet"},{"event":"cmd_output","timestamp":1607098361,"output":"chingState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"done\"], cooling_ti"},{"event":"cmd_output","timestamp":1607098361,"output":"me_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fetching\", publisher_"},{"event":"cmd_output","timestamp":1607098361,"output":"cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :r"},{"event":"cmd_output","timestamp":1607098361,"output":"ecovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098361,"output":"2m\n16:12:41.050 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CompilationState wit"},{"event":"cmd_output","timestamp":1607098361,"output":"h name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 100 ms, metric_name: {\"Ppl.beho"},{"event":"cmd_output","timestamp":1607098361,"output":"lder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurring args: %{allowed_states: ["},{"event":"cmd_output","timestamp":1607098361,"output":"\"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubI"},{"event":"cmd_output","timestamp":1607098361,"output":"nits.Model.PplSubInits, observed_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, retu"},{"event":"cmd_output","timestamp":1607098361,"output":"rning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Pp"},{"event":"cmd_output","timestamp":1607098361,"output":"l.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:41.051 [info] Periodic f"},{"event":"cmd_output","timestamp":1607098361,"output":"rom module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHa"},{"event":"cmd_output","timestamp":1607098361,"output":"ndler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-ST"},{"event":"cmd_output","timestamp":1607098361,"output":"MHandler-RegularInitState\"]}, recurring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, initi"},{"event":"cmd_output","timestamp":1607098361,"output":"al_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_init\", publisher_cb: :skip, re"},{"event":"cmd_output","timestamp":1607098361,"output":"po: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count"},{"event":"cmd_output","timestamp":1607098361,"output":", :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:41."},{"event":"cmd_output","timestamp":1607098361,"output":"051 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.InitializingState with name Elixir."},{"event":"cmd_output","timestamp":1607098361,"output":"Ppl.PplBlocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", "},{"event":"cmd_output","timestamp":1607098361,"output":"[\"Ppl-PplBlocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", "},{"event":"cmd_output","timestamp":1607098361,"output":"\"waiting\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_stat"},{"event":"cmd_output","timestamp":1607098361,"output":"e: \"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :up"},{"event":"cmd_output","timestamp":1607098361,"output":"dated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplB"},{"event":"cmd_output","timestamp":1607098361,"output":"locks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:41.052 [info] Periodic from module Elixir.Ppl.PplB"},{"event":"cmd_output","timestamp":1607098361,"output":"locks.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler.WaitingState :: period: 1000"},{"event":"cmd_output","timestamp":1607098361,"output":" ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurring arg"},{"event":"cmd_output","timestamp":1607098361,"output":"s: %{allowed_states: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBloc"},{"event":"cmd_output","timestamp":1607098361,"output":"ks.Model.PplBlocks, observed_state: \"waiting\", publisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks."},{"event":"cmd_output","timestamp":1607098361,"output":"STMHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_a"},{"event":"cmd_output","timestamp":1607098361,"output":"t, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, "},{"event":"cmd_output","timestamp":1607098361,"output":"task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:41.052 [info] Periodic from module Elixir.Ppl.PplBlocks.S"},{"event":"cmd_output","timestamp":1607098361,"output":"TMHandler.RunningState with name Elixir.Ppl.PplBlocks.STMHandler.RunningState :: period: 1000 ms, me"},{"event":"cmd_output","timestamp":1607098361,"output":"tric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, recurring args: %{al"},{"event":"cmd_output","timestamp":1607098361,"output":"lowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Mo"},{"event":"cmd_output","timestamp":1607098361,"output":"del.PplBlocks, observed_state: \"running\", publisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMH"},{"event":"cmd_output","timestamp":1607098361,"output":"andler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :"},{"event":"cmd_output","timestamp":1607098361,"output":"state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplB"},{"event":"cmd_output","timestamp":1607098361,"output":"locks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:41.053 [info] Periodic from module Elixir.Ppl.PplB"},{"event":"cmd_output","timestamp":1607098361,"output":"locks.STMHandler.StoppingState with name Elixir.Ppl.PplBlocks.STMHandler.StoppingState :: period: 10"},{"event":"cmd_output","timestamp":1607098361,"output":"00 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurring "},{"event":"cmd_output","timestamp":1607098361,"output":"args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Mod"},{"event":"cmd_output","timestamp":1607098361,"output":"el.PplBlocks, observed_state: \"stopping\", publisher_cb: #Function<0.104215991/1 in Ppl.PplBlocks.STM"},{"event":"cmd_output","timestamp":1607098361,"output":"Handler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at,"},{"event":"cmd_output","timestamp":1607098361,"output":" :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.Pp"},{"event":"cmd_output","timestamp":1607098361,"output":"lBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:41.053 [info] Periodic from module Elixir.Block."},{"event":"cmd_output","timestamp":1607098361,"output":"Blocks.STMHandler.InitializingState with name Elixir.Block.Blocks.STMHandler.InitializingState :: pe"},{"event":"cmd_output","timestamp":1607098361,"output":"riod: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, "},{"event":"cmd_output","timestamp":1607098361,"output":"recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Blo"},{"event":"cmd_output","timestamp":1607098361,"output":"cks.Model.Blocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Block.EctoRepo, returni"},{"event":"cmd_output","timestamp":1607098361,"output":"ng: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks"},{"event":"cmd_output","timestamp":1607098361,"output":".Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:41.054 [info] Periodic from module Elixir."},{"event":"cmd_output","timestamp":1607098361,"output":"Block.Blocks.STMHandler.RunningState with name Elixir.Block.Blocks.STMHandler.RunningState :: period"},{"event":"cmd_output","timestamp":1607098361,"output":": 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-RunningState\"]}, recurring"},{"event":"cmd_output","timestamp":1607098361,"output":" args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block"},{"event":"cmd_output","timestamp":1607098361,"output":".Blocks.Model.Blocks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returnin"},{"event":"cmd_output","timestamp":1607098361,"output":"g: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks."},{"event":"cmd_output","timestamp":1607098361,"output":"Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:41.055 [info] Periodic from module Elixir.B"},{"event":"cmd_output","timestamp":1607098361,"output":"lock.Blocks.STMHandler.StoppingState with name Elixir.Block.Blocks.STMHandler.StoppingState :: perio"},{"event":"cmd_output","timestamp":1607098361,"output":"d: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-StoppingState\"]}, recurri"},{"event":"cmd_output","timestamp":1607098361,"output":"ng args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.M"},{"event":"cmd_output","timestamp":1607098361,"output":"odel.Blocks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id,"},{"event":"cmd_output","timestamp":1607098361,"output":" :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Bl"},{"event":"cmd_output","timestamp":1607098361,"output":"ocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:41.055 [info] Periodic from module Elixir.Block.Tas"},{"event":"cmd_output","timestamp":1607098361,"output":"ks.STMHandler.PendingState with name Elixir.Block.Tasks.STMHandler.PendingState :: period: 100 ms, m"},{"event":"cmd_output","timestamp":1607098361,"output":"etric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingState\"]}, recurring args: %{all"},{"event":"cmd_output","timestamp":1607098361,"output":"owed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Tasks.Model.Tasks, obser"},{"event":"cmd_output","timestamp":1607098361,"output":"ved_state: \"pending\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request"},{"event":"cmd_output","timestamp":1607098361,"output":", :updated_at, :state, :recovery_count, :block_id, :build_request_id], schema: Block.Tasks.Model.Tas"},{"event":"cmd_output","timestamp":1607098361,"output":"ks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:41.056 [info] Periodic from module Elixir.Block.Tasks"},{"event":"cmd_output","timestamp":1607098361,"output":".STMHandler.RunningState with name Elixir.Block.Tasks.STMHandler.RunningState :: period: 100 ms, met"},{"event":"cmd_output","timestamp":1607098361,"output":"ric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningState\"]}, recurring args: %{allow"},{"event":"cmd_output","timestamp":1607098361,"output":"ed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.T"},{"event":"cmd_output","timestamp":1607098361,"output":"asks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :termin"},{"event":"cmd_output","timestamp":1607098361,"output":"ate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task"},{"event":"cmd_output","timestamp":1607098361,"output":"_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:41.056 [info] Periodic from module Elixir.Block.Tasks.STMHand"},{"event":"cmd_output","timestamp":1607098361,"output":"ler.StoppingState with name Elixir.Block.Tasks.STMHandler.StoppingState :: period: 100 ms, metric_na"},{"event":"cmd_output","timestamp":1607098361,"output":"me: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]}, recurring args: %{allowed_st"},{"event":"cmd_output","timestamp":1607098361,"output":"ates: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_s"},{"event":"cmd_output","timestamp":1607098361,"output":"tate: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :u"},{"event":"cmd_output","timestamp":1607098361,"output":"pdated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :s"},{"event":"cmd_output","timestamp":1607098361,"output":"kip}\n\u001b[0m\u001b[22m\n16:12:41.160 [info] ppl_id: d9ce2d1e-ec7b-4d84-8597-7874c6cc3f59, type: PplRequest"},{"event":"cmd_output","timestamp":1607098361,"output":"s, event: persisted source_args for pipeline: d9ce2d1e-ec7b-4d84-8597-7874c6cc3f59, origin: Elixir.P"},{"event":"cmd_output","timestamp":1607098361,"output":"pl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:41.161 [info] ppl_"},{"event":"cmd_output","timestamp":1607098361,"output":"id: d9ce2d1e-ec7b-4d84-8597-7874c6cc3f59, type: PplSubInits, state: fetching, event: exit_scheduling"},{"event":"cmd_output","timestamp":1607098361,"output":", recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:41.1"},{"event":"cmd_output","timestamp":1607098361,"output":"83 [info] ppl_id: d9ce2d1e-ec7b-4d84-8597-7874c6cc3f59, type: PplSubInits, state: regular_init, eve"},{"event":"cmd_output","timestamp":1607098361,"output":"nt: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b["},{"event":"cmd_output","timestamp":1607098361,"output":"0m\u001b[22m\n16:12:41.200 [info] ppl_id: d9ce2d1e-ec7b-4d84-8597-7874c6cc3f59, type: PplRequests, event"},{"event":"cmd_output","timestamp":1607098361,"output":": persisted definition for request with request_token: 88c9d53c-364b-11eb-9a67-5254005464e2, origin:"},{"event":"cmd_output","timestamp":1607098361,"output":" Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:41.202"},{"event":"cmd_output","timestamp":1607098361,"output":" [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"q"},{"event":"cmd_output","timestamp":1607098361,"output":"ueues\">, inserted_at: ~N[2020-12-04 16:12:41.201340], name: \"master-.semaphore/semaphore.yml\", organ"},{"event":"cmd_output","timestamp":1607098361,"output":"ization_id: \"86b4a9e9-969f-401b-b58f-a4aecdc85f2a\", project_id: \"757f29e6-abd9-44d0-be5f-bf570b35df2"},{"event":"cmd_output","timestamp":1607098361,"output":"4\", queue_id: \"2c009f43-da17-4b10-873d-2766ba9e7fb5\", scope: \"project\", updated_at: ~N[2020-12-04 16"},{"event":"cmd_output","timestamp":1607098361,"output":":12:41.201348], user_generated: false}}\n\u001b[0m\u001b[22m\n16:12:41.207 [info] ppl_id: not_available, even"},{"event":"cmd_output","timestamp":1607098361,"output":"t: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098361,"output":"\n16:12:41.207 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all"},{"event":"cmd_output","timestamp":1607098361,"output":"_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:41.207 [info] ppl_id: d9ce2d1e-ec7b-4d84-8597-7874c6cc3f59, type: "},{"event":"cmd_output","timestamp":1607098361,"output":"PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Pp"},{"event":"cmd_output","timestamp":1607098361,"output":"l.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:41.207 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098361,"output":" d9ce2d1e-ec7b-4d84-8597-7874c6cc3f59, type: PplBlocks, block_index: 1, state: initializing, event: "},{"event":"cmd_output","timestamp":1607098361,"output":"created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L10"},{"event":"cmd_output","timestamp":1607098361,"output":"5), \n\u001b[0m\u001b[22m\n16:12:41.208 [info] ppl_id: d9ce2d1e-ec7b-4d84-8597-7874c6cc3f59, type: PplSubInit"},{"event":"cmd_output","timestamp":1607098361,"output":"s, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM"},{"event":"cmd_output","timestamp":1607098361,"output":".Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:41.214 [info] ppl_id: d9ce2d1e-ec7b-4d84-8597-787"},{"event":"cmd_output","timestamp":1607098361,"output":"4c6cc3f59, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: "},{"event":"cmd_output","timestamp":1607098361,"output":"0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:41.216 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098361,"output":" d9ce2d1e-ec7b-4d84-8597-7874c6cc3f59, type: Ppls, state: pending, event: exit_scheduling, recovery_"},{"event":"cmd_output","timestamp":1607098361,"output":"count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:41.219 [info] "},{"event":"cmd_output","timestamp":1607098361,"output":"ppl_id: d9ce2d1e-ec7b-4d84-8597-7874c6cc3f59, type: PplBlocks, block_index: 1, state: waiting, event"},{"event":"cmd_output","timestamp":1607098361,"output":": exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098361,"output":"\u001b[22m\n16:12:41.227 [info] ppl_id: d9ce2d1e-ec7b-4d84-8597-7874c6cc3f59, type: Ppls, state: queuing"},{"event":"cmd_output","timestamp":1607098361,"output":", event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90),"},{"event":"cmd_output","timestamp":1607098361,"output":" \n\u001b[0m\u001b[22m\n16:12:41.234 [info] ppl_id: d9ce2d1e-ec7b-4d84-8597-7874c6cc3f59, type: Ppls, state: "},{"event":"cmd_output","timestamp":1607098361,"output":"running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/"},{"event":"cmd_output","timestamp":1607098361,"output":"1(L90), \n\u001b[0m\u001b[22m\n16:12:41.240 [info] PplBlocks WaitingState STM is scheduling block 0 from pipe"},{"event":"cmd_output","timestamp":1607098361,"output":"line: \"d9ce2d1e-ec7b-4d84-8597-7874c6cc3f59\"\n\u001b[0m\u001b[22m\n16:12:41.252 [info] block_id: 57c7d664-432"},{"event":"cmd_output","timestamp":1607098361,"output":"1-4194-9056-1a6b891eb7f9, type: BlockRequests, event: persisted block run request from ppl d9ce2d1e-"},{"event":"cmd_output","timestamp":1607098361,"output":"ec7b-4d84-8597-7874c6cc3f59 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueri"},{"event":"cmd_output","timestamp":1607098361,"output":"es.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:41.257 [info] block_id: 57c7d664-4321-4194-9056-1a6b"},{"event":"cmd_output","timestamp":1607098361,"output":"891eb7f9, type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098361,"output":"Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:41.261 [info] Block 0 of pipelin"},{"event":"cmd_output","timestamp":1607098361,"output":"e with id: d9ce2d1e-ec7b-4d84-8597-7874c6cc3f59 scheduled in block service with id: : \"57c7d664-4321"},{"event":"cmd_output","timestamp":1607098361,"output":"-4194-9056-1a6b891eb7f9\"\n\u001b[0m\u001b[22m\n16:12:41.264 [info] block_id: 57c7d664-4321-4194-9056-1a6b891e"},{"event":"cmd_output","timestamp":1607098361,"output":"b7f9, type: BlockRequests, event: persisted build and sub_ppl details for block_request: 57c7d664-43"},{"event":"cmd_output","timestamp":1607098361,"output":"21-4194-9056-1a6b891eb7f9, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_buil"},{"event":"cmd_output","timestamp":1607098361,"output":"d/2(L41), \n\u001b[0m\u001b[22m\n16:12:41.266 [info] ppl_id: d9ce2d1e-ec7b-4d84-8597-7874c6cc3f59, type: PplB"},{"event":"cmd_output","timestamp":1607098361,"output":"locks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loo"},{"event":"cmd_output","timestamp":1607098361,"output":"per.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:41.267 [info] block_id: 57c7d664-4321-4194"},{"event":"cmd_output","timestamp":1607098361,"output":"-9056-1a6b891eb7f9, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.B"},{"event":"cmd_output","timestamp":1607098361,"output":"lock.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:41.272 [info] block_id"},{"event":"cmd_output","timestamp":1607098361,"output":": 57c7d664-4321-4194-9056-1a6b891eb7f9, type: Blocks, state: running, event: exit_scheduling, recove"},{"event":"cmd_output","timestamp":1607098361,"output":"ry_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:41.295 [info"},{"event":"cmd_output","timestamp":1607098361,"output":"] block_id: 57c7d664-4321-4194-9056-1a6b891eb7f9, type: Tasks, state: running, event: exit_scheduli"},{"event":"cmd_output","timestamp":1607098365,"output":"ng, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:45"},{"event":"cmd_output","timestamp":1607098365,"output":".076 [info] Request: 'terminate', request: %{\"ppl_id\" => \"d9ce2d1e-ec7b-4d84-8597-7874c6cc3f59\", \"r"},{"event":"cmd_output","timestamp":1607098365,"output":"equester_id\" => \"095c198e-eceb-4763-b7b7-45fa11d9a706\"}\n\u001b[0m\u001b[22m\n16:12:45.087 [info] ppl_id: d9c"},{"event":"cmd_output","timestamp":1607098365,"output":"e2d1e-ec7b-4d84-8597-7874c6cc3f59, type: Ppls, state: stopping, event: exit_scheduling, recovery_cou"},{"event":"cmd_output","timestamp":1607098365,"output":"nt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:45.093 [info] ppl"},{"event":"cmd_output","timestamp":1607098365,"output":"_id: d9ce2d1e-ec7b-4d84-8597-7874c6cc3f59, type: PplBlocks, block_index: 1, state: done, result: can"},{"event":"cmd_output","timestamp":1607098365,"output":"celed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1("},{"event":"cmd_output","timestamp":1607098365,"output":"L90), \n\u001b[0m\u001b[22m\n16:12:45.099 [info] ppl_id: d9ce2d1e-ec7b-4d84-8597-7874c6cc3f59, block_id: 57c7"},{"event":"cmd_output","timestamp":1607098365,"output":"d664-4321-4194-9056-1a6b891eb7f9, type: PplBlocks, block_index: 0, state: stopping, event: exit_sche"},{"event":"cmd_output","timestamp":1607098365,"output":"duling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098365,"output":"2:45.103 [info] block_id: 57c7d664-4321-4194-9056-1a6b891eb7f9, type: Blocks, state: stopping, even"},{"event":"cmd_output","timestamp":1607098365,"output":"t: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098365,"output":"m\u001b[22m\n16:12:45.116 [info] block_id: 57c7d664-4321-4194-9056-1a6b891eb7f9, type: Tasks, state: sto"},{"event":"cmd_output","timestamp":1607098365,"output":"pping, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1("},{"event":"cmd_output","timestamp":1607098371,"output":"L90), \n\u001b[0m\u001b[22m\n16:12:51.333 [info] block_id: 57c7d664-4321-4194-9056-1a6b891eb7f9, type: Tasks,"},{"event":"cmd_output","timestamp":1607098371,"output":" state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_ch"},{"event":"cmd_output","timestamp":1607098371,"output":"ange/1(L90), \n\u001b[0m\u001b[22m\n16:12:51.338 [info] block_id: 57c7d664-4321-4194-9056-1a6b891eb7f9, type:"},{"event":"cmd_output","timestamp":1607098371,"output":" Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_"},{"event":"cmd_output","timestamp":1607098371,"output":"state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:51.348 [info] ppl_id: d9ce2d1e-ec7b-4d84-8597-7874c6cc3f59,"},{"event":"cmd_output","timestamp":1607098371,"output":" block_id: 57c7d664-4321-4194-9056-1a6b891eb7f9, type: PplBlocks, block_index: 0, state: done, resul"},{"event":"cmd_output","timestamp":1607098371,"output":"t: stopped, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chan"},{"event":"cmd_output","timestamp":1607098371,"output":"ge/1(L90), \n\u001b[0m\u001b[22m\n16:12:51.358 [info] ppl_id: d9ce2d1e-ec7b-4d84-8597-7874c6cc3f59, type: Ppl"},{"event":"cmd_output","timestamp":1607098371,"output":"s, state: done, result: stopped, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.ST"},{"event":"cmd_output","timestamp":1607098372,"output":"M.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test gRPC terminate() - terminate running pipeline ("},{"event":"cmd_output","timestamp":1607098372,"output":"11149.3ms)\u001b[0m\n * test gRPC list_queues() - valid params - success\r * test gRPC list_queues() - v"},{"event":"cmd_output","timestamp":1607098372,"output":"alid params - success (skipped)\n * test gRPC describe_topology() - parallelism in jobs\u001b[22m\n16:12"},{"event":"cmd_output","timestamp":1607098372,"output":":52.198 [info] Request: 'run: %{:repo_name => \"27_parallelism\", \"branch_id\" => \"76070e52-4e96-4da6-"},{"event":"cmd_output","timestamp":1607098372,"output":"ae3a-c3eb47f5c4e5\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"semapho"},{"event":"cmd_output","timestamp":1607098372,"output":"re.yml\", \"hook_id\" => \"8f71aa18-364b-11eb-b021-5254005464e2\", \"label\" => \"master\", \"organization_id\""},{"event":"cmd_output","timestamp":1607098372,"output":" => \"07f4a16c-f87c-4150-9f2e-56ede8f9e0ba\", \"owner\" => \"rt\", \"project_id\" => \"0463e402-c95f-4351-b92"},{"event":"cmd_output","timestamp":1607098372,"output":"a-97b9805bbffc\", \"repo_name\" => \"2_basic\", \"request_token\" => \"8f71a34c-364b-11eb-977d-5254005464e2\""},{"event":"cmd_output","timestamp":1607098372,"output":", \"requester_id\" => \"967067d5-f7dc-49b2-8fea-09f6f27f42d2\", \"service\" => \"local\", \"suppressed_attrib"},{"event":"cmd_output","timestamp":1607098372,"output":"utes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"55b59388-9e32-4e08-b13b-4135cd9ca7c5\", \"work"},{"event":"cmd_output","timestamp":1607098372,"output":"ing_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:12:52.204 [info] ppl_id: 2b070e83-78e5-4bd9-9ed1-e6b7292f3"},{"event":"cmd_output","timestamp":1607098372,"output":"fd9, type: PplRequests, event: persisted schedule request with request_token: 8f71a34c-364b-11eb-977"},{"event":"cmd_output","timestamp":1607098372,"output":"d-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b"},{"event":"cmd_output","timestamp":1607098372,"output":"[0m\u001b[22m\n16:12:52.207 [info] ppl_id: 2b070e83-78e5-4bd9-9ed1-e6b7292f3fd9, type: Ppls, state: init"},{"event":"cmd_output","timestamp":1607098372,"output":"ializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_"},{"event":"cmd_output","timestamp":1607098372,"output":"response/2(L124), \n\u001b[0m\u001b[22m\n16:12:52.212 [info] Project 0463e402-c95f-4351-b92a-97b9805bbffc and"},{"event":"cmd_output","timestamp":1607098372,"output":" branch masterlatest_wf details updated: \"wf_id: 55b59388-9e32-4e08-b13b-4135cd9ca7c5, wf_number: 1\""},{"event":"cmd_output","timestamp":1607098372,"output":"\n\u001b[0m\u001b[22m\n16:12:52.213 [info] Persisted ppl_sub_init for pipeline with ppl_id: 2b070e83-78e5-4bd"},{"event":"cmd_output","timestamp":1607098372,"output":"9-9ed1-e6b7292f3fd9: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pi"},{"event":"cmd_output","timestamp":1607098372,"output":"peline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 256, in_scheduling: false, ini"},{"event":"cmd_output","timestamp":1607098372,"output":"t_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:52.212211], pipeline_requests: #Ecto.Association"},{"event":"cmd_output","timestamp":1607098372,"output":".NotLoaded, ppl_id: \"2b070e83-78e5-4bd9-9ed1-e6b7292f3"},{"event":"cmd_output","timestamp":1607098372,"output":"fd9\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, "},{"event":"cmd_output","timestamp":1607098372,"output":"terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:52.212217]}\n\u001b[0m\u001b[22m\n16:12:52.217 [i"},{"event":"cmd_output","timestamp":1607098372,"output":"nfo] Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.ST"},{"event":"cmd_output","timestamp":1607098372,"output":"MHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHa"},{"event":"cmd_output","timestamp":1607098372,"output":"ndler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], c"},{"event":"cmd_output","timestamp":1607098372,"output":"ooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher_cb"},{"event":"cmd_output","timestamp":1607098372,"output":": #Function<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, retu"},{"event":"cmd_output","timestamp":1607098372,"output":"rning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Pp"},{"event":"cmd_output","timestamp":1607098372,"output":"l.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:52.217 [info] Periodic from module Eli"},{"event":"cmd_output","timestamp":1607098372,"output":"xir.Ppl.PplSubInits.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHandler.RegularI"},{"event":"cmd_output","timestamp":1607098372,"output":"nitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-Regul"},{"event":"cmd_output","timestamp":1607098372,"output":"arInitState\"]}, recurring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, initial_query: Ppl."},{"event":"cmd_output","timestamp":1607098372,"output":"PplSubInits.Model.PplSubInits, observed_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRe"},{"event":"cmd_output","timestamp":1607098372,"output":"po, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], sc"},{"event":"cmd_output","timestamp":1607098372,"output":"hema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:52.217 [info] Pe"},{"event":"cmd_output","timestamp":1607098372,"output":"riodic from module Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl.PplSubInits."},{"event":"cmd_output","timestamp":1607098372,"output":"STMHandler.FetchingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-"},{"event":"cmd_output","timestamp":1607098372,"output":"STMHandler-FetchingState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"done"},{"event":"cmd_output","timestamp":1607098372,"output":"\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fetchin"},{"event":"cmd_output","timestamp":1607098372,"output":"g\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :stat"},{"event":"cmd_output","timestamp":1607098372,"output":"e, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :"},{"event":"cmd_output","timestamp":1607098372,"output":"skip}\n\u001b[0m\u001b[22m\n16:12:52.217 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.Compil"},{"event":"cmd_output","timestamp":1607098372,"output":"ationState with name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 100 ms, metric_na"},{"event":"cmd_output","timestamp":1607098372,"output":"me: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurring args: %{all"},{"event":"cmd_output","timestamp":1607098372,"output":"owed_states: [\"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_quer"},{"event":"cmd_output","timestamp":1607098372,"output":"y: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"compilation\", publisher_cb: :skip, repo: Ppl."},{"event":"cmd_output","timestamp":1607098372,"output":"EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_i"},{"event":"cmd_output","timestamp":1607098372,"output":"d], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:52.218 [inf"},{"event":"cmd_output","timestamp":1607098372,"output":"o] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubI"},{"event":"cmd_output","timestamp":1607098372,"output":"nits.STMHandler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubIn"},{"event":"cmd_output","timestamp":1607098372,"output":"its-STMHandler-CreatedState\"]}, recurring args: %{allowed_states: [\"fetching\", \"done\"], cooling_time"},{"event":"cmd_output","timestamp":1607098372,"output":"_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"created\", publisher_cb: "},{"event":"cmd_output","timestamp":1607098372,"output":":skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recov"},{"event":"cmd_output","timestamp":1607098372,"output":"ery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098372,"output":"16:12:52.332 [info] ppl_id: 2b070e83-78e5-4bd9-9ed1-e6b7292f3fd9, type: PplRequests, event: persist"},{"event":"cmd_output","timestamp":1607098372,"output":"ed source_args for pipeline: 2b070e83-78e5-4bd9-9ed1-e6b7292f3fd9, origin: Elixir.Ppl.PplRequests.Mo"},{"event":"cmd_output","timestamp":1607098372,"output":"del.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:52.334 [info] ppl_id: 2b070e83-78e5"},{"event":"cmd_output","timestamp":1607098372,"output":"-4bd9-9ed1-e6b7292f3fd9, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count:"},{"event":"cmd_output","timestamp":1607098372,"output":" 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:52.351 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098372,"output":": 2b070e83-78e5-4bd9-9ed1-e6b7292f3fd9, type: PplSubInits, state: regular_init, event: exit_scheduli"},{"event":"cmd_output","timestamp":1607098372,"output":"ng, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:52"},{"event":"cmd_output","timestamp":1607098372,"output":".366 [info] ppl_id: 2b070e83-78e5-4bd9-9ed1-e6b7292f3fd9, type: PplRequests, event: persisted defin"},{"event":"cmd_output","timestamp":1607098372,"output":"ition for request with request_token: 8f71a34c-364b-11eb-977d-5254005464e2, origin: Elixir.Ppl.PplRe"},{"event":"cmd_output","timestamp":1607098372,"output":"quests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:52.370 [info] Queue pe"},{"event":"cmd_output","timestamp":1607098372,"output":"rsisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted"},{"event":"cmd_output","timestamp":1607098372,"output":"_at: ~N[2020-12-04 16:12:52.368622], name: \"master-.semaphore/semaphore.yml\", organization_id: \"07f4"},{"event":"cmd_output","timestamp":1607098372,"output":"a16c-f87c-4150-9f2e-56ede8f9e0ba\", project_id: \"0463e402-c95f-4351-b92a-97b9805bbffc\", queue_id: \"9f"},{"event":"cmd_output","timestamp":1607098372,"output":"5ad983-2587-4db5-bf66-27d9fe00e21b\", scope: \"project\", updated_at: ~N[2020-12-04 16:12:52.368631], u"},{"event":"cmd_output","timestamp":1607098372,"output":"ser_generated: false}}\n\u001b[0m\u001b[22m\n16:12:52.375 [info] event: created, origin: Elixir.Ppl.PplSubIni"},{"event":"cmd_output","timestamp":1607098372,"output":"ts.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:52.375 [info] ppl_id: 2b070e83-7"},{"event":"cmd_output","timestamp":1607098372,"output":"8e5-4bd9-9ed1-e6b7292f3fd9, type: PplBlocks, block_index: 0, state: initializing, event: created, re"},{"event":"cmd_output","timestamp":1607098372,"output":"covery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098372,"output":"[22m\n16:12:52.377 [info] ppl_id: 2b070e83-78e5-4bd9-9ed1-e6b7292f3fd9, type: PplSubInits, state: d"},{"event":"cmd_output","timestamp":1607098372,"output":"one, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_s"},{"event":"cmd_output","timestamp":1607098372,"output":"tate_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:52.389 [info] ppl_id: 2b070e83-78e5-4bd9-9ed1-e6b7292f3fd9, "},{"event":"cmd_output","timestamp":1607098372,"output":"type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Imp"},{"event":"cmd_output","timestamp":1607098372,"output":"l.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test gRPC describe_topology() - parallelism in jobs (305."},{"event":"cmd_output","timestamp":1607098372,"output":"5ms)\u001b[0m\n * test describe_many returns error when there is no pipeliene for one or more of given i"},{"event":"cmd_output","timestamp":1607098372,"output":"ds\r * test describe_many returns error when there is no pipeliene for one or more of given ids (ski"},{"event":"cmd_output","timestamp":1607098372,"output":"pped)\n * test gRPC list() - filter by wf_id\u001b[22m\n16:12:52.474 [info] Periodic from module Elixir"},{"event":"cmd_output","timestamp":1607098372,"output":".Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: per"},{"event":"cmd_output","timestamp":1607098372,"output":"iod: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recur"},{"event":"cmd_output","timestamp":1607098372,"output":"ring args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query"},{"event":"cmd_output","timestamp":1607098372,"output":": Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl."},{"event":"cmd_output","timestamp":1607098372,"output":"Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, "},{"event":"cmd_output","timestamp":1607098372,"output":":updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_superviso"},{"event":"cmd_output","timestamp":1607098372,"output":"r: :skip}\n\u001b[0m\u001b[22m\n16:12:52.475 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingSt"},{"event":"cmd_output","timestamp":1607098372,"output":"ate with name Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder"},{"event":"cmd_output","timestamp":1607098372,"output":"-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"pending\", \"que"},{"event":"cmd_output","timestamp":1607098372,"output":"uing\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: "},{"event":"cmd_output","timestamp":1607098372,"output":"\"pending\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Pp"},{"event":"cmd_output","timestamp":1607098372,"output":"l.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl"},{"event":"cmd_output","timestamp":1607098372,"output":"_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:12:52.476 [in"},{"event":"cmd_output","timestamp":1607098372,"output":"fo] Periodic from module Elixir.Ppl.Ppls.STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandl"},{"event":"cmd_output","timestamp":1607098372,"output":"er.QueuingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Queui"},{"event":"cmd_output","timestamp":1607098372,"output":"ngState\"]}, recurring args: %{allowed_states: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, "},{"event":"cmd_output","timestamp":1607098372,"output":"initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", publisher_cb: #Function<0.125102843/1"},{"event":"cmd_output","timestamp":1607098372,"output":" in Ppl.Ppls.STMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_reques"},{"event":"cmd_output","timestamp":1607098372,"output":"t, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_superv"},{"event":"cmd_output","timestamp":1607098372,"output":"isor: :skip}\n\u001b[0m\u001b[22m\n16:12:52.477 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.Runnin"},{"event":"cmd_output","timestamp":1607098372,"output":"gState with name Elixir.Ppl.Ppls.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.behol"},{"event":"cmd_output","timestamp":1607098372,"output":"der-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \""},{"event":"cmd_output","timestamp":1607098372,"output":"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"runni"},{"event":"cmd_output","timestamp":1607098372,"output":"ng\", publisher_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler.RunningState.args/0>, repo: Ppl.Ect"},{"event":"cmd_output","timestamp":1607098372,"output":"oRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id],"},{"event":"cmd_output","timestamp":1607098372,"output":" schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:12:52.478 [info] "},{"event":"cmd_output","timestamp":1607098372,"output":"Periodic from module Elixir.Ppl.Ppls.STMHandler.StoppingState with name Elixir.Ppl.Ppls.STMHandler.S"},{"event":"cmd_output","timestamp":1607098372,"output":"toppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Stopping"},{"event":"cmd_output","timestamp":1607098372,"output":"State\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_quer"},{"event":"cmd_output","timestamp":1607098372,"output":"y: Ppl.Ppls.Model.Ppls, observed_state: \"stopping\", publisher_cb: #Function<0.71803493/1 in Ppl.Ppls"},{"event":"cmd_output","timestamp":1607098372,"output":".STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated"},{"event":"cmd_output","timestamp":1607098372,"output":"_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip"},{"event":"cmd_output","timestamp":1607098372,"output":"}\n\u001b[0m\u001b[22m\n16:12:52.479 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedSta"},{"event":"cmd_output","timestamp":1607098372,"output":"te with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.be"},{"event":"cmd_output","timestamp":1607098372,"output":"holder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args: %{allowed_states: [\"f"},{"event":"cmd_output","timestamp":1607098372,"output":"etching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_s"},{"event":"cmd_output","timestamp":1607098372,"output":"tate: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :upda"},{"event":"cmd_output","timestamp":1607098372,"output":"ted_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_"},{"event":"cmd_output","timestamp":1607098372,"output":"supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:52.481 [info] Periodic from module Elixir.Ppl.PplSubInits.STMH"},{"event":"cmd_output","timestamp":1607098372,"output":"andler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 ms, me"},{"event":"cmd_output","timestamp":1607098372,"output":"tric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %"},{"event":"cmd_output","timestamp":1607098372,"output":"{allowed_states: [\"regular_init\", \"compilation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.P"},{"event":"cmd_output","timestamp":1607098372,"output":"plSubInits.Model.PplSubInits, observed_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, r"},{"event":"cmd_output","timestamp":1607098372,"output":"eturning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema:"},{"event":"cmd_output","timestamp":1607098372,"output":" Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:52.482 [info] Periodi"},{"event":"cmd_output","timestamp":1607098372,"output":"c from module Elixir.Ppl.PplSubInits.STMHandler.CompilationState with name Elixir.Ppl.PplSubInits.ST"},{"event":"cmd_output","timestamp":1607098372,"output":"MHandler.CompilationState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits"},{"event":"cmd_output","timestamp":1607098372,"output":"-STMHandler-CompilationState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \""},{"event":"cmd_output","timestamp":1607098372,"output":"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed"},{"event":"cmd_output","timestamp":1607098372,"output":"_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request,"},{"event":"cmd_output","timestamp":1607098372,"output":" :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits,"},{"event":"cmd_output","timestamp":1607098372,"output":" task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:52.482 [info] Periodic from module Elixir.Ppl.PplSubInit"},{"event":"cmd_output","timestamp":1607098372,"output":"s.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period"},{"event":"cmd_output","timestamp":1607098372,"output":": 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, re"},{"event":"cmd_output","timestamp":1607098372,"output":"curring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model."},{"event":"cmd_output","timestamp":1607098372,"output":"PplSubInits, observed_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:i"},{"event":"cmd_output","timestamp":1607098372,"output":"d, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubIn"},{"event":"cmd_output","timestamp":1607098372,"output":"its.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:52.484 [info] Periodic from module"},{"event":"cmd_output","timestamp":1607098372,"output":" Elixir.Ppl.PplBlocks.STMHandler.InitializingState with name Elixir.Ppl.PplBlocks.STMHandler.Initial"},{"event":"cmd_output","timestamp":1607098372,"output":"izingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-Initi"},{"event":"cmd_output","timestamp":1607098372,"output":"alizingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"waiting\", \"done\"], cooling_time"},{"event":"cmd_output","timestamp":1607098372,"output":"_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"initializing\", publisher_cb:"},{"event":"cmd_output","timestamp":1607098372,"output":" :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :reco"},{"event":"cmd_output","timestamp":1607098372,"output":"very_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n"},{"event":"cmd_output","timestamp":1607098372,"output":"\u001b[0m\u001b[22m\n16:12:52.484 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.WaitingState wi"},{"event":"cmd_output","timestamp":1607098372,"output":"th name Elixir.Ppl.PplBlocks.STMHandler.WaitingState :: period: 1000 ms, metric_name: {\"Ppl.beholder"},{"event":"cmd_output","timestamp":1607098372,"output":"-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurring args: %{allowed_states: [\"waiting\","},{"event":"cmd_output","timestamp":1607098372,"output":" \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_sta"},{"event":"cmd_output","timestamp":1607098372,"output":"te: \"waiting\", publisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>,"},{"event":"cmd_output","timestamp":1607098372,"output":" repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_co"},{"event":"cmd_output","timestamp":1607098372,"output":"unt, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098372,"output":"2m\n16:12:52.484 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.RunningState with name"},{"event":"cmd_output","timestamp":1607098372,"output":" Elixir.Ppl.PplBlocks.STMHandler.RunningState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_u"},{"event":"cmd_output","timestamp":1607098372,"output":"p\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopp"},{"event":"cmd_output","timestamp":1607098372,"output":"ing\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \""},{"event":"cmd_output","timestamp":1607098372,"output":"running\", publisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0>, rep"},{"event":"cmd_output","timestamp":1607098372,"output":"o: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count,"},{"event":"cmd_output","timestamp":1607098372,"output":" :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n"},{"event":"cmd_output","timestamp":1607098372,"output":"\u001b[0m\u001b[22m\n16:12:52.485 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.StoppingState w"},{"event":"cmd_output","timestamp":1607098372,"output":"ith name Elixir.Ppl.PplBlocks.STMHandler.StoppingState :: period: 1000 ms, metric_name: {\"Ppl.behold"},{"event":"cmd_output","timestamp":1607098372,"output":"er-wake_up\", [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stoppi"},{"event":"cmd_output","timestamp":1607098372,"output":"ng\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"s"},{"event":"cmd_output","timestamp":1607098372,"output":"topping\", publisher_cb: #Function<0.104215991/1 in Ppl.PplBlocks.STMHandler.StoppingState.args/0>, r"},{"event":"cmd_output","timestamp":1607098372,"output":"epo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_coun"},{"event":"cmd_output","timestamp":1607098372,"output":"t, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}"},{"event":"cmd_output","timestamp":1607098372,"output":"\n\u001b[0m\u001b[22m\n16:12:52.485 [info] Periodic from module Elixir.Block.Blocks.STMHandler.InitializingSt"},{"event":"cmd_output","timestamp":1607098372,"output":"ate with name Elixir.Block.Blocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl"},{"event":"cmd_output","timestamp":1607098372,"output":".beholder-wake_up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states"},{"event":"cmd_output","timestamp":1607098372,"output":": [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Blocks.Model.Blocks, observed_state"},{"event":"cmd_output","timestamp":1607098372,"output":": \"initializing\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :u"},{"event":"cmd_output","timestamp":1607098372,"output":"pdated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: "},{"event":"cmd_output","timestamp":1607098372,"output":":skip}\n\u001b[0m\u001b[22m\n16:12:52.485 [info] Periodic from module Elixir.Block.Blocks.STMHandler.RunningS"},{"event":"cmd_output","timestamp":1607098372,"output":"tate with name Elixir.Block.Blocks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beh"},{"event":"cmd_output","timestamp":1607098372,"output":"older-wake_up\", [\"Block-Blocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"runni"},{"event":"cmd_output","timestamp":1607098372,"output":"ng\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_s"},{"event":"cmd_output","timestamp":1607098372,"output":"tate: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :up"},{"event":"cmd_output","timestamp":1607098372,"output":"dated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :"},{"event":"cmd_output","timestamp":1607098372,"output":"skip}\n\u001b[0m\u001b[22m\n16:12:52.485 [info] Periodic from module Elixir.Block.Blocks.STMHandler.StoppingS"},{"event":"cmd_output","timestamp":1607098372,"output":"tate with name Elixir.Block.Blocks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.be"},{"event":"cmd_output","timestamp":1607098372,"output":"holder-wake_up\", [\"Block-Blocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"sto"},{"event":"cmd_output","timestamp":1607098372,"output":"pping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"st"},{"event":"cmd_output","timestamp":1607098372,"output":"opping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at"},{"event":"cmd_output","timestamp":1607098372,"output":", :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b"},{"event":"cmd_output","timestamp":1607098372,"output":"[0m\u001b[22m\n16:12:52.485 [info] Periodic from module Elixir.Block.Tasks.STMHandler.PendingState with "},{"event":"cmd_output","timestamp":1607098372,"output":"name Elixir.Block.Tasks.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_"},{"event":"cmd_output","timestamp":1607098372,"output":"up\", [\"Block-Tasks-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"]"},{"event":"cmd_output","timestamp":1607098372,"output":", cooling_time_sec: 0, initial_query: Block.Tasks.Model.Tasks, observed_state: \"pending\", publisher_"},{"event":"cmd_output","timestamp":1607098372,"output":"cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery"},{"event":"cmd_output","timestamp":1607098372,"output":"_count, :block_id, :build_request_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0"},{"event":"cmd_output","timestamp":1607098372,"output":"m\u001b[22m\n16:12:52.485 [info] Periodic from module Elixir.Block.Tasks.STMHandler.RunningState with na"},{"event":"cmd_output","timestamp":1607098372,"output":"me Elixir.Block.Tasks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up"},{"event":"cmd_output","timestamp":1607098372,"output":"\", [\"Block-Tasks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping"},{"event":"cmd_output","timestamp":1607098372,"output":"\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"running\","},{"event":"cmd_output","timestamp":1607098372,"output":" publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state"},{"event":"cmd_output","timestamp":1607098372,"output":", :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098372,"output":"16:12:52.485 [info] Periodic from module Elixir.Block.Tasks.STMHandler.StoppingState with name Elix"},{"event":"cmd_output","timestamp":1607098372,"output":"ir.Block.Tasks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"B"},{"event":"cmd_output","timestamp":1607098372,"output":"lock-Tasks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cool"},{"event":"cmd_output","timestamp":1607098372,"output":"ing_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"stopping\", publisher_cb: "},{"event":"cmd_output","timestamp":1607098372,"output":":skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_cou"},{"event":"cmd_output","timestamp":1607098372,"output":"nt, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:52.497 [i"},{"event":"cmd_output","timestamp":1607098372,"output":"nfo] Request: 'run: %{\"branch_id\" => \"955d9483-a79f-4ed7-ad22-94f8b0646c02\", \"branch_name\" => \"mast"},{"event":"cmd_output","timestamp":1607098372,"output":"er\", \"client_id\" => \"9c6f86d3-cae8-44d8-8b75-5e2ee3b83477\", \"commit_sha\" => \"75891a4469\", \"definitio"},{"event":"cmd_output","timestamp":1607098372,"output":"n_file\" => \"\", \"hook_id\" => \"8f9dd084-364b-11eb-9407-5254005464e2\", \"label\" => \"master\", \"organizati"},{"event":"cmd_output","timestamp":1607098372,"output":"on_id\" => \"fd2deb01-dd66-4d5a-bf77-a0beb58a0255\", \"owner\" => \"rt\", \"project_id\" => \"to_list\", \"repo_"},{"event":"cmd_output","timestamp":1607098372,"output":"name\" => \"20_workflow_builder\", \"request_token\" => \"8f9dc878-364b-11eb-bcc9-5254005464e2\", \"requeste"},{"event":"cmd_output","timestamp":1607098372,"output":"r_id\" => \"f94d488b-8212-430a-a10e-eecf98114583\", \"service\" => \"local\", \"snapshot_id\" => \"\", \"suppres"},{"event":"cmd_output","timestamp":1607098372,"output":"sed_attributes\" => [\"access_token\", \"client_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"c5a9fc87"},{"event":"cmd_output","timestamp":1607098372,"output":"-1033-42f9-b4ba-fd08529008aa\"}\n\u001b[0m\u001b[22m\n16:12:52.512 [info] ppl_id: 06321a4f-12bc-44fa-9d98-e552"},{"event":"cmd_output","timestamp":1607098372,"output":"9bfa90d9, type: PplRequests, event: persisted schedule request with request_token: 8f9dc878-364b-11e"},{"event":"cmd_output","timestamp":1607098372,"output":"b-bcc9-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55)"},{"event":"cmd_output","timestamp":1607098372,"output":", \n\u001b[0m\u001b[22m\n16:12:52.515 [info] ppl_id: 06321a4f-12bc-44fa-9d98-e5529bfa90d9, type: Ppls, state:"},{"event":"cmd_output","timestamp":1607098372,"output":" initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.pro"},{"event":"cmd_output","timestamp":1607098372,"output":"cess_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:52.520 [info] Project to_list and branch masterlatest_wf "},{"event":"cmd_output","timestamp":1607098372,"output":"details updated: \"wf_id: c5a9fc87-1033-42f9-b4ba-fd08529008aa, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:12:52.52"},{"event":"cmd_output","timestamp":1607098372,"output":"2 [info] Persisted ppl_sub_init for pipeline with ppl_id: 06321a4f-12bc-44fa-9d98-e5529bfa90d9: %Pp"},{"event":"cmd_output","timestamp":1607098372,"output":"l.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, comp"},{"event":"cmd_output","timestamp":1607098372,"output":"ile_task_id: nil, error_description: nil, id: 257, in_scheduling: false, init_type: \"regular\", inser"},{"event":"cmd_output","timestamp":1607098372,"output":"ted_at: ~N[2020-12-04 16:12:52.521739], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"06321a4f-12bc-44fa-9d98-e5529bfa90d9\", recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098372,"output":" result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: "},{"event":"cmd_output","timestamp":1607098372,"output":"nil, updated_at: ~N[2020-12-04 16:12:52.521747]}\n\u001b[0m\u001b[22m\n16:12:52.536 [info] Request: 'run: %{\""},{"event":"cmd_output","timestamp":1607098372,"output":"auto_promoted\" => false, \"branch_id\" => \"955d9483-a79f-4ed7-ad22-94f8b0646c02\", \"branch_name\" => \"ma"},{"event":"cmd_output","timestamp":1607098372,"output":"ster\", \"client_id\" => \"9c6f86d3-cae8-44d8-8b75-5e2ee3b83477\", \"commit_sha\" => \"75891a4469\", \"definit"},{"event":"cmd_output","timestamp":1607098372,"output":"ion_file\" => \"\", \"env_vars\" => [], \"extension_of\" => \"06321a4f-12bc-44fa-9d98-e5529bfa90d9\", \"file_n"},{"event":"cmd_output","timestamp":1607098372,"output":"ame\" => \"/foo/bar/test.yml\", \"hook_id\" => \"8f9dd084-364b-11eb-9407-5254005464e2\", \"label\" => \"master"},{"event":"cmd_output","timestamp":1607098372,"output":"\", \"organization_id\" => \"fd2deb01-dd66-4d5a-bf77-a0beb58a0255\", \"owner\" => \"rt\", \"prev_ppl_artefact_"},{"event":"cmd_output","timestamp":1607098372,"output":"ids\" => [\"06321a4f-12bc-44fa-9d98-e5529bfa90d9\"], \"project_id\" => \"to_list\", \"promoter_id\" => \"\", \"r"},{"event":"cmd_output","timestamp":1607098372,"output":"epo_name\" => \"20_workflow_builder\", \"request_token\" => \"a27d8541-b44f-481a-a612-53579df8c81f\", \"requ"},{"event":"cmd_output","timestamp":1607098372,"output":"ester_id\" => \"f94d488b-8212-430a-a10e-eecf98114583\", \"service\" => \"local\", \"snapshot_id\" => \"\", \"sup"},{"event":"cmd_output","timestamp":1607098372,"output":"pressed_attributes\" => [\"access_token\", \"client_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"c5a9"},{"event":"cmd_output","timestamp":1607098372,"output":"fc87-1033-42f9-b4ba-fd08529008aa\", \"wf_number\" => 1, \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098372,"output":"2:52.538 [info] ppl_id: 06321a4f-12bc-44fa-9d98-e5529bfa90d9, type: PplRequests, event: persisted s"},{"event":"cmd_output","timestamp":1607098372,"output":"ource_args for pipeline: 06321a4f-12bc-44fa-9d98-e5529bfa90d9, origin: Elixir.Ppl.PplRequests.Model."},{"event":"cmd_output","timestamp":1607098372,"output":"PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:52.540 [info] ppl_id: 7b157cc1-9c2c-47e"},{"event":"cmd_output","timestamp":1607098372,"output":"9-908c-8b1aa5f10dde, type: PplRequests, event: persisted schedule request with request_token: a27d85"},{"event":"cmd_output","timestamp":1607098372,"output":"41-b44f-481a-a612-53579df8c81f, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_resp"},{"event":"cmd_output","timestamp":1607098372,"output":"onse/2(L55), \n\u001b[0m\u001b[22m\n16:12:52.542 [info] ppl_id: 7b157cc1-9c2c-47e9-908c-8b1aa5f10dde, type: P"},{"event":"cmd_output","timestamp":1607098372,"output":"pls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.Ppls"},{"event":"cmd_output","timestamp":1607098372,"output":"Queries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:52.543 [info] ppl_id: 06321a4f-12bc-44fa-9d98-"},{"event":"cmd_output","timestamp":1607098372,"output":"e5529bfa90d9, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098372,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:52.545 [info] Persisted ppl_sub"},{"event":"cmd_output","timestamp":1607098372,"output":"_init for pipeline with ppl_id: 7b157cc1-9c2c-47e9-908c-8b1aa5f10dde: %Ppl.PplSubInits.Model.PplSubI"},{"event":"cmd_output","timestamp":1607098372,"output":"nits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_des"},{"event":"cmd_output","timestamp":1607098372,"output":"cription: nil, id: 258, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12"},{"event":"cmd_output","timestamp":1607098372,"output":":52.543975], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"7b157cc1-9c2c-47e9-908c-8b1aa5f10dde\", recovery_count: 0, result: nil, result_reason"},{"event":"cmd_output","timestamp":1607098372,"output":": nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12"},{"event":"cmd_output","timestamp":1607098372,"output":"-04 16:12:52.543982]}\n\u001b[0m\u001b[22m\n16:12:52.555 [info] ppl_id: 7b157cc1-9c2c-47e9-908c-8b1aa5f10dde,"},{"event":"cmd_output","timestamp":1607098372,"output":" type: PplRequests, event: persisted source_args for pipeline: 7b157cc1-9c2c-47e9-908c-8b1aa5f10dde,"},{"event":"cmd_output","timestamp":1607098372,"output":" origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:52"},{"event":"cmd_output","timestamp":1607098372,"output":".557 [info] ppl_id: 7b157cc1-9c2c-47e9-908c-8b1aa5f10dde, type: PplSubInits, state: fetching, event"},{"event":"cmd_output","timestamp":1607098372,"output":": exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098372,"output":"\u001b[22m\n16:12:52.567 [info] ppl_id: 06321a4f-12bc-44fa-9d98-e5529bfa90d9, type: PplSubInits, state: "},{"event":"cmd_output","timestamp":1607098372,"output":"regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_ch"},{"event":"cmd_output","timestamp":1607098372,"output":"ange/1(L90), \n\u001b[0m\u001b[22m\n16:12:52.607 [info] ppl_id: 7b157cc1-9c2c-47e9-908c-8b1aa5f10dde, type: P"},{"event":"cmd_output","timestamp":1607098372,"output":"plSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.ST"},{"event":"cmd_output","timestamp":1607098374,"output":"M.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[33m\n16:12:54.958 [warn] Elixir.Wormhole{#PID<0.10561.1>}::"},{"event":"cmd_output","timestamp":1607098374,"output":" callback: {GoferClient.GrpcClient, :create_, [%InternalApi.Gofer.CreateRequest{branch_name: \"master"},{"event":"cmd_output","timestamp":1607098374,"output":"\", commit_range: \"1234...4567\", commit_sha: \"75891a4469\", git_ref_type: 0, label: \"master\", pipeline"},{"event":"cmd_output","timestamp":1607098374,"output":"_id: \"06321a4f-12bc-44fa-9d98-e5529bfa90d9\", pr_base: \"\", pr_sha: \"\", prev_ppl_artefact_ids: [\"06321"},{"event":"cmd_output","timestamp":1607098374,"output":"a4f-12bc-44fa-9d98-e5529bfa90d9\"], project_id: \"to_list\", targets: [%InternalApi.Gofer.Target{auto_p"},{"event":"cmd_output","timestamp":1607098374,"output":"romote_when: \"\", auto_trigger_on: [], name: \"Extension ppl\", parameter_env_vars: [], pipeline_path: "},{"event":"cmd_output","timestamp":1607098374,"output":"\"/foo/bar/test.yml\"}], working_dir: \".semaphore\", yml_file_name: \"semaphore.yml\"}]}; reason: {:timeo"},{"event":"cmd_output","timestamp":1607098374,"output":"ut, 2345}\n\u001b[0m\u001b[31m\n16:12:54.960 [error] ppl_id: not_available, event: exit_scheduling, context: {"},{"event":"cmd_output","timestamp":1607098374,"output":":error, :user_exit_function, {:error, {:timeout, 2345}}, %{item: %Ppl.PplSubInits.Model.PplSubInits{"},{"event":"cmd_output","timestamp":1607098374,"output":"__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_descript"},{"event":"cmd_output","timestamp":1607098374,"output":"ion: \"\", id: 257, in_scheduling: true, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:52.521"},{"event":"cmd_output","timestamp":1607098374,"output":"739], pipeline_requests: #Ecto.Association.NotLoaded, "},{"event":"cmd_output","timestamp":1607098374,"output":"ppl_id: \"06321a4f-12bc-44fa-9d98-e5529bfa90d9\", recovery_count: 0, result: nil, result_reason: nil, "},{"event":"cmd_output","timestamp":1607098374,"output":"state: \"regular_init\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-0"},{"event":"cmd_output","timestamp":1607098374,"output":"4 16:12:52.569540]}}}, origin: Elixir.Looper.STM.Impl.log_state_change/1(L96), \n\u001b[0m\u001b[31m\n16:12:54"},{"event":"cmd_output","timestamp":1607098374,"output":".961 [error] STM Elixir.Ppl.PplSubInits.STMHandler.RegularInitState FAILED: {:error, :user_exit_func"},{"event":"cmd_output","timestamp":1607098374,"output":"tion, {:error, {:timeout, 2345}}, %{item: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema."},{"event":"cmd_output","timestamp":1607098374,"output":"Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: \"\", id: 257, in_sc"},{"event":"cmd_output","timestamp":1607098374,"output":"heduling: true, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:52.521739], pipeline_requests"},{"event":"cmd_output","timestamp":1607098374,"output":": #Ecto.Association.NotLoaded, ppl_id: \"06321a4f-12bc-"},{"event":"cmd_output","timestamp":1607098374,"output":"44fa-9d98-e5529bfa90d9\", recovery_count: 0, result: nil, result_reason: nil, state: \"regular_init\", "},{"event":"cmd_output","timestamp":1607098374,"output":"terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:52.569540]}}}\n"},{"event":"cmd_output","timestamp":1607098374,"output":"\u001b[0m\u001b[22m\n16:12:54.983 [info] ppl_id: 7b157cc1-9c2c-47e9-908c-8b1aa5f10dde, type: PplRequests, eve"},{"event":"cmd_output","timestamp":1607098374,"output":"nt: persisted definition for request with request_token: a27d8541-b44f-481a-a612-53579df8c81f, origi"},{"event":"cmd_output","timestamp":1607098374,"output":"n: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:54.9"},{"event":"cmd_output","timestamp":1607098374,"output":"86 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, "},{"event":"cmd_output","timestamp":1607098374,"output":"\"queues\">, inserted_at: ~N[2020-12-04 16:12:54.985336], name: \"master-/foo/bar/test.yml\", organizati"},{"event":"cmd_output","timestamp":1607098374,"output":"on_id: \"fd2deb01-dd66-4d5a-bf77-a0beb58a0255\", project_id: \"to_list\", queue_id: \"a26a3ef4-b19c-4eff-"},{"event":"cmd_output","timestamp":1607098374,"output":"8e48-d21179648d43\", scope: \"project\", updated_at: ~N[2020-12-04 16:12:54.985346], user_generated: fa"},{"event":"cmd_output","timestamp":1607098374,"output":"lse}}\n\u001b[0m\u001b[22m\n16:12:54.992 [info] ppl_id: not_available, event: created, origin: Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098374,"output":"SubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:54.992 [info] event: creat"},{"event":"cmd_output","timestamp":1607098374,"output":"ed, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:5"},{"event":"cmd_output","timestamp":1607098374,"output":"4.992 [info] ppl_id: 7b157cc1-9c2c-47e9-908c-8b1aa5f10dde, type: PplBlocks, block_index: 0, state: "},{"event":"cmd_output","timestamp":1607098374,"output":"initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularIn"},{"event":"cmd_output","timestamp":1607098374,"output":"itState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:54.992 [info] ppl_id: 7b157cc1-9c2c-47e9-908c-8b1aa5f10"},{"event":"cmd_output","timestamp":1607098374,"output":"dde, type: PplBlocks, block_index: 1, state: initializing, event: created, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098374,"output":": Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:54.994 [inf"},{"event":"cmd_output","timestamp":1607098374,"output":"o] ppl_id: 7b157cc1-9c2c-47e9-908c-8b1aa5f10dde, type: PplSubInits, state: done, result: passed, ev"},{"event":"cmd_output","timestamp":1607098374,"output":"ent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b"},{"event":"cmd_output","timestamp":1607098375,"output":"[0m\u001b[22m\n16:12:55.012 [info] ppl_id: 7b157cc1-9c2c-47e9-908c-8b1aa5f10dde, type: Ppls, state: pend"},{"event":"cmd_output","timestamp":1607098375,"output":"ing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L9"},{"event":"cmd_output","timestamp":1607098375,"output":"0), \n\u001b[0m\u001b[22m\n16:12:55.013 [info] ppl_id: 7b157cc1-9c2c-47e9-908c-8b1aa5f10dde, type: PplBlocks,"},{"event":"cmd_output","timestamp":1607098375,"output":" block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.ST"},{"event":"cmd_output","timestamp":1607098375,"output":"M.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:55.022 [info] ppl_id: 7b157cc1-9c2c-47e9-908c-8b"},{"event":"cmd_output","timestamp":1607098375,"output":"1aa5f10dde, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Lo"},{"event":"cmd_output","timestamp":1607098375,"output":"oper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:55.023 [info] ppl_id: 7b157cc1-9c2c-47e9-"},{"event":"cmd_output","timestamp":1607098375,"output":"908c-8b1aa5f10dde, type: PplBlocks, block_index: 1, state: waiting, event: exit_scheduling, recovery"},{"event":"cmd_output","timestamp":1607098375,"output":"_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:55.029 [info] "},{"event":"cmd_output","timestamp":1607098375,"output":" ppl_id: 7b157cc1-9c2c-47e9-908c-8b1aa5f10dde, type: Ppls, state: running, event: exit_scheduling, r"},{"event":"cmd_output","timestamp":1607098375,"output":"ecovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:55.035 "},{"event":"cmd_output","timestamp":1607098375,"output":"[info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"7b157cc1-9c2c-47e9-908c-8b1"},{"event":"cmd_output","timestamp":1607098375,"output":"aa5f10dde\"\n\u001b[0m\u001b[22m\n16:12:55.040 [info] block_id: 79c3ffa9-0a44-4478-8314-87dbab5d8c2b, type: Bl"},{"event":"cmd_output","timestamp":1607098375,"output":"ockRequests, event: persisted block run request from ppl 7b157cc1-9c2c-47e9-908c-8b1aa5f10dde for bl"},{"event":"cmd_output","timestamp":1607098375,"output":"ock 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098375,"output":"\u001b[22m\n16:12:55.042 [info] block_id: 79c3ffa9-0a44-4478-8314-87dbab5d8c2b, type: Blocks, state: ini"},{"event":"cmd_output","timestamp":1607098375,"output":"tializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.i"},{"event":"cmd_output","timestamp":1607098375,"output":"nsert/1(L43), \n\u001b[0m\u001b[22m\n16:12:55.045 [info] Block 0 of pipeline with id: 7b157cc1-9c2c-47e9-908c"},{"event":"cmd_output","timestamp":1607098375,"output":"-8b1aa5f10dde scheduled in block service with id: : \"79c3ffa9-0a44-4478-8314-87dbab5d8c2b\"\n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098375,"output":"m\n16:12:55.048 [info] ppl_id: 7b157cc1-9c2c-47e9-908c-8b1aa5f10dde, type: PplBlocks, block_index: "},{"event":"cmd_output","timestamp":1607098375,"output":"0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_sta"},{"event":"cmd_output","timestamp":1607098375,"output":"te_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:55.049 [info] block_id: 79c3ffa9-0a44-4478-8314-87dbab5d8c2b, "},{"event":"cmd_output","timestamp":1607098375,"output":"type: BlockRequests, event: persisted build and sub_ppl details for block_request: 79c3ffa9-0a44-447"},{"event":"cmd_output","timestamp":1607098375,"output":"8-8314-87dbab5d8c2b, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L4"},{"event":"cmd_output","timestamp":1607098375,"output":"1), \n\u001b[0m\u001b[22m\n16:12:55.055 [info] block_id: 79c3ffa9-0a44-4478-8314-87dbab5d8c2b, type: Tasks, s"},{"event":"cmd_output","timestamp":1607098375,"output":"tate: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.Initializin"},{"event":"cmd_output","timestamp":1607098375,"output":"gState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:55.058 [info] block_id: 79c3ffa9-0a44-4478-8314-87dbab5d"},{"event":"cmd_output","timestamp":1607098375,"output":"8c2b, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper"},{"event":"cmd_output","timestamp":1607098375,"output":".STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:55.075 [info] block_id: 79c3ffa9-0a44-4478-83"},{"event":"cmd_output","timestamp":1607098375,"output":"14-87dbab5d8c2b, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098375,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:55.169 [info] block_id: 79c3ffa9-0a"},{"event":"cmd_output","timestamp":1607098375,"output":"44-4478-8314-87dbab5d8c2b, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098375,"output":"in: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:55.175 [info] block_id: 79c3"},{"event":"cmd_output","timestamp":1607098375,"output":"ffa9-0a44-4478-8314-87dbab5d8c2b, type: Blocks, state: done, event: exit_scheduling, recovery_count:"},{"event":"cmd_output","timestamp":1607098375,"output":" 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:55.184 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098375,"output":": 7b157cc1-9c2c-47e9-908c-8b1aa5f10dde, block_id: 79c3ffa9-0a44-4478-8314-87dbab5d8c2b, type: PplBlo"},{"event":"cmd_output","timestamp":1607098375,"output":"cks, block_index: 0, state: done, result: failed, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098375,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:55.195 [info] PplBlocks Waiting"},{"event":"cmd_output","timestamp":1607098375,"output":"State STM is scheduling block 1 from pipeline: \"7b157cc1-9c2c-47e9-908c-8b1aa5f10dde\"\n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098375,"output":":12:55.201 [info] ppl_id: 7b157cc1-9c2c-47e9-908c-8b1aa5f10dde, type: PplBlocks, block_index: 1, st"},{"event":"cmd_output","timestamp":1607098375,"output":"ate: done, result: canceled, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Im"},{"event":"cmd_output","timestamp":1607098375,"output":"pl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:55.217 [info] ppl_id: 7b157cc1-9c2c-47e9-908c-8b1aa5"},{"event":"cmd_output","timestamp":1607098375,"output":"f10dde, type: Ppls, state: done, result: failed, event: exit_scheduling, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098375,"output":"Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:55.304 [info] Request: 'partial_"},{"event":"cmd_output","timestamp":1607098375,"output":"rebuild', request: %{ppl_id: \"7b157cc1-9c2c-47e9-908c-8b1aa5f10dde\", request_token: \"b5b7d401-5e6c-4"},{"event":"cmd_output","timestamp":1607098375,"output":"fb4-8966-8acaac74fc8a\", user_id: \"\"}\n\u001b[0m\u001b[22m\n16:12:55.307 [info] ppl_id: 6e50b27d-02e8-4586-9fe"},{"event":"cmd_output","timestamp":1607098375,"output":"9-e5808f9958bc, type: PplRequests, event: persisted schedule request with request_token: b5b7d401-5e"},{"event":"cmd_output","timestamp":1607098375,"output":"6c-4fb4-8966-8acaac74fc8a, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/"},{"event":"cmd_output","timestamp":1607098375,"output":"2(L55), \n\u001b[0m\u001b[22m\n16:12:55.310 [info] ppl_id: 6e50b27d-02e8-4586-9fe9-e5808f9958bc, type: Ppls, "},{"event":"cmd_output","timestamp":1607098375,"output":"state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueri"},{"event":"cmd_output","timestamp":1607098375,"output":"es.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:55.313 [info] Persisted ppl_sub_init for pipeline w"},{"event":"cmd_output","timestamp":1607098375,"output":"ith ppl_id: 6e50b27d-02e8-4586-9fe9-e5808f9958bc: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto"},{"event":"cmd_output","timestamp":1607098375,"output":".Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 2"},{"event":"cmd_output","timestamp":1607098375,"output":"59, in_scheduling: false, init_type: \"rebuild\", inserted_at: ~N[2020-12-04 16:12:55.312291], pipelin"},{"event":"cmd_output","timestamp":1607098375,"output":"e_requests: #Ecto.Association.NotLoaded, ppl_id: \"6e50"},{"event":"cmd_output","timestamp":1607098375,"output":"b27d-02e8-4586-9fe9-e5808f9958bc\", recovery_count: 0, result: nil, result_reason: nil, state: \"creat"},{"event":"cmd_output","timestamp":1607098375,"output":"ed\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:55.312299]"},{"event":"cmd_output","timestamp":1607098375,"output":"}\n\u001b[0m\u001b[22m\n16:12:55.325 [info] Request: 'run: %{\"branch_id\" => \"c754505d-9996-4e6f-828a-2f282020"},{"event":"cmd_output","timestamp":1607098375,"output":"c734\", \"branch_name\" => \"master\", \"client_id\" => \"8d4e4159-d8bc-42af-93aa-fed19d30cdca\", \"commit_sha"},{"event":"cmd_output","timestamp":1607098375,"output":"\" => \"75891a4469\", \"definition_file\" => \"\", \"hook_id\" => \"914e53b8-364b-11eb-a50e-5254005464e2\", \"la"},{"event":"cmd_output","timestamp":1607098375,"output":"bel\" => \"master\", \"organization_id\" => \"8392093a-1f6c-4177-a644-6e75d951ad1a\", \"owner\" => \"rt\", \"pro"},{"event":"cmd_output","timestamp":1607098375,"output":"ject_id\" => \"to_list\", \"repo_name\" => \"20_workflow_builder\", \"request_token\" => \"914e4d28-364b-11eb-"},{"event":"cmd_output","timestamp":1607098375,"output":"b30c-5254005464e2\", \"requester_id\" => \"b63da1db-039a-4b25-aec7-7279bfa15604\", \"service\" => \"local\", "},{"event":"cmd_output","timestamp":1607098375,"output":"\"snapshot_id\" => \"\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"triggered_by\" =>"},{"event":"cmd_output","timestamp":1607098375,"output":" \"hook\", \"wf_id\" => \"23b9b6a0-706e-467d-ac1e-d9291df31c1f\"}\n\u001b[0m\u001b[22m\n16:12:55.328 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098375,"output":" 6e50b27d-02e8-4586-9fe9-e5808f9958bc, type: PplRequests, event: persisted source_args for pipeline:"},{"event":"cmd_output","timestamp":1607098375,"output":" 6e50b27d-02e8-4586-9fe9-e5808f9958bc, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.inser"},{"event":"cmd_output","timestamp":1607098375,"output":"t_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:55.330 [info] ppl_id: 6e50b27d-02e8-4586-9fe9-e5808f9958bc, typ"},{"event":"cmd_output","timestamp":1607098375,"output":"e: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.ST"},{"event":"cmd_output","timestamp":1607098375,"output":"M.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:55.360 [info] ppl_id: 6e50b27d-02e8-4586-9fe9-e5"},{"event":"cmd_output","timestamp":1607098375,"output":"808f9958bc, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098375,"output":"n: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:55.377 [info] ppl_id: 319c4c7"},{"event":"cmd_output","timestamp":1607098375,"output":"a-babb-467d-a24f-773e3e42805a, type: PplRequests, event: persisted schedule request with request_tok"},{"event":"cmd_output","timestamp":1607098375,"output":"en: 914e4d28-364b-11eb-b30c-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.pr"},{"event":"cmd_output","timestamp":1607098375,"output":"ocess_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:55.379 [info] ppl_id: 319c4c7a-babb-467d-a24f-773e3e42805"},{"event":"cmd_output","timestamp":1607098375,"output":"a, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls."},{"event":"cmd_output","timestamp":1607098375,"output":"Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:55.382 [info] Project to_list and br"},{"event":"cmd_output","timestamp":1607098375,"output":"anch masterlatest_wf details updated: \"wf_id: 23b9b6a0-706e-467d-ac1e-d9291df31c1f, wf_number: 2\"\n\u001b"},{"event":"cmd_output","timestamp":1607098375,"output":"[0m\u001b[22m\n16:12:55.383 [info] Persisted ppl_sub_init for pipeline with ppl_id: 319c4c7a-babb-467d-a"},{"event":"cmd_output","timestamp":1607098375,"output":"24f-773e3e42805a: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipel"},{"event":"cmd_output","timestamp":1607098375,"output":"ine_sub_inits\">, compile_task_id: nil, error_description: nil, id: 260, in_scheduling: false, init_t"},{"event":"cmd_output","timestamp":1607098375,"output":"ype: \"regular\", inserted_at: ~N[2020-12-04 16:12:55.382343], pipeline_requests: #Ecto.Association.No"},{"event":"cmd_output","timestamp":1607098375,"output":"tLoaded, ppl_id: \"319c4c7a-babb-467d-a24f-773e3e42805a"},{"event":"cmd_output","timestamp":1607098375,"output":"\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, ter"},{"event":"cmd_output","timestamp":1607098375,"output":"minate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:55.382352]}\n\u001b[0m\u001b[22m\n16:12:55.394 [info"},{"event":"cmd_output","timestamp":1607098375,"output":"] ppl_id: 319c4c7a-babb-467d-a24f-773e3e42805a, type: PplRequests, event: persisted source_args for"},{"event":"cmd_output","timestamp":1607098375,"output":" pipeline: 319c4c7a-babb-467d-a24f-773e3e42805a, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQue"},{"event":"cmd_output","timestamp":1607098375,"output":"ries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:55.398 [info] ppl_id: 319c4c7a-babb-467d-a24f-773e3e4"},{"event":"cmd_output","timestamp":1607098375,"output":"2805a, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098375,"output":".Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:55.403 [info] Request: 'run: %{\"auto_p"},{"event":"cmd_output","timestamp":1607098375,"output":"romoted\" => false, \"branch_id\" => \"c754505d-9996-4e6f-828a-2f282020c734\", \"branch_name\" => \"master\","},{"event":"cmd_output","timestamp":1607098375,"output":" \"client_id\" => \"8d4e4159-d8bc-42af-93aa-fed19d30cdca\", \"commit_sha\" => \"75891a4469\", \"definition_fi"},{"event":"cmd_output","timestamp":1607098375,"output":"le\" => \"\", \"env_vars\" => [], \"extension_of\" => \"319c4c7a-babb-467d-a24f-773e3e42805a\", \"file_name\" ="},{"event":"cmd_output","timestamp":1607098375,"output":"> \"/foo/bar/test.yml\", \"hook_id\" => \"914e53b8-364b-11eb-a50e-5254005464e2\", \"label\" => \"master\", \"or"},{"event":"cmd_output","timestamp":1607098375,"output":"ganization_id\" => \"8392093a-1f6c-4177-a644-6e75d951ad1a\", \"owner\" => \"rt\", \"prev_ppl_artefact_ids\" ="},{"event":"cmd_output","timestamp":1607098375,"output":"> [\"319c4c7a-babb-467d-a24f-773e3e42805a\"], \"project_id\" => \"to_list\", \"promoter_id\" => \"\", \"repo_na"},{"event":"cmd_output","timestamp":1607098375,"output":"me\" => \"20_workflow_builder\", \"request_token\" => \"cd1b290b-087f-4577-b9fa-28729362bc8e\", \"requester_"},{"event":"cmd_output","timestamp":1607098375,"output":"id\" => \"b63da1db-039a-4b25-aec7-7279bfa15604\", \"service\" => \"local\", \"snapshot_id\" => \"\", \"suppresse"},{"event":"cmd_output","timestamp":1607098375,"output":"d_attributes\" => [\"access_token\", \"client_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"23b9b6a0-7"},{"event":"cmd_output","timestamp":1607098375,"output":"06e-467d-ac1e-d9291df31c1f\", \"wf_number\" => 2, \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:12:55.4"},{"event":"cmd_output","timestamp":1607098375,"output":"07 [info] ppl_id: 6e50b27d-02e8-4586-9fe9-e5808f9958bc, type: PplRequests, event: persisted definit"},{"event":"cmd_output","timestamp":1607098375,"output":"ion for request with request_token: b5b7d401-5e6c-4fb4-8966-8acaac74fc8a, origin: Elixir.Ppl.PplRequ"},{"event":"cmd_output","timestamp":1607098375,"output":"ests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:55.408 [info] ppl_id: 3a"},{"event":"cmd_output","timestamp":1607098375,"output":"488595-1ad0-4b5c-a041-f2fe745a96e6, type: PplRequests, event: persisted schedule request with reques"},{"event":"cmd_output","timestamp":1607098375,"output":"t_token: cd1b290b-087f-4577-b9fa-28729362bc8e, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueri"},{"event":"cmd_output","timestamp":1607098375,"output":"es.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:55.415 [info] ppl_id: 3a488595-1ad0-4b5c-a041-f2fe74"},{"event":"cmd_output","timestamp":1607098375,"output":"5a96e6, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl."},{"event":"cmd_output","timestamp":1607098375,"output":"Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:55.417 [info] Persisted ppl_sub"},{"event":"cmd_output","timestamp":1607098375,"output":"_init for pipeline with ppl_id: 3a488595-1ad0-4b5c-a041-f2fe745a96e6: %Ppl.PplSubInits.Model.PplSubI"},{"event":"cmd_output","timestamp":1607098375,"output":"nits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_des"},{"event":"cmd_output","timestamp":1607098375,"output":"cription: nil, id: 261, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12"},{"event":"cmd_output","timestamp":1607098375,"output":":55.416667], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"3a488595-1ad0-4b5c-a041-f2fe745a96e6\", recovery_count: 0, result: nil, result_reason"},{"event":"cmd_output","timestamp":1607098375,"output":": nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12"},{"event":"cmd_output","timestamp":1607098375,"output":"-04 16:12:55.416675]}\n\u001b[0m\u001b[22m\n16:12:55.420 [info] ppl_id: not_available, event: created, origin"},{"event":"cmd_output","timestamp":1607098375,"output":": Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:55.420 [inf"},{"event":"cmd_output","timestamp":1607098375,"output":"o] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b["},{"event":"cmd_output","timestamp":1607098375,"output":"0m\u001b[22m\n16:12:55.420 [info] ppl_id: 6e50b27d-02e8-4586-9fe9-e5808f9958bc, type: PplBlocks, block_i"},{"event":"cmd_output","timestamp":1607098375,"output":"ndex: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMH"},{"event":"cmd_output","timestamp":1607098375,"output":"andler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:55.420 [info] ppl_id: 6e50b27d-02e8-458"},{"event":"cmd_output","timestamp":1607098375,"output":"6-9fe9-e5808f9958bc, type: PplBlocks, block_index: 1, state: initializing, event: created, recovery_"},{"event":"cmd_output","timestamp":1607098375,"output":"count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098375,"output":"6:12:55.425 [info] ppl_id: 6e50b27d-02e8-4586-9fe9-e5808f9958bc, type: PplSubInits, state: done, re"},{"event":"cmd_output","timestamp":1607098375,"output":"sult: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_ch"},{"event":"cmd_output","timestamp":1607098375,"output":"ange/1(L90), \n\u001b[0m\u001b[22m\n16:12:55.436 [info] ppl_id: 6e50b27d-02e8-4586-9fe9-e5808f9958bc, type: P"},{"event":"cmd_output","timestamp":1607098375,"output":"pls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_s"},{"event":"cmd_output","timestamp":1607098375,"output":"tate_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:55.440 [info] ppl_id: 3a488595-1ad0-4b5c-a041-f2fe745a96e6, "},{"event":"cmd_output","timestamp":1607098375,"output":"type: PplRequests, event: persisted source_args for pipeline: 3a488595-1ad0-4b5c-a041-f2fe745a96e6, "},{"event":"cmd_output","timestamp":1607098375,"output":"origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:55."},{"event":"cmd_output","timestamp":1607098375,"output":"441 [info] ppl_id: 319c4c7a-babb-467d-a24f-773e3e42805a, type: PplSubInits, state: regular_init, ev"},{"event":"cmd_output","timestamp":1607098375,"output":"ent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b"},{"event":"cmd_output","timestamp":1607098375,"output":"[0m\u001b[22m\n16:12:55.442 [info] ppl_id: 3a488595-1ad0-4b5c-a041-f2fe745a96e6, type: PplSubInits, stat"},{"event":"cmd_output","timestamp":1607098375,"output":"e: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_cha"},{"event":"cmd_output","timestamp":1607098375,"output":"nge/1(L90), \n\u001b[0m\u001b[22m\n16:12:55.445 [info] ppl_id: 6e50b27d-02e8-4586-9fe9-e5808f9958bc, type: Pp"},{"event":"cmd_output","timestamp":1607098375,"output":"lBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098375,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:55.451 [info] ppl_id: 6e50b27d-02e8-4586"},{"event":"cmd_output","timestamp":1607098375,"output":"-9fe9-e5808f9958bc, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: E"},{"event":"cmd_output","timestamp":1607098375,"output":"lixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:55.463 [info] ppl_id: 6e50b27d-02"},{"event":"cmd_output","timestamp":1607098375,"output":"e8-4586-9fe9-e5808f9958bc, type: PplBlocks, block_index: 1, state: waiting, event: exit_scheduling, "},{"event":"cmd_output","timestamp":1607098375,"output":"recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:55.470"},{"event":"cmd_output","timestamp":1607098375,"output":" [info] ppl_id: 6e50b27d-02e8-4586-9fe9-e5808f9958bc, type: Ppls, state: running, event: exit_sched"},{"event":"cmd_output","timestamp":1607098375,"output":"uling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12"},{"event":"cmd_output","timestamp":1607098375,"output":":55.480 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"6e50b27d-02e8-4586-"},{"event":"cmd_output","timestamp":1607098375,"output":"9fe9-e5808f9958bc\"\n\u001b[0m\u001b[22m\n16:12:55.494 [info] block_id: aae783fd-05b0-475b-a942-9dc99c98f4a5, "},{"event":"cmd_output","timestamp":1607098375,"output":"type: BlockRequests, event: persisted block run request from ppl 6e50b27d-02e8-4586-9fe9-e5808f9958b"},{"event":"cmd_output","timestamp":1607098375,"output":"c for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35)"},{"event":"cmd_output","timestamp":1607098375,"output":", \n\u001b[0m\u001b[22m\n16:12:55.496 [info] ppl_id: 3a488595-1ad0-4b5c-a041-f2fe745a96e6, type: PplSubInits,"},{"event":"cmd_output","timestamp":1607098375,"output":" state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_"},{"event":"cmd_output","timestamp":1607098375,"output":"state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:55.497 [info] block_id: aae783fd-05b0-475b-a942-9dc99c98f4a"},{"event":"cmd_output","timestamp":1607098375,"output":"5, type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.B"},{"event":"cmd_output","timestamp":1607098375,"output":"locks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:55.502 [info] Block 0 of pipeline with "},{"event":"cmd_output","timestamp":1607098375,"output":"id: 6e50b27d-02e8-4586-9fe9-e5808f9958bc scheduled in block service with id: : \"aae783fd-05b0-475b-a"},{"event":"cmd_output","timestamp":1607098375,"output":"942-9dc99c98f4a5\"\n\u001b[0m\u001b[22m\n16:12:55.508 [info] block_id: aae783fd-05b0-475b-a942-9dc99c98f4a5, t"},{"event":"cmd_output","timestamp":1607098375,"output":"ype: BlockRequests, event: persisted build and sub_ppl details for block_request: aae783fd-05b0-475b"},{"event":"cmd_output","timestamp":1607098375,"output":"-a942-9dc99c98f4a5, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41"},{"event":"cmd_output","timestamp":1607098375,"output":"), \n\u001b[0m\u001b[22m\n16:12:55.508 [info] ppl_id: 6e50b27d-02e8-4586-9fe9-e5808f9958bc, type: PplBlocks, "},{"event":"cmd_output","timestamp":1607098375,"output":"block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM"},{"event":"cmd_output","timestamp":1607098375,"output":".Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:55.511 [info] block_id: aae783fd-05b0-475b-a942-9"},{"event":"cmd_output","timestamp":1607098375,"output":"dc99c98f4a5, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Bl"},{"event":"cmd_output","timestamp":1607098375,"output":"ocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:55.514 [info] block_id: aae78"},{"event":"cmd_output","timestamp":1607098375,"output":"3fd-05b0-475b-a942-9dc99c98f4a5, type: Blocks, state: running, event: exit_scheduling, recovery_coun"},{"event":"cmd_output","timestamp":1607098375,"output":"t: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:55.532 [info] bloc"},{"event":"cmd_output","timestamp":1607098375,"output":"k_id: aae783fd-05b0-475b-a942-9dc99c98f4a5, type: Tasks, state: running, event: exit_scheduling, rec"},{"event":"cmd_output","timestamp":1607098375,"output":"overy_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:55.592 [i"},{"event":"cmd_output","timestamp":1607098375,"output":"nfo] block_id: aae783fd-05b0-475b-a942-9dc99c98f4a5, type: Tasks, state: done, event: exit_scheduli"},{"event":"cmd_output","timestamp":1607098375,"output":"ng, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:55"},{"event":"cmd_output","timestamp":1607098375,"output":".595 [info] block_id: aae783fd-05b0-475b-a942-9dc99c98f4a5, type: Blocks, state: done, event: exit_"},{"event":"cmd_output","timestamp":1607098375,"output":"scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098375,"output":"16:12:55.606 [info] ppl_id: 6e50b27d-02e8-4586-9fe9-e5808f9958bc, block_id: aae783fd-05b0-475b-a942"},{"event":"cmd_output","timestamp":1607098375,"output":"-9dc99c98f4a5, type: PplBlocks, block_index: 0, state: done, result: failed, event: exit_scheduling,"},{"event":"cmd_output","timestamp":1607098375,"output":" recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:55.61"},{"event":"cmd_output","timestamp":1607098375,"output":"4 [info] PplBlocks WaitingState STM is scheduling block 1 from pipeline: \"6e50b27d-02e8-4586-9fe9-e"},{"event":"cmd_output","timestamp":1607098375,"output":"5808f9958bc\"\n\u001b[0m\u001b[22m\n16:12:55.618 [info] ppl_id: 6e50b27d-02e8-4586-9fe9-e5808f9958bc, type: Pp"},{"event":"cmd_output","timestamp":1607098375,"output":"lBlocks, block_index: 1, state: done, result: canceled, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098375,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:55.630 [info] ppl_id: 6e5"},{"event":"cmd_output","timestamp":1607098375,"output":"0b27d-02e8-4586-9fe9-e5808f9958bc, type: Ppls, state: done, result: failed, event: exit_scheduling, "},{"event":"cmd_output","timestamp":1607098377,"output":"recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[33m\n16:12:57.853"},{"event":"cmd_output","timestamp":1607098377,"output":" [warn] Elixir.Wormhole{#PID<0.10561.1>}:: callback: {GoferClient.GrpcClient, :create_, [%InternalA"},{"event":"cmd_output","timestamp":1607098377,"output":"pi.Gofer.CreateRequest{branch_name: \"master\", commit_range: \"1234...4567\", commit_sha: \"75891a4469\","},{"event":"cmd_output","timestamp":1607098377,"output":" git_ref_type: 0, label: \"master\", pipeline_id: \"319c4c7a-babb-467d-a24f-773e3e42805a\", pr_base: \"\","},{"event":"cmd_output","timestamp":1607098377,"output":" pr_sha: \"\", prev_ppl_artefact_ids: [\"319c4c7a-babb-467d-a24f-773e3e42805a\"], project_id: \"to_list\","},{"event":"cmd_output","timestamp":1607098377,"output":" targets: [%InternalApi.Gofer.Target{auto_promote_when: \"\", auto_trigger_on: [], name: \"Extension pp"},{"event":"cmd_output","timestamp":1607098377,"output":"l\", parameter_env_vars: [], pipeline_path: \"/foo/bar/test.yml\"}], working_dir: \".semaphore\", yml_fil"},{"event":"cmd_output","timestamp":1607098377,"output":"e_name: \"semaphore.yml\"}]}; reason: {:timeout, 2345}\n\u001b[0m\u001b[31m\n16:12:57.854 [error] ppl_id: not_av"},{"event":"cmd_output","timestamp":1607098377,"output":"ailable, event: exit_scheduling, context: {:error, :user_exit_function, {:error, {:timeout, 2345}}, "},{"event":"cmd_output","timestamp":1607098377,"output":"%{item: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_in"},{"event":"cmd_output","timestamp":1607098377,"output":"its\">, compile_task_id: nil, error_description: \"\", id: 260, in_scheduling: true, init_type: \"regula"},{"event":"cmd_output","timestamp":1607098377,"output":"r\", inserted_at: ~N[2020-12-04 16:12:55.382343], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"319c4c7a-babb-467d-a24f-773e3e42805a\", recovery_"},{"event":"cmd_output","timestamp":1607098377,"output":"count: 0, result: nil, result_reason: nil, state: \"regular_init\", terminate_request: nil, terminate_"},{"event":"cmd_output","timestamp":1607098377,"output":"request_desc: nil, updated_at: ~N[2020-12-04 16:12:55.444659]}}}, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098377,"output":"_state_change/1(L96), \n\u001b[0m\u001b[31m\n16:12:57.854 [error] STM Elixir.Ppl.PplSubInits.STMHandler.Regula"},{"event":"cmd_output","timestamp":1607098377,"output":"rInitState FAILED: {:error, :user_exit_function, {:error, {:timeout, 2345}}, %{item: %Ppl.PplSubInit"},{"event":"cmd_output","timestamp":1607098377,"output":"s.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id:"},{"event":"cmd_output","timestamp":1607098377,"output":" nil, error_description: \"\", id: 260, in_scheduling: true, init_type: \"regular\", inserted_at: ~N[202"},{"event":"cmd_output","timestamp":1607098377,"output":"0-12-04 16:12:55.382343], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"319c4c7a-babb-467d-a24f-773e3e42805a\", recovery_count: 0, result: nil, "},{"event":"cmd_output","timestamp":1607098377,"output":"result_reason: nil, state: \"regular_init\", terminate_request: nil, terminate_request_desc: nil, upda"},{"event":"cmd_output","timestamp":1607098377,"output":"ted_at: ~N[2020-12-04 16:12:55.444659]}}}\n\u001b[0m\u001b[22m\n16:12:57.878 [info] ppl_id: 3a488595-1ad0-4b5"},{"event":"cmd_output","timestamp":1607098377,"output":"c-a041-f2fe745a96e6, type: PplRequests, event: persisted definition for request with request_token: "},{"event":"cmd_output","timestamp":1607098377,"output":"cd1b290b-087f-4577-b9fa-28729362bc8e, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert"},{"event":"cmd_output","timestamp":1607098377,"output":"_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:57.885 [info] ppl_id: not_available, event: created, origin:"},{"event":"cmd_output","timestamp":1607098377,"output":" Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:57.885 [info"},{"event":"cmd_output","timestamp":1607098377,"output":"] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098377,"output":"m\u001b[22m\n16:12:57.886 [info] ppl_id: 3a488595-1ad0-4b5c-a041-f2fe745a96e6, type: PplBlocks, block_in"},{"event":"cmd_output","timestamp":1607098377,"output":"dex: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHa"},{"event":"cmd_output","timestamp":1607098377,"output":"ndler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:57.886 [info] ppl_id: 3a488595-1ad0-4b5c"},{"event":"cmd_output","timestamp":1607098377,"output":"-a041-f2fe745a96e6, type: PplBlocks, block_index: 1, state: initializing, event: created, recovery_c"},{"event":"cmd_output","timestamp":1607098377,"output":"ount: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098377,"output":":12:57.889 [info] ppl_id: 3a488595-1ad0-4b5c-a041-f2fe745a96e6, type: PplSubInits, state: done, res"},{"event":"cmd_output","timestamp":1607098377,"output":"ult: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_cha"},{"event":"cmd_output","timestamp":1607098377,"output":"nge/1(L90), \n\u001b[0m\u001b[22m\n16:12:57.898 [info] ppl_id: 3a488595-1ad0-4b5c-a041-f2fe745a96e6, type: Pp"},{"event":"cmd_output","timestamp":1607098377,"output":"lBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098377,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:57.899 [info] ppl_id: 3a488595-1ad0-4b5c"},{"event":"cmd_output","timestamp":1607098377,"output":"-a041-f2fe745a96e6, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: E"},{"event":"cmd_output","timestamp":1607098377,"output":"lixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:57.907 [info] ppl_id: 3a488595-1a"},{"event":"cmd_output","timestamp":1607098377,"output":"d0-4b5c-a041-f2fe745a96e6, type: PplBlocks, block_index: 1, state: waiting, event: exit_scheduling, "},{"event":"cmd_output","timestamp":1607098377,"output":"recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:57.912"},{"event":"cmd_output","timestamp":1607098377,"output":" [info] ppl_id: 3a488595-1ad0-4b5c-a041-f2fe745a96e6, type: Ppls, state: queuing, event: exit_sched"},{"event":"cmd_output","timestamp":1607098377,"output":"uling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12"},{"event":"cmd_output","timestamp":1607098377,"output":":57.925 [info] ppl_id: 3a488595-1ad0-4b5c-a041-f2fe745a96e6, type: Ppls, state: running, event: exi"},{"event":"cmd_output","timestamp":1607098377,"output":"t_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098377,"output":"\n16:12:57.932 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"3a488595-1ad"},{"event":"cmd_output","timestamp":1607098377,"output":"0-4b5c-a041-f2fe745a96e6\"\n\u001b[0m\u001b[22m\n16:12:57.941 [info] block_id: f6875856-36af-4e67-9b30-a23f726"},{"event":"cmd_output","timestamp":1607098377,"output":"e2cf1, type: BlockRequests, event: persisted block run request from ppl 3a488595-1ad0-4b5c-a041-f2fe"},{"event":"cmd_output","timestamp":1607098377,"output":"745a96e6 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response"},{"event":"cmd_output","timestamp":1607098377,"output":"/4(L35), \n\u001b[0m\u001b[22m\n16:12:57.943 [info] block_id: f6875856-36af-4e67-9b30-a23f726e2cf1, type: Blo"},{"event":"cmd_output","timestamp":1607098377,"output":"cks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model."},{"event":"cmd_output","timestamp":1607098377,"output":"BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:57.944 [info] Block 0 of pipeline with id: 3a488595"},{"event":"cmd_output","timestamp":1607098377,"output":"-1ad0-4b5c-a041-f2fe745a96e6 scheduled in block service with id: : \"f6875856-36af-4e67-9b30-a23f726e"},{"event":"cmd_output","timestamp":1607098377,"output":"2cf1\"\n\u001b[0m\u001b[22m\n16:12:57.947 [info] ppl_id: 3a488595-1ad0-4b5c-a041-f2fe745a96e6, type: PplBlocks"},{"event":"cmd_output","timestamp":1607098377,"output":", block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.S"},{"event":"cmd_output","timestamp":1607098377,"output":"TM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:57.951 [info] block_id: f6875856-36af-4e67-9b30"},{"event":"cmd_output","timestamp":1607098377,"output":"-a23f726e2cf1, type: BlockRequests, event: persisted build and sub_ppl details for block_request: f6"},{"event":"cmd_output","timestamp":1607098377,"output":"875856-36af-4e67-9b30-a23f726e2cf1, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.in"},{"event":"cmd_output","timestamp":1607098377,"output":"sert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:57.953 [info] block_id: f6875856-36af-4e67-9b30-a23f726e2cf1,"},{"event":"cmd_output","timestamp":1607098377,"output":" type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHand"},{"event":"cmd_output","timestamp":1607098377,"output":"ler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:57.957 [info] block_id: f6875856-36af-4e6"},{"event":"cmd_output","timestamp":1607098377,"output":"7-9b30-a23f726e2cf1, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098377,"output":": Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:57.971 [info] block_id: f68758"},{"event":"cmd_output","timestamp":1607098377,"output":"56-36af-4e67-9b30-a23f726e2cf1, type: Tasks, state: running, event: exit_scheduling, recovery_count:"},{"event":"cmd_output","timestamp":1607098378,"output":" 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:58.037 [info] block_"},{"event":"cmd_output","timestamp":1607098378,"output":"id: f6875856-36af-4e67-9b30-a23f726e2cf1, type: Tasks, state: done, event: exit_scheduling, recovery"},{"event":"cmd_output","timestamp":1607098378,"output":"_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:58.042 [info] "},{"event":"cmd_output","timestamp":1607098378,"output":" block_id: f6875856-36af-4e67-9b30-a23f726e2cf1, type: Blocks, state: done, event: exit_scheduling, "},{"event":"cmd_output","timestamp":1607098378,"output":"recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:58.048"},{"event":"cmd_output","timestamp":1607098378,"output":" [info] ppl_id: 3a488595-1ad0-4b5c-a041-f2fe745a96e6, block_id: f6875856-36af-4e67-9b30-a23f726e2cf"},{"event":"cmd_output","timestamp":1607098378,"output":"1, type: PplBlocks, block_index: 0, state: done, result: failed, event: exit_scheduling, recovery_co"},{"event":"cmd_output","timestamp":1607098378,"output":"unt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:58.055 [info] Pp"},{"event":"cmd_output","timestamp":1607098378,"output":"lBlocks WaitingState STM is scheduling block 1 from pipeline: \"3a488595-1ad0-4b5c-a041-f2fe745a96e6\""},{"event":"cmd_output","timestamp":1607098378,"output":"\n\u001b[0m\u001b[22m\n16:12:58.059 [info] ppl_id: 3a488595-1ad0-4b5c-a041-f2fe745a96e6, type: PplBlocks, blo"},{"event":"cmd_output","timestamp":1607098378,"output":"ck_index: 1, state: done, result: canceled, event: exit_scheduling, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098378,"output":"r.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:58.068 [info] ppl_id: 3a488595-1ad0-4"},{"event":"cmd_output","timestamp":1607098378,"output":"b5c-a041-f2fe745a96e6, type: Ppls, state: done, result: failed, event: exit_scheduling, recovery_cou"},{"event":"cmd_output","timestamp":1607098378,"output":"nt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:58.168 [info] Req"},{"event":"cmd_output","timestamp":1607098378,"output":"uest: 'partial_rebuild', request: %{ppl_id: \"3a488595-1ad0-4b5c-a041-f2fe745a96e6\", request_token: \""},{"event":"cmd_output","timestamp":1607098378,"output":"c94c7451-9141-4732-ac73-ef87df2ec708\", user_id: \"\"}\n\u001b[0m\u001b[22m\n16:12:58.172 [info] ppl_id: 827559d"},{"event":"cmd_output","timestamp":1607098378,"output":"5-42c8-46c3-9c7a-dcd824e65c35, type: PplRequests, event: persisted schedule request with request_tok"},{"event":"cmd_output","timestamp":1607098378,"output":"en: c94c7451-9141-4732-ac73-ef87df2ec708, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.pr"},{"event":"cmd_output","timestamp":1607098378,"output":"ocess_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:58.174 [info] ppl_id: 827559d5-42c8-46c3-9c7a-dcd824e65c3"},{"event":"cmd_output","timestamp":1607098378,"output":"5, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls."},{"event":"cmd_output","timestamp":1607098378,"output":"Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:58.176 [info] Persisted ppl_sub_init"},{"event":"cmd_output","timestamp":1607098378,"output":" for pipeline with ppl_id: 827559d5-42c8-46c3-9c7a-dcd824e65c35: %Ppl.PplSubInits.Model.PplSubInits{"},{"event":"cmd_output","timestamp":1607098378,"output":"__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_descript"},{"event":"cmd_output","timestamp":1607098378,"output":"ion: nil, id: 262, in_scheduling: false, init_type: \"rebuild\", inserted_at: ~N[2020-12-04 16:12:58.1"},{"event":"cmd_output","timestamp":1607098378,"output":"76253], pipeline_requests: #Ecto.Association.NotLoaded"},{"event":"cmd_output","timestamp":1607098378,"output":", ppl_id: \"827559d5-42c8-46c3-9c7a-dcd824e65c35\", recovery_count: 0, result: nil, result_reason: nil"},{"event":"cmd_output","timestamp":1607098378,"output":", state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 1"},{"event":"cmd_output","timestamp":1607098378,"output":"6:12:58.176260]}\n\u001b[0m\u001b[22m\n16:12:58.188 [info] ppl_id: 827559d5-42c8-46c3-9c7a-dcd824e65c35, type"},{"event":"cmd_output","timestamp":1607098378,"output":": PplRequests, event: persisted source_args for pipeline: 827559d5-42c8-46c3-9c7a-dcd824e65c35, orig"},{"event":"cmd_output","timestamp":1607098378,"output":"in: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:58.191 "},{"event":"cmd_output","timestamp":1607098378,"output":"[info] ppl_id: 827559d5-42c8-46c3-9c7a-dcd824e65c35, type: PplSubInits, state: fetching, event: exi"},{"event":"cmd_output","timestamp":1607098378,"output":"t_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m"},{"event":"cmd_output","timestamp":1607098378,"output":"\r * test gRPC list() - filter by wf_id (5769.5ms)\u001b[0m\n * test server availability by calling vers"},{"event":"cmd_output","timestamp":1607098378,"output":"ion() rpc\r * test server availability by calling version() rpc (skipped)\n * test gRPC list() - fi"},{"event":"cmd_output","timestamp":1607098378,"output":"lter by git_ref_types\u001b[22m\n16:12:58.263 [info] ppl_id: 713dc97e-4c1b-4188-af7c-fe4619ef2e3a, type:"},{"event":"cmd_output","timestamp":1607098378,"output":" PplRequests, event: persisted schedule request with request_token: 1e83398b-9785-4a07-b009-f9086fe6"},{"event":"cmd_output","timestamp":1607098378,"output":"e3a3, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098378,"output":"16:12:58.266 [info] ppl_id: 713dc97e-4c1b-4188-af7c-fe4619ef2e3a, type: PplRequests, event: persist"},{"event":"cmd_output","timestamp":1607098378,"output":"ed definition for request with request_token: 1e83398b-9785-4a07-b009-f9086fe6e3a3, origin: Elixir.P"},{"event":"cmd_output","timestamp":1607098378,"output":"pl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:58.273 [info] "},{"event":"cmd_output","timestamp":1607098378,"output":"ppl_id: 713dc97e-4c1b-4188-af7c-fe4619ef2e3a, type: Ppls, state: initializing, event: initializing, "},{"event":"cmd_output","timestamp":1607098378,"output":"recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098378,"output":"16:12:58.279 [info] Persisted ppl_sub_init for pipeline with ppl_id: 713dc97e-4c1b-4188-af7c-fe4619"},{"event":"cmd_output","timestamp":1607098378,"output":"ef2e3a: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_in"},{"event":"cmd_output","timestamp":1607098378,"output":"its\">, compile_task_id: nil, error_description: nil, id: 263, in_scheduling: false, init_type: \"regu"},{"event":"cmd_output","timestamp":1607098378,"output":"lar\", inserted_at: ~N[2020-12-04 16:12:58.276747], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"713dc97e-4c1b-4188-af7c-fe4619ef2e3a\", recover"},{"event":"cmd_output","timestamp":1607098378,"output":"y_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_req"},{"event":"cmd_output","timestamp":1607098378,"output":"uest_desc: nil, updated_at: ~N[2020-12-04 16:12:58.276757]}\n\u001b[0m\u001b[22m\n16:12:58.290 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098378,"output":" 9c00d608-73c6-4792-b0db-c1f141783612, type: PplRequests, event: persisted schedule request with req"},{"event":"cmd_output","timestamp":1607098378,"output":"uest_token: af66fce9-06ae-4f22-87a9-af12aef44388, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQu"},{"event":"cmd_output","timestamp":1607098378,"output":"eries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:58.293 [info] ppl_id: 9c00d608-73c6-4792-b0db-c1f"},{"event":"cmd_output","timestamp":1607098378,"output":"141783612, type: PplRequests, event: persisted definition for request with request_token: af66fce9-0"},{"event":"cmd_output","timestamp":1607098378,"output":"6ae-4f22-87a9-af12aef44388, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definitio"},{"event":"cmd_output","timestamp":1607098378,"output":"n/3(L76), \n\u001b[0m\u001b[22m\n16:12:58.296 [info] ppl_id: 9c00d608-73c6-4792-b0db-c1f141783612, type: Ppls"},{"event":"cmd_output","timestamp":1607098378,"output":", state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQue"},{"event":"cmd_output","timestamp":1607098378,"output":"ries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:58.300 [info] Persisted ppl_sub_init for pipeline"},{"event":"cmd_output","timestamp":1607098378,"output":" with ppl_id: 9c00d608-73c6-4792-b0db-c1f141783612: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ec"},{"event":"cmd_output","timestamp":1607098378,"output":"to.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id:"},{"event":"cmd_output","timestamp":1607098378,"output":" 264, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:58.298749], pipel"},{"event":"cmd_output","timestamp":1607098378,"output":"ine_requests: #Ecto.Association.NotLoaded, ppl_id: \"9c"},{"event":"cmd_output","timestamp":1607098378,"output":"00d608-73c6-4792-b0db-c1f141783612\", recovery_count: 0, result: nil, result_reason: nil, state: \"cre"},{"event":"cmd_output","timestamp":1607098378,"output":"ated\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:58.29875"},{"event":"cmd_output","timestamp":1607098378,"output":"9]}\n\u001b[0m\u001b[22m\n16:12:58.304 [info] ppl_id: 6f92290f-6b00-481c-8985-99576646deeb, type: PplRequests"},{"event":"cmd_output","timestamp":1607098378,"output":", event: persisted schedule request with request_token: 62010d91-1ed3-4bf4-9cd7-09c37ea52cdd, origin"},{"event":"cmd_output","timestamp":1607098378,"output":": Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:58.311"},{"event":"cmd_output","timestamp":1607098378,"output":" [info] ppl_id: 6f92290f-6b00-481c-8985-99576646deeb, type: PplRequests, event: persisted definitio"},{"event":"cmd_output","timestamp":1607098378,"output":"n for request with request_token: 62010d91-1ed3-4bf4-9cd7-09c37ea52cdd, origin: Elixir.Ppl.PplReques"},{"event":"cmd_output","timestamp":1607098378,"output":"ts.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:58.316 [info] ppl_id: 6f92"},{"event":"cmd_output","timestamp":1607098378,"output":"290f-6b00-481c-8985-99576646deeb, type: Ppls, state: initializing, event: initializing, recovery_cou"},{"event":"cmd_output","timestamp":1607098378,"output":"nt: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:58.320"},{"event":"cmd_output","timestamp":1607098378,"output":" [info] Persisted ppl_sub_init for pipeline with ppl_id: 6f92290f-6b00-481c-8985-99576646deeb: %Ppl"},{"event":"cmd_output","timestamp":1607098378,"output":".PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compi"},{"event":"cmd_output","timestamp":1607098378,"output":"le_task_id: nil, error_description: nil, id: 265, in_scheduling: false, init_type: \"regular\", insert"},{"event":"cmd_output","timestamp":1607098378,"output":"ed_at: ~N[2020-12-04 16:12:58.319071], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"6f92290f-6b00-481c-8985-99576646deeb\", recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098378,"output":"result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: n"},{"event":"cmd_output","timestamp":1607098378,"output":"il, updated_at: ~N[2020-12-04 16:12:58.319095]}\n\u001b[0m\u001b[22m\n16:12:58.324 [info] ppl_id: 636d6d71-ad"},{"event":"cmd_output","timestamp":1607098378,"output":"1c-4076-945b-f7cc3f04e68e, type: PplRequests, event: persisted schedule request with request_token: "},{"event":"cmd_output","timestamp":1607098378,"output":"d4b1b2b8-c967-4469-9774-63887a06b452, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.proces"},{"event":"cmd_output","timestamp":1607098378,"output":"s_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:58.326 [info] ppl_id: 636d6d71-ad1c-4076-945b-f7cc3f04e68e, t"},{"event":"cmd_output","timestamp":1607098378,"output":"ype: PplRequests, event: persisted definition for request with request_token: d4b1b2b8-c967-4469-977"},{"event":"cmd_output","timestamp":1607098378,"output":"4-63887a06b452, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n"},{"event":"cmd_output","timestamp":1607098378,"output":"\u001b[0m\u001b[22m\n16:12:58.328 [info] ppl_id: 636d6d71-ad1c-4076-945b-f7cc3f04e68e, type: Ppls, state: ini"},{"event":"cmd_output","timestamp":1607098378,"output":"tializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process"},{"event":"cmd_output","timestamp":1607098378,"output":"_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:58.332 [info] Persisted ppl_sub_init for pipeline with ppl_id"},{"event":"cmd_output","timestamp":1607098378,"output":": 636d6d71-ad1c-4076-945b-f7cc3f04e68e: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Me"},{"event":"cmd_output","timestamp":1607098378,"output":"tadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 266, in_sch"},{"event":"cmd_output","timestamp":1607098378,"output":"eduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:58.331104], pipeline_requests"},{"event":"cmd_output","timestamp":1607098378,"output":": #Ecto.Association.NotLoaded, ppl_id: \"636d6d71-ad1c-"},{"event":"cmd_output","timestamp":1607098378,"output":"4076-945b-f7cc3f04e68e\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", termi"},{"event":"cmd_output","timestamp":1607098378,"output":"nate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:58.331113]}\n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098378,"output":"2m\n16:12:58.337 [info] ppl_id: 3e224b77-e410-4b93-a451-b554c58481de, type: PplRequests, event: per"},{"event":"cmd_output","timestamp":1607098378,"output":"sisted schedule request with request_token: cc819735-a58a-462e-9023-59b1d898e86a, origin: Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098378,"output":".PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:58.339 [info] ppl"},{"event":"cmd_output","timestamp":1607098378,"output":"_id: 3e224b77-e410-4b93-a451-b554c58481de, type: PplRequests, event: persisted definition for reques"},{"event":"cmd_output","timestamp":1607098378,"output":"t with request_token: cc819735-a58a-462e-9023-59b1d898e86a, origin: Elixir.Ppl.PplRequests.Model.Ppl"},{"event":"cmd_output","timestamp":1607098378,"output":"RequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:58.341 [info] ppl_id: 3e224b77-e410-4b"},{"event":"cmd_output","timestamp":1607098378,"output":"93-a451-b554c58481de, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098378,"output":"n: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:58.344 [info] Per"},{"event":"cmd_output","timestamp":1607098378,"output":"sisted ppl_sub_init for pipeline with ppl_id: 3e224b77-e410-4b93-a451-b554c58481de: %Ppl.PplSubInits"},{"event":"cmd_output","timestamp":1607098378,"output":".Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: "},{"event":"cmd_output","timestamp":1607098378,"output":"nil, error_description: nil, id: 267, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[20"},{"event":"cmd_output","timestamp":1607098378,"output":"20-12-04 16:12:58.343221], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"3e224b77-e410-4b93-a451-b554c58481de\", recovery_count: 0, result: nil,"},{"event":"cmd_output","timestamp":1607098378,"output":" result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_"},{"event":"cmd_output","timestamp":1607098378,"output":"at: ~N[2020-12-04 16:12:58.343230]}\n\u001b[0m\u001b[22m\n16:12:58.348 [info] ppl_id: 555bd247-95fe-492b-b551"},{"event":"cmd_output","timestamp":1607098378,"output":"-b50107450870, type: PplRequests, event: persisted schedule request with request_token: 3ae82679-927"},{"event":"cmd_output","timestamp":1607098378,"output":"c-4821-94b6-eea1c5847781, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2"},{"event":"cmd_output","timestamp":1607098378,"output":"(L55), \n\u001b[0m\u001b[22m\n16:12:58.349 [info] ppl_id: 555bd247-95fe-492b-b551-b50107450870, type: PplRequ"},{"event":"cmd_output","timestamp":1607098378,"output":"ests, event: persisted definition for request with request_token: 3ae82679-927c-4821-94b6-eea1c58477"},{"event":"cmd_output","timestamp":1607098378,"output":"81, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098378,"output":"6:12:58.352 [info] ppl_id: 555bd247-95fe-492b-b551-b50107450870, type: Ppls, state: initializing, e"},{"event":"cmd_output","timestamp":1607098378,"output":"vent: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2("},{"event":"cmd_output","timestamp":1607098378,"output":"L124), \n\u001b[0m\u001b[22m\n16:12:58.356 [info] Persisted ppl_sub_init for pipeline with ppl_id: 555bd247-9"},{"event":"cmd_output","timestamp":1607098378,"output":"5fe-492b-b551-b50107450870: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:load"},{"event":"cmd_output","timestamp":1607098378,"output":"ed, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 268, in_scheduling: fal"},{"event":"cmd_output","timestamp":1607098378,"output":"se, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:58.355006], pipeline_requests: #Ecto.Asso"},{"event":"cmd_output","timestamp":1607098378,"output":"ciation.NotLoaded, ppl_id: \"555bd247-95fe-492b-b551-b5"},{"event":"cmd_output","timestamp":1607098378,"output":"0107450870\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request"},{"event":"cmd_output","timestamp":1607098378,"output":": nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:58.355033]}\n\u001b[0m\u001b[22m\n16:12:58"},{"event":"cmd_output","timestamp":1607098378,"output":".365 [info] ppl_id: 15fb7d2d-e690-416c-8267-ef183a6d8803, type: PplRequests, event: persisted sched"},{"event":"cmd_output","timestamp":1607098378,"output":"ule request with request_token: bee86769-f9c6-4029-b077-2e190493acd4, origin: Elixir.Ppl.PplRequests"},{"event":"cmd_output","timestamp":1607098378,"output":".Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:58.366 [info] ppl_id: 15fb7d2"},{"event":"cmd_output","timestamp":1607098378,"output":"d-e690-416c-8267-ef183a6d8803, type: PplRequests, event: persisted definition for request with reque"},{"event":"cmd_output","timestamp":1607098378,"output":"st_token: bee86769-f9c6-4029-b077-2e190493acd4, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQuer"},{"event":"cmd_output","timestamp":1607098378,"output":"ies.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:58.368 [info] ppl_id: 15fb7d2d-e690-416c-8267-ef18"},{"event":"cmd_output","timestamp":1607098378,"output":"3a6d8803, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Pp"},{"event":"cmd_output","timestamp":1607098378,"output":"l.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:58.371 [info] Persisted ppl_s"},{"event":"cmd_output","timestamp":1607098378,"output":"ub_init for pipeline with ppl_id: 15fb7d2d-e690-416c-8267-ef183a6d8803: %Ppl.PplSubInits.Model.PplSu"},{"event":"cmd_output","timestamp":1607098378,"output":"bInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_d"},{"event":"cmd_output","timestamp":1607098378,"output":"escription: nil, id: 269, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:"},{"event":"cmd_output","timestamp":1607098378,"output":"12:58.370987], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"15fb7d2d-e690-416c-8267-ef183a6d8803\", recovery_count: 0, result: nil, result_reas"},{"event":"cmd_output","timestamp":1607098378,"output":"on: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-"},{"event":"cmd_output","timestamp":1607098378,"output":"12-04 16:12:58.370998]}\n\u001b[0m\u001b[22m\n16:12:58.375 [info] ppl_id: 66cf8618-cc15-446d-a325-02c829a414e"},{"event":"cmd_output","timestamp":1607098378,"output":"f, type: PplRequests, event: persisted schedule request with request_token: 914f5a13-5d45-4602-9eff-"},{"event":"cmd_output","timestamp":1607098378,"output":"b4e2f8f4c45d, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098378,"output":"m\u001b[22m\n16:12:58.381 [info] ppl_id: 66cf8618-cc15-446d-a325-02c829a414ef, type: PplRequests, event:"},{"event":"cmd_output","timestamp":1607098378,"output":" persisted definition for request with request_token: 914f5a13-5d45-4602-9eff-b4e2f8f4c45d, origin: "},{"event":"cmd_output","timestamp":1607098378,"output":"Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:58.383 "},{"event":"cmd_output","timestamp":1607098378,"output":"[info] ppl_id: 66cf8618-cc15-446d-a325-02c829a414ef, type: Ppls, state: initializing, event: initia"},{"event":"cmd_output","timestamp":1607098378,"output":"lizing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098378,"output":"m\u001b[22m\n16:12:58.385 [info] Persisted ppl_sub_init for pipeline with ppl_id: 66cf8618-cc15-446d-a32"},{"event":"cmd_output","timestamp":1607098378,"output":"5-02c829a414ef: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipelin"},{"event":"cmd_output","timestamp":1607098378,"output":"e_sub_inits\">, compile_task_id: nil, error_description: nil, id: 270, in_scheduling: false, init_typ"},{"event":"cmd_output","timestamp":1607098378,"output":"e: \"regular\", inserted_at: ~N[2020-12-04 16:12:58.384861], pipeline_requests: #Ecto.Association.NotL"},{"event":"cmd_output","timestamp":1607098378,"output":"oaded, ppl_id: \"66cf8618-cc15-446d-a325-02c829a414ef\","},{"event":"cmd_output","timestamp":1607098378,"output":" recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, termi"},{"event":"cmd_output","timestamp":1607098378,"output":"nate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:58.384869]}\n\u001b[0m\u001b[22m\n16:12:58.388 [info] "},{"event":"cmd_output","timestamp":1607098378,"output":" ppl_id: 692f2434-5586-43b9-88b5-535c2c1e62c1, type: PplRequests, event: persisted schedule request "},{"event":"cmd_output","timestamp":1607098378,"output":"with request_token: eeb09212-7a93-4d7e-bd33-161e29fc0caa, origin: Elixir.Ppl.PplRequests.Model.PplRe"},{"event":"cmd_output","timestamp":1607098378,"output":"questsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:58.389 [info] ppl_id: 692f2434-5586-43b9-"},{"event":"cmd_output","timestamp":1607098378,"output":"88b5-535c2c1e62c1, type: PplRequests, event: persisted definition for request with request_token: ee"},{"event":"cmd_output","timestamp":1607098378,"output":"b09212-7a93-4d7e-bd33-161e29fc0caa, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_d"},{"event":"cmd_output","timestamp":1607098378,"output":"efinition/3(L76), \n\u001b[0m\u001b[22m\n16:12:58.391 [info] ppl_id: 692f2434-5586-43b9-88b5-535c2c1e62c1, ty"},{"event":"cmd_output","timestamp":1607098378,"output":"pe: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model"},{"event":"cmd_output","timestamp":1607098378,"output":".PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:58.400 [info] Persisted ppl_sub_init for "},{"event":"cmd_output","timestamp":1607098378,"output":"pipeline with ppl_id: 692f2434-5586-43b9-88b5-535c2c1e62c1: %Ppl.PplSubInits.Model.PplSubInits{__met"},{"event":"cmd_output","timestamp":1607098378,"output":"a__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: "},{"event":"cmd_output","timestamp":1607098378,"output":"nil, id: 271, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:58.399464"},{"event":"cmd_output","timestamp":1607098378,"output":"], pipeline_requests: #Ecto.Association.NotLoaded, ppl"},{"event":"cmd_output","timestamp":1607098378,"output":"_id: \"692f2434-5586-43b9-88b5-535c2c1e62c1\", recovery_count: 0, result: nil, result_reason: nil, sta"},{"event":"cmd_output","timestamp":1607098378,"output":"te: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:"},{"event":"cmd_output","timestamp":1607098378,"output":"58.399472]}\n\u001b[0m\u001b[22m\n16:12:58.404 [info] ppl_id: 21d7eaaa-0972-4693-9923-1360a28f18e0, type: Ppl"},{"event":"cmd_output","timestamp":1607098378,"output":"Requests, event: persisted schedule request with request_token: 7903b0ad-2d98-4227-8193-76e7903378b9"},{"event":"cmd_output","timestamp":1607098378,"output":", origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098378,"output":"2:58.406 [info] ppl_id: 21d7eaaa-0972-4693-9923-1360a28f18e0, type: PplRequests, event: persisted d"},{"event":"cmd_output","timestamp":1607098378,"output":"efinition for request with request_token: 7903b0ad-2d98-4227-8193-76e7903378b9, origin: Elixir.Ppl.P"},{"event":"cmd_output","timestamp":1607098378,"output":"plRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:58.408 [info] ppl_"},{"event":"cmd_output","timestamp":1607098378,"output":"id: 21d7eaaa-0972-4693-9923-1360a28f18e0, type: Ppls, state: initializing, event: initializing, reco"},{"event":"cmd_output","timestamp":1607098378,"output":"very_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098378,"output":"2:58.410 [info] Persisted ppl_sub_init for pipeline with ppl_id: 21d7eaaa-0972-4693-9923-1360a28f18"},{"event":"cmd_output","timestamp":1607098378,"output":"e0: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\""},{"event":"cmd_output","timestamp":1607098378,"output":">, compile_task_id: nil, error_description: nil, id: 272, in_scheduling: false, init_type: \"regular\""},{"event":"cmd_output","timestamp":1607098378,"output":", inserted_at: ~N[2020-12-04 16:12:58.409777], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"21d7eaaa-0972-4693-9923-1360a28f18e0\", recovery_co"},{"event":"cmd_output","timestamp":1607098378,"output":"unt: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request"},{"event":"cmd_output","timestamp":1607098378,"output":"_desc: nil, updated_at: ~N[2020-12-04 16:12:58.409784]}\n\u001b[0m\u001b[22m\n16:12:58.414 [info] ppl_id: 748"},{"event":"cmd_output","timestamp":1607098378,"output":"a8c2b-ae18-451e-b99a-0dbba82309c5, type: PplRequests, event: persisted schedule request with request"},{"event":"cmd_output","timestamp":1607098378,"output":"_token: d817da66-4877-4040-a0e6-03e35a2451a2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQuerie"},{"event":"cmd_output","timestamp":1607098378,"output":"s.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:58.416 [info] ppl_id: 748a8c2b-ae18-451e-b99a-0dbba82"},{"event":"cmd_output","timestamp":1607098378,"output":"309c5, type: PplRequests, event: persisted definition for request with request_token: d817da66-4877-"},{"event":"cmd_output","timestamp":1607098378,"output":"4040-a0e6-03e35a2451a2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3("},{"event":"cmd_output","timestamp":1607098378,"output":"L76), \n\u001b[0m\u001b[22m\n16:12:58.419 [info] ppl_id: 748a8c2b-ae18-451e-b99a-0dbba82309c5, type: Ppls, st"},{"event":"cmd_output","timestamp":1607098378,"output":"ate: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries"},{"event":"cmd_output","timestamp":1607098378,"output":".process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:58.428 [info] Persisted ppl_sub_init for pipeline wit"},{"event":"cmd_output","timestamp":1607098378,"output":"h ppl_id: 748a8c2b-ae18-451e-b99a-0dbba82309c5: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.S"},{"event":"cmd_output","timestamp":1607098378,"output":"chema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 273"},{"event":"cmd_output","timestamp":1607098378,"output":", in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:58.427068], pipeline_"},{"event":"cmd_output","timestamp":1607098378,"output":"requests: #Ecto.Association.NotLoaded, ppl_id: \"748a8c"},{"event":"cmd_output","timestamp":1607098378,"output":"2b-ae18-451e-b99a-0dbba82309c5\", recovery_count: 0, result: nil, result_reason: nil, state: \"created"},{"event":"cmd_output","timestamp":1607098378,"output":"\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:58.427077]}\r"},{"event":"cmd_output","timestamp":1607098378,"output":"\n\u001b[0m\u001b[22m\n16:12:58.432 [info] ppl_id: a8a3b759-3ce4-4e4c-ada8-b10b3c509f8a, type: PplRequests, ev"},{"event":"cmd_output","timestamp":1607098378,"output":"ent: persisted schedule request with request_token: 7fd2c1df-cc56-4996-acb1-3f6c7ade8368, origin: El"},{"event":"cmd_output","timestamp":1607098378,"output":"ixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:58.433 [in"},{"event":"cmd_output","timestamp":1607098378,"output":"fo] ppl_id: a8a3b759-3ce4-4e4c-ada8-b10b3c509f8a, type: PplRequests, event: persisted definition fo"},{"event":"cmd_output","timestamp":1607098378,"output":"r request with request_token: 7fd2c1df-cc56-4996-acb1-3f6c7ade8368, origin: Elixir.Ppl.PplRequests.M"},{"event":"cmd_output","timestamp":1607098378,"output":"odel.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:58.435 [info] ppl_id: a8a3b759"},{"event":"cmd_output","timestamp":1607098378,"output":"-3ce4-4e4c-ada8-b10b3c509f8a, type: Ppls, state: initializing, event: initializing, recovery_count: "},{"event":"cmd_output","timestamp":1607098378,"output":"0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:58.439 [in"},{"event":"cmd_output","timestamp":1607098378,"output":"fo] Persisted ppl_sub_init for pipeline with ppl_id: a8a3b759-3ce4-4e4c-ada8-b10b3c509f8a: %Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098378,"output":"SubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_t"},{"event":"cmd_output","timestamp":1607098378,"output":"ask_id: nil, error_description: nil, id: 274, in_scheduling: false, init_type: \"regular\", inserted_a"},{"event":"cmd_output","timestamp":1607098378,"output":"t: ~N[2020-12-04 16:12:58.438105], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"a8a3b759-3ce4-4e4c-ada8-b10b3c509f8a\", recovery_count: 0, resu"},{"event":"cmd_output","timestamp":1607098378,"output":"lt: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, "},{"event":"cmd_output","timestamp":1607098378,"output":"updated_at: ~N[2020-12-04 16:12:58.438114]}\n\u001b[0m\u001b[22m\n16:12:58.445 [info] ppl_id: 04340c1b-6269-4"},{"event":"cmd_output","timestamp":1607098378,"output":"8dd-928b-df613a810db5, type: PplRequests, event: persisted schedule request with request_token: 027c"},{"event":"cmd_output","timestamp":1607098378,"output":"a5dd-f878-4e77-98ef-5cc0a785b42e, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_re"},{"event":"cmd_output","timestamp":1607098378,"output":"sponse/2(L55), \n\u001b[0m\u001b[22m\n16:12:58.447 [info] ppl_id: 04340c1b-6269-48dd-928b-df613a810db5, type:"},{"event":"cmd_output","timestamp":1607098378,"output":" PplRequests, event: persisted definition for request with request_token: 027ca5dd-f878-4e77-98ef-5c"},{"event":"cmd_output","timestamp":1607098378,"output":"c0a785b42e, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098378,"output":"\u001b[22m\n16:12:58.449 [info] ppl_id: 04340c1b-6269-48dd-928b-df613a810db5, type: Ppls, state: initial"},{"event":"cmd_output","timestamp":1607098378,"output":"izing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_res"},{"event":"cmd_output","timestamp":1607098378,"output":"ponse/2(L124), \n\u001b[0m\u001b[22m\n16:12:58.452 [info] Persisted ppl_sub_init for pipeline with ppl_id: 04"},{"event":"cmd_output","timestamp":1607098378,"output":"340c1b-6269-48dd-928b-df613a810db5: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metada"},{"event":"cmd_output","timestamp":1607098378,"output":"ta<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 275, in_schedul"},{"event":"cmd_output","timestamp":1607098378,"output":"ing: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:58.451154], pipeline_requests: #E"},{"event":"cmd_output","timestamp":1607098378,"output":"cto.Association.NotLoaded, ppl_id: \"04340c1b-6269-48dd"},{"event":"cmd_output","timestamp":1607098378,"output":"-928b-df613a810db5\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate"},{"event":"cmd_output","timestamp":1607098378,"output":"_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:58.451163]}\n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098378,"output":"16:12:58.458 [info] ppl_id: 0481bb40-9504-4e05-8b22-8fa4d33ee5d9, type: PplRequests, event: persist"},{"event":"cmd_output","timestamp":1607098378,"output":"ed schedule request with request_token: 23af24a7-c7f1-46c9-a76b-4a2617cfbb2c, origin: Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098378,"output":"Requests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:58.460 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098378,"output":" 0481bb40-9504-4e05-8b22-8fa4d33ee5d9, type: PplRequests, event: persisted definition for request wi"},{"event":"cmd_output","timestamp":1607098378,"output":"th request_token: 23af24a7-c7f1-46c9-a76b-4a2617cfbb2c, origin: Elixir.Ppl.PplRequests.Model.PplRequ"},{"event":"cmd_output","timestamp":1607098378,"output":"estsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:58.462 [info] ppl_id: 0481bb40-9504-4e05-8"},{"event":"cmd_output","timestamp":1607098378,"output":"b22-8fa4d33ee5d9, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: E"},{"event":"cmd_output","timestamp":1607098378,"output":"lixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:58.466 [info] Persist"},{"event":"cmd_output","timestamp":1607098378,"output":"ed ppl_sub_init for pipeline with ppl_id: 0481bb40-9504-4e05-8b22-8fa4d33ee5d9: %Ppl.PplSubInits.Mod"},{"event":"cmd_output","timestamp":1607098378,"output":"el.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil,"},{"event":"cmd_output","timestamp":1607098378,"output":" error_description: nil, id: 276, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-1"},{"event":"cmd_output","timestamp":1607098378,"output":"2-04 16:12:58.464403], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"0481bb40-9504-4e05-8b22-8fa4d33ee5d9\", recovery_count: 0, result: nil, res"},{"event":"cmd_output","timestamp":1607098378,"output":"ult_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: "},{"event":"cmd_output","timestamp":1607098378,"output":"~N[2020-12-04 16:12:58.464411]}\n\u001b[0m\u001b[22m\n16:12:58.470 [info] ppl_id: a45f9332-3ce0-4115-88f2-b17"},{"event":"cmd_output","timestamp":1607098378,"output":"032e77054, type: PplRequests, event: persisted schedule request with request_token: 028f348b-572e-4d"},{"event":"cmd_output","timestamp":1607098378,"output":"bb-b167-7fe714312442, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55"},{"event":"cmd_output","timestamp":1607098378,"output":"), \n\u001b[0m\u001b[22m\n16:12:58.471 [info] ppl_id: a45f9332-3ce0-4115-88f2-b17032e77054, type: PplRequests"},{"event":"cmd_output","timestamp":1607098378,"output":", event: persisted definition for request with request_token: 028f348b-572e-4dbb-b167-7fe714312442, "},{"event":"cmd_output","timestamp":1607098378,"output":"origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12"},{"event":"cmd_output","timestamp":1607098378,"output":":58.473 [info] ppl_id: a45f9332-3ce0-4115-88f2-b17032e77054, type: Ppls, state: initializing, event"},{"event":"cmd_output","timestamp":1607098378,"output":": initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124"},{"event":"cmd_output","timestamp":1607098378,"output":"), \n\u001b[0m\u001b[22m\n16:12:58.476 [info] Persisted ppl_sub_init for pipeline with ppl_id: a45f9332-3ce0-"},{"event":"cmd_output","timestamp":1607098378,"output":"4115-88f2-b17032e77054: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, "},{"event":"cmd_output","timestamp":1607098378,"output":"\"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 277, in_scheduling: false, "},{"event":"cmd_output","timestamp":1607098378,"output":"init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:58.475928], pipeline_requests: #Ecto.Associat"},{"event":"cmd_output","timestamp":1607098378,"output":"ion.NotLoaded, ppl_id: \"a45f9332-3ce0-4115-88f2-b17032"},{"event":"cmd_output","timestamp":1607098378,"output":"e77054\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: ni"},{"event":"cmd_output","timestamp":1607098378,"output":"l, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:58.475937]}\n\u001b[0m\u001b[22m\n16:12:58.479"},{"event":"cmd_output","timestamp":1607098378,"output":" [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls"},{"event":"cmd_output","timestamp":1607098378,"output":".STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-ST"},{"event":"cmd_output","timestamp":1607098378,"output":"MHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"pending\", \"done\"]"},{"event":"cmd_output","timestamp":1607098378,"output":", cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher"},{"event":"cmd_output","timestamp":1607098378,"output":"_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, r"},{"event":"cmd_output","timestamp":1607098378,"output":"eturning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema:"},{"event":"cmd_output","timestamp":1607098378,"output":" Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:58.480 [info] Periodic from module "},{"event":"cmd_output","timestamp":1607098378,"output":"Elixir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler.PendingState :: period:"},{"event":"cmd_output","timestamp":1607098378,"output":" 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args"},{"event":"cmd_output","timestamp":1607098378,"output":": %{allowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: P"},{"event":"cmd_output","timestamp":1607098378,"output":"pl.Ppls.Model.Ppls, observed_state: \"pending\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHa"},{"event":"cmd_output","timestamp":1607098378,"output":"ndler.PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :s"},{"event":"cmd_output","timestamp":1607098378,"output":"tate, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupe"},{"event":"cmd_output","timestamp":1607098378,"output":"rvisor}\n\u001b[0m\u001b[22m\n16:12:58.481 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.QueuingStat"},{"event":"cmd_output","timestamp":1607098378,"output":"e with name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, metric_name: {\"Ppl.beholder-w"},{"event":"cmd_output","timestamp":1607098378,"output":"ake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{allowed_states: [\"queuing\", \"runni"},{"event":"cmd_output","timestamp":1607098378,"output":"ng\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", p"},{"event":"cmd_output","timestamp":1607098378,"output":"ublisher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo"},{"event":"cmd_output","timestamp":1607098378,"output":", returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], sche"},{"event":"cmd_output","timestamp":1607098378,"output":"ma: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:58.482 [info] Periodic from modu"},{"event":"cmd_output","timestamp":1607098378,"output":"le Elixir.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHandler.RunningState :: peri"},{"event":"cmd_output","timestamp":1607098378,"output":"od: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring a"},{"event":"cmd_output","timestamp":1607098378,"output":"rgs: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098378,"output":"s.Model.Ppls, observed_state: \"running\", publisher_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler"},{"event":"cmd_output","timestamp":1607098378,"output":".RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state,"},{"event":"cmd_output","timestamp":1607098378,"output":" :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSuperviso"},{"event":"cmd_output","timestamp":1607098378,"output":"r}\n\u001b[0m\u001b[22m\n16:12:58.482 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.StoppingState wi"},{"event":"cmd_output","timestamp":1607098378,"output":"th name Elixir.Ppl.Ppls.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake"},{"event":"cmd_output","timestamp":1607098378,"output":"_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"]"},{"event":"cmd_output","timestamp":1607098378,"output":", cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"stopping\", publisher_cb"},{"event":"cmd_output","timestamp":1607098378,"output":": #Function<0.71803493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning"},{"event":"cmd_output","timestamp":1607098378,"output":": [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098378,"output":"s.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:58.483 [info] Periodic from module Elixir.P"},{"event":"cmd_output","timestamp":1607098378,"output":"pl.PplSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: p"},{"event":"cmd_output","timestamp":1607098378,"output":"eriod: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, r"},{"event":"cmd_output","timestamp":1607098378,"output":"ecurring args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSu"},{"event":"cmd_output","timestamp":1607098378,"output":"bInits.Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, return"},{"event":"cmd_output","timestamp":1607098378,"output":"ing: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl."},{"event":"cmd_output","timestamp":1607098378,"output":"PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:58.484 [info] Periodic fro"},{"event":"cmd_output","timestamp":1607098378,"output":"m module Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler"},{"event":"cmd_output","timestamp":1607098378,"output":".FetchingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler"},{"event":"cmd_output","timestamp":1607098378,"output":"-FetchingState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"done\"], coolin"},{"event":"cmd_output","timestamp":1607098378,"output":"g_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fetching\", publis"},{"event":"cmd_output","timestamp":1607098378,"output":"her_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result"},{"event":"cmd_output","timestamp":1607098378,"output":", :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0"},{"event":"cmd_output","timestamp":1607098378,"output":"m\u001b[22m\n16:12:58.484 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CompilationState"},{"event":"cmd_output","timestamp":1607098378,"output":" with name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 100 ms, metric_name: {\"Ppl."},{"event":"cmd_output","timestamp":1607098378,"output":"beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurring args: %{allowed_state"},{"event":"cmd_output","timestamp":1607098378,"output":"s: [\"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098378,"output":"SubInits.Model.PplSubInits, observed_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, "},{"event":"cmd_output","timestamp":1607098378,"output":"returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema"},{"event":"cmd_output","timestamp":1607098378,"output":": Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:58.485 [info] Period"},{"event":"cmd_output","timestamp":1607098378,"output":"ic from module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.S"},{"event":"cmd_output","timestamp":1607098378,"output":"TMHandler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInit"},{"event":"cmd_output","timestamp":1607098378,"output":"s-STMHandler-RegularInitState\"]}, recurring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, i"},{"event":"cmd_output","timestamp":1607098378,"output":"nitial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_init\", publisher_cb: :skip"},{"event":"cmd_output","timestamp":1607098378,"output":", repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_c"},{"event":"cmd_output","timestamp":1607098378,"output":"ount, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12"},{"event":"cmd_output","timestamp":1607098378,"output":":58.485 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.InitializingState with name Eli"},{"event":"cmd_output","timestamp":1607098378,"output":"xir.Ppl.PplBlocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_u"},{"event":"cmd_output","timestamp":1607098378,"output":"p\", [\"Ppl-PplBlocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializin"},{"event":"cmd_output","timestamp":1607098378,"output":"g\", \"waiting\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_"},{"event":"cmd_output","timestamp":1607098378,"output":"state: \"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request,"},{"event":"cmd_output","timestamp":1607098378,"output":" :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model."},{"event":"cmd_output","timestamp":1607098378,"output":"PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:58.485 [info] Periodic from module Elixir.Ppl."},{"event":"cmd_output","timestamp":1607098378,"output":"PplBlocks.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler.WaitingState :: period: "},{"event":"cmd_output","timestamp":1607098378,"output":"1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurring"},{"event":"cmd_output","timestamp":1607098378,"output":" args: %{allowed_states: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098378,"output":"Blocks.Model.PplBlocks, observed_state: \"waiting\", publisher_cb: #Function<0.8975022/1 in Ppl.PplBlo"},{"event":"cmd_output","timestamp":1607098378,"output":"cks.STMHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updat"},{"event":"cmd_output","timestamp":1607098378,"output":"ed_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBloc"},{"event":"cmd_output","timestamp":1607098378,"output":"ks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:58.486 [info] Periodic from module Elixir.Ppl.PplBloc"},{"event":"cmd_output","timestamp":1607098378,"output":"ks.STMHandler.RunningState with name Elixir.Ppl.PplBlocks.STMHandler.RunningState :: period: 1000 ms"},{"event":"cmd_output","timestamp":1607098378,"output":", metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, recurring args: "},{"event":"cmd_output","timestamp":1607098378,"output":"%{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlock"},{"event":"cmd_output","timestamp":1607098378,"output":"s.Model.PplBlocks, observed_state: \"running\", publisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks."},{"event":"cmd_output","timestamp":1607098378,"output":"STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_a"},{"event":"cmd_output","timestamp":1607098378,"output":"t, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model."},{"event":"cmd_output","timestamp":1607098378,"output":"PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:58.486 [info] Periodic from module Elixir.Ppl."},{"event":"cmd_output","timestamp":1607098378,"output":"PplBlocks.STMHandler.StoppingState with name Elixir.Ppl.PplBlocks.STMHandler.StoppingState :: period"},{"event":"cmd_output","timestamp":1607098378,"output":": 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurr"},{"event":"cmd_output","timestamp":1607098378,"output":"ing args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks"},{"event":"cmd_output","timestamp":1607098378,"output":".Model.PplBlocks, observed_state: \"stopping\", publisher_cb: #Function<0.104215991/1 in Ppl.PplBlocks"},{"event":"cmd_output","timestamp":1607098378,"output":".STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated"},{"event":"cmd_output","timestamp":1607098378,"output":"_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Mode"},{"event":"cmd_output","timestamp":1607098378,"output":"l.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:58.486 [info] Periodic from module Elixir.Bl"},{"event":"cmd_output","timestamp":1607098378,"output":"ock.Blocks.STMHandler.InitializingState with name Elixir.Block.Blocks.STMHandler.InitializingState :"},{"event":"cmd_output","timestamp":1607098378,"output":": period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-InitializingState\""},{"event":"cmd_output","timestamp":1607098378,"output":"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block"},{"event":"cmd_output","timestamp":1607098378,"output":".Blocks.Model.Blocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Block.EctoRepo, ret"},{"event":"cmd_output","timestamp":1607098378,"output":"urning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Bl"},{"event":"cmd_output","timestamp":1607098378,"output":"ocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:58.487 [info] Periodic from module Eli"},{"event":"cmd_output","timestamp":1607098378,"output":"xir.Block.Blocks.STMHandler.RunningState with name Elixir.Block.Blocks.STMHandler.RunningState :: pe"},{"event":"cmd_output","timestamp":1607098378,"output":"riod: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-RunningState\"]}, recur"},{"event":"cmd_output","timestamp":1607098378,"output":"ring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: B"},{"event":"cmd_output","timestamp":1607098378,"output":"lock.Blocks.Model.Blocks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, retu"},{"event":"cmd_output","timestamp":1607098378,"output":"rning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blo"},{"event":"cmd_output","timestamp":1607098378,"output":"cks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:58.487 [info] Periodic from module Elix"},{"event":"cmd_output","timestamp":1607098378,"output":"ir.Block.Blocks.STMHandler.StoppingState with name Elixir.Block.Blocks.STMHandler.StoppingState :: p"},{"event":"cmd_output","timestamp":1607098378,"output":"eriod: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-StoppingState\"]}, rec"},{"event":"cmd_output","timestamp":1607098378,"output":"urring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Bloc"},{"event":"cmd_output","timestamp":1607098378,"output":"ks.Model.Blocks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: ["},{"event":"cmd_output","timestamp":1607098378,"output":":id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Mode"},{"event":"cmd_output","timestamp":1607098378,"output":"l.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:58.488 [info] Periodic from module Elixir.Block"},{"event":"cmd_output","timestamp":1607098378,"output":".Tasks.STMHandler.PendingState with name Elixir.Block.Tasks.STMHandler.PendingState :: period: 100 m"},{"event":"cmd_output","timestamp":1607098378,"output":"s, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingState\"]}, recurring args: %"},{"event":"cmd_output","timestamp":1607098378,"output":"{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Tasks.Model.Tasks, o"},{"event":"cmd_output","timestamp":1607098378,"output":"bserved_state: \"pending\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_req"},{"event":"cmd_output","timestamp":1607098378,"output":"uest, :updated_at, :state, :recovery_count, :block_id, :build_request_id], schema: Block.Tasks.Model"},{"event":"cmd_output","timestamp":1607098378,"output":".Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:58.488 [info] Periodic from module Elixir.Block.T"},{"event":"cmd_output","timestamp":1607098378,"output":"asks.STMHandler.RunningState with name Elixir.Block.Tasks.STMHandler.RunningState :: period: 100 ms,"},{"event":"cmd_output","timestamp":1607098378,"output":" metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningState\"]}, recurring args: %{a"},{"event":"cmd_output","timestamp":1607098378,"output":"llowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Mod"},{"event":"cmd_output","timestamp":1607098378,"output":"el.Tasks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :te"},{"event":"cmd_output","timestamp":1607098378,"output":"rminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, "},{"event":"cmd_output","timestamp":1607098378,"output":"task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:58.488 [info] Periodic from module Elixir.Block.Tasks.STM"},{"event":"cmd_output","timestamp":1607098378,"output":"Handler.StoppingState with name Elixir.Block.Tasks.STMHandler.StoppingState :: period: 100 ms, metri"},{"event":"cmd_output","timestamp":1607098378,"output":"c_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]}, recurring args: %{allowe"},{"event":"cmd_output","timestamp":1607098378,"output":"d_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observ"},{"event":"cmd_output","timestamp":1607098378,"output":"ed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request"},{"event":"cmd_output","timestamp":1607098378,"output":", :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor"},{"event":"cmd_output","timestamp":1607098378,"output":": :skip}\n\u001b[0m\u001b[22m\n16:12:58.598 [info] ppl_id: 713dc97e-4c1b-4188-af7c-fe4619ef2e3a, type: PplReq"},{"event":"cmd_output","timestamp":1607098378,"output":"uests, event: persisted source_args for pipeline: 713dc97e-4c1b-4188-af7c-fe4619ef2e3a, origin: Elix"},{"event":"cmd_output","timestamp":1607098378,"output":"ir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:58.600 [info] "},{"event":"cmd_output","timestamp":1607098378,"output":"ppl_id: 713dc97e-4c1b-4188-af7c-fe4619ef2e3a, type: PplSubInits, state: fetching, event: exit_schedu"},{"event":"cmd_output","timestamp":1607098378,"output":"ling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:"},{"event":"cmd_output","timestamp":1607098378,"output":"58.615 [info] ppl_id: 713dc97e-4c1b-4188-af7c-fe4619ef2e3a, type: PplSubInits, state: regular_init,"},{"event":"cmd_output","timestamp":1607098378,"output":" event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), "},{"event":"cmd_output","timestamp":1607098378,"output":"\n\u001b[0m\u001b[22m\n16:12:58.634 [info] ppl_id: 713dc97e-4c1b-4188-af7c-fe4619ef2e3a, type: PplRequests, e"},{"event":"cmd_output","timestamp":1607098378,"output":"vent: persisted definition for request with request_token: 1e83398b-9785-4a07-b009-f9086fe6e3a3, ori"},{"event":"cmd_output","timestamp":1607098378,"output":"gin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:58"},{"event":"cmd_output","timestamp":1607098378,"output":".645 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded"},{"event":"cmd_output","timestamp":1607098378,"output":", \"queues\">, inserted_at: ~N[2020-12-04 16:12:58.636950], name: \"master-.semaphore/semaphore.yml\", o"},{"event":"cmd_output","timestamp":1607098378,"output":"rganization_id: \"17bef151-2c4b-4aea-b92a-5fbd8bc4bd4d\", project_id: \"123\", queue_id: \"d36a25e7-5b61-"},{"event":"cmd_output","timestamp":1607098378,"output":"4b56-8eee-f64be10b6e7d\", scope: \"project\", updated_at: ~N[2020-12-04 16:12:58.636960], user_generate"},{"event":"cmd_output","timestamp":1607098378,"output":"d: false}}\n\u001b[0m\u001b[22m\n16:12:58.650 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandle"},{"event":"cmd_output","timestamp":1607098378,"output":"r.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:58.650 [info] ppl_id: 713dc97e-4c1b-4188-af7"},{"event":"cmd_output","timestamp":1607098378,"output":"c-fe4619ef2e3a, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count"},{"event":"cmd_output","timestamp":1607098378,"output":": 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:"},{"event":"cmd_output","timestamp":1607098378,"output":"58.652 [info] ppl_id: 713dc97e-4c1b-4188-af7c-fe4619ef2e3a, type: PplSubInits, state: done, result:"},{"event":"cmd_output","timestamp":1607098378,"output":" passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/"},{"event":"cmd_output","timestamp":1607098378,"output":"1(L90), \n\u001b[0m\u001b[22m\n16:12:58.662 [info] ppl_id: 713dc97e-4c1b-4188-af7c-fe4619ef2e3a, type: PplBlo"},{"event":"cmd_output","timestamp":1607098378,"output":"cks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loope"},{"event":"cmd_output","timestamp":1607098378,"output":"r.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:58.663 [info] ppl_id: 713dc97e-4c1b-4188-af7"},{"event":"cmd_output","timestamp":1607098378,"output":"c-fe4619ef2e3a, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098378,"output":"r.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:58.680 [info] ppl_id: 713dc97e-4c1b-4"},{"event":"cmd_output","timestamp":1607098378,"output":"188-af7c-fe4619ef2e3a, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098378,"output":": Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:58.694 [info] ppl_id: 713dc97e"},{"event":"cmd_output","timestamp":1607098378,"output":"-4c1b-4188-af7c-fe4619ef2e3a, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098378,"output":" origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:58.707 [info] PplBlocks"},{"event":"cmd_output","timestamp":1607098378,"output":" WaitingState STM is scheduling block 0 from pipeline: \"713dc97e-4c1b-4188-af7c-fe4619ef2e3a\"\n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098378,"output":"[22m\n16:12:58.712 [info] ppl_id: 9c00d608-73c6-4792-b0db-c1f141783612, type: PplRequests, event: p"},{"event":"cmd_output","timestamp":1607098378,"output":"ersisted source_args for pipeline: 9c00d608-73c6-4792-b0db-c1f141783612, origin: Elixir.Ppl.PplReque"},{"event":"cmd_output","timestamp":1607098378,"output":"sts.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:58.715 [info] ppl_id: 9c00d60"},{"event":"cmd_output","timestamp":1607098378,"output":"8-73c6-4792-b0db-c1f141783612, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_"},{"event":"cmd_output","timestamp":1607098378,"output":"count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:58.717 [info] "},{"event":"cmd_output","timestamp":1607098378,"output":"block_id: 79ef7395-3130-4ca8-9721-4cb8b68ce47b, type: BlockRequests, event: persisted block run requ"},{"event":"cmd_output","timestamp":1607098378,"output":"est from ppl 713dc97e-4c1b-4188-af7c-fe4619ef2e3a for block 0, origin: Elixir.Block.BlockRequests.Mo"},{"event":"cmd_output","timestamp":1607098378,"output":"del.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:58.720 [info] block_id: 79ef73"},{"event":"cmd_output","timestamp":1607098378,"output":"95-3130-4ca8-9721-4cb8b68ce47b, type: Blocks, state: initializing, event: initializing, recovery_cou"},{"event":"cmd_output","timestamp":1607098378,"output":"nt: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:58.721 [inf"},{"event":"cmd_output","timestamp":1607098378,"output":"o] Block 0 of pipeline with id: 713dc97e-4c1b-4188-af7c-fe4619ef2e3a scheduled in block service wit"},{"event":"cmd_output","timestamp":1607098378,"output":"h id: : \"79ef7395-3130-4ca8-9721-4cb8b68ce47b\"\n\u001b[0m\u001b[22m\n16:12:58.726 [info] ppl_id: 713dc97e-4c1"},{"event":"cmd_output","timestamp":1607098378,"output":"b-4188-af7c-fe4619ef2e3a, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, r"},{"event":"cmd_output","timestamp":1607098378,"output":"ecovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:58.730 "},{"event":"cmd_output","timestamp":1607098378,"output":"[info] block_id: 79ef7395-3130-4ca8-9721-4cb8b68ce47b, type: BlockRequests, event: persisted build "},{"event":"cmd_output","timestamp":1607098378,"output":"and sub_ppl details for block_request: 79ef7395-3130-4ca8-9721-4cb8b68ce47b, origin: Elixir.Block.Bl"},{"event":"cmd_output","timestamp":1607098378,"output":"ockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:58.732 [info] block_"},{"event":"cmd_output","timestamp":1607098378,"output":"id: 79ef7395-3130-4ca8-9721-4cb8b68ce47b, type: Tasks, state: pending, event: created, recovery_coun"},{"event":"cmd_output","timestamp":1607098378,"output":"t: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:5"},{"event":"cmd_output","timestamp":1607098378,"output":"8.735 [info] block_id: 79ef7395-3130-4ca8-9721-4cb8b68ce47b, type: Blocks, state: running, event: e"},{"event":"cmd_output","timestamp":1607098378,"output":"xit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098378,"output":"2m\n16:12:58.743 [info] ppl_id: 9c00d608-73c6-4792-b0db-c1f141783612, type: PplSubInits, state: reg"},{"event":"cmd_output","timestamp":1607098378,"output":"ular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chang"},{"event":"cmd_output","timestamp":1607098378,"output":"e/1(L90), \n\u001b[0m\u001b[22m\n16:12:58.753 [info] block_id: 79ef7395-3130-4ca8-9721-4cb8b68ce47b, type: Ta"},{"event":"cmd_output","timestamp":1607098378,"output":"sks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_s"},{"event":"cmd_output","timestamp":1607098378,"output":"tate_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:58.769 [info] ppl_id: 9c00d608-73c6-4792-b0db-c1f141783612, "},{"event":"cmd_output","timestamp":1607098378,"output":"type: PplRequests, event: persisted definition for request with request_token: af66fce9-06ae-4f22-87"},{"event":"cmd_output","timestamp":1607098378,"output":"a9-af12aef44388, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \r"},{"event":"cmd_output","timestamp":1607098378,"output":"\n\u001b[0m\u001b[22m\n16:12:58.774 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularIn"},{"event":"cmd_output","timestamp":1607098378,"output":"itState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:58.774 [info] ppl_id: 9c00d608-73c6-4792-b0db-c1f141783"},{"event":"cmd_output","timestamp":1607098378,"output":"612, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098378,"output":": Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:58.776 [inf"},{"event":"cmd_output","timestamp":1607098378,"output":"o] ppl_id: 9c00d608-73c6-4792-b0db-c1f141783612, type: PplSubInits, state: done, result: passed, ev"},{"event":"cmd_output","timestamp":1607098378,"output":"ent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b"},{"event":"cmd_output","timestamp":1607098378,"output":"[0m\u001b[22m\n16:12:58.783 [info] ppl_id: 9c00d608-73c6-4792-b0db-c1f141783612, type: PplBlocks, block_"},{"event":"cmd_output","timestamp":1607098378,"output":"index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl."},{"event":"cmd_output","timestamp":1607098378,"output":"log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:58.785 [info] ppl_id: 9c00d608-73c6-4792-b0db-c1f141783"},{"event":"cmd_output","timestamp":1607098378,"output":"612, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.ST"},{"event":"cmd_output","timestamp":1607098378,"output":"M.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:58.797 [info] ppl_id: 9c00d608-73c6-4792-b0db-c1"},{"event":"cmd_output","timestamp":1607098378,"output":"f141783612, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Lo"},{"event":"cmd_output","timestamp":1607098378,"output":"oper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:58.815 [info] block_id: 79ef7395-3130-4ca"},{"event":"cmd_output","timestamp":1607098378,"output":"8-9721-4cb8b68ce47b, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098378,"output":"ixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:58.821 [info] block_id: 79ef7395-3"},{"event":"cmd_output","timestamp":1607098378,"output":"130-4ca8-9721-4cb8b68ce47b, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098378,"output":"igin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:58.827 [info] ppl_id: 6f92"},{"event":"cmd_output","timestamp":1607098378,"output":"290f-6b00-481c-8985-99576646deeb, type: PplRequests, event: persisted source_args for pipeline: 6f92"},{"event":"cmd_output","timestamp":1607098378,"output":"290f-6b00-481c-8985-99576646deeb, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_sou"},{"event":"cmd_output","timestamp":1607098378,"output":"rce/2(L89), \n\u001b[0m\u001b[22m\n16:12:58.831 [info] ppl_id: 713dc97e-4c1b-4188-af7c-fe4619ef2e3a, block_id"},{"event":"cmd_output","timestamp":1607098378,"output":": 79ef7395-3130-4ca8-9721-4cb8b68ce47b, type: PplBlocks, block_index: 0, state: done, result: passed"},{"event":"cmd_output","timestamp":1607098378,"output":", event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90),"},{"event":"cmd_output","timestamp":1607098378,"output":" \n\u001b[0m\u001b[22m\n16:12:58.832 [info] ppl_id: 6f92290f-6b00-481c-8985-99576646deeb, type: PplSubInits, "},{"event":"cmd_output","timestamp":1607098378,"output":"state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state"},{"event":"cmd_output","timestamp":1607098378,"output":"_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:58.847 [info] ppl_id: 713dc97e-4c1b-4188-af7c-fe4619ef2e3a, type"},{"event":"cmd_output","timestamp":1607098378,"output":": Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loope"},{"event":"cmd_output","timestamp":1607098378,"output":"r.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:58.860 [info] ppl_id: 6f92290f-6b00-481c-898"},{"event":"cmd_output","timestamp":1607098378,"output":"5-99576646deeb, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098378,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:58.892 [info] ppl_id: 6f9"},{"event":"cmd_output","timestamp":1607098378,"output":"2290f-6b00-481c-8985-99576646deeb, type: PplRequests, event: persisted definition for request with r"},{"event":"cmd_output","timestamp":1607098378,"output":"equest_token: 62010d91-1ed3-4bf4-9cd7-09c37ea52cdd, origin: Elixir.Ppl.PplRequests.Model.PplRequests"},{"event":"cmd_output","timestamp":1607098378,"output":"Queries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:58.900 [info] event: created, origin: Elixir.P"},{"event":"cmd_output","timestamp":1607098378,"output":"pl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:58.900 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098378,"output":": 6f92290f-6b00-481c-8985-99576646deeb, type: PplBlocks, block_index: 0, state: initializing, event:"},{"event":"cmd_output","timestamp":1607098378,"output":" created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L1"},{"event":"cmd_output","timestamp":1607098378,"output":"05), \n\u001b[0m\u001b[22m\n16:12:58.902 [info] ppl_id: 6f92290f-6b00-481c-8985-99576646deeb, type: PplSubIni"},{"event":"cmd_output","timestamp":1607098378,"output":"ts, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.ST"},{"event":"cmd_output","timestamp":1607098378,"output":"M.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:58.911 [info] ppl_id: 6f92290f-6b00-481c-8985-99"},{"event":"cmd_output","timestamp":1607098378,"output":"576646deeb, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count:"},{"event":"cmd_output","timestamp":1607098378,"output":" 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:58.912 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098378,"output":": 6f92290f-6b00-481c-8985-99576646deeb, type: Ppls, state: pending, event: exit_scheduling, recovery"},{"event":"cmd_output","timestamp":1607098378,"output":"_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:58.916 [info] "},{"event":"cmd_output","timestamp":1607098378,"output":" ppl_id: 9c00d608-73c6-4792-b0db-c1f141783612, type: Ppls, state: running, event: exit_scheduling, r"},{"event":"cmd_output","timestamp":1607098378,"output":"ecovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:58.920 "},{"event":"cmd_output","timestamp":1607098378,"output":"[info] ppl_id: 6f92290f-6b00-481c-8985-99576646deeb, type: Ppls, state: queuing, event: exit_schedu"},{"event":"cmd_output","timestamp":1607098378,"output":"ling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:"},{"event":"cmd_output","timestamp":1607098378,"output":"58.925 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"9c00d608-73c6-4792-b"},{"event":"cmd_output","timestamp":1607098378,"output":"0db-c1f141783612\"\n\u001b[0m\u001b[22m\n16:12:58.928 [info] block_id: 6be89872-a7ee-4047-9e78-d13a47195435, t"},{"event":"cmd_output","timestamp":1607098378,"output":"ype: BlockRequests, event: persisted block run request from ppl 9c00d608-73c6-4792-b0db-c1f141783612"},{"event":"cmd_output","timestamp":1607098378,"output":" for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35),"},{"event":"cmd_output","timestamp":1607098378,"output":" \n\u001b[0m\u001b[22m\n16:12:58.930 [info] block_id: 6be89872-a7ee-4047-9e78-d13a47195435, type: Blocks, sta"},{"event":"cmd_output","timestamp":1607098378,"output":"te: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQu"},{"event":"cmd_output","timestamp":1607098378,"output":"eries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:58.934 [info] Block 0 of pipeline with id: 9c00d608-73c6-47"},{"event":"cmd_output","timestamp":1607098378,"output":"92-b0db-c1f141783612 scheduled in block service with id: : \"6be89872-a7ee-4047-9e78-d13a47195435\"\n\u001b"},{"event":"cmd_output","timestamp":1607098378,"output":"[0m\u001b[22m\n16:12:58.936 [info] ppl_id: 9c00d608-73c6-4792-b0db-c1f141783612, type: PplBlocks, block_"},{"event":"cmd_output","timestamp":1607098378,"output":"index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl."},{"event":"cmd_output","timestamp":1607098378,"output":"log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:58.938 [info] block_id: 6be89872-a7ee-4047-9e78-d13a471"},{"event":"cmd_output","timestamp":1607098378,"output":"95435, type: BlockRequests, event: persisted build and sub_ppl details for block_request: 6be89872-a"},{"event":"cmd_output","timestamp":1607098378,"output":"7ee-4047-9e78-d13a47195435, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_bui"},{"event":"cmd_output","timestamp":1607098378,"output":"ld/2(L41), \n\u001b[0m\u001b[22m\n16:12:58.939 [info] ppl_id: 636d6d71-ad1c-4076-945b-f7cc3f04e68e, type: Ppl"},{"event":"cmd_output","timestamp":1607098378,"output":"Requests, event: persisted source_args for pipeline: 636d6d71-ad1c-4076-945b-f7cc3f04e68e, origin: E"},{"event":"cmd_output","timestamp":1607098378,"output":"lixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:58.940 [info"},{"event":"cmd_output","timestamp":1607098378,"output":"] block_id: 6be89872-a7ee-4047-9e78-d13a47195435, type: Tasks, state: pending, event: created, reco"},{"event":"cmd_output","timestamp":1607098378,"output":"very_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098378,"output":"\n16:12:58.941 [info] ppl_id: 636d6d71-ad1c-4076-945b-f7cc3f04e68e, type: PplSubInits, state: fetch"},{"event":"cmd_output","timestamp":1607098378,"output":"ing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L9"},{"event":"cmd_output","timestamp":1607098378,"output":"0), \n\u001b[0m\u001b[22m\n16:12:58.943 [info] block_id: 6be89872-a7ee-4047-9e78-d13a47195435, type: Blocks, "},{"event":"cmd_output","timestamp":1607098378,"output":"state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_"},{"event":"cmd_output","timestamp":1607098378,"output":"change/1(L90), \n\u001b[0m\u001b[22m\n16:12:58.952 [info] block_id: 6be89872-a7ee-4047-9e78-d13a47195435, typ"},{"event":"cmd_output","timestamp":1607098378,"output":"e: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl."},{"event":"cmd_output","timestamp":1607098378,"output":"log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:58.962 [info] ppl_id: 636d6d71-ad1c-4076-945b-f7cc3f04e"},{"event":"cmd_output","timestamp":1607098378,"output":"68e, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098378,"output":"ir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:58.985 [info] ppl_id: 636d6d71-ad1c-"},{"event":"cmd_output","timestamp":1607098378,"output":"4076-945b-f7cc3f04e68e, type: PplRequests, event: persisted definition for request with request_toke"},{"event":"cmd_output","timestamp":1607098378,"output":"n: d4b1b2b8-c967-4469-9774-63887a06b452, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.ins"},{"event":"cmd_output","timestamp":1607098378,"output":"ert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:58.990 [info] event: created, origin: Elixir.Ppl.PplSubIn"},{"event":"cmd_output","timestamp":1607098378,"output":"its.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:58.990 [info] ppl_id: 636d6d71-"},{"event":"cmd_output","timestamp":1607098378,"output":"ad1c-4076-945b-f7cc3f04e68e, type: PplBlocks, block_index: 0, state: initializing, event: created, r"},{"event":"cmd_output","timestamp":1607098378,"output":"ecovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098378,"output":"\u001b[22m\n16:12:58.991 [info] ppl_id: 636d6d71-ad1c-4076-945b-f7cc3f04e68e, type: PplSubInits, state: "},{"event":"cmd_output","timestamp":1607098378,"output":"done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_"},{"event":"cmd_output","timestamp":1607098378,"output":"state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:58.998 [info] ppl_id: 636d6d71-ad1c-4076-945b-f7cc3f04e68e,"},{"event":"cmd_output","timestamp":1607098378,"output":" type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098379,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.002 [info] ppl_id: 636d6d71-"},{"event":"cmd_output","timestamp":1607098379,"output":"ad1c-4076-945b-f7cc3f04e68e, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098379,"output":"origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.012 [info] ppl_id: 63"},{"event":"cmd_output","timestamp":1607098379,"output":"6d6d71-ad1c-4076-945b-f7cc3f04e68e, type: Ppls, state: queuing, event: exit_scheduling, recovery_cou"},{"event":"cmd_output","timestamp":1607098379,"output":"nt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.030 [info] blo"},{"event":"cmd_output","timestamp":1607098379,"output":"ck_id: 6be89872-a7ee-4047-9e78-d13a47195435, type: Tasks, state: done, event: exit_scheduling, recov"},{"event":"cmd_output","timestamp":1607098379,"output":"ery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.038 [inf"},{"event":"cmd_output","timestamp":1607098379,"output":"o] block_id: 6be89872-a7ee-4047-9e78-d13a47195435, type: Blocks, state: done, event: exit_schedulin"},{"event":"cmd_output","timestamp":1607098379,"output":"g, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59."},{"event":"cmd_output","timestamp":1607098379,"output":"045 [info] ppl_id: 9c00d608-73c6-4792-b0db-c1f141783612, block_id: 6be89872-a7ee-4047-9e78-d13a4719"},{"event":"cmd_output","timestamp":1607098379,"output":"5435, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery"},{"event":"cmd_output","timestamp":1607098379,"output":"_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.050 [info] "},{"event":"cmd_output","timestamp":1607098379,"output":" ppl_id: 3e224b77-e410-4b93-a451-b554c58481de, type: PplRequests, event: persisted source_args for p"},{"event":"cmd_output","timestamp":1607098379,"output":"ipeline: 3e224b77-e410-4b93-a451-b554c58481de, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueri"},{"event":"cmd_output","timestamp":1607098379,"output":"es.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:59.054 [info] ppl_id: 3e224b77-e410-4b93-a451-b554c5848"},{"event":"cmd_output","timestamp":1607098379,"output":"1de, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098379,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.059 [info] ppl_id: 9c00d608-73c6-4792"},{"event":"cmd_output","timestamp":1607098379,"output":"-b0db-c1f141783612, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count:"},{"event":"cmd_output","timestamp":1607098379,"output":" 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.072 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098379,"output":": 3e224b77-e410-4b93-a451-b554c58481de, type: PplSubInits, state: regular_init, event: exit_scheduli"},{"event":"cmd_output","timestamp":1607098379,"output":"ng, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59"},{"event":"cmd_output","timestamp":1607098379,"output":".088 [info] ppl_id: 3e224b77-e410-4b93-a451-b554c58481de, type: PplRequests, event: persisted defin"},{"event":"cmd_output","timestamp":1607098379,"output":"ition for request with request_token: cc819735-a58a-462e-9023-59b1d898e86a, origin: Elixir.Ppl.PplRe"},{"event":"cmd_output","timestamp":1607098379,"output":"quests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:59.094 [info] event: c"},{"event":"cmd_output","timestamp":1607098379,"output":"reated, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098379,"output":"12:59.094 [info] ppl_id: 3e224b77-e410-4b93-a451-b554c58481de, type: PplBlocks, block_index: 0, sta"},{"event":"cmd_output","timestamp":1607098379,"output":"te: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.Regul"},{"event":"cmd_output","timestamp":1607098379,"output":"arInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:59.096 [info] ppl_id: 3e224b77-e410-4b93-a451-b554c"},{"event":"cmd_output","timestamp":1607098379,"output":"58481de, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098379,"output":"origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.104 [info] ppl_id: 3e"},{"event":"cmd_output","timestamp":1607098379,"output":"224b77-e410-4b93-a451-b554c58481de, type: PplBlocks, block_index: 0, state: waiting, event: exit_sch"},{"event":"cmd_output","timestamp":1607098379,"output":"eduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098379,"output":"12:59.105 [info] ppl_id: 3e224b77-e410-4b93-a451-b554c58481de, type: Ppls, state: pending, event: e"},{"event":"cmd_output","timestamp":1607098379,"output":"xit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098379,"output":"2m\n16:12:59.114 [info] ppl_id: 3e224b77-e410-4b93-a451-b554c58481de, type: Ppls, state: queuing, e"},{"event":"cmd_output","timestamp":1607098379,"output":"vent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n"},{"event":"cmd_output","timestamp":1607098379,"output":"\u001b[0m\u001b[22m\n16:12:59.123 [info] ppl_id: 6f92290f-6b00-481c-8985-99576646deeb, type: Ppls, state: run"},{"event":"cmd_output","timestamp":1607098379,"output":"ning, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098379,"output":"90), \n\u001b[0m\u001b[22m\n16:12:59.138 [info] PplBlocks WaitingState STM is scheduling block 0 from pipelin"},{"event":"cmd_output","timestamp":1607098379,"output":"e: \"6f92290f-6b00-481c-8985-99576646deeb\"\n\u001b[0m\u001b[22m\n16:12:59.143 [info] block_id: e396d85a-af12-4"},{"event":"cmd_output","timestamp":1607098379,"output":"608-a17d-3cfd4b6b06f2, type: BlockRequests, event: persisted block run request from ppl 6f92290f-6b0"},{"event":"cmd_output","timestamp":1607098379,"output":"0-481c-8985-99576646deeb for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries."},{"event":"cmd_output","timestamp":1607098379,"output":"process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:59.146 [info] block_id: e396d85a-af12-4608-a17d-3cfd4b6"},{"event":"cmd_output","timestamp":1607098379,"output":"b06f2, type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Blo"},{"event":"cmd_output","timestamp":1607098379,"output":"ck.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:59.148 [info] Block 0 of pipeline w"},{"event":"cmd_output","timestamp":1607098379,"output":"ith id: 6f92290f-6b00-481c-8985-99576646deeb scheduled in block service with id: : \"e396d85a-af12-46"},{"event":"cmd_output","timestamp":1607098379,"output":"08-a17d-3cfd4b6b06f2\"\n\u001b[0m\u001b[22m\n16:12:59.154 [info] ppl_id: 6f92290f-6b00-481c-8985-99576646deeb,"},{"event":"cmd_output","timestamp":1607098379,"output":" type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098379,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.155 [info] block_id: e396d85"},{"event":"cmd_output","timestamp":1607098379,"output":"a-af12-4608-a17d-3cfd4b6b06f2, type: BlockRequests, event: persisted build and sub_ppl details for b"},{"event":"cmd_output","timestamp":1607098379,"output":"lock_request: e396d85a-af12-4608-a17d-3cfd4b6b06f2, origin: Elixir.Block.BlockRequests.Model.BlockRe"},{"event":"cmd_output","timestamp":1607098379,"output":"questsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:59.160 [info] block_id: e396d85a-af12-4608-a1"},{"event":"cmd_output","timestamp":1607098379,"output":"7d-3cfd4b6b06f2, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Bloc"},{"event":"cmd_output","timestamp":1607098379,"output":"k.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:59.161 [info] block_id: e"},{"event":"cmd_output","timestamp":1607098379,"output":"396d85a-af12-4608-a17d-3cfd4b6b06f2, type: Blocks, state: running, event: exit_scheduling, recovery_"},{"event":"cmd_output","timestamp":1607098379,"output":"count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.165 [info] "},{"event":"cmd_output","timestamp":1607098379,"output":"ppl_id: 555bd247-95fe-492b-b551-b50107450870, type: PplRequests, event: persisted source_args for pi"},{"event":"cmd_output","timestamp":1607098379,"output":"peline: 555bd247-95fe-492b-b551-b50107450870, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQuerie"},{"event":"cmd_output","timestamp":1607098379,"output":"s.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:59.167 [info] ppl_id: 555bd247-95fe-492b-b551-b501074508"},{"event":"cmd_output","timestamp":1607098379,"output":"70, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Lo"},{"event":"cmd_output","timestamp":1607098379,"output":"oper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.184 [info] block_id: e396d85a-af12-460"},{"event":"cmd_output","timestamp":1607098379,"output":"8-a17d-3cfd4b6b06f2, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098379,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.193 [info] ppl_id: 555bd247-"},{"event":"cmd_output","timestamp":1607098379,"output":"95fe-492b-b551-b50107450870, type: PplSubInits, state: regular_init, event: exit_scheduling, recover"},{"event":"cmd_output","timestamp":1607098379,"output":"y_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.215 [info]"},{"event":"cmd_output","timestamp":1607098379,"output":" ppl_id: 555bd247-95fe-492b-b551-b50107450870, type: PplRequests, event: persisted definition for r"},{"event":"cmd_output","timestamp":1607098379,"output":"equest with request_token: 3ae82679-927c-4821-94b6-eea1c5847781, origin: Elixir.Ppl.PplRequests.Mode"},{"event":"cmd_output","timestamp":1607098379,"output":"l.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:59.219 [info] Queue persisted: {:"},{"event":"cmd_output","timestamp":1607098379,"output":"ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[202"},{"event":"cmd_output","timestamp":1607098379,"output":"0-12-04 16:12:59.217870], name: \"v1.0.2-.semaphore/semaphore.yml\", organization_id: \"f42f17b2-c747-4"},{"event":"cmd_output","timestamp":1607098379,"output":"7a7-b4fd-33994900688a\", project_id: \"123\", queue_id: \"e4118dcf-c421-4d04-85de-89957d1134d4\", scope: "},{"event":"cmd_output","timestamp":1607098379,"output":"\"project\", updated_at: ~N[2020-12-04 16:12:59.217876], user_generated: false}}\n\u001b[0m\u001b[22m\n16:12:59."},{"event":"cmd_output","timestamp":1607098379,"output":"227 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L10"},{"event":"cmd_output","timestamp":1607098379,"output":"5), \n\u001b[0m\u001b[22m\n16:12:59.227 [info] ppl_id: 555bd247-95fe-492b-b551-b50107450870, type: PplBlocks,"},{"event":"cmd_output","timestamp":1607098379,"output":" block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubIn"},{"event":"cmd_output","timestamp":1607098379,"output":"its.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:59.228 [info] ppl_id: 555bd247-"},{"event":"cmd_output","timestamp":1607098379,"output":"95fe-492b-b551-b50107450870, type: PplSubInits, state: done, result: passed, event: exit_scheduling,"},{"event":"cmd_output","timestamp":1607098379,"output":" recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.23"},{"event":"cmd_output","timestamp":1607098379,"output":"4 [info] ppl_id: 555bd247-95fe-492b-b551-b50107450870, type: Ppls, state: pending, event: exit_sche"},{"event":"cmd_output","timestamp":1607098379,"output":"duling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098379,"output":"2:59.239 [info] ppl_id: 555bd247-95fe-492b-b551-b50107450870, type: PplBlocks, block_index: 0, stat"},{"event":"cmd_output","timestamp":1607098379,"output":"e: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chan"},{"event":"cmd_output","timestamp":1607098379,"output":"ge/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.241 [info] ppl_id: 555bd247-95fe-492b-b551-b50107450870, type: Ppl"},{"event":"cmd_output","timestamp":1607098379,"output":"s, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_sta"},{"event":"cmd_output","timestamp":1607098379,"output":"te_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.248 [info] block_id: e396d85a-af12-4608-a17d-3cfd4b6b06f2, "},{"event":"cmd_output","timestamp":1607098379,"output":"type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl."},{"event":"cmd_output","timestamp":1607098379,"output":"log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.253 [info] block_id: e396d85a-af12-4608-a17d-3cfd4b6"},{"event":"cmd_output","timestamp":1607098379,"output":"b06f2, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.S"},{"event":"cmd_output","timestamp":1607098379,"output":"TM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.255 [info] ppl_id: 555bd247-95fe-492b-b551-b"},{"event":"cmd_output","timestamp":1607098379,"output":"50107450870, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098379,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.263 [info] ppl_id: 6f92290f-6b00-481c"},{"event":"cmd_output","timestamp":1607098379,"output":"-8985-99576646deeb, block_id: e396d85a-af12-4608-a17d-3cfd4b6b06f2, type: PplBlocks, block_index: 0,"},{"event":"cmd_output","timestamp":1607098379,"output":" state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.I"},{"event":"cmd_output","timestamp":1607098379,"output":"mpl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.263 [info] PplBlocks WaitingState STM is schedul"},{"event":"cmd_output","timestamp":1607098379,"output":"ing block 0 from pipeline: \"555bd247-95fe-492b-b551-b50107450870\"\n\u001b[0m\u001b[22m\n16:12:59.272 [info] b"},{"event":"cmd_output","timestamp":1607098379,"output":"lock_id: 527b5806-2aca-4458-b2d0-2dcd623aa3ff, type: BlockRequests, event: persisted block run reque"},{"event":"cmd_output","timestamp":1607098379,"output":"st from ppl 555bd247-95fe-492b-b551-b50107450870 for block 0, origin: Elixir.Block.BlockRequests.Mod"},{"event":"cmd_output","timestamp":1607098379,"output":"el.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:59.274 [info] block_id: 527b580"},{"event":"cmd_output","timestamp":1607098379,"output":"6-2aca-4458-b2d0-2dcd623aa3ff, type: Blocks, state: initializing, event: initializing, recovery_coun"},{"event":"cmd_output","timestamp":1607098379,"output":"t: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:59.276 [info"},{"event":"cmd_output","timestamp":1607098379,"output":"] Block 0 of pipeline with id: 555bd247-95fe-492b-b551-b50107450870 scheduled in block service with"},{"event":"cmd_output","timestamp":1607098379,"output":" id: : \"527b5806-2aca-4458-b2d0-2dcd623aa3ff\"\n\u001b[0m\u001b[22m\n16:12:59.278 [info] ppl_id: 555bd247-95fe"},{"event":"cmd_output","timestamp":1607098379,"output":"-492b-b551-b50107450870, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, re"},{"event":"cmd_output","timestamp":1607098379,"output":"covery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.278 ["},{"event":"cmd_output","timestamp":1607098379,"output":"info] ppl_id: 6f92290f-6b00-481c-8985-99576646deeb, type: Ppls, state: done, result: passed, event:"},{"event":"cmd_output","timestamp":1607098379,"output":" exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098379,"output":"[22m\n16:12:59.281 [info] block_id: 527b5806-2aca-4458-b2d0-2dcd623aa3ff, type: BlockRequests, even"},{"event":"cmd_output","timestamp":1607098379,"output":"t: persisted build and sub_ppl details for block_request: 527b5806-2aca-4458-b2d0-2dcd623aa3ff, orig"},{"event":"cmd_output","timestamp":1607098379,"output":"in: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:59"},{"event":"cmd_output","timestamp":1607098379,"output":".285 [info] ppl_id: 15fb7d2d-e690-416c-8267-ef183a6d8803, type: PplRequests, event: persisted sourc"},{"event":"cmd_output","timestamp":1607098379,"output":"e_args for pipeline: 15fb7d2d-e690-416c-8267-ef183a6d8803, origin: Elixir.Ppl.PplRequests.Model.PplR"},{"event":"cmd_output","timestamp":1607098379,"output":"equestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:59.287 [info] block_id: 527b5806-2aca-4458-"},{"event":"cmd_output","timestamp":1607098379,"output":"b2d0-2dcd623aa3ff, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Bl"},{"event":"cmd_output","timestamp":1607098379,"output":"ock.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:59.288 [info] ppl_id: 1"},{"event":"cmd_output","timestamp":1607098379,"output":"5fb7d2d-e690-416c-8267-ef183a6d8803, type: PplSubInits, state: fetching, event: exit_scheduling, rec"},{"event":"cmd_output","timestamp":1607098379,"output":"overy_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.289 [i"},{"event":"cmd_output","timestamp":1607098379,"output":"nfo] block_id: 527b5806-2aca-4458-b2d0-2dcd623aa3ff, type: Blocks, state: running, event: exit_sche"},{"event":"cmd_output","timestamp":1607098379,"output":"duling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098379,"output":"2:59.309 [info] block_id: 527b5806-2aca-4458-b2d0-2dcd623aa3ff, type: Tasks, state: running, event:"},{"event":"cmd_output","timestamp":1607098379,"output":" exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098379,"output":"[22m\n16:12:59.316 [info] ppl_id: 15fb7d2d-e690-416c-8267-ef183a6d8803, type: PplSubInits, state: r"},{"event":"cmd_output","timestamp":1607098379,"output":"egular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_cha"},{"event":"cmd_output","timestamp":1607098379,"output":"nge/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.338 [info] ppl_id: 15fb7d2d-e690-416c-8267-ef183a6d8803, type: Pp"},{"event":"cmd_output","timestamp":1607098379,"output":"lRequests, event: persisted definition for request with request_token: bee86769-f9c6-4029-b077-2e190"},{"event":"cmd_output","timestamp":1607098379,"output":"493acd4, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098379,"output":"2m\n16:12:59.343 [info] ppl_id: 636d6d71-ad1c-4076-945b-f7cc3f04e68e, type: Ppls, state: running, e"},{"event":"cmd_output","timestamp":1607098379,"output":"vent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n"},{"event":"cmd_output","timestamp":1607098379,"output":"\u001b[0m\u001b[22m\n16:12:59.346 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularIni"},{"event":"cmd_output","timestamp":1607098379,"output":"tState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:59.346 [info] ppl_id: 15fb7d2d-e690-416c-8267-ef183a6d88"},{"event":"cmd_output","timestamp":1607098379,"output":"03, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098379,"output":" Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:59.350 [info"},{"event":"cmd_output","timestamp":1607098379,"output":"] ppl_id: 15fb7d2d-e690-416c-8267-ef183a6d8803, type: PplSubInits, state: done, result: passed, eve"},{"event":"cmd_output","timestamp":1607098379,"output":"nt: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b["},{"event":"cmd_output","timestamp":1607098379,"output":"0m\u001b[22m\n16:12:59.350 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"636d6"},{"event":"cmd_output","timestamp":1607098379,"output":"d71-ad1c-4076-945b-f7cc3f04e68e\"\n\u001b[0m\u001b[22m\n16:12:59.360 [info] ppl_id: 15fb7d2d-e690-416c-8267-ef"},{"event":"cmd_output","timestamp":1607098379,"output":"183a6d8803, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count:"},{"event":"cmd_output","timestamp":1607098379,"output":" 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.365 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098379,"output":": 15fb7d2d-e690-416c-8267-ef183a6d8803, type: Ppls, state: pending, event: exit_scheduling, recovery"},{"event":"cmd_output","timestamp":1607098379,"output":"_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.367 [info] "},{"event":"cmd_output","timestamp":1607098379,"output":" block_id: b6eba2f6-3d03-42d3-b259-ffc380bf44ae, type: BlockRequests, event: persisted block run req"},{"event":"cmd_output","timestamp":1607098379,"output":"uest from ppl 636d6d71-ad1c-4076-945b-f7cc3f04e68e for block 0, origin: Elixir.Block.BlockRequests.M"},{"event":"cmd_output","timestamp":1607098379,"output":"odel.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:59.370 [info] block_id: 527b5"},{"event":"cmd_output","timestamp":1607098379,"output":"806-2aca-4458-b2d0-2dcd623aa3ff, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0"},{"event":"cmd_output","timestamp":1607098379,"output":", origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.372 [info] block_id"},{"event":"cmd_output","timestamp":1607098379,"output":": b6eba2f6-3d03-42d3-b259-ffc380bf44ae, type: Blocks, state: initializing, event: initializing, reco"},{"event":"cmd_output","timestamp":1607098379,"output":"very_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:59."},{"event":"cmd_output","timestamp":1607098379,"output":"377 [info] Block 0 of pipeline with id: 636d6d71-ad1c-4076-945b-f7cc3f04e68e scheduled in block ser"},{"event":"cmd_output","timestamp":1607098379,"output":"vice with id: : \"b6eba2f6-3d03-42d3-b259-ffc380bf44ae\"\n\u001b[0m\u001b[22m\n16:12:59.379 [info] ppl_id: 15fb"},{"event":"cmd_output","timestamp":1607098379,"output":"7d2d-e690-416c-8267-ef183a6d8803, type: Ppls, state: queuing, event: exit_scheduling, recovery_count"},{"event":"cmd_output","timestamp":1607098379,"output":": 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.380 [info] block"},{"event":"cmd_output","timestamp":1607098379,"output":"_id: b6eba2f6-3d03-42d3-b259-ffc380bf44ae, type: BlockRequests, event: persisted build and sub_ppl d"},{"event":"cmd_output","timestamp":1607098379,"output":"etails for block_request: b6eba2f6-3d03-42d3-b259-ffc380bf44ae, origin: Elixir.Block.BlockRequests.M"},{"event":"cmd_output","timestamp":1607098379,"output":"odel.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:59.382 [info] block_id: 527b5806-"},{"event":"cmd_output","timestamp":1607098379,"output":"2aca-4458-b2d0-2dcd623aa3ff, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098379,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.384 [info] ppl_id: 636"},{"event":"cmd_output","timestamp":1607098379,"output":"d6d71-ad1c-4076-945b-f7cc3f04e68e, type: PplBlocks, block_index: 0, state: running, event: exit_sche"},{"event":"cmd_output","timestamp":1607098379,"output":"duling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098379,"output":"2:59.386 [info] block_id: b6eba2f6-3d03-42d3-b259-ffc380bf44ae, type: Tasks, state: pending, event:"},{"event":"cmd_output","timestamp":1607098379,"output":" created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167"},{"event":"cmd_output","timestamp":1607098379,"output":"), \n\u001b[0m\u001b[22m\n16:12:59.389 [info] block_id: b6eba2f6-3d03-42d3-b259-ffc380bf44ae, type: Blocks, s"},{"event":"cmd_output","timestamp":1607098379,"output":"tate: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098379,"output":"hange/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.394 [info] ppl_id: 555bd247-95fe-492b-b551-b50107450870, block_"},{"event":"cmd_output","timestamp":1607098379,"output":"id: 527b5806-2aca-4458-b2d0-2dcd623aa3ff, type: PplBlocks, block_index: 0, state: done, result: pass"},{"event":"cmd_output","timestamp":1607098379,"output":"ed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90"},{"event":"cmd_output","timestamp":1607098379,"output":"), \n\u001b[0m\u001b[22m\n16:12:59.408 [info] ppl_id: 66cf8618-cc15-446d-a325-02c829a414ef, type: PplRequests"},{"event":"cmd_output","timestamp":1607098379,"output":", event: persisted source_args for pipeline: 66cf8618-cc15-446d-a325-02c829a414ef, origin: Elixir.Pp"},{"event":"cmd_output","timestamp":1607098379,"output":"l.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:59.411 [info] ppl_i"},{"event":"cmd_output","timestamp":1607098379,"output":"d: 66cf8618-cc15-446d-a325-02c829a414ef, type: PplSubInits, state: fetching, event: exit_scheduling,"},{"event":"cmd_output","timestamp":1607098379,"output":" recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.41"},{"event":"cmd_output","timestamp":1607098379,"output":"8 [info] block_id: b6eba2f6-3d03-42d3-b259-ffc380bf44ae, type: Tasks, state: running, event: exit_s"},{"event":"cmd_output","timestamp":1607098379,"output":"cheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098379,"output":"6:12:59.425 [info] ppl_id: 555bd247-95fe-492b-b551-b50107450870, type: Ppls, state: done, result: p"},{"event":"cmd_output","timestamp":1607098379,"output":"assed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1("},{"event":"cmd_output","timestamp":1607098379,"output":"L90), \n\u001b[0m\u001b[22m\n16:12:59.447 [info] ppl_id: 66cf8618-cc15-446d-a325-02c829a414ef, type: PplSubIn"},{"event":"cmd_output","timestamp":1607098379,"output":"its, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl."},{"event":"cmd_output","timestamp":1607098379,"output":"log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.459 [info] ppl_id: 15fb7d2d-e690-416c-8267-ef183a6d8"},{"event":"cmd_output","timestamp":1607098379,"output":"803, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.ST"},{"event":"cmd_output","timestamp":1607098379,"output":"M.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.464 [info] PplBlocks WaitingState STM is sche"},{"event":"cmd_output","timestamp":1607098379,"output":"duling block 0 from pipeline: \"15fb7d2d-e690-416c-8267-ef183a6d8803\"\n\u001b[0m\u001b[22m\n16:12:59.467 [info]"},{"event":"cmd_output","timestamp":1607098379,"output":" block_id: bce086a9-8237-4f8f-aecf-c2fd0ee00860, type: BlockRequests, event: persisted block run re"},{"event":"cmd_output","timestamp":1607098379,"output":"quest from ppl 15fb7d2d-e690-416c-8267-ef183a6d8803 for block 0, origin: Elixir.Block.BlockRequests."},{"event":"cmd_output","timestamp":1607098379,"output":"Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:59.468 [info] block_id: bce0"},{"event":"cmd_output","timestamp":1607098379,"output":"86a9-8237-4f8f-aecf-c2fd0ee00860, type: Blocks, state: initializing, event: initializing, recovery_c"},{"event":"cmd_output","timestamp":1607098379,"output":"ount: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:59.473 [i"},{"event":"cmd_output","timestamp":1607098379,"output":"nfo] ppl_id: 66cf8618-cc15-446d-a325-02c829a414ef, type: PplRequests, event: persisted definition f"},{"event":"cmd_output","timestamp":1607098379,"output":"or request with request_token: 914f5a13-5d45-4602-9eff-b4e2f8f4c45d, origin: Elixir.Ppl.PplRequests."},{"event":"cmd_output","timestamp":1607098379,"output":"Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:59.473 [info] Block 0 of pipe"},{"event":"cmd_output","timestamp":1607098379,"output":"line with id: 15fb7d2d-e690-416c-8267-ef183a6d8803 scheduled in block service with id: : \"bce086a9-8"},{"event":"cmd_output","timestamp":1607098379,"output":"237-4f8f-aecf-c2fd0ee00860\"\n\u001b[0m\u001b[22m\n16:12:59.478 [info] ppl_id: 15fb7d2d-e690-416c-8267-ef183a6"},{"event":"cmd_output","timestamp":1607098379,"output":"d8803, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098379,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.478 [info] block_id: b"},{"event":"cmd_output","timestamp":1607098379,"output":"ce086a9-8237-4f8f-aecf-c2fd0ee00860, type: BlockRequests, event: persisted build and sub_ppl details"},{"event":"cmd_output","timestamp":1607098379,"output":" for block_request: bce086a9-8237-4f8f-aecf-c2fd0ee00860, origin: Elixir.Block.BlockRequests.Model.B"},{"event":"cmd_output","timestamp":1607098379,"output":"lockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:59.480 [info] block_id: bce086a9-8237-4"},{"event":"cmd_output","timestamp":1607098379,"output":"f8f-aecf-c2fd0ee00860, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098379,"output":"r.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:59.482 [info] block"},{"event":"cmd_output","timestamp":1607098379,"output":"_id: bce086a9-8237-4f8f-aecf-c2fd0ee00860, type: Blocks, state: running, event: exit_scheduling, rec"},{"event":"cmd_output","timestamp":1607098379,"output":"overy_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.485 [i"},{"event":"cmd_output","timestamp":1607098379,"output":"nfo] block_id: b6eba2f6-3d03-42d3-b259-ffc380bf44ae, type: Tasks, state: done, event: exit_scheduli"},{"event":"cmd_output","timestamp":1607098379,"output":"ng, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59"},{"event":"cmd_output","timestamp":1607098379,"output":".486 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L1"},{"event":"cmd_output","timestamp":1607098379,"output":"05), \n\u001b[0m\u001b[22m\n16:12:59.486 [info] ppl_id: 66cf8618-cc15-446d-a325-02c829a414ef, type: PplBlocks"},{"event":"cmd_output","timestamp":1607098379,"output":", block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubI"},{"event":"cmd_output","timestamp":1607098379,"output":"nits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:59.489 [info] ppl_id: 66cf8618"},{"event":"cmd_output","timestamp":1607098379,"output":"-cc15-446d-a325-02c829a414ef, type: PplSubInits, state: done, result: passed, event: exit_scheduling"},{"event":"cmd_output","timestamp":1607098379,"output":", recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.5"},{"event":"cmd_output","timestamp":1607098379,"output":"08 [info] block_id: b6eba2f6-3d03-42d3-b259-ffc380bf44ae, type: Blocks, state: done, event: exit_sc"},{"event":"cmd_output","timestamp":1607098379,"output":"heduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098379,"output":":12:59.511 [info] block_id: bce086a9-8237-4f8f-aecf-c2fd0ee00860, type: Tasks, state: running, even"},{"event":"cmd_output","timestamp":1607098379,"output":"t: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098379,"output":"m\u001b[22m\n16:12:59.514 [info] ppl_id: 66cf8618-cc15-446d-a325-02c829a414ef, type: PplBlocks, block_in"},{"event":"cmd_output","timestamp":1607098379,"output":"dex: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.lo"},{"event":"cmd_output","timestamp":1607098379,"output":"g_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.517 [info] ppl_id: 636d6d71-ad1c-4076-945b-f7cc3f04e68"},{"event":"cmd_output","timestamp":1607098379,"output":"e, block_id: b6eba2f6-3d03-42d3-b259-ffc380bf44ae, type: PplBlocks, block_index: 0, state: done, res"},{"event":"cmd_output","timestamp":1607098379,"output":"ult: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_cha"},{"event":"cmd_output","timestamp":1607098379,"output":"nge/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.526 [info] ppl_id: 66cf8618-cc15-446d-a325-02c829a414ef, type: Pp"},{"event":"cmd_output","timestamp":1607098379,"output":"ls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_st"},{"event":"cmd_output","timestamp":1607098379,"output":"ate_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.532 [info] ppl_id: 692f2434-5586-43b9-88b5-535c2c1e62c1, t"},{"event":"cmd_output","timestamp":1607098379,"output":"ype: PplRequests, event: persisted source_args for pipeline: 692f2434-5586-43b9-88b5-535c2c1e62c1, o"},{"event":"cmd_output","timestamp":1607098379,"output":"rigin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:59.5"},{"event":"cmd_output","timestamp":1607098379,"output":"35 [info] ppl_id: 692f2434-5586-43b9-88b5-535c2c1e62c1, type: PplSubInits, state: fetching, event: "},{"event":"cmd_output","timestamp":1607098379,"output":"exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098379,"output":"22m\n16:12:59.542 [info] ppl_id: 66cf8618-cc15-446d-a325-02c829a414ef, type: Ppls, state: queuing, "},{"event":"cmd_output","timestamp":1607098379,"output":"event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \r"},{"event":"cmd_output","timestamp":1607098379,"output":"\n\u001b[0m\u001b[22m\n16:12:59.545 [info] ppl_id: 636d6d71-ad1c-4076-945b-f7cc3f04e68e, type: Ppls, state: do"},{"event":"cmd_output","timestamp":1607098379,"output":"ne, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_st"},{"event":"cmd_output","timestamp":1607098379,"output":"ate_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.561 [info] ppl_id: 3e224b77-e410-4b93-a451-b554c58481de, t"},{"event":"cmd_output","timestamp":1607098379,"output":"ype: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl"},{"event":"cmd_output","timestamp":1607098379,"output":".log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.569 [info] PplBlocks WaitingState STM is scheduling"},{"event":"cmd_output","timestamp":1607098379,"output":" block 0 from pipeline: \"3e224b77-e410-4b93-a451-b554c58481de\"\n\u001b[0m\u001b[22m\n16:12:59.570 [info] ppl_"},{"event":"cmd_output","timestamp":1607098379,"output":"id: 692f2434-5586-43b9-88b5-535c2c1e62c1, type: PplSubInits, state: regular_init, event: exit_schedu"},{"event":"cmd_output","timestamp":1607098379,"output":"ling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:"},{"event":"cmd_output","timestamp":1607098379,"output":"59.576 [info] block_id: 9b6dd8b4-0433-4249-b980-a6388190a4bd, type: BlockRequests, event: persisted"},{"event":"cmd_output","timestamp":1607098379,"output":" block run request from ppl 3e224b77-e410-4b93-a451-b554c58481de for block 0, origin: Elixir.Block.B"},{"event":"cmd_output","timestamp":1607098379,"output":"lockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:59.580 [info] b"},{"event":"cmd_output","timestamp":1607098379,"output":"lock_id: 9b6dd8b4-0433-4249-b980-a6388190a4bd, type: Blocks, state: initializing, event: initializin"},{"event":"cmd_output","timestamp":1607098379,"output":"g, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098379,"output":":12:59.582 [info] Block 0 of pipeline with id: 3e224b77-e410-4b93-a451-b554c58481de scheduled in bl"},{"event":"cmd_output","timestamp":1607098379,"output":"ock service with id: : \"9b6dd8b4-0433-4249-b980-a6388190a4bd\"\n\u001b[0m\u001b[22m\n16:12:59.586 [info] ppl_i"},{"event":"cmd_output","timestamp":1607098379,"output":"d: 3e224b77-e410-4b93-a451-b554c58481de, type: PplBlocks, block_index: 0, state: running, event: exi"},{"event":"cmd_output","timestamp":1607098379,"output":"t_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098379,"output":"\n16:12:59.589 [info] block_id: 9b6dd8b4-0433-4249-b980-a6388190a4bd, type: BlockRequests, event: p"},{"event":"cmd_output","timestamp":1607098379,"output":"ersisted build and sub_ppl details for block_request: 9b6dd8b4-0433-4249-b980-a6388190a4bd, origin: "},{"event":"cmd_output","timestamp":1607098379,"output":"Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:59.591"},{"event":"cmd_output","timestamp":1607098379,"output":" [info] block_id: 9b6dd8b4-0433-4249-b980-a6388190a4bd, type: Tasks, state: pending, event: created"},{"event":"cmd_output","timestamp":1607098379,"output":", recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098379,"output":"m\u001b[22m\n16:12:59.594 [info] block_id: 9b6dd8b4-0433-4249-b980-a6388190a4bd, type: Blocks, state: ru"},{"event":"cmd_output","timestamp":1607098379,"output":"nning, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1("},{"event":"cmd_output","timestamp":1607098379,"output":"L90), \n\u001b[0m\u001b[22m\n16:12:59.603 [info] block_id: bce086a9-8237-4f8f-aecf-c2fd0ee00860, type: Tasks,"},{"event":"cmd_output","timestamp":1607098379,"output":" state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_ch"},{"event":"cmd_output","timestamp":1607098379,"output":"ange/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.611 [info] block_id: bce086a9-8237-4f8f-aecf-c2fd0ee00860, type:"},{"event":"cmd_output","timestamp":1607098379,"output":" Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_"},{"event":"cmd_output","timestamp":1607098379,"output":"state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.615 [info] block_id: 9b6dd8b4-0433-4249-b980-a6388190a4b"},{"event":"cmd_output","timestamp":1607098379,"output":"d, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM"},{"event":"cmd_output","timestamp":1607098379,"output":".Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.620 [info] ppl_id: 15fb7d2d-e690-416c-8267-ef1"},{"event":"cmd_output","timestamp":1607098379,"output":"83a6d8803, block_id: bce086a9-8237-4f8f-aecf-c2fd0ee00860, type: PplBlocks, block_index: 0, state: d"},{"event":"cmd_output","timestamp":1607098379,"output":"one, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_s"},{"event":"cmd_output","timestamp":1607098379,"output":"tate_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.621 [info] ppl_id: 692f2434-5586-43b9-88b5-535c2c1e62c1, "},{"event":"cmd_output","timestamp":1607098379,"output":"type: PplRequests, event: persisted definition for request with request_token: eeb09212-7a93-4d7e-bd"},{"event":"cmd_output","timestamp":1607098379,"output":"33-161e29fc0caa, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \r"},{"event":"cmd_output","timestamp":1607098379,"output":"\n\u001b[0m\u001b[22m\n16:12:59.626 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularIn"},{"event":"cmd_output","timestamp":1607098379,"output":"itState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:59.626 [info] ppl_id: 692f2434-5586-43b9-88b5-535c2c1e6"},{"event":"cmd_output","timestamp":1607098379,"output":"2c1, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098379,"output":": Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:59.628 [inf"},{"event":"cmd_output","timestamp":1607098379,"output":"o] ppl_id: 692f2434-5586-43b9-88b5-535c2c1e62c1, type: PplSubInits, state: done, result: passed, ev"},{"event":"cmd_output","timestamp":1607098379,"output":"ent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b"},{"event":"cmd_output","timestamp":1607098379,"output":"[0m\u001b[22m\n16:12:59.636 [info] ppl_id: 692f2434-5586-43b9-88b5-535c2c1e62c1, type: Ppls, state: pend"},{"event":"cmd_output","timestamp":1607098379,"output":"ing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L9"},{"event":"cmd_output","timestamp":1607098379,"output":"0), \n\u001b[0m\u001b[22m\n16:12:59.636 [info] ppl_id: 692f2434-5586-43b9-88b5-535c2c1e62c1, type: PplBlocks,"},{"event":"cmd_output","timestamp":1607098379,"output":" block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.ST"},{"event":"cmd_output","timestamp":1607098379,"output":"M.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.641 [info] ppl_id: 15fb7d2d-e690-416c-8267-ef"},{"event":"cmd_output","timestamp":1607098379,"output":"183a6d8803, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098379,"output":"in: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.648 [info] ppl_id: 21d7ea"},{"event":"cmd_output","timestamp":1607098379,"output":"aa-0972-4693-9923-1360a28f18e0, type: PplRequests, event: persisted source_args for pipeline: 21d7ea"},{"event":"cmd_output","timestamp":1607098379,"output":"aa-0972-4693-9923-1360a28f18e0, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_sourc"},{"event":"cmd_output","timestamp":1607098379,"output":"e/2(L89), \n\u001b[0m\u001b[22m\n16:12:59.650 [info] ppl_id: 692f2434-5586-43b9-88b5-535c2c1e62c1, type: Ppls"},{"event":"cmd_output","timestamp":1607098379,"output":", state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_stat"},{"event":"cmd_output","timestamp":1607098379,"output":"e_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.650 [info] ppl_id: 21d7eaaa-0972-4693-9923-1360a28f18e0, typ"},{"event":"cmd_output","timestamp":1607098379,"output":"e: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.ST"},{"event":"cmd_output","timestamp":1607098379,"output":"M.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.660 [info] ppl_id: 66cf8618-cc15-446d-a325-02"},{"event":"cmd_output","timestamp":1607098379,"output":"c829a414ef, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Lo"},{"event":"cmd_output","timestamp":1607098379,"output":"oper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.666 [info] PplBlocks WaitingState STM "},{"event":"cmd_output","timestamp":1607098379,"output":"is scheduling block 0 from pipeline: \"66cf8618-cc15-446d-a325-02c829a414ef\"\n\u001b[0m\u001b[22m\n16:12:59.670"},{"event":"cmd_output","timestamp":1607098379,"output":" [info] block_id: 0f67391f-8828-4eb5-86d1-b16f7d0df4e6, type: BlockRequests, event: persisted block"},{"event":"cmd_output","timestamp":1607098379,"output":" run request from ppl 66cf8618-cc15-446d-a325-02c829a414ef for block 0, origin: Elixir.Block.BlockRe"},{"event":"cmd_output","timestamp":1607098379,"output":"quests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:59.672 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098379,"output":" 21d7eaaa-0972-4693-9923-1360a28f18e0, type: PplSubInits, state: regular_init, event: exit_schedulin"},{"event":"cmd_output","timestamp":1607098379,"output":"g, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59."},{"event":"cmd_output","timestamp":1607098379,"output":"673 [info] block_id: 0f67391f-8828-4eb5-86d1-b16f7d0df4e6, type: Blocks, state: initializing, event"},{"event":"cmd_output","timestamp":1607098379,"output":": initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n"},{"event":"cmd_output","timestamp":1607098379,"output":"\u001b[0m\u001b[22m\n16:12:59.675 [info] Block 0 of pipeline with id: 66cf8618-cc15-446d-a325-02c829a414ef sc"},{"event":"cmd_output","timestamp":1607098379,"output":"heduled in block service with id: : \"0f67391f-8828-4eb5-86d1-b16f7d0df4e6\"\n\u001b[0m\u001b[22m\n16:12:59.678 "},{"event":"cmd_output","timestamp":1607098379,"output":"[info] ppl_id: 66cf8618-cc15-446d-a325-02c829a414ef, type: PplBlocks, block_index: 0, state: runnin"},{"event":"cmd_output","timestamp":1607098379,"output":"g, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90)"},{"event":"cmd_output","timestamp":1607098379,"output":", \n\u001b[0m\u001b[22m\n16:12:59.683 [info] block_id: 0f67391f-8828-4eb5-86d1-b16f7d0df4e6, type: BlockReque"},{"event":"cmd_output","timestamp":1607098379,"output":"sts, event: persisted build and sub_ppl details for block_request: 0f67391f-8828-4eb5-86d1-b16f7d0df"},{"event":"cmd_output","timestamp":1607098379,"output":"4e6, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098379,"output":"\n16:12:59.685 [info] block_id: 0f67391f-8828-4eb5-86d1-b16f7d0df4e6, type: Tasks, state: pending, e"},{"event":"cmd_output","timestamp":1607098379,"output":"vent: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1"},{"event":"cmd_output","timestamp":1607098379,"output":"(L167), \n\u001b[0m\u001b[22m\n16:12:59.687 [info] block_id: 0f67391f-8828-4eb5-86d1-b16f7d0df4e6, type: Bloc"},{"event":"cmd_output","timestamp":1607098379,"output":"ks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_st"},{"event":"cmd_output","timestamp":1607098379,"output":"ate_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.703 [info] block_id: 0f67391f-8828-4eb5-86d1-b16f7d0df4e6,"},{"event":"cmd_output","timestamp":1607098379,"output":" type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.I"},{"event":"cmd_output","timestamp":1607098379,"output":"mpl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.706 [info] ppl_id: 21d7eaaa-0972-4693-9923-1360a"},{"event":"cmd_output","timestamp":1607098379,"output":"28f18e0, type: PplRequests, event: persisted definition for request with request_token: 7903b0ad-2d9"},{"event":"cmd_output","timestamp":1607098379,"output":"8-4227-8193-76e7903378b9, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/"},{"event":"cmd_output","timestamp":1607098379,"output":"3(L76), \n\u001b[0m\u001b[22m\n16:12:59.712 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler."},{"event":"cmd_output","timestamp":1607098379,"output":"RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:59.712 [info] ppl_id: 21d7eaaa-0972-4693-9923-"},{"event":"cmd_output","timestamp":1607098379,"output":"1360a28f18e0, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: "},{"event":"cmd_output","timestamp":1607098379,"output":"0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:59"},{"event":"cmd_output","timestamp":1607098379,"output":".715 [info] ppl_id: 21d7eaaa-0972-4693-9923-1360a28f18e0, type: PplSubInits, state: done, result: p"},{"event":"cmd_output","timestamp":1607098379,"output":"assed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1("},{"event":"cmd_output","timestamp":1607098379,"output":"L90), \n\u001b[0m\u001b[22m\n16:12:59.716 [info] block_id: 9b6dd8b4-0433-4249-b980-a6388190a4bd, type: Tasks,"},{"event":"cmd_output","timestamp":1607098379,"output":" state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_ch"},{"event":"cmd_output","timestamp":1607098379,"output":"ange/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.722 [info] ppl_id: 21d7eaaa-0972-4693-9923-1360a28f18e0, type: P"},{"event":"cmd_output","timestamp":1607098379,"output":"plBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098379,"output":"Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.723 [info] block_id: 9b6dd8b4-0433-4"},{"event":"cmd_output","timestamp":1607098379,"output":"249-b980-a6388190a4bd, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098379,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.724 [info] ppl_id: 21d7eaaa-"},{"event":"cmd_output","timestamp":1607098379,"output":"0972-4693-9923-1360a28f18e0, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098379,"output":"origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.731 [info] ppl_id: 3e"},{"event":"cmd_output","timestamp":1607098379,"output":"224b77-e410-4b93-a451-b554c58481de, block_id: 9b6dd8b4-0433-4249-b980-a6388190a4bd, type: PplBlocks,"},{"event":"cmd_output","timestamp":1607098379,"output":" block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098379,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.738 [info] ppl_id: 21d7eaaa-0972"},{"event":"cmd_output","timestamp":1607098379,"output":"-4693-9923-1360a28f18e0, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098379,"output":"in: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.747 [info] ppl_id: 3e224b"},{"event":"cmd_output","timestamp":1607098379,"output":"77-e410-4b93-a451-b554c58481de, type: Ppls, state: done, result: passed, event: exit_scheduling, rec"},{"event":"cmd_output","timestamp":1607098379,"output":"overy_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.758 [i"},{"event":"cmd_output","timestamp":1607098379,"output":"nfo] ppl_id: 748a8c2b-ae18-451e-b99a-0dbba82309c5, type: PplRequests, event: persisted source_args "},{"event":"cmd_output","timestamp":1607098379,"output":"for pipeline: 748a8c2b-ae18-451e-b99a-0dbba82309c5, origin: Elixir.Ppl.PplRequests.Model.PplRequests"},{"event":"cmd_output","timestamp":1607098379,"output":"Queries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:59.762 [info] ppl_id: 748a8c2b-ae18-451e-b99a-0dbb"},{"event":"cmd_output","timestamp":1607098379,"output":"a82309c5, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098379,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.778 [info] ppl_id: 748a8c2b-ae18"},{"event":"cmd_output","timestamp":1607098379,"output":"-451e-b99a-0dbba82309c5, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_co"},{"event":"cmd_output","timestamp":1607098379,"output":"unt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.803 [info] pp"},{"event":"cmd_output","timestamp":1607098379,"output":"l_id: 748a8c2b-ae18-451e-b99a-0dbba82309c5, type: PplRequests, event: persisted definition for reque"},{"event":"cmd_output","timestamp":1607098379,"output":"st with request_token: d817da66-4877-4040-a0e6-03e35a2451a2, origin: Elixir.Ppl.PplRequests.Model.Pp"},{"event":"cmd_output","timestamp":1607098379,"output":"lRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:59.806 [info] Queue persisted: {:ok, "},{"event":"cmd_output","timestamp":1607098379,"output":"%Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12"},{"event":"cmd_output","timestamp":1607098379,"output":"-04 16:12:59.805372], name: \"123-.semaphore/semaphore.yml\", organization_id: \"f4ca51db-9602-4ede-b6a"},{"event":"cmd_output","timestamp":1607098379,"output":"7-4db66db412a1\", project_id: \"123\", queue_id: \"e0ae5dc9-7492-4850-9ca4-7e57ab65bb2d\", scope: \"projec"},{"event":"cmd_output","timestamp":1607098379,"output":"t\", updated_at: ~N[2020-12-04 16:12:59.805381], user_generated: false}}\n\u001b[0m\u001b[22m\n16:12:59.809 [in"},{"event":"cmd_output","timestamp":1607098379,"output":"fo] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b"},{"event":"cmd_output","timestamp":1607098379,"output":"[0m\u001b[22m\n16:12:59.809 [info] ppl_id: 748a8c2b-ae18-451e-b99a-0dbba82309c5, type: PplBlocks, block_"},{"event":"cmd_output","timestamp":1607098379,"output":"index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STM"},{"event":"cmd_output","timestamp":1607098379,"output":"Handler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:59.812 [info] ppl_id: 748a8c2b-ae18-45"},{"event":"cmd_output","timestamp":1607098379,"output":"1e-b99a-0dbba82309c5, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recove"},{"event":"cmd_output","timestamp":1607098379,"output":"ry_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.818 [info"},{"event":"cmd_output","timestamp":1607098379,"output":"] ppl_id: 748a8c2b-ae18-451e-b99a-0dbba82309c5, type: Ppls, state: pending, event: exit_scheduling,"},{"event":"cmd_output","timestamp":1607098379,"output":" recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.81"},{"event":"cmd_output","timestamp":1607098379,"output":"9 [info] ppl_id: 748a8c2b-ae18-451e-b99a-0dbba82309c5, type: PplBlocks, block_index: 0, state: wait"},{"event":"cmd_output","timestamp":1607098379,"output":"ing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L9"},{"event":"cmd_output","timestamp":1607098379,"output":"0), \n\u001b[0m\u001b[22m\n16:12:59.826 [info] ppl_id: 748a8c2b-ae18-451e-b99a-0dbba82309c5, type: Ppls, stat"},{"event":"cmd_output","timestamp":1607098379,"output":"e: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chan"},{"event":"cmd_output","timestamp":1607098379,"output":"ge/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.831 [info] block_id: 0f67391f-8828-4eb5-86d1-b16f7d0df4e6, type: T"},{"event":"cmd_output","timestamp":1607098379,"output":"asks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_sta"},{"event":"cmd_output","timestamp":1607098379,"output":"te_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.837 [info] block_id: 0f67391f-8828-4eb5-86d1-b16f7d0df4e6, "},{"event":"cmd_output","timestamp":1607098379,"output":"type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl"},{"event":"cmd_output","timestamp":1607098379,"output":".log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.841 [info] ppl_id: 748a8c2b-ae18-451e-b99a-0dbba823"},{"event":"cmd_output","timestamp":1607098379,"output":"09c5, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.S"},{"event":"cmd_output","timestamp":1607098379,"output":"TM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.850 [info] PplBlocks WaitingState STM is sch"},{"event":"cmd_output","timestamp":1607098379,"output":"eduling block 0 from pipeline: \"748a8c2b-ae18-451e-b99a-0dbba82309c5\"\n\u001b[0m\u001b[22m\n16:12:59.850 [info"},{"event":"cmd_output","timestamp":1607098379,"output":"] ppl_id: 66cf8618-cc15-446d-a325-02c829a414ef, block_id: 0f67391f-8828-4eb5-86d1-b16f7d0df4e6, typ"},{"event":"cmd_output","timestamp":1607098379,"output":"e: PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0"},{"event":"cmd_output","timestamp":1607098379,"output":", origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.855 [info] block_id"},{"event":"cmd_output","timestamp":1607098379,"output":": f422837b-da2c-48ba-9380-47a86808680b, type: BlockRequests, event: persisted block run request from"},{"event":"cmd_output","timestamp":1607098379,"output":" ppl 748a8c2b-ae18-451e-b99a-0dbba82309c5 for block 0, origin: Elixir.Block.BlockRequests.Model.Bloc"},{"event":"cmd_output","timestamp":1607098379,"output":"kRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:59.856 [info] block_id: f422837b-da2c-"},{"event":"cmd_output","timestamp":1607098379,"output":"48ba-9380-47a86808680b, type: Blocks, state: initializing, event: initializing, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098379,"output":"rigin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:59.859 [info] Bloc"},{"event":"cmd_output","timestamp":1607098379,"output":"k 0 of pipeline with id: 748a8c2b-ae18-451e-b99a-0dbba82309c5 scheduled in block service with id: : "},{"event":"cmd_output","timestamp":1607098379,"output":"\"f422837b-da2c-48ba-9380-47a86808680b\"\n\u001b[0m\u001b[22m\n16:12:59.862 [info] ppl_id: 748a8c2b-ae18-451e-b"},{"event":"cmd_output","timestamp":1607098379,"output":"99a-0dbba82309c5, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_"},{"event":"cmd_output","timestamp":1607098379,"output":"count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.864 [info] "},{"event":"cmd_output","timestamp":1607098379,"output":"ppl_id: 66cf8618-cc15-446d-a325-02c829a414ef, type: Ppls, state: done, result: passed, event: exit_s"},{"event":"cmd_output","timestamp":1607098379,"output":"cheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098379,"output":"6:12:59.867 [info] block_id: f422837b-da2c-48ba-9380-47a86808680b, type: BlockRequests, event: pers"},{"event":"cmd_output","timestamp":1607098379,"output":"isted build and sub_ppl details for block_request: f422837b-da2c-48ba-9380-47a86808680b, origin: Eli"},{"event":"cmd_output","timestamp":1607098379,"output":"xir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:59.869 [i"},{"event":"cmd_output","timestamp":1607098379,"output":"nfo] block_id: f422837b-da2c-48ba-9380-47a86808680b, type: Tasks, state: pending, event: created, r"},{"event":"cmd_output","timestamp":1607098379,"output":"ecovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098379,"output":"22m\n16:12:59.871 [info] block_id: f422837b-da2c-48ba-9380-47a86808680b, type: Blocks, state: runni"},{"event":"cmd_output","timestamp":1607098379,"output":"ng, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90"},{"event":"cmd_output","timestamp":1607098379,"output":"), \n\u001b[0m\u001b[22m\n16:12:59.874 [info] ppl_id: a8a3b759-3ce4-4e4c-ada8-b10b3c509f8a, type: PplRequests"},{"event":"cmd_output","timestamp":1607098379,"output":", event: persisted source_args for pipeline: a8a3b759-3ce4-4e4c-ada8-b10b3c509f8a, origin: Elixir.Pp"},{"event":"cmd_output","timestamp":1607098379,"output":"l.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:59.875 [info] ppl_i"},{"event":"cmd_output","timestamp":1607098379,"output":"d: a8a3b759-3ce4-4e4c-ada8-b10b3c509f8a, type: PplSubInits, state: fetching, event: exit_scheduling,"},{"event":"cmd_output","timestamp":1607098379,"output":" recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.88"},{"event":"cmd_output","timestamp":1607098379,"output":"9 [info] block_id: f422837b-da2c-48ba-9380-47a86808680b, type: Tasks, state: running, event: exit_s"},{"event":"cmd_output","timestamp":1607098379,"output":"cheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098379,"output":"6:12:59.895 [info] ppl_id: 692f2434-5586-43b9-88b5-535c2c1e62c1, type: Ppls, state: running, event:"},{"event":"cmd_output","timestamp":1607098379,"output":" exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098379,"output":"[22m\n16:12:59.902 [info] ppl_id: a8a3b759-3ce4-4e4c-ada8-b10b3c509f8a, type: PplSubInits, state: r"},{"event":"cmd_output","timestamp":1607098379,"output":"egular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_cha"},{"event":"cmd_output","timestamp":1607098379,"output":"nge/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.902 [info] PplBlocks WaitingState STM is scheduling block 0 from "},{"event":"cmd_output","timestamp":1607098379,"output":"pipeline: \"692f2434-5586-43b9-88b5-535c2c1e62c1\"\n\u001b[0m\u001b[22m\n16:12:59.907 [info] block_id: 2e3a8b61"},{"event":"cmd_output","timestamp":1607098379,"output":"-b81f-4160-8634-bdb5a63aa2e5, type: BlockRequests, event: persisted block run request from ppl 692f2"},{"event":"cmd_output","timestamp":1607098379,"output":"434-5586-43b9-88b5-535c2c1e62c1 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQ"},{"event":"cmd_output","timestamp":1607098379,"output":"ueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:59.909 [info] block_id: 2e3a8b61-b81f-4160-8634-"},{"event":"cmd_output","timestamp":1607098379,"output":"bdb5a63aa2e5, type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098379,"output":"xir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:59.910 [info] Block 0 of pip"},{"event":"cmd_output","timestamp":1607098379,"output":"eline with id: 692f2434-5586-43b9-88b5-535c2c1e62c1 scheduled in block service with id: : \"2e3a8b61-"},{"event":"cmd_output","timestamp":1607098379,"output":"b81f-4160-8634-bdb5a63aa2e5\"\n\u001b[0m\u001b[22m\n16:12:59.914 [info] ppl_id: 692f2434-5586-43b9-88b5-535c2c"},{"event":"cmd_output","timestamp":1607098379,"output":"1e62c1, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098379,"output":"origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.917 [info] block_id: "},{"event":"cmd_output","timestamp":1607098379,"output":"2e3a8b61-b81f-4160-8634-bdb5a63aa2e5, type: BlockRequests, event: persisted build and sub_ppl detail"},{"event":"cmd_output","timestamp":1607098379,"output":"s for block_request: 2e3a8b61-b81f-4160-8634-bdb5a63aa2e5, origin: Elixir.Block.BlockRequests.Model."},{"event":"cmd_output","timestamp":1607098379,"output":"BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:59.919 [info] block_id: 2e3a8b61-b81f-"},{"event":"cmd_output","timestamp":1607098379,"output":"4160-8634-bdb5a63aa2e5, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098379,"output":"ir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:59.921 [info] bloc"},{"event":"cmd_output","timestamp":1607098379,"output":"k_id: 2e3a8b61-b81f-4160-8634-bdb5a63aa2e5, type: Blocks, state: running, event: exit_scheduling, re"},{"event":"cmd_output","timestamp":1607098379,"output":"covery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.934 ["},{"event":"cmd_output","timestamp":1607098379,"output":"info] ppl_id: a8a3b759-3ce4-4e4c-ada8-b10b3c509f8a, type: PplRequests, event: persisted definition "},{"event":"cmd_output","timestamp":1607098379,"output":"for request with request_token: 7fd2c1df-cc56-4996-acb1-3f6c7ade8368, origin: Elixir.Ppl.PplRequests"},{"event":"cmd_output","timestamp":1607098379,"output":".Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:59.936 [info] block_id: 2e3a"},{"event":"cmd_output","timestamp":1607098379,"output":"8b61-b81f-4160-8634-bdb5a63aa2e5, type: Tasks, state: running, event: exit_scheduling, recovery_coun"},{"event":"cmd_output","timestamp":1607098379,"output":"t: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.943 [info] even"},{"event":"cmd_output","timestamp":1607098379,"output":"t: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098379,"output":"\n16:12:59.943 [info] ppl_id: a8a3b759-3ce4-4e4c-ada8-b10b3c509f8a, type: PplBlocks, block_index: 0,"},{"event":"cmd_output","timestamp":1607098379,"output":" state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.R"},{"event":"cmd_output","timestamp":1607098379,"output":"egularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:59.945 [info] ppl_id: a8a3b759-3ce4-4e4c-ada8-b"},{"event":"cmd_output","timestamp":1607098379,"output":"10b3c509f8a, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count:"},{"event":"cmd_output","timestamp":1607098379,"output":" 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.946 [info] block_"},{"event":"cmd_output","timestamp":1607098379,"output":"id: f422837b-da2c-48ba-9380-47a86808680b, type: Tasks, state: done, event: exit_scheduling, recovery"},{"event":"cmd_output","timestamp":1607098379,"output":"_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.952 [info] "},{"event":"cmd_output","timestamp":1607098379,"output":" ppl_id: a8a3b759-3ce4-4e4c-ada8-b10b3c509f8a, type: Ppls, state: pending, event: exit_scheduling, r"},{"event":"cmd_output","timestamp":1607098379,"output":"ecovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.953 "},{"event":"cmd_output","timestamp":1607098379,"output":"[info] ppl_id: a8a3b759-3ce4-4e4c-ada8-b10b3c509f8a, type: PplBlocks, block_index: 0, state: waitin"},{"event":"cmd_output","timestamp":1607098379,"output":"g, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90)"},{"event":"cmd_output","timestamp":1607098379,"output":", \n\u001b[0m\u001b[22m\n16:12:59.958 [info] block_id: f422837b-da2c-48ba-9380-47a86808680b, type: Blocks, st"},{"event":"cmd_output","timestamp":1607098379,"output":"ate: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chang"},{"event":"cmd_output","timestamp":1607098379,"output":"e/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.962 [info] ppl_id: a8a3b759-3ce4-4e4c-ada8-b10b3c509f8a, type: Ppls"},{"event":"cmd_output","timestamp":1607098379,"output":", state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_stat"},{"event":"cmd_output","timestamp":1607098379,"output":"e_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.968 [info] ppl_id: 748a8c2b-ae18-451e-b99a-0dbba82309c5, blo"},{"event":"cmd_output","timestamp":1607098379,"output":"ck_id: f422837b-da2c-48ba-9380-47a86808680b, type: PplBlocks, block_index: 0, state: done, result: p"},{"event":"cmd_output","timestamp":1607098379,"output":"assed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1("},{"event":"cmd_output","timestamp":1607098379,"output":"L90), \n\u001b[0m\u001b[22m\n16:12:59.978 [info] ppl_id: 748a8c2b-ae18-451e-b99a-0dbba82309c5, type: Ppls, st"},{"event":"cmd_output","timestamp":1607098379,"output":"ate: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl"},{"event":"cmd_output","timestamp":1607098379,"output":".log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.982 [info] ppl_id: 04340c1b-6269-48dd-928b-df613a81"},{"event":"cmd_output","timestamp":1607098379,"output":"0db5, type: PplRequests, event: persisted source_args for pipeline: 04340c1b-6269-48dd-928b-df613a81"},{"event":"cmd_output","timestamp":1607098379,"output":"0db5, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098379,"output":"12:59.984 [info] ppl_id: 04340c1b-6269-48dd-928b-df613a810db5, type: PplSubInits, state: fetching, "},{"event":"cmd_output","timestamp":1607098379,"output":"event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \r"},{"event":"cmd_output","timestamp":1607098380,"output":"\n\u001b[0m\u001b[22m\n16:13:00.002 [info] ppl_id: 04340c1b-6269-48dd-928b-df613a810db5, type: PplSubInits, st"},{"event":"cmd_output","timestamp":1607098380,"output":"ate: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_sta"},{"event":"cmd_output","timestamp":1607098380,"output":"te_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:00.006 [info] ppl_id: a8a3b759-3ce4-4e4c-ada8-b10b3c509f8a, ty"},{"event":"cmd_output","timestamp":1607098380,"output":"pe: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl."},{"event":"cmd_output","timestamp":1607098380,"output":"log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:00.011 [info] PplBlocks WaitingState STM is scheduling "},{"event":"cmd_output","timestamp":1607098380,"output":"block 0 from pipeline: \"a8a3b759-3ce4-4e4c-ada8-b10b3c509f8a\"\n\u001b[0m\u001b[22m\n16:13:00.016 [info] block"},{"event":"cmd_output","timestamp":1607098380,"output":"_id: 6fd96bfc-38cd-4374-9adc-a2cb877b0d3a, type: BlockRequests, event: persisted block run request f"},{"event":"cmd_output","timestamp":1607098380,"output":"rom ppl a8a3b759-3ce4-4e4c-ada8-b10b3c509f8a for block 0, origin: Elixir.Block.BlockRequests.Model.B"},{"event":"cmd_output","timestamp":1607098380,"output":"lockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:13:00.017 [info] block_id: 6fd96bfc-38"},{"event":"cmd_output","timestamp":1607098380,"output":"cd-4374-9adc-a2cb877b0d3a, type: Blocks, state: initializing, event: initializing, recovery_count: 0"},{"event":"cmd_output","timestamp":1607098380,"output":", origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:13:00.020 [info] B"},{"event":"cmd_output","timestamp":1607098380,"output":"lock 0 of pipeline with id: a8a3b759-3ce4-4e4c-ada8-b10b3c509f8a scheduled in block service with id:"},{"event":"cmd_output","timestamp":1607098380,"output":" : \"6fd96bfc-38cd-4374-9adc-a2cb877b0d3a\"\n\u001b[0m\u001b[22m\n16:13:00.022 [info] ppl_id: a8a3b759-3ce4-4e4"},{"event":"cmd_output","timestamp":1607098380,"output":"c-ada8-b10b3c509f8a, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recove"},{"event":"cmd_output","timestamp":1607098380,"output":"ry_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:00.026 [info"},{"event":"cmd_output","timestamp":1607098380,"output":"] block_id: 6fd96bfc-38cd-4374-9adc-a2cb877b0d3a, type: BlockRequests, event: persisted build and s"},{"event":"cmd_output","timestamp":1607098380,"output":"ub_ppl details for block_request: 6fd96bfc-38cd-4374-9adc-a2cb877b0d3a, origin: Elixir.Block.BlockRe"},{"event":"cmd_output","timestamp":1607098380,"output":"quests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:13:00.028 [info] block_id: 6"},{"event":"cmd_output","timestamp":1607098380,"output":"fd96bfc-38cd-4374-9adc-a2cb877b0d3a, type: Tasks, state: pending, event: created, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098380,"output":" origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:13:00.030"},{"event":"cmd_output","timestamp":1607098380,"output":" [info] block_id: 6fd96bfc-38cd-4374-9adc-a2cb877b0d3a, type: Blocks, state: running, event: exit_s"},{"event":"cmd_output","timestamp":1607098380,"output":"cheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098380,"output":"6:13:00.032 [info] ppl_id: 04340c1b-6269-48dd-928b-df613a810db5, type: PplRequests, event: persiste"},{"event":"cmd_output","timestamp":1607098380,"output":"d definition for request with request_token: 027ca5dd-f878-4e77-98ef-5cc0a785b42e, origin: Elixir.Pp"},{"event":"cmd_output","timestamp":1607098380,"output":"l.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:13:00.046 [info] e"},{"event":"cmd_output","timestamp":1607098380,"output":"vent: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098380,"output":"2m\n16:13:00.046 [info] ppl_id: 04340c1b-6269-48dd-928b-df613a810db5, type: PplBlocks, block_index:"},{"event":"cmd_output","timestamp":1607098380,"output":" 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandle"},{"event":"cmd_output","timestamp":1607098380,"output":"r.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:00.048 [info] block_id: 6fd96bfc-38cd-4374-9"},{"event":"cmd_output","timestamp":1607098380,"output":"adc-a2cb877b0d3a, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098380,"output":"ixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:00.048 [info] ppl_id: 04340c1b-626"},{"event":"cmd_output","timestamp":1607098380,"output":"9-48dd-928b-df613a810db5, type: PplSubInits, state: done, result: passed, event: exit_scheduling, re"},{"event":"cmd_output","timestamp":1607098380,"output":"covery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:00.059 ["},{"event":"cmd_output","timestamp":1607098380,"output":"info] ppl_id: 04340c1b-6269-48dd-928b-df613a810db5, type: PplBlocks, block_index: 0, state: waiting"},{"event":"cmd_output","timestamp":1607098380,"output":", event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90),"},{"event":"cmd_output","timestamp":1607098380,"output":" \n\u001b[0m\u001b[22m\n16:13:00.062 [info] block_id: 2e3a8b61-b81f-4160-8634-bdb5a63aa2e5, type: Tasks, stat"},{"event":"cmd_output","timestamp":1607098380,"output":"e: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/"},{"event":"cmd_output","timestamp":1607098380,"output":"1(L90), \n\u001b[0m\u001b[22m\n16:13:00.062 [info] ppl_id: 04340c1b-6269-48dd-928b-df613a810db5, type: Ppls, "},{"event":"cmd_output","timestamp":1607098380,"output":"state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_"},{"event":"cmd_output","timestamp":1607098380,"output":"change/1(L90), \n\u001b[0m\u001b[22m\n16:13:00.067 [info] block_id: 2e3a8b61-b81f-4160-8634-bdb5a63aa2e5, typ"},{"event":"cmd_output","timestamp":1607098380,"output":"e: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.lo"},{"event":"cmd_output","timestamp":1607098380,"output":"g_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:00.071 [info] ppl_id: 04340c1b-6269-48dd-928b-df613a810db"},{"event":"cmd_output","timestamp":1607098380,"output":"5, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM."},{"event":"cmd_output","timestamp":1607098380,"output":"Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:00.077 [info] ppl_id: 692f2434-5586-43b9-88b5-535c"},{"event":"cmd_output","timestamp":1607098380,"output":"2c1e62c1, block_id: 2e3a8b61-b81f-4160-8634-bdb5a63aa2e5, type: PplBlocks, block_index: 0, state: do"},{"event":"cmd_output","timestamp":1607098380,"output":"ne, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_st"},{"event":"cmd_output","timestamp":1607098380,"output":"ate_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:00.089 [info] ppl_id: 0481bb40-9504-4e05-8b22-8fa4d33ee5d9, t"},{"event":"cmd_output","timestamp":1607098380,"output":"ype: PplRequests, event: persisted source_args for pipeline: 0481bb40-9504-4e05-8b22-8fa4d33ee5d9, o"},{"event":"cmd_output","timestamp":1607098380,"output":"rigin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:13:00.0"},{"event":"cmd_output","timestamp":1607098380,"output":"92 [info] ppl_id: 0481bb40-9504-4e05-8b22-8fa4d33ee5d9, type: PplSubInits, state: fetching, event: "},{"event":"cmd_output","timestamp":1607098380,"output":"exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098380,"output":"22m\n16:13:00.097 [info] ppl_id: 692f2434-5586-43b9-88b5-535c2c1e62c1, type: Ppls, state: done, res"},{"event":"cmd_output","timestamp":1607098380,"output":"ult: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_cha"},{"event":"cmd_output","timestamp":1607098380,"output":"nge/1(L90), \n\u001b[0m\u001b[22m\n16:13:00.113 [info] ppl_id: 0481bb40-9504-4e05-8b22-8fa4d33ee5d9, type: Pp"},{"event":"cmd_output","timestamp":1607098380,"output":"lSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM"},{"event":"cmd_output","timestamp":1607098380,"output":".Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:00.121 [info] ppl_id: 21d7eaaa-0972-4693-9923-136"},{"event":"cmd_output","timestamp":1607098380,"output":"0a28f18e0, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loo"},{"event":"cmd_output","timestamp":1607098380,"output":"per.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:00.130 [info] PplBlocks WaitingState STM i"},{"event":"cmd_output","timestamp":1607098380,"output":"s scheduling block 0 from pipeline: \"21d7eaaa-0972-4693-9923-1360a28f18e0\"\n\u001b[0m\u001b[22m\n16:13:00.136 "},{"event":"cmd_output","timestamp":1607098380,"output":"[info] block_id: 0931312e-4c15-4528-840e-f90201d93382, type: BlockRequests, event: persisted block "},{"event":"cmd_output","timestamp":1607098380,"output":"run request from ppl 21d7eaaa-0972-4693-9923-1360a28f18e0 for block 0, origin: Elixir.Block.BlockReq"},{"event":"cmd_output","timestamp":1607098380,"output":"uests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:13:00.139 [info] block_id"},{"event":"cmd_output","timestamp":1607098380,"output":": 0931312e-4c15-4528-840e-f90201d93382, type: Blocks, state: initializing, event: initializing, reco"},{"event":"cmd_output","timestamp":1607098380,"output":"very_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:13:00."},{"event":"cmd_output","timestamp":1607098380,"output":"141 [info] Block 0 of pipeline with id: 21d7eaaa-0972-4693-9923-1360a28f18e0 scheduled in block ser"},{"event":"cmd_output","timestamp":1607098380,"output":"vice with id: : \"0931312e-4c15-4528-840e-f90201d93382\"\n\u001b[0m\u001b[22m\n16:13:00.145 [info] ppl_id: 21d7"},{"event":"cmd_output","timestamp":1607098380,"output":"eaaa-0972-4693-9923-1360a28f18e0, type: PplBlocks, block_index: 0, state: running, event: exit_sched"},{"event":"cmd_output","timestamp":1607098380,"output":"uling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13"},{"event":"cmd_output","timestamp":1607098380,"output":":00.148 [info] ppl_id: 0481bb40-9504-4e05-8b22-8fa4d33ee5d9, type: PplRequests, event: persisted de"},{"event":"cmd_output","timestamp":1607098380,"output":"finition for request with request_token: 23af24a7-c7f1-46c9-a76b-4a2617cfbb2c, origin: Elixir.Ppl.Pp"},{"event":"cmd_output","timestamp":1607098380,"output":"lRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:13:00.150 [info] block"},{"event":"cmd_output","timestamp":1607098380,"output":"_id: 0931312e-4c15-4528-840e-f90201d93382, type: BlockRequests, event: persisted build and sub_ppl d"},{"event":"cmd_output","timestamp":1607098380,"output":"etails for block_request: 0931312e-4c15-4528-840e-f90201d93382, origin: Elixir.Block.BlockRequests.M"},{"event":"cmd_output","timestamp":1607098380,"output":"odel.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:13:00.154 [info] block_id: 0931312e-"},{"event":"cmd_output","timestamp":1607098380,"output":"4c15-4528-840e-f90201d93382, type: Tasks, state: pending, event: created, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098380,"output":" Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:13:00.155 [info] "},{"event":"cmd_output","timestamp":1607098380,"output":" event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098380,"output":"[22m\n16:13:00.155 [info] ppl_id: 0481bb40-9504-4e05-8b22-8fa4d33ee5d9, type: PplBlocks, block_inde"},{"event":"cmd_output","timestamp":1607098380,"output":"x: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHand"},{"event":"cmd_output","timestamp":1607098380,"output":"ler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:00.157 [info] ppl_id: 0481bb40-9504-4e05-8"},{"event":"cmd_output","timestamp":1607098380,"output":"b22-8fa4d33ee5d9, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098380,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:00.157 [info] b"},{"event":"cmd_output","timestamp":1607098380,"output":"lock_id: 0931312e-4c15-4528-840e-f90201d93382, type: Blocks, state: running, event: exit_scheduling,"},{"event":"cmd_output","timestamp":1607098380,"output":" recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:00.16"},{"event":"cmd_output","timestamp":1607098380,"output":"5 [info] ppl_id: 0481bb40-9504-4e05-8b22-8fa4d33ee5d9, type: PplBlocks, block_index: 0, state: wait"},{"event":"cmd_output","timestamp":1607098380,"output":"ing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L9"},{"event":"cmd_output","timestamp":1607098380,"output":"0), \n\u001b[0m\u001b[22m\n16:13:00.175 [info] block_id: 0931312e-4c15-4528-840e-f90201d93382, type: Tasks, s"},{"event":"cmd_output","timestamp":1607098380,"output":"tate: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098380,"output":"hange/1(L90), \n\u001b[0m\u001b[22m\n16:13:00.175 [info] ppl_id: 0481bb40-9504-4e05-8b22-8fa4d33ee5d9, type: "},{"event":"cmd_output","timestamp":1607098380,"output":"Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_"},{"event":"cmd_output","timestamp":1607098380,"output":"state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:00.185 [info] block_id: 6fd96bfc-38cd-4374-9adc-a2cb877b0d3"},{"event":"cmd_output","timestamp":1607098380,"output":"a, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Im"},{"event":"cmd_output","timestamp":1607098380,"output":"pl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:00.194 [info] ppl_id: 0481bb40-9504-4e05-8b22-8fa4d3"},{"event":"cmd_output","timestamp":1607098380,"output":"3ee5d9, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper"},{"event":"cmd_output","timestamp":1607098380,"output":".STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:00.199 [info] block_id: 6fd96bfc-38cd-4374-9a"},{"event":"cmd_output","timestamp":1607098380,"output":"dc-a2cb877b0d3a, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098380,"output":"r.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:00.204 [info] ppl_id: a45f9332-3ce0-4"},{"event":"cmd_output","timestamp":1607098380,"output":"115-88f2-b17032e77054, type: PplRequests, event: persisted source_args for pipeline: a45f9332-3ce0-4"},{"event":"cmd_output","timestamp":1607098380,"output":"115-88f2-b17032e77054, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89),"},{"event":"cmd_output","timestamp":1607098380,"output":" \n\u001b[0m\u001b[22m\n16:13:00.207 [info] ppl_id: a45f9332-3ce0-4115-88f2-b17032e77054, type: PplSubInits, "},{"event":"cmd_output","timestamp":1607098380,"output":"state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state"},{"event":"cmd_output","timestamp":1607098380,"output":"_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:00.209 [info] ppl_id: a8a3b759-3ce4-4e4c-ada8-b10b3c509f8a, bloc"},{"event":"cmd_output","timestamp":1607098380,"output":"k_id: 6fd96bfc-38cd-4374-9adc-a2cb877b0d3a, type: PplBlocks, block_index: 0, state: done, result: pa"},{"event":"cmd_output","timestamp":1607098380,"output":"ssed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098380,"output":"90), \n\u001b[0m\u001b[22m\n16:13:00.222 [info] ppl_id: a8a3b759-3ce4-4e4c-ada8-b10b3c509f8a, type: Ppls, sta"},{"event":"cmd_output","timestamp":1607098380,"output":"te: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl."},{"event":"cmd_output","timestamp":1607098380,"output":"log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:00.231 [info] ppl_id: 04340c1b-6269-48dd-928b-df613a810"},{"event":"cmd_output","timestamp":1607098380,"output":"db5, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.ST"},{"event":"cmd_output","timestamp":1607098380,"output":"M.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:00.233 [info] ppl_id: a45f9332-3ce0-4115-88f2-b1"},{"event":"cmd_output","timestamp":1607098380,"output":"7032e77054, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098380,"output":"n: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:00.238 [info] PplBlocks Waiti"},{"event":"cmd_output","timestamp":1607098380,"output":"ngState STM is scheduling block 0 from pipeline: \"04340c1b-6269-48dd-928b-df613a810db5\"\n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098380,"output":"16:13:00.246 [info] block_id: 98840584-646b-4b94-a45c-49bd82d69bae, type: BlockRequests, event: per"},{"event":"cmd_output","timestamp":1607098380,"output":"sisted block run request from ppl 04340c1b-6269-48dd-928b-df613a810db5 for block 0, origin: Elixir.B"},{"event":"cmd_output","timestamp":1607098380,"output":"lock.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:13:00.249 [in"},{"event":"cmd_output","timestamp":1607098380,"output":"fo] block_id: 98840584-646b-4b94-a45c-49bd82d69bae, type: Blocks, state: initializing, event: initi"},{"event":"cmd_output","timestamp":1607098380,"output":"alizing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098380,"output":"2m\n16:13:00.251 [info] Block 0 of pipeline with id: 04340c1b-6269-48dd-928b-df613a810db5 scheduled"},{"event":"cmd_output","timestamp":1607098380,"output":" in block service with id: : \"98840584-646b-4b94-a45c-49bd82d69bae\"\n\u001b[0m\u001b[22m\n16:13:00.256 [info] "},{"event":"cmd_output","timestamp":1607098380,"output":" ppl_id: 04340c1b-6269-48dd-928b-df613a810db5, type: PplBlocks, block_index: 0, state: running, even"},{"event":"cmd_output","timestamp":1607098380,"output":"t: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098380,"output":"m\u001b[22m\n16:13:00.258 [info] block_id: 98840584-646b-4b94-a45c-49bd82d69bae, type: BlockRequests, ev"},{"event":"cmd_output","timestamp":1607098380,"output":"ent: persisted build and sub_ppl details for block_request: 98840584-646b-4b94-a45c-49bd82d69bae, or"},{"event":"cmd_output","timestamp":1607098380,"output":"igin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:13:"},{"event":"cmd_output","timestamp":1607098380,"output":"00.261 [info] block_id: 98840584-646b-4b94-a45c-49bd82d69bae, type: Tasks, state: pending, event: c"},{"event":"cmd_output","timestamp":1607098380,"output":"reated, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167),"},{"event":"cmd_output","timestamp":1607098380,"output":" \n\u001b[0m\u001b[22m\n16:13:00.263 [info] block_id: 98840584-646b-4b94-a45c-49bd82d69bae, type: Blocks, sta"},{"event":"cmd_output","timestamp":1607098380,"output":"te: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_cha"},{"event":"cmd_output","timestamp":1607098380,"output":"nge/1(L90), \n\u001b[0m\u001b[22m\n16:13:00.277 [info] ppl_id: a45f9332-3ce0-4115-88f2-b17032e77054, type: Pp"},{"event":"cmd_output","timestamp":1607098380,"output":"lRequests, event: persisted definition for request with request_token: 028f348b-572e-4dbb-b167-7fe71"},{"event":"cmd_output","timestamp":1607098380,"output":"4312442, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098380,"output":"2m\n16:13:00.282 [info] block_id: 98840584-646b-4b94-a45c-49bd82d69bae, type: Tasks, state: running"},{"event":"cmd_output","timestamp":1607098380,"output":", event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90),"},{"event":"cmd_output","timestamp":1607098380,"output":" \n\u001b[0m\u001b[22m\n16:13:00.287 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.Regular"},{"event":"cmd_output","timestamp":1607098380,"output":"InitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:00.287 [info] ppl_id: a45f9332-3ce0-4115-88f2-b17032e"},{"event":"cmd_output","timestamp":1607098380,"output":"77054, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098380,"output":"in: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:00.292 [i"},{"event":"cmd_output","timestamp":1607098380,"output":"nfo] ppl_id: a45f9332-3ce0-4115-88f2-b17032e77054, type: PplSubInits, state: done, result: passed, "},{"event":"cmd_output","timestamp":1607098380,"output":"event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \r"},{"event":"cmd_output","timestamp":1607098380,"output":"\n\u001b[0m\u001b[22m\n16:13:00.301 [info] ppl_id: a45f9332-3ce0-4115-88f2-b17032e77054, type: Ppls, state: pe"},{"event":"cmd_output","timestamp":1607098380,"output":"nding, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1("},{"event":"cmd_output","timestamp":1607098380,"output":"L90), \n\u001b[0m\u001b[22m\n16:13:00.305 [info] ppl_id: a45f9332-3ce0-4115-88f2-b17032e77054, type: PplBlock"},{"event":"cmd_output","timestamp":1607098380,"output":"s, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper."},{"event":"cmd_output","timestamp":1607098380,"output":"STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:00.309 [info] block_id: 0931312e-4c15-4528-840"},{"event":"cmd_output","timestamp":1607098380,"output":"e-f90201d93382, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098380,"output":"Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:00.312 [info] block_id: 0931312e-4c15-4"},{"event":"cmd_output","timestamp":1607098380,"output":"528-840e-f90201d93382, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098380,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:00.313 [info] ppl_id: a45f9332-"},{"event":"cmd_output","timestamp":1607098380,"output":"3ce0-4115-88f2-b17032e77054, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098380,"output":"origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:00.321 [info] ppl_id: 21"},{"event":"cmd_output","timestamp":1607098380,"output":"d7eaaa-0972-4693-9923-1360a28f18e0, block_id: 0931312e-4c15-4528-840e-f90201d93382, type: PplBlocks,"},{"event":"cmd_output","timestamp":1607098380,"output":" block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098380,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:00.331 [info] ppl_id: 21d7eaaa-0972"},{"event":"cmd_output","timestamp":1607098380,"output":"-4693-9923-1360a28f18e0, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098380,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:00.416 [info] b"},{"event":"cmd_output","timestamp":1607098380,"output":"lock_id: 98840584-646b-4b94-a45c-49bd82d69bae, type: Tasks, state: done, event: exit_scheduling, rec"},{"event":"cmd_output","timestamp":1607098380,"output":"overy_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:00.426 [i"},{"event":"cmd_output","timestamp":1607098380,"output":"nfo] block_id: 98840584-646b-4b94-a45c-49bd82d69bae, type: Blocks, state: done, event: exit_schedul"},{"event":"cmd_output","timestamp":1607098380,"output":"ing, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:0"},{"event":"cmd_output","timestamp":1607098380,"output":"0.452 [info] ppl_id: 04340c1b-6269-48dd-928b-df613a810db5, block_id: 98840584-646b-4b94-a45c-49bd82"},{"event":"cmd_output","timestamp":1607098380,"output":"d69bae, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, recove"},{"event":"cmd_output","timestamp":1607098380,"output":"ry_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:00.467 [info"},{"event":"cmd_output","timestamp":1607098380,"output":"] ppl_id: 04340c1b-6269-48dd-928b-df613a810db5, type: Ppls, state: done, result: passed, event: exi"},{"event":"cmd_output","timestamp":1607098380,"output":"t_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098380,"output":"\n16:13:00.568 [info] ppl_id: 0481bb40-9504-4e05-8b22-8fa4d33ee5d9, type: Ppls, state: running, eve"},{"event":"cmd_output","timestamp":1607098380,"output":"nt: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b["},{"event":"cmd_output","timestamp":1607098380,"output":"0m\u001b[22m\n16:13:00.579 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"0481b"},{"event":"cmd_output","timestamp":1607098380,"output":"b40-9504-4e05-8b22-8fa4d33ee5d9\"\n\u001b[0m\u001b[22m\n16:13:00.592 [info] block_id: 42079179-4cd3-4d28-a810-"},{"event":"cmd_output","timestamp":1607098380,"output":"0cabb1f4875f, type: BlockRequests, event: persisted block run request from ppl 0481bb40-9504-4e05-8b"},{"event":"cmd_output","timestamp":1607098380,"output":"22-8fa4d33ee5d9 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_r"},{"event":"cmd_output","timestamp":1607098380,"output":"esponse/4(L35), \n\u001b[0m\u001b[22m\n16:13:00.594 [info] block_id: 42079179-4cd3-4d28-a810-0cabb1f4875f, ty"},{"event":"cmd_output","timestamp":1607098380,"output":"pe: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks"},{"event":"cmd_output","timestamp":1607098380,"output":".Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:13:00.601 [info] Block 0 of pipeline with id: 0"},{"event":"cmd_output","timestamp":1607098380,"output":"481bb40-9504-4e05-8b22-8fa4d33ee5d9 scheduled in block service with id: : \"42079179-4cd3-4d28-a810-0"},{"event":"cmd_output","timestamp":1607098380,"output":"cabb1f4875f\"\n\u001b[0m\u001b[22m\n16:13:00.607 [info] ppl_id: 0481bb40-9504-4e05-8b22-8fa4d33ee5d9, type: Pp"},{"event":"cmd_output","timestamp":1607098380,"output":"lBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098380,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:00.609 [info] block_id: 42079179-4cd3-4d"},{"event":"cmd_output","timestamp":1607098380,"output":"28-a810-0cabb1f4875f, type: BlockRequests, event: persisted build and sub_ppl details for block_requ"},{"event":"cmd_output","timestamp":1607098380,"output":"est: 42079179-4cd3-4d28-a810-0cabb1f4875f, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQue"},{"event":"cmd_output","timestamp":1607098380,"output":"ries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:13:00.615 [info] block_id: 42079179-4cd3-4d28-a810-0cabb1"},{"event":"cmd_output","timestamp":1607098380,"output":"f4875f, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks."},{"event":"cmd_output","timestamp":1607098380,"output":"STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:13:00.619 [info] block_id: 42079179-4"},{"event":"cmd_output","timestamp":1607098380,"output":"cd3-4d28-a810-0cabb1f4875f, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098380,"output":" origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:00.659 [info] block_id:"},{"event":"cmd_output","timestamp":1607098380,"output":" 42079179-4cd3-4d28-a810-0cabb1f4875f, type: Tasks, state: running, event: exit_scheduling, recovery"},{"event":"cmd_output","timestamp":1607098380,"output":"_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:00.733 [info] "},{"event":"cmd_output","timestamp":1607098380,"output":" block_id: 42079179-4cd3-4d28-a810-0cabb1f4875f, type: Tasks, state: done, event: exit_scheduling, r"},{"event":"cmd_output","timestamp":1607098380,"output":"ecovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:00.741 "},{"event":"cmd_output","timestamp":1607098380,"output":"[info] block_id: 42079179-4cd3-4d28-a810-0cabb1f4875f, type: Blocks, state: done, event: exit_sched"},{"event":"cmd_output","timestamp":1607098380,"output":"uling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13"},{"event":"cmd_output","timestamp":1607098380,"output":":00.753 [info] ppl_id: 0481bb40-9504-4e05-8b22-8fa4d33ee5d9, block_id: 42079179-4cd3-4d28-a810-0cab"},{"event":"cmd_output","timestamp":1607098380,"output":"b1f4875f, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, reco"},{"event":"cmd_output","timestamp":1607098380,"output":"very_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:00.772 [in"},{"event":"cmd_output","timestamp":1607098380,"output":"fo] ppl_id: 0481bb40-9504-4e05-8b22-8fa4d33ee5d9, type: Ppls, state: done, result: passed, event: e"},{"event":"cmd_output","timestamp":1607098380,"output":"xit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098380,"output":"2m\n16:13:00.790 [info] ppl_id: a45f9332-3ce0-4115-88f2-b17032e77054, type: Ppls, state: running, e"},{"event":"cmd_output","timestamp":1607098380,"output":"vent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n"},{"event":"cmd_output","timestamp":1607098380,"output":"\u001b[0m\u001b[22m\n16:13:00.799 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"a45"},{"event":"cmd_output","timestamp":1607098380,"output":"f9332-3ce0-4115-88f2-b17032e77054\"\n\u001b[0m\u001b[22m\n16:13:00.812 [info] block_id: 27e1c282-d3a3-41de-85e"},{"event":"cmd_output","timestamp":1607098380,"output":"5-c90101219ce4, type: BlockRequests, event: persisted block run request from ppl a45f9332-3ce0-4115-"},{"event":"cmd_output","timestamp":1607098380,"output":"88f2-b17032e77054 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process"},{"event":"cmd_output","timestamp":1607098380,"output":"_response/4(L35), \n\u001b[0m\u001b[22m\n16:13:00.814 [info] block_id: 27e1c282-d3a3-41de-85e5-c90101219ce4, "},{"event":"cmd_output","timestamp":1607098380,"output":"type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Bloc"},{"event":"cmd_output","timestamp":1607098380,"output":"ks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:13:00.818 [info] Block 0 of pipeline with id:"},{"event":"cmd_output","timestamp":1607098380,"output":" a45f9332-3ce0-4115-88f2-b17032e77054 scheduled in block service with id: : \"27e1c282-d3a3-41de-85e5"},{"event":"cmd_output","timestamp":1607098380,"output":"-c90101219ce4\"\n\u001b[0m\u001b[22m\n16:13:00.824 [info] ppl_id: a45f9332-3ce0-4115-88f2-b17032e77054, type: "},{"event":"cmd_output","timestamp":1607098380,"output":"PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098380,"output":".Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:00.836 [info] block_id: 27e1c282-d3a3-"},{"event":"cmd_output","timestamp":1607098380,"output":"41de-85e5-c90101219ce4, type: BlockRequests, event: persisted build and sub_ppl details for block_re"},{"event":"cmd_output","timestamp":1607098380,"output":"quest: 27e1c282-d3a3-41de-85e5-c90101219ce4, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQ"},{"event":"cmd_output","timestamp":1607098380,"output":"ueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:13:00.838 [info] block_id: 27e1c282-d3a3-41de-85e5-c901"},{"event":"cmd_output","timestamp":1607098380,"output":"01219ce4, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Block"},{"event":"cmd_output","timestamp":1607098380,"output":"s.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:13:00.842 [info] block_id: 27e1c282"},{"event":"cmd_output","timestamp":1607098380,"output":"-d3a3-41de-85e5-c90101219ce4, type: Blocks, state: running, event: exit_scheduling, recovery_count: "},{"event":"cmd_output","timestamp":1607098380,"output":"0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:00.857 [info] block_i"},{"event":"cmd_output","timestamp":1607098380,"output":"d: 27e1c282-d3a3-41de-85e5-c90101219ce4, type: Tasks, state: running, event: exit_scheduling, recove"},{"event":"cmd_output","timestamp":1607098380,"output":"ry_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:00.948 [info"},{"event":"cmd_output","timestamp":1607098380,"output":"] block_id: 27e1c282-d3a3-41de-85e5-c90101219ce4, type: Tasks, state: done, event: exit_scheduling,"},{"event":"cmd_output","timestamp":1607098380,"output":" recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:00.95"},{"event":"cmd_output","timestamp":1607098380,"output":"2 [info] block_id: 27e1c282-d3a3-41de-85e5-c90101219ce4, type: Blocks, state: done, event: exit_sch"},{"event":"cmd_output","timestamp":1607098380,"output":"eduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098380,"output":"13:00.960 [info] ppl_id: a45f9332-3ce0-4115-88f2-b17032e77054, block_id: 27e1c282-d3a3-41de-85e5-c9"},{"event":"cmd_output","timestamp":1607098380,"output":"0101219ce4, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, re"},{"event":"cmd_output","timestamp":1607098380,"output":"covery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:00.980 ["},{"event":"cmd_output","timestamp":1607098380,"output":"info] ppl_id: a45f9332-3ce0-4115-88f2-b17032e77054, type: Ppls, state: done, result: passed, event:"},{"event":"cmd_output","timestamp":1607098381,"output":" exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098381,"output":"[32m\r * test gRPC list() - filter by git_ref_types (2888.0ms)\u001b[0m\n * test gRPC partial_rebuild() "},{"event":"cmd_output","timestamp":1607098381,"output":"- fails when given pipeline is running\u001b[22m\n16:13:01.155 [info] Request: 'run: %{\"branch_id\" => \"1"},{"event":"cmd_output","timestamp":1607098381,"output":"5c63482-8133-4125-9e95-6ca3e3d29941\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469\", \"file"},{"event":"cmd_output","timestamp":1607098381,"output":"_name\" => \"semaphore.yml\", \"hook_id\" => \"94c84878-364b-11eb-b139-5254005464e2\", \"label\" => \"master\","},{"event":"cmd_output","timestamp":1607098381,"output":" \"organization_id\" => \"3d5e22e7-4721-4249-9a49-9b54e8bb98d3\", \"owner\" => \"rt\", \"project_id\" => \"96b2"},{"event":"cmd_output","timestamp":1607098381,"output":"09bd-17cb-432a-8a5e-dfa51e2da5d9\", \"repo_name\" => \"14_free_topology_failing_block\", \"request_token\" "},{"event":"cmd_output","timestamp":1607098381,"output":"=> \"94c83e00-364b-11eb-8ebf-5254005464e2\", \"requester_id\" => \"cb6441e9-f8e6-4808-ae72-c36d769422be\","},{"event":"cmd_output","timestamp":1607098381,"output":" \"service\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"e5b"},{"event":"cmd_output","timestamp":1607098381,"output":"94526-91c8-43c6-ae94-6e3df27328dd\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:13:01.158 [info] "},{"event":"cmd_output","timestamp":1607098381,"output":"ppl_id: fc2dac80-c47c-41f2-bf7d-f6dae699de5c, type: PplRequests, event: persisted schedule request w"},{"event":"cmd_output","timestamp":1607098381,"output":"ith request_token: 94c83e00-364b-11eb-8ebf-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplReq"},{"event":"cmd_output","timestamp":1607098381,"output":"uestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:13:01.161 [info] ppl_id: fc2dac80-c47c-41f2-b"},{"event":"cmd_output","timestamp":1607098381,"output":"f7d-f6dae699de5c, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: E"},{"event":"cmd_output","timestamp":1607098381,"output":"lixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:13:01.166 [info] Project"},{"event":"cmd_output","timestamp":1607098381,"output":" 96b209bd-17cb-432a-8a5e-dfa51e2da5d9 and branch masterlatest_wf details updated: \"wf_id: e5b94526-9"},{"event":"cmd_output","timestamp":1607098381,"output":"1c8-43c6-ae94-6e3df27328dd, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:13:01.174 [info] Persisted ppl_sub_init fo"},{"event":"cmd_output","timestamp":1607098381,"output":"r pipeline with ppl_id: fc2dac80-c47c-41f2-bf7d-f6dae699de5c: %Ppl.PplSubInits.Model.PplSubInits{__m"},{"event":"cmd_output","timestamp":1607098381,"output":"eta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description"},{"event":"cmd_output","timestamp":1607098381,"output":": nil, id: 278, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:13:01.1667"},{"event":"cmd_output","timestamp":1607098381,"output":"44], pipeline_requests: #Ecto.Association.NotLoaded, p"},{"event":"cmd_output","timestamp":1607098381,"output":"pl_id: \"fc2dac80-c47c-41f2-bf7d-f6dae699de5c\", recovery_count: 0, result: nil, result_reason: nil, s"},{"event":"cmd_output","timestamp":1607098381,"output":"tate: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:1"},{"event":"cmd_output","timestamp":1607098381,"output":"3:01.166752]}\n\u001b[0m\u001b[32m\r * test gRPC partial_rebuild() - fails when given pipeline is running (95."},{"event":"cmd_output","timestamp":1607098381,"output":"1ms)\u001b[0m\n * test gRPC list_grouped() - project scoped user generated queues\u001b[22m\n16:13:01.246 [i"},{"event":"cmd_output","timestamp":1607098381,"output":"nfo] ppl_id: 2fddc332-bc2e-4b90-a73e-1a5699d44632, type: PplRequests, event: persisted schedule req"},{"event":"cmd_output","timestamp":1607098381,"output":"uest with request_token: e4946c8f-c3b3-4049-ba13-7d60066fb9e9, origin: Elixir.Ppl.PplRequests.Model."},{"event":"cmd_output","timestamp":1607098381,"output":"PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:13:01.249 [info] ppl_id: 2fddc332-bc2e-"},{"event":"cmd_output","timestamp":1607098381,"output":"4b90-a73e-1a5699d44632, type: PplRequests, event: persisted definition for request with request_toke"},{"event":"cmd_output","timestamp":1607098381,"output":"n: e4946c8f-c3b3-4049-ba13-7d60066fb9e9, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.ins"},{"event":"cmd_output","timestamp":1607098381,"output":"ert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:13:01.254 [info] ppl_id: 2fddc332-bc2e-4b90-a73e-1a5699d4463"},{"event":"cmd_output","timestamp":1607098381,"output":"2, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls."},{"event":"cmd_output","timestamp":1607098381,"output":"Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:13:01.260 [info] Persisted ppl_sub_init"},{"event":"cmd_output","timestamp":1607098381,"output":" for pipeline with ppl_id: 2fddc332-bc2e-4b90-a73e-1a5699d44632: %Ppl.PplSubInits.Model.PplSubInits{"},{"event":"cmd_output","timestamp":1607098381,"output":"__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_descript"},{"event":"cmd_output","timestamp":1607098381,"output":"ion: nil, id: 279, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:13:01.2"},{"event":"cmd_output","timestamp":1607098381,"output":"58027], pipeline_requests: #Ecto.Association.NotLoaded"},{"event":"cmd_output","timestamp":1607098381,"output":", ppl_id: \"2fddc332-bc2e-4b90-a73e-1a5699d44632\", recovery_count: 0, result: nil, result_reason: nil"},{"event":"cmd_output","timestamp":1607098381,"output":", state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 1"},{"event":"cmd_output","timestamp":1607098381,"output":"6:13:01.258038]}\n\u001b[0m\u001b[22m\n16:13:01.265 [info] ppl_id: 9fbec02f-b369-45a4-af6d-fd7919c81d28, type"},{"event":"cmd_output","timestamp":1607098381,"output":": PplRequests, event: persisted schedule request with request_token: 704ee415-a5fe-410e-ae04-569456d"},{"event":"cmd_output","timestamp":1607098381,"output":"4104f, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098381,"output":"\n16:13:01.272 [info] ppl_id: 9fbec02f-b369-45a4-af6d-fd7919c81d28, type: PplRequests, event: persis"},{"event":"cmd_output","timestamp":1607098381,"output":"ted definition for request with request_token: 704ee415-a5fe-410e-ae04-569456d4104f, origin: Elixir."},{"event":"cmd_output","timestamp":1607098381,"output":"Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:13:01.275 [info] "},{"event":"cmd_output","timestamp":1607098381,"output":" ppl_id: 9fbec02f-b369-45a4-af6d-fd7919c81d28, type: Ppls, state: initializing, event: initializing,"},{"event":"cmd_output","timestamp":1607098381,"output":" recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098381,"output":"\n16:13:01.280 [info] Persisted ppl_sub_init for pipeline with ppl_id: 9fbec02f-b369-45a4-af6d-fd791"},{"event":"cmd_output","timestamp":1607098381,"output":"9c81d28: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_i"},{"event":"cmd_output","timestamp":1607098381,"output":"nits\">, compile_task_id: nil, error_description: nil, id: 280, in_scheduling: false, init_type: \"reg"},{"event":"cmd_output","timestamp":1607098381,"output":"ular\", inserted_at: ~N[2020-12-04 16:13:01.279198], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"9fbec02f-b369-45a4-af6d-fd7919c81d28\", recove"},{"event":"cmd_output","timestamp":1607098381,"output":"ry_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_re"},{"event":"cmd_output","timestamp":1607098381,"output":"quest_desc: nil, updated_at: ~N[2020-12-04 16:13:01.279209]}\n\u001b[0m\u001b[22m\n16:13:01.284 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098381,"output":": 1875b471-3841-4992-a04b-a979e80589e8, type: PplRequests, event: persisted schedule request with re"},{"event":"cmd_output","timestamp":1607098381,"output":"quest_token: 6f76f380-ad90-424e-9785-3b3f2de7181f, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQ"},{"event":"cmd_output","timestamp":1607098381,"output":"ueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:13:01.286 [info] ppl_id: 1875b471-3841-4992-a04b-a9"},{"event":"cmd_output","timestamp":1607098381,"output":"79e80589e8, type: PplRequests, event: persisted definition for request with request_token: 6f76f380-"},{"event":"cmd_output","timestamp":1607098381,"output":"ad90-424e-9785-3b3f2de7181f, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definiti"},{"event":"cmd_output","timestamp":1607098381,"output":"on/3(L76), \n\u001b[0m\u001b[22m\n16:13:01.297 [info] ppl_id: 1875b471-3841-4992-a04b-a979e80589e8, type: Ppl"},{"event":"cmd_output","timestamp":1607098381,"output":"s, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQu"},{"event":"cmd_output","timestamp":1607098381,"output":"eries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:13:01.301 [info] Persisted ppl_sub_init for pipelin"},{"event":"cmd_output","timestamp":1607098381,"output":"e with ppl_id: 1875b471-3841-4992-a04b-a979e80589e8: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #E"},{"event":"cmd_output","timestamp":1607098381,"output":"cto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id"},{"event":"cmd_output","timestamp":1607098381,"output":": 281, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:13:01.299970], pipe"},{"event":"cmd_output","timestamp":1607098381,"output":"line_requests: #Ecto.Association.NotLoaded, ppl_id: \"1"},{"event":"cmd_output","timestamp":1607098381,"output":"875b471-3841-4992-a04b-a979e80589e8\", recovery_count: 0, result: nil, result_reason: nil, state: \"cr"},{"event":"cmd_output","timestamp":1607098381,"output":"eated\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:13:01.2999"},{"event":"cmd_output","timestamp":1607098381,"output":"80]}\n\u001b[0m\u001b[22m\n16:13:01.307 [info] ppl_id: 5ff359d5-8f2f-471e-9f25-e9b026d6a09d, type: PplRequest"},{"event":"cmd_output","timestamp":1607098381,"output":"s, event: persisted schedule request with request_token: 3e40c4b4-8d87-42fa-8a20-64ef7e0a60e0, origi"},{"event":"cmd_output","timestamp":1607098381,"output":"n: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:13:01.30"},{"event":"cmd_output","timestamp":1607098381,"output":"8 [info] ppl_id: 5ff359d5-8f2f-471e-9f25-e9b026d6a09d, type: PplRequests, event: persisted definiti"},{"event":"cmd_output","timestamp":1607098381,"output":"on for request with request_token: 3e40c4b4-8d87-42fa-8a20-64ef7e0a60e0, origin: Elixir.Ppl.PplReque"},{"event":"cmd_output","timestamp":1607098381,"output":"sts.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:13:01.311 [info] ppl_id: 5ff"},{"event":"cmd_output","timestamp":1607098381,"output":"359d5-8f2f-471e-9f25-e9b026d6a09d, type: Ppls, state: initializing, event: initializing, recovery_co"},{"event":"cmd_output","timestamp":1607098381,"output":"unt: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:13:01.31"},{"event":"cmd_output","timestamp":1607098381,"output":"4 [info] Persisted ppl_sub_init for pipeline with ppl_id: 5ff359d5-8f2f-471e-9f25-e9b026d6a09d: %Pp"},{"event":"cmd_output","timestamp":1607098381,"output":"l.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, comp"},{"event":"cmd_output","timestamp":1607098381,"output":"ile_task_id: nil, error_description: nil, id: 282, in_scheduling: false, init_type: \"regular\", inser"},{"event":"cmd_output","timestamp":1607098381,"output":"ted_at: ~N[2020-12-04 16:13:01.313375], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"5ff359d5-8f2f-471e-9f25-e9b026d6a09d\", recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098381,"output":" result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: "},{"event":"cmd_output","timestamp":1607098381,"output":"nil, updated_at: ~N[2020-12-04 16:13:01.313386]}\n\u001b[0m\u001b[22m\n16:13:01.318 [info] ppl_id: 80aa0af8-a"},{"event":"cmd_output","timestamp":1607098381,"output":"963-4b1d-8267-52ad351f801a, type: PplRequests, event: persisted schedule request with request_token:"},{"event":"cmd_output","timestamp":1607098381,"output":" 42bff0f8-8064-436d-9aee-c870b6938d2b, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.proce"},{"event":"cmd_output","timestamp":1607098381,"output":"ss_response/2(L55), \n\u001b[0m\u001b[22m\n16:13:01.319 [info] ppl_id: 80aa0af8-a963-4b1d-8267-52ad351f801a, "},{"event":"cmd_output","timestamp":1607098381,"output":"type: PplRequests, event: persisted definition for request with request_token: 42bff0f8-8064-436d-9a"},{"event":"cmd_output","timestamp":1607098381,"output":"ee-c870b6938d2b, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \r"},{"event":"cmd_output","timestamp":1607098381,"output":"\n\u001b[0m\u001b[22m\n16:13:01.322 [info] ppl_id: 80aa0af8-a963-4b1d-8267-52ad351f801a, type: Ppls, state: in"},{"event":"cmd_output","timestamp":1607098381,"output":"itializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.proces"},{"event":"cmd_output","timestamp":1607098381,"output":"s_response/2(L124), \n\u001b[0m\u001b[22m\n16:13:01.326 [info] Persisted ppl_sub_init for pipeline with ppl_i"},{"event":"cmd_output","timestamp":1607098381,"output":"d: 80aa0af8-a963-4b1d-8267-52ad351f801a: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.M"},{"event":"cmd_output","timestamp":1607098381,"output":"etadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 283, in_sc"},{"event":"cmd_output","timestamp":1607098381,"output":"heduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:13:01.324923], pipeline_request"},{"event":"cmd_output","timestamp":1607098381,"output":"s: #Ecto.Association.NotLoaded, ppl_id: \"80aa0af8-a963"},{"event":"cmd_output","timestamp":1607098381,"output":"-4b1d-8267-52ad351f801a\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", term"},{"event":"cmd_output","timestamp":1607098381,"output":"inate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:13:01.324932]}\n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098381,"output":"22m\n16:13:01.329 [info] ppl_id: a3025d1f-0bc2-44b0-872f-fc9658dd645e, type: PplRequests, event: pe"},{"event":"cmd_output","timestamp":1607098381,"output":"rsisted schedule request with request_token: 15e888f2-243c-43e5-89c4-661c807041d3, origin: Elixir.Pp"},{"event":"cmd_output","timestamp":1607098381,"output":"l.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:13:01.331 [info] pp"},{"event":"cmd_output","timestamp":1607098381,"output":"l_id: a3025d1f-0bc2-44b0-872f-fc9658dd645e, type: PplRequests, event: persisted definition for reque"},{"event":"cmd_output","timestamp":1607098381,"output":"st with request_token: 15e888f2-243c-43e5-89c4-661c807041d3, origin: Elixir.Ppl.PplRequests.Model.Pp"},{"event":"cmd_output","timestamp":1607098381,"output":"lRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:13:01.339 [info] ppl_id: a3025d1f-0bc2-4"},{"event":"cmd_output","timestamp":1607098381,"output":"4b0-872f-fc9658dd645e, type: Ppls, state: initializing, event: initializing, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098381,"output":"in: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:13:01.342 [info] Pe"},{"event":"cmd_output","timestamp":1607098381,"output":"rsisted ppl_sub_init for pipeline with ppl_id: a3025d1f-0bc2-44b0-872f-fc9658dd645e: %Ppl.PplSubInit"},{"event":"cmd_output","timestamp":1607098381,"output":"s.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id:"},{"event":"cmd_output","timestamp":1607098381,"output":" nil, error_description: nil, id: 284, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2"},{"event":"cmd_output","timestamp":1607098381,"output":"020-12-04 16:13:01.341675], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"a3025d1f-0bc2-44b0-872f-fc9658dd645e\", recovery_count: 0, result: nil"},{"event":"cmd_output","timestamp":1607098381,"output":", result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated"},{"event":"cmd_output","timestamp":1607098381,"output":"_at: ~N[2020-12-04 16:13:01.341684]}\n\u001b[0m\u001b[22m\n16:13:01.345 [info] ppl_id: fddded05-f8fb-41a2-bc7"},{"event":"cmd_output","timestamp":1607098381,"output":"c-e21e9623828e, type: PplRequests, event: persisted schedule request with request_token: b6f43e4e-98"},{"event":"cmd_output","timestamp":1607098381,"output":"25-40b0-bce2-0f5ea8993a3f, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/"},{"event":"cmd_output","timestamp":1607098381,"output":"2(L55), \n\u001b[0m\u001b[22m\n16:13:01.347 [info] ppl_id: fddded05-f8fb-41a2-bc7c-e21e9623828e, type: PplReq"},{"event":"cmd_output","timestamp":1607098381,"output":"uests, event: persisted definition for request with request_token: b6f43e4e-9825-40b0-bce2-0f5ea8993"},{"event":"cmd_output","timestamp":1607098381,"output":"a3f, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098381,"output":"16:13:01.349 [info] ppl_id: fddded05-f8fb-41a2-bc7c-e21e9623828e, type: Ppls, state: initializing, "},{"event":"cmd_output","timestamp":1607098381,"output":"event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2"},{"event":"cmd_output","timestamp":1607098381,"output":"(L124), \n\u001b[0m\u001b[22m\n16:13:01.353 [info] Persisted ppl_sub_init for pipeline with ppl_id: fddded05-"},{"event":"cmd_output","timestamp":1607098381,"output":"f8fb-41a2-bc7c-e21e9623828e: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loa"},{"event":"cmd_output","timestamp":1607098381,"output":"ded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 285, in_scheduling: fa"},{"event":"cmd_output","timestamp":1607098381,"output":"lse, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:13:01.352290], pipeline_requests: #Ecto.Ass"},{"event":"cmd_output","timestamp":1607098381,"output":"ociation.NotLoaded, ppl_id: \"fddded05-f8fb-41a2-bc7c-e"},{"event":"cmd_output","timestamp":1607098381,"output":"21e9623828e\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_reques"},{"event":"cmd_output","timestamp":1607098381,"output":"t: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:13:01.352300]}\n\u001b[0m\u001b[22m\n16:13:0"},{"event":"cmd_output","timestamp":1607098381,"output":"1.363 [info] ppl_id: dfc94d03-d048-49b1-bb8e-95c9cac46c25, type: PplRequests, event: persisted sche"},{"event":"cmd_output","timestamp":1607098381,"output":"dule request with request_token: d4d882b5-5ab4-4cee-8e39-a9759c9ad821, origin: Elixir.Ppl.PplRequest"},{"event":"cmd_output","timestamp":1607098381,"output":"s.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:13:01.364 [info] ppl_id: dfc94d"},{"event":"cmd_output","timestamp":1607098381,"output":"03-d048-49b1-bb8e-95c9cac46c25, type: PplRequests, event: persisted definition for request with requ"},{"event":"cmd_output","timestamp":1607098381,"output":"est_token: d4d882b5-5ab4-4cee-8e39-a9759c9ad821, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQue"},{"event":"cmd_output","timestamp":1607098381,"output":"ries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:13:01.366 [info] ppl_id: dfc94d03-d048-49b1-bb8e-95c"},{"event":"cmd_output","timestamp":1607098381,"output":"9cac46c25, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.P"},{"event":"cmd_output","timestamp":1607098381,"output":"pl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:13:01.369 [info] Persisted ppl_"},{"event":"cmd_output","timestamp":1607098381,"output":"sub_init for pipeline with ppl_id: dfc94d03-d048-49b1-bb8e-95c9cac46c25: %Ppl.PplSubInits.Model.PplS"},{"event":"cmd_output","timestamp":1607098381,"output":"ubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_"},{"event":"cmd_output","timestamp":1607098381,"output":"description: nil, id: 286, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16"},{"event":"cmd_output","timestamp":1607098381,"output":":13:01.368554], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"dfc94d03-d048-49b1-bb8e-95c9cac46c25\", recovery_count: 0, result: nil, result_rea"},{"event":"cmd_output","timestamp":1607098381,"output":"son: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020"},{"event":"cmd_output","timestamp":1607098381,"output":"-12-04 16:13:01.368563]}\n\u001b[0m\u001b[22m\n16:13:01.371 [info] Periodic from module Elixir.Ppl.Ppls.STMHa"},{"event":"cmd_output","timestamp":1607098381,"output":"ndler.InitializingState with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms, me"},{"event":"cmd_output","timestamp":1607098381,"output":"tric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %{al"},{"event":"cmd_output","timestamp":1607098381,"output":"lowed_states: [\"initializing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Mode"},{"event":"cmd_output","timestamp":1607098381,"output":"l.Ppls, observed_state: \"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler"},{"event":"cmd_output","timestamp":1607098381,"output":".InitializingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :s"},{"event":"cmd_output","timestamp":1607098381,"output":"tate, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m"},{"event":"cmd_output","timestamp":1607098381,"output":"\u001b[22m\n16:13:01.372 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingState with name E"},{"event":"cmd_output","timestamp":1607098381,"output":"lixir.Ppl.Ppls.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Pp"},{"event":"cmd_output","timestamp":1607098381,"output":"l-Ppls-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"pending\", \"queuing\", \"running"},{"event":"cmd_output","timestamp":1607098381,"output":"\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publ"},{"event":"cmd_output","timestamp":1607098381,"output":"isher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, ret"},{"event":"cmd_output","timestamp":1607098381,"output":"urning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: P"},{"event":"cmd_output","timestamp":1607098381,"output":"pl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:13:01.373 [info] Periodic f"},{"event":"cmd_output","timestamp":1607098381,"output":"rom module Elixir.Ppl.Ppls.STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandler.QueuingState"},{"event":"cmd_output","timestamp":1607098381,"output":" :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, rec"},{"event":"cmd_output","timestamp":1607098381,"output":"urring args: %{allowed_states: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, initial_query: "},{"event":"cmd_output","timestamp":1607098381,"output":"Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.ST"},{"event":"cmd_output","timestamp":1607098381,"output":"MHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at,"},{"event":"cmd_output","timestamp":1607098381,"output":" :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b"},{"event":"cmd_output","timestamp":1607098381,"output":"[0m\u001b[22m\n16:13:01.374 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.RunningState with nam"},{"event":"cmd_output","timestamp":1607098381,"output":"e Elixir.Ppl.Ppls.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", ["},{"event":"cmd_output","timestamp":1607098381,"output":"\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"don"},{"event":"cmd_output","timestamp":1607098381,"output":"e\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"running\", publisher_"},{"event":"cmd_output","timestamp":1607098381,"output":"cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returnin"},{"event":"cmd_output","timestamp":1607098381,"output":"g: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Pp"},{"event":"cmd_output","timestamp":1607098381,"output":"ls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:13:01.375 [info] Periodic from m"},{"event":"cmd_output","timestamp":1607098381,"output":"odule Elixir.Ppl.Ppls.STMHandler.StoppingState with name Elixir.Ppl.Ppls.STMHandler.StoppingState ::"},{"event":"cmd_output","timestamp":1607098381,"output":" period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recur"},{"event":"cmd_output","timestamp":1607098381,"output":"ring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Mod"},{"event":"cmd_output","timestamp":1607098381,"output":"el.Ppls, observed_state: \"stopping\", publisher_cb: #Function<0.71803493/1 in Ppl.Ppls.STMHandler.Sto"},{"event":"cmd_output","timestamp":1607098381,"output":"ppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :r"},{"event":"cmd_output","timestamp":1607098381,"output":"esult, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098381,"output":"6:13:01.375 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedState with name El"},{"event":"cmd_output","timestamp":1607098381,"output":"ixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\""},{"event":"cmd_output","timestamp":1607098381,"output":", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args: %{allowed_states: [\"fetching\", \"done"},{"event":"cmd_output","timestamp":1607098381,"output":"\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"created\""},{"event":"cmd_output","timestamp":1607098381,"output":", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state,"},{"event":"cmd_output","timestamp":1607098381,"output":" :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :sk"},{"event":"cmd_output","timestamp":1607098381,"output":"ip}\n\u001b[0m\u001b[22m\n16:13:01.376 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.Fetching"},{"event":"cmd_output","timestamp":1607098381,"output":"State with name Elixir.Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 ms, metric_name: {\"Pp"},{"event":"cmd_output","timestamp":1607098381,"output":"l.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %{allowed_states"},{"event":"cmd_output","timestamp":1607098381,"output":": [\"regular_init\", \"compilation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Mode"},{"event":"cmd_output","timestamp":1607098381,"output":"l.PplSubInits, observed_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id,"},{"event":"cmd_output","timestamp":1607098381,"output":" :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInit"},{"event":"cmd_output","timestamp":1607098381,"output":"s.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:01.377 [info] Periodic from module E"},{"event":"cmd_output","timestamp":1607098381,"output":"lixir.Ppl.PplSubInits.STMHandler.CompilationState with name Elixir.Ppl.PplSubInits.STMHandler.Compil"},{"event":"cmd_output","timestamp":1607098381,"output":"ationState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-Com"},{"event":"cmd_output","timestamp":1607098381,"output":"pilationState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"stopping\", \"don"},{"event":"cmd_output","timestamp":1607098381,"output":"e\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"compil"},{"event":"cmd_output","timestamp":1607098381,"output":"ation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :"},{"event":"cmd_output","timestamp":1607098381,"output":"state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_superviso"},{"event":"cmd_output","timestamp":1607098381,"output":"r: :skip}\n\u001b[0m\u001b[22m\n16:13:01.378 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.Re"},{"event":"cmd_output","timestamp":1607098381,"output":"gularInitState with name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period: 100 ms, metri"},{"event":"cmd_output","timestamp":1607098381,"output":"c_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurring args: %"},{"event":"cmd_output","timestamp":1607098381,"output":"{allowed_states: [\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, ob"},{"event":"cmd_output","timestamp":1607098381,"output":"served_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_r"},{"event":"cmd_output","timestamp":1607098381,"output":"equest, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSu"},{"event":"cmd_output","timestamp":1607098381,"output":"bInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:01.378 [info] Periodic from module Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098381,"output":"Blocks.STMHandler.InitializingState with name Elixir.Ppl.PplBlocks.STMHandler.InitializingState :: p"},{"event":"cmd_output","timestamp":1607098381,"output":"eriod: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-InitializingState\"]}"},{"event":"cmd_output","timestamp":1607098381,"output":", recurring args: %{allowed_states: [\"initializing\", \"waiting\", \"done\"], cooling_time_sec: 0, initia"},{"event":"cmd_output","timestamp":1607098381,"output":"l_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"initializing\", publisher_cb: :skip, repo: P"},{"event":"cmd_output","timestamp":1607098381,"output":"pl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :pp"},{"event":"cmd_output","timestamp":1607098381,"output":"l_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098381,"output":"3:01.380 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.WaitingState with name Elixir."},{"event":"cmd_output","timestamp":1607098381,"output":"Ppl.PplBlocks.STMHandler.WaitingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Pp"},{"event":"cmd_output","timestamp":1607098381,"output":"l-PplBlocks-STMHandler-WaitingState\"]}, recurring args: %{allowed_states: [\"waiting\", \"running\", \"do"},{"event":"cmd_output","timestamp":1607098381,"output":"ne\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"waiting\", "},{"event":"cmd_output","timestamp":1607098381,"output":"publisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>, repo: Ppl.Ecto"},{"event":"cmd_output","timestamp":1607098381,"output":"Repo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :"},{"event":"cmd_output","timestamp":1607098381,"output":"block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:01.38"},{"event":"cmd_output","timestamp":1607098381,"output":"2 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.RunningState with name Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098381,"output":"Blocks.STMHandler.RunningState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBl"},{"event":"cmd_output","timestamp":1607098381,"output":"ocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], "},{"event":"cmd_output","timestamp":1607098381,"output":"cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"running\", publi"},{"event":"cmd_output","timestamp":1607098381,"output":"sher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo"},{"event":"cmd_output","timestamp":1607098381,"output":", returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :bloc"},{"event":"cmd_output","timestamp":1607098381,"output":"k_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098381,"output":"3:01.382 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.StoppingState with name Elixir"},{"event":"cmd_output","timestamp":1607098381,"output":".Ppl.PplBlocks.STMHandler.StoppingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\""},{"event":"cmd_output","timestamp":1607098381,"output":"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], c"},{"event":"cmd_output","timestamp":1607098381,"output":"ooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"stopping\", publi"},{"event":"cmd_output","timestamp":1607098381,"output":"sher_cb: #Function<0.104215991/1 in Ppl.PplBlocks.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRe"},{"event":"cmd_output","timestamp":1607098381,"output":"po, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :bl"},{"event":"cmd_output","timestamp":1607098381,"output":"ock_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098381,"output":":13:01.382 [info] Periodic from module Elixir.Block.Blocks.STMHandler.InitializingState with name E"},{"event":"cmd_output","timestamp":1607098381,"output":"lixir.Block.Blocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_"},{"event":"cmd_output","timestamp":1607098381,"output":"up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"running\", \""},{"event":"cmd_output","timestamp":1607098381,"output":"done\"], cooling_time_sec: 0, initial_query: Block.Blocks.Model.Blocks, observed_state: \"initializing"},{"event":"cmd_output","timestamp":1607098381,"output":"\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :sta"},{"event":"cmd_output","timestamp":1607098381,"output":"te, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098381,"output":"2m\n16:13:01.383 [info] Periodic from module Elixir.Block.Blocks.STMHandler.RunningState with name "},{"event":"cmd_output","timestamp":1607098381,"output":"Elixir.Block.Blocks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\","},{"event":"cmd_output","timestamp":1607098381,"output":" [\"Block-Blocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\""},{"event":"cmd_output","timestamp":1607098381,"output":", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"running\""},{"event":"cmd_output","timestamp":1607098381,"output":", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :stat"},{"event":"cmd_output","timestamp":1607098381,"output":"e, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098381,"output":"m\n16:13:01.383 [info] Periodic from module Elixir.Block.Blocks.STMHandler.StoppingState with name "},{"event":"cmd_output","timestamp":1607098381,"output":"Elixir.Block.Blocks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\""},{"event":"cmd_output","timestamp":1607098381,"output":", [\"Block-Blocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"]"},{"event":"cmd_output","timestamp":1607098381,"output":", cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"stopping\", publis"},{"event":"cmd_output","timestamp":1607098381,"output":"her_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :reco"},{"event":"cmd_output","timestamp":1607098381,"output":"very_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13"},{"event":"cmd_output","timestamp":1607098381,"output":":01.383 [info] Periodic from module Elixir.Block.Tasks.STMHandler.PendingState with name Elixir.Blo"},{"event":"cmd_output","timestamp":1607098381,"output":"ck.Tasks.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Ta"},{"event":"cmd_output","timestamp":1607098381,"output":"sks-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_"},{"event":"cmd_output","timestamp":1607098381,"output":"sec: 0, initial_query: Block.Tasks.Model.Tasks, observed_state: \"pending\", publisher_cb: :skip, repo"},{"event":"cmd_output","timestamp":1607098381,"output":": Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_"},{"event":"cmd_output","timestamp":1607098381,"output":"id, :build_request_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:0"},{"event":"cmd_output","timestamp":1607098381,"output":"1.384 [info] Periodic from module Elixir.Block.Tasks.STMHandler.RunningState with name Elixir.Block"},{"event":"cmd_output","timestamp":1607098381,"output":".Tasks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Task"},{"event":"cmd_output","timestamp":1607098381,"output":"s-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], coo"},{"event":"cmd_output","timestamp":1607098381,"output":"ling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"running\", publisher_cb: "},{"event":"cmd_output","timestamp":1607098381,"output":":skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_cou"},{"event":"cmd_output","timestamp":1607098381,"output":"nt, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:01.384 [i"},{"event":"cmd_output","timestamp":1607098381,"output":"nfo] Periodic from module Elixir.Block.Tasks.STMHandler.StoppingState with name Elixir.Block.Tasks."},{"event":"cmd_output","timestamp":1607098381,"output":"STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMH"},{"event":"cmd_output","timestamp":1607098381,"output":"andler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -"},{"event":"cmd_output","timestamp":1607098381,"output":"2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"stopping\", publisher_cb: :skip, repo: Bl"},{"event":"cmd_output","timestamp":1607098381,"output":"ock.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id],"},{"event":"cmd_output","timestamp":1607098381,"output":" schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:01.483 [info] ppl_id: 2"},{"event":"cmd_output","timestamp":1607098381,"output":"fddc332-bc2e-4b90-a73e-1a5699d44632, type: PplRequests, event: persisted source_args for pipeline: 2"},{"event":"cmd_output","timestamp":1607098381,"output":"fddc332-bc2e-4b90-a73e-1a5699d44632, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_"},{"event":"cmd_output","timestamp":1607098381,"output":"source/2(L89), \n\u001b[0m\u001b[22m\n16:13:01.485 [info] ppl_id: 2fddc332-bc2e-4b90-a73e-1a5699d44632, type:"},{"event":"cmd_output","timestamp":1607098381,"output":" PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM."},{"event":"cmd_output","timestamp":1607098381,"output":"Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:01.502 [info] ppl_id: 2fddc332-bc2e-4b90-a73e-1a56"},{"event":"cmd_output","timestamp":1607098381,"output":"99d44632, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098381,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:01.518 [info] ppl_id: 2fddc332-"},{"event":"cmd_output","timestamp":1607098381,"output":"bc2e-4b90-a73e-1a5699d44632, type: PplRequests, event: persisted definition for request with request"},{"event":"cmd_output","timestamp":1607098381,"output":"_token: e4946c8f-c3b3-4049-ba13-7d60066fb9e9, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQuerie"},{"event":"cmd_output","timestamp":1607098381,"output":"s.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:13:01.521 [info] Queue persisted: {:ok, %Ppl.Queues.Mod"},{"event":"cmd_output","timestamp":1607098381,"output":"el.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:13:01.52"},{"event":"cmd_output","timestamp":1607098381,"output":"0178], name: \"master-.semaphore/semaphore.yml\", organization_id: \"69de9ee6-08cd-4d56-aa2c-358c31cf81"},{"event":"cmd_output","timestamp":1607098381,"output":"9c\", project_id: \"123\", queue_id: \"907d786d-f687-40f4-9beb-3ad4392bf834\", scope: \"project\", updated_"},{"event":"cmd_output","timestamp":1607098381,"output":"at: ~N[2020-12-04 16:13:01.520186], user_generated: false}}\n\u001b[0m\u001b[22m\n16:13:01.525 [info] event: "},{"event":"cmd_output","timestamp":1607098381,"output":"created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098381,"output":":13:01.526 [info] ppl_id: 2fddc332-bc2e-4b90-a73e-1a5699d44632, type: PplBlocks, block_index: 0, st"},{"event":"cmd_output","timestamp":1607098381,"output":"ate: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.Regu"},{"event":"cmd_output","timestamp":1607098381,"output":"larInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:01.534 [info] ppl_id: 2fddc332-bc2e-4b90-a73e-1a56"},{"event":"cmd_output","timestamp":1607098381,"output":"99d44632, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098381,"output":" origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:01.540 [info] ppl_id: 2"},{"event":"cmd_output","timestamp":1607098381,"output":"fddc332-bc2e-4b90-a73e-1a5699d44632, type: Ppls, state: pending, event: exit_scheduling, recovery_co"},{"event":"cmd_output","timestamp":1607098381,"output":"unt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:01.543 [info] pp"},{"event":"cmd_output","timestamp":1607098381,"output":"l_id: 2fddc332-bc2e-4b90-a73e-1a5699d44632, type: PplBlocks, block_index: 0, state: waiting, event: "},{"event":"cmd_output","timestamp":1607098381,"output":"exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098381,"output":"22m\n16:13:01.554 [info] ppl_id: 2fddc332-bc2e-4b90-a73e-1a5699d44632, type: Ppls, state: queuing, "},{"event":"cmd_output","timestamp":1607098381,"output":"event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \r"},{"event":"cmd_output","timestamp":1607098381,"output":"\n\u001b[0m\u001b[22m\n16:13:01.564 [info] ppl_id: 2fddc332-bc2e-4b90-a73e-1a5699d44632, type: Ppls, state: ru"},{"event":"cmd_output","timestamp":1607098381,"output":"nning, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1("},{"event":"cmd_output","timestamp":1607098381,"output":"L90), \n\u001b[0m\u001b[22m\n16:13:01.572 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeli"},{"event":"cmd_output","timestamp":1607098381,"output":"ne: \"2fddc332-bc2e-4b90-a73e-1a5699d44632\"\n\u001b[0m\u001b[22m\n16:13:01.579 [info] block_id: 00bfdb31-517c-"},{"event":"cmd_output","timestamp":1607098381,"output":"47c5-b5ed-65775490505c, type: BlockRequests, event: persisted block run request from ppl 2fddc332-bc"},{"event":"cmd_output","timestamp":1607098381,"output":"2e-4b90-a73e-1a5699d44632 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries"},{"event":"cmd_output","timestamp":1607098381,"output":".process_response/4(L35), \n\u001b[0m\u001b[22m\n16:13:01.585 [info] block_id: 00bfdb31-517c-47c5-b5ed-657754"},{"event":"cmd_output","timestamp":1607098381,"output":"90505c, type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Bl"},{"event":"cmd_output","timestamp":1607098381,"output":"ock.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:13:01.588 [info] Block 0 of pipeline "},{"event":"cmd_output","timestamp":1607098381,"output":"with id: 2fddc332-bc2e-4b90-a73e-1a5699d44632 scheduled in block service with id: : \"00bfdb31-517c-4"},{"event":"cmd_output","timestamp":1607098381,"output":"7c5-b5ed-65775490505c\"\n\u001b[0m\u001b[22m\n16:13:01.594 [info] ppl_id: 2fddc332-bc2e-4b90-a73e-1a5699d44632"},{"event":"cmd_output","timestamp":1607098381,"output":", type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098381,"output":": Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:01.599 [info] block_id: 00bfdb"},{"event":"cmd_output","timestamp":1607098381,"output":"31-517c-47c5-b5ed-65775490505c, type: BlockRequests, event: persisted build and sub_ppl details for "},{"event":"cmd_output","timestamp":1607098381,"output":"block_request: 00bfdb31-517c-47c5-b5ed-65775490505c, origin: Elixir.Block.BlockRequests.Model.BlockR"},{"event":"cmd_output","timestamp":1607098381,"output":"equestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:13:01.603 [info] ppl_id: 9fbec02f-b369-45a4-af6"},{"event":"cmd_output","timestamp":1607098381,"output":"d-fd7919c81d28, type: PplRequests, event: persisted source_args for pipeline: 9fbec02f-b369-45a4-af6"},{"event":"cmd_output","timestamp":1607098381,"output":"d-fd7919c81d28, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098381,"output":"\u001b[22m\n16:13:01.604 [info] block_id: 00bfdb31-517c-47c5-b5ed-65775490505c, type: Tasks, state: pend"},{"event":"cmd_output","timestamp":1607098381,"output":"ing, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all"},{"event":"cmd_output","timestamp":1607098381,"output":"_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:13:01.606 [info] ppl_id: 9fbec02f-b369-45a4-af6d-fd7919c81d28, type: "},{"event":"cmd_output","timestamp":1607098381,"output":"PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.I"},{"event":"cmd_output","timestamp":1607098381,"output":"mpl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:01.606 [info] block_id: 00bfdb31-517c-47c5-b5ed-657"},{"event":"cmd_output","timestamp":1607098381,"output":"75490505c, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098381,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:01.620 [info] block_id: 00bfdb31-517c-47"},{"event":"cmd_output","timestamp":1607098381,"output":"c5-b5ed-65775490505c, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098381,"output":": Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:01.622 [info] ppl_id: 9fbec02f"},{"event":"cmd_output","timestamp":1607098381,"output":"-b369-45a4-af6d-fd7919c81d28, type: PplSubInits, state: regular_init, event: exit_scheduling, recove"},{"event":"cmd_output","timestamp":1607098381,"output":"ry_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:01.647 [info"},{"event":"cmd_output","timestamp":1607098381,"output":"] ppl_id: 9fbec02f-b369-45a4-af6d-fd7919c81d28, type: PplRequests, event: persisted definition for "},{"event":"cmd_output","timestamp":1607098381,"output":"request with request_token: 704ee415-a5fe-410e-ae04-569456d4104f, origin: Elixir.Ppl.PplRequests.Mod"},{"event":"cmd_output","timestamp":1607098381,"output":"el.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:13:01.653 [info] event: created, or"},{"event":"cmd_output","timestamp":1607098381,"output":"igin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:01.653 "},{"event":"cmd_output","timestamp":1607098381,"output":"[info] ppl_id: 9fbec02f-b369-45a4-af6d-fd7919c81d28, type: PplBlocks, block_index: 0, state: initia"},{"event":"cmd_output","timestamp":1607098381,"output":"lizing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitStat"},{"event":"cmd_output","timestamp":1607098381,"output":"e.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:01.654 [info] ppl_id: 9fbec02f-b369-45a4-af6d-fd7919c81d28, t"},{"event":"cmd_output","timestamp":1607098381,"output":"ype: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098381,"output":"ixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:01.660 [info] ppl_id: 9fbec02f-b36"},{"event":"cmd_output","timestamp":1607098381,"output":"9-45a4-af6d-fd7919c81d28, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098381,"output":"gin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:01.660 [info] ppl_id: 9fbec"},{"event":"cmd_output","timestamp":1607098381,"output":"02f-b369-45a4-af6d-fd7919c81d28, type: PplBlocks, block_index: 0, state: waiting, event: exit_schedu"},{"event":"cmd_output","timestamp":1607098381,"output":"ling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:"},{"event":"cmd_output","timestamp":1607098381,"output":"01.675 [info] ppl_id: 9fbec02f-b369-45a4-af6d-fd7919c81d28, type: Ppls, state: queuing, event: exit"},{"event":"cmd_output","timestamp":1607098381,"output":"_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098381,"output":"\n16:13:01.716 [info] ppl_id: 1875b471-3841-4992-a04b-a979e80589e8, type: PplRequests, event: persis"},{"event":"cmd_output","timestamp":1607098381,"output":"ted source_args for pipeline: 1875b471-3841-4992-a04b-a979e80589e8, origin: Elixir.Ppl.PplRequests.M"},{"event":"cmd_output","timestamp":1607098381,"output":"odel.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:13:01.724 [info] ppl_id: 1875b471-384"},{"event":"cmd_output","timestamp":1607098381,"output":"1-4992-a04b-a979e80589e8, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count"},{"event":"cmd_output","timestamp":1607098381,"output":": 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:01.726 [info] block"},{"event":"cmd_output","timestamp":1607098381,"output":"_id: 00bfdb31-517c-47c5-b5ed-65775490505c, type: Tasks, state: done, event: exit_scheduling, recover"},{"event":"cmd_output","timestamp":1607098381,"output":"y_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:01.732 [info]"},{"event":"cmd_output","timestamp":1607098381,"output":" block_id: 00bfdb31-517c-47c5-b5ed-65775490505c, type: Blocks, state: done, event: exit_scheduling,"},{"event":"cmd_output","timestamp":1607098381,"output":" recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:01.74"},{"event":"cmd_output","timestamp":1607098381,"output":"1 [info] ppl_id: 2fddc332-bc2e-4b90-a73e-1a5699d44632, block_id: 00bfdb31-517c-47c5-b5ed-6577549050"},{"event":"cmd_output","timestamp":1607098381,"output":"5c, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098381,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:01.749 [info] p"},{"event":"cmd_output","timestamp":1607098381,"output":"pl_id: 1875b471-3841-4992-a04b-a979e80589e8, type: PplSubInits, state: regular_init, event: exit_sch"},{"event":"cmd_output","timestamp":1607098381,"output":"eduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098381,"output":"13:01.760 [info] ppl_id: 2fddc332-bc2e-4b90-a73e-1a5699d44632, type: Ppls, state: done, result: pas"},{"event":"cmd_output","timestamp":1607098381,"output":"sed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L9"},{"event":"cmd_output","timestamp":1607098381,"output":"0), \n\u001b[0m\u001b[22m\n16:13:01.772 [info] ppl_id: 1875b471-3841-4992-a04b-a979e80589e8, type: PplRequest"},{"event":"cmd_output","timestamp":1607098381,"output":"s, event: persisted definition for request with request_token: 6f76f380-ad90-424e-9785-3b3f2de7181f,"},{"event":"cmd_output","timestamp":1607098381,"output":" origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098381,"output":"3:01.775 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:lo"},{"event":"cmd_output","timestamp":1607098381,"output":"aded, \"queues\">, inserted_at: ~N[2020-12-04 16:13:01.773935], name: \"master-.semaphore/semaphore.yml"},{"event":"cmd_output","timestamp":1607098381,"output":"\", organization_id: \"5cbdfb0b-3b20-436a-9a3b-0df4766b79dd\", project_id: \"456\", queue_id: \"60728e5e-0"},{"event":"cmd_output","timestamp":1607098381,"output":"30c-48ec-aa1c-d792dd4975de\", scope: \"project\", updated_at: ~N[2020-12-04 16:13:01.773945], user_gene"},{"event":"cmd_output","timestamp":1607098381,"output":"rated: false}}\n\u001b[0m\u001b[22m\n16:13:01.779 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHa"},{"event":"cmd_output","timestamp":1607098381,"output":"ndler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:01.779 [info] ppl_id: 1875b471-3841-4992"},{"event":"cmd_output","timestamp":1607098381,"output":"-a04b-a979e80589e8, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_c"},{"event":"cmd_output","timestamp":1607098381,"output":"ount: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098381,"output":":13:01.781 [info] ppl_id: 1875b471-3841-4992-a04b-a979e80589e8, type: PplSubInits, state: done, res"},{"event":"cmd_output","timestamp":1607098381,"output":"ult: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_cha"},{"event":"cmd_output","timestamp":1607098381,"output":"nge/1(L90), \n\u001b[0m\u001b[22m\n16:13:01.789 [info] ppl_id: 1875b471-3841-4992-a04b-a979e80589e8, type: Pp"},{"event":"cmd_output","timestamp":1607098381,"output":"lBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098381,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:01.794 [info] ppl_id: 1875b471-3841-4992"},{"event":"cmd_output","timestamp":1607098381,"output":"-a04b-a979e80589e8, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: E"},{"event":"cmd_output","timestamp":1607098381,"output":"lixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:01.794 [info] ppl_id: 9fbec02f-b3"},{"event":"cmd_output","timestamp":1607098381,"output":"69-45a4-af6d-fd7919c81d28, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098381,"output":"igin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:01.802 [info] PplBlocks Wa"},{"event":"cmd_output","timestamp":1607098381,"output":"itingState STM is scheduling block 0 from pipeline: \"9fbec02f-b369-45a4-af6d-fd7919c81d28\"\n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098381,"output":"m\n16:13:01.806 [info] ppl_id: 1875b471-3841-4992-a04b-a979e80589e8, type: Ppls, state: queuing, ev"},{"event":"cmd_output","timestamp":1607098381,"output":"ent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b"},{"event":"cmd_output","timestamp":1607098381,"output":"[0m\u001b[22m\n16:13:01.811 [info] block_id: 26cbfe8b-b7aa-44ab-8a59-fa4fab2b63a0, type: BlockRequests, "},{"event":"cmd_output","timestamp":1607098381,"output":"event: persisted block run request from ppl 9fbec02f-b369-45a4-af6d-fd7919c81d28 for block 0, origin"},{"event":"cmd_output","timestamp":1607098381,"output":": Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:13:"},{"event":"cmd_output","timestamp":1607098381,"output":"01.815 [info] block_id: 26cbfe8b-b7aa-44ab-8a59-fa4fab2b63a0, type: Blocks, state: initializing, ev"},{"event":"cmd_output","timestamp":1607098381,"output":"ent: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43),"},{"event":"cmd_output","timestamp":1607098381,"output":" \n\u001b[0m\u001b[22m\n16:13:01.817 [info] Block 0 of pipeline with id: 9fbec02f-b369-45a4-af6d-fd7919c81d28"},{"event":"cmd_output","timestamp":1607098381,"output":" scheduled in block service with id: : \"26cbfe8b-b7aa-44ab-8a59-fa4fab2b63a0\"\n\u001b[0m\u001b[22m\n16:13:01.8"},{"event":"cmd_output","timestamp":1607098381,"output":"19 [info] ppl_id: 9fbec02f-b369-45a4-af6d-fd7919c81d28, type: PplBlocks, block_index: 0, state: run"},{"event":"cmd_output","timestamp":1607098381,"output":"ning, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098381,"output":"90), \n\u001b[0m\u001b[22m\n16:13:01.823 [info] block_id: 26cbfe8b-b7aa-44ab-8a59-fa4fab2b63a0, type: BlockRe"},{"event":"cmd_output","timestamp":1607098381,"output":"quests, event: persisted build and sub_ppl details for block_request: 26cbfe8b-b7aa-44ab-8a59-fa4fab"},{"event":"cmd_output","timestamp":1607098381,"output":"2b63a0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098381,"output":"2m\n16:13:01.824 [info] ppl_id: 1875b471-3841-4992-a04b-a979e80589e8, type: Ppls, state: running, e"},{"event":"cmd_output","timestamp":1607098381,"output":"vent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n"},{"event":"cmd_output","timestamp":1607098381,"output":"\u001b[0m\u001b[22m\n16:13:01.825 [info] block_id: 26cbfe8b-b7aa-44ab-8a59-fa4fab2b63a0, type: Tasks, state: "},{"event":"cmd_output","timestamp":1607098381,"output":"pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState"},{"event":"cmd_output","timestamp":1607098381,"output":".all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:13:01.830 [info] block_id: 26cbfe8b-b7aa-44ab-8a59-fa4fab2b63a0, "},{"event":"cmd_output","timestamp":1607098381,"output":"type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.I"},{"event":"cmd_output","timestamp":1607098381,"output":"mpl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:01.836 [info] PplBlocks WaitingState STM is schedul"},{"event":"cmd_output","timestamp":1607098381,"output":"ing block 0 from pipeline: \"1875b471-3841-4992-a04b-a979e80589e8\"\n\u001b[0m\u001b[22m\n16:13:01.841 [info] p"},{"event":"cmd_output","timestamp":1607098381,"output":"pl_id: 5ff359d5-8f2f-471e-9f25-e9b026d6a09d, type: PplRequests, event: persisted source_args for pip"},{"event":"cmd_output","timestamp":1607098381,"output":"eline: 5ff359d5-8f2f-471e-9f25-e9b026d6a09d, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries"},{"event":"cmd_output","timestamp":1607098381,"output":".insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:13:01.845 [info] block_id: 7b0784dd-6890-40f8-9081-3916a42cc"},{"event":"cmd_output","timestamp":1607098381,"output":"d83, type: BlockRequests, event: persisted block run request from ppl 1875b471-3841-4992-a04b-a979e8"},{"event":"cmd_output","timestamp":1607098381,"output":"0589e8 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4"},{"event":"cmd_output","timestamp":1607098381,"output":"(L35), \n\u001b[0m\u001b[22m\n16:13:01.846 [info] ppl_id: 5ff359d5-8f2f-471e-9f25-e9b026d6a09d, type: PplSubI"},{"event":"cmd_output","timestamp":1607098381,"output":"nits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098381,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:01.851 [info] block_id: 7b0784dd-6890-40f8-9081-3916a42ccd"},{"event":"cmd_output","timestamp":1607098381,"output":"83, type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block."},{"event":"cmd_output","timestamp":1607098381,"output":"Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:13:01.859 [info] Block 0 of pipeline with"},{"event":"cmd_output","timestamp":1607098381,"output":" id: 1875b471-3841-4992-a04b-a979e80589e8 scheduled in block service with id: : \"7b0784dd-6890-40f8-"},{"event":"cmd_output","timestamp":1607098381,"output":"9081-3916a42ccd83\"\n\u001b[0m\u001b[22m\n16:13:01.860 [info] block_id: 26cbfe8b-b7aa-44ab-8a59-fa4fab2b63a0, "},{"event":"cmd_output","timestamp":1607098381,"output":"type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Im"},{"event":"cmd_output","timestamp":1607098381,"output":"pl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:01.862 [info] ppl_id: 1875b471-3841-4992-a04b-a979e8"},{"event":"cmd_output","timestamp":1607098381,"output":"0589e8, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098381,"output":"origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:01.867 [info] block_id: "},{"event":"cmd_output","timestamp":1607098381,"output":"7b0784dd-6890-40f8-9081-3916a42ccd83, type: BlockRequests, event: persisted build and sub_ppl detail"},{"event":"cmd_output","timestamp":1607098381,"output":"s for block_request: 7b0784dd-6890-40f8-9081-3916a42ccd83, origin: Elixir.Block.BlockRequests.Model."},{"event":"cmd_output","timestamp":1607098381,"output":"BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:13:01.869 [info] block_id: 7b0784dd-6890-"},{"event":"cmd_output","timestamp":1607098381,"output":"40f8-9081-3916a42ccd83, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098381,"output":"ir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:13:01.871 [info] bloc"},{"event":"cmd_output","timestamp":1607098381,"output":"k_id: 7b0784dd-6890-40f8-9081-3916a42ccd83, type: Blocks, state: running, event: exit_scheduling, re"},{"event":"cmd_output","timestamp":1607098381,"output":"covery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:01.883 ["},{"event":"cmd_output","timestamp":1607098381,"output":"info] ppl_id: 5ff359d5-8f2f-471e-9f25-e9b026d6a09d, type: PplSubInits, state: regular_init, event: "},{"event":"cmd_output","timestamp":1607098381,"output":"exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098381,"output":"22m\n16:13:01.888 [info] block_id: 7b0784dd-6890-40f8-9081-3916a42ccd83, type: Tasks, state: runnin"},{"event":"cmd_output","timestamp":1607098381,"output":"g, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90)"},{"event":"cmd_output","timestamp":1607098381,"output":", \n\u001b[0m\u001b[22m\n16:13:01.914 [info] ppl_id: 5ff359d5-8f2f-471e-9f25-e9b026d6a09d, type: PplRequests,"},{"event":"cmd_output","timestamp":1607098381,"output":" event: persisted definition for request with request_token: 3e40c4b4-8d87-42fa-8a20-64ef7e0a60e0, o"},{"event":"cmd_output","timestamp":1607098381,"output":"rigin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:13:"},{"event":"cmd_output","timestamp":1607098381,"output":"01.931 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1("},{"event":"cmd_output","timestamp":1607098381,"output":"L105), \n\u001b[0m\u001b[22m\n16:13:01.931 [info] ppl_id: 5ff359d5-8f2f-471e-9f25-e9b026d6a09d, type: PplBloc"},{"event":"cmd_output","timestamp":1607098381,"output":"ks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSu"},{"event":"cmd_output","timestamp":1607098381,"output":"bInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:01.933 [info] ppl_id: 5ff359"},{"event":"cmd_output","timestamp":1607098381,"output":"d5-8f2f-471e-9f25-e9b026d6a09d, type: PplSubInits, state: done, result: passed, event: exit_scheduli"},{"event":"cmd_output","timestamp":1607098381,"output":"ng, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:01"},{"event":"cmd_output","timestamp":1607098381,"output":".944 [info] ppl_id: 5ff359d5-8f2f-471e-9f25-e9b026d6a09d, type: Ppls, state: pending, event: exit_s"},{"event":"cmd_output","timestamp":1607098381,"output":"cheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098381,"output":"6:13:01.945 [info] ppl_id: 5ff359d5-8f2f-471e-9f25-e9b026d6a09d, type: PplBlocks, block_index: 0, s"},{"event":"cmd_output","timestamp":1607098381,"output":"tate: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098381,"output":"hange/1(L90), \n\u001b[0m\u001b[22m\n16:13:01.946 [info] block_id: 26cbfe8b-b7aa-44ab-8a59-fa4fab2b63a0, type"},{"event":"cmd_output","timestamp":1607098381,"output":": Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_"},{"event":"cmd_output","timestamp":1607098381,"output":"state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:01.956 [info] ppl_id: 80aa0af8-a963-4b1d-8267-52ad351f801a,"},{"event":"cmd_output","timestamp":1607098381,"output":" type: PplRequests, event: persisted source_args for pipeline: 80aa0af8-a963-4b1d-8267-52ad351f801a,"},{"event":"cmd_output","timestamp":1607098381,"output":" origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:13:01"},{"event":"cmd_output","timestamp":1607098381,"output":".957 [info] ppl_id: 5ff359d5-8f2f-471e-9f25-e9b026d6a09d, type: Ppls, state: queuing, event: exit_s"},{"event":"cmd_output","timestamp":1607098381,"output":"cheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098381,"output":"6:13:01.959 [info] ppl_id: 80aa0af8-a963-4b1d-8267-52ad351f801a, type: PplSubInits, state: fetching"},{"event":"cmd_output","timestamp":1607098381,"output":", event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90),"},{"event":"cmd_output","timestamp":1607098381,"output":" \n\u001b[0m\u001b[22m\n16:13:01.962 [info] block_id: 26cbfe8b-b7aa-44ab-8a59-fa4fab2b63a0, type: Blocks, sta"},{"event":"cmd_output","timestamp":1607098381,"output":"te: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change"},{"event":"cmd_output","timestamp":1607098381,"output":"/1(L90), \n\u001b[0m\u001b[22m\n16:13:01.971 [info] ppl_id: 9fbec02f-b369-45a4-af6d-fd7919c81d28, block_id: 2"},{"event":"cmd_output","timestamp":1607098381,"output":"6cbfe8b-b7aa-44ab-8a59-fa4fab2b63a0, type: PplBlocks, block_index: 0, state: done, result: passed, e"},{"event":"cmd_output","timestamp":1607098381,"output":"vent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n"},{"event":"cmd_output","timestamp":1607098381,"output":"\u001b[0m\u001b[22m\n16:13:01.983 [info] ppl_id: 9fbec02f-b369-45a4-af6d-fd7919c81d28, type: Ppls, state: don"},{"event":"cmd_output","timestamp":1607098381,"output":"e, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_sta"},{"event":"cmd_output","timestamp":1607098381,"output":"te_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:01.994 [info] ppl_id: 80aa0af8-a963-4b1d-8267-52ad351f801a, ty"},{"event":"cmd_output","timestamp":1607098381,"output":"pe: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loop"},{"event":"cmd_output","timestamp":1607098382,"output":"er.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:02.022 [info] ppl_id: 80aa0af8-a963-4b1d-82"},{"event":"cmd_output","timestamp":1607098382,"output":"67-52ad351f801a, type: PplRequests, event: persisted definition for request with request_token: 42bf"},{"event":"cmd_output","timestamp":1607098382,"output":"f0f8-8064-436d-9aee-c870b6938d2b, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_def"},{"event":"cmd_output","timestamp":1607098382,"output":"inition/3(L76), \n\u001b[0m\u001b[22m\n16:13:02.026 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__"},{"event":"cmd_output","timestamp":1607098382,"output":"meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:13:02.024961], name:"},{"event":"cmd_output","timestamp":1607098382,"output":" \"dev-.semaphore/semaphore.yml\", organization_id: \"cd93df73-a729-4ffc-9bee-5c15154e77e7\", project_id"},{"event":"cmd_output","timestamp":1607098382,"output":": \"123\", queue_id: \"9be4a66c-cc6d-4b34-bd50-d9c25f40be7c\", scope: \"project\", updated_at: ~N[2020-12-"},{"event":"cmd_output","timestamp":1607098382,"output":"04 16:13:02.024988], user_generated: false}}\n\u001b[0m\u001b[22m\n16:13:02.031 [info] event: created, origin"},{"event":"cmd_output","timestamp":1607098382,"output":": Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:02.031 [inf"},{"event":"cmd_output","timestamp":1607098382,"output":"o] ppl_id: 80aa0af8-a963-4b1d-8267-52ad351f801a, type: PplBlocks, block_index: 0, state: initializi"},{"event":"cmd_output","timestamp":1607098382,"output":"ng, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.al"},{"event":"cmd_output","timestamp":1607098382,"output":"l_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:02.032 [info] ppl_id: 80aa0af8-a963-4b1d-8267-52ad351f801a, type:"},{"event":"cmd_output","timestamp":1607098382,"output":" PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098382,"output":".Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:02.037 [info] ppl_id: 80aa0af8-a963-4b"},{"event":"cmd_output","timestamp":1607098382,"output":"1d-8267-52ad351f801a, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recov"},{"event":"cmd_output","timestamp":1607098382,"output":"ery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:02.042 [inf"},{"event":"cmd_output","timestamp":1607098382,"output":"o] ppl_id: 80aa0af8-a963-4b1d-8267-52ad351f801a, type: Ppls, state: pending, event: exit_scheduling"},{"event":"cmd_output","timestamp":1607098382,"output":", recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:02.0"},{"event":"cmd_output","timestamp":1607098382,"output":"56 [info] ppl_id: 80aa0af8-a963-4b1d-8267-52ad351f801a, type: Ppls, state: queuing, event: exit_sch"},{"event":"cmd_output","timestamp":1607098382,"output":"eduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098382,"output":"13:02.064 [info] block_id: 7b0784dd-6890-40f8-9081-3916a42ccd83, type: Tasks, state: done, event: e"},{"event":"cmd_output","timestamp":1607098382,"output":"xit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098382,"output":"2m\n16:13:02.070 [info] ppl_id: 80aa0af8-a963-4b1d-8267-52ad351f801a, type: Ppls, state: running, e"},{"event":"cmd_output","timestamp":1607098382,"output":"vent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n"},{"event":"cmd_output","timestamp":1607098382,"output":"\u001b[0m\u001b[22m\n16:13:02.070 [info] block_id: 7b0784dd-6890-40f8-9081-3916a42ccd83, type: Blocks, state:"},{"event":"cmd_output","timestamp":1607098382,"output":" done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1("},{"event":"cmd_output","timestamp":1607098382,"output":"L90), \n\u001b[0m\u001b[22m\n16:13:02.076 [info] ppl_id: a3025d1f-0bc2-44b0-872f-fc9658dd645e, type: PplReque"},{"event":"cmd_output","timestamp":1607098382,"output":"sts, event: persisted source_args for pipeline: a3025d1f-0bc2-44b0-872f-fc9658dd645e, origin: Elixir"},{"event":"cmd_output","timestamp":1607098382,"output":".Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:13:02.079 [info] pp"},{"event":"cmd_output","timestamp":1607098382,"output":"l_id: a3025d1f-0bc2-44b0-872f-fc9658dd645e, type: PplSubInits, state: fetching, event: exit_scheduli"},{"event":"cmd_output","timestamp":1607098382,"output":"ng, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:02"},{"event":"cmd_output","timestamp":1607098382,"output":".080 [info] ppl_id: 1875b471-3841-4992-a04b-a979e80589e8, block_id: 7b0784dd-6890-40f8-9081-3916a42"},{"event":"cmd_output","timestamp":1607098382,"output":"ccd83, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, recover"},{"event":"cmd_output","timestamp":1607098382,"output":"y_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:02.085 [info]"},{"event":"cmd_output","timestamp":1607098382,"output":" PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"80aa0af8-a963-4b1d-8267-52ad351f8"},{"event":"cmd_output","timestamp":1607098382,"output":"01a\"\n\u001b[0m\u001b[22m\n16:13:02.096 [info] block_id: 83578e8a-a8f3-4913-be5f-133ae62ed618, type: BlockReq"},{"event":"cmd_output","timestamp":1607098382,"output":"uests, event: persisted block run request from ppl 80aa0af8-a963-4b1d-8267-52ad351f801a for block 0,"},{"event":"cmd_output","timestamp":1607098382,"output":" origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098382,"output":"\n16:13:02.099 [info] block_id: 83578e8a-a8f3-4913-be5f-133ae62ed618, type: Blocks, state: initializ"},{"event":"cmd_output","timestamp":1607098382,"output":"ing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/"},{"event":"cmd_output","timestamp":1607098382,"output":"1(L43), \n\u001b[0m\u001b[22m\n16:13:02.103 [info] ppl_id: 1875b471-3841-4992-a04b-a979e80589e8, type: Ppls, "},{"event":"cmd_output","timestamp":1607098382,"output":"state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Im"},{"event":"cmd_output","timestamp":1607098382,"output":"pl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:02.104 [info] Block 0 of pipeline with id: 80aa0af8-"},{"event":"cmd_output","timestamp":1607098382,"output":"a963-4b1d-8267-52ad351f801a scheduled in block service with id: : \"83578e8a-a8f3-4913-be5f-133ae62ed"},{"event":"cmd_output","timestamp":1607098382,"output":"618\"\n\u001b[0m\u001b[22m\n16:13:02.111 [info] ppl_id: a3025d1f-0bc2-44b0-872f-fc9658dd645e, type: PplSubInit"},{"event":"cmd_output","timestamp":1607098382,"output":"s, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.lo"},{"event":"cmd_output","timestamp":1607098382,"output":"g_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:02.111 [info] ppl_id: 80aa0af8-a963-4b1d-8267-52ad351f801"},{"event":"cmd_output","timestamp":1607098382,"output":"a, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098382,"output":"n: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:02.118 [info] block_id: 83578"},{"event":"cmd_output","timestamp":1607098382,"output":"e8a-a8f3-4913-be5f-133ae62ed618, type: BlockRequests, event: persisted build and sub_ppl details for"},{"event":"cmd_output","timestamp":1607098382,"output":" block_request: 83578e8a-a8f3-4913-be5f-133ae62ed618, origin: Elixir.Block.BlockRequests.Model.Block"},{"event":"cmd_output","timestamp":1607098382,"output":"RequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:13:02.123 [info] block_id: 83578e8a-a8f3-4913-"},{"event":"cmd_output","timestamp":1607098382,"output":"be5f-133ae62ed618, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Bl"},{"event":"cmd_output","timestamp":1607098382,"output":"ock.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:13:02.126 [info] block_id:"},{"event":"cmd_output","timestamp":1607098382,"output":" 83578e8a-a8f3-4913-be5f-133ae62ed618, type: Blocks, state: running, event: exit_scheduling, recover"},{"event":"cmd_output","timestamp":1607098382,"output":"y_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:02.132 [info]"},{"event":"cmd_output","timestamp":1607098382,"output":" ppl_id: 5ff359d5-8f2f-471e-9f25-e9b026d6a09d, type: Ppls, state: running, event: exit_scheduling, "},{"event":"cmd_output","timestamp":1607098382,"output":"recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:02.143"},{"event":"cmd_output","timestamp":1607098382,"output":" [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"5ff359d5-8f2f-471e-9f25-e9"},{"event":"cmd_output","timestamp":1607098382,"output":"b026d6a09d\"\n\u001b[0m\u001b[22m\n16:13:02.148 [info] ppl_id: a3025d1f-0bc2-44b0-872f-fc9658dd645e, type: Ppl"},{"event":"cmd_output","timestamp":1607098382,"output":"Requests, event: persisted definition for request with request_token: 15e888f2-243c-43e5-89c4-661c80"},{"event":"cmd_output","timestamp":1607098382,"output":"7041d3, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098382,"output":"m\n16:13:02.149 [info] block_id: 022ffaf6-5a4a-4eaa-bd89-3667b7ae28aa, type: BlockRequests, event: "},{"event":"cmd_output","timestamp":1607098382,"output":"persisted block run request from ppl 5ff359d5-8f2f-471e-9f25-e9b026d6a09d for block 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098382,"output":"r.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:13:02.155 "},{"event":"cmd_output","timestamp":1607098382,"output":"[info] block_id: 022ffaf6-5a4a-4eaa-bd89-3667b7ae28aa, type: Blocks, state: initializing, event: in"},{"event":"cmd_output","timestamp":1607098382,"output":"itializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098382,"output":"\u001b[22m\n16:13:02.158 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitSta"},{"event":"cmd_output","timestamp":1607098382,"output":"te.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:02.158 [info] ppl_id: a3025d1f-0bc2-44b0-872f-fc9658dd645e, "},{"event":"cmd_output","timestamp":1607098382,"output":"type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098382,"output":"xir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:02.159 [info] B"},{"event":"cmd_output","timestamp":1607098382,"output":"lock 0 of pipeline with id: 5ff359d5-8f2f-471e-9f25-e9b026d6a09d scheduled in block service with id:"},{"event":"cmd_output","timestamp":1607098382,"output":" : \"022ffaf6-5a4a-4eaa-bd89-3667b7ae28aa\"\n\u001b[0m\u001b[22m\n16:13:02.163 [info] ppl_id: 5ff359d5-8f2f-471"},{"event":"cmd_output","timestamp":1607098382,"output":"e-9f25-e9b026d6a09d, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recove"},{"event":"cmd_output","timestamp":1607098382,"output":"ry_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:02.163 [info"},{"event":"cmd_output","timestamp":1607098382,"output":"] ppl_id: a3025d1f-0bc2-44b0-872f-fc9658dd645e, type: PplSubInits, state: done, result: passed, eve"},{"event":"cmd_output","timestamp":1607098382,"output":"nt: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b["},{"event":"cmd_output","timestamp":1607098382,"output":"0m\u001b[22m\n16:13:02.167 [info] block_id: 83578e8a-a8f3-4913-be5f-133ae62ed618, type: Tasks, state: ru"},{"event":"cmd_output","timestamp":1607098382,"output":"nning, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1("},{"event":"cmd_output","timestamp":1607098382,"output":"L90), \n\u001b[0m\u001b[22m\n16:13:02.168 [info] block_id: 022ffaf6-5a4a-4eaa-bd89-3667b7ae28aa, type: BlockR"},{"event":"cmd_output","timestamp":1607098382,"output":"equests, event: persisted build and sub_ppl details for block_request: 022ffaf6-5a4a-4eaa-bd89-3667b"},{"event":"cmd_output","timestamp":1607098382,"output":"7ae28aa, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098382,"output":"22m\n16:13:02.175 [info] block_id: 022ffaf6-5a4a-4eaa-bd89-3667b7ae28aa, type: Tasks, state: pendin"},{"event":"cmd_output","timestamp":1607098382,"output":"g, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_o"},{"event":"cmd_output","timestamp":1607098382,"output":"k?/1(L167), \n\u001b[0m\u001b[22m\n16:13:02.188 [info] block_id: 022ffaf6-5a4a-4eaa-bd89-3667b7ae28aa, type: "},{"event":"cmd_output","timestamp":1607098382,"output":"Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.lo"},{"event":"cmd_output","timestamp":1607098382,"output":"g_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:02.192 [info] block_id: 83578e8a-a8f3-4913-be5f-133ae62ed"},{"event":"cmd_output","timestamp":1607098382,"output":"618, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM."},{"event":"cmd_output","timestamp":1607098382,"output":"Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:02.192 [info] ppl_id: a3025d1f-0bc2-44b0-872f-fc96"},{"event":"cmd_output","timestamp":1607098382,"output":"58dd645e, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0"},{"event":"cmd_output","timestamp":1607098382,"output":", origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:02.194 [info] ppl_id: "},{"event":"cmd_output","timestamp":1607098382,"output":"a3025d1f-0bc2-44b0-872f-fc9658dd645e, type: Ppls, state: pending, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098382,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:02.209 [info] p"},{"event":"cmd_output","timestamp":1607098382,"output":"pl_id: fddded05-f8fb-41a2-bc7c-e21e9623828e, type: PplRequests, event: persisted source_args for pip"},{"event":"cmd_output","timestamp":1607098382,"output":"eline: fddded05-f8fb-41a2-bc7c-e21e9623828e, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries"},{"event":"cmd_output","timestamp":1607098382,"output":".insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:13:02.212 [info] block_id: 83578e8a-a8f3-4913-be5f-133ae62ed"},{"event":"cmd_output","timestamp":1607098382,"output":"618, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM"},{"event":"cmd_output","timestamp":1607098382,"output":".Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:02.215 [info] block_id: 022ffaf6-5a4a-4eaa-bd89-3"},{"event":"cmd_output","timestamp":1607098382,"output":"667b7ae28aa, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098382,"output":"Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:02.218 [info] ppl_id: fddded05-f8fb-41a"},{"event":"cmd_output","timestamp":1607098382,"output":"2-bc7c-e21e9623828e, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098382,"output":"origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:02.225 [info] ppl_id: a3"},{"event":"cmd_output","timestamp":1607098382,"output":"025d1f-0bc2-44b0-872f-fc9658dd645e, type: Ppls, state: queuing, event: exit_scheduling, recovery_cou"},{"event":"cmd_output","timestamp":1607098382,"output":"nt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:02.233 [info] ppl"},{"event":"cmd_output","timestamp":1607098382,"output":"_id: 80aa0af8-a963-4b1d-8267-52ad351f801a, block_id: 83578e8a-a8f3-4913-be5f-133ae62ed618, type: Ppl"},{"event":"cmd_output","timestamp":1607098382,"output":"Blocks, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098382,"output":"in: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:02.252 [info] ppl_id: fddded"},{"event":"cmd_output","timestamp":1607098382,"output":"05-f8fb-41a2-bc7c-e21e9623828e, type: PplSubInits, state: regular_init, event: exit_scheduling, reco"},{"event":"cmd_output","timestamp":1607098382,"output":"very_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:02.255 [in"},{"event":"cmd_output","timestamp":1607098382,"output":"fo] ppl_id: 80aa0af8-a963-4b1d-8267-52ad351f801a, type: Ppls, state: done, result: passed, event: e"},{"event":"cmd_output","timestamp":1607098382,"output":"xit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098382,"output":"2m\n16:13:02.290 [info] ppl_id: fddded05-f8fb-41a2-bc7c-e21e9623828e, type: PplRequests, event: per"},{"event":"cmd_output","timestamp":1607098382,"output":"sisted definition for request with request_token: b6f43e4e-9825-40b0-bce2-0f5ea8993a3f, origin: Elix"},{"event":"cmd_output","timestamp":1607098382,"output":"ir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:13:02.297 [inf"},{"event":"cmd_output","timestamp":1607098382,"output":"o] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues"},{"event":"cmd_output","timestamp":1607098382,"output":"\">, inserted_at: ~N[2020-12-04 16:13:02.292960], name: \"dev-.semaphore/semaphore.yml\", organization_"},{"event":"cmd_output","timestamp":1607098382,"output":"id: \"c02d3eaf-2525-4d17-b1e7-7eacb23cf2c9\", project_id: \"456\", queue_id: \"29ab935b-8c84-40f3-96f6-3f"},{"event":"cmd_output","timestamp":1607098382,"output":"11210b49ca\", scope: \"project\", updated_at: ~N[2020-12-04 16:13:02.292972], user_generated: false}}\n"},{"event":"cmd_output","timestamp":1607098382,"output":"\u001b[0m\u001b[22m\n16:13:02.307 [info] block_id: 022ffaf6-5a4a-4eaa-bd89-3667b7ae28aa, type: Tasks, state: "},{"event":"cmd_output","timestamp":1607098382,"output":"done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098382,"output":"90), \n\u001b[0m\u001b[22m\n16:13:02.309 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.Reg"},{"event":"cmd_output","timestamp":1607098382,"output":"ularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:02.309 [info] ppl_id: fddded05-f8fb-41a2-bc7c-e21"},{"event":"cmd_output","timestamp":1607098382,"output":"e9623828e, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098382,"output":"origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:02.31"},{"event":"cmd_output","timestamp":1607098382,"output":"1 [info] ppl_id: fddded05-f8fb-41a2-bc7c-e21e9623828e, type: PplSubInits, state: done, result: pass"},{"event":"cmd_output","timestamp":1607098382,"output":"ed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90"},{"event":"cmd_output","timestamp":1607098382,"output":"), \n\u001b[0m\u001b[22m\n16:13:02.323 [info] block_id: 022ffaf6-5a4a-4eaa-bd89-3667b7ae28aa, type: Blocks, s"},{"event":"cmd_output","timestamp":1607098382,"output":"tate: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chan"},{"event":"cmd_output","timestamp":1607098382,"output":"ge/1(L90), \n\u001b[0m\u001b[22m\n16:13:02.326 [info] ppl_id: fddded05-f8fb-41a2-bc7c-e21e9623828e, type: Ppl"},{"event":"cmd_output","timestamp":1607098382,"output":"s, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_sta"},{"event":"cmd_output","timestamp":1607098382,"output":"te_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:02.334 [info] ppl_id: fddded05-f8fb-41a2-bc7c-e21e9623828e, ty"},{"event":"cmd_output","timestamp":1607098382,"output":"pe: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098382,"output":"ixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:02.339 [info] ppl_id: dfc94d03-d04"},{"event":"cmd_output","timestamp":1607098382,"output":"8-49b1-bb8e-95c9cac46c25, type: PplRequests, event: persisted source_args for pipeline: dfc94d03-d04"},{"event":"cmd_output","timestamp":1607098382,"output":"8-49b1-bb8e-95c9cac46c25, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L8"},{"event":"cmd_output","timestamp":1607098382,"output":"9), \n\u001b[0m\u001b[22m\n16:13:02.340 [info] ppl_id: 5ff359d5-8f2f-471e-9f25-e9b026d6a09d, block_id: 022ffa"},{"event":"cmd_output","timestamp":1607098382,"output":"f6-5a4a-4eaa-bd89-3667b7ae28aa, type: PplBlocks, block_index: 0, state: done, result: passed, event:"},{"event":"cmd_output","timestamp":1607098382,"output":" exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098382,"output":"[22m\n16:13:02.347 [info] ppl_id: dfc94d03-d048-49b1-bb8e-95c9cac46c25, type: PplSubInits, state: f"},{"event":"cmd_output","timestamp":1607098382,"output":"etching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/"},{"event":"cmd_output","timestamp":1607098382,"output":"1(L90), \n\u001b[0m\u001b[22m\n16:13:02.350 [info] ppl_id: fddded05-f8fb-41a2-bc7c-e21e9623828e, type: Ppls, "},{"event":"cmd_output","timestamp":1607098382,"output":"state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_"},{"event":"cmd_output","timestamp":1607098382,"output":"change/1(L90), \n\u001b[0m\u001b[22m\n16:13:02.355 [info] ppl_id: 5ff359d5-8f2f-471e-9f25-e9b026d6a09d, type:"},{"event":"cmd_output","timestamp":1607098382,"output":" Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper"},{"event":"cmd_output","timestamp":1607098382,"output":".STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:02.363 [info] ppl_id: fddded05-f8fb-41a2-bc7c"},{"event":"cmd_output","timestamp":1607098382,"output":"-e21e9623828e, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098382,"output":".Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:02.377 [info] PplBlocks WaitingState S"},{"event":"cmd_output","timestamp":1607098382,"output":"TM is scheduling block 0 from pipeline: \"fddded05-f8fb-41a2-bc7c-e21e9623828e\"\n\u001b[0m\u001b[22m\n16:13:02."},{"event":"cmd_output","timestamp":1607098382,"output":"382 [info] ppl_id: a3025d1f-0bc2-44b0-872f-fc9658dd645e, type: Ppls, state: running, event: exit_sc"},{"event":"cmd_output","timestamp":1607098382,"output":"heduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098382,"output":":13:02.386 [info] ppl_id: dfc94d03-d048-49b1-bb8e-95c9cac46c25, type: PplSubInits, state: regular_i"},{"event":"cmd_output","timestamp":1607098382,"output":"nit, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L9"},{"event":"cmd_output","timestamp":1607098382,"output":"0), \n\u001b[0m\u001b[22m\n16:13:02.388 [info] block_id: c8240784-9b9a-41ec-9ec3-9fe3e7d64ce0, type: BlockReq"},{"event":"cmd_output","timestamp":1607098382,"output":"uests, event: persisted block run request from ppl fddded05-f8fb-41a2-bc7c-e21e9623828e for block 0,"},{"event":"cmd_output","timestamp":1607098382,"output":" origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098382,"output":"\n16:13:02.391 [info] block_id: c8240784-9b9a-41ec-9ec3-9fe3e7d64ce0, type: Blocks, state: initializ"},{"event":"cmd_output","timestamp":1607098382,"output":"ing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/"},{"event":"cmd_output","timestamp":1607098382,"output":"1(L43), \n\u001b[0m\u001b[22m\n16:13:02.393 [info] Block 0 of pipeline with id: fddded05-f8fb-41a2-bc7c-e21e9"},{"event":"cmd_output","timestamp":1607098382,"output":"623828e scheduled in block service with id: : \"c8240784-9b9a-41ec-9ec3-9fe3e7d64ce0\"\n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098382,"output":"13:02.397 [info] ppl_id: fddded05-f8fb-41a2-bc7c-e21e9623828e, type: PplBlocks, block_index: 0, sta"},{"event":"cmd_output","timestamp":1607098382,"output":"te: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_cha"},{"event":"cmd_output","timestamp":1607098382,"output":"nge/1(L90), \n\u001b[0m\u001b[22m\n16:13:02.402 [info] block_id: c8240784-9b9a-41ec-9ec3-9fe3e7d64ce0, type: "},{"event":"cmd_output","timestamp":1607098382,"output":"BlockRequests, event: persisted build and sub_ppl details for block_request: c8240784-9b9a-41ec-9ec3"},{"event":"cmd_output","timestamp":1607098382,"output":"-9fe3e7d64ce0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n"},{"event":"cmd_output","timestamp":1607098382,"output":"\u001b[0m\u001b[22m\n16:13:02.403 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"a30"},{"event":"cmd_output","timestamp":1607098382,"output":"25d1f-0bc2-44b0-872f-fc9658dd645e\"\n\u001b[0m\u001b[22m\n16:13:02.407 [info] block_id: c8240784-9b9a-41ec-9ec"},{"event":"cmd_output","timestamp":1607098382,"output":"3-9fe3e7d64ce0, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block"},{"event":"cmd_output","timestamp":1607098382,"output":".Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:13:02.411 [info] block_id: c8"},{"event":"cmd_output","timestamp":1607098382,"output":"240784-9b9a-41ec-9ec3-9fe3e7d64ce0, type: Blocks, state: running, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098382,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:02.416 [info] b"},{"event":"cmd_output","timestamp":1607098382,"output":"lock_id: f8a4178f-657f-45db-a924-0c6676acc7ef, type: BlockRequests, event: persisted block run reque"},{"event":"cmd_output","timestamp":1607098382,"output":"st from ppl a3025d1f-0bc2-44b0-872f-fc9658dd645e for block 0, origin: Elixir.Block.BlockRequests.Mod"},{"event":"cmd_output","timestamp":1607098382,"output":"el.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:13:02.419 [info] block_id: f8a4178"},{"event":"cmd_output","timestamp":1607098382,"output":"f-657f-45db-a924-0c6676acc7ef, type: Blocks, state: initializing, event: initializing, recovery_coun"},{"event":"cmd_output","timestamp":1607098382,"output":"t: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:13:02.432 [info"},{"event":"cmd_output","timestamp":1607098382,"output":"] Block 0 of pipeline with id: a3025d1f-0bc2-44b0-872f-fc9658dd645e scheduled in block service with"},{"event":"cmd_output","timestamp":1607098382,"output":" id: : \"f8a4178f-657f-45db-a924-0c6676acc7ef\"\n\u001b[0m\u001b[22m\n16:13:02.432 [info] block_id: f8a4178f-65"},{"event":"cmd_output","timestamp":1607098382,"output":"7f-45db-a924-0c6676acc7ef, type: BlockRequests, event: persisted build and sub_ppl details for block"},{"event":"cmd_output","timestamp":1607098382,"output":"_request: f8a4178f-657f-45db-a924-0c6676acc7ef, origin: Elixir.Block.BlockRequests.Model.BlockReques"},{"event":"cmd_output","timestamp":1607098382,"output":"tsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:13:02.433 [info] ppl_id: dfc94d03-d048-49b1-bb8e-95c"},{"event":"cmd_output","timestamp":1607098382,"output":"9cac46c25, type: PplRequests, event: persisted definition for request with request_token: d4d882b5-5"},{"event":"cmd_output","timestamp":1607098382,"output":"ab4-4cee-8e39-a9759c9ad821, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definitio"},{"event":"cmd_output","timestamp":1607098382,"output":"n/3(L76), \n\u001b[0m\u001b[22m\n16:13:02.440 [info] block_id: c8240784-9b9a-41ec-9ec3-9fe3e7d64ce0, type: Ta"},{"event":"cmd_output","timestamp":1607098382,"output":"sks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_s"},{"event":"cmd_output","timestamp":1607098382,"output":"tate_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:02.440 [info] ppl_id: a3025d1f-0bc2-44b0-872f-fc9658dd645e, "},{"event":"cmd_output","timestamp":1607098382,"output":"type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098382,"output":"Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:02.440 [info] block_id: f8a4178f"},{"event":"cmd_output","timestamp":1607098382,"output":"-657f-45db-a924-0c6676acc7ef, type: Tasks, state: pending, event: created, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098382,"output":": Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:13:02.443 [info]"},{"event":"cmd_output","timestamp":1607098382,"output":" block_id: f8a4178f-657f-45db-a924-0c6676acc7ef, type: Blocks, state: running, event: exit_scheduli"},{"event":"cmd_output","timestamp":1607098382,"output":"ng, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:02"},{"event":"cmd_output","timestamp":1607098382,"output":".452 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L1"},{"event":"cmd_output","timestamp":1607098382,"output":"05), \n\u001b[0m\u001b[22m\n16:13:02.452 [info] ppl_id: dfc94d03-d048-49b1-bb8e-95c9cac46c25, type: PplBlocks"},{"event":"cmd_output","timestamp":1607098382,"output":", block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubI"},{"event":"cmd_output","timestamp":1607098382,"output":"nits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:02.454 [info] ppl_id: dfc94d03"},{"event":"cmd_output","timestamp":1607098382,"output":"-d048-49b1-bb8e-95c9cac46c25, type: PplSubInits, state: done, result: passed, event: exit_scheduling"},{"event":"cmd_output","timestamp":1607098382,"output":", recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:02.4"},{"event":"cmd_output","timestamp":1607098382,"output":"71 [info] block_id: f8a4178f-657f-45db-a924-0c6676acc7ef, type: Tasks, state: running, event: exit_"},{"event":"cmd_output","timestamp":1607098382,"output":"scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098382,"output":"16:13:02.476 [info] ppl_id: dfc94d03-d048-49b1-bb8e-95c9cac46c25, type: Ppls, state: pending, event"},{"event":"cmd_output","timestamp":1607098382,"output":": exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098382,"output":"\u001b[22m\n16:13:02.484 [info] ppl_id: dfc94d03-d048-49b1-bb8e-95c9cac46c25, type: PplBlocks, block_ind"},{"event":"cmd_output","timestamp":1607098382,"output":"ex: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098382,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:02.487 [info] ppl_id: dfc94d03-d048-49b1-bb8e-95c9cac46c25"},{"event":"cmd_output","timestamp":1607098382,"output":", type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.I"},{"event":"cmd_output","timestamp":1607098382,"output":"mpl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:02.526 [info] block_id: c8240784-9b9a-41ec-9ec3-9fe"},{"event":"cmd_output","timestamp":1607098382,"output":"3e7d64ce0, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loope"},{"event":"cmd_output","timestamp":1607098382,"output":"r.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:02.535 [info] block_id: c8240784-9b9a-41ec-9"},{"event":"cmd_output","timestamp":1607098382,"output":"ec3-9fe3e7d64ce0, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098382,"output":"ir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:02.542 [info] ppl_id: fddded05-f8fb-"},{"event":"cmd_output","timestamp":1607098382,"output":"41a2-bc7c-e21e9623828e, block_id: c8240784-9b9a-41ec-9ec3-9fe3e7d64ce0, type: PplBlocks, block_index"},{"event":"cmd_output","timestamp":1607098382,"output":": 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.S"},{"event":"cmd_output","timestamp":1607098382,"output":"TM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:02.560 [info] ppl_id: fddded05-f8fb-41a2-bc7c-e"},{"event":"cmd_output","timestamp":1607098382,"output":"21e9623828e, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098382,"output":"gin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:02.588 [info] ppl_id: dfc94"},{"event":"cmd_output","timestamp":1607098382,"output":"d03-d048-49b1-bb8e-95c9cac46c25, type: Ppls, state: running, event: exit_scheduling, recovery_count:"},{"event":"cmd_output","timestamp":1607098382,"output":" 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:02.595 [info] PplBlo"},{"event":"cmd_output","timestamp":1607098382,"output":"cks WaitingState STM is scheduling block 0 from pipeline: \"dfc94d03-d048-49b1-bb8e-95c9cac46c25\"\n\u001b["},{"event":"cmd_output","timestamp":1607098382,"output":"0m\u001b[22m\n16:13:02.600 [info] block_id: 270a5f16-fce8-425d-aa68-f97d7666f032, type: BlockRequests, e"},{"event":"cmd_output","timestamp":1607098382,"output":"vent: persisted block run request from ppl dfc94d03-d048-49b1-bb8e-95c9cac46c25 for block 0, origin:"},{"event":"cmd_output","timestamp":1607098382,"output":" Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:13:0"},{"event":"cmd_output","timestamp":1607098382,"output":"2.602 [info] block_id: 270a5f16-fce8-425d-aa68-f97d7666f032, type: Blocks, state: initializing, eve"},{"event":"cmd_output","timestamp":1607098382,"output":"nt: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), "},{"event":"cmd_output","timestamp":1607098382,"output":"\n\u001b[0m\u001b[22m\n16:13:02.603 [info] Block 0 of pipeline with id: dfc94d03-d048-49b1-bb8e-95c9cac46c25 "},{"event":"cmd_output","timestamp":1607098382,"output":"scheduled in block service with id: : \"270a5f16-fce8-425d-aa68-f97d7666f032\"\n\u001b[0m\u001b[22m\n16:13:02.60"},{"event":"cmd_output","timestamp":1607098382,"output":"5 [info] ppl_id: dfc94d03-d048-49b1-bb8e-95c9cac46c25, type: PplBlocks, block_index: 0, state: runn"},{"event":"cmd_output","timestamp":1607098382,"output":"ing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L9"},{"event":"cmd_output","timestamp":1607098382,"output":"0), \n\u001b[0m\u001b[22m\n16:13:02.607 [info] block_id: 270a5f16-fce8-425d-aa68-f97d7666f032, type: BlockReq"},{"event":"cmd_output","timestamp":1607098382,"output":"uests, event: persisted build and sub_ppl details for block_request: 270a5f16-fce8-425d-aa68-f97d766"},{"event":"cmd_output","timestamp":1607098382,"output":"6f032, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098382,"output":"m\n16:13:02.615 [info] block_id: 270a5f16-fce8-425d-aa68-f97d7666f032, type: Tasks, state: pending,"},{"event":"cmd_output","timestamp":1607098382,"output":" event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?"},{"event":"cmd_output","timestamp":1607098382,"output":"/1(L167), \n\u001b[0m\u001b[22m\n16:13:02.617 [info] block_id: 270a5f16-fce8-425d-aa68-f97d7666f032, type: Bl"},{"event":"cmd_output","timestamp":1607098382,"output":"ocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_"},{"event":"cmd_output","timestamp":1607098382,"output":"state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:02.631 [info] block_id: 270a5f16-fce8-425d-aa68-f97d7666f03"},{"event":"cmd_output","timestamp":1607098382,"output":"2, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM"},{"event":"cmd_output","timestamp":1607098382,"output":".Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:02.639 [info] block_id: f8a4178f-657f-45db-a924-0"},{"event":"cmd_output","timestamp":1607098382,"output":"c6676acc7ef, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loo"},{"event":"cmd_output","timestamp":1607098382,"output":"per.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:02.644 [info] block_id: f8a4178f-657f-45db"},{"event":"cmd_output","timestamp":1607098382,"output":"-a924-0c6676acc7ef, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098382,"output":"ixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:02.649 [info] ppl_id: a3025d1f-0bc"},{"event":"cmd_output","timestamp":1607098382,"output":"2-44b0-872f-fc9658dd645e, block_id: f8a4178f-657f-45db-a924-0c6676acc7ef, type: PplBlocks, block_ind"},{"event":"cmd_output","timestamp":1607098382,"output":"ex: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper"},{"event":"cmd_output","timestamp":1607098382,"output":".STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:02.664 [info] ppl_id: a3025d1f-0bc2-44b0-872f"},{"event":"cmd_output","timestamp":1607098382,"output":"-fc9658dd645e, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098382,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:02.754 [info] block_id: 2"},{"event":"cmd_output","timestamp":1607098382,"output":"70a5f16-fce8-425d-aa68-f97d7666f032, type: Tasks, state: done, event: exit_scheduling, recovery_coun"},{"event":"cmd_output","timestamp":1607098382,"output":"t: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:02.759 [info] bloc"},{"event":"cmd_output","timestamp":1607098382,"output":"k_id: 270a5f16-fce8-425d-aa68-f97d7666f032, type: Blocks, state: done, event: exit_scheduling, recov"},{"event":"cmd_output","timestamp":1607098382,"output":"ery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:02.766 [inf"},{"event":"cmd_output","timestamp":1607098382,"output":"o] ppl_id: dfc94d03-d048-49b1-bb8e-95c9cac46c25, block_id: 270a5f16-fce8-425d-aa68-f97d7666f032, ty"},{"event":"cmd_output","timestamp":1607098382,"output":"pe: PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: "},{"event":"cmd_output","timestamp":1607098382,"output":"0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:02.779 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098382,"output":" dfc94d03-d048-49b1-bb8e-95c9cac46c25, type: Ppls, state: done, result: passed, event: exit_scheduli"},{"event":"cmd_output","timestamp":1607098382,"output":"ng, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test "},{"event":"cmd_output","timestamp":1607098382,"output":"gRPC list_grouped() - project scoped user generated queues (1661.6ms)\u001b[0m\n * test gRPC list_keyse"},{"event":"cmd_output","timestamp":1607098382,"output":"t() - error when called without project_id or wf_id\r * test gRPC list_keyset() - error when called "},{"event":"cmd_output","timestamp":1607098382,"output":"without project_id or wf_id (skipped)\n\nPpl.Looper.PplBlocks.STMHandler.Filters.Test\n * test no f"},{"event":"cmd_output","timestamp":1607098382,"output":"ilters for given label - block executed\u001b[22m\n16:13:02.898 [info] Request: 'run: %{\"branch_id\" => \""},{"event":"cmd_output","timestamp":1607098382,"output":"9a1551d8-a601-4180-815d-8d8ea3460bd5\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469\", \"fil"},{"event":"cmd_output","timestamp":1607098382,"output":"e_name\" => \"block_filters.yml\", \"hook_id\" => \"95d24fb6-364b-11eb-a211-5254005464e2\", \"label\" => \"mas"},{"event":"cmd_output","timestamp":1607098382,"output":"ter\", \"organization_id\" => \"38121b95-b5d3-438b-8472-424dad2c3082\", \"owner\" => \"rt\", \"project_id\" => "},{"event":"cmd_output","timestamp":1607098382,"output":"\"f1afdbed-4d4c-42bb-aa3f-d8c22e46edab\", \"repo_name\" => \"22_skip_block\", \"request_token\" => \"95d24322"},{"event":"cmd_output","timestamp":1607098382,"output":"-364b-11eb-9b40-5254005464e2\", \"requester_id\" => \"c1fa9cf0-15b2-4ba8-b994-a719b15a58b8\", \"service\" ="},{"event":"cmd_output","timestamp":1607098382,"output":"> \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"744e21a4-3061-4"},{"event":"cmd_output","timestamp":1607098382,"output":"29e-a14d-854e5c0301e8\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:13:02.901 [info] ppl_id: c93f"},{"event":"cmd_output","timestamp":1607098382,"output":"fe12-dc17-40e8-ae28-d6bff60ce186, type: PplRequests, event: persisted schedule request with request_"},{"event":"cmd_output","timestamp":1607098382,"output":"token: 95d24322-364b-11eb-9b40-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries"},{"event":"cmd_output","timestamp":1607098382,"output":".process_response/2(L55), \n\u001b[0m\u001b[22m\n16:13:02.905 [info] ppl_id: c93ffe12-dc17-40e8-ae28-d6bff60c"},{"event":"cmd_output","timestamp":1607098382,"output":"e186, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Pp"},{"event":"cmd_output","timestamp":1607098382,"output":"ls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:13:02.910 [info] Project f1afdbed-4d"},{"event":"cmd_output","timestamp":1607098382,"output":"4c-42bb-aa3f-d8c22e46edab and branch masterlatest_wf details updated: \"wf_id: 744e21a4-3061-429e-a14"},{"event":"cmd_output","timestamp":1607098382,"output":"d-854e5c0301e8, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:13:02.912 [info] Persisted ppl_sub_init for pipeline w"},{"event":"cmd_output","timestamp":1607098382,"output":"ith ppl_id: c93ffe12-dc17-40e8-ae28-d6bff60ce186: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto"},{"event":"cmd_output","timestamp":1607098382,"output":".Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 2"},{"event":"cmd_output","timestamp":1607098382,"output":"87, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:13:02.910179], pipelin"},{"event":"cmd_output","timestamp":1607098382,"output":"e_requests: #Ecto.Association.NotLoaded, ppl_id: \"c93f"},{"event":"cmd_output","timestamp":1607098382,"output":"fe12-dc17-40e8-ae28-d6bff60ce186\", recovery_count: 0, result: nil, result_reason: nil, state: \"creat"},{"event":"cmd_output","timestamp":1607098382,"output":"ed\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:13:02.910185]"},{"event":"cmd_output","timestamp":1607098382,"output":"}\n\u001b[0m\u001b[22m\n16:13:02.917 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingState"},{"event":"cmd_output","timestamp":1607098382,"output":" with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.behold"},{"event":"cmd_output","timestamp":1607098382,"output":"er-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initial"},{"event":"cmd_output","timestamp":1607098382,"output":"izing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state:"},{"event":"cmd_output","timestamp":1607098382,"output":" \"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args"},{"event":"cmd_output","timestamp":1607098382,"output":"/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recover"},{"event":"cmd_output","timestamp":1607098382,"output":"y_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:02.917 [in"},{"event":"cmd_output","timestamp":1607098382,"output":"fo] Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandl"},{"event":"cmd_output","timestamp":1607098382,"output":"er.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Pendi"},{"event":"cmd_output","timestamp":1607098382,"output":"ngState\"]}, recurring args: %{allowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_tim"},{"event":"cmd_output","timestamp":1607098382,"output":"e_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publisher_cb: #Function<0.8"},{"event":"cmd_output","timestamp":1607098382,"output":"493005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminat"},{"event":"cmd_output","timestamp":1607098382,"output":"e_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, tas"},{"event":"cmd_output","timestamp":1607098382,"output":"k_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:13:02.918 [info] Periodic from module Elixir.Ppl.P"},{"event":"cmd_output","timestamp":1607098382,"output":"pls.STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, met"},{"event":"cmd_output","timestamp":1607098382,"output":"ric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{allowed_"},{"event":"cmd_output","timestamp":1607098382,"output":"states: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, ob"},{"event":"cmd_output","timestamp":1607098382,"output":"served_state: \"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.a"},{"event":"cmd_output","timestamp":1607098382,"output":"rgs/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :reco"},{"event":"cmd_output","timestamp":1607098382,"output":"very_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:02.918 "},{"event":"cmd_output","timestamp":1607098382,"output":"[info] Periodic from module Elixir.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHa"},{"event":"cmd_output","timestamp":1607098382,"output":"ndler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Ru"},{"event":"cmd_output","timestamp":1607098382,"output":"nningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: "},{"event":"cmd_output","timestamp":1607098382,"output":"-2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"running\", publisher_cb: #Function<0.7467028"},{"event":"cmd_output","timestamp":1607098382,"output":"2/1 in Ppl.Ppls.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_req"},{"event":"cmd_output","timestamp":1607098382,"output":"uest, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_sup"},{"event":"cmd_output","timestamp":1607098382,"output":"ervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:13:02.918 [info] Periodic from module Elixir.Ppl.Ppls.S"},{"event":"cmd_output","timestamp":1607098382,"output":"TMHandler.StoppingState with name Elixir.Ppl.Ppls.STMHandler.StoppingState :: period: 100 ms, metric"},{"event":"cmd_output","timestamp":1607098382,"output":"_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring args: %{allowed_st"},{"event":"cmd_output","timestamp":1607098382,"output":"ates: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state"},{"event":"cmd_output","timestamp":1607098382,"output":": \"stopping\", publisher_cb: #Function<0.71803493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, rep"},{"event":"cmd_output","timestamp":1607098382,"output":"o: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count,"},{"event":"cmd_output","timestamp":1607098382,"output":" :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:02.918 [info] Per"},{"event":"cmd_output","timestamp":1607098382,"output":"iodic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.ST"},{"event":"cmd_output","timestamp":1607098382,"output":"MHandler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STM"},{"event":"cmd_output","timestamp":1607098382,"output":"Handler-CreatedState\"]}, recurring args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0"},{"event":"cmd_output","timestamp":1607098382,"output":", initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip, "},{"event":"cmd_output","timestamp":1607098382,"output":"repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_cou"},{"event":"cmd_output","timestamp":1607098382,"output":"nt, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:0"},{"event":"cmd_output","timestamp":1607098382,"output":"2.918 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir."},{"event":"cmd_output","timestamp":1607098382,"output":"Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\""},{"event":"cmd_output","timestamp":1607098382,"output":"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"com"},{"event":"cmd_output","timestamp":1607098382,"output":"pilation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed"},{"event":"cmd_output","timestamp":1607098382,"output":"_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :u"},{"event":"cmd_output","timestamp":1607098382,"output":"pdated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, ta"},{"event":"cmd_output","timestamp":1607098382,"output":"sk_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:02.918 [info] Periodic from module Elixir.Ppl.PplSubInits.S"},{"event":"cmd_output","timestamp":1607098382,"output":"TMHandler.CompilationState with name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 1"},{"event":"cmd_output","timestamp":1607098382,"output":"00 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recur"},{"event":"cmd_output","timestamp":1607098382,"output":"ring args: %{allowed_states: [\"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: "},{"event":"cmd_output","timestamp":1607098382,"output":"-2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"compilation\", publisher_cb: :"},{"event":"cmd_output","timestamp":1607098382,"output":"skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recove"},{"event":"cmd_output","timestamp":1607098382,"output":"ry_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098382,"output":"6:13:02.918 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with nam"},{"event":"cmd_output","timestamp":1607098382,"output":"e Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-"},{"event":"cmd_output","timestamp":1607098382,"output":"wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurring args: %{allowed_states: [\"done"},{"event":"cmd_output","timestamp":1607098382,"output":"\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_"},{"event":"cmd_output","timestamp":1607098382,"output":"init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :s"},{"event":"cmd_output","timestamp":1607098382,"output":"tate, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor"},{"event":"cmd_output","timestamp":1607098382,"output":": :skip}\n\u001b[0m\u001b[22m\n16:13:02.919 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.Initi"},{"event":"cmd_output","timestamp":1607098382,"output":"alizingState with name Elixir.Ppl.PplBlocks.STMHandler.InitializingState :: period: 100 ms, metric_n"},{"event":"cmd_output","timestamp":1607098382,"output":"ame: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-InitializingState\"]}, recurring args: %{all"},{"event":"cmd_output","timestamp":1607098382,"output":"owed_states: [\"initializing\", \"waiting\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks."},{"event":"cmd_output","timestamp":1607098382,"output":"Model.PplBlocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning:"},{"event":"cmd_output","timestamp":1607098382,"output":" [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], sc"},{"event":"cmd_output","timestamp":1607098382,"output":"hema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:02.919 [info] Period"},{"event":"cmd_output","timestamp":1607098382,"output":"ic from module Elixir.Ppl.PplBlocks.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandle"},{"event":"cmd_output","timestamp":1607098382,"output":"r.WaitingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-"},{"event":"cmd_output","timestamp":1607098382,"output":"WaitingState\"]}, recurring args: %{allowed_states: [\"waiting\", \"running\", \"done\"], cooling_time_sec:"},{"event":"cmd_output","timestamp":1607098382,"output":" 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"waiting\", publisher_cb: #Function"},{"event":"cmd_output","timestamp":1607098382,"output":"<0.8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, "},{"event":"cmd_output","timestamp":1607098382,"output":":terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: P"},{"event":"cmd_output","timestamp":1607098382,"output":"pl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:02.919 [info] Periodic from"},{"event":"cmd_output","timestamp":1607098382,"output":" module Elixir.Ppl.PplBlocks.STMHandler.RunningState with name Elixir.Ppl.PplBlocks.STMHandler.Runni"},{"event":"cmd_output","timestamp":1607098382,"output":"ngState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-Running"},{"event":"cmd_output","timestamp":1607098382,"output":"State\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, i"},{"event":"cmd_output","timestamp":1607098382,"output":"nitial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"running\", publisher_cb: #Function<0.28"},{"event":"cmd_output","timestamp":1607098382,"output":"166834/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :ter"},{"event":"cmd_output","timestamp":1607098382,"output":"minate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], sc"},{"event":"cmd_output","timestamp":1607098382,"output":"hema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:02.919 [info] Period"},{"event":"cmd_output","timestamp":1607098382,"output":"ic from module Elixir.Ppl.PplBlocks.STMHandler.StoppingState with name Elixir.Ppl.PplBlocks.STMHandl"},{"event":"cmd_output","timestamp":1607098382,"output":"er.StoppingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandle"},{"event":"cmd_output","timestamp":1607098382,"output":"r-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, in"},{"event":"cmd_output","timestamp":1607098382,"output":"itial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"stopping\", publisher_cb: #Function<0.10"},{"event":"cmd_output","timestamp":1607098382,"output":"4215991/1 in Ppl.PplBlocks.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :t"},{"event":"cmd_output","timestamp":1607098382,"output":"erminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], "},{"event":"cmd_output","timestamp":1607098382,"output":"schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:02.919 [info] Peri"},{"event":"cmd_output","timestamp":1607098382,"output":"odic from module Elixir.Block.Blocks.STMHandler.InitializingState with name Elixir.Block.Blocks.STMH"},{"event":"cmd_output","timestamp":1607098382,"output":"andler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STM"},{"event":"cmd_output","timestamp":1607098382,"output":"Handler-InitializingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_se"},{"event":"cmd_output","timestamp":1607098382,"output":"c: 0, initial_query: Block.Blocks.Model.Blocks, observed_state: \"initializing\", publisher_cb: :skip,"},{"event":"cmd_output","timestamp":1607098382,"output":" repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :b"},{"event":"cmd_output","timestamp":1607098382,"output":"lock_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:02.919 [info]"},{"event":"cmd_output","timestamp":1607098382,"output":" Periodic from module Elixir.Block.Blocks.STMHandler.RunningState with name Elixir.Block.Blocks.STM"},{"event":"cmd_output","timestamp":1607098382,"output":"Handler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHand"},{"event":"cmd_output","timestamp":1607098382,"output":"ler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time"},{"event":"cmd_output","timestamp":1607098382,"output":"_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"running\", publisher_cb: :skip, "},{"event":"cmd_output","timestamp":1607098382,"output":"repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :bl"},{"event":"cmd_output","timestamp":1607098382,"output":"ock_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:02.919 [info] "},{"event":"cmd_output","timestamp":1607098382,"output":" Periodic from module Elixir.Block.Blocks.STMHandler.StoppingState with name Elixir.Block.Blocks.STM"},{"event":"cmd_output","timestamp":1607098382,"output":"Handler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHan"},{"event":"cmd_output","timestamp":1607098382,"output":"dler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2,"},{"event":"cmd_output","timestamp":1607098382,"output":" initial_query: Block.Blocks.Model.Blocks, observed_state: \"stopping\", publisher_cb: :skip, repo: Bl"},{"event":"cmd_output","timestamp":1607098382,"output":"ock.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id],"},{"event":"cmd_output","timestamp":1607098382,"output":" schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:02.919 [info] Periodi"},{"event":"cmd_output","timestamp":1607098382,"output":"c from module Elixir.Block.Tasks.STMHandler.PendingState with name Elixir.Block.Tasks.STMHandler.Pen"},{"event":"cmd_output","timestamp":1607098382,"output":"dingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingS"},{"event":"cmd_output","timestamp":1607098382,"output":"tate\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: "},{"event":"cmd_output","timestamp":1607098382,"output":"Block.Tasks.Model.Tasks, observed_state: \"pending\", publisher_cb: :skip, repo: Block.EctoRepo, retur"},{"event":"cmd_output","timestamp":1607098382,"output":"ning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id, :build_request_id],"},{"event":"cmd_output","timestamp":1607098382,"output":" schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:02.920 [info] Periodic "},{"event":"cmd_output","timestamp":1607098382,"output":"from module Elixir.Block.Tasks.STMHandler.RunningState with name Elixir.Block.Tasks.STMHandler.Runni"},{"event":"cmd_output","timestamp":1607098382,"output":"ngState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningSta"},{"event":"cmd_output","timestamp":1607098382,"output":"te\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, init"},{"event":"cmd_output","timestamp":1607098382,"output":"ial_query: Block.Tasks.Model.Tasks, observed_state: \"running\", publisher_cb: :skip, repo: Block.Ecto"},{"event":"cmd_output","timestamp":1607098382,"output":"Repo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema:"},{"event":"cmd_output","timestamp":1607098382,"output":" Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:02.920 [info] Periodic from mod"},{"event":"cmd_output","timestamp":1607098382,"output":"ule Elixir.Block.Tasks.STMHandler.StoppingState with name Elixir.Block.Tasks.STMHandler.StoppingStat"},{"event":"cmd_output","timestamp":1607098382,"output":"e :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]}"},{"event":"cmd_output","timestamp":1607098382,"output":", recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block"},{"event":"cmd_output","timestamp":1607098382,"output":".Tasks.Model.Tasks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning"},{"event":"cmd_output","timestamp":1607098382,"output":": [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Mo"},{"event":"cmd_output","timestamp":1607098383,"output":"del.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:03.042 [info] ppl_id: c93ffe12-dc17-40e8-ae28-"},{"event":"cmd_output","timestamp":1607098383,"output":"d6bff60ce186, type: PplRequests, event: persisted source_args for pipeline: c93ffe12-dc17-40e8-ae28-"},{"event":"cmd_output","timestamp":1607098383,"output":"d6bff60ce186, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098383,"output":"22m\n16:13:03.045 [info] ppl_id: c93ffe12-dc17-40e8-ae28-d6bff60ce186, type: PplSubInits, state: fe"},{"event":"cmd_output","timestamp":1607098383,"output":"tching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1"},{"event":"cmd_output","timestamp":1607098383,"output":"(L90), \n\u001b[0m\u001b[22m\n16:13:03.065 [info] ppl_id: c93ffe12-dc17-40e8-ae28-d6bff60ce186, type: PplSubI"},{"event":"cmd_output","timestamp":1607098383,"output":"nits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl"},{"event":"cmd_output","timestamp":1607098383,"output":".log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:03.083 [info] ppl_id: c93ffe12-dc17-40e8-ae28-d6bff60c"},{"event":"cmd_output","timestamp":1607098383,"output":"e186, type: PplRequests, event: persisted definition for request with request_token: 95d24322-364b-1"},{"event":"cmd_output","timestamp":1607098383,"output":"1eb-9b40-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L"},{"event":"cmd_output","timestamp":1607098383,"output":"76), \n\u001b[0m\u001b[22m\n16:13:03.087 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ec"},{"event":"cmd_output","timestamp":1607098383,"output":"to.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:13:03.085475], name: \"master-.s"},{"event":"cmd_output","timestamp":1607098383,"output":"emaphore/block_filters.yml\", organization_id: \"38121b95-b5d3-438b-8472-424dad2c3082\", project_id: \"f"},{"event":"cmd_output","timestamp":1607098383,"output":"1afdbed-4d4c-42bb-aa3f-d8c22e46edab\", queue_id: \"3305d610-3d68-4a34-99bf-1d4a30130154\", scope: \"proj"},{"event":"cmd_output","timestamp":1607098383,"output":"ect\", updated_at: ~N[2020-12-04 16:13:03.085485], user_generated: false}}\n\u001b[0m\u001b[22m\n16:13:03.094 ["},{"event":"cmd_output","timestamp":1607098383,"output":"info] ppl_id: not_available, event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitS"},{"event":"cmd_output","timestamp":1607098383,"output":"tate.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:03.094 [info] event: created, origin: Elixir.Ppl.PplSubIni"},{"event":"cmd_output","timestamp":1607098383,"output":"ts.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:03.095 [info] ppl_id: c93ffe12-d"},{"event":"cmd_output","timestamp":1607098383,"output":"c17-40e8-ae28-d6bff60ce186, type: PplBlocks, block_index: 0, state: initializing, event: created, re"},{"event":"cmd_output","timestamp":1607098383,"output":"covery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098383,"output":"[22m\n16:13:03.095 [info] ppl_id: c93ffe12-dc17-40e8-ae28-d6bff60ce186, type: PplBlocks, block_inde"},{"event":"cmd_output","timestamp":1607098383,"output":"x: 1, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHand"},{"event":"cmd_output","timestamp":1607098383,"output":"ler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:03.098 [info] ppl_id: c93ffe12-dc17-40e8-a"},{"event":"cmd_output","timestamp":1607098383,"output":"e28-d6bff60ce186, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098383,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:03.109 [info] p"},{"event":"cmd_output","timestamp":1607098383,"output":"pl_id: c93ffe12-dc17-40e8-ae28-d6bff60ce186, type: PplBlocks, block_index: 0, state: waiting, event:"},{"event":"cmd_output","timestamp":1607098383,"output":" exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098383,"output":"[22m\n16:13:03.110 [info] ppl_id: c93ffe12-dc17-40e8-ae28-d6bff60ce186, type: Ppls, state: pending,"},{"event":"cmd_output","timestamp":1607098383,"output":" event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), "},{"event":"cmd_output","timestamp":1607098383,"output":"\n\u001b[0m\u001b[22m\n16:13:03.124 [info] ppl_id: c93ffe12-dc17-40e8-ae28-d6bff60ce186, type: PplBlocks, blo"},{"event":"cmd_output","timestamp":1607098383,"output":"ck_index: 1, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Im"},{"event":"cmd_output","timestamp":1607098383,"output":"pl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:03.128 [info] ppl_id: c93ffe12-dc17-40e8-ae28-d6bff6"},{"event":"cmd_output","timestamp":1607098383,"output":"0ce186, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper"},{"event":"cmd_output","timestamp":1607098383,"output":".STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:03.140 [info] ppl_id: c93ffe12-dc17-40e8-ae28"},{"event":"cmd_output","timestamp":1607098383,"output":"-d6bff60ce186, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098383,"output":".Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:03.145 [info] PplBlocks WaitingState S"},{"event":"cmd_output","timestamp":1607098383,"output":"TM is scheduling block 0 from pipeline: \"c93ffe12-dc17-40e8-ae28-d6bff60ce186\"\n\u001b[0m\u001b[22m\n16:13:03."},{"event":"cmd_output","timestamp":1607098383,"output":"149 [info] block_id: f97c3647-ef33-4986-9098-24d97d86be4a, type: BlockRequests, event: persisted bl"},{"event":"cmd_output","timestamp":1607098383,"output":"ock run request from ppl c93ffe12-dc17-40e8-ae28-d6bff60ce186 for block 0, origin: Elixir.Block.Bloc"},{"event":"cmd_output","timestamp":1607098383,"output":"kRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:13:03.151 [info] bloc"},{"event":"cmd_output","timestamp":1607098383,"output":"k_id: f97c3647-ef33-4986-9098-24d97d86be4a, type: Blocks, state: initializing, event: initializing, "},{"event":"cmd_output","timestamp":1607098383,"output":"recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:13"},{"event":"cmd_output","timestamp":1607098383,"output":":03.153 [info] Block 0 of pipeline with id: c93ffe12-dc17-40e8-ae28-d6bff60ce186 scheduled in block"},{"event":"cmd_output","timestamp":1607098383,"output":" service with id: : \"f97c3647-ef33-4986-9098-24d97d86be4a\"\n\u001b[0m\u001b[22m\n16:13:03.155 [info] ppl_id: "},{"event":"cmd_output","timestamp":1607098383,"output":"c93ffe12-dc17-40e8-ae28-d6bff60ce186, type: PplBlocks, block_index: 0, state: running, event: exit_s"},{"event":"cmd_output","timestamp":1607098383,"output":"cheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098383,"output":"6:13:03.158 [info] block_id: f97c3647-ef33-4986-9098-24d97d86be4a, type: BlockRequests, event: pers"},{"event":"cmd_output","timestamp":1607098383,"output":"isted build and sub_ppl details for block_request: f97c3647-ef33-4986-9098-24d97d86be4a, origin: Eli"},{"event":"cmd_output","timestamp":1607098383,"output":"xir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:13:03.161 [i"},{"event":"cmd_output","timestamp":1607098383,"output":"nfo] block_id: f97c3647-ef33-4986-9098-24d97d86be4a, type: Tasks, state: pending, event: created, r"},{"event":"cmd_output","timestamp":1607098383,"output":"ecovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098383,"output":"22m\n16:13:03.166 [info] block_id: f97c3647-ef33-4986-9098-24d97d86be4a, type: Blocks, state: runni"},{"event":"cmd_output","timestamp":1607098383,"output":"ng, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90"},{"event":"cmd_output","timestamp":1607098383,"output":"), \n\u001b[0m\u001b[22m\n16:13:03.179 [info] block_id: f97c3647-ef33-4986-9098-24d97d86be4a, type: Tasks, st"},{"event":"cmd_output","timestamp":1607098383,"output":"ate: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_ch"},{"event":"cmd_output","timestamp":1607098383,"output":"ange/1(L90), \n\u001b[0m\u001b[22m\n16:13:03.261 [info] block_id: f97c3647-ef33-4986-9098-24d97d86be4a, type:"},{"event":"cmd_output","timestamp":1607098383,"output":" Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_s"},{"event":"cmd_output","timestamp":1607098383,"output":"tate_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:03.265 [info] block_id: f97c3647-ef33-4986-9098-24d97d86be4a"},{"event":"cmd_output","timestamp":1607098383,"output":", type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Im"},{"event":"cmd_output","timestamp":1607098383,"output":"pl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:03.271 [info] ppl_id: c93ffe12-dc17-40e8-ae28-d6bff6"},{"event":"cmd_output","timestamp":1607098383,"output":"0ce186, block_id: f97c3647-ef33-4986-9098-24d97d86be4a, type: PplBlocks, block_index: 0, state: done"},{"event":"cmd_output","timestamp":1607098383,"output":", result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_stat"},{"event":"cmd_output","timestamp":1607098383,"output":"e_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:03.278 [info] PplBlocks WaitingState STM is scheduling block 1 "},{"event":"cmd_output","timestamp":1607098383,"output":"from pipeline: \"c93ffe12-dc17-40e8-ae28-d6bff60ce186\"\n\u001b[0m\u001b[22m\n16:13:03.291 [info] block_id: 577"},{"event":"cmd_output","timestamp":1607098383,"output":"1b45b-0255-415b-bed9-16be38af53ef, type: BlockRequests, event: persisted block run request from ppl "},{"event":"cmd_output","timestamp":1607098383,"output":"c93ffe12-dc17-40e8-ae28-d6bff60ce186 for block 1, origin: Elixir.Block.BlockRequests.Model.BlockRequ"},{"event":"cmd_output","timestamp":1607098383,"output":"estsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:13:03.294 [info] block_id: 5771b45b-0255-415b-"},{"event":"cmd_output","timestamp":1607098383,"output":"bed9-16be38af53ef, type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098383,"output":": Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:13:03.294 [info] Block 1 o"},{"event":"cmd_output","timestamp":1607098383,"output":"f pipeline with id: c93ffe12-dc17-40e8-ae28-d6bff60ce186 scheduled in block service with id: : \"5771"},{"event":"cmd_output","timestamp":1607098383,"output":"b45b-0255-415b-bed9-16be38af53ef\"\n\u001b[0m\u001b[22m\n16:13:03.298 [info] ppl_id: c93ffe12-dc17-40e8-ae28-d"},{"event":"cmd_output","timestamp":1607098383,"output":"6bff60ce186, type: PplBlocks, block_index: 1, state: running, event: exit_scheduling, recovery_count"},{"event":"cmd_output","timestamp":1607098383,"output":": 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:03.306 [info] block"},{"event":"cmd_output","timestamp":1607098383,"output":"_id: 5771b45b-0255-415b-bed9-16be38af53ef, type: BlockRequests, event: persisted build and sub_ppl d"},{"event":"cmd_output","timestamp":1607098383,"output":"etails for block_request: 5771b45b-0255-415b-bed9-16be38af53ef, origin: Elixir.Block.BlockRequests.M"},{"event":"cmd_output","timestamp":1607098383,"output":"odel.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:13:03.308 [info] block_id: 5771b45b-"},{"event":"cmd_output","timestamp":1607098383,"output":"0255-415b-bed9-16be38af53ef, type: Tasks, state: pending, event: created, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098383,"output":" Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:13:03.310 [info] "},{"event":"cmd_output","timestamp":1607098383,"output":" block_id: 5771b45b-0255-415b-bed9-16be38af53ef, type: Blocks, state: running, event: exit_schedulin"},{"event":"cmd_output","timestamp":1607098383,"output":"g, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:03."},{"event":"cmd_output","timestamp":1607098383,"output":"336 [info] block_id: 5771b45b-0255-415b-bed9-16be38af53ef, type: Tasks, state: running, event: exit"},{"event":"cmd_output","timestamp":1607098383,"output":"_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098383,"output":"\n16:13:03.370 [info] block_id: 5771b45b-0255-415b-bed9-16be38af53ef, type: Tasks, state: done, even"},{"event":"cmd_output","timestamp":1607098383,"output":"t: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098383,"output":"m\u001b[22m\n16:13:03.377 [info] block_id: 5771b45b-0255-415b-bed9-16be38af53ef, type: Blocks, state: do"},{"event":"cmd_output","timestamp":1607098383,"output":"ne, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90"},{"event":"cmd_output","timestamp":1607098383,"output":"), \n\u001b[0m\u001b[22m\n16:13:03.385 [info] ppl_id: c93ffe12-dc17-40e8-ae28-d6bff60ce186, block_id: 5771b45"},{"event":"cmd_output","timestamp":1607098383,"output":"b-0255-415b-bed9-16be38af53ef, type: PplBlocks, block_index: 1, state: done, result: failed, event: "},{"event":"cmd_output","timestamp":1607098383,"output":"exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098383,"output":"22m\n16:13:03.403 [info] ppl_id: c93ffe12-dc17-40e8-ae28-d6bff60ce186, type: Ppls, state: done, res"},{"event":"cmd_output","timestamp":1607098383,"output":"ult: failed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_cha"},{"event":"cmd_output","timestamp":1607098383,"output":"nge/1(L90), \n\u001b[0m\u001b[32m\r * test no filters for given label - block executed (604.0ms)\u001b[0m\n * test"},{"event":"cmd_output","timestamp":1607098383,"output":" skip filter for given label - block skipped\u001b[22m\n16:13:03.497 [info] Request: 'run: %{\"branch_id\""},{"event":"cmd_output","timestamp":1607098383,"output":" => \"c728d053-0c36-4965-a837-32890aa20120\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469\","},{"event":"cmd_output","timestamp":1607098383,"output":" \"file_name\" => \"block_filters.yml\", \"hook_id\" => \"962dcefe-364b-11eb-970c-5254005464e2\", \"label\" =>"},{"event":"cmd_output","timestamp":1607098383,"output":" \"dev-test\", \"organization_id\" => \"0f0b656f-f9e4-4767-be75-d7943c5eb856\", \"owner\" => \"rt\", \"project_"},{"event":"cmd_output","timestamp":1607098383,"output":"id\" => \"4f4f4fc1-a53f-4c76-bde8-6dfeaf11377d\", \"repo_name\" => \"22_skip_block\", \"request_token\" => \"9"},{"event":"cmd_output","timestamp":1607098383,"output":"62dc684-364b-11eb-bc02-5254005464e2\", \"requester_id\" => \"4ba0dfc8-9e14-4cef-8e43-ab5dc464a8ac\", \"ser"},{"event":"cmd_output","timestamp":1607098383,"output":"vice\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"8f635441"},{"event":"cmd_output","timestamp":1607098383,"output":"-4855-4d56-82df-3498c643e5b5\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:13:03.500 [info] ppl_i"},{"event":"cmd_output","timestamp":1607098383,"output":"d: 3d8a0302-ccbb-476c-8c2e-3646ce6e43fb, type: PplRequests, event: persisted schedule request with r"},{"event":"cmd_output","timestamp":1607098383,"output":"equest_token: 962dc684-364b-11eb-bc02-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequests"},{"event":"cmd_output","timestamp":1607098383,"output":"Queries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:13:03.502 [info] ppl_id: 3d8a0302-ccbb-476c-8c2e-3"},{"event":"cmd_output","timestamp":1607098383,"output":"646ce6e43fb, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098383,"output":".Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:13:03.505 [info] Project 4f4f"},{"event":"cmd_output","timestamp":1607098383,"output":"4fc1-a53f-4c76-bde8-6dfeaf11377d and branch masterlatest_wf details updated: \"wf_id: 8f635441-4855-4"},{"event":"cmd_output","timestamp":1607098383,"output":"d56-82df-3498c643e5b5, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:13:03.506 [info] Persisted ppl_sub_init for pip"},{"event":"cmd_output","timestamp":1607098383,"output":"eline with ppl_id: 3d8a0302-ccbb-476c-8c2e-3646ce6e43fb: %Ppl.PplSubInits.Model.PplSubInits{__meta__"},{"event":"cmd_output","timestamp":1607098383,"output":": #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil"},{"event":"cmd_output","timestamp":1607098383,"output":", id: 288, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:13:03.505742], "},{"event":"cmd_output","timestamp":1607098383,"output":"pipeline_requests: #Ecto.Association.NotLoaded, ppl_id"},{"event":"cmd_output","timestamp":1607098383,"output":": \"3d8a0302-ccbb-476c-8c2e-3646ce6e43fb\", recovery_count: 0, result: nil, result_reason: nil, state:"},{"event":"cmd_output","timestamp":1607098383,"output":" \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:13:03."},{"event":"cmd_output","timestamp":1607098383,"output":"505747]}\n\u001b[0m\u001b[22m\n16:13:03.510 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.Initializi"},{"event":"cmd_output","timestamp":1607098383,"output":"ngState with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl"},{"event":"cmd_output","timestamp":1607098383,"output":".beholder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\""},{"event":"cmd_output","timestamp":1607098383,"output":"initializing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed"},{"event":"cmd_output","timestamp":1607098383,"output":"_state: \"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingSta"},{"event":"cmd_output","timestamp":1607098383,"output":"te.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :"},{"event":"cmd_output","timestamp":1607098383,"output":"recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:03."},{"event":"cmd_output","timestamp":1607098383,"output":"510 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.S"},{"event":"cmd_output","timestamp":1607098383,"output":"TMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandle"},{"event":"cmd_output","timestamp":1607098383,"output":"r-PendingState\"]}, recurring args: %{allowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], cool"},{"event":"cmd_output","timestamp":1607098383,"output":"ing_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publisher_cb: #Funct"},{"event":"cmd_output","timestamp":1607098383,"output":"ion<0.8493005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :t"},{"event":"cmd_output","timestamp":1607098383,"output":"erminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Pp"},{"event":"cmd_output","timestamp":1607098383,"output":"ls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:13:03.511 [info] Periodic from module Elixi"},{"event":"cmd_output","timestamp":1607098383,"output":"r.Ppl.Ppls.STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 "},{"event":"cmd_output","timestamp":1607098383,"output":"ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{a"},{"event":"cmd_output","timestamp":1607098383,"output":"llowed_states: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.P"},{"event":"cmd_output","timestamp":1607098383,"output":"pls, observed_state: \"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.Queuing"},{"event":"cmd_output","timestamp":1607098383,"output":"State.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result"},{"event":"cmd_output","timestamp":1607098383,"output":", :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:"},{"event":"cmd_output","timestamp":1607098383,"output":"03.511 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098383,"output":"s.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHan"},{"event":"cmd_output","timestamp":1607098383,"output":"dler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_tim"},{"event":"cmd_output","timestamp":1607098383,"output":"e_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"running\", publisher_cb: #Function<0."},{"event":"cmd_output","timestamp":1607098383,"output":"74670282/1 in Ppl.Ppls.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :termin"},{"event":"cmd_output","timestamp":1607098383,"output":"ate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, t"},{"event":"cmd_output","timestamp":1607098383,"output":"ask_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:13:03.512 [info] Periodic from module Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098383,"output":".Ppls.STMHandler.StoppingState with name Elixir.Ppl.Ppls.STMHandler.StoppingState :: period: 100 ms,"},{"event":"cmd_output","timestamp":1607098383,"output":" metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring args: %{all"},{"event":"cmd_output","timestamp":1607098383,"output":"owed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observe"},{"event":"cmd_output","timestamp":1607098383,"output":"d_state: \"stopping\", publisher_cb: #Function<0.71803493/1 in Ppl.Ppls.STMHandler.StoppingState.args/"},{"event":"cmd_output","timestamp":1607098383,"output":"0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery"},{"event":"cmd_output","timestamp":1607098383,"output":"_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:03.512 [inf"},{"event":"cmd_output","timestamp":1607098383,"output":"o] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubI"},{"event":"cmd_output","timestamp":1607098383,"output":"nits.STMHandler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubIn"},{"event":"cmd_output","timestamp":1607098383,"output":"its-STMHandler-CreatedState\"]}, recurring args: %{allowed_states: [\"fetching\", \"done\"], cooling_time"},{"event":"cmd_output","timestamp":1607098383,"output":"_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"created\", publisher_cb: "},{"event":"cmd_output","timestamp":1607098383,"output":":skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recov"},{"event":"cmd_output","timestamp":1607098383,"output":"ery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098383,"output":"16:13:03.513 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name "},{"event":"cmd_output","timestamp":1607098383,"output":"Elixir.Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_"},{"event":"cmd_output","timestamp":1607098383,"output":"up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %{allowed_states: [\"regular_init"},{"event":"cmd_output","timestamp":1607098383,"output":"\", \"compilation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, o"},{"event":"cmd_output","timestamp":1607098383,"output":"bserved_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_requ"},{"event":"cmd_output","timestamp":1607098383,"output":"est, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubIn"},{"event":"cmd_output","timestamp":1607098383,"output":"its, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:03.513 [info] Periodic from module Elixir.Ppl.PplSub"},{"event":"cmd_output","timestamp":1607098383,"output":"Inits.STMHandler.CompilationState with name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: pe"},{"event":"cmd_output","timestamp":1607098383,"output":"riod: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}"},{"event":"cmd_output","timestamp":1607098383,"output":", recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_tim"},{"event":"cmd_output","timestamp":1607098383,"output":"e_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"compilation\", publishe"},{"event":"cmd_output","timestamp":1607098383,"output":"r_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, "},{"event":"cmd_output","timestamp":1607098383,"output":":recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098383,"output":"[22m\n16:13:03.514 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState w"},{"event":"cmd_output","timestamp":1607098383,"output":"ith name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.be"},{"event":"cmd_output","timestamp":1607098383,"output":"holder-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurring args: %{allowed_states:"},{"event":"cmd_output","timestamp":1607098383,"output":" [\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"r"},{"event":"cmd_output","timestamp":1607098383,"output":"egular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated"},{"event":"cmd_output","timestamp":1607098383,"output":"_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_sup"},{"event":"cmd_output","timestamp":1607098383,"output":"ervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:03.515 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandle"},{"event":"cmd_output","timestamp":1607098383,"output":"r.InitializingState with name Elixir.Ppl.PplBlocks.STMHandler.InitializingState :: period: 100 ms, m"},{"event":"cmd_output","timestamp":1607098383,"output":"etric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-InitializingState\"]}, recurring args"},{"event":"cmd_output","timestamp":1607098383,"output":": %{allowed_states: [\"initializing\", \"waiting\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098383,"output":"Blocks.Model.PplBlocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, ret"},{"event":"cmd_output","timestamp":1607098383,"output":"urning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_ind"},{"event":"cmd_output","timestamp":1607098383,"output":"ex], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:03.515 [info] "},{"event":"cmd_output","timestamp":1607098383,"output":" Periodic from module Elixir.Ppl.PplBlocks.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks.ST"},{"event":"cmd_output","timestamp":1607098383,"output":"MHandler.WaitingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMH"},{"event":"cmd_output","timestamp":1607098383,"output":"andler-WaitingState\"]}, recurring args: %{allowed_states: [\"waiting\", \"running\", \"done\"], cooling_ti"},{"event":"cmd_output","timestamp":1607098383,"output":"me_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"waiting\", publisher_cb: #F"},{"event":"cmd_output","timestamp":1607098383,"output":"unction<0.8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, returning:"},{"event":"cmd_output","timestamp":1607098383,"output":" [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], sc"},{"event":"cmd_output","timestamp":1607098383,"output":"hema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:03.516 [info] Period"},{"event":"cmd_output","timestamp":1607098383,"output":"ic from module Elixir.Ppl.PplBlocks.STMHandler.RunningState with name Elixir.Ppl.PplBlocks.STMHandle"},{"event":"cmd_output","timestamp":1607098383,"output":"r.RunningState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-"},{"event":"cmd_output","timestamp":1607098383,"output":"RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec"},{"event":"cmd_output","timestamp":1607098383,"output":": -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"running\", publisher_cb: #Functi"},{"event":"cmd_output","timestamp":1607098383,"output":"on<0.28166834/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:i"},{"event":"cmd_output","timestamp":1607098383,"output":"d, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_"},{"event":"cmd_output","timestamp":1607098383,"output":"id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:03.516 [info] "},{"event":"cmd_output","timestamp":1607098383,"output":" Periodic from module Elixir.Ppl.PplBlocks.STMHandler.StoppingState with name Elixir.Ppl.PplBlocks.S"},{"event":"cmd_output","timestamp":1607098383,"output":"TMHandler.StoppingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-ST"},{"event":"cmd_output","timestamp":1607098383,"output":"MHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec:"},{"event":"cmd_output","timestamp":1607098383,"output":" -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"stopping\", publisher_cb: #Functi"},{"event":"cmd_output","timestamp":1607098383,"output":"on<0.104215991/1 in Ppl.PplBlocks.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: ["},{"event":"cmd_output","timestamp":1607098383,"output":":id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :bloc"},{"event":"cmd_output","timestamp":1607098383,"output":"k_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:03.517 [info"},{"event":"cmd_output","timestamp":1607098383,"output":"] Periodic from module Elixir.Block.Blocks.STMHandler.InitializingState with name Elixir.Block.Bloc"},{"event":"cmd_output","timestamp":1607098383,"output":"ks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blo"},{"event":"cmd_output","timestamp":1607098383,"output":"cks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_"},{"event":"cmd_output","timestamp":1607098383,"output":"time_sec: 0, initial_query: Block.Blocks.Model.Blocks, observed_state: \"initializing\", publisher_cb:"},{"event":"cmd_output","timestamp":1607098383,"output":" :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_co"},{"event":"cmd_output","timestamp":1607098383,"output":"unt, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:03.517"},{"event":"cmd_output","timestamp":1607098383,"output":" [info] Periodic from module Elixir.Block.Blocks.STMHandler.RunningState with name Elixir.Block.Blo"},{"event":"cmd_output","timestamp":1607098383,"output":"cks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-"},{"event":"cmd_output","timestamp":1607098383,"output":"STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooli"},{"event":"cmd_output","timestamp":1607098383,"output":"ng_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"running\", publisher_cb: "},{"event":"cmd_output","timestamp":1607098383,"output":":skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_cou"},{"event":"cmd_output","timestamp":1607098383,"output":"nt, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:03.518 "},{"event":"cmd_output","timestamp":1607098383,"output":"[info] Periodic from module Elixir.Block.Blocks.STMHandler.StoppingState with name Elixir.Block.Blo"},{"event":"cmd_output","timestamp":1607098383,"output":"cks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks"},{"event":"cmd_output","timestamp":1607098383,"output":"-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_s"},{"event":"cmd_output","timestamp":1607098383,"output":"ec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"stopping\", publisher_cb: :skip, r"},{"event":"cmd_output","timestamp":1607098383,"output":"epo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :blo"},{"event":"cmd_output","timestamp":1607098383,"output":"ck_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:03.518 [info] "},{"event":"cmd_output","timestamp":1607098383,"output":"Periodic from module Elixir.Block.Tasks.STMHandler.PendingState with name Elixir.Block.Tasks.STMHand"},{"event":"cmd_output","timestamp":1607098383,"output":"ler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-P"},{"event":"cmd_output","timestamp":1607098383,"output":"endingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_"},{"event":"cmd_output","timestamp":1607098383,"output":"query: Block.Tasks.Model.Tasks, observed_state: \"pending\", publisher_cb: :skip, repo: Block.EctoRepo"},{"event":"cmd_output","timestamp":1607098383,"output":", returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id, :build_reque"},{"event":"cmd_output","timestamp":1607098383,"output":"st_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:03.519 [info] Pe"},{"event":"cmd_output","timestamp":1607098383,"output":"riodic from module Elixir.Block.Tasks.STMHandler.RunningState with name Elixir.Block.Tasks.STMHandle"},{"event":"cmd_output","timestamp":1607098383,"output":"r.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-Run"},{"event":"cmd_output","timestamp":1607098383,"output":"ningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -"},{"event":"cmd_output","timestamp":1607098383,"output":"2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"running\", publisher_cb: :skip, repo: Blo"},{"event":"cmd_output","timestamp":1607098383,"output":"ck.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], "},{"event":"cmd_output","timestamp":1607098383,"output":"schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:03.519 [info] Periodic f"},{"event":"cmd_output","timestamp":1607098383,"output":"rom module Elixir.Block.Tasks.STMHandler.StoppingState with name Elixir.Block.Tasks.STMHandler.Stopp"},{"event":"cmd_output","timestamp":1607098383,"output":"ingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-StoppingS"},{"event":"cmd_output","timestamp":1607098383,"output":"tate\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query"},{"event":"cmd_output","timestamp":1607098383,"output":": Block.Tasks.Model.Tasks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, re"},{"event":"cmd_output","timestamp":1607098383,"output":"turning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.T"},{"event":"cmd_output","timestamp":1607098383,"output":"asks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:03.630 [info] ppl_id: 3d8a0302-ccbb-476"},{"event":"cmd_output","timestamp":1607098383,"output":"c-8c2e-3646ce6e43fb, type: PplRequests, event: persisted source_args for pipeline: 3d8a0302-ccbb-476"},{"event":"cmd_output","timestamp":1607098383,"output":"c-8c2e-3646ce6e43fb, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \r"},{"event":"cmd_output","timestamp":1607098383,"output":"\n\u001b[0m\u001b[22m\n16:13:03.632 [info] ppl_id: 3d8a0302-ccbb-476c-8c2e-3646ce6e43fb, type: PplSubInits, st"},{"event":"cmd_output","timestamp":1607098383,"output":"ate: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098383,"output":"hange/1(L90), \n\u001b[0m\u001b[22m\n16:13:03.657 [info] ppl_id: 3d8a0302-ccbb-476c-8c2e-3646ce6e43fb, type: "},{"event":"cmd_output","timestamp":1607098383,"output":"PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.S"},{"event":"cmd_output","timestamp":1607098383,"output":"TM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:03.678 [info] ppl_id: 3d8a0302-ccbb-476c-8c2e-3"},{"event":"cmd_output","timestamp":1607098383,"output":"646ce6e43fb, type: PplRequests, event: persisted definition for request with request_token: 962dc684"},{"event":"cmd_output","timestamp":1607098383,"output":"-364b-11eb-bc02-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definit"},{"event":"cmd_output","timestamp":1607098383,"output":"ion/3(L76), \n\u001b[0m\u001b[22m\n16:13:03.682 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta"},{"event":"cmd_output","timestamp":1607098383,"output":"__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:13:03.680913], name: \"de"},{"event":"cmd_output","timestamp":1607098383,"output":"v-test-.semaphore/block_filters.yml\", organization_id: \"0f0b656f-f9e4-4767-be75-d7943c5eb856\", proje"},{"event":"cmd_output","timestamp":1607098383,"output":"ct_id: \"4f4f4fc1-a53f-4c76-bde8-6dfeaf11377d\", queue_id: \"7096e418-9e4b-48cb-9ff0-8d53ef9deceb\", sco"},{"event":"cmd_output","timestamp":1607098383,"output":"pe: \"project\", updated_at: ~N[2020-12-04 16:13:03.680922], user_generated: false}}\n\u001b[0m\u001b[22m\n16:13"},{"event":"cmd_output","timestamp":1607098383,"output":":03.687 [info] ppl_id: not_available, event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.Reg"},{"event":"cmd_output","timestamp":1607098383,"output":"ularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:03.687 [info] event: created, origin: Elixir.Ppl."},{"event":"cmd_output","timestamp":1607098383,"output":"PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:03.687 [info] ppl_id: 3"},{"event":"cmd_output","timestamp":1607098383,"output":"d8a0302-ccbb-476c-8c2e-3646ce6e43fb, type: PplBlocks, block_index: 0, state: initializing, event: cr"},{"event":"cmd_output","timestamp":1607098383,"output":"eated, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105)"},{"event":"cmd_output","timestamp":1607098383,"output":", \n\u001b[0m\u001b[22m\n16:13:03.687 [info] ppl_id: 3d8a0302-ccbb-476c-8c2e-3646ce6e43fb, type: PplBlocks, b"},{"event":"cmd_output","timestamp":1607098383,"output":"lock_index: 1, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInit"},{"event":"cmd_output","timestamp":1607098383,"output":"s.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:03.689 [info] ppl_id: 3d8a0302-cc"},{"event":"cmd_output","timestamp":1607098383,"output":"bb-476c-8c2e-3646ce6e43fb, type: PplSubInits, state: done, result: passed, event: exit_scheduling, r"},{"event":"cmd_output","timestamp":1607098383,"output":"ecovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:03.701 "},{"event":"cmd_output","timestamp":1607098383,"output":"[info] ppl_id: 3d8a0302-ccbb-476c-8c2e-3646ce6e43fb, type: Ppls, state: pending, event: exit_schedu"},{"event":"cmd_output","timestamp":1607098383,"output":"ling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:"},{"event":"cmd_output","timestamp":1607098383,"output":"03.701 [info] ppl_id: 3d8a0302-ccbb-476c-8c2e-3646ce6e43fb, type: PplBlocks, block_index: 0, state:"},{"event":"cmd_output","timestamp":1607098383,"output":" waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change"},{"event":"cmd_output","timestamp":1607098383,"output":"/1(L90), \n\u001b[0m\u001b[22m\n16:13:03.708 [info] ppl_id: 3d8a0302-ccbb-476c-8c2e-3646ce6e43fb, type: PplBl"},{"event":"cmd_output","timestamp":1607098383,"output":"ocks, block_index: 1, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loop"},{"event":"cmd_output","timestamp":1607098383,"output":"er.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:03.718 [info] ppl_id: 3d8a0302-ccbb-476c-8c"},{"event":"cmd_output","timestamp":1607098383,"output":"2e-3646ce6e43fb, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098383,"output":"ir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:03.728 [info] ppl_id: 3d8a0302-ccbb-"},{"event":"cmd_output","timestamp":1607098383,"output":"476c-8c2e-3646ce6e43fb, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098383,"output":"n: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:03.736 [info] PplBlocks Waiti"},{"event":"cmd_output","timestamp":1607098383,"output":"ngState STM is scheduling block 0 from pipeline: \"3d8a0302-ccbb-476c-8c2e-3646ce6e43fb\"\n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098383,"output":"16:13:03.742 [info] block_id: f0fa4dac-99c0-415c-92ff-ef0af345a72d, type: BlockRequests, event: per"},{"event":"cmd_output","timestamp":1607098383,"output":"sisted block run request from ppl 3d8a0302-ccbb-476c-8c2e-3646ce6e43fb for block 0, origin: Elixir.B"},{"event":"cmd_output","timestamp":1607098383,"output":"lock.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:13:03.744 [in"},{"event":"cmd_output","timestamp":1607098383,"output":"fo] block_id: f0fa4dac-99c0-415c-92ff-ef0af345a72d, type: Blocks, state: initializing, event: initi"},{"event":"cmd_output","timestamp":1607098383,"output":"alizing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098383,"output":"2m\n16:13:03.746 [info] Block 0 of pipeline with id: 3d8a0302-ccbb-476c-8c2e-3646ce6e43fb scheduled"},{"event":"cmd_output","timestamp":1607098383,"output":" in block service with id: : \"f0fa4dac-99c0-415c-92ff-ef0af345a72d\"\n\u001b[0m\u001b[22m\n16:13:03.748 [info] "},{"event":"cmd_output","timestamp":1607098383,"output":" ppl_id: 3d8a0302-ccbb-476c-8c2e-3646ce6e43fb, type: PplBlocks, block_index: 0, state: running, even"},{"event":"cmd_output","timestamp":1607098383,"output":"t: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098383,"output":"m\u001b[22m\n16:13:03.752 [info] block_id: f0fa4dac-99c0-415c-92ff-ef0af345a72d, type: BlockRequests, ev"},{"event":"cmd_output","timestamp":1607098383,"output":"ent: persisted build and sub_ppl details for block_request: f0fa4dac-99c0-415c-92ff-ef0af345a72d, or"},{"event":"cmd_output","timestamp":1607098383,"output":"igin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:13:"},{"event":"cmd_output","timestamp":1607098383,"output":"03.754 [info] block_id: f0fa4dac-99c0-415c-92ff-ef0af345a72d, type: Tasks, state: pending, event: c"},{"event":"cmd_output","timestamp":1607098383,"output":"reated, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167),"},{"event":"cmd_output","timestamp":1607098383,"output":" \n\u001b[0m\u001b[22m\n16:13:03.756 [info] block_id: f0fa4dac-99c0-415c-92ff-ef0af345a72d, type: Blocks, sta"},{"event":"cmd_output","timestamp":1607098383,"output":"te: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_cha"},{"event":"cmd_output","timestamp":1607098383,"output":"nge/1(L90), \n\u001b[0m\u001b[22m\n16:13:03.768 [info] block_id: f0fa4dac-99c0-415c-92ff-ef0af345a72d, type: "},{"event":"cmd_output","timestamp":1607098383,"output":"Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098383,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:03.846 [info] block_id: f0fa4dac-99c0-415c-92ff-ef0af345a7"},{"event":"cmd_output","timestamp":1607098383,"output":"2d, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.I"},{"event":"cmd_output","timestamp":1607098383,"output":"mpl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:03.854 [info] block_id: f0fa4dac-99c0-415c-92ff-ef0"},{"event":"cmd_output","timestamp":1607098383,"output":"af345a72d, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loop"},{"event":"cmd_output","timestamp":1607098383,"output":"er.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:03.864 [info] ppl_id: 3d8a0302-ccbb-476c-8c"},{"event":"cmd_output","timestamp":1607098383,"output":"2e-3646ce6e43fb, block_id: f0fa4dac-99c0-415c-92ff-ef0af345a72d, type: PplBlocks, block_index: 0, st"},{"event":"cmd_output","timestamp":1607098383,"output":"ate: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl"},{"event":"cmd_output","timestamp":1607098383,"output":".log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:03.874 [info] PplBlocks WaitingState STM is scheduling"},{"event":"cmd_output","timestamp":1607098383,"output":" block 1 from pipeline: \"3d8a0302-ccbb-476c-8c2e-3646ce6e43fb\"\n\u001b[0m\u001b[22m\n16:13:03.882 [info] ppl_"},{"event":"cmd_output","timestamp":1607098383,"output":"id: 3d8a0302-ccbb-476c-8c2e-3646ce6e43fb, type: PplBlocks, block_index: 1, state: done, result: pass"},{"event":"cmd_output","timestamp":1607098383,"output":"ed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90"},{"event":"cmd_output","timestamp":1607098383,"output":"), \n\u001b[0m\u001b[22m\n16:13:03.892 [info] ppl_id: 3d8a0302-ccbb-476c-8c2e-3646ce6e43fb, type: Ppls, state"},{"event":"cmd_output","timestamp":1607098383,"output":": done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.lo"},{"event":"cmd_output","timestamp":1607098383,"output":"g_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test skip filter for given label - block skipped (487.7ms)\u001b[0"},{"event":"cmd_output","timestamp":1607098383,"output":"m\n * test execute filter for given label - block executed\u001b[22m\n16:13:03.989 [info] Request: 'run"},{"event":"cmd_output","timestamp":1607098383,"output":": %{\"branch_id\" => \"026ec56e-69e6-4929-a082-f7bf3fc6d56f\", \"branch_name\" => \"master\", \"commit_sha\" ="},{"event":"cmd_output","timestamp":1607098383,"output":"> \"75891a4469\", \"file_name\" => \"block_filters.yml\", \"hook_id\" => \"9678bdb0-364b-11eb-bde5-5254005464"},{"event":"cmd_output","timestamp":1607098383,"output":"e2\", \"label\" => \"dev-execute-dpl\", \"organization_id\" => \"99e03c97-4907-4e58-8bfb-9697a0729130\", \"own"},{"event":"cmd_output","timestamp":1607098383,"output":"er\" => \"rt\", \"project_id\" => \"dac6e9ce-cf55-4151-ac0b-78388868def6\", \"repo_name\" => \"22_skip_block\","},{"event":"cmd_output","timestamp":1607098383,"output":" \"request_token\" => \"9678b54a-364b-11eb-9697-5254005464e2\", \"requester_id\" => \"2d5ee185-da83-4a83-89"},{"event":"cmd_output","timestamp":1607098383,"output":"a9-d15fe5d493a4\", \"service\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"]"},{"event":"cmd_output","timestamp":1607098383,"output":", \"wf_id\" => \"e641f025-c891-4808-ac4b-d2c5a400d421\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098383,"output":"3:03.991 [info] ppl_id: ff076ba8-1383-44bd-8e6c-825d5074b571, type: PplRequests, event: persisted s"},{"event":"cmd_output","timestamp":1607098383,"output":"chedule request with request_token: 9678b54a-364b-11eb-9697-5254005464e2, origin: Elixir.Ppl.PplRequ"},{"event":"cmd_output","timestamp":1607098383,"output":"ests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:13:03.994 [info] ppl_id: ff0"},{"event":"cmd_output","timestamp":1607098383,"output":"76ba8-1383-44bd-8e6c-825d5074b571, type: Ppls, state: initializing, event: initializing, recovery_co"},{"event":"cmd_output","timestamp":1607098383,"output":"unt: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:13:03.99"},{"event":"cmd_output","timestamp":1607098383,"output":"8 [info] Project dac6e9ce-cf55-4151-ac0b-78388868def6 and branch masterlatest_wf details updated: \""},{"event":"cmd_output","timestamp":1607098384,"output":"wf_id: e641f025-c891-4808-ac4b-d2c5a400d421, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:13:04.000 [info] Persiste"},{"event":"cmd_output","timestamp":1607098384,"output":"d ppl_sub_init for pipeline with ppl_id: ff076ba8-1383-44bd-8e6c-825d5074b571: %Ppl.PplSubInits.Mode"},{"event":"cmd_output","timestamp":1607098384,"output":"l.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, "},{"event":"cmd_output","timestamp":1607098384,"output":"error_description: nil, id: 289, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12"},{"event":"cmd_output","timestamp":1607098384,"output":"-04 16:13:03.998485], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"ff076ba8-1383-44bd-8e6c-825d5074b571\", recovery_count: 0, result: nil, resu"},{"event":"cmd_output","timestamp":1607098384,"output":"lt_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~"},{"event":"cmd_output","timestamp":1607098384,"output":"N[2020-12-04 16:13:03.998493]}\n\u001b[0m\u001b[22m\n16:13:04.004 [info] Periodic from module Elixir.Ppl.Ppls"},{"event":"cmd_output","timestamp":1607098384,"output":".STMHandler.InitializingState with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 "},{"event":"cmd_output","timestamp":1607098384,"output":"ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args"},{"event":"cmd_output","timestamp":1607098384,"output":": %{allowed_states: [\"initializing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098384,"output":"s.Model.Ppls, observed_state: \"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMH"},{"event":"cmd_output","timestamp":1607098384,"output":"andler.InitializingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_"},{"event":"cmd_output","timestamp":1607098384,"output":"at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}"},{"event":"cmd_output","timestamp":1607098384,"output":"\n\u001b[0m\u001b[22m\n16:13:04.005 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingState with "},{"event":"cmd_output","timestamp":1607098384,"output":"name Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\""},{"event":"cmd_output","timestamp":1607098384,"output":", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"pending\", \"queuing\", \"r"},{"event":"cmd_output","timestamp":1607098384,"output":"unning\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\""},{"event":"cmd_output","timestamp":1607098384,"output":", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRep"},{"event":"cmd_output","timestamp":1607098384,"output":"o, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], sch"},{"event":"cmd_output","timestamp":1607098384,"output":"ema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:13:04.005 [info] Peri"},{"event":"cmd_output","timestamp":1607098384,"output":"odic from module Elixir.Ppl.Ppls.STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandler.Queuin"},{"event":"cmd_output","timestamp":1607098384,"output":"gState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]"},{"event":"cmd_output","timestamp":1607098384,"output":"}, recurring args: %{allowed_states: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, initial_q"},{"event":"cmd_output","timestamp":1607098384,"output":"uery: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.P"},{"event":"cmd_output","timestamp":1607098384,"output":"pls.STMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updat"},{"event":"cmd_output","timestamp":1607098384,"output":"ed_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :sk"},{"event":"cmd_output","timestamp":1607098384,"output":"ip}\n\u001b[0m\u001b[22m\n16:13:04.006 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.RunningState wi"},{"event":"cmd_output","timestamp":1607098384,"output":"th name Elixir.Ppl.Ppls.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_"},{"event":"cmd_output","timestamp":1607098384,"output":"up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\""},{"event":"cmd_output","timestamp":1607098384,"output":", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"running\", publ"},{"event":"cmd_output","timestamp":1607098384,"output":"isher_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, re"},{"event":"cmd_output","timestamp":1607098384,"output":"turning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: "},{"event":"cmd_output","timestamp":1607098384,"output":"Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:13:04.006 [info] Periodic "},{"event":"cmd_output","timestamp":1607098384,"output":"from module Elixir.Ppl.Ppls.STMHandler.StoppingState with name Elixir.Ppl.Ppls.STMHandler.StoppingSt"},{"event":"cmd_output","timestamp":1607098384,"output":"ate :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]},"},{"event":"cmd_output","timestamp":1607098384,"output":" recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Pp"},{"event":"cmd_output","timestamp":1607098384,"output":"ls.Model.Ppls, observed_state: \"stopping\", publisher_cb: #Function<0.71803493/1 in Ppl.Ppls.STMHandl"},{"event":"cmd_output","timestamp":1607098384,"output":"er.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :sta"},{"event":"cmd_output","timestamp":1607098384,"output":"te, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098384,"output":"22m\n16:13:04.006 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedState with n"},{"event":"cmd_output","timestamp":1607098384,"output":"ame Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.beholder-wa"},{"event":"cmd_output","timestamp":1607098384,"output":"ke_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args: %{allowed_states: [\"fetching\","},{"event":"cmd_output","timestamp":1607098384,"output":" \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"cr"},{"event":"cmd_output","timestamp":1607098384,"output":"eated\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :"},{"event":"cmd_output","timestamp":1607098384,"output":"state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_superviso"},{"event":"cmd_output","timestamp":1607098384,"output":"r: :skip}\n\u001b[0m\u001b[22m\n16:13:04.006 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.Fe"},{"event":"cmd_output","timestamp":1607098384,"output":"tchingState with name Elixir.Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 ms, metric_name"},{"event":"cmd_output","timestamp":1607098384,"output":": {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %{allowed_"},{"event":"cmd_output","timestamp":1607098384,"output":"states: [\"regular_init\", \"compilation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInit"},{"event":"cmd_output","timestamp":1607098384,"output":"s.Model.PplSubInits, observed_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning:"},{"event":"cmd_output","timestamp":1607098384,"output":" [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplS"},{"event":"cmd_output","timestamp":1607098384,"output":"ubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:04.006 [info] Periodic from mo"},{"event":"cmd_output","timestamp":1607098384,"output":"dule Elixir.Ppl.PplSubInits.STMHandler.CompilationState with name Elixir.Ppl.PplSubInits.STMHandler."},{"event":"cmd_output","timestamp":1607098384,"output":"CompilationState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandl"},{"event":"cmd_output","timestamp":1607098384,"output":"er-CompilationState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"stopping\""},{"event":"cmd_output","timestamp":1607098384,"output":", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \""},{"event":"cmd_output","timestamp":1607098384,"output":"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated"},{"event":"cmd_output","timestamp":1607098384,"output":"_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_sup"},{"event":"cmd_output","timestamp":1607098384,"output":"ervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:04.006 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHand"},{"event":"cmd_output","timestamp":1607098384,"output":"ler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period: 100 ms,"},{"event":"cmd_output","timestamp":1607098384,"output":" metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurring a"},{"event":"cmd_output","timestamp":1607098384,"output":"rgs: %{allowed_states: [\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubIni"},{"event":"cmd_output","timestamp":1607098384,"output":"ts, observed_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :termi"},{"event":"cmd_output","timestamp":1607098384,"output":"nate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model"},{"event":"cmd_output","timestamp":1607098384,"output":".PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:04.007 [info] Periodic from module Elixir.P"},{"event":"cmd_output","timestamp":1607098384,"output":"pl.PplBlocks.STMHandler.InitializingState with name Elixir.Ppl.PplBlocks.STMHandler.InitializingStat"},{"event":"cmd_output","timestamp":1607098384,"output":"e :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-InitializingSt"},{"event":"cmd_output","timestamp":1607098384,"output":"ate\"]}, recurring args: %{allowed_states: [\"initializing\", \"waiting\", \"done\"], cooling_time_sec: 0, "},{"event":"cmd_output","timestamp":1607098384,"output":"initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"initializing\", publisher_cb: :skip, r"},{"event":"cmd_output","timestamp":1607098384,"output":"epo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_coun"},{"event":"cmd_output","timestamp":1607098384,"output":"t, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098384,"output":"\n16:13:04.007 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.WaitingState with name E"},{"event":"cmd_output","timestamp":1607098384,"output":"lixir.Ppl.PplBlocks.STMHandler.WaitingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\""},{"event":"cmd_output","timestamp":1607098384,"output":", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurring args: %{allowed_states: [\"waiting\", \"running"},{"event":"cmd_output","timestamp":1607098384,"output":"\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"wait"},{"event":"cmd_output","timestamp":1607098384,"output":"ing\", publisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>, repo: Pp"},{"event":"cmd_output","timestamp":1607098384,"output":"l.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl"},{"event":"cmd_output","timestamp":1607098384,"output":"_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13"},{"event":"cmd_output","timestamp":1607098384,"output":":04.007 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.RunningState with name Elixir.P"},{"event":"cmd_output","timestamp":1607098384,"output":"pl.PplBlocks.STMHandler.RunningState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl"},{"event":"cmd_output","timestamp":1607098384,"output":"-PplBlocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"do"},{"event":"cmd_output","timestamp":1607098384,"output":"ne\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"running\","},{"event":"cmd_output","timestamp":1607098384,"output":" publisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0>, repo: Ppl.Ec"},{"event":"cmd_output","timestamp":1607098384,"output":"toRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id,"},{"event":"cmd_output","timestamp":1607098384,"output":" :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098384,"output":"\n16:13:04.007 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.StoppingState with name "},{"event":"cmd_output","timestamp":1607098384,"output":"Elixir.Ppl.PplBlocks.STMHandler.StoppingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_u"},{"event":"cmd_output","timestamp":1607098384,"output":"p\", [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"don"},{"event":"cmd_output","timestamp":1607098384,"output":"e\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"stopping\","},{"event":"cmd_output","timestamp":1607098384,"output":" publisher_cb: #Function<0.104215991/1 in Ppl.PplBlocks.STMHandler.StoppingState.args/0>, repo: Ppl."},{"event":"cmd_output","timestamp":1607098384,"output":"EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_i"},{"event":"cmd_output","timestamp":1607098384,"output":"d, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098384,"output":"2m\n16:13:04.007 [info] Periodic from module Elixir.Block.Blocks.STMHandler.InitializingState with "},{"event":"cmd_output","timestamp":1607098384,"output":"name Elixir.Block.Blocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder"},{"event":"cmd_output","timestamp":1607098384,"output":"-wake_up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"runni"},{"event":"cmd_output","timestamp":1607098384,"output":"ng\", \"done\"], cooling_time_sec: 0, initial_query: Block.Blocks.Model.Blocks, observed_state: \"initia"},{"event":"cmd_output","timestamp":1607098384,"output":"lizing\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at"},{"event":"cmd_output","timestamp":1607098384,"output":", :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b"},{"event":"cmd_output","timestamp":1607098384,"output":"[0m\u001b[22m\n16:13:04.007 [info] Periodic from module Elixir.Block.Blocks.STMHandler.RunningState with"},{"event":"cmd_output","timestamp":1607098384,"output":" name Elixir.Block.Blocks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wak"},{"event":"cmd_output","timestamp":1607098384,"output":"e_up\", [\"Block-Blocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"sto"},{"event":"cmd_output","timestamp":1607098384,"output":"pping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"ru"},{"event":"cmd_output","timestamp":1607098384,"output":"nning\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at,"},{"event":"cmd_output","timestamp":1607098384,"output":" :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b["},{"event":"cmd_output","timestamp":1607098384,"output":"0m\u001b[22m\n16:13:04.007 [info] Periodic from module Elixir.Block.Blocks.STMHandler.StoppingState with"},{"event":"cmd_output","timestamp":1607098384,"output":" name Elixir.Block.Blocks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wa"},{"event":"cmd_output","timestamp":1607098384,"output":"ke_up\", [\"Block-Blocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \""},{"event":"cmd_output","timestamp":1607098384,"output":"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"stopping\", "},{"event":"cmd_output","timestamp":1607098384,"output":"publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state,"},{"event":"cmd_output","timestamp":1607098384,"output":" :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098384,"output":"\n16:13:04.007 [info] Periodic from module Elixir.Block.Tasks.STMHandler.PendingState with name Elix"},{"event":"cmd_output","timestamp":1607098384,"output":"ir.Block.Tasks.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Bl"},{"event":"cmd_output","timestamp":1607098384,"output":"ock-Tasks-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling"},{"event":"cmd_output","timestamp":1607098384,"output":"_time_sec: 0, initial_query: Block.Tasks.Model.Tasks, observed_state: \"pending\", publisher_cb: :skip"},{"event":"cmd_output","timestamp":1607098384,"output":", repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :"},{"event":"cmd_output","timestamp":1607098384,"output":"block_id, :build_request_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098384,"output":"6:13:04.007 [info] Periodic from module Elixir.Block.Tasks.STMHandler.RunningState with name Elixir"},{"event":"cmd_output","timestamp":1607098384,"output":".Block.Tasks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Bloc"},{"event":"cmd_output","timestamp":1607098384,"output":"k-Tasks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\""},{"event":"cmd_output","timestamp":1607098384,"output":"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"running\", publishe"},{"event":"cmd_output","timestamp":1607098384,"output":"r_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recove"},{"event":"cmd_output","timestamp":1607098384,"output":"ry_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:04."},{"event":"cmd_output","timestamp":1607098384,"output":"007 [info] Periodic from module Elixir.Block.Tasks.STMHandler.StoppingState with name Elixir.Block."},{"event":"cmd_output","timestamp":1607098384,"output":"Tasks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Task"},{"event":"cmd_output","timestamp":1607098384,"output":"s-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_"},{"event":"cmd_output","timestamp":1607098384,"output":"sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"stopping\", publisher_cb: :skip, re"},{"event":"cmd_output","timestamp":1607098384,"output":"po: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :bloc"},{"event":"cmd_output","timestamp":1607098384,"output":"k_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:04.125 [info] ppl"},{"event":"cmd_output","timestamp":1607098384,"output":"_id: ff076ba8-1383-44bd-8e6c-825d5074b571, type: PplRequests, event: persisted source_args for pipel"},{"event":"cmd_output","timestamp":1607098384,"output":"ine: ff076ba8-1383-44bd-8e6c-825d5074b571, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.i"},{"event":"cmd_output","timestamp":1607098384,"output":"nsert_source/2(L89), \n\u001b[0m\u001b[22m\n16:13:04.126 [info] ppl_id: ff076ba8-1383-44bd-8e6c-825d5074b571,"},{"event":"cmd_output","timestamp":1607098384,"output":" type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loope"},{"event":"cmd_output","timestamp":1607098384,"output":"r.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:04.140 [info] ppl_id: ff076ba8-1383-44bd-8e6"},{"event":"cmd_output","timestamp":1607098384,"output":"c-825d5074b571, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098384,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:04.160 [info] ppl_id: ff0"},{"event":"cmd_output","timestamp":1607098384,"output":"76ba8-1383-44bd-8e6c-825d5074b571, type: PplRequests, event: persisted definition for request with r"},{"event":"cmd_output","timestamp":1607098384,"output":"equest_token: 9678b54a-364b-11eb-9697-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequests"},{"event":"cmd_output","timestamp":1607098384,"output":"Queries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:13:04.163 [info] Queue persisted: {:ok, %Ppl.Queu"},{"event":"cmd_output","timestamp":1607098384,"output":"es.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:13"},{"event":"cmd_output","timestamp":1607098384,"output":":04.162704], name: \"dev-execute-dpl-.semaphore/block_filters.yml\", organization_id: \"99e03c97-4907-4"},{"event":"cmd_output","timestamp":1607098384,"output":"e58-8bfb-9697a0729130\", project_id: \"dac6e9ce-cf55-4151-ac0b-78388868def6\", queue_id: \"184953b6-7bfc"},{"event":"cmd_output","timestamp":1607098384,"output":"-42af-9c49-98f4dfbefc1a\", scope: \"project\", updated_at: ~N[2020-12-04 16:13:04.162714], user_generat"},{"event":"cmd_output","timestamp":1607098384,"output":"ed: false}}\n\u001b[0m\u001b[22m\n16:13:04.177 [info] ppl_id: not_available, event: created, origin: Elixir.P"},{"event":"cmd_output","timestamp":1607098384,"output":"pl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:04.177 [info] event:"},{"event":"cmd_output","timestamp":1607098384,"output":" created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098384,"output":"6:13:04.177 [info] ppl_id: ff076ba8-1383-44bd-8e6c-825d5074b571, type: PplBlocks, block_index: 0, s"},{"event":"cmd_output","timestamp":1607098384,"output":"tate: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.Reg"},{"event":"cmd_output","timestamp":1607098384,"output":"ularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:04.177 [info] ppl_id: ff076ba8-1383-44bd-8e6c-825"},{"event":"cmd_output","timestamp":1607098384,"output":"d5074b571, type: PplBlocks, block_index: 1, state: initializing, event: created, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098384,"output":"origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:04.17"},{"event":"cmd_output","timestamp":1607098384,"output":"9 [info] ppl_id: ff076ba8-1383-44bd-8e6c-825d5074b571, type: PplSubInits, state: done, result: pass"},{"event":"cmd_output","timestamp":1607098384,"output":"ed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90"},{"event":"cmd_output","timestamp":1607098384,"output":"), \n\u001b[0m\u001b[22m\n16:13:04.188 [info] ppl_id: ff076ba8-1383-44bd-8e6c-825d5074b571, type: Ppls, state"},{"event":"cmd_output","timestamp":1607098384,"output":": pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chang"},{"event":"cmd_output","timestamp":1607098384,"output":"e/1(L90), \n\u001b[0m\u001b[22m\n16:13:04.192 [info] ppl_id: ff076ba8-1383-44bd-8e6c-825d5074b571, type: PplB"},{"event":"cmd_output","timestamp":1607098384,"output":"locks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loo"},{"event":"cmd_output","timestamp":1607098384,"output":"per.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:04.198 [info] ppl_id: ff076ba8-1383-44bd-8"},{"event":"cmd_output","timestamp":1607098384,"output":"e6c-825d5074b571, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098384,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:04.199 [info] ppl_id: ff076ba8-1383"},{"event":"cmd_output","timestamp":1607098384,"output":"-44bd-8e6c-825d5074b571, type: PplBlocks, block_index: 1, state: waiting, event: exit_scheduling, re"},{"event":"cmd_output","timestamp":1607098384,"output":"covery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:04.207 ["},{"event":"cmd_output","timestamp":1607098384,"output":"info] ppl_id: ff076ba8-1383-44bd-8e6c-825d5074b571, type: Ppls, state: running, event: exit_schedul"},{"event":"cmd_output","timestamp":1607098384,"output":"ing, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:0"},{"event":"cmd_output","timestamp":1607098384,"output":"4.214 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"ff076ba8-1383-44bd-8e"},{"event":"cmd_output","timestamp":1607098384,"output":"6c-825d5074b571\"\n\u001b[0m\u001b[22m\n16:13:04.225 [info] block_id: 0985388f-10a1-46a9-aa2c-1aae9f6990d1, ty"},{"event":"cmd_output","timestamp":1607098384,"output":"pe: BlockRequests, event: persisted block run request from ppl ff076ba8-1383-44bd-8e6c-825d5074b571 "},{"event":"cmd_output","timestamp":1607098384,"output":"for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), "},{"event":"cmd_output","timestamp":1607098384,"output":"\n\u001b[0m\u001b[22m\n16:13:04.228 [info] block_id: 0985388f-10a1-46a9-aa2c-1aae9f6990d1, type: Blocks, stat"},{"event":"cmd_output","timestamp":1607098384,"output":"e: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQue"},{"event":"cmd_output","timestamp":1607098384,"output":"ries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:13:04.230 [info] Block 0 of pipeline with id: ff076ba8-1383-44b"},{"event":"cmd_output","timestamp":1607098384,"output":"d-8e6c-825d5074b571 scheduled in block service with id: : \"0985388f-10a1-46a9-aa2c-1aae9f6990d1\"\n\u001b["},{"event":"cmd_output","timestamp":1607098384,"output":"0m\u001b[22m\n16:13:04.233 [info] ppl_id: ff076ba8-1383-44bd-8e6c-825d5074b571, type: PplBlocks, block_i"},{"event":"cmd_output","timestamp":1607098384,"output":"ndex: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.l"},{"event":"cmd_output","timestamp":1607098384,"output":"og_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:04.236 [info] block_id: 0985388f-10a1-46a9-aa2c-1aae9f69"},{"event":"cmd_output","timestamp":1607098384,"output":"90d1, type: BlockRequests, event: persisted build and sub_ppl details for block_request: 0985388f-10"},{"event":"cmd_output","timestamp":1607098384,"output":"a1-46a9-aa2c-1aae9f6990d1, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_buil"},{"event":"cmd_output","timestamp":1607098384,"output":"d/2(L41), \n\u001b[0m\u001b[22m\n16:13:04.238 [info] block_id: 0985388f-10a1-46a9-aa2c-1aae9f6990d1, type: Ta"},{"event":"cmd_output","timestamp":1607098384,"output":"sks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.Initi"},{"event":"cmd_output","timestamp":1607098384,"output":"alizingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:13:04.240 [info] block_id: 0985388f-10a1-46a9-aa2c-1a"},{"event":"cmd_output","timestamp":1607098384,"output":"ae9f6990d1, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098384,"output":"Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:04.255 [info] block_id: 0985388f-10a1-4"},{"event":"cmd_output","timestamp":1607098384,"output":"6a9-aa2c-1aae9f6990d1, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098384,"output":"n: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:04.332 [info] block_id: 09853"},{"event":"cmd_output","timestamp":1607098384,"output":"88f-10a1-46a9-aa2c-1aae9f6990d1, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0"},{"event":"cmd_output","timestamp":1607098384,"output":", origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:04.340 [info] block_id"},{"event":"cmd_output","timestamp":1607098384,"output":": 0985388f-10a1-46a9-aa2c-1aae9f6990d1, type: Blocks, state: done, event: exit_scheduling, recovery_"},{"event":"cmd_output","timestamp":1607098384,"output":"count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:04.345 [info] "},{"event":"cmd_output","timestamp":1607098384,"output":"ppl_id: ff076ba8-1383-44bd-8e6c-825d5074b571, block_id: 0985388f-10a1-46a9-aa2c-1aae9f6990d1, type: "},{"event":"cmd_output","timestamp":1607098384,"output":"PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098384,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:04.351 [info] PplBlocks W"},{"event":"cmd_output","timestamp":1607098384,"output":"aitingState STM is scheduling block 1 from pipeline: \"ff076ba8-1383-44bd-8e6c-825d5074b571\"\n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098384,"output":"2m\n16:13:04.355 [info] block_id: 870a3a57-01e4-4e63-b50c-beccab6ff99f, type: BlockRequests, event:"},{"event":"cmd_output","timestamp":1607098384,"output":" persisted block run request from ppl ff076ba8-1383-44bd-8e6c-825d5074b571 for block 1, origin: Elix"},{"event":"cmd_output","timestamp":1607098384,"output":"ir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:13:04.357"},{"event":"cmd_output","timestamp":1607098384,"output":" [info] block_id: 870a3a57-01e4-4e63-b50c-beccab6ff99f, type: Blocks, state: initializing, event: i"},{"event":"cmd_output","timestamp":1607098384,"output":"nitializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098384,"output":"m\u001b[22m\n16:13:04.357 [info] Block 1 of pipeline with id: ff076ba8-1383-44bd-8e6c-825d5074b571 sched"},{"event":"cmd_output","timestamp":1607098384,"output":"uled in block service with id: : \"870a3a57-01e4-4e63-b50c-beccab6ff99f\"\n\u001b[0m\u001b[22m\n16:13:04.359 [in"},{"event":"cmd_output","timestamp":1607098384,"output":"fo] ppl_id: ff076ba8-1383-44bd-8e6c-825d5074b571, type: PplBlocks, block_index: 1, state: running, "},{"event":"cmd_output","timestamp":1607098384,"output":"event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \r"},{"event":"cmd_output","timestamp":1607098384,"output":"\n\u001b[0m\u001b[22m\n16:13:04.364 [info] block_id: 870a3a57-01e4-4e63-b50c-beccab6ff99f, type: BlockRequests"},{"event":"cmd_output","timestamp":1607098384,"output":", event: persisted build and sub_ppl details for block_request: 870a3a57-01e4-4e63-b50c-beccab6ff99f"},{"event":"cmd_output","timestamp":1607098384,"output":", origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098384,"output":":13:04.366 [info] block_id: 870a3a57-01e4-4e63-b50c-beccab6ff99f, type: Tasks, state: pending, even"},{"event":"cmd_output","timestamp":1607098384,"output":"t: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L1"},{"event":"cmd_output","timestamp":1607098384,"output":"67), \n\u001b[0m\u001b[22m\n16:13:04.367 [info] block_id: 870a3a57-01e4-4e63-b50c-beccab6ff99f, type: Blocks,"},{"event":"cmd_output","timestamp":1607098384,"output":" state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state"},{"event":"cmd_output","timestamp":1607098384,"output":"_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:04.379 [info] block_id: 870a3a57-01e4-4e63-b50c-beccab6ff99f, ty"},{"event":"cmd_output","timestamp":1607098384,"output":"pe: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl"},{"event":"cmd_output","timestamp":1607098384,"output":".log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:04.440 [info] block_id: 870a3a57-01e4-4e63-b50c-beccab"},{"event":"cmd_output","timestamp":1607098384,"output":"6ff99f, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.S"},{"event":"cmd_output","timestamp":1607098384,"output":"TM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:04.443 [info] block_id: 870a3a57-01e4-4e63-b50c"},{"event":"cmd_output","timestamp":1607098384,"output":"-beccab6ff99f, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098384,"output":"Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:04.458 [info] ppl_id: ff076ba8-1383-44b"},{"event":"cmd_output","timestamp":1607098384,"output":"d-8e6c-825d5074b571, block_id: 870a3a57-01e4-4e63-b50c-beccab6ff99f, type: PplBlocks, block_index: 1"},{"event":"cmd_output","timestamp":1607098384,"output":", state: done, result: failed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM."},{"event":"cmd_output","timestamp":1607098384,"output":"Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:04.477 [info] ppl_id: ff076ba8-1383-44bd-8e6c-825d"},{"event":"cmd_output","timestamp":1607098384,"output":"5074b571, type: Ppls, state: done, result: failed, event: exit_scheduling, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098384,"output":": Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test execute filter for given labe"},{"event":"cmd_output","timestamp":1607098384,"output":"l - block executed (586.6ms)\u001b[0m\n\nPpl.Looper.PplBlocks.STMHandler.ExecutionTimeLimit.Test\n * tes"},{"event":"cmd_output","timestamp":1607098384,"output":"t pipeline's block is terminated when it is running for longer than execution_time_limt\u001b[22m\n16:13:"},{"event":"cmd_output","timestamp":1607098384,"output":"04.589 [info] Request: 'run: %{\"branch_id\" => \"9d5c3f26-a999-47e2-818e-93fe15cedfa9\", \"branch_name\""},{"event":"cmd_output","timestamp":1607098384,"output":" => \"master\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"semaphore.yml\", \"hook_id\" => \"96d456de-3"},{"event":"cmd_output","timestamp":1607098384,"output":"64b-11eb-93e6-5254005464e2\", \"label\" => \"master\", \"organization_id\" => \"94d8df78-912c-4c1a-8c19-623f"},{"event":"cmd_output","timestamp":1607098384,"output":"d5504a40\", \"owner\" => \"rt\", \"project_id\" => \"f9d71ddd-e289-48c8-813d-767484241e05\", \"repo_name\" => \""},{"event":"cmd_output","timestamp":1607098384,"output":"2_basic\", \"request_token\" => \"96d44f22-364b-11eb-b3d0-5254005464e2\", \"requester_id\" => \"6a1add26-e42"},{"event":"cmd_output","timestamp":1607098384,"output":"9-4c65-bab3-dd04245deb41\", \"service\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"client"},{"event":"cmd_output","timestamp":1607098384,"output":"_secret\"], \"wf_id\" => \"213653a2-9fc2-49f2-9400-423b285f07d6\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098384,"output":"22m\n16:13:04.592 [info] ppl_id: 2796e80a-c11d-4a40-9d54-fc968674e0fa, type: PplRequests, event: pe"},{"event":"cmd_output","timestamp":1607098384,"output":"rsisted schedule request with request_token: 96d44f22-364b-11eb-b3d0-5254005464e2, origin: Elixir.Pp"},{"event":"cmd_output","timestamp":1607098384,"output":"l.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:13:04.595 [info] pp"},{"event":"cmd_output","timestamp":1607098384,"output":"l_id: 2796e80a-c11d-4a40-9d54-fc968674e0fa, type: Ppls, state: initializing, event: initializing, re"},{"event":"cmd_output","timestamp":1607098384,"output":"covery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098384,"output":":13:04.599 [info] Project f9d71ddd-e289-48c8-813d-767484241e05 and branch masterlatest_wf details u"},{"event":"cmd_output","timestamp":1607098384,"output":"pdated: \"wf_id: 213653a2-9fc2-49f2-9400-423b285f07d6, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:13:04.601 [info] "},{"event":"cmd_output","timestamp":1607098384,"output":" Persisted ppl_sub_init for pipeline with ppl_id: 2796e80a-c11d-4a40-9d54-fc968674e0fa: %Ppl.PplSubI"},{"event":"cmd_output","timestamp":1607098384,"output":"nits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_"},{"event":"cmd_output","timestamp":1607098384,"output":"id: nil, error_description: nil, id: 290, in_scheduling: false, init_type: \"regular\", inserted_at: ~"},{"event":"cmd_output","timestamp":1607098384,"output":"N[2020-12-04 16:13:04.599938], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"2796e80a-c11d-4a40-9d54-fc968674e0fa\", recovery_count: 0, result: "},{"event":"cmd_output","timestamp":1607098384,"output":"nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, upda"},{"event":"cmd_output","timestamp":1607098384,"output":"ted_at: ~N[2020-12-04 16:13:04.599945]}\n\u001b[0m\u001b[22m\n16:13:04.609 [info] ppl_id: 2796e80a-c11d-4a40-"},{"event":"cmd_output","timestamp":1607098384,"output":"9d54-fc968674e0fa, type: PplRequests, event: persisted source_args for pipeline: 2796e80a-c11d-4a40-"},{"event":"cmd_output","timestamp":1607098384,"output":"9d54-fc968674e0fa, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b"},{"event":"cmd_output","timestamp":1607098384,"output":"[0m\u001b[22m\n16:13:04.621 [info] ppl_id: 2796e80a-c11d-4a40-9d54-fc968674e0fa, type: PplRequests, even"},{"event":"cmd_output","timestamp":1607098384,"output":"t: persisted definition for request with request_token: 96d44f22-364b-11eb-b3d0-5254005464e2, origin"},{"event":"cmd_output","timestamp":1607098384,"output":": Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:13:04.62"},{"event":"cmd_output","timestamp":1607098384,"output":"8 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.InitializingState with name Elixir.Pp"},{"event":"cmd_output","timestamp":1607098384,"output":"l.PplBlocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\""},{"event":"cmd_output","timestamp":1607098384,"output":"Ppl-PplBlocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"w"},{"event":"cmd_output","timestamp":1607098384,"output":"aiting\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state:"},{"event":"cmd_output","timestamp":1607098384,"output":" \"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :upda"},{"event":"cmd_output","timestamp":1607098384,"output":"ted_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlo"},{"event":"cmd_output","timestamp":1607098384,"output":"cks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:04.628 [info] Periodic from module Elixir.Ppl.PplBlo"},{"event":"cmd_output","timestamp":1607098384,"output":"cks.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler.WaitingState :: period: 1000 m"},{"event":"cmd_output","timestamp":1607098384,"output":"s, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurring args:"},{"event":"cmd_output","timestamp":1607098384,"output":" %{allowed_states: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks"},{"event":"cmd_output","timestamp":1607098384,"output":".Model.PplBlocks, observed_state: \"waiting\", publisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.ST"},{"event":"cmd_output","timestamp":1607098384,"output":"MHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at,"},{"event":"cmd_output","timestamp":1607098384,"output":" :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, ta"},{"event":"cmd_output","timestamp":1607098384,"output":"sk_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:04.629 [info] Periodic from module Elixir.Ppl.PplBlocks.STM"},{"event":"cmd_output","timestamp":1607098384,"output":"Handler.RunningState with name Elixir.Ppl.PplBlocks.STMHandler.RunningState :: period: 1000 ms, metr"},{"event":"cmd_output","timestamp":1607098384,"output":"ic_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, recurring args: %{allo"},{"event":"cmd_output","timestamp":1607098384,"output":"wed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Mode"},{"event":"cmd_output","timestamp":1607098384,"output":"l.PplBlocks, observed_state: \"running\", publisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHan"},{"event":"cmd_output","timestamp":1607098384,"output":"dler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :st"},{"event":"cmd_output","timestamp":1607098384,"output":"ate, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlo"},{"event":"cmd_output","timestamp":1607098384,"output":"cks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:04.629 [info] Periodic from module Elixir.Ppl.PplBlo"},{"event":"cmd_output","timestamp":1607098384,"output":"cks.STMHandler.StoppingState with name Elixir.Ppl.PplBlocks.STMHandler.StoppingState :: period: 1000"},{"event":"cmd_output","timestamp":1607098384,"output":" ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurring ar"},{"event":"cmd_output","timestamp":1607098384,"output":"gs: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model"},{"event":"cmd_output","timestamp":1607098384,"output":".PplBlocks, observed_state: \"stopping\", publisher_cb: #Function<0.104215991/1 in Ppl.PplBlocks.STMHa"},{"event":"cmd_output","timestamp":1607098384,"output":"ndler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :"},{"event":"cmd_output","timestamp":1607098384,"output":"state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplB"},{"event":"cmd_output","timestamp":1607098384,"output":"locks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:04.629 [info] Periodic from module Elixir.Block.Bl"},{"event":"cmd_output","timestamp":1607098384,"output":"ocks.STMHandler.InitializingState with name Elixir.Block.Blocks.STMHandler.InitializingState :: peri"},{"event":"cmd_output","timestamp":1607098384,"output":"od: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, re"},{"event":"cmd_output","timestamp":1607098384,"output":"curring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Block"},{"event":"cmd_output","timestamp":1607098384,"output":"s.Model.Blocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Block.EctoRepo, returning"},{"event":"cmd_output","timestamp":1607098384,"output":": [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.M"},{"event":"cmd_output","timestamp":1607098384,"output":"odel.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:04.630 [info] Periodic from module Elixir.Bl"},{"event":"cmd_output","timestamp":1607098384,"output":"ock.Blocks.STMHandler.RunningState with name Elixir.Block.Blocks.STMHandler.RunningState :: period: "},{"event":"cmd_output","timestamp":1607098384,"output":"100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-RunningState\"]}, recurring a"},{"event":"cmd_output","timestamp":1607098384,"output":"rgs: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.B"},{"event":"cmd_output","timestamp":1607098384,"output":"locks.Model.Blocks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning:"},{"event":"cmd_output","timestamp":1607098384,"output":" [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Mo"},{"event":"cmd_output","timestamp":1607098384,"output":"del.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:04.630 [info] Periodic from module Elixir.Blo"},{"event":"cmd_output","timestamp":1607098384,"output":"ck.Blocks.STMHandler.StoppingState with name Elixir.Block.Blocks.STMHandler.StoppingState :: period:"},{"event":"cmd_output","timestamp":1607098384,"output":" 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-StoppingState\"]}, recurring"},{"event":"cmd_output","timestamp":1607098384,"output":" args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Mod"},{"event":"cmd_output","timestamp":1607098384,"output":"el.Blocks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :"},{"event":"cmd_output","timestamp":1607098384,"output":"terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Bloc"},{"event":"cmd_output","timestamp":1607098384,"output":"ks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:04.630 [info] Periodic from module Elixir.Block.Tasks"},{"event":"cmd_output","timestamp":1607098384,"output":".STMHandler.PendingState with name Elixir.Block.Tasks.STMHandler.PendingState :: period: 100 ms, met"},{"event":"cmd_output","timestamp":1607098384,"output":"ric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingState\"]}, recurring args: %{allow"},{"event":"cmd_output","timestamp":1607098384,"output":"ed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Tasks.Model.Tasks, observe"},{"event":"cmd_output","timestamp":1607098384,"output":"d_state: \"pending\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, "},{"event":"cmd_output","timestamp":1607098384,"output":":updated_at, :state, :recovery_count, :block_id, :build_request_id], schema: Block.Tasks.Model.Tasks"},{"event":"cmd_output","timestamp":1607098384,"output":", task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:04.630 [info] Periodic from module Elixir.Block.Tasks.S"},{"event":"cmd_output","timestamp":1607098384,"output":"TMHandler.RunningState with name Elixir.Block.Tasks.STMHandler.RunningState :: period: 100 ms, metri"},{"event":"cmd_output","timestamp":1607098384,"output":"c_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningState\"]}, recurring args: %{allowed"},{"event":"cmd_output","timestamp":1607098384,"output":"_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tas"},{"event":"cmd_output","timestamp":1607098384,"output":"ks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminat"},{"event":"cmd_output","timestamp":1607098384,"output":"e_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_s"},{"event":"cmd_output","timestamp":1607098384,"output":"upervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:04.630 [info] Periodic from module Elixir.Block.Tasks.STMHandle"},{"event":"cmd_output","timestamp":1607098384,"output":"r.StoppingState with name Elixir.Block.Tasks.STMHandler.StoppingState :: period: 100 ms, metric_name"},{"event":"cmd_output","timestamp":1607098384,"output":": {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]}, recurring args: %{allowed_stat"},{"event":"cmd_output","timestamp":1607098384,"output":"es: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_sta"},{"event":"cmd_output","timestamp":1607098384,"output":"te: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :upd"},{"event":"cmd_output","timestamp":1607098384,"output":"ated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :ski"},{"event":"cmd_output","timestamp":1607098385,"output":"p}\n\u001b[0m\u001b[22m\n16:13:05.633 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: "},{"event":"cmd_output","timestamp":1607098385,"output":"\"2796e80a-c11d-4a40-9d54-fc968674e0fa\"\n\u001b[0m\u001b[22m\n16:13:05.640 [info] block_id: c0bed9b1-a4df-42a1"},{"event":"cmd_output","timestamp":1607098385,"output":"-aee5-a0c143c17c1e, type: BlockRequests, event: persisted block run request from ppl 2796e80a-c11d-4"},{"event":"cmd_output","timestamp":1607098385,"output":"a40-9d54-fc968674e0fa for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.pro"},{"event":"cmd_output","timestamp":1607098385,"output":"cess_response/4(L35), \n\u001b[0m\u001b[22m\n16:13:05.647 [info] block_id: c0bed9b1-a4df-42a1-aee5-a0c143c17c"},{"event":"cmd_output","timestamp":1607098385,"output":"1e, type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block."},{"event":"cmd_output","timestamp":1607098385,"output":"Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:13:05.649 [info] Block 0 of pipeline with"},{"event":"cmd_output","timestamp":1607098385,"output":" id: 2796e80a-c11d-4a40-9d54-fc968674e0fa scheduled in block service with id: : \"c0bed9b1-a4df-42a1-"},{"event":"cmd_output","timestamp":1607098385,"output":"aee5-a0c143c17c1e\"\n\u001b[0m\u001b[22m\n16:13:05.652 [info] ppl_id: 2796e80a-c11d-4a40-9d54-fc968674e0fa, ty"},{"event":"cmd_output","timestamp":1607098385,"output":"pe: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098385,"output":"ixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:05.655 [info] block_id: c0bed9b1-a"},{"event":"cmd_output","timestamp":1607098385,"output":"4df-42a1-aee5-a0c143c17c1e, type: BlockRequests, event: persisted build and sub_ppl details for bloc"},{"event":"cmd_output","timestamp":1607098385,"output":"k_request: c0bed9b1-a4df-42a1-aee5-a0c143c17c1e, origin: Elixir.Block.BlockRequests.Model.BlockReque"},{"event":"cmd_output","timestamp":1607098385,"output":"stsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:13:05.657 [info] block_id: c0bed9b1-a4df-42a1-aee5-"},{"event":"cmd_output","timestamp":1607098385,"output":"a0c143c17c1e, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.B"},{"event":"cmd_output","timestamp":1607098385,"output":"locks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:13:05.663 [info] block_id: c0be"},{"event":"cmd_output","timestamp":1607098385,"output":"d9b1-a4df-42a1-aee5-a0c143c17c1e, type: Blocks, state: running, event: exit_scheduling, recovery_cou"},{"event":"cmd_output","timestamp":1607098385,"output":"nt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:05.678 [info] blo"},{"event":"cmd_output","timestamp":1607098385,"output":"ck_id: c0bed9b1-a4df-42a1-aee5-a0c143c17c1e, type: Tasks, state: running, event: exit_scheduling, re"},{"event":"cmd_output","timestamp":1607098387,"output":"covery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:07.646 ["},{"event":"cmd_output","timestamp":1607098387,"output":"info] ppl_id: 2796e80a-c11d-4a40-9d54-fc968674e0fa, block_id: c0bed9b1-a4df-42a1-aee5-a0c143c17c1e,"},{"event":"cmd_output","timestamp":1607098387,"output":" type: PplBlocks, block_index: 0, state: stopping, event: exit_scheduling, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098387,"output":": Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:07.663 [info] block_id: c0bed9"},{"event":"cmd_output","timestamp":1607098387,"output":"b1-a4df-42a1-aee5-a0c143c17c1e, type: Blocks, state: stopping, event: exit_scheduling, recovery_coun"},{"event":"cmd_output","timestamp":1607098387,"output":"t: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:07.682 [info] bloc"},{"event":"cmd_output","timestamp":1607098387,"output":"k_id: c0bed9b1-a4df-42a1-aee5-a0c143c17c1e, type: Tasks, state: stopping, event: exit_scheduling, re"},{"event":"cmd_output","timestamp":1607098388,"output":"covery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:08.706 ["},{"event":"cmd_output","timestamp":1607098388,"output":"info] block_id: c0bed9b1-a4df-42a1-aee5-a0c143c17c1e, type: Tasks, state: done, event: exit_schedul"},{"event":"cmd_output","timestamp":1607098388,"output":"ing, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:0"},{"event":"cmd_output","timestamp":1607098388,"output":"8.711 [info] block_id: c0bed9b1-a4df-42a1-aee5-a0c143c17c1e, type: Blocks, state: done, event: exit"},{"event":"cmd_output","timestamp":1607098388,"output":"_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098388,"output":"\n16:13:08.717 [info] ppl_id: 2796e80a-c11d-4a40-9d54-fc968674e0fa, block_id: c0bed9b1-a4df-42a1-aee"},{"event":"cmd_output","timestamp":1607098388,"output":"5-a0c143c17c1e, type: PplBlocks, block_index: 0, state: done, result: stopped, event: exit_schedulin"},{"event":"cmd_output","timestamp":1607098389,"output":"g, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test p"},{"event":"cmd_output","timestamp":1607098389,"output":"ipeline's block is terminated when it is running for longer than execution_time_limt (4624.7ms)\u001b[0m\r"},{"event":"cmd_output","timestamp":1607098389,"output":"\n\nPpl.PplBlocks.Model.WaitingStateSchedulingTest\n * test behavioural test\r * test behavioural te"},{"event":"cmd_output","timestamp":1607098389,"output":"st (skipped)\n\nPpl.PplBlocks.Model.PplBlocks.Test\n * doctest Ppl.PplBlocks.Model.PplBlocks.change"},{"event":"cmd_output","timestamp":1607098389,"output":"set/2 (1)\r * doctest Ppl.PplBlocks.Model.PplBlocks.changeset/2 (1) (skipped)\n * doctest Ppl.PplBl"},{"event":"cmd_output","timestamp":1607098389,"output":"ocks.Model.PplBlocks.changeset/2 (2)\r * doctest Ppl.PplBlocks.Model.PplBlocks.changeset/2 (2) (skip"},{"event":"cmd_output","timestamp":1607098389,"output":"ped)\n\nPpl.PplBlocks.Model.PplBlocksQueries.Test\n * test get pipeline block in stopping and move "},{"event":"cmd_output","timestamp":1607098389,"output":"it to scheduling\r * test get pipeline block in stopping and move it to scheduling (skipped)\n * te"},{"event":"cmd_output","timestamp":1607098389,"output":"st move pipeline block from stopping-scheduling to done\r * test move pipeline block from stopping-s"},{"event":"cmd_output","timestamp":1607098389,"output":"cheduling to done (skipped)\n * test get all blocks from ppl with given ppl_id\r * test get all blo"},{"event":"cmd_output","timestamp":1607098389,"output":"cks from ppl with given ppl_id (skipped)\n * test move pipeline block from running-scheduling to do"},{"event":"cmd_output","timestamp":1607098389,"output":"ne\r * test move pipeline block from running-scheduling to done (skipped)\n * test invalid - get bl"},{"event":"cmd_output","timestamp":1607098389,"output":"ock by invalid ppl_id and valid index in ppl request's blocks list\r * test invalid - get block by i"},{"event":"cmd_output","timestamp":1607098389,"output":"nvalid ppl_id and valid index in ppl request's blocks list (skipped)\n * test should_do_fast_failin"},{"event":"cmd_output","timestamp":1607098389,"output":"g?() returns {:ok, false} when no blocks have failed or were terminated\r * test should_do_fast_fail"},{"event":"cmd_output","timestamp":1607098389,"output":"ing?() returns {:ok, false} when no blocks have failed or were terminated (skipped)\n * test insert"},{"event":"cmd_output","timestamp":1607098389,"output":" new pipeline block event\r * test insert new pipeline block event (skipped)\n * test move pipeline"},{"event":"cmd_output","timestamp":1607098389,"output":" block from waiting-scheduling to running\r * test move pipeline block from waiting-scheduling to ru"},{"event":"cmd_output","timestamp":1607098389,"output":"nning (skipped)\n * test should_do_fast_failing?() returns {:ok, fast_failing} when some blocks fai"},{"event":"cmd_output","timestamp":1607098389,"output":"l and fast_failing is set\r * test should_do_fast_failing?() returns {:ok, fast_failing} when some b"},{"event":"cmd_output","timestamp":1607098389,"output":"locks fail and fast_failing is set (skipped)\n * test move pipeline block from waiting-scheduling t"},{"event":"cmd_output","timestamp":1607098389,"output":"o done\r * test move pipeline block from waiting-scheduling to done (skipped)\n * test recover pipe"},{"event":"cmd_output","timestamp":1607098389,"output":"line blocks stuck in scheduling\r * test recover pipeline blocks stuck in scheduling (skipped)\n * "},{"event":"cmd_output","timestamp":1607098389,"output":"test invalid - get block by valid ppl_id and invalid index in ppl request's blocks list\r * test inv"},{"event":"cmd_output","timestamp":1607098389,"output":"alid - get block by valid ppl_id and invalid index in ppl request's blocks list (skipped)\n * test "},{"event":"cmd_output","timestamp":1607098389,"output":"move pipeline block from running-scheduling to stopping\r * test move pipeline block from running-sc"},{"event":"cmd_output","timestamp":1607098389,"output":"heduling to stopping (skipped)\n * test get pipeline block in running and move it to scheduling\r *"},{"event":"cmd_output","timestamp":1607098389,"output":" test get pipeline block in running and move it to scheduling (skipped)\n * doctest Ppl.PplBlocks.M"},{"event":"cmd_output","timestamp":1607098389,"output":"odel.PplBlocksQueries.multi_insert/3 (1)\r * doctest Ppl.PplBlocks.Model.PplBlocksQueries.multi_inse"},{"event":"cmd_output","timestamp":1607098389,"output":"rt/3 (1) (skipped)\n * test invalid - get all blocks from ppl with wrong ppl_id\r * test invalid - "},{"event":"cmd_output","timestamp":1607098389,"output":"get all blocks from ppl with wrong ppl_id (skipped)\n * test get pipeline block in waiting and move"},{"event":"cmd_output","timestamp":1607098389,"output":" it to scheduling\r * test get pipeline block in waiting and move it to scheduling (skipped)\n * te"},{"event":"cmd_output","timestamp":1607098389,"output":"st updated_at change on update_all() call\r * test updated_at change on update_all() call (skipped)\r"},{"event":"cmd_output","timestamp":1607098389,"output":"\n * test get ppl's block by ppl_id and index in ppl request's blocks list\r * test get ppl's block "},{"event":"cmd_output","timestamp":1607098389,"output":"by ppl_id and index in ppl request's blocks list (skipped)\n * test should_do_fast_failing?() retur"},{"event":"cmd_output","timestamp":1607098389,"output":"ns {:ok, false} when some blocks fail and fast_failing isn't set\r * test should_do_fast_failing?() "},{"event":"cmd_output","timestamp":1607098389,"output":"returns {:ok, false} when some blocks fail and fast_failing isn't set (skipped)\n\nPpl.PplBlocks.Mod"},{"event":"cmd_output","timestamp":1607098389,"output":"el.PplBlockConectionsTest\n * test implicit blocks dependancies\u001b[22m\n16:13:09.215 [info] Request:"},{"event":"cmd_output","timestamp":1607098389,"output":" 'run: %{\"branch_id\" => \"01d9a7ac-4ea0-4944-a5f6-50dc6d5e14c1\", \"branch_name\" => \"master\", \"commit_s"},{"event":"cmd_output","timestamp":1607098389,"output":"ha\" => \"75891a4469\", \"file_name\" => \"semaphore.yml\", \"hook_id\" => \"99953af0-364b-11eb-be57-525400546"},{"event":"cmd_output","timestamp":1607098389,"output":"4e2\", \"label\" => \"master\", \"organization_id\" => \"ea583d08-322d-4436-a3c1-e78e35b8f15d\", \"owner\" => \""},{"event":"cmd_output","timestamp":1607098389,"output":"rt\", \"project_id\" => \"8f71d078-81ba-4cbc-9057-008dd3f0bf30\", \"repo_name\" => \"5_v1_full\", \"request_to"},{"event":"cmd_output","timestamp":1607098389,"output":"ken\" => \"99953442-364b-11eb-af37-5254005464e2\", \"requester_id\" => \"81788608-73bd-48b7-88b6-d50bf13ae"},{"event":"cmd_output","timestamp":1607098389,"output":"fb0\", \"service\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" =>"},{"event":"cmd_output","timestamp":1607098389,"output":" \"adf122e2-721a-4a2b-897f-49f0fc42a4f3\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:13:09.218 [in"},{"event":"cmd_output","timestamp":1607098389,"output":"fo] ppl_id: 7d3f7391-364d-4f5b-bed6-c5762fcfba1c, type: PplRequests, event: persisted schedule requ"},{"event":"cmd_output","timestamp":1607098389,"output":"est with request_token: 99953442-364b-11eb-af37-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.P"},{"event":"cmd_output","timestamp":1607098389,"output":"plRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:13:09.220 [info] ppl_id: 7d3f7391-364d-4"},{"event":"cmd_output","timestamp":1607098389,"output":"f5b-bed6-c5762fcfba1c, type: Ppls, state: initializing, event: initializing, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098389,"output":"in: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:13:09.224 [info] Pr"},{"event":"cmd_output","timestamp":1607098389,"output":"oject 8f71d078-81ba-4cbc-9057-008dd3f0bf30 and branch masterlatest_wf details updated: \"wf_id: adf12"},{"event":"cmd_output","timestamp":1607098389,"output":"2e2-721a-4a2b-897f-49f0fc42a4f3, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:13:09.226 [info] Persisted ppl_sub_in"},{"event":"cmd_output","timestamp":1607098389,"output":"it for pipeline with ppl_id: 7d3f7391-364d-4f5b-bed6-c5762fcfba1c: %Ppl.PplSubInits.Model.PplSubInit"},{"event":"cmd_output","timestamp":1607098389,"output":"s{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_descri"},{"event":"cmd_output","timestamp":1607098389,"output":"ption: nil, id: 291, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:13:09"},{"event":"cmd_output","timestamp":1607098389,"output":".224942], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"7d3f7391-364d-4f5b-bed6-c5762fcfba1c\", recovery_count: 0, result: nil, result_reason: n"},{"event":"cmd_output","timestamp":1607098389,"output":"il, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04"},{"event":"cmd_output","timestamp":1607098389,"output":" 16:13:09.224950]}\n\u001b[0m\u001b[22m\n16:13:09.230 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler."},{"event":"cmd_output","timestamp":1607098389,"output":"InitializingState with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms, metric_n"},{"event":"cmd_output","timestamp":1607098389,"output":"ame: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %{allowed_"},{"event":"cmd_output","timestamp":1607098389,"output":"states: [\"initializing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls"},{"event":"cmd_output","timestamp":1607098389,"output":", observed_state: \"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.Initi"},{"event":"cmd_output","timestamp":1607098389,"output":"alizingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, "},{"event":"cmd_output","timestamp":1607098389,"output":":result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098389,"output":"\n16:13:09.231 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedState with name "},{"event":"cmd_output","timestamp":1607098389,"output":"Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_u"},{"event":"cmd_output","timestamp":1607098389,"output":"p\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args: %{allowed_states: [\"fetching\", \"do"},{"event":"cmd_output","timestamp":1607098389,"output":"ne\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"create"},{"event":"cmd_output","timestamp":1607098389,"output":"d\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :stat"},{"event":"cmd_output","timestamp":1607098389,"output":"e, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :"},{"event":"cmd_output","timestamp":1607098389,"output":"skip}\n\u001b[0m\u001b[22m\n16:13:09.231 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.Fetchi"},{"event":"cmd_output","timestamp":1607098389,"output":"ngState with name Elixir.Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 ms, metric_name: {\""},{"event":"cmd_output","timestamp":1607098389,"output":"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %{allowed_stat"},{"event":"cmd_output","timestamp":1607098389,"output":"es: [\"regular_init\", \"compilation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Mo"},{"event":"cmd_output","timestamp":1607098389,"output":"del.PplSubInits, observed_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:i"},{"event":"cmd_output","timestamp":1607098389,"output":"d, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubIn"},{"event":"cmd_output","timestamp":1607098389,"output":"its.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:09.231 [info] Periodic from module"},{"event":"cmd_output","timestamp":1607098389,"output":" Elixir.Ppl.PplSubInits.STMHandler.CompilationState with name Elixir.Ppl.PplSubInits.STMHandler.Comp"},{"event":"cmd_output","timestamp":1607098389,"output":"ilationState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-C"},{"event":"cmd_output","timestamp":1607098389,"output":"ompilationState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"stopping\", \"d"},{"event":"cmd_output","timestamp":1607098389,"output":"one\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"comp"},{"event":"cmd_output","timestamp":1607098389,"output":"ilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at,"},{"event":"cmd_output","timestamp":1607098389,"output":" :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervi"},{"event":"cmd_output","timestamp":1607098389,"output":"sor: :skip}\n\u001b[0m\u001b[22m\n16:13:09.231 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler."},{"event":"cmd_output","timestamp":1607098389,"output":"RegularInitState with name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period: 100 ms, met"},{"event":"cmd_output","timestamp":1607098389,"output":"ric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurring args:"},{"event":"cmd_output","timestamp":1607098389,"output":" %{allowed_states: [\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, "},{"event":"cmd_output","timestamp":1607098389,"output":"observed_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate"},{"event":"cmd_output","timestamp":1607098389,"output":"_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.Ppl"},{"event":"cmd_output","timestamp":1607098389,"output":"SubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:09.231 [info] Periodic from module Elixir.Ppl.P"},{"event":"cmd_output","timestamp":1607098389,"output":"pls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 100 ms, met"},{"event":"cmd_output","timestamp":1607098389,"output":"ric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args: %{allowed_"},{"event":"cmd_output","timestamp":1607098389,"output":"states: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Mode"},{"event":"cmd_output","timestamp":1607098389,"output":"l.Ppls, observed_state: \"pending\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler.Pendin"},{"event":"cmd_output","timestamp":1607098389,"output":"gState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :resul"},{"event":"cmd_output","timestamp":1607098389,"output":"t, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0"},{"event":"cmd_output","timestamp":1607098389,"output":"m\u001b[22m\n16:13:09.231 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.QueuingState with name "},{"event":"cmd_output","timestamp":1607098389,"output":"Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"P"},{"event":"cmd_output","timestamp":1607098389,"output":"pl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{allowed_states: [\"queuing\", \"running\", \"done\"]"},{"event":"cmd_output","timestamp":1607098389,"output":", cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", publisher_cb:"},{"event":"cmd_output","timestamp":1607098389,"output":" #Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, returning:"},{"event":"cmd_output","timestamp":1607098389,"output":" [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls"},{"event":"cmd_output","timestamp":1607098389,"output":".Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:09.342 [info] ppl_id: 7d3f7391-364d-4f5b-bed"},{"event":"cmd_output","timestamp":1607098389,"output":"6-c5762fcfba1c, type: PplRequests, event: persisted source_args for pipeline: 7d3f7391-364d-4f5b-bed"},{"event":"cmd_output","timestamp":1607098389,"output":"6-c5762fcfba1c, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098389,"output":"\u001b[22m\n16:13:09.348 [info] ppl_id: 7d3f7391-364d-4f5b-bed6-c5762fcfba1c, type: PplSubInits, state: "},{"event":"cmd_output","timestamp":1607098389,"output":"fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change"},{"event":"cmd_output","timestamp":1607098389,"output":"/1(L90), \n\u001b[0m\u001b[22m\n16:13:09.374 [info] ppl_id: 7d3f7391-364d-4f5b-bed6-c5762fcfba1c, type: PplSu"},{"event":"cmd_output","timestamp":1607098389,"output":"bInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Im"},{"event":"cmd_output","timestamp":1607098389,"output":"pl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:09.406 [info] ppl_id: 7d3f7391-364d-4f5b-bed6-c5762f"},{"event":"cmd_output","timestamp":1607098389,"output":"cfba1c, type: PplRequests, event: persisted definition for request with request_token: 99953442-364b"},{"event":"cmd_output","timestamp":1607098389,"output":"-11eb-af37-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3"},{"event":"cmd_output","timestamp":1607098389,"output":"(L76), \n\u001b[0m\u001b[22m\n16:13:09.411 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #"},{"event":"cmd_output","timestamp":1607098389,"output":"Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:13:09.409151], name: \"master-"},{"event":"cmd_output","timestamp":1607098389,"output":".semaphore/semaphore.yml\", organization_id: \"ea583d08-322d-4436-a3c1-e78e35b8f15d\", project_id: \"8f7"},{"event":"cmd_output","timestamp":1607098389,"output":"1d078-81ba-4cbc-9057-008dd3f0bf30\", queue_id: \"189cb7e6-5fd0-4e70-8701-f65187047929\", scope: \"projec"},{"event":"cmd_output","timestamp":1607098389,"output":"t\", updated_at: ~N[2020-12-04 16:13:09.409197], user_generated: false}}\n\u001b[0m\u001b[22m\n16:13:09.417 [in"},{"event":"cmd_output","timestamp":1607098389,"output":"fo] ppl_id: not_available, event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitSta"},{"event":"cmd_output","timestamp":1607098389,"output":"te.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:09.417 [info] event: created, origin: Elixir.Ppl.PplSubInits"},{"event":"cmd_output","timestamp":1607098389,"output":".STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:09.417 [info] ppl_id: 7d3f7391-364"},{"event":"cmd_output","timestamp":1607098389,"output":"d-4f5b-bed6-c5762fcfba1c, type: PplBlocks, block_index: 0, state: initializing, event: created, reco"},{"event":"cmd_output","timestamp":1607098389,"output":"very_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098389,"output":"2m\n16:13:09.417 [info] ppl_id: 7d3f7391-364d-4f5b-bed6-c5762fcfba1c, type: PplBlocks, block_index:"},{"event":"cmd_output","timestamp":1607098389,"output":" 1, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandle"},{"event":"cmd_output","timestamp":1607098389,"output":"r.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:09.419 [info] ppl_id: 7d3f7391-364d-4f5b-bed"},{"event":"cmd_output","timestamp":1607098389,"output":"6-c5762fcfba1c, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_cou"},{"event":"cmd_output","timestamp":1607098389,"output":"nt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:09.433 [info] ppl"},{"event":"cmd_output","timestamp":1607098389,"output":"_id: 7d3f7391-364d-4f5b-bed6-c5762fcfba1c, type: Ppls, state: pending, event: exit_scheduling, recov"},{"event":"cmd_output","timestamp":1607098389,"output":"ery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:09.441 [inf"},{"event":"cmd_output","timestamp":1607098389,"output":"o] ppl_id: 7d3f7391-364d-4f5b-bed6-c5762fcfba1c, type: Ppls, state: queuing, event: exit_scheduling"},{"event":"cmd_output","timestamp":1607098389,"output":", recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:09.4"},{"event":"cmd_output","timestamp":1607098389,"output":"49 [info] ppl_id: 7d3f7391-364d-4f5b-bed6-c5762fcfba1c, type: Ppls, state: running, event: exit_sch"},{"event":"cmd_output","timestamp":1607098389,"output":"eduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * "},{"event":"cmd_output","timestamp":1607098389,"output":"test implicit blocks dependancies (338.7ms)\u001b[0m\n * test explicit blocks dependancies exists - pass"},{"event":"cmd_output","timestamp":1607098389,"output":"\u001b[22m\n16:13:09.547 [info] Request: 'run: %{\"branch_id\" => \"0aa70282-3a64-4307-b9c5-6d6869925cdc\", "},{"event":"cmd_output","timestamp":1607098389,"output":"\"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"semaphore.yml\", \"hook_id\" ="},{"event":"cmd_output","timestamp":1607098389,"output":"> \"99c90038-364b-11eb-ad91-5254005464e2\", \"label\" => \"master\", \"organization_id\" => \"560d40b7-e354-4"},{"event":"cmd_output","timestamp":1607098389,"output":"4e6-b4fb-d8872ab891c2\", \"owner\" => \"rt\", \"project_id\" => \"2be92b9f-585d-4763-847b-7b6dc2bf260c\", \"re"},{"event":"cmd_output","timestamp":1607098389,"output":"po_name\" => \"13_free_topology\", \"request_token\" => \"99c8f5ca-364b-11eb-86b9-5254005464e2\", \"requeste"},{"event":"cmd_output","timestamp":1607098389,"output":"r_id\" => \"f957b88e-28b7-4cb4-a432-343da5520d87\", \"service\" => \"local\", \"suppressed_attributes\" => [\""},{"event":"cmd_output","timestamp":1607098389,"output":"access_token\", \"client_secret\"], \"wf_id\" => \"f53fa446-abcf-4e79-9a8c-9e901c70642c\", \"working_dir\" =>"},{"event":"cmd_output","timestamp":1607098389,"output":" \".semaphore\"}\n\u001b[0m\u001b[22m\n16:13:09.549 [info] ppl_id: ad81dde8-cea5-4d9a-a926-1cd2c71c0198, type: "},{"event":"cmd_output","timestamp":1607098389,"output":"PplRequests, event: persisted schedule request with request_token: 99c8f5ca-364b-11eb-86b9-525400546"},{"event":"cmd_output","timestamp":1607098389,"output":"4e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098389,"output":"6:13:09.550 [info] ppl_id: ad81dde8-cea5-4d9a-a926-1cd2c71c0198, type: Ppls, state: initializing, e"},{"event":"cmd_output","timestamp":1607098389,"output":"vent: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2("},{"event":"cmd_output","timestamp":1607098389,"output":"L124), \n\u001b[0m\u001b[22m\n16:13:09.553 [info] Project 2be92b9f-585d-4763-847b-7b6dc2bf260c and branch mas"},{"event":"cmd_output","timestamp":1607098389,"output":"terlatest_wf details updated: \"wf_id: f53fa446-abcf-4e79-9a8c-9e901c70642c, wf_number: 1\"\n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098389,"output":"\n16:13:09.554 [info] Persisted ppl_sub_init for pipeline with ppl_id: ad81dde8-cea5-4d9a-a926-1cd2"},{"event":"cmd_output","timestamp":1607098389,"output":"c71c0198: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_"},{"event":"cmd_output","timestamp":1607098389,"output":"inits\">, compile_task_id: nil, error_description: nil, id: 292, in_scheduling: false, init_type: \"re"},{"event":"cmd_output","timestamp":1607098389,"output":"gular\", inserted_at: ~N[2020-12-04 16:13:09.553740], pipeline_requests: #Ecto.Association.NotLoaded<"},{"event":"cmd_output","timestamp":1607098389,"output":"association :pipeline_requests is not loaded>, ppl_id: \"ad81dde8-cea5-4d9a-a926-1cd2c71c0198\", recov"},{"event":"cmd_output","timestamp":1607098389,"output":"ery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_r"},{"event":"cmd_output","timestamp":1607098389,"output":"equest_desc: nil, updated_at: ~N[2020-12-04 16:13:09.553747]}\n\u001b[0m\u001b[22m\n16:13:09.558 [info] Perio"},{"event":"cmd_output","timestamp":1607098389,"output":"dic from module Elixir.Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.STMHandler.In"},{"event":"cmd_output","timestamp":1607098389,"output":"itializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Initi"},{"event":"cmd_output","timestamp":1607098389,"output":"alizingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], cooling_time"},{"event":"cmd_output","timestamp":1607098389,"output":"_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher_cb: #Function"},{"event":"cmd_output","timestamp":1607098389,"output":"<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, returning: [:id"},{"event":"cmd_output","timestamp":1607098389,"output":", :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Mode"},{"event":"cmd_output","timestamp":1607098389,"output":"l.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:09.558 [info] Periodic from module Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098389,"output":"SubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period:"},{"event":"cmd_output","timestamp":1607098389,"output":" 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurri"},{"event":"cmd_output","timestamp":1607098389,"output":"ng args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits"},{"event":"cmd_output","timestamp":1607098389,"output":".Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: ["},{"event":"cmd_output","timestamp":1607098389,"output":":id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSub"},{"event":"cmd_output","timestamp":1607098389,"output":"Inits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:09.558 [info] Periodic from modu"},{"event":"cmd_output","timestamp":1607098389,"output":"le Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler.Fetch"},{"event":"cmd_output","timestamp":1607098389,"output":"ingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-Fetch"},{"event":"cmd_output","timestamp":1607098389,"output":"ingState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"done\"], cooling_time"},{"event":"cmd_output","timestamp":1607098389,"output":"_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fetching\", publisher_cb"},{"event":"cmd_output","timestamp":1607098389,"output":": :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :rec"},{"event":"cmd_output","timestamp":1607098389,"output":"overy_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098389,"output":"\n16:13:09.558 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CompilationState with "},{"event":"cmd_output","timestamp":1607098389,"output":"name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 100 ms, metric_name: {\"Ppl.behold"},{"event":"cmd_output","timestamp":1607098389,"output":"er-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurring args: %{allowed_states: [\"r"},{"event":"cmd_output","timestamp":1607098389,"output":"egular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubIni"},{"event":"cmd_output","timestamp":1607098389,"output":"ts.Model.PplSubInits, observed_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, return"},{"event":"cmd_output","timestamp":1607098389,"output":"ing: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl."},{"event":"cmd_output","timestamp":1607098389,"output":"PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:09.558 [info] Periodic fro"},{"event":"cmd_output","timestamp":1607098389,"output":"m module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHand"},{"event":"cmd_output","timestamp":1607098389,"output":"ler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMH"},{"event":"cmd_output","timestamp":1607098389,"output":"andler-RegularInitState\"]}, recurring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, initial"},{"event":"cmd_output","timestamp":1607098389,"output":"_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_init\", publisher_cb: :skip, repo"},{"event":"cmd_output","timestamp":1607098389,"output":": Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, "},{"event":"cmd_output","timestamp":1607098389,"output":":ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:09.55"},{"event":"cmd_output","timestamp":1607098389,"output":"9 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STM"},{"event":"cmd_output","timestamp":1607098389,"output":"Handler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-"},{"event":"cmd_output","timestamp":1607098389,"output":"PendingState\"]}, recurring args: %{allowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], coolin"},{"event":"cmd_output","timestamp":1607098389,"output":"g_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publisher_cb: #Functio"},{"event":"cmd_output","timestamp":1607098389,"output":"n<0.8493005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :ter"},{"event":"cmd_output","timestamp":1607098389,"output":"minate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls"},{"event":"cmd_output","timestamp":1607098389,"output":", task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:13:09.559 [info] Periodic from module Elixir."},{"event":"cmd_output","timestamp":1607098389,"output":"Ppl.Ppls.STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms"},{"event":"cmd_output","timestamp":1607098389,"output":", metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{all"},{"event":"cmd_output","timestamp":1607098389,"output":"owed_states: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppl"},{"event":"cmd_output","timestamp":1607098389,"output":"s, observed_state: \"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingSt"},{"event":"cmd_output","timestamp":1607098389,"output":"ate.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, "},{"event":"cmd_output","timestamp":1607098389,"output":":recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:09"},{"event":"cmd_output","timestamp":1607098389,"output":".668 [info] ppl_id: ad81dde8-cea5-4d9a-a926-1cd2c71c0198, type: PplRequests, event: persisted sourc"},{"event":"cmd_output","timestamp":1607098389,"output":"e_args for pipeline: ad81dde8-cea5-4d9a-a926-1cd2c71c0198, origin: Elixir.Ppl.PplRequests.Model.PplR"},{"event":"cmd_output","timestamp":1607098389,"output":"equestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:13:09.670 [info] ppl_id: ad81dde8-cea5-4d9a-a9"},{"event":"cmd_output","timestamp":1607098389,"output":"26-1cd2c71c0198, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098389,"output":"in: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:09.688 [info] ppl_id: ad81dd"},{"event":"cmd_output","timestamp":1607098389,"output":"e8-cea5-4d9a-a926-1cd2c71c0198, type: PplSubInits, state: regular_init, event: exit_scheduling, reco"},{"event":"cmd_output","timestamp":1607098389,"output":"very_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:09.718 [in"},{"event":"cmd_output","timestamp":1607098389,"output":"fo] ppl_id: ad81dde8-cea5-4d9a-a926-1cd2c71c0198, type: PplRequests, event: persisted definition fo"},{"event":"cmd_output","timestamp":1607098389,"output":"r request with request_token: 99c8f5ca-364b-11eb-86b9-5254005464e2, origin: Elixir.Ppl.PplRequests.M"},{"event":"cmd_output","timestamp":1607098389,"output":"odel.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:13:09.721 [info] Queue persisted:"},{"event":"cmd_output","timestamp":1607098389,"output":" {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N["},{"event":"cmd_output","timestamp":1607098389,"output":"2020-12-04 16:13:09.720044], name: \"master-.semaphore/semaphore.yml\", organization_id: \"560d40b7-e35"},{"event":"cmd_output","timestamp":1607098389,"output":"4-44e6-b4fb-d8872ab891c2\", project_id: \"2be92b9f-585d-4763-847b-7b6dc2bf260c\", queue_id: \"02a2c334-6"},{"event":"cmd_output","timestamp":1607098389,"output":"f28-49e6-9822-1a37730d14a9\", scope: \"project\", updated_at: ~N[2020-12-04 16:13:09.720052], user_gene"},{"event":"cmd_output","timestamp":1607098389,"output":"rated: false}}\n\u001b[0m\u001b[22m\n16:13:09.728 [info] ppl_id: not_available, event: created, origin: Elixi"},{"event":"cmd_output","timestamp":1607098389,"output":"r.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:09.728 [info] eve"},{"event":"cmd_output","timestamp":1607098389,"output":"nt: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098389,"output":"\n16:13:09.728 [info] ppl_id: ad81dde8-cea5-4d9a-a926-1cd2c71c0198, type: PplBlocks, block_index: 0"},{"event":"cmd_output","timestamp":1607098389,"output":", state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler."},{"event":"cmd_output","timestamp":1607098389,"output":"RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:09.728 [info] ppl_id: ad81dde8-cea5-4d9a-a926-"},{"event":"cmd_output","timestamp":1607098389,"output":"1cd2c71c0198, type: PplBlocks, block_index: 1, state: initializing, event: created, recovery_count: "},{"event":"cmd_output","timestamp":1607098389,"output":"0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:09"},{"event":"cmd_output","timestamp":1607098389,"output":".728 [info] ppl_id: ad81dde8-cea5-4d9a-a926-1cd2c71c0198, type: PplBlocks, block_index: 2, state: i"},{"event":"cmd_output","timestamp":1607098389,"output":"nitializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularIni"},{"event":"cmd_output","timestamp":1607098389,"output":"tState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:09.728 [info] ppl_id: ad81dde8-cea5-4d9a-a926-1cd2c71c01"},{"event":"cmd_output","timestamp":1607098389,"output":"98, type: PplBlocks, block_index: 3, state: initializing, event: created, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098389,"output":" Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:09.728 [info"},{"event":"cmd_output","timestamp":1607098389,"output":"] ppl_id: ad81dde8-cea5-4d9a-a926-1cd2c71c0198, type: PplBlocks, block_index: 4, state: initializin"},{"event":"cmd_output","timestamp":1607098389,"output":"g, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all"},{"event":"cmd_output","timestamp":1607098389,"output":"_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:09.729 [info] ppl_id: ad81dde8-cea5-4d9a-a926-1cd2c71c0198, type: "},{"event":"cmd_output","timestamp":1607098389,"output":"PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098389,"output":"Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:09.742 [info] ppl_id: ad81dde8-cea5-4d9"},{"event":"cmd_output","timestamp":1607098389,"output":"a-a926-1cd2c71c0198, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098389,"output":"Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:09.748 [info] ppl_id: ad81dde8-c"},{"event":"cmd_output","timestamp":1607098389,"output":"ea5-4d9a-a926-1cd2c71c0198, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098389,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:09.763 [info] ppl_id: ad8"},{"event":"cmd_output","timestamp":1607098389,"output":"1dde8-cea5-4d9a-a926-1cd2c71c0198, type: Ppls, state: running, event: exit_scheduling, recovery_coun"},{"event":"cmd_output","timestamp":1607098389,"output":"t: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test explicit blocks d"},{"event":"cmd_output","timestamp":1607098389,"output":"ependancies exists - pass (220.1ms)\u001b[0m\n * test explicit blocks dependancies exists - fail\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098389,"output":"6:13:09.767 [info] Request: 'run: %{\"branch_id\" => \"f688cb36-68cd-4f49-86ff-3ad943688bb3\", \"branch_"},{"event":"cmd_output","timestamp":1607098389,"output":"name\" => \"master\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"semaphore.yml\", \"hook_id\" => \"99eaa"},{"event":"cmd_output","timestamp":1607098389,"output":"1f2-364b-11eb-9ea2-5254005464e2\", \"label\" => \"master\", \"organization_id\" => \"8b695183-a147-422f-8ac7"},{"event":"cmd_output","timestamp":1607098389,"output":"-ad9efc1999d0\", \"owner\" => \"rt\", \"project_id\" => \"c06795d9-d09d-43f4-941b-4327a8d26a36\", \"repo_name\""},{"event":"cmd_output","timestamp":1607098389,"output":" => \"12_failing_deps\", \"request_token\" => \"99ea928e-364b-11eb-bf96-5254005464e2\", \"requester_id\" => "},{"event":"cmd_output","timestamp":1607098389,"output":"\"f7113f22-5d51-4f04-96f9-50b644afe335\", \"service\" => \"local\", \"suppressed_attributes\" => [\"access_to"},{"event":"cmd_output","timestamp":1607098389,"output":"ken\", \"client_secret\"], \"wf_id\" => \"19c1ead7-4a21-4731-bdca-965be17d3f18\", \"working_dir\" => \".semaph"},{"event":"cmd_output","timestamp":1607098389,"output":"ore\"}\n\u001b[0m\u001b[22m\n16:13:09.769 [info] ppl_id: edbe077d-44f9-4789-bf38-90fd81a7b4b1, type: PplReques"},{"event":"cmd_output","timestamp":1607098389,"output":"ts, event: persisted schedule request with request_token: 99ea928e-364b-11eb-bf96-5254005464e2, orig"},{"event":"cmd_output","timestamp":1607098389,"output":"in: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:13:09.7"},{"event":"cmd_output","timestamp":1607098389,"output":"71 [info] ppl_id: edbe077d-44f9-4789-bf38-90fd81a7b4b1, type: Ppls, state: initializing, event: ini"},{"event":"cmd_output","timestamp":1607098389,"output":"tializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n"},{"event":"cmd_output","timestamp":1607098389,"output":"\u001b[0m\u001b[22m\n16:13:09.778 [info] Project c06795d9-d09d-43f4-941b-4327a8d26a36 and branch masterlatest"},{"event":"cmd_output","timestamp":1607098389,"output":"_wf details updated: \"wf_id: 19c1ead7-4a21-4731-bdca-965be17d3f18, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:13:0"},{"event":"cmd_output","timestamp":1607098389,"output":"9.780 [info] Persisted ppl_sub_init for pipeline with ppl_id: edbe077d-44f9-4789-bf38-90fd81a7b4b1:"},{"event":"cmd_output","timestamp":1607098389,"output":" %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, "},{"event":"cmd_output","timestamp":1607098389,"output":"compile_task_id: nil, error_description: nil, id: 293, in_scheduling: false, init_type: \"regular\", i"},{"event":"cmd_output","timestamp":1607098389,"output":"nserted_at: ~N[2020-12-04 16:13:09.779147], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"edbe077d-44f9-4789-bf38-90fd81a7b4b1\", recovery_count"},{"event":"cmd_output","timestamp":1607098389,"output":": 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_de"},{"event":"cmd_output","timestamp":1607098389,"output":"sc: nil, updated_at: ~N[2020-12-04 16:13:09.779156]}\n\u001b[0m\u001b[22m\n16:13:09.783 [info] Periodic from "},{"event":"cmd_output","timestamp":1607098389,"output":"module Elixir.Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.STMHandler.Initializin"},{"event":"cmd_output","timestamp":1607098389,"output":"gState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingSt"},{"event":"cmd_output","timestamp":1607098389,"output":"ate\"]}, recurring args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], cooling_time_sec: 0, "},{"event":"cmd_output","timestamp":1607098389,"output":"initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher_cb: #Function<0.125326"},{"event":"cmd_output","timestamp":1607098389,"output":"080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :termin"},{"event":"cmd_output","timestamp":1607098389,"output":"ate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, t"},{"event":"cmd_output","timestamp":1607098389,"output":"ask_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:09.784 [info] Periodic from module Elixir.Ppl.PplSubInits."},{"event":"cmd_output","timestamp":1607098389,"output":"STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 100 ms, "},{"event":"cmd_output","timestamp":1607098389,"output":"metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args: "},{"event":"cmd_output","timestamp":1607098389,"output":"%{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.Pp"},{"event":"cmd_output","timestamp":1607098389,"output":"lSubInits, observed_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :ter"},{"event":"cmd_output","timestamp":1607098389,"output":"minate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Mod"},{"event":"cmd_output","timestamp":1607098389,"output":"el.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:09.784 [info] Periodic from module Elixir"},{"event":"cmd_output","timestamp":1607098389,"output":".Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler.FetchingState "},{"event":"cmd_output","timestamp":1607098389,"output":":: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\""},{"event":"cmd_output","timestamp":1607098389,"output":"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"done\"], cooling_time_sec: -2,"},{"event":"cmd_output","timestamp":1607098389,"output":" initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fetching\", publisher_cb: :skip, "},{"event":"cmd_output","timestamp":1607098389,"output":"repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_cou"},{"event":"cmd_output","timestamp":1607098389,"output":"nt, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:0"},{"event":"cmd_output","timestamp":1607098389,"output":"9.784 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CompilationState with name Elix"},{"event":"cmd_output","timestamp":1607098389,"output":"ir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_u"},{"event":"cmd_output","timestamp":1607098389,"output":"p\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurring args: %{allowed_states: [\"regular_in"},{"event":"cmd_output","timestamp":1607098389,"output":"it\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model."},{"event":"cmd_output","timestamp":1607098389,"output":"PplSubInits, observed_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id"},{"event":"cmd_output","timestamp":1607098389,"output":", :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubIni"},{"event":"cmd_output","timestamp":1607098389,"output":"ts.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:09.784 [info] Periodic from module "},{"event":"cmd_output","timestamp":1607098389,"output":"Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHandler.Regul"},{"event":"cmd_output","timestamp":1607098389,"output":"arInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-Re"},{"event":"cmd_output","timestamp":1607098389,"output":"gularInitState\"]}, recurring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, initial_query: P"},{"event":"cmd_output","timestamp":1607098389,"output":"pl.PplSubInits.Model.PplSubInits, observed_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.Ect"},{"event":"cmd_output","timestamp":1607098389,"output":"oRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id],"},{"event":"cmd_output","timestamp":1607098389,"output":" schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:09.785 [info] "},{"event":"cmd_output","timestamp":1607098389,"output":" Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler.P"},{"event":"cmd_output","timestamp":1607098389,"output":"endingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingSt"},{"event":"cmd_output","timestamp":1607098389,"output":"ate\"]}, recurring args: %{allowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_se"},{"event":"cmd_output","timestamp":1607098389,"output":"c: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publisher_cb: #Function<0.84930"},{"event":"cmd_output","timestamp":1607098389,"output":"05/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_re"},{"event":"cmd_output","timestamp":1607098389,"output":"quest, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_su"},{"event":"cmd_output","timestamp":1607098389,"output":"pervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:13:09.785 [info] Periodic from module Elixir.Ppl.Ppls."},{"event":"cmd_output","timestamp":1607098389,"output":"STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, metric_"},{"event":"cmd_output","timestamp":1607098389,"output":"name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{allowed_stat"},{"event":"cmd_output","timestamp":1607098389,"output":"es: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observ"},{"event":"cmd_output","timestamp":1607098389,"output":"ed_state: \"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.args/"},{"event":"cmd_output","timestamp":1607098389,"output":"0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery"},{"event":"cmd_output","timestamp":1607098389,"output":"_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:09.898 [inf"},{"event":"cmd_output","timestamp":1607098389,"output":"o] ppl_id: edbe077d-44f9-4789-bf38-90fd81a7b4b1, type: PplRequests, event: persisted source_args fo"},{"event":"cmd_output","timestamp":1607098389,"output":"r pipeline: edbe077d-44f9-4789-bf38-90fd81a7b4b1, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQu"},{"event":"cmd_output","timestamp":1607098389,"output":"eries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:13:09.902 [info] ppl_id: edbe077d-44f9-4789-bf38-90fd81"},{"event":"cmd_output","timestamp":1607098389,"output":"a7b4b1, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098389,"output":"r.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:09.921 [info] ppl_id: edbe077d-44f9-4"},{"event":"cmd_output","timestamp":1607098389,"output":"789-bf38-90fd81a7b4b1, type: PplSubInits, state: done, result: failed, event: exit_scheduling, recov"},{"event":"cmd_output","timestamp":1607098389,"output":"ery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:09.934 [inf"},{"event":"cmd_output","timestamp":1607098389,"output":"o] ppl_id: edbe077d-44f9-4789-bf38-90fd81a7b4b1, type: Ppls, state: done, result: failed, event: ex"},{"event":"cmd_output","timestamp":1607098389,"output":"it_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32"},{"event":"cmd_output","timestamp":1607098389,"output":"m\r * test explicit blocks dependancies exists - fail (227.4ms)\u001b[0m\n\nPpl.PplBlocks.Beholder.Test\n"},{"event":"cmd_output","timestamp":1607098389,"output":" * test pipeline's block is terminated when recovery counter reaches threshold\r * test pipeline's "},{"event":"cmd_output","timestamp":1607098389,"output":"block is terminated when recovery counter reaches threshold (skipped)\n * test recovery counter is "},{"event":"cmd_output","timestamp":1607098389,"output":"incremented when ppl block event is recovered from stuck\r * test recovery counter is incremented wh"},{"event":"cmd_output","timestamp":1607098389,"output":"en ppl block event is recovered from stuck (skipped)\n * test child_spec accepts 1 arg and returns "},{"event":"cmd_output","timestamp":1607098389,"output":"a map\r * test child_spec accepts 1 arg and returns a map (skipped)\n\nPpl.OrgEventsConsumer.Test\n "},{"event":"cmd_output","timestamp":1607098390,"output":" * test valid message received => all pipelines from the org are terminated\u001b[22m\n16:13:10.065 [info"},{"event":"cmd_output","timestamp":1607098390,"output":"] Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.STMHa"},{"event":"cmd_output","timestamp":1607098390,"output":"ndler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandl"},{"event":"cmd_output","timestamp":1607098390,"output":"er-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], cool"},{"event":"cmd_output","timestamp":1607098390,"output":"ing_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher_cb: #"},{"event":"cmd_output","timestamp":1607098390,"output":"Function<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, returni"},{"event":"cmd_output","timestamp":1607098390,"output":"ng: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.P"},{"event":"cmd_output","timestamp":1607098390,"output":"pls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:10.065 [info] Periodic from module Elixir"},{"event":"cmd_output","timestamp":1607098390,"output":".Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 100 m"},{"event":"cmd_output","timestamp":1607098390,"output":"s, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args: %{al"},{"event":"cmd_output","timestamp":1607098390,"output":"lowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098390,"output":"s.Model.Ppls, observed_state: \"pending\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler."},{"event":"cmd_output","timestamp":1607098390,"output":"PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, "},{"event":"cmd_output","timestamp":1607098390,"output":":result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor"},{"event":"cmd_output","timestamp":1607098390,"output":"}\n\u001b[0m\u001b[22m\n16:13:10.066 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.QueuingState with"},{"event":"cmd_output","timestamp":1607098390,"output":" name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up"},{"event":"cmd_output","timestamp":1607098390,"output":"\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{allowed_states: [\"queuing\", \"running\", \""},{"event":"cmd_output","timestamp":1607098390,"output":"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", publish"},{"event":"cmd_output","timestamp":1607098390,"output":"er_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, retu"},{"event":"cmd_output","timestamp":1607098390,"output":"rning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Pp"},{"event":"cmd_output","timestamp":1607098390,"output":"l.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:10.066 [info] Periodic from module Eli"},{"event":"cmd_output","timestamp":1607098390,"output":"xir.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHandler.RunningState :: period: 10"},{"event":"cmd_output","timestamp":1607098390,"output":"0 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring args: %"},{"event":"cmd_output","timestamp":1607098390,"output":"{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Mode"},{"event":"cmd_output","timestamp":1607098390,"output":"l.Ppls, observed_state: \"running\", publisher_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler.Runni"},{"event":"cmd_output","timestamp":1607098390,"output":"ngState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :resu"},{"event":"cmd_output","timestamp":1607098390,"output":"lt, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b["},{"event":"cmd_output","timestamp":1607098390,"output":"0m\u001b[22m\n16:13:10.066 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.StoppingState with nam"},{"event":"cmd_output","timestamp":1607098390,"output":"e Elixir.Ppl.Ppls.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", "},{"event":"cmd_output","timestamp":1607098390,"output":"[\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cool"},{"event":"cmd_output","timestamp":1607098390,"output":"ing_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"stopping\", publisher_cb: #Fun"},{"event":"cmd_output","timestamp":1607098390,"output":"ction<0.71803493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id"},{"event":"cmd_output","timestamp":1607098390,"output":", :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Mode"},{"event":"cmd_output","timestamp":1607098390,"output":"l.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:10.066 [info] Periodic from module Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098390,"output":"SubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period:"},{"event":"cmd_output","timestamp":1607098390,"output":" 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurri"},{"event":"cmd_output","timestamp":1607098390,"output":"ng args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits"},{"event":"cmd_output","timestamp":1607098390,"output":".Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: ["},{"event":"cmd_output","timestamp":1607098390,"output":":id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSub"},{"event":"cmd_output","timestamp":1607098390,"output":"Inits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:10.066 [info] Periodic from modu"},{"event":"cmd_output","timestamp":1607098390,"output":"le Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler.Fetch"},{"event":"cmd_output","timestamp":1607098390,"output":"ingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-Fetch"},{"event":"cmd_output","timestamp":1607098390,"output":"ingState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"done\"], cooling_time"},{"event":"cmd_output","timestamp":1607098390,"output":"_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fetching\", publisher_cb"},{"event":"cmd_output","timestamp":1607098390,"output":": :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :rec"},{"event":"cmd_output","timestamp":1607098390,"output":"overy_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098390,"output":"\n16:13:10.067 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CompilationState with "},{"event":"cmd_output","timestamp":1607098390,"output":"name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 100 ms, metric_name: {\"Ppl.behold"},{"event":"cmd_output","timestamp":1607098390,"output":"er-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurring args: %{allowed_states: [\"r"},{"event":"cmd_output","timestamp":1607098390,"output":"egular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubIni"},{"event":"cmd_output","timestamp":1607098390,"output":"ts.Model.PplSubInits, observed_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, return"},{"event":"cmd_output","timestamp":1607098390,"output":"ing: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl."},{"event":"cmd_output","timestamp":1607098390,"output":"PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:10.067 [info] Periodic fro"},{"event":"cmd_output","timestamp":1607098390,"output":"m module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHand"},{"event":"cmd_output","timestamp":1607098390,"output":"ler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMH"},{"event":"cmd_output","timestamp":1607098390,"output":"andler-RegularInitState\"]}, recurring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, initial"},{"event":"cmd_output","timestamp":1607098390,"output":"_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_init\", publisher_cb: :skip, repo"},{"event":"cmd_output","timestamp":1607098390,"output":": Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, "},{"event":"cmd_output","timestamp":1607098390,"output":":ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:10.06"},{"event":"cmd_output","timestamp":1607098390,"output":"7 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.InitializingState with name Elixir.Pp"},{"event":"cmd_output","timestamp":1607098390,"output":"l.PplBlocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\""},{"event":"cmd_output","timestamp":1607098390,"output":"Ppl-PplBlocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"w"},{"event":"cmd_output","timestamp":1607098390,"output":"aiting\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state:"},{"event":"cmd_output","timestamp":1607098390,"output":" \"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :upda"},{"event":"cmd_output","timestamp":1607098390,"output":"ted_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlo"},{"event":"cmd_output","timestamp":1607098390,"output":"cks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:10.067 [info] Periodic from module Elixir.Ppl.PplBlo"},{"event":"cmd_output","timestamp":1607098390,"output":"cks.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler.WaitingState :: period: 1000 m"},{"event":"cmd_output","timestamp":1607098390,"output":"s, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurring args:"},{"event":"cmd_output","timestamp":1607098390,"output":" %{allowed_states: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks"},{"event":"cmd_output","timestamp":1607098390,"output":".Model.PplBlocks, observed_state: \"waiting\", publisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.ST"},{"event":"cmd_output","timestamp":1607098390,"output":"MHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at,"},{"event":"cmd_output","timestamp":1607098390,"output":" :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, ta"},{"event":"cmd_output","timestamp":1607098390,"output":"sk_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:10.067 [info] Periodic from module Elixir.Ppl.PplBlocks.STM"},{"event":"cmd_output","timestamp":1607098390,"output":"Handler.RunningState with name Elixir.Ppl.PplBlocks.STMHandler.RunningState :: period: 1000 ms, metr"},{"event":"cmd_output","timestamp":1607098390,"output":"ic_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, recurring args: %{allo"},{"event":"cmd_output","timestamp":1607098390,"output":"wed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Mode"},{"event":"cmd_output","timestamp":1607098390,"output":"l.PplBlocks, observed_state: \"running\", publisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHan"},{"event":"cmd_output","timestamp":1607098390,"output":"dler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :st"},{"event":"cmd_output","timestamp":1607098390,"output":"ate, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlo"},{"event":"cmd_output","timestamp":1607098390,"output":"cks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:10.067 [info] Periodic from module Elixir.Ppl.PplBlo"},{"event":"cmd_output","timestamp":1607098390,"output":"cks.STMHandler.StoppingState with name Elixir.Ppl.PplBlocks.STMHandler.StoppingState :: period: 1000"},{"event":"cmd_output","timestamp":1607098390,"output":" ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurring ar"},{"event":"cmd_output","timestamp":1607098390,"output":"gs: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model"},{"event":"cmd_output","timestamp":1607098390,"output":".PplBlocks, observed_state: \"stopping\", publisher_cb: #Function<0.104215991/1 in Ppl.PplBlocks.STMHa"},{"event":"cmd_output","timestamp":1607098390,"output":"ndler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :"},{"event":"cmd_output","timestamp":1607098390,"output":"state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplB"},{"event":"cmd_output","timestamp":1607098390,"output":"locks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:10.068 [info] Periodic from module Elixir.Block.Bl"},{"event":"cmd_output","timestamp":1607098390,"output":"ocks.STMHandler.InitializingState with name Elixir.Block.Blocks.STMHandler.InitializingState :: peri"},{"event":"cmd_output","timestamp":1607098390,"output":"od: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, re"},{"event":"cmd_output","timestamp":1607098390,"output":"curring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Block"},{"event":"cmd_output","timestamp":1607098390,"output":"s.Model.Blocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Block.EctoRepo, returning"},{"event":"cmd_output","timestamp":1607098390,"output":": [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.M"},{"event":"cmd_output","timestamp":1607098390,"output":"odel.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:10.068 [info] Periodic from module Elixir.Bl"},{"event":"cmd_output","timestamp":1607098390,"output":"ock.Blocks.STMHandler.RunningState with name Elixir.Block.Blocks.STMHandler.RunningState :: period: "},{"event":"cmd_output","timestamp":1607098390,"output":"100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-RunningState\"]}, recurring a"},{"event":"cmd_output","timestamp":1607098390,"output":"rgs: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.B"},{"event":"cmd_output","timestamp":1607098390,"output":"locks.Model.Blocks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning:"},{"event":"cmd_output","timestamp":1607098390,"output":" [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Mo"},{"event":"cmd_output","timestamp":1607098390,"output":"del.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:10.068 [info] Periodic from module Elixir.Blo"},{"event":"cmd_output","timestamp":1607098390,"output":"ck.Blocks.STMHandler.StoppingState with name Elixir.Block.Blocks.STMHandler.StoppingState :: period:"},{"event":"cmd_output","timestamp":1607098390,"output":" 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-StoppingState\"]}, recurring"},{"event":"cmd_output","timestamp":1607098390,"output":" args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Mod"},{"event":"cmd_output","timestamp":1607098390,"output":"el.Blocks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :"},{"event":"cmd_output","timestamp":1607098390,"output":"terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Bloc"},{"event":"cmd_output","timestamp":1607098390,"output":"ks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:10.068 [info] Periodic from module Elixir.Block.Tasks"},{"event":"cmd_output","timestamp":1607098390,"output":".STMHandler.PendingState with name Elixir.Block.Tasks.STMHandler.PendingState :: period: 100 ms, met"},{"event":"cmd_output","timestamp":1607098390,"output":"ric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingState\"]}, recurring args: %{allow"},{"event":"cmd_output","timestamp":1607098390,"output":"ed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Tasks.Model.Tasks, observe"},{"event":"cmd_output","timestamp":1607098390,"output":"d_state: \"pending\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, "},{"event":"cmd_output","timestamp":1607098390,"output":":updated_at, :state, :recovery_count, :block_id, :build_request_id], schema: Block.Tasks.Model.Tasks"},{"event":"cmd_output","timestamp":1607098390,"output":", task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:10.068 [info] Periodic from module Elixir.Block.Tasks.S"},{"event":"cmd_output","timestamp":1607098390,"output":"TMHandler.RunningState with name Elixir.Block.Tasks.STMHandler.RunningState :: period: 100 ms, metri"},{"event":"cmd_output","timestamp":1607098390,"output":"c_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningState\"]}, recurring args: %{allowed"},{"event":"cmd_output","timestamp":1607098390,"output":"_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tas"},{"event":"cmd_output","timestamp":1607098390,"output":"ks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminat"},{"event":"cmd_output","timestamp":1607098390,"output":"e_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_s"},{"event":"cmd_output","timestamp":1607098390,"output":"upervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:10.068 [info] Periodic from module Elixir.Block.Tasks.STMHandle"},{"event":"cmd_output","timestamp":1607098390,"output":"r.StoppingState with name Elixir.Block.Tasks.STMHandler.StoppingState :: period: 100 ms, metric_name"},{"event":"cmd_output","timestamp":1607098390,"output":": {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]}, recurring args: %{allowed_stat"},{"event":"cmd_output","timestamp":1607098390,"output":"es: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_sta"},{"event":"cmd_output","timestamp":1607098390,"output":"te: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :upd"},{"event":"cmd_output","timestamp":1607098390,"output":"ated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :ski"},{"event":"cmd_output","timestamp":1607098390,"output":"p}\n\u001b[0m\u001b[22m\n16:13:10.071 [info] Request: 'run: %{\"branch_id\" => \"81460c44-3b74-421c-be5b-9ce6a22"},{"event":"cmd_output","timestamp":1607098390,"output":"53e5e\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"semaphore.yml\", \"ho"},{"event":"cmd_output","timestamp":1607098390,"output":"ok_id\" => \"9a18ca00-364b-11eb-9280-5254005464e2\", \"label\" => \"master\", \"organization_id\" => \"miner_o"},{"event":"cmd_output","timestamp":1607098390,"output":"rg\", \"owner\" => \"rt\", \"project_id\" => \"123\", \"repo_name\" => \"7_termination\", \"request_token\" => \"9a1"},{"event":"cmd_output","timestamp":1607098390,"output":"8be20-364b-11eb-8612-5254005464e2\", \"requester_id\" => \"5b4987de-b44d-4d15-9e49-f6703a09065b\", \"servi"},{"event":"cmd_output","timestamp":1607098390,"output":"ce\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"6ab734ff-8"},{"event":"cmd_output","timestamp":1607098390,"output":"292-43af-aff5-2e6184b7a8ef\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:13:10.084 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098390,"output":" ee838c42-a86a-4d8d-b176-37b1697b3a12, type: PplRequests, event: persisted schedule request with req"},{"event":"cmd_output","timestamp":1607098390,"output":"uest_token: 9a18be20-364b-11eb-8612-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQu"},{"event":"cmd_output","timestamp":1607098390,"output":"eries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:13:10.088 [info] ppl_id: ee838c42-a86a-4d8d-b176-37b"},{"event":"cmd_output","timestamp":1607098390,"output":"1697b3a12, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.P"},{"event":"cmd_output","timestamp":1607098390,"output":"pl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:13:10.095 [info] Project 123 an"},{"event":"cmd_output","timestamp":1607098390,"output":"d branch masterlatest_wf details updated: \"wf_id: 6ab734ff-8292-43af-aff5-2e6184b7a8ef, wf_number: 1"},{"event":"cmd_output","timestamp":1607098390,"output":"\"\n\u001b[0m\u001b[22m\n16:13:10.098 [info] Persisted ppl_sub_init for pipeline with ppl_id: ee838c42-a86a-4d"},{"event":"cmd_output","timestamp":1607098390,"output":"8d-b176-37b1697b3a12: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"p"},{"event":"cmd_output","timestamp":1607098390,"output":"ipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 294, in_scheduling: false, in"},{"event":"cmd_output","timestamp":1607098390,"output":"it_type: \"regular\", inserted_at: ~N[2020-12-04 16:13:10.096853], pipeline_requests: #Ecto.Associatio"},{"event":"cmd_output","timestamp":1607098390,"output":"n.NotLoaded, ppl_id: \"ee838c42-a86a-4d8d-b176-37b1697b"},{"event":"cmd_output","timestamp":1607098390,"output":"3a12\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil,"},{"event":"cmd_output","timestamp":1607098390,"output":" terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:13:10.096863]}\n\u001b[0m\u001b[22m\n16:13:10.111 ["},{"event":"cmd_output","timestamp":1607098390,"output":"info] Request: 'run: %{\"branch_id\" => \"ff76600e-f73d-41e2-ba4d-a74ff68a31d2\", \"branch_name\" => \"mas"},{"event":"cmd_output","timestamp":1607098390,"output":"ter\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"semaphore.yml\", \"hook_id\" => \"9a1ee714-364b-11eb"},{"event":"cmd_output","timestamp":1607098390,"output":"-9990-5254005464e2\", \"label\" => \"master\", \"organization_id\" => \"miner_org\", \"owner\" => \"rt\", \"projec"},{"event":"cmd_output","timestamp":1607098390,"output":"t_id\" => \"123\", \"repo_name\" => \"7_termination\", \"request_token\" => \"9a1eda94-364b-11eb-a9ba-52540054"},{"event":"cmd_output","timestamp":1607098390,"output":"64e2\", \"requester_id\" => \"d10a9aae-0332-49e3-b20c-49b148fc0734\", \"service\" => \"local\", \"suppressed_a"},{"event":"cmd_output","timestamp":1607098390,"output":"ttributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"fd83e952-1683-4a45-b232-c565e4791034\", "},{"event":"cmd_output","timestamp":1607098390,"output":"\"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:13:10.115 [info] ppl_id: 9122de62-ff0d-453b-9fca-c945"},{"event":"cmd_output","timestamp":1607098390,"output":"27a6e83b, type: PplRequests, event: persisted schedule request with request_token: 9a1eda94-364b-11e"},{"event":"cmd_output","timestamp":1607098390,"output":"b-a9ba-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55)"},{"event":"cmd_output","timestamp":1607098390,"output":", \n\u001b[0m\u001b[22m\n16:13:10.121 [info] ppl_id: 9122de62-ff0d-453b-9fca-c94527a6e83b, type: Ppls, state:"},{"event":"cmd_output","timestamp":1607098390,"output":" initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.pro"},{"event":"cmd_output","timestamp":1607098390,"output":"cess_response/2(L124), \n\u001b[0m\u001b[22m\n16:13:10.124 [info] ppl_id: ee838c42-a86a-4d8d-b176-37b1697b3a1"},{"event":"cmd_output","timestamp":1607098390,"output":"2, type: PplRequests, event: persisted source_args for pipeline: ee838c42-a86a-4d8d-b176-37b1697b3a1"},{"event":"cmd_output","timestamp":1607098390,"output":"2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:13:"},{"event":"cmd_output","timestamp":1607098390,"output":"10.127 [info] Project 123 and branch masterlatest_wf details updated: \"wf_id: fd83e952-1683-4a45-b2"},{"event":"cmd_output","timestamp":1607098390,"output":"32-c565e4791034, wf_number: 2\"\n\u001b[0m\u001b[22m\n16:13:10.127 [info] ppl_id: ee838c42-a86a-4d8d-b176-37b1"},{"event":"cmd_output","timestamp":1607098390,"output":"697b3a12, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098390,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:10.130 [info] Persisted ppl_sub_ini"},{"event":"cmd_output","timestamp":1607098390,"output":"t for pipeline with ppl_id: 9122de62-ff0d-453b-9fca-c94527a6e83b: %Ppl.PplSubInits.Model.PplSubInits"},{"event":"cmd_output","timestamp":1607098390,"output":"{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_descrip"},{"event":"cmd_output","timestamp":1607098390,"output":"tion: nil, id: 295, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:13:10."},{"event":"cmd_output","timestamp":1607098390,"output":"127232], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"9122de62-ff0d-453b-9fca-c94527a6e83b\", recovery_count: 0, result: nil, result_reason: ni"},{"event":"cmd_output","timestamp":1607098390,"output":"l, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 "},{"event":"cmd_output","timestamp":1607098390,"output":"16:13:10.127244]}\n\u001b[0m\u001b[22m\n16:13:10.145 [info] Request: 'run: %{\"branch_id\" => \"5b45f34c-e85c-4a"},{"event":"cmd_output","timestamp":1607098390,"output":"41-aef9-45dc16bc25ff\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"sema"},{"event":"cmd_output","timestamp":1607098390,"output":"phore.yml\", \"hook_id\" => \"9a23d530-364b-11eb-8ac4-5254005464e2\", \"label\" => \"master\", \"organization_"},{"event":"cmd_output","timestamp":1607098390,"output":"id\" => \"miner_org\", \"owner\" => \"rt\", \"project_id\" => \"123\", \"repo_name\" => \"7_termination\", \"request"},{"event":"cmd_output","timestamp":1607098390,"output":"_token\" => \"9a23cb9e-364b-11eb-8bbb-5254005464e2\", \"requester_id\" => \"fd599824-3e00-4981-883d-199ac1"},{"event":"cmd_output","timestamp":1607098390,"output":"c6d2b3\", \"service\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\""},{"event":"cmd_output","timestamp":1607098390,"output":" => \"1e30fb8e-83a1-47b4-ba03-4a258b5f11d7\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:13:10.152 "},{"event":"cmd_output","timestamp":1607098390,"output":"[info] ppl_id: 20153662-c531-4f24-bf89-ec11e632437d, type: PplRequests, event: persisted schedule r"},{"event":"cmd_output","timestamp":1607098390,"output":"equest with request_token: 9a23cb9e-364b-11eb-8bbb-5254005464e2, origin: Elixir.Ppl.PplRequests.Mode"},{"event":"cmd_output","timestamp":1607098390,"output":"l.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:13:10.155 [info] ppl_id: 9122de62-ff0"},{"event":"cmd_output","timestamp":1607098390,"output":"d-453b-9fca-c94527a6e83b, type: PplRequests, event: persisted source_args for pipeline: 9122de62-ff0"},{"event":"cmd_output","timestamp":1607098390,"output":"d-453b-9fca-c94527a6e83b, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L8"},{"event":"cmd_output","timestamp":1607098390,"output":"9), \n\u001b[0m\u001b[22m\n16:13:10.156 [info] ppl_id: ee838c42-a86a-4d8d-b176-37b1697b3a12, type: PplSubInit"},{"event":"cmd_output","timestamp":1607098390,"output":"s, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.lo"},{"event":"cmd_output","timestamp":1607098390,"output":"g_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:10.158 [info] ppl_id: 20153662-c531-4f24-bf89-ec11e632437"},{"event":"cmd_output","timestamp":1607098390,"output":"d, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls."},{"event":"cmd_output","timestamp":1607098390,"output":"Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:13:10.159 [info] ppl_id: 9122de62-ff0d-"},{"event":"cmd_output","timestamp":1607098390,"output":"453b-9fca-c94527a6e83b, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: "},{"event":"cmd_output","timestamp":1607098390,"output":"0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:10.164 [info] Project"},{"event":"cmd_output","timestamp":1607098390,"output":" 123 and branch masterlatest_wf details updated: \"wf_id: 1e30fb8e-83a1-47b4-ba03-4a258b5f11d7, wf_nu"},{"event":"cmd_output","timestamp":1607098390,"output":"mber: 3\"\n\u001b[0m\u001b[22m\n16:13:10.167 [info] Persisted ppl_sub_init for pipeline with ppl_id: 20153662-"},{"event":"cmd_output","timestamp":1607098390,"output":"c531-4f24-bf89-ec11e632437d: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loa"},{"event":"cmd_output","timestamp":1607098390,"output":"ded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 296, in_scheduling: fa"},{"event":"cmd_output","timestamp":1607098390,"output":"lse, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:13:10.164340], pipeline_requests: #Ecto.Ass"},{"event":"cmd_output","timestamp":1607098390,"output":"ociation.NotLoaded, ppl_id: \"20153662-c531-4f24-bf89-e"},{"event":"cmd_output","timestamp":1607098390,"output":"c11e632437d\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_reques"},{"event":"cmd_output","timestamp":1607098390,"output":"t: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:13:10.164347]}\n\u001b[0m\u001b[22m\n16:13:1"},{"event":"cmd_output","timestamp":1607098390,"output":"0.182 [info] Request: 'run: %{\"branch_id\" => \"94d405db-9557-45f0-991d-b48752218309\", \"branch_name\" "},{"event":"cmd_output","timestamp":1607098390,"output":"=> \"master\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"semaphore.yml\", \"hook_id\" => \"9a289dfe-36"},{"event":"cmd_output","timestamp":1607098390,"output":"4b-11eb-9b50-5254005464e2\", \"label\" => \"master\", \"organization_id\" => \"miner_org\", \"owner\" => \"rt\", "},{"event":"cmd_output","timestamp":1607098390,"output":"\"project_id\" => \"123\", \"repo_name\" => \"7_termination\", \"request_token\" => \"9a288b2a-364b-11eb-bb79-5"},{"event":"cmd_output","timestamp":1607098390,"output":"254005464e2\", \"requester_id\" => \"9376fb40-846e-45a6-b47d-735cca58b46f\", \"service\" => \"local\", \"suppr"},{"event":"cmd_output","timestamp":1607098390,"output":"essed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"3285270c-9ce4-4eb6-890c-05e18668"},{"event":"cmd_output","timestamp":1607098390,"output":"21bb\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:13:10.185 [info] ppl_id: 2ea14eb1-df51-45b1-94"},{"event":"cmd_output","timestamp":1607098390,"output":"4e-c8534bea3d51, type: PplRequests, event: persisted schedule request with request_token: 9a288b2a-3"},{"event":"cmd_output","timestamp":1607098390,"output":"64b-11eb-bb79-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response"},{"event":"cmd_output","timestamp":1607098390,"output":"/2(L55), \n\u001b[0m\u001b[22m\n16:13:10.187 [info] ppl_id: 20153662-c531-4f24-bf89-ec11e632437d, type: PplRe"},{"event":"cmd_output","timestamp":1607098390,"output":"quests, event: persisted source_args for pipeline: 20153662-c531-4f24-bf89-ec11e632437d, origin: Eli"},{"event":"cmd_output","timestamp":1607098390,"output":"xir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:13:10.188 [info] "},{"event":"cmd_output","timestamp":1607098390,"output":" ppl_id: 2ea14eb1-df51-45b1-944e-c8534bea3d51, type: Ppls, state: initializing, event: initializing,"},{"event":"cmd_output","timestamp":1607098390,"output":" recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098390,"output":"\n16:13:10.190 [info] Project 123 and branch masterlatest_wf details updated: \"wf_id: 3285270c-9ce4-"},{"event":"cmd_output","timestamp":1607098390,"output":"4eb6-890c-05e1866821bb, wf_number: 4\"\n\u001b[0m\u001b[22m\n16:13:10.191 [info] Persisted ppl_sub_init for pi"},{"event":"cmd_output","timestamp":1607098390,"output":"peline with ppl_id: 2ea14eb1-df51-45b1-944e-c8534bea3d51: %Ppl.PplSubInits.Model.PplSubInits{__meta_"},{"event":"cmd_output","timestamp":1607098390,"output":"_: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: ni"},{"event":"cmd_output","timestamp":1607098390,"output":"l, id: 297, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:13:10.190621],"},{"event":"cmd_output","timestamp":1607098390,"output":" pipeline_requests: #Ecto.Association.NotLoaded, ppl_i"},{"event":"cmd_output","timestamp":1607098390,"output":"d: \"2ea14eb1-df51-45b1-944e-c8534bea3d51\", recovery_count: 0, result: nil, result_reason: nil, state"},{"event":"cmd_output","timestamp":1607098390,"output":": \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:13:10"},{"event":"cmd_output","timestamp":1607098390,"output":".190629]}\n\u001b[0m\u001b[22m\n16:13:10.196 [info] ppl_id: 20153662-c531-4f24-bf89-ec11e632437d, type: PplSu"},{"event":"cmd_output","timestamp":1607098390,"output":"bInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.l"},{"event":"cmd_output","timestamp":1607098390,"output":"og_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:10.201 [info] ppl_id: 9122de62-ff0d-453b-9fca-c94527a6e8"},{"event":"cmd_output","timestamp":1607098390,"output":"3b, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098390,"output":"r.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:10.205 [info] Request: 'run: %{\"branc"},{"event":"cmd_output","timestamp":1607098390,"output":"h_id\" => \"b9174d6d-de27-4c56-aee7-4a1b738fa7f3\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4"},{"event":"cmd_output","timestamp":1607098390,"output":"469\", \"file_name\" => \"semaphore.yml\", \"hook_id\" => \"9a2c8022-364b-11eb-ab94-5254005464e2\", \"label\" ="},{"event":"cmd_output","timestamp":1607098390,"output":"> \"master\", \"organization_id\" => \"miner_org\", \"owner\" => \"rt\", \"project_id\" => \"123\", \"repo_name\" =>"},{"event":"cmd_output","timestamp":1607098390,"output":" \"7_termination\", \"request_token\" => \"9a2c738e-364b-11eb-88e7-5254005464e2\", \"requester_id\" => \"79ac"},{"event":"cmd_output","timestamp":1607098390,"output":"b1ee-75db-4c70-a3b0-4c1b0b441c83\", \"service\" => \"local\", \"suppressed_attributes\" => [\"access_token\","},{"event":"cmd_output","timestamp":1607098390,"output":" \"client_secret\"], \"wf_id\" => \"480dee45-d6a8-4197-95b0-edf3eb1be00c\", \"working_dir\" => \".semaphore\"}"},{"event":"cmd_output","timestamp":1607098390,"output":"\n\u001b[0m\u001b[22m\n16:13:10.208 [info] ppl_id: 4f5a5061-1636-4f3e-8b36-c9fd6d5439b7, type: PplRequests, e"},{"event":"cmd_output","timestamp":1607098390,"output":"vent: persisted schedule request with request_token: 9a2c738e-364b-11eb-88e7-5254005464e2, origin: E"},{"event":"cmd_output","timestamp":1607098390,"output":"lixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:13:10.211 [i"},{"event":"cmd_output","timestamp":1607098390,"output":"nfo] ppl_id: 4f5a5061-1636-4f3e-8b36-c9fd6d5439b7, type: Ppls, state: initializing, event: initiali"},{"event":"cmd_output","timestamp":1607098390,"output":"zing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098390,"output":"[22m\n16:13:10.213 [info] Project 123 and branch masterlatest_wf details updated: \"wf_id: 480dee45-"},{"event":"cmd_output","timestamp":1607098390,"output":"d6a8-4197-95b0-edf3eb1be00c, wf_number: 5\"\n\u001b[0m\u001b[22m\n16:13:10.215 [info] Persisted ppl_sub_init f"},{"event":"cmd_output","timestamp":1607098390,"output":"or pipeline with ppl_id: 4f5a5061-1636-4f3e-8b36-c9fd6d5439b7: %Ppl.PplSubInits.Model.PplSubInits{__"},{"event":"cmd_output","timestamp":1607098390,"output":"meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_descriptio"},{"event":"cmd_output","timestamp":1607098390,"output":"n: nil, id: 298, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:13:10.213"},{"event":"cmd_output","timestamp":1607098390,"output":"912], pipeline_requests: #Ecto.Association.NotLoaded, "},{"event":"cmd_output","timestamp":1607098390,"output":"ppl_id: \"4f5a5061-1636-4f3e-8b36-c9fd6d5439b7\", recovery_count: 0, result: nil, result_reason: nil, "},{"event":"cmd_output","timestamp":1607098390,"output":"state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:"},{"event":"cmd_output","timestamp":1607098390,"output":"13:10.213919]}\n\u001b[0m\u001b[22m\n16:13:10.219 [info] ppl_id: ee838c42-a86a-4d8d-b176-37b1697b3a12, type: "},{"event":"cmd_output","timestamp":1607098390,"output":"PplRequests, event: persisted definition for request with request_token: 9a18be20-364b-11eb-8612-525"},{"event":"cmd_output","timestamp":1607098390,"output":"4005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098390,"output":"[22m\n16:13:10.220 [info] ppl_id: 2ea14eb1-df51-45b1-944e-c8534bea3d51, type: PplRequests, event: p"},{"event":"cmd_output","timestamp":1607098390,"output":"ersisted source_args for pipeline: 2ea14eb1-df51-45b1-944e-c8534bea3d51, origin: Elixir.Ppl.PplReque"},{"event":"cmd_output","timestamp":1607098390,"output":"sts.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:13:10.223 [info] Queue persisted"},{"event":"cmd_output","timestamp":1607098390,"output":": {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N"},{"event":"cmd_output","timestamp":1607098390,"output":"[2020-12-04 16:13:10.220841], name: \"master-.semaphore/semaphore.yml\", organization_id: \"miner_org\","},{"event":"cmd_output","timestamp":1607098390,"output":" project_id: \"123\", queue_id: \"4290ad9e-8641-4ae6-85ff-136ca7fe85bc\", scope: \"project\", updated_at: "},{"event":"cmd_output","timestamp":1607098390,"output":"~N[2020-12-04 16:13:10.220850], user_generated: false}}\n\u001b[0m\u001b[22m\n16:13:10.224 [info] ppl_id: 2ea"},{"event":"cmd_output","timestamp":1607098390,"output":"14eb1-df51-45b1-944e-c8534bea3d51, type: PplSubInits, state: fetching, event: exit_scheduling, recov"},{"event":"cmd_output","timestamp":1607098390,"output":"ery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:10.224 [inf"},{"event":"cmd_output","timestamp":1607098390,"output":"o] Request: 'run: %{\"branch_id\" => \"11f1b393-d939-4d81-835f-33e5a8d77602\", \"branch_name\" => \"master"},{"event":"cmd_output","timestamp":1607098390,"output":"\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"semaphore.yml\", \"hook_id\" => \"9a3007d8-364b-11eb-90"},{"event":"cmd_output","timestamp":1607098390,"output":"2e-5254005464e2\", \"label\" => \"master\", \"organization_id\" => \"fa2b36de-e9c1-4fb9-842e-a6d44f6fb4b1\", "},{"event":"cmd_output","timestamp":1607098390,"output":"\"owner\" => \"rt\", \"project_id\" => \"0b88863b-e6c3-4b26-8ab7-a9c8e631ae2a\", \"repo_name\" => \"2_basic\", \""},{"event":"cmd_output","timestamp":1607098390,"output":"request_token\" => \"9a2ffbf8-364b-11eb-8161-5254005464e2\", \"requester_id\" => \"7af3bdb3-3d67-4a6d-94b2"},{"event":"cmd_output","timestamp":1607098390,"output":"-56c2642f1b30\", \"service\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], "},{"event":"cmd_output","timestamp":1607098390,"output":"\"wf_id\" => \"fe36fe10-ef85-4687-8413-7816969cb8f9\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:13:"},{"event":"cmd_output","timestamp":1607098390,"output":"10.228 [info] ppl_id: 3ccdc2ac-72bf-4319-817d-0c0b4e99a012, type: PplRequests, event: persisted sch"},{"event":"cmd_output","timestamp":1607098390,"output":"edule request with request_token: 9a2ffbf8-364b-11eb-8161-5254005464e2, origin: Elixir.Ppl.PplReques"},{"event":"cmd_output","timestamp":1607098390,"output":"ts.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:13:10.230 [info] ppl_id: 20153"},{"event":"cmd_output","timestamp":1607098390,"output":"662-c531-4f24-bf89-ec11e632437d, type: PplSubInits, state: regular_init, event: exit_scheduling, rec"},{"event":"cmd_output","timestamp":1607098390,"output":"overy_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:10.231 [i"},{"event":"cmd_output","timestamp":1607098390,"output":"nfo] ppl_id: 3ccdc2ac-72bf-4319-817d-0c0b4e99a012, type: Ppls, state: initializing, event: initiali"},{"event":"cmd_output","timestamp":1607098390,"output":"zing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098390,"output":"[22m\n16:13:10.232 [info] ppl_id: not_available, event: created, origin: Elixir.Ppl.PplSubInits.STM"},{"event":"cmd_output","timestamp":1607098390,"output":"Handler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:10.232 [info] event: created, origin: "},{"event":"cmd_output","timestamp":1607098390,"output":"Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:10.232 [info]"},{"event":"cmd_output","timestamp":1607098390,"output":" ppl_id: ee838c42-a86a-4d8d-b176-37b1697b3a12, type: PplBlocks, block_index: 0, state: initializing"},{"event":"cmd_output","timestamp":1607098390,"output":", event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_"},{"event":"cmd_output","timestamp":1607098390,"output":"ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:10.233 [info] ppl_id: ee838c42-a86a-4d8d-b176-37b1697b3a12, type: P"},{"event":"cmd_output","timestamp":1607098390,"output":"plBlocks, block_index: 1, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098390,"output":".PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:10.235 [info] ppl_id: "},{"event":"cmd_output","timestamp":1607098390,"output":"ee838c42-a86a-4d8d-b176-37b1697b3a12, type: PplSubInits, state: done, result: passed, event: exit_sc"},{"event":"cmd_output","timestamp":1607098390,"output":"heduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098390,"output":":13:10.237 [info] Project 0b88863b-e6c3-4b26-8ab7-a9c8e631ae2a and branch masterlatest_wf details u"},{"event":"cmd_output","timestamp":1607098390,"output":"pdated: \"wf_id: fe36fe10-ef85-4687-8413-7816969cb8f9, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:13:10.239 [info] "},{"event":"cmd_output","timestamp":1607098390,"output":" Persisted ppl_sub_init for pipeline with ppl_id: 3ccdc2ac-72bf-4319-817d-0c0b4e99a012: %Ppl.PplSubI"},{"event":"cmd_output","timestamp":1607098390,"output":"nits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_"},{"event":"cmd_output","timestamp":1607098390,"output":"id: nil, error_description: nil, id: 299, in_scheduling: false, init_type: \"regular\", inserted_at: ~"},{"event":"cmd_output","timestamp":1607098390,"output":"N[2020-12-04 16:13:10.237411], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"3ccdc2ac-72bf-4319-817d-0c0b4e99a012\", recovery_count: 0, result: "},{"event":"cmd_output","timestamp":1607098390,"output":"nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, upda"},{"event":"cmd_output","timestamp":1607098390,"output":"ted_at: ~N[2020-12-04 16:13:10.237418]}\n\u001b[0m\u001b[22m\n16:13:10.239 [info] ppl_id: 4f5a5061-1636-4f3e-"},{"event":"cmd_output","timestamp":1607098390,"output":"8b36-c9fd6d5439b7, type: PplRequests, event: persisted source_args for pipeline: 4f5a5061-1636-4f3e-"},{"event":"cmd_output","timestamp":1607098390,"output":"8b36-c9fd6d5439b7, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b"},{"event":"cmd_output","timestamp":1607098390,"output":"[0m\u001b[22m\n16:13:10.244 [info] ppl_id: 4f5a5061-1636-4f3e-8b36-c9fd6d5439b7, type: PplSubInits, stat"},{"event":"cmd_output","timestamp":1607098390,"output":"e: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_cha"},{"event":"cmd_output","timestamp":1607098390,"output":"nge/1(L90), \n\u001b[0m\u001b[22m\n16:13:10.254 [info] ppl_id: ee838c42-a86a-4d8d-b176-37b1697b3a12, type: Pp"},{"event":"cmd_output","timestamp":1607098390,"output":"lBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098390,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:10.257 [info] ppl_id: ee838c42-a86a-4d8d"},{"event":"cmd_output","timestamp":1607098390,"output":"-b176-37b1697b3a12, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: E"},{"event":"cmd_output","timestamp":1607098390,"output":"lixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:10.262 [info] ppl_id: 3ccdc2ac-72"},{"event":"cmd_output","timestamp":1607098390,"output":"bf-4319-817d-0c0b4e99a012, type: PplRequests, event: persisted source_args for pipeline: 3ccdc2ac-72"},{"event":"cmd_output","timestamp":1607098390,"output":"bf-4319-817d-0c0b4e99a012, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L"},{"event":"cmd_output","timestamp":1607098390,"output":"89), \n\u001b[0m\u001b[22m\n16:13:10.265 [info] ppl_id: 3ccdc2ac-72bf-4319-817d-0c0b4e99a012, type: PplSubIni"},{"event":"cmd_output","timestamp":1607098390,"output":"ts, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_s"},{"event":"cmd_output","timestamp":1607098390,"output":"tate_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:10.268 [info] ppl_id: ee838c42-a86a-4d8d-b176-37b1697b3a12, "},{"event":"cmd_output","timestamp":1607098390,"output":"type: PplBlocks, block_index: 1, state: waiting, event: exit_scheduling, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098390,"output":"Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:10.272 [info] ppl_id: 2ea14eb1-d"},{"event":"cmd_output","timestamp":1607098390,"output":"f51-45b1-944e-c8534bea3d51, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery"},{"event":"cmd_output","timestamp":1607098390,"output":"_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:10.277 [info] "},{"event":"cmd_output","timestamp":1607098390,"output":" ppl_id: ee838c42-a86a-4d8d-b176-37b1697b3a12, type: Ppls, state: queuing, event: exit_scheduling, r"},{"event":"cmd_output","timestamp":1607098390,"output":"ecovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:10.284 "},{"event":"cmd_output","timestamp":1607098390,"output":"[info] ppl_id: 9122de62-ff0d-453b-9fca-c94527a6e83b, type: PplRequests, event: persisted definition"},{"event":"cmd_output","timestamp":1607098390,"output":" for request with request_token: 9a1eda94-364b-11eb-a9ba-5254005464e2, origin: Elixir.Ppl.PplRequest"},{"event":"cmd_output","timestamp":1607098390,"output":"s.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:13:10.291 [info] ppl_id: ee838"},{"event":"cmd_output","timestamp":1607098390,"output":"c42-a86a-4d8d-b176-37b1697b3a12, type: Ppls, state: running, event: exit_scheduling, recovery_count:"},{"event":"cmd_output","timestamp":1607098390,"output":" 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:10.300 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098390,"output":": not_available, event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/"},{"event":"cmd_output","timestamp":1607098390,"output":"1(L105), \n\u001b[0m\u001b[22m\n16:13:10.300 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler"},{"event":"cmd_output","timestamp":1607098390,"output":".RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:10.300 [info] ppl_id: 9122de62-ff0d-453b-9fca"},{"event":"cmd_output","timestamp":1607098390,"output":"-c94527a6e83b, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count:"},{"event":"cmd_output","timestamp":1607098390,"output":" 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:1"},{"event":"cmd_output","timestamp":1607098390,"output":"0.300 [info] ppl_id: 9122de62-ff0d-453b-9fca-c94527a6e83b, type: PplBlocks, block_index: 1, state: "},{"event":"cmd_output","timestamp":1607098390,"output":"initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularIn"},{"event":"cmd_output","timestamp":1607098390,"output":"itState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:10.303 [info] ppl_id: 9122de62-ff0d-453b-9fca-c94527a6e"},{"event":"cmd_output","timestamp":1607098390,"output":"83b, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098390,"output":"in: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:10.304 [info] PplBlocks Wait"},{"event":"cmd_output","timestamp":1607098390,"output":"ingState STM is scheduling block 0 from pipeline: \"ee838c42-a86a-4d8d-b176-37b1697b3a12\"\n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098390,"output":"\n16:13:10.311 [info] ppl_id: 4f5a5061-1636-4f3e-8b36-c9fd6d5439b7, type: PplSubInits, state: regula"},{"event":"cmd_output","timestamp":1607098390,"output":"r_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1"},{"event":"cmd_output","timestamp":1607098390,"output":"(L90), \n\u001b[0m\u001b[22m\n16:13:10.312 [info] ppl_id: 9122de62-ff0d-453b-9fca-c94527a6e83b, type: PplBloc"},{"event":"cmd_output","timestamp":1607098390,"output":"ks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper"},{"event":"cmd_output","timestamp":1607098390,"output":".STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:10.314 [info] ppl_id: 9122de62-ff0d-453b-9fca"},{"event":"cmd_output","timestamp":1607098390,"output":"-c94527a6e83b, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098390,"output":".Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:10.317 [info] block_id: 85c7d081-5ee7-"},{"event":"cmd_output","timestamp":1607098390,"output":"4a36-9fce-af79fcc8d667, type: BlockRequests, event: persisted block run request from ppl ee838c42-a8"},{"event":"cmd_output","timestamp":1607098390,"output":"6a-4d8d-b176-37b1697b3a12 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries"},{"event":"cmd_output","timestamp":1607098390,"output":".process_response/4(L35), \n\u001b[0m\u001b[22m\n16:13:10.321 [info] ppl_id: 9122de62-ff0d-453b-9fca-c94527a6"},{"event":"cmd_output","timestamp":1607098390,"output":"e83b, type: PplBlocks, block_index: 1, state: waiting, event: exit_scheduling, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098390,"output":"igin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:10.326 [info] block_id: 85"},{"event":"cmd_output","timestamp":1607098390,"output":"c7d081-5ee7-4a36-9fce-af79fcc8d667, type: Blocks, state: initializing, event: initializing, recovery"},{"event":"cmd_output","timestamp":1607098390,"output":"_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:13:10.330 "},{"event":"cmd_output","timestamp":1607098390,"output":"[info] Block 0 of pipeline with id: ee838c42-a86a-4d8d-b176-37b1697b3a12 scheduled in block service"},{"event":"cmd_output","timestamp":1607098390,"output":" with id: : \"85c7d081-5ee7-4a36-9fce-af79fcc8d667\"\n\u001b[0m\u001b[22m\n16:13:10.331 [info] ppl_id: 9122de62"},{"event":"cmd_output","timestamp":1607098390,"output":"-ff0d-453b-9fca-c94527a6e83b, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098390,"output":" origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:10.334 [info] ppl_id: e"},{"event":"cmd_output","timestamp":1607098390,"output":"e838c42-a86a-4d8d-b176-37b1697b3a12, type: PplBlocks, block_index: 0, state: running, event: exit_sc"},{"event":"cmd_output","timestamp":1607098390,"output":"heduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098390,"output":":13:10.335 [info] block_id: 85c7d081-5ee7-4a36-9fce-af79fcc8d667, type: BlockRequests, event: persi"},{"event":"cmd_output","timestamp":1607098390,"output":"sted build and sub_ppl details for block_request: 85c7d081-5ee7-4a36-9fce-af79fcc8d667, origin: Elix"},{"event":"cmd_output","timestamp":1607098390,"output":"ir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:13:10.337 [in"},{"event":"cmd_output","timestamp":1607098390,"output":"fo] block_id: 85c7d081-5ee7-4a36-9fce-af79fcc8d667, type: Tasks, state: pending, event: created, re"},{"event":"cmd_output","timestamp":1607098390,"output":"covery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098390,"output":"2m\n16:13:10.342 [info] block_id: 85c7d081-5ee7-4a36-9fce-af79fcc8d667, type: Blocks, state: runnin"},{"event":"cmd_output","timestamp":1607098390,"output":"g, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90)"},{"event":"cmd_output","timestamp":1607098390,"output":", \n\u001b[0m\u001b[22m\n16:13:10.351 [info] ppl_id: 3ccdc2ac-72bf-4319-817d-0c0b4e99a012, type: PplSubInits,"},{"event":"cmd_output","timestamp":1607098390,"output":" state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_"},{"event":"cmd_output","timestamp":1607098390,"output":"state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:10.359 [info] block_id: 85c7d081-5ee7-4a36-9fce-af79fcc8d66"},{"event":"cmd_output","timestamp":1607098390,"output":"7, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM"},{"event":"cmd_output","timestamp":1607098390,"output":".Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:10.360 [info] ppl_id: 20153662-c531-4f24-bf89-ec1"},{"event":"cmd_output","timestamp":1607098390,"output":"1e632437d, type: PplRequests, event: persisted definition for request with request_token: 9a23cb9e-3"},{"event":"cmd_output","timestamp":1607098390,"output":"64b-11eb-8bbb-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definitio"},{"event":"cmd_output","timestamp":1607098390,"output":"n/3(L76), \n\u001b[0m\u001b[22m\n16:13:10.370 [info] Opening new connection {:ok, %AMQP.Connection{pid: #PID<"},{"event":"cmd_output","timestamp":1607098390,"output":"0.16123.1>}} for id: default\n\u001b[0m\u001b[22m\n16:13:10.374 [info] ppl_id: not_available, event: created,"},{"event":"cmd_output","timestamp":1607098390,"output":" origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:10.3"},{"event":"cmd_output","timestamp":1607098390,"output":"74 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105"},{"event":"cmd_output","timestamp":1607098390,"output":"), \n\u001b[0m\u001b[22m\n16:13:10.376 [info] Binding 'plumber.blocked' to 'organization_exchange' with 'bloc"},{"event":"cmd_output","timestamp":1607098390,"output":"ked' routing keys\n\u001b[0m\u001b[22m\n16:13:10.374 [info] ppl_id: 20153662-c531-4f24-bf89-ec11e632437d, typ"},{"event":"cmd_output","timestamp":1607098390,"output":"e: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098390,"output":".Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:10.376 [info] ppl_"},{"event":"cmd_output","timestamp":1607098390,"output":"id: 20153662-c531-4f24-bf89-ec11e632437d, type: PplBlocks, block_index: 1, state: initializing, even"},{"event":"cmd_output","timestamp":1607098390,"output":"t: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1("},{"event":"cmd_output","timestamp":1607098390,"output":"L105), \n\u001b[0m\u001b[22m\n16:13:10.380 [info] Creating queue 'plumber.blocked'\n\u001b[0m\u001b[22m\n16:13:10.381 ["},{"event":"cmd_output","timestamp":1607098390,"output":"info] Creating dead queue 'plumber.blocked.dead'\n\u001b[0m\u001b[22m\n16:13:10.382 [info] ppl_id: 20153662-"},{"event":"cmd_output","timestamp":1607098390,"output":"c531-4f24-bf89-ec11e632437d, type: PplSubInits, state: done, result: passed, event: exit_scheduling,"},{"event":"cmd_output","timestamp":1607098390,"output":" recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:10.38"},{"event":"cmd_output","timestamp":1607098390,"output":"6 [info] Creating delay queue 'plumber.blocked.delay.10'\n\u001b[0m\u001b[22m\n16:13:10.390 [info] Binding '"},{"event":"cmd_output","timestamp":1607098390,"output":"plumber.blocked' to 'plumber.blocked' with 'blocked' routing keys\n\u001b[0m\u001b[22m\n16:13:10.407 [info] p"},{"event":"cmd_output","timestamp":1607098390,"output":"pl_id: 20153662-c531-4f24-bf89-ec11e632437d, type: PplBlocks, block_index: 0, state: waiting, event:"},{"event":"cmd_output","timestamp":1607098390,"output":" exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098390,"output":"[22m\n16:13:10.410 [info] ppl_id: 20153662-c531-4f24-bf89-ec11e632437d, type: Ppls, state: pending,"},{"event":"cmd_output","timestamp":1607098390,"output":" event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), "},{"event":"cmd_output","timestamp":1607098390,"output":"\n\u001b[0m\u001b[22m\n16:13:10.431 [info] ppl_id: 20153662-c531-4f24-bf89-ec11e632437d, type: PplBlocks, blo"},{"event":"cmd_output","timestamp":1607098390,"output":"ck_index: 1, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Im"},{"event":"cmd_output","timestamp":1607098390,"output":"pl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:10.433 [info] ppl_id: 20153662-c531-4f24-bf89-ec11e6"},{"event":"cmd_output","timestamp":1607098390,"output":"32437d, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper"},{"event":"cmd_output","timestamp":1607098390,"output":".STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:10.442 [info] Terminating pipelines from orga"},{"event":"cmd_output","timestamp":1607098390,"output":"nization miner_org: {:ok, 5}\n\u001b[0m\u001b[22m\n16:13:10.446 [info] ppl_id: 2ea14eb1-df51-45b1-944e-c8534b"},{"event":"cmd_output","timestamp":1607098390,"output":"ea3d51, type: PplRequests, event: persisted definition for request with request_token: 9a288b2a-364b"},{"event":"cmd_output","timestamp":1607098390,"output":"-11eb-bb79-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3"},{"event":"cmd_output","timestamp":1607098390,"output":"(L76), \n\u001b[0m\u001b[22m\n16:13:10.451 [info] ppl_id: not_available, event: created, origin: Elixir.Ppl.P"},{"event":"cmd_output","timestamp":1607098390,"output":"plSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:10.451 [info] event: cre"},{"event":"cmd_output","timestamp":1607098390,"output":"ated, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13"},{"event":"cmd_output","timestamp":1607098390,"output":":10.451 [info] ppl_id: 2ea14eb1-df51-45b1-944e-c8534bea3d51, type: PplBlocks, block_index: 0, state"},{"event":"cmd_output","timestamp":1607098390,"output":": initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.Regular"},{"event":"cmd_output","timestamp":1607098390,"output":"InitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:10.451 [info] ppl_id: 2ea14eb1-df51-45b1-944e-c8534be"},{"event":"cmd_output","timestamp":1607098390,"output":"a3d51, type: PplBlocks, block_index: 1, state: initializing, event: created, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098390,"output":"in: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:10.454 [i"},{"event":"cmd_output","timestamp":1607098390,"output":"nfo] ppl_id: 2ea14eb1-df51-45b1-944e-c8534bea3d51, type: PplSubInits, state: done, result: passed, "},{"event":"cmd_output","timestamp":1607098390,"output":"event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \r"},{"event":"cmd_output","timestamp":1607098390,"output":"\n\u001b[0m\u001b[22m\n16:13:10.468 [info] ppl_id: 2ea14eb1-df51-45b1-944e-c8534bea3d51, type: PplBlocks, bloc"},{"event":"cmd_output","timestamp":1607098390,"output":"k_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Imp"},{"event":"cmd_output","timestamp":1607098390,"output":"l.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:10.468 [info] ppl_id: 9122de62-ff0d-453b-9fca-c94527a"},{"event":"cmd_output","timestamp":1607098390,"output":"6e83b, type: Ppls, state: done, result: canceled, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098390,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:10.471 [info] ppl_id: 2ea14eb1-"},{"event":"cmd_output","timestamp":1607098390,"output":"df51-45b1-944e-c8534bea3d51, type: Ppls, state: done, result: canceled, event: exit_scheduling, reco"},{"event":"cmd_output","timestamp":1607098390,"output":"very_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:10.480 [in"},{"event":"cmd_output","timestamp":1607098390,"output":"fo] ppl_id: 2ea14eb1-df51-45b1-944e-c8534bea3d51, type: PplBlocks, block_index: 1, state: done, res"},{"event":"cmd_output","timestamp":1607098390,"output":"ult: canceled, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098390,"output":"hange/1(L90), \n\u001b[0m\u001b[22m\n16:13:10.488 [info] ppl_id: 2ea14eb1-df51-45b1-944e-c8534bea3d51, type: "},{"event":"cmd_output","timestamp":1607098390,"output":"PplBlocks, block_index: 0, state: done, result: canceled, event: exit_scheduling, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098390,"output":" origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:10.492 [info] ppl_id: 4"},{"event":"cmd_output","timestamp":1607098390,"output":"f5a5061-1636-4f3e-8b36-c9fd6d5439b7, type: PplRequests, event: persisted definition for request with"},{"event":"cmd_output","timestamp":1607098390,"output":" request_token: 9a2c738e-364b-11eb-88e7-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplReques"},{"event":"cmd_output","timestamp":1607098390,"output":"tsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:13:10.499 [info] ppl_id: 20153662-c531-4f24-bf8"},{"event":"cmd_output","timestamp":1607098390,"output":"9-ec11e632437d, type: PplBlocks, block_index: 0, state: done, result: canceled, event: exit_scheduli"},{"event":"cmd_output","timestamp":1607098390,"output":"ng, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:10"},{"event":"cmd_output","timestamp":1607098390,"output":".500 [info] ppl_id: not_available, event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.Regula"},{"event":"cmd_output","timestamp":1607098390,"output":"rInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:10.500 [info] event: created, origin: Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098390,"output":"SubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:10.500 [info] ppl_id: 4f5a"},{"event":"cmd_output","timestamp":1607098390,"output":"5061-1636-4f3e-8b36-c9fd6d5439b7, type: PplBlocks, block_index: 0, state: initializing, event: creat"},{"event":"cmd_output","timestamp":1607098390,"output":"ed, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \r"},{"event":"cmd_output","timestamp":1607098390,"output":"\n\u001b[0m\u001b[22m\n16:13:10.500 [info] ppl_id: 4f5a5061-1636-4f3e-8b36-c9fd6d5439b7, type: PplBlocks, bloc"},{"event":"cmd_output","timestamp":1607098390,"output":"k_index: 1, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.S"},{"event":"cmd_output","timestamp":1607098390,"output":"TMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:10.503 [info] ppl_id: 4f5a5061-1636-"},{"event":"cmd_output","timestamp":1607098390,"output":"4f3e-8b36-c9fd6d5439b7, type: PplSubInits, state: done, result: passed, event: exit_scheduling, reco"},{"event":"cmd_output","timestamp":1607098390,"output":"very_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:10.505 [in"},{"event":"cmd_output","timestamp":1607098390,"output":"fo] ppl_id: 20153662-c531-4f24-bf89-ec11e632437d, type: Ppls, state: done, result: canceled, event:"},{"event":"cmd_output","timestamp":1607098390,"output":" exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098390,"output":"[22m\n16:13:10.511 [info] ppl_id: 20153662-c531-4f24-bf89-ec11e632437d, type: PplBlocks, block_inde"},{"event":"cmd_output","timestamp":1607098390,"output":"x: 1, state: done, result: canceled, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loope"},{"event":"cmd_output","timestamp":1607098390,"output":"r.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:10.515 [info] ppl_id: 4f5a5061-1636-4f3e-8b3"},{"event":"cmd_output","timestamp":1607098390,"output":"6-c9fd6d5439b7, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_co"},{"event":"cmd_output","timestamp":1607098390,"output":"unt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:10.518 [info] pp"},{"event":"cmd_output","timestamp":1607098390,"output":"l_id: 9122de62-ff0d-453b-9fca-c94527a6e83b, type: PplBlocks, block_index: 1, state: done, result: ca"},{"event":"cmd_output","timestamp":1607098390,"output":"nceled, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1"},{"event":"cmd_output","timestamp":1607098390,"output":"(L90), \n\u001b[0m\u001b[22m\n16:13:10.528 [info] ppl_id: 9122de62-ff0d-453b-9fca-c94527a6e83b, type: PplBloc"},{"event":"cmd_output","timestamp":1607098390,"output":"ks, block_index: 0, state: done, result: canceled, event: exit_scheduling, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098390,"output":": Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:10.538 [info] ppl_id: 4f5a5061"},{"event":"cmd_output","timestamp":1607098390,"output":"-1636-4f3e-8b36-c9fd6d5439b7, type: Ppls, state: done, result: canceled, event: exit_scheduling, rec"},{"event":"cmd_output","timestamp":1607098390,"output":"overy_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:10.539 [i"},{"event":"cmd_output","timestamp":1607098390,"output":"nfo] ppl_id: 4f5a5061-1636-4f3e-8b36-c9fd6d5439b7, type: PplBlocks, block_index: 1, state: waiting,"},{"event":"cmd_output","timestamp":1607098390,"output":" event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), "},{"event":"cmd_output","timestamp":1607098390,"output":"\n\u001b[0m\u001b[22m\n16:13:10.542 [info] ppl_id: 4f5a5061-1636-4f3e-8b36-c9fd6d5439b7, type: PplBlocks, blo"},{"event":"cmd_output","timestamp":1607098390,"output":"ck_index: 0, state: done, result: canceled, event: exit_scheduling, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098390,"output":"r.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:10.558 [info] ppl_id: ee838c42-a86a-4"},{"event":"cmd_output","timestamp":1607098390,"output":"d8d-b176-37b1697b3a12, type: Ppls, state: stopping, event: exit_scheduling, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098390,"output":"n: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:10.558 [info] ppl_id: ee838c4"},{"event":"cmd_output","timestamp":1607098390,"output":"2-a86a-4d8d-b176-37b1697b3a12, type: PplBlocks, block_index: 1, state: done, result: canceled, event"},{"event":"cmd_output","timestamp":1607098390,"output":": exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098390,"output":"\u001b[22m\n16:13:10.568 [info] ppl_id: 4f5a5061-1636-4f3e-8b36-c9fd6d5439b7, type: PplBlocks, block_ind"},{"event":"cmd_output","timestamp":1607098390,"output":"ex: 1, state: done, result: canceled, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loop"},{"event":"cmd_output","timestamp":1607098390,"output":"er.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:10.569 [info] ppl_id: 3ccdc2ac-72bf-4319-81"},{"event":"cmd_output","timestamp":1607098390,"output":"7d-0c0b4e99a012, type: PplRequests, event: persisted definition for request with request_token: 9a2f"},{"event":"cmd_output","timestamp":1607098390,"output":"fbf8-364b-11eb-8161-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_def"},{"event":"cmd_output","timestamp":1607098390,"output":"inition/3(L76), \n\u001b[0m\u001b[22m\n16:13:10.575 [info] ppl_id: ee838c42-a86a-4d8d-b176-37b1697b3a12, bloc"},{"event":"cmd_output","timestamp":1607098390,"output":"k_id: 85c7d081-5ee7-4a36-9fce-af79fcc8d667, type: PplBlocks, block_index: 0, state: stopping, event:"},{"event":"cmd_output","timestamp":1607098390,"output":" exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098390,"output":"[22m\n16:13:10.576 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Me"},{"event":"cmd_output","timestamp":1607098390,"output":"tadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:13:10.572951], name: \"master-.semaphore/sem"},{"event":"cmd_output","timestamp":1607098390,"output":"aphore.yml\", organization_id: \"fa2b36de-e9c1-4fb9-842e-a6d44f6fb4b1\", project_id: \"0b88863b-e6c3-4b2"},{"event":"cmd_output","timestamp":1607098390,"output":"6-8ab7-a9c8e631ae2a\", queue_id: \"40f5d158-833e-41f1-bee4-032f8d9c1837\", scope: \"project\", updated_at"},{"event":"cmd_output","timestamp":1607098390,"output":": ~N[2020-12-04 16:13:10.572958], user_generated: false}}\n\u001b[0m\u001b[22m\n16:13:10.581 [info] event: cr"},{"event":"cmd_output","timestamp":1607098390,"output":"eated, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098390,"output":"3:10.581 [info] ppl_id: 3ccdc2ac-72bf-4319-817d-0c0b4e99a012, type: PplBlocks, block_index: 0, stat"},{"event":"cmd_output","timestamp":1607098390,"output":"e: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.Regula"},{"event":"cmd_output","timestamp":1607098390,"output":"rInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:10.583 [info] ppl_id: 3ccdc2ac-72bf-4319-817d-0c0b4e"},{"event":"cmd_output","timestamp":1607098390,"output":"99a012, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098390,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:10.589 [info] block_id: 8"},{"event":"cmd_output","timestamp":1607098390,"output":"5c7d081-5ee7-4a36-9fce-af79fcc8d667, type: Blocks, state: stopping, event: exit_scheduling, recovery"},{"event":"cmd_output","timestamp":1607098390,"output":"_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:10.592 [info] "},{"event":"cmd_output","timestamp":1607098390,"output":" ppl_id: 3ccdc2ac-72bf-4319-817d-0c0b4e99a012, type: Ppls, state: pending, event: exit_scheduling, r"},{"event":"cmd_output","timestamp":1607098390,"output":"ecovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:10.595 "},{"event":"cmd_output","timestamp":1607098390,"output":"[info] ppl_id: 3ccdc2ac-72bf-4319-817d-0c0b4e99a012, type: PplBlocks, block_index: 0, state: waitin"},{"event":"cmd_output","timestamp":1607098390,"output":"g, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90)"},{"event":"cmd_output","timestamp":1607098390,"output":", \n\u001b[0m\u001b[22m\n16:13:10.604 [info] block_id: 85c7d081-5ee7-4a36-9fce-af79fcc8d667, type: Tasks, sta"},{"event":"cmd_output","timestamp":1607098390,"output":"te: stopping, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_ch"},{"event":"cmd_output","timestamp":1607098390,"output":"ange/1(L90), \n\u001b[0m\u001b[22m\n16:13:10.607 [info] ppl_id: 3ccdc2ac-72bf-4319-817d-0c0b4e99a012, type: P"},{"event":"cmd_output","timestamp":1607098390,"output":"pls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_s"},{"event":"cmd_output","timestamp":1607098390,"output":"tate_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:10.619 [info] ppl_id: 3ccdc2ac-72bf-4319-817d-0c0b4e99a012, "},{"event":"cmd_output","timestamp":1607098390,"output":"type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Imp"},{"event":"cmd_output","timestamp":1607098390,"output":"l.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:10.624 [info] PplBlocks WaitingState STM is schedulin"},{"event":"cmd_output","timestamp":1607098390,"output":"g block 0 from pipeline: \"3ccdc2ac-72bf-4319-817d-0c0b4e99a012\"\n\u001b[0m\u001b[22m\n16:13:10.629 [info] blo"},{"event":"cmd_output","timestamp":1607098390,"output":"ck_id: c7b1ca84-ef2a-40b4-8909-c5849ffc0139, type: BlockRequests, event: persisted block run request"},{"event":"cmd_output","timestamp":1607098390,"output":" from ppl 3ccdc2ac-72bf-4319-817d-0c0b4e99a012 for block 0, origin: Elixir.Block.BlockRequests.Model"},{"event":"cmd_output","timestamp":1607098390,"output":".BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:13:10.632 [info] block_id: c7b1ca84-"},{"event":"cmd_output","timestamp":1607098390,"output":"ef2a-40b4-8909-c5849ffc0139, type: Blocks, state: initializing, event: initializing, recovery_count:"},{"event":"cmd_output","timestamp":1607098390,"output":" 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:13:10.634 [info] "},{"event":"cmd_output","timestamp":1607098390,"output":" Block 0 of pipeline with id: 3ccdc2ac-72bf-4319-817d-0c0b4e99a012 scheduled in block service with i"},{"event":"cmd_output","timestamp":1607098390,"output":"d: : \"c7b1ca84-ef2a-40b4-8909-c5849ffc0139\"\n\u001b[0m\u001b[22m\n16:13:10.636 [info] ppl_id: 3ccdc2ac-72bf-4"},{"event":"cmd_output","timestamp":1607098390,"output":"319-817d-0c0b4e99a012, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, reco"},{"event":"cmd_output","timestamp":1607098390,"output":"very_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:10.639 [in"},{"event":"cmd_output","timestamp":1607098390,"output":"fo] block_id: c7b1ca84-ef2a-40b4-8909-c5849ffc0139, type: BlockRequests, event: persisted build and"},{"event":"cmd_output","timestamp":1607098390,"output":" sub_ppl details for block_request: c7b1ca84-ef2a-40b4-8909-c5849ffc0139, origin: Elixir.Block.Block"},{"event":"cmd_output","timestamp":1607098390,"output":"Requests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:13:10.640 [info] block_id:"},{"event":"cmd_output","timestamp":1607098390,"output":" c7b1ca84-ef2a-40b4-8909-c5849ffc0139, type: Tasks, state: pending, event: created, recovery_count: "},{"event":"cmd_output","timestamp":1607098390,"output":"0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:13:10.6"},{"event":"cmd_output","timestamp":1607098390,"output":"46 [info] block_id: c7b1ca84-ef2a-40b4-8909-c5849ffc0139, type: Blocks, state: running, event: exit"},{"event":"cmd_output","timestamp":1607098390,"output":"_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098390,"output":"\n16:13:10.660 [info] block_id: c7b1ca84-ef2a-40b4-8909-c5849ffc0139, type: Tasks, state: running, e"},{"event":"cmd_output","timestamp":1607098390,"output":"vent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n"},{"event":"cmd_output","timestamp":1607098390,"output":"\u001b[0m\u001b[22m\n16:13:10.757 [info] block_id: c7b1ca84-ef2a-40b4-8909-c5849ffc0139, type: Tasks, state: "},{"event":"cmd_output","timestamp":1607098390,"output":"done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098390,"output":"90), \n\u001b[0m\u001b[22m\n16:13:10.764 [info] block_id: c7b1ca84-ef2a-40b4-8909-c5849ffc0139, type: Blocks,"},{"event":"cmd_output","timestamp":1607098390,"output":" state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_ch"},{"event":"cmd_output","timestamp":1607098390,"output":"ange/1(L90), \n\u001b[0m\u001b[22m\n16:13:10.770 [info] ppl_id: 3ccdc2ac-72bf-4319-817d-0c0b4e99a012, block_i"},{"event":"cmd_output","timestamp":1607098390,"output":"d: c7b1ca84-ef2a-40b4-8909-c5849ffc0139, type: PplBlocks, block_index: 0, state: done, result: passe"},{"event":"cmd_output","timestamp":1607098390,"output":"d, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90)"},{"event":"cmd_output","timestamp":1607098390,"output":", \n\u001b[0m\u001b[22m\n16:13:10.776 [info] ppl_id: 3ccdc2ac-72bf-4319-817d-0c0b4e99a012, type: Ppls, state:"},{"event":"cmd_output","timestamp":1607098390,"output":" done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098400,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:20.425 [info] block_id: 85c7d081-5ee7-4a36-9fce-af79fcc8d6"},{"event":"cmd_output","timestamp":1607098400,"output":"67, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.I"},{"event":"cmd_output","timestamp":1607098400,"output":"mpl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:20.430 [info] block_id: 85c7d081-5ee7-4a36-9fce-af7"},{"event":"cmd_output","timestamp":1607098400,"output":"9fcc8d667, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loop"},{"event":"cmd_output","timestamp":1607098400,"output":"er.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:20.443 [info] ppl_id: ee838c42-a86a-4d8d-b1"},{"event":"cmd_output","timestamp":1607098400,"output":"76-37b1697b3a12, block_id: 85c7d081-5ee7-4a36-9fce-af79fcc8d667, type: PplBlocks, block_index: 0, st"},{"event":"cmd_output","timestamp":1607098400,"output":"ate: done, result: stopped, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Imp"},{"event":"cmd_output","timestamp":1607098400,"output":"l.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:20.451 [info] ppl_id: ee838c42-a86a-4d8d-b176-37b1697"},{"event":"cmd_output","timestamp":1607098400,"output":"b3a12, type: Ppls, state: done, result: stopped, event: exit_scheduling, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098401,"output":"Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test valid message received => all p"},{"event":"cmd_output","timestamp":1607098401,"output":"ipelines from the org are terminated (11020.8ms)\u001b[0m\n\nIntegratingBlock.Test\n * test testing Bloc"},{"event":"cmd_output","timestamp":1607098401,"output":"k app'ss availability by calling Block's version method\r * test testing Block app'ss availability b"},{"event":"cmd_output","timestamp":1607098401,"output":"y calling Block's version method (skipped)\n\nPpl.Grpc.InFlightCounter.Test\n * test counter is dec"},{"event":"cmd_output","timestamp":1607098401,"output":"remented after process termination\r * test counter is decremented after process termination (skippe"},{"event":"cmd_output","timestamp":1607098401,"output":"d)\n * test return :continue or :resource_exhausted\r * test return :continue or :resource_exhauste"},{"event":"cmd_output","timestamp":1607098401,"output":"d (skipped)\n\nPpl.E2E.TaskFile.Test\n * test Pipeline with task_file property passes\u001b[22m\n16:13:2"},{"event":"cmd_output","timestamp":1607098401,"output":"1.102 [info] Request: 'run: %{:repo_name => \"15_task_file\", \"branch_id\" => \"ad8ab997-bd7b-408c-8236"},{"event":"cmd_output","timestamp":1607098401,"output":"-7fc38964c396\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"semaphore.y"},{"event":"cmd_output","timestamp":1607098401,"output":"ml\", \"hook_id\" => \"a0ab42b2-364b-11eb-b46a-5254005464e2\", \"label\" => \"master\", \"organization_id\" => "},{"event":"cmd_output","timestamp":1607098401,"output":"\"a3da2152-668c-48d6-b1fa-bef42fcd23ae\", \"owner\" => \"rt\", \"project_id\" => \"817174f1-3eb8-4bc2-887e-b1"},{"event":"cmd_output","timestamp":1607098401,"output":"3f382e7edb\", \"repo_name\" => \"2_basic\", \"request_token\" => \"a0ab33e4-364b-11eb-bd0b-5254005464e2\", \"r"},{"event":"cmd_output","timestamp":1607098401,"output":"equester_id\" => \"261957c0-d73c-40ee-bb9d-0788af13fb5c\", \"service\" => \"local\", \"suppressed_attributes"},{"event":"cmd_output","timestamp":1607098401,"output":"\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"79267b2e-a2da-4b76-a7b3-700859c88c74\", \"working_"},{"event":"cmd_output","timestamp":1607098401,"output":"dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:13:21.106 [info] ppl_id: 9c1c3e92-eb7c-4707-ab40-6a5e1da2e4b0,"},{"event":"cmd_output","timestamp":1607098401,"output":" type: PplRequests, event: persisted schedule request with request_token: a0ab33e4-364b-11eb-bd0b-52"},{"event":"cmd_output","timestamp":1607098401,"output":"54005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098401,"output":"[22m\n16:13:21.108 [info] ppl_id: 9c1c3e92-eb7c-4707-ab40-6a5e1da2e4b0, type: Ppls, state: initiali"},{"event":"cmd_output","timestamp":1607098401,"output":"zing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_resp"},{"event":"cmd_output","timestamp":1607098401,"output":"onse/2(L124), \n\u001b[0m\u001b[22m\n16:13:21.117 [info] Project 817174f1-3eb8-4bc2-887e-b13f382e7edb and bra"},{"event":"cmd_output","timestamp":1607098401,"output":"nch masterlatest_wf details updated: \"wf_id: 79267b2e-a2da-4b76-a7b3-700859c88c74, wf_number: 1\"\n\u001b["},{"event":"cmd_output","timestamp":1607098401,"output":"0m\u001b[22m\n16:13:21.119 [info] Persisted ppl_sub_init for pipeline with ppl_id: 9c1c3e92-eb7c-4707-ab"},{"event":"cmd_output","timestamp":1607098401,"output":"40-6a5e1da2e4b0: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeli"},{"event":"cmd_output","timestamp":1607098401,"output":"ne_sub_inits\">, compile_task_id: nil, error_description: nil, id: 300, in_scheduling: false, init_ty"},{"event":"cmd_output","timestamp":1607098401,"output":"pe: \"regular\", inserted_at: ~N[2020-12-04 16:13:21.117516], pipeline_requests: #Ecto.Association.Not"},{"event":"cmd_output","timestamp":1607098401,"output":"Loaded, ppl_id: \"9c1c3e92-eb7c-4707-ab40-6a5e1da2e4b0\""},{"event":"cmd_output","timestamp":1607098401,"output":", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, term"},{"event":"cmd_output","timestamp":1607098401,"output":"inate_request_desc: nil, updated_at: ~N[2020-12-04 16:13:21.117523]}\n\u001b[0m\u001b[22m\n16:13:21.125 [info]"},{"event":"cmd_output","timestamp":1607098401,"output":" Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.STMHan"},{"event":"cmd_output","timestamp":1607098401,"output":"dler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandle"},{"event":"cmd_output","timestamp":1607098401,"output":"r-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], cooli"},{"event":"cmd_output","timestamp":1607098401,"output":"ng_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher_cb: #F"},{"event":"cmd_output","timestamp":1607098401,"output":"unction<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, returnin"},{"event":"cmd_output","timestamp":1607098401,"output":"g: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Pp"},{"event":"cmd_output","timestamp":1607098401,"output":"ls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:21.126 [info] Periodic from module Elixir."},{"event":"cmd_output","timestamp":1607098401,"output":"Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 100 ms"},{"event":"cmd_output","timestamp":1607098401,"output":", metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args: %{all"},{"event":"cmd_output","timestamp":1607098401,"output":"owed_states: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls"},{"event":"cmd_output","timestamp":1607098401,"output":".Model.Ppls, observed_state: \"pending\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler.P"},{"event":"cmd_output","timestamp":1607098401,"output":"endingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :"},{"event":"cmd_output","timestamp":1607098401,"output":"result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}"},{"event":"cmd_output","timestamp":1607098401,"output":"\n\u001b[0m\u001b[22m\n16:13:21.126 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.QueuingState with "},{"event":"cmd_output","timestamp":1607098401,"output":"name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\""},{"event":"cmd_output","timestamp":1607098401,"output":", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{allowed_states: [\"queuing\", \"running\", \"d"},{"event":"cmd_output","timestamp":1607098401,"output":"one\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", publishe"},{"event":"cmd_output","timestamp":1607098401,"output":"r_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, retur"},{"event":"cmd_output","timestamp":1607098401,"output":"ning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl"},{"event":"cmd_output","timestamp":1607098401,"output":".Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:21.127 [info] Periodic from module Elix"},{"event":"cmd_output","timestamp":1607098401,"output":"ir.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHandler.RunningState :: period: 100"},{"event":"cmd_output","timestamp":1607098401,"output":" ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring args: %{"},{"event":"cmd_output","timestamp":1607098401,"output":"allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model"},{"event":"cmd_output","timestamp":1607098401,"output":".Ppls, observed_state: \"running\", publisher_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler.Runnin"},{"event":"cmd_output","timestamp":1607098401,"output":"gState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :resul"},{"event":"cmd_output","timestamp":1607098401,"output":"t, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0"},{"event":"cmd_output","timestamp":1607098401,"output":"m\u001b[22m\n16:13:21.127 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.StoppingState with name"},{"event":"cmd_output","timestamp":1607098401,"output":" Elixir.Ppl.Ppls.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", ["},{"event":"cmd_output","timestamp":1607098401,"output":"\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooli"},{"event":"cmd_output","timestamp":1607098401,"output":"ng_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"stopping\", publisher_cb: #Func"},{"event":"cmd_output","timestamp":1607098401,"output":"tion<0.71803493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id,"},{"event":"cmd_output","timestamp":1607098401,"output":" :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model"},{"event":"cmd_output","timestamp":1607098401,"output":".Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:21.127 [info] Periodic from module Elixir.Ppl.PplS"},{"event":"cmd_output","timestamp":1607098401,"output":"ubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: "},{"event":"cmd_output","timestamp":1607098401,"output":"100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurrin"},{"event":"cmd_output","timestamp":1607098401,"output":"g args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits."},{"event":"cmd_output","timestamp":1607098401,"output":"Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:"},{"event":"cmd_output","timestamp":1607098401,"output":"id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubI"},{"event":"cmd_output","timestamp":1607098401,"output":"nits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:21.128 [info] Periodic from modul"},{"event":"cmd_output","timestamp":1607098401,"output":"e Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler.Fetchi"},{"event":"cmd_output","timestamp":1607098401,"output":"ngState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-Fetchi"},{"event":"cmd_output","timestamp":1607098401,"output":"ngState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"done\"], cooling_time_"},{"event":"cmd_output","timestamp":1607098401,"output":"sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fetching\", publisher_cb:"},{"event":"cmd_output","timestamp":1607098401,"output":" :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :reco"},{"event":"cmd_output","timestamp":1607098401,"output":"very_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098401,"output":"\n16:13:21.128 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CompilationState with n"},{"event":"cmd_output","timestamp":1607098401,"output":"ame Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 100 ms, metric_name: {\"Ppl.beholde"},{"event":"cmd_output","timestamp":1607098401,"output":"r-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurring args: %{allowed_states: [\"re"},{"event":"cmd_output","timestamp":1607098401,"output":"gular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInit"},{"event":"cmd_output","timestamp":1607098401,"output":"s.Model.PplSubInits, observed_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returni"},{"event":"cmd_output","timestamp":1607098401,"output":"ng: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.P"},{"event":"cmd_output","timestamp":1607098401,"output":"plSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:21.128 [info] Periodic from"},{"event":"cmd_output","timestamp":1607098401,"output":" module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHandl"},{"event":"cmd_output","timestamp":1607098401,"output":"er.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHa"},{"event":"cmd_output","timestamp":1607098401,"output":"ndler-RegularInitState\"]}, recurring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, initial_"},{"event":"cmd_output","timestamp":1607098401,"output":"query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_init\", publisher_cb: :skip, repo:"},{"event":"cmd_output","timestamp":1607098401,"output":" Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :"},{"event":"cmd_output","timestamp":1607098401,"output":"ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:21.128"},{"event":"cmd_output","timestamp":1607098401,"output":" [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.InitializingState with name Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098401,"output":".PplBlocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"P"},{"event":"cmd_output","timestamp":1607098401,"output":"pl-PplBlocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"wa"},{"event":"cmd_output","timestamp":1607098401,"output":"iting\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: "},{"event":"cmd_output","timestamp":1607098401,"output":"\"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updat"},{"event":"cmd_output","timestamp":1607098401,"output":"ed_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBloc"},{"event":"cmd_output","timestamp":1607098401,"output":"ks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:21.128 [info] Periodic from module Elixir.Ppl.PplBloc"},{"event":"cmd_output","timestamp":1607098401,"output":"ks.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler.WaitingState :: period: 1000 ms"},{"event":"cmd_output","timestamp":1607098401,"output":", metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurring args: "},{"event":"cmd_output","timestamp":1607098401,"output":"%{allowed_states: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks."},{"event":"cmd_output","timestamp":1607098401,"output":"Model.PplBlocks, observed_state: \"waiting\", publisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.STM"},{"event":"cmd_output","timestamp":1607098401,"output":"Handler.WaitingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, "},{"event":"cmd_output","timestamp":1607098401,"output":":state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, tas"},{"event":"cmd_output","timestamp":1607098401,"output":"k_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:21.128 [info] Periodic from module Elixir.Ppl.PplBlocks.STMH"},{"event":"cmd_output","timestamp":1607098401,"output":"andler.RunningState with name Elixir.Ppl.PplBlocks.STMHandler.RunningState :: period: 1000 ms, metri"},{"event":"cmd_output","timestamp":1607098401,"output":"c_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, recurring args: %{allow"},{"event":"cmd_output","timestamp":1607098401,"output":"ed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model"},{"event":"cmd_output","timestamp":1607098401,"output":".PplBlocks, observed_state: \"running\", publisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHand"},{"event":"cmd_output","timestamp":1607098401,"output":"ler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :sta"},{"event":"cmd_output","timestamp":1607098401,"output":"te, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBloc"},{"event":"cmd_output","timestamp":1607098401,"output":"ks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:21.128 [info] Periodic from module Elixir.Ppl.PplBloc"},{"event":"cmd_output","timestamp":1607098401,"output":"ks.STMHandler.StoppingState with name Elixir.Ppl.PplBlocks.STMHandler.StoppingState :: period: 1000 "},{"event":"cmd_output","timestamp":1607098401,"output":"ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurring arg"},{"event":"cmd_output","timestamp":1607098401,"output":"s: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model."},{"event":"cmd_output","timestamp":1607098401,"output":"PplBlocks, observed_state: \"stopping\", publisher_cb: #Function<0.104215991/1 in Ppl.PplBlocks.STMHan"},{"event":"cmd_output","timestamp":1607098401,"output":"dler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :s"},{"event":"cmd_output","timestamp":1607098401,"output":"tate, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBl"},{"event":"cmd_output","timestamp":1607098401,"output":"ocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:21.129 [info] Periodic from module Elixir.Block.Blo"},{"event":"cmd_output","timestamp":1607098401,"output":"cks.STMHandler.InitializingState with name Elixir.Block.Blocks.STMHandler.InitializingState :: perio"},{"event":"cmd_output","timestamp":1607098401,"output":"d: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, rec"},{"event":"cmd_output","timestamp":1607098401,"output":"urring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Blocks"},{"event":"cmd_output","timestamp":1607098401,"output":".Model.Blocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Block.EctoRepo, returning:"},{"event":"cmd_output","timestamp":1607098401,"output":" [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Mo"},{"event":"cmd_output","timestamp":1607098401,"output":"del.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:21.129 [info] Periodic from module Elixir.Blo"},{"event":"cmd_output","timestamp":1607098401,"output":"ck.Blocks.STMHandler.RunningState with name Elixir.Block.Blocks.STMHandler.RunningState :: period: 1"},{"event":"cmd_output","timestamp":1607098401,"output":"00 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-RunningState\"]}, recurring ar"},{"event":"cmd_output","timestamp":1607098401,"output":"gs: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Bl"},{"event":"cmd_output","timestamp":1607098401,"output":"ocks.Model.Blocks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: "},{"event":"cmd_output","timestamp":1607098401,"output":"[:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Mod"},{"event":"cmd_output","timestamp":1607098401,"output":"el.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:21.129 [info] Periodic from module Elixir.Bloc"},{"event":"cmd_output","timestamp":1607098401,"output":"k.Blocks.STMHandler.StoppingState with name Elixir.Block.Blocks.STMHandler.StoppingState :: period: "},{"event":"cmd_output","timestamp":1607098401,"output":"100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-StoppingState\"]}, recurring "},{"event":"cmd_output","timestamp":1607098401,"output":"args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Mode"},{"event":"cmd_output","timestamp":1607098401,"output":"l.Blocks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :t"},{"event":"cmd_output","timestamp":1607098401,"output":"erminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Block"},{"event":"cmd_output","timestamp":1607098401,"output":"s, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:21.129 [info] Periodic from module Elixir.Block.Tasks."},{"event":"cmd_output","timestamp":1607098401,"output":"STMHandler.PendingState with name Elixir.Block.Tasks.STMHandler.PendingState :: period: 100 ms, metr"},{"event":"cmd_output","timestamp":1607098401,"output":"ic_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingState\"]}, recurring args: %{allowe"},{"event":"cmd_output","timestamp":1607098401,"output":"d_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Tasks.Model.Tasks, observed"},{"event":"cmd_output","timestamp":1607098401,"output":"_state: \"pending\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :"},{"event":"cmd_output","timestamp":1607098401,"output":"updated_at, :state, :recovery_count, :block_id, :build_request_id], schema: Block.Tasks.Model.Tasks,"},{"event":"cmd_output","timestamp":1607098401,"output":" task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:21.129 [info] Periodic from module Elixir.Block.Tasks.ST"},{"event":"cmd_output","timestamp":1607098401,"output":"MHandler.RunningState with name Elixir.Block.Tasks.STMHandler.RunningState :: period: 100 ms, metric"},{"event":"cmd_output","timestamp":1607098401,"output":"_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningState\"]}, recurring args: %{allowed_"},{"event":"cmd_output","timestamp":1607098401,"output":"states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Task"},{"event":"cmd_output","timestamp":1607098401,"output":"s, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate"},{"event":"cmd_output","timestamp":1607098401,"output":"_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_su"},{"event":"cmd_output","timestamp":1607098401,"output":"pervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:21.129 [info] Periodic from module Elixir.Block.Tasks.STMHandler"},{"event":"cmd_output","timestamp":1607098401,"output":".StoppingState with name Elixir.Block.Tasks.STMHandler.StoppingState :: period: 100 ms, metric_name:"},{"event":"cmd_output","timestamp":1607098401,"output":" {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]}, recurring args: %{allowed_state"},{"event":"cmd_output","timestamp":1607098401,"output":"s: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_stat"},{"event":"cmd_output","timestamp":1607098401,"output":"e: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :upda"},{"event":"cmd_output","timestamp":1607098401,"output":"ted_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip"},{"event":"cmd_output","timestamp":1607098401,"output":"}\n\u001b[0m\u001b[22m\n16:13:21.250 [info] ppl_id: 9c1c3e92-eb7c-4707-ab40-6a5e1da2e4b0, type: PplRequests, "},{"event":"cmd_output","timestamp":1607098401,"output":"event: persisted source_args for pipeline: 9c1c3e92-eb7c-4707-ab40-6a5e1da2e4b0, origin: Elixir.Ppl."},{"event":"cmd_output","timestamp":1607098401,"output":"PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:13:21.253 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098401,"output":" 9c1c3e92-eb7c-4707-ab40-6a5e1da2e4b0, type: PplSubInits, state: fetching, event: exit_scheduling, r"},{"event":"cmd_output","timestamp":1607098401,"output":"ecovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:21.281 "},{"event":"cmd_output","timestamp":1607098401,"output":"[info] ppl_id: 9c1c3e92-eb7c-4707-ab40-6a5e1da2e4b0, type: PplSubInits, state: regular_init, event:"},{"event":"cmd_output","timestamp":1607098401,"output":" exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098401,"output":"[22m\n16:13:21.312 [info] ppl_id: 9c1c3e92-eb7c-4707-ab40-6a5e1da2e4b0, type: PplRequests, event: p"},{"event":"cmd_output","timestamp":1607098401,"output":"ersisted definition for request with request_token: a0ab33e4-364b-11eb-bd0b-5254005464e2, origin: El"},{"event":"cmd_output","timestamp":1607098401,"output":"ixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:13:21.317 [i"},{"event":"cmd_output","timestamp":1607098401,"output":"nfo] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queu"},{"event":"cmd_output","timestamp":1607098401,"output":"es\">, inserted_at: ~N[2020-12-04 16:13:21.314960], name: \"master-.semaphore/semaphore.yml\", organiza"},{"event":"cmd_output","timestamp":1607098401,"output":"tion_id: \"a3da2152-668c-48d6-b1fa-bef42fcd23ae\", project_id: \"817174f1-3eb8-4bc2-887e-b13f382e7edb\","},{"event":"cmd_output","timestamp":1607098401,"output":" queue_id: \"2af4e86a-9f33-41a1-946f-000899353604\", scope: \"project\", updated_at: ~N[2020-12-04 16:13"},{"event":"cmd_output","timestamp":1607098401,"output":":21.314972], user_generated: false}}\n\u001b[0m\u001b[22m\n16:13:21.324 [info] event: created, origin: Elixir"},{"event":"cmd_output","timestamp":1607098401,"output":".Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:21.325 [info] ppl_"},{"event":"cmd_output","timestamp":1607098401,"output":"id: 9c1c3e92-eb7c-4707-ab40-6a5e1da2e4b0, type: PplBlocks, block_index: 0, state: initializing, even"},{"event":"cmd_output","timestamp":1607098401,"output":"t: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1("},{"event":"cmd_output","timestamp":1607098401,"output":"L105), \n\u001b[0m\u001b[22m\n16:13:21.325 [info] ppl_id: 9c1c3e92-eb7c-4707-ab40-6a5e1da2e4b0, type: PplBloc"},{"event":"cmd_output","timestamp":1607098401,"output":"ks, block_index: 1, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSu"},{"event":"cmd_output","timestamp":1607098401,"output":"bInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:21.325 [info] ppl_id: 9c1c3e"},{"event":"cmd_output","timestamp":1607098401,"output":"92-eb7c-4707-ab40-6a5e1da2e4b0, type: PplBlocks, block_index: 2, state: initializing, event: created"},{"event":"cmd_output","timestamp":1607098401,"output":", recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b"},{"event":"cmd_output","timestamp":1607098401,"output":"[0m\u001b[22m\n16:13:21.328 [info] ppl_id: 9c1c3e92-eb7c-4707-ab40-6a5e1da2e4b0, type: PplSubInits, stat"},{"event":"cmd_output","timestamp":1607098401,"output":"e: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.l"},{"event":"cmd_output","timestamp":1607098401,"output":"og_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:21.338 [info] ppl_id: 9c1c3e92-eb7c-4707-ab40-6a5e1da2e4"},{"event":"cmd_output","timestamp":1607098401,"output":"b0, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098401,"output":"in: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:21.344 [info] ppl_id: 9c1c3e"},{"event":"cmd_output","timestamp":1607098401,"output":"92-eb7c-4707-ab40-6a5e1da2e4b0, type: Ppls, state: pending, event: exit_scheduling, recovery_count: "},{"event":"cmd_output","timestamp":1607098401,"output":"0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:21.360 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098401,"output":" 9c1c3e92-eb7c-4707-ab40-6a5e1da2e4b0, type: PplBlocks, block_index: 1, state: waiting, event: exit_"},{"event":"cmd_output","timestamp":1607098401,"output":"scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098401,"output":"16:13:21.367 [info] ppl_id: 9c1c3e92-eb7c-4707-ab40-6a5e1da2e4b0, type: Ppls, state: queuing, event"},{"event":"cmd_output","timestamp":1607098401,"output":": exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098401,"output":"\u001b[22m\n16:13:21.376 [info] ppl_id: 9c1c3e92-eb7c-4707-ab40-6a5e1da2e4b0, type: PplBlocks, block_ind"},{"event":"cmd_output","timestamp":1607098401,"output":"ex: 2, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098401,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:21.380 [info] ppl_id: 9c1c3e92-eb7c-4707-ab40-6a5e1da2e4b0"},{"event":"cmd_output","timestamp":1607098401,"output":", type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.I"},{"event":"cmd_output","timestamp":1607098401,"output":"mpl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:21.389 [info] PplBlocks WaitingState STM is schedul"},{"event":"cmd_output","timestamp":1607098401,"output":"ing block 2 from pipeline: \"9c1c3e92-eb7c-4707-ab40-6a5e1da2e4b0\"\n\u001b[0m\u001b[22m\n16:13:21.396 [info] b"},{"event":"cmd_output","timestamp":1607098401,"output":"lock_id: c6db2700-4883-4710-be85-f133f6175da2, type: BlockRequests, event: persisted block run reque"},{"event":"cmd_output","timestamp":1607098401,"output":"st from ppl 9c1c3e92-eb7c-4707-ab40-6a5e1da2e4b0 for block 2, origin: Elixir.Block.BlockRequests.Mod"},{"event":"cmd_output","timestamp":1607098401,"output":"el.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:13:21.402 [info] block_id: c6db270"},{"event":"cmd_output","timestamp":1607098401,"output":"0-4883-4710-be85-f133f6175da2, type: Blocks, state: initializing, event: initializing, recovery_coun"},{"event":"cmd_output","timestamp":1607098401,"output":"t: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:13:21.406 [info"},{"event":"cmd_output","timestamp":1607098401,"output":"] Block 2 of pipeline with id: 9c1c3e92-eb7c-4707-ab40-6a5e1da2e4b0 scheduled in block service with"},{"event":"cmd_output","timestamp":1607098401,"output":" id: : \"c6db2700-4883-4710-be85-f133f6175da2\"\n\u001b[0m\u001b[22m\n16:13:21.410 [info] block_id: c6db2700-48"},{"event":"cmd_output","timestamp":1607098401,"output":"83-4710-be85-f133f6175da2, type: BlockRequests, event: persisted build and sub_ppl details for block"},{"event":"cmd_output","timestamp":1607098401,"output":"_request: c6db2700-4883-4710-be85-f133f6175da2, origin: Elixir.Block.BlockRequests.Model.BlockReques"},{"event":"cmd_output","timestamp":1607098401,"output":"tsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:13:21.413 [info] block_id: c6db2700-4883-4710-be85-f"},{"event":"cmd_output","timestamp":1607098401,"output":"133f6175da2, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Bl"},{"event":"cmd_output","timestamp":1607098401,"output":"ocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:13:21.415 [info] ppl_id: 9c1c3e9"},{"event":"cmd_output","timestamp":1607098401,"output":"2-eb7c-4707-ab40-6a5e1da2e4b0, type: PplBlocks, block_index: 2, state: running, event: exit_scheduli"},{"event":"cmd_output","timestamp":1607098401,"output":"ng, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:21"},{"event":"cmd_output","timestamp":1607098401,"output":".417 [info] block_id: c6db2700-4883-4710-be85-f133f6175da2, type: Blocks, state: running, event: ex"},{"event":"cmd_output","timestamp":1607098401,"output":"it_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098401,"output":"m\n16:13:21.423 [info] PplBlocks WaitingState STM is scheduling block 1 from pipeline: \"9c1c3e92-eb"},{"event":"cmd_output","timestamp":1607098401,"output":"7c-4707-ab40-6a5e1da2e4b0\"\n\u001b[0m\u001b[22m\n16:13:21.438 [info] block_id: 8dc2493b-031a-4b76-8d0d-4114cb"},{"event":"cmd_output","timestamp":1607098401,"output":"a98897, type: BlockRequests, event: persisted block run request from ppl 9c1c3e92-eb7c-4707-ab40-6a5"},{"event":"cmd_output","timestamp":1607098401,"output":"e1da2e4b0 for block 1, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_respons"},{"event":"cmd_output","timestamp":1607098401,"output":"e/4(L35), \n\u001b[0m\u001b[22m\n16:13:21.442 [info] block_id: c6db2700-4883-4710-be85-f133f6175da2, type: Ta"},{"event":"cmd_output","timestamp":1607098401,"output":"sks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_s"},{"event":"cmd_output","timestamp":1607098401,"output":"tate_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:21.446 [info] block_id: 8dc2493b-031a-4b76-8d0d-4114cba98897"},{"event":"cmd_output","timestamp":1607098401,"output":", type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Bl"},{"event":"cmd_output","timestamp":1607098401,"output":"ocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:13:21.451 [info] Block 1 of pipeline with i"},{"event":"cmd_output","timestamp":1607098401,"output":"d: 9c1c3e92-eb7c-4707-ab40-6a5e1da2e4b0 scheduled in block service with id: : \"8dc2493b-031a-4b76-8d"},{"event":"cmd_output","timestamp":1607098401,"output":"0d-4114cba98897\"\n\u001b[0m\u001b[22m\n16:13:21.461 [info] block_id: 8dc2493b-031a-4b76-8d0d-4114cba98897, ty"},{"event":"cmd_output","timestamp":1607098401,"output":"pe: BlockRequests, event: persisted build and sub_ppl details for block_request: 8dc2493b-031a-4b76-"},{"event":"cmd_output","timestamp":1607098401,"output":"8d0d-4114cba98897, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41)"},{"event":"cmd_output","timestamp":1607098401,"output":", \n\u001b[0m\u001b[22m\n16:13:21.461 [info] ppl_id: 9c1c3e92-eb7c-4707-ab40-6a5e1da2e4b0, type: PplBlocks, b"},{"event":"cmd_output","timestamp":1607098401,"output":"lock_index: 1, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM."},{"event":"cmd_output","timestamp":1607098401,"output":"Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:21.468 [info] block_id: 8dc2493b-031a-4b76-8d0d-41"},{"event":"cmd_output","timestamp":1607098401,"output":"14cba98897, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blo"},{"event":"cmd_output","timestamp":1607098401,"output":"cks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:13:21.470 [info] block_id: c6db27"},{"event":"cmd_output","timestamp":1607098401,"output":"00-4883-4710-be85-f133f6175da2, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098401,"output":" origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:21.475 [info] block_id:"},{"event":"cmd_output","timestamp":1607098401,"output":" c6db2700-4883-4710-be85-f133f6175da2, type: Blocks, state: done, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098401,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:21.476 [info] P"},{"event":"cmd_output","timestamp":1607098401,"output":"plBlocks WaitingState STM is scheduling block 0 from pipeline: \"9c1c3e92-eb7c-4707-ab40-6a5e1da2e4b0"},{"event":"cmd_output","timestamp":1607098401,"output":"\"\n\u001b[0m\u001b[22m\n16:13:21.476 [info] block_id: 8dc2493b-031a-4b76-8d0d-4114cba98897, type: Blocks, sta"},{"event":"cmd_output","timestamp":1607098401,"output":"te: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_cha"},{"event":"cmd_output","timestamp":1607098401,"output":"nge/1(L90), \n\u001b[0m\u001b[22m\n16:13:21.489 [info] ppl_id: 9c1c3e92-eb7c-4707-ab40-6a5e1da2e4b0, block_id"},{"event":"cmd_output","timestamp":1607098401,"output":": c6db2700-4883-4710-be85-f133f6175da2, type: PplBlocks, block_index: 2, state: done, result: passed"},{"event":"cmd_output","timestamp":1607098401,"output":", event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90),"},{"event":"cmd_output","timestamp":1607098401,"output":" \n\u001b[0m\u001b[22m\n16:13:21.489 [info] block_id: c6884c49-08f9-4029-943e-47559e8a5613, type: BlockReques"},{"event":"cmd_output","timestamp":1607098401,"output":"ts, event: persisted block run request from ppl 9c1c3e92-eb7c-4707-ab40-6a5e1da2e4b0 for block 0, or"},{"event":"cmd_output","timestamp":1607098401,"output":"igin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098401,"output":":13:21.493 [info] block_id: c6884c49-08f9-4029-943e-47559e8a5613, type: Blocks, state: initializing"},{"event":"cmd_output","timestamp":1607098401,"output":", event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L"},{"event":"cmd_output","timestamp":1607098401,"output":"43), \n\u001b[0m\u001b[22m\n16:13:21.503 [info] Block 0 of pipeline with id: 9c1c3e92-eb7c-4707-ab40-6a5e1da2"},{"event":"cmd_output","timestamp":1607098401,"output":"e4b0 scheduled in block service with id: : \"c6884c49-08f9-4029-943e-47559e8a5613\"\n\u001b[0m\u001b[22m\n16:13:"},{"event":"cmd_output","timestamp":1607098401,"output":"21.512 [info] ppl_id: 9c1c3e92-eb7c-4707-ab40-6a5e1da2e4b0, type: PplBlocks, block_index: 0, state:"},{"event":"cmd_output","timestamp":1607098401,"output":" running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change"},{"event":"cmd_output","timestamp":1607098401,"output":"/1(L90), \n\u001b[0m\u001b[22m\n16:13:21.516 [info] block_id: 8dc2493b-031a-4b76-8d0d-4114cba98897, type: Tas"},{"event":"cmd_output","timestamp":1607098401,"output":"ks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_st"},{"event":"cmd_output","timestamp":1607098401,"output":"ate_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:21.522 [info] block_id: c6884c49-08f9-4029-943e-47559e8a5613,"},{"event":"cmd_output","timestamp":1607098401,"output":" type: BlockRequests, event: persisted build and sub_ppl details for block_request: c6884c49-08f9-40"},{"event":"cmd_output","timestamp":1607098401,"output":"29-943e-47559e8a5613, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L"},{"event":"cmd_output","timestamp":1607098401,"output":"41), \n\u001b[0m\u001b[22m\n16:13:21.525 [info] block_id: c6884c49-08f9-4029-943e-47559e8a5613, type: Tasks, "},{"event":"cmd_output","timestamp":1607098401,"output":"state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.Initializi"},{"event":"cmd_output","timestamp":1607098401,"output":"ngState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:13:21.528 [info] block_id: c6884c49-08f9-4029-943e-47559e8"},{"event":"cmd_output","timestamp":1607098401,"output":"a5613, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loope"},{"event":"cmd_output","timestamp":1607098401,"output":"r.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:21.547 [info] block_id: c6884c49-08f9-4029-9"},{"event":"cmd_output","timestamp":1607098401,"output":"43e-47559e8a5613, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098401,"output":"ixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:21.589 [info] block_id: 8dc2493b-0"},{"event":"cmd_output","timestamp":1607098401,"output":"31a-4b76-8d0d-4114cba98897, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098401,"output":"gin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:21.601 [info] block_id: 8dc"},{"event":"cmd_output","timestamp":1607098401,"output":"2493b-031a-4b76-8d0d-4114cba98897, type: Blocks, state: done, event: exit_scheduling, recovery_count"},{"event":"cmd_output","timestamp":1607098401,"output":": 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:21.611 [info] ppl_i"},{"event":"cmd_output","timestamp":1607098401,"output":"d: 9c1c3e92-eb7c-4707-ab40-6a5e1da2e4b0, block_id: 8dc2493b-031a-4b76-8d0d-4114cba98897, type: PplBl"},{"event":"cmd_output","timestamp":1607098401,"output":"ocks, block_index: 1, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098401,"output":": Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:21.703 [info] block_id: c6884c"},{"event":"cmd_output","timestamp":1607098401,"output":"49-08f9-4029-943e-47559e8a5613, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098401,"output":" origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:21.708 [info] block_id:"},{"event":"cmd_output","timestamp":1607098401,"output":" c6884c49-08f9-4029-943e-47559e8a5613, type: Blocks, state: done, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098401,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:21.716 [info] p"},{"event":"cmd_output","timestamp":1607098401,"output":"pl_id: 9c1c3e92-eb7c-4707-ab40-6a5e1da2e4b0, block_id: c6884c49-08f9-4029-943e-47559e8a5613, type: P"},{"event":"cmd_output","timestamp":1607098401,"output":"plBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098401,"output":"igin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:21.732 [info] ppl_id: 9c1c"},{"event":"cmd_output","timestamp":1607098401,"output":"3e92-eb7c-4707-ab40-6a5e1da2e4b0, type: Ppls, state: done, result: passed, event: exit_scheduling, r"},{"event":"cmd_output","timestamp":1607098401,"output":"ecovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test Pipel"},{"event":"cmd_output","timestamp":1607098401,"output":"ine with task_file property passes (754.1ms)\u001b[0m\n * test Pipeline with malformed task_file content"},{"event":"cmd_output","timestamp":1607098401,"output":" fails\u001b[22m\n16:13:21.843 [info] Request: 'run: %{:repo_name => \"16_task_file_malformed\", \"branch_i"},{"event":"cmd_output","timestamp":1607098401,"output":"d\" => \"b95cfd50-f503-4d31-a710-940b4b060ebf\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469"},{"event":"cmd_output","timestamp":1607098401,"output":"\", \"file_name\" => \"semaphore.yml\", \"hook_id\" => \"a11d0438-364b-11eb-bfd4-5254005464e2\", \"label\" => \""},{"event":"cmd_output","timestamp":1607098401,"output":"master\", \"organization_id\" => \"51060ede-6e5a-499f-9849-43c6783cd63d\", \"owner\" => \"rt\", \"project_id\" "},{"event":"cmd_output","timestamp":1607098401,"output":"=> \"ab51eda4-bbfb-4381-bd83-3880a6efe8a2\", \"repo_name\" => \"2_basic\", \"request_token\" => \"a11cf632-36"},{"event":"cmd_output","timestamp":1607098401,"output":"4b-11eb-8879-5254005464e2\", \"requester_id\" => \"c6dc8133-181b-4a21-be63-bce480ac9329\", \"service\" => \""},{"event":"cmd_output","timestamp":1607098401,"output":"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"9c55dd10-8d2f-4384"},{"event":"cmd_output","timestamp":1607098401,"output":"-b128-8abcdfff3e9d\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:13:21.849 [info] ppl_id: fb320ed"},{"event":"cmd_output","timestamp":1607098401,"output":"2-abe6-4d16-9a29-33e474743b66, type: PplRequests, event: persisted schedule request with request_tok"},{"event":"cmd_output","timestamp":1607098401,"output":"en: a11cf632-364b-11eb-8879-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.pr"},{"event":"cmd_output","timestamp":1607098401,"output":"ocess_response/2(L55), \n\u001b[0m\u001b[22m\n16:13:21.853 [info] ppl_id: fb320ed2-abe6-4d16-9a29-33e474743b6"},{"event":"cmd_output","timestamp":1607098401,"output":"6, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls."},{"event":"cmd_output","timestamp":1607098401,"output":"Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:13:21.858 [info] Project ab51eda4-bbfb-"},{"event":"cmd_output","timestamp":1607098401,"output":"4381-bd83-3880a6efe8a2 and branch masterlatest_wf details updated: \"wf_id: 9c55dd10-8d2f-4384-b128-8"},{"event":"cmd_output","timestamp":1607098401,"output":"abcdfff3e9d, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:13:21.860 [info] Persisted ppl_sub_init for pipeline with"},{"event":"cmd_output","timestamp":1607098401,"output":" ppl_id: fb320ed2-abe6-4d16-9a29-33e474743b66: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Sc"},{"event":"cmd_output","timestamp":1607098401,"output":"hema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 301,"},{"event":"cmd_output","timestamp":1607098401,"output":" in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:13:21.858915], pipeline_r"},{"event":"cmd_output","timestamp":1607098401,"output":"equests: #Ecto.Association.NotLoaded, ppl_id: \"fb320ed"},{"event":"cmd_output","timestamp":1607098401,"output":"2-abe6-4d16-9a29-33e474743b66\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\""},{"event":"cmd_output","timestamp":1607098401,"output":", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:13:21.858925]}\n"},{"event":"cmd_output","timestamp":1607098401,"output":"\u001b[0m\u001b[22m\n16:13:21.866 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingState wi"},{"event":"cmd_output","timestamp":1607098401,"output":"th name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-"},{"event":"cmd_output","timestamp":1607098401,"output":"wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializi"},{"event":"cmd_output","timestamp":1607098401,"output":"ng\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"i"},{"event":"cmd_output","timestamp":1607098401,"output":"nitializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>"},{"event":"cmd_output","timestamp":1607098401,"output":", repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_c"},{"event":"cmd_output","timestamp":1607098401,"output":"ount, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:21.867 [info]"},{"event":"cmd_output","timestamp":1607098401,"output":" Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler."},{"event":"cmd_output","timestamp":1607098401,"output":"PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingS"},{"event":"cmd_output","timestamp":1607098401,"output":"tate\"]}, recurring args: %{allowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_s"},{"event":"cmd_output","timestamp":1607098401,"output":"ec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publisher_cb: #Function<0.8493"},{"event":"cmd_output","timestamp":1607098401,"output":"005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_r"},{"event":"cmd_output","timestamp":1607098401,"output":"equest, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_s"},{"event":"cmd_output","timestamp":1607098401,"output":"upervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:13:21.867 [info] Periodic from module Elixir.Ppl.Ppls"},{"event":"cmd_output","timestamp":1607098401,"output":".STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, metric"},{"event":"cmd_output","timestamp":1607098401,"output":"_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{allowed_sta"},{"event":"cmd_output","timestamp":1607098401,"output":"tes: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, obser"},{"event":"cmd_output","timestamp":1607098401,"output":"ved_state: \"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.args"},{"event":"cmd_output","timestamp":1607098401,"output":"/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recover"},{"event":"cmd_output","timestamp":1607098401,"output":"y_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:21.868 [in"},{"event":"cmd_output","timestamp":1607098401,"output":"fo] Periodic from module Elixir.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHandl"},{"event":"cmd_output","timestamp":1607098401,"output":"er.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Runni"},{"event":"cmd_output","timestamp":1607098401,"output":"ngState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2,"},{"event":"cmd_output","timestamp":1607098401,"output":" initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"running\", publisher_cb: #Function<0.74670282/1"},{"event":"cmd_output","timestamp":1607098401,"output":" in Ppl.Ppls.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_reques"},{"event":"cmd_output","timestamp":1607098401,"output":"t, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_superv"},{"event":"cmd_output","timestamp":1607098401,"output":"isor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:13:21.868 [info] Periodic from module Elixir.Ppl.Ppls.STMH"},{"event":"cmd_output","timestamp":1607098401,"output":"andler.StoppingState with name Elixir.Ppl.Ppls.STMHandler.StoppingState :: period: 100 ms, metric_na"},{"event":"cmd_output","timestamp":1607098401,"output":"me: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring args: %{allowed_state"},{"event":"cmd_output","timestamp":1607098401,"output":"s: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \""},{"event":"cmd_output","timestamp":1607098401,"output":"stopping\", publisher_cb: #Function<0.71803493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, repo: "},{"event":"cmd_output","timestamp":1607098401,"output":"Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :p"},{"event":"cmd_output","timestamp":1607098401,"output":"pl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:21.868 [info] Period"},{"event":"cmd_output","timestamp":1607098401,"output":"ic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHa"},{"event":"cmd_output","timestamp":1607098401,"output":"ndler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHan"},{"event":"cmd_output","timestamp":1607098401,"output":"dler-CreatedState\"]}, recurring args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, i"},{"event":"cmd_output","timestamp":1607098401,"output":"nitial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip, rep"},{"event":"cmd_output","timestamp":1607098401,"output":"o: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count,"},{"event":"cmd_output","timestamp":1607098401,"output":" :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:21.8"},{"event":"cmd_output","timestamp":1607098401,"output":"68 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098401,"output":".PplSubInits.STMHandler.FetchingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl"},{"event":"cmd_output","timestamp":1607098401,"output":"-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compil"},{"event":"cmd_output","timestamp":1607098401,"output":"ation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_st"},{"event":"cmd_output","timestamp":1607098401,"output":"ate: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :upda"},{"event":"cmd_output","timestamp":1607098401,"output":"ted_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_"},{"event":"cmd_output","timestamp":1607098401,"output":"supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:21.869 [info] Periodic from module Elixir.Ppl.PplSubInits.STMH"},{"event":"cmd_output","timestamp":1607098401,"output":"andler.CompilationState with name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 100 "},{"event":"cmd_output","timestamp":1607098401,"output":"ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurrin"},{"event":"cmd_output","timestamp":1607098401,"output":"g args: %{allowed_states: [\"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2,"},{"event":"cmd_output","timestamp":1607098401,"output":" initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"compilation\", publisher_cb: :ski"},{"event":"cmd_output","timestamp":1607098401,"output":"p, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_"},{"event":"cmd_output","timestamp":1607098401,"output":"count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098401,"output":"3:21.869 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with name E"},{"event":"cmd_output","timestamp":1607098401,"output":"lixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wak"},{"event":"cmd_output","timestamp":1607098401,"output":"e_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurring args: %{allowed_states: [\"done\"],"},{"event":"cmd_output","timestamp":1607098401,"output":" cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_ini"},{"event":"cmd_output","timestamp":1607098401,"output":"t\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :stat"},{"event":"cmd_output","timestamp":1607098401,"output":"e, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :"},{"event":"cmd_output","timestamp":1607098401,"output":"skip}\n\u001b[0m\u001b[22m\n16:13:21.869 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.Initiali"},{"event":"cmd_output","timestamp":1607098401,"output":"zingState with name Elixir.Ppl.PplBlocks.STMHandler.InitializingState :: period: 100 ms, metric_name"},{"event":"cmd_output","timestamp":1607098401,"output":": {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-InitializingState\"]}, recurring args: %{allowe"},{"event":"cmd_output","timestamp":1607098401,"output":"d_states: [\"initializing\", \"waiting\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Mod"},{"event":"cmd_output","timestamp":1607098401,"output":"el.PplBlocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:"},{"event":"cmd_output","timestamp":1607098401,"output":"id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schem"},{"event":"cmd_output","timestamp":1607098401,"output":"a: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:21.869 [info] Periodic "},{"event":"cmd_output","timestamp":1607098401,"output":"from module Elixir.Ppl.PplBlocks.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler.W"},{"event":"cmd_output","timestamp":1607098401,"output":"aitingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-Wai"},{"event":"cmd_output","timestamp":1607098401,"output":"tingState\"]}, recurring args: %{allowed_states: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 0,"},{"event":"cmd_output","timestamp":1607098401,"output":" initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"waiting\", publisher_cb: #Function<0."},{"event":"cmd_output","timestamp":1607098401,"output":"8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :te"},{"event":"cmd_output","timestamp":1607098401,"output":"rminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl."},{"event":"cmd_output","timestamp":1607098401,"output":"PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:21.870 [info] Periodic from mo"},{"event":"cmd_output","timestamp":1607098401,"output":"dule Elixir.Ppl.PplBlocks.STMHandler.RunningState with name Elixir.Ppl.PplBlocks.STMHandler.RunningS"},{"event":"cmd_output","timestamp":1607098401,"output":"tate :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningSta"},{"event":"cmd_output","timestamp":1607098401,"output":"te\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, init"},{"event":"cmd_output","timestamp":1607098401,"output":"ial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"running\", publisher_cb: #Function<0.28166"},{"event":"cmd_output","timestamp":1607098401,"output":"834/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :termin"},{"event":"cmd_output","timestamp":1607098401,"output":"ate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schem"},{"event":"cmd_output","timestamp":1607098401,"output":"a: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:21.870 [info] Periodic "},{"event":"cmd_output","timestamp":1607098401,"output":"from module Elixir.Ppl.PplBlocks.STMHandler.StoppingState with name Elixir.Ppl.PplBlocks.STMHandler."},{"event":"cmd_output","timestamp":1607098401,"output":"StoppingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-S"},{"event":"cmd_output","timestamp":1607098401,"output":"toppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initi"},{"event":"cmd_output","timestamp":1607098401,"output":"al_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"stopping\", publisher_cb: #Function<0.10421"},{"event":"cmd_output","timestamp":1607098401,"output":"5991/1 in Ppl.PplBlocks.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :term"},{"event":"cmd_output","timestamp":1607098401,"output":"inate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], sch"},{"event":"cmd_output","timestamp":1607098401,"output":"ema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:21.870 [info] Periodi"},{"event":"cmd_output","timestamp":1607098401,"output":"c from module Elixir.Block.Blocks.STMHandler.InitializingState with name Elixir.Block.Blocks.STMHand"},{"event":"cmd_output","timestamp":1607098401,"output":"ler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHan"},{"event":"cmd_output","timestamp":1607098401,"output":"dler-InitializingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: "},{"event":"cmd_output","timestamp":1607098401,"output":"0, initial_query: Block.Blocks.Model.Blocks, observed_state: \"initializing\", publisher_cb: :skip, re"},{"event":"cmd_output","timestamp":1607098401,"output":"po: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :bloc"},{"event":"cmd_output","timestamp":1607098401,"output":"k_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:21.871 [info] P"},{"event":"cmd_output","timestamp":1607098401,"output":"eriodic from module Elixir.Block.Blocks.STMHandler.RunningState with name Elixir.Block.Blocks.STMHan"},{"event":"cmd_output","timestamp":1607098401,"output":"dler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler"},{"event":"cmd_output","timestamp":1607098401,"output":"-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_se"},{"event":"cmd_output","timestamp":1607098401,"output":"c: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"running\", publisher_cb: :skip, rep"},{"event":"cmd_output","timestamp":1607098401,"output":"o: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block"},{"event":"cmd_output","timestamp":1607098401,"output":"_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:21.872 [info] Pe"},{"event":"cmd_output","timestamp":1607098401,"output":"riodic from module Elixir.Block.Blocks.STMHandler.StoppingState with name Elixir.Block.Blocks.STMHan"},{"event":"cmd_output","timestamp":1607098401,"output":"dler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandle"},{"event":"cmd_output","timestamp":1607098401,"output":"r-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, in"},{"event":"cmd_output","timestamp":1607098401,"output":"itial_query: Block.Blocks.Model.Blocks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block"},{"event":"cmd_output","timestamp":1607098401,"output":".EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], sc"},{"event":"cmd_output","timestamp":1607098401,"output":"hema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:21.872 [info] Periodic f"},{"event":"cmd_output","timestamp":1607098401,"output":"rom module Elixir.Block.Tasks.STMHandler.PendingState with name Elixir.Block.Tasks.STMHandler.Pendin"},{"event":"cmd_output","timestamp":1607098401,"output":"gState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingStat"},{"event":"cmd_output","timestamp":1607098401,"output":"e\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Blo"},{"event":"cmd_output","timestamp":1607098401,"output":"ck.Tasks.Model.Tasks, observed_state: \"pending\", publisher_cb: :skip, repo: Block.EctoRepo, returnin"},{"event":"cmd_output","timestamp":1607098401,"output":"g: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id, :build_request_id], sc"},{"event":"cmd_output","timestamp":1607098401,"output":"hema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:21.872 [info] Periodic fro"},{"event":"cmd_output","timestamp":1607098401,"output":"m module Elixir.Block.Tasks.STMHandler.RunningState with name Elixir.Block.Tasks.STMHandler.RunningS"},{"event":"cmd_output","timestamp":1607098401,"output":"tate :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningState\""},{"event":"cmd_output","timestamp":1607098401,"output":"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial"},{"event":"cmd_output","timestamp":1607098401,"output":"_query: Block.Tasks.Model.Tasks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRep"},{"event":"cmd_output","timestamp":1607098401,"output":"o, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Bl"},{"event":"cmd_output","timestamp":1607098401,"output":"ock.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:21.872 [info] Periodic from module"},{"event":"cmd_output","timestamp":1607098401,"output":" Elixir.Block.Tasks.STMHandler.StoppingState with name Elixir.Block.Tasks.STMHandler.StoppingState :"},{"event":"cmd_output","timestamp":1607098401,"output":": period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]}, r"},{"event":"cmd_output","timestamp":1607098401,"output":"ecurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Ta"},{"event":"cmd_output","timestamp":1607098401,"output":"sks.Model.Tasks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: ["},{"event":"cmd_output","timestamp":1607098401,"output":":id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model"},{"event":"cmd_output","timestamp":1607098401,"output":".Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:21.998 [info] ppl_id: fb320ed2-abe6-4d16-9a29-33e"},{"event":"cmd_output","timestamp":1607098401,"output":"474743b66, type: PplRequests, event: persisted source_args for pipeline: fb320ed2-abe6-4d16-9a29-33e"},{"event":"cmd_output","timestamp":1607098402,"output":"474743b66, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098402,"output":"\n16:13:22.001 [info] ppl_id: fb320ed2-abe6-4d16-9a29-33e474743b66, type: PplSubInits, state: fetch"},{"event":"cmd_output","timestamp":1607098402,"output":"ing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L9"},{"event":"cmd_output","timestamp":1607098402,"output":"0), \n\u001b[0m\u001b[22m\n16:13:22.022 [info] ppl_id: fb320ed2-abe6-4d16-9a29-33e474743b66, type: PplSubInit"},{"event":"cmd_output","timestamp":1607098402,"output":"s, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.lo"},{"event":"cmd_output","timestamp":1607098402,"output":"g_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:22.056 [info] ppl_id: fb320ed2-abe6-4d16-9a29-33e474743b6"},{"event":"cmd_output","timestamp":1607098402,"output":"6, type: PplSubInits, state: done, result: failed, event: exit_scheduling, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098402,"output":": Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:22.067 [info] ppl_id: fb320ed2"},{"event":"cmd_output","timestamp":1607098402,"output":"-abe6-4d16-9a29-33e474743b66, type: Ppls, state: done, result: failed, event: exit_scheduling, recov"},{"event":"cmd_output","timestamp":1607098402,"output":"ery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test Pipeline "},{"event":"cmd_output","timestamp":1607098402,"output":"with malformed task_file content fails (313.7ms)\u001b[0m\n * test Pipeline with non-existent task_file "},{"event":"cmd_output","timestamp":1607098402,"output":"value\u001b[22m\n16:13:22.154 [info] Request: 'run: %{:repo_name => \"17_task_file_nonexistent\", \"branch_"},{"event":"cmd_output","timestamp":1607098402,"output":"id\" => \"026c6452-154d-4431-ae31-6cd789d29a99\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a446"},{"event":"cmd_output","timestamp":1607098402,"output":"9\", \"file_name\" => \"semaphore.yml\", \"hook_id\" => \"a14c78b2-364b-11eb-a0e4-5254005464e2\", \"label\" => "},{"event":"cmd_output","timestamp":1607098402,"output":"\"master\", \"organization_id\" => \"58b440b1-a76c-42c9-84dc-e7595d9db888\", \"owner\" => \"rt\", \"project_id\""},{"event":"cmd_output","timestamp":1607098402,"output":" => \"c2026921-8345-48cc-9e59-c2d20268e733\", \"repo_name\" => \"2_basic\", \"request_token\" => \"a14c6930-3"},{"event":"cmd_output","timestamp":1607098402,"output":"64b-11eb-898a-5254005464e2\", \"requester_id\" => \"695da52d-86bc-4514-ac1c-a6e2b9226a17\", \"service\" => "},{"event":"cmd_output","timestamp":1607098402,"output":"\"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"ed4e4fd2-d3be-4f1"},{"event":"cmd_output","timestamp":1607098402,"output":"9-8566-fd22793679f6\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:13:22.157 [info] ppl_id: bfcb70"},{"event":"cmd_output","timestamp":1607098402,"output":"11-5ea6-41e2-8d16-b766f5b3afbf, type: PplRequests, event: persisted schedule request with request_to"},{"event":"cmd_output","timestamp":1607098402,"output":"ken: a14c6930-364b-11eb-898a-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.p"},{"event":"cmd_output","timestamp":1607098402,"output":"rocess_response/2(L55), \n\u001b[0m\u001b[22m\n16:13:22.160 [info] ppl_id: bfcb7011-5ea6-41e2-8d16-b766f5b3af"},{"event":"cmd_output","timestamp":1607098402,"output":"bf, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls"},{"event":"cmd_output","timestamp":1607098402,"output":".Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:13:22.166 [info] Project c2026921-8345"},{"event":"cmd_output","timestamp":1607098402,"output":"-48cc-9e59-c2d20268e733 and branch masterlatest_wf details updated: \"wf_id: ed4e4fd2-d3be-4f19-8566-"},{"event":"cmd_output","timestamp":1607098402,"output":"fd22793679f6, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:13:22.169 [info] Persisted ppl_sub_init for pipeline wit"},{"event":"cmd_output","timestamp":1607098402,"output":"h ppl_id: bfcb7011-5ea6-41e2-8d16-b766f5b3afbf: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.S"},{"event":"cmd_output","timestamp":1607098402,"output":"chema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 302"},{"event":"cmd_output","timestamp":1607098402,"output":", in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:13:22.166961], pipeline_"},{"event":"cmd_output","timestamp":1607098402,"output":"requests: #Ecto.Association.NotLoaded, ppl_id: \"bfcb70"},{"event":"cmd_output","timestamp":1607098402,"output":"11-5ea6-41e2-8d16-b766f5b3afbf\", recovery_count: 0, result: nil, result_reason: nil, state: \"created"},{"event":"cmd_output","timestamp":1607098402,"output":"\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:13:22.166971]}\r"},{"event":"cmd_output","timestamp":1607098402,"output":"\n\u001b[0m\u001b[22m\n16:13:22.174 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingState w"},{"event":"cmd_output","timestamp":1607098402,"output":"ith name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder"},{"event":"cmd_output","timestamp":1607098402,"output":"-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializ"},{"event":"cmd_output","timestamp":1607098402,"output":"ing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \""},{"event":"cmd_output","timestamp":1607098402,"output":"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0"},{"event":"cmd_output","timestamp":1607098402,"output":">, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_"},{"event":"cmd_output","timestamp":1607098402,"output":"count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:22.174 [info"},{"event":"cmd_output","timestamp":1607098402,"output":"] Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler"},{"event":"cmd_output","timestamp":1607098402,"output":".PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Pending"},{"event":"cmd_output","timestamp":1607098402,"output":"State\"]}, recurring args: %{allowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_"},{"event":"cmd_output","timestamp":1607098402,"output":"sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publisher_cb: #Function<0.849"},{"event":"cmd_output","timestamp":1607098402,"output":"3005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_"},{"event":"cmd_output","timestamp":1607098402,"output":"request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_"},{"event":"cmd_output","timestamp":1607098402,"output":"supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:13:22.175 [info] Periodic from module Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098402,"output":"s.STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, metri"},{"event":"cmd_output","timestamp":1607098402,"output":"c_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{allowed_st"},{"event":"cmd_output","timestamp":1607098402,"output":"ates: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, obse"},{"event":"cmd_output","timestamp":1607098402,"output":"rved_state: \"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.arg"},{"event":"cmd_output","timestamp":1607098402,"output":"s/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recove"},{"event":"cmd_output","timestamp":1607098402,"output":"ry_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:22.175 [i"},{"event":"cmd_output","timestamp":1607098402,"output":"nfo] Periodic from module Elixir.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHand"},{"event":"cmd_output","timestamp":1607098402,"output":"ler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Runn"},{"event":"cmd_output","timestamp":1607098402,"output":"ingState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2"},{"event":"cmd_output","timestamp":1607098402,"output":", initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"running\", publisher_cb: #Function<0.74670282/"},{"event":"cmd_output","timestamp":1607098402,"output":"1 in Ppl.Ppls.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_reque"},{"event":"cmd_output","timestamp":1607098402,"output":"st, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_super"},{"event":"cmd_output","timestamp":1607098402,"output":"visor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:13:22.176 [info] Periodic from module Elixir.Ppl.Ppls.STM"},{"event":"cmd_output","timestamp":1607098402,"output":"Handler.StoppingState with name Elixir.Ppl.Ppls.STMHandler.StoppingState :: period: 100 ms, metric_n"},{"event":"cmd_output","timestamp":1607098402,"output":"ame: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring args: %{allowed_stat"},{"event":"cmd_output","timestamp":1607098402,"output":"es: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: "},{"event":"cmd_output","timestamp":1607098402,"output":"\"stopping\", publisher_cb: #Function<0.71803493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, repo:"},{"event":"cmd_output","timestamp":1607098402,"output":" Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :"},{"event":"cmd_output","timestamp":1607098402,"output":"ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:22.176 [info] Perio"},{"event":"cmd_output","timestamp":1607098402,"output":"dic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMH"},{"event":"cmd_output","timestamp":1607098402,"output":"andler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHa"},{"event":"cmd_output","timestamp":1607098402,"output":"ndler-CreatedState\"]}, recurring args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, "},{"event":"cmd_output","timestamp":1607098402,"output":"initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip, re"},{"event":"cmd_output","timestamp":1607098402,"output":"po: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count"},{"event":"cmd_output","timestamp":1607098402,"output":", :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:22."},{"event":"cmd_output","timestamp":1607098402,"output":"176 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Pp"},{"event":"cmd_output","timestamp":1607098402,"output":"l.PplSubInits.STMHandler.FetchingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Pp"},{"event":"cmd_output","timestamp":1607098402,"output":"l-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compi"},{"event":"cmd_output","timestamp":1607098402,"output":"lation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_s"},{"event":"cmd_output","timestamp":1607098402,"output":"tate: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :upd"},{"event":"cmd_output","timestamp":1607098402,"output":"ated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task"},{"event":"cmd_output","timestamp":1607098402,"output":"_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:22.176 [info] Periodic from module Elixir.Ppl.PplSubInits.STM"},{"event":"cmd_output","timestamp":1607098402,"output":"Handler.CompilationState with name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 100"},{"event":"cmd_output","timestamp":1607098402,"output":" ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurri"},{"event":"cmd_output","timestamp":1607098402,"output":"ng args: %{allowed_states: [\"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2"},{"event":"cmd_output","timestamp":1607098402,"output":", initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"compilation\", publisher_cb: :sk"},{"event":"cmd_output","timestamp":1607098402,"output":"ip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery"},{"event":"cmd_output","timestamp":1607098402,"output":"_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098402,"output":"13:22.177 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with name "},{"event":"cmd_output","timestamp":1607098402,"output":"Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wa"},{"event":"cmd_output","timestamp":1607098402,"output":"ke_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurring args: %{allowed_states: [\"done\"]"},{"event":"cmd_output","timestamp":1607098402,"output":", cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_in"},{"event":"cmd_output","timestamp":1607098402,"output":"it\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :sta"},{"event":"cmd_output","timestamp":1607098402,"output":"te, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: "},{"event":"cmd_output","timestamp":1607098402,"output":":skip}\n\u001b[0m\u001b[22m\n16:13:22.177 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.Initial"},{"event":"cmd_output","timestamp":1607098402,"output":"izingState with name Elixir.Ppl.PplBlocks.STMHandler.InitializingState :: period: 100 ms, metric_nam"},{"event":"cmd_output","timestamp":1607098402,"output":"e: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-InitializingState\"]}, recurring args: %{allow"},{"event":"cmd_output","timestamp":1607098402,"output":"ed_states: [\"initializing\", \"waiting\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Mo"},{"event":"cmd_output","timestamp":1607098402,"output":"del.PplBlocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: ["},{"event":"cmd_output","timestamp":1607098402,"output":":id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], sche"},{"event":"cmd_output","timestamp":1607098402,"output":"ma: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:22.177 [info] Periodic"},{"event":"cmd_output","timestamp":1607098402,"output":" from module Elixir.Ppl.PplBlocks.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler."},{"event":"cmd_output","timestamp":1607098402,"output":"WaitingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-Wa"},{"event":"cmd_output","timestamp":1607098402,"output":"itingState\"]}, recurring args: %{allowed_states: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 0"},{"event":"cmd_output","timestamp":1607098402,"output":", initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"waiting\", publisher_cb: #Function<0"},{"event":"cmd_output","timestamp":1607098402,"output":".8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :t"},{"event":"cmd_output","timestamp":1607098402,"output":"erminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl"},{"event":"cmd_output","timestamp":1607098402,"output":".PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:22.177 [info] Periodic from m"},{"event":"cmd_output","timestamp":1607098402,"output":"odule Elixir.Ppl.PplBlocks.STMHandler.RunningState with name Elixir.Ppl.PplBlocks.STMHandler.Running"},{"event":"cmd_output","timestamp":1607098402,"output":"State :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningSt"},{"event":"cmd_output","timestamp":1607098402,"output":"ate\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, ini"},{"event":"cmd_output","timestamp":1607098402,"output":"tial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"running\", publisher_cb: #Function<0.2816"},{"event":"cmd_output","timestamp":1607098402,"output":"6834/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :termi"},{"event":"cmd_output","timestamp":1607098402,"output":"nate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], sche"},{"event":"cmd_output","timestamp":1607098402,"output":"ma: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:22.177 [info] Periodic"},{"event":"cmd_output","timestamp":1607098402,"output":" from module Elixir.Ppl.PplBlocks.STMHandler.StoppingState with name Elixir.Ppl.PplBlocks.STMHandler"},{"event":"cmd_output","timestamp":1607098402,"output":".StoppingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-"},{"event":"cmd_output","timestamp":1607098402,"output":"StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, init"},{"event":"cmd_output","timestamp":1607098402,"output":"ial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"stopping\", publisher_cb: #Function<0.1042"},{"event":"cmd_output","timestamp":1607098402,"output":"15991/1 in Ppl.PplBlocks.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :ter"},{"event":"cmd_output","timestamp":1607098402,"output":"minate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], sc"},{"event":"cmd_output","timestamp":1607098402,"output":"hema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:22.177 [info] Period"},{"event":"cmd_output","timestamp":1607098402,"output":"ic from module Elixir.Block.Blocks.STMHandler.InitializingState with name Elixir.Block.Blocks.STMHan"},{"event":"cmd_output","timestamp":1607098402,"output":"dler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHa"},{"event":"cmd_output","timestamp":1607098402,"output":"ndler-InitializingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec:"},{"event":"cmd_output","timestamp":1607098402,"output":" 0, initial_query: Block.Blocks.Model.Blocks, observed_state: \"initializing\", publisher_cb: :skip, r"},{"event":"cmd_output","timestamp":1607098402,"output":"epo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :blo"},{"event":"cmd_output","timestamp":1607098402,"output":"ck_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:22.177 [info] "},{"event":"cmd_output","timestamp":1607098402,"output":"Periodic from module Elixir.Block.Blocks.STMHandler.RunningState with name Elixir.Block.Blocks.STMHa"},{"event":"cmd_output","timestamp":1607098402,"output":"ndler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandle"},{"event":"cmd_output","timestamp":1607098402,"output":"r-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_s"},{"event":"cmd_output","timestamp":1607098402,"output":"ec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"running\", publisher_cb: :skip, re"},{"event":"cmd_output","timestamp":1607098402,"output":"po: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :bloc"},{"event":"cmd_output","timestamp":1607098402,"output":"k_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:22.178 [info] P"},{"event":"cmd_output","timestamp":1607098402,"output":"eriodic from module Elixir.Block.Blocks.STMHandler.StoppingState with name Elixir.Block.Blocks.STMHa"},{"event":"cmd_output","timestamp":1607098402,"output":"ndler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandl"},{"event":"cmd_output","timestamp":1607098402,"output":"er-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, i"},{"event":"cmd_output","timestamp":1607098402,"output":"nitial_query: Block.Blocks.Model.Blocks, observed_state: \"stopping\", publisher_cb: :skip, repo: Bloc"},{"event":"cmd_output","timestamp":1607098402,"output":"k.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], s"},{"event":"cmd_output","timestamp":1607098402,"output":"chema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:22.181 [info] Periodic "},{"event":"cmd_output","timestamp":1607098402,"output":"from module Elixir.Block.Tasks.STMHandler.PendingState with name Elixir.Block.Tasks.STMHandler.Pendi"},{"event":"cmd_output","timestamp":1607098402,"output":"ngState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingSta"},{"event":"cmd_output","timestamp":1607098402,"output":"te\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Bl"},{"event":"cmd_output","timestamp":1607098402,"output":"ock.Tasks.Model.Tasks, observed_state: \"pending\", publisher_cb: :skip, repo: Block.EctoRepo, returni"},{"event":"cmd_output","timestamp":1607098402,"output":"ng: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id, :build_request_id], s"},{"event":"cmd_output","timestamp":1607098402,"output":"chema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:22.182 [info] Periodic fr"},{"event":"cmd_output","timestamp":1607098402,"output":"om module Elixir.Block.Tasks.STMHandler.RunningState with name Elixir.Block.Tasks.STMHandler.Running"},{"event":"cmd_output","timestamp":1607098402,"output":"State :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningState"},{"event":"cmd_output","timestamp":1607098402,"output":"\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initia"},{"event":"cmd_output","timestamp":1607098402,"output":"l_query: Block.Tasks.Model.Tasks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRe"},{"event":"cmd_output","timestamp":1607098402,"output":"po, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: B"},{"event":"cmd_output","timestamp":1607098402,"output":"lock.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:22.182 [info] Periodic from modul"},{"event":"cmd_output","timestamp":1607098402,"output":"e Elixir.Block.Tasks.STMHandler.StoppingState with name Elixir.Block.Tasks.STMHandler.StoppingState "},{"event":"cmd_output","timestamp":1607098402,"output":":: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]}, "},{"event":"cmd_output","timestamp":1607098402,"output":"recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.T"},{"event":"cmd_output","timestamp":1607098402,"output":"asks.Model.Tasks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: "},{"event":"cmd_output","timestamp":1607098402,"output":"[:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Mode"},{"event":"cmd_output","timestamp":1607098402,"output":"l.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:22.290 [info] ppl_id: bfcb7011-5ea6-41e2-8d16-b7"},{"event":"cmd_output","timestamp":1607098402,"output":"66f5b3afbf, type: PplRequests, event: persisted source_args for pipeline: bfcb7011-5ea6-41e2-8d16-b7"},{"event":"cmd_output","timestamp":1607098402,"output":"66f5b3afbf, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098402,"output":"m\n16:13:22.292 [info] ppl_id: bfcb7011-5ea6-41e2-8d16-b766f5b3afbf, type: PplSubInits, state: fetc"},{"event":"cmd_output","timestamp":1607098402,"output":"hing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098402,"output":"90), \n\u001b[0m\u001b[22m\n16:13:22.313 [info] ppl_id: bfcb7011-5ea6-41e2-8d16-b766f5b3afbf, type: PplSubIni"},{"event":"cmd_output","timestamp":1607098402,"output":"ts, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.l"},{"event":"cmd_output","timestamp":1607098402,"output":"og_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:22.330 [info] ppl_id: bfcb7011-5ea6-41e2-8d16-b766f5b3af"},{"event":"cmd_output","timestamp":1607098402,"output":"bf, type: PplSubInits, state: done, result: failed, event: exit_scheduling, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098402,"output":"n: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:22.340 [info] ppl_id: bfcb701"},{"event":"cmd_output","timestamp":1607098402,"output":"1-5ea6-41e2-8d16-b766f5b3afbf, type: Ppls, state: done, result: failed, event: exit_scheduling, reco"},{"event":"cmd_output","timestamp":1607098402,"output":"very_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test Pipeline"},{"event":"cmd_output","timestamp":1607098402,"output":" with non-existent task_file value (306.2ms)\u001b[0m\n\nPpl.E2E.RunBlock.Test\n * test when there is ru"},{"event":"cmd_output","timestamp":1607098402,"output":"n in block definition => blocks are run or skipped according to condition\u001b[22m\n16:13:22.437 [info] "},{"event":"cmd_output","timestamp":1607098402,"output":" Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.STMHand"},{"event":"cmd_output","timestamp":1607098402,"output":"ler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler"},{"event":"cmd_output","timestamp":1607098402,"output":"-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], coolin"},{"event":"cmd_output","timestamp":1607098402,"output":"g_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher_cb: #Fu"},{"event":"cmd_output","timestamp":1607098402,"output":"nction<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, returning"},{"event":"cmd_output","timestamp":1607098402,"output":": [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098402,"output":"s.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:22.437 [info] Periodic from module Elixir.P"},{"event":"cmd_output","timestamp":1607098402,"output":"pl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 100 ms,"},{"event":"cmd_output","timestamp":1607098402,"output":" metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args: %{allo"},{"event":"cmd_output","timestamp":1607098402,"output":"wed_states: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls."},{"event":"cmd_output","timestamp":1607098402,"output":"Model.Ppls, observed_state: \"pending\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler.Pe"},{"event":"cmd_output","timestamp":1607098402,"output":"ndingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :r"},{"event":"cmd_output","timestamp":1607098402,"output":"esult, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\r"},{"event":"cmd_output","timestamp":1607098402,"output":"\n\u001b[0m\u001b[22m\n16:13:22.437 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.QueuingState with n"},{"event":"cmd_output","timestamp":1607098402,"output":"ame Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\","},{"event":"cmd_output","timestamp":1607098402,"output":" [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{allowed_states: [\"queuing\", \"running\", \"do"},{"event":"cmd_output","timestamp":1607098402,"output":"ne\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", publisher"},{"event":"cmd_output","timestamp":1607098402,"output":"_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, return"},{"event":"cmd_output","timestamp":1607098402,"output":"ing: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl."},{"event":"cmd_output","timestamp":1607098402,"output":"Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:22.437 [info] Periodic from module Elixi"},{"event":"cmd_output","timestamp":1607098402,"output":"r.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHandler.RunningState :: period: 100 "},{"event":"cmd_output","timestamp":1607098402,"output":"ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring args: %{a"},{"event":"cmd_output","timestamp":1607098402,"output":"llowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model."},{"event":"cmd_output","timestamp":1607098402,"output":"Ppls, observed_state: \"running\", publisher_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler.Running"},{"event":"cmd_output","timestamp":1607098402,"output":"State.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result"},{"event":"cmd_output","timestamp":1607098402,"output":", :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m"},{"event":"cmd_output","timestamp":1607098402,"output":"\u001b[22m\n16:13:22.437 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.StoppingState with name "},{"event":"cmd_output","timestamp":1607098402,"output":"Elixir.Ppl.Ppls.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\""},{"event":"cmd_output","timestamp":1607098402,"output":"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], coolin"},{"event":"cmd_output","timestamp":1607098402,"output":"g_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"stopping\", publisher_cb: #Funct"},{"event":"cmd_output","timestamp":1607098402,"output":"ion<0.71803493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, "},{"event":"cmd_output","timestamp":1607098402,"output":":terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model."},{"event":"cmd_output","timestamp":1607098402,"output":"Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:22.438 [info] Periodic from module Elixir.Ppl.PplSu"},{"event":"cmd_output","timestamp":1607098402,"output":"bInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 1"},{"event":"cmd_output","timestamp":1607098402,"output":"00 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring"},{"event":"cmd_output","timestamp":1607098402,"output":" args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.M"},{"event":"cmd_output","timestamp":1607098402,"output":"odel.PplSubInits, observed_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:i"},{"event":"cmd_output","timestamp":1607098402,"output":"d, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubIn"},{"event":"cmd_output","timestamp":1607098402,"output":"its.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:22.438 [info] Periodic from module"},{"event":"cmd_output","timestamp":1607098402,"output":" Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler.Fetchin"},{"event":"cmd_output","timestamp":1607098402,"output":"gState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-Fetchin"},{"event":"cmd_output","timestamp":1607098402,"output":"gState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"done\"], cooling_time_s"},{"event":"cmd_output","timestamp":1607098402,"output":"ec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fetching\", publisher_cb: "},{"event":"cmd_output","timestamp":1607098402,"output":":skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recov"},{"event":"cmd_output","timestamp":1607098402,"output":"ery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098402,"output":"16:13:22.438 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CompilationState with na"},{"event":"cmd_output","timestamp":1607098402,"output":"me Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 100 ms, metric_name: {\"Ppl.beholder"},{"event":"cmd_output","timestamp":1607098402,"output":"-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurring args: %{allowed_states: [\"reg"},{"event":"cmd_output","timestamp":1607098402,"output":"ular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits"},{"event":"cmd_output","timestamp":1607098402,"output":".Model.PplSubInits, observed_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returnin"},{"event":"cmd_output","timestamp":1607098402,"output":"g: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Pp"},{"event":"cmd_output","timestamp":1607098402,"output":"lSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:22.438 [info] Periodic from "},{"event":"cmd_output","timestamp":1607098402,"output":"module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHandle"},{"event":"cmd_output","timestamp":1607098402,"output":"r.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHan"},{"event":"cmd_output","timestamp":1607098402,"output":"dler-RegularInitState\"]}, recurring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, initial_q"},{"event":"cmd_output","timestamp":1607098402,"output":"uery: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_init\", publisher_cb: :skip, repo: "},{"event":"cmd_output","timestamp":1607098402,"output":"Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :p"},{"event":"cmd_output","timestamp":1607098402,"output":"pl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:22.438 "},{"event":"cmd_output","timestamp":1607098402,"output":"[info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.InitializingState with name Elixir.Ppl."},{"event":"cmd_output","timestamp":1607098402,"output":"PplBlocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Pp"},{"event":"cmd_output","timestamp":1607098402,"output":"l-PplBlocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"wai"},{"event":"cmd_output","timestamp":1607098402,"output":"ting\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \""},{"event":"cmd_output","timestamp":1607098402,"output":"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :update"},{"event":"cmd_output","timestamp":1607098402,"output":"d_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlock"},{"event":"cmd_output","timestamp":1607098402,"output":"s, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:22.438 [info] Periodic from module Elixir.Ppl.PplBlock"},{"event":"cmd_output","timestamp":1607098402,"output":"s.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler.WaitingState :: period: 1000 ms,"},{"event":"cmd_output","timestamp":1607098402,"output":" metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurring args: %"},{"event":"cmd_output","timestamp":1607098402,"output":"{allowed_states: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.M"},{"event":"cmd_output","timestamp":1607098402,"output":"odel.PplBlocks, observed_state: \"waiting\", publisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.STMH"},{"event":"cmd_output","timestamp":1607098402,"output":"andler.WaitingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :"},{"event":"cmd_output","timestamp":1607098402,"output":"state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task"},{"event":"cmd_output","timestamp":1607098402,"output":"_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:22.438 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHa"},{"event":"cmd_output","timestamp":1607098402,"output":"ndler.RunningState with name Elixir.Ppl.PplBlocks.STMHandler.RunningState :: period: 1000 ms, metric"},{"event":"cmd_output","timestamp":1607098402,"output":"_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, recurring args: %{allowe"},{"event":"cmd_output","timestamp":1607098402,"output":"d_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model."},{"event":"cmd_output","timestamp":1607098402,"output":"PplBlocks, observed_state: \"running\", publisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHandl"},{"event":"cmd_output","timestamp":1607098402,"output":"er.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :stat"},{"event":"cmd_output","timestamp":1607098402,"output":"e, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlock"},{"event":"cmd_output","timestamp":1607098402,"output":"s, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:22.438 [info] Periodic from module Elixir.Ppl.PplBlock"},{"event":"cmd_output","timestamp":1607098402,"output":"s.STMHandler.StoppingState with name Elixir.Ppl.PplBlocks.STMHandler.StoppingState :: period: 1000 m"},{"event":"cmd_output","timestamp":1607098402,"output":"s, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurring args"},{"event":"cmd_output","timestamp":1607098402,"output":": %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.P"},{"event":"cmd_output","timestamp":1607098402,"output":"plBlocks, observed_state: \"stopping\", publisher_cb: #Function<0.104215991/1 in Ppl.PplBlocks.STMHand"},{"event":"cmd_output","timestamp":1607098402,"output":"ler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :st"},{"event":"cmd_output","timestamp":1607098402,"output":"ate, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlo"},{"event":"cmd_output","timestamp":1607098402,"output":"cks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:22.438 [info] Periodic from module Elixir.Block.Bloc"},{"event":"cmd_output","timestamp":1607098402,"output":"ks.STMHandler.InitializingState with name Elixir.Block.Blocks.STMHandler.InitializingState :: period"},{"event":"cmd_output","timestamp":1607098402,"output":": 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, recu"},{"event":"cmd_output","timestamp":1607098402,"output":"rring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Blocks."},{"event":"cmd_output","timestamp":1607098402,"output":"Model.Blocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Block.EctoRepo, returning: "},{"event":"cmd_output","timestamp":1607098402,"output":"[:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Mod"},{"event":"cmd_output","timestamp":1607098402,"output":"el.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:22.439 [info] Periodic from module Elixir.Bloc"},{"event":"cmd_output","timestamp":1607098402,"output":"k.Blocks.STMHandler.RunningState with name Elixir.Block.Blocks.STMHandler.RunningState :: period: 10"},{"event":"cmd_output","timestamp":1607098402,"output":"0 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-RunningState\"]}, recurring arg"},{"event":"cmd_output","timestamp":1607098402,"output":"s: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blo"},{"event":"cmd_output","timestamp":1607098402,"output":"cks.Model.Blocks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: ["},{"event":"cmd_output","timestamp":1607098402,"output":":id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Mode"},{"event":"cmd_output","timestamp":1607098402,"output":"l.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:22.439 [info] Periodic from module Elixir.Block"},{"event":"cmd_output","timestamp":1607098402,"output":".Blocks.STMHandler.StoppingState with name Elixir.Block.Blocks.STMHandler.StoppingState :: period: 1"},{"event":"cmd_output","timestamp":1607098402,"output":"00 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-StoppingState\"]}, recurring a"},{"event":"cmd_output","timestamp":1607098402,"output":"rgs: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model"},{"event":"cmd_output","timestamp":1607098402,"output":".Blocks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :te"},{"event":"cmd_output","timestamp":1607098402,"output":"rminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks"},{"event":"cmd_output","timestamp":1607098402,"output":", task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:22.439 [info] Periodic from module Elixir.Block.Tasks.S"},{"event":"cmd_output","timestamp":1607098402,"output":"TMHandler.PendingState with name Elixir.Block.Tasks.STMHandler.PendingState :: period: 100 ms, metri"},{"event":"cmd_output","timestamp":1607098402,"output":"c_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingState\"]}, recurring args: %{allowed"},{"event":"cmd_output","timestamp":1607098402,"output":"_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Tasks.Model.Tasks, observed_"},{"event":"cmd_output","timestamp":1607098402,"output":"state: \"pending\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :u"},{"event":"cmd_output","timestamp":1607098402,"output":"pdated_at, :state, :recovery_count, :block_id, :build_request_id], schema: Block.Tasks.Model.Tasks, "},{"event":"cmd_output","timestamp":1607098402,"output":"task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:22.439 [info] Periodic from module Elixir.Block.Tasks.STM"},{"event":"cmd_output","timestamp":1607098402,"output":"Handler.RunningState with name Elixir.Block.Tasks.STMHandler.RunningState :: period: 100 ms, metric_"},{"event":"cmd_output","timestamp":1607098402,"output":"name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningState\"]}, recurring args: %{allowed_s"},{"event":"cmd_output","timestamp":1607098402,"output":"tates: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks"},{"event":"cmd_output","timestamp":1607098402,"output":", observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_"},{"event":"cmd_output","timestamp":1607098402,"output":"request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_sup"},{"event":"cmd_output","timestamp":1607098402,"output":"ervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:22.439 [info] Periodic from module Elixir.Block.Tasks.STMHandler."},{"event":"cmd_output","timestamp":1607098402,"output":"StoppingState with name Elixir.Block.Tasks.STMHandler.StoppingState :: period: 100 ms, metric_name: "},{"event":"cmd_output","timestamp":1607098402,"output":"{\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states"},{"event":"cmd_output","timestamp":1607098402,"output":": [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state"},{"event":"cmd_output","timestamp":1607098402,"output":": \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updat"},{"event":"cmd_output","timestamp":1607098402,"output":"ed_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}"},{"event":"cmd_output","timestamp":1607098402,"output":"\n\u001b[0m\u001b[22m\n16:13:22.450 [info] Request: 'run: %{\"branch_id\" => \"5446ffbf-2e43-4b64-97b0-8de4fe51d"},{"event":"cmd_output","timestamp":1607098402,"output":"4ba\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"run_block.yml\", \"hook"},{"event":"cmd_output","timestamp":1607098402,"output":"_id\" => \"a1786544-364b-11eb-babc-5254005464e2\", \"label\" => \"master\", \"organization_id\" => \"2bdbef61-"},{"event":"cmd_output","timestamp":1607098402,"output":"1f7d-43d5-8f16-82083b0a06c8\", \"owner\" => \"rt\", \"project_id\" => \"c30aa043-9705-4123-8caa-dccab962f0ce"},{"event":"cmd_output","timestamp":1607098402,"output":"\", \"repo_name\" => \"22_skip_block\", \"request_token\" => \"a1785c2a-364b-11eb-a3ae-5254005464e2\", \"reque"},{"event":"cmd_output","timestamp":1607098402,"output":"ster_id\" => \"16014d1b-3af0-45b2-8bae-f3f064e1aa5a\", \"service\" => \"local\", \"suppressed_attributes\" =>"},{"event":"cmd_output","timestamp":1607098402,"output":" [\"access_token\", \"client_secret\"], \"wf_id\" => \"cb53b19a-0a3a-4cee-861b-7115e6347190\", \"working_dir\""},{"event":"cmd_output","timestamp":1607098402,"output":" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:13:22.454 [info] ppl_id: e678fcf0-a08b-4e85-abb0-f70237ca9fde, typ"},{"event":"cmd_output","timestamp":1607098402,"output":"e: PplRequests, event: persisted schedule request with request_token: a1785c2a-364b-11eb-a3ae-525400"},{"event":"cmd_output","timestamp":1607098402,"output":"5464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098402,"output":"\n16:13:22.457 [info] ppl_id: e678fcf0-a08b-4e85-abb0-f70237ca9fde, type: Ppls, state: initializing"},{"event":"cmd_output","timestamp":1607098402,"output":", event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response"},{"event":"cmd_output","timestamp":1607098402,"output":"/2(L124), \n\u001b[0m\u001b[22m\n16:13:22.469 [info] Project c30aa043-9705-4123-8caa-dccab962f0ce and branch "},{"event":"cmd_output","timestamp":1607098402,"output":"masterlatest_wf details updated: \"wf_id: cb53b19a-0a3a-4cee-861b-7115e6347190, wf_number: 1\"\n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098402,"output":"22m\n16:13:22.471 [info] Persisted ppl_sub_init for pipeline with ppl_id: e678fcf0-a08b-4e85-abb0-f"},{"event":"cmd_output","timestamp":1607098402,"output":"70237ca9fde: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_s"},{"event":"cmd_output","timestamp":1607098402,"output":"ub_inits\">, compile_task_id: nil, error_description: nil, id: 303, in_scheduling: false, init_type: "},{"event":"cmd_output","timestamp":1607098402,"output":"\"regular\", inserted_at: ~N[2020-12-04 16:13:22.469740], pipeline_requests: #Ecto.Association.NotLoad"},{"event":"cmd_output","timestamp":1607098402,"output":"ed, ppl_id: \"e678fcf0-a08b-4e85-abb0-f70237ca9fde\", re"},{"event":"cmd_output","timestamp":1607098402,"output":"covery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminat"},{"event":"cmd_output","timestamp":1607098402,"output":"e_request_desc: nil, updated_at: ~N[2020-12-04 16:13:22.469745]}\n\u001b[0m\u001b[22m\n16:13:22.482 [info] pp"},{"event":"cmd_output","timestamp":1607098402,"output":"l_id: e678fcf0-a08b-4e85-abb0-f70237ca9fde, type: PplRequests, event: persisted source_args for pipe"},{"event":"cmd_output","timestamp":1607098402,"output":"line: e678fcf0-a08b-4e85-abb0-f70237ca9fde, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries."},{"event":"cmd_output","timestamp":1607098402,"output":"insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:13:22.485 [info] ppl_id: e678fcf0-a08b-4e85-abb0-f70237ca9fde"},{"event":"cmd_output","timestamp":1607098402,"output":", type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loop"},{"event":"cmd_output","timestamp":1607098402,"output":"er.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:22.508 [info] ppl_id: e678fcf0-a08b-4e85-ab"},{"event":"cmd_output","timestamp":1607098402,"output":"b0-f70237ca9fde, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098402,"output":"origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:22.542 [info] ppl_id: e6"},{"event":"cmd_output","timestamp":1607098402,"output":"78fcf0-a08b-4e85-abb0-f70237ca9fde, type: PplRequests, event: persisted definition for request with "},{"event":"cmd_output","timestamp":1607098402,"output":"request_token: a1785c2a-364b-11eb-a3ae-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequest"},{"event":"cmd_output","timestamp":1607098402,"output":"sQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:13:22.552 [info] Queue persisted: {:ok, %Ppl.Que"},{"event":"cmd_output","timestamp":1607098402,"output":"ues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:1"},{"event":"cmd_output","timestamp":1607098402,"output":"3:22.550439], name: \"master-.semaphore/run_block.yml\", organization_id: \"2bdbef61-1f7d-43d5-8f16-820"},{"event":"cmd_output","timestamp":1607098402,"output":"83b0a06c8\", project_id: \"c30aa043-9705-4123-8caa-dccab962f0ce\", queue_id: \"654609a2-b9ee-4abb-a3f5-0"},{"event":"cmd_output","timestamp":1607098402,"output":"a7ee11f284a\", scope: \"project\", updated_at: ~N[2020-12-04 16:13:22.550523], user_generated: false}}\r"},{"event":"cmd_output","timestamp":1607098402,"output":"\n\u001b[0m\u001b[22m\n16:13:22.557 [info] ppl_id: not_available, event: created, origin: Elixir.Ppl.PplSubIni"},{"event":"cmd_output","timestamp":1607098402,"output":"ts.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:22.557 [info] event: created, or"},{"event":"cmd_output","timestamp":1607098402,"output":"igin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:22.557 "},{"event":"cmd_output","timestamp":1607098402,"output":"[info] ppl_id: e678fcf0-a08b-4e85-abb0-f70237ca9fde, type: PplBlocks, block_index: 0, state: initia"},{"event":"cmd_output","timestamp":1607098402,"output":"lizing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitStat"},{"event":"cmd_output","timestamp":1607098402,"output":"e.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:22.557 [info] ppl_id: e678fcf0-a08b-4e85-abb0-f70237ca9fde, t"},{"event":"cmd_output","timestamp":1607098402,"output":"ype: PplBlocks, block_index: 1, state: initializing, event: created, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098402,"output":"ir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:22.557 [info] pp"},{"event":"cmd_output","timestamp":1607098402,"output":"l_id: e678fcf0-a08b-4e85-abb0-f70237ca9fde, type: PplBlocks, block_index: 2, state: initializing, ev"},{"event":"cmd_output","timestamp":1607098402,"output":"ent: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/"},{"event":"cmd_output","timestamp":1607098402,"output":"1(L105), \n\u001b[0m\u001b[22m\n16:13:22.559 [info] ppl_id: e678fcf0-a08b-4e85-abb0-f70237ca9fde, type: PplSu"},{"event":"cmd_output","timestamp":1607098402,"output":"bInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loope"},{"event":"cmd_output","timestamp":1607098402,"output":"r.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:22.565 [info] ppl_id: e678fcf0-a08b-4e85-abb"},{"event":"cmd_output","timestamp":1607098402,"output":"0-f70237ca9fde, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_co"},{"event":"cmd_output","timestamp":1607098402,"output":"unt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:22.567 [info] pp"},{"event":"cmd_output","timestamp":1607098402,"output":"l_id: e678fcf0-a08b-4e85-abb0-f70237ca9fde, type: Ppls, state: pending, event: exit_scheduling, reco"},{"event":"cmd_output","timestamp":1607098402,"output":"very_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:22.572 [in"},{"event":"cmd_output","timestamp":1607098402,"output":"fo] ppl_id: e678fcf0-a08b-4e85-abb0-f70237ca9fde, type: PplBlocks, block_index: 1, state: waiting, "},{"event":"cmd_output","timestamp":1607098402,"output":"event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \r"},{"event":"cmd_output","timestamp":1607098402,"output":"\n\u001b[0m\u001b[22m\n16:13:22.579 [info] ppl_id: e678fcf0-a08b-4e85-abb0-f70237ca9fde, type: Ppls, state: qu"},{"event":"cmd_output","timestamp":1607098402,"output":"euing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1("},{"event":"cmd_output","timestamp":1607098402,"output":"L90), \n\u001b[0m\u001b[22m\n16:13:22.579 [info] ppl_id: e678fcf0-a08b-4e85-abb0-f70237ca9fde, type: PplBlock"},{"event":"cmd_output","timestamp":1607098402,"output":"s, block_index: 2, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper."},{"event":"cmd_output","timestamp":1607098402,"output":"STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:22.592 [info] ppl_id: e678fcf0-a08b-4e85-abb0-"},{"event":"cmd_output","timestamp":1607098402,"output":"f70237ca9fde, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098402,"output":"Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:22.602 [info] PplBlocks WaitingState ST"},{"event":"cmd_output","timestamp":1607098402,"output":"M is scheduling block 0 from pipeline: \"e678fcf0-a08b-4e85-abb0-f70237ca9fde\"\n\u001b[0m\u001b[22m\n16:13:22.6"},{"event":"cmd_output","timestamp":1607098402,"output":"08 [info] block_id: 74c0b0f7-96ce-45b7-b769-8f1fcb8409ea, type: BlockRequests, event: persisted blo"},{"event":"cmd_output","timestamp":1607098402,"output":"ck run request from ppl e678fcf0-a08b-4e85-abb0-f70237ca9fde for block 0, origin: Elixir.Block.Block"},{"event":"cmd_output","timestamp":1607098402,"output":"Requests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:13:22.610 [info] block"},{"event":"cmd_output","timestamp":1607098402,"output":"_id: 74c0b0f7-96ce-45b7-b769-8f1fcb8409ea, type: Blocks, state: initializing, event: initializing, r"},{"event":"cmd_output","timestamp":1607098402,"output":"ecovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:13:"},{"event":"cmd_output","timestamp":1607098402,"output":"22.613 [info] Block 0 of pipeline with id: e678fcf0-a08b-4e85-abb0-f70237ca9fde scheduled in block "},{"event":"cmd_output","timestamp":1607098402,"output":"service with id: : \"74c0b0f7-96ce-45b7-b769-8f1fcb8409ea\"\n\u001b[0m\u001b[22m\n16:13:22.616 [info] ppl_id: e"},{"event":"cmd_output","timestamp":1607098402,"output":"678fcf0-a08b-4e85-abb0-f70237ca9fde, type: PplBlocks, block_index: 0, state: running, event: exit_sc"},{"event":"cmd_output","timestamp":1607098402,"output":"heduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098402,"output":":13:22.617 [info] block_id: 74c0b0f7-96ce-45b7-b769-8f1fcb8409ea, type: BlockRequests, event: persi"},{"event":"cmd_output","timestamp":1607098402,"output":"sted build and sub_ppl details for block_request: 74c0b0f7-96ce-45b7-b769-8f1fcb8409ea, origin: Elix"},{"event":"cmd_output","timestamp":1607098402,"output":"ir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:13:22.620 [in"},{"event":"cmd_output","timestamp":1607098402,"output":"fo] block_id: 74c0b0f7-96ce-45b7-b769-8f1fcb8409ea, type: Tasks, state: pending, event: created, re"},{"event":"cmd_output","timestamp":1607098402,"output":"covery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098402,"output":"2m\n16:13:22.621 [info] block_id: 74c0b0f7-96ce-45b7-b769-8f1fcb8409ea, type: Blocks, state: runnin"},{"event":"cmd_output","timestamp":1607098402,"output":"g, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90)"},{"event":"cmd_output","timestamp":1607098402,"output":", \n\u001b[0m\u001b[22m\n16:13:22.633 [info] block_id: 74c0b0f7-96ce-45b7-b769-8f1fcb8409ea, type: Tasks, sta"},{"event":"cmd_output","timestamp":1607098402,"output":"te: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_cha"},{"event":"cmd_output","timestamp":1607098402,"output":"nge/1(L90), \n\u001b[0m\u001b[22m\n16:13:22.666 [info] block_id: 74c0b0f7-96ce-45b7-b769-8f1fcb8409ea, type: "},{"event":"cmd_output","timestamp":1607098402,"output":"Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_st"},{"event":"cmd_output","timestamp":1607098402,"output":"ate_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:22.671 [info] block_id: 74c0b0f7-96ce-45b7-b769-8f1fcb8409ea,"},{"event":"cmd_output","timestamp":1607098402,"output":" type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Imp"},{"event":"cmd_output","timestamp":1607098402,"output":"l.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:22.677 [info] ppl_id: e678fcf0-a08b-4e85-abb0-f70237c"},{"event":"cmd_output","timestamp":1607098402,"output":"a9fde, block_id: 74c0b0f7-96ce-45b7-b769-8f1fcb8409ea, type: PplBlocks, block_index: 0, state: done,"},{"event":"cmd_output","timestamp":1607098402,"output":" result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state"},{"event":"cmd_output","timestamp":1607098402,"output":"_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:22.682 [info] PplBlocks WaitingState STM is scheduling block 1 f"},{"event":"cmd_output","timestamp":1607098402,"output":"rom pipeline: \"e678fcf0-a08b-4e85-abb0-f70237ca9fde\"\n\u001b[0m\u001b[22m\n16:13:22.688 [info] ppl_id: e678fc"},{"event":"cmd_output","timestamp":1607098402,"output":"f0-a08b-4e85-abb0-f70237ca9fde, type: PplBlocks, block_index: 1, state: done, result: passed, event:"},{"event":"cmd_output","timestamp":1607098402,"output":" exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098402,"output":"[22m\n16:13:22.691 [info] PplBlocks WaitingState STM is scheduling block 2 from pipeline: \"e678fcf0"},{"event":"cmd_output","timestamp":1607098402,"output":"-a08b-4e85-abb0-f70237ca9fde\"\n\u001b[0m\u001b[22m\n16:13:22.697 [info] ppl_id: e678fcf0-a08b-4e85-abb0-f7023"},{"event":"cmd_output","timestamp":1607098402,"output":"7ca9fde, type: PplBlocks, block_index: 2, state: done, result: passed, event: exit_scheduling, recov"},{"event":"cmd_output","timestamp":1607098402,"output":"ery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:22.712 [inf"},{"event":"cmd_output","timestamp":1607098402,"output":"o] ppl_id: e678fcf0-a08b-4e85-abb0-f70237ca9fde, type: Ppls, state: done, result: passed, event: ex"},{"event":"cmd_output","timestamp":1607098402,"output":"it_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32"},{"event":"cmd_output","timestamp":1607098402,"output":"m\r * test when there is run in block definition => blocks are run or skipped according to condition"},{"event":"cmd_output","timestamp":1607098402,"output":" (394.6ms)\u001b[0m\n\nPpl.E2E.ParallelismSupport.Test\n * test Pipeline with parallelism in job definit"},{"event":"cmd_output","timestamp":1607098402,"output":"ion passes\u001b[22m\n16:13:22.840 [info] Request: 'run: %{\"branch_id\" => \"52746fb8-0d3f-4551-a38f-85074"},{"event":"cmd_output","timestamp":1607098402,"output":"4501dc5\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"semaphore.yml\", \""},{"event":"cmd_output","timestamp":1607098402,"output":"hook_id\" => \"a1b524fc-364b-11eb-8562-5254005464e2\", \"label\" => \"master\", \"organization_id\" => \"784dd"},{"event":"cmd_output","timestamp":1607098402,"output":"077-5b2d-442f-8810-34775a6dae9c\", \"owner\" => \"rt\", \"project_id\" => \"6a5fc803-ffe1-402a-806d-36540c39"},{"event":"cmd_output","timestamp":1607098402,"output":"3165\", \"repo_name\" => \"27_parallelism\", \"request_token\" => \"a1b519bc-364b-11eb-af9f-5254005464e2\", \""},{"event":"cmd_output","timestamp":1607098402,"output":"requester_id\" => \"f69f421e-cd1e-488e-ad83-e8c06ac966c7\", \"service\" => \"local\", \"suppressed_attribute"},{"event":"cmd_output","timestamp":1607098402,"output":"s\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"52f6eccb-ca7e-4b87-9148-6d848c014f97\", \"working"},{"event":"cmd_output","timestamp":1607098402,"output":"_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:13:22.843 [info] ppl_id: 8909e87a-6cd4-492e-aff4-0785b5130bec"},{"event":"cmd_output","timestamp":1607098402,"output":", type: PplRequests, event: persisted schedule request with request_token: a1b519bc-364b-11eb-af9f-5"},{"event":"cmd_output","timestamp":1607098402,"output":"254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098402,"output":"\u001b[22m\n16:13:22.846 [info] ppl_id: 8909e87a-6cd4-492e-aff4-0785b5130bec, type: Ppls, state: initial"},{"event":"cmd_output","timestamp":1607098402,"output":"izing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_res"},{"event":"cmd_output","timestamp":1607098402,"output":"ponse/2(L124), \n\u001b[0m\u001b[22m\n16:13:22.852 [info] Project 6a5fc803-ffe1-402a-806d-36540c393165 and br"},{"event":"cmd_output","timestamp":1607098402,"output":"anch masterlatest_wf details updated: \"wf_id: 52f6eccb-ca7e-4b87-9148-6d848c014f97, wf_number: 1\"\n\u001b"},{"event":"cmd_output","timestamp":1607098402,"output":"[0m\u001b[22m\n16:13:22.854 [info] Persisted ppl_sub_init for pipeline with ppl_id: 8909e87a-6cd4-492e-a"},{"event":"cmd_output","timestamp":1607098402,"output":"ff4-0785b5130bec: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipel"},{"event":"cmd_output","timestamp":1607098402,"output":"ine_sub_inits\">, compile_task_id: nil, error_description: nil, id: 304, in_scheduling: false, init_t"},{"event":"cmd_output","timestamp":1607098402,"output":"ype: \"regular\", inserted_at: ~N[2020-12-04 16:13:22.852361], pipeline_requests: #Ecto.Association.No"},{"event":"cmd_output","timestamp":1607098402,"output":"tLoaded, ppl_id: \"8909e87a-6cd4-492e-aff4-0785b5130bec"},{"event":"cmd_output","timestamp":1607098402,"output":"\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, ter"},{"event":"cmd_output","timestamp":1607098402,"output":"minate_request_desc: nil, updated_at: ~N[2020-12-04 16:13:22.852370]}\n\u001b[0m\u001b[22m\n16:13:22.861 [info"},{"event":"cmd_output","timestamp":1607098402,"output":"] Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.STMHa"},{"event":"cmd_output","timestamp":1607098402,"output":"ndler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandl"},{"event":"cmd_output","timestamp":1607098402,"output":"er-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], cool"},{"event":"cmd_output","timestamp":1607098402,"output":"ing_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher_cb: #"},{"event":"cmd_output","timestamp":1607098402,"output":"Function<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, returni"},{"event":"cmd_output","timestamp":1607098402,"output":"ng: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.P"},{"event":"cmd_output","timestamp":1607098402,"output":"pls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:22.861 [info] Periodic from module Elixir"},{"event":"cmd_output","timestamp":1607098402,"output":".Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 100 m"},{"event":"cmd_output","timestamp":1607098402,"output":"s, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args: %{al"},{"event":"cmd_output","timestamp":1607098402,"output":"lowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098402,"output":"s.Model.Ppls, observed_state: \"pending\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler."},{"event":"cmd_output","timestamp":1607098402,"output":"PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, "},{"event":"cmd_output","timestamp":1607098402,"output":":result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor"},{"event":"cmd_output","timestamp":1607098402,"output":"}\n\u001b[0m\u001b[22m\n16:13:22.861 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.QueuingState with"},{"event":"cmd_output","timestamp":1607098402,"output":" name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up"},{"event":"cmd_output","timestamp":1607098402,"output":"\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{allowed_states: [\"queuing\", \"running\", \""},{"event":"cmd_output","timestamp":1607098402,"output":"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", publish"},{"event":"cmd_output","timestamp":1607098402,"output":"er_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, retu"},{"event":"cmd_output","timestamp":1607098402,"output":"rning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Pp"},{"event":"cmd_output","timestamp":1607098402,"output":"l.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:22.862 [info] Periodic from module Eli"},{"event":"cmd_output","timestamp":1607098402,"output":"xir.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHandler.RunningState :: period: 10"},{"event":"cmd_output","timestamp":1607098402,"output":"0 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring args: %"},{"event":"cmd_output","timestamp":1607098402,"output":"{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Mode"},{"event":"cmd_output","timestamp":1607098402,"output":"l.Ppls, observed_state: \"running\", publisher_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler.Runni"},{"event":"cmd_output","timestamp":1607098402,"output":"ngState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :resu"},{"event":"cmd_output","timestamp":1607098402,"output":"lt, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b["},{"event":"cmd_output","timestamp":1607098402,"output":"0m\u001b[22m\n16:13:22.862 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.StoppingState with nam"},{"event":"cmd_output","timestamp":1607098402,"output":"e Elixir.Ppl.Ppls.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", "},{"event":"cmd_output","timestamp":1607098402,"output":"[\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cool"},{"event":"cmd_output","timestamp":1607098402,"output":"ing_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"stopping\", publisher_cb: #Fun"},{"event":"cmd_output","timestamp":1607098402,"output":"ction<0.71803493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id"},{"event":"cmd_output","timestamp":1607098402,"output":", :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Mode"},{"event":"cmd_output","timestamp":1607098402,"output":"l.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:22.865 [info] Periodic from module Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098402,"output":"SubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period:"},{"event":"cmd_output","timestamp":1607098402,"output":" 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurri"},{"event":"cmd_output","timestamp":1607098402,"output":"ng args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits"},{"event":"cmd_output","timestamp":1607098402,"output":".Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: ["},{"event":"cmd_output","timestamp":1607098402,"output":":id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSub"},{"event":"cmd_output","timestamp":1607098402,"output":"Inits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:22.865 [info] Periodic from modu"},{"event":"cmd_output","timestamp":1607098402,"output":"le Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler.Fetch"},{"event":"cmd_output","timestamp":1607098402,"output":"ingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-Fetch"},{"event":"cmd_output","timestamp":1607098402,"output":"ingState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"done\"], cooling_time"},{"event":"cmd_output","timestamp":1607098402,"output":"_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fetching\", publisher_cb"},{"event":"cmd_output","timestamp":1607098402,"output":": :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :rec"},{"event":"cmd_output","timestamp":1607098402,"output":"overy_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098402,"output":"\n16:13:22.866 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CompilationState with "},{"event":"cmd_output","timestamp":1607098402,"output":"name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 100 ms, metric_name: {\"Ppl.behold"},{"event":"cmd_output","timestamp":1607098402,"output":"er-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurring args: %{allowed_states: [\"r"},{"event":"cmd_output","timestamp":1607098402,"output":"egular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubIni"},{"event":"cmd_output","timestamp":1607098402,"output":"ts.Model.PplSubInits, observed_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, return"},{"event":"cmd_output","timestamp":1607098402,"output":"ing: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl."},{"event":"cmd_output","timestamp":1607098402,"output":"PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:22.867 [info] Periodic fro"},{"event":"cmd_output","timestamp":1607098402,"output":"m module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHand"},{"event":"cmd_output","timestamp":1607098402,"output":"ler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMH"},{"event":"cmd_output","timestamp":1607098402,"output":"andler-RegularInitState\"]}, recurring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, initial"},{"event":"cmd_output","timestamp":1607098402,"output":"_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_init\", publisher_cb: :skip, repo"},{"event":"cmd_output","timestamp":1607098402,"output":": Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, "},{"event":"cmd_output","timestamp":1607098402,"output":":ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:22.86"},{"event":"cmd_output","timestamp":1607098402,"output":"7 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.InitializingState with name Elixir.Pp"},{"event":"cmd_output","timestamp":1607098402,"output":"l.PplBlocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\""},{"event":"cmd_output","timestamp":1607098402,"output":"Ppl-PplBlocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"w"},{"event":"cmd_output","timestamp":1607098402,"output":"aiting\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state:"},{"event":"cmd_output","timestamp":1607098402,"output":" \"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :upda"},{"event":"cmd_output","timestamp":1607098402,"output":"ted_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlo"},{"event":"cmd_output","timestamp":1607098402,"output":"cks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:22.868 [info] Periodic from module Elixir.Ppl.PplBlo"},{"event":"cmd_output","timestamp":1607098402,"output":"cks.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler.WaitingState :: period: 1000 m"},{"event":"cmd_output","timestamp":1607098402,"output":"s, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurring args:"},{"event":"cmd_output","timestamp":1607098402,"output":" %{allowed_states: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks"},{"event":"cmd_output","timestamp":1607098402,"output":".Model.PplBlocks, observed_state: \"waiting\", publisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.ST"},{"event":"cmd_output","timestamp":1607098402,"output":"MHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at,"},{"event":"cmd_output","timestamp":1607098402,"output":" :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, ta"},{"event":"cmd_output","timestamp":1607098402,"output":"sk_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:22.868 [info] Periodic from module Elixir.Ppl.PplBlocks.STM"},{"event":"cmd_output","timestamp":1607098402,"output":"Handler.RunningState with name Elixir.Ppl.PplBlocks.STMHandler.RunningState :: period: 1000 ms, metr"},{"event":"cmd_output","timestamp":1607098402,"output":"ic_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, recurring args: %{allo"},{"event":"cmd_output","timestamp":1607098402,"output":"wed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Mode"},{"event":"cmd_output","timestamp":1607098402,"output":"l.PplBlocks, observed_state: \"running\", publisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHan"},{"event":"cmd_output","timestamp":1607098402,"output":"dler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :st"},{"event":"cmd_output","timestamp":1607098402,"output":"ate, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlo"},{"event":"cmd_output","timestamp":1607098402,"output":"cks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:22.869 [info] Periodic from module Elixir.Ppl.PplBlo"},{"event":"cmd_output","timestamp":1607098402,"output":"cks.STMHandler.StoppingState with name Elixir.Ppl.PplBlocks.STMHandler.StoppingState :: period: 1000"},{"event":"cmd_output","timestamp":1607098402,"output":" ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurring ar"},{"event":"cmd_output","timestamp":1607098402,"output":"gs: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model"},{"event":"cmd_output","timestamp":1607098402,"output":".PplBlocks, observed_state: \"stopping\", publisher_cb: #Function<0.104215991/1 in Ppl.PplBlocks.STMHa"},{"event":"cmd_output","timestamp":1607098402,"output":"ndler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :"},{"event":"cmd_output","timestamp":1607098402,"output":"state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplB"},{"event":"cmd_output","timestamp":1607098402,"output":"locks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:22.870 [info] Periodic from module Elixir.Block.Bl"},{"event":"cmd_output","timestamp":1607098402,"output":"ocks.STMHandler.InitializingState with name Elixir.Block.Blocks.STMHandler.InitializingState :: peri"},{"event":"cmd_output","timestamp":1607098402,"output":"od: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, re"},{"event":"cmd_output","timestamp":1607098402,"output":"curring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Block"},{"event":"cmd_output","timestamp":1607098402,"output":"s.Model.Blocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Block.EctoRepo, returning"},{"event":"cmd_output","timestamp":1607098402,"output":": [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.M"},{"event":"cmd_output","timestamp":1607098402,"output":"odel.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:22.872 [info] Periodic from module Elixir.Bl"},{"event":"cmd_output","timestamp":1607098402,"output":"ock.Blocks.STMHandler.RunningState with name Elixir.Block.Blocks.STMHandler.RunningState :: period: "},{"event":"cmd_output","timestamp":1607098402,"output":"100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-RunningState\"]}, recurring a"},{"event":"cmd_output","timestamp":1607098402,"output":"rgs: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.B"},{"event":"cmd_output","timestamp":1607098402,"output":"locks.Model.Blocks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning:"},{"event":"cmd_output","timestamp":1607098402,"output":" [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Mo"},{"event":"cmd_output","timestamp":1607098402,"output":"del.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:22.872 [info] Periodic from module Elixir.Blo"},{"event":"cmd_output","timestamp":1607098402,"output":"ck.Blocks.STMHandler.StoppingState with name Elixir.Block.Blocks.STMHandler.StoppingState :: period:"},{"event":"cmd_output","timestamp":1607098402,"output":" 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-StoppingState\"]}, recurring"},{"event":"cmd_output","timestamp":1607098402,"output":" args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Mod"},{"event":"cmd_output","timestamp":1607098402,"output":"el.Blocks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :"},{"event":"cmd_output","timestamp":1607098402,"output":"terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Bloc"},{"event":"cmd_output","timestamp":1607098402,"output":"ks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:22.872 [info] Periodic from module Elixir.Block.Tasks"},{"event":"cmd_output","timestamp":1607098402,"output":".STMHandler.PendingState with name Elixir.Block.Tasks.STMHandler.PendingState :: period: 100 ms, met"},{"event":"cmd_output","timestamp":1607098402,"output":"ric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingState\"]}, recurring args: %{allow"},{"event":"cmd_output","timestamp":1607098402,"output":"ed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Tasks.Model.Tasks, observe"},{"event":"cmd_output","timestamp":1607098402,"output":"d_state: \"pending\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, "},{"event":"cmd_output","timestamp":1607098402,"output":":updated_at, :state, :recovery_count, :block_id, :build_request_id], schema: Block.Tasks.Model.Tasks"},{"event":"cmd_output","timestamp":1607098402,"output":", task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:22.872 [info] Periodic from module Elixir.Block.Tasks.S"},{"event":"cmd_output","timestamp":1607098402,"output":"TMHandler.RunningState with name Elixir.Block.Tasks.STMHandler.RunningState :: period: 100 ms, metri"},{"event":"cmd_output","timestamp":1607098402,"output":"c_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningState\"]}, recurring args: %{allowed"},{"event":"cmd_output","timestamp":1607098402,"output":"_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tas"},{"event":"cmd_output","timestamp":1607098402,"output":"ks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminat"},{"event":"cmd_output","timestamp":1607098402,"output":"e_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_s"},{"event":"cmd_output","timestamp":1607098402,"output":"upervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:22.872 [info] Periodic from module Elixir.Block.Tasks.STMHandle"},{"event":"cmd_output","timestamp":1607098402,"output":"r.StoppingState with name Elixir.Block.Tasks.STMHandler.StoppingState :: period: 100 ms, metric_name"},{"event":"cmd_output","timestamp":1607098402,"output":": {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]}, recurring args: %{allowed_stat"},{"event":"cmd_output","timestamp":1607098402,"output":"es: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_sta"},{"event":"cmd_output","timestamp":1607098402,"output":"te: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :upd"},{"event":"cmd_output","timestamp":1607098402,"output":"ated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :ski"},{"event":"cmd_output","timestamp":1607098402,"output":"p}\n\u001b[0m\u001b[22m\n16:13:22.981 [info] ppl_id: 8909e87a-6cd4-492e-aff4-0785b5130bec, type: PplRequests,"},{"event":"cmd_output","timestamp":1607098402,"output":" event: persisted source_args for pipeline: 8909e87a-6cd4-492e-aff4-0785b5130bec, origin: Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098402,"output":".PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:13:22.983 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098402,"output":": 8909e87a-6cd4-492e-aff4-0785b5130bec, type: PplSubInits, state: fetching, event: exit_scheduling, "},{"event":"cmd_output","timestamp":1607098403,"output":"recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:23.006"},{"event":"cmd_output","timestamp":1607098403,"output":" [info] ppl_id: 8909e87a-6cd4-492e-aff4-0785b5130bec, type: PplSubInits, state: regular_init, event"},{"event":"cmd_output","timestamp":1607098403,"output":": exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098403,"output":"\u001b[22m\n16:13:23.034 [info] ppl_id: 8909e87a-6cd4-492e-aff4-0785b5130bec, type: PplRequests, event: "},{"event":"cmd_output","timestamp":1607098403,"output":"persisted definition for request with request_token: a1b519bc-364b-11eb-af9f-5254005464e2, origin: E"},{"event":"cmd_output","timestamp":1607098403,"output":"lixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:13:23.037 ["},{"event":"cmd_output","timestamp":1607098403,"output":"info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"que"},{"event":"cmd_output","timestamp":1607098403,"output":"ues\">, inserted_at: ~N[2020-12-04 16:13:23.036390], name: \"master-.semaphore/semaphore.yml\", organiz"},{"event":"cmd_output","timestamp":1607098403,"output":"ation_id: \"784dd077-5b2d-442f-8810-34775a6dae9c\", project_id: \"6a5fc803-ffe1-402a-806d-36540c393165\""},{"event":"cmd_output","timestamp":1607098403,"output":", queue_id: \"d6e077cb-defb-48f5-baf4-ea11e33b46aa\", scope: \"project\", updated_at: ~N[2020-12-04 16:1"},{"event":"cmd_output","timestamp":1607098403,"output":"3:23.036411], user_generated: false}}\n\u001b[0m\u001b[22m\n16:13:23.041 [info] event: created, origin: Elixi"},{"event":"cmd_output","timestamp":1607098403,"output":"r.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:23.041 [info] ppl"},{"event":"cmd_output","timestamp":1607098403,"output":"_id: 8909e87a-6cd4-492e-aff4-0785b5130bec, type: PplBlocks, block_index: 0, state: initializing, eve"},{"event":"cmd_output","timestamp":1607098403,"output":"nt: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1"},{"event":"cmd_output","timestamp":1607098403,"output":"(L105), \n\u001b[0m\u001b[22m\n16:13:23.042 [info] ppl_id: 8909e87a-6cd4-492e-aff4-0785b5130bec, type: PplSub"},{"event":"cmd_output","timestamp":1607098403,"output":"Inits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper"},{"event":"cmd_output","timestamp":1607098403,"output":".STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:23.048 [info] ppl_id: 8909e87a-6cd4-492e-aff4"},{"event":"cmd_output","timestamp":1607098403,"output":"-0785b5130bec, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098403,"output":".Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:23.049 [info] ppl_id: 8909e87a-6cd4-49"},{"event":"cmd_output","timestamp":1607098403,"output":"2e-aff4-0785b5130bec, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recov"},{"event":"cmd_output","timestamp":1607098403,"output":"ery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:23.064 [inf"},{"event":"cmd_output","timestamp":1607098403,"output":"o] ppl_id: 8909e87a-6cd4-492e-aff4-0785b5130bec, type: Ppls, state: queuing, event: exit_scheduling"},{"event":"cmd_output","timestamp":1607098403,"output":", recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:23.0"},{"event":"cmd_output","timestamp":1607098403,"output":"71 [info] ppl_id: 8909e87a-6cd4-492e-aff4-0785b5130bec, type: Ppls, state: running, event: exit_sch"},{"event":"cmd_output","timestamp":1607098403,"output":"eduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098403,"output":"13:23.075 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"8909e87a-6cd4-492"},{"event":"cmd_output","timestamp":1607098403,"output":"e-aff4-0785b5130bec\"\n\u001b[0m\u001b[22m\n16:13:23.085 [info] block_id: f0b5308d-35f3-4d2c-b2f3-c7106be65304"},{"event":"cmd_output","timestamp":1607098403,"output":", type: BlockRequests, event: persisted block run request from ppl 8909e87a-6cd4-492e-aff4-0785b5130"},{"event":"cmd_output","timestamp":1607098403,"output":"bec for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L3"},{"event":"cmd_output","timestamp":1607098403,"output":"5), \n\u001b[0m\u001b[22m\n16:13:23.087 [info] block_id: f0b5308d-35f3-4d2c-b2f3-c7106be65304, type: Blocks, "},{"event":"cmd_output","timestamp":1607098403,"output":"state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.Block"},{"event":"cmd_output","timestamp":1607098403,"output":"sQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:13:23.088 [info] Block 0 of pipeline with id: 8909e87a-6cd4"},{"event":"cmd_output","timestamp":1607098403,"output":"-492e-aff4-0785b5130bec scheduled in block service with id: : \"f0b5308d-35f3-4d2c-b2f3-c7106be65304\""},{"event":"cmd_output","timestamp":1607098403,"output":"\n\u001b[0m\u001b[22m\n16:13:23.090 [info] ppl_id: 8909e87a-6cd4-492e-aff4-0785b5130bec, type: PplBlocks, blo"},{"event":"cmd_output","timestamp":1607098403,"output":"ck_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Im"},{"event":"cmd_output","timestamp":1607098403,"output":"pl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:23.095 [info] block_id: f0b5308d-35f3-4d2c-b2f3-c710"},{"event":"cmd_output","timestamp":1607098403,"output":"6be65304, type: BlockRequests, event: persisted build and sub_ppl details for block_request: f0b5308"},{"event":"cmd_output","timestamp":1607098403,"output":"d-35f3-4d2c-b2f3-c7106be65304, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_"},{"event":"cmd_output","timestamp":1607098403,"output":"build/2(L41), \n\u001b[0m\u001b[22m\n16:13:23.097 [info] block_id: f0b5308d-35f3-4d2c-b2f3-c7106be65304, type"},{"event":"cmd_output","timestamp":1607098403,"output":": Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.I"},{"event":"cmd_output","timestamp":1607098403,"output":"nitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:13:23.099 [info] block_id: f0b5308d-35f3-4d2c-b2f"},{"event":"cmd_output","timestamp":1607098403,"output":"3-c7106be65304, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098403,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:23.128 [info] block_id: f0b5308d-35"},{"event":"cmd_output","timestamp":1607098403,"output":"f3-4d2c-b2f3-c7106be65304, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098403,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:23.197 [info] block_id: f"},{"event":"cmd_output","timestamp":1607098403,"output":"0b5308d-35f3-4d2c-b2f3-c7106be65304, type: Tasks, state: done, event: exit_scheduling, recovery_coun"},{"event":"cmd_output","timestamp":1607098403,"output":"t: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:23.206 [info] bloc"},{"event":"cmd_output","timestamp":1607098403,"output":"k_id: f0b5308d-35f3-4d2c-b2f3-c7106be65304, type: Blocks, state: done, event: exit_scheduling, recov"},{"event":"cmd_output","timestamp":1607098403,"output":"ery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:23.216 [inf"},{"event":"cmd_output","timestamp":1607098403,"output":"o] ppl_id: 8909e87a-6cd4-492e-aff4-0785b5130bec, block_id: f0b5308d-35f3-4d2c-b2f3-c7106be65304, ty"},{"event":"cmd_output","timestamp":1607098403,"output":"pe: PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: "},{"event":"cmd_output","timestamp":1607098403,"output":"0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:23.230 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098403,"output":" 8909e87a-6cd4-492e-aff4-0785b5130bec, type: Ppls, state: done, result: passed, event: exit_scheduli"},{"event":"cmd_output","timestamp":1607098403,"output":"ng, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test "},{"event":"cmd_output","timestamp":1607098403,"output":"Pipeline with parallelism in job definition passes (508.5ms)\u001b[0m\n * test Pipeline with both parall"},{"event":"cmd_output","timestamp":1607098403,"output":"elism and matrix in same job definition fails\u001b[22m\n16:13:23.363 [info] Request: 'run: %{\"branch_id"},{"event":"cmd_output","timestamp":1607098403,"output":"\" => \"17d30bb4-f6fd-4d86-bc4a-e6f8392ec57d\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469\""},{"event":"cmd_output","timestamp":1607098403,"output":", \"file_name\" => \"both-matrix-and-parallelism.fail.yml\", \"hook_id\" => \"a204d3c6-364b-11eb-a301-52540"},{"event":"cmd_output","timestamp":1607098403,"output":"05464e2\", \"label\" => \"master\", \"organization_id\" => \"16e6b5a0-b330-4388-896b-a72e263b3b1e\", \"owner\" "},{"event":"cmd_output","timestamp":1607098403,"output":"=> \"rt\", \"project_id\" => \"e02c3711-576a-4210-a14a-5abfc9a517a8\", \"repo_name\" => \"27_parallelism\", \"r"},{"event":"cmd_output","timestamp":1607098403,"output":"equest_token\" => \"a204c6c4-364b-11eb-ac1b-5254005464e2\", \"requester_id\" => \"4ad9084c-f4c3-4096-89d5-"},{"event":"cmd_output","timestamp":1607098403,"output":"e12b464de6a0\", \"service\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \""},{"event":"cmd_output","timestamp":1607098403,"output":"wf_id\" => \"48107224-852d-4999-9df2-a19b1cdc4a33\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:13:2"},{"event":"cmd_output","timestamp":1607098403,"output":"3.367 [info] ppl_id: 903d56f1-d8c7-4db5-8a21-550ae38f0a88, type: PplRequests, event: persisted sche"},{"event":"cmd_output","timestamp":1607098403,"output":"dule request with request_token: a204c6c4-364b-11eb-ac1b-5254005464e2, origin: Elixir.Ppl.PplRequest"},{"event":"cmd_output","timestamp":1607098403,"output":"s.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:13:23.370 [info] ppl_id: 903d56"},{"event":"cmd_output","timestamp":1607098403,"output":"f1-d8c7-4db5-8a21-550ae38f0a88, type: Ppls, state: initializing, event: initializing, recovery_count"},{"event":"cmd_output","timestamp":1607098403,"output":": 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:13:23.375 ["},{"event":"cmd_output","timestamp":1607098403,"output":"info] Project e02c3711-576a-4210-a14a-5abfc9a517a8 and branch masterlatest_wf details updated: \"wf_"},{"event":"cmd_output","timestamp":1607098403,"output":"id: 48107224-852d-4999-9df2-a19b1cdc4a33, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:13:23.377 [info] Persisted p"},{"event":"cmd_output","timestamp":1607098403,"output":"pl_sub_init for pipeline with ppl_id: 903d56f1-d8c7-4db5-8a21-550ae38f0a88: %Ppl.PplSubInits.Model.P"},{"event":"cmd_output","timestamp":1607098403,"output":"plSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, err"},{"event":"cmd_output","timestamp":1607098403,"output":"or_description: nil, id: 305, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04"},{"event":"cmd_output","timestamp":1607098403,"output":" 16:13:23.376102], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"903d56f1-d8c7-4db5-8a21-550ae38f0a88\", recovery_count: 0, result: nil, result_"},{"event":"cmd_output","timestamp":1607098403,"output":"reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2"},{"event":"cmd_output","timestamp":1607098403,"output":"020-12-04 16:13:23.376110]}\n\u001b[0m\u001b[22m\n16:13:23.382 [info] Periodic from module Elixir.Ppl.Ppls.ST"},{"event":"cmd_output","timestamp":1607098403,"output":"MHandler.InitializingState with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms,"},{"event":"cmd_output","timestamp":1607098403,"output":" metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %"},{"event":"cmd_output","timestamp":1607098403,"output":"{allowed_states: [\"initializing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.M"},{"event":"cmd_output","timestamp":1607098403,"output":"odel.Ppls, observed_state: \"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHand"},{"event":"cmd_output","timestamp":1607098403,"output":"ler.InitializingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at,"},{"event":"cmd_output","timestamp":1607098403,"output":" :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b"},{"event":"cmd_output","timestamp":1607098403,"output":"[0m\u001b[22m\n16:13:23.383 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingState with nam"},{"event":"cmd_output","timestamp":1607098403,"output":"e Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", ["},{"event":"cmd_output","timestamp":1607098403,"output":"\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"pending\", \"queuing\", \"runn"},{"event":"cmd_output","timestamp":1607098403,"output":"ing\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", p"},{"event":"cmd_output","timestamp":1607098403,"output":"ublisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, "},{"event":"cmd_output","timestamp":1607098403,"output":"returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema"},{"event":"cmd_output","timestamp":1607098403,"output":": Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:13:23.384 [info] Periodi"},{"event":"cmd_output","timestamp":1607098403,"output":"c from module Elixir.Ppl.Ppls.STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandler.QueuingSt"},{"event":"cmd_output","timestamp":1607098403,"output":"ate :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, "},{"event":"cmd_output","timestamp":1607098403,"output":"recurring args: %{allowed_states: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, initial_quer"},{"event":"cmd_output","timestamp":1607098403,"output":"y: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls"},{"event":"cmd_output","timestamp":1607098403,"output":".STMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_"},{"event":"cmd_output","timestamp":1607098403,"output":"at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}"},{"event":"cmd_output","timestamp":1607098403,"output":"\n\u001b[0m\u001b[22m\n16:13:23.385 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.RunningState with "},{"event":"cmd_output","timestamp":1607098403,"output":"name Elixir.Ppl.Ppls.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\""},{"event":"cmd_output","timestamp":1607098403,"output":", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \""},{"event":"cmd_output","timestamp":1607098403,"output":"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"running\", publish"},{"event":"cmd_output","timestamp":1607098403,"output":"er_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, retur"},{"event":"cmd_output","timestamp":1607098403,"output":"ning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl"},{"event":"cmd_output","timestamp":1607098403,"output":".Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:13:23.386 [info] Periodic fro"},{"event":"cmd_output","timestamp":1607098403,"output":"m module Elixir.Ppl.Ppls.STMHandler.StoppingState with name Elixir.Ppl.Ppls.STMHandler.StoppingState"},{"event":"cmd_output","timestamp":1607098403,"output":" :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, re"},{"event":"cmd_output","timestamp":1607098403,"output":"curring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls."},{"event":"cmd_output","timestamp":1607098403,"output":"Model.Ppls, observed_state: \"stopping\", publisher_cb: #Function<0.71803493/1 in Ppl.Ppls.STMHandler."},{"event":"cmd_output","timestamp":1607098403,"output":"StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state,"},{"event":"cmd_output","timestamp":1607098403,"output":" :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098403,"output":"\n16:13:23.387 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedState with name"},{"event":"cmd_output","timestamp":1607098403,"output":" Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_"},{"event":"cmd_output","timestamp":1607098403,"output":"up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args: %{allowed_states: [\"fetching\", \"d"},{"event":"cmd_output","timestamp":1607098403,"output":"one\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"creat"},{"event":"cmd_output","timestamp":1607098403,"output":"ed\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :sta"},{"event":"cmd_output","timestamp":1607098403,"output":"te, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: "},{"event":"cmd_output","timestamp":1607098403,"output":":skip}\n\u001b[0m\u001b[22m\n16:13:23.388 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.Fetch"},{"event":"cmd_output","timestamp":1607098403,"output":"ingState with name Elixir.Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 ms, metric_name: {"},{"event":"cmd_output","timestamp":1607098403,"output":"\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %{allowed_sta"},{"event":"cmd_output","timestamp":1607098403,"output":"tes: [\"regular_init\", \"compilation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.M"},{"event":"cmd_output","timestamp":1607098403,"output":"odel.PplSubInits, observed_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:"},{"event":"cmd_output","timestamp":1607098403,"output":"id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubI"},{"event":"cmd_output","timestamp":1607098403,"output":"nits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:23.388 [info] Periodic from modul"},{"event":"cmd_output","timestamp":1607098403,"output":"e Elixir.Ppl.PplSubInits.STMHandler.CompilationState with name Elixir.Ppl.PplSubInits.STMHandler.Com"},{"event":"cmd_output","timestamp":1607098403,"output":"pilationState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-"},{"event":"cmd_output","timestamp":1607098403,"output":"CompilationState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"stopping\", \""},{"event":"cmd_output","timestamp":1607098403,"output":"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"com"},{"event":"cmd_output","timestamp":1607098403,"output":"pilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at"},{"event":"cmd_output","timestamp":1607098403,"output":", :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_superv"},{"event":"cmd_output","timestamp":1607098403,"output":"isor: :skip}\n\u001b[0m\u001b[22m\n16:13:23.388 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler"},{"event":"cmd_output","timestamp":1607098403,"output":".RegularInitState with name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period: 100 ms, me"},{"event":"cmd_output","timestamp":1607098403,"output":"tric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurring args"},{"event":"cmd_output","timestamp":1607098403,"output":": %{allowed_states: [\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits,"},{"event":"cmd_output","timestamp":1607098403,"output":" observed_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminat"},{"event":"cmd_output","timestamp":1607098403,"output":"e_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.Pp"},{"event":"cmd_output","timestamp":1607098403,"output":"lSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:23.388 [info] Periodic from module Elixir.Ppl."},{"event":"cmd_output","timestamp":1607098403,"output":"PplBlocks.STMHandler.InitializingState with name Elixir.Ppl.PplBlocks.STMHandler.InitializingState :"},{"event":"cmd_output","timestamp":1607098403,"output":": period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-InitializingState"},{"event":"cmd_output","timestamp":1607098403,"output":"\"]}, recurring args: %{allowed_states: [\"initializing\", \"waiting\", \"done\"], cooling_time_sec: 0, ini"},{"event":"cmd_output","timestamp":1607098403,"output":"tial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"initializing\", publisher_cb: :skip, repo"},{"event":"cmd_output","timestamp":1607098403,"output":": Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, "},{"event":"cmd_output","timestamp":1607098403,"output":":ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098403,"output":"6:13:23.388 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.WaitingState with name Elix"},{"event":"cmd_output","timestamp":1607098403,"output":"ir.Ppl.PplBlocks.STMHandler.WaitingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", ["},{"event":"cmd_output","timestamp":1607098403,"output":"\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurring args: %{allowed_states: [\"waiting\", \"running\", "},{"event":"cmd_output","timestamp":1607098403,"output":"\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"waiting"},{"event":"cmd_output","timestamp":1607098403,"output":"\", publisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>, repo: Ppl.E"},{"event":"cmd_output","timestamp":1607098403,"output":"ctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id"},{"event":"cmd_output","timestamp":1607098403,"output":", :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:23"},{"event":"cmd_output","timestamp":1607098403,"output":".389 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.RunningState with name Elixir.Ppl."},{"event":"cmd_output","timestamp":1607098403,"output":"PplBlocks.STMHandler.RunningState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Pp"},{"event":"cmd_output","timestamp":1607098403,"output":"lBlocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\""},{"event":"cmd_output","timestamp":1607098403,"output":"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"running\", pu"},{"event":"cmd_output","timestamp":1607098403,"output":"blisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0>, repo: Ppl.EctoR"},{"event":"cmd_output","timestamp":1607098403,"output":"epo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :b"},{"event":"cmd_output","timestamp":1607098403,"output":"lock_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098403,"output":"6:13:23.389 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.StoppingState with name Eli"},{"event":"cmd_output","timestamp":1607098403,"output":"xir.Ppl.PplBlocks.STMHandler.StoppingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\","},{"event":"cmd_output","timestamp":1607098403,"output":" [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"]"},{"event":"cmd_output","timestamp":1607098403,"output":", cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"stopping\", pu"},{"event":"cmd_output","timestamp":1607098403,"output":"blisher_cb: #Function<0.104215991/1 in Ppl.PplBlocks.STMHandler.StoppingState.args/0>, repo: Ppl.Ect"},{"event":"cmd_output","timestamp":1607098403,"output":"oRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, "},{"event":"cmd_output","timestamp":1607098403,"output":":block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098403,"output":"\n16:13:23.389 [info] Periodic from module Elixir.Block.Blocks.STMHandler.InitializingState with nam"},{"event":"cmd_output","timestamp":1607098403,"output":"e Elixir.Block.Blocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wa"},{"event":"cmd_output","timestamp":1607098403,"output":"ke_up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"running\""},{"event":"cmd_output","timestamp":1607098403,"output":", \"done\"], cooling_time_sec: 0, initial_query: Block.Blocks.Model.Blocks, observed_state: \"initializ"},{"event":"cmd_output","timestamp":1607098403,"output":"ing\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :"},{"event":"cmd_output","timestamp":1607098403,"output":"state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m"},{"event":"cmd_output","timestamp":1607098403,"output":"\u001b[22m\n16:13:23.389 [info] Periodic from module Elixir.Block.Blocks.STMHandler.RunningState with na"},{"event":"cmd_output","timestamp":1607098403,"output":"me Elixir.Block.Blocks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_u"},{"event":"cmd_output","timestamp":1607098403,"output":"p\", [\"Block-Blocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stoppi"},{"event":"cmd_output","timestamp":1607098403,"output":"ng\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"runni"},{"event":"cmd_output","timestamp":1607098403,"output":"ng\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :s"},{"event":"cmd_output","timestamp":1607098403,"output":"tate, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098403,"output":"[22m\n16:13:23.389 [info] Periodic from module Elixir.Block.Blocks.STMHandler.StoppingState with na"},{"event":"cmd_output","timestamp":1607098403,"output":"me Elixir.Block.Blocks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_"},{"event":"cmd_output","timestamp":1607098403,"output":"up\", [\"Block-Blocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"don"},{"event":"cmd_output","timestamp":1607098403,"output":"e\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"stopping\", pub"},{"event":"cmd_output","timestamp":1607098403,"output":"lisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :r"},{"event":"cmd_output","timestamp":1607098403,"output":"ecovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098403,"output":":13:23.390 [info] Periodic from module Elixir.Block.Tasks.STMHandler.PendingState with name Elixir."},{"event":"cmd_output","timestamp":1607098403,"output":"Block.Tasks.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block"},{"event":"cmd_output","timestamp":1607098403,"output":"-Tasks-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_ti"},{"event":"cmd_output","timestamp":1607098403,"output":"me_sec: 0, initial_query: Block.Tasks.Model.Tasks, observed_state: \"pending\", publisher_cb: :skip, r"},{"event":"cmd_output","timestamp":1607098403,"output":"epo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :blo"},{"event":"cmd_output","timestamp":1607098403,"output":"ck_id, :build_request_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098403,"output":"3:23.390 [info] Periodic from module Elixir.Block.Tasks.STMHandler.RunningState with name Elixir.Bl"},{"event":"cmd_output","timestamp":1607098403,"output":"ock.Tasks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-T"},{"event":"cmd_output","timestamp":1607098403,"output":"asks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], "},{"event":"cmd_output","timestamp":1607098403,"output":"cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"running\", publisher_c"},{"event":"cmd_output","timestamp":1607098403,"output":"b: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_"},{"event":"cmd_output","timestamp":1607098403,"output":"count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:23.390"},{"event":"cmd_output","timestamp":1607098403,"output":" [info] Periodic from module Elixir.Block.Tasks.STMHandler.StoppingState with name Elixir.Block.Tas"},{"event":"cmd_output","timestamp":1607098403,"output":"ks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-S"},{"event":"cmd_output","timestamp":1607098403,"output":"TMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec"},{"event":"cmd_output","timestamp":1607098403,"output":": -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"stopping\", publisher_cb: :skip, repo:"},{"event":"cmd_output","timestamp":1607098403,"output":" Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_i"},{"event":"cmd_output","timestamp":1607098403,"output":"d], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:23.506 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098403,"output":": 903d56f1-d8c7-4db5-8a21-550ae38f0a88, type: PplRequests, event: persisted source_args for pipeline"},{"event":"cmd_output","timestamp":1607098403,"output":": 903d56f1-d8c7-4db5-8a21-550ae38f0a88, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.inse"},{"event":"cmd_output","timestamp":1607098403,"output":"rt_source/2(L89), \n\u001b[0m\u001b[22m\n16:13:23.509 [info] ppl_id: 903d56f1-d8c7-4db5-8a21-550ae38f0a88, ty"},{"event":"cmd_output","timestamp":1607098403,"output":"pe: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.S"},{"event":"cmd_output","timestamp":1607098403,"output":"TM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:23.532 [info] ppl_id: 903d56f1-d8c7-4db5-8a21-5"},{"event":"cmd_output","timestamp":1607098403,"output":"50ae38f0a88, type: PplSubInits, state: done, result: failed, event: exit_scheduling, recovery_count:"},{"event":"cmd_output","timestamp":1607098403,"output":" 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:23.540 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098403,"output":": 903d56f1-d8c7-4db5-8a21-550ae38f0a88, type: Ppls, state: done, result: failed, event: exit_schedul"},{"event":"cmd_output","timestamp":1607098403,"output":"ing, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test"},{"event":"cmd_output","timestamp":1607098403,"output":" Pipeline with both parallelism and matrix in same job definition fails (307.5ms)\u001b[0m\n\nPpl.E2E.Par"},{"event":"cmd_output","timestamp":1607098403,"output":"allelRuns.Test\n * test when parallel queue processing is set up pipelines from same queue are run "},{"event":"cmd_output","timestamp":1607098403,"output":"in parallel\u001b[22m\n16:13:23.667 [info] Request: 'run: %{\"branch_id\" => \"fef80cf7-65e0-45b5-8845-f356"},{"event":"cmd_output","timestamp":1607098403,"output":"c8c3edc5\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"semaphore.yml\", "},{"event":"cmd_output","timestamp":1607098403,"output":"\"hook_id\" => \"a232c470-364b-11eb-8759-5254005464e2\", \"label\" => \"master\", \"organization_id\" => \"456\""},{"event":"cmd_output","timestamp":1607098403,"output":", \"owner\" => \"rt\", \"project_id\" => \"123\", \"repo_name\" => \"29_parallel_runs\", \"request_token\" => \"a23"},{"event":"cmd_output","timestamp":1607098403,"output":"2ba7a-364b-11eb-8fd8-5254005464e2\", \"requester_id\" => \"5aa944af-9b53-44f0-a9ee-99dc5b4c7b28\", \"servi"},{"event":"cmd_output","timestamp":1607098403,"output":"ce\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"1e549662-7"},{"event":"cmd_output","timestamp":1607098403,"output":"b00-4c6f-b984-6cd27b92020b\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:13:23.670 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098403,"output":" 7046a4aa-cbc3-4dd8-bb6e-6888e7185f4e, type: PplRequests, event: persisted schedule request with req"},{"event":"cmd_output","timestamp":1607098403,"output":"uest_token: a232ba7a-364b-11eb-8fd8-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQu"},{"event":"cmd_output","timestamp":1607098403,"output":"eries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:13:23.673 [info] ppl_id: 7046a4aa-cbc3-4dd8-bb6e-688"},{"event":"cmd_output","timestamp":1607098403,"output":"8e7185f4e, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.P"},{"event":"cmd_output","timestamp":1607098403,"output":"pl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:13:23.679 [info] Project 123 an"},{"event":"cmd_output","timestamp":1607098403,"output":"d branch masterlatest_wf details updated: \"wf_id: 1e549662-7b00-4c6f-b984-6cd27b92020b, wf_number: 1"},{"event":"cmd_output","timestamp":1607098403,"output":"\"\n\u001b[0m\u001b[22m\n16:13:23.681 [info] Persisted ppl_sub_init for pipeline with ppl_id: 7046a4aa-cbc3-4d"},{"event":"cmd_output","timestamp":1607098403,"output":"d8-bb6e-6888e7185f4e: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"p"},{"event":"cmd_output","timestamp":1607098403,"output":"ipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 306, in_scheduling: false, in"},{"event":"cmd_output","timestamp":1607098403,"output":"it_type: \"regular\", inserted_at: ~N[2020-12-04 16:13:23.680319], pipeline_requests: #Ecto.Associatio"},{"event":"cmd_output","timestamp":1607098403,"output":"n.NotLoaded, ppl_id: \"7046a4aa-cbc3-4dd8-bb6e-6888e718"},{"event":"cmd_output","timestamp":1607098403,"output":"5f4e\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil,"},{"event":"cmd_output","timestamp":1607098403,"output":" terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:13:23.680330]}\n\u001b[0m\u001b[22m\n16:13:23.689 ["},{"event":"cmd_output","timestamp":1607098403,"output":"info] Request: 'run: %{\"branch_id\" => \"79d62a3d-fac2-483b-8c65-f0eaad1f1766\", \"branch_name\" => \"dev"},{"event":"cmd_output","timestamp":1607098403,"output":"\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"semaphore.yml\", \"hook_id\" => \"a236c250-364b-11eb-8c"},{"event":"cmd_output","timestamp":1607098403,"output":"df-5254005464e2\", \"label\" => \"dev\", \"organization_id\" => \"456\", \"owner\" => \"rt\", \"project_id\" => \"12"},{"event":"cmd_output","timestamp":1607098403,"output":"3\", \"repo_name\" => \"29_parallel_runs\", \"request_token\" => \"a236b2b0-364b-11eb-a50d-5254005464e2\", \"r"},{"event":"cmd_output","timestamp":1607098403,"output":"equester_id\" => \"ee067d71-4fad-4b11-acf3-1d7ee460a8fc\", \"service\" => \"local\", \"suppressed_attributes"},{"event":"cmd_output","timestamp":1607098403,"output":"\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"67575f67-b10e-4dda-812a-ec246449d4ef\", \"working_"},{"event":"cmd_output","timestamp":1607098403,"output":"dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:13:23.694 [info] ppl_id: bc524481-017f-412d-a0f4-c83ef191cbab,"},{"event":"cmd_output","timestamp":1607098403,"output":" type: PplRequests, event: persisted schedule request with request_token: a236b2b0-364b-11eb-a50d-52"},{"event":"cmd_output","timestamp":1607098403,"output":"54005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098403,"output":"[22m\n16:13:23.697 [info] ppl_id: bc524481-017f-412d-a0f4-c83ef191cbab, type: Ppls, state: initiali"},{"event":"cmd_output","timestamp":1607098403,"output":"zing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_resp"},{"event":"cmd_output","timestamp":1607098403,"output":"onse/2(L124), \n\u001b[0m\u001b[22m\n16:13:23.702 [info] Project 123 and branch devlatest_wf details updated:"},{"event":"cmd_output","timestamp":1607098403,"output":" \"wf_id: 67575f67-b10e-4dda-812a-ec246449d4ef, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:13:23.704 [info] Persis"},{"event":"cmd_output","timestamp":1607098403,"output":"ted ppl_sub_init for pipeline with ppl_id: bc524481-017f-412d-a0f4-c83ef191cbab: %Ppl.PplSubInits.Mo"},{"event":"cmd_output","timestamp":1607098403,"output":"del.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil"},{"event":"cmd_output","timestamp":1607098403,"output":", error_description: nil, id: 307, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-"},{"event":"cmd_output","timestamp":1607098403,"output":"12-04 16:13:23.702394], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"bc524481-017f-412d-a0f4-c83ef191cbab\", recovery_count: 0, result: nil, re"},{"event":"cmd_output","timestamp":1607098403,"output":"sult_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at:"},{"event":"cmd_output","timestamp":1607098403,"output":" ~N[2020-12-04 16:13:23.702402]}\n\u001b[0m\u001b[22m\n16:13:23.717 [info] Request: 'run: %{\"branch_id\" => \"6"},{"event":"cmd_output","timestamp":1607098403,"output":"371283d-e409-4d3c-9c39-336e70d46c5f\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469\", \"file"},{"event":"cmd_output","timestamp":1607098403,"output":"_name\" => \"semaphore.yml\", \"hook_id\" => \"a23b07ca-364b-11eb-b06c-5254005464e2\", \"label\" => \"master\","},{"event":"cmd_output","timestamp":1607098403,"output":" \"organization_id\" => \"456\", \"owner\" => \"rt\", \"project_id\" => \"123\", \"repo_name\" => \"29_parallel_run"},{"event":"cmd_output","timestamp":1607098403,"output":"s\", \"request_token\" => \"a23aff46-364b-11eb-87d1-5254005464e2\", \"requester_id\" => \"4a81dad1-d01a-4c66"},{"event":"cmd_output","timestamp":1607098403,"output":"-8728-c4f3541a812a\", \"service\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secre"},{"event":"cmd_output","timestamp":1607098403,"output":"t\"], \"wf_id\" => \"483b3f9e-65dc-406b-a992-08dbd2b7f730\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098403,"output":"6:13:23.720 [info] ppl_id: a871ec7a-29e9-4260-b31c-5205f6417a27, type: PplRequests, event: persiste"},{"event":"cmd_output","timestamp":1607098403,"output":"d schedule request with request_token: a23aff46-364b-11eb-87d1-5254005464e2, origin: Elixir.Ppl.PplR"},{"event":"cmd_output","timestamp":1607098403,"output":"equests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:13:23.723 [info] ppl_id: "},{"event":"cmd_output","timestamp":1607098403,"output":"a871ec7a-29e9-4260-b31c-5205f6417a27, type: Ppls, state: initializing, event: initializing, recovery"},{"event":"cmd_output","timestamp":1607098403,"output":"_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:13:23"},{"event":"cmd_output","timestamp":1607098403,"output":".726 [info] Project 123 and branch masterlatest_wf details updated: \"wf_id: 483b3f9e-65dc-406b-a992"},{"event":"cmd_output","timestamp":1607098403,"output":"-08dbd2b7f730, wf_number: 2\"\n\u001b[0m\u001b[22m\n16:13:23.728 [info] Persisted ppl_sub_init for pipeline wi"},{"event":"cmd_output","timestamp":1607098403,"output":"th ppl_id: a871ec7a-29e9-4260-b31c-5205f6417a27: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto."},{"event":"cmd_output","timestamp":1607098403,"output":"Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 30"},{"event":"cmd_output","timestamp":1607098403,"output":"8, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:13:23.726402], pipeline"},{"event":"cmd_output","timestamp":1607098403,"output":"_requests: #Ecto.Association.NotLoaded, ppl_id: \"a871e"},{"event":"cmd_output","timestamp":1607098403,"output":"c7a-29e9-4260-b31c-5205f6417a27\", recovery_count: 0, result: nil, result_reason: nil, state: \"create"},{"event":"cmd_output","timestamp":1607098403,"output":"d\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:13:23.726409]}"},{"event":"cmd_output","timestamp":1607098403,"output":"\n\u001b[0m\u001b[22m\n16:13:23.734 [info] Request: 'run: %{\"branch_id\" => \"bbf49901-06ae-4541-8d27-411576af0"},{"event":"cmd_output","timestamp":1607098403,"output":"7ec\", \"branch_name\" => \"dev\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"semaphore.yml\", \"hook_id"},{"event":"cmd_output","timestamp":1607098403,"output":"\" => \"a23da778-364b-11eb-bdf5-5254005464e2\", \"label\" => \"dev\", \"organization_id\" => \"456\", \"owner\" ="},{"event":"cmd_output","timestamp":1607098403,"output":"> \"rt\", \"project_id\" => \"123\", \"repo_name\" => \"29_parallel_runs\", \"request_token\" => \"a23d9ee0-364b-"},{"event":"cmd_output","timestamp":1607098403,"output":"11eb-9eae-5254005464e2\", \"requester_id\" => \"7378b7b6-4a12-419a-919a-2e265b36116c\", \"service\" => \"loc"},{"event":"cmd_output","timestamp":1607098403,"output":"al\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"90e0005d-6495-4f30-87"},{"event":"cmd_output","timestamp":1607098403,"output":"5d-c5489e9e1f6f\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:13:23.737 [info] ppl_id: 4cdf71b3-f"},{"event":"cmd_output","timestamp":1607098403,"output":"111-4cd6-8997-75cd14904c7a, type: PplRequests, event: persisted schedule request with request_token:"},{"event":"cmd_output","timestamp":1607098403,"output":" a23d9ee0-364b-11eb-9eae-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.proce"},{"event":"cmd_output","timestamp":1607098403,"output":"ss_response/2(L55), \n\u001b[0m\u001b[22m\n16:13:23.739 [info] ppl_id: 4cdf71b3-f111-4cd6-8997-75cd14904c7a, "},{"event":"cmd_output","timestamp":1607098403,"output":"type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Mod"},{"event":"cmd_output","timestamp":1607098403,"output":"el.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:13:23.742 [info] Project 123 and branch de"},{"event":"cmd_output","timestamp":1607098403,"output":"vlatest_wf details updated: \"wf_id: 90e0005d-6495-4f30-875d-c5489e9e1f6f, wf_number: 2\"\n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098403,"output":"16:13:23.744 [info] Persisted ppl_sub_init for pipeline with ppl_id: 4cdf71b3-f111-4cd6-8997-75cd14"},{"event":"cmd_output","timestamp":1607098403,"output":"904c7a: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_in"},{"event":"cmd_output","timestamp":1607098403,"output":"its\">, compile_task_id: nil, error_description: nil, id: 309, in_scheduling: false, init_type: \"regu"},{"event":"cmd_output","timestamp":1607098403,"output":"lar\", inserted_at: ~N[2020-12-04 16:13:23.742219], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"4cdf71b3-f111-4cd6-8997-75cd14904c7a\", recover"},{"event":"cmd_output","timestamp":1607098403,"output":"y_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_req"},{"event":"cmd_output","timestamp":1607098403,"output":"uest_desc: nil, updated_at: ~N[2020-12-04 16:13:23.742226]}\n\u001b[0m\u001b[22m\n16:13:23.748 [info] Periodi"},{"event":"cmd_output","timestamp":1607098403,"output":"c from module Elixir.Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.STMHandler.Init"},{"event":"cmd_output","timestamp":1607098403,"output":"ializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Initial"},{"event":"cmd_output","timestamp":1607098403,"output":"izingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], cooling_time_s"},{"event":"cmd_output","timestamp":1607098403,"output":"ec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher_cb: #Function<0"},{"event":"cmd_output","timestamp":1607098403,"output":".125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, "},{"event":"cmd_output","timestamp":1607098403,"output":":terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model."},{"event":"cmd_output","timestamp":1607098403,"output":"Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:23.748 [info] Periodic from module Elixir.Ppl.Ppls."},{"event":"cmd_output","timestamp":1607098403,"output":"STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 100 ms, metric_"},{"event":"cmd_output","timestamp":1607098403,"output":"name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args: %{allowed_stat"},{"event":"cmd_output","timestamp":1607098403,"output":"es: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Pp"},{"event":"cmd_output","timestamp":1607098403,"output":"ls, observed_state: \"pending\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler.PendingSta"},{"event":"cmd_output","timestamp":1607098403,"output":"te.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :"},{"event":"cmd_output","timestamp":1607098403,"output":"recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098403,"output":"2m\n16:13:23.749 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.QueuingState with name Elix"},{"event":"cmd_output","timestamp":1607098403,"output":"ir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-P"},{"event":"cmd_output","timestamp":1607098403,"output":"pls-STMHandler-QueuingState\"]}, recurring args: %{allowed_states: [\"queuing\", \"running\", \"done\"], co"},{"event":"cmd_output","timestamp":1607098403,"output":"oling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", publisher_cb: #Fu"},{"event":"cmd_output","timestamp":1607098403,"output":"nction<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, returning: [:i"},{"event":"cmd_output","timestamp":1607098403,"output":"d, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Mod"},{"event":"cmd_output","timestamp":1607098403,"output":"el.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:23.749 [info] Periodic from module Elixir.Ppl.Pp"},{"event":"cmd_output","timestamp":1607098403,"output":"lSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period"},{"event":"cmd_output","timestamp":1607098403,"output":": 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurr"},{"event":"cmd_output","timestamp":1607098403,"output":"ing args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInit"},{"event":"cmd_output","timestamp":1607098403,"output":"s.Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: "},{"event":"cmd_output","timestamp":1607098403,"output":"[:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSu"},{"event":"cmd_output","timestamp":1607098403,"output":"bInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:23.749 [info] Periodic from mod"},{"event":"cmd_output","timestamp":1607098403,"output":"ule Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler.Fetc"},{"event":"cmd_output","timestamp":1607098403,"output":"hingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-Fetc"},{"event":"cmd_output","timestamp":1607098403,"output":"hingState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"done\"], cooling_tim"},{"event":"cmd_output","timestamp":1607098403,"output":"e_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fetching\", publisher_c"},{"event":"cmd_output","timestamp":1607098403,"output":"b: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :re"},{"event":"cmd_output","timestamp":1607098403,"output":"covery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098403,"output":"m\n16:13:23.749 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CompilationState with"},{"event":"cmd_output","timestamp":1607098403,"output":" name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 100 ms, metric_name: {\"Ppl.behol"},{"event":"cmd_output","timestamp":1607098403,"output":"der-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurring args: %{allowed_states: [\""},{"event":"cmd_output","timestamp":1607098403,"output":"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubIn"},{"event":"cmd_output","timestamp":1607098403,"output":"its.Model.PplSubInits, observed_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, retur"},{"event":"cmd_output","timestamp":1607098403,"output":"ning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl"},{"event":"cmd_output","timestamp":1607098403,"output":".PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:23.749 [info] Periodic fr"},{"event":"cmd_output","timestamp":1607098403,"output":"om module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHan"},{"event":"cmd_output","timestamp":1607098403,"output":"dler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STM"},{"event":"cmd_output","timestamp":1607098403,"output":"Handler-RegularInitState\"]}, recurring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, initia"},{"event":"cmd_output","timestamp":1607098403,"output":"l_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_init\", publisher_cb: :skip, rep"},{"event":"cmd_output","timestamp":1607098403,"output":"o: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count,"},{"event":"cmd_output","timestamp":1607098403,"output":" :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:23.7"},{"event":"cmd_output","timestamp":1607098403,"output":"49 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.InitializingState with name Elixir.P"},{"event":"cmd_output","timestamp":1607098403,"output":"pl.PplBlocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", ["},{"event":"cmd_output","timestamp":1607098403,"output":"\"Ppl-PplBlocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \""},{"event":"cmd_output","timestamp":1607098403,"output":"waiting\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state"},{"event":"cmd_output","timestamp":1607098403,"output":": \"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :upd"},{"event":"cmd_output","timestamp":1607098403,"output":"ated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBl"},{"event":"cmd_output","timestamp":1607098403,"output":"ocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:23.750 [info] Periodic from module Elixir.Ppl.PplBl"},{"event":"cmd_output","timestamp":1607098403,"output":"ocks.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler.WaitingState :: period: 1000 "},{"event":"cmd_output","timestamp":1607098403,"output":"ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurring args"},{"event":"cmd_output","timestamp":1607098403,"output":": %{allowed_states: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlock"},{"event":"cmd_output","timestamp":1607098403,"output":"s.Model.PplBlocks, observed_state: \"waiting\", publisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.S"},{"event":"cmd_output","timestamp":1607098403,"output":"TMHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at"},{"event":"cmd_output","timestamp":1607098403,"output":", :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, t"},{"event":"cmd_output","timestamp":1607098403,"output":"ask_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:23.750 [info] Periodic from module Elixir.Ppl.PplBlocks.ST"},{"event":"cmd_output","timestamp":1607098403,"output":"MHandler.RunningState with name Elixir.Ppl.PplBlocks.STMHandler.RunningState :: period: 1000 ms, met"},{"event":"cmd_output","timestamp":1607098403,"output":"ric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, recurring args: %{all"},{"event":"cmd_output","timestamp":1607098403,"output":"owed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Mod"},{"event":"cmd_output","timestamp":1607098403,"output":"el.PplBlocks, observed_state: \"running\", publisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHa"},{"event":"cmd_output","timestamp":1607098403,"output":"ndler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :s"},{"event":"cmd_output","timestamp":1607098403,"output":"tate, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBl"},{"event":"cmd_output","timestamp":1607098403,"output":"ocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:23.750 [info] Periodic from module Elixir.Ppl.PplBl"},{"event":"cmd_output","timestamp":1607098403,"output":"ocks.STMHandler.StoppingState with name Elixir.Ppl.PplBlocks.STMHandler.StoppingState :: period: 100"},{"event":"cmd_output","timestamp":1607098403,"output":"0 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurring a"},{"event":"cmd_output","timestamp":1607098403,"output":"rgs: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Mode"},{"event":"cmd_output","timestamp":1607098403,"output":"l.PplBlocks, observed_state: \"stopping\", publisher_cb: #Function<0.104215991/1 in Ppl.PplBlocks.STMH"},{"event":"cmd_output","timestamp":1607098403,"output":"andler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, "},{"event":"cmd_output","timestamp":1607098403,"output":":state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.Ppl"},{"event":"cmd_output","timestamp":1607098403,"output":"Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:23.750 [info] Periodic from module Elixir.Block.B"},{"event":"cmd_output","timestamp":1607098403,"output":"locks.STMHandler.InitializingState with name Elixir.Block.Blocks.STMHandler.InitializingState :: per"},{"event":"cmd_output","timestamp":1607098403,"output":"iod: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, r"},{"event":"cmd_output","timestamp":1607098403,"output":"ecurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Bloc"},{"event":"cmd_output","timestamp":1607098403,"output":"ks.Model.Blocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Block.EctoRepo, returnin"},{"event":"cmd_output","timestamp":1607098403,"output":"g: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks."},{"event":"cmd_output","timestamp":1607098403,"output":"Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:23.754 [info] Periodic from module Elixir.B"},{"event":"cmd_output","timestamp":1607098403,"output":"lock.Blocks.STMHandler.RunningState with name Elixir.Block.Blocks.STMHandler.RunningState :: period:"},{"event":"cmd_output","timestamp":1607098403,"output":" 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-RunningState\"]}, recurring "},{"event":"cmd_output","timestamp":1607098403,"output":"args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block."},{"event":"cmd_output","timestamp":1607098403,"output":"Blocks.Model.Blocks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning"},{"event":"cmd_output","timestamp":1607098403,"output":": [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.M"},{"event":"cmd_output","timestamp":1607098403,"output":"odel.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:23.755 [info] Periodic from module Elixir.Bl"},{"event":"cmd_output","timestamp":1607098403,"output":"ock.Blocks.STMHandler.StoppingState with name Elixir.Block.Blocks.STMHandler.StoppingState :: period"},{"event":"cmd_output","timestamp":1607098403,"output":": 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-StoppingState\"]}, recurrin"},{"event":"cmd_output","timestamp":1607098403,"output":"g args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Mo"},{"event":"cmd_output","timestamp":1607098403,"output":"del.Blocks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, "},{"event":"cmd_output","timestamp":1607098403,"output":":terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blo"},{"event":"cmd_output","timestamp":1607098403,"output":"cks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:23.756 [info] Periodic from module Elixir.Block.Task"},{"event":"cmd_output","timestamp":1607098403,"output":"s.STMHandler.PendingState with name Elixir.Block.Tasks.STMHandler.PendingState :: period: 100 ms, me"},{"event":"cmd_output","timestamp":1607098403,"output":"tric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingState\"]}, recurring args: %{allo"},{"event":"cmd_output","timestamp":1607098403,"output":"wed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Tasks.Model.Tasks, observ"},{"event":"cmd_output","timestamp":1607098403,"output":"ed_state: \"pending\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request,"},{"event":"cmd_output","timestamp":1607098403,"output":" :updated_at, :state, :recovery_count, :block_id, :build_request_id], schema: Block.Tasks.Model.Task"},{"event":"cmd_output","timestamp":1607098403,"output":"s, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:23.756 [info] Periodic from module Elixir.Block.Tasks."},{"event":"cmd_output","timestamp":1607098403,"output":"STMHandler.RunningState with name Elixir.Block.Tasks.STMHandler.RunningState :: period: 100 ms, metr"},{"event":"cmd_output","timestamp":1607098403,"output":"ic_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningState\"]}, recurring args: %{allowe"},{"event":"cmd_output","timestamp":1607098403,"output":"d_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Ta"},{"event":"cmd_output","timestamp":1607098403,"output":"sks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :termina"},{"event":"cmd_output","timestamp":1607098403,"output":"te_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_"},{"event":"cmd_output","timestamp":1607098403,"output":"supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:23.757 [info] Periodic from module Elixir.Block.Tasks.STMHandl"},{"event":"cmd_output","timestamp":1607098403,"output":"er.StoppingState with name Elixir.Block.Tasks.STMHandler.StoppingState :: period: 100 ms, metric_nam"},{"event":"cmd_output","timestamp":1607098403,"output":"e: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]}, recurring args: %{allowed_sta"},{"event":"cmd_output","timestamp":1607098403,"output":"tes: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_st"},{"event":"cmd_output","timestamp":1607098403,"output":"ate: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :up"},{"event":"cmd_output","timestamp":1607098403,"output":"dated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :sk"},{"event":"cmd_output","timestamp":1607098403,"output":"ip}\n\u001b[0m\u001b[22m\n16:13:23.867 [info] ppl_id: 7046a4aa-cbc3-4dd8-bb6e-6888e7185f4e, type: PplRequests"},{"event":"cmd_output","timestamp":1607098403,"output":", event: persisted source_args for pipeline: 7046a4aa-cbc3-4dd8-bb6e-6888e7185f4e, origin: Elixir.Pp"},{"event":"cmd_output","timestamp":1607098403,"output":"l.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:13:23.870 [info] ppl_i"},{"event":"cmd_output","timestamp":1607098403,"output":"d: 7046a4aa-cbc3-4dd8-bb6e-6888e7185f4e, type: PplSubInits, state: fetching, event: exit_scheduling,"},{"event":"cmd_output","timestamp":1607098403,"output":" recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:23.88"},{"event":"cmd_output","timestamp":1607098403,"output":"6 [info] ppl_id: 7046a4aa-cbc3-4dd8-bb6e-6888e7185f4e, type: PplSubInits, state: regular_init, even"},{"event":"cmd_output","timestamp":1607098403,"output":"t: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098403,"output":"m\u001b[22m\n16:13:23.905 [info] ppl_id: 7046a4aa-cbc3-4dd8-bb6e-6888e7185f4e, type: PplRequests, event:"},{"event":"cmd_output","timestamp":1607098403,"output":" persisted definition for request with request_token: a232ba7a-364b-11eb-8fd8-5254005464e2, origin: "},{"event":"cmd_output","timestamp":1607098403,"output":"Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:13:23.916 "},{"event":"cmd_output","timestamp":1607098403,"output":"[info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"qu"},{"event":"cmd_output","timestamp":1607098403,"output":"eues\">, inserted_at: ~N[2020-12-04 16:13:23.907173], name: \"production\", organization_id: \"456\", pro"},{"event":"cmd_output","timestamp":1607098403,"output":"ject_id: \"123\", queue_id: \"9b013794-3c20-44e6-95d9-309822cbe6d7\", scope: \"project\", updated_at: ~N[2"},{"event":"cmd_output","timestamp":1607098403,"output":"020-12-04 16:13:23.907182], user_generated: true}}\n\u001b[0m\u001b[22m\n16:13:23.920 [info] event: created, "},{"event":"cmd_output","timestamp":1607098403,"output":"origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:23.92"},{"event":"cmd_output","timestamp":1607098403,"output":"0 [info] ppl_id: 7046a4aa-cbc3-4dd8-bb6e-6888e7185f4e, type: PplBlocks, block_index: 0, state: init"},{"event":"cmd_output","timestamp":1607098403,"output":"ializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitSt"},{"event":"cmd_output","timestamp":1607098403,"output":"ate.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:23.922 [info] ppl_id: 7046a4aa-cbc3-4dd8-bb6e-6888e7185f4e,"},{"event":"cmd_output","timestamp":1607098403,"output":" type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098403,"output":"Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:23.931 [info] ppl_id: 7046a4aa-c"},{"event":"cmd_output","timestamp":1607098403,"output":"bc3-4dd8-bb6e-6888e7185f4e, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098403,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:23.932 [info] ppl_id: 704"},{"event":"cmd_output","timestamp":1607098403,"output":"6a4aa-cbc3-4dd8-bb6e-6888e7185f4e, type: PplBlocks, block_index: 0, state: waiting, event: exit_sche"},{"event":"cmd_output","timestamp":1607098403,"output":"duling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098403,"output":"3:23.943 [info] ppl_id: 7046a4aa-cbc3-4dd8-bb6e-6888e7185f4e, type: Ppls, state: queuing, event: ex"},{"event":"cmd_output","timestamp":1607098403,"output":"it_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098403,"output":"m\n16:13:23.956 [info] ppl_id: 7046a4aa-cbc3-4dd8-bb6e-6888e7185f4e, type: Ppls, state: running, ev"},{"event":"cmd_output","timestamp":1607098403,"output":"ent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b"},{"event":"cmd_output","timestamp":1607098403,"output":"[0m\u001b[22m\n16:13:23.967 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"7046"},{"event":"cmd_output","timestamp":1607098403,"output":"a4aa-cbc3-4dd8-bb6e-6888e7185f4e\"\n\u001b[0m\u001b[22m\n16:13:23.978 [info] block_id: 0e6d8258-d86c-4fb0-8be9"},{"event":"cmd_output","timestamp":1607098403,"output":"-7471d3e60d9b, type: BlockRequests, event: persisted block run request from ppl 7046a4aa-cbc3-4dd8-b"},{"event":"cmd_output","timestamp":1607098403,"output":"b6e-6888e7185f4e for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_"},{"event":"cmd_output","timestamp":1607098403,"output":"response/4(L35), \n\u001b[0m\u001b[22m\n16:13:23.979 [info] ppl_id: bc524481-017f-412d-a0f4-c83ef191cbab, typ"},{"event":"cmd_output","timestamp":1607098403,"output":"e: PplRequests, event: persisted source_args for pipeline: bc524481-017f-412d-a0f4-c83ef191cbab, ori"},{"event":"cmd_output","timestamp":1607098403,"output":"gin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:13:23.980"},{"event":"cmd_output","timestamp":1607098403,"output":" [info] block_id: 0e6d8258-d86c-4fb0-8be9-7471d3e60d9b, type: Blocks, state: initializing, event: i"},{"event":"cmd_output","timestamp":1607098403,"output":"nitializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098403,"output":"m\u001b[22m\n16:13:23.983 [info] Block 0 of pipeline with id: 7046a4aa-cbc3-4dd8-bb6e-6888e7185f4e sched"},{"event":"cmd_output","timestamp":1607098403,"output":"uled in block service with id: : \"0e6d8258-d86c-4fb0-8be9-7471d3e60d9b\"\n\u001b[0m\u001b[22m\n16:13:23.985 [in"},{"event":"cmd_output","timestamp":1607098403,"output":"fo] ppl_id: 7046a4aa-cbc3-4dd8-bb6e-6888e7185f4e, type: PplBlocks, block_index: 0, state: running, "},{"event":"cmd_output","timestamp":1607098403,"output":"event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \r"},{"event":"cmd_output","timestamp":1607098403,"output":"\n\u001b[0m\u001b[22m\n16:13:23.985 [info] ppl_id: bc524481-017f-412d-a0f4-c83ef191cbab, type: PplSubInits, st"},{"event":"cmd_output","timestamp":1607098403,"output":"ate: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098403,"output":"hange/1(L90), \n\u001b[0m\u001b[22m\n16:13:23.994 [info] block_id: 0e6d8258-d86c-4fb0-8be9-7471d3e60d9b, type"},{"event":"cmd_output","timestamp":1607098403,"output":": BlockRequests, event: persisted build and sub_ppl details for block_request: 0e6d8258-d86c-4fb0-8b"},{"event":"cmd_output","timestamp":1607098403,"output":"e9-7471d3e60d9b, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), "},{"event":"cmd_output","timestamp":1607098403,"output":"\n\u001b[0m\u001b[22m\n16:13:23.999 [info] block_id: 0e6d8258-d86c-4fb0-8be9-7471d3e60d9b, type: Tasks, state"},{"event":"cmd_output","timestamp":1607098403,"output":": pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingSta"},{"event":"cmd_output","timestamp":1607098404,"output":"te.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:13:24.004 [info] block_id: 0e6d8258-d86c-4fb0-8be9-7471d3e60d9b"},{"event":"cmd_output","timestamp":1607098404,"output":", type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM"},{"event":"cmd_output","timestamp":1607098404,"output":".Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:24.018 [info] block_id: 0e6d8258-d86c-4fb0-8be9-7"},{"event":"cmd_output","timestamp":1607098404,"output":"471d3e60d9b, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098404,"output":"Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:24.028 [info] ppl_id: bc524481-017f-412"},{"event":"cmd_output","timestamp":1607098404,"output":"d-a0f4-c83ef191cbab, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count:"},{"event":"cmd_output","timestamp":1607098404,"output":" 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:24.053 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098404,"output":": bc524481-017f-412d-a0f4-c83ef191cbab, type: PplRequests, event: persisted definition for request w"},{"event":"cmd_output","timestamp":1607098404,"output":"ith request_token: a236b2b0-364b-11eb-a50d-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplReq"},{"event":"cmd_output","timestamp":1607098404,"output":"uestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:13:24.060 [info] event: created, origin: Eli"},{"event":"cmd_output","timestamp":1607098404,"output":"xir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:24.060 [info] p"},{"event":"cmd_output","timestamp":1607098404,"output":"pl_id: bc524481-017f-412d-a0f4-c83ef191cbab, type: PplBlocks, block_index: 0, state: initializing, e"},{"event":"cmd_output","timestamp":1607098404,"output":"vent: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?"},{"event":"cmd_output","timestamp":1607098404,"output":"/1(L105), \n\u001b[0m\u001b[22m\n16:13:24.064 [info] ppl_id: bc524481-017f-412d-a0f4-c83ef191cbab, type: PplS"},{"event":"cmd_output","timestamp":1607098404,"output":"ubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loop"},{"event":"cmd_output","timestamp":1607098404,"output":"er.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:24.083 [info] ppl_id: bc524481-017f-412d-a0"},{"event":"cmd_output","timestamp":1607098404,"output":"f4-c83ef191cbab, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098404,"output":"ir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:24.085 [info] ppl_id: bc524481-017f-"},{"event":"cmd_output","timestamp":1607098404,"output":"412d-a0f4-c83ef191cbab, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, rec"},{"event":"cmd_output","timestamp":1607098404,"output":"overy_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:24.098 [i"},{"event":"cmd_output","timestamp":1607098404,"output":"nfo] ppl_id: a871ec7a-29e9-4260-b31c-5205f6417a27, type: PplRequests, event: persisted source_args "},{"event":"cmd_output","timestamp":1607098404,"output":"for pipeline: a871ec7a-29e9-4260-b31c-5205f6417a27, origin: Elixir.Ppl.PplRequests.Model.PplRequests"},{"event":"cmd_output","timestamp":1607098404,"output":"Queries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:13:24.101 [info] ppl_id: bc524481-017f-412d-a0f4-c83e"},{"event":"cmd_output","timestamp":1607098404,"output":"f191cbab, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loop"},{"event":"cmd_output","timestamp":1607098404,"output":"er.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:24.103 [info] ppl_id: a871ec7a-29e9-4260-b3"},{"event":"cmd_output","timestamp":1607098404,"output":"1c-5205f6417a27, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098404,"output":"in: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:24.111 [info] ppl_id: bc5244"},{"event":"cmd_output","timestamp":1607098404,"output":"81-017f-412d-a0f4-c83ef191cbab, type: Ppls, state: running, event: exit_scheduling, recovery_count: "},{"event":"cmd_output","timestamp":1607098404,"output":"0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:24.119 [info] PplBloc"},{"event":"cmd_output","timestamp":1607098404,"output":"ks WaitingState STM is scheduling block 0 from pipeline: \"bc524481-017f-412d-a0f4-c83ef191cbab\"\n\u001b[0"},{"event":"cmd_output","timestamp":1607098404,"output":"m\u001b[22m\n16:13:24.124 [info] block_id: 0b400448-a189-4cef-a35d-bda1360bff7a, type: BlockRequests, ev"},{"event":"cmd_output","timestamp":1607098404,"output":"ent: persisted block run request from ppl bc524481-017f-412d-a0f4-c83ef191cbab for block 0, origin: "},{"event":"cmd_output","timestamp":1607098404,"output":"Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:13:24"},{"event":"cmd_output","timestamp":1607098404,"output":".127 [info] block_id: 0b400448-a189-4cef-a35d-bda1360bff7a, type: Blocks, state: initializing, even"},{"event":"cmd_output","timestamp":1607098404,"output":"t: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \r"},{"event":"cmd_output","timestamp":1607098404,"output":"\n\u001b[0m\u001b[22m\n16:13:24.130 [info] Block 0 of pipeline with id: bc524481-017f-412d-a0f4-c83ef191cbab s"},{"event":"cmd_output","timestamp":1607098404,"output":"cheduled in block service with id: : \"0b400448-a189-4cef-a35d-bda1360bff7a\"\n\u001b[0m\u001b[22m\n16:13:24.132"},{"event":"cmd_output","timestamp":1607098404,"output":" [info] ppl_id: bc524481-017f-412d-a0f4-c83ef191cbab, type: PplBlocks, block_index: 0, state: runni"},{"event":"cmd_output","timestamp":1607098404,"output":"ng, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90"},{"event":"cmd_output","timestamp":1607098404,"output":"), \n\u001b[0m\u001b[22m\n16:13:24.136 [info] block_id: 0b400448-a189-4cef-a35d-bda1360bff7a, type: BlockRequ"},{"event":"cmd_output","timestamp":1607098404,"output":"ests, event: persisted build and sub_ppl details for block_request: 0b400448-a189-4cef-a35d-bda1360b"},{"event":"cmd_output","timestamp":1607098404,"output":"ff7a, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098404,"output":"\n16:13:24.137 [info] ppl_id: a871ec7a-29e9-4260-b31c-5205f6417a27, type: PplSubInits, state: regul"},{"event":"cmd_output","timestamp":1607098404,"output":"ar_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/"},{"event":"cmd_output","timestamp":1607098404,"output":"1(L90), \n\u001b[0m\u001b[22m\n16:13:24.139 [info] block_id: 0b400448-a189-4cef-a35d-bda1360bff7a, type: Task"},{"event":"cmd_output","timestamp":1607098404,"output":"s, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.Initial"},{"event":"cmd_output","timestamp":1607098404,"output":"izingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:13:24.142 [info] block_id: 0b400448-a189-4cef-a35d-bda1"},{"event":"cmd_output","timestamp":1607098404,"output":"360bff7a, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Lo"},{"event":"cmd_output","timestamp":1607098404,"output":"oper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:24.159 [info] block_id: 0b400448-a189-4ce"},{"event":"cmd_output","timestamp":1607098404,"output":"f-a35d-bda1360bff7a, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098404,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:24.178 [info] ppl_id: a871ec7a-"},{"event":"cmd_output","timestamp":1607098404,"output":"29e9-4260-b31c-5205f6417a27, type: PplRequests, event: persisted definition for request with request"},{"event":"cmd_output","timestamp":1607098404,"output":"_token: a23aff46-364b-11eb-87d1-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQuerie"},{"event":"cmd_output","timestamp":1607098404,"output":"s.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:13:24.188 [info] event: created, origin: Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098404,"output":"SubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:24.188 [info] ppl_id: a871"},{"event":"cmd_output","timestamp":1607098404,"output":"ec7a-29e9-4260-b31c-5205f6417a27, type: PplBlocks, block_index: 0, state: initializing, event: creat"},{"event":"cmd_output","timestamp":1607098404,"output":"ed, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \r"},{"event":"cmd_output","timestamp":1607098404,"output":"\n\u001b[0m\u001b[22m\n16:13:24.190 [info] ppl_id: a871ec7a-29e9-4260-b31c-5205f6417a27, type: PplSubInits, st"},{"event":"cmd_output","timestamp":1607098404,"output":"ate: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl"},{"event":"cmd_output","timestamp":1607098404,"output":".log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:24.202 [info] ppl_id: a871ec7a-29e9-4260-b31c-5205f641"},{"event":"cmd_output","timestamp":1607098404,"output":"7a27, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098404,"output":"igin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:24.203 [info] ppl_id: a871"},{"event":"cmd_output","timestamp":1607098404,"output":"ec7a-29e9-4260-b31c-5205f6417a27, type: Ppls, state: pending, event: exit_scheduling, recovery_count"},{"event":"cmd_output","timestamp":1607098404,"output":": 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:24.224 [info] ppl_i"},{"event":"cmd_output","timestamp":1607098404,"output":"d: 4cdf71b3-f111-4cd6-8997-75cd14904c7a, type: PplRequests, event: persisted source_args for pipelin"},{"event":"cmd_output","timestamp":1607098404,"output":"e: 4cdf71b3-f111-4cd6-8997-75cd14904c7a, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.ins"},{"event":"cmd_output","timestamp":1607098404,"output":"ert_source/2(L89), \n\u001b[0m\u001b[22m\n16:13:24.227 [info] ppl_id: 4cdf71b3-f111-4cd6-8997-75cd14904c7a, t"},{"event":"cmd_output","timestamp":1607098404,"output":"ype: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper."},{"event":"cmd_output","timestamp":1607098404,"output":"STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:24.227 [info] ppl_id: a871ec7a-29e9-4260-b31c-"},{"event":"cmd_output","timestamp":1607098404,"output":"5205f6417a27, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098404,"output":"Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:24.249 [info] ppl_id: 4cdf71b3-f111-4cd"},{"event":"cmd_output","timestamp":1607098404,"output":"6-8997-75cd14904c7a, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count:"},{"event":"cmd_output","timestamp":1607098404,"output":" 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:24.282 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098404,"output":": 4cdf71b3-f111-4cd6-8997-75cd14904c7a, type: PplRequests, event: persisted definition for request w"},{"event":"cmd_output","timestamp":1607098404,"output":"ith request_token: a23d9ee0-364b-11eb-9eae-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplReq"},{"event":"cmd_output","timestamp":1607098404,"output":"uestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:13:24.288 [info] event: created, origin: Eli"},{"event":"cmd_output","timestamp":1607098404,"output":"xir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:24.288 [info] p"},{"event":"cmd_output","timestamp":1607098404,"output":"pl_id: 4cdf71b3-f111-4cd6-8997-75cd14904c7a, type: PplBlocks, block_index: 0, state: initializing, e"},{"event":"cmd_output","timestamp":1607098404,"output":"vent: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?"},{"event":"cmd_output","timestamp":1607098404,"output":"/1(L105), \n\u001b[0m\u001b[22m\n16:13:24.290 [info] ppl_id: 4cdf71b3-f111-4cd6-8997-75cd14904c7a, type: PplS"},{"event":"cmd_output","timestamp":1607098404,"output":"ubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loop"},{"event":"cmd_output","timestamp":1607098404,"output":"er.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:24.297 [info] ppl_id: 4cdf71b3-f111-4cd6-89"},{"event":"cmd_output","timestamp":1607098404,"output":"97-75cd14904c7a, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098404,"output":"ir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:24.303 [info] ppl_id: 4cdf71b3-f111-"},{"event":"cmd_output","timestamp":1607098404,"output":"4cd6-8997-75cd14904c7a, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, rec"},{"event":"cmd_output","timestamp":1607098404,"output":"overy_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:24.306 [i"},{"event":"cmd_output","timestamp":1607098404,"output":"nfo] ppl_id: 4cdf71b3-f111-4cd6-8997-75cd14904c7a, type: Ppls, state: queuing, event: exit_scheduli"},{"event":"cmd_output","timestamp":1607098404,"output":"ng, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:24"},{"event":"cmd_output","timestamp":1607098404,"output":".320 [info] ppl_id: 4cdf71b3-f111-4cd6-8997-75cd14904c7a, type: Ppls, state: running, event: exit_s"},{"event":"cmd_output","timestamp":1607098404,"output":"cheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098404,"output":"6:13:24.325 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"4cdf71b3-f111-4"},{"event":"cmd_output","timestamp":1607098404,"output":"cd6-8997-75cd14904c7a\"\n\u001b[0m\u001b[22m\n16:13:24.334 [info] block_id: bfe78176-fa62-4e95-92e1-d747601581"},{"event":"cmd_output","timestamp":1607098404,"output":"52, type: BlockRequests, event: persisted block run request from ppl 4cdf71b3-f111-4cd6-8997-75cd149"},{"event":"cmd_output","timestamp":1607098404,"output":"04c7a for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4("},{"event":"cmd_output","timestamp":1607098404,"output":"L35), \n\u001b[0m\u001b[22m\n16:13:24.336 [info] block_id: bfe78176-fa62-4e95-92e1-d74760158152, type: Blocks"},{"event":"cmd_output","timestamp":1607098404,"output":", state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.Blo"},{"event":"cmd_output","timestamp":1607098404,"output":"cksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:13:24.339 [info] Block 0 of pipeline with id: 4cdf71b3-f1"},{"event":"cmd_output","timestamp":1607098404,"output":"11-4cd6-8997-75cd14904c7a scheduled in block service with id: : \"bfe78176-fa62-4e95-92e1-d7476015815"},{"event":"cmd_output","timestamp":1607098404,"output":"2\"\n\u001b[0m\u001b[22m\n16:13:24.342 [info] ppl_id: 4cdf71b3-f111-4cd6-8997-75cd14904c7a, type: PplBlocks, b"},{"event":"cmd_output","timestamp":1607098404,"output":"lock_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM."},{"event":"cmd_output","timestamp":1607098404,"output":"Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:24.344 [info] block_id: bfe78176-fa62-4e95-92e1-d7"},{"event":"cmd_output","timestamp":1607098404,"output":"4760158152, type: BlockRequests, event: persisted build and sub_ppl details for block_request: bfe78"},{"event":"cmd_output","timestamp":1607098404,"output":"176-fa62-4e95-92e1-d74760158152, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.inser"},{"event":"cmd_output","timestamp":1607098404,"output":"t_build/2(L41), \n\u001b[0m\u001b[22m\n16:13:24.346 [info] block_id: bfe78176-fa62-4e95-92e1-d74760158152, ty"},{"event":"cmd_output","timestamp":1607098404,"output":"pe: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler"},{"event":"cmd_output","timestamp":1607098404,"output":".InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:13:24.348 [info] block_id: bfe78176-fa62-4e95-9"},{"event":"cmd_output","timestamp":1607098404,"output":"2e1-d74760158152, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: E"},{"event":"cmd_output","timestamp":1607098404,"output":"lixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:24.362 [info] block_id: bfe78176-"},{"event":"cmd_output","timestamp":1607098404,"output":"fa62-4e95-92e1-d74760158152, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098404,"output":" origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:24.388 [info] Periodic "},{"event":"cmd_output","timestamp":1607098404,"output":"from module Elixir.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHandler.RunningStat"},{"event":"cmd_output","timestamp":1607098404,"output":"e :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, re"},{"event":"cmd_output","timestamp":1607098404,"output":"curring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query"},{"event":"cmd_output","timestamp":1607098404,"output":": Ppl.Ppls.Model.Ppls, observed_state: \"running\", publisher_cb: #Function<0.74670282/1 in Ppl.Ppls.S"},{"event":"cmd_output","timestamp":1607098404,"output":"TMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at"},{"event":"cmd_output","timestamp":1607098404,"output":", :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTask"},{"event":"cmd_output","timestamp":1607098409,"output":"Supervisor}\n\u001b[0m\u001b[22m\n16:13:29.121 [info] block_id: 0e6d8258-d86c-4fb0-8be9-7471d3e60d9b, type: T"},{"event":"cmd_output","timestamp":1607098409,"output":"asks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_sta"},{"event":"cmd_output","timestamp":1607098409,"output":"te_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:29.131 [info] block_id: 0e6d8258-d86c-4fb0-8be9-7471d3e60d9b, "},{"event":"cmd_output","timestamp":1607098409,"output":"type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl"},{"event":"cmd_output","timestamp":1607098409,"output":".log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:29.149 [info] ppl_id: 7046a4aa-cbc3-4dd8-bb6e-6888e718"},{"event":"cmd_output","timestamp":1607098409,"output":"5f4e, block_id: 0e6d8258-d86c-4fb0-8be9-7471d3e60d9b, type: PplBlocks, block_index: 0, state: done, "},{"event":"cmd_output","timestamp":1607098409,"output":"result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_"},{"event":"cmd_output","timestamp":1607098409,"output":"change/1(L90), \n\u001b[0m\u001b[22m\n16:13:29.162 [info] ppl_id: 7046a4aa-cbc3-4dd8-bb6e-6888e7185f4e, type:"},{"event":"cmd_output","timestamp":1607098409,"output":" Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper"},{"event":"cmd_output","timestamp":1607098409,"output":".STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:29.242 [info] block_id: 0b400448-a189-4cef-a3"},{"event":"cmd_output","timestamp":1607098409,"output":"5d-bda1360bff7a, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098409,"output":".Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:29.247 [info] block_id: 0b400448-a189-"},{"event":"cmd_output","timestamp":1607098409,"output":"4cef-a35d-bda1360bff7a, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098409,"output":": Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:29.251 [info] ppl_id: bc524481"},{"event":"cmd_output","timestamp":1607098409,"output":"-017f-412d-a0f4-c83ef191cbab, block_id: 0b400448-a189-4cef-a35d-bda1360bff7a, type: PplBlocks, block"},{"event":"cmd_output","timestamp":1607098409,"output":"_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Lo"},{"event":"cmd_output","timestamp":1607098409,"output":"oper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:29.263 [info] ppl_id: bc524481-017f-412d-"},{"event":"cmd_output","timestamp":1607098409,"output":"a0f4-c83ef191cbab, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: "},{"event":"cmd_output","timestamp":1607098409,"output":"0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:29.456 [info] block_i"},{"event":"cmd_output","timestamp":1607098409,"output":"d: bfe78176-fa62-4e95-92e1-d74760158152, type: Tasks, state: done, event: exit_scheduling, recovery_"},{"event":"cmd_output","timestamp":1607098409,"output":"count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:29.468 [info] "},{"event":"cmd_output","timestamp":1607098409,"output":"block_id: bfe78176-fa62-4e95-92e1-d74760158152, type: Blocks, state: done, event: exit_scheduling, r"},{"event":"cmd_output","timestamp":1607098409,"output":"ecovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:29.475 "},{"event":"cmd_output","timestamp":1607098409,"output":"[info] ppl_id: 4cdf71b3-f111-4cd6-8997-75cd14904c7a, block_id: bfe78176-fa62-4e95-92e1-d74760158152"},{"event":"cmd_output","timestamp":1607098409,"output":", type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_cou"},{"event":"cmd_output","timestamp":1607098409,"output":"nt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:29.495 [info] ppl"},{"event":"cmd_output","timestamp":1607098409,"output":"_id: 4cdf71b3-f111-4cd6-8997-75cd14904c7a, type: Ppls, state: done, result: passed, event: exit_sche"},{"event":"cmd_output","timestamp":1607098409,"output":"duling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098409,"output":"3:29.505 [info] ppl_id: a871ec7a-29e9-4260-b31c-5205f6417a27, type: Ppls, state: running, event: ex"},{"event":"cmd_output","timestamp":1607098409,"output":"it_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098409,"output":"m\n16:13:29.511 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"a871ec7a-29"},{"event":"cmd_output","timestamp":1607098409,"output":"e9-4260-b31c-5205f6417a27\"\n\u001b[0m\u001b[22m\n16:13:29.515 [info] block_id: fba8c371-dbef-4ea9-9160-f0abe4"},{"event":"cmd_output","timestamp":1607098409,"output":"47988c, type: BlockRequests, event: persisted block run request from ppl a871ec7a-29e9-4260-b31c-520"},{"event":"cmd_output","timestamp":1607098409,"output":"5f6417a27 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_respons"},{"event":"cmd_output","timestamp":1607098409,"output":"e/4(L35), \n\u001b[0m\u001b[22m\n16:13:29.516 [info] block_id: fba8c371-dbef-4ea9-9160-f0abe447988c, type: Bl"},{"event":"cmd_output","timestamp":1607098409,"output":"ocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model"},{"event":"cmd_output","timestamp":1607098409,"output":".BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:13:29.517 [info] Block 0 of pipeline with id: a871ec7"},{"event":"cmd_output","timestamp":1607098409,"output":"a-29e9-4260-b31c-5205f6417a27 scheduled in block service with id: : \"fba8c371-dbef-4ea9-9160-f0abe44"},{"event":"cmd_output","timestamp":1607098409,"output":"7988c\"\n\u001b[0m\u001b[22m\n16:13:29.519 [info] ppl_id: a871ec7a-29e9-4260-b31c-5205f6417a27, type: PplBlock"},{"event":"cmd_output","timestamp":1607098409,"output":"s, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper."},{"event":"cmd_output","timestamp":1607098409,"output":"STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:29.534 [info] block_id: fba8c371-dbef-4ea9-916"},{"event":"cmd_output","timestamp":1607098409,"output":"0-f0abe447988c, type: BlockRequests, event: persisted build and sub_ppl details for block_request: f"},{"event":"cmd_output","timestamp":1607098409,"output":"ba8c371-dbef-4ea9-9160-f0abe447988c, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.i"},{"event":"cmd_output","timestamp":1607098409,"output":"nsert_build/2(L41), \n\u001b[0m\u001b[22m\n16:13:29.536 [info] block_id: fba8c371-dbef-4ea9-9160-f0abe447988c"},{"event":"cmd_output","timestamp":1607098409,"output":", type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHan"},{"event":"cmd_output","timestamp":1607098409,"output":"dler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:13:29.537 [info] block_id: fba8c371-dbef-4e"},{"event":"cmd_output","timestamp":1607098409,"output":"a9-9160-f0abe447988c, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098409,"output":"n: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:29.550 [info] block_id: fba8c"},{"event":"cmd_output","timestamp":1607098409,"output":"371-dbef-4ea9-9160-f0abe447988c, type: Tasks, state: running, event: exit_scheduling, recovery_count"},{"event":"cmd_output","timestamp":1607098414,"output":": 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:34.575 [info] block"},{"event":"cmd_output","timestamp":1607098414,"output":"_id: fba8c371-dbef-4ea9-9160-f0abe447988c, type: Tasks, state: done, event: exit_scheduling, recover"},{"event":"cmd_output","timestamp":1607098414,"output":"y_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:34.581 [info]"},{"event":"cmd_output","timestamp":1607098414,"output":" block_id: fba8c371-dbef-4ea9-9160-f0abe447988c, type: Blocks, state: done, event: exit_scheduling,"},{"event":"cmd_output","timestamp":1607098414,"output":" recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:34.58"},{"event":"cmd_output","timestamp":1607098414,"output":"8 [info] ppl_id: a871ec7a-29e9-4260-b31c-5205f6417a27, block_id: fba8c371-dbef-4ea9-9160-f0abe44798"},{"event":"cmd_output","timestamp":1607098414,"output":"8c, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098414,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:34.596 [info] p"},{"event":"cmd_output","timestamp":1607098414,"output":"pl_id: a871ec7a-29e9-4260-b31c-5205f6417a27, type: Ppls, state: done, result: passed, event: exit_sc"},{"event":"cmd_output","timestamp":1607098414,"output":"heduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r *"},{"event":"cmd_output","timestamp":1607098414,"output":" test when parallel queue processing is set up pipelines from same queue are run in parallel (11040."},{"event":"cmd_output","timestamp":1607098414,"output":"2ms)\u001b[0m\n\nPpl.E2E.LooperExecuteNow.Test\n * test termination is optimized with execute_now() loop"},{"event":"cmd_output","timestamp":1607098414,"output":"er calls\u001b[22m\n16:13:34.712 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingStat"},{"event":"cmd_output","timestamp":1607098414,"output":"e with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 1000000 ms, metric_name: {\"Ppl.b"},{"event":"cmd_output","timestamp":1607098414,"output":"eholder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"in"},{"event":"cmd_output","timestamp":1607098414,"output":"itializing\", \"pending\", \"done\"], cooling_time_sec: 1000, initial_query: Ppl.Ppls.Model.Ppls, observe"},{"event":"cmd_output","timestamp":1607098414,"output":"d_state: \"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingSt"},{"event":"cmd_output","timestamp":1607098414,"output":"ate.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, "},{"event":"cmd_output","timestamp":1607098414,"output":":recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:34"},{"event":"cmd_output","timestamp":1607098414,"output":".712 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls."},{"event":"cmd_output","timestamp":1607098414,"output":"STMHandler.PendingState :: period: 1000000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMH"},{"event":"cmd_output","timestamp":1607098414,"output":"andler-PendingState\"]}, recurring args: %{allowed_states: [\"pending\", \"queuing\", \"running\", \"done\"],"},{"event":"cmd_output","timestamp":1607098414,"output":" cooling_time_sec: 1000, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publisher_cb"},{"event":"cmd_output","timestamp":1607098414,"output":": #Function<0.8493005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, returning: "},{"event":"cmd_output","timestamp":1607098414,"output":"[:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls."},{"event":"cmd_output","timestamp":1607098414,"output":"Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:13:34.713 [info] Periodic from modu"},{"event":"cmd_output","timestamp":1607098414,"output":"le Elixir.Ppl.Ppls.STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandler.QueuingState :: peri"},{"event":"cmd_output","timestamp":1607098414,"output":"od: 1000000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurri"},{"event":"cmd_output","timestamp":1607098414,"output":"ng args: %{allowed_states: [\"queuing\", \"running\", \"done\"], cooling_time_sec: 1000, initial_query: Pp"},{"event":"cmd_output","timestamp":1607098414,"output":"l.Ppls.Model.Ppls, observed_state: \"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMH"},{"event":"cmd_output","timestamp":1607098414,"output":"andler.QueuingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :"},{"event":"cmd_output","timestamp":1607098414,"output":"state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0"},{"event":"cmd_output","timestamp":1607098414,"output":"m\u001b[22m\n16:13:34.714 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.RunningState with name "},{"event":"cmd_output","timestamp":1607098414,"output":"Elixir.Ppl.Ppls.STMHandler.RunningState :: period: 1000000 ms, metric_name: {\"Ppl.beholder-wake_up\","},{"event":"cmd_output","timestamp":1607098414,"output":" [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"d"},{"event":"cmd_output","timestamp":1607098414,"output":"one\"], cooling_time_sec: 1000, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"running\", publis"},{"event":"cmd_output","timestamp":1607098414,"output":"her_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, retu"},{"event":"cmd_output","timestamp":1607098414,"output":"rning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Pp"},{"event":"cmd_output","timestamp":1607098414,"output":"l.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:13:34.715 [info] Periodic fr"},{"event":"cmd_output","timestamp":1607098414,"output":"om module Elixir.Ppl.Ppls.STMHandler.StoppingState with name Elixir.Ppl.Ppls.STMHandler.StoppingStat"},{"event":"cmd_output","timestamp":1607098414,"output":"e :: period: 1000000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]"},{"event":"cmd_output","timestamp":1607098414,"output":"}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: 1000, initial_query: Pp"},{"event":"cmd_output","timestamp":1607098414,"output":"l.Ppls.Model.Ppls, observed_state: \"stopping\", publisher_cb: #Function<0.71803493/1 in Ppl.Ppls.STMH"},{"event":"cmd_output","timestamp":1607098414,"output":"andler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, "},{"event":"cmd_output","timestamp":1607098414,"output":":state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b["},{"event":"cmd_output","timestamp":1607098414,"output":"0m\u001b[22m\n16:13:34.716 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedState wi"},{"event":"cmd_output","timestamp":1607098414,"output":"th name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 1000000 ms, metric_name: {\"Ppl.beh"},{"event":"cmd_output","timestamp":1607098414,"output":"older-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args: %{allowed_states: [\"fe"},{"event":"cmd_output","timestamp":1607098414,"output":"tching\", \"done\"], cooling_time_sec: 1000, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed"},{"event":"cmd_output","timestamp":1607098414,"output":"_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :up"},{"event":"cmd_output","timestamp":1607098414,"output":"dated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, tas"},{"event":"cmd_output","timestamp":1607098414,"output":"k_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:34.716 [info] Periodic from module Elixir.Ppl.PplSubInits.ST"},{"event":"cmd_output","timestamp":1607098414,"output":"MHandler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler.FetchingState :: period: 1000000 "},{"event":"cmd_output","timestamp":1607098414,"output":"ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring a"},{"event":"cmd_output","timestamp":1607098414,"output":"rgs: %{allowed_states: [\"regular_init\", \"compilation\", \"done\"], cooling_time_sec: 1000, initial_quer"},{"event":"cmd_output","timestamp":1607098414,"output":"y: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fetching\", publisher_cb: :skip, repo: Ppl.Ect"},{"event":"cmd_output","timestamp":1607098414,"output":"oRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id],"},{"event":"cmd_output","timestamp":1607098414,"output":" schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:34.717 [info] "},{"event":"cmd_output","timestamp":1607098414,"output":" Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CompilationState with name Elixir.Ppl.PplSub"},{"event":"cmd_output","timestamp":1607098414,"output":"Inits.STMHandler.CompilationState :: period: 1000000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl"},{"event":"cmd_output","timestamp":1607098414,"output":"-PplSubInits-STMHandler-CompilationState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"com"},{"event":"cmd_output","timestamp":1607098414,"output":"pilation\", \"stopping\", \"done\"], cooling_time_sec: 1000, initial_query: Ppl.PplSubInits.Model.PplSubI"},{"event":"cmd_output","timestamp":1607098414,"output":"nits, observed_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :term"},{"event":"cmd_output","timestamp":1607098414,"output":"inate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Mode"},{"event":"cmd_output","timestamp":1607098414,"output":"l.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:34.717 [info] Periodic from module Elixir."},{"event":"cmd_output","timestamp":1607098414,"output":"Ppl.PplSubInits.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHandler.RegularInitS"},{"event":"cmd_output","timestamp":1607098414,"output":"tate :: period: 1000000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-Regul"},{"event":"cmd_output","timestamp":1607098414,"output":"arInitState\"]}, recurring args: %{allowed_states: [\"done\"], cooling_time_sec: 1000, initial_query: P"},{"event":"cmd_output","timestamp":1607098414,"output":"pl.PplSubInits.Model.PplSubInits, observed_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.Ect"},{"event":"cmd_output","timestamp":1607098414,"output":"oRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id],"},{"event":"cmd_output","timestamp":1607098414,"output":" schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:34.718 [info] "},{"event":"cmd_output","timestamp":1607098414,"output":" Periodic from module Elixir.Ppl.PplBlocks.STMHandler.InitializingState with name Elixir.Ppl.PplBloc"},{"event":"cmd_output","timestamp":1607098414,"output":"ks.STMHandler.InitializingState :: period: 1000000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-P"},{"event":"cmd_output","timestamp":1607098414,"output":"plBlocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"waitin"},{"event":"cmd_output","timestamp":1607098414,"output":"g\", \"done\"], cooling_time_sec: 1000, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \""},{"event":"cmd_output","timestamp":1607098414,"output":"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :update"},{"event":"cmd_output","timestamp":1607098414,"output":"d_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlock"},{"event":"cmd_output","timestamp":1607098414,"output":"s, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:34.719 [info] Periodic from module Elixir.Ppl.PplBlock"},{"event":"cmd_output","timestamp":1607098414,"output":"s.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler.WaitingState :: period: 1000 ms,"},{"event":"cmd_output","timestamp":1607098414,"output":" metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurring args: %"},{"event":"cmd_output","timestamp":1607098414,"output":"{allowed_states: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 1000, initial_query: Ppl.PplBlock"},{"event":"cmd_output","timestamp":1607098414,"output":"s.Model.PplBlocks, observed_state: \"waiting\", publisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.S"},{"event":"cmd_output","timestamp":1607098414,"output":"TMHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at"},{"event":"cmd_output","timestamp":1607098414,"output":", :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, t"},{"event":"cmd_output","timestamp":1607098414,"output":"ask_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:34.719 [info] Periodic from module Elixir.Ppl.PplBlocks.ST"},{"event":"cmd_output","timestamp":1607098414,"output":"MHandler.RunningState with name Elixir.Ppl.PplBlocks.STMHandler.RunningState :: period: 1000 ms, met"},{"event":"cmd_output","timestamp":1607098414,"output":"ric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, recurring args: %{all"},{"event":"cmd_output","timestamp":1607098414,"output":"owed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: 1000, initial_query: Ppl.PplBlocks.M"},{"event":"cmd_output","timestamp":1607098414,"output":"odel.PplBlocks, observed_state: \"running\", publisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STM"},{"event":"cmd_output","timestamp":1607098414,"output":"Handler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, "},{"event":"cmd_output","timestamp":1607098414,"output":":state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.Ppl"},{"event":"cmd_output","timestamp":1607098414,"output":"Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:34.720 [info] Periodic from module Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098414,"output":"Blocks.STMHandler.StoppingState with name Elixir.Ppl.PplBlocks.STMHandler.StoppingState :: period: 1"},{"event":"cmd_output","timestamp":1607098414,"output":"000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurring"},{"event":"cmd_output","timestamp":1607098414,"output":" args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: 1000, initial_query: Ppl.PplBlocks."},{"event":"cmd_output","timestamp":1607098414,"output":"Model.PplBlocks, observed_state: \"stopping\", publisher_cb: #Function<0.104215991/1 in Ppl.PplBlocks."},{"event":"cmd_output","timestamp":1607098414,"output":"STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_"},{"event":"cmd_output","timestamp":1607098414,"output":"at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model"},{"event":"cmd_output","timestamp":1607098414,"output":".PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:34.720 [info] Periodic from module Elixir.Blo"},{"event":"cmd_output","timestamp":1607098414,"output":"ck.Blocks.STMHandler.InitializingState with name Elixir.Block.Blocks.STMHandler.InitializingState ::"},{"event":"cmd_output","timestamp":1607098414,"output":" period: 1000000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-InitializingSta"},{"event":"cmd_output","timestamp":1607098414,"output":"te\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 1000, initial_query:"},{"event":"cmd_output","timestamp":1607098414,"output":" Block.Blocks.Model.Blocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Block.EctoRep"},{"event":"cmd_output","timestamp":1607098414,"output":"o, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Bl"},{"event":"cmd_output","timestamp":1607098414,"output":"ock.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:34.721 [info] Periodic from modu"},{"event":"cmd_output","timestamp":1607098414,"output":"le Elixir.Block.Blocks.STMHandler.RunningState with name Elixir.Block.Blocks.STMHandler.RunningState"},{"event":"cmd_output","timestamp":1607098414,"output":" :: period: 1000000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-RunningState"},{"event":"cmd_output","timestamp":1607098414,"output":"\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: 1000, init"},{"event":"cmd_output","timestamp":1607098414,"output":"ial_query: Block.Blocks.Model.Blocks, observed_state: \"running\", publisher_cb: :skip, repo: Block.Ec"},{"event":"cmd_output","timestamp":1607098414,"output":"toRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schem"},{"event":"cmd_output","timestamp":1607098414,"output":"a: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:34.722 [info] Periodic from"},{"event":"cmd_output","timestamp":1607098414,"output":" module Elixir.Block.Blocks.STMHandler.StoppingState with name Elixir.Block.Blocks.STMHandler.Stoppi"},{"event":"cmd_output","timestamp":1607098414,"output":"ngState :: period: 1000000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-Stopp"},{"event":"cmd_output","timestamp":1607098414,"output":"ingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: 1000, initial"},{"event":"cmd_output","timestamp":1607098414,"output":"_query: Block.Blocks.Model.Blocks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.Ecto"},{"event":"cmd_output","timestamp":1607098414,"output":"Repo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema:"},{"event":"cmd_output","timestamp":1607098414,"output":" Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:34.722 [info] Periodic from m"},{"event":"cmd_output","timestamp":1607098414,"output":"odule Elixir.Block.Tasks.STMHandler.PendingState with name Elixir.Block.Tasks.STMHandler.PendingStat"},{"event":"cmd_output","timestamp":1607098414,"output":"e :: period: 1000000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingState"},{"event":"cmd_output","timestamp":1607098414,"output":"\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 1000, initial_query: B"},{"event":"cmd_output","timestamp":1607098414,"output":"lock.Tasks.Model.Tasks, observed_state: \"pending\", publisher_cb: :skip, repo: Block.EctoRepo, return"},{"event":"cmd_output","timestamp":1607098414,"output":"ing: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id, :build_request_id], "},{"event":"cmd_output","timestamp":1607098414,"output":"schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:34.723 [info] Periodic f"},{"event":"cmd_output","timestamp":1607098414,"output":"rom module Elixir.Block.Tasks.STMHandler.RunningState with name Elixir.Block.Tasks.STMHandler.Runnin"},{"event":"cmd_output","timestamp":1607098414,"output":"gState :: period: 1000000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-Running"},{"event":"cmd_output","timestamp":1607098414,"output":"State\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: 1000,"},{"event":"cmd_output","timestamp":1607098414,"output":" initial_query: Block.Tasks.Model.Tasks, observed_state: \"running\", publisher_cb: :skip, repo: Block"},{"event":"cmd_output","timestamp":1607098414,"output":".EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], sc"},{"event":"cmd_output","timestamp":1607098414,"output":"hema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:34.723 [info] Periodic fro"},{"event":"cmd_output","timestamp":1607098414,"output":"m module Elixir.Block.Tasks.STMHandler.StoppingState with name Elixir.Block.Tasks.STMHandler.Stoppin"},{"event":"cmd_output","timestamp":1607098414,"output":"gState :: period: 1000000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-Stoppin"},{"event":"cmd_output","timestamp":1607098414,"output":"gState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: 1000, initial_q"},{"event":"cmd_output","timestamp":1607098414,"output":"uery: Block.Tasks.Model.Tasks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo"},{"event":"cmd_output","timestamp":1607098414,"output":", returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Blo"},{"event":"cmd_output","timestamp":1607098414,"output":"ck.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:34.730 [info] Opening new connectio"},{"event":"cmd_output","timestamp":1607098414,"output":"n {:ok, %AMQP.Connection{pid: #PID<0.24604.1>}} for id: default\n\u001b[0m\u001b[22m\n16:13:34.734 [info] Bin"},{"event":"cmd_output","timestamp":1607098414,"output":"ding 'block.finished' to 'task_state_exchange' with 'finished' routing keys\n\u001b[0m\u001b[22m\n16:13:34.736"},{"event":"cmd_output","timestamp":1607098414,"output":" [info] Creating queue 'block.finished'\n\u001b[0m\u001b[22m\n16:13:34.737 [info] Creating dead queue 'block"},{"event":"cmd_output","timestamp":1607098414,"output":".finished.dead'\n\u001b[0m\u001b[22m\n16:13:34.739 [info] Creating delay queue 'block.finished.delay.10'\n\u001b[0"},{"event":"cmd_output","timestamp":1607098414,"output":"m\u001b[22m\n16:13:34.741 [info] Binding 'block.finished' to 'block.finished' with 'finished' routing ke"},{"event":"cmd_output","timestamp":1607098414,"output":"ys\n\u001b[0m\u001b[22m\n16:13:34.746 [info] Request: 'run: %{\"branch_id\" => \"0b2ddfef-4e69-4c88-a404-4edf959"},{"event":"cmd_output","timestamp":1607098414,"output":"2cdf3\", \"branch_name\" => \"non-default-branch\", \"client_id\" => \"328c742132e5407abd7d\", \"commit_sha\" ="},{"event":"cmd_output","timestamp":1607098414,"output":"> \"70e0f5b\", \"file_name\" => \"semaphore.yml\", \"hook_id\" => \"0178251e-8ad6-4e85-a157-7b5fb63e94bb\", \"l"},{"event":"cmd_output","timestamp":1607098414,"output":"abel\" => \"master\", \"organization_id\" => \"faee0dee-96b4-4276-8e67-771ba55e24ad\", \"owner\" => \"rendered"},{"event":"cmd_output","timestamp":1607098414,"output":"text\", \"project_id\" => \"123\", \"repo_name\" => \"pipelines-test-repo-auto-call\", \"request_token\" => \"a8"},{"event":"cmd_output","timestamp":1607098414,"output":"cde120-364b-11eb-b4a8-5254005464e2\", \"requester_id\" => \"65e841f1-8031-4d5f-83c2-02c8a5cead7f\", \"serv"},{"event":"cmd_output","timestamp":1607098414,"output":"ice\" => \"git_hub\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"7ce07ef"},{"event":"cmd_output","timestamp":1607098414,"output":"4-a903-4751-9558-723709b28ccd\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:13:34.766 [info] ppl_"},{"event":"cmd_output","timestamp":1607098414,"output":"id: bee029bf-2a52-4c0b-84ed-4e4b4040da82, type: PplRequests, event: persisted schedule request with "},{"event":"cmd_output","timestamp":1607098414,"output":"request_token: a8cde120-364b-11eb-b4a8-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequest"},{"event":"cmd_output","timestamp":1607098414,"output":"sQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:13:34.769 [info] ppl_id: bee029bf-2a52-4c0b-84ed-"},{"event":"cmd_output","timestamp":1607098414,"output":"4e4b4040da82, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098414,"output":"r.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:13:34.772 [info] Project 123"},{"event":"cmd_output","timestamp":1607098414,"output":" and branch non-default-branchlatest_wf details updated: \"wf_id: 7ce07ef4-a903-4751-9558-723709b28cc"},{"event":"cmd_output","timestamp":1607098414,"output":"d, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:13:34.774 [info] Persisted ppl_sub_init for pipeline with ppl_id: b"},{"event":"cmd_output","timestamp":1607098414,"output":"ee029bf-2a52-4c0b-84ed-4e4b4040da82: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metad"},{"event":"cmd_output","timestamp":1607098414,"output":"ata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 310, in_schedu"},{"event":"cmd_output","timestamp":1607098414,"output":"ling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:13:34.773028], pipeline_requests: #"},{"event":"cmd_output","timestamp":1607098414,"output":"Ecto.Association.NotLoaded, ppl_id: \"bee029bf-2a52-4c0"},{"event":"cmd_output","timestamp":1607098414,"output":"b-84ed-4e4b4040da82\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminat"},{"event":"cmd_output","timestamp":1607098414,"output":"e_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:13:34.773035]}\n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098414,"output":"\n16:13:34.783 [info] ppl_id: bee029bf-2a52-4c0b-84ed-4e4b4040da82, type: PplRequests, event: persis"},{"event":"cmd_output","timestamp":1607098414,"output":"ted source_args for pipeline: bee029bf-2a52-4c0b-84ed-4e4b4040da82, origin: Elixir.Ppl.PplRequests.M"},{"event":"cmd_output","timestamp":1607098414,"output":"odel.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:13:34.785 [info] ppl_id: bee029bf-2a5"},{"event":"cmd_output","timestamp":1607098414,"output":"2-4c0b-84ed-4e4b4040da82, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count"},{"event":"cmd_output","timestamp":1607098415,"output":": 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:35.052 [info] ppl_i"},{"event":"cmd_output","timestamp":1607098415,"output":"d: bee029bf-2a52-4c0b-84ed-4e4b4040da82, type: PplSubInits, state: regular_init, event: exit_schedul"},{"event":"cmd_output","timestamp":1607098415,"output":"ing, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:3"},{"event":"cmd_output","timestamp":1607098415,"output":"5.078 [info] ppl_id: bee029bf-2a52-4c0b-84ed-4e4b4040da82, type: PplRequests, event: persisted defi"},{"event":"cmd_output","timestamp":1607098415,"output":"nition for request with request_token: a8cde120-364b-11eb-b4a8-5254005464e2, origin: Elixir.Ppl.PplR"},{"event":"cmd_output","timestamp":1607098415,"output":"equests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:13:35.081 [info] Queue p"},{"event":"cmd_output","timestamp":1607098415,"output":"ersisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserte"},{"event":"cmd_output","timestamp":1607098415,"output":"d_at: ~N[2020-12-04 16:13:35.080444], name: \"master-.semaphore/semaphore.yml\", organization_id: \"fae"},{"event":"cmd_output","timestamp":1607098415,"output":"e0dee-96b4-4276-8e67-771ba55e24ad\", project_id: \"123\", queue_id: \"c86273d4-8c60-4d7f-8ba1-dc5f221999"},{"event":"cmd_output","timestamp":1607098415,"output":"7b\", scope: \"project\", updated_at: ~N[2020-12-04 16:13:35.080454], user_generated: false}}\n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098415,"output":"m\n16:13:35.090 [info] ppl_id: not_available, event: created, origin: Elixir.Ppl.PplSubInits.STMHan"},{"event":"cmd_output","timestamp":1607098415,"output":"dler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:35.090 [info] event: created, origin: Eli"},{"event":"cmd_output","timestamp":1607098415,"output":"xir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:35.090 [info] p"},{"event":"cmd_output","timestamp":1607098415,"output":"pl_id: bee029bf-2a52-4c0b-84ed-4e4b4040da82, type: PplBlocks, block_index: 0, state: initializing, e"},{"event":"cmd_output","timestamp":1607098415,"output":"vent: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?"},{"event":"cmd_output","timestamp":1607098415,"output":"/1(L105), \n\u001b[0m\u001b[22m\n16:13:35.090 [info] ppl_id: bee029bf-2a52-4c0b-84ed-4e4b4040da82, type: PplB"},{"event":"cmd_output","timestamp":1607098415,"output":"locks, block_index: 1, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.Pp"},{"event":"cmd_output","timestamp":1607098415,"output":"lSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:35.092 [info] ppl_id: bee"},{"event":"cmd_output","timestamp":1607098415,"output":"029bf-2a52-4c0b-84ed-4e4b4040da82, type: PplSubInits, state: done, result: passed, event: exit_sched"},{"event":"cmd_output","timestamp":1607098415,"output":"uling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13"},{"event":"cmd_output","timestamp":1607098415,"output":":35.101 [info] ppl_id: bee029bf-2a52-4c0b-84ed-4e4b4040da82, type: PplBlocks, block_index: 0, state"},{"event":"cmd_output","timestamp":1607098415,"output":": waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chang"},{"event":"cmd_output","timestamp":1607098415,"output":"e/1(L90), \n\u001b[0m\u001b[22m\n16:13:35.101 [info] ppl_id: bee029bf-2a52-4c0b-84ed-4e4b4040da82, type: Ppls"},{"event":"cmd_output","timestamp":1607098415,"output":", state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_stat"},{"event":"cmd_output","timestamp":1607098415,"output":"e_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:35.107 [info] ppl_id: bee029bf-2a52-4c0b-84ed-4e4b4040da82, typ"},{"event":"cmd_output","timestamp":1607098415,"output":"e: PplBlocks, block_index: 1, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098415,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:35.119 [info] ppl_id: bee029bf-2a52"},{"event":"cmd_output","timestamp":1607098415,"output":"-4c0b-84ed-4e4b4040da82, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098415,"output":"in: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:35.127 [info] ppl_id: bee029"},{"event":"cmd_output","timestamp":1607098415,"output":"bf-2a52-4c0b-84ed-4e4b4040da82, type: Ppls, state: running, event: exit_scheduling, recovery_count: "},{"event":"cmd_output","timestamp":1607098415,"output":"0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:35.135 [info] PplBloc"},{"event":"cmd_output","timestamp":1607098415,"output":"ks WaitingState STM is scheduling block 0 from pipeline: \"bee029bf-2a52-4c0b-84ed-4e4b4040da82\"\n\u001b[0"},{"event":"cmd_output","timestamp":1607098415,"output":"m\u001b[22m\n16:13:35.144 [info] block_id: 7bcd28f0-a936-4c49-b17f-6deedd02eafe, type: BlockRequests, ev"},{"event":"cmd_output","timestamp":1607098415,"output":"ent: persisted block run request from ppl bee029bf-2a52-4c0b-84ed-4e4b4040da82 for block 0, origin: "},{"event":"cmd_output","timestamp":1607098415,"output":"Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:13:35"},{"event":"cmd_output","timestamp":1607098415,"output":".145 [info] block_id: 7bcd28f0-a936-4c49-b17f-6deedd02eafe, type: Blocks, state: initializing, even"},{"event":"cmd_output","timestamp":1607098415,"output":"t: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \r"},{"event":"cmd_output","timestamp":1607098415,"output":"\n\u001b[0m\u001b[22m\n16:13:35.149 [info] Block 0 of pipeline with id: bee029bf-2a52-4c0b-84ed-4e4b4040da82 s"},{"event":"cmd_output","timestamp":1607098415,"output":"cheduled in block service with id: : \"7bcd28f0-a936-4c49-b17f-6deedd02eafe\"\n\u001b[0m\u001b[22m\n16:13:35.152"},{"event":"cmd_output","timestamp":1607098415,"output":" [info] ppl_id: bee029bf-2a52-4c0b-84ed-4e4b4040da82, type: PplBlocks, block_index: 0, state: runni"},{"event":"cmd_output","timestamp":1607098415,"output":"ng, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90"},{"event":"cmd_output","timestamp":1607098415,"output":"), \n\u001b[0m\u001b[22m\n16:13:35.155 [info] block_id: 7bcd28f0-a936-4c49-b17f-6deedd02eafe, type: BlockRequ"},{"event":"cmd_output","timestamp":1607098415,"output":"ests, event: persisted build and sub_ppl details for block_request: 7bcd28f0-a936-4c49-b17f-6deedd02"},{"event":"cmd_output","timestamp":1607098415,"output":"eafe, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098415,"output":"\n16:13:35.157 [info] block_id: 7bcd28f0-a936-4c49-b17f-6deedd02eafe, type: Tasks, state: pending, "},{"event":"cmd_output","timestamp":1607098415,"output":"event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/"},{"event":"cmd_output","timestamp":1607098415,"output":"1(L167), \n\u001b[0m\u001b[22m\n16:13:35.159 [info] block_id: 7bcd28f0-a936-4c49-b17f-6deedd02eafe, type: Blo"},{"event":"cmd_output","timestamp":1607098415,"output":"cks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_s"},{"event":"cmd_output","timestamp":1607098415,"output":"tate_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:35.176 [info] block_id: 7bcd28f0-a936-4c49-b17f-6deedd02eafe"},{"event":"cmd_output","timestamp":1607098415,"output":", type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM."},{"event":"cmd_output","timestamp":1607098415,"output":"Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:35.391 [info] Request: 'terminate', request: %{\"pp"},{"event":"cmd_output","timestamp":1607098415,"output":"l_id\" => \"bee029bf-2a52-4c0b-84ed-4e4b4040da82\", \"requester_id\" => \"bee029bf-2a52-4c0b-84ed-4e4b4040"},{"event":"cmd_output","timestamp":1607098415,"output":"da82\"}\n\u001b[0m\u001b[22m\n16:13:35.401 [info] ppl_id: bee029bf-2a52-4c0b-84ed-4e4b4040da82, type: Ppls, st"},{"event":"cmd_output","timestamp":1607098415,"output":"ate: stopping, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098415,"output":"hange/1(L90), \n\u001b[0m\u001b[22m\n16:13:35.412 [info] ppl_id: bee029bf-2a52-4c0b-84ed-4e4b4040da82, block_"},{"event":"cmd_output","timestamp":1607098415,"output":"id: 7bcd28f0-a936-4c49-b17f-6deedd02eafe, type: PplBlocks, block_index: 0, state: stopping, event: e"},{"event":"cmd_output","timestamp":1607098415,"output":"xit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098415,"output":"2m\n16:13:35.417 [info] ppl_id: bee029bf-2a52-4c0b-84ed-4e4b4040da82, type: PplBlocks, block_index:"},{"event":"cmd_output","timestamp":1607098415,"output":" 1, state: done, result: canceled, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper."},{"event":"cmd_output","timestamp":1607098415,"output":"STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:35.424 [info] block_id: 7bcd28f0-a936-4c49-b17"},{"event":"cmd_output","timestamp":1607098415,"output":"f-6deedd02eafe, type: Blocks, state: stopping, event: exit_scheduling, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098415,"output":"ixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:35.430 [info] block_id: 7bcd28f0-a"},{"event":"cmd_output","timestamp":1607098415,"output":"936-4c49-b17f-6deedd02eafe, type: Tasks, state: stopping, event: exit_scheduling, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098415,"output":" origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:35.544 [info] block_id:"},{"event":"cmd_output","timestamp":1607098415,"output":" 7bcd28f0-a936-4c49-b17f-6deedd02eafe, type: Tasks, state: done, event: exit_scheduling, recovery_co"},{"event":"cmd_output","timestamp":1607098415,"output":"unt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:35.548 [info] bl"},{"event":"cmd_output","timestamp":1607098415,"output":"ock_id: 7bcd28f0-a936-4c49-b17f-6deedd02eafe, type: Blocks, state: done, event: exit_scheduling, rec"},{"event":"cmd_output","timestamp":1607098415,"output":"overy_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:35.554 [i"},{"event":"cmd_output","timestamp":1607098415,"output":"nfo] ppl_id: bee029bf-2a52-4c0b-84ed-4e4b4040da82, block_id: 7bcd28f0-a936-4c49-b17f-6deedd02eafe, "},{"event":"cmd_output","timestamp":1607098415,"output":"type: PplBlocks, block_index: 0, state: done, result: stopped, event: exit_scheduling, recovery_coun"},{"event":"cmd_output","timestamp":1607098415,"output":"t: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:35.566 [info] ppl_"},{"event":"cmd_output","timestamp":1607098415,"output":"id: bee029bf-2a52-4c0b-84ed-4e4b4040da82, type: Ppls, state: done, result: stopped, event: exit_sche"},{"event":"cmd_output","timestamp":1607098415,"output":"duling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * t"},{"event":"cmd_output","timestamp":1607098415,"output":"est termination is optimized with execute_now() looper calls (976.7ms)\u001b[0m\n * test All looper have"},{"event":"cmd_output","timestamp":1607098415,"output":" set execut_now() call for next step on state transition\u001b[22m\n16:13:35.675 [info] Periodic from mo"},{"event":"cmd_output","timestamp":1607098415,"output":"dule Elixir.Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.STMHandler.InitializingS"},{"event":"cmd_output","timestamp":1607098415,"output":"tate :: period: 1000000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Initializing"},{"event":"cmd_output","timestamp":1607098415,"output":"State\"]}, recurring args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], cooling_time_sec: 1"},{"event":"cmd_output","timestamp":1607098415,"output":"000, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher_cb: #Function<0.1"},{"event":"cmd_output","timestamp":1607098415,"output":"25326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :t"},{"event":"cmd_output","timestamp":1607098415,"output":"erminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Pp"},{"event":"cmd_output","timestamp":1607098415,"output":"ls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:35.676 [info] Periodic from module Elixir.Ppl.Ppls.ST"},{"event":"cmd_output","timestamp":1607098415,"output":"MHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 1000000 ms, metri"},{"event":"cmd_output","timestamp":1607098415,"output":"c_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args: %{allowed_st"},{"event":"cmd_output","timestamp":1607098415,"output":"ates: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_sec: 1000, initial_query: Ppl.Ppls.Mod"},{"event":"cmd_output","timestamp":1607098415,"output":"el.Ppls, observed_state: \"pending\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler.Pendi"},{"event":"cmd_output","timestamp":1607098415,"output":"ngState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :resu"},{"event":"cmd_output","timestamp":1607098415,"output":"lt, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b["},{"event":"cmd_output","timestamp":1607098415,"output":"0m\u001b[22m\n16:13:35.676 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.QueuingState with name"},{"event":"cmd_output","timestamp":1607098415,"output":" Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 1000000 ms, metric_name: {\"Ppl.beholder-wake_up\""},{"event":"cmd_output","timestamp":1607098415,"output":", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{allowed_states: [\"queuing\", \"running\", \"d"},{"event":"cmd_output","timestamp":1607098415,"output":"one\"], cooling_time_sec: 1000, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", publis"},{"event":"cmd_output","timestamp":1607098415,"output":"her_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, ret"},{"event":"cmd_output","timestamp":1607098415,"output":"urning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: P"},{"event":"cmd_output","timestamp":1607098415,"output":"pl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:35.677 [info] Periodic from module El"},{"event":"cmd_output","timestamp":1607098415,"output":"ixir.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHandler.RunningState :: period: 1"},{"event":"cmd_output","timestamp":1607098415,"output":"000000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring ar"},{"event":"cmd_output","timestamp":1607098415,"output":"gs: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: 1000, initial_query: Ppl.Pp"},{"event":"cmd_output","timestamp":1607098415,"output":"ls.Model.Ppls, observed_state: \"running\", publisher_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandle"},{"event":"cmd_output","timestamp":1607098415,"output":"r.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state"},{"event":"cmd_output","timestamp":1607098415,"output":", :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervis"},{"event":"cmd_output","timestamp":1607098415,"output":"or}\n\u001b[0m\u001b[22m\n16:13:35.677 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.StoppingState w"},{"event":"cmd_output","timestamp":1607098415,"output":"ith name Elixir.Ppl.Ppls.STMHandler.StoppingState :: period: 1000000 ms, metric_name: {\"Ppl.beholder"},{"event":"cmd_output","timestamp":1607098415,"output":"-wake_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"d"},{"event":"cmd_output","timestamp":1607098415,"output":"one\"], cooling_time_sec: 1000, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"stopping\", publi"},{"event":"cmd_output","timestamp":1607098415,"output":"sher_cb: #Function<0.71803493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, re"},{"event":"cmd_output","timestamp":1607098415,"output":"turning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: "},{"event":"cmd_output","timestamp":1607098415,"output":"Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:35.678 [info] Periodic from module E"},{"event":"cmd_output","timestamp":1607098415,"output":"lixir.Ppl.PplSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHandler.CreatedSta"},{"event":"cmd_output","timestamp":1607098415,"output":"te :: period: 1000000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-Created"},{"event":"cmd_output","timestamp":1607098415,"output":"State\"]}, recurring args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 1000, initial_qu"},{"event":"cmd_output","timestamp":1607098415,"output":"ery: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip, repo: Ppl.Ec"},{"event":"cmd_output","timestamp":1607098415,"output":"toRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id]"},{"event":"cmd_output","timestamp":1607098415,"output":", schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:35.678 [info]"},{"event":"cmd_output","timestamp":1607098415,"output":" Periodic from module Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl.PplSubIn"},{"event":"cmd_output","timestamp":1607098415,"output":"its.STMHandler.FetchingState :: period: 1000000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplS"},{"event":"cmd_output","timestamp":1607098415,"output":"ubInits-STMHandler-FetchingState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation"},{"event":"cmd_output","timestamp":1607098415,"output":"\", \"done\"], cooling_time_sec: 1000, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state"},{"event":"cmd_output","timestamp":1607098415,"output":": \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated"},{"event":"cmd_output","timestamp":1607098415,"output":"_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_sup"},{"event":"cmd_output","timestamp":1607098415,"output":"ervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:35.679 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHand"},{"event":"cmd_output","timestamp":1607098415,"output":"ler.CompilationState with name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 1000000"},{"event":"cmd_output","timestamp":1607098415,"output":" ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurri"},{"event":"cmd_output","timestamp":1607098415,"output":"ng args: %{allowed_states: [\"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: 10"},{"event":"cmd_output","timestamp":1607098415,"output":"00, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"compilation\", publisher_cb: :"},{"event":"cmd_output","timestamp":1607098415,"output":"skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recove"},{"event":"cmd_output","timestamp":1607098415,"output":"ry_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098415,"output":"6:13:35.679 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with nam"},{"event":"cmd_output","timestamp":1607098415,"output":"e Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period: 1000000 ms, metric_name: {\"Ppl.behol"},{"event":"cmd_output","timestamp":1607098415,"output":"der-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurring args: %{allowed_states: [\""},{"event":"cmd_output","timestamp":1607098415,"output":"done\"], cooling_time_sec: 1000, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"r"},{"event":"cmd_output","timestamp":1607098415,"output":"egular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated"},{"event":"cmd_output","timestamp":1607098415,"output":"_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_sup"},{"event":"cmd_output","timestamp":1607098415,"output":"ervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:35.680 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandle"},{"event":"cmd_output","timestamp":1607098415,"output":"r.InitializingState with name Elixir.Ppl.PplBlocks.STMHandler.InitializingState :: period: 1000000 m"},{"event":"cmd_output","timestamp":1607098415,"output":"s, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-InitializingState\"]}, recurring "},{"event":"cmd_output","timestamp":1607098415,"output":"args: %{allowed_states: [\"initializing\", \"waiting\", \"done\"], cooling_time_sec: 1000, initial_query: "},{"event":"cmd_output","timestamp":1607098415,"output":"Ppl.PplBlocks.Model.PplBlocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Ppl.EctoRe"},{"event":"cmd_output","timestamp":1607098415,"output":"po, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :bl"},{"event":"cmd_output","timestamp":1607098415,"output":"ock_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:35.680 "},{"event":"cmd_output","timestamp":1607098415,"output":"[info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.WaitingState with name Elixir.Ppl.PplBl"},{"event":"cmd_output","timestamp":1607098415,"output":"ocks.STMHandler.WaitingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBloc"},{"event":"cmd_output","timestamp":1607098415,"output":"ks-STMHandler-WaitingState\"]}, recurring args: %{allowed_states: [\"waiting\", \"running\", \"done\"], coo"},{"event":"cmd_output","timestamp":1607098415,"output":"ling_time_sec: 1000, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"waiting\", publis"},{"event":"cmd_output","timestamp":1607098415,"output":"her_cb: #Function<0.8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, "},{"event":"cmd_output","timestamp":1607098415,"output":"returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_"},{"event":"cmd_output","timestamp":1607098415,"output":"index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:35.681 [inf"},{"event":"cmd_output","timestamp":1607098415,"output":"o] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.RunningState with name Elixir.Ppl.PplBlocks"},{"event":"cmd_output","timestamp":1607098415,"output":".STMHandler.RunningState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-S"},{"event":"cmd_output","timestamp":1607098415,"output":"TMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], coolin"},{"event":"cmd_output","timestamp":1607098415,"output":"g_time_sec: 1000, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"running\", publisher"},{"event":"cmd_output","timestamp":1607098415,"output":"_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, re"},{"event":"cmd_output","timestamp":1607098415,"output":"turning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_in"},{"event":"cmd_output","timestamp":1607098415,"output":"dex, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:35"},{"event":"cmd_output","timestamp":1607098415,"output":".682 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.StoppingState with name Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098415,"output":".PplBlocks.STMHandler.StoppingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-"},{"event":"cmd_output","timestamp":1607098415,"output":"PplBlocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooli"},{"event":"cmd_output","timestamp":1607098415,"output":"ng_time_sec: 1000, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"stopping\", publish"},{"event":"cmd_output","timestamp":1607098415,"output":"er_cb: #Function<0.104215991/1 in Ppl.PplBlocks.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo"},{"event":"cmd_output","timestamp":1607098415,"output":", returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :bloc"},{"event":"cmd_output","timestamp":1607098415,"output":"k_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098415,"output":"3:35.682 [info] Periodic from module Elixir.Block.Blocks.STMHandler.InitializingState with name Eli"},{"event":"cmd_output","timestamp":1607098415,"output":"xir.Block.Blocks.STMHandler.InitializingState :: period: 1000000 ms, metric_name: {\"Ppl.beholder-wak"},{"event":"cmd_output","timestamp":1607098415,"output":"e_up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"running\","},{"event":"cmd_output","timestamp":1607098415,"output":" \"done\"], cooling_time_sec: 1000, initial_query: Block.Blocks.Model.Blocks, observed_state: \"initial"},{"event":"cmd_output","timestamp":1607098415,"output":"izing\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at,"},{"event":"cmd_output","timestamp":1607098415,"output":" :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b["},{"event":"cmd_output","timestamp":1607098415,"output":"0m\u001b[22m\n16:13:35.683 [info] Periodic from module Elixir.Block.Blocks.STMHandler.RunningState with "},{"event":"cmd_output","timestamp":1607098415,"output":"name Elixir.Block.Blocks.STMHandler.RunningState :: period: 1000000 ms, metric_name: {\"Ppl.beholder-"},{"event":"cmd_output","timestamp":1607098415,"output":"wake_up\", [\"Block-Blocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \""},{"event":"cmd_output","timestamp":1607098415,"output":"stopping\", \"done\"], cooling_time_sec: 1000, initial_query: Block.Blocks.Model.Blocks, observed_state"},{"event":"cmd_output","timestamp":1607098415,"output":": \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :update"},{"event":"cmd_output","timestamp":1607098415,"output":"d_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip"},{"event":"cmd_output","timestamp":1607098415,"output":"}\n\u001b[0m\u001b[22m\n16:13:35.683 [info] Periodic from module Elixir.Block.Blocks.STMHandler.StoppingState"},{"event":"cmd_output","timestamp":1607098415,"output":" with name Elixir.Block.Blocks.STMHandler.StoppingState :: period: 1000000 ms, metric_name: {\"Ppl.be"},{"event":"cmd_output","timestamp":1607098415,"output":"holder-wake_up\", [\"Block-Blocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"sto"},{"event":"cmd_output","timestamp":1607098415,"output":"pping\", \"done\"], cooling_time_sec: 1000, initial_query: Block.Blocks.Model.Blocks, observed_state: \""},{"event":"cmd_output","timestamp":1607098415,"output":"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_"},{"event":"cmd_output","timestamp":1607098415,"output":"at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\r"},{"event":"cmd_output","timestamp":1607098415,"output":"\n\u001b[0m\u001b[22m\n16:13:35.684 [info] Periodic from module Elixir.Block.Tasks.STMHandler.PendingState wit"},{"event":"cmd_output","timestamp":1607098415,"output":"h name Elixir.Block.Tasks.STMHandler.PendingState :: period: 1000000 ms, metric_name: {\"Ppl.beholder"},{"event":"cmd_output","timestamp":1607098415,"output":"-wake_up\", [\"Block-Tasks-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"running\", \""},{"event":"cmd_output","timestamp":1607098415,"output":"done\"], cooling_time_sec: 1000, initial_query: Block.Tasks.Model.Tasks, observed_state: \"pending\", p"},{"event":"cmd_output","timestamp":1607098415,"output":"ublisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, "},{"event":"cmd_output","timestamp":1607098415,"output":":recovery_count, :block_id, :build_request_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :s"},{"event":"cmd_output","timestamp":1607098415,"output":"kip}\n\u001b[0m\u001b[22m\n16:13:35.684 [info] Periodic from module Elixir.Block.Tasks.STMHandler.RunningStat"},{"event":"cmd_output","timestamp":1607098415,"output":"e with name Elixir.Block.Tasks.STMHandler.RunningState :: period: 1000000 ms, metric_name: {\"Ppl.beh"},{"event":"cmd_output","timestamp":1607098415,"output":"older-wake_up\", [\"Block-Tasks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"runnin"},{"event":"cmd_output","timestamp":1607098415,"output":"g\", \"stopping\", \"done\"], cooling_time_sec: 1000, initial_query: Block.Tasks.Model.Tasks, observed_st"},{"event":"cmd_output","timestamp":1607098415,"output":"ate: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :upd"},{"event":"cmd_output","timestamp":1607098415,"output":"ated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :ski"},{"event":"cmd_output","timestamp":1607098415,"output":"p}\n\u001b[0m\u001b[22m\n16:13:35.685 [info] Periodic from module Elixir.Block.Tasks.STMHandler.StoppingState"},{"event":"cmd_output","timestamp":1607098415,"output":" with name Elixir.Block.Tasks.STMHandler.StoppingState :: period: 1000000 ms, metric_name: {\"Ppl.beh"},{"event":"cmd_output","timestamp":1607098415,"output":"older-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopp"},{"event":"cmd_output","timestamp":1607098415,"output":"ing\", \"done\"], cooling_time_sec: 1000, initial_query: Block.Tasks.Model.Tasks, observed_state: \"stop"},{"event":"cmd_output","timestamp":1607098415,"output":"ping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, "},{"event":"cmd_output","timestamp":1607098415,"output":":state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098415,"output":"[22m\n16:13:35.688 [info] Opening new connection {:ok, %AMQP.Connection{pid: #PID<0.24746.1>}} for "},{"event":"cmd_output","timestamp":1607098415,"output":"id: default\n\u001b[0m\u001b[22m\n16:13:35.690 [info] Binding 'block.finished' to 'task_state_exchange' with "},{"event":"cmd_output","timestamp":1607098415,"output":"'finished' routing keys\n\u001b[0m\u001b[22m\n16:13:35.691 [info] Creating queue 'block.finished'\n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098415,"output":"\n16:13:35.691 [info] Creating dead queue 'block.finished.dead'\n\u001b[0m\u001b[22m\n16:13:35.692 [info] Cre"},{"event":"cmd_output","timestamp":1607098415,"output":"ating delay queue 'block.finished.delay.10'\n\u001b[0m\u001b[22m\n16:13:35.692 [info] Binding 'block.finished"},{"event":"cmd_output","timestamp":1607098415,"output":"' to 'block.finished' with 'finished' routing keys\n\u001b[0m\u001b[22m\n16:13:35.695 [info] Request: 'run: %"},{"event":"cmd_output","timestamp":1607098415,"output":"{\"branch_id\" => \"e2c01ea2-bbdb-4472-bca7-62d16d71414e\", \"branch_name\" => \"non-default-branch\", \"clie"},{"event":"cmd_output","timestamp":1607098415,"output":"nt_id\" => \"328c742132e5407abd7d\", \"commit_sha\" => \"70e0f5b\", \"file_name\" => \"semaphore.yml\", \"hook_i"},{"event":"cmd_output","timestamp":1607098415,"output":"d\" => \"6fbef154-4868-449a-bcd7-e5d4e4105b04\", \"label\" => \"master\", \"organization_id\" => \"f329b6b0-36"},{"event":"cmd_output","timestamp":1607098415,"output":"da-45cb-87b1-e638e9c6b260\", \"owner\" => \"renderedtext\", \"project_id\" => \"123\", \"repo_name\" => \"pipeli"},{"event":"cmd_output","timestamp":1607098415,"output":"nes-test-repo-auto-call\", \"request_token\" => \"a95ebf88-364b-11eb-9865-5254005464e2\", \"requester_id\" "},{"event":"cmd_output","timestamp":1607098415,"output":"=> \"b43fe4fb-b49f-45c2-94b7-fcd83719d22a\", \"service\" => \"git_hub\", \"suppressed_attributes\" => [\"acce"},{"event":"cmd_output","timestamp":1607098415,"output":"ss_token\", \"client_secret\"], \"wf_id\" => \"4fefa962-b935-416f-8cc6-0b90e253567f\", \"working_dir\" => \".s"},{"event":"cmd_output","timestamp":1607098415,"output":"emaphore\"}\n\u001b[0m\u001b[22m\n16:13:35.723 [info] ppl_id: 38a1b4b3-004d-496e-95b8-c57735227733, type: PplR"},{"event":"cmd_output","timestamp":1607098415,"output":"equests, event: persisted schedule request with request_token: a95ebf88-364b-11eb-9865-5254005464e2,"},{"event":"cmd_output","timestamp":1607098415,"output":" origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:13"},{"event":"cmd_output","timestamp":1607098415,"output":":35.726 [info] ppl_id: 38a1b4b3-004d-496e-95b8-c57735227733, type: Ppls, state: initializing, event"},{"event":"cmd_output","timestamp":1607098415,"output":": initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124"},{"event":"cmd_output","timestamp":1607098415,"output":"), \n\u001b[0m\u001b[22m\n16:13:35.729 [info] Project 123 and branch non-default-branchlatest_wf details upda"},{"event":"cmd_output","timestamp":1607098415,"output":"ted: \"wf_id: 4fefa962-b935-416f-8cc6-0b90e253567f, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:13:35.730 [info] Pe"},{"event":"cmd_output","timestamp":1607098415,"output":"rsisted ppl_sub_init for pipeline with ppl_id: 38a1b4b3-004d-496e-95b8-c57735227733: %Ppl.PplSubInit"},{"event":"cmd_output","timestamp":1607098415,"output":"s.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id:"},{"event":"cmd_output","timestamp":1607098415,"output":" nil, error_description: nil, id: 311, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2"},{"event":"cmd_output","timestamp":1607098415,"output":"020-12-04 16:13:35.729645], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"38a1b4b3-004d-496e-95b8-c57735227733\", recovery_count: 0, result: nil"},{"event":"cmd_output","timestamp":1607098415,"output":", result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated"},{"event":"cmd_output","timestamp":1607098415,"output":"_at: ~N[2020-12-04 16:13:35.729651]}\n\u001b[0m\u001b[22m\n16:13:35.738 [info] ppl_id: 38a1b4b3-004d-496e-95b"},{"event":"cmd_output","timestamp":1607098415,"output":"8-c57735227733, type: PplRequests, event: persisted source_args for pipeline: 38a1b4b3-004d-496e-95b"},{"event":"cmd_output","timestamp":1607098415,"output":"8-c57735227733, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098415,"output":"\u001b[22m\n16:13:35.740 [info] ppl_id: 38a1b4b3-004d-496e-95b8-c57735227733, type: PplSubInits, state: "},{"event":"cmd_output","timestamp":1607098415,"output":"fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change"},{"event":"cmd_output","timestamp":1607098415,"output":"/1(L90), \n\u001b[0m\u001b[22m\n16:13:35.931 [info] ppl_id: 38a1b4b3-004d-496e-95b8-c57735227733, type: PplSu"},{"event":"cmd_output","timestamp":1607098415,"output":"bInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Im"},{"event":"cmd_output","timestamp":1607098415,"output":"pl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:35.949 [info] ppl_id: 38a1b4b3-004d-496e-95b8-c57735"},{"event":"cmd_output","timestamp":1607098415,"output":"227733, type: PplRequests, event: persisted definition for request with request_token: a95ebf88-364b"},{"event":"cmd_output","timestamp":1607098415,"output":"-11eb-9865-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3"},{"event":"cmd_output","timestamp":1607098415,"output":"(L76), \n\u001b[0m\u001b[22m\n16:13:35.952 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #"},{"event":"cmd_output","timestamp":1607098415,"output":"Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:13:35.950892], name: \"master-"},{"event":"cmd_output","timestamp":1607098415,"output":".semaphore/semaphore.yml\", organization_id: \"f329b6b0-36da-45cb-87b1-e638e9c6b260\", project_id: \"123"},{"event":"cmd_output","timestamp":1607098415,"output":"\", queue_id: \"2f5b3bce-6861-4630-8793-1d1eda081000\", scope: \"project\", updated_at: ~N[2020-12-04 16:"},{"event":"cmd_output","timestamp":1607098415,"output":"13:35.950899], user_generated: false}}\n\u001b[0m\u001b[22m\n16:13:35.956 [info] ppl_id: not_available, event"},{"event":"cmd_output","timestamp":1607098415,"output":": created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098415,"output":"16:13:35.956 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_"},{"event":"cmd_output","timestamp":1607098415,"output":"ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:35.956 [info] ppl_id: 38a1b4b3-004d-496e-95b8-c57735227733, type: P"},{"event":"cmd_output","timestamp":1607098415,"output":"plBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098415,"output":".PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:35.956 [info] ppl_id: "},{"event":"cmd_output","timestamp":1607098415,"output":"38a1b4b3-004d-496e-95b8-c57735227733, type: PplBlocks, block_index: 1, state: initializing, event: c"},{"event":"cmd_output","timestamp":1607098415,"output":"reated, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105"},{"event":"cmd_output","timestamp":1607098415,"output":"), \n\u001b[0m\u001b[22m\n16:13:35.958 [info] ppl_id: 38a1b4b3-004d-496e-95b8-c57735227733, type: PplSubInits"},{"event":"cmd_output","timestamp":1607098415,"output":", state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM."},{"event":"cmd_output","timestamp":1607098415,"output":"Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:35.965 [info] ppl_id: 38a1b4b3-004d-496e-95b8-c577"},{"event":"cmd_output","timestamp":1607098415,"output":"35227733, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loop"},{"event":"cmd_output","timestamp":1607098415,"output":"er.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:35.966 [info] ppl_id: 38a1b4b3-004d-496e-95"},{"event":"cmd_output","timestamp":1607098415,"output":"b8-c57735227733, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098415,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:35.973 [info] p"},{"event":"cmd_output","timestamp":1607098415,"output":"pl_id: 38a1b4b3-004d-496e-95b8-c57735227733, type: PplBlocks, block_index: 1, state: waiting, event:"},{"event":"cmd_output","timestamp":1607098415,"output":" exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098415,"output":"[22m\n16:13:35.973 [info] ppl_id: 38a1b4b3-004d-496e-95b8-c57735227733, type: Ppls, state: queuing,"},{"event":"cmd_output","timestamp":1607098415,"output":" event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), "},{"event":"cmd_output","timestamp":1607098415,"output":"\n\u001b[0m\u001b[22m\n16:13:35.980 [info] ppl_id: 38a1b4b3-004d-496e-95b8-c57735227733, type: Ppls, state: r"},{"event":"cmd_output","timestamp":1607098415,"output":"unning, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1"},{"event":"cmd_output","timestamp":1607098415,"output":"(L90), \n\u001b[0m\u001b[22m\n16:13:35.987 [info] PplBlocks WaitingState STM is scheduling block 0 from pipel"},{"event":"cmd_output","timestamp":1607098415,"output":"ine: \"38a1b4b3-004d-496e-95b8-c57735227733\"\n\u001b[0m\u001b[22m\n16:13:35.992 [info] block_id: 51fd13b3-0e9a"},{"event":"cmd_output","timestamp":1607098415,"output":"-43dc-9524-b6f9c0df912d, type: BlockRequests, event: persisted block run request from ppl 38a1b4b3-0"},{"event":"cmd_output","timestamp":1607098415,"output":"04d-496e-95b8-c57735227733 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQuerie"},{"event":"cmd_output","timestamp":1607098415,"output":"s.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:13:35.994 [info] block_id: 51fd13b3-0e9a-43dc-9524-b6f9c"},{"event":"cmd_output","timestamp":1607098415,"output":"0df912d, type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.B"},{"event":"cmd_output","timestamp":1607098415,"output":"lock.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:13:35.997 [info] Block 0 of pipeline"},{"event":"cmd_output","timestamp":1607098415,"output":" with id: 38a1b4b3-004d-496e-95b8-c57735227733 scheduled in block service with id: : \"51fd13b3-0e9a-"},{"event":"cmd_output","timestamp":1607098415,"output":"43dc-9524-b6f9c0df912d\"\n\u001b[0m\u001b[22m\n16:13:35.998 [info] ppl_id: 38a1b4b3-004d-496e-95b8-c5773522773"},{"event":"cmd_output","timestamp":1607098415,"output":"3, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098416,"output":"n: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:36.002 [info] block_id: 51fd1"},{"event":"cmd_output","timestamp":1607098416,"output":"3b3-0e9a-43dc-9524-b6f9c0df912d, type: BlockRequests, event: persisted build and sub_ppl details for"},{"event":"cmd_output","timestamp":1607098416,"output":" block_request: 51fd13b3-0e9a-43dc-9524-b6f9c0df912d, origin: Elixir.Block.BlockRequests.Model.Block"},{"event":"cmd_output","timestamp":1607098416,"output":"RequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:13:36.003 [info] block_id: 51fd13b3-0e9a-43dc-"},{"event":"cmd_output","timestamp":1607098416,"output":"9524-b6f9c0df912d, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Bl"},{"event":"cmd_output","timestamp":1607098416,"output":"ock.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:13:36.005 [info] block_id:"},{"event":"cmd_output","timestamp":1607098416,"output":" 51fd13b3-0e9a-43dc-9524-b6f9c0df912d, type: Blocks, state: running, event: exit_scheduling, recover"},{"event":"cmd_output","timestamp":1607098416,"output":"y_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:36.015 [info]"},{"event":"cmd_output","timestamp":1607098416,"output":" block_id: 51fd13b3-0e9a-43dc-9524-b6f9c0df912d, type: Tasks, state: running, event: exit_schedulin"},{"event":"cmd_output","timestamp":1607098416,"output":"g, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:36."},{"event":"cmd_output","timestamp":1607098416,"output":"268 [info] block_id: 51fd13b3-0e9a-43dc-9524-b6f9c0df912d, type: Tasks, state: done, event: exit_sc"},{"event":"cmd_output","timestamp":1607098416,"output":"heduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098416,"output":":13:36.272 [info] block_id: 51fd13b3-0e9a-43dc-9524-b6f9c0df912d, type: Blocks, state: done, event:"},{"event":"cmd_output","timestamp":1607098416,"output":" exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098416,"output":"[22m\n16:13:36.277 [info] ppl_id: 38a1b4b3-004d-496e-95b8-c57735227733, block_id: 51fd13b3-0e9a-43d"},{"event":"cmd_output","timestamp":1607098416,"output":"c-9524-b6f9c0df912d, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_sched"},{"event":"cmd_output","timestamp":1607098416,"output":"uling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13"},{"event":"cmd_output","timestamp":1607098416,"output":":36.281 [info] PplBlocks WaitingState STM is scheduling block 1 from pipeline: \"38a1b4b3-004d-496e-"},{"event":"cmd_output","timestamp":1607098416,"output":"95b8-c57735227733\"\n\u001b[0m\u001b[22m\n16:13:36.287 [info] block_id: 4aad2599-360f-471e-948a-5fd65eaa09d9, "},{"event":"cmd_output","timestamp":1607098416,"output":"type: BlockRequests, event: persisted block run request from ppl 38a1b4b3-004d-496e-95b8-c5773522773"},{"event":"cmd_output","timestamp":1607098416,"output":"3 for block 1, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35)"},{"event":"cmd_output","timestamp":1607098416,"output":", \n\u001b[0m\u001b[22m\n16:13:36.289 [info] block_id: 4aad2599-360f-471e-948a-5fd65eaa09d9, type: Blocks, st"},{"event":"cmd_output","timestamp":1607098416,"output":"ate: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQ"},{"event":"cmd_output","timestamp":1607098416,"output":"ueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:13:36.289 [info] Block 1 of pipeline with id: 38a1b4b3-004d-4"},{"event":"cmd_output","timestamp":1607098416,"output":"96e-95b8-c57735227733 scheduled in block service with id: : \"4aad2599-360f-471e-948a-5fd65eaa09d9\"\n"},{"event":"cmd_output","timestamp":1607098416,"output":"\u001b[0m\u001b[22m\n16:13:36.290 [info] ppl_id: 38a1b4b3-004d-496e-95b8-c57735227733, type: PplBlocks, block"},{"event":"cmd_output","timestamp":1607098416,"output":"_index: 1, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl"},{"event":"cmd_output","timestamp":1607098416,"output":".log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:36.300 [info] block_id: 4aad2599-360f-471e-948a-5fd65e"},{"event":"cmd_output","timestamp":1607098416,"output":"aa09d9, type: BlockRequests, event: persisted build and sub_ppl details for block_request: 4aad2599-"},{"event":"cmd_output","timestamp":1607098416,"output":"360f-471e-948a-5fd65eaa09d9, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_bu"},{"event":"cmd_output","timestamp":1607098416,"output":"ild/2(L41), \n\u001b[0m\u001b[22m\n16:13:36.302 [info] block_id: 4aad2599-360f-471e-948a-5fd65eaa09d9, type: "},{"event":"cmd_output","timestamp":1607098416,"output":"Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.Ini"},{"event":"cmd_output","timestamp":1607098416,"output":"tializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:13:36.304 [info] block_id: 4aad2599-360f-471e-948a-"},{"event":"cmd_output","timestamp":1607098416,"output":"5fd65eaa09d9, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098416,"output":"r.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:36.313 [info] block_id: 4aad2599-360f"},{"event":"cmd_output","timestamp":1607098416,"output":"-471e-948a-5fd65eaa09d9, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098416,"output":"gin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:36.478 [info] block_id: 4aa"},{"event":"cmd_output","timestamp":1607098416,"output":"d2599-360f-471e-948a-5fd65eaa09d9, type: Tasks, state: done, event: exit_scheduling, recovery_count:"},{"event":"cmd_output","timestamp":1607098416,"output":" 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:36.485 [info] block_"},{"event":"cmd_output","timestamp":1607098416,"output":"id: 4aad2599-360f-471e-948a-5fd65eaa09d9, type: Blocks, state: done, event: exit_scheduling, recover"},{"event":"cmd_output","timestamp":1607098416,"output":"y_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:36.490 [info]"},{"event":"cmd_output","timestamp":1607098416,"output":" ppl_id: 38a1b4b3-004d-496e-95b8-c57735227733, block_id: 4aad2599-360f-471e-948a-5fd65eaa09d9, type"},{"event":"cmd_output","timestamp":1607098416,"output":": PplBlocks, block_index: 1, state: done, result: passed, event: exit_scheduling, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098416,"output":" origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:36.500 [info] ppl_id: 3"},{"event":"cmd_output","timestamp":1607098416,"output":"8a1b4b3-004d-496e-95b8-c57735227733, type: Ppls, state: done, result: passed, event: exit_scheduling"},{"event":"cmd_output","timestamp":1607098416,"output":", recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test Al"},{"event":"cmd_output","timestamp":1607098416,"output":"l looper have set execut_now() call for next step on state transition (942.7ms)\u001b[0m\n\nPpl.E2E.FreeT"},{"event":"cmd_output","timestamp":1607098416,"output":"opology.Test\n * test Free topology pipeline with failing block\u001b[22m\n16:13:36.614 [info] Request:"},{"event":"cmd_output","timestamp":1607098416,"output":" 'run: %{\"branch_id\" => \"e26cecdd-b4c7-4fb4-8497-37bf9bcde1b1\", \"branch_name\" => \"master\", \"commit_s"},{"event":"cmd_output","timestamp":1607098416,"output":"ha\" => \"75891a4469\", \"file_name\" => \"semaphore.yml\", \"hook_id\" => \"a9eb0650-364b-11eb-ad28-525400546"},{"event":"cmd_output","timestamp":1607098416,"output":"4e2\", \"label\" => \"master\", \"organization_id\" => \"d207feee-45be-4253-b400-e7730cd1006d\", \"owner\" => \""},{"event":"cmd_output","timestamp":1607098416,"output":"rt\", \"project_id\" => \"f076373c-9fe2-403c-a288-b46f55e12811\", \"repo_name\" => \"14_free_topology_failin"},{"event":"cmd_output","timestamp":1607098416,"output":"g_block\", \"request_token\" => \"a9eafe76-364b-11eb-bf64-5254005464e2\", \"requester_id\" => \"7cb569a6-d4a"},{"event":"cmd_output","timestamp":1607098416,"output":"e-448f-ba6a-dd2aba38df5d\", \"service\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"client"},{"event":"cmd_output","timestamp":1607098416,"output":"_secret\"], \"wf_id\" => \"4f261c15-74eb-42fc-9f1e-1b707d837001\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098416,"output":"22m\n16:13:36.616 [info] ppl_id: a5fe6600-a728-4411-a33b-4b9f63cf2862, type: PplRequests, event: pe"},{"event":"cmd_output","timestamp":1607098416,"output":"rsisted schedule request with request_token: a9eafe76-364b-11eb-bf64-5254005464e2, origin: Elixir.Pp"},{"event":"cmd_output","timestamp":1607098416,"output":"l.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:13:36.619 [info] pp"},{"event":"cmd_output","timestamp":1607098416,"output":"l_id: a5fe6600-a728-4411-a33b-4b9f63cf2862, type: Ppls, state: initializing, event: initializing, re"},{"event":"cmd_output","timestamp":1607098416,"output":"covery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098416,"output":":13:36.622 [info] Project f076373c-9fe2-403c-a288-b46f55e12811 and branch masterlatest_wf details u"},{"event":"cmd_output","timestamp":1607098416,"output":"pdated: \"wf_id: 4f261c15-74eb-42fc-9f1e-1b707d837001, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:13:36.623 [info] "},{"event":"cmd_output","timestamp":1607098416,"output":" Persisted ppl_sub_init for pipeline with ppl_id: a5fe6600-a728-4411-a33b-4b9f63cf2862: %Ppl.PplSubI"},{"event":"cmd_output","timestamp":1607098416,"output":"nits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_"},{"event":"cmd_output","timestamp":1607098416,"output":"id: nil, error_description: nil, id: 312, in_scheduling: false, init_type: \"regular\", inserted_at: ~"},{"event":"cmd_output","timestamp":1607098416,"output":"N[2020-12-04 16:13:36.622545], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"a5fe6600-a728-4411-a33b-4b9f63cf2862\", recovery_count: 0, result: "},{"event":"cmd_output","timestamp":1607098416,"output":"nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, upda"},{"event":"cmd_output","timestamp":1607098416,"output":"ted_at: ~N[2020-12-04 16:13:36.622552]}\n\u001b[0m\u001b[22m\n16:13:36.626 [info] Periodic from module Elixir"},{"event":"cmd_output","timestamp":1607098416,"output":".Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: per"},{"event":"cmd_output","timestamp":1607098416,"output":"iod: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recur"},{"event":"cmd_output","timestamp":1607098416,"output":"ring args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query"},{"event":"cmd_output","timestamp":1607098416,"output":": Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl."},{"event":"cmd_output","timestamp":1607098416,"output":"Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, "},{"event":"cmd_output","timestamp":1607098416,"output":":updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_superviso"},{"event":"cmd_output","timestamp":1607098416,"output":"r: :skip}\n\u001b[0m\u001b[22m\n16:13:36.626 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingSt"},{"event":"cmd_output","timestamp":1607098416,"output":"ate with name Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder"},{"event":"cmd_output","timestamp":1607098416,"output":"-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"pending\", \"que"},{"event":"cmd_output","timestamp":1607098416,"output":"uing\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: "},{"event":"cmd_output","timestamp":1607098416,"output":"\"pending\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Pp"},{"event":"cmd_output","timestamp":1607098416,"output":"l.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl"},{"event":"cmd_output","timestamp":1607098416,"output":"_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:13:36.626 [in"},{"event":"cmd_output","timestamp":1607098416,"output":"fo] Periodic from module Elixir.Ppl.Ppls.STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandl"},{"event":"cmd_output","timestamp":1607098416,"output":"er.QueuingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Queui"},{"event":"cmd_output","timestamp":1607098416,"output":"ngState\"]}, recurring args: %{allowed_states: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, "},{"event":"cmd_output","timestamp":1607098416,"output":"initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", publisher_cb: #Function<0.125102843/1"},{"event":"cmd_output","timestamp":1607098416,"output":" in Ppl.Ppls.STMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_reques"},{"event":"cmd_output","timestamp":1607098416,"output":"t, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_superv"},{"event":"cmd_output","timestamp":1607098416,"output":"isor: :skip}\n\u001b[0m\u001b[22m\n16:13:36.627 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.Runnin"},{"event":"cmd_output","timestamp":1607098416,"output":"gState with name Elixir.Ppl.Ppls.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.behol"},{"event":"cmd_output","timestamp":1607098416,"output":"der-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \""},{"event":"cmd_output","timestamp":1607098416,"output":"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"runni"},{"event":"cmd_output","timestamp":1607098416,"output":"ng\", publisher_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler.RunningState.args/0>, repo: Ppl.Ect"},{"event":"cmd_output","timestamp":1607098416,"output":"oRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id],"},{"event":"cmd_output","timestamp":1607098416,"output":" schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:13:36.628 [info] "},{"event":"cmd_output","timestamp":1607098416,"output":"Periodic from module Elixir.Ppl.Ppls.STMHandler.StoppingState with name Elixir.Ppl.Ppls.STMHandler.S"},{"event":"cmd_output","timestamp":1607098416,"output":"toppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Stopping"},{"event":"cmd_output","timestamp":1607098416,"output":"State\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_quer"},{"event":"cmd_output","timestamp":1607098416,"output":"y: Ppl.Ppls.Model.Ppls, observed_state: \"stopping\", publisher_cb: #Function<0.71803493/1 in Ppl.Ppls"},{"event":"cmd_output","timestamp":1607098416,"output":".STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated"},{"event":"cmd_output","timestamp":1607098416,"output":"_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip"},{"event":"cmd_output","timestamp":1607098416,"output":"}\n\u001b[0m\u001b[22m\n16:13:36.628 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedSta"},{"event":"cmd_output","timestamp":1607098416,"output":"te with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.be"},{"event":"cmd_output","timestamp":1607098416,"output":"holder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args: %{allowed_states: [\"f"},{"event":"cmd_output","timestamp":1607098416,"output":"etching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_s"},{"event":"cmd_output","timestamp":1607098416,"output":"tate: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :upda"},{"event":"cmd_output","timestamp":1607098416,"output":"ted_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_"},{"event":"cmd_output","timestamp":1607098416,"output":"supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:36.629 [info] Periodic from module Elixir.Ppl.PplSubInits.STMH"},{"event":"cmd_output","timestamp":1607098416,"output":"andler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 ms, me"},{"event":"cmd_output","timestamp":1607098416,"output":"tric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %"},{"event":"cmd_output","timestamp":1607098416,"output":"{allowed_states: [\"regular_init\", \"compilation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.P"},{"event":"cmd_output","timestamp":1607098416,"output":"plSubInits.Model.PplSubInits, observed_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, r"},{"event":"cmd_output","timestamp":1607098416,"output":"eturning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema:"},{"event":"cmd_output","timestamp":1607098416,"output":" Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:36.629 [info] Periodi"},{"event":"cmd_output","timestamp":1607098416,"output":"c from module Elixir.Ppl.PplSubInits.STMHandler.CompilationState with name Elixir.Ppl.PplSubInits.ST"},{"event":"cmd_output","timestamp":1607098416,"output":"MHandler.CompilationState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits"},{"event":"cmd_output","timestamp":1607098416,"output":"-STMHandler-CompilationState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \""},{"event":"cmd_output","timestamp":1607098416,"output":"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed"},{"event":"cmd_output","timestamp":1607098416,"output":"_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request,"},{"event":"cmd_output","timestamp":1607098416,"output":" :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits,"},{"event":"cmd_output","timestamp":1607098416,"output":" task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:36.630 [info] Periodic from module Elixir.Ppl.PplSubInit"},{"event":"cmd_output","timestamp":1607098416,"output":"s.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period"},{"event":"cmd_output","timestamp":1607098416,"output":": 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, re"},{"event":"cmd_output","timestamp":1607098416,"output":"curring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model."},{"event":"cmd_output","timestamp":1607098416,"output":"PplSubInits, observed_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:i"},{"event":"cmd_output","timestamp":1607098416,"output":"d, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubIn"},{"event":"cmd_output","timestamp":1607098416,"output":"its.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:36.630 [info] Periodic from module"},{"event":"cmd_output","timestamp":1607098416,"output":" Elixir.Ppl.PplBlocks.STMHandler.InitializingState with name Elixir.Ppl.PplBlocks.STMHandler.Initial"},{"event":"cmd_output","timestamp":1607098416,"output":"izingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-Initi"},{"event":"cmd_output","timestamp":1607098416,"output":"alizingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"waiting\", \"done\"], cooling_time"},{"event":"cmd_output","timestamp":1607098416,"output":"_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"initializing\", publisher_cb:"},{"event":"cmd_output","timestamp":1607098416,"output":" :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :reco"},{"event":"cmd_output","timestamp":1607098416,"output":"very_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n"},{"event":"cmd_output","timestamp":1607098416,"output":"\u001b[0m\u001b[22m\n16:13:36.631 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.WaitingState wi"},{"event":"cmd_output","timestamp":1607098416,"output":"th name Elixir.Ppl.PplBlocks.STMHandler.WaitingState :: period: 1000 ms, metric_name: {\"Ppl.beholder"},{"event":"cmd_output","timestamp":1607098416,"output":"-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurring args: %{allowed_states: [\"waiting\","},{"event":"cmd_output","timestamp":1607098416,"output":" \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_sta"},{"event":"cmd_output","timestamp":1607098416,"output":"te: \"waiting\", publisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>,"},{"event":"cmd_output","timestamp":1607098416,"output":" repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_co"},{"event":"cmd_output","timestamp":1607098416,"output":"unt, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098416,"output":"2m\n16:13:36.631 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.RunningState with name"},{"event":"cmd_output","timestamp":1607098416,"output":" Elixir.Ppl.PplBlocks.STMHandler.RunningState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_u"},{"event":"cmd_output","timestamp":1607098416,"output":"p\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopp"},{"event":"cmd_output","timestamp":1607098416,"output":"ing\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \""},{"event":"cmd_output","timestamp":1607098416,"output":"running\", publisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0>, rep"},{"event":"cmd_output","timestamp":1607098416,"output":"o: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count,"},{"event":"cmd_output","timestamp":1607098416,"output":" :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n"},{"event":"cmd_output","timestamp":1607098416,"output":"\u001b[0m\u001b[22m\n16:13:36.632 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.StoppingState w"},{"event":"cmd_output","timestamp":1607098416,"output":"ith name Elixir.Ppl.PplBlocks.STMHandler.StoppingState :: period: 1000 ms, metric_name: {\"Ppl.behold"},{"event":"cmd_output","timestamp":1607098416,"output":"er-wake_up\", [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stoppi"},{"event":"cmd_output","timestamp":1607098416,"output":"ng\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"s"},{"event":"cmd_output","timestamp":1607098416,"output":"topping\", publisher_cb: #Function<0.104215991/1 in Ppl.PplBlocks.STMHandler.StoppingState.args/0>, r"},{"event":"cmd_output","timestamp":1607098416,"output":"epo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_coun"},{"event":"cmd_output","timestamp":1607098416,"output":"t, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}"},{"event":"cmd_output","timestamp":1607098416,"output":"\n\u001b[0m\u001b[22m\n16:13:36.632 [info] Periodic from module Elixir.Block.Blocks.STMHandler.InitializingSt"},{"event":"cmd_output","timestamp":1607098416,"output":"ate with name Elixir.Block.Blocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl"},{"event":"cmd_output","timestamp":1607098416,"output":".beholder-wake_up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states"},{"event":"cmd_output","timestamp":1607098416,"output":": [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Blocks.Model.Blocks, observed_state"},{"event":"cmd_output","timestamp":1607098416,"output":": \"initializing\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :u"},{"event":"cmd_output","timestamp":1607098416,"output":"pdated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: "},{"event":"cmd_output","timestamp":1607098416,"output":":skip}\n\u001b[0m\u001b[22m\n16:13:36.633 [info] Periodic from module Elixir.Block.Blocks.STMHandler.RunningS"},{"event":"cmd_output","timestamp":1607098416,"output":"tate with name Elixir.Block.Blocks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beh"},{"event":"cmd_output","timestamp":1607098416,"output":"older-wake_up\", [\"Block-Blocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"runni"},{"event":"cmd_output","timestamp":1607098416,"output":"ng\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_s"},{"event":"cmd_output","timestamp":1607098416,"output":"tate: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :up"},{"event":"cmd_output","timestamp":1607098416,"output":"dated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :"},{"event":"cmd_output","timestamp":1607098416,"output":"skip}\n\u001b[0m\u001b[22m\n16:13:36.633 [info] Periodic from module Elixir.Block.Blocks.STMHandler.StoppingS"},{"event":"cmd_output","timestamp":1607098416,"output":"tate with name Elixir.Block.Blocks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.be"},{"event":"cmd_output","timestamp":1607098416,"output":"holder-wake_up\", [\"Block-Blocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"sto"},{"event":"cmd_output","timestamp":1607098416,"output":"pping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"st"},{"event":"cmd_output","timestamp":1607098416,"output":"opping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at"},{"event":"cmd_output","timestamp":1607098416,"output":", :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b"},{"event":"cmd_output","timestamp":1607098416,"output":"[0m\u001b[22m\n16:13:36.634 [info] Periodic from module Elixir.Block.Tasks.STMHandler.PendingState with "},{"event":"cmd_output","timestamp":1607098416,"output":"name Elixir.Block.Tasks.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_"},{"event":"cmd_output","timestamp":1607098416,"output":"up\", [\"Block-Tasks-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"]"},{"event":"cmd_output","timestamp":1607098416,"output":", cooling_time_sec: 0, initial_query: Block.Tasks.Model.Tasks, observed_state: \"pending\", publisher_"},{"event":"cmd_output","timestamp":1607098416,"output":"cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery"},{"event":"cmd_output","timestamp":1607098416,"output":"_count, :block_id, :build_request_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0"},{"event":"cmd_output","timestamp":1607098416,"output":"m\u001b[22m\n16:13:36.634 [info] Periodic from module Elixir.Block.Tasks.STMHandler.RunningState with na"},{"event":"cmd_output","timestamp":1607098416,"output":"me Elixir.Block.Tasks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up"},{"event":"cmd_output","timestamp":1607098416,"output":"\", [\"Block-Tasks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping"},{"event":"cmd_output","timestamp":1607098416,"output":"\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"running\","},{"event":"cmd_output","timestamp":1607098416,"output":" publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state"},{"event":"cmd_output","timestamp":1607098416,"output":", :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098416,"output":"16:13:36.635 [info] Periodic from module Elixir.Block.Tasks.STMHandler.StoppingState with name Elix"},{"event":"cmd_output","timestamp":1607098416,"output":"ir.Block.Tasks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"B"},{"event":"cmd_output","timestamp":1607098416,"output":"lock-Tasks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cool"},{"event":"cmd_output","timestamp":1607098416,"output":"ing_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"stopping\", publisher_cb: "},{"event":"cmd_output","timestamp":1607098416,"output":":skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_cou"},{"event":"cmd_output","timestamp":1607098416,"output":"nt, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:36.740 [i"},{"event":"cmd_output","timestamp":1607098416,"output":"nfo] ppl_id: a5fe6600-a728-4411-a33b-4b9f63cf2862, type: PplRequests, event: persisted source_args "},{"event":"cmd_output","timestamp":1607098416,"output":"for pipeline: a5fe6600-a728-4411-a33b-4b9f63cf2862, origin: Elixir.Ppl.PplRequests.Model.PplRequests"},{"event":"cmd_output","timestamp":1607098416,"output":"Queries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:13:36.742 [info] ppl_id: a5fe6600-a728-4411-a33b-4b9f"},{"event":"cmd_output","timestamp":1607098416,"output":"63cf2862, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098416,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:36.755 [info] ppl_id: a5fe6600-a728"},{"event":"cmd_output","timestamp":1607098416,"output":"-4411-a33b-4b9f63cf2862, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_co"},{"event":"cmd_output","timestamp":1607098416,"output":"unt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:36.782 [info] pp"},{"event":"cmd_output","timestamp":1607098416,"output":"l_id: a5fe6600-a728-4411-a33b-4b9f63cf2862, type: PplRequests, event: persisted definition for reque"},{"event":"cmd_output","timestamp":1607098416,"output":"st with request_token: a9eafe76-364b-11eb-bf64-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.Pp"},{"event":"cmd_output","timestamp":1607098416,"output":"lRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:13:36.785 [info] Queue persisted: {:ok, "},{"event":"cmd_output","timestamp":1607098416,"output":"%Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12"},{"event":"cmd_output","timestamp":1607098416,"output":"-04 16:13:36.783771], name: \"master-.semaphore/semaphore.yml\", organization_id: \"d207feee-45be-4253-"},{"event":"cmd_output","timestamp":1607098416,"output":"b400-e7730cd1006d\", project_id: \"f076373c-9fe2-403c-a288-b46f55e12811\", queue_id: \"837afc2d-cf9b-4c7"},{"event":"cmd_output","timestamp":1607098416,"output":"e-9921-1f1f5c147d52\", scope: \"project\", updated_at: ~N[2020-12-04 16:13:36.783779], user_generated: "},{"event":"cmd_output","timestamp":1607098416,"output":"false}}\n\u001b[0m\u001b[22m\n16:13:36.797 [info] ppl_id: not_available, event: created, origin: Elixir.Ppl.P"},{"event":"cmd_output","timestamp":1607098416,"output":"plSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:36.797 [info] event: cre"},{"event":"cmd_output","timestamp":1607098416,"output":"ated, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13"},{"event":"cmd_output","timestamp":1607098416,"output":":36.797 [info] ppl_id: a5fe6600-a728-4411-a33b-4b9f63cf2862, type: PplBlocks, block_index: 0, state"},{"event":"cmd_output","timestamp":1607098416,"output":": initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.Regular"},{"event":"cmd_output","timestamp":1607098416,"output":"InitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:36.797 [info] ppl_id: a5fe6600-a728-4411-a33b-4b9f63c"},{"event":"cmd_output","timestamp":1607098416,"output":"f2862, type: PplBlocks, block_index: 1, state: initializing, event: created, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098416,"output":"in: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:36.797 [i"},{"event":"cmd_output","timestamp":1607098416,"output":"nfo] ppl_id: a5fe6600-a728-4411-a33b-4b9f63cf2862, type: PplBlocks, block_index: 2, state: initiali"},{"event":"cmd_output","timestamp":1607098416,"output":"zing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState."},{"event":"cmd_output","timestamp":1607098416,"output":"all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:36.797 [info] ppl_id: a5fe6600-a728-4411-a33b-4b9f63cf2862, typ"},{"event":"cmd_output","timestamp":1607098416,"output":"e: PplBlocks, block_index: 3, state: initializing, event: created, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098416,"output":".Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:36.797 [info] ppl_"},{"event":"cmd_output","timestamp":1607098416,"output":"id: a5fe6600-a728-4411-a33b-4b9f63cf2862, type: PplBlocks, block_index: 4, state: initializing, even"},{"event":"cmd_output","timestamp":1607098416,"output":"t: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1("},{"event":"cmd_output","timestamp":1607098416,"output":"L105), \n\u001b[0m\u001b[22m\n16:13:36.798 [info] ppl_id: a5fe6600-a728-4411-a33b-4b9f63cf2862, type: PplSubI"},{"event":"cmd_output","timestamp":1607098416,"output":"nits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper."},{"event":"cmd_output","timestamp":1607098416,"output":"STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:36.804 [info] ppl_id: a5fe6600-a728-4411-a33b-"},{"event":"cmd_output","timestamp":1607098416,"output":"4b9f63cf2862, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_coun"},{"event":"cmd_output","timestamp":1607098416,"output":"t: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:36.807 [info] ppl_"},{"event":"cmd_output","timestamp":1607098416,"output":"id: a5fe6600-a728-4411-a33b-4b9f63cf2862, type: Ppls, state: pending, event: exit_scheduling, recove"},{"event":"cmd_output","timestamp":1607098416,"output":"ry_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:36.809 [info"},{"event":"cmd_output","timestamp":1607098416,"output":"] ppl_id: a5fe6600-a728-4411-a33b-4b9f63cf2862, type: PplBlocks, block_index: 1, state: waiting, ev"},{"event":"cmd_output","timestamp":1607098416,"output":"ent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b"},{"event":"cmd_output","timestamp":1607098416,"output":"[0m\u001b[22m\n16:13:36.813 [info] ppl_id: a5fe6600-a728-4411-a33b-4b9f63cf2862, type: Ppls, state: queu"},{"event":"cmd_output","timestamp":1607098416,"output":"ing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L9"},{"event":"cmd_output","timestamp":1607098416,"output":"0), \n\u001b[0m\u001b[22m\n16:13:36.815 [info] ppl_id: a5fe6600-a728-4411-a33b-4b9f63cf2862, type: PplBlocks,"},{"event":"cmd_output","timestamp":1607098416,"output":" block_index: 2, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.ST"},{"event":"cmd_output","timestamp":1607098416,"output":"M.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:36.823 [info] ppl_id: a5fe6600-a728-4411-a33b-4b"},{"event":"cmd_output","timestamp":1607098416,"output":"9f63cf2862, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Lo"},{"event":"cmd_output","timestamp":1607098416,"output":"oper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:36.824 [info] ppl_id: a5fe6600-a728-4411-"},{"event":"cmd_output","timestamp":1607098416,"output":"a33b-4b9f63cf2862, type: PplBlocks, block_index: 3, state: waiting, event: exit_scheduling, recovery"},{"event":"cmd_output","timestamp":1607098416,"output":"_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:36.834 [info] "},{"event":"cmd_output","timestamp":1607098416,"output":" PplBlocks WaitingState STM is scheduling block 3 from pipeline: \"a5fe6600-a728-4411-a33b-4b9f63cf28"},{"event":"cmd_output","timestamp":1607098416,"output":"62\"\n\u001b[0m\u001b[22m\n16:13:36.838 [info] ppl_id: a5fe6600-a728-4411-a33b-4b9f63cf2862, type: PplBlocks, "},{"event":"cmd_output","timestamp":1607098416,"output":"block_index: 4, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM"},{"event":"cmd_output","timestamp":1607098416,"output":".Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:36.848 [info] block_id: f54a039b-3eb4-48cc-a43b-3"},{"event":"cmd_output","timestamp":1607098416,"output":"692183afe42, type: BlockRequests, event: persisted block run request from ppl a5fe6600-a728-4411-a33"},{"event":"cmd_output","timestamp":1607098416,"output":"b-4b9f63cf2862 for block 3, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_re"},{"event":"cmd_output","timestamp":1607098416,"output":"sponse/4(L35), \n\u001b[0m\u001b[22m\n16:13:36.850 [info] block_id: f54a039b-3eb4-48cc-a43b-3692183afe42, typ"},{"event":"cmd_output","timestamp":1607098416,"output":"e: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks."},{"event":"cmd_output","timestamp":1607098416,"output":"Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:13:36.852 [info] Block 3 of pipeline with id: a5"},{"event":"cmd_output","timestamp":1607098416,"output":"fe6600-a728-4411-a33b-4b9f63cf2862 scheduled in block service with id: : \"f54a039b-3eb4-48cc-a43b-36"},{"event":"cmd_output","timestamp":1607098416,"output":"92183afe42\"\n\u001b[0m\u001b[22m\n16:13:36.854 [info] ppl_id: a5fe6600-a728-4411-a33b-4b9f63cf2862, type: Ppl"},{"event":"cmd_output","timestamp":1607098416,"output":"Blocks, block_index: 3, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Lo"},{"event":"cmd_output","timestamp":1607098416,"output":"oper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:36.857 [info] block_id: f54a039b-3eb4-48c"},{"event":"cmd_output","timestamp":1607098416,"output":"c-a43b-3692183afe42, type: BlockRequests, event: persisted build and sub_ppl details for block_reque"},{"event":"cmd_output","timestamp":1607098416,"output":"st: f54a039b-3eb4-48cc-a43b-3692183afe42, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQuer"},{"event":"cmd_output","timestamp":1607098416,"output":"ies.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:13:36.859 [info] PplBlocks WaitingState STM is scheduling "},{"event":"cmd_output","timestamp":1607098416,"output":"block 0 from pipeline: \"a5fe6600-a728-4411-a33b-4b9f63cf2862\"\n\u001b[0m\u001b[22m\n16:13:36.859 [info] block"},{"event":"cmd_output","timestamp":1607098416,"output":"_id: f54a039b-3eb4-48cc-a43b-3692183afe42, type: Tasks, state: pending, event: created, recovery_cou"},{"event":"cmd_output","timestamp":1607098416,"output":"nt: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:13:"},{"event":"cmd_output","timestamp":1607098416,"output":"36.861 [info] block_id: f54a039b-3eb4-48cc-a43b-3692183afe42, type: Blocks, state: running, event: "},{"event":"cmd_output","timestamp":1607098416,"output":"exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098416,"output":"22m\n16:13:36.864 [info] block_id: ff5edf06-90c5-4645-9760-3101acc03316, type: BlockRequests, event"},{"event":"cmd_output","timestamp":1607098416,"output":": persisted block run request from ppl a5fe6600-a728-4411-a33b-4b9f63cf2862 for block 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098416,"output":"xir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:13:36.86"},{"event":"cmd_output","timestamp":1607098416,"output":"5 [info] block_id: ff5edf06-90c5-4645-9760-3101acc03316, type: Blocks, state: initializing, event: "},{"event":"cmd_output","timestamp":1607098416,"output":"initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b["},{"event":"cmd_output","timestamp":1607098416,"output":"0m\u001b[22m\n16:13:36.867 [info] Block 0 of pipeline with id: a5fe6600-a728-4411-a33b-4b9f63cf2862 sche"},{"event":"cmd_output","timestamp":1607098416,"output":"duled in block service with id: : \"ff5edf06-90c5-4645-9760-3101acc03316\"\n\u001b[0m\u001b[22m\n16:13:36.874 [i"},{"event":"cmd_output","timestamp":1607098416,"output":"nfo] block_id: ff5edf06-90c5-4645-9760-3101acc03316, type: BlockRequests, event: persisted build an"},{"event":"cmd_output","timestamp":1607098416,"output":"d sub_ppl details for block_request: ff5edf06-90c5-4645-9760-3101acc03316, origin: Elixir.Block.Bloc"},{"event":"cmd_output","timestamp":1607098416,"output":"kRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:13:36.876 [info] ppl_id: "},{"event":"cmd_output","timestamp":1607098416,"output":"a5fe6600-a728-4411-a33b-4b9f63cf2862, type: PplBlocks, block_index: 0, state: running, event: exit_s"},{"event":"cmd_output","timestamp":1607098416,"output":"cheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098416,"output":"6:13:36.877 [info] block_id: f54a039b-3eb4-48cc-a43b-3692183afe42, type: Tasks, state: running, eve"},{"event":"cmd_output","timestamp":1607098416,"output":"nt: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b["},{"event":"cmd_output","timestamp":1607098416,"output":"0m\u001b[22m\n16:13:36.880 [info] block_id: ff5edf06-90c5-4645-9760-3101acc03316, type: Tasks, state: pe"},{"event":"cmd_output","timestamp":1607098416,"output":"nding, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.a"},{"event":"cmd_output","timestamp":1607098416,"output":"ll_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:13:36.882 [info] block_id: ff5edf06-90c5-4645-9760-3101acc03316, ty"},{"event":"cmd_output","timestamp":1607098416,"output":"pe: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Imp"},{"event":"cmd_output","timestamp":1607098416,"output":"l.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:36.895 [info] block_id: ff5edf06-90c5-4645-9760-3101a"},{"event":"cmd_output","timestamp":1607098416,"output":"cc03316, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loop"},{"event":"cmd_output","timestamp":1607098417,"output":"er.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:37.955 [info] block_id: ff5edf06-90c5-4645-"},{"event":"cmd_output","timestamp":1607098417,"output":"9760-3101acc03316, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098417,"output":"ir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:37.962 [info] block_id: ff5edf06-90c"},{"event":"cmd_output","timestamp":1607098417,"output":"5-4645-9760-3101acc03316, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098417,"output":"in: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:37.968 [info] ppl_id: a5fe66"},{"event":"cmd_output","timestamp":1607098417,"output":"00-a728-4411-a33b-4b9f63cf2862, block_id: ff5edf06-90c5-4645-9760-3101acc03316, type: PplBlocks, blo"},{"event":"cmd_output","timestamp":1607098417,"output":"ck_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098418,"output":"Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:38.068 [info] block_id: f54a039b-3eb4-4"},{"event":"cmd_output","timestamp":1607098418,"output":"8cc-a43b-3692183afe42, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098418,"output":"Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:38.073 [info] block_id: f54a039b"},{"event":"cmd_output","timestamp":1607098418,"output":"-3eb4-48cc-a43b-3692183afe42, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098418,"output":"origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:38.085 [info] ppl_id: a5"},{"event":"cmd_output","timestamp":1607098418,"output":"fe6600-a728-4411-a33b-4b9f63cf2862, block_id: f54a039b-3eb4-48cc-a43b-3692183afe42, type: PplBlocks,"},{"event":"cmd_output","timestamp":1607098418,"output":" block_index: 3, state: done, result: failed, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098418,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:38.090 [info] PplBlocks WaitingStat"},{"event":"cmd_output","timestamp":1607098418,"output":"e STM is scheduling block 1 from pipeline: \"a5fe6600-a728-4411-a33b-4b9f63cf2862\"\n\u001b[0m\u001b[22m\n16:13:"},{"event":"cmd_output","timestamp":1607098418,"output":"38.094 [info] ppl_id: a5fe6600-a728-4411-a33b-4b9f63cf2862, type: PplBlocks, block_index: 1, state:"},{"event":"cmd_output","timestamp":1607098418,"output":" done, result: canceled, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.l"},{"event":"cmd_output","timestamp":1607098418,"output":"og_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:38.097 [info] PplBlocks WaitingState STM is scheduling b"},{"event":"cmd_output","timestamp":1607098418,"output":"lock 4 from pipeline: \"a5fe6600-a728-4411-a33b-4b9f63cf2862\"\n\u001b[0m\u001b[22m\n16:13:38.100 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098418,"output":": a5fe6600-a728-4411-a33b-4b9f63cf2862, type: PplBlocks, block_index: 4, state: done, result: cancel"},{"event":"cmd_output","timestamp":1607098418,"output":"ed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90"},{"event":"cmd_output","timestamp":1607098418,"output":"), \n\u001b[0m\u001b[22m\n16:13:38.103 [info] PplBlocks WaitingState STM is scheduling block 2 from pipeline:"},{"event":"cmd_output","timestamp":1607098418,"output":" \"a5fe6600-a728-4411-a33b-4b9f63cf2862\"\n\u001b[0m\u001b[22m\n16:13:38.106 [info] ppl_id: a5fe6600-a728-4411-"},{"event":"cmd_output","timestamp":1607098418,"output":"a33b-4b9f63cf2862, type: PplBlocks, block_index: 2, state: done, result: canceled, event: exit_sched"},{"event":"cmd_output","timestamp":1607098418,"output":"uling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13"},{"event":"cmd_output","timestamp":1607098418,"output":":38.112 [info] ppl_id: a5fe6600-a728-4411-a33b-4b9f63cf2862, type: Ppls, state: done, result: faile"},{"event":"cmd_output","timestamp":1607098418,"output":"d, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90)"},{"event":"cmd_output","timestamp":1607098418,"output":", \n\u001b[0m\u001b[32m\r * test Free topology pipeline with failing block (1702.2ms)\u001b[0m\n * test Free topol"},{"event":"cmd_output","timestamp":1607098418,"output":"ogy pipeline passes\u001b[22m\n16:13:38.326 [info] Request: 'run: %{\"branch_id\" => \"6ee6375e-6e5f-4686-b"},{"event":"cmd_output","timestamp":1607098418,"output":"745-2c92d990ba68\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"semaphor"},{"event":"cmd_output","timestamp":1607098418,"output":"e.yml\", \"hook_id\" => \"aaf03d68-364b-11eb-8cd4-5254005464e2\", \"label\" => \"master\", \"organization_id\" "},{"event":"cmd_output","timestamp":1607098418,"output":"=> \"9eac4f44-e510-4992-b6cd-c8db47714845\", \"owner\" => \"rt\", \"project_id\" => \"e08a15eb-d37e-498b-bbab"},{"event":"cmd_output","timestamp":1607098418,"output":"-97aea956f2f2\", \"repo_name\" => \"13_free_topology\", \"request_token\" => \"aaf0352a-364b-11eb-979c-52540"},{"event":"cmd_output","timestamp":1607098418,"output":"05464e2\", \"requester_id\" => \"1f5d8b16-102c-46d1-bb5b-fb3b76fdaf19\", \"service\" => \"local\", \"suppresse"},{"event":"cmd_output","timestamp":1607098418,"output":"d_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"6dd98aea-747d-4412-a741-ddec06aa297e"},{"event":"cmd_output","timestamp":1607098418,"output":"\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:13:38.329 [info] ppl_id: b73b1a95-1240-49e5-84fc-8"},{"event":"cmd_output","timestamp":1607098418,"output":"0d5b6bdf12b, type: PplRequests, event: persisted schedule request with request_token: aaf0352a-364b-"},{"event":"cmd_output","timestamp":1607098418,"output":"11eb-979c-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L"},{"event":"cmd_output","timestamp":1607098418,"output":"55), \n\u001b[0m\u001b[22m\n16:13:38.331 [info] ppl_id: b73b1a95-1240-49e5-84fc-80d5b6bdf12b, type: Ppls, sta"},{"event":"cmd_output","timestamp":1607098418,"output":"te: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries."},{"event":"cmd_output","timestamp":1607098418,"output":"process_response/2(L124), \n\u001b[0m\u001b[22m\n16:13:38.340 [info] Project e08a15eb-d37e-498b-bbab-97aea956"},{"event":"cmd_output","timestamp":1607098418,"output":"f2f2 and branch masterlatest_wf details updated: \"wf_id: 6dd98aea-747d-4412-a741-ddec06aa297e, wf_nu"},{"event":"cmd_output","timestamp":1607098418,"output":"mber: 1\"\n\u001b[0m\u001b[22m\n16:13:38.341 [info] Persisted ppl_sub_init for pipeline with ppl_id: b73b1a95-"},{"event":"cmd_output","timestamp":1607098418,"output":"1240-49e5-84fc-80d5b6bdf12b: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loa"},{"event":"cmd_output","timestamp":1607098418,"output":"ded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 313, in_scheduling: fa"},{"event":"cmd_output","timestamp":1607098418,"output":"lse, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:13:38.340474], pipeline_requests: #Ecto.Ass"},{"event":"cmd_output","timestamp":1607098418,"output":"ociation.NotLoaded, ppl_id: \"b73b1a95-1240-49e5-84fc-8"},{"event":"cmd_output","timestamp":1607098418,"output":"0d5b6bdf12b\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_reques"},{"event":"cmd_output","timestamp":1607098418,"output":"t: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:13:38.340480]}\n\u001b[0m\u001b[22m\n16:13:3"},{"event":"cmd_output","timestamp":1607098418,"output":"8.344 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098418,"output":".Ppls.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Pp"},{"event":"cmd_output","timestamp":1607098418,"output":"ls-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"pending\", \"d"},{"event":"cmd_output","timestamp":1607098418,"output":"one\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publ"},{"event":"cmd_output","timestamp":1607098418,"output":"isher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRe"},{"event":"cmd_output","timestamp":1607098418,"output":"po, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], sc"},{"event":"cmd_output","timestamp":1607098418,"output":"hema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:38.344 [info] Periodic from mo"},{"event":"cmd_output","timestamp":1607098418,"output":"dule Elixir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler.PendingState :: pe"},{"event":"cmd_output","timestamp":1607098418,"output":"riod: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring"},{"event":"cmd_output","timestamp":1607098418,"output":" args: %{allowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_sec: 0, initial_que"},{"event":"cmd_output","timestamp":1607098418,"output":"ry: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls."},{"event":"cmd_output","timestamp":1607098418,"output":"STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_a"},{"event":"cmd_output","timestamp":1607098418,"output":"t, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTas"},{"event":"cmd_output","timestamp":1607098418,"output":"kSupervisor}\n\u001b[0m\u001b[22m\n16:13:38.345 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.Queuin"},{"event":"cmd_output","timestamp":1607098418,"output":"gState with name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, metric_name: {\"Ppl.behol"},{"event":"cmd_output","timestamp":1607098418,"output":"der-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{allowed_states: [\"queuing\", \""},{"event":"cmd_output","timestamp":1607098418,"output":"running\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"queuin"},{"event":"cmd_output","timestamp":1607098418,"output":"g\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.args/0>, repo: Ppl.Ect"},{"event":"cmd_output","timestamp":1607098418,"output":"oRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id],"},{"event":"cmd_output","timestamp":1607098418,"output":" schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:38.345 [info] Periodic from"},{"event":"cmd_output","timestamp":1607098418,"output":" module Elixir.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHandler.RunningState ::"},{"event":"cmd_output","timestamp":1607098418,"output":" period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurr"},{"event":"cmd_output","timestamp":1607098418,"output":"ing args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Pp"},{"event":"cmd_output","timestamp":1607098418,"output":"l.Ppls.Model.Ppls, observed_state: \"running\", publisher_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHa"},{"event":"cmd_output","timestamp":1607098418,"output":"ndler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :s"},{"event":"cmd_output","timestamp":1607098418,"output":"tate, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupe"},{"event":"cmd_output","timestamp":1607098418,"output":"rvisor}\n\u001b[0m\u001b[22m\n16:13:38.346 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.StoppingSta"},{"event":"cmd_output","timestamp":1607098418,"output":"te with name Elixir.Ppl.Ppls.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder"},{"event":"cmd_output","timestamp":1607098418,"output":"-wake_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"d"},{"event":"cmd_output","timestamp":1607098418,"output":"one\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"stopping\", publish"},{"event":"cmd_output","timestamp":1607098418,"output":"er_cb: #Function<0.71803493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, retu"},{"event":"cmd_output","timestamp":1607098418,"output":"rning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Pp"},{"event":"cmd_output","timestamp":1607098418,"output":"l.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:38.347 [info] Periodic from module Eli"},{"event":"cmd_output","timestamp":1607098418,"output":"xir.Ppl.PplSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState"},{"event":"cmd_output","timestamp":1607098418,"output":" :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\""},{"event":"cmd_output","timestamp":1607098418,"output":"]}, recurring args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl."},{"event":"cmd_output","timestamp":1607098418,"output":"PplSubInits.Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, r"},{"event":"cmd_output","timestamp":1607098418,"output":"eturning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema:"},{"event":"cmd_output","timestamp":1607098418,"output":" Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:38.347 [info] Periodi"},{"event":"cmd_output","timestamp":1607098418,"output":"c from module Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl.PplSubInits.STMHa"},{"event":"cmd_output","timestamp":1607098418,"output":"ndler.FetchingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHa"},{"event":"cmd_output","timestamp":1607098418,"output":"ndler-FetchingState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"done\"], c"},{"event":"cmd_output","timestamp":1607098418,"output":"ooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fetching\", p"},{"event":"cmd_output","timestamp":1607098418,"output":"ublisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :r"},{"event":"cmd_output","timestamp":1607098418,"output":"esult, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}"},{"event":"cmd_output","timestamp":1607098418,"output":"\n\u001b[0m\u001b[22m\n16:13:38.347 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.Compilation"},{"event":"cmd_output","timestamp":1607098418,"output":"State with name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 100 ms, metric_name: {"},{"event":"cmd_output","timestamp":1607098418,"output":"\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurring args: %{allowed_"},{"event":"cmd_output","timestamp":1607098418,"output":"states: [\"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Pp"},{"event":"cmd_output","timestamp":1607098418,"output":"l.PplSubInits.Model.PplSubInits, observed_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoR"},{"event":"cmd_output","timestamp":1607098418,"output":"epo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], s"},{"event":"cmd_output","timestamp":1607098418,"output":"chema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:38.347 [info] P"},{"event":"cmd_output","timestamp":1607098418,"output":"eriodic from module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with name Elixir.Ppl.PplSubIn"},{"event":"cmd_output","timestamp":1607098418,"output":"its.STMHandler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSu"},{"event":"cmd_output","timestamp":1607098418,"output":"bInits-STMHandler-RegularInitState\"]}, recurring args: %{allowed_states: [\"done\"], cooling_time_sec:"},{"event":"cmd_output","timestamp":1607098418,"output":" 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_init\", publisher_cb: "},{"event":"cmd_output","timestamp":1607098418,"output":":skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recov"},{"event":"cmd_output","timestamp":1607098418,"output":"ery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098418,"output":"16:13:38.348 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.InitializingState with nam"},{"event":"cmd_output","timestamp":1607098418,"output":"e Elixir.Ppl.PplBlocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-w"},{"event":"cmd_output","timestamp":1607098418,"output":"ake_up\", [\"Ppl-PplBlocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initia"},{"event":"cmd_output","timestamp":1607098418,"output":"lizing\", \"waiting\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, obse"},{"event":"cmd_output","timestamp":1607098418,"output":"rved_state: \"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_req"},{"event":"cmd_output","timestamp":1607098418,"output":"uest, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.M"},{"event":"cmd_output","timestamp":1607098418,"output":"odel.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:38.348 [info] Periodic from module Elixir"},{"event":"cmd_output","timestamp":1607098418,"output":".Ppl.PplBlocks.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler.WaitingState :: per"},{"event":"cmd_output","timestamp":1607098418,"output":"iod: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recu"},{"event":"cmd_output","timestamp":1607098418,"output":"rring args: %{allowed_states: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Pp"},{"event":"cmd_output","timestamp":1607098418,"output":"l.PplBlocks.Model.PplBlocks, observed_state: \"waiting\", publisher_cb: #Function<0.8975022/1 in Ppl.P"},{"event":"cmd_output","timestamp":1607098418,"output":"plBlocks.STMHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :"},{"event":"cmd_output","timestamp":1607098418,"output":"updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.Pp"},{"event":"cmd_output","timestamp":1607098418,"output":"lBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:38.348 [info] Periodic from module Elixir.Ppl.Pp"},{"event":"cmd_output","timestamp":1607098418,"output":"lBlocks.STMHandler.RunningState with name Elixir.Ppl.PplBlocks.STMHandler.RunningState :: period: 10"},{"event":"cmd_output","timestamp":1607098418,"output":"00 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, recurring a"},{"event":"cmd_output","timestamp":1607098418,"output":"rgs: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098418,"output":"Blocks.Model.PplBlocks, observed_state: \"running\", publisher_cb: #Function<0.28166834/1 in Ppl.PplBl"},{"event":"cmd_output","timestamp":1607098418,"output":"ocks.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :upda"},{"event":"cmd_output","timestamp":1607098418,"output":"ted_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.M"},{"event":"cmd_output","timestamp":1607098418,"output":"odel.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:38.349 [info] Periodic from module Elixir"},{"event":"cmd_output","timestamp":1607098418,"output":".Ppl.PplBlocks.STMHandler.StoppingState with name Elixir.Ppl.PplBlocks.STMHandler.StoppingState :: p"},{"event":"cmd_output","timestamp":1607098418,"output":"eriod: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, r"},{"event":"cmd_output","timestamp":1607098418,"output":"ecurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplB"},{"event":"cmd_output","timestamp":1607098418,"output":"locks.Model.PplBlocks, observed_state: \"stopping\", publisher_cb: #Function<0.104215991/1 in Ppl.PplB"},{"event":"cmd_output","timestamp":1607098418,"output":"locks.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :up"},{"event":"cmd_output","timestamp":1607098418,"output":"dated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks"},{"event":"cmd_output","timestamp":1607098418,"output":".Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:38.349 [info] Periodic from module Elix"},{"event":"cmd_output","timestamp":1607098418,"output":"ir.Block.Blocks.STMHandler.InitializingState with name Elixir.Block.Blocks.STMHandler.InitializingSt"},{"event":"cmd_output","timestamp":1607098418,"output":"ate :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-InitializingS"},{"event":"cmd_output","timestamp":1607098418,"output":"tate\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: "},{"event":"cmd_output","timestamp":1607098418,"output":"Block.Blocks.Model.Blocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Block.EctoRepo"},{"event":"cmd_output","timestamp":1607098418,"output":", returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Blo"},{"event":"cmd_output","timestamp":1607098418,"output":"ck.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:38.349 [info] Periodic from modul"},{"event":"cmd_output","timestamp":1607098418,"output":"e Elixir.Block.Blocks.STMHandler.RunningState with name Elixir.Block.Blocks.STMHandler.RunningState "},{"event":"cmd_output","timestamp":1607098418,"output":":: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-RunningState\"]}, "},{"event":"cmd_output","timestamp":1607098418,"output":"recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_que"},{"event":"cmd_output","timestamp":1607098418,"output":"ry: Block.Blocks.Model.Blocks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo,"},{"event":"cmd_output","timestamp":1607098418,"output":" returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Bloc"},{"event":"cmd_output","timestamp":1607098418,"output":"k.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:38.349 [info] Periodic from module"},{"event":"cmd_output","timestamp":1607098418,"output":" Elixir.Block.Blocks.STMHandler.StoppingState with name Elixir.Block.Blocks.STMHandler.StoppingState"},{"event":"cmd_output","timestamp":1607098418,"output":" :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-StoppingState\"]}"},{"event":"cmd_output","timestamp":1607098418,"output":", recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block"},{"event":"cmd_output","timestamp":1607098418,"output":".Blocks.Model.Blocks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returni"},{"event":"cmd_output","timestamp":1607098418,"output":"ng: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks"},{"event":"cmd_output","timestamp":1607098418,"output":".Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:38.349 [info] Periodic from module Elixir."},{"event":"cmd_output","timestamp":1607098418,"output":"Block.Tasks.STMHandler.PendingState with name Elixir.Block.Tasks.STMHandler.PendingState :: period: "},{"event":"cmd_output","timestamp":1607098418,"output":"100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingState\"]}, recurring ar"},{"event":"cmd_output","timestamp":1607098418,"output":"gs: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Tasks.Model.Tas"},{"event":"cmd_output","timestamp":1607098418,"output":"ks, observed_state: \"pending\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminat"},{"event":"cmd_output","timestamp":1607098418,"output":"e_request, :updated_at, :state, :recovery_count, :block_id, :build_request_id], schema: Block.Tasks."},{"event":"cmd_output","timestamp":1607098418,"output":"Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:38.350 [info] Periodic from module Elixir.Bl"},{"event":"cmd_output","timestamp":1607098418,"output":"ock.Tasks.STMHandler.RunningState with name Elixir.Block.Tasks.STMHandler.RunningState :: period: 10"},{"event":"cmd_output","timestamp":1607098418,"output":"0 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningState\"]}, recurring args"},{"event":"cmd_output","timestamp":1607098418,"output":": %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Task"},{"event":"cmd_output","timestamp":1607098418,"output":"s.Model.Tasks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id"},{"event":"cmd_output","timestamp":1607098418,"output":", :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Ta"},{"event":"cmd_output","timestamp":1607098418,"output":"sks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:38.350 [info] Periodic from module Elixir.Block.Task"},{"event":"cmd_output","timestamp":1607098418,"output":"s.STMHandler.StoppingState with name Elixir.Block.Tasks.STMHandler.StoppingState :: period: 100 ms, "},{"event":"cmd_output","timestamp":1607098418,"output":"metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]}, recurring args: %{a"},{"event":"cmd_output","timestamp":1607098418,"output":"llowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, o"},{"event":"cmd_output","timestamp":1607098418,"output":"bserved_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_re"},{"event":"cmd_output","timestamp":1607098418,"output":"quest, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_super"},{"event":"cmd_output","timestamp":1607098418,"output":"visor: :skip}\n\u001b[0m\u001b[22m\n16:13:38.459 [info] ppl_id: b73b1a95-1240-49e5-84fc-80d5b6bdf12b, type: P"},{"event":"cmd_output","timestamp":1607098418,"output":"plRequests, event: persisted source_args for pipeline: b73b1a95-1240-49e5-84fc-80d5b6bdf12b, origin:"},{"event":"cmd_output","timestamp":1607098418,"output":" Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:13:38.461 [in"},{"event":"cmd_output","timestamp":1607098418,"output":"fo] ppl_id: b73b1a95-1240-49e5-84fc-80d5b6bdf12b, type: PplSubInits, state: fetching, event: exit_s"},{"event":"cmd_output","timestamp":1607098418,"output":"cheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098418,"output":"6:13:38.474 [info] ppl_id: b73b1a95-1240-49e5-84fc-80d5b6bdf12b, type: PplSubInits, state: regular_"},{"event":"cmd_output","timestamp":1607098418,"output":"init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098418,"output":"90), \n\u001b[0m\u001b[22m\n16:13:38.509 [info] ppl_id: b73b1a95-1240-49e5-84fc-80d5b6bdf12b, type: PplReques"},{"event":"cmd_output","timestamp":1607098418,"output":"ts, event: persisted definition for request with request_token: aaf0352a-364b-11eb-979c-5254005464e2"},{"event":"cmd_output","timestamp":1607098418,"output":", origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098418,"output":"13:38.512 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:l"},{"event":"cmd_output","timestamp":1607098418,"output":"oaded, \"queues\">, inserted_at: ~N[2020-12-04 16:13:38.511712], name: \"master-.semaphore/semaphore.ym"},{"event":"cmd_output","timestamp":1607098418,"output":"l\", organization_id: \"9eac4f44-e510-4992-b6cd-c8db47714845\", project_id: \"e08a15eb-d37e-498b-bbab-97"},{"event":"cmd_output","timestamp":1607098418,"output":"aea956f2f2\", queue_id: \"cf76f940-6e33-48f9-ae0d-e27d29fe7cd2\", scope: \"project\", updated_at: ~N[2020"},{"event":"cmd_output","timestamp":1607098418,"output":"-12-04 16:13:38.511719], user_generated: false}}\n\u001b[0m\u001b[22m\n16:13:38.519 [info] ppl_id: not_availa"},{"event":"cmd_output","timestamp":1607098418,"output":"ble, event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b"},{"event":"cmd_output","timestamp":1607098418,"output":"[0m\u001b[22m\n16:13:38.519 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInit"},{"event":"cmd_output","timestamp":1607098418,"output":"State.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:38.519 [info] ppl_id: b73b1a95-1240-49e5-84fc-80d5b6bdf12"},{"event":"cmd_output","timestamp":1607098418,"output":"b, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098418,"output":"Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:38.519 [info]"},{"event":"cmd_output","timestamp":1607098418,"output":" ppl_id: b73b1a95-1240-49e5-84fc-80d5b6bdf12b, type: PplBlocks, block_index: 1, state: initializing"},{"event":"cmd_output","timestamp":1607098418,"output":", event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_"},{"event":"cmd_output","timestamp":1607098418,"output":"ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:38.519 [info] ppl_id: b73b1a95-1240-49e5-84fc-80d5b6bdf12b, type: P"},{"event":"cmd_output","timestamp":1607098418,"output":"plBlocks, block_index: 2, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098418,"output":".PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:38.519 [info] ppl_id: "},{"event":"cmd_output","timestamp":1607098418,"output":"b73b1a95-1240-49e5-84fc-80d5b6bdf12b, type: PplBlocks, block_index: 3, state: initializing, event: c"},{"event":"cmd_output","timestamp":1607098418,"output":"reated, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105"},{"event":"cmd_output","timestamp":1607098418,"output":"), \n\u001b[0m\u001b[22m\n16:13:38.519 [info] ppl_id: b73b1a95-1240-49e5-84fc-80d5b6bdf12b, type: PplBlocks, "},{"event":"cmd_output","timestamp":1607098418,"output":"block_index: 4, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubIni"},{"event":"cmd_output","timestamp":1607098418,"output":"ts.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:38.522 [info] ppl_id: b73b1a95-1"},{"event":"cmd_output","timestamp":1607098418,"output":"240-49e5-84fc-80d5b6bdf12b, type: PplSubInits, state: done, result: passed, event: exit_scheduling, "},{"event":"cmd_output","timestamp":1607098418,"output":"recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:38.530"},{"event":"cmd_output","timestamp":1607098418,"output":" [info] ppl_id: b73b1a95-1240-49e5-84fc-80d5b6bdf12b, type: PplBlocks, block_index: 0, state: waiti"},{"event":"cmd_output","timestamp":1607098418,"output":"ng, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90"},{"event":"cmd_output","timestamp":1607098418,"output":"), \n\u001b[0m\u001b[22m\n16:13:38.530 [info] ppl_id: b73b1a95-1240-49e5-84fc-80d5b6bdf12b, type: Ppls, state"},{"event":"cmd_output","timestamp":1607098418,"output":": pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chang"},{"event":"cmd_output","timestamp":1607098418,"output":"e/1(L90), \n\u001b[0m\u001b[22m\n16:13:38.538 [info] ppl_id: b73b1a95-1240-49e5-84fc-80d5b6bdf12b, type: PplB"},{"event":"cmd_output","timestamp":1607098418,"output":"locks, block_index: 1, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loo"},{"event":"cmd_output","timestamp":1607098418,"output":"per.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:38.538 [info] ppl_id: b73b1a95-1240-49e5-8"},{"event":"cmd_output","timestamp":1607098418,"output":"4fc-80d5b6bdf12b, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098418,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:38.544 [info] ppl_id: b73b1a95-1240"},{"event":"cmd_output","timestamp":1607098418,"output":"-49e5-84fc-80d5b6bdf12b, type: PplBlocks, block_index: 2, state: waiting, event: exit_scheduling, re"},{"event":"cmd_output","timestamp":1607098418,"output":"covery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:38.550 ["},{"event":"cmd_output","timestamp":1607098418,"output":"info] ppl_id: b73b1a95-1240-49e5-84fc-80d5b6bdf12b, type: PplBlocks, block_index: 3, state: waiting"},{"event":"cmd_output","timestamp":1607098418,"output":", event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90),"},{"event":"cmd_output","timestamp":1607098418,"output":" \n\u001b[0m\u001b[22m\n16:13:38.552 [info] ppl_id: b73b1a95-1240-49e5-84fc-80d5b6bdf12b, type: Ppls, state: "},{"event":"cmd_output","timestamp":1607098418,"output":"running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/"},{"event":"cmd_output","timestamp":1607098418,"output":"1(L90), \n\u001b[0m\u001b[22m\n16:13:38.560 [info] PplBlocks WaitingState STM is scheduling block 3 from pipe"},{"event":"cmd_output","timestamp":1607098418,"output":"line: \"b73b1a95-1240-49e5-84fc-80d5b6bdf12b\"\n\u001b[0m\u001b[22m\n16:13:38.565 [info] ppl_id: b73b1a95-1240-"},{"event":"cmd_output","timestamp":1607098418,"output":"49e5-84fc-80d5b6bdf12b, type: PplBlocks, block_index: 4, state: waiting, event: exit_scheduling, rec"},{"event":"cmd_output","timestamp":1607098418,"output":"overy_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:38.571 [i"},{"event":"cmd_output","timestamp":1607098418,"output":"nfo] block_id: ea592939-31e6-4bd5-9779-fd18908b4f61, type: BlockRequests, event: persisted block ru"},{"event":"cmd_output","timestamp":1607098418,"output":"n request from ppl b73b1a95-1240-49e5-84fc-80d5b6bdf12b for block 3, origin: Elixir.Block.BlockReque"},{"event":"cmd_output","timestamp":1607098418,"output":"sts.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:13:38.573 [info] block_id: "},{"event":"cmd_output","timestamp":1607098418,"output":"ea592939-31e6-4bd5-9779-fd18908b4f61, type: Blocks, state: initializing, event: initializing, recove"},{"event":"cmd_output","timestamp":1607098418,"output":"ry_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:13:38.57"},{"event":"cmd_output","timestamp":1607098418,"output":"6 [info] Block 3 of pipeline with id: b73b1a95-1240-49e5-84fc-80d5b6bdf12b scheduled in block servi"},{"event":"cmd_output","timestamp":1607098418,"output":"ce with id: : \"ea592939-31e6-4bd5-9779-fd18908b4f61\"\n\u001b[0m\u001b[22m\n16:13:38.578 [info] ppl_id: b73b1a"},{"event":"cmd_output","timestamp":1607098418,"output":"95-1240-49e5-84fc-80d5b6bdf12b, type: PplBlocks, block_index: 3, state: running, event: exit_schedul"},{"event":"cmd_output","timestamp":1607098418,"output":"ing, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:3"},{"event":"cmd_output","timestamp":1607098418,"output":"8.578 [info] block_id: ea592939-31e6-4bd5-9779-fd18908b4f61, type: BlockRequests, event: persisted "},{"event":"cmd_output","timestamp":1607098418,"output":"build and sub_ppl details for block_request: ea592939-31e6-4bd5-9779-fd18908b4f61, origin: Elixir.Bl"},{"event":"cmd_output","timestamp":1607098418,"output":"ock.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:13:38.580 [info] "},{"event":"cmd_output","timestamp":1607098418,"output":"block_id: ea592939-31e6-4bd5-9779-fd18908b4f61, type: Tasks, state: pending, event: created, recover"},{"event":"cmd_output","timestamp":1607098418,"output":"y_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098418,"output":"6:13:38.583 [info] block_id: ea592939-31e6-4bd5-9779-fd18908b4f61, type: Blocks, state: running, ev"},{"event":"cmd_output","timestamp":1607098418,"output":"ent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b"},{"event":"cmd_output","timestamp":1607098418,"output":"[0m\u001b[22m\n16:13:38.584 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"b73b"},{"event":"cmd_output","timestamp":1607098418,"output":"1a95-1240-49e5-84fc-80d5b6bdf12b\"\n\u001b[0m\u001b[22m\n16:13:38.589 [info] block_id: b80dd4c5-f1e6-4d12-b52e"},{"event":"cmd_output","timestamp":1607098418,"output":"-81e15fb93a80, type: BlockRequests, event: persisted block run request from ppl b73b1a95-1240-49e5-8"},{"event":"cmd_output","timestamp":1607098418,"output":"4fc-80d5b6bdf12b for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_"},{"event":"cmd_output","timestamp":1607098418,"output":"response/4(L35), \n\u001b[0m\u001b[22m\n16:13:38.591 [info] block_id: b80dd4c5-f1e6-4d12-b52e-81e15fb93a80, t"},{"event":"cmd_output","timestamp":1607098418,"output":"ype: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Block"},{"event":"cmd_output","timestamp":1607098418,"output":"s.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:13:38.593 [info] Block 0 of pipeline with id: "},{"event":"cmd_output","timestamp":1607098418,"output":"b73b1a95-1240-49e5-84fc-80d5b6bdf12b scheduled in block service with id: : \"b80dd4c5-f1e6-4d12-b52e-"},{"event":"cmd_output","timestamp":1607098418,"output":"81e15fb93a80\"\n\u001b[0m\u001b[22m\n16:13:38.601 [info] ppl_id: b73b1a95-1240-49e5-84fc-80d5b6bdf12b, type: P"},{"event":"cmd_output","timestamp":1607098418,"output":"plBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098418,"output":"Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:38.603 [info] block_id: ea592939-31e6-4"},{"event":"cmd_output","timestamp":1607098418,"output":"bd5-9779-fd18908b4f61, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098418,"output":"n: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:38.605 [info] block_id: b80dd"},{"event":"cmd_output","timestamp":1607098418,"output":"4c5-f1e6-4d12-b52e-81e15fb93a80, type: BlockRequests, event: persisted build and sub_ppl details for"},{"event":"cmd_output","timestamp":1607098418,"output":" block_request: b80dd4c5-f1e6-4d12-b52e-81e15fb93a80, origin: Elixir.Block.BlockRequests.Model.Block"},{"event":"cmd_output","timestamp":1607098418,"output":"RequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:13:38.612 [info] block_id: b80dd4c5-f1e6-4d12-"},{"event":"cmd_output","timestamp":1607098418,"output":"b52e-81e15fb93a80, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Bl"},{"event":"cmd_output","timestamp":1607098418,"output":"ock.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:13:38.615 [info] block_id:"},{"event":"cmd_output","timestamp":1607098418,"output":" b80dd4c5-f1e6-4d12-b52e-81e15fb93a80, type: Blocks, state: running, event: exit_scheduling, recover"},{"event":"cmd_output","timestamp":1607098418,"output":"y_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:38.628 [info]"},{"event":"cmd_output","timestamp":1607098418,"output":" block_id: b80dd4c5-f1e6-4d12-b52e-81e15fb93a80, type: Tasks, state: running, event: exit_schedulin"},{"event":"cmd_output","timestamp":1607098421,"output":"g, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:41."},{"event":"cmd_output","timestamp":1607098421,"output":"647 [info] block_id: b80dd4c5-f1e6-4d12-b52e-81e15fb93a80, type: Tasks, state: done, event: exit_sc"},{"event":"cmd_output","timestamp":1607098421,"output":"heduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098421,"output":":13:41.656 [info] block_id: b80dd4c5-f1e6-4d12-b52e-81e15fb93a80, type: Blocks, state: done, event:"},{"event":"cmd_output","timestamp":1607098421,"output":" exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098421,"output":"[22m\n16:13:41.671 [info] ppl_id: b73b1a95-1240-49e5-84fc-80d5b6bdf12b, block_id: b80dd4c5-f1e6-4d1"},{"event":"cmd_output","timestamp":1607098421,"output":"2-b52e-81e15fb93a80, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_sched"},{"event":"cmd_output","timestamp":1607098421,"output":"uling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13"},{"event":"cmd_output","timestamp":1607098421,"output":":41.755 [info] block_id: ea592939-31e6-4bd5-9779-fd18908b4f61, type: Tasks, state: done, event: exi"},{"event":"cmd_output","timestamp":1607098421,"output":"t_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098421,"output":"\n16:13:41.759 [info] block_id: ea592939-31e6-4bd5-9779-fd18908b4f61, type: Blocks, state: done, ev"},{"event":"cmd_output","timestamp":1607098421,"output":"ent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b"},{"event":"cmd_output","timestamp":1607098421,"output":"[0m\u001b[22m\n16:13:41.775 [info] ppl_id: b73b1a95-1240-49e5-84fc-80d5b6bdf12b, block_id: ea592939-31e6"},{"event":"cmd_output","timestamp":1607098421,"output":"-4bd5-9779-fd18908b4f61, type: PplBlocks, block_index: 3, state: done, result: passed, event: exit_s"},{"event":"cmd_output","timestamp":1607098421,"output":"cheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098421,"output":"6:13:41.782 [info] PplBlocks WaitingState STM is scheduling block 1 from pipeline: \"b73b1a95-1240-4"},{"event":"cmd_output","timestamp":1607098421,"output":"9e5-84fc-80d5b6bdf12b\"\n\u001b[0m\u001b[22m\n16:13:41.788 [info] block_id: 723d76bc-4b79-466c-8cda-9ee2391413"},{"event":"cmd_output","timestamp":1607098421,"output":"d6, type: BlockRequests, event: persisted block run request from ppl b73b1a95-1240-49e5-84fc-80d5b6b"},{"event":"cmd_output","timestamp":1607098421,"output":"df12b for block 1, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4("},{"event":"cmd_output","timestamp":1607098421,"output":"L35), \n\u001b[0m\u001b[22m\n16:13:41.790 [info] block_id: 723d76bc-4b79-466c-8cda-9ee2391413d6, type: Blocks"},{"event":"cmd_output","timestamp":1607098421,"output":", state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.Blo"},{"event":"cmd_output","timestamp":1607098421,"output":"cksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:13:41.790 [info] Block 1 of pipeline with id: b73b1a95-12"},{"event":"cmd_output","timestamp":1607098421,"output":"40-49e5-84fc-80d5b6bdf12b scheduled in block service with id: : \"723d76bc-4b79-466c-8cda-9ee2391413d"},{"event":"cmd_output","timestamp":1607098421,"output":"6\"\n\u001b[0m\u001b[22m\n16:13:41.791 [info] ppl_id: b73b1a95-1240-49e5-84fc-80d5b6bdf12b, type: PplBlocks, b"},{"event":"cmd_output","timestamp":1607098421,"output":"lock_index: 1, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM."},{"event":"cmd_output","timestamp":1607098421,"output":"Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:41.795 [info] block_id: 723d76bc-4b79-466c-8cda-9e"},{"event":"cmd_output","timestamp":1607098421,"output":"e2391413d6, type: BlockRequests, event: persisted build and sub_ppl details for block_request: 723d7"},{"event":"cmd_output","timestamp":1607098421,"output":"6bc-4b79-466c-8cda-9ee2391413d6, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.inser"},{"event":"cmd_output","timestamp":1607098421,"output":"t_build/2(L41), \n\u001b[0m\u001b[22m\n16:13:41.796 [info] block_id: 723d76bc-4b79-466c-8cda-9ee2391413d6, ty"},{"event":"cmd_output","timestamp":1607098421,"output":"pe: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler"},{"event":"cmd_output","timestamp":1607098421,"output":".InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:13:41.798 [info] block_id: 723d76bc-4b79-466c-8"},{"event":"cmd_output","timestamp":1607098421,"output":"cda-9ee2391413d6, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: E"},{"event":"cmd_output","timestamp":1607098421,"output":"lixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:41.813 [info] block_id: 723d76bc-"},{"event":"cmd_output","timestamp":1607098421,"output":"4b79-466c-8cda-9ee2391413d6, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098424,"output":" origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:44.907 [info] block_id:"},{"event":"cmd_output","timestamp":1607098424,"output":" 723d76bc-4b79-466c-8cda-9ee2391413d6, type: Tasks, state: done, event: exit_scheduling, recovery_co"},{"event":"cmd_output","timestamp":1607098424,"output":"unt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:44.912 [info] bl"},{"event":"cmd_output","timestamp":1607098424,"output":"ock_id: 723d76bc-4b79-466c-8cda-9ee2391413d6, type: Blocks, state: done, event: exit_scheduling, rec"},{"event":"cmd_output","timestamp":1607098424,"output":"overy_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:44.917 [i"},{"event":"cmd_output","timestamp":1607098424,"output":"nfo] ppl_id: b73b1a95-1240-49e5-84fc-80d5b6bdf12b, block_id: 723d76bc-4b79-466c-8cda-9ee2391413d6, "},{"event":"cmd_output","timestamp":1607098424,"output":"type: PplBlocks, block_index: 1, state: done, result: passed, event: exit_scheduling, recovery_count"},{"event":"cmd_output","timestamp":1607098424,"output":": 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:44.924 [info] PplBl"},{"event":"cmd_output","timestamp":1607098424,"output":"ocks WaitingState STM is scheduling block 4 from pipeline: \"b73b1a95-1240-49e5-84fc-80d5b6bdf12b\"\n\u001b"},{"event":"cmd_output","timestamp":1607098424,"output":"[0m\u001b[22m\n16:13:44.933 [info] block_id: 0c7cdd84-1500-49be-b0b0-1c1bd490afc5, type: BlockRequests, "},{"event":"cmd_output","timestamp":1607098424,"output":"event: persisted block run request from ppl b73b1a95-1240-49e5-84fc-80d5b6bdf12b for block 4, origin"},{"event":"cmd_output","timestamp":1607098424,"output":": Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:13:"},{"event":"cmd_output","timestamp":1607098424,"output":"44.935 [info] block_id: 0c7cdd84-1500-49be-b0b0-1c1bd490afc5, type: Blocks, state: initializing, ev"},{"event":"cmd_output","timestamp":1607098424,"output":"ent: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43),"},{"event":"cmd_output","timestamp":1607098424,"output":" \n\u001b[0m\u001b[22m\n16:13:44.935 [info] Block 4 of pipeline with id: b73b1a95-1240-49e5-84fc-80d5b6bdf12b"},{"event":"cmd_output","timestamp":1607098424,"output":" scheduled in block service with id: : \"0c7cdd84-1500-49be-b0b0-1c1bd490afc5\"\n\u001b[0m\u001b[22m\n16:13:44.9"},{"event":"cmd_output","timestamp":1607098424,"output":"36 [info] ppl_id: b73b1a95-1240-49e5-84fc-80d5b6bdf12b, type: PplBlocks, block_index: 4, state: run"},{"event":"cmd_output","timestamp":1607098424,"output":"ning, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098424,"output":"90), \n\u001b[0m\u001b[22m\n16:13:44.939 [info] block_id: 0c7cdd84-1500-49be-b0b0-1c1bd490afc5, type: BlockRe"},{"event":"cmd_output","timestamp":1607098424,"output":"quests, event: persisted build and sub_ppl details for block_request: 0c7cdd84-1500-49be-b0b0-1c1bd4"},{"event":"cmd_output","timestamp":1607098424,"output":"90afc5, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098424,"output":"2m\n16:13:44.940 [info] PplBlocks WaitingState STM is scheduling block 2 from pipeline: \"b73b1a95-1"},{"event":"cmd_output","timestamp":1607098424,"output":"240-49e5-84fc-80d5b6bdf12b\"\n\u001b[0m\u001b[22m\n16:13:44.941 [info] block_id: 0c7cdd84-1500-49be-b0b0-1c1bd"},{"event":"cmd_output","timestamp":1607098424,"output":"490afc5, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks"},{"event":"cmd_output","timestamp":1607098424,"output":".STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:13:44.942 [info] block_id: 0c7cdd84-"},{"event":"cmd_output","timestamp":1607098424,"output":"1500-49be-b0b0-1c1bd490afc5, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0"},{"event":"cmd_output","timestamp":1607098424,"output":", origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:44.946 [info] block_id"},{"event":"cmd_output","timestamp":1607098424,"output":": 413a5e81-28d2-4409-91e2-c99d79b8587d, type: BlockRequests, event: persisted block run request from"},{"event":"cmd_output","timestamp":1607098424,"output":" ppl b73b1a95-1240-49e5-84fc-80d5b6bdf12b for block 2, origin: Elixir.Block.BlockRequests.Model.Bloc"},{"event":"cmd_output","timestamp":1607098424,"output":"kRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:13:44.948 [info] block_id: 413a5e81-28d2-"},{"event":"cmd_output","timestamp":1607098424,"output":"4409-91e2-c99d79b8587d, type: Blocks, state: initializing, event: initializing, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098424,"output":"rigin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:13:44.948 [info] Bloc"},{"event":"cmd_output","timestamp":1607098424,"output":"k 2 of pipeline with id: b73b1a95-1240-49e5-84fc-80d5b6bdf12b scheduled in block service with id: : "},{"event":"cmd_output","timestamp":1607098424,"output":"\"413a5e81-28d2-4409-91e2-c99d79b8587d\"\n\u001b[0m\u001b[22m\n16:13:44.955 [info] ppl_id: b73b1a95-1240-49e5-8"},{"event":"cmd_output","timestamp":1607098424,"output":"4fc-80d5b6bdf12b, type: PplBlocks, block_index: 2, state: running, event: exit_scheduling, recovery_"},{"event":"cmd_output","timestamp":1607098424,"output":"count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:44.959 [info] "},{"event":"cmd_output","timestamp":1607098424,"output":"block_id: 413a5e81-28d2-4409-91e2-c99d79b8587d, type: BlockRequests, event: persisted build and sub_"},{"event":"cmd_output","timestamp":1607098424,"output":"ppl details for block_request: 413a5e81-28d2-4409-91e2-c99d79b8587d, origin: Elixir.Block.BlockReque"},{"event":"cmd_output","timestamp":1607098424,"output":"sts.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:13:44.963 [info] block_id: 413a"},{"event":"cmd_output","timestamp":1607098424,"output":"5e81-28d2-4409-91e2-c99d79b8587d, type: Tasks, state: pending, event: created, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098424,"output":"igin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:13:44.964 [i"},{"event":"cmd_output","timestamp":1607098424,"output":"nfo] block_id: 0c7cdd84-1500-49be-b0b0-1c1bd490afc5, type: Tasks, state: running, event: exit_sched"},{"event":"cmd_output","timestamp":1607098424,"output":"uling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13"},{"event":"cmd_output","timestamp":1607098424,"output":":44.968 [info] block_id: 413a5e81-28d2-4409-91e2-c99d79b8587d, type: Blocks, state: running, event:"},{"event":"cmd_output","timestamp":1607098424,"output":" exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098424,"output":"[22m\n16:13:44.984 [info] block_id: 413a5e81-28d2-4409-91e2-c99d79b8587d, type: Tasks, state: runni"},{"event":"cmd_output","timestamp":1607098424,"output":"ng, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90"},{"event":"cmd_output","timestamp":1607098428,"output":"), \n\u001b[0m\u001b[22m\n16:13:48.075 [info] block_id: 0c7cdd84-1500-49be-b0b0-1c1bd490afc5, type: Tasks, st"},{"event":"cmd_output","timestamp":1607098428,"output":"ate: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chang"},{"event":"cmd_output","timestamp":1607098428,"output":"e/1(L90), \n\u001b[0m\u001b[22m\n16:13:48.081 [info] block_id: 0c7cdd84-1500-49be-b0b0-1c1bd490afc5, type: Bl"},{"event":"cmd_output","timestamp":1607098428,"output":"ocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_sta"},{"event":"cmd_output","timestamp":1607098428,"output":"te_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:48.086 [info] ppl_id: b73b1a95-1240-49e5-84fc-80d5b6bdf12b, bl"},{"event":"cmd_output","timestamp":1607098428,"output":"ock_id: 0c7cdd84-1500-49be-b0b0-1c1bd490afc5, type: PplBlocks, block_index: 4, state: done, result: "},{"event":"cmd_output","timestamp":1607098428,"output":"passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1"},{"event":"cmd_output","timestamp":1607098428,"output":"(L90), \n\u001b[0m\u001b[22m\n16:13:48.183 [info] block_id: 413a5e81-28d2-4409-91e2-c99d79b8587d, type: Tasks"},{"event":"cmd_output","timestamp":1607098428,"output":", state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098428,"output":"hange/1(L90), \n\u001b[0m\u001b[22m\n16:13:48.187 [info] block_id: 413a5e81-28d2-4409-91e2-c99d79b8587d, type"},{"event":"cmd_output","timestamp":1607098428,"output":": Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098428,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:48.195 [info] ppl_id: b73b1a95-1240-49e5-84fc-80d5b6bdf12b"},{"event":"cmd_output","timestamp":1607098428,"output":", block_id: 413a5e81-28d2-4409-91e2-c99d79b8587d, type: PplBlocks, block_index: 2, state: done, resu"},{"event":"cmd_output","timestamp":1607098428,"output":"lt: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chan"},{"event":"cmd_output","timestamp":1607098428,"output":"ge/1(L90), \n\u001b[0m\u001b[22m\n16:13:48.208 [info] ppl_id: b73b1a95-1240-49e5-84fc-80d5b6bdf12b, type: Ppl"},{"event":"cmd_output","timestamp":1607098428,"output":"s, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM"},{"event":"cmd_output","timestamp":1607098428,"output":".Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test Free topology pipeline passes (9960.2ms)\u001b[0m\n "},{"event":"cmd_output","timestamp":1607098428,"output":"* test Free topology failing pipeline with fail_fast = cancel\u001b[22m\n16:13:48.290 [info] Request: 'r"},{"event":"cmd_output","timestamp":1607098428,"output":"un: %{\"branch_id\" => \"58d0c0d4-5a1b-4e91-a785-9f3d36d832a8\", \"branch_name\" => \"master\", \"commit_sha\""},{"event":"cmd_output","timestamp":1607098428,"output":" => \"75891a4469\", \"file_name\" => \"semaphore.yml\", \"hook_id\" => \"b0e0a51e-364b-11eb-bca2-5254005464e2"},{"event":"cmd_output","timestamp":1607098428,"output":"\", \"label\" => \"master\", \"organization_id\" => \"984bbbf7-0d49-46dc-bc58-c20ad86f8a5b\", \"owner\" => \"rt\""},{"event":"cmd_output","timestamp":1607098428,"output":", \"project_id\" => \"3bb31c2f-f352-45b4-8a0f-e2065bc2e540\", \"repo_name\" => \"18_fail_fast_cancel\", \"req"},{"event":"cmd_output","timestamp":1607098428,"output":"uest_token\" => \"b0e09dda-364b-11eb-a917-5254005464e2\", \"requester_id\" => \"7bd22191-0566-48a8-b76e-64"},{"event":"cmd_output","timestamp":1607098428,"output":"1a25061262\", \"service\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf"},{"event":"cmd_output","timestamp":1607098428,"output":"_id\" => \"13fa6d91-bacf-451e-ba7a-7a38cba93913\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:13:48."},{"event":"cmd_output","timestamp":1607098428,"output":"292 [info] ppl_id: bc992645-7f48-46f2-95ab-e7c2a0c880ed, type: PplRequests, event: persisted schedu"},{"event":"cmd_output","timestamp":1607098428,"output":"le request with request_token: b0e09dda-364b-11eb-a917-5254005464e2, origin: Elixir.Ppl.PplRequests."},{"event":"cmd_output","timestamp":1607098428,"output":"Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:13:48.295 [info] ppl_id: bc992645"},{"event":"cmd_output","timestamp":1607098428,"output":"-7f48-46f2-95ab-e7c2a0c880ed, type: Ppls, state: initializing, event: initializing, recovery_count: "},{"event":"cmd_output","timestamp":1607098428,"output":"0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:13:48.300 [in"},{"event":"cmd_output","timestamp":1607098428,"output":"fo] Project 3bb31c2f-f352-45b4-8a0f-e2065bc2e540 and branch masterlatest_wf details updated: \"wf_id"},{"event":"cmd_output","timestamp":1607098428,"output":": 13fa6d91-bacf-451e-ba7a-7a38cba93913, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:13:48.301 [info] Persisted ppl"},{"event":"cmd_output","timestamp":1607098428,"output":"_sub_init for pipeline with ppl_id: bc992645-7f48-46f2-95ab-e7c2a0c880ed: %Ppl.PplSubInits.Model.Ppl"},{"event":"cmd_output","timestamp":1607098428,"output":"SubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error"},{"event":"cmd_output","timestamp":1607098428,"output":"_description: nil, id: 314, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 1"},{"event":"cmd_output","timestamp":1607098428,"output":"6:13:48.300925], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"bc992645-7f48-46f2-95ab-e7c2a0c880ed\", recovery_count: 0, result: nil, result_re"},{"event":"cmd_output","timestamp":1607098428,"output":"ason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[202"},{"event":"cmd_output","timestamp":1607098428,"output":"0-12-04 16:13:48.300930]}\n\u001b[0m\u001b[22m\n16:13:48.304 [info] Periodic from module Elixir.Ppl.Ppls.STMH"},{"event":"cmd_output","timestamp":1607098428,"output":"andler.InitializingState with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms, m"},{"event":"cmd_output","timestamp":1607098428,"output":"etric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %{a"},{"event":"cmd_output","timestamp":1607098428,"output":"llowed_states: [\"initializing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Mod"},{"event":"cmd_output","timestamp":1607098428,"output":"el.Ppls, observed_state: \"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandle"},{"event":"cmd_output","timestamp":1607098428,"output":"r.InitializingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :"},{"event":"cmd_output","timestamp":1607098428,"output":"state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0"},{"event":"cmd_output","timestamp":1607098428,"output":"m\u001b[22m\n16:13:48.304 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingState with name "},{"event":"cmd_output","timestamp":1607098428,"output":"Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"P"},{"event":"cmd_output","timestamp":1607098428,"output":"pl-Ppls-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"pending\", \"queuing\", \"runnin"},{"event":"cmd_output","timestamp":1607098428,"output":"g\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", pub"},{"event":"cmd_output","timestamp":1607098428,"output":"lisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, re"},{"event":"cmd_output","timestamp":1607098428,"output":"turning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: "},{"event":"cmd_output","timestamp":1607098428,"output":"Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:13:48.304 [info] Periodic "},{"event":"cmd_output","timestamp":1607098428,"output":"from module Elixir.Ppl.Ppls.STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandler.QueuingStat"},{"event":"cmd_output","timestamp":1607098428,"output":"e :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, re"},{"event":"cmd_output","timestamp":1607098428,"output":"curring args: %{allowed_states: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, initial_query:"},{"event":"cmd_output","timestamp":1607098428,"output":" Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.S"},{"event":"cmd_output","timestamp":1607098428,"output":"TMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at"},{"event":"cmd_output","timestamp":1607098428,"output":", :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n"},{"event":"cmd_output","timestamp":1607098428,"output":"\u001b[0m\u001b[22m\n16:13:48.305 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.RunningState with na"},{"event":"cmd_output","timestamp":1607098428,"output":"me Elixir.Ppl.Ppls.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", "},{"event":"cmd_output","timestamp":1607098428,"output":"[\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"do"},{"event":"cmd_output","timestamp":1607098428,"output":"ne\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"running\", publisher"},{"event":"cmd_output","timestamp":1607098428,"output":"_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returni"},{"event":"cmd_output","timestamp":1607098428,"output":"ng: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.P"},{"event":"cmd_output","timestamp":1607098428,"output":"pls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:13:48.305 [info] Periodic from "},{"event":"cmd_output","timestamp":1607098428,"output":"module Elixir.Ppl.Ppls.STMHandler.StoppingState with name Elixir.Ppl.Ppls.STMHandler.StoppingState :"},{"event":"cmd_output","timestamp":1607098428,"output":": period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recu"},{"event":"cmd_output","timestamp":1607098428,"output":"rring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Mo"},{"event":"cmd_output","timestamp":1607098428,"output":"del.Ppls, observed_state: \"stopping\", publisher_cb: #Function<0.71803493/1 in Ppl.Ppls.STMHandler.St"},{"event":"cmd_output","timestamp":1607098428,"output":"oppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :"},{"event":"cmd_output","timestamp":1607098428,"output":"result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098428,"output":"16:13:48.305 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedState with name E"},{"event":"cmd_output","timestamp":1607098428,"output":"lixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up"},{"event":"cmd_output","timestamp":1607098428,"output":"\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args: %{allowed_states: [\"fetching\", \"don"},{"event":"cmd_output","timestamp":1607098428,"output":"e\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"created"},{"event":"cmd_output","timestamp":1607098428,"output":"\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state"},{"event":"cmd_output","timestamp":1607098428,"output":", :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :s"},{"event":"cmd_output","timestamp":1607098428,"output":"kip}\n\u001b[0m\u001b[22m\n16:13:48.305 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.Fetchin"},{"event":"cmd_output","timestamp":1607098428,"output":"gState with name Elixir.Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 ms, metric_name: {\"P"},{"event":"cmd_output","timestamp":1607098428,"output":"pl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %{allowed_state"},{"event":"cmd_output","timestamp":1607098428,"output":"s: [\"regular_init\", \"compilation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Mod"},{"event":"cmd_output","timestamp":1607098428,"output":"el.PplSubInits, observed_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id"},{"event":"cmd_output","timestamp":1607098428,"output":", :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubIni"},{"event":"cmd_output","timestamp":1607098428,"output":"ts.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:48.305 [info] Periodic from module "},{"event":"cmd_output","timestamp":1607098428,"output":"Elixir.Ppl.PplSubInits.STMHandler.CompilationState with name Elixir.Ppl.PplSubInits.STMHandler.Compi"},{"event":"cmd_output","timestamp":1607098428,"output":"lationState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-Co"},{"event":"cmd_output","timestamp":1607098428,"output":"mpilationState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"stopping\", \"do"},{"event":"cmd_output","timestamp":1607098428,"output":"ne\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"compi"},{"event":"cmd_output","timestamp":1607098428,"output":"lation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, "},{"event":"cmd_output","timestamp":1607098428,"output":":state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervis"},{"event":"cmd_output","timestamp":1607098428,"output":"or: :skip}\n\u001b[0m\u001b[22m\n16:13:48.305 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.R"},{"event":"cmd_output","timestamp":1607098428,"output":"egularInitState with name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period: 100 ms, metr"},{"event":"cmd_output","timestamp":1607098428,"output":"ic_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurring args: "},{"event":"cmd_output","timestamp":1607098428,"output":"%{allowed_states: [\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, o"},{"event":"cmd_output","timestamp":1607098428,"output":"bserved_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_"},{"event":"cmd_output","timestamp":1607098428,"output":"request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplS"},{"event":"cmd_output","timestamp":1607098428,"output":"ubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:48.306 [info] Periodic from module Elixir.Ppl.Pp"},{"event":"cmd_output","timestamp":1607098428,"output":"lBlocks.STMHandler.InitializingState with name Elixir.Ppl.PplBlocks.STMHandler.InitializingState :: "},{"event":"cmd_output","timestamp":1607098428,"output":"period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-InitializingState\"]"},{"event":"cmd_output","timestamp":1607098428,"output":"}, recurring args: %{allowed_states: [\"initializing\", \"waiting\", \"done\"], cooling_time_sec: 0, initi"},{"event":"cmd_output","timestamp":1607098428,"output":"al_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"initializing\", publisher_cb: :skip, repo: "},{"event":"cmd_output","timestamp":1607098428,"output":"Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :p"},{"event":"cmd_output","timestamp":1607098428,"output":"pl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098428,"output":"13:48.306 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.WaitingState with name Elixir"},{"event":"cmd_output","timestamp":1607098428,"output":".Ppl.PplBlocks.STMHandler.WaitingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"P"},{"event":"cmd_output","timestamp":1607098428,"output":"pl-PplBlocks-STMHandler-WaitingState\"]}, recurring args: %{allowed_states: [\"waiting\", \"running\", \"d"},{"event":"cmd_output","timestamp":1607098428,"output":"one\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"waiting\","},{"event":"cmd_output","timestamp":1607098428,"output":" publisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>, repo: Ppl.Ect"},{"event":"cmd_output","timestamp":1607098428,"output":"oRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, "},{"event":"cmd_output","timestamp":1607098428,"output":":block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:48.3"},{"event":"cmd_output","timestamp":1607098428,"output":"06 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.RunningState with name Elixir.Ppl.Pp"},{"event":"cmd_output","timestamp":1607098428,"output":"lBlocks.STMHandler.RunningState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplB"},{"event":"cmd_output","timestamp":1607098428,"output":"locks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"],"},{"event":"cmd_output","timestamp":1607098428,"output":" cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"running\", publ"},{"event":"cmd_output","timestamp":1607098428,"output":"isher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0>, repo: Ppl.EctoRep"},{"event":"cmd_output","timestamp":1607098428,"output":"o, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :blo"},{"event":"cmd_output","timestamp":1607098428,"output":"ck_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098428,"output":"13:48.306 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.StoppingState with name Elixi"},{"event":"cmd_output","timestamp":1607098428,"output":"r.Ppl.PplBlocks.STMHandler.StoppingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", ["},{"event":"cmd_output","timestamp":1607098428,"output":"\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], "},{"event":"cmd_output","timestamp":1607098428,"output":"cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"stopping\", publ"},{"event":"cmd_output","timestamp":1607098428,"output":"isher_cb: #Function<0.104215991/1 in Ppl.PplBlocks.STMHandler.StoppingState.args/0>, repo: Ppl.EctoR"},{"event":"cmd_output","timestamp":1607098428,"output":"epo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :b"},{"event":"cmd_output","timestamp":1607098428,"output":"lock_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098428,"output":"6:13:48.306 [info] Periodic from module Elixir.Block.Blocks.STMHandler.InitializingState with name "},{"event":"cmd_output","timestamp":1607098428,"output":"Elixir.Block.Blocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake"},{"event":"cmd_output","timestamp":1607098428,"output":"_up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"running\", "},{"event":"cmd_output","timestamp":1607098428,"output":"\"done\"], cooling_time_sec: 0, initial_query: Block.Blocks.Model.Blocks, observed_state: \"initializin"},{"event":"cmd_output","timestamp":1607098428,"output":"g\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :st"},{"event":"cmd_output","timestamp":1607098428,"output":"ate, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098428,"output":"22m\n16:13:48.306 [info] Periodic from module Elixir.Block.Blocks.STMHandler.RunningState with name"},{"event":"cmd_output","timestamp":1607098428,"output":" Elixir.Block.Blocks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\""},{"event":"cmd_output","timestamp":1607098428,"output":", [\"Block-Blocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping"},{"event":"cmd_output","timestamp":1607098428,"output":"\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"running"},{"event":"cmd_output","timestamp":1607098428,"output":"\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :sta"},{"event":"cmd_output","timestamp":1607098428,"output":"te, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098428,"output":"2m\n16:13:48.307 [info] Periodic from module Elixir.Block.Blocks.STMHandler.StoppingState with name"},{"event":"cmd_output","timestamp":1607098428,"output":" Elixir.Block.Blocks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up"},{"event":"cmd_output","timestamp":1607098428,"output":"\", [\"Block-Blocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\""},{"event":"cmd_output","timestamp":1607098428,"output":"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"stopping\", publi"},{"event":"cmd_output","timestamp":1607098428,"output":"sher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :rec"},{"event":"cmd_output","timestamp":1607098428,"output":"overy_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098428,"output":"3:48.307 [info] Periodic from module Elixir.Block.Tasks.STMHandler.PendingState with name Elixir.Bl"},{"event":"cmd_output","timestamp":1607098428,"output":"ock.Tasks.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-T"},{"event":"cmd_output","timestamp":1607098428,"output":"asks-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time"},{"event":"cmd_output","timestamp":1607098428,"output":"_sec: 0, initial_query: Block.Tasks.Model.Tasks, observed_state: \"pending\", publisher_cb: :skip, rep"},{"event":"cmd_output","timestamp":1607098428,"output":"o: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block"},{"event":"cmd_output","timestamp":1607098428,"output":"_id, :build_request_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:"},{"event":"cmd_output","timestamp":1607098428,"output":"48.307 [info] Periodic from module Elixir.Block.Tasks.STMHandler.RunningState with name Elixir.Bloc"},{"event":"cmd_output","timestamp":1607098428,"output":"k.Tasks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tas"},{"event":"cmd_output","timestamp":1607098428,"output":"ks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], co"},{"event":"cmd_output","timestamp":1607098428,"output":"oling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"running\", publisher_cb:"},{"event":"cmd_output","timestamp":1607098428,"output":" :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_co"},{"event":"cmd_output","timestamp":1607098428,"output":"unt, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:48.307 ["},{"event":"cmd_output","timestamp":1607098428,"output":"info] Periodic from module Elixir.Block.Tasks.STMHandler.StoppingState with name Elixir.Block.Tasks"},{"event":"cmd_output","timestamp":1607098428,"output":".STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STM"},{"event":"cmd_output","timestamp":1607098428,"output":"Handler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: "},{"event":"cmd_output","timestamp":1607098428,"output":"-2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"stopping\", publisher_cb: :skip, repo: B"},{"event":"cmd_output","timestamp":1607098428,"output":"lock.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id]"},{"event":"cmd_output","timestamp":1607098428,"output":", schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:48.418 [info] ppl_id: "},{"event":"cmd_output","timestamp":1607098428,"output":"bc992645-7f48-46f2-95ab-e7c2a0c880ed, type: PplRequests, event: persisted source_args for pipeline: "},{"event":"cmd_output","timestamp":1607098428,"output":"bc992645-7f48-46f2-95ab-e7c2a0c880ed, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert"},{"event":"cmd_output","timestamp":1607098428,"output":"_source/2(L89), \n\u001b[0m\u001b[22m\n16:13:48.420 [info] ppl_id: bc992645-7f48-46f2-95ab-e7c2a0c880ed, type"},{"event":"cmd_output","timestamp":1607098428,"output":": PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM"},{"event":"cmd_output","timestamp":1607098428,"output":".Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:48.447 [info] ppl_id: bc992645-7f48-46f2-95ab-e7c"},{"event":"cmd_output","timestamp":1607098428,"output":"2a0c880ed, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098428,"output":": Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:48.471 [info] ppl_id: bc992645"},{"event":"cmd_output","timestamp":1607098428,"output":"-7f48-46f2-95ab-e7c2a0c880ed, type: PplRequests, event: persisted definition for request with reques"},{"event":"cmd_output","timestamp":1607098428,"output":"t_token: b0e09dda-364b-11eb-a917-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueri"},{"event":"cmd_output","timestamp":1607098428,"output":"es.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:13:48.474 [info] Queue persisted: {:ok, %Ppl.Queues.Mo"},{"event":"cmd_output","timestamp":1607098428,"output":"del.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:13:48.4"},{"event":"cmd_output","timestamp":1607098428,"output":"73107], name: \"master-.semaphore/semaphore.yml\", organization_id: \"984bbbf7-0d49-46dc-bc58-c20ad86f8"},{"event":"cmd_output","timestamp":1607098428,"output":"a5b\", project_id: \"3bb31c2f-f352-45b4-8a0f-e2065bc2e540\", queue_id: \"1e4cfe46-3df5-44c4-a2f0-8283a40"},{"event":"cmd_output","timestamp":1607098428,"output":"ab352\", scope: \"project\", updated_at: ~N[2020-12-04 16:13:48.473117], user_generated: false}}\n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098428,"output":"[22m\n16:13:48.481 [info] ppl_id: not_available, event: created, origin: Elixir.Ppl.PplSubInits.STM"},{"event":"cmd_output","timestamp":1607098428,"output":"Handler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:48.481 [info] event: created, origin: "},{"event":"cmd_output","timestamp":1607098428,"output":"Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:48.481 [info]"},{"event":"cmd_output","timestamp":1607098428,"output":" ppl_id: bc992645-7f48-46f2-95ab-e7c2a0c880ed, type: PplBlocks, block_index: 0, state: initializing"},{"event":"cmd_output","timestamp":1607098428,"output":", event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_"},{"event":"cmd_output","timestamp":1607098428,"output":"ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:48.481 [info] ppl_id: bc992645-7f48-46f2-95ab-e7c2a0c880ed, type: P"},{"event":"cmd_output","timestamp":1607098428,"output":"plBlocks, block_index: 1, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098428,"output":".PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:48.481 [info] ppl_id: "},{"event":"cmd_output","timestamp":1607098428,"output":"bc992645-7f48-46f2-95ab-e7c2a0c880ed, type: PplBlocks, block_index: 2, state: initializing, event: c"},{"event":"cmd_output","timestamp":1607098428,"output":"reated, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105"},{"event":"cmd_output","timestamp":1607098428,"output":"), \n\u001b[0m\u001b[22m\n16:13:48.481 [info] ppl_id: bc992645-7f48-46f2-95ab-e7c2a0c880ed, type: PplBlocks, "},{"event":"cmd_output","timestamp":1607098428,"output":"block_index: 3, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubIni"},{"event":"cmd_output","timestamp":1607098428,"output":"ts.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:48.481 [info] ppl_id: bc992645-7"},{"event":"cmd_output","timestamp":1607098428,"output":"f48-46f2-95ab-e7c2a0c880ed, type: PplBlocks, block_index: 4, state: initializing, event: created, re"},{"event":"cmd_output","timestamp":1607098428,"output":"covery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098428,"output":"[22m\n16:13:48.483 [info] ppl_id: bc992645-7f48-46f2-95ab-e7c2a0c880ed, type: PplSubInits, state: d"},{"event":"cmd_output","timestamp":1607098428,"output":"one, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_s"},{"event":"cmd_output","timestamp":1607098428,"output":"tate_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:48.492 [info] ppl_id: bc992645-7f48-46f2-95ab-e7c2a0c880ed, "},{"event":"cmd_output","timestamp":1607098428,"output":"type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Imp"},{"event":"cmd_output","timestamp":1607098428,"output":"l.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:48.495 [info] ppl_id: bc992645-7f48-46f2-95ab-e7c2a0c"},{"event":"cmd_output","timestamp":1607098428,"output":"880ed, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098428,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:48.500 [info] ppl_id: bc9"},{"event":"cmd_output","timestamp":1607098428,"output":"92645-7f48-46f2-95ab-e7c2a0c880ed, type: Ppls, state: queuing, event: exit_scheduling, recovery_coun"},{"event":"cmd_output","timestamp":1607098428,"output":"t: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:48.502 [info] ppl_"},{"event":"cmd_output","timestamp":1607098428,"output":"id: bc992645-7f48-46f2-95ab-e7c2a0c880ed, type: PplBlocks, block_index: 1, state: waiting, event: ex"},{"event":"cmd_output","timestamp":1607098428,"output":"it_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098428,"output":"m\n16:13:48.509 [info] ppl_id: bc992645-7f48-46f2-95ab-e7c2a0c880ed, type: PplBlocks, block_index: "},{"event":"cmd_output","timestamp":1607098428,"output":"2, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_sta"},{"event":"cmd_output","timestamp":1607098428,"output":"te_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:48.509 [info] ppl_id: bc992645-7f48-46f2-95ab-e7c2a0c880ed, ty"},{"event":"cmd_output","timestamp":1607098428,"output":"pe: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl."},{"event":"cmd_output","timestamp":1607098428,"output":"log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:48.514 [info] PplBlocks WaitingState STM is scheduling "},{"event":"cmd_output","timestamp":1607098428,"output":"block 2 from pipeline: \"bc992645-7f48-46f2-95ab-e7c2a0c880ed\"\n\u001b[0m\u001b[22m\n16:13:48.521 [info] ppl_i"},{"event":"cmd_output","timestamp":1607098428,"output":"d: bc992645-7f48-46f2-95ab-e7c2a0c880ed, type: PplBlocks, block_index: 3, state: waiting, event: exi"},{"event":"cmd_output","timestamp":1607098428,"output":"t_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098428,"output":"\n16:13:48.526 [info] ppl_id: bc992645-7f48-46f2-95ab-e7c2a0c880ed, type: PplBlocks, block_index: 4"},{"event":"cmd_output","timestamp":1607098428,"output":", state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_stat"},{"event":"cmd_output","timestamp":1607098428,"output":"e_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:48.528 [info] block_id: 44bb7733-0a14-40fe-a67d-fe0f203cd405, t"},{"event":"cmd_output","timestamp":1607098428,"output":"ype: BlockRequests, event: persisted block run request from ppl bc992645-7f48-46f2-95ab-e7c2a0c880ed"},{"event":"cmd_output","timestamp":1607098428,"output":" for block 2, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35),"},{"event":"cmd_output","timestamp":1607098428,"output":" \n\u001b[0m\u001b[22m\n16:13:48.531 [info] block_id: 44bb7733-0a14-40fe-a67d-fe0f203cd405, type: Blocks, sta"},{"event":"cmd_output","timestamp":1607098428,"output":"te: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQu"},{"event":"cmd_output","timestamp":1607098428,"output":"eries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:13:48.533 [info] Block 2 of pipeline with id: bc992645-7f48-46"},{"event":"cmd_output","timestamp":1607098428,"output":"f2-95ab-e7c2a0c880ed scheduled in block service with id: : \"44bb7733-0a14-40fe-a67d-fe0f203cd405\"\n\u001b"},{"event":"cmd_output","timestamp":1607098428,"output":"[0m\u001b[22m\n16:13:48.535 [info] ppl_id: bc992645-7f48-46f2-95ab-e7c2a0c880ed, type: PplBlocks, block_"},{"event":"cmd_output","timestamp":1607098428,"output":"index: 2, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl."},{"event":"cmd_output","timestamp":1607098428,"output":"log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:48.538 [info] block_id: 44bb7733-0a14-40fe-a67d-fe0f203"},{"event":"cmd_output","timestamp":1607098428,"output":"cd405, type: BlockRequests, event: persisted build and sub_ppl details for block_request: 44bb7733-0"},{"event":"cmd_output","timestamp":1607098428,"output":"a14-40fe-a67d-fe0f203cd405, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_bui"},{"event":"cmd_output","timestamp":1607098428,"output":"ld/2(L41), \n\u001b[0m\u001b[22m\n16:13:48.538 [info] PplBlocks WaitingState STM is scheduling block 1 from p"},{"event":"cmd_output","timestamp":1607098428,"output":"ipeline: \"bc992645-7f48-46f2-95ab-e7c2a0c880ed\"\n\u001b[0m\u001b[22m\n16:13:48.540 [info] block_id: 44bb7733-"},{"event":"cmd_output","timestamp":1607098428,"output":"0a14-40fe-a67d-fe0f203cd405, type: Tasks, state: pending, event: created, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098428,"output":" Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:13:48.542 [info] "},{"event":"cmd_output","timestamp":1607098428,"output":" block_id: 44bb7733-0a14-40fe-a67d-fe0f203cd405, type: Blocks, state: running, event: exit_schedulin"},{"event":"cmd_output","timestamp":1607098428,"output":"g, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:48."},{"event":"cmd_output","timestamp":1607098428,"output":"544 [info] block_id: 57771504-60f6-41bb-b025-7ca1e1964b4a, type: BlockRequests, event: persisted bl"},{"event":"cmd_output","timestamp":1607098428,"output":"ock run request from ppl bc992645-7f48-46f2-95ab-e7c2a0c880ed for block 1, origin: Elixir.Block.Bloc"},{"event":"cmd_output","timestamp":1607098428,"output":"kRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:13:48.545 [info] bloc"},{"event":"cmd_output","timestamp":1607098428,"output":"k_id: 57771504-60f6-41bb-b025-7ca1e1964b4a, type: Blocks, state: initializing, event: initializing, "},{"event":"cmd_output","timestamp":1607098428,"output":"recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:13"},{"event":"cmd_output","timestamp":1607098428,"output":":48.547 [info] Block 1 of pipeline with id: bc992645-7f48-46f2-95ab-e7c2a0c880ed scheduled in block"},{"event":"cmd_output","timestamp":1607098428,"output":" service with id: : \"57771504-60f6-41bb-b025-7ca1e1964b4a\"\n\u001b[0m\u001b[22m\n16:13:48.549 [info] ppl_id: "},{"event":"cmd_output","timestamp":1607098428,"output":"bc992645-7f48-46f2-95ab-e7c2a0c880ed, type: PplBlocks, block_index: 1, state: running, event: exit_s"},{"event":"cmd_output","timestamp":1607098428,"output":"cheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098428,"output":"6:13:48.552 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"bc992645-7f48-4"},{"event":"cmd_output","timestamp":1607098428,"output":"6f2-95ab-e7c2a0c880ed\"\n\u001b[0m\u001b[22m\n16:13:48.558 [info] block_id: 44bb7733-0a14-40fe-a67d-fe0f203cd4"},{"event":"cmd_output","timestamp":1607098428,"output":"05, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.ST"},{"event":"cmd_output","timestamp":1607098428,"output":"M.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:48.560 [info] block_id: 57771504-60f6-41bb-b025-"},{"event":"cmd_output","timestamp":1607098428,"output":"7ca1e1964b4a, type: BlockRequests, event: persisted build and sub_ppl details for block_request: 577"},{"event":"cmd_output","timestamp":1607098428,"output":"71504-60f6-41bb-b025-7ca1e1964b4a, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.ins"},{"event":"cmd_output","timestamp":1607098428,"output":"ert_build/2(L41), \n\u001b[0m\u001b[22m\n16:13:48.563 [info] block_id: 57771504-60f6-41bb-b025-7ca1e1964b4a, "},{"event":"cmd_output","timestamp":1607098428,"output":"type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandl"},{"event":"cmd_output","timestamp":1607098428,"output":"er.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:13:48.563 [info] block_id: 2b567966-1b0a-43c3"},{"event":"cmd_output","timestamp":1607098428,"output":"-8adc-8a177ec18cf8, type: BlockRequests, event: persisted block run request from ppl bc992645-7f48-4"},{"event":"cmd_output","timestamp":1607098428,"output":"6f2-95ab-e7c2a0c880ed for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.pro"},{"event":"cmd_output","timestamp":1607098428,"output":"cess_response/4(L35), \n\u001b[0m\u001b[22m\n16:13:48.565 [info] block_id: 57771504-60f6-41bb-b025-7ca1e1964b"},{"event":"cmd_output","timestamp":1607098428,"output":"4a, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.S"},{"event":"cmd_output","timestamp":1607098428,"output":"TM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:48.568 [info] block_id: 2b567966-1b0a-43c3-8adc"},{"event":"cmd_output","timestamp":1607098428,"output":"-8a177ec18cf8, type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098428,"output":"ixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:13:48.571 [info] Block 0 of pi"},{"event":"cmd_output","timestamp":1607098428,"output":"peline with id: bc992645-7f48-46f2-95ab-e7c2a0c880ed scheduled in block service with id: : \"2b567966"},{"event":"cmd_output","timestamp":1607098428,"output":"-1b0a-43c3-8adc-8a177ec18cf8\"\n\u001b[0m\u001b[22m\n16:13:48.573 [info] ppl_id: bc992645-7f48-46f2-95ab-e7c2a"},{"event":"cmd_output","timestamp":1607098428,"output":"0c880ed, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098428,"output":" origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:48.580 [info] block_id:"},{"event":"cmd_output","timestamp":1607098428,"output":" 57771504-60f6-41bb-b025-7ca1e1964b4a, type: Tasks, state: running, event: exit_scheduling, recovery"},{"event":"cmd_output","timestamp":1607098428,"output":"_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:48.583 [info] "},{"event":"cmd_output","timestamp":1607098428,"output":" block_id: 2b567966-1b0a-43c3-8adc-8a177ec18cf8, type: BlockRequests, event: persisted build and sub"},{"event":"cmd_output","timestamp":1607098428,"output":"_ppl details for block_request: 2b567966-1b0a-43c3-8adc-8a177ec18cf8, origin: Elixir.Block.BlockRequ"},{"event":"cmd_output","timestamp":1607098428,"output":"ests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:13:48.585 [info] block_id: 2b5"},{"event":"cmd_output","timestamp":1607098428,"output":"67966-1b0a-43c3-8adc-8a177ec18cf8, type: Tasks, state: pending, event: created, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098428,"output":"rigin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:13:48.587 ["},{"event":"cmd_output","timestamp":1607098428,"output":"info] block_id: 2b567966-1b0a-43c3-8adc-8a177ec18cf8, type: Blocks, state: running, event: exit_sch"},{"event":"cmd_output","timestamp":1607098428,"output":"eduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098428,"output":"13:48.598 [info] block_id: 2b567966-1b0a-43c3-8adc-8a177ec18cf8, type: Tasks, state: running, event"},{"event":"cmd_output","timestamp":1607098428,"output":": exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098430,"output":"\u001b[22m\n16:13:50.591 [info] block_id: 44bb7733-0a14-40fe-a67d-fe0f203cd405, type: Tasks, state: done"},{"event":"cmd_output","timestamp":1607098430,"output":", event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90),"},{"event":"cmd_output","timestamp":1607098430,"output":" \n\u001b[0m\u001b[22m\n16:13:50.596 [info] block_id: 44bb7733-0a14-40fe-a67d-fe0f203cd405, type: Blocks, sta"},{"event":"cmd_output","timestamp":1607098430,"output":"te: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change"},{"event":"cmd_output","timestamp":1607098430,"output":"/1(L90), \n\u001b[0m\u001b[22m\n16:13:50.608 [info] ppl_id: bc992645-7f48-46f2-95ab-e7c2a0c880ed, block_id: 4"},{"event":"cmd_output","timestamp":1607098430,"output":"4bb7733-0a14-40fe-a67d-fe0f203cd405, type: PplBlocks, block_index: 2, state: done, result: failed, e"},{"event":"cmd_output","timestamp":1607098430,"output":"vent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n"},{"event":"cmd_output","timestamp":1607098433,"output":"\u001b[0m\u001b[22m\n16:13:53.646 [info] block_id: 2b567966-1b0a-43c3-8adc-8a177ec18cf8, type: Tasks, state: "},{"event":"cmd_output","timestamp":1607098433,"output":"done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098433,"output":"90), \n\u001b[0m\u001b[22m\n16:13:53.650 [info] block_id: 2b567966-1b0a-43c3-8adc-8a177ec18cf8, type: Blocks,"},{"event":"cmd_output","timestamp":1607098433,"output":" state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_ch"},{"event":"cmd_output","timestamp":1607098433,"output":"ange/1(L90), \n\u001b[0m\u001b[22m\n16:13:53.660 [info] ppl_id: bc992645-7f48-46f2-95ab-e7c2a0c880ed, block_i"},{"event":"cmd_output","timestamp":1607098433,"output":"d: 2b567966-1b0a-43c3-8adc-8a177ec18cf8, type: PplBlocks, block_index: 0, state: done, result: passe"},{"event":"cmd_output","timestamp":1607098433,"output":"d, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90)"},{"event":"cmd_output","timestamp":1607098433,"output":", \n\u001b[0m\u001b[22m\n16:13:53.666 [info] PplBlocks WaitingState STM is scheduling block 3 from pipeline: "},{"event":"cmd_output","timestamp":1607098433,"output":"\"bc992645-7f48-46f2-95ab-e7c2a0c880ed\"\n\u001b[0m\u001b[22m\n16:13:53.676 [info] ppl_id: bc992645-7f48-46f2-9"},{"event":"cmd_output","timestamp":1607098433,"output":"5ab-e7c2a0c880ed, type: PplBlocks, block_index: 3, state: done, result: canceled, event: exit_schedu"},{"event":"cmd_output","timestamp":1607098433,"output":"ling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:"},{"event":"cmd_output","timestamp":1607098433,"output":"53.754 [info] block_id: 57771504-60f6-41bb-b025-7ca1e1964b4a, type: Tasks, state: done, event: exit"},{"event":"cmd_output","timestamp":1607098433,"output":"_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098433,"output":"\n16:13:53.762 [info] block_id: 57771504-60f6-41bb-b025-7ca1e1964b4a, type: Blocks, state: done, eve"},{"event":"cmd_output","timestamp":1607098433,"output":"nt: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b["},{"event":"cmd_output","timestamp":1607098433,"output":"0m\u001b[22m\n16:13:53.769 [info] ppl_id: bc992645-7f48-46f2-95ab-e7c2a0c880ed, block_id: 57771504-60f6-"},{"event":"cmd_output","timestamp":1607098433,"output":"41bb-b025-7ca1e1964b4a, type: PplBlocks, block_index: 1, state: done, result: passed, event: exit_sc"},{"event":"cmd_output","timestamp":1607098433,"output":"heduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098433,"output":":13:53.774 [info] PplBlocks WaitingState STM is scheduling block 4 from pipeline: \"bc992645-7f48-46"},{"event":"cmd_output","timestamp":1607098433,"output":"f2-95ab-e7c2a0c880ed\"\n\u001b[0m\u001b[22m\n16:13:53.782 [info] ppl_id: bc992645-7f48-46f2-95ab-e7c2a0c880ed,"},{"event":"cmd_output","timestamp":1607098433,"output":" type: PplBlocks, block_index: 4, state: done, result: canceled, event: exit_scheduling, recovery_co"},{"event":"cmd_output","timestamp":1607098433,"output":"unt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:53.792 [info] pp"},{"event":"cmd_output","timestamp":1607098433,"output":"l_id: bc992645-7f48-46f2-95ab-e7c2a0c880ed, type: Ppls, state: done, result: failed, event: exit_sch"},{"event":"cmd_output","timestamp":1607098433,"output":"eduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * "},{"event":"cmd_output","timestamp":1607098433,"output":"test Free topology failing pipeline with fail_fast = cancel (5674.5ms)\u001b[0m\n * test Free topology f"},{"event":"cmd_output","timestamp":1607098433,"output":"ailing pipeline with fail_fast = stop\u001b[22m\n16:13:53.955 [info] Request: 'run: %{:repo_name => \"19_"},{"event":"cmd_output","timestamp":1607098433,"output":"fail_fast_stop\", \"branch_id\" => \"69720ee5-d1cd-4efd-bc69-127364c1bc53\", \"branch_name\" => \"master\", \""},{"event":"cmd_output","timestamp":1607098433,"output":"commit_sha\" => \"75891a4469\", \"file_name\" => \"semaphore.yml\", \"hook_id\" => \"b44065d2-364b-11eb-95e1-5"},{"event":"cmd_output","timestamp":1607098433,"output":"254005464e2\", \"label\" => \"master\", \"organization_id\" => \"d19506fe-3af8-4424-bb7a-0257b181e226\", \"own"},{"event":"cmd_output","timestamp":1607098433,"output":"er\" => \"rt\", \"project_id\" => \"8854c50e-ca6f-4ba5-bc81-1a05bdfbaa1f\", \"repo_name\" => \"2_basic\", \"requ"},{"event":"cmd_output","timestamp":1607098433,"output":"est_token\" => \"b4405cae-364b-11eb-ad35-5254005464e2\", \"requester_id\" => \"e6a61d62-db81-4d78-a2d8-230"},{"event":"cmd_output","timestamp":1607098433,"output":"11ff75334\", \"service\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_"},{"event":"cmd_output","timestamp":1607098433,"output":"id\" => \"b494c687-cc13-46b4-af71-070d915d232b\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:13:53.9"},{"event":"cmd_output","timestamp":1607098433,"output":"56 [info] ppl_id: 028d68af-02c5-458d-969c-7ba8d444d01d, type: PplRequests, event: persisted schedul"},{"event":"cmd_output","timestamp":1607098433,"output":"e request with request_token: b4405cae-364b-11eb-ad35-5254005464e2, origin: Elixir.Ppl.PplRequests.M"},{"event":"cmd_output","timestamp":1607098433,"output":"odel.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:13:53.959 [info] ppl_id: 028d68af-"},{"event":"cmd_output","timestamp":1607098433,"output":"02c5-458d-969c-7ba8d444d01d, type: Ppls, state: initializing, event: initializing, recovery_count: 0"},{"event":"cmd_output","timestamp":1607098433,"output":", origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:13:53.963 [inf"},{"event":"cmd_output","timestamp":1607098433,"output":"o] Project 8854c50e-ca6f-4ba5-bc81-1a05bdfbaa1f and branch masterlatest_wf details updated: \"wf_id:"},{"event":"cmd_output","timestamp":1607098433,"output":" b494c687-cc13-46b4-af71-070d915d232b, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:13:53.964 [info] Persisted ppl_"},{"event":"cmd_output","timestamp":1607098433,"output":"sub_init for pipeline with ppl_id: 028d68af-02c5-458d-969c-7ba8d444d01d: %Ppl.PplSubInits.Model.PplS"},{"event":"cmd_output","timestamp":1607098433,"output":"ubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_"},{"event":"cmd_output","timestamp":1607098433,"output":"description: nil, id: 315, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16"},{"event":"cmd_output","timestamp":1607098433,"output":":13:53.963663], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"028d68af-02c5-458d-969c-7ba8d444d01d\", recovery_count: 0, result: nil, result_rea"},{"event":"cmd_output","timestamp":1607098433,"output":"son: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020"},{"event":"cmd_output","timestamp":1607098433,"output":"-12-04 16:13:53.963670]}\n\u001b[0m\u001b[22m\n16:13:53.967 [info] Periodic from module Elixir.Ppl.Ppls.STMHa"},{"event":"cmd_output","timestamp":1607098433,"output":"ndler.InitializingState with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms, me"},{"event":"cmd_output","timestamp":1607098433,"output":"tric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %{al"},{"event":"cmd_output","timestamp":1607098433,"output":"lowed_states: [\"initializing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Mode"},{"event":"cmd_output","timestamp":1607098433,"output":"l.Ppls, observed_state: \"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler"},{"event":"cmd_output","timestamp":1607098433,"output":".InitializingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :s"},{"event":"cmd_output","timestamp":1607098433,"output":"tate, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m"},{"event":"cmd_output","timestamp":1607098433,"output":"\u001b[22m\n16:13:53.967 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingState with name E"},{"event":"cmd_output","timestamp":1607098433,"output":"lixir.Ppl.Ppls.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Pp"},{"event":"cmd_output","timestamp":1607098433,"output":"l-Ppls-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"pending\", \"queuing\", \"running"},{"event":"cmd_output","timestamp":1607098433,"output":"\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publ"},{"event":"cmd_output","timestamp":1607098433,"output":"isher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, ret"},{"event":"cmd_output","timestamp":1607098433,"output":"urning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: P"},{"event":"cmd_output","timestamp":1607098433,"output":"pl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:13:53.967 [info] Periodic f"},{"event":"cmd_output","timestamp":1607098433,"output":"rom module Elixir.Ppl.Ppls.STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandler.QueuingState"},{"event":"cmd_output","timestamp":1607098433,"output":" :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, rec"},{"event":"cmd_output","timestamp":1607098433,"output":"urring args: %{allowed_states: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, initial_query: "},{"event":"cmd_output","timestamp":1607098433,"output":"Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.ST"},{"event":"cmd_output","timestamp":1607098433,"output":"MHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at,"},{"event":"cmd_output","timestamp":1607098433,"output":" :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b"},{"event":"cmd_output","timestamp":1607098433,"output":"[0m\u001b[22m\n16:13:53.968 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.RunningState with nam"},{"event":"cmd_output","timestamp":1607098433,"output":"e Elixir.Ppl.Ppls.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", ["},{"event":"cmd_output","timestamp":1607098433,"output":"\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"don"},{"event":"cmd_output","timestamp":1607098433,"output":"e\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"running\", publisher_"},{"event":"cmd_output","timestamp":1607098433,"output":"cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returnin"},{"event":"cmd_output","timestamp":1607098433,"output":"g: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Pp"},{"event":"cmd_output","timestamp":1607098433,"output":"ls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:13:53.969 [info] Periodic from m"},{"event":"cmd_output","timestamp":1607098433,"output":"odule Elixir.Ppl.Ppls.STMHandler.StoppingState with name Elixir.Ppl.Ppls.STMHandler.StoppingState ::"},{"event":"cmd_output","timestamp":1607098433,"output":" period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recur"},{"event":"cmd_output","timestamp":1607098433,"output":"ring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Mod"},{"event":"cmd_output","timestamp":1607098433,"output":"el.Ppls, observed_state: \"stopping\", publisher_cb: #Function<0.71803493/1 in Ppl.Ppls.STMHandler.Sto"},{"event":"cmd_output","timestamp":1607098433,"output":"ppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :r"},{"event":"cmd_output","timestamp":1607098433,"output":"esult, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098433,"output":"6:13:53.969 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedState with name El"},{"event":"cmd_output","timestamp":1607098433,"output":"ixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\""},{"event":"cmd_output","timestamp":1607098433,"output":", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args: %{allowed_states: [\"fetching\", \"done"},{"event":"cmd_output","timestamp":1607098433,"output":"\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"created\""},{"event":"cmd_output","timestamp":1607098433,"output":", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state,"},{"event":"cmd_output","timestamp":1607098433,"output":" :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :sk"},{"event":"cmd_output","timestamp":1607098433,"output":"ip}\n\u001b[0m\u001b[22m\n16:13:53.970 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.Fetching"},{"event":"cmd_output","timestamp":1607098433,"output":"State with name Elixir.Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 ms, metric_name: {\"Pp"},{"event":"cmd_output","timestamp":1607098433,"output":"l.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %{allowed_states"},{"event":"cmd_output","timestamp":1607098433,"output":": [\"regular_init\", \"compilation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Mode"},{"event":"cmd_output","timestamp":1607098433,"output":"l.PplSubInits, observed_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id,"},{"event":"cmd_output","timestamp":1607098433,"output":" :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInit"},{"event":"cmd_output","timestamp":1607098433,"output":"s.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:53.971 [info] Periodic from module E"},{"event":"cmd_output","timestamp":1607098433,"output":"lixir.Ppl.PplSubInits.STMHandler.CompilationState with name Elixir.Ppl.PplSubInits.STMHandler.Compil"},{"event":"cmd_output","timestamp":1607098433,"output":"ationState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-Com"},{"event":"cmd_output","timestamp":1607098433,"output":"pilationState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"stopping\", \"don"},{"event":"cmd_output","timestamp":1607098433,"output":"e\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"compil"},{"event":"cmd_output","timestamp":1607098433,"output":"ation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :"},{"event":"cmd_output","timestamp":1607098433,"output":"state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_superviso"},{"event":"cmd_output","timestamp":1607098433,"output":"r: :skip}\n\u001b[0m\u001b[22m\n16:13:53.971 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.Re"},{"event":"cmd_output","timestamp":1607098433,"output":"gularInitState with name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period: 100 ms, metri"},{"event":"cmd_output","timestamp":1607098433,"output":"c_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurring args: %"},{"event":"cmd_output","timestamp":1607098433,"output":"{allowed_states: [\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, ob"},{"event":"cmd_output","timestamp":1607098433,"output":"served_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_r"},{"event":"cmd_output","timestamp":1607098433,"output":"equest, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSu"},{"event":"cmd_output","timestamp":1607098433,"output":"bInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:53.972 [info] Periodic from module Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098433,"output":"Blocks.STMHandler.InitializingState with name Elixir.Ppl.PplBlocks.STMHandler.InitializingState :: p"},{"event":"cmd_output","timestamp":1607098433,"output":"eriod: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-InitializingState\"]}"},{"event":"cmd_output","timestamp":1607098433,"output":", recurring args: %{allowed_states: [\"initializing\", \"waiting\", \"done\"], cooling_time_sec: 0, initia"},{"event":"cmd_output","timestamp":1607098433,"output":"l_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"initializing\", publisher_cb: :skip, repo: P"},{"event":"cmd_output","timestamp":1607098433,"output":"pl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :pp"},{"event":"cmd_output","timestamp":1607098433,"output":"l_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098433,"output":"3:53.972 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.WaitingState with name Elixir."},{"event":"cmd_output","timestamp":1607098433,"output":"Ppl.PplBlocks.STMHandler.WaitingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Pp"},{"event":"cmd_output","timestamp":1607098433,"output":"l-PplBlocks-STMHandler-WaitingState\"]}, recurring args: %{allowed_states: [\"waiting\", \"running\", \"do"},{"event":"cmd_output","timestamp":1607098433,"output":"ne\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"waiting\", "},{"event":"cmd_output","timestamp":1607098433,"output":"publisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>, repo: Ppl.Ecto"},{"event":"cmd_output","timestamp":1607098433,"output":"Repo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :"},{"event":"cmd_output","timestamp":1607098433,"output":"block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:53.97"},{"event":"cmd_output","timestamp":1607098433,"output":"3 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.RunningState with name Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098433,"output":"Blocks.STMHandler.RunningState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBl"},{"event":"cmd_output","timestamp":1607098433,"output":"ocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], "},{"event":"cmd_output","timestamp":1607098433,"output":"cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"running\", publi"},{"event":"cmd_output","timestamp":1607098433,"output":"sher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo"},{"event":"cmd_output","timestamp":1607098433,"output":", returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :bloc"},{"event":"cmd_output","timestamp":1607098433,"output":"k_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098433,"output":"3:53.973 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.StoppingState with name Elixir"},{"event":"cmd_output","timestamp":1607098433,"output":".Ppl.PplBlocks.STMHandler.StoppingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\""},{"event":"cmd_output","timestamp":1607098433,"output":"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], c"},{"event":"cmd_output","timestamp":1607098433,"output":"ooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"stopping\", publi"},{"event":"cmd_output","timestamp":1607098433,"output":"sher_cb: #Function<0.104215991/1 in Ppl.PplBlocks.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRe"},{"event":"cmd_output","timestamp":1607098433,"output":"po, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :bl"},{"event":"cmd_output","timestamp":1607098433,"output":"ock_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098433,"output":":13:53.974 [info] Periodic from module Elixir.Block.Blocks.STMHandler.InitializingState with name E"},{"event":"cmd_output","timestamp":1607098433,"output":"lixir.Block.Blocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_"},{"event":"cmd_output","timestamp":1607098433,"output":"up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"running\", \""},{"event":"cmd_output","timestamp":1607098433,"output":"done\"], cooling_time_sec: 0, initial_query: Block.Blocks.Model.Blocks, observed_state: \"initializing"},{"event":"cmd_output","timestamp":1607098433,"output":"\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :sta"},{"event":"cmd_output","timestamp":1607098433,"output":"te, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098433,"output":"2m\n16:13:53.974 [info] Periodic from module Elixir.Block.Blocks.STMHandler.RunningState with name "},{"event":"cmd_output","timestamp":1607098433,"output":"Elixir.Block.Blocks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\","},{"event":"cmd_output","timestamp":1607098433,"output":" [\"Block-Blocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\""},{"event":"cmd_output","timestamp":1607098433,"output":", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"running\""},{"event":"cmd_output","timestamp":1607098433,"output":", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :stat"},{"event":"cmd_output","timestamp":1607098433,"output":"e, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098433,"output":"m\n16:13:53.975 [info] Periodic from module Elixir.Block.Blocks.STMHandler.StoppingState with name "},{"event":"cmd_output","timestamp":1607098433,"output":"Elixir.Block.Blocks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\""},{"event":"cmd_output","timestamp":1607098433,"output":", [\"Block-Blocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"]"},{"event":"cmd_output","timestamp":1607098433,"output":", cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"stopping\", publis"},{"event":"cmd_output","timestamp":1607098433,"output":"her_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :reco"},{"event":"cmd_output","timestamp":1607098433,"output":"very_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13"},{"event":"cmd_output","timestamp":1607098433,"output":":53.976 [info] Periodic from module Elixir.Block.Tasks.STMHandler.PendingState with name Elixir.Blo"},{"event":"cmd_output","timestamp":1607098433,"output":"ck.Tasks.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Ta"},{"event":"cmd_output","timestamp":1607098433,"output":"sks-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_"},{"event":"cmd_output","timestamp":1607098433,"output":"sec: 0, initial_query: Block.Tasks.Model.Tasks, observed_state: \"pending\", publisher_cb: :skip, repo"},{"event":"cmd_output","timestamp":1607098433,"output":": Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_"},{"event":"cmd_output","timestamp":1607098433,"output":"id, :build_request_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:5"},{"event":"cmd_output","timestamp":1607098433,"output":"3.976 [info] Periodic from module Elixir.Block.Tasks.STMHandler.RunningState with name Elixir.Block"},{"event":"cmd_output","timestamp":1607098433,"output":".Tasks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Task"},{"event":"cmd_output","timestamp":1607098433,"output":"s-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], coo"},{"event":"cmd_output","timestamp":1607098433,"output":"ling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"running\", publisher_cb: "},{"event":"cmd_output","timestamp":1607098433,"output":":skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_cou"},{"event":"cmd_output","timestamp":1607098433,"output":"nt, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:53.977 [i"},{"event":"cmd_output","timestamp":1607098433,"output":"nfo] Periodic from module Elixir.Block.Tasks.STMHandler.StoppingState with name Elixir.Block.Tasks."},{"event":"cmd_output","timestamp":1607098433,"output":"STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMH"},{"event":"cmd_output","timestamp":1607098433,"output":"andler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -"},{"event":"cmd_output","timestamp":1607098433,"output":"2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"stopping\", publisher_cb: :skip, repo: Bl"},{"event":"cmd_output","timestamp":1607098433,"output":"ock.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id],"},{"event":"cmd_output","timestamp":1607098434,"output":" schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:54.079 [info] ppl_id: 0"},{"event":"cmd_output","timestamp":1607098434,"output":"28d68af-02c5-458d-969c-7ba8d444d01d, type: PplRequests, event: persisted source_args for pipeline: 0"},{"event":"cmd_output","timestamp":1607098434,"output":"28d68af-02c5-458d-969c-7ba8d444d01d, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_"},{"event":"cmd_output","timestamp":1607098434,"output":"source/2(L89), \n\u001b[0m\u001b[22m\n16:13:54.083 [info] ppl_id: 028d68af-02c5-458d-969c-7ba8d444d01d, type:"},{"event":"cmd_output","timestamp":1607098434,"output":" PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM."},{"event":"cmd_output","timestamp":1607098434,"output":"Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:54.100 [info] ppl_id: 028d68af-02c5-458d-969c-7ba8"},{"event":"cmd_output","timestamp":1607098434,"output":"d444d01d, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098434,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:54.120 [info] ppl_id: 028d68af-"},{"event":"cmd_output","timestamp":1607098434,"output":"02c5-458d-969c-7ba8d444d01d, type: PplRequests, event: persisted definition for request with request"},{"event":"cmd_output","timestamp":1607098434,"output":"_token: b4405cae-364b-11eb-ad35-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQuerie"},{"event":"cmd_output","timestamp":1607098434,"output":"s.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:13:54.123 [info] Queue persisted: {:ok, %Ppl.Queues.Mod"},{"event":"cmd_output","timestamp":1607098434,"output":"el.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:13:54.12"},{"event":"cmd_output","timestamp":1607098434,"output":"2600], name: \"master-.semaphore/semaphore.yml\", organization_id: \"d19506fe-3af8-4424-bb7a-0257b181e2"},{"event":"cmd_output","timestamp":1607098434,"output":"26\", project_id: \"8854c50e-ca6f-4ba5-bc81-1a05bdfbaa1f\", queue_id: \"bcc28f01-9566-41e2-a0a0-370dc17c"},{"event":"cmd_output","timestamp":1607098434,"output":"14d5\", scope: \"project\", updated_at: ~N[2020-12-04 16:13:54.122607], user_generated: false}}\n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098434,"output":"22m\n16:13:54.130 [info] ppl_id: not_available, event: created, origin: Elixir.Ppl.PplSubInits.STMH"},{"event":"cmd_output","timestamp":1607098434,"output":"andler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:54.130 [info] event: created, origin: E"},{"event":"cmd_output","timestamp":1607098434,"output":"lixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:54.130 [info] "},{"event":"cmd_output","timestamp":1607098434,"output":" ppl_id: 028d68af-02c5-458d-969c-7ba8d444d01d, type: PplBlocks, block_index: 0, state: initializing,"},{"event":"cmd_output","timestamp":1607098434,"output":" event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_o"},{"event":"cmd_output","timestamp":1607098434,"output":"k?/1(L105), \n\u001b[0m\u001b[22m\n16:13:54.130 [info] ppl_id: 028d68af-02c5-458d-969c-7ba8d444d01d, type: Pp"},{"event":"cmd_output","timestamp":1607098434,"output":"lBlocks, block_index: 1, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl."},{"event":"cmd_output","timestamp":1607098434,"output":"PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:54.130 [info] ppl_id: 0"},{"event":"cmd_output","timestamp":1607098434,"output":"28d68af-02c5-458d-969c-7ba8d444d01d, type: PplBlocks, block_index: 2, state: initializing, event: cr"},{"event":"cmd_output","timestamp":1607098434,"output":"eated, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105)"},{"event":"cmd_output","timestamp":1607098434,"output":", \n\u001b[0m\u001b[22m\n16:13:54.130 [info] ppl_id: 028d68af-02c5-458d-969c-7ba8d444d01d, type: PplBlocks, b"},{"event":"cmd_output","timestamp":1607098434,"output":"lock_index: 3, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInit"},{"event":"cmd_output","timestamp":1607098434,"output":"s.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:54.130 [info] ppl_id: 028d68af-02"},{"event":"cmd_output","timestamp":1607098434,"output":"c5-458d-969c-7ba8d444d01d, type: PplBlocks, block_index: 4, state: initializing, event: created, rec"},{"event":"cmd_output","timestamp":1607098434,"output":"overy_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098434,"output":"22m\n16:13:54.133 [info] ppl_id: 028d68af-02c5-458d-969c-7ba8d444d01d, type: PplSubInits, state: do"},{"event":"cmd_output","timestamp":1607098434,"output":"ne, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_st"},{"event":"cmd_output","timestamp":1607098434,"output":"ate_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:54.141 [info] ppl_id: 028d68af-02c5-458d-969c-7ba8d444d01d, t"},{"event":"cmd_output","timestamp":1607098434,"output":"ype: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl"},{"event":"cmd_output","timestamp":1607098434,"output":".log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:54.141 [info] ppl_id: 028d68af-02c5-458d-969c-7ba8d444"},{"event":"cmd_output","timestamp":1607098434,"output":"d01d, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098434,"output":"igin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:54.148 [info] ppl_id: 028d"},{"event":"cmd_output","timestamp":1607098434,"output":"68af-02c5-458d-969c-7ba8d444d01d, type: PplBlocks, block_index: 1, state: waiting, event: exit_sched"},{"event":"cmd_output","timestamp":1607098434,"output":"uling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13"},{"event":"cmd_output","timestamp":1607098434,"output":":54.148 [info] ppl_id: 028d68af-02c5-458d-969c-7ba8d444d01d, type: Ppls, state: queuing, event: exi"},{"event":"cmd_output","timestamp":1607098434,"output":"t_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098434,"output":"\n16:13:54.155 [info] ppl_id: 028d68af-02c5-458d-969c-7ba8d444d01d, type: PplBlocks, block_index: 2"},{"event":"cmd_output","timestamp":1607098434,"output":", state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_stat"},{"event":"cmd_output","timestamp":1607098434,"output":"e_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:54.155 [info] ppl_id: 028d68af-02c5-458d-969c-7ba8d444d01d, typ"},{"event":"cmd_output","timestamp":1607098434,"output":"e: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.l"},{"event":"cmd_output","timestamp":1607098434,"output":"og_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:54.159 [info] ppl_id: 028d68af-02c5-458d-969c-7ba8d444d0"},{"event":"cmd_output","timestamp":1607098434,"output":"1d, type: PplBlocks, block_index: 3, state: waiting, event: exit_scheduling, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098434,"output":"in: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:54.160 [info] PplBlocks Wait"},{"event":"cmd_output","timestamp":1607098434,"output":"ingState STM is scheduling block 2 from pipeline: \"028d68af-02c5-458d-969c-7ba8d444d01d\"\n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098434,"output":"\n16:13:54.164 [info] ppl_id: 028d68af-02c5-458d-969c-7ba8d444d01d, type: PplBlocks, block_index: 4,"},{"event":"cmd_output","timestamp":1607098434,"output":" state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state"},{"event":"cmd_output","timestamp":1607098434,"output":"_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:54.168 [info] block_id: 129354f2-01ca-4749-837d-f7363ac862de, ty"},{"event":"cmd_output","timestamp":1607098434,"output":"pe: BlockRequests, event: persisted block run request from ppl 028d68af-02c5-458d-969c-7ba8d444d01d "},{"event":"cmd_output","timestamp":1607098434,"output":"for block 2, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), "},{"event":"cmd_output","timestamp":1607098434,"output":"\n\u001b[0m\u001b[22m\n16:13:54.172 [info] block_id: 129354f2-01ca-4749-837d-f7363ac862de, type: Blocks, stat"},{"event":"cmd_output","timestamp":1607098434,"output":"e: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQue"},{"event":"cmd_output","timestamp":1607098434,"output":"ries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:13:54.175 [info] Block 2 of pipeline with id: 028d68af-02c5-458"},{"event":"cmd_output","timestamp":1607098434,"output":"d-969c-7ba8d444d01d scheduled in block service with id: : \"129354f2-01ca-4749-837d-f7363ac862de\"\n\u001b["},{"event":"cmd_output","timestamp":1607098434,"output":"0m\u001b[22m\n16:13:54.180 [info] ppl_id: 028d68af-02c5-458d-969c-7ba8d444d01d, type: PplBlocks, block_i"},{"event":"cmd_output","timestamp":1607098434,"output":"ndex: 2, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.l"},{"event":"cmd_output","timestamp":1607098434,"output":"og_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:54.187 [info] block_id: 129354f2-01ca-4749-837d-f7363ac8"},{"event":"cmd_output","timestamp":1607098434,"output":"62de, type: BlockRequests, event: persisted build and sub_ppl details for block_request: 129354f2-01"},{"event":"cmd_output","timestamp":1607098434,"output":"ca-4749-837d-f7363ac862de, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_buil"},{"event":"cmd_output","timestamp":1607098434,"output":"d/2(L41), \n\u001b[0m\u001b[22m\n16:13:54.187 [info] PplBlocks WaitingState STM is scheduling block 1 from pi"},{"event":"cmd_output","timestamp":1607098434,"output":"peline: \"028d68af-02c5-458d-969c-7ba8d444d01d\"\n\u001b[0m\u001b[22m\n16:13:54.192 [info] block_id: 129354f2-0"},{"event":"cmd_output","timestamp":1607098434,"output":"1ca-4749-837d-f7363ac862de, type: Tasks, state: pending, event: created, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098434,"output":"Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:13:54.194 [info] "},{"event":"cmd_output","timestamp":1607098434,"output":"block_id: e50c1f0e-e9dc-46e9-8377-1108130cd68a, type: BlockRequests, event: persisted block run requ"},{"event":"cmd_output","timestamp":1607098434,"output":"est from ppl 028d68af-02c5-458d-969c-7ba8d444d01d for block 1, origin: Elixir.Block.BlockRequests.Mo"},{"event":"cmd_output","timestamp":1607098434,"output":"del.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:13:54.196 [info] block_id: e50c1f"},{"event":"cmd_output","timestamp":1607098434,"output":"0e-e9dc-46e9-8377-1108130cd68a, type: Blocks, state: initializing, event: initializing, recovery_cou"},{"event":"cmd_output","timestamp":1607098434,"output":"nt: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:13:54.198 [inf"},{"event":"cmd_output","timestamp":1607098434,"output":"o] block_id: 129354f2-01ca-4749-837d-f7363ac862de, type: Blocks, state: running, event: exit_schedu"},{"event":"cmd_output","timestamp":1607098434,"output":"ling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:"},{"event":"cmd_output","timestamp":1607098434,"output":"54.199 [info] Block 1 of pipeline with id: 028d68af-02c5-458d-969c-7ba8d444d01d scheduled in block "},{"event":"cmd_output","timestamp":1607098434,"output":"service with id: : \"e50c1f0e-e9dc-46e9-8377-1108130cd68a\"\n\u001b[0m\u001b[22m\n16:13:54.203 [info] ppl_id: 0"},{"event":"cmd_output","timestamp":1607098434,"output":"28d68af-02c5-458d-969c-7ba8d444d01d, type: PplBlocks, block_index: 1, state: running, event: exit_sc"},{"event":"cmd_output","timestamp":1607098434,"output":"heduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098434,"output":":13:54.207 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"028d68af-02c5-45"},{"event":"cmd_output","timestamp":1607098434,"output":"8d-969c-7ba8d444d01d\"\n\u001b[0m\u001b[22m\n16:13:54.207 [info] block_id: e50c1f0e-e9dc-46e9-8377-1108130cd68"},{"event":"cmd_output","timestamp":1607098434,"output":"a, type: BlockRequests, event: persisted build and sub_ppl details for block_request: e50c1f0e-e9dc-"},{"event":"cmd_output","timestamp":1607098434,"output":"46e9-8377-1108130cd68a, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2"},{"event":"cmd_output","timestamp":1607098434,"output":"(L41), \n\u001b[0m\u001b[22m\n16:13:54.211 [info] block_id: e50c1f0e-e9dc-46e9-8377-1108130cd68a, type: Tasks"},{"event":"cmd_output","timestamp":1607098434,"output":", state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.Initiali"},{"event":"cmd_output","timestamp":1607098434,"output":"zingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:13:54.214 [info] block_id: e50c1f0e-e9dc-46e9-8377-11081"},{"event":"cmd_output","timestamp":1607098434,"output":"30cd68a, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loo"},{"event":"cmd_output","timestamp":1607098434,"output":"per.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:54.218 [info] block_id: 8adb7f77-9605-4a15"},{"event":"cmd_output","timestamp":1607098434,"output":"-a010-5f50393eddf0, type: BlockRequests, event: persisted block run request from ppl 028d68af-02c5-4"},{"event":"cmd_output","timestamp":1607098434,"output":"58d-969c-7ba8d444d01d for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.pro"},{"event":"cmd_output","timestamp":1607098434,"output":"cess_response/4(L35), \n\u001b[0m\u001b[22m\n16:13:54.221 [info] block_id: 8adb7f77-9605-4a15-a010-5f50393edd"},{"event":"cmd_output","timestamp":1607098434,"output":"f0, type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block."},{"event":"cmd_output","timestamp":1607098434,"output":"Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:13:54.223 [info] block_id: 129354f2-01ca-"},{"event":"cmd_output","timestamp":1607098434,"output":"4749-837d-f7363ac862de, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098434,"output":"in: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:54.224 [info] Block 0 of pip"},{"event":"cmd_output","timestamp":1607098434,"output":"eline with id: 028d68af-02c5-458d-969c-7ba8d444d01d scheduled in block service with id: : \"8adb7f77-"},{"event":"cmd_output","timestamp":1607098434,"output":"9605-4a15-a010-5f50393eddf0\"\n\u001b[0m\u001b[22m\n16:13:54.227 [info] ppl_id: 028d68af-02c5-458d-969c-7ba8d4"},{"event":"cmd_output","timestamp":1607098434,"output":"44d01d, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098434,"output":"origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:54.230 [info] block_id: "},{"event":"cmd_output","timestamp":1607098434,"output":"8adb7f77-9605-4a15-a010-5f50393eddf0, type: BlockRequests, event: persisted build and sub_ppl detail"},{"event":"cmd_output","timestamp":1607098434,"output":"s for block_request: 8adb7f77-9605-4a15-a010-5f50393eddf0, origin: Elixir.Block.BlockRequests.Model."},{"event":"cmd_output","timestamp":1607098434,"output":"BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:13:54.232 [info] block_id: 8adb7f77-9605-"},{"event":"cmd_output","timestamp":1607098434,"output":"4a15-a010-5f50393eddf0, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098434,"output":"ir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:13:54.237 [info] bloc"},{"event":"cmd_output","timestamp":1607098434,"output":"k_id: 8adb7f77-9605-4a15-a010-5f50393eddf0, type: Blocks, state: running, event: exit_scheduling, re"},{"event":"cmd_output","timestamp":1607098434,"output":"covery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:54.246 ["},{"event":"cmd_output","timestamp":1607098434,"output":"info] block_id: e50c1f0e-e9dc-46e9-8377-1108130cd68a, type: Tasks, state: running, event: exit_sche"},{"event":"cmd_output","timestamp":1607098434,"output":"duling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098434,"output":"3:54.256 [info] block_id: 8adb7f77-9605-4a15-a010-5f50393eddf0, type: Tasks, state: running, event:"},{"event":"cmd_output","timestamp":1607098436,"output":" exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098436,"output":"[22m\n16:13:56.284 [info] block_id: 129354f2-01ca-4749-837d-f7363ac862de, type: Tasks, state: done,"},{"event":"cmd_output","timestamp":1607098436,"output":" event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), "},{"event":"cmd_output","timestamp":1607098436,"output":"\n\u001b[0m\u001b[22m\n16:13:56.288 [info] block_id: 129354f2-01ca-4749-837d-f7363ac862de, type: Blocks, stat"},{"event":"cmd_output","timestamp":1607098436,"output":"e: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/"},{"event":"cmd_output","timestamp":1607098436,"output":"1(L90), \n\u001b[0m\u001b[22m\n16:13:56.300 [info] ppl_id: 028d68af-02c5-458d-969c-7ba8d444d01d, block_id: 12"},{"event":"cmd_output","timestamp":1607098436,"output":"9354f2-01ca-4749-837d-f7363ac862de, type: PplBlocks, block_index: 2, state: done, result: failed, ev"},{"event":"cmd_output","timestamp":1607098436,"output":"ent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b"},{"event":"cmd_output","timestamp":1607098436,"output":"[0m\u001b[22m\n16:13:56.990 [info] ppl_id: 028d68af-02c5-458d-969c-7ba8d444d01d, block_id: 8adb7f77-9605"},{"event":"cmd_output","timestamp":1607098436,"output":"-4a15-a010-5f50393eddf0, type: PplBlocks, block_index: 0, state: stopping, event: exit_scheduling, r"},{"event":"cmd_output","timestamp":1607098436,"output":"ecovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:56.994 "},{"event":"cmd_output","timestamp":1607098436,"output":"[info] block_id: 8adb7f77-9605-4a15-a010-5f50393eddf0, type: Blocks, state: stopping, event: exit_s"},{"event":"cmd_output","timestamp":1607098437,"output":"cheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098437,"output":"6:13:57.000 [info] block_id: 8adb7f77-9605-4a15-a010-5f50393eddf0, type: Tasks, state: stopping, ev"},{"event":"cmd_output","timestamp":1607098437,"output":"ent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b"},{"event":"cmd_output","timestamp":1607098437,"output":"[0m\u001b[22m\n16:13:57.998 [info] ppl_id: 028d68af-02c5-458d-969c-7ba8d444d01d, block_id: e50c1f0e-e9dc"},{"event":"cmd_output","timestamp":1607098437,"output":"-46e9-8377-1108130cd68a, type: PplBlocks, block_index: 1, state: stopping, event: exit_scheduling, r"},{"event":"cmd_output","timestamp":1607098438,"output":"ecovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:58.004 "},{"event":"cmd_output","timestamp":1607098438,"output":"[info] block_id: e50c1f0e-e9dc-46e9-8377-1108130cd68a, type: Blocks, state: stopping, event: exit_s"},{"event":"cmd_output","timestamp":1607098438,"output":"cheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098438,"output":"6:13:58.018 [info] block_id: e50c1f0e-e9dc-46e9-8377-1108130cd68a, type: Tasks, state: stopping, ev"},{"event":"cmd_output","timestamp":1607098438,"output":"ent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b"},{"event":"cmd_output","timestamp":1607098439,"output":"[0m\u001b[22m\n16:13:59.327 [info] block_id: 8adb7f77-9605-4a15-a010-5f50393eddf0, type: Tasks, state: d"},{"event":"cmd_output","timestamp":1607098439,"output":"one, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L9"},{"event":"cmd_output","timestamp":1607098439,"output":"0), \n\u001b[0m\u001b[22m\n16:13:59.331 [info] block_id: 8adb7f77-9605-4a15-a010-5f50393eddf0, type: Blocks, "},{"event":"cmd_output","timestamp":1607098439,"output":"state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_cha"},{"event":"cmd_output","timestamp":1607098439,"output":"nge/1(L90), \n\u001b[0m\u001b[22m\n16:13:59.337 [info] ppl_id: 028d68af-02c5-458d-969c-7ba8d444d01d, block_id"},{"event":"cmd_output","timestamp":1607098439,"output":": 8adb7f77-9605-4a15-a010-5f50393eddf0, type: PplBlocks, block_index: 0, state: done, result: stoppe"},{"event":"cmd_output","timestamp":1607098439,"output":"d, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90)"},{"event":"cmd_output","timestamp":1607098439,"output":", \n\u001b[0m\u001b[22m\n16:13:59.435 [info] block_id: e50c1f0e-e9dc-46e9-8377-1108130cd68a, type: Tasks, sta"},{"event":"cmd_output","timestamp":1607098439,"output":"te: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change"},{"event":"cmd_output","timestamp":1607098439,"output":"/1(L90), \n\u001b[0m\u001b[22m\n16:13:59.442 [info] block_id: e50c1f0e-e9dc-46e9-8377-1108130cd68a, type: Blo"},{"event":"cmd_output","timestamp":1607098439,"output":"cks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_stat"},{"event":"cmd_output","timestamp":1607098439,"output":"e_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:59.447 [info] ppl_id: 028d68af-02c5-458d-969c-7ba8d444d01d, blo"},{"event":"cmd_output","timestamp":1607098439,"output":"ck_id: e50c1f0e-e9dc-46e9-8377-1108130cd68a, type: PplBlocks, block_index: 1, state: done, result: s"},{"event":"cmd_output","timestamp":1607098439,"output":"topped, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1"},{"event":"cmd_output","timestamp":1607098439,"output":"(L90), \n\u001b[0m\u001b[22m\n16:13:59.995 [info] PplBlocks WaitingState STM is scheduling block 3 from pipel"},{"event":"cmd_output","timestamp":1607098441,"output":"ine: \"028d68af-02c5-458d-969c-7ba8d444d01d\"\n\u001b[0m\u001b[22m\n16:14:01.004 [info] ppl_id: 028d68af-02c5-4"},{"event":"cmd_output","timestamp":1607098441,"output":"58d-969c-7ba8d444d01d, type: PplBlocks, block_index: 3, state: done, result: canceled, event: exit_s"},{"event":"cmd_output","timestamp":1607098442,"output":"cheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098442,"output":"6:14:02.008 [info] PplBlocks WaitingState STM is scheduling block 4 from pipeline: \"028d68af-02c5-4"},{"event":"cmd_output","timestamp":1607098443,"output":"58d-969c-7ba8d444d01d\"\n\u001b[0m\u001b[22m\n16:14:03.022 [info] ppl_id: 028d68af-02c5-458d-969c-7ba8d444d01d"},{"event":"cmd_output","timestamp":1607098443,"output":", type: PplBlocks, block_index: 4, state: done, result: canceled, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098443,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:03.037 [info] p"},{"event":"cmd_output","timestamp":1607098443,"output":"pl_id: 028d68af-02c5-458d-969c-7ba8d444d01d, type: Ppls, state: done, result: failed, event: exit_sc"},{"event":"cmd_output","timestamp":1607098443,"output":"heduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r *"},{"event":"cmd_output","timestamp":1607098443,"output":" test Free topology failing pipeline with fail_fast = stop (9312.3ms)\u001b[0m\n\nPpl.E2E.ChangeIn.Test\n"},{"event":"cmd_output","timestamp":1607098443,"output":" * test change_in uses proper branch as base on PRs to non-default branch\u001b[22m\n16:14:03.257 [info]"},{"event":"cmd_output","timestamp":1607098443,"output":" Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.STMHan"},{"event":"cmd_output","timestamp":1607098443,"output":"dler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandle"},{"event":"cmd_output","timestamp":1607098443,"output":"r-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], cooli"},{"event":"cmd_output","timestamp":1607098443,"output":"ng_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher_cb: #F"},{"event":"cmd_output","timestamp":1607098443,"output":"unction<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, returnin"},{"event":"cmd_output","timestamp":1607098443,"output":"g: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Pp"},{"event":"cmd_output","timestamp":1607098443,"output":"ls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:03.258 [info] Periodic from module Elixir."},{"event":"cmd_output","timestamp":1607098443,"output":"Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 100 ms"},{"event":"cmd_output","timestamp":1607098443,"output":", metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args: %{all"},{"event":"cmd_output","timestamp":1607098443,"output":"owed_states: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls"},{"event":"cmd_output","timestamp":1607098443,"output":".Model.Ppls, observed_state: \"pending\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler.P"},{"event":"cmd_output","timestamp":1607098443,"output":"endingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :"},{"event":"cmd_output","timestamp":1607098443,"output":"result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}"},{"event":"cmd_output","timestamp":1607098443,"output":"\n\u001b[0m\u001b[22m\n16:14:03.258 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.QueuingState with "},{"event":"cmd_output","timestamp":1607098443,"output":"name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\""},{"event":"cmd_output","timestamp":1607098443,"output":", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{allowed_states: [\"queuing\", \"running\", \"d"},{"event":"cmd_output","timestamp":1607098443,"output":"one\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", publishe"},{"event":"cmd_output","timestamp":1607098443,"output":"r_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, retur"},{"event":"cmd_output","timestamp":1607098443,"output":"ning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl"},{"event":"cmd_output","timestamp":1607098443,"output":".Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:03.258 [info] Periodic from module Elix"},{"event":"cmd_output","timestamp":1607098443,"output":"ir.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHandler.RunningState :: period: 100"},{"event":"cmd_output","timestamp":1607098443,"output":" ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring args: %{"},{"event":"cmd_output","timestamp":1607098443,"output":"allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model"},{"event":"cmd_output","timestamp":1607098443,"output":".Ppls, observed_state: \"running\", publisher_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler.Runnin"},{"event":"cmd_output","timestamp":1607098443,"output":"gState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :resul"},{"event":"cmd_output","timestamp":1607098443,"output":"t, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0"},{"event":"cmd_output","timestamp":1607098443,"output":"m\u001b[22m\n16:14:03.259 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.StoppingState with name"},{"event":"cmd_output","timestamp":1607098443,"output":" Elixir.Ppl.Ppls.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", ["},{"event":"cmd_output","timestamp":1607098443,"output":"\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooli"},{"event":"cmd_output","timestamp":1607098443,"output":"ng_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"stopping\", publisher_cb: #Func"},{"event":"cmd_output","timestamp":1607098443,"output":"tion<0.71803493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id,"},{"event":"cmd_output","timestamp":1607098443,"output":" :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model"},{"event":"cmd_output","timestamp":1607098443,"output":".Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:03.259 [info] Periodic from module Elixir.Ppl.PplS"},{"event":"cmd_output","timestamp":1607098443,"output":"ubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: "},{"event":"cmd_output","timestamp":1607098443,"output":"100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurrin"},{"event":"cmd_output","timestamp":1607098443,"output":"g args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits."},{"event":"cmd_output","timestamp":1607098443,"output":"Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:"},{"event":"cmd_output","timestamp":1607098443,"output":"id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubI"},{"event":"cmd_output","timestamp":1607098443,"output":"nits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:03.260 [info] Periodic from modul"},{"event":"cmd_output","timestamp":1607098443,"output":"e Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler.Fetchi"},{"event":"cmd_output","timestamp":1607098443,"output":"ngState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-Fetchi"},{"event":"cmd_output","timestamp":1607098443,"output":"ngState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"done\"], cooling_time_"},{"event":"cmd_output","timestamp":1607098443,"output":"sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fetching\", publisher_cb:"},{"event":"cmd_output","timestamp":1607098443,"output":" :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :reco"},{"event":"cmd_output","timestamp":1607098443,"output":"very_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098443,"output":"\n16:14:03.260 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CompilationState with n"},{"event":"cmd_output","timestamp":1607098443,"output":"ame Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 100 ms, metric_name: {\"Ppl.beholde"},{"event":"cmd_output","timestamp":1607098443,"output":"r-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurring args: %{allowed_states: [\"re"},{"event":"cmd_output","timestamp":1607098443,"output":"gular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInit"},{"event":"cmd_output","timestamp":1607098443,"output":"s.Model.PplSubInits, observed_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returni"},{"event":"cmd_output","timestamp":1607098443,"output":"ng: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.P"},{"event":"cmd_output","timestamp":1607098443,"output":"plSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:03.261 [info] Periodic from"},{"event":"cmd_output","timestamp":1607098443,"output":" module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHandl"},{"event":"cmd_output","timestamp":1607098443,"output":"er.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHa"},{"event":"cmd_output","timestamp":1607098443,"output":"ndler-RegularInitState\"]}, recurring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, initial_"},{"event":"cmd_output","timestamp":1607098443,"output":"query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_init\", publisher_cb: :skip, repo:"},{"event":"cmd_output","timestamp":1607098443,"output":" Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :"},{"event":"cmd_output","timestamp":1607098443,"output":"ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:03.262"},{"event":"cmd_output","timestamp":1607098443,"output":" [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.InitializingState with name Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098443,"output":".PplBlocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"P"},{"event":"cmd_output","timestamp":1607098443,"output":"pl-PplBlocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"wa"},{"event":"cmd_output","timestamp":1607098443,"output":"iting\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: "},{"event":"cmd_output","timestamp":1607098443,"output":"\"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updat"},{"event":"cmd_output","timestamp":1607098443,"output":"ed_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBloc"},{"event":"cmd_output","timestamp":1607098443,"output":"ks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:03.262 [info] Periodic from module Elixir.Ppl.PplBloc"},{"event":"cmd_output","timestamp":1607098443,"output":"ks.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler.WaitingState :: period: 1000 ms"},{"event":"cmd_output","timestamp":1607098443,"output":", metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurring args: "},{"event":"cmd_output","timestamp":1607098443,"output":"%{allowed_states: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks."},{"event":"cmd_output","timestamp":1607098443,"output":"Model.PplBlocks, observed_state: \"waiting\", publisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.STM"},{"event":"cmd_output","timestamp":1607098443,"output":"Handler.WaitingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, "},{"event":"cmd_output","timestamp":1607098443,"output":":state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, tas"},{"event":"cmd_output","timestamp":1607098443,"output":"k_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:03.263 [info] Periodic from module Elixir.Ppl.PplBlocks.STMH"},{"event":"cmd_output","timestamp":1607098443,"output":"andler.RunningState with name Elixir.Ppl.PplBlocks.STMHandler.RunningState :: period: 1000 ms, metri"},{"event":"cmd_output","timestamp":1607098443,"output":"c_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, recurring args: %{allow"},{"event":"cmd_output","timestamp":1607098443,"output":"ed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model"},{"event":"cmd_output","timestamp":1607098443,"output":".PplBlocks, observed_state: \"running\", publisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHand"},{"event":"cmd_output","timestamp":1607098443,"output":"ler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :sta"},{"event":"cmd_output","timestamp":1607098443,"output":"te, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBloc"},{"event":"cmd_output","timestamp":1607098443,"output":"ks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:03.263 [info] Periodic from module Elixir.Ppl.PplBloc"},{"event":"cmd_output","timestamp":1607098443,"output":"ks.STMHandler.StoppingState with name Elixir.Ppl.PplBlocks.STMHandler.StoppingState :: period: 1000 "},{"event":"cmd_output","timestamp":1607098443,"output":"ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurring arg"},{"event":"cmd_output","timestamp":1607098443,"output":"s: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model."},{"event":"cmd_output","timestamp":1607098443,"output":"PplBlocks, observed_state: \"stopping\", publisher_cb: #Function<0.104215991/1 in Ppl.PplBlocks.STMHan"},{"event":"cmd_output","timestamp":1607098443,"output":"dler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :s"},{"event":"cmd_output","timestamp":1607098443,"output":"tate, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBl"},{"event":"cmd_output","timestamp":1607098443,"output":"ocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:03.263 [info] Periodic from module Elixir.Block.Blo"},{"event":"cmd_output","timestamp":1607098443,"output":"cks.STMHandler.InitializingState with name Elixir.Block.Blocks.STMHandler.InitializingState :: perio"},{"event":"cmd_output","timestamp":1607098443,"output":"d: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, rec"},{"event":"cmd_output","timestamp":1607098443,"output":"urring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Blocks"},{"event":"cmd_output","timestamp":1607098443,"output":".Model.Blocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Block.EctoRepo, returning:"},{"event":"cmd_output","timestamp":1607098443,"output":" [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Mo"},{"event":"cmd_output","timestamp":1607098443,"output":"del.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:03.264 [info] Periodic from module Elixir.Blo"},{"event":"cmd_output","timestamp":1607098443,"output":"ck.Blocks.STMHandler.RunningState with name Elixir.Block.Blocks.STMHandler.RunningState :: period: 1"},{"event":"cmd_output","timestamp":1607098443,"output":"00 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-RunningState\"]}, recurring ar"},{"event":"cmd_output","timestamp":1607098443,"output":"gs: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Bl"},{"event":"cmd_output","timestamp":1607098443,"output":"ocks.Model.Blocks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: "},{"event":"cmd_output","timestamp":1607098443,"output":"[:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Mod"},{"event":"cmd_output","timestamp":1607098443,"output":"el.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:03.264 [info] Periodic from module Elixir.Bloc"},{"event":"cmd_output","timestamp":1607098443,"output":"k.Blocks.STMHandler.StoppingState with name Elixir.Block.Blocks.STMHandler.StoppingState :: period: "},{"event":"cmd_output","timestamp":1607098443,"output":"100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-StoppingState\"]}, recurring "},{"event":"cmd_output","timestamp":1607098443,"output":"args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Mode"},{"event":"cmd_output","timestamp":1607098443,"output":"l.Blocks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :t"},{"event":"cmd_output","timestamp":1607098443,"output":"erminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Block"},{"event":"cmd_output","timestamp":1607098443,"output":"s, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:03.264 [info] Periodic from module Elixir.Block.Tasks."},{"event":"cmd_output","timestamp":1607098443,"output":"STMHandler.PendingState with name Elixir.Block.Tasks.STMHandler.PendingState :: period: 100 ms, metr"},{"event":"cmd_output","timestamp":1607098443,"output":"ic_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingState\"]}, recurring args: %{allowe"},{"event":"cmd_output","timestamp":1607098443,"output":"d_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Tasks.Model.Tasks, observed"},{"event":"cmd_output","timestamp":1607098443,"output":"_state: \"pending\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :"},{"event":"cmd_output","timestamp":1607098443,"output":"updated_at, :state, :recovery_count, :block_id, :build_request_id], schema: Block.Tasks.Model.Tasks,"},{"event":"cmd_output","timestamp":1607098443,"output":" task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:03.265 [info] Periodic from module Elixir.Block.Tasks.ST"},{"event":"cmd_output","timestamp":1607098443,"output":"MHandler.RunningState with name Elixir.Block.Tasks.STMHandler.RunningState :: period: 100 ms, metric"},{"event":"cmd_output","timestamp":1607098443,"output":"_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningState\"]}, recurring args: %{allowed_"},{"event":"cmd_output","timestamp":1607098443,"output":"states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Task"},{"event":"cmd_output","timestamp":1607098443,"output":"s, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate"},{"event":"cmd_output","timestamp":1607098443,"output":"_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_su"},{"event":"cmd_output","timestamp":1607098443,"output":"pervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:03.265 [info] Periodic from module Elixir.Block.Tasks.STMHandler"},{"event":"cmd_output","timestamp":1607098443,"output":".StoppingState with name Elixir.Block.Tasks.STMHandler.StoppingState :: period: 100 ms, metric_name:"},{"event":"cmd_output","timestamp":1607098443,"output":" {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]}, recurring args: %{allowed_state"},{"event":"cmd_output","timestamp":1607098443,"output":"s: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_stat"},{"event":"cmd_output","timestamp":1607098443,"output":"e: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :upda"},{"event":"cmd_output","timestamp":1607098443,"output":"ted_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip"},{"event":"cmd_output","timestamp":1607098443,"output":"}\n\u001b[0m\u001b[22m\n16:14:03.270 [info] Request: 'run: %{\"branch_id\" => \"4f0de364-b386-4950-b8af-d785fba1"},{"event":"cmd_output","timestamp":1607098443,"output":"7eae\", \"branch_name\" => \"pr-one_path\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"one_path.yml\", "},{"event":"cmd_output","timestamp":1607098443,"output":"\"hook_id\" => \"pr\", \"label\" => \"pr-one_path\", \"organization_id\" => \"911b2da7-7da2-4a97-aaea-9cdcb794a"},{"event":"cmd_output","timestamp":1607098443,"output":"e9e\", \"owner\" => \"rt\", \"project_id\" => \"a6295555-1443-44cb-b910-68d846f08745\", \"repo_name\" => \"22_sk"},{"event":"cmd_output","timestamp":1607098443,"output":"ip_block\", \"request_token\" => \"b9cdf19a-364b-11eb-9975-5254005464e2\", \"requester_id\" => \"4ef271d0-fa"},{"event":"cmd_output","timestamp":1607098443,"output":"24-4c77-b213-24538544bf49\", \"service\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"clien"},{"event":"cmd_output","timestamp":1607098443,"output":"t_secret\"], \"wf_id\" => \"0c4a52b4-d8af-467c-8a37-a7e57b28c1bf\", \"working_dir\" => \".semaphore/change_i"},{"event":"cmd_output","timestamp":1607098443,"output":"n\"}\n\u001b[0m\u001b[22m\n16:14:03.272 [info] ppl_id: 8ad3ad52-aeca-4e85-8a6b-c8bee6c87a9d, type: PplRequests"},{"event":"cmd_output","timestamp":1607098443,"output":", event: persisted schedule request with request_token: b9cdf19a-364b-11eb-9975-5254005464e2, origin"},{"event":"cmd_output","timestamp":1607098443,"output":": Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:14:03.275"},{"event":"cmd_output","timestamp":1607098443,"output":" [info] ppl_id: 8ad3ad52-aeca-4e85-8a6b-c8bee6c87a9d, type: Ppls, state: initializing, event: initi"},{"event":"cmd_output","timestamp":1607098443,"output":"alizing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b["},{"event":"cmd_output","timestamp":1607098443,"output":"0m\u001b[22m\n16:14:03.283 [info] Project a6295555-1443-44cb-b910-68d846f08745 and branch pr-one_pathlat"},{"event":"cmd_output","timestamp":1607098443,"output":"est_wf details updated: \"wf_id: 0c4a52b4-d8af-467c-8a37-a7e57b28c1bf, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098443,"output":"4:03.284 [info] Persisted ppl_sub_init for pipeline with ppl_id: 8ad3ad52-aeca-4e85-8a6b-c8bee6c87a"},{"event":"cmd_output","timestamp":1607098443,"output":"9d: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\""},{"event":"cmd_output","timestamp":1607098443,"output":">, compile_task_id: nil, error_description: nil, id: 316, in_scheduling: false, init_type: \"regular\""},{"event":"cmd_output","timestamp":1607098443,"output":", inserted_at: ~N[2020-12-04 16:14:03.283559], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"8ad3ad52-aeca-4e85-8a6b-c8bee6c87a9d\", recovery_co"},{"event":"cmd_output","timestamp":1607098443,"output":"unt: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request"},{"event":"cmd_output","timestamp":1607098443,"output":"_desc: nil, updated_at: ~N[2020-12-04 16:14:03.283566]}\n\u001b[0m\u001b[22m\n16:14:03.297 [info] ppl_id: 8ad"},{"event":"cmd_output","timestamp":1607098443,"output":"3ad52-aeca-4e85-8a6b-c8bee6c87a9d, type: PplRequests, event: persisted source_args for pipeline: 8ad"},{"event":"cmd_output","timestamp":1607098443,"output":"3ad52-aeca-4e85-8a6b-c8bee6c87a9d, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_so"},{"event":"cmd_output","timestamp":1607098443,"output":"urce/2(L89), \n\u001b[0m\u001b[22m\n16:14:03.299 [info] ppl_id: 8ad3ad52-aeca-4e85-8a6b-c8bee6c87a9d, type: P"},{"event":"cmd_output","timestamp":1607098443,"output":"plSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Im"},{"event":"cmd_output","timestamp":1607098443,"output":"pl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:03.314 [info] ppl_id: 8ad3ad52-aeca-4e85-8a6b-c8bee6"},{"event":"cmd_output","timestamp":1607098443,"output":"c87a9d, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: E"},{"event":"cmd_output","timestamp":1607098443,"output":"lixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:03.336 [info] ppl_id: 8ad3ad52-ae"},{"event":"cmd_output","timestamp":1607098443,"output":"ca-4e85-8a6b-c8bee6c87a9d, type: PplRequests, event: persisted definition for request with request_t"},{"event":"cmd_output","timestamp":1607098443,"output":"oken: b9cdf19a-364b-11eb-9975-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries."},{"event":"cmd_output","timestamp":1607098443,"output":"insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:14:03.339 [info] Queue persisted: {:ok, %Ppl.Queues.Model"},{"event":"cmd_output","timestamp":1607098443,"output":".Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:14:03.3386"},{"event":"cmd_output","timestamp":1607098443,"output":"27], name: \"pr-one_path-.semaphore/change_in/one_path.yml\", organization_id: \"911b2da7-7da2-4a97-aae"},{"event":"cmd_output","timestamp":1607098443,"output":"a-9cdcb794ae9e\", project_id: \"a6295555-1443-44cb-b910-68d846f08745\", queue_id: \"7c4590f6-e112-4c2b-b"},{"event":"cmd_output","timestamp":1607098443,"output":"1d1-b9c2f9960df6\", scope: \"project\", updated_at: ~N[2020-12-04 16:14:03.338647], user_generated: fal"},{"event":"cmd_output","timestamp":1607098443,"output":"se}}\n\u001b[0m\u001b[22m\n16:14:03.343 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.Regu"},{"event":"cmd_output","timestamp":1607098443,"output":"larInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:03.343 [info] ppl_id: 8ad3ad52-aeca-4e85-8a6b-c8be"},{"event":"cmd_output","timestamp":1607098443,"output":"e6c87a9d, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098443,"output":"rigin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:03.345"},{"event":"cmd_output","timestamp":1607098443,"output":" [info] ppl_id: 8ad3ad52-aeca-4e85-8a6b-c8bee6c87a9d, type: PplSubInits, state: done, result: passe"},{"event":"cmd_output","timestamp":1607098443,"output":"d, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90)"},{"event":"cmd_output","timestamp":1607098443,"output":", \n\u001b[0m\u001b[22m\n16:14:03.353 [info] ppl_id: 8ad3ad52-aeca-4e85-8a6b-c8bee6c87a9d, type: Ppls, state:"},{"event":"cmd_output","timestamp":1607098443,"output":" pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change"},{"event":"cmd_output","timestamp":1607098443,"output":"/1(L90), \n\u001b[0m\u001b[22m\n16:14:03.356 [info] ppl_id: 8ad3ad52-aeca-4e85-8a6b-c8bee6c87a9d, type: PplBl"},{"event":"cmd_output","timestamp":1607098443,"output":"ocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loop"},{"event":"cmd_output","timestamp":1607098443,"output":"er.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:03.366 [info] ppl_id: 8ad3ad52-aeca-4e85-8a"},{"event":"cmd_output","timestamp":1607098443,"output":"6b-c8bee6c87a9d, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098443,"output":"ir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:03.386 [info] ppl_id: 8ad3ad52-aeca-"},{"event":"cmd_output","timestamp":1607098443,"output":"4e85-8a6b-c8bee6c87a9d, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098443,"output":"n: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:03.392 [info] PplBlocks Waiti"},{"event":"cmd_output","timestamp":1607098443,"output":"ngState STM is scheduling block 0 from pipeline: \"8ad3ad52-aeca-4e85-8a6b-c8bee6c87a9d\"\n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098443,"output":"16:14:03.432 [info] ppl_id: 8ad3ad52-aeca-4e85-8a6b-c8bee6c87a9d, type: PplBlocks, block_index: 0, "},{"event":"cmd_output","timestamp":1607098443,"output":"state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Im"},{"event":"cmd_output","timestamp":1607098443,"output":"pl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:03.440 [info] ppl_id: 8ad3ad52-aeca-4e85-8a6b-c8bee6"},{"event":"cmd_output","timestamp":1607098443,"output":"c87a9d, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098443,"output":"Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test change_in uses proper branch as"},{"event":"cmd_output","timestamp":1607098443,"output":" base on PRs to non-default branch (278.0ms)\u001b[0m\n * test change_in uses diferent default range whe"},{"event":"cmd_output","timestamp":1607098443,"output":"n defult_range config is given\u001b[22m\n16:14:03.542 [info] Periodic from module Elixir.Ppl.Ppls.STMHa"},{"event":"cmd_output","timestamp":1607098443,"output":"ndler.InitializingState with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms, me"},{"event":"cmd_output","timestamp":1607098443,"output":"tric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %{al"},{"event":"cmd_output","timestamp":1607098443,"output":"lowed_states: [\"initializing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Mode"},{"event":"cmd_output","timestamp":1607098443,"output":"l.Ppls, observed_state: \"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler"},{"event":"cmd_output","timestamp":1607098443,"output":".InitializingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :s"},{"event":"cmd_output","timestamp":1607098443,"output":"tate, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m"},{"event":"cmd_output","timestamp":1607098443,"output":"\u001b[22m\n16:14:03.542 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingState with name E"},{"event":"cmd_output","timestamp":1607098443,"output":"lixir.Ppl.Ppls.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Pp"},{"event":"cmd_output","timestamp":1607098443,"output":"l-Ppls-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"pending\", \"queuing\", \"running"},{"event":"cmd_output","timestamp":1607098443,"output":"\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publ"},{"event":"cmd_output","timestamp":1607098443,"output":"isher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, ret"},{"event":"cmd_output","timestamp":1607098443,"output":"urning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: P"},{"event":"cmd_output","timestamp":1607098443,"output":"pl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:14:03.543 [info] Periodic f"},{"event":"cmd_output","timestamp":1607098443,"output":"rom module Elixir.Ppl.Ppls.STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandler.QueuingState"},{"event":"cmd_output","timestamp":1607098443,"output":" :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, rec"},{"event":"cmd_output","timestamp":1607098443,"output":"urring args: %{allowed_states: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, initial_query: "},{"event":"cmd_output","timestamp":1607098443,"output":"Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.ST"},{"event":"cmd_output","timestamp":1607098443,"output":"MHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at,"},{"event":"cmd_output","timestamp":1607098443,"output":" :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b"},{"event":"cmd_output","timestamp":1607098443,"output":"[0m\u001b[22m\n16:14:03.544 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.RunningState with nam"},{"event":"cmd_output","timestamp":1607098443,"output":"e Elixir.Ppl.Ppls.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", ["},{"event":"cmd_output","timestamp":1607098443,"output":"\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"don"},{"event":"cmd_output","timestamp":1607098443,"output":"e\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"running\", publisher_"},{"event":"cmd_output","timestamp":1607098443,"output":"cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returnin"},{"event":"cmd_output","timestamp":1607098443,"output":"g: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Pp"},{"event":"cmd_output","timestamp":1607098443,"output":"ls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:14:03.544 [info] Periodic from m"},{"event":"cmd_output","timestamp":1607098443,"output":"odule Elixir.Ppl.Ppls.STMHandler.StoppingState with name Elixir.Ppl.Ppls.STMHandler.StoppingState ::"},{"event":"cmd_output","timestamp":1607098443,"output":" period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recur"},{"event":"cmd_output","timestamp":1607098443,"output":"ring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Mod"},{"event":"cmd_output","timestamp":1607098443,"output":"el.Ppls, observed_state: \"stopping\", publisher_cb: #Function<0.71803493/1 in Ppl.Ppls.STMHandler.Sto"},{"event":"cmd_output","timestamp":1607098443,"output":"ppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :r"},{"event":"cmd_output","timestamp":1607098443,"output":"esult, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098443,"output":"6:14:03.545 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedState with name El"},{"event":"cmd_output","timestamp":1607098443,"output":"ixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\""},{"event":"cmd_output","timestamp":1607098443,"output":", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args: %{allowed_states: [\"fetching\", \"done"},{"event":"cmd_output","timestamp":1607098443,"output":"\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"created\""},{"event":"cmd_output","timestamp":1607098443,"output":", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state,"},{"event":"cmd_output","timestamp":1607098443,"output":" :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :sk"},{"event":"cmd_output","timestamp":1607098443,"output":"ip}\n\u001b[0m\u001b[22m\n16:14:03.545 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.Fetching"},{"event":"cmd_output","timestamp":1607098443,"output":"State with name Elixir.Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 ms, metric_name: {\"Pp"},{"event":"cmd_output","timestamp":1607098443,"output":"l.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %{allowed_states"},{"event":"cmd_output","timestamp":1607098443,"output":": [\"regular_init\", \"compilation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Mode"},{"event":"cmd_output","timestamp":1607098443,"output":"l.PplSubInits, observed_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id,"},{"event":"cmd_output","timestamp":1607098443,"output":" :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInit"},{"event":"cmd_output","timestamp":1607098443,"output":"s.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:03.546 [info] Periodic from module E"},{"event":"cmd_output","timestamp":1607098443,"output":"lixir.Ppl.PplSubInits.STMHandler.CompilationState with name Elixir.Ppl.PplSubInits.STMHandler.Compil"},{"event":"cmd_output","timestamp":1607098443,"output":"ationState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-Com"},{"event":"cmd_output","timestamp":1607098443,"output":"pilationState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"stopping\", \"don"},{"event":"cmd_output","timestamp":1607098443,"output":"e\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"compil"},{"event":"cmd_output","timestamp":1607098443,"output":"ation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :"},{"event":"cmd_output","timestamp":1607098443,"output":"state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_superviso"},{"event":"cmd_output","timestamp":1607098443,"output":"r: :skip}\n\u001b[0m\u001b[22m\n16:14:03.546 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.Re"},{"event":"cmd_output","timestamp":1607098443,"output":"gularInitState with name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period: 100 ms, metri"},{"event":"cmd_output","timestamp":1607098443,"output":"c_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurring args: %"},{"event":"cmd_output","timestamp":1607098443,"output":"{allowed_states: [\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, ob"},{"event":"cmd_output","timestamp":1607098443,"output":"served_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_r"},{"event":"cmd_output","timestamp":1607098443,"output":"equest, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSu"},{"event":"cmd_output","timestamp":1607098443,"output":"bInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:03.547 [info] Periodic from module Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098443,"output":"Blocks.STMHandler.InitializingState with name Elixir.Ppl.PplBlocks.STMHandler.InitializingState :: p"},{"event":"cmd_output","timestamp":1607098443,"output":"eriod: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-InitializingState\"]}"},{"event":"cmd_output","timestamp":1607098443,"output":", recurring args: %{allowed_states: [\"initializing\", \"waiting\", \"done\"], cooling_time_sec: 0, initia"},{"event":"cmd_output","timestamp":1607098443,"output":"l_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"initializing\", publisher_cb: :skip, repo: P"},{"event":"cmd_output","timestamp":1607098443,"output":"pl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :pp"},{"event":"cmd_output","timestamp":1607098443,"output":"l_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098443,"output":"4:03.547 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.WaitingState with name Elixir."},{"event":"cmd_output","timestamp":1607098443,"output":"Ppl.PplBlocks.STMHandler.WaitingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Pp"},{"event":"cmd_output","timestamp":1607098443,"output":"l-PplBlocks-STMHandler-WaitingState\"]}, recurring args: %{allowed_states: [\"waiting\", \"running\", \"do"},{"event":"cmd_output","timestamp":1607098443,"output":"ne\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"waiting\", "},{"event":"cmd_output","timestamp":1607098443,"output":"publisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>, repo: Ppl.Ecto"},{"event":"cmd_output","timestamp":1607098443,"output":"Repo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :"},{"event":"cmd_output","timestamp":1607098443,"output":"block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:03.54"},{"event":"cmd_output","timestamp":1607098443,"output":"8 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.RunningState with name Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098443,"output":"Blocks.STMHandler.RunningState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBl"},{"event":"cmd_output","timestamp":1607098443,"output":"ocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], "},{"event":"cmd_output","timestamp":1607098443,"output":"cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"running\", publi"},{"event":"cmd_output","timestamp":1607098443,"output":"sher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo"},{"event":"cmd_output","timestamp":1607098443,"output":", returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :bloc"},{"event":"cmd_output","timestamp":1607098443,"output":"k_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098443,"output":"4:03.549 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.StoppingState with name Elixir"},{"event":"cmd_output","timestamp":1607098443,"output":".Ppl.PplBlocks.STMHandler.StoppingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\""},{"event":"cmd_output","timestamp":1607098443,"output":"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], c"},{"event":"cmd_output","timestamp":1607098443,"output":"ooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"stopping\", publi"},{"event":"cmd_output","timestamp":1607098443,"output":"sher_cb: #Function<0.104215991/1 in Ppl.PplBlocks.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRe"},{"event":"cmd_output","timestamp":1607098443,"output":"po, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :bl"},{"event":"cmd_output","timestamp":1607098443,"output":"ock_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098443,"output":":14:03.549 [info] Periodic from module Elixir.Block.Blocks.STMHandler.InitializingState with name E"},{"event":"cmd_output","timestamp":1607098443,"output":"lixir.Block.Blocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_"},{"event":"cmd_output","timestamp":1607098443,"output":"up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"running\", \""},{"event":"cmd_output","timestamp":1607098443,"output":"done\"], cooling_time_sec: 0, initial_query: Block.Blocks.Model.Blocks, observed_state: \"initializing"},{"event":"cmd_output","timestamp":1607098443,"output":"\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :sta"},{"event":"cmd_output","timestamp":1607098443,"output":"te, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098443,"output":"2m\n16:14:03.550 [info] Periodic from module Elixir.Block.Blocks.STMHandler.RunningState with name "},{"event":"cmd_output","timestamp":1607098443,"output":"Elixir.Block.Blocks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\","},{"event":"cmd_output","timestamp":1607098443,"output":" [\"Block-Blocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\""},{"event":"cmd_output","timestamp":1607098443,"output":", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"running\""},{"event":"cmd_output","timestamp":1607098443,"output":", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :stat"},{"event":"cmd_output","timestamp":1607098443,"output":"e, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098443,"output":"m\n16:14:03.550 [info] Periodic from module Elixir.Block.Blocks.STMHandler.StoppingState with name "},{"event":"cmd_output","timestamp":1607098443,"output":"Elixir.Block.Blocks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\""},{"event":"cmd_output","timestamp":1607098443,"output":", [\"Block-Blocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"]"},{"event":"cmd_output","timestamp":1607098443,"output":", cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"stopping\", publis"},{"event":"cmd_output","timestamp":1607098443,"output":"her_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :reco"},{"event":"cmd_output","timestamp":1607098443,"output":"very_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14"},{"event":"cmd_output","timestamp":1607098443,"output":":03.551 [info] Periodic from module Elixir.Block.Tasks.STMHandler.PendingState with name Elixir.Blo"},{"event":"cmd_output","timestamp":1607098443,"output":"ck.Tasks.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Ta"},{"event":"cmd_output","timestamp":1607098443,"output":"sks-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_"},{"event":"cmd_output","timestamp":1607098443,"output":"sec: 0, initial_query: Block.Tasks.Model.Tasks, observed_state: \"pending\", publisher_cb: :skip, repo"},{"event":"cmd_output","timestamp":1607098443,"output":": Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_"},{"event":"cmd_output","timestamp":1607098443,"output":"id, :build_request_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:0"},{"event":"cmd_output","timestamp":1607098443,"output":"3.551 [info] Periodic from module Elixir.Block.Tasks.STMHandler.RunningState with name Elixir.Block"},{"event":"cmd_output","timestamp":1607098443,"output":".Tasks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Task"},{"event":"cmd_output","timestamp":1607098443,"output":"s-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], coo"},{"event":"cmd_output","timestamp":1607098443,"output":"ling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"running\", publisher_cb: "},{"event":"cmd_output","timestamp":1607098443,"output":":skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_cou"},{"event":"cmd_output","timestamp":1607098443,"output":"nt, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:03.551 [i"},{"event":"cmd_output","timestamp":1607098443,"output":"nfo] Periodic from module Elixir.Block.Tasks.STMHandler.StoppingState with name Elixir.Block.Tasks."},{"event":"cmd_output","timestamp":1607098443,"output":"STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMH"},{"event":"cmd_output","timestamp":1607098443,"output":"andler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -"},{"event":"cmd_output","timestamp":1607098443,"output":"2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"stopping\", publisher_cb: :skip, repo: Bl"},{"event":"cmd_output","timestamp":1607098443,"output":"ock.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id],"},{"event":"cmd_output","timestamp":1607098443,"output":" schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:03.555 [info] Request: "},{"event":"cmd_output","timestamp":1607098443,"output":"'run: %{\"branch_id\" => \"7ce9c139-7728-49d6-ac3a-802a934a862b\", \"branch_name\" => \"master\", \"commit_sh"},{"event":"cmd_output","timestamp":1607098443,"output":"a\" => \"75891a4469\", \"file_name\" => \"config_default_range.yml\", \"hook_id\" => \"b9f9b01e-364b-11eb-92e1"},{"event":"cmd_output","timestamp":1607098443,"output":"-5254005464e2\", \"label\" => \"master\", \"organization_id\" => \"f692ef32-fcb1-4e7d-9d72-761902d9eed3\", \"o"},{"event":"cmd_output","timestamp":1607098443,"output":"wner\" => \"rt\", \"project_id\" => \"41dcbe4d-8f80-4877-8cd6-073b04bac9c6\", \"repo_name\" => \"22_skip_block"},{"event":"cmd_output","timestamp":1607098443,"output":"\", \"request_token\" => \"b9f9a8a8-364b-11eb-ae0f-5254005464e2\", \"requester_id\" => \"89e67edc-c2b0-49d8-"},{"event":"cmd_output","timestamp":1607098443,"output":"bf0a-711c9fba9829\", \"service\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret"},{"event":"cmd_output","timestamp":1607098443,"output":"\"], \"wf_id\" => \"a0dfa4f0-b35f-4fd7-8f68-b6f0928e76d5\", \"working_dir\" => \".semaphore/change_in\"}\n\u001b[0"},{"event":"cmd_output","timestamp":1607098443,"output":"m\u001b[22m\n16:14:03.557 [info] ppl_id: 8073df4f-e199-42d5-807e-5d005622a29b, type: PplRequests, event:"},{"event":"cmd_output","timestamp":1607098443,"output":" persisted schedule request with request_token: b9f9a8a8-364b-11eb-ae0f-5254005464e2, origin: Elixir"},{"event":"cmd_output","timestamp":1607098443,"output":".Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:14:03.559 [info] "},{"event":"cmd_output","timestamp":1607098443,"output":" ppl_id: 8073df4f-e199-42d5-807e-5d005622a29b, type: Ppls, state: initializing, event: initializing,"},{"event":"cmd_output","timestamp":1607098443,"output":" recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098443,"output":"\n16:14:03.568 [info] Project 41dcbe4d-8f80-4877-8cd6-073b04bac9c6 and branch masterlatest_wf detail"},{"event":"cmd_output","timestamp":1607098443,"output":"s updated: \"wf_id: a0dfa4f0-b35f-4fd7-8f68-b6f0928e76d5, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:14:03.570 [inf"},{"event":"cmd_output","timestamp":1607098443,"output":"o] Persisted ppl_sub_init for pipeline with ppl_id: 8073df4f-e199-42d5-807e-5d005622a29b: %Ppl.PplS"},{"event":"cmd_output","timestamp":1607098443,"output":"ubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_ta"},{"event":"cmd_output","timestamp":1607098443,"output":"sk_id: nil, error_description: nil, id: 317, in_scheduling: false, init_type: \"regular\", inserted_at"},{"event":"cmd_output","timestamp":1607098443,"output":": ~N[2020-12-04 16:14:03.568609], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"8073df4f-e199-42d5-807e-5d005622a29b\", recovery_count: 0, resul"},{"event":"cmd_output","timestamp":1607098443,"output":"t: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, u"},{"event":"cmd_output","timestamp":1607098443,"output":"pdated_at: ~N[2020-12-04 16:14:03.568615]}\n\u001b[0m\u001b[22m\n16:14:03.579 [info] ppl_id: 8073df4f-e199-42"},{"event":"cmd_output","timestamp":1607098443,"output":"d5-807e-5d005622a29b, type: PplRequests, event: persisted source_args for pipeline: 8073df4f-e199-42"},{"event":"cmd_output","timestamp":1607098443,"output":"d5-807e-5d005622a29b, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), "},{"event":"cmd_output","timestamp":1607098443,"output":"\n\u001b[0m\u001b[22m\n16:14:03.581 [info] ppl_id: 8073df4f-e199-42d5-807e-5d005622a29b, type: PplSubInits, s"},{"event":"cmd_output","timestamp":1607098443,"output":"tate: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_"},{"event":"cmd_output","timestamp":1607098443,"output":"change/1(L90), \n\u001b[0m\u001b[22m\n16:14:03.600 [info] ppl_id: 8073df4f-e199-42d5-807e-5d005622a29b, type:"},{"event":"cmd_output","timestamp":1607098443,"output":" PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper."},{"event":"cmd_output","timestamp":1607098443,"output":"STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:03.618 [info] ppl_id: 8073df4f-e199-42d5-807e-"},{"event":"cmd_output","timestamp":1607098443,"output":"5d005622a29b, type: PplRequests, event: persisted definition for request with request_token: b9f9a8a"},{"event":"cmd_output","timestamp":1607098443,"output":"8-364b-11eb-ae0f-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_defini"},{"event":"cmd_output","timestamp":1607098443,"output":"tion/3(L76), \n\u001b[0m\u001b[22m\n16:14:03.621 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__met"},{"event":"cmd_output","timestamp":1607098443,"output":"a__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:14:03.620175], name: \"m"},{"event":"cmd_output","timestamp":1607098443,"output":"aster-.semaphore/change_in/config_default_range.yml\", organization_id: \"f692ef32-fcb1-4e7d-9d72-7619"},{"event":"cmd_output","timestamp":1607098443,"output":"02d9eed3\", project_id: \"41dcbe4d-8f80-4877-8cd6-073b04bac9c6\", queue_id: \"cbbeeb18-fe95-4932-8d41-72"},{"event":"cmd_output","timestamp":1607098443,"output":"e7fbacd348\", scope: \"project\", updated_at: ~N[2020-12-04 16:14:03.620183], user_generated: false}}\n"},{"event":"cmd_output","timestamp":1607098443,"output":"\u001b[0m\u001b[22m\n16:14:03.624 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularIni"},{"event":"cmd_output","timestamp":1607098443,"output":"tState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:03.624 [info] ppl_id: 8073df4f-e199-42d5-807e-5d005622a2"},{"event":"cmd_output","timestamp":1607098443,"output":"9b, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098443,"output":" Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:03.626 [info"},{"event":"cmd_output","timestamp":1607098443,"output":"] ppl_id: 8073df4f-e199-42d5-807e-5d005622a29b, type: PplSubInits, state: done, result: passed, eve"},{"event":"cmd_output","timestamp":1607098443,"output":"nt: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b["},{"event":"cmd_output","timestamp":1607098443,"output":"0m\u001b[22m\n16:14:03.633 [info] ppl_id: 8073df4f-e199-42d5-807e-5d005622a29b, type: Ppls, state: pendi"},{"event":"cmd_output","timestamp":1607098443,"output":"ng, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90"},{"event":"cmd_output","timestamp":1607098443,"output":"), \n\u001b[0m\u001b[22m\n16:14:03.634 [info] ppl_id: 8073df4f-e199-42d5-807e-5d005622a29b, type: PplBlocks, "},{"event":"cmd_output","timestamp":1607098443,"output":"block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM"},{"event":"cmd_output","timestamp":1607098443,"output":".Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:03.645 [info] ppl_id: 8073df4f-e199-42d5-807e-5d0"},{"event":"cmd_output","timestamp":1607098443,"output":"05622a29b, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loo"},{"event":"cmd_output","timestamp":1607098443,"output":"per.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:03.660 [info] ppl_id: 8073df4f-e199-42d5-8"},{"event":"cmd_output","timestamp":1607098443,"output":"07e-5d005622a29b, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098443,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:03.666 [info] PplBlocks WaitingStat"},{"event":"cmd_output","timestamp":1607098443,"output":"e STM is scheduling block 0 from pipeline: \"8073df4f-e199-42d5-807e-5d005622a29b\"\n\u001b[0m\u001b[22m\n16:14:"},{"event":"cmd_output","timestamp":1607098443,"output":"03.673 [info] ppl_id: 8073df4f-e199-42d5-807e-5d005622a29b, type: PplBlocks, block_index: 0, state:"},{"event":"cmd_output","timestamp":1607098443,"output":" done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098443,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:03.681 [info] ppl_id: 8073df4f-e199-42d5-807e-5d005622a29b"},{"event":"cmd_output","timestamp":1607098443,"output":", type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098443,"output":".Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test change_in uses diferent default range"},{"event":"cmd_output","timestamp":1607098443,"output":" when defult_range config is given (284.9ms)\u001b[0m\n * test change_in includes yml config file by def"},{"event":"cmd_output","timestamp":1607098443,"output":"ault\u001b[22m\n16:14:03.824 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingState wi"},{"event":"cmd_output","timestamp":1607098443,"output":"th name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-"},{"event":"cmd_output","timestamp":1607098443,"output":"wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializi"},{"event":"cmd_output","timestamp":1607098443,"output":"ng\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"i"},{"event":"cmd_output","timestamp":1607098443,"output":"nitializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>"},{"event":"cmd_output","timestamp":1607098443,"output":", repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_c"},{"event":"cmd_output","timestamp":1607098443,"output":"ount, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:03.824 [info]"},{"event":"cmd_output","timestamp":1607098443,"output":" Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler."},{"event":"cmd_output","timestamp":1607098443,"output":"PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingS"},{"event":"cmd_output","timestamp":1607098443,"output":"tate\"]}, recurring args: %{allowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_s"},{"event":"cmd_output","timestamp":1607098443,"output":"ec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publisher_cb: #Function<0.8493"},{"event":"cmd_output","timestamp":1607098443,"output":"005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_r"},{"event":"cmd_output","timestamp":1607098443,"output":"equest, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_s"},{"event":"cmd_output","timestamp":1607098443,"output":"upervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:14:03.824 [info] Periodic from module Elixir.Ppl.Ppls"},{"event":"cmd_output","timestamp":1607098443,"output":".STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, metric"},{"event":"cmd_output","timestamp":1607098443,"output":"_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{allowed_sta"},{"event":"cmd_output","timestamp":1607098443,"output":"tes: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, obser"},{"event":"cmd_output","timestamp":1607098443,"output":"ved_state: \"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.args"},{"event":"cmd_output","timestamp":1607098443,"output":"/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recover"},{"event":"cmd_output","timestamp":1607098443,"output":"y_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:03.824 [in"},{"event":"cmd_output","timestamp":1607098443,"output":"fo] Periodic from module Elixir.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHandl"},{"event":"cmd_output","timestamp":1607098443,"output":"er.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Runni"},{"event":"cmd_output","timestamp":1607098443,"output":"ngState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2,"},{"event":"cmd_output","timestamp":1607098443,"output":" initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"running\", publisher_cb: #Function<0.74670282/1"},{"event":"cmd_output","timestamp":1607098443,"output":" in Ppl.Ppls.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_reques"},{"event":"cmd_output","timestamp":1607098443,"output":"t, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_superv"},{"event":"cmd_output","timestamp":1607098443,"output":"isor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:14:03.824 [info] Periodic from module Elixir.Ppl.Ppls.STMH"},{"event":"cmd_output","timestamp":1607098443,"output":"andler.StoppingState with name Elixir.Ppl.Ppls.STMHandler.StoppingState :: period: 100 ms, metric_na"},{"event":"cmd_output","timestamp":1607098443,"output":"me: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring args: %{allowed_state"},{"event":"cmd_output","timestamp":1607098443,"output":"s: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \""},{"event":"cmd_output","timestamp":1607098443,"output":"stopping\", publisher_cb: #Function<0.71803493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, repo: "},{"event":"cmd_output","timestamp":1607098443,"output":"Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :p"},{"event":"cmd_output","timestamp":1607098443,"output":"pl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:03.824 [info] Period"},{"event":"cmd_output","timestamp":1607098443,"output":"ic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHa"},{"event":"cmd_output","timestamp":1607098443,"output":"ndler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHan"},{"event":"cmd_output","timestamp":1607098443,"output":"dler-CreatedState\"]}, recurring args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, i"},{"event":"cmd_output","timestamp":1607098443,"output":"nitial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip, rep"},{"event":"cmd_output","timestamp":1607098443,"output":"o: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count,"},{"event":"cmd_output","timestamp":1607098443,"output":" :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:03.8"},{"event":"cmd_output","timestamp":1607098443,"output":"25 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098443,"output":".PplSubInits.STMHandler.FetchingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl"},{"event":"cmd_output","timestamp":1607098443,"output":"-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compil"},{"event":"cmd_output","timestamp":1607098443,"output":"ation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_st"},{"event":"cmd_output","timestamp":1607098443,"output":"ate: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :upda"},{"event":"cmd_output","timestamp":1607098443,"output":"ted_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_"},{"event":"cmd_output","timestamp":1607098443,"output":"supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:03.825 [info] Periodic from module Elixir.Ppl.PplSubInits.STMH"},{"event":"cmd_output","timestamp":1607098443,"output":"andler.CompilationState with name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 100 "},{"event":"cmd_output","timestamp":1607098443,"output":"ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurrin"},{"event":"cmd_output","timestamp":1607098443,"output":"g args: %{allowed_states: [\"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2,"},{"event":"cmd_output","timestamp":1607098443,"output":" initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"compilation\", publisher_cb: :ski"},{"event":"cmd_output","timestamp":1607098443,"output":"p, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_"},{"event":"cmd_output","timestamp":1607098443,"output":"count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098443,"output":"4:03.825 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with name E"},{"event":"cmd_output","timestamp":1607098443,"output":"lixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wak"},{"event":"cmd_output","timestamp":1607098443,"output":"e_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurring args: %{allowed_states: [\"done\"],"},{"event":"cmd_output","timestamp":1607098443,"output":" cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_ini"},{"event":"cmd_output","timestamp":1607098443,"output":"t\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :stat"},{"event":"cmd_output","timestamp":1607098443,"output":"e, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :"},{"event":"cmd_output","timestamp":1607098443,"output":"skip}\n\u001b[0m\u001b[22m\n16:14:03.825 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.Initiali"},{"event":"cmd_output","timestamp":1607098443,"output":"zingState with name Elixir.Ppl.PplBlocks.STMHandler.InitializingState :: period: 100 ms, metric_name"},{"event":"cmd_output","timestamp":1607098443,"output":": {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-InitializingState\"]}, recurring args: %{allowe"},{"event":"cmd_output","timestamp":1607098443,"output":"d_states: [\"initializing\", \"waiting\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Mod"},{"event":"cmd_output","timestamp":1607098443,"output":"el.PplBlocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:"},{"event":"cmd_output","timestamp":1607098443,"output":"id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schem"},{"event":"cmd_output","timestamp":1607098443,"output":"a: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:03.825 [info] Periodic "},{"event":"cmd_output","timestamp":1607098443,"output":"from module Elixir.Ppl.PplBlocks.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler.W"},{"event":"cmd_output","timestamp":1607098443,"output":"aitingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-Wai"},{"event":"cmd_output","timestamp":1607098443,"output":"tingState\"]}, recurring args: %{allowed_states: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 0,"},{"event":"cmd_output","timestamp":1607098443,"output":" initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"waiting\", publisher_cb: #Function<0."},{"event":"cmd_output","timestamp":1607098443,"output":"8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :te"},{"event":"cmd_output","timestamp":1607098443,"output":"rminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl."},{"event":"cmd_output","timestamp":1607098443,"output":"PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:03.825 [info] Periodic from mo"},{"event":"cmd_output","timestamp":1607098443,"output":"dule Elixir.Ppl.PplBlocks.STMHandler.RunningState with name Elixir.Ppl.PplBlocks.STMHandler.RunningS"},{"event":"cmd_output","timestamp":1607098443,"output":"tate :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningSta"},{"event":"cmd_output","timestamp":1607098443,"output":"te\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, init"},{"event":"cmd_output","timestamp":1607098443,"output":"ial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"running\", publisher_cb: #Function<0.28166"},{"event":"cmd_output","timestamp":1607098443,"output":"834/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :termin"},{"event":"cmd_output","timestamp":1607098443,"output":"ate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schem"},{"event":"cmd_output","timestamp":1607098443,"output":"a: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:03.825 [info] Periodic "},{"event":"cmd_output","timestamp":1607098443,"output":"from module Elixir.Ppl.PplBlocks.STMHandler.StoppingState with name Elixir.Ppl.PplBlocks.STMHandler."},{"event":"cmd_output","timestamp":1607098443,"output":"StoppingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-S"},{"event":"cmd_output","timestamp":1607098443,"output":"toppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initi"},{"event":"cmd_output","timestamp":1607098443,"output":"al_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"stopping\", publisher_cb: #Function<0.10421"},{"event":"cmd_output","timestamp":1607098443,"output":"5991/1 in Ppl.PplBlocks.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :term"},{"event":"cmd_output","timestamp":1607098443,"output":"inate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], sch"},{"event":"cmd_output","timestamp":1607098443,"output":"ema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:03.826 [info] Periodi"},{"event":"cmd_output","timestamp":1607098443,"output":"c from module Elixir.Block.Blocks.STMHandler.InitializingState with name Elixir.Block.Blocks.STMHand"},{"event":"cmd_output","timestamp":1607098443,"output":"ler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHan"},{"event":"cmd_output","timestamp":1607098443,"output":"dler-InitializingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: "},{"event":"cmd_output","timestamp":1607098443,"output":"0, initial_query: Block.Blocks.Model.Blocks, observed_state: \"initializing\", publisher_cb: :skip, re"},{"event":"cmd_output","timestamp":1607098443,"output":"po: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :bloc"},{"event":"cmd_output","timestamp":1607098443,"output":"k_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:03.827 [info] P"},{"event":"cmd_output","timestamp":1607098443,"output":"eriodic from module Elixir.Block.Blocks.STMHandler.RunningState with name Elixir.Block.Blocks.STMHan"},{"event":"cmd_output","timestamp":1607098443,"output":"dler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler"},{"event":"cmd_output","timestamp":1607098443,"output":"-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_se"},{"event":"cmd_output","timestamp":1607098443,"output":"c: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"running\", publisher_cb: :skip, rep"},{"event":"cmd_output","timestamp":1607098443,"output":"o: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block"},{"event":"cmd_output","timestamp":1607098443,"output":"_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:03.827 [info] Pe"},{"event":"cmd_output","timestamp":1607098443,"output":"riodic from module Elixir.Block.Blocks.STMHandler.StoppingState with name Elixir.Block.Blocks.STMHan"},{"event":"cmd_output","timestamp":1607098443,"output":"dler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandle"},{"event":"cmd_output","timestamp":1607098443,"output":"r-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, in"},{"event":"cmd_output","timestamp":1607098443,"output":"itial_query: Block.Blocks.Model.Blocks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block"},{"event":"cmd_output","timestamp":1607098443,"output":".EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], sc"},{"event":"cmd_output","timestamp":1607098443,"output":"hema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:03.827 [info] Periodic f"},{"event":"cmd_output","timestamp":1607098443,"output":"rom module Elixir.Block.Tasks.STMHandler.PendingState with name Elixir.Block.Tasks.STMHandler.Pendin"},{"event":"cmd_output","timestamp":1607098443,"output":"gState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingStat"},{"event":"cmd_output","timestamp":1607098443,"output":"e\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Blo"},{"event":"cmd_output","timestamp":1607098443,"output":"ck.Tasks.Model.Tasks, observed_state: \"pending\", publisher_cb: :skip, repo: Block.EctoRepo, returnin"},{"event":"cmd_output","timestamp":1607098443,"output":"g: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id, :build_request_id], sc"},{"event":"cmd_output","timestamp":1607098443,"output":"hema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:03.828 [info] Periodic fro"},{"event":"cmd_output","timestamp":1607098443,"output":"m module Elixir.Block.Tasks.STMHandler.RunningState with name Elixir.Block.Tasks.STMHandler.RunningS"},{"event":"cmd_output","timestamp":1607098443,"output":"tate :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningState\""},{"event":"cmd_output","timestamp":1607098443,"output":"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial"},{"event":"cmd_output","timestamp":1607098443,"output":"_query: Block.Tasks.Model.Tasks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRep"},{"event":"cmd_output","timestamp":1607098443,"output":"o, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Bl"},{"event":"cmd_output","timestamp":1607098443,"output":"ock.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:03.828 [info] Periodic from module"},{"event":"cmd_output","timestamp":1607098443,"output":" Elixir.Block.Tasks.STMHandler.StoppingState with name Elixir.Block.Tasks.STMHandler.StoppingState :"},{"event":"cmd_output","timestamp":1607098443,"output":": period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]}, r"},{"event":"cmd_output","timestamp":1607098443,"output":"ecurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Ta"},{"event":"cmd_output","timestamp":1607098443,"output":"sks.Model.Tasks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: ["},{"event":"cmd_output","timestamp":1607098443,"output":":id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model"},{"event":"cmd_output","timestamp":1607098443,"output":".Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:03.832 [info] Request: 'run: %{\"branch_id\" => \"aa"},{"event":"cmd_output","timestamp":1607098443,"output":"f66ac7-732a-461e-a583-ef86730d3f55\", \"branch_name\" => \"include_yml\", \"commit_sha\" => \"75891a4469\", \""},{"event":"cmd_output","timestamp":1607098443,"output":"file_name\" => \"one_path.yml\", \"hook_id\" => \"ba23e49c-364b-11eb-992f-5254005464e2\", \"label\" => \"inclu"},{"event":"cmd_output","timestamp":1607098443,"output":"de_yml\", \"organization_id\" => \"366bd6e3-adfe-4931-96af-ce7386aca67c\", \"owner\" => \"rt\", \"project_id\" "},{"event":"cmd_output","timestamp":1607098443,"output":"=> \"5c2d3941-15d5-48a6-8b12-b50369793102\", \"repo_name\" => \"22_skip_block\", \"request_token\" => \"ba23d"},{"event":"cmd_output","timestamp":1607098443,"output":"7f4-364b-11eb-80ea-5254005464e2\", \"requester_id\" => \"a5607421-8a09-4709-9f75-e511d59fb005\", \"service"},{"event":"cmd_output","timestamp":1607098443,"output":"\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"c52c27c0-308"},{"event":"cmd_output","timestamp":1607098443,"output":"b-4004-b62a-3fac8e7ae86a\", \"working_dir\" => \".semaphore/change_in\"}\n\u001b[0m\u001b[22m\n16:14:03.834 [info] "},{"event":"cmd_output","timestamp":1607098443,"output":" ppl_id: da739306-a25f-4d18-b568-035be4f4c617, type: PplRequests, event: persisted schedule request "},{"event":"cmd_output","timestamp":1607098443,"output":"with request_token: ba23d7f4-364b-11eb-80ea-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRe"},{"event":"cmd_output","timestamp":1607098443,"output":"questsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:14:03.836 [info] ppl_id: da739306-a25f-4d18-"},{"event":"cmd_output","timestamp":1607098443,"output":"b568-035be4f4c617, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098443,"output":"Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:14:03.839 [info] Projec"},{"event":"cmd_output","timestamp":1607098443,"output":"t 5c2d3941-15d5-48a6-8b12-b50369793102 and branch include_ymllatest_wf details updated: \"wf_id: c52c"},{"event":"cmd_output","timestamp":1607098443,"output":"27c0-308b-4004-b62a-3fac8e7ae86a, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:14:03.840 [info] Persisted ppl_sub_i"},{"event":"cmd_output","timestamp":1607098443,"output":"nit for pipeline with ppl_id: da739306-a25f-4d18-b568-035be4f4c617: %Ppl.PplSubInits.Model.PplSubIni"},{"event":"cmd_output","timestamp":1607098443,"output":"ts{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_descr"},{"event":"cmd_output","timestamp":1607098443,"output":"iption: nil, id: 318, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:14:0"},{"event":"cmd_output","timestamp":1607098443,"output":"3.839491], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"da739306-a25f-4d18-b568-035be4f4c617\", recovery_count: 0, result: nil, result_reason: "},{"event":"cmd_output","timestamp":1607098443,"output":"nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-0"},{"event":"cmd_output","timestamp":1607098443,"output":"4 16:14:03.839496]}\n\u001b[0m\u001b[22m\n16:14:03.850 [info] ppl_id: da739306-a25f-4d18-b568-035be4f4c617, t"},{"event":"cmd_output","timestamp":1607098443,"output":"ype: PplRequests, event: persisted source_args for pipeline: da739306-a25f-4d18-b568-035be4f4c617, o"},{"event":"cmd_output","timestamp":1607098443,"output":"rigin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:14:03.8"},{"event":"cmd_output","timestamp":1607098443,"output":"53 [info] ppl_id: da739306-a25f-4d18-b568-035be4f4c617, type: PplSubInits, state: fetching, event: "},{"event":"cmd_output","timestamp":1607098443,"output":"exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098443,"output":"22m\n16:14:03.867 [info] ppl_id: da739306-a25f-4d18-b568-035be4f4c617, type: PplSubInits, state: re"},{"event":"cmd_output","timestamp":1607098443,"output":"gular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chan"},{"event":"cmd_output","timestamp":1607098443,"output":"ge/1(L90), \n\u001b[0m\u001b[22m\n16:14:03.892 [info] ppl_id: da739306-a25f-4d18-b568-035be4f4c617, type: Ppl"},{"event":"cmd_output","timestamp":1607098443,"output":"Requests, event: persisted definition for request with request_token: ba23d7f4-364b-11eb-80ea-525400"},{"event":"cmd_output","timestamp":1607098443,"output":"5464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098443,"output":"m\n16:14:03.894 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metad"},{"event":"cmd_output","timestamp":1607098443,"output":"ata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:14:03.893837], name: \"include_yml-.semaphore/c"},{"event":"cmd_output","timestamp":1607098443,"output":"hange_in/one_path.yml\", organization_id: \"366bd6e3-adfe-4931-96af-ce7386aca67c\", project_id: \"5c2d39"},{"event":"cmd_output","timestamp":1607098443,"output":"41-15d5-48a6-8b12-b50369793102\", queue_id: \"8ce026bc-97f3-4c4d-90db-e9c514f9421f\", scope: \"project\","},{"event":"cmd_output","timestamp":1607098443,"output":" updated_at: ~N[2020-12-04 16:14:03.893845], user_generated: false}}\n\u001b[0m\u001b[22m\n16:14:03.898 [info]"},{"event":"cmd_output","timestamp":1607098443,"output":" event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098443,"output":"\u001b[22m\n16:14:03.898 [info] ppl_id: da739306-a25f-4d18-b568-035be4f4c617, type: PplBlocks, block_ind"},{"event":"cmd_output","timestamp":1607098443,"output":"ex: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHan"},{"event":"cmd_output","timestamp":1607098443,"output":"dler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:03.899 [info] ppl_id: da739306-a25f-4d18-"},{"event":"cmd_output","timestamp":1607098443,"output":"b568-035be4f4c617, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_"},{"event":"cmd_output","timestamp":1607098443,"output":"count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:03.906 [info] "},{"event":"cmd_output","timestamp":1607098443,"output":"ppl_id: da739306-a25f-4d18-b568-035be4f4c617, type: Ppls, state: pending, event: exit_scheduling, re"},{"event":"cmd_output","timestamp":1607098443,"output":"covery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:03.906 ["},{"event":"cmd_output","timestamp":1607098443,"output":"info] ppl_id: da739306-a25f-4d18-b568-035be4f4c617, type: PplBlocks, block_index: 0, state: waiting"},{"event":"cmd_output","timestamp":1607098443,"output":", event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90),"},{"event":"cmd_output","timestamp":1607098443,"output":" \n\u001b[0m\u001b[22m\n16:14:03.911 [info] ppl_id: da739306-a25f-4d18-b568-035be4f4c617, type: Ppls, state: "},{"event":"cmd_output","timestamp":1607098443,"output":"queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/"},{"event":"cmd_output","timestamp":1607098443,"output":"1(L90), \n\u001b[0m\u001b[22m\n16:14:03.926 [info] ppl_id: da739306-a25f-4d18-b568-035be4f4c617, type: Ppls, "},{"event":"cmd_output","timestamp":1607098443,"output":"state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_"},{"event":"cmd_output","timestamp":1607098443,"output":"change/1(L90), \n\u001b[0m\u001b[22m\n16:14:03.936 [info] PplBlocks WaitingState STM is scheduling block 0 fr"},{"event":"cmd_output","timestamp":1607098443,"output":"om pipeline: \"da739306-a25f-4d18-b568-035be4f4c617\"\n\u001b[0m\u001b[22m\n16:14:03.944 [info] ppl_id: da73930"},{"event":"cmd_output","timestamp":1607098443,"output":"6-a25f-4d18-b568-035be4f4c617, type: PplBlocks, block_index: 0, state: done, result: passed, event: "},{"event":"cmd_output","timestamp":1607098443,"output":"exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098443,"output":"22m\n16:14:03.952 [info] ppl_id: da739306-a25f-4d18-b568-035be4f4c617, type: Ppls, state: done, res"},{"event":"cmd_output","timestamp":1607098443,"output":"ult: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_cha"},{"event":"cmd_output","timestamp":1607098444,"output":"nge/1(L90), \n\u001b[0m\u001b[32m\r * test change_in includes yml config file by default (269.8ms)\u001b[0m\n * te"},{"event":"cmd_output","timestamp":1607098444,"output":"st change_in does not track yml file when pipeline_file config is set to ignore\u001b[22m\n16:14:04.104 ["},{"event":"cmd_output","timestamp":1607098444,"output":"info] Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.S"},{"event":"cmd_output","timestamp":1607098444,"output":"TMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMH"},{"event":"cmd_output","timestamp":1607098444,"output":"andler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], "},{"event":"cmd_output","timestamp":1607098444,"output":"cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher_c"},{"event":"cmd_output","timestamp":1607098444,"output":"b: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, ret"},{"event":"cmd_output","timestamp":1607098444,"output":"urning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: P"},{"event":"cmd_output","timestamp":1607098444,"output":"pl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:04.104 [info] Periodic from module El"},{"event":"cmd_output","timestamp":1607098444,"output":"ixir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 1"},{"event":"cmd_output","timestamp":1607098444,"output":"00 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args: "},{"event":"cmd_output","timestamp":1607098444,"output":"%{allowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl"},{"event":"cmd_output","timestamp":1607098444,"output":".Ppls.Model.Ppls, observed_state: \"pending\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHand"},{"event":"cmd_output","timestamp":1607098444,"output":"ler.PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :sta"},{"event":"cmd_output","timestamp":1607098444,"output":"te, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSuperv"},{"event":"cmd_output","timestamp":1607098444,"output":"isor}\n\u001b[0m\u001b[22m\n16:14:04.105 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.QueuingState "},{"event":"cmd_output","timestamp":1607098444,"output":"with name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wak"},{"event":"cmd_output","timestamp":1607098444,"output":"e_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{allowed_states: [\"queuing\", \"running"},{"event":"cmd_output","timestamp":1607098444,"output":"\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", pub"},{"event":"cmd_output","timestamp":1607098444,"output":"lisher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, "},{"event":"cmd_output","timestamp":1607098444,"output":"returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema"},{"event":"cmd_output","timestamp":1607098444,"output":": Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:04.105 [info] Periodic from module"},{"event":"cmd_output","timestamp":1607098444,"output":" Elixir.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHandler.RunningState :: period"},{"event":"cmd_output","timestamp":1607098444,"output":": 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring arg"},{"event":"cmd_output","timestamp":1607098444,"output":"s: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls."},{"event":"cmd_output","timestamp":1607098444,"output":"Model.Ppls, observed_state: \"running\", publisher_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler.R"},{"event":"cmd_output","timestamp":1607098444,"output":"unningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :"},{"event":"cmd_output","timestamp":1607098444,"output":"result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}"},{"event":"cmd_output","timestamp":1607098444,"output":"\n\u001b[0m\u001b[22m\n16:14:04.106 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.StoppingState with"},{"event":"cmd_output","timestamp":1607098444,"output":" name Elixir.Ppl.Ppls.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_u"},{"event":"cmd_output","timestamp":1607098444,"output":"p\", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], "},{"event":"cmd_output","timestamp":1607098444,"output":"cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"stopping\", publisher_cb: "},{"event":"cmd_output","timestamp":1607098444,"output":"#Function<0.71803493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: "},{"event":"cmd_output","timestamp":1607098444,"output":"[:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls."},{"event":"cmd_output","timestamp":1607098444,"output":"Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:04.106 [info] Periodic from module Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098444,"output":".PplSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: per"},{"event":"cmd_output","timestamp":1607098444,"output":"iod: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, rec"},{"event":"cmd_output","timestamp":1607098444,"output":"urring args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubI"},{"event":"cmd_output","timestamp":1607098444,"output":"nits.Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returnin"},{"event":"cmd_output","timestamp":1607098444,"output":"g: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Pp"},{"event":"cmd_output","timestamp":1607098444,"output":"lSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:04.106 [info] Periodic from "},{"event":"cmd_output","timestamp":1607098444,"output":"module Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler.F"},{"event":"cmd_output","timestamp":1607098444,"output":"etchingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-F"},{"event":"cmd_output","timestamp":1607098444,"output":"etchingState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"done\"], cooling_"},{"event":"cmd_output","timestamp":1607098444,"output":"time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fetching\", publishe"},{"event":"cmd_output","timestamp":1607098444,"output":"r_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, "},{"event":"cmd_output","timestamp":1607098444,"output":":recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098444,"output":"[22m\n16:14:04.107 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CompilationState w"},{"event":"cmd_output","timestamp":1607098444,"output":"ith name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 100 ms, metric_name: {\"Ppl.be"},{"event":"cmd_output","timestamp":1607098444,"output":"holder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurring args: %{allowed_states:"},{"event":"cmd_output","timestamp":1607098444,"output":" [\"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSu"},{"event":"cmd_output","timestamp":1607098444,"output":"bInits.Model.PplSubInits, observed_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, re"},{"event":"cmd_output","timestamp":1607098444,"output":"turning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: "},{"event":"cmd_output","timestamp":1607098444,"output":"Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:04.107 [info] Periodic"},{"event":"cmd_output","timestamp":1607098444,"output":" from module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.STM"},{"event":"cmd_output","timestamp":1607098444,"output":"Handler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-"},{"event":"cmd_output","timestamp":1607098444,"output":"STMHandler-RegularInitState\"]}, recurring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, ini"},{"event":"cmd_output","timestamp":1607098444,"output":"tial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_init\", publisher_cb: :skip, "},{"event":"cmd_output","timestamp":1607098444,"output":"repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_cou"},{"event":"cmd_output","timestamp":1607098444,"output":"nt, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:0"},{"event":"cmd_output","timestamp":1607098444,"output":"4.107 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.InitializingState with name Elixi"},{"event":"cmd_output","timestamp":1607098444,"output":"r.Ppl.PplBlocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\""},{"event":"cmd_output","timestamp":1607098444,"output":", [\"Ppl-PplBlocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\""},{"event":"cmd_output","timestamp":1607098444,"output":", \"waiting\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_st"},{"event":"cmd_output","timestamp":1607098444,"output":"ate: \"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :"},{"event":"cmd_output","timestamp":1607098444,"output":"updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.Pp"},{"event":"cmd_output","timestamp":1607098444,"output":"lBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:04.108 [info] Periodic from module Elixir.Ppl.Pp"},{"event":"cmd_output","timestamp":1607098444,"output":"lBlocks.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler.WaitingState :: period: 10"},{"event":"cmd_output","timestamp":1607098444,"output":"00 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurring a"},{"event":"cmd_output","timestamp":1607098444,"output":"rgs: %{allowed_states: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBl"},{"event":"cmd_output","timestamp":1607098444,"output":"ocks.Model.PplBlocks, observed_state: \"waiting\", publisher_cb: #Function<0.8975022/1 in Ppl.PplBlock"},{"event":"cmd_output","timestamp":1607098444,"output":"s.STMHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated"},{"event":"cmd_output","timestamp":1607098444,"output":"_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks"},{"event":"cmd_output","timestamp":1607098444,"output":", task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:04.108 [info] Periodic from module Elixir.Ppl.PplBlocks"},{"event":"cmd_output","timestamp":1607098444,"output":".STMHandler.RunningState with name Elixir.Ppl.PplBlocks.STMHandler.RunningState :: period: 1000 ms, "},{"event":"cmd_output","timestamp":1607098444,"output":"metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, recurring args: %{"},{"event":"cmd_output","timestamp":1607098444,"output":"allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks."},{"event":"cmd_output","timestamp":1607098444,"output":"Model.PplBlocks, observed_state: \"running\", publisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.ST"},{"event":"cmd_output","timestamp":1607098444,"output":"MHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at,"},{"event":"cmd_output","timestamp":1607098444,"output":" :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.Pp"},{"event":"cmd_output","timestamp":1607098444,"output":"lBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:04.109 [info] Periodic from module Elixir.Ppl.Pp"},{"event":"cmd_output","timestamp":1607098444,"output":"lBlocks.STMHandler.StoppingState with name Elixir.Ppl.PplBlocks.STMHandler.StoppingState :: period: "},{"event":"cmd_output","timestamp":1607098444,"output":"1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurrin"},{"event":"cmd_output","timestamp":1607098444,"output":"g args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.M"},{"event":"cmd_output","timestamp":1607098444,"output":"odel.PplBlocks, observed_state: \"stopping\", publisher_cb: #Function<0.104215991/1 in Ppl.PplBlocks.S"},{"event":"cmd_output","timestamp":1607098444,"output":"TMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_a"},{"event":"cmd_output","timestamp":1607098444,"output":"t, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model."},{"event":"cmd_output","timestamp":1607098444,"output":"PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:04.110 [info] Periodic from module Elixir.Bloc"},{"event":"cmd_output","timestamp":1607098444,"output":"k.Blocks.STMHandler.InitializingState with name Elixir.Block.Blocks.STMHandler.InitializingState :: "},{"event":"cmd_output","timestamp":1607098444,"output":"period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-InitializingState\"]}"},{"event":"cmd_output","timestamp":1607098444,"output":", recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.B"},{"event":"cmd_output","timestamp":1607098444,"output":"locks.Model.Blocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Block.EctoRepo, retur"},{"event":"cmd_output","timestamp":1607098444,"output":"ning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Bloc"},{"event":"cmd_output","timestamp":1607098444,"output":"ks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:04.111 [info] Periodic from module Elixi"},{"event":"cmd_output","timestamp":1607098444,"output":"r.Block.Blocks.STMHandler.RunningState with name Elixir.Block.Blocks.STMHandler.RunningState :: peri"},{"event":"cmd_output","timestamp":1607098444,"output":"od: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-RunningState\"]}, recurri"},{"event":"cmd_output","timestamp":1607098444,"output":"ng args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Blo"},{"event":"cmd_output","timestamp":1607098444,"output":"ck.Blocks.Model.Blocks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, return"},{"event":"cmd_output","timestamp":1607098444,"output":"ing: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Block"},{"event":"cmd_output","timestamp":1607098444,"output":"s.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:04.111 [info] Periodic from module Elixir"},{"event":"cmd_output","timestamp":1607098444,"output":".Block.Blocks.STMHandler.StoppingState with name Elixir.Block.Blocks.STMHandler.StoppingState :: per"},{"event":"cmd_output","timestamp":1607098444,"output":"iod: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-StoppingState\"]}, recur"},{"event":"cmd_output","timestamp":1607098444,"output":"ring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks"},{"event":"cmd_output","timestamp":1607098444,"output":".Model.Blocks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:i"},{"event":"cmd_output","timestamp":1607098444,"output":"d, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model."},{"event":"cmd_output","timestamp":1607098444,"output":"Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:04.112 [info] Periodic from module Elixir.Block.T"},{"event":"cmd_output","timestamp":1607098444,"output":"asks.STMHandler.PendingState with name Elixir.Block.Tasks.STMHandler.PendingState :: period: 100 ms,"},{"event":"cmd_output","timestamp":1607098444,"output":" metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingState\"]}, recurring args: %{a"},{"event":"cmd_output","timestamp":1607098444,"output":"llowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Tasks.Model.Tasks, obs"},{"event":"cmd_output","timestamp":1607098444,"output":"erved_state: \"pending\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_reque"},{"event":"cmd_output","timestamp":1607098444,"output":"st, :updated_at, :state, :recovery_count, :block_id, :build_request_id], schema: Block.Tasks.Model.T"},{"event":"cmd_output","timestamp":1607098444,"output":"asks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:04.112 [info] Periodic from module Elixir.Block.Tas"},{"event":"cmd_output","timestamp":1607098444,"output":"ks.STMHandler.RunningState with name Elixir.Block.Tasks.STMHandler.RunningState :: period: 100 ms, m"},{"event":"cmd_output","timestamp":1607098444,"output":"etric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningState\"]}, recurring args: %{all"},{"event":"cmd_output","timestamp":1607098444,"output":"owed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model"},{"event":"cmd_output","timestamp":1607098444,"output":".Tasks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :term"},{"event":"cmd_output","timestamp":1607098444,"output":"inate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, ta"},{"event":"cmd_output","timestamp":1607098444,"output":"sk_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:04.113 [info] Periodic from module Elixir.Block.Tasks.STMHa"},{"event":"cmd_output","timestamp":1607098444,"output":"ndler.StoppingState with name Elixir.Block.Tasks.STMHandler.StoppingState :: period: 100 ms, metric_"},{"event":"cmd_output","timestamp":1607098444,"output":"name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]}, recurring args: %{allowed_"},{"event":"cmd_output","timestamp":1607098444,"output":"states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed"},{"event":"cmd_output","timestamp":1607098444,"output":"_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, "},{"event":"cmd_output","timestamp":1607098444,"output":":updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: "},{"event":"cmd_output","timestamp":1607098444,"output":":skip}\n\u001b[0m\u001b[22m\n16:14:04.126 [info] Request: 'run: %{\"branch_id\" => \"a56cc10d-16c0-4876-958c-734"},{"event":"cmd_output","timestamp":1607098444,"output":"01ad134f8\", \"branch_name\" => \"config_ppl_file\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"config"},{"event":"cmd_output","timestamp":1607098444,"output":"_ppl_file.yml\", \"hook_id\" => \"ba4f52a8-364b-11eb-aa67-5254005464e2\", \"label\" => \"config_ppl_file\", \""},{"event":"cmd_output","timestamp":1607098444,"output":"organization_id\" => \"87cb25ba-7f56-4b8d-aed0-d230d7fcac45\", \"owner\" => \"rt\", \"project_id\" => \"f2a3d5"},{"event":"cmd_output","timestamp":1607098444,"output":"ae-53c0-498c-be6d-dbb16284016e\", \"repo_name\" => \"22_skip_block\", \"request_token\" => \"ba4f4b1e-364b-1"},{"event":"cmd_output","timestamp":1607098444,"output":"1eb-9296-5254005464e2\", \"requester_id\" => \"cb0361f2-f713-4ebc-8e9d-43c61f49893b\", \"service\" => \"loca"},{"event":"cmd_output","timestamp":1607098444,"output":"l\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"14d91637-c94d-4f3d-ab8"},{"event":"cmd_output","timestamp":1607098444,"output":"d-32718da055dc\", \"working_dir\" => \".semaphore/change_in\"}\n\u001b[0m\u001b[22m\n16:14:04.127 [info] ppl_id: 5"},{"event":"cmd_output","timestamp":1607098444,"output":"1ed53a2-13a0-4926-9c66-287f1e5e6633, type: PplRequests, event: persisted schedule request with reque"},{"event":"cmd_output","timestamp":1607098444,"output":"st_token: ba4f4b1e-364b-11eb-9296-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQuer"},{"event":"cmd_output","timestamp":1607098444,"output":"ies.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:14:04.130 [info] ppl_id: 51ed53a2-13a0-4926-9c66-287f1"},{"event":"cmd_output","timestamp":1607098444,"output":"e5e6633, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098444,"output":".Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:14:04.134 [info] Project f2a3d5ae"},{"event":"cmd_output","timestamp":1607098444,"output":"-53c0-498c-be6d-dbb16284016e and branch config_ppl_filelatest_wf details updated: \"wf_id: 14d91637-c"},{"event":"cmd_output","timestamp":1607098444,"output":"94d-4f3d-ab8d-32718da055dc, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:14:04.135 [info] Persisted ppl_sub_init fo"},{"event":"cmd_output","timestamp":1607098444,"output":"r pipeline with ppl_id: 51ed53a2-13a0-4926-9c66-287f1e5e6633: %Ppl.PplSubInits.Model.PplSubInits{__m"},{"event":"cmd_output","timestamp":1607098444,"output":"eta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description"},{"event":"cmd_output","timestamp":1607098444,"output":": nil, id: 319, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:14:04.1345"},{"event":"cmd_output","timestamp":1607098444,"output":"97], pipeline_requests: #Ecto.Association.NotLoaded, p"},{"event":"cmd_output","timestamp":1607098444,"output":"pl_id: \"51ed53a2-13a0-4926-9c66-287f1e5e6633\", recovery_count: 0, result: nil, result_reason: nil, s"},{"event":"cmd_output","timestamp":1607098444,"output":"tate: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:1"},{"event":"cmd_output","timestamp":1607098444,"output":"4:04.134616]}\n\u001b[0m\u001b[22m\n16:14:04.144 [info] ppl_id: 51ed53a2-13a0-4926-9c66-287f1e5e6633, type: P"},{"event":"cmd_output","timestamp":1607098444,"output":"plRequests, event: persisted source_args for pipeline: 51ed53a2-13a0-4926-9c66-287f1e5e6633, origin:"},{"event":"cmd_output","timestamp":1607098444,"output":" Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:14:04.146 [in"},{"event":"cmd_output","timestamp":1607098444,"output":"fo] ppl_id: 51ed53a2-13a0-4926-9c66-287f1e5e6633, type: PplSubInits, state: fetching, event: exit_s"},{"event":"cmd_output","timestamp":1607098444,"output":"cheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098444,"output":"6:14:04.161 [info] ppl_id: 51ed53a2-13a0-4926-9c66-287f1e5e6633, type: PplSubInits, state: regular_"},{"event":"cmd_output","timestamp":1607098444,"output":"init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098444,"output":"90), \n\u001b[0m\u001b[22m\n16:14:04.179 [info] ppl_id: 51ed53a2-13a0-4926-9c66-287f1e5e6633, type: PplReques"},{"event":"cmd_output","timestamp":1607098444,"output":"ts, event: persisted definition for request with request_token: ba4f4b1e-364b-11eb-9296-5254005464e2"},{"event":"cmd_output","timestamp":1607098444,"output":", origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098444,"output":"14:04.182 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:l"},{"event":"cmd_output","timestamp":1607098444,"output":"oaded, \"queues\">, inserted_at: ~N[2020-12-04 16:14:04.181332], name: \"config_ppl_file-.semaphore/cha"},{"event":"cmd_output","timestamp":1607098444,"output":"nge_in/config_ppl_file.yml\", organization_id: \"87cb25ba-7f56-4b8d-aed0-d230d7fcac45\", project_id: \"f"},{"event":"cmd_output","timestamp":1607098444,"output":"2a3d5ae-53c0-498c-be6d-dbb16284016e\", queue_id: \"6dfa7265-7493-4914-b825-639b79d56abe\", scope: \"proj"},{"event":"cmd_output","timestamp":1607098444,"output":"ect\", updated_at: ~N[2020-12-04 16:14:04.181340], user_generated: false}}\n\u001b[0m\u001b[22m\n16:14:04.186 ["},{"event":"cmd_output","timestamp":1607098444,"output":"info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \r"},{"event":"cmd_output","timestamp":1607098444,"output":"\n\u001b[0m\u001b[22m\n16:14:04.186 [info] ppl_id: 51ed53a2-13a0-4926-9c66-287f1e5e6633, type: PplBlocks, bloc"},{"event":"cmd_output","timestamp":1607098444,"output":"k_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.S"},{"event":"cmd_output","timestamp":1607098444,"output":"TMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:04.187 [info] ppl_id: 51ed53a2-13a0-"},{"event":"cmd_output","timestamp":1607098444,"output":"4926-9c66-287f1e5e6633, type: PplSubInits, state: done, result: passed, event: exit_scheduling, reco"},{"event":"cmd_output","timestamp":1607098444,"output":"very_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:04.194 [in"},{"event":"cmd_output","timestamp":1607098444,"output":"fo] ppl_id: 51ed53a2-13a0-4926-9c66-287f1e5e6633, type: PplBlocks, block_index: 0, state: waiting, "},{"event":"cmd_output","timestamp":1607098444,"output":"event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \r"},{"event":"cmd_output","timestamp":1607098444,"output":"\n\u001b[0m\u001b[22m\n16:14:04.194 [info] ppl_id: 51ed53a2-13a0-4926-9c66-287f1e5e6633, type: Ppls, state: pe"},{"event":"cmd_output","timestamp":1607098444,"output":"nding, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1("},{"event":"cmd_output","timestamp":1607098444,"output":"L90), \n\u001b[0m\u001b[22m\n16:14:04.211 [info] ppl_id: 51ed53a2-13a0-4926-9c66-287f1e5e6633, type: Ppls, st"},{"event":"cmd_output","timestamp":1607098444,"output":"ate: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_ch"},{"event":"cmd_output","timestamp":1607098444,"output":"ange/1(L90), \n\u001b[0m\u001b[22m\n16:14:04.223 [info] ppl_id: 51ed53a2-13a0-4926-9c66-287f1e5e6633, type: P"},{"event":"cmd_output","timestamp":1607098444,"output":"pls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_s"},{"event":"cmd_output","timestamp":1607098444,"output":"tate_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:04.231 [info] PplBlocks WaitingState STM is scheduling block"},{"event":"cmd_output","timestamp":1607098444,"output":" 0 from pipeline: \"51ed53a2-13a0-4926-9c66-287f1e5e6633\"\n\u001b[0m\u001b[22m\n16:14:04.237 [info] ppl_id: 51"},{"event":"cmd_output","timestamp":1607098444,"output":"ed53a2-13a0-4926-9c66-287f1e5e6633, type: PplBlocks, block_index: 0, state: done, result: passed, ev"},{"event":"cmd_output","timestamp":1607098444,"output":"ent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b"},{"event":"cmd_output","timestamp":1607098444,"output":"[0m\u001b[22m\n16:14:04.244 [info] ppl_id: 51ed53a2-13a0-4926-9c66-287f1e5e6633, type: Ppls, state: done"},{"event":"cmd_output","timestamp":1607098444,"output":", result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_stat"},{"event":"cmd_output","timestamp":1607098444,"output":"e_change/1(L90), \n\u001b[0m\u001b[32m\r * test change_in does not track yml file when pipeline_file config is"},{"event":"cmd_output","timestamp":1607098444,"output":" set to ignore (292.4ms)\u001b[0m\n * test malformed change_in() causes pipeline to fail with maformed r"},{"event":"cmd_output","timestamp":1607098444,"output":"eason\u001b[22m\n16:14:04.402 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingState w"},{"event":"cmd_output","timestamp":1607098444,"output":"ith name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder"},{"event":"cmd_output","timestamp":1607098444,"output":"-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializ"},{"event":"cmd_output","timestamp":1607098444,"output":"ing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \""},{"event":"cmd_output","timestamp":1607098444,"output":"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0"},{"event":"cmd_output","timestamp":1607098444,"output":">, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_"},{"event":"cmd_output","timestamp":1607098444,"output":"count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:04.403 [info"},{"event":"cmd_output","timestamp":1607098444,"output":"] Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler"},{"event":"cmd_output","timestamp":1607098444,"output":".PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Pending"},{"event":"cmd_output","timestamp":1607098444,"output":"State\"]}, recurring args: %{allowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_"},{"event":"cmd_output","timestamp":1607098444,"output":"sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publisher_cb: #Function<0.849"},{"event":"cmd_output","timestamp":1607098444,"output":"3005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_"},{"event":"cmd_output","timestamp":1607098444,"output":"request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_"},{"event":"cmd_output","timestamp":1607098444,"output":"supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:14:04.404 [info] Periodic from module Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098444,"output":"s.STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, metri"},{"event":"cmd_output","timestamp":1607098444,"output":"c_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{allowed_st"},{"event":"cmd_output","timestamp":1607098444,"output":"ates: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, obse"},{"event":"cmd_output","timestamp":1607098444,"output":"rved_state: \"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.arg"},{"event":"cmd_output","timestamp":1607098444,"output":"s/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recove"},{"event":"cmd_output","timestamp":1607098444,"output":"ry_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:04.404 [i"},{"event":"cmd_output","timestamp":1607098444,"output":"nfo] Periodic from module Elixir.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHand"},{"event":"cmd_output","timestamp":1607098444,"output":"ler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Runn"},{"event":"cmd_output","timestamp":1607098444,"output":"ingState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2"},{"event":"cmd_output","timestamp":1607098444,"output":", initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"running\", publisher_cb: #Function<0.74670282/"},{"event":"cmd_output","timestamp":1607098444,"output":"1 in Ppl.Ppls.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_reque"},{"event":"cmd_output","timestamp":1607098444,"output":"st, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_super"},{"event":"cmd_output","timestamp":1607098444,"output":"visor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:14:04.405 [info] Periodic from module Elixir.Ppl.Ppls.STM"},{"event":"cmd_output","timestamp":1607098444,"output":"Handler.StoppingState with name Elixir.Ppl.Ppls.STMHandler.StoppingState :: period: 100 ms, metric_n"},{"event":"cmd_output","timestamp":1607098444,"output":"ame: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring args: %{allowed_stat"},{"event":"cmd_output","timestamp":1607098444,"output":"es: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: "},{"event":"cmd_output","timestamp":1607098444,"output":"\"stopping\", publisher_cb: #Function<0.71803493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, repo:"},{"event":"cmd_output","timestamp":1607098444,"output":" Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :"},{"event":"cmd_output","timestamp":1607098444,"output":"ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:04.405 [info] Perio"},{"event":"cmd_output","timestamp":1607098444,"output":"dic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMH"},{"event":"cmd_output","timestamp":1607098444,"output":"andler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHa"},{"event":"cmd_output","timestamp":1607098444,"output":"ndler-CreatedState\"]}, recurring args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, "},{"event":"cmd_output","timestamp":1607098444,"output":"initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip, re"},{"event":"cmd_output","timestamp":1607098444,"output":"po: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count"},{"event":"cmd_output","timestamp":1607098444,"output":", :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:04."},{"event":"cmd_output","timestamp":1607098444,"output":"406 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Pp"},{"event":"cmd_output","timestamp":1607098444,"output":"l.PplSubInits.STMHandler.FetchingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Pp"},{"event":"cmd_output","timestamp":1607098444,"output":"l-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compi"},{"event":"cmd_output","timestamp":1607098444,"output":"lation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_s"},{"event":"cmd_output","timestamp":1607098444,"output":"tate: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :upd"},{"event":"cmd_output","timestamp":1607098444,"output":"ated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task"},{"event":"cmd_output","timestamp":1607098444,"output":"_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:04.407 [info] Periodic from module Elixir.Ppl.PplSubInits.STM"},{"event":"cmd_output","timestamp":1607098444,"output":"Handler.CompilationState with name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 100"},{"event":"cmd_output","timestamp":1607098444,"output":" ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurri"},{"event":"cmd_output","timestamp":1607098444,"output":"ng args: %{allowed_states: [\"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2"},{"event":"cmd_output","timestamp":1607098444,"output":", initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"compilation\", publisher_cb: :sk"},{"event":"cmd_output","timestamp":1607098444,"output":"ip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery"},{"event":"cmd_output","timestamp":1607098444,"output":"_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098444,"output":"14:04.407 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with name "},{"event":"cmd_output","timestamp":1607098444,"output":"Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wa"},{"event":"cmd_output","timestamp":1607098444,"output":"ke_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurring args: %{allowed_states: [\"done\"]"},{"event":"cmd_output","timestamp":1607098444,"output":", cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_in"},{"event":"cmd_output","timestamp":1607098444,"output":"it\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :sta"},{"event":"cmd_output","timestamp":1607098444,"output":"te, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: "},{"event":"cmd_output","timestamp":1607098444,"output":":skip}\n\u001b[0m\u001b[22m\n16:14:04.408 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.Initial"},{"event":"cmd_output","timestamp":1607098444,"output":"izingState with name Elixir.Ppl.PplBlocks.STMHandler.InitializingState :: period: 100 ms, metric_nam"},{"event":"cmd_output","timestamp":1607098444,"output":"e: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-InitializingState\"]}, recurring args: %{allow"},{"event":"cmd_output","timestamp":1607098444,"output":"ed_states: [\"initializing\", \"waiting\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Mo"},{"event":"cmd_output","timestamp":1607098444,"output":"del.PplBlocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: ["},{"event":"cmd_output","timestamp":1607098444,"output":":id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], sche"},{"event":"cmd_output","timestamp":1607098444,"output":"ma: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:04.409 [info] Periodic"},{"event":"cmd_output","timestamp":1607098444,"output":" from module Elixir.Ppl.PplBlocks.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler."},{"event":"cmd_output","timestamp":1607098444,"output":"WaitingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-Wa"},{"event":"cmd_output","timestamp":1607098444,"output":"itingState\"]}, recurring args: %{allowed_states: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 0"},{"event":"cmd_output","timestamp":1607098444,"output":", initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"waiting\", publisher_cb: #Function<0"},{"event":"cmd_output","timestamp":1607098444,"output":".8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :t"},{"event":"cmd_output","timestamp":1607098444,"output":"erminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl"},{"event":"cmd_output","timestamp":1607098444,"output":".PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:04.409 [info] Periodic from m"},{"event":"cmd_output","timestamp":1607098444,"output":"odule Elixir.Ppl.PplBlocks.STMHandler.RunningState with name Elixir.Ppl.PplBlocks.STMHandler.Running"},{"event":"cmd_output","timestamp":1607098444,"output":"State :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningSt"},{"event":"cmd_output","timestamp":1607098444,"output":"ate\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, ini"},{"event":"cmd_output","timestamp":1607098444,"output":"tial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"running\", publisher_cb: #Function<0.2816"},{"event":"cmd_output","timestamp":1607098444,"output":"6834/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :termi"},{"event":"cmd_output","timestamp":1607098444,"output":"nate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], sche"},{"event":"cmd_output","timestamp":1607098444,"output":"ma: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:04.410 [info] Periodic"},{"event":"cmd_output","timestamp":1607098444,"output":" from module Elixir.Ppl.PplBlocks.STMHandler.StoppingState with name Elixir.Ppl.PplBlocks.STMHandler"},{"event":"cmd_output","timestamp":1607098444,"output":".StoppingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-"},{"event":"cmd_output","timestamp":1607098444,"output":"StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, init"},{"event":"cmd_output","timestamp":1607098444,"output":"ial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"stopping\", publisher_cb: #Function<0.1042"},{"event":"cmd_output","timestamp":1607098444,"output":"15991/1 in Ppl.PplBlocks.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :ter"},{"event":"cmd_output","timestamp":1607098444,"output":"minate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], sc"},{"event":"cmd_output","timestamp":1607098444,"output":"hema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:04.410 [info] Period"},{"event":"cmd_output","timestamp":1607098444,"output":"ic from module Elixir.Block.Blocks.STMHandler.InitializingState with name Elixir.Block.Blocks.STMHan"},{"event":"cmd_output","timestamp":1607098444,"output":"dler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHa"},{"event":"cmd_output","timestamp":1607098444,"output":"ndler-InitializingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec:"},{"event":"cmd_output","timestamp":1607098444,"output":" 0, initial_query: Block.Blocks.Model.Blocks, observed_state: \"initializing\", publisher_cb: :skip, r"},{"event":"cmd_output","timestamp":1607098444,"output":"epo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :blo"},{"event":"cmd_output","timestamp":1607098444,"output":"ck_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:04.411 [info] "},{"event":"cmd_output","timestamp":1607098444,"output":"Periodic from module Elixir.Block.Blocks.STMHandler.RunningState with name Elixir.Block.Blocks.STMHa"},{"event":"cmd_output","timestamp":1607098444,"output":"ndler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandle"},{"event":"cmd_output","timestamp":1607098444,"output":"r-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_s"},{"event":"cmd_output","timestamp":1607098444,"output":"ec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"running\", publisher_cb: :skip, re"},{"event":"cmd_output","timestamp":1607098444,"output":"po: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :bloc"},{"event":"cmd_output","timestamp":1607098444,"output":"k_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:04.411 [info] P"},{"event":"cmd_output","timestamp":1607098444,"output":"eriodic from module Elixir.Block.Blocks.STMHandler.StoppingState with name Elixir.Block.Blocks.STMHa"},{"event":"cmd_output","timestamp":1607098444,"output":"ndler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandl"},{"event":"cmd_output","timestamp":1607098444,"output":"er-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, i"},{"event":"cmd_output","timestamp":1607098444,"output":"nitial_query: Block.Blocks.Model.Blocks, observed_state: \"stopping\", publisher_cb: :skip, repo: Bloc"},{"event":"cmd_output","timestamp":1607098444,"output":"k.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], s"},{"event":"cmd_output","timestamp":1607098444,"output":"chema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:04.412 [info] Periodic "},{"event":"cmd_output","timestamp":1607098444,"output":"from module Elixir.Block.Tasks.STMHandler.PendingState with name Elixir.Block.Tasks.STMHandler.Pendi"},{"event":"cmd_output","timestamp":1607098444,"output":"ngState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingSta"},{"event":"cmd_output","timestamp":1607098444,"output":"te\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Bl"},{"event":"cmd_output","timestamp":1607098444,"output":"ock.Tasks.Model.Tasks, observed_state: \"pending\", publisher_cb: :skip, repo: Block.EctoRepo, returni"},{"event":"cmd_output","timestamp":1607098444,"output":"ng: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id, :build_request_id], s"},{"event":"cmd_output","timestamp":1607098444,"output":"chema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:04.412 [info] Periodic fr"},{"event":"cmd_output","timestamp":1607098444,"output":"om module Elixir.Block.Tasks.STMHandler.RunningState with name Elixir.Block.Tasks.STMHandler.Running"},{"event":"cmd_output","timestamp":1607098444,"output":"State :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningState"},{"event":"cmd_output","timestamp":1607098444,"output":"\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initia"},{"event":"cmd_output","timestamp":1607098444,"output":"l_query: Block.Tasks.Model.Tasks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRe"},{"event":"cmd_output","timestamp":1607098444,"output":"po, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: B"},{"event":"cmd_output","timestamp":1607098444,"output":"lock.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:04.413 [info] Periodic from modul"},{"event":"cmd_output","timestamp":1607098444,"output":"e Elixir.Block.Tasks.STMHandler.StoppingState with name Elixir.Block.Tasks.STMHandler.StoppingState "},{"event":"cmd_output","timestamp":1607098444,"output":":: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]}, "},{"event":"cmd_output","timestamp":1607098444,"output":"recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.T"},{"event":"cmd_output","timestamp":1607098444,"output":"asks.Model.Tasks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: "},{"event":"cmd_output","timestamp":1607098444,"output":"[:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Mode"},{"event":"cmd_output","timestamp":1607098444,"output":"l.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:04.416 [info] Request: 'run: %{\"branch_id\" => \"3"},{"event":"cmd_output","timestamp":1607098444,"output":"6594455-2f45-4157-88b7-a19bf15dbd5a\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469\", \"file"},{"event":"cmd_output","timestamp":1607098444,"output":"_name\" => \"malformed.yml\", \"hook_id\" => \"ba7d35a6-364b-11eb-a606-5254005464e2\", \"label\" => \"master\","},{"event":"cmd_output","timestamp":1607098444,"output":" \"organization_id\" => \"6a4e215b-1640-468f-9fbc-4101f5bda4a6\", \"owner\" => \"rt\", \"project_id\" => \"099b"},{"event":"cmd_output","timestamp":1607098444,"output":"5132-8ea3-4729-a9d1-20ab4c55a173\", \"repo_name\" => \"22_skip_block\", \"request_token\" => \"ba7d2c14-364b"},{"event":"cmd_output","timestamp":1607098444,"output":"-11eb-a9d3-5254005464e2\", \"requester_id\" => \"4236e611-924f-4c87-ba72-45f078be764b\", \"service\" => \"lo"},{"event":"cmd_output","timestamp":1607098444,"output":"cal\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"b7d768ed-fbda-4e2f-a"},{"event":"cmd_output","timestamp":1607098444,"output":"b39-f3a2c3cc693f\", \"working_dir\" => \".semaphore/change_in\"}\n\u001b[0m\u001b[22m\n16:14:04.426 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098444,"output":" d0bb9232-10b3-4f06-8bd1-f2c1bbc3c263, type: PplRequests, event: persisted schedule request with req"},{"event":"cmd_output","timestamp":1607098444,"output":"uest_token: ba7d2c14-364b-11eb-a9d3-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQu"},{"event":"cmd_output","timestamp":1607098444,"output":"eries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:14:04.428 [info] ppl_id: d0bb9232-10b3-4f06-8bd1-f2c"},{"event":"cmd_output","timestamp":1607098444,"output":"1bbc3c263, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.P"},{"event":"cmd_output","timestamp":1607098444,"output":"pl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:14:04.432 [info] Project 099b51"},{"event":"cmd_output","timestamp":1607098444,"output":"32-8ea3-4729-a9d1-20ab4c55a173 and branch masterlatest_wf details updated: \"wf_id: b7d768ed-fbda-4e2"},{"event":"cmd_output","timestamp":1607098444,"output":"f-ab39-f3a2c3cc693f, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:14:04.434 [info] Persisted ppl_sub_init for pipel"},{"event":"cmd_output","timestamp":1607098444,"output":"ine with ppl_id: d0bb9232-10b3-4f06-8bd1-f2c1bbc3c263: %Ppl.PplSubInits.Model.PplSubInits{__meta__: "},{"event":"cmd_output","timestamp":1607098444,"output":"#Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, "},{"event":"cmd_output","timestamp":1607098444,"output":"id: 320, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:14:04.432959], pi"},{"event":"cmd_output","timestamp":1607098444,"output":"peline_requests: #Ecto.Association.NotLoaded, ppl_id: "},{"event":"cmd_output","timestamp":1607098444,"output":"\"d0bb9232-10b3-4f06-8bd1-f2c1bbc3c263\", recovery_count: 0, result: nil, result_reason: nil, state: \""},{"event":"cmd_output","timestamp":1607098444,"output":"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:14:04.43"},{"event":"cmd_output","timestamp":1607098444,"output":"2965]}\n\u001b[0m\u001b[22m\n16:14:04.445 [info] ppl_id: d0bb9232-10b3-4f06-8bd1-f2c1bbc3c263, type: PplReque"},{"event":"cmd_output","timestamp":1607098444,"output":"sts, event: persisted source_args for pipeline: d0bb9232-10b3-4f06-8bd1-f2c1bbc3c263, origin: Elixir"},{"event":"cmd_output","timestamp":1607098444,"output":".Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:14:04.447 [info] pp"},{"event":"cmd_output","timestamp":1607098444,"output":"l_id: d0bb9232-10b3-4f06-8bd1-f2c1bbc3c263, type: PplSubInits, state: fetching, event: exit_scheduli"},{"event":"cmd_output","timestamp":1607098444,"output":"ng, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:04"},{"event":"cmd_output","timestamp":1607098444,"output":".473 [info] ppl_id: d0bb9232-10b3-4f06-8bd1-f2c1bbc3c263, type: PplSubInits, state: regular_init, e"},{"event":"cmd_output","timestamp":1607098444,"output":"vent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n"},{"event":"cmd_output","timestamp":1607098444,"output":"\u001b[0m\u001b[22m\n16:14:04.492 [info] ppl_id: d0bb9232-10b3-4f06-8bd1-f2c1bbc3c263, type: PplRequests, eve"},{"event":"cmd_output","timestamp":1607098444,"output":"nt: persisted definition for request with request_token: ba7d2c14-364b-11eb-a9d3-5254005464e2, origi"},{"event":"cmd_output","timestamp":1607098444,"output":"n: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:14:04.4"},{"event":"cmd_output","timestamp":1607098444,"output":"95 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, "},{"event":"cmd_output","timestamp":1607098444,"output":"\"queues\">, inserted_at: ~N[2020-12-04 16:14:04.494117], name: \"master-.semaphore/change_in/malformed"},{"event":"cmd_output","timestamp":1607098444,"output":".yml\", organization_id: \"6a4e215b-1640-468f-9fbc-4101f5bda4a6\", project_id: \"099b5132-8ea3-4729-a9d1"},{"event":"cmd_output","timestamp":1607098444,"output":"-20ab4c55a173\", queue_id: \"0b0ef6f5-f7a6-4883-914f-2951a02eeb6d\", scope: \"project\", updated_at: ~N[2"},{"event":"cmd_output","timestamp":1607098444,"output":"020-12-04 16:14:04.494143], user_generated: false}}\n\u001b[0m\u001b[22m\n16:14:04.498 [info] event: created,"},{"event":"cmd_output","timestamp":1607098444,"output":" origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:04.4"},{"event":"cmd_output","timestamp":1607098444,"output":"98 [info] ppl_id: d0bb9232-10b3-4f06-8bd1-f2c1bbc3c263, type: PplBlocks, block_index: 0, state: ini"},{"event":"cmd_output","timestamp":1607098444,"output":"tializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitS"},{"event":"cmd_output","timestamp":1607098444,"output":"tate.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:04.500 [info] ppl_id: d0bb9232-10b3-4f06-8bd1-f2c1bbc3c263"},{"event":"cmd_output","timestamp":1607098444,"output":", type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098444,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:04.507 [info] ppl_id: d0bb9232-"},{"event":"cmd_output","timestamp":1607098444,"output":"10b3-4f06-8bd1-f2c1bbc3c263, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling"},{"event":"cmd_output","timestamp":1607098444,"output":", recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:04.5"},{"event":"cmd_output","timestamp":1607098444,"output":"08 [info] ppl_id: d0bb9232-10b3-4f06-8bd1-f2c1bbc3c263, type: Ppls, state: pending, event: exit_sch"},{"event":"cmd_output","timestamp":1607098444,"output":"eduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098444,"output":"14:04.521 [info] ppl_id: d0bb9232-10b3-4f06-8bd1-f2c1bbc3c263, type: Ppls, state: queuing, event: e"},{"event":"cmd_output","timestamp":1607098444,"output":"xit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098444,"output":"2m\n16:14:04.529 [info] ppl_id: d0bb9232-10b3-4f06-8bd1-f2c1bbc3c263, type: Ppls, state: running, e"},{"event":"cmd_output","timestamp":1607098444,"output":"vent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n"},{"event":"cmd_output","timestamp":1607098444,"output":"\u001b[0m\u001b[22m\n16:14:04.538 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"d0b"},{"event":"cmd_output","timestamp":1607098444,"output":"b9232-10b3-4f06-8bd1-f2c1bbc3c263\"\n\u001b[0m\u001b[22m\n16:14:04.542 [info] ppl_id: d0bb9232-10b3-4f06-8bd1-"},{"event":"cmd_output","timestamp":1607098444,"output":"f2c1bbc3c263, type: PplBlocks, block_index: 0, state: done, result: failed, event: exit_scheduling, "},{"event":"cmd_output","timestamp":1607098444,"output":"recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:04.555"},{"event":"cmd_output","timestamp":1607098444,"output":" [info] ppl_id: d0bb9232-10b3-4f06-8bd1-f2c1bbc3c263, type: Ppls, state: done, result: failed, even"},{"event":"cmd_output","timestamp":1607098444,"output":"t: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098444,"output":"m\u001b[32m\r * test malformed change_in() causes pipeline to fail with maformed reason (304.1ms)\u001b[0m\n "},{"event":"cmd_output","timestamp":1607098444,"output":"* test when change_in call times out the pipeline gets stuck\u001b[22m\n16:14:04.693 [info] Periodic fro"},{"event":"cmd_output","timestamp":1607098444,"output":"m module Elixir.Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.STMHandler.Initializ"},{"event":"cmd_output","timestamp":1607098444,"output":"ingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Initializing"},{"event":"cmd_output","timestamp":1607098444,"output":"State\"]}, recurring args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], cooling_time_sec: 0"},{"event":"cmd_output","timestamp":1607098444,"output":", initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher_cb: #Function<0.1253"},{"event":"cmd_output","timestamp":1607098444,"output":"26080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :term"},{"event":"cmd_output","timestamp":1607098444,"output":"inate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls,"},{"event":"cmd_output","timestamp":1607098444,"output":" task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:04.693 [info] Periodic from module Elixir.Ppl.Ppls.STMHa"},{"event":"cmd_output","timestamp":1607098444,"output":"ndler.PendingState with name Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 100 ms, metric_name:"},{"event":"cmd_output","timestamp":1607098444,"output":" {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args: %{allowed_states: ["},{"event":"cmd_output","timestamp":1607098444,"output":"\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, o"},{"event":"cmd_output","timestamp":1607098444,"output":"bserved_state: \"pending\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler.PendingState.ar"},{"event":"cmd_output","timestamp":1607098444,"output":"gs/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recov"},{"event":"cmd_output","timestamp":1607098444,"output":"ery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098444,"output":"6:14:04.694 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.QueuingState with name Elixir.Pp"},{"event":"cmd_output","timestamp":1607098444,"output":"l.Ppls.STMHandler.QueuingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-S"},{"event":"cmd_output","timestamp":1607098444,"output":"TMHandler-QueuingState\"]}, recurring args: %{allowed_states: [\"queuing\", \"running\", \"done\"], cooling"},{"event":"cmd_output","timestamp":1607098444,"output":"_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", publisher_cb: #Functio"},{"event":"cmd_output","timestamp":1607098444,"output":"n<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :t"},{"event":"cmd_output","timestamp":1607098444,"output":"erminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Pp"},{"event":"cmd_output","timestamp":1607098444,"output":"ls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:04.694 [info] Periodic from module Elixir.Ppl.Ppls.ST"},{"event":"cmd_output","timestamp":1607098444,"output":"MHandler.RunningState with name Elixir.Ppl.Ppls.STMHandler.RunningState :: period: 100 ms, metric_na"},{"event":"cmd_output","timestamp":1607098444,"output":"me: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring args: %{allowed_states"},{"event":"cmd_output","timestamp":1607098444,"output":": [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observe"},{"event":"cmd_output","timestamp":1607098444,"output":"d_state: \"running\", publisher_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler.RunningState.args/0>"},{"event":"cmd_output","timestamp":1607098444,"output":", repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_c"},{"event":"cmd_output","timestamp":1607098444,"output":"ount, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:14:"},{"event":"cmd_output","timestamp":1607098444,"output":"04.695 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.StoppingState with name Elixir.Ppl.Pp"},{"event":"cmd_output","timestamp":1607098444,"output":"ls.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMH"},{"event":"cmd_output","timestamp":1607098444,"output":"andler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -"},{"event":"cmd_output","timestamp":1607098444,"output":"2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"stopping\", publisher_cb: #Function<0.7180349"},{"event":"cmd_output","timestamp":1607098444,"output":"3/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_re"},{"event":"cmd_output","timestamp":1607098444,"output":"quest, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_su"},{"event":"cmd_output","timestamp":1607098444,"output":"pervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:04.695 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHan"},{"event":"cmd_output","timestamp":1607098444,"output":"dler.CreatedState with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 100 ms, metric"},{"event":"cmd_output","timestamp":1607098444,"output":"_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args: %{allo"},{"event":"cmd_output","timestamp":1607098444,"output":"wed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubIn"},{"event":"cmd_output","timestamp":1607098444,"output":"its, observed_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate"},{"event":"cmd_output","timestamp":1607098444,"output":"_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.Ppl"},{"event":"cmd_output","timestamp":1607098444,"output":"SubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:04.697 [info] Periodic from module Elixir.Ppl.P"},{"event":"cmd_output","timestamp":1607098444,"output":"plSubInits.STMHandler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler.FetchingState :: per"},{"event":"cmd_output","timestamp":1607098444,"output":"iod: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, re"},{"event":"cmd_output","timestamp":1607098444,"output":"curring args: %{allowed_states: [\"regular_init\", \"compilation\", \"done\"], cooling_time_sec: -2, initi"},{"event":"cmd_output","timestamp":1607098444,"output":"al_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fetching\", publisher_cb: :skip, repo: "},{"event":"cmd_output","timestamp":1607098444,"output":"Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :p"},{"event":"cmd_output","timestamp":1607098444,"output":"pl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:04.697 "},{"event":"cmd_output","timestamp":1607098444,"output":"[info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CompilationState with name Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098444,"output":".PplSubInits.STMHandler.CompilationState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\""},{"event":"cmd_output","timestamp":1607098444,"output":"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurring args: %{allowed_states: [\"regular_init\", \""},{"event":"cmd_output","timestamp":1607098444,"output":"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSub"},{"event":"cmd_output","timestamp":1607098444,"output":"Inits, observed_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :ter"},{"event":"cmd_output","timestamp":1607098444,"output":"minate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Mod"},{"event":"cmd_output","timestamp":1607098444,"output":"el.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:04.697 [info] Periodic from module Elixir"},{"event":"cmd_output","timestamp":1607098444,"output":".Ppl.PplSubInits.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHandler.RegularInit"},{"event":"cmd_output","timestamp":1607098444,"output":"State :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularI"},{"event":"cmd_output","timestamp":1607098444,"output":"nitState\"]}, recurring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098444,"output":"SubInits.Model.PplSubInits, observed_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo,"},{"event":"cmd_output","timestamp":1607098444,"output":" returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schem"},{"event":"cmd_output","timestamp":1607098444,"output":"a: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:04.698 [info] Perio"},{"event":"cmd_output","timestamp":1607098444,"output":"dic from module Elixir.Ppl.PplBlocks.STMHandler.InitializingState with name Elixir.Ppl.PplBlocks.STM"},{"event":"cmd_output","timestamp":1607098444,"output":"Handler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-S"},{"event":"cmd_output","timestamp":1607098444,"output":"TMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"waiting\", \"done\""},{"event":"cmd_output","timestamp":1607098444,"output":"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"initializing\""},{"event":"cmd_output","timestamp":1607098444,"output":", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state,"},{"event":"cmd_output","timestamp":1607098444,"output":" :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_super"},{"event":"cmd_output","timestamp":1607098444,"output":"visor: :skip}\n\u001b[0m\u001b[22m\n16:14:04.698 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler."},{"event":"cmd_output","timestamp":1607098444,"output":"WaitingState with name Elixir.Ppl.PplBlocks.STMHandler.WaitingState :: period: 1000 ms, metric_name:"},{"event":"cmd_output","timestamp":1607098444,"output":" {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurring args: %{allowed_stat"},{"event":"cmd_output","timestamp":1607098444,"output":"es: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlock"},{"event":"cmd_output","timestamp":1607098444,"output":"s, observed_state: \"waiting\", publisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.STMHandler.Waitin"},{"event":"cmd_output","timestamp":1607098444,"output":"gState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :resul"},{"event":"cmd_output","timestamp":1607098444,"output":"t, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: "},{"event":"cmd_output","timestamp":1607098444,"output":":skip}\n\u001b[0m\u001b[22m\n16:14:04.698 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.Running"},{"event":"cmd_output","timestamp":1607098444,"output":"State with name Elixir.Ppl.PplBlocks.STMHandler.RunningState :: period: 1000 ms, metric_name: {\"Ppl."},{"event":"cmd_output","timestamp":1607098444,"output":"beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"r"},{"event":"cmd_output","timestamp":1607098444,"output":"unning\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, ob"},{"event":"cmd_output","timestamp":1607098444,"output":"served_state: \"running\", publisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHandler.RunningSta"},{"event":"cmd_output","timestamp":1607098444,"output":"te.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :"},{"event":"cmd_output","timestamp":1607098444,"output":"recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_super"},{"event":"cmd_output","timestamp":1607098444,"output":"visor: :skip}\n\u001b[0m\u001b[22m\n16:14:04.698 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler."},{"event":"cmd_output","timestamp":1607098444,"output":"StoppingState with name Elixir.Ppl.PplBlocks.STMHandler.StoppingState :: period: 1000 ms, metric_nam"},{"event":"cmd_output","timestamp":1607098444,"output":"e: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_s"},{"event":"cmd_output","timestamp":1607098444,"output":"tates: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, obs"},{"event":"cmd_output","timestamp":1607098444,"output":"erved_state: \"stopping\", publisher_cb: #Function<0.104215991/1 in Ppl.PplBlocks.STMHandler.StoppingS"},{"event":"cmd_output","timestamp":1607098444,"output":"tate.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result,"},{"event":"cmd_output","timestamp":1607098444,"output":" :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_sup"},{"event":"cmd_output","timestamp":1607098444,"output":"ervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:04.699 [info] Periodic from module Elixir.Block.Blocks.STMHandler"},{"event":"cmd_output","timestamp":1607098444,"output":".InitializingState with name Elixir.Block.Blocks.STMHandler.InitializingState :: period: 100 ms, met"},{"event":"cmd_output","timestamp":1607098444,"output":"ric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, recurring args: %"},{"event":"cmd_output","timestamp":1607098444,"output":"{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Blocks.Model.Blocks,"},{"event":"cmd_output","timestamp":1607098444,"output":" observed_state: \"initializing\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :termin"},{"event":"cmd_output","timestamp":1607098444,"output":"ate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, ta"},{"event":"cmd_output","timestamp":1607098444,"output":"sk_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:04.699 [info] Periodic from module Elixir.Block.Blocks.STMH"},{"event":"cmd_output","timestamp":1607098444,"output":"andler.RunningState with name Elixir.Block.Blocks.STMHandler.RunningState :: period: 100 ms, metric_"},{"event":"cmd_output","timestamp":1607098444,"output":"name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-RunningState\"]}, recurring args: %{allowed_"},{"event":"cmd_output","timestamp":1607098444,"output":"states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blo"},{"event":"cmd_output","timestamp":1607098444,"output":"cks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :termina"},{"event":"cmd_output","timestamp":1607098444,"output":"te_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, tas"},{"event":"cmd_output","timestamp":1607098444,"output":"k_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:04.699 [info] Periodic from module Elixir.Block.Blocks.STMHa"},{"event":"cmd_output","timestamp":1607098444,"output":"ndler.StoppingState with name Elixir.Block.Blocks.STMHandler.StoppingState :: period: 100 ms, metric"},{"event":"cmd_output","timestamp":1607098444,"output":"_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-StoppingState\"]}, recurring args: %{allowe"},{"event":"cmd_output","timestamp":1607098444,"output":"d_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, obse"},{"event":"cmd_output","timestamp":1607098444,"output":"rved_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_reque"},{"event":"cmd_output","timestamp":1607098444,"output":"st, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_superv"},{"event":"cmd_output","timestamp":1607098444,"output":"isor: :skip}\n\u001b[0m\u001b[22m\n16:14:04.699 [info] Periodic from module Elixir.Block.Tasks.STMHandler.Pen"},{"event":"cmd_output","timestamp":1607098444,"output":"dingState with name Elixir.Block.Tasks.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl"},{"event":"cmd_output","timestamp":1607098444,"output":".beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"ru"},{"event":"cmd_output","timestamp":1607098444,"output":"nning\", \"done\"], cooling_time_sec: 0, initial_query: Block.Tasks.Model.Tasks, observed_state: \"pendi"},{"event":"cmd_output","timestamp":1607098444,"output":"ng\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :s"},{"event":"cmd_output","timestamp":1607098444,"output":"tate, :recovery_count, :block_id, :build_request_id], schema: Block.Tasks.Model.Tasks, task_supervis"},{"event":"cmd_output","timestamp":1607098444,"output":"or: :skip}\n\u001b[0m\u001b[22m\n16:14:04.699 [info] Periodic from module Elixir.Block.Tasks.STMHandler.Runni"},{"event":"cmd_output","timestamp":1607098444,"output":"ngState with name Elixir.Block.Tasks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.b"},{"event":"cmd_output","timestamp":1607098444,"output":"eholder-wake_up\", [\"Block-Tasks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"runn"},{"event":"cmd_output","timestamp":1607098444,"output":"ing\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_st"},{"event":"cmd_output","timestamp":1607098444,"output":"ate: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :upd"},{"event":"cmd_output","timestamp":1607098444,"output":"ated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :ski"},{"event":"cmd_output","timestamp":1607098444,"output":"p}\n\u001b[0m\u001b[22m\n16:14:04.699 [info] Periodic from module Elixir.Block.Tasks.STMHandler.StoppingState"},{"event":"cmd_output","timestamp":1607098444,"output":" with name Elixir.Block.Tasks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholde"},{"event":"cmd_output","timestamp":1607098444,"output":"r-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\""},{"event":"cmd_output","timestamp":1607098444,"output":", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"stopping\","},{"event":"cmd_output","timestamp":1607098444,"output":" publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state"},{"event":"cmd_output","timestamp":1607098444,"output":", :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098444,"output":"16:14:04.702 [info] Periodic from module Elixir.Ppl.PplBlocks.Beholder with name Elixir.Ppl.PplBloc"},{"event":"cmd_output","timestamp":1607098444,"output":"ks.Beholder :: period: 1000 ms, metric_name: {\"Beholder\", [\"Ppl-PplBlocks-Beholder\", \"wake_up\"]}, re"},{"event":"cmd_output","timestamp":1607098444,"output":"curring args: %{callback: #Function<0.22562660/1 in Ppl.PplBlocks.Beholder.args/0>, excluded_states:"},{"event":"cmd_output","timestamp":1607098444,"output":" [\"done\"], id: Ppl.PplBlocks.Beholder, query: Ppl.PplBlocks.Model.PplBlocks, repo: Ppl.EctoRepo, res"},{"event":"cmd_output","timestamp":1607098444,"output":"ult_on_abort: \"failed\", result_reason_on_abort: \"stuck\", terminal_state: \"done\", threshold_count: 2,"},{"event":"cmd_output","timestamp":1607098444,"output":" threshold_sec: -2}\n\u001b[0m\u001b[22m\n16:14:04.704 [info] Request: 'run: %{\"branch_id\" => \"4028fa6b-eea3-"},{"event":"cmd_output","timestamp":1607098444,"output":"4363-a4c2-2f8236bbb916\", \"branch_name\" => \"one_path\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \""},{"event":"cmd_output","timestamp":1607098444,"output":"one_path.yml\", \"hook_id\" => \"baa93142-364b-11eb-b8fa-5254005464e2\", \"label\" => \"one_path\", \"organiza"},{"event":"cmd_output","timestamp":1607098444,"output":"tion_id\" => \"48123111-2d11-46f8-988a-2dae8c1dd2ee\", \"owner\" => \"rt\", \"project_id\" => \"2f31ff24-2e08-"},{"event":"cmd_output","timestamp":1607098444,"output":"4313-bd24-31019eb85eb5\", \"repo_name\" => \"22_skip_block\", \"request_token\" => \"baa928b4-364b-11eb-93b9"},{"event":"cmd_output","timestamp":1607098444,"output":"-5254005464e2\", \"requester_id\" => \"e56934bf-b72f-48f1-bb5f-24952744573a\", \"service\" => \"local\", \"sup"},{"event":"cmd_output","timestamp":1607098444,"output":"pressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"a834aae4-d73f-43ca-830b-c31c43"},{"event":"cmd_output","timestamp":1607098444,"output":"e80cf2\", \"working_dir\" => \".semaphore/change_in\"}\n\u001b[0m\u001b[22m\n16:14:04.711 [info] ppl_id: 313f7712-"},{"event":"cmd_output","timestamp":1607098444,"output":"df83-404c-8a82-9ee948e8845a, type: PplRequests, event: persisted schedule request with request_token"},{"event":"cmd_output","timestamp":1607098444,"output":": baa928b4-364b-11eb-93b9-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.proc"},{"event":"cmd_output","timestamp":1607098444,"output":"ess_response/2(L55), \n\u001b[0m\u001b[22m\n16:14:04.713 [info] ppl_id: 313f7712-df83-404c-8a82-9ee948e8845a,"},{"event":"cmd_output","timestamp":1607098444,"output":" type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Mo"},{"event":"cmd_output","timestamp":1607098444,"output":"del.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:14:04.717 [info] Project 2f31ff24-2e08-43"},{"event":"cmd_output","timestamp":1607098444,"output":"13-bd24-31019eb85eb5 and branch one_pathlatest_wf details updated: \"wf_id: a834aae4-d73f-43ca-830b-c"},{"event":"cmd_output","timestamp":1607098444,"output":"31c43e80cf2, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:14:04.718 [info] Persisted ppl_sub_init for pipeline with"},{"event":"cmd_output","timestamp":1607098444,"output":" ppl_id: 313f7712-df83-404c-8a82-9ee948e8845a: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Sc"},{"event":"cmd_output","timestamp":1607098444,"output":"hema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 321,"},{"event":"cmd_output","timestamp":1607098444,"output":" in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:14:04.717211], pipeline_r"},{"event":"cmd_output","timestamp":1607098444,"output":"equests: #Ecto.Association.NotLoaded, ppl_id: \"313f771"},{"event":"cmd_output","timestamp":1607098444,"output":"2-df83-404c-8a82-9ee948e8845a\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\""},{"event":"cmd_output","timestamp":1607098444,"output":", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:14:04.717217]}\n"},{"event":"cmd_output","timestamp":1607098444,"output":"\u001b[0m\u001b[22m\n16:14:04.727 [info] ppl_id: 313f7712-df83-404c-8a82-9ee948e8845a, type: PplRequests, eve"},{"event":"cmd_output","timestamp":1607098444,"output":"nt: persisted source_args for pipeline: 313f7712-df83-404c-8a82-9ee948e8845a, origin: Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098444,"output":"Requests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:14:04.729 [info] ppl_id: 31"},{"event":"cmd_output","timestamp":1607098444,"output":"3f7712-df83-404c-8a82-9ee948e8845a, type: PplSubInits, state: fetching, event: exit_scheduling, reco"},{"event":"cmd_output","timestamp":1607098444,"output":"very_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:04.748 [in"},{"event":"cmd_output","timestamp":1607098444,"output":"fo] ppl_id: 313f7712-df83-404c-8a82-9ee948e8845a, type: PplSubInits, state: regular_init, event: ex"},{"event":"cmd_output","timestamp":1607098444,"output":"it_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098444,"output":"m\n16:14:04.764 [info] ppl_id: 313f7712-df83-404c-8a82-9ee948e8845a, type: PplRequests, event: pers"},{"event":"cmd_output","timestamp":1607098444,"output":"isted definition for request with request_token: baa928b4-364b-11eb-93b9-5254005464e2, origin: Elixi"},{"event":"cmd_output","timestamp":1607098444,"output":"r.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:14:04.766 [info"},{"event":"cmd_output","timestamp":1607098444,"output":"] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\""},{"event":"cmd_output","timestamp":1607098444,"output":">, inserted_at: ~N[2020-12-04 16:14:04.765734], name: \"one_path-.semaphore/change_in/one_path.yml\", "},{"event":"cmd_output","timestamp":1607098444,"output":"organization_id: \"48123111-2d11-46f8-988a-2dae8c1dd2ee\", project_id: \"2f31ff24-2e08-4313-bd24-31019e"},{"event":"cmd_output","timestamp":1607098444,"output":"b85eb5\", queue_id: \"66d19499-7e6e-4052-a20b-f8b8fb2cf28c\", scope: \"project\", updated_at: ~N[2020-12-"},{"event":"cmd_output","timestamp":1607098444,"output":"04 16:14:04.765743], user_generated: false}}\n\u001b[0m\u001b[22m\n16:14:04.778 [info] event: created, origin"},{"event":"cmd_output","timestamp":1607098444,"output":": Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:04.778 [inf"},{"event":"cmd_output","timestamp":1607098444,"output":"o] ppl_id: 313f7712-df83-404c-8a82-9ee948e8845a, type: PplBlocks, block_index: 0, state: initializi"},{"event":"cmd_output","timestamp":1607098444,"output":"ng, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.al"},{"event":"cmd_output","timestamp":1607098444,"output":"l_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:04.779 [info] ppl_id: 313f7712-df83-404c-8a82-9ee948e8845a, type:"},{"event":"cmd_output","timestamp":1607098444,"output":" PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098444,"output":".Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:04.787 [info] ppl_id: 313f7712-df83-40"},{"event":"cmd_output","timestamp":1607098444,"output":"4c-8a82-9ee948e8845a, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098444,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:04.791 [info] ppl_id: 313f7712-"},{"event":"cmd_output","timestamp":1607098444,"output":"df83-404c-8a82-9ee948e8845a, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling"},{"event":"cmd_output","timestamp":1607098444,"output":", recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:04.7"},{"event":"cmd_output","timestamp":1607098444,"output":"94 [info] ppl_id: 313f7712-df83-404c-8a82-9ee948e8845a, type: Ppls, state: queuing, event: exit_sch"},{"event":"cmd_output","timestamp":1607098444,"output":"eduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098444,"output":"14:04.809 [info] ppl_id: 313f7712-df83-404c-8a82-9ee948e8845a, type: Ppls, state: running, event: e"},{"event":"cmd_output","timestamp":1607098444,"output":"xit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098444,"output":"2m\n16:14:04.818 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"313f7712-d"},{"event":"cmd_output","timestamp":1607098445,"output":"f83-404c-8a82-9ee948e8845a\"\n\u001b[0m\u001b[33m\n16:14:05.705 [warn] ppl_id: 313f7712-df83-404c-8a82-9ee948e"},{"event":"cmd_output","timestamp":1607098445,"output":"8845a, type: PplBlocks, block_index: 0, state: waiting, event: stuck item recovered, recovery_count:"},{"event":"cmd_output","timestamp":1607098447,"output":" 1, origin: Elixir.Looper.Beholder.Impl.log/2(L88), \n\u001b[0m\u001b[33m\n16:14:07.821 [warn] Elixir.Wormhol"},{"event":"cmd_output","timestamp":1607098447,"output":"e{#PID<0.2284.2>}:: callback: {Block.RepoHubClient, :get_repo_id_, [\"2f31ff24-2e08-4313-bd24-31019eb"},{"event":"cmd_output","timestamp":1607098447,"output":"85eb5\"]}; reason: {:timeout, 3000}\n\u001b[0m\u001b[33m\n16:14:07.821 [warn] PplBlocks WaitingState STM error"},{"event":"cmd_output","timestamp":1607098447,"output":": \"{:timeout, \\\"Function 'change_in' returned error: 3000\\\"}\"\n\u001b[0m\u001b[31m\n16:14:07.823 [error] ppl_i"},{"event":"cmd_output","timestamp":1607098447,"output":"d: not_available, event: exit_scheduling, context: {:error, :user_exit_function, %{error_description"},{"event":"cmd_output","timestamp":1607098447,"output":": \"{:timeout, \\\"Function 'change_in' returned error: 3000\\\"}\"}, %{item: %Ppl.PplBlocks.Model.PplBloc"},{"event":"cmd_output","timestamp":1607098447,"output":"ks{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_blocks\">, block_id: nil, block_index: 0, conne"},{"event":"cmd_output","timestamp":1607098447,"output":"ctions: #Ecto.Association.NotLoaded, duplicate: false, error"},{"event":"cmd_output","timestamp":1607098447,"output":"_description: nil, exec_time_limit_min: nil, id: 410, in_scheduling: true, inserted_at: ~N[2020-12-0"},{"event":"cmd_output","timestamp":1607098447,"output":"4 16:14:04.776757], name: \"Block 1\", pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"313f7712-df83-404c-8a82-9ee948e8845a\", priority: nil, recove"},{"event":"cmd_output","timestamp":1607098447,"output":"ry_count: 0, result: nil, result_reason: nil, state: \"waiting\", terminate_request: nil, terminate_re"},{"event":"cmd_output","timestamp":1607098447,"output":"quest_desc: nil, updated_at: ~N[2020-12-04 16:14:04.812256]}}}, origin: Elixir.Looper.STM.Impl.log_s"},{"event":"cmd_output","timestamp":1607098447,"output":"tate_change/1(L96), \n\u001b[0m\u001b[31m\n16:14:07.823 [error] STM Elixir.Ppl.PplBlocks.STMHandler.WaitingSta"},{"event":"cmd_output","timestamp":1607098447,"output":"te FAILED: {:error, :user_exit_function, %{error_description: \"{:timeout, \\\"Function 'change_in' ret"},{"event":"cmd_output","timestamp":1607098447,"output":"urned error: 3000\\\"}\"}, %{item: %Ppl.PplBlocks.Model.PplBlocks{__meta__: #Ecto.Schema.Metadata<:load"},{"event":"cmd_output","timestamp":1607098447,"output":"ed, \"pipeline_blocks\">, block_id: nil, block_index: 0, connections: #Ecto.Association.NotLoaded, duplicate: false, error_description: nil, exec_time_limit_min: "},{"event":"cmd_output","timestamp":1607098447,"output":"nil, id: 410, in_scheduling: true, inserted_at: ~N[2020-12-04 16:14:04.776757], name: \"Block 1\", pip"},{"event":"cmd_output","timestamp":1607098447,"output":"eline_requests: #Ecto.Association.NotLoaded, ppl_id: \""},{"event":"cmd_output","timestamp":1607098447,"output":"313f7712-df83-404c-8a82-9ee948e8845a\", priority: nil, recovery_count: 0, result: nil, result_reason:"},{"event":"cmd_output","timestamp":1607098447,"output":" nil, state: \"waiting\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-"},{"event":"cmd_output","timestamp":1607098447,"output":"04 16:14:04.812256]}}}\n\u001b[0m\u001b[22m\n16:14:07.828 [info] PplBlocks WaitingState STM is scheduling blo"},{"event":"cmd_output","timestamp":1607098448,"output":"ck 0 from pipeline: \"313f7712-df83-404c-8a82-9ee948e8845a\"\n\u001b[0m\u001b[33m\n16:14:08.724 [warn] ppl_id: "},{"event":"cmd_output","timestamp":1607098448,"output":"313f7712-df83-404c-8a82-9ee948e8845a, type: PplBlocks, block_index: 0, state: waiting, event: stuck "},{"event":"cmd_output","timestamp":1607098450,"output":"item recovered, recovery_count: 2, origin: Elixir.Looper.Beholder.Impl.log/2(L88), \n\u001b[0m\u001b[33m\n16:1"},{"event":"cmd_output","timestamp":1607098450,"output":"4:10.834 [warn] Elixir.Wormhole{#PID<0.3235.2>}:: callback: {Block.RepoHubClient, :get_repo_id_, [\""},{"event":"cmd_output","timestamp":1607098450,"output":"2f31ff24-2e08-4313-bd24-31019eb85eb5\"]}; reason: {:timeout, 3000}\n\u001b[0m\u001b[33m\n16:14:10.834 [warn] P"},{"event":"cmd_output","timestamp":1607098450,"output":"plBlocks WaitingState STM error: \"{:timeout, \\\"Function 'change_in' returned error: 3000\\\"}\"\n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098450,"output":"31m\n16:14:10.836 [error] ppl_id: not_available, event: exit_scheduling, context: {:error, :user_exi"},{"event":"cmd_output","timestamp":1607098450,"output":"t_function, %{error_description: \"{:timeout, \\\"Function 'change_in' returned error: 3000\\\"}\"}, %{ite"},{"event":"cmd_output","timestamp":1607098450,"output":"m: %Ppl.PplBlocks.Model.PplBlocks{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_blocks\">, block"},{"event":"cmd_output","timestamp":1607098450,"output":"_id: nil, block_index: 0, connections: #Ecto.Association.NotLoaded, duplicate: false, error_description: nil, exec_time_limit_min: nil, id: 410, in_scheduling: "},{"event":"cmd_output","timestamp":1607098450,"output":"true, inserted_at: ~N[2020-12-04 16:14:04.776757], name: \"Block 1\", pipeline_requests: #Ecto.Associa"},{"event":"cmd_output","timestamp":1607098450,"output":"tion.NotLoaded, ppl_id: \"313f7712-df83-404c-8a82-9ee94"},{"event":"cmd_output","timestamp":1607098450,"output":"8e8845a\", priority: nil, recovery_count: 1, result: nil, result_reason: nil, state: \"waiting\", termi"},{"event":"cmd_output","timestamp":1607098450,"output":"nate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:14:07.824683]}}}, origi"},{"event":"cmd_output","timestamp":1607098450,"output":"n: Elixir.Looper.STM.Impl.log_state_change/1(L96), \n\u001b[0m\u001b[31m\n16:14:10.836 [error] STM Elixir.Ppl."},{"event":"cmd_output","timestamp":1607098450,"output":"PplBlocks.STMHandler.WaitingState FAILED: {:error, :user_exit_function, %{error_description: \"{:time"},{"event":"cmd_output","timestamp":1607098450,"output":"out, \\\"Function 'change_in' returned error: 3000\\\"}\"}, %{item: %Ppl.PplBlocks.Model.PplBlocks{__meta"},{"event":"cmd_output","timestamp":1607098450,"output":"__: #Ecto.Schema.Metadata<:loaded, \"pipeline_blocks\">, block_id: nil, block_index: 0, connections: #"},{"event":"cmd_output","timestamp":1607098450,"output":"Ecto.Association.NotLoaded, duplicate: false, error_descript"},{"event":"cmd_output","timestamp":1607098450,"output":"ion: nil, exec_time_limit_min: nil, id: 410, in_scheduling: true, inserted_at: ~N[2020-12-04 16:14:0"},{"event":"cmd_output","timestamp":1607098450,"output":"4.776757], name: \"Block 1\", pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"313f7712-df83-404c-8a82-9ee948e8845a\", priority: nil, recovery_count:"},{"event":"cmd_output","timestamp":1607098450,"output":" 1, result: nil, result_reason: nil, state: \"waiting\", terminate_request: nil, terminate_request_des"},{"event":"cmd_output","timestamp":1607098451,"output":"c: nil, updated_at: ~N[2020-12-04 16:14:07.824683]}}}\n\u001b[0m\u001b[22m\n16:14:11.846 [info] PplBlocks Wai"},{"event":"cmd_output","timestamp":1607098452,"output":"tingState STM is scheduling block 0 from pipeline: \"313f7712-df83-404c-8a82-9ee948e8845a\"\n\u001b[0m\u001b[33m"},{"event":"cmd_output","timestamp":1607098452,"output":"\n16:14:12.734 [warn] ppl_id: 313f7712-df83-404c-8a82-9ee948e8845a, type: PplBlocks, block_index: 0"},{"event":"cmd_output","timestamp":1607098452,"output":", state: done, result: failed, result_reason: stuck, event: stuck item aborted, recovery_count: 2, o"},{"event":"cmd_output","timestamp":1607098452,"output":"rigin: Elixir.Looper.Beholder.Impl.log/2(L88), \n\u001b[0m\u001b[22m\n16:14:12.748 [info] ppl_id: 313f7712-df"},{"event":"cmd_output","timestamp":1607098452,"output":"83-404c-8a82-9ee948e8845a, type: Ppls, state: done, result: failed, event: exit_scheduling, recovery"},{"event":"cmd_output","timestamp":1607098454,"output":"_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[33m\n16:14:14.850 [warn] "},{"event":"cmd_output","timestamp":1607098454,"output":" Elixir.Wormhole{#PID<0.4532.2>}:: callback: {Block.RepoHubClient, :get_repo_id_, [\"2f31ff24-2e08-43"},{"event":"cmd_output","timestamp":1607098454,"output":"13-bd24-31019eb85eb5\"]}; reason: {:timeout, 3000}\n\u001b[0m\u001b[33m\n16:14:14.850 [warn] PplBlocks Waiting"},{"event":"cmd_output","timestamp":1607098454,"output":"State STM error: \"{:timeout, \\\"Function 'change_in' returned error: 3000\\\"}\"\n\u001b[0m\u001b[31m\n16:14:14.85"},{"event":"cmd_output","timestamp":1607098454,"output":"2 [error] ppl_id: not_available, event: exit_scheduling, context: {:error, :user_exit_function, %{er"},{"event":"cmd_output","timestamp":1607098454,"output":"ror_description: \"{:timeout, \\\"Function 'change_in' returned error: 3000\\\"}\"}, %{item: %Ppl.PplBlock"},{"event":"cmd_output","timestamp":1607098454,"output":"s.Model.PplBlocks{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_blocks\">, block_id: nil, block_"},{"event":"cmd_output","timestamp":1607098454,"output":"index: 0, connections: #Ecto.Association.NotLoaded, duplicat"},{"event":"cmd_output","timestamp":1607098454,"output":"e: false, error_description: nil, exec_time_limit_min: nil, id: 410, in_scheduling: true, inserted_a"},{"event":"cmd_output","timestamp":1607098454,"output":"t: ~N[2020-12-04 16:14:04.776757], name: \"Block 1\", pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"313f7712-df83-404c-8a82-9ee948e8845a\", priori"},{"event":"cmd_output","timestamp":1607098454,"output":"ty: nil, recovery_count: 2, result: nil, result_reason: nil, state: \"waiting\", terminate_request: ni"},{"event":"cmd_output","timestamp":1607098454,"output":"l, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:14:11.836958]}}}, origin: Elixir.Looper"},{"event":"cmd_output","timestamp":1607098454,"output":".STM.Impl.log_state_change/1(L96), \n\u001b[0m\u001b[31m\n16:14:14.853 [error] STM Elixir.Ppl.PplBlocks.STMHan"},{"event":"cmd_output","timestamp":1607098454,"output":"dler.WaitingState FAILED: {:error, :user_exit_function, %{error_description: \"{:timeout, \\\"Function "},{"event":"cmd_output","timestamp":1607098454,"output":"'change_in' returned error: 3000\\\"}\"}, %{item: %Ppl.PplBlocks.Model.PplBlocks{__meta__: #Ecto.Schema"},{"event":"cmd_output","timestamp":1607098454,"output":".Metadata<:loaded, \"pipeline_blocks\">, block_id: nil, block_index: 0, connections: #Ecto.Association"},{"event":"cmd_output","timestamp":1607098454,"output":".NotLoaded, duplicate: false, error_description: nil, exec_t"},{"event":"cmd_output","timestamp":1607098454,"output":"ime_limit_min: nil, id: 410, in_scheduling: true, inserted_at: ~N[2020-12-04 16:14:04.776757], name:"},{"event":"cmd_output","timestamp":1607098454,"output":" \"Block 1\", pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"313f7712-df83-404c-8a82-9ee948e8845a\", priority: nil, recovery_count: 2, result: nil,"},{"event":"cmd_output","timestamp":1607098454,"output":" result_reason: nil, state: \"waiting\", terminate_request: nil, terminate_request_desc: nil, updated_"},{"event":"cmd_output","timestamp":1607098454,"output":"at: ~N[2020-12-04 16:14:11.836958]}}}\n\u001b[0m\u001b[32m\r * test when change_in call times out the pipeline"},{"event":"cmd_output","timestamp":1607098454,"output":" gets stuck (10208.0ms)\u001b[0m\n * test change_in with list of strings as first param is processed cor"},{"event":"cmd_output","timestamp":1607098454,"output":"rectly\u001b[22m\n16:14:14.905 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingState "},{"event":"cmd_output","timestamp":1607098454,"output":"with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholde"},{"event":"cmd_output","timestamp":1607098454,"output":"r-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initiali"},{"event":"cmd_output","timestamp":1607098454,"output":"zing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: "},{"event":"cmd_output","timestamp":1607098454,"output":"\"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/"},{"event":"cmd_output","timestamp":1607098454,"output":"0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery"},{"event":"cmd_output","timestamp":1607098454,"output":"_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:14.906 [inf"},{"event":"cmd_output","timestamp":1607098454,"output":"o] Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandle"},{"event":"cmd_output","timestamp":1607098454,"output":"r.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Pendin"},{"event":"cmd_output","timestamp":1607098454,"output":"gState\"]}, recurring args: %{allowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time"},{"event":"cmd_output","timestamp":1607098454,"output":"_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publisher_cb: #Function<0.84"},{"event":"cmd_output","timestamp":1607098454,"output":"93005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate"},{"event":"cmd_output","timestamp":1607098454,"output":"_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task"},{"event":"cmd_output","timestamp":1607098454,"output":"_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:14:14.907 [info] Periodic from module Elixir.Ppl.Pp"},{"event":"cmd_output","timestamp":1607098454,"output":"ls.STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, metr"},{"event":"cmd_output","timestamp":1607098454,"output":"ic_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{allowed_s"},{"event":"cmd_output","timestamp":1607098454,"output":"tates: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, obs"},{"event":"cmd_output","timestamp":1607098454,"output":"erved_state: \"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.ar"},{"event":"cmd_output","timestamp":1607098454,"output":"gs/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recov"},{"event":"cmd_output","timestamp":1607098454,"output":"ery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:14.908 ["},{"event":"cmd_output","timestamp":1607098454,"output":"info] Periodic from module Elixir.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHan"},{"event":"cmd_output","timestamp":1607098454,"output":"dler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Run"},{"event":"cmd_output","timestamp":1607098454,"output":"ningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -"},{"event":"cmd_output","timestamp":1607098454,"output":"2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"running\", publisher_cb: #Function<0.74670282"},{"event":"cmd_output","timestamp":1607098454,"output":"/1 in Ppl.Ppls.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_requ"},{"event":"cmd_output","timestamp":1607098454,"output":"est, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supe"},{"event":"cmd_output","timestamp":1607098454,"output":"rvisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:14:14.908 [info] Periodic from module Elixir.Ppl.Ppls.ST"},{"event":"cmd_output","timestamp":1607098454,"output":"MHandler.StoppingState with name Elixir.Ppl.Ppls.STMHandler.StoppingState :: period: 100 ms, metric_"},{"event":"cmd_output","timestamp":1607098454,"output":"name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring args: %{allowed_sta"},{"event":"cmd_output","timestamp":1607098454,"output":"tes: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state:"},{"event":"cmd_output","timestamp":1607098454,"output":" \"stopping\", publisher_cb: #Function<0.71803493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, repo"},{"event":"cmd_output","timestamp":1607098454,"output":": Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, "},{"event":"cmd_output","timestamp":1607098454,"output":":ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:14.909 [info] Peri"},{"event":"cmd_output","timestamp":1607098454,"output":"odic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STM"},{"event":"cmd_output","timestamp":1607098454,"output":"Handler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMH"},{"event":"cmd_output","timestamp":1607098454,"output":"andler-CreatedState\"]}, recurring args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0,"},{"event":"cmd_output","timestamp":1607098454,"output":" initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip, r"},{"event":"cmd_output","timestamp":1607098454,"output":"epo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_coun"},{"event":"cmd_output","timestamp":1607098454,"output":"t, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:14"},{"event":"cmd_output","timestamp":1607098454,"output":".910 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.P"},{"event":"cmd_output","timestamp":1607098454,"output":"pl.PplSubInits.STMHandler.FetchingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"P"},{"event":"cmd_output","timestamp":1607098454,"output":"pl-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"comp"},{"event":"cmd_output","timestamp":1607098454,"output":"ilation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_"},{"event":"cmd_output","timestamp":1607098454,"output":"state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :up"},{"event":"cmd_output","timestamp":1607098454,"output":"dated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, tas"},{"event":"cmd_output","timestamp":1607098454,"output":"k_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:14.911 [info] Periodic from module Elixir.Ppl.PplSubInits.ST"},{"event":"cmd_output","timestamp":1607098454,"output":"MHandler.CompilationState with name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 10"},{"event":"cmd_output","timestamp":1607098454,"output":"0 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurr"},{"event":"cmd_output","timestamp":1607098454,"output":"ing args: %{allowed_states: [\"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -"},{"event":"cmd_output","timestamp":1607098454,"output":"2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"compilation\", publisher_cb: :s"},{"event":"cmd_output","timestamp":1607098454,"output":"kip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recover"},{"event":"cmd_output","timestamp":1607098454,"output":"y_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098454,"output":":14:14.912 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with name"},{"event":"cmd_output","timestamp":1607098454,"output":" Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-w"},{"event":"cmd_output","timestamp":1607098454,"output":"ake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurring args: %{allowed_states: [\"done\""},{"event":"cmd_output","timestamp":1607098454,"output":"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_i"},{"event":"cmd_output","timestamp":1607098454,"output":"nit\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :st"},{"event":"cmd_output","timestamp":1607098454,"output":"ate, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor:"},{"event":"cmd_output","timestamp":1607098454,"output":" :skip}\n\u001b[0m\u001b[22m\n16:14:14.913 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.Initia"},{"event":"cmd_output","timestamp":1607098454,"output":"lizingState with name Elixir.Ppl.PplBlocks.STMHandler.InitializingState :: period: 100 ms, metric_na"},{"event":"cmd_output","timestamp":1607098454,"output":"me: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-InitializingState\"]}, recurring args: %{allo"},{"event":"cmd_output","timestamp":1607098454,"output":"wed_states: [\"initializing\", \"waiting\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.M"},{"event":"cmd_output","timestamp":1607098454,"output":"odel.PplBlocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: "},{"event":"cmd_output","timestamp":1607098454,"output":"[:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], sch"},{"event":"cmd_output","timestamp":1607098454,"output":"ema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:14.913 [info] Periodi"},{"event":"cmd_output","timestamp":1607098454,"output":"c from module Elixir.Ppl.PplBlocks.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler"},{"event":"cmd_output","timestamp":1607098454,"output":".WaitingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-W"},{"event":"cmd_output","timestamp":1607098454,"output":"aitingState\"]}, recurring args: %{allowed_states: [\"waiting\", \"running\", \"done\"], cooling_time_sec: "},{"event":"cmd_output","timestamp":1607098454,"output":"0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"waiting\", publisher_cb: #Function<"},{"event":"cmd_output","timestamp":1607098454,"output":"0.8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :"},{"event":"cmd_output","timestamp":1607098454,"output":"terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Pp"},{"event":"cmd_output","timestamp":1607098454,"output":"l.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:14.914 [info] Periodic from "},{"event":"cmd_output","timestamp":1607098454,"output":"module Elixir.Ppl.PplBlocks.STMHandler.RunningState with name Elixir.Ppl.PplBlocks.STMHandler.Runnin"},{"event":"cmd_output","timestamp":1607098454,"output":"gState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningS"},{"event":"cmd_output","timestamp":1607098454,"output":"tate\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, in"},{"event":"cmd_output","timestamp":1607098454,"output":"itial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"running\", publisher_cb: #Function<0.281"},{"event":"cmd_output","timestamp":1607098454,"output":"66834/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :term"},{"event":"cmd_output","timestamp":1607098454,"output":"inate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], sch"},{"event":"cmd_output","timestamp":1607098454,"output":"ema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:14.915 [info] Periodi"},{"event":"cmd_output","timestamp":1607098454,"output":"c from module Elixir.Ppl.PplBlocks.STMHandler.StoppingState with name Elixir.Ppl.PplBlocks.STMHandle"},{"event":"cmd_output","timestamp":1607098454,"output":"r.StoppingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler"},{"event":"cmd_output","timestamp":1607098454,"output":"-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, ini"},{"event":"cmd_output","timestamp":1607098454,"output":"tial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"stopping\", publisher_cb: #Function<0.104"},{"event":"cmd_output","timestamp":1607098454,"output":"215991/1 in Ppl.PplBlocks.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :te"},{"event":"cmd_output","timestamp":1607098454,"output":"rminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], s"},{"event":"cmd_output","timestamp":1607098454,"output":"chema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:14.916 [info] Perio"},{"event":"cmd_output","timestamp":1607098454,"output":"dic from module Elixir.Block.Blocks.STMHandler.InitializingState with name Elixir.Block.Blocks.STMHa"},{"event":"cmd_output","timestamp":1607098454,"output":"ndler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMH"},{"event":"cmd_output","timestamp":1607098454,"output":"andler-InitializingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec"},{"event":"cmd_output","timestamp":1607098454,"output":": 0, initial_query: Block.Blocks.Model.Blocks, observed_state: \"initializing\", publisher_cb: :skip, "},{"event":"cmd_output","timestamp":1607098454,"output":"repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :bl"},{"event":"cmd_output","timestamp":1607098454,"output":"ock_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:14.916 [info] "},{"event":"cmd_output","timestamp":1607098454,"output":" Periodic from module Elixir.Block.Blocks.STMHandler.RunningState with name Elixir.Block.Blocks.STMH"},{"event":"cmd_output","timestamp":1607098454,"output":"andler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandl"},{"event":"cmd_output","timestamp":1607098454,"output":"er-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_"},{"event":"cmd_output","timestamp":1607098454,"output":"sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"running\", publisher_cb: :skip, r"},{"event":"cmd_output","timestamp":1607098454,"output":"epo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :blo"},{"event":"cmd_output","timestamp":1607098454,"output":"ck_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:14.917 [info] "},{"event":"cmd_output","timestamp":1607098454,"output":"Periodic from module Elixir.Block.Blocks.STMHandler.StoppingState with name Elixir.Block.Blocks.STMH"},{"event":"cmd_output","timestamp":1607098454,"output":"andler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHand"},{"event":"cmd_output","timestamp":1607098454,"output":"ler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, "},{"event":"cmd_output","timestamp":1607098454,"output":"initial_query: Block.Blocks.Model.Blocks, observed_state: \"stopping\", publisher_cb: :skip, repo: Blo"},{"event":"cmd_output","timestamp":1607098454,"output":"ck.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], "},{"event":"cmd_output","timestamp":1607098454,"output":"schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:14.918 [info] Periodic"},{"event":"cmd_output","timestamp":1607098454,"output":" from module Elixir.Block.Tasks.STMHandler.PendingState with name Elixir.Block.Tasks.STMHandler.Pend"},{"event":"cmd_output","timestamp":1607098454,"output":"ingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingSt"},{"event":"cmd_output","timestamp":1607098454,"output":"ate\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: B"},{"event":"cmd_output","timestamp":1607098454,"output":"lock.Tasks.Model.Tasks, observed_state: \"pending\", publisher_cb: :skip, repo: Block.EctoRepo, return"},{"event":"cmd_output","timestamp":1607098454,"output":"ing: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id, :build_request_id], "},{"event":"cmd_output","timestamp":1607098454,"output":"schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:14.918 [info] Periodic f"},{"event":"cmd_output","timestamp":1607098454,"output":"rom module Elixir.Block.Tasks.STMHandler.RunningState with name Elixir.Block.Tasks.STMHandler.Runnin"},{"event":"cmd_output","timestamp":1607098454,"output":"gState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningStat"},{"event":"cmd_output","timestamp":1607098454,"output":"e\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initi"},{"event":"cmd_output","timestamp":1607098454,"output":"al_query: Block.Tasks.Model.Tasks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoR"},{"event":"cmd_output","timestamp":1607098454,"output":"epo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: "},{"event":"cmd_output","timestamp":1607098454,"output":"Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:14.919 [info] Periodic from modu"},{"event":"cmd_output","timestamp":1607098454,"output":"le Elixir.Block.Tasks.STMHandler.StoppingState with name Elixir.Block.Tasks.STMHandler.StoppingState"},{"event":"cmd_output","timestamp":1607098454,"output":" :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]},"},{"event":"cmd_output","timestamp":1607098454,"output":" recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block."},{"event":"cmd_output","timestamp":1607098454,"output":"Tasks.Model.Tasks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning:"},{"event":"cmd_output","timestamp":1607098454,"output":" [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Mod"},{"event":"cmd_output","timestamp":1607098454,"output":"el.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:14.922 [info] Request: 'run: %{\"branch_id\" => \""},{"event":"cmd_output","timestamp":1607098454,"output":"953bf8e4-6aa2-458c-b780-ecb9fe9c5ae5\", \"branch_name\" => \"list_of_paths\", \"commit_sha\" => \"75891a4469"},{"event":"cmd_output","timestamp":1607098454,"output":"\", \"file_name\" => \"list_of_paths.yml\", \"hook_id\" => \"c0c0397c-364b-11eb-b81d-5254005464e2\", \"label\" "},{"event":"cmd_output","timestamp":1607098454,"output":"=> \"list_of_paths\", \"organization_id\" => \"4ed669f4-e342-4482-a088-c72ab3be1997\", \"owner\" => \"rt\", \"p"},{"event":"cmd_output","timestamp":1607098454,"output":"roject_id\" => \"ead9dee1-b9bc-43fe-ae4a-c9fda7489052\", \"repo_name\" => \"22_skip_block\", \"request_token"},{"event":"cmd_output","timestamp":1607098454,"output":"\" => \"c0c0310c-364b-11eb-9ed9-5254005464e2\", \"requester_id\" => \"106142fe-dcb4-42dc-91a2-dc369a50e41c"},{"event":"cmd_output","timestamp":1607098454,"output":"\", \"service\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"5"},{"event":"cmd_output","timestamp":1607098454,"output":"564a3a3-5bb4-489e-b649-3ec9224cd38c\", \"working_dir\" => \".semaphore/change_in\"}\n\u001b[0m\u001b[22m\n16:14:14."},{"event":"cmd_output","timestamp":1607098454,"output":"930 [info] ppl_id: b3360249-9900-4cb6-840f-c9971e4d862f, type: PplRequests, event: persisted schedu"},{"event":"cmd_output","timestamp":1607098454,"output":"le request with request_token: c0c0310c-364b-11eb-9ed9-5254005464e2, origin: Elixir.Ppl.PplRequests."},{"event":"cmd_output","timestamp":1607098454,"output":"Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:14:14.933 [info] ppl_id: b3360249"},{"event":"cmd_output","timestamp":1607098454,"output":"-9900-4cb6-840f-c9971e4d862f, type: Ppls, state: initializing, event: initializing, recovery_count: "},{"event":"cmd_output","timestamp":1607098454,"output":"0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:14:14.937 [in"},{"event":"cmd_output","timestamp":1607098454,"output":"fo] Project ead9dee1-b9bc-43fe-ae4a-c9fda7489052 and branch list_of_pathslatest_wf details updated:"},{"event":"cmd_output","timestamp":1607098454,"output":" \"wf_id: 5564a3a3-5bb4-489e-b649-3ec9224cd38c, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:14:14.939 [info] Persis"},{"event":"cmd_output","timestamp":1607098454,"output":"ted ppl_sub_init for pipeline with ppl_id: b3360249-9900-4cb6-840f-c9971e4d862f: %Ppl.PplSubInits.Mo"},{"event":"cmd_output","timestamp":1607098454,"output":"del.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil"},{"event":"cmd_output","timestamp":1607098454,"output":", error_description: nil, id: 322, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-"},{"event":"cmd_output","timestamp":1607098454,"output":"12-04 16:14:14.937526], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"b3360249-9900-4cb6-840f-c9971e4d862f\", recovery_count: 0, result: nil, re"},{"event":"cmd_output","timestamp":1607098454,"output":"sult_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at:"},{"event":"cmd_output","timestamp":1607098454,"output":" ~N[2020-12-04 16:14:14.937534]}\n\u001b[0m\u001b[22m\n16:14:14.947 [info] ppl_id: b3360249-9900-4cb6-840f-c9"},{"event":"cmd_output","timestamp":1607098454,"output":"971e4d862f, type: PplRequests, event: persisted source_args for pipeline: b3360249-9900-4cb6-840f-c9"},{"event":"cmd_output","timestamp":1607098454,"output":"971e4d862f, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098454,"output":"m\n16:14:14.949 [info] ppl_id: b3360249-9900-4cb6-840f-c9971e4d862f, type: PplSubInits, state: fetc"},{"event":"cmd_output","timestamp":1607098454,"output":"hing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098454,"output":"90), \n\u001b[0m\u001b[22m\n16:14:14.969 [info] ppl_id: b3360249-9900-4cb6-840f-c9971e4d862f, type: PplSubIni"},{"event":"cmd_output","timestamp":1607098454,"output":"ts, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.l"},{"event":"cmd_output","timestamp":1607098455,"output":"og_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:15.003 [info] ppl_id: b3360249-9900-4cb6-840f-c9971e4d86"},{"event":"cmd_output","timestamp":1607098455,"output":"2f, type: PplRequests, event: persisted definition for request with request_token: c0c0310c-364b-11e"},{"event":"cmd_output","timestamp":1607098455,"output":"b-9ed9-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76"},{"event":"cmd_output","timestamp":1607098455,"output":"), \n\u001b[0m\u001b[22m\n16:14:15.016 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto"},{"event":"cmd_output","timestamp":1607098455,"output":".Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:14:15.015218], name: \"list_of_pat"},{"event":"cmd_output","timestamp":1607098455,"output":"hs-.semaphore/change_in/list_of_paths.yml\", organization_id: \"4ed669f4-e342-4482-a088-c72ab3be1997\","},{"event":"cmd_output","timestamp":1607098455,"output":" project_id: \"ead9dee1-b9bc-43fe-ae4a-c9fda7489052\", queue_id: \"aac230b8-c0a6-4b39-9585-70e43d625275"},{"event":"cmd_output","timestamp":1607098455,"output":"\", scope: \"project\", updated_at: ~N[2020-12-04 16:14:15.015223], user_generated: false}}\n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098455,"output":"\n16:14:15.025 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all"},{"event":"cmd_output","timestamp":1607098455,"output":"_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:15.025 [info] ppl_id: b3360249-9900-4cb6-840f-c9971e4d862f, type: "},{"event":"cmd_output","timestamp":1607098455,"output":"PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Pp"},{"event":"cmd_output","timestamp":1607098455,"output":"l.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:15.026 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098455,"output":" b3360249-9900-4cb6-840f-c9971e4d862f, type: PplSubInits, state: done, result: passed, event: exit_s"},{"event":"cmd_output","timestamp":1607098455,"output":"cheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098455,"output":"6:14:15.033 [info] ppl_id: b3360249-9900-4cb6-840f-c9971e4d862f, type: PplBlocks, block_index: 0, s"},{"event":"cmd_output","timestamp":1607098455,"output":"tate: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098455,"output":"hange/1(L90), \n\u001b[0m\u001b[22m\n16:14:15.036 [info] ppl_id: b3360249-9900-4cb6-840f-c9971e4d862f, type: "},{"event":"cmd_output","timestamp":1607098455,"output":"Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_"},{"event":"cmd_output","timestamp":1607098455,"output":"state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:15.042 [info] ppl_id: b3360249-9900-4cb6-840f-c9971e4d862f,"},{"event":"cmd_output","timestamp":1607098455,"output":" type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Im"},{"event":"cmd_output","timestamp":1607098455,"output":"pl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:15.049 [info] ppl_id: b3360249-9900-4cb6-840f-c9971e"},{"event":"cmd_output","timestamp":1607098455,"output":"4d862f, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper"},{"event":"cmd_output","timestamp":1607098455,"output":".STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:15.055 [info] PplBlocks WaitingState STM is s"},{"event":"cmd_output","timestamp":1607098455,"output":"cheduling block 0 from pipeline: \"b3360249-9900-4cb6-840f-c9971e4d862f\"\n\u001b[0m\u001b[22m\n16:14:15.065 [in"},{"event":"cmd_output","timestamp":1607098455,"output":"fo] ppl_id: b3360249-9900-4cb6-840f-c9971e4d862f, type: PplBlocks, block_index: 0, state: done, res"},{"event":"cmd_output","timestamp":1607098455,"output":"ult: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_cha"},{"event":"cmd_output","timestamp":1607098455,"output":"nge/1(L90), \n\u001b[0m\u001b[22m\n16:14:15.072 [info] ppl_id: b3360249-9900-4cb6-840f-c9971e4d862f, type: Pp"},{"event":"cmd_output","timestamp":1607098455,"output":"ls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.ST"},{"event":"cmd_output","timestamp":1607098455,"output":"M.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test change_in with list of strings as first param i"},{"event":"cmd_output","timestamp":1607098455,"output":"s processed correctly (291.3ms)\u001b[0m\n * test change_in uses diferent default branch when defult_bra"},{"event":"cmd_output","timestamp":1607098455,"output":"nch config is given\u001b[22m\n16:14:15.202 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.Initi"},{"event":"cmd_output","timestamp":1607098455,"output":"alizingState with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms, metric_name: "},{"event":"cmd_output","timestamp":1607098455,"output":"{\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %{allowed_state"},{"event":"cmd_output","timestamp":1607098455,"output":"s: [\"initializing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, obs"},{"event":"cmd_output","timestamp":1607098455,"output":"erved_state: \"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.Initializi"},{"event":"cmd_output","timestamp":1607098455,"output":"ngState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :resu"},{"event":"cmd_output","timestamp":1607098455,"output":"lt, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098455,"output":"4:15.203 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.P"},{"event":"cmd_output","timestamp":1607098455,"output":"pls.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMH"},{"event":"cmd_output","timestamp":1607098455,"output":"andler-PendingState\"]}, recurring args: %{allowed_states: [\"pending\", \"queuing\", \"running\", \"done\"],"},{"event":"cmd_output","timestamp":1607098455,"output":" cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publisher_cb: #"},{"event":"cmd_output","timestamp":1607098455,"output":"Function<0.8493005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:i"},{"event":"cmd_output","timestamp":1607098455,"output":"d, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Mod"},{"event":"cmd_output","timestamp":1607098455,"output":"el.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:14:15.204 [info] Periodic from module "},{"event":"cmd_output","timestamp":1607098455,"output":"Elixir.Ppl.Ppls.STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period:"},{"event":"cmd_output","timestamp":1607098455,"output":" 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args"},{"event":"cmd_output","timestamp":1607098455,"output":": %{allowed_states: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Mo"},{"event":"cmd_output","timestamp":1607098455,"output":"del.Ppls, observed_state: \"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.Qu"},{"event":"cmd_output","timestamp":1607098455,"output":"euingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :r"},{"event":"cmd_output","timestamp":1607098455,"output":"esult, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098455,"output":"6:14:15.204 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.RunningState with name Elixir.Pp"},{"event":"cmd_output","timestamp":1607098455,"output":"l.Ppls.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-S"},{"event":"cmd_output","timestamp":1607098455,"output":"TMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], coolin"},{"event":"cmd_output","timestamp":1607098455,"output":"g_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"running\", publisher_cb: #Functi"},{"event":"cmd_output","timestamp":1607098455,"output":"on<0.74670282/1 in Ppl.Ppls.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :t"},{"event":"cmd_output","timestamp":1607098455,"output":"erminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Pp"},{"event":"cmd_output","timestamp":1607098455,"output":"ls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:14:15.205 [info] Periodic from module Elixi"},{"event":"cmd_output","timestamp":1607098455,"output":"r.Ppl.Ppls.STMHandler.StoppingState with name Elixir.Ppl.Ppls.STMHandler.StoppingState :: period: 10"},{"event":"cmd_output","timestamp":1607098455,"output":"0 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring args: "},{"event":"cmd_output","timestamp":1607098455,"output":"%{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, ob"},{"event":"cmd_output","timestamp":1607098455,"output":"served_state: \"stopping\", publisher_cb: #Function<0.71803493/1 in Ppl.Ppls.STMHandler.StoppingState."},{"event":"cmd_output","timestamp":1607098455,"output":"args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :rec"},{"event":"cmd_output","timestamp":1607098455,"output":"overy_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:15.205"},{"event":"cmd_output","timestamp":1607098455,"output":" [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedState with name Elixir.Ppl.Pp"},{"event":"cmd_output","timestamp":1607098455,"output":"lSubInits.STMHandler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppl"},{"event":"cmd_output","timestamp":1607098455,"output":"SubInits-STMHandler-CreatedState\"]}, recurring args: %{allowed_states: [\"fetching\", \"done\"], cooling"},{"event":"cmd_output","timestamp":1607098455,"output":"_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"created\", publisher"},{"event":"cmd_output","timestamp":1607098455,"output":"_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :"},{"event":"cmd_output","timestamp":1607098455,"output":"recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098455,"output":"22m\n16:14:15.206 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.FetchingState with "},{"event":"cmd_output","timestamp":1607098455,"output":"name Elixir.Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 ms, metric_name: {\"Ppl.beholder-"},{"event":"cmd_output","timestamp":1607098455,"output":"wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %{allowed_states: [\"regular"},{"event":"cmd_output","timestamp":1607098455,"output":"_init\", \"compilation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubIni"},{"event":"cmd_output","timestamp":1607098455,"output":"ts, observed_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate"},{"event":"cmd_output","timestamp":1607098455,"output":"_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.Ppl"},{"event":"cmd_output","timestamp":1607098455,"output":"SubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:15.207 [info] Periodic from module Elixir.Ppl.P"},{"event":"cmd_output","timestamp":1607098455,"output":"plSubInits.STMHandler.CompilationState with name Elixir.Ppl.PplSubInits.STMHandler.CompilationState "},{"event":"cmd_output","timestamp":1607098455,"output":":: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationSta"},{"event":"cmd_output","timestamp":1607098455,"output":"te\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"stopping\", \"done\"], coolin"},{"event":"cmd_output","timestamp":1607098455,"output":"g_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"compilation\", pub"},{"event":"cmd_output","timestamp":1607098455,"output":"lisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :res"},{"event":"cmd_output","timestamp":1607098455,"output":"ult, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n"},{"event":"cmd_output","timestamp":1607098455,"output":"\u001b[0m\u001b[22m\n16:14:15.207 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.RegularInitSt"},{"event":"cmd_output","timestamp":1607098455,"output":"ate with name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period: 100 ms, metric_name: {\"P"},{"event":"cmd_output","timestamp":1607098455,"output":"pl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurring args: %{allowed_st"},{"event":"cmd_output","timestamp":1607098455,"output":"ates: [\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_stat"},{"event":"cmd_output","timestamp":1607098455,"output":"e: \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :up"},{"event":"cmd_output","timestamp":1607098455,"output":"dated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, tas"},{"event":"cmd_output","timestamp":1607098455,"output":"k_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:15.207 [info] Periodic from module Elixir.Ppl.PplBlocks.STMH"},{"event":"cmd_output","timestamp":1607098455,"output":"andler.InitializingState with name Elixir.Ppl.PplBlocks.STMHandler.InitializingState :: period: 100 "},{"event":"cmd_output","timestamp":1607098455,"output":"ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-InitializingState\"]}, recurring"},{"event":"cmd_output","timestamp":1607098455,"output":" args: %{allowed_states: [\"initializing\", \"waiting\", \"done\"], cooling_time_sec: 0, initial_query: Pp"},{"event":"cmd_output","timestamp":1607098455,"output":"l.PplBlocks.Model.PplBlocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo"},{"event":"cmd_output","timestamp":1607098455,"output":", returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :bloc"},{"event":"cmd_output","timestamp":1607098455,"output":"k_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:15.207 [i"},{"event":"cmd_output","timestamp":1607098455,"output":"nfo] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.WaitingState with name Elixir.Ppl.PplBloc"},{"event":"cmd_output","timestamp":1607098455,"output":"ks.STMHandler.WaitingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks"},{"event":"cmd_output","timestamp":1607098455,"output":"-STMHandler-WaitingState\"]}, recurring args: %{allowed_states: [\"waiting\", \"running\", \"done\"], cooli"},{"event":"cmd_output","timestamp":1607098455,"output":"ng_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"waiting\", publisher_c"},{"event":"cmd_output","timestamp":1607098455,"output":"b: #Function<0.8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, retur"},{"event":"cmd_output","timestamp":1607098455,"output":"ning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index"},{"event":"cmd_output","timestamp":1607098455,"output":"], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:15.208 [info] P"},{"event":"cmd_output","timestamp":1607098455,"output":"eriodic from module Elixir.Ppl.PplBlocks.STMHandler.RunningState with name Elixir.Ppl.PplBlocks.STMH"},{"event":"cmd_output","timestamp":1607098455,"output":"andler.RunningState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHan"},{"event":"cmd_output","timestamp":1607098455,"output":"dler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_tim"},{"event":"cmd_output","timestamp":1607098455,"output":"e_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"running\", publisher_cb: #F"},{"event":"cmd_output","timestamp":1607098455,"output":"unction<0.28166834/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning"},{"event":"cmd_output","timestamp":1607098455,"output":": [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :b"},{"event":"cmd_output","timestamp":1607098455,"output":"lock_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:15.208 [i"},{"event":"cmd_output","timestamp":1607098455,"output":"nfo] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.StoppingState with name Elixir.Ppl.PplBlo"},{"event":"cmd_output","timestamp":1607098455,"output":"cks.STMHandler.StoppingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBloc"},{"event":"cmd_output","timestamp":1607098455,"output":"ks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time"},{"event":"cmd_output","timestamp":1607098455,"output":"_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"stopping\", publisher_cb: #F"},{"event":"cmd_output","timestamp":1607098455,"output":"unction<0.104215991/1 in Ppl.PplBlocks.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returni"},{"event":"cmd_output","timestamp":1607098455,"output":"ng: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, "},{"event":"cmd_output","timestamp":1607098455,"output":":block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:15.208 "},{"event":"cmd_output","timestamp":1607098455,"output":"[info] Periodic from module Elixir.Block.Blocks.STMHandler.InitializingState with name Elixir.Block"},{"event":"cmd_output","timestamp":1607098455,"output":".Blocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Bloc"},{"event":"cmd_output","timestamp":1607098455,"output":"k-Blocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], coo"},{"event":"cmd_output","timestamp":1607098455,"output":"ling_time_sec: 0, initial_query: Block.Blocks.Model.Blocks, observed_state: \"initializing\", publishe"},{"event":"cmd_output","timestamp":1607098455,"output":"r_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recove"},{"event":"cmd_output","timestamp":1607098455,"output":"ry_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:1"},{"event":"cmd_output","timestamp":1607098455,"output":"5.208 [info] Periodic from module Elixir.Block.Blocks.STMHandler.RunningState with name Elixir.Bloc"},{"event":"cmd_output","timestamp":1607098455,"output":"k.Blocks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Bl"},{"event":"cmd_output","timestamp":1607098455,"output":"ocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], "},{"event":"cmd_output","timestamp":1607098455,"output":"cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"running\", publisher"},{"event":"cmd_output","timestamp":1607098455,"output":"_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recover"},{"event":"cmd_output","timestamp":1607098455,"output":"y_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:15"},{"event":"cmd_output","timestamp":1607098455,"output":".209 [info] Periodic from module Elixir.Block.Blocks.STMHandler.StoppingState with name Elixir.Bloc"},{"event":"cmd_output","timestamp":1607098455,"output":"k.Blocks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-B"},{"event":"cmd_output","timestamp":1607098455,"output":"locks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_t"},{"event":"cmd_output","timestamp":1607098455,"output":"ime_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"stopping\", publisher_cb: :sk"},{"event":"cmd_output","timestamp":1607098455,"output":"ip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count,"},{"event":"cmd_output","timestamp":1607098455,"output":" :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:15.209 [in"},{"event":"cmd_output","timestamp":1607098455,"output":"fo] Periodic from module Elixir.Block.Tasks.STMHandler.PendingState with name Elixir.Block.Tasks.ST"},{"event":"cmd_output","timestamp":1607098455,"output":"MHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHand"},{"event":"cmd_output","timestamp":1607098455,"output":"ler-PendingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, ini"},{"event":"cmd_output","timestamp":1607098455,"output":"tial_query: Block.Tasks.Model.Tasks, observed_state: \"pending\", publisher_cb: :skip, repo: Block.Ect"},{"event":"cmd_output","timestamp":1607098455,"output":"oRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id, :build_"},{"event":"cmd_output","timestamp":1607098455,"output":"request_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:15.209 [info"},{"event":"cmd_output","timestamp":1607098455,"output":"] Periodic from module Elixir.Block.Tasks.STMHandler.RunningState with name Elixir.Block.Tasks.STMH"},{"event":"cmd_output","timestamp":1607098455,"output":"andler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandle"},{"event":"cmd_output","timestamp":1607098455,"output":"r-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_s"},{"event":"cmd_output","timestamp":1607098455,"output":"ec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"running\", publisher_cb: :skip, repo"},{"event":"cmd_output","timestamp":1607098455,"output":": Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_"},{"event":"cmd_output","timestamp":1607098455,"output":"id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:15.209 [info] Perio"},{"event":"cmd_output","timestamp":1607098455,"output":"dic from module Elixir.Block.Tasks.STMHandler.StoppingState with name Elixir.Block.Tasks.STMHandler."},{"event":"cmd_output","timestamp":1607098455,"output":"StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-Stop"},{"event":"cmd_output","timestamp":1607098455,"output":"pingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_"},{"event":"cmd_output","timestamp":1607098455,"output":"query: Block.Tasks.Model.Tasks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRep"},{"event":"cmd_output","timestamp":1607098455,"output":"o, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Bl"},{"event":"cmd_output","timestamp":1607098455,"output":"ock.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:15.217 [info] Request: 'run: %{\"br"},{"event":"cmd_output","timestamp":1607098455,"output":"anch_id\" => \"96cbe3cc-4fe7-41a4-aef1-a52cde937849\", \"branch_name\" => \"master-v2\", \"commit_sha\" => \"7"},{"event":"cmd_output","timestamp":1607098455,"output":"5891a4469\", \"file_name\" => \"config_default_branch.yml\", \"hook_id\" => \"c0ec7db6-364b-11eb-89b8-525400"},{"event":"cmd_output","timestamp":1607098455,"output":"5464e2\", \"label\" => \"master-v2\", \"organization_id\" => \"5d95dc0d-defd-4973-972e-5853bcef8273\", \"owner"},{"event":"cmd_output","timestamp":1607098455,"output":"\" => \"rt\", \"project_id\" => \"ec651d05-8a74-43a4-964b-59747a00afc7\", \"repo_name\" => \"22_skip_block\", \""},{"event":"cmd_output","timestamp":1607098455,"output":"request_token\" => \"c0ec74e2-364b-11eb-8860-5254005464e2\", \"requester_id\" => \"714aad3d-5d0a-4760-98ff"},{"event":"cmd_output","timestamp":1607098455,"output":"-d85a1cbf844e\", \"service\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], "},{"event":"cmd_output","timestamp":1607098455,"output":"\"wf_id\" => \"c3d74541-ecad-4aed-814d-58c477f3de59\", \"working_dir\" => \".semaphore/change_in\"}\n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098455,"output":"2m\n16:14:15.219 [info] ppl_id: 88bb4073-84f9-409a-9a07-bdb5a20fc3e4, type: PplRequests, event: per"},{"event":"cmd_output","timestamp":1607098455,"output":"sisted schedule request with request_token: c0ec74e2-364b-11eb-8860-5254005464e2, origin: Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098455,"output":".PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:14:15.221 [info] ppl"},{"event":"cmd_output","timestamp":1607098455,"output":"_id: 88bb4073-84f9-409a-9a07-bdb5a20fc3e4, type: Ppls, state: initializing, event: initializing, rec"},{"event":"cmd_output","timestamp":1607098455,"output":"overy_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098455,"output":"14:15.224 [info] Project ec651d05-8a74-43a4-964b-59747a00afc7 and branch master-v2latest_wf details"},{"event":"cmd_output","timestamp":1607098455,"output":" updated: \"wf_id: c3d74541-ecad-4aed-814d-58c477f3de59, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:14:15.225 [info"},{"event":"cmd_output","timestamp":1607098455,"output":"] Persisted ppl_sub_init for pipeline with ppl_id: 88bb4073-84f9-409a-9a07-bdb5a20fc3e4: %Ppl.PplSu"},{"event":"cmd_output","timestamp":1607098455,"output":"bInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_tas"},{"event":"cmd_output","timestamp":1607098455,"output":"k_id: nil, error_description: nil, id: 323, in_scheduling: false, init_type: \"regular\", inserted_at:"},{"event":"cmd_output","timestamp":1607098455,"output":" ~N[2020-12-04 16:14:15.224265], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"88bb4073-84f9-409a-9a07-bdb5a20fc3e4\", recovery_count: 0, result"},{"event":"cmd_output","timestamp":1607098455,"output":": nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, up"},{"event":"cmd_output","timestamp":1607098455,"output":"dated_at: ~N[2020-12-04 16:14:15.224270]}\n\u001b[0m\u001b[22m\n16:14:15.233 [info] ppl_id: 88bb4073-84f9-409"},{"event":"cmd_output","timestamp":1607098455,"output":"a-9a07-bdb5a20fc3e4, type: PplRequests, event: persisted source_args for pipeline: 88bb4073-84f9-409"},{"event":"cmd_output","timestamp":1607098455,"output":"a-9a07-bdb5a20fc3e4, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \r"},{"event":"cmd_output","timestamp":1607098455,"output":"\n\u001b[0m\u001b[22m\n16:14:15.235 [info] ppl_id: 88bb4073-84f9-409a-9a07-bdb5a20fc3e4, type: PplSubInits, st"},{"event":"cmd_output","timestamp":1607098455,"output":"ate: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098455,"output":"hange/1(L90), \n\u001b[0m\u001b[22m\n16:14:15.254 [info] ppl_id: 88bb4073-84f9-409a-9a07-bdb5a20fc3e4, type: "},{"event":"cmd_output","timestamp":1607098455,"output":"PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.S"},{"event":"cmd_output","timestamp":1607098455,"output":"TM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:15.269 [info] ppl_id: 88bb4073-84f9-409a-9a07-b"},{"event":"cmd_output","timestamp":1607098455,"output":"db5a20fc3e4, type: PplRequests, event: persisted definition for request with request_token: c0ec74e2"},{"event":"cmd_output","timestamp":1607098455,"output":"-364b-11eb-8860-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definit"},{"event":"cmd_output","timestamp":1607098455,"output":"ion/3(L76), \n\u001b[0m\u001b[22m\n16:14:15.280 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta"},{"event":"cmd_output","timestamp":1607098455,"output":"__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:14:15.279075], name: \"ma"},{"event":"cmd_output","timestamp":1607098455,"output":"ster-v2-.semaphore/change_in/config_default_branch.yml\", organization_id: \"5d95dc0d-defd-4973-972e-5"},{"event":"cmd_output","timestamp":1607098455,"output":"853bcef8273\", project_id: \"ec651d05-8a74-43a4-964b-59747a00afc7\", queue_id: \"4dea395f-8c4e-4456-96e3"},{"event":"cmd_output","timestamp":1607098455,"output":"-637f98f14992\", scope: \"project\", updated_at: ~N[2020-12-04 16:14:15.279084], user_generated: false}"},{"event":"cmd_output","timestamp":1607098455,"output":"}\n\u001b[0m\u001b[22m\n16:14:15.283 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.Regular"},{"event":"cmd_output","timestamp":1607098455,"output":"InitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:15.283 [info] ppl_id: 88bb4073-84f9-409a-9a07-bdb5a20"},{"event":"cmd_output","timestamp":1607098455,"output":"fc3e4, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098455,"output":"in: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:15.285 [i"},{"event":"cmd_output","timestamp":1607098455,"output":"nfo] ppl_id: 88bb4073-84f9-409a-9a07-bdb5a20fc3e4, type: PplSubInits, state: done, result: passed, "},{"event":"cmd_output","timestamp":1607098455,"output":"event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \r"},{"event":"cmd_output","timestamp":1607098455,"output":"\n\u001b[0m\u001b[22m\n16:14:15.290 [info] ppl_id: 88bb4073-84f9-409a-9a07-bdb5a20fc3e4, type: PplBlocks, bloc"},{"event":"cmd_output","timestamp":1607098455,"output":"k_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Imp"},{"event":"cmd_output","timestamp":1607098455,"output":"l.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:15.300 [info] ppl_id: 88bb4073-84f9-409a-9a07-bdb5a20"},{"event":"cmd_output","timestamp":1607098455,"output":"fc3e4, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper."},{"event":"cmd_output","timestamp":1607098455,"output":"STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:15.309 [info] ppl_id: 88bb4073-84f9-409a-9a07-"},{"event":"cmd_output","timestamp":1607098455,"output":"bdb5a20fc3e4, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098455,"output":"Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:15.325 [info] ppl_id: 88bb4073-84f9-409"},{"event":"cmd_output","timestamp":1607098455,"output":"a-9a07-bdb5a20fc3e4, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098455,"output":"Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:15.332 [info] PplBlocks WaitingS"},{"event":"cmd_output","timestamp":1607098455,"output":"tate STM is scheduling block 0 from pipeline: \"88bb4073-84f9-409a-9a07-bdb5a20fc3e4\"\n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098455,"output":"14:15.342 [info] ppl_id: 88bb4073-84f9-409a-9a07-bdb5a20fc3e4, type: PplBlocks, block_index: 0, sta"},{"event":"cmd_output","timestamp":1607098455,"output":"te: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl."},{"event":"cmd_output","timestamp":1607098455,"output":"log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:15.349 [info] ppl_id: 88bb4073-84f9-409a-9a07-bdb5a20fc"},{"event":"cmd_output","timestamp":1607098455,"output":"3e4, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098455,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test change_in uses diferent default br"},{"event":"cmd_output","timestamp":1607098455,"output":"anch when defult_branch config is given (292.2ms)\u001b[0m\n * test change_in with string as first param"},{"event":"cmd_output","timestamp":1607098455,"output":" is processed correctly\u001b[22m\n16:14:15.481 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.I"},{"event":"cmd_output","timestamp":1607098455,"output":"nitializingState with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms, metric_na"},{"event":"cmd_output","timestamp":1607098455,"output":"me: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %{allowed_s"},{"event":"cmd_output","timestamp":1607098455,"output":"tates: [\"initializing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls,"},{"event":"cmd_output","timestamp":1607098455,"output":" observed_state: \"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.Initia"},{"event":"cmd_output","timestamp":1607098455,"output":"lizingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :"},{"event":"cmd_output","timestamp":1607098455,"output":"result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098455,"output":"16:14:15.481 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingState with name Elixir.P"},{"event":"cmd_output","timestamp":1607098455,"output":"pl.Ppls.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-"},{"event":"cmd_output","timestamp":1607098455,"output":"STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"pending\", \"queuing\", \"running\", \"don"},{"event":"cmd_output","timestamp":1607098455,"output":"e\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publisher_c"},{"event":"cmd_output","timestamp":1607098455,"output":"b: #Function<0.8493005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, returning:"},{"event":"cmd_output","timestamp":1607098455,"output":" [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls"},{"event":"cmd_output","timestamp":1607098455,"output":".Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:14:15.482 [info] Periodic from mod"},{"event":"cmd_output","timestamp":1607098455,"output":"ule Elixir.Ppl.Ppls.STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandler.QueuingState :: per"},{"event":"cmd_output","timestamp":1607098455,"output":"iod: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring "},{"event":"cmd_output","timestamp":1607098455,"output":"args: %{allowed_states: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098455,"output":"s.Model.Ppls, observed_state: \"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandle"},{"event":"cmd_output","timestamp":1607098455,"output":"r.QueuingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state"},{"event":"cmd_output","timestamp":1607098455,"output":", :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098455,"output":"m\n16:14:15.482 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.RunningState with name Elixi"},{"event":"cmd_output","timestamp":1607098455,"output":"r.Ppl.Ppls.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Pp"},{"event":"cmd_output","timestamp":1607098455,"output":"ls-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], co"},{"event":"cmd_output","timestamp":1607098455,"output":"oling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"running\", publisher_cb: #Fu"},{"event":"cmd_output","timestamp":1607098455,"output":"nction<0.74670282/1 in Ppl.Ppls.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id"},{"event":"cmd_output","timestamp":1607098455,"output":", :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Mode"},{"event":"cmd_output","timestamp":1607098455,"output":"l.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:14:15.482 [info] Periodic from module E"},{"event":"cmd_output","timestamp":1607098455,"output":"lixir.Ppl.Ppls.STMHandler.StoppingState with name Elixir.Ppl.Ppls.STMHandler.StoppingState :: period"},{"event":"cmd_output","timestamp":1607098455,"output":": 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring ar"},{"event":"cmd_output","timestamp":1607098455,"output":"gs: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls"},{"event":"cmd_output","timestamp":1607098455,"output":", observed_state: \"stopping\", publisher_cb: #Function<0.71803493/1 in Ppl.Ppls.STMHandler.StoppingSt"},{"event":"cmd_output","timestamp":1607098455,"output":"ate.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, "},{"event":"cmd_output","timestamp":1607098455,"output":":recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:15"},{"event":"cmd_output","timestamp":1607098455,"output":".482 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedState with name Elixir.Pp"},{"event":"cmd_output","timestamp":1607098455,"output":"l.PplSubInits.STMHandler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl"},{"event":"cmd_output","timestamp":1607098455,"output":"-PplSubInits-STMHandler-CreatedState\"]}, recurring args: %{allowed_states: [\"fetching\", \"done\"], coo"},{"event":"cmd_output","timestamp":1607098455,"output":"ling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"created\", publi"},{"event":"cmd_output","timestamp":1607098455,"output":"sher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :resul"},{"event":"cmd_output","timestamp":1607098455,"output":"t, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b["},{"event":"cmd_output","timestamp":1607098455,"output":"0m\u001b[22m\n16:14:15.483 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.FetchingState w"},{"event":"cmd_output","timestamp":1607098455,"output":"ith name Elixir.Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 ms, metric_name: {\"Ppl.behol"},{"event":"cmd_output","timestamp":1607098455,"output":"der-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %{allowed_states: [\"reg"},{"event":"cmd_output","timestamp":1607098455,"output":"ular_init\", \"compilation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSu"},{"event":"cmd_output","timestamp":1607098455,"output":"bInits, observed_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :termi"},{"event":"cmd_output","timestamp":1607098455,"output":"nate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model"},{"event":"cmd_output","timestamp":1607098455,"output":".PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:15.483 [info] Periodic from module Elixir.P"},{"event":"cmd_output","timestamp":1607098455,"output":"pl.PplSubInits.STMHandler.CompilationState with name Elixir.Ppl.PplSubInits.STMHandler.CompilationSt"},{"event":"cmd_output","timestamp":1607098455,"output":"ate :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-Compilatio"},{"event":"cmd_output","timestamp":1607098455,"output":"nState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"stopping\", \"done\"], co"},{"event":"cmd_output","timestamp":1607098455,"output":"oling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"compilation\","},{"event":"cmd_output","timestamp":1607098455,"output":" publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, "},{"event":"cmd_output","timestamp":1607098455,"output":":result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :ski"},{"event":"cmd_output","timestamp":1607098455,"output":"p}\n\u001b[0m\u001b[22m\n16:14:15.483 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.RegularIn"},{"event":"cmd_output","timestamp":1607098455,"output":"itState with name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period: 100 ms, metric_name:"},{"event":"cmd_output","timestamp":1607098455,"output":" {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurring args: %{allowe"},{"event":"cmd_output","timestamp":1607098455,"output":"d_states: [\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_"},{"event":"cmd_output","timestamp":1607098455,"output":"state: \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request,"},{"event":"cmd_output","timestamp":1607098455,"output":" :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits,"},{"event":"cmd_output","timestamp":1607098455,"output":" task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:15.484 [info] Periodic from module Elixir.Ppl.PplBlocks."},{"event":"cmd_output","timestamp":1607098455,"output":"STMHandler.InitializingState with name Elixir.Ppl.PplBlocks.STMHandler.InitializingState :: period: "},{"event":"cmd_output","timestamp":1607098455,"output":"100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-InitializingState\"]}, recur"},{"event":"cmd_output","timestamp":1607098455,"output":"ring args: %{allowed_states: [\"initializing\", \"waiting\", \"done\"], cooling_time_sec: 0, initial_query"},{"event":"cmd_output","timestamp":1607098455,"output":": Ppl.PplBlocks.Model.PplBlocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Ppl.Ecto"},{"event":"cmd_output","timestamp":1607098455,"output":"Repo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :"},{"event":"cmd_output","timestamp":1607098455,"output":"block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:15.48"},{"event":"cmd_output","timestamp":1607098455,"output":"4 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.WaitingState with name Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098455,"output":"Blocks.STMHandler.WaitingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBl"},{"event":"cmd_output","timestamp":1607098455,"output":"ocks-STMHandler-WaitingState\"]}, recurring args: %{allowed_states: [\"waiting\", \"running\", \"done\"], c"},{"event":"cmd_output","timestamp":1607098455,"output":"ooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"waiting\", publish"},{"event":"cmd_output","timestamp":1607098455,"output":"er_cb: #Function<0.8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, r"},{"event":"cmd_output","timestamp":1607098455,"output":"eturning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_i"},{"event":"cmd_output","timestamp":1607098455,"output":"ndex], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:15.484 [info"},{"event":"cmd_output","timestamp":1607098455,"output":"] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.RunningState with name Elixir.Ppl.PplBlocks."},{"event":"cmd_output","timestamp":1607098455,"output":"STMHandler.RunningState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-ST"},{"event":"cmd_output","timestamp":1607098455,"output":"MHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling"},{"event":"cmd_output","timestamp":1607098455,"output":"_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"running\", publisher_cb"},{"event":"cmd_output","timestamp":1607098455,"output":": #Function<0.28166834/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, retur"},{"event":"cmd_output","timestamp":1607098455,"output":"ning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index"},{"event":"cmd_output","timestamp":1607098455,"output":", :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:15.48"},{"event":"cmd_output","timestamp":1607098455,"output":"4 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.StoppingState with name Elixir.Ppl.Pp"},{"event":"cmd_output","timestamp":1607098455,"output":"lBlocks.STMHandler.StoppingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppl"},{"event":"cmd_output","timestamp":1607098455,"output":"Blocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_"},{"event":"cmd_output","timestamp":1607098455,"output":"time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"stopping\", publisher_cb"},{"event":"cmd_output","timestamp":1607098455,"output":": #Function<0.104215991/1 in Ppl.PplBlocks.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, ret"},{"event":"cmd_output","timestamp":1607098455,"output":"urning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_ind"},{"event":"cmd_output","timestamp":1607098455,"output":"ex, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:15."},{"event":"cmd_output","timestamp":1607098455,"output":"485 [info] Periodic from module Elixir.Block.Blocks.STMHandler.InitializingState with name Elixir.B"},{"event":"cmd_output","timestamp":1607098455,"output":"lock.Blocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\""},{"event":"cmd_output","timestamp":1607098455,"output":"Block-Blocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"],"},{"event":"cmd_output","timestamp":1607098455,"output":" cooling_time_sec: 0, initial_query: Block.Blocks.Model.Blocks, observed_state: \"initializing\", publ"},{"event":"cmd_output","timestamp":1607098455,"output":"isher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :re"},{"event":"cmd_output","timestamp":1607098455,"output":"covery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098455,"output":"14:15.485 [info] Periodic from module Elixir.Block.Blocks.STMHandler.RunningState with name Elixir."},{"event":"cmd_output","timestamp":1607098455,"output":"Block.Blocks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Bloc"},{"event":"cmd_output","timestamp":1607098455,"output":"k-Blocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done"},{"event":"cmd_output","timestamp":1607098455,"output":"\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"running\", publi"},{"event":"cmd_output","timestamp":1607098455,"output":"sher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :rec"},{"event":"cmd_output","timestamp":1607098455,"output":"overy_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098455,"output":"4:15.485 [info] Periodic from module Elixir.Block.Blocks.STMHandler.StoppingState with name Elixir."},{"event":"cmd_output","timestamp":1607098455,"output":"Block.Blocks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Blo"},{"event":"cmd_output","timestamp":1607098455,"output":"ck-Blocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooli"},{"event":"cmd_output","timestamp":1607098455,"output":"ng_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"stopping\", publisher_cb:"},{"event":"cmd_output","timestamp":1607098455,"output":" :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_co"},{"event":"cmd_output","timestamp":1607098455,"output":"unt, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:15.485"},{"event":"cmd_output","timestamp":1607098455,"output":" [info] Periodic from module Elixir.Block.Tasks.STMHandler.PendingState with name Elixir.Block.Task"},{"event":"cmd_output","timestamp":1607098455,"output":"s.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STM"},{"event":"cmd_output","timestamp":1607098455,"output":"Handler-PendingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0,"},{"event":"cmd_output","timestamp":1607098455,"output":" initial_query: Block.Tasks.Model.Tasks, observed_state: \"pending\", publisher_cb: :skip, repo: Block"},{"event":"cmd_output","timestamp":1607098455,"output":".EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id, :bu"},{"event":"cmd_output","timestamp":1607098455,"output":"ild_request_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:15.487 ["},{"event":"cmd_output","timestamp":1607098455,"output":"info] Periodic from module Elixir.Block.Tasks.STMHandler.RunningState with name Elixir.Block.Tasks."},{"event":"cmd_output","timestamp":1607098455,"output":"STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHa"},{"event":"cmd_output","timestamp":1607098455,"output":"ndler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_ti"},{"event":"cmd_output","timestamp":1607098455,"output":"me_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"running\", publisher_cb: :skip, "},{"event":"cmd_output","timestamp":1607098455,"output":"repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :bl"},{"event":"cmd_output","timestamp":1607098455,"output":"ock_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:15.487 [info] P"},{"event":"cmd_output","timestamp":1607098455,"output":"eriodic from module Elixir.Block.Tasks.STMHandler.StoppingState with name Elixir.Block.Tasks.STMHand"},{"event":"cmd_output","timestamp":1607098455,"output":"ler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-"},{"event":"cmd_output","timestamp":1607098455,"output":"StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, init"},{"event":"cmd_output","timestamp":1607098455,"output":"ial_query: Block.Tasks.Model.Tasks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.Ect"},{"event":"cmd_output","timestamp":1607098455,"output":"oRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema"},{"event":"cmd_output","timestamp":1607098455,"output":": Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:15.490 [info] Request: 'run: %"},{"event":"cmd_output","timestamp":1607098455,"output":"{\"branch_id\" => \"0641c51c-ed06-4d40-b3da-113b79caa1c7\", \"branch_name\" => \"one_path\", \"commit_sha\" =>"},{"event":"cmd_output","timestamp":1607098455,"output":" \"75891a4469\", \"file_name\" => \"one_path.yml\", \"hook_id\" => \"c116feec-364b-11eb-aa22-5254005464e2\", \""},{"event":"cmd_output","timestamp":1607098455,"output":"label\" => \"one_path\", \"organization_id\" => \"742c64ab-6b15-4599-9ee5-b97d52815e8d\", \"owner\" => \"rt\", "},{"event":"cmd_output","timestamp":1607098455,"output":"\"project_id\" => \"d654853b-ffda-4bf2-b4c9-0ec56df7c814\", \"repo_name\" => \"22_skip_block\", \"request_tok"},{"event":"cmd_output","timestamp":1607098455,"output":"en\" => \"c116f668-364b-11eb-ba25-5254005464e2\", \"requester_id\" => \"9c88aaa4-ec64-4f9d-a949-3aa4147810"},{"event":"cmd_output","timestamp":1607098455,"output":"84\", \"service\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => "},{"event":"cmd_output","timestamp":1607098455,"output":"\"f3f7b7a1-a821-46bd-9275-f22c71b9fe15\", \"working_dir\" => \".semaphore/change_in\"}\n\u001b[0m\u001b[22m\n16:14:1"},{"event":"cmd_output","timestamp":1607098455,"output":"5.492 [info] ppl_id: 5a2cdaa3-a73a-487d-b18e-df41f064fdf9, type: PplRequests, event: persisted sche"},{"event":"cmd_output","timestamp":1607098455,"output":"dule request with request_token: c116f668-364b-11eb-ba25-5254005464e2, origin: Elixir.Ppl.PplRequest"},{"event":"cmd_output","timestamp":1607098455,"output":"s.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:14:15.494 [info] ppl_id: 5a2cda"},{"event":"cmd_output","timestamp":1607098455,"output":"a3-a73a-487d-b18e-df41f064fdf9, type: Ppls, state: initializing, event: initializing, recovery_count"},{"event":"cmd_output","timestamp":1607098455,"output":": 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:14:15.505 ["},{"event":"cmd_output","timestamp":1607098455,"output":"info] Project d654853b-ffda-4bf2-b4c9-0ec56df7c814 and branch one_pathlatest_wf details updated: \"w"},{"event":"cmd_output","timestamp":1607098455,"output":"f_id: f3f7b7a1-a821-46bd-9275-f22c71b9fe15, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:14:15.506 [info] Persisted"},{"event":"cmd_output","timestamp":1607098455,"output":" ppl_sub_init for pipeline with ppl_id: 5a2cdaa3-a73a-487d-b18e-df41f064fdf9: %Ppl.PplSubInits.Model"},{"event":"cmd_output","timestamp":1607098455,"output":".PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, e"},{"event":"cmd_output","timestamp":1607098455,"output":"rror_description: nil, id: 324, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-"},{"event":"cmd_output","timestamp":1607098455,"output":"04 16:14:15.505187], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"5a2cdaa3-a73a-487d-b18e-df41f064fdf9\", recovery_count: 0, result: nil, resul"},{"event":"cmd_output","timestamp":1607098455,"output":"t_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N"},{"event":"cmd_output","timestamp":1607098455,"output":"[2020-12-04 16:14:15.505192]}\n\u001b[0m\u001b[22m\n16:14:15.515 [info] ppl_id: 5a2cdaa3-a73a-487d-b18e-df41f"},{"event":"cmd_output","timestamp":1607098455,"output":"064fdf9, type: PplRequests, event: persisted source_args for pipeline: 5a2cdaa3-a73a-487d-b18e-df41f"},{"event":"cmd_output","timestamp":1607098455,"output":"064fdf9, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098455,"output":"16:14:15.520 [info] ppl_id: 5a2cdaa3-a73a-487d-b18e-df41f064fdf9, type: PplSubInits, state: fetchin"},{"event":"cmd_output","timestamp":1607098455,"output":"g, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90)"},{"event":"cmd_output","timestamp":1607098455,"output":", \n\u001b[0m\u001b[22m\n16:14:15.537 [info] ppl_id: 5a2cdaa3-a73a-487d-b18e-df41f064fdf9, type: PplSubInits,"},{"event":"cmd_output","timestamp":1607098455,"output":" state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_"},{"event":"cmd_output","timestamp":1607098455,"output":"state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:15.552 [info] ppl_id: 5a2cdaa3-a73a-487d-b18e-df41f064fdf9,"},{"event":"cmd_output","timestamp":1607098455,"output":" type: PplRequests, event: persisted definition for request with request_token: c116f668-364b-11eb-b"},{"event":"cmd_output","timestamp":1607098455,"output":"a25-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), "},{"event":"cmd_output","timestamp":1607098455,"output":"\n\u001b[0m\u001b[22m\n16:14:15.555 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Sc"},{"event":"cmd_output","timestamp":1607098455,"output":"hema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:14:15.553882], name: \"one_path-.sema"},{"event":"cmd_output","timestamp":1607098455,"output":"phore/change_in/one_path.yml\", organization_id: \"742c64ab-6b15-4599-9ee5-b97d52815e8d\", project_id: "},{"event":"cmd_output","timestamp":1607098455,"output":"\"d654853b-ffda-4bf2-b4c9-0ec56df7c814\", queue_id: \"926564f4-d7c6-4a31-bf67-829e82bac7ac\", scope: \"pr"},{"event":"cmd_output","timestamp":1607098455,"output":"oject\", updated_at: ~N[2020-12-04 16:14:15.553905], user_generated: false}}\n\u001b[0m\u001b[22m\n16:14:15.559"},{"event":"cmd_output","timestamp":1607098455,"output":" [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105),"},{"event":"cmd_output","timestamp":1607098455,"output":" \n\u001b[0m\u001b[22m\n16:14:15.559 [info] ppl_id: 5a2cdaa3-a73a-487d-b18e-df41f064fdf9, type: PplBlocks, bl"},{"event":"cmd_output","timestamp":1607098455,"output":"ock_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits"},{"event":"cmd_output","timestamp":1607098455,"output":".STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:15.563 [info] ppl_id: 5a2cdaa3-a73"},{"event":"cmd_output","timestamp":1607098455,"output":"a-487d-b18e-df41f064fdf9, type: PplSubInits, state: done, result: passed, event: exit_scheduling, re"},{"event":"cmd_output","timestamp":1607098455,"output":"covery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:15.569 ["},{"event":"cmd_output","timestamp":1607098455,"output":"info] ppl_id: 5a2cdaa3-a73a-487d-b18e-df41f064fdf9, type: PplBlocks, block_index: 0, state: waiting"},{"event":"cmd_output","timestamp":1607098455,"output":", event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90),"},{"event":"cmd_output","timestamp":1607098455,"output":" \n\u001b[0m\u001b[22m\n16:14:15.570 [info] ppl_id: 5a2cdaa3-a73a-487d-b18e-df41f064fdf9, type: Ppls, state: "},{"event":"cmd_output","timestamp":1607098455,"output":"pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/"},{"event":"cmd_output","timestamp":1607098455,"output":"1(L90), \n\u001b[0m\u001b[22m\n16:14:15.580 [info] ppl_id: 5a2cdaa3-a73a-487d-b18e-df41f064fdf9, type: Ppls, "},{"event":"cmd_output","timestamp":1607098455,"output":"state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_"},{"event":"cmd_output","timestamp":1607098455,"output":"change/1(L90), \n\u001b[0m\u001b[22m\n16:14:15.593 [info] ppl_id: 5a2cdaa3-a73a-487d-b18e-df41f064fdf9, type:"},{"event":"cmd_output","timestamp":1607098455,"output":" Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098455,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:15.598 [info] PplBlocks WaitingState STM is scheduling blo"},{"event":"cmd_output","timestamp":1607098455,"output":"ck 0 from pipeline: \"5a2cdaa3-a73a-487d-b18e-df41f064fdf9\"\n\u001b[0m\u001b[22m\n16:14:15.604 [info] ppl_id: "},{"event":"cmd_output","timestamp":1607098455,"output":"5a2cdaa3-a73a-487d-b18e-df41f064fdf9, type: PplBlocks, block_index: 0, state: done, result: passed, "},{"event":"cmd_output","timestamp":1607098455,"output":"event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \r"},{"event":"cmd_output","timestamp":1607098455,"output":"\n\u001b[0m\u001b[22m\n16:14:15.613 [info] ppl_id: 5a2cdaa3-a73a-487d-b18e-df41f064fdf9, type: Ppls, state: do"},{"event":"cmd_output","timestamp":1607098455,"output":"ne, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_st"},{"event":"cmd_output","timestamp":1607098455,"output":"ate_change/1(L90), \n\u001b[0m\u001b[32m\r * test change_in with string as first param is processed correctly "},{"event":"cmd_output","timestamp":1607098455,"output":"(275.4ms)\u001b[0m\n * test change_in behaves differently for tags when on_tag config is changed\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098455,"output":"6:14:15.763 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingState with name Elix"},{"event":"cmd_output","timestamp":1607098455,"output":"ir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\""},{"event":"cmd_output","timestamp":1607098455,"output":"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"pendin"},{"event":"cmd_output","timestamp":1607098455,"output":"g\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\""},{"event":"cmd_output","timestamp":1607098455,"output":", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl."},{"event":"cmd_output","timestamp":1607098455,"output":"EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_i"},{"event":"cmd_output","timestamp":1607098455,"output":"d], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:15.763 [info] Periodic f"},{"event":"cmd_output","timestamp":1607098455,"output":"rom module Elixir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler.PendingState"},{"event":"cmd_output","timestamp":1607098455,"output":" :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, rec"},{"event":"cmd_output","timestamp":1607098455,"output":"urring args: %{allowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_sec: 0, initi"},{"event":"cmd_output","timestamp":1607098455,"output":"al_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publisher_cb: #Function<0.8493005/1 in Ppl"},{"event":"cmd_output","timestamp":1607098455,"output":".Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :upd"},{"event":"cmd_output","timestamp":1607098455,"output":"ated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: P"},{"event":"cmd_output","timestamp":1607098455,"output":"plsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:14:15.763 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler."},{"event":"cmd_output","timestamp":1607098455,"output":"QueuingState with name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, metric_name: {\"Ppl"},{"event":"cmd_output","timestamp":1607098455,"output":".beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{allowed_states: [\"queui"},{"event":"cmd_output","timestamp":1607098455,"output":"ng\", \"running\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \""},{"event":"cmd_output","timestamp":1607098455,"output":"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.args/0>, repo: P"},{"event":"cmd_output","timestamp":1607098455,"output":"pl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :pp"},{"event":"cmd_output","timestamp":1607098455,"output":"l_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:15.764 [info] Periodi"},{"event":"cmd_output","timestamp":1607098455,"output":"c from module Elixir.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHandler.RunningSt"},{"event":"cmd_output","timestamp":1607098455,"output":"ate :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, "},{"event":"cmd_output","timestamp":1607098455,"output":"recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_que"},{"event":"cmd_output","timestamp":1607098455,"output":"ry: Ppl.Ppls.Model.Ppls, observed_state: \"running\", publisher_cb: #Function<0.74670282/1 in Ppl.Ppls"},{"event":"cmd_output","timestamp":1607098455,"output":".STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_"},{"event":"cmd_output","timestamp":1607098455,"output":"at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTa"},{"event":"cmd_output","timestamp":1607098455,"output":"skSupervisor}\n\u001b[0m\u001b[22m\n16:14:15.764 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.Stopp"},{"event":"cmd_output","timestamp":1607098455,"output":"ingState with name Elixir.Ppl.Ppls.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.be"},{"event":"cmd_output","timestamp":1607098455,"output":"holder-wake_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stoppin"},{"event":"cmd_output","timestamp":1607098455,"output":"g\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"stopping\", p"},{"event":"cmd_output","timestamp":1607098455,"output":"ublisher_cb: #Function<0.71803493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo"},{"event":"cmd_output","timestamp":1607098455,"output":", returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], sche"},{"event":"cmd_output","timestamp":1607098455,"output":"ma: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:15.764 [info] Periodic from modu"},{"event":"cmd_output","timestamp":1607098455,"output":"le Elixir.Ppl.PplSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHandler.Create"},{"event":"cmd_output","timestamp":1607098455,"output":"dState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-Created"},{"event":"cmd_output","timestamp":1607098455,"output":"State\"]}, recurring args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query"},{"event":"cmd_output","timestamp":1607098455,"output":": Ppl.PplSubInits.Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoR"},{"event":"cmd_output","timestamp":1607098455,"output":"epo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], s"},{"event":"cmd_output","timestamp":1607098455,"output":"chema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:15.765 [info] P"},{"event":"cmd_output","timestamp":1607098455,"output":"eriodic from module Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl.PplSubInits"},{"event":"cmd_output","timestamp":1607098455,"output":".STMHandler.FetchingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits"},{"event":"cmd_output","timestamp":1607098455,"output":"-STMHandler-FetchingState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"don"},{"event":"cmd_output","timestamp":1607098455,"output":"e\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fetchi"},{"event":"cmd_output","timestamp":1607098455,"output":"ng\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :sta"},{"event":"cmd_output","timestamp":1607098455,"output":"te, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: "},{"event":"cmd_output","timestamp":1607098455,"output":":skip}\n\u001b[0m\u001b[22m\n16:14:15.765 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.Compi"},{"event":"cmd_output","timestamp":1607098455,"output":"lationState with name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 100 ms, metric_n"},{"event":"cmd_output","timestamp":1607098455,"output":"ame: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurring args: %{al"},{"event":"cmd_output","timestamp":1607098455,"output":"lowed_states: [\"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_que"},{"event":"cmd_output","timestamp":1607098455,"output":"ry: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"compilation\", publisher_cb: :skip, repo: Ppl"},{"event":"cmd_output","timestamp":1607098455,"output":".EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_"},{"event":"cmd_output","timestamp":1607098455,"output":"id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:15.765 [in"},{"event":"cmd_output","timestamp":1607098455,"output":"fo] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with name Elixir.Ppl.Pp"},{"event":"cmd_output","timestamp":1607098455,"output":"lSubInits.STMHandler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl"},{"event":"cmd_output","timestamp":1607098455,"output":"-PplSubInits-STMHandler-RegularInitState\"]}, recurring args: %{allowed_states: [\"done\"], cooling_tim"},{"event":"cmd_output","timestamp":1607098455,"output":"e_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_init\", publishe"},{"event":"cmd_output","timestamp":1607098455,"output":"r_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, "},{"event":"cmd_output","timestamp":1607098455,"output":":recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098455,"output":"[22m\n16:14:15.766 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.InitializingState wi"},{"event":"cmd_output","timestamp":1607098455,"output":"th name Elixir.Ppl.PplBlocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beho"},{"event":"cmd_output","timestamp":1607098455,"output":"lder-wake_up\", [\"Ppl-PplBlocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\""},{"event":"cmd_output","timestamp":1607098455,"output":"initializing\", \"waiting\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks"},{"event":"cmd_output","timestamp":1607098455,"output":", observed_state: \"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :termina"},{"event":"cmd_output","timestamp":1607098455,"output":"te_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBl"},{"event":"cmd_output","timestamp":1607098455,"output":"ocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:15.766 [info] Periodic from module "},{"event":"cmd_output","timestamp":1607098455,"output":"Elixir.Ppl.PplBlocks.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler.WaitingState "},{"event":"cmd_output","timestamp":1607098455,"output":":: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}"},{"event":"cmd_output","timestamp":1607098455,"output":", recurring args: %{allowed_states: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 0, initial_que"},{"event":"cmd_output","timestamp":1607098455,"output":"ry: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"waiting\", publisher_cb: #Function<0.8975022/1 in"},{"event":"cmd_output","timestamp":1607098455,"output":" Ppl.PplBlocks.STMHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_requ"},{"event":"cmd_output","timestamp":1607098455,"output":"est, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Mo"},{"event":"cmd_output","timestamp":1607098455,"output":"del.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:15.767 [info] Periodic from module Elixir."},{"event":"cmd_output","timestamp":1607098455,"output":"Ppl.PplBlocks.STMHandler.RunningState with name Elixir.Ppl.PplBlocks.STMHandler.RunningState :: peri"},{"event":"cmd_output","timestamp":1607098455,"output":"od: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, recur"},{"event":"cmd_output","timestamp":1607098455,"output":"ring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: P"},{"event":"cmd_output","timestamp":1607098455,"output":"pl.PplBlocks.Model.PplBlocks, observed_state: \"running\", publisher_cb: #Function<0.28166834/1 in Ppl"},{"event":"cmd_output","timestamp":1607098455,"output":".PplBlocks.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request,"},{"event":"cmd_output","timestamp":1607098455,"output":" :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBl"},{"event":"cmd_output","timestamp":1607098455,"output":"ocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:15.767 [info] Periodic from module "},{"event":"cmd_output","timestamp":1607098455,"output":"Elixir.Ppl.PplBlocks.STMHandler.StoppingState with name Elixir.Ppl.PplBlocks.STMHandler.StoppingStat"},{"event":"cmd_output","timestamp":1607098455,"output":"e :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-StoppingState"},{"event":"cmd_output","timestamp":1607098455,"output":"\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Pp"},{"event":"cmd_output","timestamp":1607098455,"output":"l.PplBlocks.Model.PplBlocks, observed_state: \"stopping\", publisher_cb: #Function<0.104215991/1 in Pp"},{"event":"cmd_output","timestamp":1607098455,"output":"l.PplBlocks.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_reques"},{"event":"cmd_output","timestamp":1607098455,"output":"t, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098455,"output":"Blocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:15.767 [info] Periodic from modul"},{"event":"cmd_output","timestamp":1607098455,"output":"e Elixir.Block.Blocks.STMHandler.InitializingState with name Elixir.Block.Blocks.STMHandler.Initiali"},{"event":"cmd_output","timestamp":1607098455,"output":"zingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-Initial"},{"event":"cmd_output","timestamp":1607098455,"output":"izingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_q"},{"event":"cmd_output","timestamp":1607098455,"output":"uery: Block.Blocks.Model.Blocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Block.Ec"},{"event":"cmd_output","timestamp":1607098455,"output":"toRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schem"},{"event":"cmd_output","timestamp":1607098455,"output":"a: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:15.768 [info] Periodic from"},{"event":"cmd_output","timestamp":1607098455,"output":" module Elixir.Block.Blocks.STMHandler.RunningState with name Elixir.Block.Blocks.STMHandler.Running"},{"event":"cmd_output","timestamp":1607098455,"output":"State :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-RunningStat"},{"event":"cmd_output","timestamp":1607098455,"output":"e\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initi"},{"event":"cmd_output","timestamp":1607098455,"output":"al_query: Block.Blocks.Model.Blocks, observed_state: \"running\", publisher_cb: :skip, repo: Block.Ect"},{"event":"cmd_output","timestamp":1607098455,"output":"oRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema"},{"event":"cmd_output","timestamp":1607098455,"output":": Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:15.768 [info] Periodic from "},{"event":"cmd_output","timestamp":1607098455,"output":"module Elixir.Block.Blocks.STMHandler.StoppingState with name Elixir.Block.Blocks.STMHandler.Stoppin"},{"event":"cmd_output","timestamp":1607098455,"output":"gState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-StoppingSt"},{"event":"cmd_output","timestamp":1607098455,"output":"ate\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query:"},{"event":"cmd_output","timestamp":1607098455,"output":" Block.Blocks.Model.Blocks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, r"},{"event":"cmd_output","timestamp":1607098455,"output":"eturning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block."},{"event":"cmd_output","timestamp":1607098455,"output":"Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:15.768 [info] Periodic from module E"},{"event":"cmd_output","timestamp":1607098455,"output":"lixir.Block.Tasks.STMHandler.PendingState with name Elixir.Block.Tasks.STMHandler.PendingState :: pe"},{"event":"cmd_output","timestamp":1607098455,"output":"riod: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingState\"]}, recurr"},{"event":"cmd_output","timestamp":1607098455,"output":"ing args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Tasks.Mod"},{"event":"cmd_output","timestamp":1607098455,"output":"el.Tasks, observed_state: \"pending\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :te"},{"event":"cmd_output","timestamp":1607098455,"output":"rminate_request, :updated_at, :state, :recovery_count, :block_id, :build_request_id], schema: Block."},{"event":"cmd_output","timestamp":1607098455,"output":"Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:15.769 [info] Periodic from module Eli"},{"event":"cmd_output","timestamp":1607098455,"output":"xir.Block.Tasks.STMHandler.RunningState with name Elixir.Block.Tasks.STMHandler.RunningState :: peri"},{"event":"cmd_output","timestamp":1607098455,"output":"od: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningState\"]}, recurrin"},{"event":"cmd_output","timestamp":1607098455,"output":"g args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Bloc"},{"event":"cmd_output","timestamp":1607098455,"output":"k.Tasks.Model.Tasks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning"},{"event":"cmd_output","timestamp":1607098455,"output":": [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Mo"},{"event":"cmd_output","timestamp":1607098455,"output":"del.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:15.769 [info] Periodic from module Elixir.Bloc"},{"event":"cmd_output","timestamp":1607098455,"output":"k.Tasks.STMHandler.StoppingState with name Elixir.Block.Tasks.STMHandler.StoppingState :: period: 10"},{"event":"cmd_output","timestamp":1607098455,"output":"0 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]}, recurring arg"},{"event":"cmd_output","timestamp":1607098455,"output":"s: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Ta"},{"event":"cmd_output","timestamp":1607098455,"output":"sks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :termin"},{"event":"cmd_output","timestamp":1607098455,"output":"ate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task"},{"event":"cmd_output","timestamp":1607098455,"output":"_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:15.774 [info] Request: 'run: %{\"branch_id\" => \"8db635a3-92ad-"},{"event":"cmd_output","timestamp":1607098455,"output":"490f-8f1a-f6acfbe51a8c\", \"branch_name\" => \"refs/tags/v1.0\", \"commit_sha\" => \"75891a4469\", \"file_name"},{"event":"cmd_output","timestamp":1607098455,"output":"\" => \"config_on_tags.yml\", \"hook_id\" => \"tag\", \"label\" => \"v1.0\", \"organization_id\" => \"092046f8-f87"},{"event":"cmd_output","timestamp":1607098455,"output":"f-4a18-9076-5f29fdb68635\", \"owner\" => \"rt\", \"project_id\" => \"82b787f2-b97f-450b-badc-06b6f81489c5\", "},{"event":"cmd_output","timestamp":1607098455,"output":"\"repo_name\" => \"22_skip_block\", \"request_token\" => \"c141e256-364b-11eb-ae39-5254005464e2\", \"requeste"},{"event":"cmd_output","timestamp":1607098455,"output":"r_id\" => \"753b3dff-1cff-4a36-960b-4239625b4b2c\", \"service\" => \"local\", \"suppressed_attributes\" => [\""},{"event":"cmd_output","timestamp":1607098455,"output":"access_token\", \"client_secret\"], \"wf_id\" => \"059fe904-a14f-47ed-ad57-cafbb3b8ee8a\", \"working_dir\" =>"},{"event":"cmd_output","timestamp":1607098455,"output":" \".semaphore/change_in\"}\n\u001b[0m\u001b[22m\n16:14:15.777 [info] ppl_id: 68a5496f-b384-464b-a743-44b6b09461"},{"event":"cmd_output","timestamp":1607098455,"output":"9d, type: PplRequests, event: persisted schedule request with request_token: c141e256-364b-11eb-ae39"},{"event":"cmd_output","timestamp":1607098455,"output":"-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b["},{"event":"cmd_output","timestamp":1607098455,"output":"0m\u001b[22m\n16:14:15.779 [info] ppl_id: 68a5496f-b384-464b-a743-44b6b094619d, type: Ppls, state: initi"},{"event":"cmd_output","timestamp":1607098455,"output":"alizing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_r"},{"event":"cmd_output","timestamp":1607098455,"output":"esponse/2(L124), \n\u001b[0m\u001b[22m\n16:14:15.783 [info] Project 82b787f2-b97f-450b-badc-06b6f81489c5 and "},{"event":"cmd_output","timestamp":1607098455,"output":"tag v1.0latest_wf details updated: \"wf_id: 059fe904-a14f-47ed-ad57-cafbb3b8ee8a, wf_number: 1\"\n\u001b[0m"},{"event":"cmd_output","timestamp":1607098455,"output":"\u001b[22m\n16:14:15.785 [info] Persisted ppl_sub_init for pipeline with ppl_id: 68a5496f-b384-464b-a743"},{"event":"cmd_output","timestamp":1607098455,"output":"-44b6b094619d: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline"},{"event":"cmd_output","timestamp":1607098455,"output":"_sub_inits\">, compile_task_id: nil, error_description: nil, id: 325, in_scheduling: false, init_type"},{"event":"cmd_output","timestamp":1607098455,"output":": \"regular\", inserted_at: ~N[2020-12-04 16:14:15.783813], pipeline_requests: #Ecto.Association.NotLo"},{"event":"cmd_output","timestamp":1607098455,"output":"aded, ppl_id: \"68a5496f-b384-464b-a743-44b6b094619d\", "},{"event":"cmd_output","timestamp":1607098455,"output":"recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, termin"},{"event":"cmd_output","timestamp":1607098455,"output":"ate_request_desc: nil, updated_at: ~N[2020-12-04 16:14:15.783819]}\n\u001b[0m\u001b[22m\n16:14:15.794 [info] "},{"event":"cmd_output","timestamp":1607098455,"output":"ppl_id: 68a5496f-b384-464b-a743-44b6b094619d, type: PplRequests, event: persisted source_args for pi"},{"event":"cmd_output","timestamp":1607098455,"output":"peline: 68a5496f-b384-464b-a743-44b6b094619d, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQuerie"},{"event":"cmd_output","timestamp":1607098455,"output":"s.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:14:15.797 [info] ppl_id: 68a5496f-b384-464b-a743-44b6b09461"},{"event":"cmd_output","timestamp":1607098455,"output":"9d, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Lo"},{"event":"cmd_output","timestamp":1607098455,"output":"oper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:15.815 [info] ppl_id: 68a5496f-b384-464b-"},{"event":"cmd_output","timestamp":1607098455,"output":"a743-44b6b094619d, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0"},{"event":"cmd_output","timestamp":1607098455,"output":", origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:15.838 [info] ppl_id: "},{"event":"cmd_output","timestamp":1607098455,"output":"68a5496f-b384-464b-a743-44b6b094619d, type: PplRequests, event: persisted definition for request wit"},{"event":"cmd_output","timestamp":1607098455,"output":"h request_token: c141e256-364b-11eb-ae39-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplReque"},{"event":"cmd_output","timestamp":1607098455,"output":"stsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:14:15.841 [info] Queue persisted: {:ok, %Ppl.Q"},{"event":"cmd_output","timestamp":1607098455,"output":"ueues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16"},{"event":"cmd_output","timestamp":1607098455,"output":":14:15.840450], name: \"v1.0-.semaphore/change_in/config_on_tags.yml\", organization_id: \"092046f8-f87"},{"event":"cmd_output","timestamp":1607098455,"output":"f-4a18-9076-5f29fdb68635\", project_id: \"82b787f2-b97f-450b-badc-06b6f81489c5\", queue_id: \"c7a1c13a-4"},{"event":"cmd_output","timestamp":1607098455,"output":"78e-4603-8e00-6b473346e693\", scope: \"project\", updated_at: ~N[2020-12-04 16:14:15.840458], user_gene"},{"event":"cmd_output","timestamp":1607098455,"output":"rated: false}}\n\u001b[0m\u001b[22m\n16:14:15.845 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHa"},{"event":"cmd_output","timestamp":1607098455,"output":"ndler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:15.845 [info] ppl_id: 68a5496f-b384-464b"},{"event":"cmd_output","timestamp":1607098455,"output":"-a743-44b6b094619d, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_c"},{"event":"cmd_output","timestamp":1607098455,"output":"ount: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098455,"output":":14:15.847 [info] ppl_id: 68a5496f-b384-464b-a743-44b6b094619d, type: PplSubInits, state: done, res"},{"event":"cmd_output","timestamp":1607098455,"output":"ult: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_cha"},{"event":"cmd_output","timestamp":1607098455,"output":"nge/1(L90), \n\u001b[0m\u001b[22m\n16:14:15.852 [info] ppl_id: 68a5496f-b384-464b-a743-44b6b094619d, type: Pp"},{"event":"cmd_output","timestamp":1607098455,"output":"lBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098455,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:15.853 [info] ppl_id: 68a5496f-b384-464b"},{"event":"cmd_output","timestamp":1607098455,"output":"-a743-44b6b094619d, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: E"},{"event":"cmd_output","timestamp":1607098455,"output":"lixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:15.858 [info] ppl_id: 68a5496f-b3"},{"event":"cmd_output","timestamp":1607098455,"output":"84-464b-a743-44b6b094619d, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098455,"output":"igin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:15.864 [info] ppl_id: 68a5"},{"event":"cmd_output","timestamp":1607098455,"output":"496f-b384-464b-a743-44b6b094619d, type: Ppls, state: running, event: exit_scheduling, recovery_count"},{"event":"cmd_output","timestamp":1607098455,"output":": 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:15.872 [info] PplBl"},{"event":"cmd_output","timestamp":1607098455,"output":"ocks WaitingState STM is scheduling block 0 from pipeline: \"68a5496f-b384-464b-a743-44b6b094619d\"\n\u001b"},{"event":"cmd_output","timestamp":1607098455,"output":"[0m\u001b[22m\n16:14:15.878 [info] ppl_id: 68a5496f-b384-464b-a743-44b6b094619d, type: PplBlocks, block_"},{"event":"cmd_output","timestamp":1607098455,"output":"index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loo"},{"event":"cmd_output","timestamp":1607098455,"output":"per.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:15.888 [info] ppl_id: 68a5496f-b384-464b-a"},{"event":"cmd_output","timestamp":1607098455,"output":"743-44b6b094619d, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0"},{"event":"cmd_output","timestamp":1607098455,"output":", origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test change_in behaves dif"},{"event":"cmd_output","timestamp":1607098455,"output":"ferently for tags when on_tag config is changed (177.4ms)\u001b[0m\n * test change_in does not fail on t"},{"event":"cmd_output","timestamp":1607098455,"output":"ags if on_tag is not present in config map\u001b[22m\n16:14:15.930 [info] Periodic from module Elixir.Pp"},{"event":"cmd_output","timestamp":1607098455,"output":"l.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period"},{"event":"cmd_output","timestamp":1607098455,"output":": 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurrin"},{"event":"cmd_output","timestamp":1607098455,"output":"g args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: P"},{"event":"cmd_output","timestamp":1607098455,"output":"pl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098455,"output":"s.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :up"},{"event":"cmd_output","timestamp":1607098455,"output":"dated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: "},{"event":"cmd_output","timestamp":1607098455,"output":":skip}\n\u001b[0m\u001b[22m\n16:14:15.931 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingState"},{"event":"cmd_output","timestamp":1607098455,"output":" with name Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wa"},{"event":"cmd_output","timestamp":1607098455,"output":"ke_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"pending\", \"queuin"},{"event":"cmd_output","timestamp":1607098455,"output":"g\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pe"},{"event":"cmd_output","timestamp":1607098455,"output":"nding\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.E"},{"event":"cmd_output","timestamp":1607098455,"output":"ctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id"},{"event":"cmd_output","timestamp":1607098455,"output":"], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:14:15.931 [info]"},{"event":"cmd_output","timestamp":1607098455,"output":" Periodic from module Elixir.Ppl.Ppls.STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandler."},{"event":"cmd_output","timestamp":1607098455,"output":"QueuingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingS"},{"event":"cmd_output","timestamp":1607098455,"output":"tate\"]}, recurring args: %{allowed_states: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, ini"},{"event":"cmd_output","timestamp":1607098455,"output":"tial_query: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", publisher_cb: #Function<0.125102843/1 in"},{"event":"cmd_output","timestamp":1607098455,"output":" Ppl.Ppls.STMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, "},{"event":"cmd_output","timestamp":1607098455,"output":":updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_superviso"},{"event":"cmd_output","timestamp":1607098455,"output":"r: :skip}\n\u001b[0m\u001b[22m\n16:14:15.932 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.RunningSt"},{"event":"cmd_output","timestamp":1607098455,"output":"ate with name Elixir.Ppl.Ppls.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder"},{"event":"cmd_output","timestamp":1607098455,"output":"-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"sto"},{"event":"cmd_output","timestamp":1607098455,"output":"pping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"running\""},{"event":"cmd_output","timestamp":1607098455,"output":", publisher_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler.RunningState.args/0>, repo: Ppl.EctoRe"},{"event":"cmd_output","timestamp":1607098455,"output":"po, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], sc"},{"event":"cmd_output","timestamp":1607098455,"output":"hema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:14:15.932 [info] Per"},{"event":"cmd_output","timestamp":1607098455,"output":"iodic from module Elixir.Ppl.Ppls.STMHandler.StoppingState with name Elixir.Ppl.Ppls.STMHandler.Stop"},{"event":"cmd_output","timestamp":1607098455,"output":"pingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-StoppingSta"},{"event":"cmd_output","timestamp":1607098455,"output":"te\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: "},{"event":"cmd_output","timestamp":1607098455,"output":"Ppl.Ppls.Model.Ppls, observed_state: \"stopping\", publisher_cb: #Function<0.71803493/1 in Ppl.Ppls.ST"},{"event":"cmd_output","timestamp":1607098455,"output":"MHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at"},{"event":"cmd_output","timestamp":1607098455,"output":", :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n"},{"event":"cmd_output","timestamp":1607098455,"output":"\u001b[0m\u001b[22m\n16:14:15.932 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedState "},{"event":"cmd_output","timestamp":1607098455,"output":"with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.behol"},{"event":"cmd_output","timestamp":1607098455,"output":"der-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args: %{allowed_states: [\"fetc"},{"event":"cmd_output","timestamp":1607098455,"output":"hing\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_stat"},{"event":"cmd_output","timestamp":1607098455,"output":"e: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated"},{"event":"cmd_output","timestamp":1607098455,"output":"_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_sup"},{"event":"cmd_output","timestamp":1607098455,"output":"ervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:15.932 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHand"},{"event":"cmd_output","timestamp":1607098455,"output":"ler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 ms, metri"},{"event":"cmd_output","timestamp":1607098455,"output":"c_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %{al"},{"event":"cmd_output","timestamp":1607098455,"output":"lowed_states: [\"regular_init\", \"compilation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplS"},{"event":"cmd_output","timestamp":1607098455,"output":"ubInits.Model.PplSubInits, observed_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, retu"},{"event":"cmd_output","timestamp":1607098455,"output":"rning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Pp"},{"event":"cmd_output","timestamp":1607098455,"output":"l.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:15.932 [info] Periodic f"},{"event":"cmd_output","timestamp":1607098455,"output":"rom module Elixir.Ppl.PplSubInits.STMHandler.CompilationState with name Elixir.Ppl.PplSubInits.STMHa"},{"event":"cmd_output","timestamp":1607098455,"output":"ndler.CompilationState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-ST"},{"event":"cmd_output","timestamp":1607098455,"output":"MHandler-CompilationState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"sto"},{"event":"cmd_output","timestamp":1607098455,"output":"pping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_st"},{"event":"cmd_output","timestamp":1607098455,"output":"ate: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :u"},{"event":"cmd_output","timestamp":1607098455,"output":"pdated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, ta"},{"event":"cmd_output","timestamp":1607098455,"output":"sk_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:15.932 [info] Periodic from module Elixir.Ppl.PplSubInits.S"},{"event":"cmd_output","timestamp":1607098455,"output":"TMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period: 1"},{"event":"cmd_output","timestamp":1607098455,"output":"00 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recur"},{"event":"cmd_output","timestamp":1607098455,"output":"ring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.Ppl"},{"event":"cmd_output","timestamp":1607098455,"output":"SubInits, observed_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, "},{"event":"cmd_output","timestamp":1607098455,"output":":terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits"},{"event":"cmd_output","timestamp":1607098455,"output":".Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:15.932 [info] Periodic from module El"},{"event":"cmd_output","timestamp":1607098455,"output":"ixir.Ppl.PplBlocks.STMHandler.InitializingState with name Elixir.Ppl.PplBlocks.STMHandler.Initializi"},{"event":"cmd_output","timestamp":1607098455,"output":"ngState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-Initiali"},{"event":"cmd_output","timestamp":1607098455,"output":"zingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"waiting\", \"done\"], cooling_time_se"},{"event":"cmd_output","timestamp":1607098455,"output":"c: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"initializing\", publisher_cb: :s"},{"event":"cmd_output","timestamp":1607098455,"output":"kip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recover"},{"event":"cmd_output","timestamp":1607098455,"output":"y_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0"},{"event":"cmd_output","timestamp":1607098455,"output":"m\u001b[22m\n16:14:15.932 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.WaitingState with "},{"event":"cmd_output","timestamp":1607098455,"output":"name Elixir.Ppl.PplBlocks.STMHandler.WaitingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wa"},{"event":"cmd_output","timestamp":1607098455,"output":"ke_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurring args: %{allowed_states: [\"waiting\", \"r"},{"event":"cmd_output","timestamp":1607098455,"output":"unning\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state:"},{"event":"cmd_output","timestamp":1607098455,"output":" \"waiting\", publisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>, re"},{"event":"cmd_output","timestamp":1607098455,"output":"po: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count"},{"event":"cmd_output","timestamp":1607098455,"output":", :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098455,"output":"\n16:14:15.932 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.RunningState with name El"},{"event":"cmd_output","timestamp":1607098455,"output":"ixir.Ppl.PplBlocks.STMHandler.RunningState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\","},{"event":"cmd_output","timestamp":1607098455,"output":" [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping"},{"event":"cmd_output","timestamp":1607098455,"output":"\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"run"},{"event":"cmd_output","timestamp":1607098455,"output":"ning\", publisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0>, repo: "},{"event":"cmd_output","timestamp":1607098455,"output":"Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :p"},{"event":"cmd_output","timestamp":1607098455,"output":"pl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0"},{"event":"cmd_output","timestamp":1607098455,"output":"m\u001b[22m\n16:14:15.932 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.StoppingState with"},{"event":"cmd_output","timestamp":1607098455,"output":" name Elixir.Ppl.PplBlocks.STMHandler.StoppingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-"},{"event":"cmd_output","timestamp":1607098455,"output":"wake_up\", [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\""},{"event":"cmd_output","timestamp":1607098455,"output":", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"stop"},{"event":"cmd_output","timestamp":1607098455,"output":"ping\", publisher_cb: #Function<0.104215991/1 in Ppl.PplBlocks.STMHandler.StoppingState.args/0>, repo"},{"event":"cmd_output","timestamp":1607098455,"output":": Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, "},{"event":"cmd_output","timestamp":1607098455,"output":":ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b"},{"event":"cmd_output","timestamp":1607098455,"output":"[0m\u001b[22m\n16:14:15.933 [info] Periodic from module Elixir.Block.Blocks.STMHandler.InitializingState"},{"event":"cmd_output","timestamp":1607098455,"output":" with name Elixir.Block.Blocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.be"},{"event":"cmd_output","timestamp":1607098455,"output":"holder-wake_up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: ["},{"event":"cmd_output","timestamp":1607098455,"output":"\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Blocks.Model.Blocks, observed_state: \""},{"event":"cmd_output","timestamp":1607098455,"output":"initializing\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :upda"},{"event":"cmd_output","timestamp":1607098455,"output":"ted_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :sk"},{"event":"cmd_output","timestamp":1607098455,"output":"ip}\n\u001b[0m\u001b[22m\n16:14:15.933 [info] Periodic from module Elixir.Block.Blocks.STMHandler.RunningStat"},{"event":"cmd_output","timestamp":1607098455,"output":"e with name Elixir.Block.Blocks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.behold"},{"event":"cmd_output","timestamp":1607098455,"output":"er-wake_up\", [\"Block-Blocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\""},{"event":"cmd_output","timestamp":1607098455,"output":", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_stat"},{"event":"cmd_output","timestamp":1607098455,"output":"e: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updat"},{"event":"cmd_output","timestamp":1607098455,"output":"ed_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :ski"},{"event":"cmd_output","timestamp":1607098455,"output":"p}\n\u001b[0m\u001b[22m\n16:14:15.933 [info] Periodic from module Elixir.Block.Blocks.STMHandler.StoppingStat"},{"event":"cmd_output","timestamp":1607098455,"output":"e with name Elixir.Block.Blocks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.behol"},{"event":"cmd_output","timestamp":1607098455,"output":"der-wake_up\", [\"Block-Blocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stoppi"},{"event":"cmd_output","timestamp":1607098455,"output":"ng\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"stopp"},{"event":"cmd_output","timestamp":1607098455,"output":"ing\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :"},{"event":"cmd_output","timestamp":1607098455,"output":"state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m"},{"event":"cmd_output","timestamp":1607098455,"output":"\u001b[22m\n16:14:15.933 [info] Periodic from module Elixir.Block.Tasks.STMHandler.PendingState with nam"},{"event":"cmd_output","timestamp":1607098455,"output":"e Elixir.Block.Tasks.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\""},{"event":"cmd_output","timestamp":1607098455,"output":", [\"Block-Tasks-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], c"},{"event":"cmd_output","timestamp":1607098455,"output":"ooling_time_sec: 0, initial_query: Block.Tasks.Model.Tasks, observed_state: \"pending\", publisher_cb:"},{"event":"cmd_output","timestamp":1607098455,"output":" :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_co"},{"event":"cmd_output","timestamp":1607098455,"output":"unt, :block_id, :build_request_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098455,"output":"22m\n16:14:15.933 [info] Periodic from module Elixir.Block.Tasks.STMHandler.RunningState with name "},{"event":"cmd_output","timestamp":1607098455,"output":"Elixir.Block.Tasks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", "},{"event":"cmd_output","timestamp":1607098455,"output":"[\"Block-Tasks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", "},{"event":"cmd_output","timestamp":1607098455,"output":"\"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"running\", pu"},{"event":"cmd_output","timestamp":1607098455,"output":"blisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :"},{"event":"cmd_output","timestamp":1607098455,"output":"recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098455,"output":"14:15.933 [info] Periodic from module Elixir.Block.Tasks.STMHandler.StoppingState with name Elixir."},{"event":"cmd_output","timestamp":1607098455,"output":"Block.Tasks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Bloc"},{"event":"cmd_output","timestamp":1607098455,"output":"k-Tasks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling"},{"event":"cmd_output","timestamp":1607098455,"output":"_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"stopping\", publisher_cb: :sk"},{"event":"cmd_output","timestamp":1607098455,"output":"ip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count,"},{"event":"cmd_output","timestamp":1607098455,"output":" :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:15.941 [info"},{"event":"cmd_output","timestamp":1607098455,"output":"] Request: 'run: %{\"branch_id\" => \"f0a68aaa-5f73-4c18-beb8-27603a3fde96\", \"branch_name\" => \"refs/ta"},{"event":"cmd_output","timestamp":1607098455,"output":"gs/v1.0\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"config_default_range.yml\", \"hook_id\" => \"tag"},{"event":"cmd_output","timestamp":1607098455,"output":"\", \"label\" => \"v1.0\", \"organization_id\" => \"9bdc1b48-e4db-46ab-8a18-d954970578db\", \"owner\" => \"rt\", "},{"event":"cmd_output","timestamp":1607098455,"output":"\"project_id\" => \"6d1aa790-4904-4a58-8c6d-5cd3c89b8dfd\", \"repo_name\" => \"22_skip_block\", \"request_tok"},{"event":"cmd_output","timestamp":1607098455,"output":"en\" => \"c15ae29c-364b-11eb-82d9-5254005464e2\", \"requester_id\" => \"d6b60158-28d8-49da-8a06-86b0729758"},{"event":"cmd_output","timestamp":1607098455,"output":"7d\", \"service\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => "},{"event":"cmd_output","timestamp":1607098455,"output":"\"78412393-460d-4c5a-8272-d2ff525eeb9e\", \"working_dir\" => \".semaphore/change_in\"}\n\u001b[0m\u001b[22m\n16:14:1"},{"event":"cmd_output","timestamp":1607098455,"output":"5.944 [info] ppl_id: 14461f78-ee40-4832-ac67-8162a2bee7cd, type: PplRequests, event: persisted sche"},{"event":"cmd_output","timestamp":1607098455,"output":"dule request with request_token: c15ae29c-364b-11eb-82d9-5254005464e2, origin: Elixir.Ppl.PplRequest"},{"event":"cmd_output","timestamp":1607098455,"output":"s.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:14:15.946 [info] ppl_id: 14461f"},{"event":"cmd_output","timestamp":1607098455,"output":"78-ee40-4832-ac67-8162a2bee7cd, type: Ppls, state: initializing, event: initializing, recovery_count"},{"event":"cmd_output","timestamp":1607098455,"output":": 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:14:15.949 ["},{"event":"cmd_output","timestamp":1607098455,"output":"info] Project 6d1aa790-4904-4a58-8c6d-5cd3c89b8dfd and tag v1.0latest_wf details updated: \"wf_id: 7"},{"event":"cmd_output","timestamp":1607098455,"output":"8412393-460d-4c5a-8272-d2ff525eeb9e, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:14:15.950 [info] Persisted ppl_su"},{"event":"cmd_output","timestamp":1607098455,"output":"b_init for pipeline with ppl_id: 14461f78-ee40-4832-ac67-8162a2bee7cd: %Ppl.PplSubInits.Model.PplSub"},{"event":"cmd_output","timestamp":1607098455,"output":"Inits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_de"},{"event":"cmd_output","timestamp":1607098455,"output":"scription: nil, id: 326, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:1"},{"event":"cmd_output","timestamp":1607098455,"output":"4:15.949425], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"14461f78-ee40-4832-ac67-8162a2bee7cd\", recovery_count: 0, result: nil, result_reaso"},{"event":"cmd_output","timestamp":1607098455,"output":"n: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-1"},{"event":"cmd_output","timestamp":1607098455,"output":"2-04 16:14:15.949431]}\n\u001b[0m\u001b[22m\n16:14:15.961 [info] ppl_id: 14461f78-ee40-4832-ac67-8162a2bee7cd"},{"event":"cmd_output","timestamp":1607098455,"output":", type: PplRequests, event: persisted source_args for pipeline: 14461f78-ee40-4832-ac67-8162a2bee7cd"},{"event":"cmd_output","timestamp":1607098455,"output":", origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:14:1"},{"event":"cmd_output","timestamp":1607098455,"output":"5.963 [info] ppl_id: 14461f78-ee40-4832-ac67-8162a2bee7cd, type: PplSubInits, state: fetching, even"},{"event":"cmd_output","timestamp":1607098455,"output":"t: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098455,"output":"m\u001b[22m\n16:14:15.987 [info] ppl_id: 14461f78-ee40-4832-ac67-8162a2bee7cd, type: PplSubInits, state:"},{"event":"cmd_output","timestamp":1607098455,"output":" regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098456,"output":"hange/1(L90), \n\u001b[0m\u001b[22m\n16:14:16.006 [info] ppl_id: 14461f78-ee40-4832-ac67-8162a2bee7cd, type: "},{"event":"cmd_output","timestamp":1607098456,"output":"PplRequests, event: persisted definition for request with request_token: c15ae29c-364b-11eb-82d9-525"},{"event":"cmd_output","timestamp":1607098456,"output":"4005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098456,"output":"[22m\n16:14:16.009 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Me"},{"event":"cmd_output","timestamp":1607098456,"output":"tadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:14:16.008424], name: \"v1.0-.semaphore/chang"},{"event":"cmd_output","timestamp":1607098456,"output":"e_in/config_default_range.yml\", organization_id: \"9bdc1b48-e4db-46ab-8a18-d954970578db\", project_id:"},{"event":"cmd_output","timestamp":1607098456,"output":" \"6d1aa790-4904-4a58-8c6d-5cd3c89b8dfd\", queue_id: \"fa289963-64b4-436e-9eba-88eb8bf74f25\", scope: \"p"},{"event":"cmd_output","timestamp":1607098456,"output":"roject\", updated_at: ~N[2020-12-04 16:14:16.008432], user_generated: false}}\n\u001b[0m\u001b[22m\n16:14:16.01"},{"event":"cmd_output","timestamp":1607098456,"output":"2 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105)"},{"event":"cmd_output","timestamp":1607098456,"output":", \n\u001b[0m\u001b[22m\n16:14:16.012 [info] ppl_id: 14461f78-ee40-4832-ac67-8162a2bee7cd, type: PplBlocks, b"},{"event":"cmd_output","timestamp":1607098456,"output":"lock_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInit"},{"event":"cmd_output","timestamp":1607098456,"output":"s.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:16.014 [info] ppl_id: 14461f78-ee"},{"event":"cmd_output","timestamp":1607098456,"output":"40-4832-ac67-8162a2bee7cd, type: PplSubInits, state: done, result: passed, event: exit_scheduling, r"},{"event":"cmd_output","timestamp":1607098456,"output":"ecovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:16.020 "},{"event":"cmd_output","timestamp":1607098456,"output":"[info] ppl_id: 14461f78-ee40-4832-ac67-8162a2bee7cd, type: PplBlocks, block_index: 0, state: waitin"},{"event":"cmd_output","timestamp":1607098456,"output":"g, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90)"},{"event":"cmd_output","timestamp":1607098456,"output":", \n\u001b[0m\u001b[22m\n16:14:16.021 [info] ppl_id: 14461f78-ee40-4832-ac67-8162a2bee7cd, type: Ppls, state:"},{"event":"cmd_output","timestamp":1607098456,"output":" pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change"},{"event":"cmd_output","timestamp":1607098456,"output":"/1(L90), \n\u001b[0m\u001b[22m\n16:14:16.026 [info] ppl_id: 14461f78-ee40-4832-ac67-8162a2bee7cd, type: Ppls,"},{"event":"cmd_output","timestamp":1607098456,"output":" state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state"},{"event":"cmd_output","timestamp":1607098456,"output":"_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:16.032 [info] ppl_id: 14461f78-ee40-4832-ac67-8162a2bee7cd, type"},{"event":"cmd_output","timestamp":1607098456,"output":": Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.lo"},{"event":"cmd_output","timestamp":1607098456,"output":"g_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:16.044 [info] PplBlocks WaitingState STM is scheduling bl"},{"event":"cmd_output","timestamp":1607098456,"output":"ock 0 from pipeline: \"14461f78-ee40-4832-ac67-8162a2bee7cd\"\n\u001b[0m\u001b[22m\n16:14:16.047 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098456,"output":" 14461f78-ee40-4832-ac67-8162a2bee7cd, type: PplBlocks, block_index: 0, state: done, result: passed,"},{"event":"cmd_output","timestamp":1607098456,"output":" event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), "},{"event":"cmd_output","timestamp":1607098456,"output":"\n\u001b[0m\u001b[22m\n16:14:16.055 [info] ppl_id: 14461f78-ee40-4832-ac67-8162a2bee7cd, type: Ppls, state: d"},{"event":"cmd_output","timestamp":1607098456,"output":"one, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_s"},{"event":"cmd_output","timestamp":1607098456,"output":"tate_change/1(L90), \n\u001b[0m\u001b[32m\r * test change_in does not fail on tags if on_tag is not present in"},{"event":"cmd_output","timestamp":1607098456,"output":" config map (165.4ms)\u001b[0m\n * test change_in uses different range when 'branch_range' config is giv"},{"event":"cmd_output","timestamp":1607098456,"output":"en\u001b[22m\n16:14:16.098 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingState with"},{"event":"cmd_output","timestamp":1607098456,"output":" name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wa"},{"event":"cmd_output","timestamp":1607098456,"output":"ke_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing"},{"event":"cmd_output","timestamp":1607098456,"output":"\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"ini"},{"event":"cmd_output","timestamp":1607098456,"output":"tializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, "},{"event":"cmd_output","timestamp":1607098456,"output":"repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_cou"},{"event":"cmd_output","timestamp":1607098456,"output":"nt, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:16.098 [info] "},{"event":"cmd_output","timestamp":1607098456,"output":"Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler.Pe"},{"event":"cmd_output","timestamp":1607098456,"output":"ndingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingSta"},{"event":"cmd_output","timestamp":1607098456,"output":"te\"]}, recurring args: %{allowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_sec"},{"event":"cmd_output","timestamp":1607098456,"output":": 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publisher_cb: #Function<0.849300"},{"event":"cmd_output","timestamp":1607098456,"output":"5/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_req"},{"event":"cmd_output","timestamp":1607098456,"output":"uest, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_sup"},{"event":"cmd_output","timestamp":1607098456,"output":"ervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:14:16.098 [info] Periodic from module Elixir.Ppl.Ppls.S"},{"event":"cmd_output","timestamp":1607098456,"output":"TMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, metric_n"},{"event":"cmd_output","timestamp":1607098456,"output":"ame: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{allowed_state"},{"event":"cmd_output","timestamp":1607098456,"output":"s: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observe"},{"event":"cmd_output","timestamp":1607098456,"output":"d_state: \"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.args/0"},{"event":"cmd_output","timestamp":1607098456,"output":">, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_"},{"event":"cmd_output","timestamp":1607098456,"output":"count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:16.098 [info"},{"event":"cmd_output","timestamp":1607098456,"output":"] Periodic from module Elixir.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHandler"},{"event":"cmd_output","timestamp":1607098456,"output":".RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Running"},{"event":"cmd_output","timestamp":1607098456,"output":"State\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, i"},{"event":"cmd_output","timestamp":1607098456,"output":"nitial_query: Ppl.Ppls.Model.Ppls, observed_state: \"running\", publisher_cb: #Function<0.74670282/1 i"},{"event":"cmd_output","timestamp":1607098456,"output":"n Ppl.Ppls.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request,"},{"event":"cmd_output","timestamp":1607098456,"output":" :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervis"},{"event":"cmd_output","timestamp":1607098456,"output":"or: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:14:16.098 [info] Periodic from module Elixir.Ppl.Ppls.STMHan"},{"event":"cmd_output","timestamp":1607098456,"output":"dler.StoppingState with name Elixir.Ppl.Ppls.STMHandler.StoppingState :: period: 100 ms, metric_name"},{"event":"cmd_output","timestamp":1607098456,"output":": {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring args: %{allowed_states:"},{"event":"cmd_output","timestamp":1607098456,"output":" [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"st"},{"event":"cmd_output","timestamp":1607098456,"output":"opping\", publisher_cb: #Function<0.71803493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, repo: Pp"},{"event":"cmd_output","timestamp":1607098456,"output":"l.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl"},{"event":"cmd_output","timestamp":1607098456,"output":"_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:16.098 [info] Periodic"},{"event":"cmd_output","timestamp":1607098456,"output":" from module Elixir.Ppl.PplSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHand"},{"event":"cmd_output","timestamp":1607098456,"output":"ler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandl"},{"event":"cmd_output","timestamp":1607098456,"output":"er-CreatedState\"]}, recurring args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, ini"},{"event":"cmd_output","timestamp":1607098456,"output":"tial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip, repo:"},{"event":"cmd_output","timestamp":1607098456,"output":" Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :"},{"event":"cmd_output","timestamp":1607098456,"output":"ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:16.098"},{"event":"cmd_output","timestamp":1607098456,"output":" [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl.P"},{"event":"cmd_output","timestamp":1607098456,"output":"plSubInits.STMHandler.FetchingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-P"},{"event":"cmd_output","timestamp":1607098456,"output":"plSubInits-STMHandler-FetchingState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilat"},{"event":"cmd_output","timestamp":1607098456,"output":"ion\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_stat"},{"event":"cmd_output","timestamp":1607098456,"output":"e: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :update"},{"event":"cmd_output","timestamp":1607098456,"output":"d_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_su"},{"event":"cmd_output","timestamp":1607098456,"output":"pervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:16.098 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHan"},{"event":"cmd_output","timestamp":1607098456,"output":"dler.CompilationState with name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 100 ms"},{"event":"cmd_output","timestamp":1607098456,"output":", metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurring "},{"event":"cmd_output","timestamp":1607098456,"output":"args: %{allowed_states: [\"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2, i"},{"event":"cmd_output","timestamp":1607098456,"output":"nitial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"compilation\", publisher_cb: :skip,"},{"event":"cmd_output","timestamp":1607098456,"output":" repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_co"},{"event":"cmd_output","timestamp":1607098456,"output":"unt, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:"},{"event":"cmd_output","timestamp":1607098456,"output":"16.099 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with name Eli"},{"event":"cmd_output","timestamp":1607098456,"output":"xir.Ppl.PplSubInits.STMHandler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_"},{"event":"cmd_output","timestamp":1607098456,"output":"up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurring args: %{allowed_states: [\"done\"], c"},{"event":"cmd_output","timestamp":1607098456,"output":"ooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_init\""},{"event":"cmd_output","timestamp":1607098456,"output":", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state,"},{"event":"cmd_output","timestamp":1607098456,"output":" :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :sk"},{"event":"cmd_output","timestamp":1607098456,"output":"ip}\n\u001b[0m\u001b[22m\n16:14:16.099 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.Initializi"},{"event":"cmd_output","timestamp":1607098456,"output":"ngState with name Elixir.Ppl.PplBlocks.STMHandler.InitializingState :: period: 100 ms, metric_name: "},{"event":"cmd_output","timestamp":1607098456,"output":"{\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_"},{"event":"cmd_output","timestamp":1607098456,"output":"states: [\"initializing\", \"waiting\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model"},{"event":"cmd_output","timestamp":1607098456,"output":".PplBlocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id"},{"event":"cmd_output","timestamp":1607098456,"output":", :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema:"},{"event":"cmd_output","timestamp":1607098456,"output":" Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:16.099 [info] Periodic fr"},{"event":"cmd_output","timestamp":1607098456,"output":"om module Elixir.Ppl.PplBlocks.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler.Wai"},{"event":"cmd_output","timestamp":1607098456,"output":"tingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-Waiti"},{"event":"cmd_output","timestamp":1607098456,"output":"ngState\"]}, recurring args: %{allowed_states: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 0, i"},{"event":"cmd_output","timestamp":1607098456,"output":"nitial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"waiting\", publisher_cb: #Function<0.89"},{"event":"cmd_output","timestamp":1607098456,"output":"75022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :term"},{"event":"cmd_output","timestamp":1607098456,"output":"inate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.Pp"},{"event":"cmd_output","timestamp":1607098456,"output":"lBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:16.099 [info] Periodic from modu"},{"event":"cmd_output","timestamp":1607098456,"output":"le Elixir.Ppl.PplBlocks.STMHandler.RunningState with name Elixir.Ppl.PplBlocks.STMHandler.RunningSta"},{"event":"cmd_output","timestamp":1607098456,"output":"te :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningState"},{"event":"cmd_output","timestamp":1607098456,"output":"\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initia"},{"event":"cmd_output","timestamp":1607098456,"output":"l_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"running\", publisher_cb: #Function<0.2816683"},{"event":"cmd_output","timestamp":1607098456,"output":"4/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminat"},{"event":"cmd_output","timestamp":1607098456,"output":"e_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema:"},{"event":"cmd_output","timestamp":1607098456,"output":" Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:16.099 [info] Periodic fr"},{"event":"cmd_output","timestamp":1607098456,"output":"om module Elixir.Ppl.PplBlocks.STMHandler.StoppingState with name Elixir.Ppl.PplBlocks.STMHandler.St"},{"event":"cmd_output","timestamp":1607098456,"output":"oppingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-Sto"},{"event":"cmd_output","timestamp":1607098456,"output":"ppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial"},{"event":"cmd_output","timestamp":1607098456,"output":"_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"stopping\", publisher_cb: #Function<0.1042159"},{"event":"cmd_output","timestamp":1607098456,"output":"91/1 in Ppl.PplBlocks.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :termin"},{"event":"cmd_output","timestamp":1607098456,"output":"ate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schem"},{"event":"cmd_output","timestamp":1607098456,"output":"a: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:16.099 [info] Periodic "},{"event":"cmd_output","timestamp":1607098456,"output":"from module Elixir.Block.Blocks.STMHandler.InitializingState with name Elixir.Block.Blocks.STMHandle"},{"event":"cmd_output","timestamp":1607098456,"output":"r.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandl"},{"event":"cmd_output","timestamp":1607098456,"output":"er-InitializingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0,"},{"event":"cmd_output","timestamp":1607098456,"output":" initial_query: Block.Blocks.Model.Blocks, observed_state: \"initializing\", publisher_cb: :skip, repo"},{"event":"cmd_output","timestamp":1607098456,"output":": Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_"},{"event":"cmd_output","timestamp":1607098456,"output":"id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:16.099 [info] Per"},{"event":"cmd_output","timestamp":1607098456,"output":"iodic from module Elixir.Block.Blocks.STMHandler.RunningState with name Elixir.Block.Blocks.STMHandl"},{"event":"cmd_output","timestamp":1607098456,"output":"er.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-R"},{"event":"cmd_output","timestamp":1607098456,"output":"unningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec:"},{"event":"cmd_output","timestamp":1607098456,"output":" -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"running\", publisher_cb: :skip, repo:"},{"event":"cmd_output","timestamp":1607098456,"output":" Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_i"},{"event":"cmd_output","timestamp":1607098456,"output":"d], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:16.099 [info] Peri"},{"event":"cmd_output","timestamp":1607098456,"output":"odic from module Elixir.Block.Blocks.STMHandler.StoppingState with name Elixir.Block.Blocks.STMHandl"},{"event":"cmd_output","timestamp":1607098456,"output":"er.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-"},{"event":"cmd_output","timestamp":1607098456,"output":"StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, init"},{"event":"cmd_output","timestamp":1607098456,"output":"ial_query: Block.Blocks.Model.Blocks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.E"},{"event":"cmd_output","timestamp":1607098456,"output":"ctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], sche"},{"event":"cmd_output","timestamp":1607098456,"output":"ma: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:16.099 [info] Periodic fro"},{"event":"cmd_output","timestamp":1607098456,"output":"m module Elixir.Block.Tasks.STMHandler.PendingState with name Elixir.Block.Tasks.STMHandler.PendingS"},{"event":"cmd_output","timestamp":1607098456,"output":"tate :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingState\""},{"event":"cmd_output","timestamp":1607098456,"output":"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block"},{"event":"cmd_output","timestamp":1607098456,"output":".Tasks.Model.Tasks, observed_state: \"pending\", publisher_cb: :skip, repo: Block.EctoRepo, returning:"},{"event":"cmd_output","timestamp":1607098456,"output":" [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id, :build_request_id], sche"},{"event":"cmd_output","timestamp":1607098456,"output":"ma: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:16.099 [info] Periodic from "},{"event":"cmd_output","timestamp":1607098456,"output":"module Elixir.Block.Tasks.STMHandler.RunningState with name Elixir.Block.Tasks.STMHandler.RunningSta"},{"event":"cmd_output","timestamp":1607098456,"output":"te :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningState\"]}"},{"event":"cmd_output","timestamp":1607098456,"output":", recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_q"},{"event":"cmd_output","timestamp":1607098456,"output":"uery: Block.Tasks.Model.Tasks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo,"},{"event":"cmd_output","timestamp":1607098456,"output":" returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Bloc"},{"event":"cmd_output","timestamp":1607098456,"output":"k.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:16.100 [info] Periodic from module E"},{"event":"cmd_output","timestamp":1607098456,"output":"lixir.Block.Tasks.STMHandler.StoppingState with name Elixir.Block.Tasks.STMHandler.StoppingState :: "},{"event":"cmd_output","timestamp":1607098456,"output":"period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]}, rec"},{"event":"cmd_output","timestamp":1607098456,"output":"urring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Task"},{"event":"cmd_output","timestamp":1607098456,"output":"s.Model.Tasks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:i"},{"event":"cmd_output","timestamp":1607098456,"output":"d, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.T"},{"event":"cmd_output","timestamp":1607098456,"output":"asks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:16.108 [info] Request: 'run: %{\"branch_id\" => \"4467"},{"event":"cmd_output","timestamp":1607098456,"output":"2f9a-779d-4053-8f0b-4117b9c28d38\", \"branch_name\" => \"config_branch_range\", \"commit_sha\" => \"75891a44"},{"event":"cmd_output","timestamp":1607098456,"output":"69\", \"file_name\" => \"config_branch_range.yml\", \"hook_id\" => \"c1745358-364b-11eb-9a72-5254005464e2\", "},{"event":"cmd_output","timestamp":1607098456,"output":"\"label\" => \"config_branch_range\", \"organization_id\" => \"c0848783-ec8f-451a-8285-0b33c2f09375\", \"owne"},{"event":"cmd_output","timestamp":1607098456,"output":"r\" => \"rt\", \"project_id\" => \"36a14408-9f3a-474b-a68e-8a5dbc49228a\", \"repo_name\" => \"22_skip_block\", "},{"event":"cmd_output","timestamp":1607098456,"output":"\"request_token\" => \"c1744caa-364b-11eb-a674-5254005464e2\", \"requester_id\" => \"b0ed8e94-6cbf-405c-8b3"},{"event":"cmd_output","timestamp":1607098456,"output":"d-c06296299098\", \"service\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"],"},{"event":"cmd_output","timestamp":1607098456,"output":" \"wf_id\" => \"d646188c-117d-4500-a2b4-a5ea5a6b0508\", \"working_dir\" => \".semaphore/change_in\"}\n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098456,"output":"22m\n16:14:16.112 [info] ppl_id: f4bd2ab8-9061-4d44-979c-e341bd942e21, type: PplRequests, event: pe"},{"event":"cmd_output","timestamp":1607098456,"output":"rsisted schedule request with request_token: c1744caa-364b-11eb-a674-5254005464e2, origin: Elixir.Pp"},{"event":"cmd_output","timestamp":1607098456,"output":"l.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:14:16.115 [info] pp"},{"event":"cmd_output","timestamp":1607098456,"output":"l_id: f4bd2ab8-9061-4d44-979c-e341bd942e21, type: Ppls, state: initializing, event: initializing, re"},{"event":"cmd_output","timestamp":1607098456,"output":"covery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098456,"output":":14:16.119 [info] Project 36a14408-9f3a-474b-a68e-8a5dbc49228a and branch config_branch_rangelatest"},{"event":"cmd_output","timestamp":1607098456,"output":"_wf details updated: \"wf_id: d646188c-117d-4500-a2b4-a5ea5a6b0508, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:14:1"},{"event":"cmd_output","timestamp":1607098456,"output":"6.120 [info] Persisted ppl_sub_init for pipeline with ppl_id: f4bd2ab8-9061-4d44-979c-e341bd942e21:"},{"event":"cmd_output","timestamp":1607098456,"output":" %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, "},{"event":"cmd_output","timestamp":1607098456,"output":"compile_task_id: nil, error_description: nil, id: 327, in_scheduling: false, init_type: \"regular\", i"},{"event":"cmd_output","timestamp":1607098456,"output":"nserted_at: ~N[2020-12-04 16:14:16.119956], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"f4bd2ab8-9061-4d44-979c-e341bd942e21\", recovery_count"},{"event":"cmd_output","timestamp":1607098456,"output":": 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_de"},{"event":"cmd_output","timestamp":1607098456,"output":"sc: nil, updated_at: ~N[2020-12-04 16:14:16.119963]}\n\u001b[0m\u001b[22m\n16:14:16.129 [info] ppl_id: f4bd2a"},{"event":"cmd_output","timestamp":1607098456,"output":"b8-9061-4d44-979c-e341bd942e21, type: PplRequests, event: persisted source_args for pipeline: f4bd2a"},{"event":"cmd_output","timestamp":1607098456,"output":"b8-9061-4d44-979c-e341bd942e21, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_sourc"},{"event":"cmd_output","timestamp":1607098456,"output":"e/2(L89), \n\u001b[0m\u001b[22m\n16:14:16.131 [info] ppl_id: f4bd2ab8-9061-4d44-979c-e341bd942e21, type: PplS"},{"event":"cmd_output","timestamp":1607098456,"output":"ubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl."},{"event":"cmd_output","timestamp":1607098456,"output":"log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:16.144 [info] ppl_id: f4bd2ab8-9061-4d44-979c-e341bd942"},{"event":"cmd_output","timestamp":1607098456,"output":"e21, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098456,"output":"ir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:16.167 [info] ppl_id: f4bd2ab8-9061-"},{"event":"cmd_output","timestamp":1607098456,"output":"4d44-979c-e341bd942e21, type: PplRequests, event: persisted definition for request with request_toke"},{"event":"cmd_output","timestamp":1607098456,"output":"n: c1744caa-364b-11eb-a674-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.ins"},{"event":"cmd_output","timestamp":1607098456,"output":"ert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:14:16.170 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Qu"},{"event":"cmd_output","timestamp":1607098456,"output":"eues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:14:16.169277]"},{"event":"cmd_output","timestamp":1607098456,"output":", name: \"config_branch_range-.semaphore/change_in/config_branch_range.yml\", organization_id: \"c08487"},{"event":"cmd_output","timestamp":1607098456,"output":"83-ec8f-451a-8285-0b33c2f09375\", project_id: \"36a14408-9f3a-474b-a68e-8a5dbc49228a\", queue_id: \"ec30"},{"event":"cmd_output","timestamp":1607098456,"output":"5782-e141-481c-a6f7-3a6194dba9bd\", scope: \"project\", updated_at: ~N[2020-12-04 16:14:16.169285], use"},{"event":"cmd_output","timestamp":1607098456,"output":"r_generated: false}}\n\u001b[0m\u001b[22m\n16:14:16.173 [info] event: created, origin: Elixir.Ppl.PplSubInits"},{"event":"cmd_output","timestamp":1607098456,"output":".STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:16.173 [info] ppl_id: f4bd2ab8-906"},{"event":"cmd_output","timestamp":1607098456,"output":"1-4d44-979c-e341bd942e21, type: PplBlocks, block_index: 0, state: initializing, event: created, reco"},{"event":"cmd_output","timestamp":1607098456,"output":"very_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098456,"output":"2m\n16:14:16.175 [info] ppl_id: f4bd2ab8-9061-4d44-979c-e341bd942e21, type: PplSubInits, state: don"},{"event":"cmd_output","timestamp":1607098456,"output":"e, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_sta"},{"event":"cmd_output","timestamp":1607098456,"output":"te_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:16.182 [info] ppl_id: f4bd2ab8-9061-4d44-979c-e341bd942e21, ty"},{"event":"cmd_output","timestamp":1607098456,"output":"pe: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098456,"output":"ixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:16.183 [info] ppl_id: f4bd2ab8-906"},{"event":"cmd_output","timestamp":1607098456,"output":"1-4d44-979c-e341bd942e21, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098456,"output":"gin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:16.192 [info] ppl_id: f4bd2"},{"event":"cmd_output","timestamp":1607098456,"output":"ab8-9061-4d44-979c-e341bd942e21, type: Ppls, state: queuing, event: exit_scheduling, recovery_count:"},{"event":"cmd_output","timestamp":1607098456,"output":" 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:16.198 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098456,"output":": f4bd2ab8-9061-4d44-979c-e341bd942e21, type: Ppls, state: running, event: exit_scheduling, recovery"},{"event":"cmd_output","timestamp":1607098456,"output":"_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:16.206 [info] "},{"event":"cmd_output","timestamp":1607098456,"output":" PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"f4bd2ab8-9061-4d44-979c-e341bd942e"},{"event":"cmd_output","timestamp":1607098456,"output":"21\"\n\u001b[0m\u001b[22m\n16:14:16.217 [info] ppl_id: f4bd2ab8-9061-4d44-979c-e341bd942e21, type: PplBlocks, "},{"event":"cmd_output","timestamp":1607098456,"output":"block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098456,"output":"ir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:16.226 [info] ppl_id: f4bd2ab8-9061-"},{"event":"cmd_output","timestamp":1607098456,"output":"4d44-979c-e341bd942e21, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_co"},{"event":"cmd_output","timestamp":1607098456,"output":"unt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test change_in uses "},{"event":"cmd_output","timestamp":1607098456,"output":"different range when 'branch_range' config is given (170.9ms)\u001b[0m\n\nPpl.E2E.ExecutionTimeLimit.Test"},{"event":"cmd_output","timestamp":1607098456,"output":"\n * test when pipline limit is longer than deafult job limit => pipeline is malformed\u001b[22m\n16:14:"},{"event":"cmd_output","timestamp":1607098456,"output":"16.284 [info] Request: 'run: %{:file_name => \"/exec_time_limit/ppl_limit_over_default_job.yml\", :re"},{"event":"cmd_output","timestamp":1607098456,"output":"po_name => \"23_initializing_test\", \"branch_id\" => \"69f962dc-ece7-4424-96da-cee21107a5da\", \"branch_na"},{"event":"cmd_output","timestamp":1607098456,"output":"me\" => \"master\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"semaphore.yml\", \"hook_id\" => \"c190455"},{"event":"cmd_output","timestamp":1607098456,"output":"e-364b-11eb-91b3-5254005464e2\", \"label\" => \"master\", \"organization_id\" => \"db38526f-e5e4-486a-88b9-b"},{"event":"cmd_output","timestamp":1607098456,"output":"fcc3548d358\", \"owner\" => \"rt\", \"project_id\" => \"573601af-a5d9-49a3-9f41-ee533c600a61\", \"repo_name\" ="},{"event":"cmd_output","timestamp":1607098456,"output":"> \"2_basic\", \"request_token\" => \"c1903d84-364b-11eb-8030-5254005464e2\", \"requester_id\" => \"b78e2e24-"},{"event":"cmd_output","timestamp":1607098456,"output":"d97f-4e40-b4d6-ec6952ce7faa\", \"service\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"cli"},{"event":"cmd_output","timestamp":1607098456,"output":"ent_secret\"], \"wf_id\" => \"7d727862-7e7f-45e2-822c-1217af8d50ec\", \"working_dir\" => \".semaphore\"}\n\u001b[0"},{"event":"cmd_output","timestamp":1607098456,"output":"m\u001b[22m\n16:14:16.287 [info] ppl_id: b4c2a94a-eafe-4734-a3b2-69ddd1526900, type: PplRequests, event:"},{"event":"cmd_output","timestamp":1607098456,"output":" persisted schedule request with request_token: c1903d84-364b-11eb-8030-5254005464e2, origin: Elixir"},{"event":"cmd_output","timestamp":1607098456,"output":".Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:14:16.290 [info] "},{"event":"cmd_output","timestamp":1607098456,"output":" ppl_id: b4c2a94a-eafe-4734-a3b2-69ddd1526900, type: Ppls, state: initializing, event: initializing,"},{"event":"cmd_output","timestamp":1607098456,"output":" recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098456,"output":"\n16:14:16.293 [info] Project 573601af-a5d9-49a3-9f41-ee533c600a61 and branch masterlatest_wf detail"},{"event":"cmd_output","timestamp":1607098456,"output":"s updated: \"wf_id: 7d727862-7e7f-45e2-822c-1217af8d50ec, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:14:16.294 [inf"},{"event":"cmd_output","timestamp":1607098456,"output":"o] Persisted ppl_sub_init for pipeline with ppl_id: b4c2a94a-eafe-4734-a3b2-69ddd1526900: %Ppl.PplS"},{"event":"cmd_output","timestamp":1607098456,"output":"ubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_ta"},{"event":"cmd_output","timestamp":1607098456,"output":"sk_id: nil, error_description: nil, id: 328, in_scheduling: false, init_type: \"regular\", inserted_at"},{"event":"cmd_output","timestamp":1607098456,"output":": ~N[2020-12-04 16:14:16.293585], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"b4c2a94a-eafe-4734-a3b2-69ddd1526900\", recovery_count: 0, resul"},{"event":"cmd_output","timestamp":1607098456,"output":"t: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, u"},{"event":"cmd_output","timestamp":1607098456,"output":"pdated_at: ~N[2020-12-04 16:14:16.293590]}\n\u001b[0m\u001b[22m\n16:14:16.298 [info] Periodic from module Eli"},{"event":"cmd_output","timestamp":1607098456,"output":"xir.Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: "},{"event":"cmd_output","timestamp":1607098456,"output":"period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, re"},{"event":"cmd_output","timestamp":1607098456,"output":"curring args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_qu"},{"event":"cmd_output","timestamp":1607098456,"output":"ery: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher_cb: #Function<0.125326080/1 in P"},{"event":"cmd_output","timestamp":1607098456,"output":"pl.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_reques"},{"event":"cmd_output","timestamp":1607098456,"output":"t, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_superv"},{"event":"cmd_output","timestamp":1607098456,"output":"isor: :skip}\n\u001b[0m\u001b[22m\n16:14:16.298 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.Pendin"},{"event":"cmd_output","timestamp":1607098456,"output":"gState with name Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.behol"},{"event":"cmd_output","timestamp":1607098456,"output":"der-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"pending\", \""},{"event":"cmd_output","timestamp":1607098456,"output":"queuing\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_stat"},{"event":"cmd_output","timestamp":1607098456,"output":"e: \"pending\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo:"},{"event":"cmd_output","timestamp":1607098456,"output":" Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :"},{"event":"cmd_output","timestamp":1607098456,"output":"ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:14:16.299 "},{"event":"cmd_output","timestamp":1607098456,"output":"[info] Periodic from module Elixir.Ppl.Ppls.STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHa"},{"event":"cmd_output","timestamp":1607098456,"output":"ndler.QueuingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Qu"},{"event":"cmd_output","timestamp":1607098456,"output":"euingState\"]}, recurring args: %{allowed_states: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -"},{"event":"cmd_output","timestamp":1607098456,"output":"2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", publisher_cb: #Function<0.12510284"},{"event":"cmd_output","timestamp":1607098456,"output":"3/1 in Ppl.Ppls.STMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_req"},{"event":"cmd_output","timestamp":1607098456,"output":"uest, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_sup"},{"event":"cmd_output","timestamp":1607098456,"output":"ervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:16.299 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.Run"},{"event":"cmd_output","timestamp":1607098456,"output":"ningState with name Elixir.Ppl.Ppls.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.be"},{"event":"cmd_output","timestamp":1607098456,"output":"holder-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\""},{"event":"cmd_output","timestamp":1607098456,"output":", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"ru"},{"event":"cmd_output","timestamp":1607098456,"output":"nning\", publisher_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler.RunningState.args/0>, repo: Ppl."},{"event":"cmd_output","timestamp":1607098456,"output":"EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_i"},{"event":"cmd_output","timestamp":1607098456,"output":"d], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:14:16.300 [info"},{"event":"cmd_output","timestamp":1607098456,"output":"] Periodic from module Elixir.Ppl.Ppls.STMHandler.StoppingState with name Elixir.Ppl.Ppls.STMHandle"},{"event":"cmd_output","timestamp":1607098456,"output":"r.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Stopp"},{"event":"cmd_output","timestamp":1607098456,"output":"ingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_q"},{"event":"cmd_output","timestamp":1607098456,"output":"uery: Ppl.Ppls.Model.Ppls, observed_state: \"stopping\", publisher_cb: #Function<0.71803493/1 in Ppl.P"},{"event":"cmd_output","timestamp":1607098456,"output":"pls.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :upda"},{"event":"cmd_output","timestamp":1607098456,"output":"ted_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :s"},{"event":"cmd_output","timestamp":1607098456,"output":"kip}\n\u001b[0m\u001b[22m\n16:14:16.300 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.Created"},{"event":"cmd_output","timestamp":1607098456,"output":"State with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 100 ms, metric_name: {\"Ppl"},{"event":"cmd_output","timestamp":1607098456,"output":".beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args: %{allowed_states: "},{"event":"cmd_output","timestamp":1607098456,"output":"[\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observe"},{"event":"cmd_output","timestamp":1607098456,"output":"d_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :u"},{"event":"cmd_output","timestamp":1607098456,"output":"pdated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, ta"},{"event":"cmd_output","timestamp":1607098456,"output":"sk_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:16.301 [info] Periodic from module Elixir.Ppl.PplSubInits.S"},{"event":"cmd_output","timestamp":1607098456,"output":"TMHandler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 ms,"},{"event":"cmd_output","timestamp":1607098456,"output":" metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring args"},{"event":"cmd_output","timestamp":1607098456,"output":": %{allowed_states: [\"regular_init\", \"compilation\", \"done\"], cooling_time_sec: -2, initial_query: Pp"},{"event":"cmd_output","timestamp":1607098456,"output":"l.PplSubInits.Model.PplSubInits, observed_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo"},{"event":"cmd_output","timestamp":1607098456,"output":", returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], sche"},{"event":"cmd_output","timestamp":1607098456,"output":"ma: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:16.302 [info] Peri"},{"event":"cmd_output","timestamp":1607098456,"output":"odic from module Elixir.Ppl.PplSubInits.STMHandler.CompilationState with name Elixir.Ppl.PplSubInits"},{"event":"cmd_output","timestamp":1607098456,"output":".STMHandler.CompilationState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubIn"},{"event":"cmd_output","timestamp":1607098456,"output":"its-STMHandler-CompilationState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\""},{"event":"cmd_output","timestamp":1607098456,"output":", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, obser"},{"event":"cmd_output","timestamp":1607098456,"output":"ved_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_reque"},{"event":"cmd_output","timestamp":1607098456,"output":"st, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubIni"},{"event":"cmd_output","timestamp":1607098456,"output":"ts, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:16.302 [info] Periodic from module Elixir.Ppl.PplSubI"},{"event":"cmd_output","timestamp":1607098456,"output":"nits.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: per"},{"event":"cmd_output","timestamp":1607098456,"output":"iod: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]},"},{"event":"cmd_output","timestamp":1607098456,"output":" recurring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Mod"},{"event":"cmd_output","timestamp":1607098456,"output":"el.PplSubInits, observed_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: "},{"event":"cmd_output","timestamp":1607098456,"output":"[:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSu"},{"event":"cmd_output","timestamp":1607098456,"output":"bInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:16.302 [info] Periodic from mod"},{"event":"cmd_output","timestamp":1607098456,"output":"ule Elixir.Ppl.PplBlocks.STMHandler.InitializingState with name Elixir.Ppl.PplBlocks.STMHandler.Init"},{"event":"cmd_output","timestamp":1607098456,"output":"ializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-In"},{"event":"cmd_output","timestamp":1607098456,"output":"itializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"waiting\", \"done\"], cooling_t"},{"event":"cmd_output","timestamp":1607098456,"output":"ime_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"initializing\", publisher_"},{"event":"cmd_output","timestamp":1607098456,"output":"cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :r"},{"event":"cmd_output","timestamp":1607098456,"output":"ecovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip"},{"event":"cmd_output","timestamp":1607098456,"output":"}\n\u001b[0m\u001b[22m\n16:14:16.302 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.WaitingState"},{"event":"cmd_output","timestamp":1607098456,"output":" with name Elixir.Ppl.PplBlocks.STMHandler.WaitingState :: period: 1000 ms, metric_name: {\"Ppl.behol"},{"event":"cmd_output","timestamp":1607098456,"output":"der-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurring args: %{allowed_states: [\"waitin"},{"event":"cmd_output","timestamp":1607098456,"output":"g\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_"},{"event":"cmd_output","timestamp":1607098456,"output":"state: \"waiting\", publisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/"},{"event":"cmd_output","timestamp":1607098456,"output":"0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery"},{"event":"cmd_output","timestamp":1607098456,"output":"_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m"},{"event":"cmd_output","timestamp":1607098456,"output":"\u001b[22m\n16:14:16.303 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.RunningState with n"},{"event":"cmd_output","timestamp":1607098456,"output":"ame Elixir.Ppl.PplBlocks.STMHandler.RunningState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wak"},{"event":"cmd_output","timestamp":1607098456,"output":"e_up\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"st"},{"event":"cmd_output","timestamp":1607098456,"output":"opping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state"},{"event":"cmd_output","timestamp":1607098456,"output":": \"running\", publisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0>, "},{"event":"cmd_output","timestamp":1607098456,"output":"repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_cou"},{"event":"cmd_output","timestamp":1607098456,"output":"nt, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip"},{"event":"cmd_output","timestamp":1607098456,"output":"}\n\u001b[0m\u001b[22m\n16:14:16.303 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.StoppingStat"},{"event":"cmd_output","timestamp":1607098456,"output":"e with name Elixir.Ppl.PplBlocks.STMHandler.StoppingState :: period: 1000 ms, metric_name: {\"Ppl.beh"},{"event":"cmd_output","timestamp":1607098456,"output":"older-wake_up\", [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"sto"},{"event":"cmd_output","timestamp":1607098456,"output":"pping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state:"},{"event":"cmd_output","timestamp":1607098456,"output":" \"stopping\", publisher_cb: #Function<0.104215991/1 in Ppl.PplBlocks.STMHandler.StoppingState.args/0>"},{"event":"cmd_output","timestamp":1607098456,"output":", repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_c"},{"event":"cmd_output","timestamp":1607098456,"output":"ount, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :sk"},{"event":"cmd_output","timestamp":1607098456,"output":"ip}\n\u001b[0m\u001b[22m\n16:14:16.303 [info] Periodic from module Elixir.Block.Blocks.STMHandler.Initializin"},{"event":"cmd_output","timestamp":1607098456,"output":"gState with name Elixir.Block.Blocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\""},{"event":"cmd_output","timestamp":1607098456,"output":"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_sta"},{"event":"cmd_output","timestamp":1607098456,"output":"tes: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Blocks.Model.Blocks, observed_st"},{"event":"cmd_output","timestamp":1607098456,"output":"ate: \"initializing\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request,"},{"event":"cmd_output","timestamp":1607098456,"output":" :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_superviso"},{"event":"cmd_output","timestamp":1607098456,"output":"r: :skip}\n\u001b[0m\u001b[22m\n16:14:16.303 [info] Periodic from module Elixir.Block.Blocks.STMHandler.Runni"},{"event":"cmd_output","timestamp":1607098456,"output":"ngState with name Elixir.Block.Blocks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl."},{"event":"cmd_output","timestamp":1607098456,"output":"beholder-wake_up\", [\"Block-Blocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"ru"},{"event":"cmd_output","timestamp":1607098456,"output":"nning\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observe"},{"event":"cmd_output","timestamp":1607098456,"output":"d_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, "},{"event":"cmd_output","timestamp":1607098456,"output":":updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor"},{"event":"cmd_output","timestamp":1607098456,"output":": :skip}\n\u001b[0m\u001b[22m\n16:14:16.303 [info] Periodic from module Elixir.Block.Blocks.STMHandler.Stoppi"},{"event":"cmd_output","timestamp":1607098456,"output":"ngState with name Elixir.Block.Blocks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl"},{"event":"cmd_output","timestamp":1607098456,"output":".beholder-wake_up\", [\"Block-Blocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\""},{"event":"cmd_output","timestamp":1607098456,"output":"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: "},{"event":"cmd_output","timestamp":1607098456,"output":"\"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated"},{"event":"cmd_output","timestamp":1607098456,"output":"_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}"},{"event":"cmd_output","timestamp":1607098456,"output":"\n\u001b[0m\u001b[22m\n16:14:16.303 [info] Periodic from module Elixir.Block.Tasks.STMHandler.PendingState wi"},{"event":"cmd_output","timestamp":1607098456,"output":"th name Elixir.Block.Tasks.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wa"},{"event":"cmd_output","timestamp":1607098456,"output":"ke_up\", [\"Block-Tasks-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"running\", \"don"},{"event":"cmd_output","timestamp":1607098456,"output":"e\"], cooling_time_sec: 0, initial_query: Block.Tasks.Model.Tasks, observed_state: \"pending\", publish"},{"event":"cmd_output","timestamp":1607098456,"output":"er_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recov"},{"event":"cmd_output","timestamp":1607098456,"output":"ery_count, :block_id, :build_request_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n"},{"event":"cmd_output","timestamp":1607098456,"output":"\u001b[0m\u001b[22m\n16:14:16.304 [info] Periodic from module Elixir.Block.Tasks.STMHandler.RunningState with"},{"event":"cmd_output","timestamp":1607098456,"output":" name Elixir.Block.Tasks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake"},{"event":"cmd_output","timestamp":1607098456,"output":"_up\", [\"Block-Tasks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopp"},{"event":"cmd_output","timestamp":1607098456,"output":"ing\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"runnin"},{"event":"cmd_output","timestamp":1607098456,"output":"g\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :st"},{"event":"cmd_output","timestamp":1607098456,"output":"ate, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098456,"output":"m\n16:14:16.304 [info] Periodic from module Elixir.Block.Tasks.STMHandler.StoppingState with name E"},{"event":"cmd_output","timestamp":1607098456,"output":"lixir.Block.Tasks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", "},{"event":"cmd_output","timestamp":1607098456,"output":"[\"Block-Tasks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], c"},{"event":"cmd_output","timestamp":1607098456,"output":"ooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"stopping\", publisher_c"},{"event":"cmd_output","timestamp":1607098456,"output":"b: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_"},{"event":"cmd_output","timestamp":1607098456,"output":"count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:16.411"},{"event":"cmd_output","timestamp":1607098456,"output":" [info] ppl_id: b4c2a94a-eafe-4734-a3b2-69ddd1526900, type: PplRequests, event: persisted source_ar"},{"event":"cmd_output","timestamp":1607098456,"output":"gs for pipeline: b4c2a94a-eafe-4734-a3b2-69ddd1526900, origin: Elixir.Ppl.PplRequests.Model.PplReque"},{"event":"cmd_output","timestamp":1607098456,"output":"stsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:14:16.413 [info] ppl_id: b4c2a94a-eafe-4734-a3b2-6"},{"event":"cmd_output","timestamp":1607098456,"output":"9ddd1526900, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098456,"output":"Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:16.428 [info] ppl_id: b4c2a94a-e"},{"event":"cmd_output","timestamp":1607098456,"output":"afe-4734-a3b2-69ddd1526900, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery"},{"event":"cmd_output","timestamp":1607098456,"output":"_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:16.443 [info] "},{"event":"cmd_output","timestamp":1607098456,"output":" ppl_id: b4c2a94a-eafe-4734-a3b2-69ddd1526900, type: PplSubInits, state: done, result: failed, event"},{"event":"cmd_output","timestamp":1607098456,"output":": exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098456,"output":"\u001b[22m\n16:14:16.456 [info] ppl_id: b4c2a94a-eafe-4734-a3b2-69ddd1526900, type: Ppls, state: done, r"},{"event":"cmd_output","timestamp":1607098456,"output":"esult: failed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098456,"output":"hange/1(L90), \n\u001b[0m\u001b[32m\r * test when pipline limit is longer than deafult job limit => pipeline i"},{"event":"cmd_output","timestamp":1607098456,"output":"s malformed (281.7ms)\u001b[0m\n * test when job limit is longer than limit of its block => pipeline is "},{"event":"cmd_output","timestamp":1607098456,"output":"malformed\u001b[22m\n16:14:16.557 [info] Request: 'run: %{:file_name => \"/exec_time_limit/job_longer_tha"},{"event":"cmd_output","timestamp":1607098456,"output":"n_block.yml\", :repo_name => \"23_initializing_test\", \"branch_id\" => \"72687466-8eea-4500-8934-6c2dd08c"},{"event":"cmd_output","timestamp":1607098456,"output":"4c61\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"semaphore.yml\", \"hoo"},{"event":"cmd_output","timestamp":1607098456,"output":"k_id\" => \"c1b9d536-364b-11eb-afc5-5254005464e2\", \"label\" => \"master\", \"organization_id\" => \"39f5f01d"},{"event":"cmd_output","timestamp":1607098456,"output":"-691e-47db-97cb-00db7c12fe20\", \"owner\" => \"rt\", \"project_id\" => \"fb51a0fd-6d61-41e2-af8c-42507645224"},{"event":"cmd_output","timestamp":1607098456,"output":"d\", \"repo_name\" => \"2_basic\", \"request_token\" => \"c1b9cd5c-364b-11eb-9977-5254005464e2\", \"requester_"},{"event":"cmd_output","timestamp":1607098456,"output":"id\" => \"a2ffe68c-7e31-402c-9bbd-bc7d9a89f70b\", \"service\" => \"local\", \"suppressed_attributes\" => [\"ac"},{"event":"cmd_output","timestamp":1607098456,"output":"cess_token\", \"client_secret\"], \"wf_id\" => \"23815d65-6ec6-4995-80ae-c46a10d28ff9\", \"working_dir\" => \""},{"event":"cmd_output","timestamp":1607098456,"output":".semaphore\"}\n\u001b[0m\u001b[22m\n16:14:16.559 [info] ppl_id: 6eae1588-6ec9-4d76-8d27-a131478fe250, type: Pp"},{"event":"cmd_output","timestamp":1607098456,"output":"lRequests, event: persisted schedule request with request_token: c1b9cd5c-364b-11eb-9977-5254005464e"},{"event":"cmd_output","timestamp":1607098456,"output":"2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098456,"output":"14:16.561 [info] ppl_id: 6eae1588-6ec9-4d76-8d27-a131478fe250, type: Ppls, state: initializing, eve"},{"event":"cmd_output","timestamp":1607098456,"output":"nt: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L1"},{"event":"cmd_output","timestamp":1607098456,"output":"24), \n\u001b[0m\u001b[22m\n16:14:16.565 [info] Project fb51a0fd-6d61-41e2-af8c-42507645224d and branch maste"},{"event":"cmd_output","timestamp":1607098456,"output":"rlatest_wf details updated: \"wf_id: 23815d65-6ec6-4995-80ae-c46a10d28ff9, wf_number: 1\"\n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098456,"output":"16:14:16.567 [info] Persisted ppl_sub_init for pipeline with ppl_id: 6eae1588-6ec9-4d76-8d27-a13147"},{"event":"cmd_output","timestamp":1607098456,"output":"8fe250: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_in"},{"event":"cmd_output","timestamp":1607098456,"output":"its\">, compile_task_id: nil, error_description: nil, id: 329, in_scheduling: false, init_type: \"regu"},{"event":"cmd_output","timestamp":1607098456,"output":"lar\", inserted_at: ~N[2020-12-04 16:14:16.565647], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"6eae1588-6ec9-4d76-8d27-a131478fe250\", recover"},{"event":"cmd_output","timestamp":1607098456,"output":"y_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_req"},{"event":"cmd_output","timestamp":1607098456,"output":"uest_desc: nil, updated_at: ~N[2020-12-04 16:14:16.565653]}\n\u001b[0m\u001b[22m\n16:14:16.570 [info] Periodi"},{"event":"cmd_output","timestamp":1607098456,"output":"c from module Elixir.Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.STMHandler.Init"},{"event":"cmd_output","timestamp":1607098456,"output":"ializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Initial"},{"event":"cmd_output","timestamp":1607098456,"output":"izingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], cooling_time_s"},{"event":"cmd_output","timestamp":1607098456,"output":"ec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher_cb: #Function<0"},{"event":"cmd_output","timestamp":1607098456,"output":".125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, "},{"event":"cmd_output","timestamp":1607098456,"output":":terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model."},{"event":"cmd_output","timestamp":1607098456,"output":"Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:16.570 [info] Periodic from module Elixir.Ppl.Ppls."},{"event":"cmd_output","timestamp":1607098456,"output":"STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 100 ms, metric_"},{"event":"cmd_output","timestamp":1607098456,"output":"name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args: %{allowed_stat"},{"event":"cmd_output","timestamp":1607098456,"output":"es: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Pp"},{"event":"cmd_output","timestamp":1607098456,"output":"ls, observed_state: \"pending\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler.PendingSta"},{"event":"cmd_output","timestamp":1607098456,"output":"te.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :"},{"event":"cmd_output","timestamp":1607098456,"output":"recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098456,"output":"2m\n16:14:16.570 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.QueuingState with name Elix"},{"event":"cmd_output","timestamp":1607098456,"output":"ir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-P"},{"event":"cmd_output","timestamp":1607098456,"output":"pls-STMHandler-QueuingState\"]}, recurring args: %{allowed_states: [\"queuing\", \"running\", \"done\"], co"},{"event":"cmd_output","timestamp":1607098456,"output":"oling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", publisher_cb: #Fu"},{"event":"cmd_output","timestamp":1607098456,"output":"nction<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, returning: [:i"},{"event":"cmd_output","timestamp":1607098456,"output":"d, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Mod"},{"event":"cmd_output","timestamp":1607098456,"output":"el.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:16.571 [info] Periodic from module Elixir.Ppl.Pp"},{"event":"cmd_output","timestamp":1607098456,"output":"ls.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHandler.RunningState :: period: 100 ms, metr"},{"event":"cmd_output","timestamp":1607098456,"output":"ic_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring args: %{allowed_s"},{"event":"cmd_output","timestamp":1607098456,"output":"tates: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, ob"},{"event":"cmd_output","timestamp":1607098456,"output":"served_state: \"running\", publisher_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler.RunningState.ar"},{"event":"cmd_output","timestamp":1607098456,"output":"gs/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recov"},{"event":"cmd_output","timestamp":1607098456,"output":"ery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098456,"output":"6:14:16.571 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.StoppingState with name Elixir.P"},{"event":"cmd_output","timestamp":1607098456,"output":"pl.Ppls.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls"},{"event":"cmd_output","timestamp":1607098456,"output":"-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_s"},{"event":"cmd_output","timestamp":1607098456,"output":"ec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"stopping\", publisher_cb: #Function<0.71"},{"event":"cmd_output","timestamp":1607098456,"output":"803493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :termina"},{"event":"cmd_output","timestamp":1607098456,"output":"te_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, ta"},{"event":"cmd_output","timestamp":1607098456,"output":"sk_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:16.571 [info] Periodic from module Elixir.Ppl.PplSubInits.S"},{"event":"cmd_output","timestamp":1607098456,"output":"TMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 100 ms, m"},{"event":"cmd_output","timestamp":1607098456,"output":"etric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args: %"},{"event":"cmd_output","timestamp":1607098456,"output":"{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.Ppl"},{"event":"cmd_output","timestamp":1607098456,"output":"SubInits, observed_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :term"},{"event":"cmd_output","timestamp":1607098456,"output":"inate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Mode"},{"event":"cmd_output","timestamp":1607098456,"output":"l.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:16.571 [info] Periodic from module Elixir."},{"event":"cmd_output","timestamp":1607098456,"output":"Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler.FetchingState :"},{"event":"cmd_output","timestamp":1607098456,"output":": period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]"},{"event":"cmd_output","timestamp":1607098456,"output":"}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"done\"], cooling_time_sec: -2, "},{"event":"cmd_output","timestamp":1607098456,"output":"initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fetching\", publisher_cb: :skip, r"},{"event":"cmd_output","timestamp":1607098456,"output":"epo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_coun"},{"event":"cmd_output","timestamp":1607098456,"output":"t, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:16"},{"event":"cmd_output","timestamp":1607098456,"output":".572 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CompilationState with name Elixi"},{"event":"cmd_output","timestamp":1607098456,"output":"r.Ppl.PplSubInits.STMHandler.CompilationState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up"},{"event":"cmd_output","timestamp":1607098456,"output":"\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurring args: %{allowed_states: [\"regular_ini"},{"event":"cmd_output","timestamp":1607098456,"output":"t\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.P"},{"event":"cmd_output","timestamp":1607098456,"output":"plSubInits, observed_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id,"},{"event":"cmd_output","timestamp":1607098456,"output":" :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInit"},{"event":"cmd_output","timestamp":1607098456,"output":"s.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:16.572 [info] Periodic from module E"},{"event":"cmd_output","timestamp":1607098456,"output":"lixir.Ppl.PplSubInits.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHandler.Regula"},{"event":"cmd_output","timestamp":1607098456,"output":"rInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-Reg"},{"event":"cmd_output","timestamp":1607098456,"output":"ularInitState\"]}, recurring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, initial_query: Pp"},{"event":"cmd_output","timestamp":1607098456,"output":"l.PplSubInits.Model.PplSubInits, observed_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.Ecto"},{"event":"cmd_output","timestamp":1607098456,"output":"Repo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], "},{"event":"cmd_output","timestamp":1607098456,"output":"schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:16.572 [info] "},{"event":"cmd_output","timestamp":1607098456,"output":"Periodic from module Elixir.Ppl.PplBlocks.STMHandler.InitializingState with name Elixir.Ppl.PplBlock"},{"event":"cmd_output","timestamp":1607098456,"output":"s.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlo"},{"event":"cmd_output","timestamp":1607098456,"output":"cks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"waiting\", \""},{"event":"cmd_output","timestamp":1607098456,"output":"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"initiali"},{"event":"cmd_output","timestamp":1607098456,"output":"zing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :s"},{"event":"cmd_output","timestamp":1607098456,"output":"tate, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_"},{"event":"cmd_output","timestamp":1607098456,"output":"supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:16.572 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHan"},{"event":"cmd_output","timestamp":1607098456,"output":"dler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler.WaitingState :: period: 1000 ms, metric_"},{"event":"cmd_output","timestamp":1607098456,"output":"name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurring args: %{allowed"},{"event":"cmd_output","timestamp":1607098456,"output":"_states: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.Ppl"},{"event":"cmd_output","timestamp":1607098456,"output":"Blocks, observed_state: \"waiting\", publisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.STMHandler.W"},{"event":"cmd_output","timestamp":1607098456,"output":"aitingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :"},{"event":"cmd_output","timestamp":1607098456,"output":"result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervi"},{"event":"cmd_output","timestamp":1607098456,"output":"sor: :skip}\n\u001b[0m\u001b[22m\n16:14:16.573 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.Ru"},{"event":"cmd_output","timestamp":1607098456,"output":"nningState with name Elixir.Ppl.PplBlocks.STMHandler.RunningState :: period: 1000 ms, metric_name: {"},{"event":"cmd_output","timestamp":1607098456,"output":"\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states"},{"event":"cmd_output","timestamp":1607098456,"output":": [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlock"},{"event":"cmd_output","timestamp":1607098456,"output":"s, observed_state: \"running\", publisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHandler.Runni"},{"event":"cmd_output","timestamp":1607098456,"output":"ngState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :resu"},{"event":"cmd_output","timestamp":1607098456,"output":"lt, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_"},{"event":"cmd_output","timestamp":1607098456,"output":"supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:16.573 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHan"},{"event":"cmd_output","timestamp":1607098456,"output":"dler.StoppingState with name Elixir.Ppl.PplBlocks.STMHandler.StoppingState :: period: 1000 ms, metri"},{"event":"cmd_output","timestamp":1607098456,"output":"c_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurring args: %{allo"},{"event":"cmd_output","timestamp":1607098456,"output":"wed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks"},{"event":"cmd_output","timestamp":1607098456,"output":", observed_state: \"stopping\", publisher_cb: #Function<0.104215991/1 in Ppl.PplBlocks.STMHandler.Stop"},{"event":"cmd_output","timestamp":1607098456,"output":"pingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :re"},{"event":"cmd_output","timestamp":1607098456,"output":"sult, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, tas"},{"event":"cmd_output","timestamp":1607098456,"output":"k_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:16.573 [info] Periodic from module Elixir.Block.Blocks.STMHa"},{"event":"cmd_output","timestamp":1607098456,"output":"ndler.InitializingState with name Elixir.Block.Blocks.STMHandler.InitializingState :: period: 100 ms"},{"event":"cmd_output","timestamp":1607098456,"output":", metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, recurring ar"},{"event":"cmd_output","timestamp":1607098456,"output":"gs: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Blocks.Model.Bl"},{"event":"cmd_output","timestamp":1607098456,"output":"ocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :t"},{"event":"cmd_output","timestamp":1607098456,"output":"erminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Block"},{"event":"cmd_output","timestamp":1607098456,"output":"s, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:16.573 [info] Periodic from module Elixir.Block.Blocks"},{"event":"cmd_output","timestamp":1607098456,"output":".STMHandler.RunningState with name Elixir.Block.Blocks.STMHandler.RunningState :: period: 100 ms, me"},{"event":"cmd_output","timestamp":1607098456,"output":"tric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-RunningState\"]}, recurring args: %{all"},{"event":"cmd_output","timestamp":1607098456,"output":"owed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Mode"},{"event":"cmd_output","timestamp":1607098456,"output":"l.Blocks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :te"},{"event":"cmd_output","timestamp":1607098456,"output":"rminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks"},{"event":"cmd_output","timestamp":1607098456,"output":", task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:16.574 [info] Periodic from module Elixir.Block.Blocks."},{"event":"cmd_output","timestamp":1607098456,"output":"STMHandler.StoppingState with name Elixir.Block.Blocks.STMHandler.StoppingState :: period: 100 ms, m"},{"event":"cmd_output","timestamp":1607098456,"output":"etric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-StoppingState\"]}, recurring args: %{a"},{"event":"cmd_output","timestamp":1607098456,"output":"llowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks,"},{"event":"cmd_output","timestamp":1607098456,"output":" observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_"},{"event":"cmd_output","timestamp":1607098456,"output":"request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_s"},{"event":"cmd_output","timestamp":1607098456,"output":"upervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:16.574 [info] Periodic from module Elixir.Block.Tasks.STMHandle"},{"event":"cmd_output","timestamp":1607098456,"output":"r.PendingState with name Elixir.Block.Tasks.STMHandler.PendingState :: period: 100 ms, metric_name: "},{"event":"cmd_output","timestamp":1607098456,"output":"{\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingState\"]}, recurring args: %{allowed_states:"},{"event":"cmd_output","timestamp":1607098456,"output":" [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Tasks.Model.Tasks, observed_state: \""},{"event":"cmd_output","timestamp":1607098456,"output":"pending\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_a"},{"event":"cmd_output","timestamp":1607098456,"output":"t, :state, :recovery_count, :block_id, :build_request_id], schema: Block.Tasks.Model.Tasks, task_sup"},{"event":"cmd_output","timestamp":1607098456,"output":"ervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:16.574 [info] Periodic from module Elixir.Block.Tasks.STMHandler."},{"event":"cmd_output","timestamp":1607098456,"output":"RunningState with name Elixir.Block.Tasks.STMHandler.RunningState :: period: 100 ms, metric_name: {\""},{"event":"cmd_output","timestamp":1607098456,"output":"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: ["},{"event":"cmd_output","timestamp":1607098456,"output":"\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observ"},{"event":"cmd_output","timestamp":1607098456,"output":"ed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request,"},{"event":"cmd_output","timestamp":1607098456,"output":" :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor:"},{"event":"cmd_output","timestamp":1607098456,"output":" :skip}\n\u001b[0m\u001b[22m\n16:14:16.574 [info] Periodic from module Elixir.Block.Tasks.STMHandler.Stopping"},{"event":"cmd_output","timestamp":1607098456,"output":"State with name Elixir.Block.Tasks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.be"},{"event":"cmd_output","timestamp":1607098456,"output":"holder-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stop"},{"event":"cmd_output","timestamp":1607098456,"output":"ping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"stopp"},{"event":"cmd_output","timestamp":1607098456,"output":"ing\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :"},{"event":"cmd_output","timestamp":1607098456,"output":"state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098456,"output":"22m\n16:14:16.689 [info] ppl_id: 6eae1588-6ec9-4d76-8d27-a131478fe250, type: PplRequests, event: pe"},{"event":"cmd_output","timestamp":1607098456,"output":"rsisted source_args for pipeline: 6eae1588-6ec9-4d76-8d27-a131478fe250, origin: Elixir.Ppl.PplReques"},{"event":"cmd_output","timestamp":1607098456,"output":"ts.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:14:16.692 [info] ppl_id: 6eae1588"},{"event":"cmd_output","timestamp":1607098456,"output":"-6ec9-4d76-8d27-a131478fe250, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098456,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:16.708 [info] p"},{"event":"cmd_output","timestamp":1607098456,"output":"pl_id: 6eae1588-6ec9-4d76-8d27-a131478fe250, type: PplSubInits, state: regular_init, event: exit_sch"},{"event":"cmd_output","timestamp":1607098456,"output":"eduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098456,"output":"14:16.727 [info] ppl_id: 6eae1588-6ec9-4d76-8d27-a131478fe250, type: PplSubInits, state: done, resu"},{"event":"cmd_output","timestamp":1607098456,"output":"lt: failed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chan"},{"event":"cmd_output","timestamp":1607098456,"output":"ge/1(L90), \n\u001b[0m\u001b[22m\n16:14:16.735 [info] ppl_id: 6eae1588-6ec9-4d76-8d27-a131478fe250, type: Ppl"},{"event":"cmd_output","timestamp":1607098456,"output":"s, state: done, result: failed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM"},{"event":"cmd_output","timestamp":1607098456,"output":".Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test when job limit is longer than limit of its block"},{"event":"cmd_output","timestamp":1607098456,"output":" => pipeline is malformed (278.7ms)\u001b[0m\n * test when block limit is longer than deafult job limit "},{"event":"cmd_output","timestamp":1607098456,"output":"=> pipeline is malformed\u001b[22m\n16:14:16.835 [info] Request: 'run: %{:file_name => \"/exec_time_limit"},{"event":"cmd_output","timestamp":1607098456,"output":"/block_limit_over_default_job.yml\", :repo_name => \"23_initializing_test\", \"branch_id\" => \"a26ef447-4"},{"event":"cmd_output","timestamp":1607098456,"output":"202-462f-929f-51984d38c474\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469\", \"file_name\" =>"},{"event":"cmd_output","timestamp":1607098456,"output":" \"semaphore.yml\", \"hook_id\" => \"c1e44032-364b-11eb-8894-5254005464e2\", \"label\" => \"master\", \"organiz"},{"event":"cmd_output","timestamp":1607098456,"output":"ation_id\" => \"d0fbae26-05e2-4a05-8c42-2cb1c578b391\", \"owner\" => \"rt\", \"project_id\" => \"3522611f-2c7a"},{"event":"cmd_output","timestamp":1607098456,"output":"-426f-8e91-01ec7455a250\", \"repo_name\" => \"2_basic\", \"request_token\" => \"c1e438d0-364b-11eb-8d15-5254"},{"event":"cmd_output","timestamp":1607098456,"output":"005464e2\", \"requester_id\" => \"c2d1ec80-fe85-4fab-b784-2c86e0c3e32a\", \"service\" => \"local\", \"suppress"},{"event":"cmd_output","timestamp":1607098456,"output":"ed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"2dff1777-0458-4d09-934f-5fae8e8c1fc"},{"event":"cmd_output","timestamp":1607098456,"output":"1\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:14:16.838 [info] ppl_id: c414fe24-fb3e-4d02-9a79-"},{"event":"cmd_output","timestamp":1607098456,"output":"7f2fe7350fd5, type: PplRequests, event: persisted schedule request with request_token: c1e438d0-364b"},{"event":"cmd_output","timestamp":1607098456,"output":"-11eb-8d15-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2("},{"event":"cmd_output","timestamp":1607098456,"output":"L55), \n\u001b[0m\u001b[22m\n16:14:16.840 [info] ppl_id: c414fe24-fb3e-4d02-9a79-7f2fe7350fd5, type: Ppls, st"},{"event":"cmd_output","timestamp":1607098456,"output":"ate: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries"},{"event":"cmd_output","timestamp":1607098456,"output":".process_response/2(L124), \n\u001b[0m\u001b[22m\n16:14:16.842 [info] Project 3522611f-2c7a-426f-8e91-01ec745"},{"event":"cmd_output","timestamp":1607098456,"output":"5a250 and branch masterlatest_wf details updated: \"wf_id: 2dff1777-0458-4d09-934f-5fae8e8c1fc1, wf_n"},{"event":"cmd_output","timestamp":1607098456,"output":"umber: 1\"\n\u001b[0m\u001b[22m\n16:14:16.844 [info] Persisted ppl_sub_init for pipeline with ppl_id: c414fe24"},{"event":"cmd_output","timestamp":1607098456,"output":"-fb3e-4d02-9a79-7f2fe7350fd5: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:lo"},{"event":"cmd_output","timestamp":1607098456,"output":"aded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 330, in_scheduling: f"},{"event":"cmd_output","timestamp":1607098456,"output":"alse, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:14:16.842968], pipeline_requests: #Ecto.As"},{"event":"cmd_output","timestamp":1607098456,"output":"sociation.NotLoaded, ppl_id: \"c414fe24-fb3e-4d02-9a79-"},{"event":"cmd_output","timestamp":1607098456,"output":"7f2fe7350fd5\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_reque"},{"event":"cmd_output","timestamp":1607098456,"output":"st: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:14:16.842973]}\n\u001b[0m\u001b[22m\n16:14:"},{"event":"cmd_output","timestamp":1607098456,"output":"16.846 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingState with name Elixir.Pp"},{"event":"cmd_output","timestamp":1607098456,"output":"l.Ppls.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-P"},{"event":"cmd_output","timestamp":1607098456,"output":"pls-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"pending\", \""},{"event":"cmd_output","timestamp":1607098456,"output":"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", pub"},{"event":"cmd_output","timestamp":1607098456,"output":"lisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoR"},{"event":"cmd_output","timestamp":1607098456,"output":"epo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], s"},{"event":"cmd_output","timestamp":1607098456,"output":"chema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:16.847 [info] Periodic from m"},{"event":"cmd_output","timestamp":1607098456,"output":"odule Elixir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler.PendingState :: p"},{"event":"cmd_output","timestamp":1607098456,"output":"eriod: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurrin"},{"event":"cmd_output","timestamp":1607098456,"output":"g args: %{allowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_sec: 0, initial_qu"},{"event":"cmd_output","timestamp":1607098456,"output":"ery: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls"},{"event":"cmd_output","timestamp":1607098456,"output":".STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_"},{"event":"cmd_output","timestamp":1607098456,"output":"at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTa"},{"event":"cmd_output","timestamp":1607098456,"output":"skSupervisor}\n\u001b[0m\u001b[22m\n16:14:16.848 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.Queui"},{"event":"cmd_output","timestamp":1607098456,"output":"ngState with name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, metric_name: {\"Ppl.beho"},{"event":"cmd_output","timestamp":1607098456,"output":"lder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{allowed_states: [\"queuing\", "},{"event":"cmd_output","timestamp":1607098456,"output":"\"running\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"queui"},{"event":"cmd_output","timestamp":1607098456,"output":"ng\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.args/0>, repo: Ppl.Ec"},{"event":"cmd_output","timestamp":1607098456,"output":"toRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id]"},{"event":"cmd_output","timestamp":1607098456,"output":", schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:16.848 [info] Periodic fro"},{"event":"cmd_output","timestamp":1607098456,"output":"m module Elixir.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHandler.RunningState :"},{"event":"cmd_output","timestamp":1607098456,"output":": period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recur"},{"event":"cmd_output","timestamp":1607098456,"output":"ring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: P"},{"event":"cmd_output","timestamp":1607098456,"output":"pl.Ppls.Model.Ppls, observed_state: \"running\", publisher_cb: #Function<0.74670282/1 in Ppl.Ppls.STMH"},{"event":"cmd_output","timestamp":1607098456,"output":"andler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :"},{"event":"cmd_output","timestamp":1607098456,"output":"state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSup"},{"event":"cmd_output","timestamp":1607098456,"output":"ervisor}\n\u001b[0m\u001b[22m\n16:14:16.850 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.StoppingSt"},{"event":"cmd_output","timestamp":1607098456,"output":"ate with name Elixir.Ppl.Ppls.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholde"},{"event":"cmd_output","timestamp":1607098456,"output":"r-wake_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \""},{"event":"cmd_output","timestamp":1607098456,"output":"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"stopping\", publis"},{"event":"cmd_output","timestamp":1607098456,"output":"her_cb: #Function<0.71803493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, ret"},{"event":"cmd_output","timestamp":1607098456,"output":"urning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: P"},{"event":"cmd_output","timestamp":1607098456,"output":"pl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:16.850 [info] Periodic from module El"},{"event":"cmd_output","timestamp":1607098456,"output":"ixir.Ppl.PplSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHandler.CreatedStat"},{"event":"cmd_output","timestamp":1607098456,"output":"e :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState"},{"event":"cmd_output","timestamp":1607098456,"output":"\"]}, recurring args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl"},{"event":"cmd_output","timestamp":1607098456,"output":".PplSubInits.Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, "},{"event":"cmd_output","timestamp":1607098456,"output":"returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema"},{"event":"cmd_output","timestamp":1607098456,"output":": Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:16.850 [info] Period"},{"event":"cmd_output","timestamp":1607098456,"output":"ic from module Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl.PplSubInits.STMH"},{"event":"cmd_output","timestamp":1607098456,"output":"andler.FetchingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMH"},{"event":"cmd_output","timestamp":1607098456,"output":"andler-FetchingState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"done\"], "},{"event":"cmd_output","timestamp":1607098456,"output":"cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fetching\", "},{"event":"cmd_output","timestamp":1607098456,"output":"publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :"},{"event":"cmd_output","timestamp":1607098456,"output":"result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip"},{"event":"cmd_output","timestamp":1607098456,"output":"}\n\u001b[0m\u001b[22m\n16:14:16.851 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.Compilatio"},{"event":"cmd_output","timestamp":1607098456,"output":"nState with name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 100 ms, metric_name: "},{"event":"cmd_output","timestamp":1607098456,"output":"{\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurring args: %{allowed"},{"event":"cmd_output","timestamp":1607098456,"output":"_states: [\"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: P"},{"event":"cmd_output","timestamp":1607098456,"output":"pl.PplSubInits.Model.PplSubInits, observed_state: \"compilation\", publisher_cb: :skip, repo: Ppl.Ecto"},{"event":"cmd_output","timestamp":1607098456,"output":"Repo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], "},{"event":"cmd_output","timestamp":1607098456,"output":"schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:16.851 [info] "},{"event":"cmd_output","timestamp":1607098456,"output":"Periodic from module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with name Elixir.Ppl.PplSubI"},{"event":"cmd_output","timestamp":1607098456,"output":"nits.STMHandler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplS"},{"event":"cmd_output","timestamp":1607098456,"output":"ubInits-STMHandler-RegularInitState\"]}, recurring args: %{allowed_states: [\"done\"], cooling_time_sec"},{"event":"cmd_output","timestamp":1607098456,"output":": 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_init\", publisher_cb:"},{"event":"cmd_output","timestamp":1607098456,"output":" :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :reco"},{"event":"cmd_output","timestamp":1607098456,"output":"very_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098456,"output":"\n16:14:16.851 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.InitializingState with na"},{"event":"cmd_output","timestamp":1607098456,"output":"me Elixir.Ppl.PplBlocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-"},{"event":"cmd_output","timestamp":1607098456,"output":"wake_up\", [\"Ppl-PplBlocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initi"},{"event":"cmd_output","timestamp":1607098456,"output":"alizing\", \"waiting\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, obs"},{"event":"cmd_output","timestamp":1607098456,"output":"erved_state: \"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_re"},{"event":"cmd_output","timestamp":1607098456,"output":"quest, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks."},{"event":"cmd_output","timestamp":1607098456,"output":"Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:16.851 [info] Periodic from module Elixi"},{"event":"cmd_output","timestamp":1607098456,"output":"r.Ppl.PplBlocks.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler.WaitingState :: pe"},{"event":"cmd_output","timestamp":1607098456,"output":"riod: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, rec"},{"event":"cmd_output","timestamp":1607098456,"output":"urring args: %{allowed_states: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: P"},{"event":"cmd_output","timestamp":1607098456,"output":"pl.PplBlocks.Model.PplBlocks, observed_state: \"waiting\", publisher_cb: #Function<0.8975022/1 in Ppl."},{"event":"cmd_output","timestamp":1607098456,"output":"PplBlocks.STMHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, "},{"event":"cmd_output","timestamp":1607098456,"output":":updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.P"},{"event":"cmd_output","timestamp":1607098456,"output":"plBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:16.851 [info] Periodic from module Elixir.Ppl.P"},{"event":"cmd_output","timestamp":1607098456,"output":"plBlocks.STMHandler.RunningState with name Elixir.Ppl.PplBlocks.STMHandler.RunningState :: period: 1"},{"event":"cmd_output","timestamp":1607098456,"output":"000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, recurring "},{"event":"cmd_output","timestamp":1607098456,"output":"args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Pp"},{"event":"cmd_output","timestamp":1607098456,"output":"lBlocks.Model.PplBlocks, observed_state: \"running\", publisher_cb: #Function<0.28166834/1 in Ppl.PplB"},{"event":"cmd_output","timestamp":1607098456,"output":"locks.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :upd"},{"event":"cmd_output","timestamp":1607098456,"output":"ated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks."},{"event":"cmd_output","timestamp":1607098456,"output":"Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:16.851 [info] Periodic from module Elixi"},{"event":"cmd_output","timestamp":1607098456,"output":"r.Ppl.PplBlocks.STMHandler.StoppingState with name Elixir.Ppl.PplBlocks.STMHandler.StoppingState :: "},{"event":"cmd_output","timestamp":1607098456,"output":"period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, "},{"event":"cmd_output","timestamp":1607098456,"output":"recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098456,"output":"Blocks.Model.PplBlocks, observed_state: \"stopping\", publisher_cb: #Function<0.104215991/1 in Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098456,"output":"Blocks.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :u"},{"event":"cmd_output","timestamp":1607098456,"output":"pdated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlock"},{"event":"cmd_output","timestamp":1607098456,"output":"s.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:16.851 [info] Periodic from module Eli"},{"event":"cmd_output","timestamp":1607098456,"output":"xir.Block.Blocks.STMHandler.InitializingState with name Elixir.Block.Blocks.STMHandler.InitializingS"},{"event":"cmd_output","timestamp":1607098456,"output":"tate :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-Initializing"},{"event":"cmd_output","timestamp":1607098456,"output":"State\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query:"},{"event":"cmd_output","timestamp":1607098456,"output":" Block.Blocks.Model.Blocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Block.EctoRep"},{"event":"cmd_output","timestamp":1607098456,"output":"o, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Bl"},{"event":"cmd_output","timestamp":1607098456,"output":"ock.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:16.851 [info] Periodic from modu"},{"event":"cmd_output","timestamp":1607098456,"output":"le Elixir.Block.Blocks.STMHandler.RunningState with name Elixir.Block.Blocks.STMHandler.RunningState"},{"event":"cmd_output","timestamp":1607098456,"output":" :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-RunningState\"]},"},{"event":"cmd_output","timestamp":1607098456,"output":" recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_qu"},{"event":"cmd_output","timestamp":1607098456,"output":"ery: Block.Blocks.Model.Blocks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo"},{"event":"cmd_output","timestamp":1607098456,"output":", returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Blo"},{"event":"cmd_output","timestamp":1607098456,"output":"ck.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:16.851 [info] Periodic from modul"},{"event":"cmd_output","timestamp":1607098456,"output":"e Elixir.Block.Blocks.STMHandler.StoppingState with name Elixir.Block.Blocks.STMHandler.StoppingStat"},{"event":"cmd_output","timestamp":1607098456,"output":"e :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-StoppingState\"]"},{"event":"cmd_output","timestamp":1607098456,"output":"}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Bloc"},{"event":"cmd_output","timestamp":1607098456,"output":"k.Blocks.Model.Blocks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, return"},{"event":"cmd_output","timestamp":1607098456,"output":"ing: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Block"},{"event":"cmd_output","timestamp":1607098456,"output":"s.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:16.851 [info] Periodic from module Elixir"},{"event":"cmd_output","timestamp":1607098456,"output":".Block.Tasks.STMHandler.PendingState with name Elixir.Block.Tasks.STMHandler.PendingState :: period:"},{"event":"cmd_output","timestamp":1607098456,"output":" 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingState\"]}, recurring a"},{"event":"cmd_output","timestamp":1607098456,"output":"rgs: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Tasks.Model.Ta"},{"event":"cmd_output","timestamp":1607098456,"output":"sks, observed_state: \"pending\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :termina"},{"event":"cmd_output","timestamp":1607098456,"output":"te_request, :updated_at, :state, :recovery_count, :block_id, :build_request_id], schema: Block.Tasks"},{"event":"cmd_output","timestamp":1607098456,"output":".Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:16.851 [info] Periodic from module Elixir.B"},{"event":"cmd_output","timestamp":1607098456,"output":"lock.Tasks.STMHandler.RunningState with name Elixir.Block.Tasks.STMHandler.RunningState :: period: 1"},{"event":"cmd_output","timestamp":1607098456,"output":"00 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningState\"]}, recurring arg"},{"event":"cmd_output","timestamp":1607098456,"output":"s: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tas"},{"event":"cmd_output","timestamp":1607098456,"output":"ks.Model.Tasks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:i"},{"event":"cmd_output","timestamp":1607098456,"output":"d, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.T"},{"event":"cmd_output","timestamp":1607098456,"output":"asks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:16.852 [info] Periodic from module Elixir.Block.Tas"},{"event":"cmd_output","timestamp":1607098456,"output":"ks.STMHandler.StoppingState with name Elixir.Block.Tasks.STMHandler.StoppingState :: period: 100 ms,"},{"event":"cmd_output","timestamp":1607098456,"output":" metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]}, recurring args: %{"},{"event":"cmd_output","timestamp":1607098456,"output":"allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, "},{"event":"cmd_output","timestamp":1607098456,"output":"observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_r"},{"event":"cmd_output","timestamp":1607098456,"output":"equest, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supe"},{"event":"cmd_output","timestamp":1607098456,"output":"rvisor: :skip}\n\u001b[0m\u001b[22m\n16:14:16.963 [info] ppl_id: c414fe24-fb3e-4d02-9a79-7f2fe7350fd5, type: "},{"event":"cmd_output","timestamp":1607098456,"output":"PplRequests, event: persisted source_args for pipeline: c414fe24-fb3e-4d02-9a79-7f2fe7350fd5, origin"},{"event":"cmd_output","timestamp":1607098456,"output":": Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:14:16.965 [i"},{"event":"cmd_output","timestamp":1607098456,"output":"nfo] ppl_id: c414fe24-fb3e-4d02-9a79-7f2fe7350fd5, type: PplSubInits, state: fetching, event: exit_"},{"event":"cmd_output","timestamp":1607098456,"output":"scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098456,"output":"16:14:16.988 [info] ppl_id: c414fe24-fb3e-4d02-9a79-7f2fe7350fd5, type: PplSubInits, state: regular"},{"event":"cmd_output","timestamp":1607098456,"output":"_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1("},{"event":"cmd_output","timestamp":1607098457,"output":"L90), \n\u001b[0m\u001b[22m\n16:14:17.003 [info] ppl_id: c414fe24-fb3e-4d02-9a79-7f2fe7350fd5, type: PplSubIn"},{"event":"cmd_output","timestamp":1607098457,"output":"its, state: done, result: failed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.S"},{"event":"cmd_output","timestamp":1607098457,"output":"TM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:17.009 [info] ppl_id: c414fe24-fb3e-4d02-9a79-7"},{"event":"cmd_output","timestamp":1607098457,"output":"f2fe7350fd5, type: Ppls, state: done, result: failed, event: exit_scheduling, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098457,"output":"gin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test when block limit is longer"},{"event":"cmd_output","timestamp":1607098457,"output":" than deafult job limit => pipeline is malformed (270.9ms)\u001b[0m\n * test when block limit is longer "},{"event":"cmd_output","timestamp":1607098457,"output":"than pipeline limit => pipeline is malformed\u001b[22m\n16:14:17.102 [info] Request: 'run: %{:file_name "},{"event":"cmd_output","timestamp":1607098457,"output":"=> \"/exec_time_limit/block_longer_than_ppl.yml\", :repo_name => \"23_initializing_test\", \"branch_id\" ="},{"event":"cmd_output","timestamp":1607098457,"output":"> \"cc45d0b7-c30b-4b5a-b7c6-7cacca6e784d\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469\", \""},{"event":"cmd_output","timestamp":1607098457,"output":"file_name\" => \"semaphore.yml\", \"hook_id\" => \"c20d072e-364b-11eb-a463-5254005464e2\", \"label\" => \"mast"},{"event":"cmd_output","timestamp":1607098457,"output":"er\", \"organization_id\" => \"f0e658ad-8d18-4bcf-b43c-f58e0297b607\", \"owner\" => \"rt\", \"project_id\" => \""},{"event":"cmd_output","timestamp":1607098457,"output":"ee3735c3-0cd4-4bc7-b5a0-d94cecd51b25\", \"repo_name\" => \"2_basic\", \"request_token\" => \"c20cff5e-364b-1"},{"event":"cmd_output","timestamp":1607098457,"output":"1eb-bf02-5254005464e2\", \"requester_id\" => \"cd5077c1-3d9d-4a06-a639-04a2e32f2d16\", \"service\" => \"loca"},{"event":"cmd_output","timestamp":1607098457,"output":"l\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"bbf70288-c0d7-40c5-a17"},{"event":"cmd_output","timestamp":1607098457,"output":"0-1cd0dad2368f\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:14:17.107 [info] ppl_id: 6300422c-76"},{"event":"cmd_output","timestamp":1607098457,"output":"45-4fde-9416-171942c46d50, type: PplRequests, event: persisted schedule request with request_token: "},{"event":"cmd_output","timestamp":1607098457,"output":"c20cff5e-364b-11eb-bf02-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.proces"},{"event":"cmd_output","timestamp":1607098457,"output":"s_response/2(L55), \n\u001b[0m\u001b[22m\n16:14:17.109 [info] ppl_id: 6300422c-7645-4fde-9416-171942c46d50, t"},{"event":"cmd_output","timestamp":1607098457,"output":"ype: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Mode"},{"event":"cmd_output","timestamp":1607098457,"output":"l.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:14:17.113 [info] Project ee3735c3-0cd4-4bc7"},{"event":"cmd_output","timestamp":1607098457,"output":"-b5a0-d94cecd51b25 and branch masterlatest_wf details updated: \"wf_id: bbf70288-c0d7-40c5-a170-1cd0d"},{"event":"cmd_output","timestamp":1607098457,"output":"ad2368f, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:14:17.114 [info] Persisted ppl_sub_init for pipeline with ppl"},{"event":"cmd_output","timestamp":1607098457,"output":"_id: 6300422c-7645-4fde-9416-171942c46d50: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema"},{"event":"cmd_output","timestamp":1607098457,"output":".Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 331, in_"},{"event":"cmd_output","timestamp":1607098457,"output":"scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:14:17.113251], pipeline_reque"},{"event":"cmd_output","timestamp":1607098457,"output":"sts: #Ecto.Association.NotLoaded, ppl_id: \"6300422c-76"},{"event":"cmd_output","timestamp":1607098457,"output":"45-4fde-9416-171942c46d50\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", te"},{"event":"cmd_output","timestamp":1607098457,"output":"rminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:14:17.113257]}\n\u001b[0m"},{"event":"cmd_output","timestamp":1607098457,"output":"\u001b[22m\n16:14:17.126 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingState with n"},{"event":"cmd_output","timestamp":1607098457,"output":"ame Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake"},{"event":"cmd_output","timestamp":1607098457,"output":"_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\","},{"event":"cmd_output","timestamp":1607098457,"output":" \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"initi"},{"event":"cmd_output","timestamp":1607098457,"output":"alizing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, re"},{"event":"cmd_output","timestamp":1607098457,"output":"po: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count"},{"event":"cmd_output","timestamp":1607098457,"output":", :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:17.126 [info] Pe"},{"event":"cmd_output","timestamp":1607098457,"output":"riodic from module Elixir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler.Pend"},{"event":"cmd_output","timestamp":1607098457,"output":"ingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState"},{"event":"cmd_output","timestamp":1607098457,"output":"\"]}, recurring args: %{allowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_sec: "},{"event":"cmd_output","timestamp":1607098457,"output":"0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publisher_cb: #Function<0.8493005/"},{"event":"cmd_output","timestamp":1607098457,"output":"1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_reque"},{"event":"cmd_output","timestamp":1607098457,"output":"st, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_super"},{"event":"cmd_output","timestamp":1607098457,"output":"visor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:14:17.126 [info] Periodic from module Elixir.Ppl.Ppls.STM"},{"event":"cmd_output","timestamp":1607098457,"output":"Handler.QueuingState with name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, metric_nam"},{"event":"cmd_output","timestamp":1607098457,"output":"e: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{allowed_states:"},{"event":"cmd_output","timestamp":1607098457,"output":" [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_"},{"event":"cmd_output","timestamp":1607098457,"output":"state: \"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.args/0>,"},{"event":"cmd_output","timestamp":1607098457,"output":" repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_co"},{"event":"cmd_output","timestamp":1607098457,"output":"unt, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:17.126 [info] "},{"event":"cmd_output","timestamp":1607098457,"output":" Periodic from module Elixir.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHandler.R"},{"event":"cmd_output","timestamp":1607098457,"output":"unningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-RunningSt"},{"event":"cmd_output","timestamp":1607098457,"output":"ate\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, ini"},{"event":"cmd_output","timestamp":1607098457,"output":"tial_query: Ppl.Ppls.Model.Ppls, observed_state: \"running\", publisher_cb: #Function<0.74670282/1 in "},{"event":"cmd_output","timestamp":1607098457,"output":"Ppl.Ppls.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :"},{"event":"cmd_output","timestamp":1607098457,"output":"updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor"},{"event":"cmd_output","timestamp":1607098457,"output":": PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:14:17.126 [info] Periodic from module Elixir.Ppl.Ppls.STMHandl"},{"event":"cmd_output","timestamp":1607098457,"output":"er.StoppingState with name Elixir.Ppl.Ppls.STMHandler.StoppingState :: period: 100 ms, metric_name: "},{"event":"cmd_output","timestamp":1607098457,"output":"{\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: ["},{"event":"cmd_output","timestamp":1607098457,"output":"\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"stop"},{"event":"cmd_output","timestamp":1607098457,"output":"ping\", publisher_cb: #Function<0.71803493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, repo: Ppl."},{"event":"cmd_output","timestamp":1607098457,"output":"EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_i"},{"event":"cmd_output","timestamp":1607098457,"output":"d], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:17.126 [info] Periodic f"},{"event":"cmd_output","timestamp":1607098457,"output":"rom module Elixir.Ppl.PplSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHandle"},{"event":"cmd_output","timestamp":1607098457,"output":"r.CreatedState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler"},{"event":"cmd_output","timestamp":1607098457,"output":"-CreatedState\"]}, recurring args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, initi"},{"event":"cmd_output","timestamp":1607098457,"output":"al_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip, repo: P"},{"event":"cmd_output","timestamp":1607098457,"output":"pl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :pp"},{"event":"cmd_output","timestamp":1607098457,"output":"l_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:17.126 ["},{"event":"cmd_output","timestamp":1607098457,"output":"info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098457,"output":"SubInits.STMHandler.FetchingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppl"},{"event":"cmd_output","timestamp":1607098457,"output":"SubInits-STMHandler-FetchingState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilatio"},{"event":"cmd_output","timestamp":1607098457,"output":"n\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state:"},{"event":"cmd_output","timestamp":1607098457,"output":" \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_"},{"event":"cmd_output","timestamp":1607098457,"output":"at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supe"},{"event":"cmd_output","timestamp":1607098457,"output":"rvisor: :skip}\n\u001b[0m\u001b[22m\n16:14:17.126 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandl"},{"event":"cmd_output","timestamp":1607098457,"output":"er.CompilationState with name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 100 ms, "},{"event":"cmd_output","timestamp":1607098457,"output":"metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurring ar"},{"event":"cmd_output","timestamp":1607098457,"output":"gs: %{allowed_states: [\"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2, ini"},{"event":"cmd_output","timestamp":1607098457,"output":"tial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"compilation\", publisher_cb: :skip, r"},{"event":"cmd_output","timestamp":1607098457,"output":"epo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_coun"},{"event":"cmd_output","timestamp":1607098457,"output":"t, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:17"},{"event":"cmd_output","timestamp":1607098457,"output":".127 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with name Elixi"},{"event":"cmd_output","timestamp":1607098457,"output":"r.Ppl.PplSubInits.STMHandler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up"},{"event":"cmd_output","timestamp":1607098457,"output":"\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurring args: %{allowed_states: [\"done\"], coo"},{"event":"cmd_output","timestamp":1607098457,"output":"ling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_init\", "},{"event":"cmd_output","timestamp":1607098457,"output":"publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :"},{"event":"cmd_output","timestamp":1607098457,"output":"result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip"},{"event":"cmd_output","timestamp":1607098457,"output":"}\n\u001b[0m\u001b[22m\n16:14:17.127 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.Initializing"},{"event":"cmd_output","timestamp":1607098457,"output":"State with name Elixir.Ppl.PplBlocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\""},{"event":"cmd_output","timestamp":1607098457,"output":"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_st"},{"event":"cmd_output","timestamp":1607098457,"output":"ates: [\"initializing\", \"waiting\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.P"},{"event":"cmd_output","timestamp":1607098457,"output":"plBlocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, "},{"event":"cmd_output","timestamp":1607098457,"output":":terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: P"},{"event":"cmd_output","timestamp":1607098457,"output":"pl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:17.127 [info] Periodic from"},{"event":"cmd_output","timestamp":1607098457,"output":" module Elixir.Ppl.PplBlocks.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler.Waiti"},{"event":"cmd_output","timestamp":1607098457,"output":"ngState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-Waiting"},{"event":"cmd_output","timestamp":1607098457,"output":"State\"]}, recurring args: %{allowed_states: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 0, ini"},{"event":"cmd_output","timestamp":1607098457,"output":"tial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"waiting\", publisher_cb: #Function<0.8975"},{"event":"cmd_output","timestamp":1607098457,"output":"022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :termin"},{"event":"cmd_output","timestamp":1607098457,"output":"ate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplB"},{"event":"cmd_output","timestamp":1607098457,"output":"locks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:17.127 [info] Periodic from module"},{"event":"cmd_output","timestamp":1607098457,"output":" Elixir.Ppl.PplBlocks.STMHandler.RunningState with name Elixir.Ppl.PplBlocks.STMHandler.RunningState"},{"event":"cmd_output","timestamp":1607098457,"output":" :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]"},{"event":"cmd_output","timestamp":1607098457,"output":"}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_"},{"event":"cmd_output","timestamp":1607098457,"output":"query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"running\", publisher_cb: #Function<0.28166834/"},{"event":"cmd_output","timestamp":1607098457,"output":"1 in Ppl.PplBlocks.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_"},{"event":"cmd_output","timestamp":1607098457,"output":"request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: P"},{"event":"cmd_output","timestamp":1607098457,"output":"pl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:17.128 [info] Periodic from"},{"event":"cmd_output","timestamp":1607098457,"output":" module Elixir.Ppl.PplBlocks.STMHandler.StoppingState with name Elixir.Ppl.PplBlocks.STMHandler.Stop"},{"event":"cmd_output","timestamp":1607098457,"output":"pingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-Stopp"},{"event":"cmd_output","timestamp":1607098457,"output":"ingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_q"},{"event":"cmd_output","timestamp":1607098457,"output":"uery: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"stopping\", publisher_cb: #Function<0.104215991"},{"event":"cmd_output","timestamp":1607098457,"output":"/1 in Ppl.PplBlocks.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminat"},{"event":"cmd_output","timestamp":1607098457,"output":"e_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema:"},{"event":"cmd_output","timestamp":1607098457,"output":" Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:17.128 [info] Periodic fr"},{"event":"cmd_output","timestamp":1607098457,"output":"om module Elixir.Block.Blocks.STMHandler.InitializingState with name Elixir.Block.Blocks.STMHandler."},{"event":"cmd_output","timestamp":1607098457,"output":"InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler"},{"event":"cmd_output","timestamp":1607098457,"output":"-InitializingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, i"},{"event":"cmd_output","timestamp":1607098457,"output":"nitial_query: Block.Blocks.Model.Blocks, observed_state: \"initializing\", publisher_cb: :skip, repo: "},{"event":"cmd_output","timestamp":1607098457,"output":"Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id"},{"event":"cmd_output","timestamp":1607098457,"output":"], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:17.129 [info] Perio"},{"event":"cmd_output","timestamp":1607098457,"output":"dic from module Elixir.Block.Blocks.STMHandler.RunningState with name Elixir.Block.Blocks.STMHandler"},{"event":"cmd_output","timestamp":1607098457,"output":".RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-Run"},{"event":"cmd_output","timestamp":1607098457,"output":"ningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -"},{"event":"cmd_output","timestamp":1607098457,"output":"2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"running\", publisher_cb: :skip, repo: B"},{"event":"cmd_output","timestamp":1607098457,"output":"lock.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id]"},{"event":"cmd_output","timestamp":1607098457,"output":", schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:17.129 [info] Period"},{"event":"cmd_output","timestamp":1607098457,"output":"ic from module Elixir.Block.Blocks.STMHandler.StoppingState with name Elixir.Block.Blocks.STMHandler"},{"event":"cmd_output","timestamp":1607098457,"output":".StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-St"},{"event":"cmd_output","timestamp":1607098457,"output":"oppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initia"},{"event":"cmd_output","timestamp":1607098457,"output":"l_query: Block.Blocks.Model.Blocks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.Ect"},{"event":"cmd_output","timestamp":1607098457,"output":"oRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema"},{"event":"cmd_output","timestamp":1607098457,"output":": Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:17.130 [info] Periodic from "},{"event":"cmd_output","timestamp":1607098457,"output":"module Elixir.Block.Tasks.STMHandler.PendingState with name Elixir.Block.Tasks.STMHandler.PendingSta"},{"event":"cmd_output","timestamp":1607098457,"output":"te :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingState\"]}"},{"event":"cmd_output","timestamp":1607098457,"output":", recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.T"},{"event":"cmd_output","timestamp":1607098457,"output":"asks.Model.Tasks, observed_state: \"pending\", publisher_cb: :skip, repo: Block.EctoRepo, returning: ["},{"event":"cmd_output","timestamp":1607098457,"output":":id, :terminate_request, :updated_at, :state, :recovery_count, :block_id, :build_request_id], schema"},{"event":"cmd_output","timestamp":1607098457,"output":": Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:17.130 [info] Periodic from mo"},{"event":"cmd_output","timestamp":1607098457,"output":"dule Elixir.Block.Tasks.STMHandler.RunningState with name Elixir.Block.Tasks.STMHandler.RunningState"},{"event":"cmd_output","timestamp":1607098457,"output":" :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningState\"]}, "},{"event":"cmd_output","timestamp":1607098457,"output":"recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_que"},{"event":"cmd_output","timestamp":1607098457,"output":"ry: Block.Tasks.Model.Tasks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, r"},{"event":"cmd_output","timestamp":1607098457,"output":"eturning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block."},{"event":"cmd_output","timestamp":1607098457,"output":"Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:17.131 [info] Periodic from module Eli"},{"event":"cmd_output","timestamp":1607098457,"output":"xir.Block.Tasks.STMHandler.StoppingState with name Elixir.Block.Tasks.STMHandler.StoppingState :: pe"},{"event":"cmd_output","timestamp":1607098457,"output":"riod: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]}, recur"},{"event":"cmd_output","timestamp":1607098457,"output":"ring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks."},{"event":"cmd_output","timestamp":1607098457,"output":"Model.Tasks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id,"},{"event":"cmd_output","timestamp":1607098457,"output":" :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tas"},{"event":"cmd_output","timestamp":1607098457,"output":"ks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:17.240 [info] ppl_id: 6300422c-7645-4fde-9416-171942c"},{"event":"cmd_output","timestamp":1607098457,"output":"46d50, type: PplRequests, event: persisted source_args for pipeline: 6300422c-7645-4fde-9416-171942c"},{"event":"cmd_output","timestamp":1607098457,"output":"46d50, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098457,"output":":14:17.242 [info] ppl_id: 6300422c-7645-4fde-9416-171942c46d50, type: PplSubInits, state: fetching,"},{"event":"cmd_output","timestamp":1607098457,"output":" event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), "},{"event":"cmd_output","timestamp":1607098457,"output":"\n\u001b[0m\u001b[22m\n16:14:17.259 [info] ppl_id: 6300422c-7645-4fde-9416-171942c46d50, type: PplSubInits, s"},{"event":"cmd_output","timestamp":1607098457,"output":"tate: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_st"},{"event":"cmd_output","timestamp":1607098457,"output":"ate_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:17.275 [info] ppl_id: 6300422c-7645-4fde-9416-171942c46d50, t"},{"event":"cmd_output","timestamp":1607098457,"output":"ype: PplSubInits, state: done, result: failed, event: exit_scheduling, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098457,"output":"ixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:17.287 [info] ppl_id: 6300422c-764"},{"event":"cmd_output","timestamp":1607098457,"output":"5-4fde-9416-171942c46d50, type: Ppls, state: done, result: failed, event: exit_scheduling, recovery_"},{"event":"cmd_output","timestamp":1607098457,"output":"count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test when block li"},{"event":"cmd_output","timestamp":1607098457,"output":"mit is longer than pipeline limit => pipeline is malformed (278.9ms)\u001b[0m\n * test when job limit is"},{"event":"cmd_output","timestamp":1607098457,"output":" longer than pipeline limit => pipeline is malformed\u001b[22m\n16:14:17.379 [info] Request: 'run: %{:fi"},{"event":"cmd_output","timestamp":1607098457,"output":"le_name => \"/exec_time_limit/job_longer_than_ppl.yml\", :repo_name => \"23_initializing_test\", \"branch"},{"event":"cmd_output","timestamp":1607098457,"output":"_id\" => \"b2bd8425-54dd-4cfa-80a1-78a04fcce86a\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a44"},{"event":"cmd_output","timestamp":1607098457,"output":"69\", \"file_name\" => \"semaphore.yml\", \"hook_id\" => \"c2375740-364b-11eb-9fa8-5254005464e2\", \"label\" =>"},{"event":"cmd_output","timestamp":1607098457,"output":" \"master\", \"organization_id\" => \"70e14edd-2261-4e6d-a6c3-9b5ed6b2657f\", \"owner\" => \"rt\", \"project_id"},{"event":"cmd_output","timestamp":1607098457,"output":"\" => \"c03a5862-c33c-4532-b13f-730675392816\", \"repo_name\" => \"2_basic\", \"request_token\" => \"c237499e-"},{"event":"cmd_output","timestamp":1607098457,"output":"364b-11eb-8ce7-5254005464e2\", \"requester_id\" => \"0bd20ed6-c43b-407a-aa33-4c54f1054496\", \"service\" =>"},{"event":"cmd_output","timestamp":1607098457,"output":" \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"a7328518-0dbd-48"},{"event":"cmd_output","timestamp":1607098457,"output":"9b-9bff-b0b9fc68ed85\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:14:17.382 [info] ppl_id: 9067c"},{"event":"cmd_output","timestamp":1607098457,"output":"bb6-636f-4714-9280-2abfb60ef9af, type: PplRequests, event: persisted schedule request with request_t"},{"event":"cmd_output","timestamp":1607098457,"output":"oken: c237499e-364b-11eb-8ce7-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries."},{"event":"cmd_output","timestamp":1607098457,"output":"process_response/2(L55), \n\u001b[0m\u001b[22m\n16:14:17.384 [info] ppl_id: 9067cbb6-636f-4714-9280-2abfb60ef"},{"event":"cmd_output","timestamp":1607098457,"output":"9af, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098457,"output":"s.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:14:17.388 [info] Project c03a5862-c33"},{"event":"cmd_output","timestamp":1607098457,"output":"c-4532-b13f-730675392816 and branch masterlatest_wf details updated: \"wf_id: a7328518-0dbd-489b-9bff"},{"event":"cmd_output","timestamp":1607098457,"output":"-b0b9fc68ed85, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:14:17.389 [info] Persisted ppl_sub_init for pipeline wi"},{"event":"cmd_output","timestamp":1607098457,"output":"th ppl_id: 9067cbb6-636f-4714-9280-2abfb60ef9af: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto."},{"event":"cmd_output","timestamp":1607098457,"output":"Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 33"},{"event":"cmd_output","timestamp":1607098457,"output":"2, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:14:17.388139], pipeline"},{"event":"cmd_output","timestamp":1607098457,"output":"_requests: #Ecto.Association.NotLoaded, ppl_id: \"9067c"},{"event":"cmd_output","timestamp":1607098457,"output":"bb6-636f-4714-9280-2abfb60ef9af\", recovery_count: 0, result: nil, result_reason: nil, state: \"create"},{"event":"cmd_output","timestamp":1607098457,"output":"d\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:14:17.388145]}"},{"event":"cmd_output","timestamp":1607098457,"output":"\n\u001b[0m\u001b[22m\n16:14:17.392 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingState "},{"event":"cmd_output","timestamp":1607098457,"output":"with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholde"},{"event":"cmd_output","timestamp":1607098457,"output":"r-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initiali"},{"event":"cmd_output","timestamp":1607098457,"output":"zing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: "},{"event":"cmd_output","timestamp":1607098457,"output":"\"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/"},{"event":"cmd_output","timestamp":1607098457,"output":"0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery"},{"event":"cmd_output","timestamp":1607098457,"output":"_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:17.393 [inf"},{"event":"cmd_output","timestamp":1607098457,"output":"o] Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandle"},{"event":"cmd_output","timestamp":1607098457,"output":"r.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Pendin"},{"event":"cmd_output","timestamp":1607098457,"output":"gState\"]}, recurring args: %{allowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time"},{"event":"cmd_output","timestamp":1607098457,"output":"_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publisher_cb: #Function<0.84"},{"event":"cmd_output","timestamp":1607098457,"output":"93005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate"},{"event":"cmd_output","timestamp":1607098457,"output":"_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task"},{"event":"cmd_output","timestamp":1607098457,"output":"_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:14:17.394 [info] Periodic from module Elixir.Ppl.Pp"},{"event":"cmd_output","timestamp":1607098457,"output":"ls.STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, metr"},{"event":"cmd_output","timestamp":1607098457,"output":"ic_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{allowed_s"},{"event":"cmd_output","timestamp":1607098457,"output":"tates: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, obs"},{"event":"cmd_output","timestamp":1607098457,"output":"erved_state: \"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.ar"},{"event":"cmd_output","timestamp":1607098457,"output":"gs/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recov"},{"event":"cmd_output","timestamp":1607098457,"output":"ery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:17.394 ["},{"event":"cmd_output","timestamp":1607098457,"output":"info] Periodic from module Elixir.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHan"},{"event":"cmd_output","timestamp":1607098457,"output":"dler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Run"},{"event":"cmd_output","timestamp":1607098457,"output":"ningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -"},{"event":"cmd_output","timestamp":1607098457,"output":"2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"running\", publisher_cb: #Function<0.74670282"},{"event":"cmd_output","timestamp":1607098457,"output":"/1 in Ppl.Ppls.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_requ"},{"event":"cmd_output","timestamp":1607098457,"output":"est, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supe"},{"event":"cmd_output","timestamp":1607098457,"output":"rvisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:14:17.394 [info] Periodic from module Elixir.Ppl.Ppls.ST"},{"event":"cmd_output","timestamp":1607098457,"output":"MHandler.StoppingState with name Elixir.Ppl.Ppls.STMHandler.StoppingState :: period: 100 ms, metric_"},{"event":"cmd_output","timestamp":1607098457,"output":"name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring args: %{allowed_sta"},{"event":"cmd_output","timestamp":1607098457,"output":"tes: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state:"},{"event":"cmd_output","timestamp":1607098457,"output":" \"stopping\", publisher_cb: #Function<0.71803493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, repo"},{"event":"cmd_output","timestamp":1607098457,"output":": Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, "},{"event":"cmd_output","timestamp":1607098457,"output":":ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:17.394 [info] Peri"},{"event":"cmd_output","timestamp":1607098457,"output":"odic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STM"},{"event":"cmd_output","timestamp":1607098457,"output":"Handler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMH"},{"event":"cmd_output","timestamp":1607098457,"output":"andler-CreatedState\"]}, recurring args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0,"},{"event":"cmd_output","timestamp":1607098457,"output":" initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip, r"},{"event":"cmd_output","timestamp":1607098457,"output":"epo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_coun"},{"event":"cmd_output","timestamp":1607098457,"output":"t, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:17"},{"event":"cmd_output","timestamp":1607098457,"output":".394 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.P"},{"event":"cmd_output","timestamp":1607098457,"output":"pl.PplSubInits.STMHandler.FetchingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"P"},{"event":"cmd_output","timestamp":1607098457,"output":"pl-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"comp"},{"event":"cmd_output","timestamp":1607098457,"output":"ilation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_"},{"event":"cmd_output","timestamp":1607098457,"output":"state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :up"},{"event":"cmd_output","timestamp":1607098457,"output":"dated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, tas"},{"event":"cmd_output","timestamp":1607098457,"output":"k_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:17.394 [info] Periodic from module Elixir.Ppl.PplSubInits.ST"},{"event":"cmd_output","timestamp":1607098457,"output":"MHandler.CompilationState with name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 10"},{"event":"cmd_output","timestamp":1607098457,"output":"0 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurr"},{"event":"cmd_output","timestamp":1607098457,"output":"ing args: %{allowed_states: [\"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -"},{"event":"cmd_output","timestamp":1607098457,"output":"2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"compilation\", publisher_cb: :s"},{"event":"cmd_output","timestamp":1607098457,"output":"kip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recover"},{"event":"cmd_output","timestamp":1607098457,"output":"y_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098457,"output":":14:17.394 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with name"},{"event":"cmd_output","timestamp":1607098457,"output":" Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-w"},{"event":"cmd_output","timestamp":1607098457,"output":"ake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurring args: %{allowed_states: [\"done\""},{"event":"cmd_output","timestamp":1607098457,"output":"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_i"},{"event":"cmd_output","timestamp":1607098457,"output":"nit\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :st"},{"event":"cmd_output","timestamp":1607098457,"output":"ate, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor:"},{"event":"cmd_output","timestamp":1607098457,"output":" :skip}\n\u001b[0m\u001b[22m\n16:14:17.394 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.Initia"},{"event":"cmd_output","timestamp":1607098457,"output":"lizingState with name Elixir.Ppl.PplBlocks.STMHandler.InitializingState :: period: 100 ms, metric_na"},{"event":"cmd_output","timestamp":1607098457,"output":"me: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-InitializingState\"]}, recurring args: %{allo"},{"event":"cmd_output","timestamp":1607098457,"output":"wed_states: [\"initializing\", \"waiting\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.M"},{"event":"cmd_output","timestamp":1607098457,"output":"odel.PplBlocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: "},{"event":"cmd_output","timestamp":1607098457,"output":"[:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], sch"},{"event":"cmd_output","timestamp":1607098457,"output":"ema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:17.395 [info] Periodi"},{"event":"cmd_output","timestamp":1607098457,"output":"c from module Elixir.Ppl.PplBlocks.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler"},{"event":"cmd_output","timestamp":1607098457,"output":".WaitingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-W"},{"event":"cmd_output","timestamp":1607098457,"output":"aitingState\"]}, recurring args: %{allowed_states: [\"waiting\", \"running\", \"done\"], cooling_time_sec: "},{"event":"cmd_output","timestamp":1607098457,"output":"0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"waiting\", publisher_cb: #Function<"},{"event":"cmd_output","timestamp":1607098457,"output":"0.8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :"},{"event":"cmd_output","timestamp":1607098457,"output":"terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Pp"},{"event":"cmd_output","timestamp":1607098457,"output":"l.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:17.395 [info] Periodic from "},{"event":"cmd_output","timestamp":1607098457,"output":"module Elixir.Ppl.PplBlocks.STMHandler.RunningState with name Elixir.Ppl.PplBlocks.STMHandler.Runnin"},{"event":"cmd_output","timestamp":1607098457,"output":"gState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningS"},{"event":"cmd_output","timestamp":1607098457,"output":"tate\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, in"},{"event":"cmd_output","timestamp":1607098457,"output":"itial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"running\", publisher_cb: #Function<0.281"},{"event":"cmd_output","timestamp":1607098457,"output":"66834/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :term"},{"event":"cmd_output","timestamp":1607098457,"output":"inate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], sch"},{"event":"cmd_output","timestamp":1607098457,"output":"ema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:17.395 [info] Periodi"},{"event":"cmd_output","timestamp":1607098457,"output":"c from module Elixir.Ppl.PplBlocks.STMHandler.StoppingState with name Elixir.Ppl.PplBlocks.STMHandle"},{"event":"cmd_output","timestamp":1607098457,"output":"r.StoppingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler"},{"event":"cmd_output","timestamp":1607098457,"output":"-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, ini"},{"event":"cmd_output","timestamp":1607098457,"output":"tial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"stopping\", publisher_cb: #Function<0.104"},{"event":"cmd_output","timestamp":1607098457,"output":"215991/1 in Ppl.PplBlocks.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :te"},{"event":"cmd_output","timestamp":1607098457,"output":"rminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], s"},{"event":"cmd_output","timestamp":1607098457,"output":"chema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:17.395 [info] Perio"},{"event":"cmd_output","timestamp":1607098457,"output":"dic from module Elixir.Block.Blocks.STMHandler.InitializingState with name Elixir.Block.Blocks.STMHa"},{"event":"cmd_output","timestamp":1607098457,"output":"ndler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMH"},{"event":"cmd_output","timestamp":1607098457,"output":"andler-InitializingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec"},{"event":"cmd_output","timestamp":1607098457,"output":": 0, initial_query: Block.Blocks.Model.Blocks, observed_state: \"initializing\", publisher_cb: :skip, "},{"event":"cmd_output","timestamp":1607098457,"output":"repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :bl"},{"event":"cmd_output","timestamp":1607098457,"output":"ock_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:17.395 [info] "},{"event":"cmd_output","timestamp":1607098457,"output":" Periodic from module Elixir.Block.Blocks.STMHandler.RunningState with name Elixir.Block.Blocks.STMH"},{"event":"cmd_output","timestamp":1607098457,"output":"andler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandl"},{"event":"cmd_output","timestamp":1607098457,"output":"er-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_"},{"event":"cmd_output","timestamp":1607098457,"output":"sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"running\", publisher_cb: :skip, r"},{"event":"cmd_output","timestamp":1607098457,"output":"epo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :blo"},{"event":"cmd_output","timestamp":1607098457,"output":"ck_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:17.395 [info] "},{"event":"cmd_output","timestamp":1607098457,"output":"Periodic from module Elixir.Block.Blocks.STMHandler.StoppingState with name Elixir.Block.Blocks.STMH"},{"event":"cmd_output","timestamp":1607098457,"output":"andler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHand"},{"event":"cmd_output","timestamp":1607098457,"output":"ler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, "},{"event":"cmd_output","timestamp":1607098457,"output":"initial_query: Block.Blocks.Model.Blocks, observed_state: \"stopping\", publisher_cb: :skip, repo: Blo"},{"event":"cmd_output","timestamp":1607098457,"output":"ck.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], "},{"event":"cmd_output","timestamp":1607098457,"output":"schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:17.395 [info] Periodic"},{"event":"cmd_output","timestamp":1607098457,"output":" from module Elixir.Block.Tasks.STMHandler.PendingState with name Elixir.Block.Tasks.STMHandler.Pend"},{"event":"cmd_output","timestamp":1607098457,"output":"ingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingSt"},{"event":"cmd_output","timestamp":1607098457,"output":"ate\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: B"},{"event":"cmd_output","timestamp":1607098457,"output":"lock.Tasks.Model.Tasks, observed_state: \"pending\", publisher_cb: :skip, repo: Block.EctoRepo, return"},{"event":"cmd_output","timestamp":1607098457,"output":"ing: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id, :build_request_id], "},{"event":"cmd_output","timestamp":1607098457,"output":"schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:17.395 [info] Periodic f"},{"event":"cmd_output","timestamp":1607098457,"output":"rom module Elixir.Block.Tasks.STMHandler.RunningState with name Elixir.Block.Tasks.STMHandler.Runnin"},{"event":"cmd_output","timestamp":1607098457,"output":"gState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningStat"},{"event":"cmd_output","timestamp":1607098457,"output":"e\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initi"},{"event":"cmd_output","timestamp":1607098457,"output":"al_query: Block.Tasks.Model.Tasks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoR"},{"event":"cmd_output","timestamp":1607098457,"output":"epo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: "},{"event":"cmd_output","timestamp":1607098457,"output":"Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:17.395 [info] Periodic from modu"},{"event":"cmd_output","timestamp":1607098457,"output":"le Elixir.Block.Tasks.STMHandler.StoppingState with name Elixir.Block.Tasks.STMHandler.StoppingState"},{"event":"cmd_output","timestamp":1607098457,"output":" :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]},"},{"event":"cmd_output","timestamp":1607098457,"output":" recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block."},{"event":"cmd_output","timestamp":1607098457,"output":"Tasks.Model.Tasks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning:"},{"event":"cmd_output","timestamp":1607098457,"output":" [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Mod"},{"event":"cmd_output","timestamp":1607098457,"output":"el.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:17.516 [info] ppl_id: 9067cbb6-636f-4714-9280-2"},{"event":"cmd_output","timestamp":1607098457,"output":"abfb60ef9af, type: PplRequests, event: persisted source_args for pipeline: 9067cbb6-636f-4714-9280-2"},{"event":"cmd_output","timestamp":1607098457,"output":"abfb60ef9af, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098457,"output":"2m\n16:14:17.517 [info] ppl_id: 9067cbb6-636f-4714-9280-2abfb60ef9af, type: PplSubInits, state: fet"},{"event":"cmd_output","timestamp":1607098457,"output":"ching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1("},{"event":"cmd_output","timestamp":1607098457,"output":"L90), \n\u001b[0m\u001b[22m\n16:14:17.537 [info] ppl_id: 9067cbb6-636f-4714-9280-2abfb60ef9af, type: PplSubIn"},{"event":"cmd_output","timestamp":1607098457,"output":"its, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl."},{"event":"cmd_output","timestamp":1607098457,"output":"log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:17.552 [info] ppl_id: 9067cbb6-636f-4714-9280-2abfb60ef"},{"event":"cmd_output","timestamp":1607098457,"output":"9af, type: PplSubInits, state: done, result: failed, event: exit_scheduling, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098457,"output":"in: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:17.562 [info] ppl_id: 9067cb"},{"event":"cmd_output","timestamp":1607098457,"output":"b6-636f-4714-9280-2abfb60ef9af, type: Ppls, state: done, result: failed, event: exit_scheduling, rec"},{"event":"cmd_output","timestamp":1607098457,"output":"overy_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test when jo"},{"event":"cmd_output","timestamp":1607098457,"output":"b limit is longer than pipeline limit => pipeline is malformed (267.1ms)\u001b[0m\n * test pipelone wit "},{"event":"cmd_output","timestamp":1607098457,"output":"valid limits on all levels passes\u001b[22m\n16:14:17.644 [info] Request: 'run: %{:file_name => \"/exec_t"},{"event":"cmd_output","timestamp":1607098457,"output":"ime_limit/valid_example.yml\", :repo_name => \"23_initializing_test\", \"branch_id\" => \"a438f5e6-9e6c-46"},{"event":"cmd_output","timestamp":1607098457,"output":"6d-9fe3-084eba9411ad\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"sema"},{"event":"cmd_output","timestamp":1607098457,"output":"phore.yml\", \"hook_id\" => \"c25fbec4-364b-11eb-ad3f-5254005464e2\", \"label\" => \"master\", \"organization_"},{"event":"cmd_output","timestamp":1607098457,"output":"id\" => \"c0b79052-24e3-41a8-afca-0412cd330023\", \"owner\" => \"rt\", \"project_id\" => \"4e19fc15-2110-42ca-"},{"event":"cmd_output","timestamp":1607098457,"output":"bd24-2133c1e9edba\", \"repo_name\" => \"2_basic\", \"request_token\" => \"c25fb6ae-364b-11eb-bd4e-5254005464"},{"event":"cmd_output","timestamp":1607098457,"output":"e2\", \"requester_id\" => \"5e9f5735-1619-4e86-a0f6-314671b2943f\", \"service\" => \"local\", \"suppressed_att"},{"event":"cmd_output","timestamp":1607098457,"output":"ributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"b46c232d-ad95-442a-bdb5-1c8168151fb3\", \"w"},{"event":"cmd_output","timestamp":1607098457,"output":"orking_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:14:17.651 [info] ppl_id: 59fe0c89-58d3-4935-b76c-9b0165"},{"event":"cmd_output","timestamp":1607098457,"output":"32e7e4, type: PplRequests, event: persisted schedule request with request_token: c25fb6ae-364b-11eb-"},{"event":"cmd_output","timestamp":1607098457,"output":"bd4e-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), "},{"event":"cmd_output","timestamp":1607098457,"output":"\n\u001b[0m\u001b[22m\n16:14:17.653 [info] ppl_id: 59fe0c89-58d3-4935-b76c-9b016532e7e4, type: Ppls, state: i"},{"event":"cmd_output","timestamp":1607098457,"output":"nitializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.proce"},{"event":"cmd_output","timestamp":1607098457,"output":"ss_response/2(L124), \n\u001b[0m\u001b[22m\n16:14:17.656 [info] Project 4e19fc15-2110-42ca-bd24-2133c1e9edba "},{"event":"cmd_output","timestamp":1607098457,"output":"and branch masterlatest_wf details updated: \"wf_id: b46c232d-ad95-442a-bdb5-1c8168151fb3, wf_number:"},{"event":"cmd_output","timestamp":1607098457,"output":" 1\"\n\u001b[0m\u001b[22m\n16:14:17.657 [info] Persisted ppl_sub_init for pipeline with ppl_id: 59fe0c89-58d3-"},{"event":"cmd_output","timestamp":1607098457,"output":"4935-b76c-9b016532e7e4: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, "},{"event":"cmd_output","timestamp":1607098457,"output":"\"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 333, in_scheduling: false, "},{"event":"cmd_output","timestamp":1607098457,"output":"init_type: \"regular\", inserted_at: ~N[2020-12-04 16:14:17.656730], pipeline_requests: #Ecto.Associat"},{"event":"cmd_output","timestamp":1607098457,"output":"ion.NotLoaded, ppl_id: \"59fe0c89-58d3-4935-b76c-9b0165"},{"event":"cmd_output","timestamp":1607098457,"output":"32e7e4\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: ni"},{"event":"cmd_output","timestamp":1607098457,"output":"l, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:14:17.656734]}\n\u001b[0m\u001b[22m\n16:14:17.660"},{"event":"cmd_output","timestamp":1607098457,"output":" [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls"},{"event":"cmd_output","timestamp":1607098457,"output":".STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-ST"},{"event":"cmd_output","timestamp":1607098457,"output":"MHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"pending\", \"done\"]"},{"event":"cmd_output","timestamp":1607098457,"output":", cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher"},{"event":"cmd_output","timestamp":1607098457,"output":"_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, r"},{"event":"cmd_output","timestamp":1607098457,"output":"eturning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema:"},{"event":"cmd_output","timestamp":1607098457,"output":" Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:17.661 [info] Periodic from module "},{"event":"cmd_output","timestamp":1607098457,"output":"Elixir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler.PendingState :: period:"},{"event":"cmd_output","timestamp":1607098457,"output":" 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args"},{"event":"cmd_output","timestamp":1607098457,"output":": %{allowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: P"},{"event":"cmd_output","timestamp":1607098457,"output":"pl.Ppls.Model.Ppls, observed_state: \"pending\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHa"},{"event":"cmd_output","timestamp":1607098457,"output":"ndler.PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :s"},{"event":"cmd_output","timestamp":1607098457,"output":"tate, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupe"},{"event":"cmd_output","timestamp":1607098457,"output":"rvisor}\n\u001b[0m\u001b[22m\n16:14:17.661 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.QueuingStat"},{"event":"cmd_output","timestamp":1607098457,"output":"e with name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, metric_name: {\"Ppl.beholder-w"},{"event":"cmd_output","timestamp":1607098457,"output":"ake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{allowed_states: [\"queuing\", \"runni"},{"event":"cmd_output","timestamp":1607098457,"output":"ng\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", p"},{"event":"cmd_output","timestamp":1607098457,"output":"ublisher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo"},{"event":"cmd_output","timestamp":1607098457,"output":", returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], sche"},{"event":"cmd_output","timestamp":1607098457,"output":"ma: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:17.661 [info] Periodic from modu"},{"event":"cmd_output","timestamp":1607098457,"output":"le Elixir.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHandler.RunningState :: peri"},{"event":"cmd_output","timestamp":1607098457,"output":"od: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring a"},{"event":"cmd_output","timestamp":1607098457,"output":"rgs: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098457,"output":"s.Model.Ppls, observed_state: \"running\", publisher_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler"},{"event":"cmd_output","timestamp":1607098457,"output":".RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state,"},{"event":"cmd_output","timestamp":1607098457,"output":" :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSuperviso"},{"event":"cmd_output","timestamp":1607098457,"output":"r}\n\u001b[0m\u001b[22m\n16:14:17.662 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.StoppingState wi"},{"event":"cmd_output","timestamp":1607098457,"output":"th name Elixir.Ppl.Ppls.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake"},{"event":"cmd_output","timestamp":1607098457,"output":"_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"]"},{"event":"cmd_output","timestamp":1607098457,"output":", cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"stopping\", publisher_cb"},{"event":"cmd_output","timestamp":1607098457,"output":": #Function<0.71803493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning"},{"event":"cmd_output","timestamp":1607098457,"output":": [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098457,"output":"s.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:17.662 [info] Periodic from module Elixir.P"},{"event":"cmd_output","timestamp":1607098457,"output":"pl.PplSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: p"},{"event":"cmd_output","timestamp":1607098457,"output":"eriod: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, r"},{"event":"cmd_output","timestamp":1607098457,"output":"ecurring args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSu"},{"event":"cmd_output","timestamp":1607098457,"output":"bInits.Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, return"},{"event":"cmd_output","timestamp":1607098457,"output":"ing: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl."},{"event":"cmd_output","timestamp":1607098457,"output":"PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:17.662 [info] Periodic fro"},{"event":"cmd_output","timestamp":1607098457,"output":"m module Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler"},{"event":"cmd_output","timestamp":1607098457,"output":".FetchingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler"},{"event":"cmd_output","timestamp":1607098457,"output":"-FetchingState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"done\"], coolin"},{"event":"cmd_output","timestamp":1607098457,"output":"g_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fetching\", publis"},{"event":"cmd_output","timestamp":1607098457,"output":"her_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result"},{"event":"cmd_output","timestamp":1607098457,"output":", :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0"},{"event":"cmd_output","timestamp":1607098457,"output":"m\u001b[22m\n16:14:17.662 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CompilationState"},{"event":"cmd_output","timestamp":1607098457,"output":" with name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 100 ms, metric_name: {\"Ppl."},{"event":"cmd_output","timestamp":1607098457,"output":"beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurring args: %{allowed_state"},{"event":"cmd_output","timestamp":1607098457,"output":"s: [\"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098457,"output":"SubInits.Model.PplSubInits, observed_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, "},{"event":"cmd_output","timestamp":1607098457,"output":"returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema"},{"event":"cmd_output","timestamp":1607098457,"output":": Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:17.663 [info] Period"},{"event":"cmd_output","timestamp":1607098457,"output":"ic from module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.S"},{"event":"cmd_output","timestamp":1607098457,"output":"TMHandler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInit"},{"event":"cmd_output","timestamp":1607098457,"output":"s-STMHandler-RegularInitState\"]}, recurring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, i"},{"event":"cmd_output","timestamp":1607098457,"output":"nitial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_init\", publisher_cb: :skip"},{"event":"cmd_output","timestamp":1607098457,"output":", repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_c"},{"event":"cmd_output","timestamp":1607098457,"output":"ount, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14"},{"event":"cmd_output","timestamp":1607098457,"output":":17.663 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.InitializingState with name Eli"},{"event":"cmd_output","timestamp":1607098457,"output":"xir.Ppl.PplBlocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_u"},{"event":"cmd_output","timestamp":1607098457,"output":"p\", [\"Ppl-PplBlocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializin"},{"event":"cmd_output","timestamp":1607098457,"output":"g\", \"waiting\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_"},{"event":"cmd_output","timestamp":1607098457,"output":"state: \"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request,"},{"event":"cmd_output","timestamp":1607098457,"output":" :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model."},{"event":"cmd_output","timestamp":1607098457,"output":"PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:17.663 [info] Periodic from module Elixir.Ppl."},{"event":"cmd_output","timestamp":1607098457,"output":"PplBlocks.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler.WaitingState :: period: "},{"event":"cmd_output","timestamp":1607098457,"output":"1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurring"},{"event":"cmd_output","timestamp":1607098457,"output":" args: %{allowed_states: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098457,"output":"Blocks.Model.PplBlocks, observed_state: \"waiting\", publisher_cb: #Function<0.8975022/1 in Ppl.PplBlo"},{"event":"cmd_output","timestamp":1607098457,"output":"cks.STMHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updat"},{"event":"cmd_output","timestamp":1607098457,"output":"ed_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBloc"},{"event":"cmd_output","timestamp":1607098457,"output":"ks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:17.663 [info] Periodic from module Elixir.Ppl.PplBloc"},{"event":"cmd_output","timestamp":1607098457,"output":"ks.STMHandler.RunningState with name Elixir.Ppl.PplBlocks.STMHandler.RunningState :: period: 1000 ms"},{"event":"cmd_output","timestamp":1607098457,"output":", metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, recurring args: "},{"event":"cmd_output","timestamp":1607098457,"output":"%{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlock"},{"event":"cmd_output","timestamp":1607098457,"output":"s.Model.PplBlocks, observed_state: \"running\", publisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks."},{"event":"cmd_output","timestamp":1607098457,"output":"STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_a"},{"event":"cmd_output","timestamp":1607098457,"output":"t, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model."},{"event":"cmd_output","timestamp":1607098457,"output":"PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:17.663 [info] Periodic from module Elixir.Ppl."},{"event":"cmd_output","timestamp":1607098457,"output":"PplBlocks.STMHandler.StoppingState with name Elixir.Ppl.PplBlocks.STMHandler.StoppingState :: period"},{"event":"cmd_output","timestamp":1607098457,"output":": 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurr"},{"event":"cmd_output","timestamp":1607098457,"output":"ing args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks"},{"event":"cmd_output","timestamp":1607098457,"output":".Model.PplBlocks, observed_state: \"stopping\", publisher_cb: #Function<0.104215991/1 in Ppl.PplBlocks"},{"event":"cmd_output","timestamp":1607098457,"output":".STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated"},{"event":"cmd_output","timestamp":1607098457,"output":"_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Mode"},{"event":"cmd_output","timestamp":1607098457,"output":"l.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:17.664 [info] Periodic from module Elixir.Bl"},{"event":"cmd_output","timestamp":1607098457,"output":"ock.Blocks.STMHandler.InitializingState with name Elixir.Block.Blocks.STMHandler.InitializingState :"},{"event":"cmd_output","timestamp":1607098457,"output":": period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-InitializingState\""},{"event":"cmd_output","timestamp":1607098457,"output":"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block"},{"event":"cmd_output","timestamp":1607098457,"output":".Blocks.Model.Blocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Block.EctoRepo, ret"},{"event":"cmd_output","timestamp":1607098457,"output":"urning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Bl"},{"event":"cmd_output","timestamp":1607098457,"output":"ocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:17.664 [info] Periodic from module Eli"},{"event":"cmd_output","timestamp":1607098457,"output":"xir.Block.Blocks.STMHandler.RunningState with name Elixir.Block.Blocks.STMHandler.RunningState :: pe"},{"event":"cmd_output","timestamp":1607098457,"output":"riod: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-RunningState\"]}, recur"},{"event":"cmd_output","timestamp":1607098457,"output":"ring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: B"},{"event":"cmd_output","timestamp":1607098457,"output":"lock.Blocks.Model.Blocks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, retu"},{"event":"cmd_output","timestamp":1607098457,"output":"rning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blo"},{"event":"cmd_output","timestamp":1607098457,"output":"cks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:17.664 [info] Periodic from module Elix"},{"event":"cmd_output","timestamp":1607098457,"output":"ir.Block.Blocks.STMHandler.StoppingState with name Elixir.Block.Blocks.STMHandler.StoppingState :: p"},{"event":"cmd_output","timestamp":1607098457,"output":"eriod: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-StoppingState\"]}, rec"},{"event":"cmd_output","timestamp":1607098457,"output":"urring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Bloc"},{"event":"cmd_output","timestamp":1607098457,"output":"ks.Model.Blocks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: ["},{"event":"cmd_output","timestamp":1607098457,"output":":id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Mode"},{"event":"cmd_output","timestamp":1607098457,"output":"l.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:17.664 [info] Periodic from module Elixir.Block"},{"event":"cmd_output","timestamp":1607098457,"output":".Tasks.STMHandler.PendingState with name Elixir.Block.Tasks.STMHandler.PendingState :: period: 100 m"},{"event":"cmd_output","timestamp":1607098457,"output":"s, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingState\"]}, recurring args: %"},{"event":"cmd_output","timestamp":1607098457,"output":"{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Tasks.Model.Tasks, o"},{"event":"cmd_output","timestamp":1607098457,"output":"bserved_state: \"pending\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_req"},{"event":"cmd_output","timestamp":1607098457,"output":"uest, :updated_at, :state, :recovery_count, :block_id, :build_request_id], schema: Block.Tasks.Model"},{"event":"cmd_output","timestamp":1607098457,"output":".Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:17.664 [info] Periodic from module Elixir.Block.T"},{"event":"cmd_output","timestamp":1607098457,"output":"asks.STMHandler.RunningState with name Elixir.Block.Tasks.STMHandler.RunningState :: period: 100 ms,"},{"event":"cmd_output","timestamp":1607098457,"output":" metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningState\"]}, recurring args: %{a"},{"event":"cmd_output","timestamp":1607098457,"output":"llowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Mod"},{"event":"cmd_output","timestamp":1607098457,"output":"el.Tasks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :te"},{"event":"cmd_output","timestamp":1607098457,"output":"rminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, "},{"event":"cmd_output","timestamp":1607098457,"output":"task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:17.664 [info] Periodic from module Elixir.Block.Tasks.STM"},{"event":"cmd_output","timestamp":1607098457,"output":"Handler.StoppingState with name Elixir.Block.Tasks.STMHandler.StoppingState :: period: 100 ms, metri"},{"event":"cmd_output","timestamp":1607098457,"output":"c_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]}, recurring args: %{allowe"},{"event":"cmd_output","timestamp":1607098457,"output":"d_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observ"},{"event":"cmd_output","timestamp":1607098457,"output":"ed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request"},{"event":"cmd_output","timestamp":1607098457,"output":", :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor"},{"event":"cmd_output","timestamp":1607098457,"output":": :skip}\n\u001b[0m\u001b[22m\n16:14:17.777 [info] ppl_id: 59fe0c89-58d3-4935-b76c-9b016532e7e4, type: PplReq"},{"event":"cmd_output","timestamp":1607098457,"output":"uests, event: persisted source_args for pipeline: 59fe0c89-58d3-4935-b76c-9b016532e7e4, origin: Elix"},{"event":"cmd_output","timestamp":1607098457,"output":"ir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:14:17.783 [info] "},{"event":"cmd_output","timestamp":1607098457,"output":"ppl_id: 59fe0c89-58d3-4935-b76c-9b016532e7e4, type: PplSubInits, state: fetching, event: exit_schedu"},{"event":"cmd_output","timestamp":1607098457,"output":"ling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:"},{"event":"cmd_output","timestamp":1607098457,"output":"17.802 [info] ppl_id: 59fe0c89-58d3-4935-b76c-9b016532e7e4, type: PplSubInits, state: regular_init,"},{"event":"cmd_output","timestamp":1607098457,"output":" event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), "},{"event":"cmd_output","timestamp":1607098457,"output":"\n\u001b[0m\u001b[22m\n16:14:17.819 [info] ppl_id: 59fe0c89-58d3-4935-b76c-9b016532e7e4, type: PplRequests, e"},{"event":"cmd_output","timestamp":1607098457,"output":"vent: persisted definition for request with request_token: c25fb6ae-364b-11eb-bd4e-5254005464e2, ori"},{"event":"cmd_output","timestamp":1607098457,"output":"gin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:14:17"},{"event":"cmd_output","timestamp":1607098457,"output":".823 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded"},{"event":"cmd_output","timestamp":1607098457,"output":", \"queues\">, inserted_at: ~N[2020-12-04 16:14:17.821873], name: \"master-.semaphore/semaphore.yml\", o"},{"event":"cmd_output","timestamp":1607098457,"output":"rganization_id: \"c0b79052-24e3-41a8-afca-0412cd330023\", project_id: \"4e19fc15-2110-42ca-bd24-2133c1e"},{"event":"cmd_output","timestamp":1607098457,"output":"9edba\", queue_id: \"48581a03-7d3e-46fd-a757-bf93cc2c52fe\", scope: \"project\", updated_at: ~N[2020-12-0"},{"event":"cmd_output","timestamp":1607098457,"output":"4 16:14:17.821882], user_generated: false}}\n\u001b[0m\u001b[22m\n16:14:17.835 [info] ppl_id: not_available, "},{"event":"cmd_output","timestamp":1607098457,"output":"event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098457,"output":"22m\n16:14:17.835 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState"},{"event":"cmd_output","timestamp":1607098457,"output":".all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:17.835 [info] ppl_id: 59fe0c89-58d3-4935-b76c-9b016532e7e4, ty"},{"event":"cmd_output","timestamp":1607098457,"output":"pe: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098457,"output":"r.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:17.835 [info] ppl"},{"event":"cmd_output","timestamp":1607098457,"output":"_id: 59fe0c89-58d3-4935-b76c-9b016532e7e4, type: PplBlocks, block_index: 1, state: initializing, eve"},{"event":"cmd_output","timestamp":1607098457,"output":"nt: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1"},{"event":"cmd_output","timestamp":1607098457,"output":"(L105), \n\u001b[0m\u001b[22m\n16:14:17.836 [info] ppl_id: 59fe0c89-58d3-4935-b76c-9b016532e7e4, type: PplSub"},{"event":"cmd_output","timestamp":1607098457,"output":"Inits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper"},{"event":"cmd_output","timestamp":1607098457,"output":".STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:17.841 [info] ppl_id: 59fe0c89-58d3-4935-b76c"},{"event":"cmd_output","timestamp":1607098457,"output":"-9b016532e7e4, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_cou"},{"event":"cmd_output","timestamp":1607098457,"output":"nt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:17.843 [info] ppl"},{"event":"cmd_output","timestamp":1607098457,"output":"_id: 59fe0c89-58d3-4935-b76c-9b016532e7e4, type: Ppls, state: pending, event: exit_scheduling, recov"},{"event":"cmd_output","timestamp":1607098457,"output":"ery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:17.847 [inf"},{"event":"cmd_output","timestamp":1607098457,"output":"o] ppl_id: 59fe0c89-58d3-4935-b76c-9b016532e7e4, type: PplBlocks, block_index: 1, state: waiting, e"},{"event":"cmd_output","timestamp":1607098457,"output":"vent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n"},{"event":"cmd_output","timestamp":1607098457,"output":"\u001b[0m\u001b[22m\n16:14:17.849 [info] ppl_id: 59fe0c89-58d3-4935-b76c-9b016532e7e4, type: Ppls, state: que"},{"event":"cmd_output","timestamp":1607098457,"output":"uing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098457,"output":"90), \n\u001b[0m\u001b[22m\n16:14:17.859 [info] ppl_id: 59fe0c89-58d3-4935-b76c-9b016532e7e4, type: Ppls, sta"},{"event":"cmd_output","timestamp":1607098457,"output":"te: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_cha"},{"event":"cmd_output","timestamp":1607098457,"output":"nge/1(L90), \n\u001b[0m\u001b[22m\n16:14:17.864 [info] PplBlocks WaitingState STM is scheduling block 0 from "},{"event":"cmd_output","timestamp":1607098457,"output":"pipeline: \"59fe0c89-58d3-4935-b76c-9b016532e7e4\"\n\u001b[0m\u001b[22m\n16:14:17.869 [info] block_id: bed96999"},{"event":"cmd_output","timestamp":1607098457,"output":"-7ba3-49c2-98ac-0e6a0ffd3584, type: BlockRequests, event: persisted block run request from ppl 59fe0"},{"event":"cmd_output","timestamp":1607098457,"output":"c89-58d3-4935-b76c-9b016532e7e4 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQ"},{"event":"cmd_output","timestamp":1607098457,"output":"ueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:14:17.873 [info] block_id: bed96999-7ba3-49c2-98ac-"},{"event":"cmd_output","timestamp":1607098457,"output":"0e6a0ffd3584, type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098457,"output":"xir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:14:17.879 [info] Block 0 of pip"},{"event":"cmd_output","timestamp":1607098457,"output":"eline with id: 59fe0c89-58d3-4935-b76c-9b016532e7e4 scheduled in block service with id: : \"bed96999-"},{"event":"cmd_output","timestamp":1607098457,"output":"7ba3-49c2-98ac-0e6a0ffd3584\"\n\u001b[0m\u001b[22m\n16:14:17.879 [info] block_id: bed96999-7ba3-49c2-98ac-0e6a"},{"event":"cmd_output","timestamp":1607098457,"output":"0ffd3584, type: BlockRequests, event: persisted build and sub_ppl details for block_request: bed9699"},{"event":"cmd_output","timestamp":1607098457,"output":"9-7ba3-49c2-98ac-0e6a0ffd3584, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_"},{"event":"cmd_output","timestamp":1607098457,"output":"build/2(L41), \n\u001b[0m\u001b[22m\n16:14:17.883 [info] ppl_id: 59fe0c89-58d3-4935-b76c-9b016532e7e4, type: "},{"event":"cmd_output","timestamp":1607098457,"output":"PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098457,"output":".Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:17.883 [info] block_id: bed96999-7ba3-"},{"event":"cmd_output","timestamp":1607098457,"output":"49c2-98ac-0e6a0ffd3584, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098457,"output":"ir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:14:17.885 [info] bloc"},{"event":"cmd_output","timestamp":1607098457,"output":"k_id: bed96999-7ba3-49c2-98ac-0e6a0ffd3584, type: Blocks, state: running, event: exit_scheduling, re"},{"event":"cmd_output","timestamp":1607098457,"output":"covery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:17.905 ["},{"event":"cmd_output","timestamp":1607098457,"output":"info] block_id: bed96999-7ba3-49c2-98ac-0e6a0ffd3584, type: Tasks, state: running, event: exit_sche"},{"event":"cmd_output","timestamp":1607098457,"output":"duling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098457,"output":"4:17.991 [info] block_id: bed96999-7ba3-49c2-98ac-0e6a0ffd3584, type: Tasks, state: done, event: ex"},{"event":"cmd_output","timestamp":1607098457,"output":"it_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098457,"output":"m\n16:14:17.995 [info] block_id: bed96999-7ba3-49c2-98ac-0e6a0ffd3584, type: Blocks, state: done, e"},{"event":"cmd_output","timestamp":1607098457,"output":"vent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n"},{"event":"cmd_output","timestamp":1607098458,"output":"\u001b[0m\u001b[22m\n16:14:18.002 [info] ppl_id: 59fe0c89-58d3-4935-b76c-9b016532e7e4, block_id: bed96999-7ba"},{"event":"cmd_output","timestamp":1607098458,"output":"3-49c2-98ac-0e6a0ffd3584, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_"},{"event":"cmd_output","timestamp":1607098458,"output":"scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098458,"output":"16:14:18.007 [info] PplBlocks WaitingState STM is scheduling block 1 from pipeline: \"59fe0c89-58d3-"},{"event":"cmd_output","timestamp":1607098458,"output":"4935-b76c-9b016532e7e4\"\n\u001b[0m\u001b[22m\n16:14:18.013 [info] block_id: 94e6ff28-5851-45a0-8710-9da014b4f"},{"event":"cmd_output","timestamp":1607098458,"output":"f07, type: BlockRequests, event: persisted block run request from ppl 59fe0c89-58d3-4935-b76c-9b0165"},{"event":"cmd_output","timestamp":1607098458,"output":"32e7e4 for block 1, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4"},{"event":"cmd_output","timestamp":1607098458,"output":"(L35), \n\u001b[0m\u001b[22m\n16:14:18.015 [info] block_id: 94e6ff28-5851-45a0-8710-9da014b4ff07, type: Block"},{"event":"cmd_output","timestamp":1607098458,"output":"s, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.Bl"},{"event":"cmd_output","timestamp":1607098458,"output":"ocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:14:18.015 [info] Block 1 of pipeline with id: 59fe0c89-5"},{"event":"cmd_output","timestamp":1607098458,"output":"8d3-4935-b76c-9b016532e7e4 scheduled in block service with id: : \"94e6ff28-5851-45a0-8710-9da014b4ff"},{"event":"cmd_output","timestamp":1607098458,"output":"07\"\n\u001b[0m\u001b[22m\n16:14:18.017 [info] ppl_id: 59fe0c89-58d3-4935-b76c-9b016532e7e4, type: PplBlocks, "},{"event":"cmd_output","timestamp":1607098458,"output":"block_index: 1, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM"},{"event":"cmd_output","timestamp":1607098458,"output":".Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:18.021 [info] block_id: 94e6ff28-5851-45a0-8710-9"},{"event":"cmd_output","timestamp":1607098458,"output":"da014b4ff07, type: BlockRequests, event: persisted build and sub_ppl details for block_request: 94e6"},{"event":"cmd_output","timestamp":1607098458,"output":"ff28-5851-45a0-8710-9da014b4ff07, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.inse"},{"event":"cmd_output","timestamp":1607098458,"output":"rt_build/2(L41), \n\u001b[0m\u001b[22m\n16:14:18.022 [info] block_id: 94e6ff28-5851-45a0-8710-9da014b4ff07, t"},{"event":"cmd_output","timestamp":1607098458,"output":"ype: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandle"},{"event":"cmd_output","timestamp":1607098458,"output":"r.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:14:18.030 [info] block_id: 94e6ff28-5851-45a0-"},{"event":"cmd_output","timestamp":1607098458,"output":"8710-9da014b4ff07, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098458,"output":"Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:18.044 [info] block_id: 94e6ff28"},{"event":"cmd_output","timestamp":1607098458,"output":"-5851-45a0-8710-9da014b4ff07, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0"},{"event":"cmd_output","timestamp":1607098458,"output":", origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:18.099 [info] block_id"},{"event":"cmd_output","timestamp":1607098458,"output":": 94e6ff28-5851-45a0-8710-9da014b4ff07, type: Tasks, state: done, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098458,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:18.103 [info] b"},{"event":"cmd_output","timestamp":1607098458,"output":"lock_id: 94e6ff28-5851-45a0-8710-9da014b4ff07, type: Blocks, state: done, event: exit_scheduling, re"},{"event":"cmd_output","timestamp":1607098458,"output":"covery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:18.110 ["},{"event":"cmd_output","timestamp":1607098458,"output":"info] ppl_id: 59fe0c89-58d3-4935-b76c-9b016532e7e4, block_id: 94e6ff28-5851-45a0-8710-9da014b4ff07,"},{"event":"cmd_output","timestamp":1607098458,"output":" type: PplBlocks, block_index: 1, state: done, result: passed, event: exit_scheduling, recovery_coun"},{"event":"cmd_output","timestamp":1607098458,"output":"t: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:18.124 [info] ppl_"},{"event":"cmd_output","timestamp":1607098458,"output":"id: 59fe0c89-58d3-4935-b76c-9b016532e7e4, type: Ppls, state: done, result: passed, event: exit_sched"},{"event":"cmd_output","timestamp":1607098458,"output":"uling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * te"},{"event":"cmd_output","timestamp":1607098458,"output":"st pipelone wit valid limits on all levels passes (571.1ms)\u001b[0m\n\nPpl.E2E.ComposeStyleCi.Test\n * "},{"event":"cmd_output","timestamp":1607098458,"output":"test Pipeline with multiple docker images in agent definition passes\u001b[22m\n16:14:18.230 [info] Requ"},{"event":"cmd_output","timestamp":1607098458,"output":"est: 'run: %{:repo_name => \"26_compose_style_ci\", \"branch_id\" => \"fe0d1198-62e3-4ff1-80ab-6aed7bd4f5"},{"event":"cmd_output","timestamp":1607098458,"output":"2b\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"semaphore.yml\", \"hook_"},{"event":"cmd_output","timestamp":1607098458,"output":"id\" => \"c2b929d2-364b-11eb-afb4-5254005464e2\", \"label\" => \"master\", \"organization_id\" => \"c68191d4-c"},{"event":"cmd_output","timestamp":1607098458,"output":"68c-4536-a0d3-cc86a83d757f\", \"owner\" => \"rt\", \"project_id\" => \"2533b3d1-5435-4c9e-838e-b51a7251cf60\""},{"event":"cmd_output","timestamp":1607098458,"output":", \"repo_name\" => \"2_basic\", \"request_token\" => \"c2b921ee-364b-11eb-8f79-5254005464e2\", \"requester_id"},{"event":"cmd_output","timestamp":1607098458,"output":"\" => \"39b74c7f-f769-4c21-b5af-a2617000e15b\", \"service\" => \"local\", \"suppressed_attributes\" => [\"acce"},{"event":"cmd_output","timestamp":1607098458,"output":"ss_token\", \"client_secret\"], \"wf_id\" => \"57579f18-6345-41c4-bf13-468884828946\", \"working_dir\" => \".s"},{"event":"cmd_output","timestamp":1607098458,"output":"emaphore\"}\n\u001b[0m\u001b[22m\n16:14:18.233 [info] ppl_id: 785f7242-7528-40fb-9958-6a993ce4b94d, type: PplR"},{"event":"cmd_output","timestamp":1607098458,"output":"equests, event: persisted schedule request with request_token: c2b921ee-364b-11eb-8f79-5254005464e2,"},{"event":"cmd_output","timestamp":1607098458,"output":" origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:14"},{"event":"cmd_output","timestamp":1607098458,"output":":18.235 [info] ppl_id: 785f7242-7528-40fb-9958-6a993ce4b94d, type: Ppls, state: initializing, event"},{"event":"cmd_output","timestamp":1607098458,"output":": initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124"},{"event":"cmd_output","timestamp":1607098458,"output":"), \n\u001b[0m\u001b[22m\n16:14:18.237 [info] Project 2533b3d1-5435-4c9e-838e-b51a7251cf60 and branch masterl"},{"event":"cmd_output","timestamp":1607098458,"output":"atest_wf details updated: \"wf_id: 57579f18-6345-41c4-bf13-468884828946, wf_number: 1\"\n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098458,"output":":14:18.238 [info] Persisted ppl_sub_init for pipeline with ppl_id: 785f7242-7528-40fb-9958-6a993ce4"},{"event":"cmd_output","timestamp":1607098458,"output":"b94d: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_init"},{"event":"cmd_output","timestamp":1607098458,"output":"s\">, compile_task_id: nil, error_description: nil, id: 334, in_scheduling: false, init_type: \"regula"},{"event":"cmd_output","timestamp":1607098458,"output":"r\", inserted_at: ~N[2020-12-04 16:14:18.237641], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"785f7242-7528-40fb-9958-6a993ce4b94d\", recovery_"},{"event":"cmd_output","timestamp":1607098458,"output":"count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_reque"},{"event":"cmd_output","timestamp":1607098458,"output":"st_desc: nil, updated_at: ~N[2020-12-04 16:14:18.237646]}\n\u001b[0m\u001b[22m\n16:14:18.241 [info] Periodic "},{"event":"cmd_output","timestamp":1607098458,"output":"from module Elixir.Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.STMHandler.Initia"},{"event":"cmd_output","timestamp":1607098458,"output":"lizingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Initializ"},{"event":"cmd_output","timestamp":1607098458,"output":"ingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], cooling_time_sec"},{"event":"cmd_output","timestamp":1607098458,"output":": 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher_cb: #Function<0.1"},{"event":"cmd_output","timestamp":1607098458,"output":"25326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :t"},{"event":"cmd_output","timestamp":1607098458,"output":"erminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Pp"},{"event":"cmd_output","timestamp":1607098458,"output":"ls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:18.242 [info] Periodic from module Elixir.Ppl.Ppls.ST"},{"event":"cmd_output","timestamp":1607098458,"output":"MHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 100 ms, metric_na"},{"event":"cmd_output","timestamp":1607098458,"output":"me: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args: %{allowed_states"},{"event":"cmd_output","timestamp":1607098458,"output":": [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls"},{"event":"cmd_output","timestamp":1607098458,"output":", observed_state: \"pending\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler.PendingState"},{"event":"cmd_output","timestamp":1607098458,"output":".args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :re"},{"event":"cmd_output","timestamp":1607098458,"output":"covery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098458,"output":"\n16:14:18.242 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.QueuingState with name Elixir"},{"event":"cmd_output","timestamp":1607098458,"output":".Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppl"},{"event":"cmd_output","timestamp":1607098458,"output":"s-STMHandler-QueuingState\"]}, recurring args: %{allowed_states: [\"queuing\", \"running\", \"done\"], cool"},{"event":"cmd_output","timestamp":1607098458,"output":"ing_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", publisher_cb: #Func"},{"event":"cmd_output","timestamp":1607098458,"output":"tion<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, returning: [:id,"},{"event":"cmd_output","timestamp":1607098458,"output":" :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model"},{"event":"cmd_output","timestamp":1607098458,"output":".Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:18.243 [info] Periodic from module Elixir.Ppl.Ppls"},{"event":"cmd_output","timestamp":1607098458,"output":".STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHandler.RunningState :: period: 100 ms, metric"},{"event":"cmd_output","timestamp":1607098458,"output":"_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring args: %{allowed_sta"},{"event":"cmd_output","timestamp":1607098458,"output":"tes: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, obse"},{"event":"cmd_output","timestamp":1607098458,"output":"rved_state: \"running\", publisher_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler.RunningState.args"},{"event":"cmd_output","timestamp":1607098458,"output":"/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recover"},{"event":"cmd_output","timestamp":1607098458,"output":"y_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098458,"output":"14:18.243 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.StoppingState with name Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098458,"output":".Ppls.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-S"},{"event":"cmd_output","timestamp":1607098458,"output":"TMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec"},{"event":"cmd_output","timestamp":1607098458,"output":": -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"stopping\", publisher_cb: #Function<0.7180"},{"event":"cmd_output","timestamp":1607098458,"output":"3493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate"},{"event":"cmd_output","timestamp":1607098458,"output":"_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task"},{"event":"cmd_output","timestamp":1607098458,"output":"_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:18.243 [info] Periodic from module Elixir.Ppl.PplSubInits.STM"},{"event":"cmd_output","timestamp":1607098458,"output":"Handler.CreatedState with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 100 ms, met"},{"event":"cmd_output","timestamp":1607098458,"output":"ric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args: %{a"},{"event":"cmd_output","timestamp":1607098458,"output":"llowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSu"},{"event":"cmd_output","timestamp":1607098458,"output":"bInits, observed_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :termin"},{"event":"cmd_output","timestamp":1607098458,"output":"ate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model."},{"event":"cmd_output","timestamp":1607098458,"output":"PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:18.244 [info] Periodic from module Elixir.Pp"},{"event":"cmd_output","timestamp":1607098458,"output":"l.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler.FetchingState :: "},{"event":"cmd_output","timestamp":1607098458,"output":"period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]},"},{"event":"cmd_output","timestamp":1607098458,"output":" recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"done\"], cooling_time_sec: -2, in"},{"event":"cmd_output","timestamp":1607098458,"output":"itial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fetching\", publisher_cb: :skip, rep"},{"event":"cmd_output","timestamp":1607098458,"output":"o: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count,"},{"event":"cmd_output","timestamp":1607098458,"output":" :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:18.2"},{"event":"cmd_output","timestamp":1607098458,"output":"44 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CompilationState with name Elixir."},{"event":"cmd_output","timestamp":1607098458,"output":"Ppl.PplSubInits.STMHandler.CompilationState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\","},{"event":"cmd_output","timestamp":1607098458,"output":" [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurring args: %{allowed_states: [\"regular_init\""},{"event":"cmd_output","timestamp":1607098458,"output":", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.Ppl"},{"event":"cmd_output","timestamp":1607098458,"output":"SubInits, observed_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :"},{"event":"cmd_output","timestamp":1607098458,"output":"terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits."},{"event":"cmd_output","timestamp":1607098458,"output":"Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:18.245 [info] Periodic from module Eli"},{"event":"cmd_output","timestamp":1607098458,"output":"xir.Ppl.PplSubInits.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHandler.RegularI"},{"event":"cmd_output","timestamp":1607098458,"output":"nitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-Regul"},{"event":"cmd_output","timestamp":1607098458,"output":"arInitState\"]}, recurring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, initial_query: Ppl."},{"event":"cmd_output","timestamp":1607098458,"output":"PplSubInits.Model.PplSubInits, observed_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRe"},{"event":"cmd_output","timestamp":1607098458,"output":"po, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], sc"},{"event":"cmd_output","timestamp":1607098458,"output":"hema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:18.245 [info] Pe"},{"event":"cmd_output","timestamp":1607098458,"output":"riodic from module Elixir.Ppl.PplBlocks.STMHandler.InitializingState with name Elixir.Ppl.PplBlocks."},{"event":"cmd_output","timestamp":1607098458,"output":"STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlock"},{"event":"cmd_output","timestamp":1607098458,"output":"s-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"waiting\", \"do"},{"event":"cmd_output","timestamp":1607098458,"output":"ne\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"initializi"},{"event":"cmd_output","timestamp":1607098458,"output":"ng\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :sta"},{"event":"cmd_output","timestamp":1607098458,"output":"te, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_su"},{"event":"cmd_output","timestamp":1607098458,"output":"pervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:18.246 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandl"},{"event":"cmd_output","timestamp":1607098458,"output":"er.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler.WaitingState :: period: 1000 ms, metric_na"},{"event":"cmd_output","timestamp":1607098458,"output":"me: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurring args: %{allowed_s"},{"event":"cmd_output","timestamp":1607098458,"output":"tates: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBl"},{"event":"cmd_output","timestamp":1607098458,"output":"ocks, observed_state: \"waiting\", publisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.STMHandler.Wai"},{"event":"cmd_output","timestamp":1607098458,"output":"tingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :re"},{"event":"cmd_output","timestamp":1607098458,"output":"sult, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_superviso"},{"event":"cmd_output","timestamp":1607098458,"output":"r: :skip}\n\u001b[0m\u001b[22m\n16:14:18.246 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.Runn"},{"event":"cmd_output","timestamp":1607098458,"output":"ingState with name Elixir.Ppl.PplBlocks.STMHandler.RunningState :: period: 1000 ms, metric_name: {\"P"},{"event":"cmd_output","timestamp":1607098458,"output":"pl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: "},{"event":"cmd_output","timestamp":1607098458,"output":"[\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks,"},{"event":"cmd_output","timestamp":1607098458,"output":" observed_state: \"running\", publisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHandler.Running"},{"event":"cmd_output","timestamp":1607098458,"output":"State.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result"},{"event":"cmd_output","timestamp":1607098458,"output":", :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_su"},{"event":"cmd_output","timestamp":1607098458,"output":"pervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:18.247 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandl"},{"event":"cmd_output","timestamp":1607098458,"output":"er.StoppingState with name Elixir.Ppl.PplBlocks.STMHandler.StoppingState :: period: 1000 ms, metric_"},{"event":"cmd_output","timestamp":1607098458,"output":"name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurring args: %{allowe"},{"event":"cmd_output","timestamp":1607098458,"output":"d_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, "},{"event":"cmd_output","timestamp":1607098458,"output":"observed_state: \"stopping\", publisher_cb: #Function<0.104215991/1 in Ppl.PplBlocks.STMHandler.Stoppi"},{"event":"cmd_output","timestamp":1607098458,"output":"ngState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :resu"},{"event":"cmd_output","timestamp":1607098458,"output":"lt, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_"},{"event":"cmd_output","timestamp":1607098458,"output":"supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:18.247 [info] Periodic from module Elixir.Block.Blocks.STMHand"},{"event":"cmd_output","timestamp":1607098458,"output":"ler.InitializingState with name Elixir.Block.Blocks.STMHandler.InitializingState :: period: 100 ms, "},{"event":"cmd_output","timestamp":1607098458,"output":"metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, recurring args"},{"event":"cmd_output","timestamp":1607098458,"output":": %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Blocks.Model.Bloc"},{"event":"cmd_output","timestamp":1607098458,"output":"ks, observed_state: \"initializing\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :ter"},{"event":"cmd_output","timestamp":1607098458,"output":"minate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks,"},{"event":"cmd_output","timestamp":1607098458,"output":" task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:18.248 [info] Periodic from module Elixir.Block.Blocks.S"},{"event":"cmd_output","timestamp":1607098458,"output":"TMHandler.RunningState with name Elixir.Block.Blocks.STMHandler.RunningState :: period: 100 ms, metr"},{"event":"cmd_output","timestamp":1607098458,"output":"ic_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-RunningState\"]}, recurring args: %{allow"},{"event":"cmd_output","timestamp":1607098458,"output":"ed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model."},{"event":"cmd_output","timestamp":1607098458,"output":"Blocks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :term"},{"event":"cmd_output","timestamp":1607098458,"output":"inate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, "},{"event":"cmd_output","timestamp":1607098458,"output":"task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:18.248 [info] Periodic from module Elixir.Block.Blocks.ST"},{"event":"cmd_output","timestamp":1607098458,"output":"MHandler.StoppingState with name Elixir.Block.Blocks.STMHandler.StoppingState :: period: 100 ms, met"},{"event":"cmd_output","timestamp":1607098458,"output":"ric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-StoppingState\"]}, recurring args: %{all"},{"event":"cmd_output","timestamp":1607098458,"output":"owed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, o"},{"event":"cmd_output","timestamp":1607098458,"output":"bserved_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_re"},{"event":"cmd_output","timestamp":1607098458,"output":"quest, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_sup"},{"event":"cmd_output","timestamp":1607098458,"output":"ervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:18.249 [info] Periodic from module Elixir.Block.Tasks.STMHandler."},{"event":"cmd_output","timestamp":1607098458,"output":"PendingState with name Elixir.Block.Tasks.STMHandler.PendingState :: period: 100 ms, metric_name: {\""},{"event":"cmd_output","timestamp":1607098458,"output":"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingState\"]}, recurring args: %{allowed_states: ["},{"event":"cmd_output","timestamp":1607098458,"output":"\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Tasks.Model.Tasks, observed_state: \"pe"},{"event":"cmd_output","timestamp":1607098458,"output":"nding\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at,"},{"event":"cmd_output","timestamp":1607098458,"output":" :state, :recovery_count, :block_id, :build_request_id], schema: Block.Tasks.Model.Tasks, task_super"},{"event":"cmd_output","timestamp":1607098458,"output":"visor: :skip}\n\u001b[0m\u001b[22m\n16:14:18.249 [info] Periodic from module Elixir.Block.Tasks.STMHandler.Ru"},{"event":"cmd_output","timestamp":1607098458,"output":"nningState with name Elixir.Block.Tasks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Pp"},{"event":"cmd_output","timestamp":1607098458,"output":"l.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"r"},{"event":"cmd_output","timestamp":1607098458,"output":"unning\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed"},{"event":"cmd_output","timestamp":1607098458,"output":"_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :"},{"event":"cmd_output","timestamp":1607098458,"output":"updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :"},{"event":"cmd_output","timestamp":1607098458,"output":"skip}\n\u001b[0m\u001b[22m\n16:14:18.250 [info] Periodic from module Elixir.Block.Tasks.STMHandler.StoppingSt"},{"event":"cmd_output","timestamp":1607098458,"output":"ate with name Elixir.Block.Tasks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beho"},{"event":"cmd_output","timestamp":1607098458,"output":"lder-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stoppi"},{"event":"cmd_output","timestamp":1607098458,"output":"ng\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"stoppin"},{"event":"cmd_output","timestamp":1607098458,"output":"g\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :st"},{"event":"cmd_output","timestamp":1607098458,"output":"ate, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098458,"output":"m\n16:14:18.355 [info] ppl_id: 785f7242-7528-40fb-9958-6a993ce4b94d, type: PplRequests, event: pers"},{"event":"cmd_output","timestamp":1607098458,"output":"isted source_args for pipeline: 785f7242-7528-40fb-9958-6a993ce4b94d, origin: Elixir.Ppl.PplRequests"},{"event":"cmd_output","timestamp":1607098458,"output":".Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:14:18.356 [info] ppl_id: 785f7242-7"},{"event":"cmd_output","timestamp":1607098458,"output":"528-40fb-9958-6a993ce4b94d, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_cou"},{"event":"cmd_output","timestamp":1607098458,"output":"nt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:18.380 [info] ppl"},{"event":"cmd_output","timestamp":1607098458,"output":"_id: 785f7242-7528-40fb-9958-6a993ce4b94d, type: PplSubInits, state: regular_init, event: exit_sched"},{"event":"cmd_output","timestamp":1607098458,"output":"uling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14"},{"event":"cmd_output","timestamp":1607098458,"output":":18.404 [info] ppl_id: 785f7242-7528-40fb-9958-6a993ce4b94d, type: PplRequests, event: persisted de"},{"event":"cmd_output","timestamp":1607098458,"output":"finition for request with request_token: c2b921ee-364b-11eb-8f79-5254005464e2, origin: Elixir.Ppl.Pp"},{"event":"cmd_output","timestamp":1607098458,"output":"lRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:14:18.406 [info] Queue"},{"event":"cmd_output","timestamp":1607098458,"output":" persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inser"},{"event":"cmd_output","timestamp":1607098458,"output":"ted_at: ~N[2020-12-04 16:14:18.405831], name: \"master-.semaphore/semaphore.yml\", organization_id: \"c"},{"event":"cmd_output","timestamp":1607098458,"output":"68191d4-c68c-4536-a0d3-cc86a83d757f\", project_id: \"2533b3d1-5435-4c9e-838e-b51a7251cf60\", queue_id: "},{"event":"cmd_output","timestamp":1607098458,"output":"\"e9ed9552-342e-4851-81f4-aa8ad060fa92\", scope: \"project\", updated_at: ~N[2020-12-04 16:14:18.405840]"},{"event":"cmd_output","timestamp":1607098458,"output":", user_generated: false}}\n\u001b[0m\u001b[22m\n16:14:18.411 [info] ppl_id: not_available, event: created, or"},{"event":"cmd_output","timestamp":1607098458,"output":"igin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:18.411 "},{"event":"cmd_output","timestamp":1607098458,"output":"[info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), "},{"event":"cmd_output","timestamp":1607098458,"output":"\n\u001b[0m\u001b[22m\n16:14:18.411 [info] ppl_id: 785f7242-7528-40fb-9958-6a993ce4b94d, type: PplBlocks, blo"},{"event":"cmd_output","timestamp":1607098458,"output":"ck_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits."},{"event":"cmd_output","timestamp":1607098458,"output":"STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:18.411 [info] ppl_id: 785f7242-7528"},{"event":"cmd_output","timestamp":1607098458,"output":"-40fb-9958-6a993ce4b94d, type: PplBlocks, block_index: 1, state: initializing, event: created, recov"},{"event":"cmd_output","timestamp":1607098458,"output":"ery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098458,"output":"m\n16:14:18.412 [info] ppl_id: 785f7242-7528-40fb-9958-6a993ce4b94d, type: PplSubInits, state: done"},{"event":"cmd_output","timestamp":1607098458,"output":", result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_stat"},{"event":"cmd_output","timestamp":1607098458,"output":"e_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:18.417 [info] ppl_id: 785f7242-7528-40fb-9958-6a993ce4b94d, typ"},{"event":"cmd_output","timestamp":1607098458,"output":"e: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098458,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:18.418 [info] ppl_id: 785f7242-7528"},{"event":"cmd_output","timestamp":1607098458,"output":"-40fb-9958-6a993ce4b94d, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098458,"output":"in: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:18.424 [info] ppl_id: 785f72"},{"event":"cmd_output","timestamp":1607098458,"output":"42-7528-40fb-9958-6a993ce4b94d, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: "},{"event":"cmd_output","timestamp":1607098458,"output":"0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:18.424 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098458,"output":" 785f7242-7528-40fb-9958-6a993ce4b94d, type: PplBlocks, block_index: 1, state: waiting, event: exit_"},{"event":"cmd_output","timestamp":1607098458,"output":"scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098458,"output":"16:14:18.437 [info] ppl_id: 785f7242-7528-40fb-9958-6a993ce4b94d, type: Ppls, state: running, event"},{"event":"cmd_output","timestamp":1607098458,"output":": exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098458,"output":"\u001b[22m\n16:14:18.443 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"785f724"},{"event":"cmd_output","timestamp":1607098458,"output":"2-7528-40fb-9958-6a993ce4b94d\"\n\u001b[0m\u001b[22m\n16:14:18.448 [info] block_id: 257aa35b-8c32-4ca6-b186-12"},{"event":"cmd_output","timestamp":1607098458,"output":"a8a4b477e7, type: BlockRequests, event: persisted block run request from ppl 785f7242-7528-40fb-9958"},{"event":"cmd_output","timestamp":1607098458,"output":"-6a993ce4b94d for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_res"},{"event":"cmd_output","timestamp":1607098458,"output":"ponse/4(L35), \n\u001b[0m\u001b[22m\n16:14:18.452 [info] block_id: 257aa35b-8c32-4ca6-b186-12a8a4b477e7, type"},{"event":"cmd_output","timestamp":1607098458,"output":": Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.M"},{"event":"cmd_output","timestamp":1607098458,"output":"odel.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:14:18.457 [info] Block 0 of pipeline with id: 785"},{"event":"cmd_output","timestamp":1607098458,"output":"f7242-7528-40fb-9958-6a993ce4b94d scheduled in block service with id: : \"257aa35b-8c32-4ca6-b186-12a"},{"event":"cmd_output","timestamp":1607098458,"output":"8a4b477e7\"\n\u001b[0m\u001b[22m\n16:14:18.457 [info] block_id: 257aa35b-8c32-4ca6-b186-12a8a4b477e7, type: Bl"},{"event":"cmd_output","timestamp":1607098458,"output":"ockRequests, event: persisted build and sub_ppl details for block_request: 257aa35b-8c32-4ca6-b186-1"},{"event":"cmd_output","timestamp":1607098458,"output":"2a8a4b477e7, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b["},{"event":"cmd_output","timestamp":1607098458,"output":"0m\u001b[22m\n16:14:18.459 [info] ppl_id: 785f7242-7528-40fb-9958-6a993ce4b94d, type: PplBlocks, block_i"},{"event":"cmd_output","timestamp":1607098458,"output":"ndex: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.l"},{"event":"cmd_output","timestamp":1607098458,"output":"og_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:18.460 [info] block_id: 257aa35b-8c32-4ca6-b186-12a8a4b4"},{"event":"cmd_output","timestamp":1607098458,"output":"77e7, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.ST"},{"event":"cmd_output","timestamp":1607098458,"output":"MHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:14:18.464 [info] block_id: 257aa35b-8c3"},{"event":"cmd_output","timestamp":1607098458,"output":"2-4ca6-b186-12a8a4b477e7, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098458,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:18.485 [info] block_id: 2"},{"event":"cmd_output","timestamp":1607098458,"output":"57aa35b-8c32-4ca6-b186-12a8a4b477e7, type: Tasks, state: running, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098458,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:18.568 [info] b"},{"event":"cmd_output","timestamp":1607098458,"output":"lock_id: 257aa35b-8c32-4ca6-b186-12a8a4b477e7, type: Tasks, state: done, event: exit_scheduling, rec"},{"event":"cmd_output","timestamp":1607098458,"output":"overy_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:18.573 [i"},{"event":"cmd_output","timestamp":1607098458,"output":"nfo] block_id: 257aa35b-8c32-4ca6-b186-12a8a4b477e7, type: Blocks, state: done, event: exit_schedul"},{"event":"cmd_output","timestamp":1607098458,"output":"ing, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:1"},{"event":"cmd_output","timestamp":1607098458,"output":"8.579 [info] ppl_id: 785f7242-7528-40fb-9958-6a993ce4b94d, block_id: 257aa35b-8c32-4ca6-b186-12a8a4"},{"event":"cmd_output","timestamp":1607098458,"output":"b477e7, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, recove"},{"event":"cmd_output","timestamp":1607098458,"output":"ry_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:18.584 [info"},{"event":"cmd_output","timestamp":1607098458,"output":"] PplBlocks WaitingState STM is scheduling block 1 from pipeline: \"785f7242-7528-40fb-9958-6a993ce4"},{"event":"cmd_output","timestamp":1607098458,"output":"b94d\"\n\u001b[0m\u001b[22m\n16:14:18.593 [info] block_id: be75d24e-9d36-4f97-b991-e3a5cfebab29, type: BlockRe"},{"event":"cmd_output","timestamp":1607098458,"output":"quests, event: persisted block run request from ppl 785f7242-7528-40fb-9958-6a993ce4b94d for block 1"},{"event":"cmd_output","timestamp":1607098458,"output":", origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098458,"output":"\n16:14:18.595 [info] block_id: be75d24e-9d36-4f97-b991-e3a5cfebab29, type: Blocks, state: initiali"},{"event":"cmd_output","timestamp":1607098458,"output":"zing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert"},{"event":"cmd_output","timestamp":1607098458,"output":"/1(L43), \n\u001b[0m\u001b[22m\n16:14:18.595 [info] Block 1 of pipeline with id: 785f7242-7528-40fb-9958-6a99"},{"event":"cmd_output","timestamp":1607098458,"output":"3ce4b94d scheduled in block service with id: : \"be75d24e-9d36-4f97-b991-e3a5cfebab29\"\n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098458,"output":":14:18.597 [info] ppl_id: 785f7242-7528-40fb-9958-6a993ce4b94d, type: PplBlocks, block_index: 1, st"},{"event":"cmd_output","timestamp":1607098458,"output":"ate: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_ch"},{"event":"cmd_output","timestamp":1607098458,"output":"ange/1(L90), \n\u001b[0m\u001b[22m\n16:14:18.602 [info] block_id: be75d24e-9d36-4f97-b991-e3a5cfebab29, type:"},{"event":"cmd_output","timestamp":1607098458,"output":" BlockRequests, event: persisted build and sub_ppl details for block_request: be75d24e-9d36-4f97-b99"},{"event":"cmd_output","timestamp":1607098458,"output":"1-e3a5cfebab29, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \r"},{"event":"cmd_output","timestamp":1607098458,"output":"\n\u001b[0m\u001b[22m\n16:14:18.603 [info] block_id: be75d24e-9d36-4f97-b991-e3a5cfebab29, type: Tasks, state:"},{"event":"cmd_output","timestamp":1607098458,"output":" pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingStat"},{"event":"cmd_output","timestamp":1607098458,"output":"e.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:14:18.609 [info] block_id: be75d24e-9d36-4f97-b991-e3a5cfebab29,"},{"event":"cmd_output","timestamp":1607098458,"output":" type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM."},{"event":"cmd_output","timestamp":1607098458,"output":"Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:18.621 [info] block_id: be75d24e-9d36-4f97-b991-e3"},{"event":"cmd_output","timestamp":1607098458,"output":"a5cfebab29, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098458,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:18.674 [info] block_id: be75d24e-9d36-4f"},{"event":"cmd_output","timestamp":1607098458,"output":"97-b991-e3a5cfebab29, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: E"},{"event":"cmd_output","timestamp":1607098458,"output":"lixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:18.687 [info] block_id: be75d24e-"},{"event":"cmd_output","timestamp":1607098458,"output":"9d36-4f97-b991-e3a5cfebab29, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098458,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:18.696 [info] ppl_id: 785"},{"event":"cmd_output","timestamp":1607098458,"output":"f7242-7528-40fb-9958-6a993ce4b94d, block_id: be75d24e-9d36-4f97-b991-e3a5cfebab29, type: PplBlocks, "},{"event":"cmd_output","timestamp":1607098458,"output":"block_index: 1, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098458,"output":"ir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:18.708 [info] ppl_id: 785f7242-7528-"},{"event":"cmd_output","timestamp":1607098458,"output":"40fb-9958-6a993ce4b94d, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_co"},{"event":"cmd_output","timestamp":1607098458,"output":"unt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test Pipeline with m"},{"event":"cmd_output","timestamp":1607098458,"output":"ultiple docker images in agent definition passes (586.8ms)\u001b[0m\n\nPpl.E2E.AutoCancel.Test\n * test "},{"event":"cmd_output","timestamp":1607098458,"output":"auto_cancel/queued terminates older pipelines that are not running\u001b[22m\n16:14:18.826 [info] Period"},{"event":"cmd_output","timestamp":1607098458,"output":"ic from module Elixir.Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.STMHandler.Ini"},{"event":"cmd_output","timestamp":1607098458,"output":"tializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Initia"},{"event":"cmd_output","timestamp":1607098458,"output":"lizingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], cooling_time_"},{"event":"cmd_output","timestamp":1607098458,"output":"sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher_cb: #Function<"},{"event":"cmd_output","timestamp":1607098458,"output":"0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, returning: [:id,"},{"event":"cmd_output","timestamp":1607098458,"output":" :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model"},{"event":"cmd_output","timestamp":1607098458,"output":".Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:18.826 [info] Periodic from module Elixir.Ppl.Ppls"},{"event":"cmd_output","timestamp":1607098458,"output":".STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 100 ms, metric"},{"event":"cmd_output","timestamp":1607098458,"output":"_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args: %{allowed_sta"},{"event":"cmd_output","timestamp":1607098458,"output":"tes: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.P"},{"event":"cmd_output","timestamp":1607098458,"output":"pls, observed_state: \"pending\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler.PendingSt"},{"event":"cmd_output","timestamp":1607098458,"output":"ate.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, "},{"event":"cmd_output","timestamp":1607098458,"output":":recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098458,"output":"22m\n16:14:18.827 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.QueuingState with name Eli"},{"event":"cmd_output","timestamp":1607098458,"output":"xir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-"},{"event":"cmd_output","timestamp":1607098458,"output":"Ppls-STMHandler-QueuingState\"]}, recurring args: %{allowed_states: [\"queuing\", \"running\", \"done\"], c"},{"event":"cmd_output","timestamp":1607098458,"output":"ooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", publisher_cb: #F"},{"event":"cmd_output","timestamp":1607098458,"output":"unction<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, returning: [:"},{"event":"cmd_output","timestamp":1607098458,"output":"id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Mo"},{"event":"cmd_output","timestamp":1607098458,"output":"del.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:18.827 [info] Periodic from module Elixir.Ppl.P"},{"event":"cmd_output","timestamp":1607098458,"output":"pls.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHandler.RunningState :: period: 100 ms, met"},{"event":"cmd_output","timestamp":1607098458,"output":"ric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring args: %{allowed_"},{"event":"cmd_output","timestamp":1607098458,"output":"states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, o"},{"event":"cmd_output","timestamp":1607098458,"output":"bserved_state: \"running\", publisher_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler.RunningState.a"},{"event":"cmd_output","timestamp":1607098458,"output":"rgs/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :reco"},{"event":"cmd_output","timestamp":1607098458,"output":"very_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098458,"output":"16:14:18.827 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.StoppingState with name Elixir."},{"event":"cmd_output","timestamp":1607098458,"output":"Ppl.Ppls.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppl"},{"event":"cmd_output","timestamp":1607098458,"output":"s-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_"},{"event":"cmd_output","timestamp":1607098458,"output":"sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"stopping\", publisher_cb: #Function<0.7"},{"event":"cmd_output","timestamp":1607098458,"output":"1803493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :termin"},{"event":"cmd_output","timestamp":1607098458,"output":"ate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, t"},{"event":"cmd_output","timestamp":1607098458,"output":"ask_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:18.827 [info] Periodic from module Elixir.Ppl.PplSubInits."},{"event":"cmd_output","timestamp":1607098458,"output":"STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 100 ms, "},{"event":"cmd_output","timestamp":1607098458,"output":"metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args: "},{"event":"cmd_output","timestamp":1607098458,"output":"%{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.Pp"},{"event":"cmd_output","timestamp":1607098458,"output":"lSubInits, observed_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :ter"},{"event":"cmd_output","timestamp":1607098458,"output":"minate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Mod"},{"event":"cmd_output","timestamp":1607098458,"output":"el.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:18.827 [info] Periodic from module Elixir"},{"event":"cmd_output","timestamp":1607098458,"output":".Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler.FetchingState "},{"event":"cmd_output","timestamp":1607098458,"output":":: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\""},{"event":"cmd_output","timestamp":1607098458,"output":"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"done\"], cooling_time_sec: -2,"},{"event":"cmd_output","timestamp":1607098458,"output":" initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fetching\", publisher_cb: :skip, "},{"event":"cmd_output","timestamp":1607098458,"output":"repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_cou"},{"event":"cmd_output","timestamp":1607098458,"output":"nt, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:1"},{"event":"cmd_output","timestamp":1607098458,"output":"8.827 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CompilationState with name Elix"},{"event":"cmd_output","timestamp":1607098458,"output":"ir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_u"},{"event":"cmd_output","timestamp":1607098458,"output":"p\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurring args: %{allowed_states: [\"regular_in"},{"event":"cmd_output","timestamp":1607098458,"output":"it\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model."},{"event":"cmd_output","timestamp":1607098458,"output":"PplSubInits, observed_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id"},{"event":"cmd_output","timestamp":1607098458,"output":", :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubIni"},{"event":"cmd_output","timestamp":1607098458,"output":"ts.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:18.827 [info] Periodic from module "},{"event":"cmd_output","timestamp":1607098458,"output":"Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHandler.Regul"},{"event":"cmd_output","timestamp":1607098458,"output":"arInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-Re"},{"event":"cmd_output","timestamp":1607098458,"output":"gularInitState\"]}, recurring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, initial_query: P"},{"event":"cmd_output","timestamp":1607098458,"output":"pl.PplSubInits.Model.PplSubInits, observed_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.Ect"},{"event":"cmd_output","timestamp":1607098458,"output":"oRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id],"},{"event":"cmd_output","timestamp":1607098458,"output":" schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:18.828 [info] "},{"event":"cmd_output","timestamp":1607098458,"output":" Periodic from module Elixir.Ppl.PplBlocks.STMHandler.InitializingState with name Elixir.Ppl.PplBloc"},{"event":"cmd_output","timestamp":1607098458,"output":"ks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBl"},{"event":"cmd_output","timestamp":1607098458,"output":"ocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"waiting\", "},{"event":"cmd_output","timestamp":1607098458,"output":"\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"initial"},{"event":"cmd_output","timestamp":1607098458,"output":"izing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :"},{"event":"cmd_output","timestamp":1607098458,"output":"state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task"},{"event":"cmd_output","timestamp":1607098458,"output":"_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:18.828 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHa"},{"event":"cmd_output","timestamp":1607098458,"output":"ndler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler.WaitingState :: period: 1000 ms, metric"},{"event":"cmd_output","timestamp":1607098458,"output":"_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurring args: %{allowe"},{"event":"cmd_output","timestamp":1607098458,"output":"d_states: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.Pp"},{"event":"cmd_output","timestamp":1607098458,"output":"lBlocks, observed_state: \"waiting\", publisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.STMHandler."},{"event":"cmd_output","timestamp":1607098458,"output":"WaitingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, "},{"event":"cmd_output","timestamp":1607098458,"output":":result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_superv"},{"event":"cmd_output","timestamp":1607098458,"output":"isor: :skip}\n\u001b[0m\u001b[22m\n16:14:18.828 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.R"},{"event":"cmd_output","timestamp":1607098458,"output":"unningState with name Elixir.Ppl.PplBlocks.STMHandler.RunningState :: period: 1000 ms, metric_name: "},{"event":"cmd_output","timestamp":1607098458,"output":"{\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, recurring args: %{allowed_state"},{"event":"cmd_output","timestamp":1607098458,"output":"s: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBloc"},{"event":"cmd_output","timestamp":1607098458,"output":"ks, observed_state: \"running\", publisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHandler.Runn"},{"event":"cmd_output","timestamp":1607098458,"output":"ingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :res"},{"event":"cmd_output","timestamp":1607098458,"output":"ult, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task"},{"event":"cmd_output","timestamp":1607098458,"output":"_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:18.828 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHa"},{"event":"cmd_output","timestamp":1607098458,"output":"ndler.StoppingState with name Elixir.Ppl.PplBlocks.STMHandler.StoppingState :: period: 1000 ms, metr"},{"event":"cmd_output","timestamp":1607098458,"output":"ic_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurring args: %{all"},{"event":"cmd_output","timestamp":1607098458,"output":"owed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlock"},{"event":"cmd_output","timestamp":1607098458,"output":"s, observed_state: \"stopping\", publisher_cb: #Function<0.104215991/1 in Ppl.PplBlocks.STMHandler.Sto"},{"event":"cmd_output","timestamp":1607098458,"output":"ppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :r"},{"event":"cmd_output","timestamp":1607098458,"output":"esult, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, ta"},{"event":"cmd_output","timestamp":1607098458,"output":"sk_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:18.828 [info] Periodic from module Elixir.Block.Blocks.STMH"},{"event":"cmd_output","timestamp":1607098458,"output":"andler.InitializingState with name Elixir.Block.Blocks.STMHandler.InitializingState :: period: 100 m"},{"event":"cmd_output","timestamp":1607098458,"output":"s, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, recurring a"},{"event":"cmd_output","timestamp":1607098458,"output":"rgs: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Blocks.Model.B"},{"event":"cmd_output","timestamp":1607098458,"output":"locks, observed_state: \"initializing\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :"},{"event":"cmd_output","timestamp":1607098458,"output":"terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Bloc"},{"event":"cmd_output","timestamp":1607098458,"output":"ks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:18.828 [info] Periodic from module Elixir.Block.Block"},{"event":"cmd_output","timestamp":1607098458,"output":"s.STMHandler.RunningState with name Elixir.Block.Blocks.STMHandler.RunningState :: period: 100 ms, m"},{"event":"cmd_output","timestamp":1607098458,"output":"etric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-RunningState\"]}, recurring args: %{al"},{"event":"cmd_output","timestamp":1607098458,"output":"lowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Mod"},{"event":"cmd_output","timestamp":1607098458,"output":"el.Blocks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :t"},{"event":"cmd_output","timestamp":1607098458,"output":"erminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Block"},{"event":"cmd_output","timestamp":1607098458,"output":"s, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:18.828 [info] Periodic from module Elixir.Block.Blocks"},{"event":"cmd_output","timestamp":1607098458,"output":".STMHandler.StoppingState with name Elixir.Block.Blocks.STMHandler.StoppingState :: period: 100 ms, "},{"event":"cmd_output","timestamp":1607098458,"output":"metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-StoppingState\"]}, recurring args: %{"},{"event":"cmd_output","timestamp":1607098458,"output":"allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks"},{"event":"cmd_output","timestamp":1607098458,"output":", observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate"},{"event":"cmd_output","timestamp":1607098458,"output":"_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_"},{"event":"cmd_output","timestamp":1607098458,"output":"supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:18.828 [info] Periodic from module Elixir.Block.Tasks.STMHandl"},{"event":"cmd_output","timestamp":1607098458,"output":"er.PendingState with name Elixir.Block.Tasks.STMHandler.PendingState :: period: 100 ms, metric_name:"},{"event":"cmd_output","timestamp":1607098458,"output":" {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingState\"]}, recurring args: %{allowed_states"},{"event":"cmd_output","timestamp":1607098458,"output":": [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Tasks.Model.Tasks, observed_state: "},{"event":"cmd_output","timestamp":1607098458,"output":"\"pending\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_"},{"event":"cmd_output","timestamp":1607098458,"output":"at, :state, :recovery_count, :block_id, :build_request_id], schema: Block.Tasks.Model.Tasks, task_su"},{"event":"cmd_output","timestamp":1607098458,"output":"pervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:18.829 [info] Periodic from module Elixir.Block.Tasks.STMHandler"},{"event":"cmd_output","timestamp":1607098458,"output":".RunningState with name Elixir.Block.Tasks.STMHandler.RunningState :: period: 100 ms, metric_name: {"},{"event":"cmd_output","timestamp":1607098458,"output":"\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: "},{"event":"cmd_output","timestamp":1607098458,"output":"[\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, obser"},{"event":"cmd_output","timestamp":1607098458,"output":"ved_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request"},{"event":"cmd_output","timestamp":1607098458,"output":", :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor"},{"event":"cmd_output","timestamp":1607098458,"output":": :skip}\n\u001b[0m\u001b[22m\n16:14:18.829 [info] Periodic from module Elixir.Block.Tasks.STMHandler.Stoppin"},{"event":"cmd_output","timestamp":1607098458,"output":"gState with name Elixir.Block.Tasks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.b"},{"event":"cmd_output","timestamp":1607098458,"output":"eholder-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"sto"},{"event":"cmd_output","timestamp":1607098458,"output":"pping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"stop"},{"event":"cmd_output","timestamp":1607098458,"output":"ping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, "},{"event":"cmd_output","timestamp":1607098458,"output":":state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098458,"output":"[22m\n16:14:18.833 [info] Request: 'run: %{\"branch_id\" => \"fe183765-5036-4215-a150-15a3acfada6b\", \""},{"event":"cmd_output","timestamp":1607098458,"output":"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"ac_queued.yml\", \"hook_id\" =>"},{"event":"cmd_output","timestamp":1607098458,"output":" \"c314c774-364b-11eb-b8b8-5254005464e2\", \"label\" => \"master\", \"organization_id\" => \"79494b88-b75e-42"},{"event":"cmd_output","timestamp":1607098458,"output":"8c-bb19-dfcf5ff5e9ae\", \"owner\" => \"rt\", \"project_id\" => \"123\", \"repo_name\" => \"28_auto_cancel\", \"req"},{"event":"cmd_output","timestamp":1607098458,"output":"uest_token\" => \"c314bebe-364b-11eb-b105-5254005464e2\", \"requester_id\" => \"b6aee12b-7552-47b4-ae6a-a2"},{"event":"cmd_output","timestamp":1607098458,"output":"12c710dc2d\", \"service\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf"},{"event":"cmd_output","timestamp":1607098458,"output":"_id\" => \"c2f5ac7a-0675-4c32-af83-de040684979b\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:14:18."},{"event":"cmd_output","timestamp":1607098458,"output":"837 [info] ppl_id: 9839c632-23d6-47aa-b383-288e603c0dfe, type: PplRequests, event: persisted schedu"},{"event":"cmd_output","timestamp":1607098458,"output":"le request with request_token: c314bebe-364b-11eb-b105-5254005464e2, origin: Elixir.Ppl.PplRequests."},{"event":"cmd_output","timestamp":1607098458,"output":"Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:14:18.840 [info] ppl_id: 9839c632"},{"event":"cmd_output","timestamp":1607098458,"output":"-23d6-47aa-b383-288e603c0dfe, type: Ppls, state: initializing, event: initializing, recovery_count: "},{"event":"cmd_output","timestamp":1607098458,"output":"0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:14:18.845 [in"},{"event":"cmd_output","timestamp":1607098458,"output":"fo] Project 123 and branch masterlatest_wf details updated: \"wf_id: c2f5ac7a-0675-4c32-af83-de04068"},{"event":"cmd_output","timestamp":1607098458,"output":"4979b, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:14:18.847 [info] Persisted ppl_sub_init for pipeline with ppl_i"},{"event":"cmd_output","timestamp":1607098458,"output":"d: 9839c632-23d6-47aa-b383-288e603c0dfe: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.M"},{"event":"cmd_output","timestamp":1607098458,"output":"etadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 335, in_sc"},{"event":"cmd_output","timestamp":1607098458,"output":"heduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:14:18.845535], pipeline_request"},{"event":"cmd_output","timestamp":1607098458,"output":"s: #Ecto.Association.NotLoaded, ppl_id: \"9839c632-23d6"},{"event":"cmd_output","timestamp":1607098458,"output":"-47aa-b383-288e603c0dfe\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", term"},{"event":"cmd_output","timestamp":1607098458,"output":"inate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:14:18.845543]}\n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098458,"output":"22m\n16:14:18.859 [info] ppl_id: 9839c632-23d6-47aa-b383-288e603c0dfe, type: PplRequests, event: pe"},{"event":"cmd_output","timestamp":1607098458,"output":"rsisted source_args for pipeline: 9839c632-23d6-47aa-b383-288e603c0dfe, origin: Elixir.Ppl.PplReques"},{"event":"cmd_output","timestamp":1607098458,"output":"ts.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:14:18.861 [info] ppl_id: 9839c632"},{"event":"cmd_output","timestamp":1607098458,"output":"-23d6-47aa-b383-288e603c0dfe, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098458,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:18.879 [info] p"},{"event":"cmd_output","timestamp":1607098458,"output":"pl_id: 9839c632-23d6-47aa-b383-288e603c0dfe, type: PplSubInits, state: regular_init, event: exit_sch"},{"event":"cmd_output","timestamp":1607098458,"output":"eduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098458,"output":"14:18.897 [info] ppl_id: 9839c632-23d6-47aa-b383-288e603c0dfe, type: PplRequests, event: persisted "},{"event":"cmd_output","timestamp":1607098458,"output":"definition for request with request_token: c314bebe-364b-11eb-b105-5254005464e2, origin: Elixir.Ppl."},{"event":"cmd_output","timestamp":1607098458,"output":"PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:14:18.900 [info] Que"},{"event":"cmd_output","timestamp":1607098458,"output":"ue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, ins"},{"event":"cmd_output","timestamp":1607098458,"output":"erted_at: ~N[2020-12-04 16:14:18.899010], name: \"master-.semaphore/ac_queued.yml\", organization_id: "},{"event":"cmd_output","timestamp":1607098458,"output":"\"79494b88-b75e-428c-bb19-dfcf5ff5e9ae\", project_id: \"123\", queue_id: \"1a898416-dc5c-494a-b01e-eb4e5a"},{"event":"cmd_output","timestamp":1607098458,"output":"b5b5f5\", scope: \"project\", updated_at: ~N[2020-12-04 16:14:18.899018], user_generated: false}}\n\u001b[0m"},{"event":"cmd_output","timestamp":1607098458,"output":"\u001b[22m\n16:14:18.912 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitSta"},{"event":"cmd_output","timestamp":1607098458,"output":"te.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:18.912 [info] ppl_id: 9839c632-23d6-47aa-b383-288e603c0dfe, "},{"event":"cmd_output","timestamp":1607098458,"output":"type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098458,"output":"xir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:18.914 [info] p"},{"event":"cmd_output","timestamp":1607098458,"output":"pl_id: 9839c632-23d6-47aa-b383-288e603c0dfe, type: PplSubInits, state: done, result: passed, event: "},{"event":"cmd_output","timestamp":1607098458,"output":"exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098458,"output":"22m\n16:14:18.920 [info] ppl_id: 9839c632-23d6-47aa-b383-288e603c0dfe, type: Ppls, state: pending, "},{"event":"cmd_output","timestamp":1607098458,"output":"event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \r"},{"event":"cmd_output","timestamp":1607098458,"output":"\n\u001b[0m\u001b[22m\n16:14:18.925 [info] ppl_id: 9839c632-23d6-47aa-b383-288e603c0dfe, type: PplBlocks, bloc"},{"event":"cmd_output","timestamp":1607098458,"output":"k_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Imp"},{"event":"cmd_output","timestamp":1607098458,"output":"l.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:18.929 [info] ppl_id: 9839c632-23d6-47aa-b383-288e603"},{"event":"cmd_output","timestamp":1607098458,"output":"c0dfe, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper."},{"event":"cmd_output","timestamp":1607098458,"output":"STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:18.941 [info] ppl_id: 9839c632-23d6-47aa-b383-"},{"event":"cmd_output","timestamp":1607098458,"output":"288e603c0dfe, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098458,"output":"Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:18.947 [info] PplBlocks WaitingState ST"},{"event":"cmd_output","timestamp":1607098458,"output":"M is scheduling block 0 from pipeline: \"9839c632-23d6-47aa-b383-288e603c0dfe\"\n\u001b[0m\u001b[22m\n16:14:18.9"},{"event":"cmd_output","timestamp":1607098458,"output":"55 [info] block_id: 52184df5-c951-4a6f-8f31-29ca36bea353, type: BlockRequests, event: persisted blo"},{"event":"cmd_output","timestamp":1607098458,"output":"ck run request from ppl 9839c632-23d6-47aa-b383-288e603c0dfe for block 0, origin: Elixir.Block.Block"},{"event":"cmd_output","timestamp":1607098458,"output":"Requests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:14:18.957 [info] block"},{"event":"cmd_output","timestamp":1607098458,"output":"_id: 52184df5-c951-4a6f-8f31-29ca36bea353, type: Blocks, state: initializing, event: initializing, r"},{"event":"cmd_output","timestamp":1607098458,"output":"ecovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:14:"},{"event":"cmd_output","timestamp":1607098458,"output":"18.960 [info] Request: 'run: %{\"branch_id\" => \"bea70bb5-e001-4b7c-aaf5-a62f6e1410cb\", \"branch_name\""},{"event":"cmd_output","timestamp":1607098458,"output":" => \"master\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"ac_queued.yml\", \"hook_id\" => \"c3281f36-3"},{"event":"cmd_output","timestamp":1607098458,"output":"64b-11eb-9f83-5254005464e2\", \"label\" => \"master\", \"organization_id\" => \"f9cdeaac-d2b5-4b1c-a1e2-3c1a"},{"event":"cmd_output","timestamp":1607098458,"output":"6f7207c9\", \"owner\" => \"rt\", \"project_id\" => \"123\", \"repo_name\" => \"28_auto_cancel\", \"request_token\" "},{"event":"cmd_output","timestamp":1607098458,"output":"=> \"c327e2aa-364b-11eb-988c-5254005464e2\", \"requester_id\" => \"31e996f0-ebcf-44c2-9a2b-ec0ce0ef8c93\","},{"event":"cmd_output","timestamp":1607098458,"output":" \"service\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"0f0"},{"event":"cmd_output","timestamp":1607098458,"output":"c8554-d698-4306-ae97-ccb8818fc867\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:14:18.962 [info] "},{"event":"cmd_output","timestamp":1607098458,"output":"Block 0 of pipeline with id: 9839c632-23d6-47aa-b383-288e603c0dfe scheduled in block service with id"},{"event":"cmd_output","timestamp":1607098458,"output":": : \"52184df5-c951-4a6f-8f31-29ca36bea353\"\n\u001b[0m\u001b[22m\n16:14:18.962 [info] ppl_id: 1c039b20-1415-48"},{"event":"cmd_output","timestamp":1607098458,"output":"fd-84f1-72bf08d7597e, type: PplRequests, event: persisted schedule request with request_token: c327e"},{"event":"cmd_output","timestamp":1607098458,"output":"2aa-364b-11eb-988c-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_res"},{"event":"cmd_output","timestamp":1607098458,"output":"ponse/2(L55), \n\u001b[0m\u001b[22m\n16:14:18.964 [info] ppl_id: 1c039b20-1415-48fd-84f1-72bf08d7597e, type: "},{"event":"cmd_output","timestamp":1607098458,"output":"Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.Ppl"},{"event":"cmd_output","timestamp":1607098458,"output":"sQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:14:18.966 [info] Project 123 and branch masterla"},{"event":"cmd_output","timestamp":1607098458,"output":"test_wf details updated: \"wf_id: 0f0c8554-d698-4306-ae97-ccb8818fc867, wf_number: 2\"\n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098458,"output":"14:18.967 [info] Persisted ppl_sub_init for pipeline with ppl_id: 1c039b20-1415-48fd-84f1-72bf08d75"},{"event":"cmd_output","timestamp":1607098458,"output":"97e: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits"},{"event":"cmd_output","timestamp":1607098458,"output":"\">, compile_task_id: nil, error_description: nil, id: 336, in_scheduling: false, init_type: \"regular"},{"event":"cmd_output","timestamp":1607098458,"output":"\", inserted_at: ~N[2020-12-04 16:14:18.966738], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"1c039b20-1415-48fd-84f1-72bf08d7597e\", recovery_c"},{"event":"cmd_output","timestamp":1607098458,"output":"ount: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_reques"},{"event":"cmd_output","timestamp":1607098458,"output":"t_desc: nil, updated_at: ~N[2020-12-04 16:14:18.966746]}\n\u001b[0m\u001b[22m\n16:14:18.967 [info] ppl_id: 98"},{"event":"cmd_output","timestamp":1607098458,"output":"39c632-23d6-47aa-b383-288e603c0dfe, type: PplBlocks, block_index: 0, state: running, event: exit_sch"},{"event":"cmd_output","timestamp":1607098458,"output":"eduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098458,"output":"14:18.969 [info] block_id: 52184df5-c951-4a6f-8f31-29ca36bea353, type: BlockRequests, event: persis"},{"event":"cmd_output","timestamp":1607098458,"output":"ted build and sub_ppl details for block_request: 52184df5-c951-4a6f-8f31-29ca36bea353, origin: Elixi"},{"event":"cmd_output","timestamp":1607098458,"output":"r.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:14:18.972 [inf"},{"event":"cmd_output","timestamp":1607098458,"output":"o] block_id: 52184df5-c951-4a6f-8f31-29ca36bea353, type: Tasks, state: pending, event: created, rec"},{"event":"cmd_output","timestamp":1607098458,"output":"overy_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098458,"output":"m\n16:14:18.974 [info] Request: 'run: %{\"branch_id\" => \"cbde9305-0112-4ea2-9487-6b3acfc22874\", \"bra"},{"event":"cmd_output","timestamp":1607098458,"output":"nch_name\" => \"master\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"ac_queued.yml\", \"hook_id\" => \"c"},{"event":"cmd_output","timestamp":1607098458,"output":"32a7100-364b-11eb-8a23-5254005464e2\", \"label\" => \"master\", \"organization_id\" => \"77dc0f14-b966-48cb-"},{"event":"cmd_output","timestamp":1607098458,"output":"8c61-ec506657920f\", \"owner\" => \"rt\", \"project_id\" => \"123\", \"repo_name\" => \"28_auto_cancel\", \"reques"},{"event":"cmd_output","timestamp":1607098458,"output":"t_token\" => \"c32a6836-364b-11eb-94d0-5254005464e2\", \"requester_id\" => \"5bd7deb1-8896-4513-80ff-0a595"},{"event":"cmd_output","timestamp":1607098458,"output":"1e9110e\", \"service\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id"},{"event":"cmd_output","timestamp":1607098458,"output":"\" => \"e6dceda1-ab32-4165-bde2-3f418b49a98e\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:14:18.975"},{"event":"cmd_output","timestamp":1607098458,"output":" [info] block_id: 52184df5-c951-4a6f-8f31-29ca36bea353, type: Blocks, state: running, event: exit_s"},{"event":"cmd_output","timestamp":1607098458,"output":"cheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098458,"output":"6:14:18.976 [info] ppl_id: 127f28e0-74f8-409f-bff9-06103e6ec44e, type: PplRequests, event: persiste"},{"event":"cmd_output","timestamp":1607098458,"output":"d schedule request with request_token: c32a6836-364b-11eb-94d0-5254005464e2, origin: Elixir.Ppl.PplR"},{"event":"cmd_output","timestamp":1607098458,"output":"equests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:14:18.979 [info] ppl_id: "},{"event":"cmd_output","timestamp":1607098458,"output":"127f28e0-74f8-409f-bff9-06103e6ec44e, type: Ppls, state: initializing, event: initializing, recovery"},{"event":"cmd_output","timestamp":1607098458,"output":"_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:14:18"},{"event":"cmd_output","timestamp":1607098458,"output":".981 [info] Project 123 and branch masterlatest_wf details updated: \"wf_id: e6dceda1-ab32-4165-bde2"},{"event":"cmd_output","timestamp":1607098458,"output":"-3f418b49a98e, wf_number: 3\"\n\u001b[0m\u001b[22m\n16:14:18.981 [info] Persisted ppl_sub_init for pipeline wi"},{"event":"cmd_output","timestamp":1607098458,"output":"th ppl_id: 127f28e0-74f8-409f-bff9-06103e6ec44e: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto."},{"event":"cmd_output","timestamp":1607098458,"output":"Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 33"},{"event":"cmd_output","timestamp":1607098458,"output":"7, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:14:18.981101], pipeline"},{"event":"cmd_output","timestamp":1607098458,"output":"_requests: #Ecto.Association.NotLoaded, ppl_id: \"127f2"},{"event":"cmd_output","timestamp":1607098458,"output":"8e0-74f8-409f-bff9-06103e6ec44e\", recovery_count: 0, result: nil, result_reason: nil, state: \"create"},{"event":"cmd_output","timestamp":1607098458,"output":"d\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:14:18.981107]}"},{"event":"cmd_output","timestamp":1607098458,"output":"\n\u001b[0m\u001b[22m\n16:14:18.983 [info] ppl_id: 1c039b20-1415-48fd-84f1-72bf08d7597e, type: PplRequests, e"},{"event":"cmd_output","timestamp":1607098458,"output":"vent: persisted source_args for pipeline: 1c039b20-1415-48fd-84f1-72bf08d7597e, origin: Elixir.Ppl.P"},{"event":"cmd_output","timestamp":1607098458,"output":"plRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:14:18.991 [info] Request:"},{"event":"cmd_output","timestamp":1607098458,"output":" 'run: %{\"branch_id\" => \"0d7ca110-0ee3-4552-8b35-10cf1b7ecb99\", \"branch_name\" => \"master\", \"commit_s"},{"event":"cmd_output","timestamp":1607098458,"output":"ha\" => \"75891a4469\", \"file_name\" => \"ac_queued.yml\", \"hook_id\" => \"c32c7216-364b-11eb-a158-525400546"},{"event":"cmd_output","timestamp":1607098458,"output":"4e2\", \"label\" => \"master\", \"organization_id\" => \"22d7ccb0-f859-4464-bdc8-e6e3745f59d0\", \"owner\" => \""},{"event":"cmd_output","timestamp":1607098458,"output":"rt\", \"project_id\" => \"123\", \"repo_name\" => \"28_auto_cancel\", \"request_token\" => \"c32c69ba-364b-11eb-"},{"event":"cmd_output","timestamp":1607098458,"output":"bfa8-5254005464e2\", \"requester_id\" => \"b4cc61c5-6f40-4108-8153-7893619f9caf\", \"service\" => \"local\", "},{"event":"cmd_output","timestamp":1607098458,"output":"\"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"310afd65-7f47-42e0-a652-dc"},{"event":"cmd_output","timestamp":1607098458,"output":"3382238552\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:14:18.991 [info] ppl_id: 1c039b20-1415-4"},{"event":"cmd_output","timestamp":1607098458,"output":"8fd-84f1-72bf08d7597e, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0"},{"event":"cmd_output","timestamp":1607098458,"output":", origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:18.994 [info] ppl_id: "},{"event":"cmd_output","timestamp":1607098458,"output":"d1a359f3-906b-4ac2-9932-1a37c5187f67, type: PplRequests, event: persisted schedule request with requ"},{"event":"cmd_output","timestamp":1607098458,"output":"est_token: c32c69ba-364b-11eb-bfa8-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQue"},{"event":"cmd_output","timestamp":1607098458,"output":"ries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:14:18.996 [info] ppl_id: d1a359f3-906b-4ac2-9932-1a37"},{"event":"cmd_output","timestamp":1607098458,"output":"c5187f67, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Pp"},{"event":"cmd_output","timestamp":1607098458,"output":"l.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:14:18.999 [info] Project 123 and"},{"event":"cmd_output","timestamp":1607098458,"output":" branch masterlatest_wf details updated: \"wf_id: 310afd65-7f47-42e0-a652-dc3382238552, wf_number: 4\""},{"event":"cmd_output","timestamp":1607098458,"output":"\n\u001b[0m\u001b[22m\n16:14:18.999 [info] block_id: 52184df5-c951-4a6f-8f31-29ca36bea353, type: Tasks, state"},{"event":"cmd_output","timestamp":1607098458,"output":": running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chang"},{"event":"cmd_output","timestamp":1607098459,"output":"e/1(L90), \n\u001b[0m\u001b[22m\n16:14:19.002 [info] Persisted ppl_sub_init for pipeline with ppl_id: d1a359f"},{"event":"cmd_output","timestamp":1607098459,"output":"3-906b-4ac2-9932-1a37c5187f67: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:l"},{"event":"cmd_output","timestamp":1607098459,"output":"oaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 338, in_scheduling: "},{"event":"cmd_output","timestamp":1607098459,"output":"false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:14:18.999116], pipeline_requests: #Ecto.A"},{"event":"cmd_output","timestamp":1607098459,"output":"ssociation.NotLoaded, ppl_id: \"d1a359f3-906b-4ac2-9932"},{"event":"cmd_output","timestamp":1607098459,"output":"-1a37c5187f67\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_requ"},{"event":"cmd_output","timestamp":1607098459,"output":"est: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:14:18.999122]}\n\u001b[0m\u001b[22m\n16:14"},{"event":"cmd_output","timestamp":1607098459,"output":":19.005 [info] ppl_id: 127f28e0-74f8-409f-bff9-06103e6ec44e, type: PplRequests, event: persisted so"},{"event":"cmd_output","timestamp":1607098459,"output":"urce_args for pipeline: 127f28e0-74f8-409f-bff9-06103e6ec44e, origin: Elixir.Ppl.PplRequests.Model.P"},{"event":"cmd_output","timestamp":1607098459,"output":"plRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:14:19.007 [info] ppl_id: 127f28e0-74f8-409f"},{"event":"cmd_output","timestamp":1607098459,"output":"-bff9-06103e6ec44e, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098459,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:19.011 [info] Request: 'r"},{"event":"cmd_output","timestamp":1607098459,"output":"un: %{\"branch_id\" => \"28d1e912-84fa-453f-b656-8c58758d886a\", \"branch_name\" => \"master\", \"commit_sha\""},{"event":"cmd_output","timestamp":1607098459,"output":" => \"75891a4469\", \"file_name\" => \"ac_queued.yml\", \"hook_id\" => \"c3300a34-364b-11eb-95c5-5254005464e2"},{"event":"cmd_output","timestamp":1607098459,"output":"\", \"label\" => \"master\", \"organization_id\" => \"522949ef-5f63-4a37-a5a9-6f8ea960f23a\", \"owner\" => \"rt\""},{"event":"cmd_output","timestamp":1607098459,"output":", \"project_id\" => \"123\", \"repo_name\" => \"28_auto_cancel\", \"request_token\" => \"c32fff44-364b-11eb-a00"},{"event":"cmd_output","timestamp":1607098459,"output":"9-5254005464e2\", \"requester_id\" => \"0747a72a-f1d2-4c37-9d0f-91e8bab06201\", \"service\" => \"local\", \"su"},{"event":"cmd_output","timestamp":1607098459,"output":"ppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"7be57a83-5ae7-4f9b-9592-94bc4"},{"event":"cmd_output","timestamp":1607098459,"output":"6dfbf92\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:14:19.012 [info] ppl_id: 927b6580-76bf-4539"},{"event":"cmd_output","timestamp":1607098459,"output":"-83ad-4fd42ad64206, type: PplRequests, event: persisted schedule request with request_token: c32fff4"},{"event":"cmd_output","timestamp":1607098459,"output":"4-364b-11eb-a009-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_respo"},{"event":"cmd_output","timestamp":1607098459,"output":"nse/2(L55), \n\u001b[0m\u001b[22m\n16:14:19.015 [info] ppl_id: 927b6580-76bf-4539-83ad-4fd42ad64206, type: Pp"},{"event":"cmd_output","timestamp":1607098459,"output":"ls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQ"},{"event":"cmd_output","timestamp":1607098459,"output":"ueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:14:19.017 [info] Project 123 and branch masterlate"},{"event":"cmd_output","timestamp":1607098459,"output":"st_wf details updated: \"wf_id: 7be57a83-5ae7-4f9b-9592-94bc46dfbf92, wf_number: 5\"\n\u001b[0m\u001b[22m\n16:14"},{"event":"cmd_output","timestamp":1607098459,"output":":19.018 [info] Persisted ppl_sub_init for pipeline with ppl_id: 927b6580-76bf-4539-83ad-4fd42ad6420"},{"event":"cmd_output","timestamp":1607098459,"output":"6: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">"},{"event":"cmd_output","timestamp":1607098459,"output":", compile_task_id: nil, error_description: nil, id: 339, in_scheduling: false, init_type: \"regular\","},{"event":"cmd_output","timestamp":1607098459,"output":" inserted_at: ~N[2020-12-04 16:14:19.017309], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"927b6580-76bf-4539-83ad-4fd42ad64206\", recovery_cou"},{"event":"cmd_output","timestamp":1607098459,"output":"nt: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_"},{"event":"cmd_output","timestamp":1607098459,"output":"desc: nil, updated_at: ~N[2020-12-04 16:14:19.017316]}\n\u001b[0m\u001b[22m\n16:14:19.018 [info] ppl_id: d1a3"},{"event":"cmd_output","timestamp":1607098459,"output":"59f3-906b-4ac2-9932-1a37c5187f67, type: PplRequests, event: persisted source_args for pipeline: d1a3"},{"event":"cmd_output","timestamp":1607098459,"output":"59f3-906b-4ac2-9932-1a37c5187f67, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_sou"},{"event":"cmd_output","timestamp":1607098459,"output":"rce/2(L89), \n\u001b[0m\u001b[22m\n16:14:19.021 [info] ppl_id: d1a359f3-906b-4ac2-9932-1a37c5187f67, type: Pp"},{"event":"cmd_output","timestamp":1607098459,"output":"lSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Imp"},{"event":"cmd_output","timestamp":1607098459,"output":"l.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:19.022 [info] ppl_id: 1c039b20-1415-48fd-84f1-72bf08d"},{"event":"cmd_output","timestamp":1607098459,"output":"7597e, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098459,"output":"ixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:19.025 [info] Request: 'run: %{\"br"},{"event":"cmd_output","timestamp":1607098459,"output":"anch_id\" => \"ec3ba975-7a7e-4120-b9dc-fda101ee41fa\", \"branch_name\" => \"master\", \"commit_sha\" => \"7589"},{"event":"cmd_output","timestamp":1607098459,"output":"1a4469\", \"file_name\" => \"ac_queued.yml\", \"hook_id\" => \"c331e3fe-364b-11eb-81db-5254005464e2\", \"label"},{"event":"cmd_output","timestamp":1607098459,"output":"\" => \"master\", \"organization_id\" => \"5394ff2b-bd5f-48ee-9aca-c2658566d58f\", \"owner\" => \"rt\", \"projec"},{"event":"cmd_output","timestamp":1607098459,"output":"t_id\" => \"123\", \"repo_name\" => \"28_auto_cancel\", \"request_token\" => \"c331db3e-364b-11eb-ba24-5254005"},{"event":"cmd_output","timestamp":1607098459,"output":"464e2\", \"requester_id\" => \"9cdc4528-f61e-4fdc-b909-3b7cbc5ecd20\", \"service\" => \"local\", \"suppressed_"},{"event":"cmd_output","timestamp":1607098459,"output":"attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"3159c7a0-44c2-43dc-8818-cd2202e09f48\","},{"event":"cmd_output","timestamp":1607098459,"output":" \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:14:19.027 [info] ppl_id: e9be1a10-86ae-419d-b49f-eba"},{"event":"cmd_output","timestamp":1607098459,"output":"7ed8bb44a, type: PplRequests, event: persisted schedule request with request_token: c331db3e-364b-11"},{"event":"cmd_output","timestamp":1607098459,"output":"eb-ba24-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55"},{"event":"cmd_output","timestamp":1607098459,"output":"), \n\u001b[0m\u001b[22m\n16:14:19.029 [info] ppl_id: e9be1a10-86ae-419d-b49f-eba7ed8bb44a, type: Ppls, state"},{"event":"cmd_output","timestamp":1607098459,"output":": initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.pr"},{"event":"cmd_output","timestamp":1607098459,"output":"ocess_response/2(L124), \n\u001b[0m\u001b[22m\n16:14:19.031 [info] Project 123 and branch masterlatest_wf det"},{"event":"cmd_output","timestamp":1607098459,"output":"ails updated: \"wf_id: 3159c7a0-44c2-43dc-8818-cd2202e09f48, wf_number: 6\"\n\u001b[0m\u001b[22m\n16:14:19.031 ["},{"event":"cmd_output","timestamp":1607098459,"output":"info] Persisted ppl_sub_init for pipeline with ppl_id: e9be1a10-86ae-419d-b49f-eba7ed8bb44a: %Ppl.P"},{"event":"cmd_output","timestamp":1607098459,"output":"plSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile"},{"event":"cmd_output","timestamp":1607098459,"output":"_task_id: nil, error_description: nil, id: 340, in_scheduling: false, init_type: \"regular\", inserted"},{"event":"cmd_output","timestamp":1607098459,"output":"_at: ~N[2020-12-04 16:14:19.031208], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"e9be1a10-86ae-419d-b49f-eba7ed8bb44a\", recovery_count: 0, re"},{"event":"cmd_output","timestamp":1607098459,"output":"sult: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil"},{"event":"cmd_output","timestamp":1607098459,"output":", updated_at: ~N[2020-12-04 16:14:19.031221]}\n\u001b[0m\u001b[22m\n16:14:19.043 [info] ppl_id: 927b6580-76bf"},{"event":"cmd_output","timestamp":1607098459,"output":"-4539-83ad-4fd42ad64206, type: PplRequests, event: persisted source_args for pipeline: 927b6580-76bf"},{"event":"cmd_output","timestamp":1607098459,"output":"-4539-83ad-4fd42ad64206, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89"},{"event":"cmd_output","timestamp":1607098459,"output":"), \n\u001b[0m\u001b[22m\n16:14:19.047 [info] ppl_id: 927b6580-76bf-4539-83ad-4fd42ad64206, type: PplSubInits"},{"event":"cmd_output","timestamp":1607098459,"output":", state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_sta"},{"event":"cmd_output","timestamp":1607098459,"output":"te_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:19.061 [info] ppl_id: 127f28e0-74f8-409f-bff9-06103e6ec44e, ty"},{"event":"cmd_output","timestamp":1607098459,"output":"pe: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loop"},{"event":"cmd_output","timestamp":1607098459,"output":"er.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:19.062 [info] ppl_id: e9be1a10-86ae-419d-b4"},{"event":"cmd_output","timestamp":1607098459,"output":"9f-eba7ed8bb44a, type: PplRequests, event: persisted source_args for pipeline: e9be1a10-86ae-419d-b4"},{"event":"cmd_output","timestamp":1607098459,"output":"9f-eba7ed8bb44a, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098459,"output":"m\u001b[22m\n16:14:19.065 [info] ppl_id: e9be1a10-86ae-419d-b49f-eba7ed8bb44a, type: PplSubInits, state:"},{"event":"cmd_output","timestamp":1607098459,"output":" fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chang"},{"event":"cmd_output","timestamp":1607098459,"output":"e/1(L90), \n\u001b[0m\u001b[22m\n16:14:19.071 [info] ppl_id: 1c039b20-1415-48fd-84f1-72bf08d7597e, type: PplR"},{"event":"cmd_output","timestamp":1607098459,"output":"equests, event: persisted definition for request with request_token: c327e2aa-364b-11eb-988c-5254005"},{"event":"cmd_output","timestamp":1607098459,"output":"464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098459,"output":"\n16:14:19.075 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.al"},{"event":"cmd_output","timestamp":1607098459,"output":"l_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:19.075 [info] ppl_id: 1c039b20-1415-48fd-84f1-72bf08d7597e, type:"},{"event":"cmd_output","timestamp":1607098459,"output":" PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.P"},{"event":"cmd_output","timestamp":1607098459,"output":"pl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:19.077 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098459,"output":": 1c039b20-1415-48fd-84f1-72bf08d7597e, type: PplSubInits, state: done, result: passed, event: exit_"},{"event":"cmd_output","timestamp":1607098459,"output":"scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098459,"output":"16:14:19.083 [info] ppl_id: d1a359f3-906b-4ac2-9932-1a37c5187f67, type: PplSubInits, state: regular"},{"event":"cmd_output","timestamp":1607098459,"output":"_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1("},{"event":"cmd_output","timestamp":1607098459,"output":"L90), \n\u001b[0m\u001b[22m\n16:14:19.085 [info] ppl_id: 1c039b20-1415-48fd-84f1-72bf08d7597e, type: Ppls, st"},{"event":"cmd_output","timestamp":1607098459,"output":"ate: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_ch"},{"event":"cmd_output","timestamp":1607098459,"output":"ange/1(L90), \n\u001b[0m\u001b[22m\n16:14:19.086 [info] ppl_id: 1c039b20-1415-48fd-84f1-72bf08d7597e, type: P"},{"event":"cmd_output","timestamp":1607098459,"output":"plBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098459,"output":"Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:19.098 [info] ppl_id: 1c039b20-1415-48f"},{"event":"cmd_output","timestamp":1607098459,"output":"d-84f1-72bf08d7597e, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098459,"output":"Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:19.110 [info] ppl_id: 927b6580-7"},{"event":"cmd_output","timestamp":1607098459,"output":"6bf-4539-83ad-4fd42ad64206, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery"},{"event":"cmd_output","timestamp":1607098459,"output":"_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:19.118 [info] "},{"event":"cmd_output","timestamp":1607098459,"output":" ppl_id: 127f28e0-74f8-409f-bff9-06103e6ec44e, type: PplRequests, event: persisted definition for re"},{"event":"cmd_output","timestamp":1607098459,"output":"quest with request_token: c32a6836-364b-11eb-94d0-5254005464e2, origin: Elixir.Ppl.PplRequests.Model"},{"event":"cmd_output","timestamp":1607098459,"output":".PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:14:19.123 [info] event: created, orig"},{"event":"cmd_output","timestamp":1607098459,"output":"in: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:19.123 [i"},{"event":"cmd_output","timestamp":1607098459,"output":"nfo] ppl_id: 127f28e0-74f8-409f-bff9-06103e6ec44e, type: PplBlocks, block_index: 0, state: initiali"},{"event":"cmd_output","timestamp":1607098459,"output":"zing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState."},{"event":"cmd_output","timestamp":1607098459,"output":"all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:19.125 [info] ppl_id: 127f28e0-74f8-409f-bff9-06103e6ec44e, typ"},{"event":"cmd_output","timestamp":1607098459,"output":"e: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098459,"output":"ir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:19.125 [info] ppl_id: e9be1a10-86ae-"},{"event":"cmd_output","timestamp":1607098459,"output":"419d-b49f-eba7ed8bb44a, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_cou"},{"event":"cmd_output","timestamp":1607098459,"output":"nt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:19.130 [info] ppl"},{"event":"cmd_output","timestamp":1607098459,"output":"_id: 127f28e0-74f8-409f-bff9-06103e6ec44e, type: Ppls, state: pending, event: exit_scheduling, recov"},{"event":"cmd_output","timestamp":1607098459,"output":"ery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:19.136 [inf"},{"event":"cmd_output","timestamp":1607098459,"output":"o] ppl_id: 127f28e0-74f8-409f-bff9-06103e6ec44e, type: PplBlocks, block_index: 0, state: waiting, e"},{"event":"cmd_output","timestamp":1607098459,"output":"vent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n"},{"event":"cmd_output","timestamp":1607098459,"output":"\u001b[0m\u001b[22m\n16:14:19.142 [info] ppl_id: 127f28e0-74f8-409f-bff9-06103e6ec44e, type: Ppls, state: que"},{"event":"cmd_output","timestamp":1607098459,"output":"uing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098459,"output":"90), \n\u001b[0m\u001b[22m\n16:14:19.157 [info] ppl_id: d1a359f3-906b-4ac2-9932-1a37c5187f67, type: PplReques"},{"event":"cmd_output","timestamp":1607098459,"output":"ts, event: persisted definition for request with request_token: c32c69ba-364b-11eb-bfa8-5254005464e2"},{"event":"cmd_output","timestamp":1607098459,"output":", origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098459,"output":"14:19.160 [info] ppl_id: 1c039b20-1415-48fd-84f1-72bf08d7597e, type: Ppls, state: done, result: can"},{"event":"cmd_output","timestamp":1607098459,"output":"celed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1("},{"event":"cmd_output","timestamp":1607098459,"output":"L90), \n\u001b[0m\u001b[22m\n16:14:19.172 [info] ppl_id: 1c039b20-1415-48fd-84f1-72bf08d7597e, type: PplBlock"},{"event":"cmd_output","timestamp":1607098459,"output":"s, block_index: 0, state: done, result: canceled, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098459,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:19.174 [info] event: created, o"},{"event":"cmd_output","timestamp":1607098459,"output":"rigin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:19.174"},{"event":"cmd_output","timestamp":1607098459,"output":" [info] ppl_id: d1a359f3-906b-4ac2-9932-1a37c5187f67, type: PplBlocks, block_index: 0, state: initi"},{"event":"cmd_output","timestamp":1607098459,"output":"alizing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitSta"},{"event":"cmd_output","timestamp":1607098459,"output":"te.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:19.176 [info] ppl_id: d1a359f3-906b-4ac2-9932-1a37c5187f67, "},{"event":"cmd_output","timestamp":1607098459,"output":"type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: E"},{"event":"cmd_output","timestamp":1607098459,"output":"lixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:19.185 [info] ppl_id: d1a359f3-90"},{"event":"cmd_output","timestamp":1607098459,"output":"6b-4ac2-9932-1a37c5187f67, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098459,"output":"igin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:19.189 [info] ppl_id: d1a3"},{"event":"cmd_output","timestamp":1607098459,"output":"59f3-906b-4ac2-9932-1a37c5187f67, type: PplBlocks, block_index: 0, state: waiting, event: exit_sched"},{"event":"cmd_output","timestamp":1607098459,"output":"uling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14"},{"event":"cmd_output","timestamp":1607098459,"output":":19.199 [info] ppl_id: d1a359f3-906b-4ac2-9932-1a37c5187f67, type: Ppls, state: queuing, event: exi"},{"event":"cmd_output","timestamp":1607098459,"output":"t_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098459,"output":"\n16:14:19.206 [info] ppl_id: 127f28e0-74f8-409f-bff9-06103e6ec44e, type: Ppls, state: done, result"},{"event":"cmd_output","timestamp":1607098459,"output":": canceled, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chan"},{"event":"cmd_output","timestamp":1607098459,"output":"ge/1(L90), \n\u001b[0m\u001b[22m\n16:14:19.208 [info] ppl_id: 927b6580-76bf-4539-83ad-4fd42ad64206, type: Ppl"},{"event":"cmd_output","timestamp":1607098459,"output":"Requests, event: persisted definition for request with request_token: c32fff44-364b-11eb-a009-525400"},{"event":"cmd_output","timestamp":1607098459,"output":"5464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098459,"output":"m\n16:14:19.213 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.a"},{"event":"cmd_output","timestamp":1607098459,"output":"ll_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:19.213 [info] ppl_id: 927b6580-76bf-4539-83ad-4fd42ad64206, type"},{"event":"cmd_output","timestamp":1607098459,"output":": PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098459,"output":"Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:19.216 [info] ppl_i"},{"event":"cmd_output","timestamp":1607098459,"output":"d: 927b6580-76bf-4539-83ad-4fd42ad64206, type: PplSubInits, state: done, result: passed, event: exit"},{"event":"cmd_output","timestamp":1607098459,"output":"_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098459,"output":"\n16:14:19.217 [info] ppl_id: 127f28e0-74f8-409f-bff9-06103e6ec44e, type: PplBlocks, block_index: 0,"},{"event":"cmd_output","timestamp":1607098459,"output":" state: done, result: canceled, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM"},{"event":"cmd_output","timestamp":1607098459,"output":".Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:19.222 [info] ppl_id: 927b6580-76bf-4539-83ad-4fd"},{"event":"cmd_output","timestamp":1607098459,"output":"42ad64206, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loo"},{"event":"cmd_output","timestamp":1607098459,"output":"per.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:19.226 [info] ppl_id: 927b6580-76bf-4539-8"},{"event":"cmd_output","timestamp":1607098459,"output":"3ad-4fd42ad64206, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_"},{"event":"cmd_output","timestamp":1607098459,"output":"count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:19.235 [info] "},{"event":"cmd_output","timestamp":1607098459,"output":"ppl_id: 927b6580-76bf-4539-83ad-4fd42ad64206, type: Ppls, state: queuing, event: exit_scheduling, re"},{"event":"cmd_output","timestamp":1607098459,"output":"covery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:19.243 ["},{"event":"cmd_output","timestamp":1607098459,"output":"info] ppl_id: d1a359f3-906b-4ac2-9932-1a37c5187f67, type: Ppls, state: done, result: canceled, even"},{"event":"cmd_output","timestamp":1607098459,"output":"t: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098459,"output":"m\u001b[22m\n16:14:19.249 [info] ppl_id: d1a359f3-906b-4ac2-9932-1a37c5187f67, type: PplBlocks, block_in"},{"event":"cmd_output","timestamp":1607098459,"output":"dex: 0, state: done, result: canceled, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loo"},{"event":"cmd_output","timestamp":1607098459,"output":"per.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:19.258 [info] ppl_id: e9be1a10-86ae-419d-b"},{"event":"cmd_output","timestamp":1607098459,"output":"49f-eba7ed8bb44a, type: PplRequests, event: persisted definition for request with request_token: c33"},{"event":"cmd_output","timestamp":1607098459,"output":"1db3e-364b-11eb-ba24-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_de"},{"event":"cmd_output","timestamp":1607098459,"output":"finition/3(L76), \n\u001b[0m\u001b[22m\n16:14:19.266 [info] event: created, origin: Elixir.Ppl.PplSubInits.ST"},{"event":"cmd_output","timestamp":1607098459,"output":"MHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:19.266 [info] ppl_id: e9be1a10-86ae-4"},{"event":"cmd_output","timestamp":1607098459,"output":"19d-b49f-eba7ed8bb44a, type: PplBlocks, block_index: 0, state: initializing, event: created, recover"},{"event":"cmd_output","timestamp":1607098459,"output":"y_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098459,"output":"\n16:14:19.268 [info] ppl_id: e9be1a10-86ae-419d-b49f-eba7ed8bb44a, type: PplSubInits, state: done, "},{"event":"cmd_output","timestamp":1607098459,"output":"result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_"},{"event":"cmd_output","timestamp":1607098459,"output":"change/1(L90), \n\u001b[0m\u001b[22m\n16:14:19.273 [info] ppl_id: e9be1a10-86ae-419d-b49f-eba7ed8bb44a, type:"},{"event":"cmd_output","timestamp":1607098459,"output":" PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098459,"output":"r.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:19.276 [info] ppl_id: e9be1a10-86ae-4"},{"event":"cmd_output","timestamp":1607098459,"output":"19d-b49f-eba7ed8bb44a, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098459,"output":": Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:19.289 [info] ppl_id: e9be1a10"},{"event":"cmd_output","timestamp":1607098459,"output":"-86ae-419d-b49f-eba7ed8bb44a, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098459,"output":" origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:19.291 [info] ppl_id: 9"},{"event":"cmd_output","timestamp":1607098459,"output":"27b6580-76bf-4539-83ad-4fd42ad64206, type: Ppls, state: done, result: canceled, event: exit_scheduli"},{"event":"cmd_output","timestamp":1607098459,"output":"ng, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:19"},{"event":"cmd_output","timestamp":1607098459,"output":".298 [info] ppl_id: 927b6580-76bf-4539-83ad-4fd42ad64206, type: PplBlocks, block_index: 0, state: d"},{"event":"cmd_output","timestamp":1607098459,"output":"one, result: canceled, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098466,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:26.066 [info] block_id: 52184df5-c951-4a6f-8f31-29ca36bea3"},{"event":"cmd_output","timestamp":1607098466,"output":"53, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.I"},{"event":"cmd_output","timestamp":1607098466,"output":"mpl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:26.071 [info] block_id: 52184df5-c951-4a6f-8f31-29c"},{"event":"cmd_output","timestamp":1607098466,"output":"a36bea353, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loop"},{"event":"cmd_output","timestamp":1607098466,"output":"er.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:26.081 [info] ppl_id: 9839c632-23d6-47aa-b3"},{"event":"cmd_output","timestamp":1607098466,"output":"83-288e603c0dfe, block_id: 52184df5-c951-4a6f-8f31-29ca36bea353, type: PplBlocks, block_index: 0, st"},{"event":"cmd_output","timestamp":1607098466,"output":"ate: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl"},{"event":"cmd_output","timestamp":1607098466,"output":".log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:26.091 [info] ppl_id: 9839c632-23d6-47aa-b383-288e603c"},{"event":"cmd_output","timestamp":1607098466,"output":"0dfe, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098466,"output":"ixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:26.169 [info] ppl_id: e9be1a10-86a"},{"event":"cmd_output","timestamp":1607098466,"output":"e-419d-b49f-eba7ed8bb44a, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098466,"output":"gin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:26.178 [info] PplBlocks Wai"},{"event":"cmd_output","timestamp":1607098466,"output":"tingState STM is scheduling block 0 from pipeline: \"e9be1a10-86ae-419d-b49f-eba7ed8bb44a\"\n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098466,"output":"\n16:14:26.182 [info] block_id: 7bf002d1-0d99-494e-9cca-67e3bffc6d56, type: BlockRequests, event: p"},{"event":"cmd_output","timestamp":1607098466,"output":"ersisted block run request from ppl e9be1a10-86ae-419d-b49f-eba7ed8bb44a for block 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098466,"output":".Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:14:26.184 ["},{"event":"cmd_output","timestamp":1607098466,"output":"info] block_id: 7bf002d1-0d99-494e-9cca-67e3bffc6d56, type: Blocks, state: initializing, event: ini"},{"event":"cmd_output","timestamp":1607098466,"output":"tializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098466,"output":"[22m\n16:14:26.186 [info] Block 0 of pipeline with id: e9be1a10-86ae-419d-b49f-eba7ed8bb44a schedul"},{"event":"cmd_output","timestamp":1607098466,"output":"ed in block service with id: : \"7bf002d1-0d99-494e-9cca-67e3bffc6d56\"\n\u001b[0m\u001b[22m\n16:14:26.188 [info"},{"event":"cmd_output","timestamp":1607098466,"output":"] ppl_id: e9be1a10-86ae-419d-b49f-eba7ed8bb44a, type: PplBlocks, block_index: 0, state: running, ev"},{"event":"cmd_output","timestamp":1607098466,"output":"ent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b"},{"event":"cmd_output","timestamp":1607098466,"output":"[0m\u001b[22m\n16:14:26.191 [info] block_id: 7bf002d1-0d99-494e-9cca-67e3bffc6d56, type: BlockRequests, "},{"event":"cmd_output","timestamp":1607098466,"output":"event: persisted build and sub_ppl details for block_request: 7bf002d1-0d99-494e-9cca-67e3bffc6d56, "},{"event":"cmd_output","timestamp":1607098466,"output":"origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098466,"output":"4:26.192 [info] block_id: 7bf002d1-0d99-494e-9cca-67e3bffc6d56, type: Tasks, state: pending, event:"},{"event":"cmd_output","timestamp":1607098466,"output":" created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167"},{"event":"cmd_output","timestamp":1607098466,"output":"), \n\u001b[0m\u001b[22m\n16:14:26.194 [info] block_id: 7bf002d1-0d99-494e-9cca-67e3bffc6d56, type: Blocks, s"},{"event":"cmd_output","timestamp":1607098466,"output":"tate: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098466,"output":"hange/1(L90), \n\u001b[0m\u001b[22m\n16:14:26.203 [info] block_id: 7bf002d1-0d99-494e-9cca-67e3bffc6d56, type"},{"event":"cmd_output","timestamp":1607098466,"output":": Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.l"},{"event":"cmd_output","timestamp":1607098473,"output":"og_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:33.291 [info] block_id: 7bf002d1-0d99-494e-9cca-67e3bffc"},{"event":"cmd_output","timestamp":1607098473,"output":"6d56, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM"},{"event":"cmd_output","timestamp":1607098473,"output":".Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:33.301 [info] block_id: 7bf002d1-0d99-494e-9cca-6"},{"event":"cmd_output","timestamp":1607098473,"output":"7e3bffc6d56, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Lo"},{"event":"cmd_output","timestamp":1607098473,"output":"oper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:33.310 [info] ppl_id: e9be1a10-86ae-419d-"},{"event":"cmd_output","timestamp":1607098473,"output":"b49f-eba7ed8bb44a, block_id: 7bf002d1-0d99-494e-9cca-67e3bffc6d56, type: PplBlocks, block_index: 0, "},{"event":"cmd_output","timestamp":1607098473,"output":"state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Im"},{"event":"cmd_output","timestamp":1607098473,"output":"pl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:33.325 [info] ppl_id: e9be1a10-86ae-419d-b49f-eba7ed"},{"event":"cmd_output","timestamp":1607098473,"output":"8bb44a, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098473,"output":"Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test auto_cancel/queued terminates o"},{"event":"cmd_output","timestamp":1607098473,"output":"lder pipelines that are not running (14983.6ms)\u001b[0m\n * test auto_cancel/running terminates older p"},{"event":"cmd_output","timestamp":1607098473,"output":"ipelines that are either running or queing/pending\u001b[22m\n16:14:33.804 [info] Periodic from module E"},{"event":"cmd_output","timestamp":1607098473,"output":"lixir.Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.STMHandler.InitializingState :"},{"event":"cmd_output","timestamp":1607098473,"output":": period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, "},{"event":"cmd_output","timestamp":1607098473,"output":"recurring args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_"},{"event":"cmd_output","timestamp":1607098473,"output":"query: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher_cb: #Function<0.125326080/1 in"},{"event":"cmd_output","timestamp":1607098473,"output":" Ppl.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_requ"},{"event":"cmd_output","timestamp":1607098473,"output":"est, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supe"},{"event":"cmd_output","timestamp":1607098473,"output":"rvisor: :skip}\n\u001b[0m\u001b[22m\n16:14:33.805 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.Pend"},{"event":"cmd_output","timestamp":1607098473,"output":"ingState with name Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beh"},{"event":"cmd_output","timestamp":1607098473,"output":"older-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"pending\","},{"event":"cmd_output","timestamp":1607098473,"output":" \"queuing\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_st"},{"event":"cmd_output","timestamp":1607098473,"output":"ate: \"pending\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, rep"},{"event":"cmd_output","timestamp":1607098473,"output":"o: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count,"},{"event":"cmd_output","timestamp":1607098473,"output":" :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:14:33.80"},{"event":"cmd_output","timestamp":1607098473,"output":"5 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.QueuingState with name Elixir.Ppl.Ppls.STM"},{"event":"cmd_output","timestamp":1607098473,"output":"Handler.QueuingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-"},{"event":"cmd_output","timestamp":1607098473,"output":"QueuingState\"]}, recurring args: %{allowed_states: [\"queuing\", \"running\", \"done\"], cooling_time_sec:"},{"event":"cmd_output","timestamp":1607098473,"output":" -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", publisher_cb: #Function<0.125102"},{"event":"cmd_output","timestamp":1607098473,"output":"843/1 in Ppl.Ppls.STMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_r"},{"event":"cmd_output","timestamp":1607098473,"output":"equest, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_s"},{"event":"cmd_output","timestamp":1607098473,"output":"upervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:33.805 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.R"},{"event":"cmd_output","timestamp":1607098473,"output":"unningState with name Elixir.Ppl.Ppls.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl."},{"event":"cmd_output","timestamp":1607098473,"output":"beholder-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"runnin"},{"event":"cmd_output","timestamp":1607098473,"output":"g\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \""},{"event":"cmd_output","timestamp":1607098473,"output":"running\", publisher_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler.RunningState.args/0>, repo: Pp"},{"event":"cmd_output","timestamp":1607098473,"output":"l.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl"},{"event":"cmd_output","timestamp":1607098473,"output":"_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:14:33.806 [in"},{"event":"cmd_output","timestamp":1607098473,"output":"fo] Periodic from module Elixir.Ppl.Ppls.STMHandler.StoppingState with name Elixir.Ppl.Ppls.STMHand"},{"event":"cmd_output","timestamp":1607098473,"output":"ler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Sto"},{"event":"cmd_output","timestamp":1607098473,"output":"ppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial"},{"event":"cmd_output","timestamp":1607098473,"output":"_query: Ppl.Ppls.Model.Ppls, observed_state: \"stopping\", publisher_cb: #Function<0.71803493/1 in Ppl"},{"event":"cmd_output","timestamp":1607098473,"output":".Ppls.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :up"},{"event":"cmd_output","timestamp":1607098473,"output":"dated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: "},{"event":"cmd_output","timestamp":1607098473,"output":":skip}\n\u001b[0m\u001b[22m\n16:14:33.806 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.Creat"},{"event":"cmd_output","timestamp":1607098473,"output":"edState with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 100 ms, metric_name: {\"P"},{"event":"cmd_output","timestamp":1607098473,"output":"pl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args: %{allowed_states"},{"event":"cmd_output","timestamp":1607098473,"output":": [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, obser"},{"event":"cmd_output","timestamp":1607098473,"output":"ved_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, "},{"event":"cmd_output","timestamp":1607098473,"output":":updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, "},{"event":"cmd_output","timestamp":1607098473,"output":"task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:33.806 [info] Periodic from module Elixir.Ppl.PplSubInits"},{"event":"cmd_output","timestamp":1607098473,"output":".STMHandler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 m"},{"event":"cmd_output","timestamp":1607098473,"output":"s, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring ar"},{"event":"cmd_output","timestamp":1607098473,"output":"gs: %{allowed_states: [\"regular_init\", \"compilation\", \"done\"], cooling_time_sec: -2, initial_query: "},{"event":"cmd_output","timestamp":1607098473,"output":"Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRe"},{"event":"cmd_output","timestamp":1607098473,"output":"po, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], sc"},{"event":"cmd_output","timestamp":1607098473,"output":"hema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:33.806 [info] Pe"},{"event":"cmd_output","timestamp":1607098473,"output":"riodic from module Elixir.Ppl.PplSubInits.STMHandler.CompilationState with name Elixir.Ppl.PplSubIni"},{"event":"cmd_output","timestamp":1607098473,"output":"ts.STMHandler.CompilationState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSub"},{"event":"cmd_output","timestamp":1607098473,"output":"Inits-STMHandler-CompilationState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilatio"},{"event":"cmd_output","timestamp":1607098473,"output":"n\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, obs"},{"event":"cmd_output","timestamp":1607098473,"output":"erved_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_req"},{"event":"cmd_output","timestamp":1607098473,"output":"uest, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubI"},{"event":"cmd_output","timestamp":1607098473,"output":"nits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:33.807 [info] Periodic from module Elixir.Ppl.PplSu"},{"event":"cmd_output","timestamp":1607098473,"output":"bInits.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: p"},{"event":"cmd_output","timestamp":1607098473,"output":"eriod: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]"},{"event":"cmd_output","timestamp":1607098473,"output":"}, recurring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.M"},{"event":"cmd_output","timestamp":1607098473,"output":"odel.PplSubInits, observed_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning"},{"event":"cmd_output","timestamp":1607098473,"output":": [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098473,"output":"SubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:33.807 [info] Periodic from m"},{"event":"cmd_output","timestamp":1607098473,"output":"odule Elixir.Ppl.PplBlocks.STMHandler.InitializingState with name Elixir.Ppl.PplBlocks.STMHandler.In"},{"event":"cmd_output","timestamp":1607098473,"output":"itializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-"},{"event":"cmd_output","timestamp":1607098473,"output":"InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"waiting\", \"done\"], cooling"},{"event":"cmd_output","timestamp":1607098473,"output":"_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"initializing\", publishe"},{"event":"cmd_output","timestamp":1607098473,"output":"r_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, "},{"event":"cmd_output","timestamp":1607098473,"output":":recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :sk"},{"event":"cmd_output","timestamp":1607098473,"output":"ip}\n\u001b[0m\u001b[22m\n16:14:33.807 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.WaitingSta"},{"event":"cmd_output","timestamp":1607098473,"output":"te with name Elixir.Ppl.PplBlocks.STMHandler.WaitingState :: period: 1000 ms, metric_name: {\"Ppl.beh"},{"event":"cmd_output","timestamp":1607098473,"output":"older-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurring args: %{allowed_states: [\"wait"},{"event":"cmd_output","timestamp":1607098473,"output":"ing\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observe"},{"event":"cmd_output","timestamp":1607098473,"output":"d_state: \"waiting\", publisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.arg"},{"event":"cmd_output","timestamp":1607098473,"output":"s/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recove"},{"event":"cmd_output","timestamp":1607098473,"output":"ry_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b["},{"event":"cmd_output","timestamp":1607098473,"output":"0m\u001b[22m\n16:14:33.807 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.RunningState with"},{"event":"cmd_output","timestamp":1607098473,"output":" name Elixir.Ppl.PplBlocks.STMHandler.RunningState :: period: 1000 ms, metric_name: {\"Ppl.beholder-w"},{"event":"cmd_output","timestamp":1607098473,"output":"ake_up\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \""},{"event":"cmd_output","timestamp":1607098473,"output":"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_sta"},{"event":"cmd_output","timestamp":1607098473,"output":"te: \"running\", publisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0>"},{"event":"cmd_output","timestamp":1607098473,"output":", repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_c"},{"event":"cmd_output","timestamp":1607098473,"output":"ount, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :sk"},{"event":"cmd_output","timestamp":1607098473,"output":"ip}\n\u001b[0m\u001b[22m\n16:14:33.808 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.StoppingSt"},{"event":"cmd_output","timestamp":1607098473,"output":"ate with name Elixir.Ppl.PplBlocks.STMHandler.StoppingState :: period: 1000 ms, metric_name: {\"Ppl.b"},{"event":"cmd_output","timestamp":1607098473,"output":"eholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"s"},{"event":"cmd_output","timestamp":1607098473,"output":"topping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_stat"},{"event":"cmd_output","timestamp":1607098473,"output":"e: \"stopping\", publisher_cb: #Function<0.104215991/1 in Ppl.PplBlocks.STMHandler.StoppingState.args/"},{"event":"cmd_output","timestamp":1607098473,"output":"0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery"},{"event":"cmd_output","timestamp":1607098473,"output":"_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :"},{"event":"cmd_output","timestamp":1607098473,"output":"skip}\n\u001b[0m\u001b[22m\n16:14:33.808 [info] Periodic from module Elixir.Block.Blocks.STMHandler.Initializ"},{"event":"cmd_output","timestamp":1607098473,"output":"ingState with name Elixir.Block.Blocks.STMHandler.InitializingState :: period: 100 ms, metric_name: "},{"event":"cmd_output","timestamp":1607098473,"output":"{\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_s"},{"event":"cmd_output","timestamp":1607098473,"output":"tates: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Blocks.Model.Blocks, observed_"},{"event":"cmd_output","timestamp":1607098473,"output":"state: \"initializing\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_reques"},{"event":"cmd_output","timestamp":1607098473,"output":"t, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervi"},{"event":"cmd_output","timestamp":1607098473,"output":"sor: :skip}\n\u001b[0m\u001b[22m\n16:14:33.808 [info] Periodic from module Elixir.Block.Blocks.STMHandler.Run"},{"event":"cmd_output","timestamp":1607098473,"output":"ningState with name Elixir.Block.Blocks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Pp"},{"event":"cmd_output","timestamp":1607098473,"output":"l.beholder-wake_up\", [\"Block-Blocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\""},{"event":"cmd_output","timestamp":1607098473,"output":"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, obser"},{"event":"cmd_output","timestamp":1607098473,"output":"ved_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request"},{"event":"cmd_output","timestamp":1607098473,"output":", :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervis"},{"event":"cmd_output","timestamp":1607098473,"output":"or: :skip}\n\u001b[0m\u001b[22m\n16:14:33.808 [info] Periodic from module Elixir.Block.Blocks.STMHandler.Stop"},{"event":"cmd_output","timestamp":1607098473,"output":"pingState with name Elixir.Block.Blocks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"P"},{"event":"cmd_output","timestamp":1607098473,"output":"pl.beholder-wake_up\", [\"Block-Blocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: "},{"event":"cmd_output","timestamp":1607098473,"output":"[\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state"},{"event":"cmd_output","timestamp":1607098473,"output":": \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updat"},{"event":"cmd_output","timestamp":1607098473,"output":"ed_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :ski"},{"event":"cmd_output","timestamp":1607098473,"output":"p}\n\u001b[0m\u001b[22m\n16:14:33.808 [info] Periodic from module Elixir.Block.Tasks.STMHandler.PendingState "},{"event":"cmd_output","timestamp":1607098473,"output":"with name Elixir.Block.Tasks.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-"},{"event":"cmd_output","timestamp":1607098473,"output":"wake_up\", [\"Block-Tasks-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"running\", \"d"},{"event":"cmd_output","timestamp":1607098473,"output":"one\"], cooling_time_sec: 0, initial_query: Block.Tasks.Model.Tasks, observed_state: \"pending\", publi"},{"event":"cmd_output","timestamp":1607098473,"output":"sher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :rec"},{"event":"cmd_output","timestamp":1607098473,"output":"overy_count, :block_id, :build_request_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}"},{"event":"cmd_output","timestamp":1607098473,"output":"\n\u001b[0m\u001b[22m\n16:14:33.809 [info] Periodic from module Elixir.Block.Tasks.STMHandler.RunningState wi"},{"event":"cmd_output","timestamp":1607098473,"output":"th name Elixir.Block.Tasks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wa"},{"event":"cmd_output","timestamp":1607098473,"output":"ke_up\", [\"Block-Tasks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"sto"},{"event":"cmd_output","timestamp":1607098473,"output":"pping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"runn"},{"event":"cmd_output","timestamp":1607098473,"output":"ing\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :"},{"event":"cmd_output","timestamp":1607098473,"output":"state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098473,"output":"22m\n16:14:33.809 [info] Periodic from module Elixir.Block.Tasks.STMHandler.StoppingState with name"},{"event":"cmd_output","timestamp":1607098473,"output":" Elixir.Block.Tasks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\""},{"event":"cmd_output","timestamp":1607098473,"output":", [\"Block-Tasks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"],"},{"event":"cmd_output","timestamp":1607098473,"output":" cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"stopping\", publisher"},{"event":"cmd_output","timestamp":1607098473,"output":"_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recover"},{"event":"cmd_output","timestamp":1607098473,"output":"y_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:33.8"},{"event":"cmd_output","timestamp":1607098473,"output":"12 [info] Request: 'run: %{\"branch_id\" => \"96d68510-c96c-4c72-b722-cd7280381701\", \"branch_name\" => "},{"event":"cmd_output","timestamp":1607098473,"output":"\"master\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"ac_running.yml\", \"hook_id\" => \"cc029884-364b"},{"event":"cmd_output","timestamp":1607098473,"output":"-11eb-a1e9-5254005464e2\", \"label\" => \"master\", \"organization_id\" => \"640de9a9-8089-4ffe-86bb-1490aba"},{"event":"cmd_output","timestamp":1607098473,"output":"1eb6d\", \"owner\" => \"rt\", \"project_id\" => \"123\", \"repo_name\" => \"28_auto_cancel\", \"request_token\" => "},{"event":"cmd_output","timestamp":1607098473,"output":"\"cc028ec0-364b-11eb-80d7-5254005464e2\", \"requester_id\" => \"363d60d6-6757-46c9-95cb-e1aa34173ed5\", \"s"},{"event":"cmd_output","timestamp":1607098473,"output":"ervice\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"afd488"},{"event":"cmd_output","timestamp":1607098473,"output":"a9-1b79-47bb-885f-079be9b94102\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:14:33.814 [info] ppl"},{"event":"cmd_output","timestamp":1607098473,"output":"_id: 98332610-3b0e-4fb7-8e70-3c1f9a30ec44, type: PplRequests, event: persisted schedule request with"},{"event":"cmd_output","timestamp":1607098473,"output":" request_token: cc028ec0-364b-11eb-80d7-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplReques"},{"event":"cmd_output","timestamp":1607098473,"output":"tsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:14:33.816 [info] ppl_id: 98332610-3b0e-4fb7-8e70"},{"event":"cmd_output","timestamp":1607098473,"output":"-3c1f9a30ec44, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098473,"output":"ir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:14:33.819 [info] Project 12"},{"event":"cmd_output","timestamp":1607098473,"output":"3 and branch masterlatest_wf details updated: \"wf_id: afd488a9-1b79-47bb-885f-079be9b94102, wf_numbe"},{"event":"cmd_output","timestamp":1607098473,"output":"r: 1\"\n\u001b[0m\u001b[22m\n16:14:33.820 [info] Persisted ppl_sub_init for pipeline with ppl_id: 98332610-3b0"},{"event":"cmd_output","timestamp":1607098473,"output":"e-4fb7-8e70-3c1f9a30ec44: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded"},{"event":"cmd_output","timestamp":1607098473,"output":", \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 341, in_scheduling: false"},{"event":"cmd_output","timestamp":1607098473,"output":", init_type: \"regular\", inserted_at: ~N[2020-12-04 16:14:33.819683], pipeline_requests: #Ecto.Associ"},{"event":"cmd_output","timestamp":1607098473,"output":"ation.NotLoaded, ppl_id: \"98332610-3b0e-4fb7-8e70-3c1f"},{"event":"cmd_output","timestamp":1607098473,"output":"9a30ec44\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: "},{"event":"cmd_output","timestamp":1607098473,"output":"nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:14:33.819689]}\n\u001b[0m\u001b[22m\n16:14:33.8"},{"event":"cmd_output","timestamp":1607098473,"output":"29 [info] ppl_id: 98332610-3b0e-4fb7-8e70-3c1f9a30ec44, type: PplRequests, event: persisted source_"},{"event":"cmd_output","timestamp":1607098473,"output":"args for pipeline: 98332610-3b0e-4fb7-8e70-3c1f9a30ec44, origin: Elixir.Ppl.PplRequests.Model.PplReq"},{"event":"cmd_output","timestamp":1607098473,"output":"uestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:14:33.831 [info] ppl_id: 98332610-3b0e-4fb7-8e70"},{"event":"cmd_output","timestamp":1607098473,"output":"-3c1f9a30ec44, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098473,"output":": Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:33.851 [info] ppl_id: 98332610"},{"event":"cmd_output","timestamp":1607098473,"output":"-3b0e-4fb7-8e70-3c1f9a30ec44, type: PplSubInits, state: regular_init, event: exit_scheduling, recove"},{"event":"cmd_output","timestamp":1607098473,"output":"ry_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:33.872 [info"},{"event":"cmd_output","timestamp":1607098473,"output":"] ppl_id: 98332610-3b0e-4fb7-8e70-3c1f9a30ec44, type: PplRequests, event: persisted definition for "},{"event":"cmd_output","timestamp":1607098473,"output":"request with request_token: cc028ec0-364b-11eb-80d7-5254005464e2, origin: Elixir.Ppl.PplRequests.Mod"},{"event":"cmd_output","timestamp":1607098473,"output":"el.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:14:33.875 [info] Queue persisted: {"},{"event":"cmd_output","timestamp":1607098473,"output":":ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[20"},{"event":"cmd_output","timestamp":1607098473,"output":"20-12-04 16:14:33.874527], name: \"master-.semaphore/ac_running.yml\", organization_id: \"640de9a9-8089"},{"event":"cmd_output","timestamp":1607098473,"output":"-4ffe-86bb-1490aba1eb6d\", project_id: \"123\", queue_id: \"fca387dc-0388-4f2c-89f1-8da19266933f\", scope"},{"event":"cmd_output","timestamp":1607098473,"output":": \"project\", updated_at: ~N[2020-12-04 16:14:33.874536], user_generated: false}}\n\u001b[0m\u001b[22m\n16:14:3"},{"event":"cmd_output","timestamp":1607098473,"output":"3.879 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L"},{"event":"cmd_output","timestamp":1607098473,"output":"105), \n\u001b[0m\u001b[22m\n16:14:33.879 [info] ppl_id: 98332610-3b0e-4fb7-8e70-3c1f9a30ec44, type: PplBlock"},{"event":"cmd_output","timestamp":1607098473,"output":"s, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSub"},{"event":"cmd_output","timestamp":1607098473,"output":"Inits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:33.880 [info] ppl_id: 9833261"},{"event":"cmd_output","timestamp":1607098473,"output":"0-3b0e-4fb7-8e70-3c1f9a30ec44, type: PplSubInits, state: done, result: passed, event: exit_schedulin"},{"event":"cmd_output","timestamp":1607098473,"output":"g, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:33."},{"event":"cmd_output","timestamp":1607098473,"output":"887 [info] ppl_id: 98332610-3b0e-4fb7-8e70-3c1f9a30ec44, type: Ppls, state: pending, event: exit_sc"},{"event":"cmd_output","timestamp":1607098473,"output":"heduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098473,"output":":14:33.890 [info] ppl_id: 98332610-3b0e-4fb7-8e70-3c1f9a30ec44, type: PplBlocks, block_index: 0, st"},{"event":"cmd_output","timestamp":1607098473,"output":"ate: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_ch"},{"event":"cmd_output","timestamp":1607098473,"output":"ange/1(L90), \n\u001b[0m\u001b[22m\n16:14:33.895 [info] ppl_id: 98332610-3b0e-4fb7-8e70-3c1f9a30ec44, type: P"},{"event":"cmd_output","timestamp":1607098473,"output":"pls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_s"},{"event":"cmd_output","timestamp":1607098473,"output":"tate_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:33.903 [info] ppl_id: 98332610-3b0e-4fb7-8e70-3c1f9a30ec44, "},{"event":"cmd_output","timestamp":1607098473,"output":"type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Imp"},{"event":"cmd_output","timestamp":1607098473,"output":"l.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:33.912 [info] PplBlocks WaitingState STM is schedulin"},{"event":"cmd_output","timestamp":1607098473,"output":"g block 0 from pipeline: \"98332610-3b0e-4fb7-8e70-3c1f9a30ec44\"\n\u001b[0m\u001b[22m\n16:14:33.928 [info] blo"},{"event":"cmd_output","timestamp":1607098473,"output":"ck_id: 461d2936-e06c-42e3-ade2-158afffa259e, type: BlockRequests, event: persisted block run request"},{"event":"cmd_output","timestamp":1607098473,"output":" from ppl 98332610-3b0e-4fb7-8e70-3c1f9a30ec44 for block 0, origin: Elixir.Block.BlockRequests.Model"},{"event":"cmd_output","timestamp":1607098473,"output":".BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:14:33.931 [info] Request: 'run: %{\"b"},{"event":"cmd_output","timestamp":1607098473,"output":"ranch_id\" => \"62dc2384-52c1-4c4b-8919-478260705103\", \"branch_name\" => \"master\", \"commit_sha\" => \"758"},{"event":"cmd_output","timestamp":1607098473,"output":"91a4469\", \"file_name\" => \"ac_running.yml\", \"hook_id\" => \"cc149322-364b-11eb-aab1-5254005464e2\", \"lab"},{"event":"cmd_output","timestamp":1607098473,"output":"el\" => \"master\", \"organization_id\" => \"6a1857b7-c872-4439-ae7d-767609dd118f\", \"owner\" => \"rt\", \"proj"},{"event":"cmd_output","timestamp":1607098473,"output":"ect_id\" => \"123\", \"repo_name\" => \"28_auto_cancel\", \"request_token\" => \"cc148b3e-364b-11eb-9487-52540"},{"event":"cmd_output","timestamp":1607098473,"output":"05464e2\", \"requester_id\" => \"9432eff9-6855-4465-bd96-a4d72a048a9c\", \"service\" => \"local\", \"suppresse"},{"event":"cmd_output","timestamp":1607098473,"output":"d_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"d6f06350-8c98-4416-8609-c2e1c4165987"},{"event":"cmd_output","timestamp":1607098473,"output":"\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:14:33.932 [info] block_id: 461d2936-e06c-42e3-ade2"},{"event":"cmd_output","timestamp":1607098473,"output":"-158afffa259e, type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098473,"output":"ixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:14:33.933 [info] ppl_id: 59bf5"},{"event":"cmd_output","timestamp":1607098473,"output":"de5-dc5e-4b9e-a3ac-919e37756817, type: PplRequests, event: persisted schedule request with request_t"},{"event":"cmd_output","timestamp":1607098473,"output":"oken: cc148b3e-364b-11eb-9487-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries."},{"event":"cmd_output","timestamp":1607098473,"output":"process_response/2(L55), \n\u001b[0m\u001b[22m\n16:14:33.935 [info] ppl_id: 59bf5de5-dc5e-4b9e-a3ac-919e37756"},{"event":"cmd_output","timestamp":1607098473,"output":"817, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098473,"output":"s.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:14:33.936 [info] Project 123 and bran"},{"event":"cmd_output","timestamp":1607098473,"output":"ch masterlatest_wf details updated: \"wf_id: d6f06350-8c98-4416-8609-c2e1c4165987, wf_number: 2\"\n\u001b[0"},{"event":"cmd_output","timestamp":1607098473,"output":"m\u001b[22m\n16:14:33.936 [info] Block 0 of pipeline with id: 98332610-3b0e-4fb7-8e70-3c1f9a30ec44 sched"},{"event":"cmd_output","timestamp":1607098473,"output":"uled in block service with id: : \"461d2936-e06c-42e3-ade2-158afffa259e\"\n\u001b[0m\u001b[22m\n16:14:33.937 [in"},{"event":"cmd_output","timestamp":1607098473,"output":"fo] Persisted ppl_sub_init for pipeline with ppl_id: 59bf5de5-dc5e-4b9e-a3ac-919e37756817: %Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098473,"output":"SubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_t"},{"event":"cmd_output","timestamp":1607098473,"output":"ask_id: nil, error_description: nil, id: 342, in_scheduling: false, init_type: \"regular\", inserted_a"},{"event":"cmd_output","timestamp":1607098473,"output":"t: ~N[2020-12-04 16:14:33.936881], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"59bf5de5-dc5e-4b9e-a3ac-919e37756817\", recovery_count: 0, resu"},{"event":"cmd_output","timestamp":1607098473,"output":"lt: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, "},{"event":"cmd_output","timestamp":1607098473,"output":"updated_at: ~N[2020-12-04 16:14:33.936886]}\n\u001b[0m\u001b[22m\n16:14:33.940 [info] ppl_id: 98332610-3b0e-4"},{"event":"cmd_output","timestamp":1607098473,"output":"fb7-8e70-3c1f9a30ec44, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, reco"},{"event":"cmd_output","timestamp":1607098473,"output":"very_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:33.940 [in"},{"event":"cmd_output","timestamp":1607098473,"output":"fo] block_id: 461d2936-e06c-42e3-ade2-158afffa259e, type: BlockRequests, event: persisted build and"},{"event":"cmd_output","timestamp":1607098473,"output":" sub_ppl details for block_request: 461d2936-e06c-42e3-ade2-158afffa259e, origin: Elixir.Block.Block"},{"event":"cmd_output","timestamp":1607098473,"output":"Requests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:14:33.943 [info] block_id:"},{"event":"cmd_output","timestamp":1607098473,"output":" 461d2936-e06c-42e3-ade2-158afffa259e, type: Tasks, state: pending, event: created, recovery_count: "},{"event":"cmd_output","timestamp":1607098473,"output":"0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:14:33.9"},{"event":"cmd_output","timestamp":1607098473,"output":"44 [info] block_id: 461d2936-e06c-42e3-ade2-158afffa259e, type: Blocks, state: running, event: exit"},{"event":"cmd_output","timestamp":1607098473,"output":"_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098473,"output":"\n16:14:33.945 [info] Request: 'run: %{\"branch_id\" => \"08fb3942-61f6-4f30-8bed-8ff15d778b40\", \"branc"},{"event":"cmd_output","timestamp":1607098473,"output":"h_name\" => \"master\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"ac_running.yml\", \"hook_id\" => \"cc"},{"event":"cmd_output","timestamp":1607098473,"output":"16acf2-364b-11eb-a717-5254005464e2\", \"label\" => \"master\", \"organization_id\" => \"f48dd7df-0225-445f-8"},{"event":"cmd_output","timestamp":1607098473,"output":"24d-aa2167230b15\", \"owner\" => \"rt\", \"project_id\" => \"123\", \"repo_name\" => \"28_auto_cancel\", \"request"},{"event":"cmd_output","timestamp":1607098473,"output":"_token\" => \"cc1695a0-364b-11eb-a97b-5254005464e2\", \"requester_id\" => \"76b8927e-34e8-40e2-84ec-79513f"},{"event":"cmd_output","timestamp":1607098473,"output":"749779\", \"service\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\""},{"event":"cmd_output","timestamp":1607098473,"output":" => \"47ae59b2-25d0-40fa-9574-82426f62d429\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:14:33.948 "},{"event":"cmd_output","timestamp":1607098473,"output":"[info] ppl_id: 9d976b94-2b2b-4fb9-8f23-d1a31bfc7d1d, type: PplRequests, event: persisted schedule r"},{"event":"cmd_output","timestamp":1607098473,"output":"equest with request_token: cc1695a0-364b-11eb-a97b-5254005464e2, origin: Elixir.Ppl.PplRequests.Mode"},{"event":"cmd_output","timestamp":1607098473,"output":"l.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:14:33.949 [info] ppl_id: 59bf5de5-dc5"},{"event":"cmd_output","timestamp":1607098473,"output":"e-4b9e-a3ac-919e37756817, type: PplRequests, event: persisted source_args for pipeline: 59bf5de5-dc5"},{"event":"cmd_output","timestamp":1607098473,"output":"e-4b9e-a3ac-919e37756817, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L8"},{"event":"cmd_output","timestamp":1607098473,"output":"9), \n\u001b[0m\u001b[22m\n16:14:33.951 [info] ppl_id: 9d976b94-2b2b-4fb9-8f23-d1a31bfc7d1d, type: Ppls, stat"},{"event":"cmd_output","timestamp":1607098473,"output":"e: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.p"},{"event":"cmd_output","timestamp":1607098473,"output":"rocess_response/2(L124), \n\u001b[0m\u001b[22m\n16:14:33.953 [info] Project 123 and branch masterlatest_wf de"},{"event":"cmd_output","timestamp":1607098473,"output":"tails updated: \"wf_id: 47ae59b2-25d0-40fa-9574-82426f62d429, wf_number: 3\"\n\u001b[0m\u001b[22m\n16:14:33.954 "},{"event":"cmd_output","timestamp":1607098473,"output":"[info] Persisted ppl_sub_init for pipeline with ppl_id: 9d976b94-2b2b-4fb9-8f23-d1a31bfc7d1d: %Ppl."},{"event":"cmd_output","timestamp":1607098473,"output":"PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compil"},{"event":"cmd_output","timestamp":1607098473,"output":"e_task_id: nil, error_description: nil, id: 343, in_scheduling: false, init_type: \"regular\", inserte"},{"event":"cmd_output","timestamp":1607098473,"output":"d_at: ~N[2020-12-04 16:14:33.953682], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"9d976b94-2b2b-4fb9-8f23-d1a31bfc7d1d\", recovery_count: 0, r"},{"event":"cmd_output","timestamp":1607098473,"output":"esult: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: ni"},{"event":"cmd_output","timestamp":1607098473,"output":"l, updated_at: ~N[2020-12-04 16:14:33.953689]}\n\u001b[0m\u001b[22m\n16:14:33.960 [info] ppl_id: 59bf5de5-dc5"},{"event":"cmd_output","timestamp":1607098473,"output":"e-4b9e-a3ac-919e37756817, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count"},{"event":"cmd_output","timestamp":1607098473,"output":": 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:33.962 [info] block"},{"event":"cmd_output","timestamp":1607098473,"output":"_id: 461d2936-e06c-42e3-ade2-158afffa259e, type: Tasks, state: running, event: exit_scheduling, reco"},{"event":"cmd_output","timestamp":1607098473,"output":"very_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:33.964 [in"},{"event":"cmd_output","timestamp":1607098473,"output":"fo] Request: 'run: %{\"branch_id\" => \"102d154a-a315-402a-b1e9-0f9390ebba9f\", \"branch_name\" => \"maste"},{"event":"cmd_output","timestamp":1607098473,"output":"r\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"ac_running.yml\", \"hook_id\" => \"cc196096-364b-11eb-"},{"event":"cmd_output","timestamp":1607098473,"output":"b229-5254005464e2\", \"label\" => \"master\", \"organization_id\" => \"edb63237-f6f8-43a2-aebd-854a582ca192\""},{"event":"cmd_output","timestamp":1607098473,"output":", \"owner\" => \"rt\", \"project_id\" => \"123\", \"repo_name\" => \"28_auto_cancel\", \"request_token\" => \"cc195"},{"event":"cmd_output","timestamp":1607098473,"output":"074-364b-11eb-8457-5254005464e2\", \"requester_id\" => \"dd048f31-7d9b-4620-bbb4-6251ad5be382\", \"service"},{"event":"cmd_output","timestamp":1607098473,"output":"\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"a0dd9745-232"},{"event":"cmd_output","timestamp":1607098473,"output":"9-4593-a10c-4f1f811f4879\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:14:33.967 [info] ppl_id: 9"},{"event":"cmd_output","timestamp":1607098473,"output":"d976b94-2b2b-4fb9-8f23-d1a31bfc7d1d, type: PplRequests, event: persisted source_args for pipeline: 9"},{"event":"cmd_output","timestamp":1607098473,"output":"d976b94-2b2b-4fb9-8f23-d1a31bfc7d1d, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_"},{"event":"cmd_output","timestamp":1607098473,"output":"source/2(L89), \n\u001b[0m\u001b[22m\n16:14:33.968 [info] ppl_id: 826b9527-cc6d-439e-83fd-48fef8a8aacf, type:"},{"event":"cmd_output","timestamp":1607098473,"output":" PplRequests, event: persisted schedule request with request_token: cc195074-364b-11eb-8457-52540054"},{"event":"cmd_output","timestamp":1607098473,"output":"64e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098473,"output":"16:14:33.969 [info] ppl_id: 826b9527-cc6d-439e-83fd-48fef8a8aacf, type: Ppls, state: initializing, "},{"event":"cmd_output","timestamp":1607098473,"output":"event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2"},{"event":"cmd_output","timestamp":1607098473,"output":"(L124), \n\u001b[0m\u001b[22m\n16:14:33.971 [info] ppl_id: 9d976b94-2b2b-4fb9-8f23-d1a31bfc7d1d, type: PplSub"},{"event":"cmd_output","timestamp":1607098473,"output":"Inits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.lo"},{"event":"cmd_output","timestamp":1607098473,"output":"g_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:33.972 [info] Project 123 and branch masterlatest_wf deta"},{"event":"cmd_output","timestamp":1607098473,"output":"ils updated: \"wf_id: a0dd9745-2329-4593-a10c-4f1f811f4879, wf_number: 4\"\n\u001b[0m\u001b[22m\n16:14:33.973 [i"},{"event":"cmd_output","timestamp":1607098473,"output":"nfo] Persisted ppl_sub_init for pipeline with ppl_id: 826b9527-cc6d-439e-83fd-48fef8a8aacf: %Ppl.Pp"},{"event":"cmd_output","timestamp":1607098473,"output":"lSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_"},{"event":"cmd_output","timestamp":1607098473,"output":"task_id: nil, error_description: nil, id: 344, in_scheduling: false, init_type: \"regular\", inserted_"},{"event":"cmd_output","timestamp":1607098473,"output":"at: ~N[2020-12-04 16:14:33.972403], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"826b9527-cc6d-439e-83fd-48fef8a8aacf\", recovery_count: 0, res"},{"event":"cmd_output","timestamp":1607098473,"output":"ult: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil,"},{"event":"cmd_output","timestamp":1607098473,"output":" updated_at: ~N[2020-12-04 16:14:33.972409]}\n\u001b[0m\u001b[22m\n16:14:33.979 [info] Request: 'run: %{\"bran"},{"event":"cmd_output","timestamp":1607098473,"output":"ch_id\" => \"2f8a9f43-ab2d-49ac-b9a2-dece11f0cdef\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a"},{"event":"cmd_output","timestamp":1607098473,"output":"4469\", \"file_name\" => \"ac_running.yml\", \"hook_id\" => \"cc1bfaf4-364b-11eb-b234-5254005464e2\", \"label\""},{"event":"cmd_output","timestamp":1607098473,"output":" => \"master\", \"organization_id\" => \"3198930b-e914-4851-8153-2fa745ef36ba\", \"owner\" => \"rt\", \"project"},{"event":"cmd_output","timestamp":1607098473,"output":"_id\" => \"123\", \"repo_name\" => \"28_auto_cancel\", \"request_token\" => \"cc1bf1e4-364b-11eb-88b7-52540054"},{"event":"cmd_output","timestamp":1607098473,"output":"64e2\", \"requester_id\" => \"a5461abd-ff15-4ebb-bc29-c736acee6360\", \"service\" => \"local\", \"suppressed_a"},{"event":"cmd_output","timestamp":1607098473,"output":"ttributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"46b74ec3-fac7-4786-81bf-cf1c13648142\", "},{"event":"cmd_output","timestamp":1607098473,"output":"\"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:14:33.982 [info] ppl_id: 3883b700-dfdc-496d-9857-a45a"},{"event":"cmd_output","timestamp":1607098473,"output":"29894866, type: PplRequests, event: persisted schedule request with request_token: cc1bf1e4-364b-11e"},{"event":"cmd_output","timestamp":1607098473,"output":"b-88b7-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55)"},{"event":"cmd_output","timestamp":1607098473,"output":", \n\u001b[0m\u001b[22m\n16:14:33.984 [info] ppl_id: 59bf5de5-dc5e-4b9e-a3ac-919e37756817, type: PplSubInits,"},{"event":"cmd_output","timestamp":1607098473,"output":" state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_"},{"event":"cmd_output","timestamp":1607098473,"output":"state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:33.984 [info] ppl_id: 826b9527-cc6d-439e-83fd-48fef8a8aacf,"},{"event":"cmd_output","timestamp":1607098473,"output":" type: PplRequests, event: persisted source_args for pipeline: 826b9527-cc6d-439e-83fd-48fef8a8aacf,"},{"event":"cmd_output","timestamp":1607098473,"output":" origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:14:33"},{"event":"cmd_output","timestamp":1607098473,"output":".986 [info] ppl_id: 3883b700-dfdc-496d-9857-a45a29894866, type: Ppls, state: initializing, event: i"},{"event":"cmd_output","timestamp":1607098473,"output":"nitializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), "},{"event":"cmd_output","timestamp":1607098473,"output":"\n\u001b[0m\u001b[22m\n16:14:33.988 [info] ppl_id: 826b9527-cc6d-439e-83fd-48fef8a8aacf, type: PplSubInits, s"},{"event":"cmd_output","timestamp":1607098473,"output":"tate: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_"},{"event":"cmd_output","timestamp":1607098473,"output":"change/1(L90), \n\u001b[0m\u001b[22m\n16:14:33.989 [info] Project 123 and branch masterlatest_wf details upda"},{"event":"cmd_output","timestamp":1607098473,"output":"ted: \"wf_id: 46b74ec3-fac7-4786-81bf-cf1c13648142, wf_number: 5\"\n\u001b[0m\u001b[22m\n16:14:33.990 [info] Pe"},{"event":"cmd_output","timestamp":1607098473,"output":"rsisted ppl_sub_init for pipeline with ppl_id: 3883b700-dfdc-496d-9857-a45a29894866: %Ppl.PplSubInit"},{"event":"cmd_output","timestamp":1607098473,"output":"s.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id:"},{"event":"cmd_output","timestamp":1607098473,"output":" nil, error_description: nil, id: 345, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2"},{"event":"cmd_output","timestamp":1607098473,"output":"020-12-04 16:14:33.989709], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"3883b700-dfdc-496d-9857-a45a29894866\", recovery_count: 0, result: nil"},{"event":"cmd_output","timestamp":1607098473,"output":", result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated"},{"event":"cmd_output","timestamp":1607098473,"output":"_at: ~N[2020-12-04 16:14:33.989738]}\n\u001b[0m\u001b[22m\n16:14:33.999 [info] Request: 'run: %{\"branch_id\" ="},{"event":"cmd_output","timestamp":1607098473,"output":"> \"bf2ad8be-9a1a-4829-8334-be0940e1e29c\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469\", \""},{"event":"cmd_output","timestamp":1607098473,"output":"file_name\" => \"ac_running.yml\", \"hook_id\" => \"cc1e9d4a-364b-11eb-bf0b-5254005464e2\", \"label\" => \"mas"},{"event":"cmd_output","timestamp":1607098473,"output":"ter\", \"organization_id\" => \"45c5856c-41a5-4674-b64f-bfc221025205\", \"owner\" => \"rt\", \"project_id\" => "},{"event":"cmd_output","timestamp":1607098473,"output":"\"123\", \"repo_name\" => \"28_auto_cancel\", \"request_token\" => \"cc1e95a2-364b-11eb-8244-5254005464e2\", \""},{"event":"cmd_output","timestamp":1607098474,"output":"requester_id\" => \"c0fe87c0-cf8b-46d0-8bd2-af052d733c18\", \"service\" => \"local\", \"suppressed_attribute"},{"event":"cmd_output","timestamp":1607098474,"output":"s\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"3759df25-8c4f-43c5-8360-f949ab77d28e\", \"working"},{"event":"cmd_output","timestamp":1607098474,"output":"_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:14:34.000 [info] ppl_id: c57ca3f5-e582-4168-8f92-3300164ce961"},{"event":"cmd_output","timestamp":1607098474,"output":", type: PplRequests, event: persisted schedule request with request_token: cc1e95a2-364b-11eb-8244-5"},{"event":"cmd_output","timestamp":1607098474,"output":"254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098474,"output":"\u001b[22m\n16:14:34.002 [info] ppl_id: c57ca3f5-e582-4168-8f92-3300164ce961, type: Ppls, state: initial"},{"event":"cmd_output","timestamp":1607098474,"output":"izing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_res"},{"event":"cmd_output","timestamp":1607098474,"output":"ponse/2(L124), \n\u001b[0m\u001b[22m\n16:14:34.005 [info] Project 123 and branch masterlatest_wf details upda"},{"event":"cmd_output","timestamp":1607098474,"output":"ted: \"wf_id: 3759df25-8c4f-43c5-8360-f949ab77d28e, wf_number: 6\"\n\u001b[0m\u001b[22m\n16:14:34.005 [info] Pe"},{"event":"cmd_output","timestamp":1607098474,"output":"rsisted ppl_sub_init for pipeline with ppl_id: c57ca3f5-e582-4168-8f92-3300164ce961: %Ppl.PplSubInit"},{"event":"cmd_output","timestamp":1607098474,"output":"s.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id:"},{"event":"cmd_output","timestamp":1607098474,"output":" nil, error_description: nil, id: 346, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2"},{"event":"cmd_output","timestamp":1607098474,"output":"020-12-04 16:14:34.005307], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"c57ca3f5-e582-4168-8f92-3300164ce961\", recovery_count: 0, result: nil"},{"event":"cmd_output","timestamp":1607098474,"output":", result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated"},{"event":"cmd_output","timestamp":1607098474,"output":"_at: ~N[2020-12-04 16:14:34.005320]}\n\u001b[0m\u001b[22m\n16:14:34.011 [info] ppl_id: 3883b700-dfdc-496d-985"},{"event":"cmd_output","timestamp":1607098474,"output":"7-a45a29894866, type: PplRequests, event: persisted source_args for pipeline: 3883b700-dfdc-496d-985"},{"event":"cmd_output","timestamp":1607098474,"output":"7-a45a29894866, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098474,"output":"\u001b[22m\n16:14:34.011 [info] ppl_id: 9d976b94-2b2b-4fb9-8f23-d1a31bfc7d1d, type: PplSubInits, state: "},{"event":"cmd_output","timestamp":1607098474,"output":"regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_ch"},{"event":"cmd_output","timestamp":1607098474,"output":"ange/1(L90), \n\u001b[0m\u001b[22m\n16:14:34.014 [info] ppl_id: 3883b700-dfdc-496d-9857-a45a29894866, type: P"},{"event":"cmd_output","timestamp":1607098474,"output":"plSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Im"},{"event":"cmd_output","timestamp":1607098474,"output":"pl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:34.031 [info] ppl_id: 59bf5de5-dc5e-4b9e-a3ac-919e37"},{"event":"cmd_output","timestamp":1607098474,"output":"756817, type: PplRequests, event: persisted definition for request with request_token: cc148b3e-364b"},{"event":"cmd_output","timestamp":1607098474,"output":"-11eb-9487-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3"},{"event":"cmd_output","timestamp":1607098474,"output":"(L76), \n\u001b[0m\u001b[22m\n16:14:34.034 [info] ppl_id: c57ca3f5-e582-4168-8f92-3300164ce961, type: PplRequ"},{"event":"cmd_output","timestamp":1607098474,"output":"ests, event: persisted source_args for pipeline: c57ca3f5-e582-4168-8f92-3300164ce961, origin: Elixi"},{"event":"cmd_output","timestamp":1607098474,"output":"r.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:14:34.040 [info] p"},{"event":"cmd_output","timestamp":1607098474,"output":"pl_id: c57ca3f5-e582-4168-8f92-3300164ce961, type: PplSubInits, state: fetching, event: exit_schedul"},{"event":"cmd_output","timestamp":1607098474,"output":"ing, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:3"},{"event":"cmd_output","timestamp":1607098474,"output":"4.045 [info] ppl_id: 826b9527-cc6d-439e-83fd-48fef8a8aacf, type: PplSubInits, state: regular_init, "},{"event":"cmd_output","timestamp":1607098474,"output":"event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \r"},{"event":"cmd_output","timestamp":1607098474,"output":"\n\u001b[0m\u001b[22m\n16:14:34.045 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularIn"},{"event":"cmd_output","timestamp":1607098474,"output":"itState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:34.045 [info] ppl_id: 59bf5de5-dc5e-4b9e-a3ac-919e37756"},{"event":"cmd_output","timestamp":1607098474,"output":"817, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098474,"output":": Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:34.047 [inf"},{"event":"cmd_output","timestamp":1607098474,"output":"o] ppl_id: 59bf5de5-dc5e-4b9e-a3ac-919e37756817, type: PplSubInits, state: done, result: passed, ev"},{"event":"cmd_output","timestamp":1607098474,"output":"ent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b"},{"event":"cmd_output","timestamp":1607098474,"output":"[0m\u001b[22m\n16:14:34.059 [info] ppl_id: 59bf5de5-dc5e-4b9e-a3ac-919e37756817, type: PplBlocks, block_"},{"event":"cmd_output","timestamp":1607098474,"output":"index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl."},{"event":"cmd_output","timestamp":1607098474,"output":"log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:34.060 [info] ppl_id: 59bf5de5-dc5e-4b9e-a3ac-919e37756"},{"event":"cmd_output","timestamp":1607098474,"output":"817, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.ST"},{"event":"cmd_output","timestamp":1607098474,"output":"M.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:34.070 [info] ppl_id: 3883b700-dfdc-496d-9857-a4"},{"event":"cmd_output","timestamp":1607098474,"output":"5a29894866, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098474,"output":"n: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:34.074 [info] ppl_id: 59bf5de"},{"event":"cmd_output","timestamp":1607098474,"output":"5-dc5e-4b9e-a3ac-919e37756817, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0"},{"event":"cmd_output","timestamp":1607098474,"output":", origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:34.079 [info] ppl_id: "},{"event":"cmd_output","timestamp":1607098474,"output":"9d976b94-2b2b-4fb9-8f23-d1a31bfc7d1d, type: PplRequests, event: persisted definition for request wit"},{"event":"cmd_output","timestamp":1607098474,"output":"h request_token: cc1695a0-364b-11eb-a97b-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplReque"},{"event":"cmd_output","timestamp":1607098474,"output":"stsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:14:34.083 [info] ppl_id: 98332610-3b0e-4fb7-8e"},{"event":"cmd_output","timestamp":1607098474,"output":"70-3c1f9a30ec44, type: Ppls, state: stopping, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098474,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:34.087 [info] event: created, origi"},{"event":"cmd_output","timestamp":1607098474,"output":"n: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:34.087 [in"},{"event":"cmd_output","timestamp":1607098474,"output":"fo] ppl_id: 9d976b94-2b2b-4fb9-8f23-d1a31bfc7d1d, type: PplBlocks, block_index: 0, state: initializ"},{"event":"cmd_output","timestamp":1607098474,"output":"ing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.a"},{"event":"cmd_output","timestamp":1607098474,"output":"ll_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:34.088 [info] ppl_id: 9d976b94-2b2b-4fb9-8f23-d1a31bfc7d1d, type"},{"event":"cmd_output","timestamp":1607098474,"output":": PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098474,"output":"r.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:34.098 [info] ppl_id: 9d976b94-2b2b-4"},{"event":"cmd_output","timestamp":1607098474,"output":"fb9-8f23-d1a31bfc7d1d, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098474,"output":": Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:34.103 [info] ppl_id: c57ca3f5"},{"event":"cmd_output","timestamp":1607098474,"output":"-e582-4168-8f92-3300164ce961, type: PplSubInits, state: regular_init, event: exit_scheduling, recove"},{"event":"cmd_output","timestamp":1607098474,"output":"ry_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:34.108 [info"},{"event":"cmd_output","timestamp":1607098474,"output":"] ppl_id: 98332610-3b0e-4fb7-8e70-3c1f9a30ec44, block_id: 461d2936-e06c-42e3-ade2-158afffa259e, typ"},{"event":"cmd_output","timestamp":1607098474,"output":"e: PplBlocks, block_index: 0, state: stopping, event: exit_scheduling, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098474,"output":"ixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:34.108 [info] ppl_id: 9d976b94-2b2"},{"event":"cmd_output","timestamp":1607098474,"output":"b-4fb9-8f23-d1a31bfc7d1d, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, r"},{"event":"cmd_output","timestamp":1607098474,"output":"ecovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:34.118 "},{"event":"cmd_output","timestamp":1607098474,"output":"[info] block_id: 461d2936-e06c-42e3-ade2-158afffa259e, type: Blocks, state: stopping, event: exit_s"},{"event":"cmd_output","timestamp":1607098474,"output":"cheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098474,"output":"6:14:34.119 [info] ppl_id: 9d976b94-2b2b-4fb9-8f23-d1a31bfc7d1d, type: Ppls, state: queuing, event:"},{"event":"cmd_output","timestamp":1607098474,"output":" exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098474,"output":"[22m\n16:14:34.125 [info] ppl_id: 826b9527-cc6d-439e-83fd-48fef8a8aacf, type: PplRequests, event: p"},{"event":"cmd_output","timestamp":1607098474,"output":"ersisted definition for request with request_token: cc195074-364b-11eb-8457-5254005464e2, origin: El"},{"event":"cmd_output","timestamp":1607098474,"output":"ixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:14:34.133 [i"},{"event":"cmd_output","timestamp":1607098474,"output":"nfo] ppl_id: 59bf5de5-dc5e-4b9e-a3ac-919e37756817, type: Ppls, state: done, result: canceled, event"},{"event":"cmd_output","timestamp":1607098474,"output":": exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098474,"output":"\u001b[22m\n16:14:34.138 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitSta"},{"event":"cmd_output","timestamp":1607098474,"output":"te.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:34.138 [info] ppl_id: 826b9527-cc6d-439e-83fd-48fef8a8aacf, "},{"event":"cmd_output","timestamp":1607098474,"output":"type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098474,"output":"xir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:34.139 [info] b"},{"event":"cmd_output","timestamp":1607098474,"output":"lock_id: 461d2936-e06c-42e3-ade2-158afffa259e, type: Tasks, state: stopping, event: exit_scheduling,"},{"event":"cmd_output","timestamp":1607098474,"output":" recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:34.14"},{"event":"cmd_output","timestamp":1607098474,"output":"1 [info] ppl_id: 826b9527-cc6d-439e-83fd-48fef8a8aacf, type: PplSubInits, state: done, result: pass"},{"event":"cmd_output","timestamp":1607098474,"output":"ed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90"},{"event":"cmd_output","timestamp":1607098474,"output":"), \n\u001b[0m\u001b[22m\n16:14:34.146 [info] ppl_id: 59bf5de5-dc5e-4b9e-a3ac-919e37756817, type: PplBlocks, "},{"event":"cmd_output","timestamp":1607098474,"output":"block_index: 0, state: done, result: canceled, event: exit_scheduling, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098474,"output":"ixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:34.152 [info] ppl_id: 826b9527-cc6"},{"event":"cmd_output","timestamp":1607098474,"output":"d-439e-83fd-48fef8a8aacf, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098474,"output":"gin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:34.152 [info] ppl_id: 826b9"},{"event":"cmd_output","timestamp":1607098474,"output":"527-cc6d-439e-83fd-48fef8a8aacf, type: PplBlocks, block_index: 0, state: waiting, event: exit_schedu"},{"event":"cmd_output","timestamp":1607098474,"output":"ling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:"},{"event":"cmd_output","timestamp":1607098474,"output":"34.161 [info] ppl_id: 826b9527-cc6d-439e-83fd-48fef8a8aacf, type: Ppls, state: queuing, event: exit"},{"event":"cmd_output","timestamp":1607098474,"output":"_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098474,"output":"\n16:14:34.168 [info] ppl_id: 9d976b94-2b2b-4fb9-8f23-d1a31bfc7d1d, type: Ppls, state: done, result:"},{"event":"cmd_output","timestamp":1607098474,"output":" canceled, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chang"},{"event":"cmd_output","timestamp":1607098474,"output":"e/1(L90), \n\u001b[0m\u001b[22m\n16:14:34.174 [info] ppl_id: 3883b700-dfdc-496d-9857-a45a29894866, type: PplR"},{"event":"cmd_output","timestamp":1607098474,"output":"equests, event: persisted definition for request with request_token: cc1bf1e4-364b-11eb-88b7-5254005"},{"event":"cmd_output","timestamp":1607098474,"output":"464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098474,"output":"\n16:14:34.177 [info] ppl_id: 9d976b94-2b2b-4fb9-8f23-d1a31bfc7d1d, type: PplBlocks, block_index: 0"},{"event":"cmd_output","timestamp":1607098474,"output":", state: done, result: canceled, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.ST"},{"event":"cmd_output","timestamp":1607098474,"output":"M.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:34.181 [info] event: created, origin: Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098474,"output":".PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:34.181 [info] ppl_id: "},{"event":"cmd_output","timestamp":1607098474,"output":"3883b700-dfdc-496d-9857-a45a29894866, type: PplBlocks, block_index: 0, state: initializing, event: c"},{"event":"cmd_output","timestamp":1607098474,"output":"reated, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105"},{"event":"cmd_output","timestamp":1607098474,"output":"), \n\u001b[0m\u001b[22m\n16:14:34.186 [info] ppl_id: 3883b700-dfdc-496d-9857-a45a29894866, type: PplSubInits"},{"event":"cmd_output","timestamp":1607098474,"output":", state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM."},{"event":"cmd_output","timestamp":1607098474,"output":"Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:34.200 [info] ppl_id: 3883b700-dfdc-496d-9857-a45a"},{"event":"cmd_output","timestamp":1607098474,"output":"29894866, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loop"},{"event":"cmd_output","timestamp":1607098474,"output":"er.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:34.201 [info] ppl_id: 3883b700-dfdc-496d-98"},{"event":"cmd_output","timestamp":1607098474,"output":"57-a45a29894866, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098474,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:34.209 [info] p"},{"event":"cmd_output","timestamp":1607098474,"output":"pl_id: 3883b700-dfdc-496d-9857-a45a29894866, type: Ppls, state: queuing, event: exit_scheduling, rec"},{"event":"cmd_output","timestamp":1607098474,"output":"overy_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:34.211 [i"},{"event":"cmd_output","timestamp":1607098474,"output":"nfo] ppl_id: c57ca3f5-e582-4168-8f92-3300164ce961, type: PplRequests, event: persisted definition f"},{"event":"cmd_output","timestamp":1607098474,"output":"or request with request_token: cc1e95a2-364b-11eb-8244-5254005464e2, origin: Elixir.Ppl.PplRequests."},{"event":"cmd_output","timestamp":1607098474,"output":"Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:14:34.216 [info] event: created,"},{"event":"cmd_output","timestamp":1607098474,"output":" origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:34.2"},{"event":"cmd_output","timestamp":1607098474,"output":"16 [info] ppl_id: c57ca3f5-e582-4168-8f92-3300164ce961, type: PplBlocks, block_index: 0, state: ini"},{"event":"cmd_output","timestamp":1607098474,"output":"tializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitS"},{"event":"cmd_output","timestamp":1607098474,"output":"tate.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:34.217 [info] ppl_id: c57ca3f5-e582-4168-8f92-3300164ce961"},{"event":"cmd_output","timestamp":1607098474,"output":", type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098474,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:34.218 [info] ppl_id: 826b9527-"},{"event":"cmd_output","timestamp":1607098474,"output":"cc6d-439e-83fd-48fef8a8aacf, type: Ppls, state: done, result: canceled, event: exit_scheduling, reco"},{"event":"cmd_output","timestamp":1607098474,"output":"very_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:34.226 [in"},{"event":"cmd_output","timestamp":1607098474,"output":"fo] ppl_id: c57ca3f5-e582-4168-8f92-3300164ce961, type: PplBlocks, block_index: 0, state: waiting, "},{"event":"cmd_output","timestamp":1607098474,"output":"event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \r"},{"event":"cmd_output","timestamp":1607098474,"output":"\n\u001b[0m\u001b[22m\n16:14:34.231 [info] ppl_id: 826b9527-cc6d-439e-83fd-48fef8a8aacf, type: PplBlocks, bloc"},{"event":"cmd_output","timestamp":1607098474,"output":"k_index: 0, state: done, result: canceled, event: exit_scheduling, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098474,"output":".Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:34.233 [info] ppl_id: c57ca3f5-e582-41"},{"event":"cmd_output","timestamp":1607098474,"output":"68-8f92-3300164ce961, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098474,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:34.244 [info] ppl_id: c57ca3f5-"},{"event":"cmd_output","timestamp":1607098474,"output":"e582-4168-8f92-3300164ce961, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098474,"output":"origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:34.253 [info] ppl_id: 38"},{"event":"cmd_output","timestamp":1607098474,"output":"83b700-dfdc-496d-9857-a45a29894866, type: Ppls, state: done, result: canceled, event: exit_schedulin"},{"event":"cmd_output","timestamp":1607098474,"output":"g, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:34."},{"event":"cmd_output","timestamp":1607098474,"output":"261 [info] ppl_id: 3883b700-dfdc-496d-9857-a45a29894866, type: PplBlocks, block_index: 0, state: do"},{"event":"cmd_output","timestamp":1607098474,"output":"ne, result: canceled, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_"},{"event":"cmd_output","timestamp":1607098481,"output":"state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:41.009 [info] block_id: 461d2936-e06c-42e3-ade2-158afffa259"},{"event":"cmd_output","timestamp":1607098481,"output":"e, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Im"},{"event":"cmd_output","timestamp":1607098481,"output":"pl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:41.014 [info] block_id: 461d2936-e06c-42e3-ade2-158a"},{"event":"cmd_output","timestamp":1607098481,"output":"fffa259e, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loope"},{"event":"cmd_output","timestamp":1607098481,"output":"r.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:41.019 [info] ppl_id: 98332610-3b0e-4fb7-8e7"},{"event":"cmd_output","timestamp":1607098481,"output":"0-3c1f9a30ec44, block_id: 461d2936-e06c-42e3-ade2-158afffa259e, type: PplBlocks, block_index: 0, sta"},{"event":"cmd_output","timestamp":1607098481,"output":"te: done, result: stopped, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl"},{"event":"cmd_output","timestamp":1607098481,"output":".log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:41.031 [info] ppl_id: 98332610-3b0e-4fb7-8e70-3c1f9a30"},{"event":"cmd_output","timestamp":1607098481,"output":"ec44, type: Ppls, state: done, result: stopped, event: exit_scheduling, recovery_count: 0, origin: E"},{"event":"cmd_output","timestamp":1607098481,"output":"lixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:41.066 [info] ppl_id: c57ca3f5-e5"},{"event":"cmd_output","timestamp":1607098481,"output":"82-4168-8f92-3300164ce961, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098481,"output":"igin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:41.071 [info] PplBlocks Wa"},{"event":"cmd_output","timestamp":1607098481,"output":"itingState STM is scheduling block 0 from pipeline: \"c57ca3f5-e582-4168-8f92-3300164ce961\"\n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098481,"output":"m\n16:14:41.074 [info] block_id: 8317bff3-2580-4dd8-8c6e-4a167f81dbf8, type: BlockRequests, event: "},{"event":"cmd_output","timestamp":1607098481,"output":"persisted block run request from ppl c57ca3f5-e582-4168-8f92-3300164ce961 for block 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098481,"output":"r.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:14:41.076 "},{"event":"cmd_output","timestamp":1607098481,"output":"[info] block_id: 8317bff3-2580-4dd8-8c6e-4a167f81dbf8, type: Blocks, state: initializing, event: in"},{"event":"cmd_output","timestamp":1607098481,"output":"itializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098481,"output":"\u001b[22m\n16:14:41.077 [info] Block 0 of pipeline with id: c57ca3f5-e582-4168-8f92-3300164ce961 schedu"},{"event":"cmd_output","timestamp":1607098481,"output":"led in block service with id: : \"8317bff3-2580-4dd8-8c6e-4a167f81dbf8\"\n\u001b[0m\u001b[22m\n16:14:41.080 [inf"},{"event":"cmd_output","timestamp":1607098481,"output":"o] ppl_id: c57ca3f5-e582-4168-8f92-3300164ce961, type: PplBlocks, block_index: 0, state: running, e"},{"event":"cmd_output","timestamp":1607098481,"output":"vent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n"},{"event":"cmd_output","timestamp":1607098481,"output":"\u001b[0m\u001b[22m\n16:14:41.081 [info] block_id: 8317bff3-2580-4dd8-8c6e-4a167f81dbf8, type: BlockRequests,"},{"event":"cmd_output","timestamp":1607098481,"output":" event: persisted build and sub_ppl details for block_request: 8317bff3-2580-4dd8-8c6e-4a167f81dbf8,"},{"event":"cmd_output","timestamp":1607098481,"output":" origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098481,"output":"14:41.082 [info] block_id: 8317bff3-2580-4dd8-8c6e-4a167f81dbf8, type: Tasks, state: pending, event"},{"event":"cmd_output","timestamp":1607098481,"output":": created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L16"},{"event":"cmd_output","timestamp":1607098481,"output":"7), \n\u001b[0m\u001b[22m\n16:14:41.084 [info] block_id: 8317bff3-2580-4dd8-8c6e-4a167f81dbf8, type: Blocks, "},{"event":"cmd_output","timestamp":1607098481,"output":"state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_"},{"event":"cmd_output","timestamp":1607098481,"output":"change/1(L90), \n\u001b[0m\u001b[22m\n16:14:41.105 [info] block_id: 8317bff3-2580-4dd8-8c6e-4a167f81dbf8, typ"},{"event":"cmd_output","timestamp":1607098481,"output":"e: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl."},{"event":"cmd_output","timestamp":1607098488,"output":"log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:48.194 [info] block_id: 8317bff3-2580-4dd8-8c6e-4a167f8"},{"event":"cmd_output","timestamp":1607098488,"output":"1dbf8, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.ST"},{"event":"cmd_output","timestamp":1607098488,"output":"M.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:48.201 [info] block_id: 8317bff3-2580-4dd8-8c6e-"},{"event":"cmd_output","timestamp":1607098488,"output":"4a167f81dbf8, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098488,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:48.207 [info] ppl_id: c57ca3f5-e582-4168"},{"event":"cmd_output","timestamp":1607098488,"output":"-8f92-3300164ce961, block_id: 8317bff3-2580-4dd8-8c6e-4a167f81dbf8, type: PplBlocks, block_index: 0,"},{"event":"cmd_output","timestamp":1607098488,"output":" state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.I"},{"event":"cmd_output","timestamp":1607098488,"output":"mpl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:48.219 [info] ppl_id: c57ca3f5-e582-4168-8f92-33001"},{"event":"cmd_output","timestamp":1607098488,"output":"64ce961, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098488,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test auto_cancel/running terminates"},{"event":"cmd_output","timestamp":1607098488,"output":" older pipelines that are either running or queing/pending (14955.2ms)\u001b[0m\n\nPpl.DeleteRequests.STM"},{"event":"cmd_output","timestamp":1607098488,"output":"Handler.Deletion.Test\n * test all related entities in db are deleted when delete request is proces"},{"event":"cmd_output","timestamp":1607098488,"output":"sed\u001b[22m\n16:14:48.760 [info] Request: 'run: %{\"branch_id\" => \"fbb1d602-81db-42d4-90fe-e333ac7fc52b"},{"event":"cmd_output","timestamp":1607098488,"output":"\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"semaphore.yml\", \"hook_id"},{"event":"cmd_output","timestamp":1607098488,"output":"\" => \"d4ebaa80-364b-11eb-b802-5254005464e2\", \"label\" => \"master\", \"organization_id\" => \"dbb648e5-ff0"},{"event":"cmd_output","timestamp":1607098488,"output":"e-4d22-9346-47a631856570\", \"owner\" => \"rt\", \"project_id\" => \"to-delete\", \"repo_name\" => \"5_v1_full\","},{"event":"cmd_output","timestamp":1607098488,"output":" \"request_token\" => \"d4eba260-364b-11eb-a6e5-5254005464e2\", \"requester_id\" => \"680b88f8-12e0-4199-bd"},{"event":"cmd_output","timestamp":1607098488,"output":"07-4920fb5e37f0\", \"service\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"]"},{"event":"cmd_output","timestamp":1607098488,"output":", \"wf_id\" => \"69a5050d-b8f8-4a3a-96a1-e2458f87bbc4\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098488,"output":"4:48.763 [info] ppl_id: ac84f635-57e9-4df0-8139-fe8abec4a2a8, type: PplRequests, event: persisted s"},{"event":"cmd_output","timestamp":1607098488,"output":"chedule request with request_token: d4eba260-364b-11eb-a6e5-5254005464e2, origin: Elixir.Ppl.PplRequ"},{"event":"cmd_output","timestamp":1607098488,"output":"ests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:14:48.765 [info] ppl_id: ac8"},{"event":"cmd_output","timestamp":1607098488,"output":"4f635-57e9-4df0-8139-fe8abec4a2a8, type: Ppls, state: initializing, event: initializing, recovery_co"},{"event":"cmd_output","timestamp":1607098488,"output":"unt: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:14:48.77"},{"event":"cmd_output","timestamp":1607098488,"output":"2 [info] Project to-delete and branch masterlatest_wf details updated: \"wf_id: 69a5050d-b8f8-4a3a-9"},{"event":"cmd_output","timestamp":1607098488,"output":"6a1-e2458f87bbc4, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:14:48.774 [info] Persisted ppl_sub_init for pipeline"},{"event":"cmd_output","timestamp":1607098488,"output":" with ppl_id: ac84f635-57e9-4df0-8139-fe8abec4a2a8: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ec"},{"event":"cmd_output","timestamp":1607098488,"output":"to.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id:"},{"event":"cmd_output","timestamp":1607098488,"output":" 347, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:14:48.772888], pipel"},{"event":"cmd_output","timestamp":1607098488,"output":"ine_requests: #Ecto.Association.NotLoaded, ppl_id: \"ac"},{"event":"cmd_output","timestamp":1607098488,"output":"84f635-57e9-4df0-8139-fe8abec4a2a8\", recovery_count: 0, result: nil, result_reason: nil, state: \"cre"},{"event":"cmd_output","timestamp":1607098488,"output":"ated\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:14:48.77289"},{"event":"cmd_output","timestamp":1607098488,"output":"4]}\n\u001b[0m\u001b[22m\n16:14:48.777 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingSta"},{"event":"cmd_output","timestamp":1607098488,"output":"te with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beho"},{"event":"cmd_output","timestamp":1607098488,"output":"lder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initi"},{"event":"cmd_output","timestamp":1607098488,"output":"alizing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_stat"},{"event":"cmd_output","timestamp":1607098488,"output":"e: \"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.ar"},{"event":"cmd_output","timestamp":1607098488,"output":"gs/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recov"},{"event":"cmd_output","timestamp":1607098488,"output":"ery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:48.777 ["},{"event":"cmd_output","timestamp":1607098488,"output":"info] Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHan"},{"event":"cmd_output","timestamp":1607098488,"output":"dler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Pen"},{"event":"cmd_output","timestamp":1607098488,"output":"dingState\"]}, recurring args: %{allowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_t"},{"event":"cmd_output","timestamp":1607098488,"output":"ime_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publisher_cb: #Function<0"},{"event":"cmd_output","timestamp":1607098488,"output":".8493005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :termin"},{"event":"cmd_output","timestamp":1607098488,"output":"ate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, t"},{"event":"cmd_output","timestamp":1607098488,"output":"ask_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:14:48.777 [info] Periodic from module Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098488,"output":".Ppls.STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, m"},{"event":"cmd_output","timestamp":1607098488,"output":"etric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{allowe"},{"event":"cmd_output","timestamp":1607098488,"output":"d_states: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, "},{"event":"cmd_output","timestamp":1607098488,"output":"observed_state: \"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState"},{"event":"cmd_output","timestamp":1607098488,"output":".args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :re"},{"event":"cmd_output","timestamp":1607098488,"output":"covery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:48.77"},{"event":"cmd_output","timestamp":1607098488,"output":"8 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl.Ppls.STM"},{"event":"cmd_output","timestamp":1607098488,"output":"Handler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-"},{"event":"cmd_output","timestamp":1607098488,"output":"RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec"},{"event":"cmd_output","timestamp":1607098488,"output":": -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"running\", publisher_cb: #Function<0.74670"},{"event":"cmd_output","timestamp":1607098488,"output":"282/1 in Ppl.Ppls.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_r"},{"event":"cmd_output","timestamp":1607098488,"output":"equest, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_s"},{"event":"cmd_output","timestamp":1607098488,"output":"upervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:14:48.778 [info] Periodic from module Elixir.Ppl.Ppls"},{"event":"cmd_output","timestamp":1607098488,"output":".STMHandler.StoppingState with name Elixir.Ppl.Ppls.STMHandler.StoppingState :: period: 100 ms, metr"},{"event":"cmd_output","timestamp":1607098488,"output":"ic_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring args: %{allowed_"},{"event":"cmd_output","timestamp":1607098488,"output":"states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_sta"},{"event":"cmd_output","timestamp":1607098488,"output":"te: \"stopping\", publisher_cb: #Function<0.71803493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, r"},{"event":"cmd_output","timestamp":1607098488,"output":"epo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_coun"},{"event":"cmd_output","timestamp":1607098488,"output":"t, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:48.778 [info] P"},{"event":"cmd_output","timestamp":1607098488,"output":"eriodic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits."},{"event":"cmd_output","timestamp":1607098488,"output":"STMHandler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-S"},{"event":"cmd_output","timestamp":1607098488,"output":"TMHandler-CreatedState\"]}, recurring args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec:"},{"event":"cmd_output","timestamp":1607098488,"output":" 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip"},{"event":"cmd_output","timestamp":1607098488,"output":", repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_c"},{"event":"cmd_output","timestamp":1607098488,"output":"ount, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14"},{"event":"cmd_output","timestamp":1607098488,"output":":48.779 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixi"},{"event":"cmd_output","timestamp":1607098488,"output":"r.Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", "},{"event":"cmd_output","timestamp":1607098488,"output":"[\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"c"},{"event":"cmd_output","timestamp":1607098488,"output":"ompilation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observ"},{"event":"cmd_output","timestamp":1607098488,"output":"ed_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, "},{"event":"cmd_output","timestamp":1607098488,"output":":updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, "},{"event":"cmd_output","timestamp":1607098488,"output":"task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:48.779 [info] Periodic from module Elixir.Ppl.PplSubInits"},{"event":"cmd_output","timestamp":1607098488,"output":".STMHandler.CompilationState with name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period:"},{"event":"cmd_output","timestamp":1607098488,"output":" 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, rec"},{"event":"cmd_output","timestamp":1607098488,"output":"urring args: %{allowed_states: [\"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec"},{"event":"cmd_output","timestamp":1607098488,"output":": -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"compilation\", publisher_cb:"},{"event":"cmd_output","timestamp":1607098488,"output":" :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :reco"},{"event":"cmd_output","timestamp":1607098488,"output":"very_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098488,"output":"\n16:14:48.779 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with n"},{"event":"cmd_output","timestamp":1607098488,"output":"ame Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholde"},{"event":"cmd_output","timestamp":1607098488,"output":"r-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurring args: %{allowed_states: [\"do"},{"event":"cmd_output","timestamp":1607098488,"output":"ne\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regula"},{"event":"cmd_output","timestamp":1607098488,"output":"r_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, "},{"event":"cmd_output","timestamp":1607098488,"output":":state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervis"},{"event":"cmd_output","timestamp":1607098488,"output":"or: :skip}\n\u001b[0m\u001b[22m\n16:14:48.779 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.Ini"},{"event":"cmd_output","timestamp":1607098488,"output":"tializingState with name Elixir.Ppl.PplBlocks.STMHandler.InitializingState :: period: 100 ms, metric"},{"event":"cmd_output","timestamp":1607098488,"output":"_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-InitializingState\"]}, recurring args: %{a"},{"event":"cmd_output","timestamp":1607098488,"output":"llowed_states: [\"initializing\", \"waiting\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlock"},{"event":"cmd_output","timestamp":1607098488,"output":"s.Model.PplBlocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returnin"},{"event":"cmd_output","timestamp":1607098488,"output":"g: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], "},{"event":"cmd_output","timestamp":1607098488,"output":"schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:48.779 [info] Peri"},{"event":"cmd_output","timestamp":1607098488,"output":"odic from module Elixir.Ppl.PplBlocks.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks.STMHand"},{"event":"cmd_output","timestamp":1607098488,"output":"ler.WaitingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandle"},{"event":"cmd_output","timestamp":1607098488,"output":"r-WaitingState\"]}, recurring args: %{allowed_states: [\"waiting\", \"running\", \"done\"], cooling_time_se"},{"event":"cmd_output","timestamp":1607098488,"output":"c: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"waiting\", publisher_cb: #Functi"},{"event":"cmd_output","timestamp":1607098488,"output":"on<0.8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, returning: [:id"},{"event":"cmd_output","timestamp":1607098488,"output":", :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema:"},{"event":"cmd_output","timestamp":1607098488,"output":" Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:48.780 [info] Periodic fr"},{"event":"cmd_output","timestamp":1607098488,"output":"om module Elixir.Ppl.PplBlocks.STMHandler.RunningState with name Elixir.Ppl.PplBlocks.STMHandler.Run"},{"event":"cmd_output","timestamp":1607098488,"output":"ningState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-Runni"},{"event":"cmd_output","timestamp":1607098488,"output":"ngState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2,"},{"event":"cmd_output","timestamp":1607098488,"output":" initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"running\", publisher_cb: #Function<0."},{"event":"cmd_output","timestamp":1607098488,"output":"28166834/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :t"},{"event":"cmd_output","timestamp":1607098488,"output":"erminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], "},{"event":"cmd_output","timestamp":1607098488,"output":"schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:48.780 [info] Peri"},{"event":"cmd_output","timestamp":1607098488,"output":"odic from module Elixir.Ppl.PplBlocks.STMHandler.StoppingState with name Elixir.Ppl.PplBlocks.STMHan"},{"event":"cmd_output","timestamp":1607098488,"output":"dler.StoppingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHand"},{"event":"cmd_output","timestamp":1607098488,"output":"ler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, "},{"event":"cmd_output","timestamp":1607098488,"output":"initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"stopping\", publisher_cb: #Function<0."},{"event":"cmd_output","timestamp":1607098488,"output":"104215991/1 in Ppl.PplBlocks.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, "},{"event":"cmd_output","timestamp":1607098488,"output":":terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id]"},{"event":"cmd_output","timestamp":1607098488,"output":", schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:48.780 [info] Pe"},{"event":"cmd_output","timestamp":1607098488,"output":"riodic from module Elixir.Block.Blocks.STMHandler.InitializingState with name Elixir.Block.Blocks.ST"},{"event":"cmd_output","timestamp":1607098488,"output":"MHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-S"},{"event":"cmd_output","timestamp":1607098488,"output":"TMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_"},{"event":"cmd_output","timestamp":1607098488,"output":"sec: 0, initial_query: Block.Blocks.Model.Blocks, observed_state: \"initializing\", publisher_cb: :ski"},{"event":"cmd_output","timestamp":1607098488,"output":"p, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, "},{"event":"cmd_output","timestamp":1607098488,"output":":block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:48.781 [inf"},{"event":"cmd_output","timestamp":1607098488,"output":"o] Periodic from module Elixir.Block.Blocks.STMHandler.RunningState with name Elixir.Block.Blocks.S"},{"event":"cmd_output","timestamp":1607098488,"output":"TMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHa"},{"event":"cmd_output","timestamp":1607098488,"output":"ndler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_ti"},{"event":"cmd_output","timestamp":1607098488,"output":"me_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"running\", publisher_cb: :skip"},{"event":"cmd_output","timestamp":1607098488,"output":", repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :"},{"event":"cmd_output","timestamp":1607098488,"output":"block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:48.781 [info"},{"event":"cmd_output","timestamp":1607098488,"output":"] Periodic from module Elixir.Block.Blocks.STMHandler.StoppingState with name Elixir.Block.Blocks.S"},{"event":"cmd_output","timestamp":1607098488,"output":"TMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMH"},{"event":"cmd_output","timestamp":1607098488,"output":"andler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -"},{"event":"cmd_output","timestamp":1607098488,"output":"2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"stopping\", publisher_cb: :skip, repo: "},{"event":"cmd_output","timestamp":1607098488,"output":"Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id"},{"event":"cmd_output","timestamp":1607098488,"output":"], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:48.781 [info] Perio"},{"event":"cmd_output","timestamp":1607098488,"output":"dic from module Elixir.Block.Tasks.STMHandler.PendingState with name Elixir.Block.Tasks.STMHandler.P"},{"event":"cmd_output","timestamp":1607098488,"output":"endingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-Pendin"},{"event":"cmd_output","timestamp":1607098488,"output":"gState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query"},{"event":"cmd_output","timestamp":1607098488,"output":": Block.Tasks.Model.Tasks, observed_state: \"pending\", publisher_cb: :skip, repo: Block.EctoRepo, ret"},{"event":"cmd_output","timestamp":1607098488,"output":"urning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id, :build_request_id"},{"event":"cmd_output","timestamp":1607098488,"output":"], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:48.781 [info] Periodi"},{"event":"cmd_output","timestamp":1607098488,"output":"c from module Elixir.Block.Tasks.STMHandler.RunningState with name Elixir.Block.Tasks.STMHandler.Run"},{"event":"cmd_output","timestamp":1607098488,"output":"ningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningS"},{"event":"cmd_output","timestamp":1607098488,"output":"tate\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, in"},{"event":"cmd_output","timestamp":1607098488,"output":"itial_query: Block.Tasks.Model.Tasks, observed_state: \"running\", publisher_cb: :skip, repo: Block.Ec"},{"event":"cmd_output","timestamp":1607098488,"output":"toRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schem"},{"event":"cmd_output","timestamp":1607098488,"output":"a: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:48.782 [info] Periodic from m"},{"event":"cmd_output","timestamp":1607098488,"output":"odule Elixir.Block.Tasks.STMHandler.StoppingState with name Elixir.Block.Tasks.STMHandler.StoppingSt"},{"event":"cmd_output","timestamp":1607098488,"output":"ate :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\""},{"event":"cmd_output","timestamp":1607098488,"output":"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Blo"},{"event":"cmd_output","timestamp":1607098488,"output":"ck.Tasks.Model.Tasks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returni"},{"event":"cmd_output","timestamp":1607098488,"output":"ng: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks."},{"event":"cmd_output","timestamp":1607098488,"output":"Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:48.888 [info] ppl_id: ac84f635-57e9-4df0-813"},{"event":"cmd_output","timestamp":1607098488,"output":"9-fe8abec4a2a8, type: PplRequests, event: persisted source_args for pipeline: ac84f635-57e9-4df0-813"},{"event":"cmd_output","timestamp":1607098488,"output":"9-fe8abec4a2a8, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098488,"output":"\u001b[22m\n16:14:48.892 [info] ppl_id: ac84f635-57e9-4df0-8139-fe8abec4a2a8, type: PplSubInits, state: "},{"event":"cmd_output","timestamp":1607098488,"output":"fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change"},{"event":"cmd_output","timestamp":1607098488,"output":"/1(L90), \n\u001b[0m\u001b[22m\n16:14:48.907 [info] ppl_id: ac84f635-57e9-4df0-8139-fe8abec4a2a8, type: PplSu"},{"event":"cmd_output","timestamp":1607098488,"output":"bInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Im"},{"event":"cmd_output","timestamp":1607098488,"output":"pl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:48.932 [info] ppl_id: ac84f635-57e9-4df0-8139-fe8abe"},{"event":"cmd_output","timestamp":1607098488,"output":"c4a2a8, type: PplRequests, event: persisted definition for request with request_token: d4eba260-364b"},{"event":"cmd_output","timestamp":1607098488,"output":"-11eb-a6e5-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3"},{"event":"cmd_output","timestamp":1607098488,"output":"(L76), \n\u001b[0m\u001b[22m\n16:14:48.934 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #"},{"event":"cmd_output","timestamp":1607098488,"output":"Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:14:48.933778], name: \"master-"},{"event":"cmd_output","timestamp":1607098488,"output":".semaphore/semaphore.yml\", organization_id: \"dbb648e5-ff0e-4d22-9346-47a631856570\", project_id: \"to-"},{"event":"cmd_output","timestamp":1607098488,"output":"delete\", queue_id: \"9f49d7a8-e0a8-4f28-9f83-a34ba429e9ed\", scope: \"project\", updated_at: ~N[2020-12-"},{"event":"cmd_output","timestamp":1607098488,"output":"04 16:14:48.933786], user_generated: false}}\n\u001b[0m\u001b[22m\n16:14:48.939 [info] ppl_id: not_available,"},{"event":"cmd_output","timestamp":1607098488,"output":" event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098488,"output":"[22m\n16:14:48.939 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitStat"},{"event":"cmd_output","timestamp":1607098488,"output":"e.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:48.939 [info] ppl_id: ac84f635-57e9-4df0-8139-fe8abec4a2a8, t"},{"event":"cmd_output","timestamp":1607098488,"output":"ype: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098488,"output":"ir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:48.939 [info] pp"},{"event":"cmd_output","timestamp":1607098488,"output":"l_id: ac84f635-57e9-4df0-8139-fe8abec4a2a8, type: PplBlocks, block_index: 1, state: initializing, ev"},{"event":"cmd_output","timestamp":1607098488,"output":"ent: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/"},{"event":"cmd_output","timestamp":1607098488,"output":"1(L105), \n\u001b[0m\u001b[22m\n16:14:48.941 [info] ppl_id: ac84f635-57e9-4df0-8139-fe8abec4a2a8, type: PplSu"},{"event":"cmd_output","timestamp":1607098488,"output":"bInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loope"},{"event":"cmd_output","timestamp":1607098488,"output":"r.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:48.947 [info] ppl_id: ac84f635-57e9-4df0-813"},{"event":"cmd_output","timestamp":1607098488,"output":"9-fe8abec4a2a8, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_co"},{"event":"cmd_output","timestamp":1607098488,"output":"unt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:48.947 [info] pp"},{"event":"cmd_output","timestamp":1607098488,"output":"l_id: ac84f635-57e9-4df0-8139-fe8abec4a2a8, type: Ppls, state: pending, event: exit_scheduling, reco"},{"event":"cmd_output","timestamp":1607098488,"output":"very_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:48.951 [in"},{"event":"cmd_output","timestamp":1607098488,"output":"fo] ppl_id: ac84f635-57e9-4df0-8139-fe8abec4a2a8, type: PplBlocks, block_index: 1, state: waiting, "},{"event":"cmd_output","timestamp":1607098488,"output":"event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \r"},{"event":"cmd_output","timestamp":1607098488,"output":"\n\u001b[0m\u001b[22m\n16:14:48.954 [info] ppl_id: ac84f635-57e9-4df0-8139-fe8abec4a2a8, type: Ppls, state: qu"},{"event":"cmd_output","timestamp":1607098488,"output":"euing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1("},{"event":"cmd_output","timestamp":1607098488,"output":"L90), \n\u001b[0m\u001b[22m\n16:14:48.961 [info] ppl_id: ac84f635-57e9-4df0-8139-fe8abec4a2a8, type: Ppls, st"},{"event":"cmd_output","timestamp":1607098488,"output":"ate: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_ch"},{"event":"cmd_output","timestamp":1607098488,"output":"ange/1(L90), \n\u001b[0m\u001b[22m\n16:14:48.975 [info] PplBlocks WaitingState STM is scheduling block 0 from"},{"event":"cmd_output","timestamp":1607098488,"output":" pipeline: \"ac84f635-57e9-4df0-8139-fe8abec4a2a8\"\n\u001b[0m\u001b[22m\n16:14:48.980 [info] block_id: e8f679b"},{"event":"cmd_output","timestamp":1607098488,"output":"d-afbd-4cb0-a92d-c5209852826d, type: BlockRequests, event: persisted block run request from ppl ac84"},{"event":"cmd_output","timestamp":1607098488,"output":"f635-57e9-4df0-8139-fe8abec4a2a8 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequests"},{"event":"cmd_output","timestamp":1607098488,"output":"Queries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:14:48.983 [info] block_id: e8f679bd-afbd-4cb0-a92d"},{"event":"cmd_output","timestamp":1607098488,"output":"-c5209852826d, type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098488,"output":"ixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:14:48.984 [info] Block 0 of pi"},{"event":"cmd_output","timestamp":1607098488,"output":"peline with id: ac84f635-57e9-4df0-8139-fe8abec4a2a8 scheduled in block service with id: : \"e8f679bd"},{"event":"cmd_output","timestamp":1607098488,"output":"-afbd-4cb0-a92d-c5209852826d\"\n\u001b[0m\u001b[22m\n16:14:48.990 [info] ppl_id: ac84f635-57e9-4df0-8139-fe8ab"},{"event":"cmd_output","timestamp":1607098488,"output":"ec4a2a8, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098488,"output":" origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:48.993 [info] block_id:"},{"event":"cmd_output","timestamp":1607098488,"output":" e8f679bd-afbd-4cb0-a92d-c5209852826d, type: BlockRequests, event: persisted build and sub_ppl detai"},{"event":"cmd_output","timestamp":1607098488,"output":"ls for block_request: e8f679bd-afbd-4cb0-a92d-c5209852826d, origin: Elixir.Block.BlockRequests.Model"},{"event":"cmd_output","timestamp":1607098488,"output":".BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:14:48.997 [info] block_id: e8f679bd-afbd"},{"event":"cmd_output","timestamp":1607098488,"output":"-4cb0-a92d-c5209852826d, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098489,"output":"xir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:14:49.000 [info] blo"},{"event":"cmd_output","timestamp":1607098489,"output":"ck_id: e8f679bd-afbd-4cb0-a92d-c5209852826d, type: Blocks, state: running, event: exit_scheduling, r"},{"event":"cmd_output","timestamp":1607098489,"output":"ecovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:49.040 "},{"event":"cmd_output","timestamp":1607098489,"output":"[info] block_id: e8f679bd-afbd-4cb0-a92d-c5209852826d, type: Tasks, state: running, event: exit_sch"},{"event":"cmd_output","timestamp":1607098489,"output":"eduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098489,"output":"14:49.220 [info] block_id: e8f679bd-afbd-4cb0-a92d-c5209852826d, type: Tasks, state: done, event: e"},{"event":"cmd_output","timestamp":1607098489,"output":"xit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098489,"output":"2m\n16:14:49.235 [info] block_id: e8f679bd-afbd-4cb0-a92d-c5209852826d, type: Blocks, state: done, "},{"event":"cmd_output","timestamp":1607098489,"output":"event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \r"},{"event":"cmd_output","timestamp":1607098489,"output":"\n\u001b[0m\u001b[22m\n16:14:49.240 [info] ppl_id: ac84f635-57e9-4df0-8139-fe8abec4a2a8, block_id: e8f679bd-af"},{"event":"cmd_output","timestamp":1607098489,"output":"bd-4cb0-a92d-c5209852826d, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit"},{"event":"cmd_output","timestamp":1607098489,"output":"_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098489,"output":"\n16:14:49.245 [info] PplBlocks WaitingState STM is scheduling block 1 from pipeline: \"ac84f635-57e9"},{"event":"cmd_output","timestamp":1607098489,"output":"-4df0-8139-fe8abec4a2a8\"\n\u001b[0m\u001b[22m\n16:14:49.251 [info] block_id: 8fd4ab44-9b92-44aa-bd36-ef21ed92"},{"event":"cmd_output","timestamp":1607098489,"output":"c412, type: BlockRequests, event: persisted block run request from ppl ac84f635-57e9-4df0-8139-fe8ab"},{"event":"cmd_output","timestamp":1607098489,"output":"ec4a2a8 for block 1, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/"},{"event":"cmd_output","timestamp":1607098489,"output":"4(L35), \n\u001b[0m\u001b[22m\n16:14:49.252 [info] block_id: 8fd4ab44-9b92-44aa-bd36-ef21ed92c412, type: Bloc"},{"event":"cmd_output","timestamp":1607098489,"output":"ks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.B"},{"event":"cmd_output","timestamp":1607098489,"output":"locksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:14:49.252 [info] Block 1 of pipeline with id: ac84f635-"},{"event":"cmd_output","timestamp":1607098489,"output":"57e9-4df0-8139-fe8abec4a2a8 scheduled in block service with id: : \"8fd4ab44-9b92-44aa-bd36-ef21ed92c"},{"event":"cmd_output","timestamp":1607098489,"output":"412\"\n\u001b[0m\u001b[22m\n16:14:49.254 [info] ppl_id: ac84f635-57e9-4df0-8139-fe8abec4a2a8, type: PplBlocks,"},{"event":"cmd_output","timestamp":1607098489,"output":" block_index: 1, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.ST"},{"event":"cmd_output","timestamp":1607098489,"output":"M.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:49.256 [info] block_id: 8fd4ab44-9b92-44aa-bd36-"},{"event":"cmd_output","timestamp":1607098489,"output":"ef21ed92c412, type: BlockRequests, event: persisted build and sub_ppl details for block_request: 8fd"},{"event":"cmd_output","timestamp":1607098489,"output":"4ab44-9b92-44aa-bd36-ef21ed92c412, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.ins"},{"event":"cmd_output","timestamp":1607098489,"output":"ert_build/2(L41), \n\u001b[0m\u001b[22m\n16:14:49.258 [info] block_id: 8fd4ab44-9b92-44aa-bd36-ef21ed92c412, "},{"event":"cmd_output","timestamp":1607098489,"output":"type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandl"},{"event":"cmd_output","timestamp":1607098489,"output":"er.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:14:49.267 [info] block_id: 8fd4ab44-9b92-44aa"},{"event":"cmd_output","timestamp":1607098489,"output":"-bd36-ef21ed92c412, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098489,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:49.279 [info] block_id: 8fd4ab4"},{"event":"cmd_output","timestamp":1607098489,"output":"4-9b92-44aa-bd36-ef21ed92c412, type: Tasks, state: running, event: exit_scheduling, recovery_count: "},{"event":"cmd_output","timestamp":1607098489,"output":"0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:49.328 [info] block_i"},{"event":"cmd_output","timestamp":1607098489,"output":"d: 8fd4ab44-9b92-44aa-bd36-ef21ed92c412, type: Tasks, state: done, event: exit_scheduling, recovery_"},{"event":"cmd_output","timestamp":1607098489,"output":"count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:49.333 [info] "},{"event":"cmd_output","timestamp":1607098489,"output":"block_id: 8fd4ab44-9b92-44aa-bd36-ef21ed92c412, type: Blocks, state: done, event: exit_scheduling, r"},{"event":"cmd_output","timestamp":1607098489,"output":"ecovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:49.337 "},{"event":"cmd_output","timestamp":1607098489,"output":"[info] ppl_id: ac84f635-57e9-4df0-8139-fe8abec4a2a8, block_id: 8fd4ab44-9b92-44aa-bd36-ef21ed92c412"},{"event":"cmd_output","timestamp":1607098489,"output":", type: PplBlocks, block_index: 1, state: done, result: passed, event: exit_scheduling, recovery_cou"},{"event":"cmd_output","timestamp":1607098489,"output":"nt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:49.347 [info] ppl"},{"event":"cmd_output","timestamp":1607098489,"output":"_id: ac84f635-57e9-4df0-8139-fe8abec4a2a8, type: Ppls, state: done, result: passed, event: exit_sche"},{"event":"cmd_output","timestamp":1607098489,"output":"duling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098489,"output":"4:49.410 [info] Persisted delete_request for pipelines from project with project_id: to-delete: %Pp"},{"event":"cmd_output","timestamp":1607098489,"output":"l.DeleteRequests.Model.DeleteRequests{__meta__: #Ecto.Schema.Metadata<:loaded, \"delete_requests\">, e"},{"event":"cmd_output","timestamp":1607098489,"output":"rror_description: nil, id: 2, in_scheduling: false, inserted_at: ~N[2020-12-04 16:14:49.409333], pro"},{"event":"cmd_output","timestamp":1607098489,"output":"ject_id: \"to-delete\", recovery_count: 0, requester: \"sudo\", result: nil, result_reason: nil, state: "},{"event":"cmd_output","timestamp":1607098489,"output":"\"pending\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:14:49.4"},{"event":"cmd_output","timestamp":1607098489,"output":"09340]}\n\u001b[0m\u001b[22m\n16:14:49.410 [info] Periodic from module Elixir.Ppl.DeleteRequests.STMHandler.P"},{"event":"cmd_output","timestamp":1607098489,"output":"endingState with name Elixir.Ppl.DeleteRequests.STMHandler.PendingState :: period: 100 ms, metric_na"},{"event":"cmd_output","timestamp":1607098489,"output":"me: {\"Ppl.beholder-wake_up\", [\"Ppl-DeleteRequests-STMHandler-PendingState\"]}, recurring args: %{allo"},{"event":"cmd_output","timestamp":1607098489,"output":"wed_states: [\"deleting\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.DeleteRequests.Model.Dele"},{"event":"cmd_output","timestamp":1607098489,"output":"teRequests, observed_state: \"pending\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :te"},{"event":"cmd_output","timestamp":1607098489,"output":"rminate_request, :updated_at, :state, :recovery_count, :project_id], schema: Ppl.DeleteRequests.Mode"},{"event":"cmd_output","timestamp":1607098489,"output":"l.DeleteRequests, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:49.410 [info] Periodic from module Elix"},{"event":"cmd_output","timestamp":1607098489,"output":"ir.Ppl.DeleteRequests.STMHandler.DeletingState with name Elixir.Ppl.DeleteRequests.STMHandler.Deleti"},{"event":"cmd_output","timestamp":1607098489,"output":"ngState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-DeleteRequests-STMHandler-Del"},{"event":"cmd_output","timestamp":1607098489,"output":"etingState\"]}, recurring args: %{allowed_states: [\"deleting\", \"queue_deleting\", \"done\"], cooling_tim"},{"event":"cmd_output","timestamp":1607098489,"output":"e_sec: -2, initial_query: #Ecto.Query, observed_state: \"deleting\", "},{"event":"cmd_output","timestamp":1607098489,"output":"publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :"},{"event":"cmd_output","timestamp":1607098489,"output":"recovery_count, :project_id], schema: Ppl.DeleteRequests.Model.DeleteRequests, task_supervisor: :ski"},{"event":"cmd_output","timestamp":1607098489,"output":"p}\n\u001b[0m\u001b[22m\n16:14:49.411 [info] Periodic from module Elixir.Ppl.DeleteRequests.STMHandler.QueueD"},{"event":"cmd_output","timestamp":1607098489,"output":"eletingState with name Elixir.Ppl.DeleteRequests.STMHandler.QueueDeletingState :: period: 100 ms, me"},{"event":"cmd_output","timestamp":1607098489,"output":"tric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-DeleteRequests-STMHandler-QueueDeletingState\"]}, recurring"},{"event":"cmd_output","timestamp":1607098489,"output":" args: %{allowed_states: [\"queue_deleting\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Delete"},{"event":"cmd_output","timestamp":1607098489,"output":"Requests.Model.DeleteRequests, observed_state: \"queue_deleting\", publisher_cb: :skip, repo: Ppl.Ecto"},{"event":"cmd_output","timestamp":1607098489,"output":"Repo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :project_id], schem"},{"event":"cmd_output","timestamp":1607098489,"output":"a: Ppl.DeleteRequests.Model.DeleteRequests, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:49.516 [info] "},{"event":"cmd_output","timestamp":1607098489,"output":" type: DeleteRequests, state: deleting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Lo"},{"event":"cmd_output","timestamp":1607098489,"output":"oper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:49.621 [info] Deleted pipeline ac84f635-5"},{"event":"cmd_output","timestamp":1607098489,"output":"7e9-4df0-8139-fe8abec4a2a8 from project:: \"to-delete\"\n\u001b[0m\u001b[22m\n16:14:49.726 [info] type: DeleteR"},{"event":"cmd_output","timestamp":1607098489,"output":"equests, state: queue_deleting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM"},{"event":"cmd_output","timestamp":1607098489,"output":".Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:49.821 [info] Deleted queue master-.semaphore/sem"},{"event":"cmd_output","timestamp":1607098489,"output":"aphore.yml from project:: \"to-delete\"\n\u001b[0m\u001b[22m\n16:14:49.929 [info] type: DeleteRequests, state: "},{"event":"cmd_output","timestamp":1607098489,"output":"done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098492,"output":"90), \n\u001b[0m\u001b[32m\r * test all related entities in db are deleted when delete request is processed (3"},{"event":"cmd_output","timestamp":1607098492,"output":"709.9ms)\u001b[0m\n\nPpl.DeleteRequests.Model.DeleteRequests.Test\n * doctest Ppl.DeleteRequests.Model.D"},{"event":"cmd_output","timestamp":1607098492,"output":"eleteRequests.changeset/2 (1)\r * doctest Ppl.DeleteRequests.Model.DeleteRequests.changeset/2 (1) (s"},{"event":"cmd_output","timestamp":1607098492,"output":"kipped)\n * doctest Ppl.DeleteRequests.Model.DeleteRequests.changeset/2 (2)\r * doctest Ppl.DeleteR"},{"event":"cmd_output","timestamp":1607098492,"output":"equests.Model.DeleteRequests.changeset/2 (2) (skipped)\n\nPpl.DeleteRequests.Model.DeleteRequestsQue"},{"event":"cmd_output","timestamp":1607098492,"output":"ries.Test\n * test insert delete_request\r * test insert delete_request (skipped)\n * test project"},{"event":"cmd_output","timestamp":1607098492,"output":"_deletion_requested? returns true if project's pipelines deletion is requested\r * test project_dele"},{"event":"cmd_output","timestamp":1607098492,"output":"tion_requested? returns true if project's pipelines deletion is requested (skipped)\n * test projec"},{"event":"cmd_output","timestamp":1607098492,"output":"t_deletion_requested? returns false if project's pipelines deletion is not requested\r * test projec"},{"event":"cmd_output","timestamp":1607098492,"output":"t_deletion_requested? returns false if project's pipelines deletion is not requested (skipped)\n\nPp"},{"event":"cmd_output","timestamp":1607098492,"output":"l.DefinitionReviser.WhenValidator.Test\n * test pipeline with valid expressions in all when conditi"},{"event":"cmd_output","timestamp":1607098492,"output":"ons passes\u001b[22m\n16:14:52.467 [info] Request: 'run: %{:file_name => \"multiple_valid_whens.yml\", :re"},{"event":"cmd_output","timestamp":1607098492,"output":"po_name => \"22_skip_block\", \"branch_id\" => \"8558cd3a-2e1d-409a-a1e4-f2110b07c76d\", \"branch_name\" => "},{"event":"cmd_output","timestamp":1607098492,"output":"\"master\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"semaphore.yml\", \"hook_id\" => \"d72153d6-364b-"},{"event":"cmd_output","timestamp":1607098492,"output":"11eb-b110-5254005464e2\", \"label\" => \"master\", \"organization_id\" => \"96c0d88b-fa03-449e-a998-72eadb5b"},{"event":"cmd_output","timestamp":1607098492,"output":"a0af\", \"owner\" => \"rt\", \"project_id\" => \"ce45fc4b-dc71-4ff1-947d-b156d049f734\", \"repo_name\" => \"2_ba"},{"event":"cmd_output","timestamp":1607098492,"output":"sic\", \"request_token\" => \"d7214a26-364b-11eb-b75a-5254005464e2\", \"requester_id\" => \"fe710dbd-31b9-4e"},{"event":"cmd_output","timestamp":1607098492,"output":"36-b62f-96c0e751d11c\", \"service\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_sec"},{"event":"cmd_output","timestamp":1607098492,"output":"ret\"], \"wf_id\" => \"eedbbb67-be15-4f9f-a19d-62713273fa4e\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098492,"output":"\n16:14:52.472 [info] ppl_id: 190155ea-b6fc-4ba6-8f46-11f260b3f42b, type: PplRequests, event: persis"},{"event":"cmd_output","timestamp":1607098492,"output":"ted schedule request with request_token: d7214a26-364b-11eb-b75a-5254005464e2, origin: Elixir.Ppl.Pp"},{"event":"cmd_output","timestamp":1607098492,"output":"lRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:14:52.474 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098492,"output":": 190155ea-b6fc-4ba6-8f46-11f260b3f42b, type: Ppls, state: initializing, event: initializing, recove"},{"event":"cmd_output","timestamp":1607098492,"output":"ry_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:14:"},{"event":"cmd_output","timestamp":1607098492,"output":"52.477 [info] Project ce45fc4b-dc71-4ff1-947d-b156d049f734 and branch masterlatest_wf details updat"},{"event":"cmd_output","timestamp":1607098492,"output":"ed: \"wf_id: eedbbb67-be15-4f9f-a19d-62713273fa4e, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:14:52.478 [info] Per"},{"event":"cmd_output","timestamp":1607098492,"output":"sisted ppl_sub_init for pipeline with ppl_id: 190155ea-b6fc-4ba6-8f46-11f260b3f42b: %Ppl.PplSubInits"},{"event":"cmd_output","timestamp":1607098492,"output":".Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: "},{"event":"cmd_output","timestamp":1607098492,"output":"nil, error_description: nil, id: 348, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[20"},{"event":"cmd_output","timestamp":1607098492,"output":"20-12-04 16:14:52.477369], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"190155ea-b6fc-4ba6-8f46-11f260b3f42b\", recovery_count: 0, result: nil,"},{"event":"cmd_output","timestamp":1607098492,"output":" result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_"},{"event":"cmd_output","timestamp":1607098492,"output":"at: ~N[2020-12-04 16:14:52.477375]}\n\u001b[0m\u001b[22m\n16:14:52.481 [info] Periodic from module Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098492,"output":".Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period:"},{"event":"cmd_output","timestamp":1607098492,"output":" 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring"},{"event":"cmd_output","timestamp":1607098492,"output":" args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Pp"},{"event":"cmd_output","timestamp":1607098492,"output":"l.Ppls.Model.Ppls, observed_state: \"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls"},{"event":"cmd_output","timestamp":1607098492,"output":".STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :upd"},{"event":"cmd_output","timestamp":1607098492,"output":"ated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :"},{"event":"cmd_output","timestamp":1607098492,"output":"skip}\n\u001b[0m\u001b[22m\n16:14:52.481 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingState "},{"event":"cmd_output","timestamp":1607098492,"output":"with name Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wak"},{"event":"cmd_output","timestamp":1607098492,"output":"e_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"pending\", \"queuing"},{"event":"cmd_output","timestamp":1607098492,"output":"\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pen"},{"event":"cmd_output","timestamp":1607098492,"output":"ding\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.Ec"},{"event":"cmd_output","timestamp":1607098492,"output":"toRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id]"},{"event":"cmd_output","timestamp":1607098492,"output":", schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:14:52.481 [info] "},{"event":"cmd_output","timestamp":1607098492,"output":" Periodic from module Elixir.Ppl.Ppls.STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandler.Q"},{"event":"cmd_output","timestamp":1607098492,"output":"ueuingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingSt"},{"event":"cmd_output","timestamp":1607098492,"output":"ate\"]}, recurring args: %{allowed_states: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, init"},{"event":"cmd_output","timestamp":1607098492,"output":"ial_query: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", publisher_cb: #Function<0.125102843/1 in "},{"event":"cmd_output","timestamp":1607098492,"output":"Ppl.Ppls.STMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :"},{"event":"cmd_output","timestamp":1607098492,"output":"updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor"},{"event":"cmd_output","timestamp":1607098492,"output":": :skip}\n\u001b[0m\u001b[22m\n16:14:52.481 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.RunningSta"},{"event":"cmd_output","timestamp":1607098492,"output":"te with name Elixir.Ppl.Ppls.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-"},{"event":"cmd_output","timestamp":1607098492,"output":"wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stop"},{"event":"cmd_output","timestamp":1607098492,"output":"ping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"running\","},{"event":"cmd_output","timestamp":1607098492,"output":" publisher_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler.RunningState.args/0>, repo: Ppl.EctoRep"},{"event":"cmd_output","timestamp":1607098492,"output":"o, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], sch"},{"event":"cmd_output","timestamp":1607098492,"output":"ema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:14:52.481 [info] Peri"},{"event":"cmd_output","timestamp":1607098492,"output":"odic from module Elixir.Ppl.Ppls.STMHandler.StoppingState with name Elixir.Ppl.Ppls.STMHandler.Stopp"},{"event":"cmd_output","timestamp":1607098492,"output":"ingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-StoppingStat"},{"event":"cmd_output","timestamp":1607098492,"output":"e\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: P"},{"event":"cmd_output","timestamp":1607098492,"output":"pl.Ppls.Model.Ppls, observed_state: \"stopping\", publisher_cb: #Function<0.71803493/1 in Ppl.Ppls.STM"},{"event":"cmd_output","timestamp":1607098492,"output":"Handler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at,"},{"event":"cmd_output","timestamp":1607098492,"output":" :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b"},{"event":"cmd_output","timestamp":1607098492,"output":"[0m\u001b[22m\n16:14:52.482 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedState w"},{"event":"cmd_output","timestamp":1607098492,"output":"ith name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.behold"},{"event":"cmd_output","timestamp":1607098492,"output":"er-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args: %{allowed_states: [\"fetch"},{"event":"cmd_output","timestamp":1607098492,"output":"ing\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state"},{"event":"cmd_output","timestamp":1607098492,"output":": \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_"},{"event":"cmd_output","timestamp":1607098492,"output":"at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supe"},{"event":"cmd_output","timestamp":1607098492,"output":"rvisor: :skip}\n\u001b[0m\u001b[22m\n16:14:52.482 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandl"},{"event":"cmd_output","timestamp":1607098492,"output":"er.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 ms, metric"},{"event":"cmd_output","timestamp":1607098492,"output":"_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %{all"},{"event":"cmd_output","timestamp":1607098492,"output":"owed_states: [\"regular_init\", \"compilation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSu"},{"event":"cmd_output","timestamp":1607098492,"output":"bInits.Model.PplSubInits, observed_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, retur"},{"event":"cmd_output","timestamp":1607098492,"output":"ning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl"},{"event":"cmd_output","timestamp":1607098492,"output":".PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:52.482 [info] Periodic fr"},{"event":"cmd_output","timestamp":1607098492,"output":"om module Elixir.Ppl.PplSubInits.STMHandler.CompilationState with name Elixir.Ppl.PplSubInits.STMHan"},{"event":"cmd_output","timestamp":1607098492,"output":"dler.CompilationState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STM"},{"event":"cmd_output","timestamp":1607098492,"output":"Handler-CompilationState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"stop"},{"event":"cmd_output","timestamp":1607098492,"output":"ping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_sta"},{"event":"cmd_output","timestamp":1607098492,"output":"te: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :up"},{"event":"cmd_output","timestamp":1607098492,"output":"dated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, tas"},{"event":"cmd_output","timestamp":1607098492,"output":"k_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:52.482 [info] Periodic from module Elixir.Ppl.PplSubInits.ST"},{"event":"cmd_output","timestamp":1607098492,"output":"MHandler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period: 10"},{"event":"cmd_output","timestamp":1607098492,"output":"0 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurr"},{"event":"cmd_output","timestamp":1607098492,"output":"ing args: %{allowed_states: [\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplS"},{"event":"cmd_output","timestamp":1607098492,"output":"ubInits, observed_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :"},{"event":"cmd_output","timestamp":1607098492,"output":"terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits."},{"event":"cmd_output","timestamp":1607098492,"output":"Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:52.482 [info] Periodic from module Eli"},{"event":"cmd_output","timestamp":1607098492,"output":"xir.Ppl.PplBlocks.STMHandler.InitializingState with name Elixir.Ppl.PplBlocks.STMHandler.Initializin"},{"event":"cmd_output","timestamp":1607098492,"output":"gState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-Initializ"},{"event":"cmd_output","timestamp":1607098492,"output":"ingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"waiting\", \"done\"], cooling_time_sec"},{"event":"cmd_output","timestamp":1607098492,"output":": 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"initializing\", publisher_cb: :sk"},{"event":"cmd_output","timestamp":1607098492,"output":"ip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery"},{"event":"cmd_output","timestamp":1607098492,"output":"_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m"},{"event":"cmd_output","timestamp":1607098492,"output":"\u001b[22m\n16:14:52.483 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.WaitingState with n"},{"event":"cmd_output","timestamp":1607098492,"output":"ame Elixir.Ppl.PplBlocks.STMHandler.WaitingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wak"},{"event":"cmd_output","timestamp":1607098492,"output":"e_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurring args: %{allowed_states: [\"waiting\", \"ru"},{"event":"cmd_output","timestamp":1607098492,"output":"nning\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: "},{"event":"cmd_output","timestamp":1607098492,"output":"\"waiting\", publisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>, rep"},{"event":"cmd_output","timestamp":1607098492,"output":"o: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count,"},{"event":"cmd_output","timestamp":1607098492,"output":" :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098492,"output":"16:14:52.483 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.RunningState with name Eli"},{"event":"cmd_output","timestamp":1607098492,"output":"xir.Ppl.PplBlocks.STMHandler.RunningState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", "},{"event":"cmd_output","timestamp":1607098492,"output":"[\"Ppl-PplBlocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\""},{"event":"cmd_output","timestamp":1607098492,"output":", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"runn"},{"event":"cmd_output","timestamp":1607098492,"output":"ing\", publisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0>, repo: P"},{"event":"cmd_output","timestamp":1607098492,"output":"pl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :pp"},{"event":"cmd_output","timestamp":1607098492,"output":"l_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m"},{"event":"cmd_output","timestamp":1607098492,"output":"\u001b[22m\n16:14:52.483 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.StoppingState with "},{"event":"cmd_output","timestamp":1607098492,"output":"name Elixir.Ppl.PplBlocks.STMHandler.StoppingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-w"},{"event":"cmd_output","timestamp":1607098492,"output":"ake_up\", [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\","},{"event":"cmd_output","timestamp":1607098492,"output":" \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"stopp"},{"event":"cmd_output","timestamp":1607098492,"output":"ing\", publisher_cb: #Function<0.104215991/1 in Ppl.PplBlocks.STMHandler.StoppingState.args/0>, repo:"},{"event":"cmd_output","timestamp":1607098492,"output":" Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :"},{"event":"cmd_output","timestamp":1607098492,"output":"ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b["},{"event":"cmd_output","timestamp":1607098492,"output":"0m\u001b[22m\n16:14:52.483 [info] Periodic from module Elixir.Block.Blocks.STMHandler.InitializingState "},{"event":"cmd_output","timestamp":1607098492,"output":"with name Elixir.Block.Blocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beh"},{"event":"cmd_output","timestamp":1607098492,"output":"older-wake_up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\""},{"event":"cmd_output","timestamp":1607098492,"output":"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Blocks.Model.Blocks, observed_state: \"i"},{"event":"cmd_output","timestamp":1607098492,"output":"nitializing\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updat"},{"event":"cmd_output","timestamp":1607098492,"output":"ed_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :ski"},{"event":"cmd_output","timestamp":1607098492,"output":"p}\n\u001b[0m\u001b[22m\n16:14:52.483 [info] Periodic from module Elixir.Block.Blocks.STMHandler.RunningState"},{"event":"cmd_output","timestamp":1607098492,"output":" with name Elixir.Block.Blocks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholde"},{"event":"cmd_output","timestamp":1607098492,"output":"r-wake_up\", [\"Block-Blocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\","},{"event":"cmd_output","timestamp":1607098492,"output":" \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state"},{"event":"cmd_output","timestamp":1607098492,"output":": \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :update"},{"event":"cmd_output","timestamp":1607098492,"output":"d_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip"},{"event":"cmd_output","timestamp":1607098492,"output":"}\n\u001b[0m\u001b[22m\n16:14:52.483 [info] Periodic from module Elixir.Block.Blocks.STMHandler.StoppingState"},{"event":"cmd_output","timestamp":1607098492,"output":" with name Elixir.Block.Blocks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.behold"},{"event":"cmd_output","timestamp":1607098492,"output":"er-wake_up\", [\"Block-Blocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stoppin"},{"event":"cmd_output","timestamp":1607098492,"output":"g\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"stoppi"},{"event":"cmd_output","timestamp":1607098492,"output":"ng\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :s"},{"event":"cmd_output","timestamp":1607098492,"output":"tate, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098492,"output":"[22m\n16:14:52.484 [info] Periodic from module Elixir.Block.Tasks.STMHandler.PendingState with name"},{"event":"cmd_output","timestamp":1607098492,"output":" Elixir.Block.Tasks.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\","},{"event":"cmd_output","timestamp":1607098492,"output":" [\"Block-Tasks-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], co"},{"event":"cmd_output","timestamp":1607098492,"output":"oling_time_sec: 0, initial_query: Block.Tasks.Model.Tasks, observed_state: \"pending\", publisher_cb: "},{"event":"cmd_output","timestamp":1607098492,"output":":skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_cou"},{"event":"cmd_output","timestamp":1607098492,"output":"nt, :block_id, :build_request_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098492,"output":"2m\n16:14:52.484 [info] Periodic from module Elixir.Block.Tasks.STMHandler.RunningState with name E"},{"event":"cmd_output","timestamp":1607098492,"output":"lixir.Block.Tasks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", ["},{"event":"cmd_output","timestamp":1607098492,"output":"\"Block-Tasks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \""},{"event":"cmd_output","timestamp":1607098492,"output":"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"running\", pub"},{"event":"cmd_output","timestamp":1607098492,"output":"lisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :r"},{"event":"cmd_output","timestamp":1607098492,"output":"ecovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098492,"output":"4:52.484 [info] Periodic from module Elixir.Block.Tasks.STMHandler.StoppingState with name Elixir.B"},{"event":"cmd_output","timestamp":1607098492,"output":"lock.Tasks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block"},{"event":"cmd_output","timestamp":1607098492,"output":"-Tasks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_"},{"event":"cmd_output","timestamp":1607098492,"output":"time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"stopping\", publisher_cb: :ski"},{"event":"cmd_output","timestamp":1607098492,"output":"p, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, "},{"event":"cmd_output","timestamp":1607098492,"output":":block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:52.596 [info]"},{"event":"cmd_output","timestamp":1607098492,"output":" ppl_id: 190155ea-b6fc-4ba6-8f46-11f260b3f42b, type: PplRequests, event: persisted source_args for "},{"event":"cmd_output","timestamp":1607098492,"output":"pipeline: 190155ea-b6fc-4ba6-8f46-11f260b3f42b, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQuer"},{"event":"cmd_output","timestamp":1607098492,"output":"ies.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:14:52.599 [info] ppl_id: 190155ea-b6fc-4ba6-8f46-11f260b3"},{"event":"cmd_output","timestamp":1607098492,"output":"f42b, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098492,"output":"Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:52.622 [info] ppl_id: 190155ea-b6fc-4ba"},{"event":"cmd_output","timestamp":1607098492,"output":"6-8f46-11f260b3f42b, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count:"},{"event":"cmd_output","timestamp":1607098492,"output":" 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:52.641 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098492,"output":": 190155ea-b6fc-4ba6-8f46-11f260b3f42b, type: PplRequests, event: persisted definition for request w"},{"event":"cmd_output","timestamp":1607098492,"output":"ith request_token: d7214a26-364b-11eb-b75a-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplReq"},{"event":"cmd_output","timestamp":1607098492,"output":"uestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:14:52.643 [info] Queue persisted: {:ok, %Ppl"},{"event":"cmd_output","timestamp":1607098492,"output":".Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 "},{"event":"cmd_output","timestamp":1607098492,"output":"16:14:52.642386], name: \"master-.semaphore/semaphore.yml\", organization_id: \"96c0d88b-fa03-449e-a998"},{"event":"cmd_output","timestamp":1607098492,"output":"-72eadb5ba0af\", project_id: \"ce45fc4b-dc71-4ff1-947d-b156d049f734\", queue_id: \"6ef4a1da-8e35-42d8-b8"},{"event":"cmd_output","timestamp":1607098492,"output":"01-1c5c518320ec\", scope: \"project\", updated_at: ~N[2020-12-04 16:14:52.642394], user_generated: fals"},{"event":"cmd_output","timestamp":1607098492,"output":"e}}\n\u001b[0m\u001b[22m\n16:14:52.650 [info] ppl_id: not_available, event: created, origin: Elixir.Ppl.PplSu"},{"event":"cmd_output","timestamp":1607098492,"output":"bInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:52.650 [info] event: created"},{"event":"cmd_output","timestamp":1607098492,"output":", origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:52."},{"event":"cmd_output","timestamp":1607098492,"output":"650 [info] ppl_id: 190155ea-b6fc-4ba6-8f46-11f260b3f42b, type: PplBlocks, block_index: 0, state: in"},{"event":"cmd_output","timestamp":1607098492,"output":"itializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInit"},{"event":"cmd_output","timestamp":1607098492,"output":"State.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:52.650 [info] ppl_id: 190155ea-b6fc-4ba6-8f46-11f260b3f42"},{"event":"cmd_output","timestamp":1607098492,"output":"b, type: PplBlocks, block_index: 1, state: initializing, event: created, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098492,"output":"Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:52.650 [info]"},{"event":"cmd_output","timestamp":1607098492,"output":" ppl_id: 190155ea-b6fc-4ba6-8f46-11f260b3f42b, type: PplBlocks, block_index: 2, state: initializing"},{"event":"cmd_output","timestamp":1607098492,"output":", event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_"},{"event":"cmd_output","timestamp":1607098492,"output":"ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:52.652 [info] ppl_id: 190155ea-b6fc-4ba6-8f46-11f260b3f42b, type: P"},{"event":"cmd_output","timestamp":1607098492,"output":"plSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098492,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:52.657 [info] ppl_id: 190155ea-b6fc-4ba6"},{"event":"cmd_output","timestamp":1607098492,"output":"-8f46-11f260b3f42b, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: E"},{"event":"cmd_output","timestamp":1607098492,"output":"lixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:52.660 [info] ppl_id: 190155ea-b6"},{"event":"cmd_output","timestamp":1607098492,"output":"fc-4ba6-8f46-11f260b3f42b, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, "},{"event":"cmd_output","timestamp":1607098492,"output":"recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:52.665"},{"event":"cmd_output","timestamp":1607098492,"output":" [info] ppl_id: 190155ea-b6fc-4ba6-8f46-11f260b3f42b, type: Ppls, state: queuing, event: exit_sched"},{"event":"cmd_output","timestamp":1607098492,"output":"uling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14"},{"event":"cmd_output","timestamp":1607098492,"output":":52.667 [info] ppl_id: 190155ea-b6fc-4ba6-8f46-11f260b3f42b, type: PplBlocks, block_index: 1, state"},{"event":"cmd_output","timestamp":1607098492,"output":": waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chang"},{"event":"cmd_output","timestamp":1607098492,"output":"e/1(L90), \n\u001b[0m\u001b[22m\n16:14:52.673 [info] ppl_id: 190155ea-b6fc-4ba6-8f46-11f260b3f42b, type: PplB"},{"event":"cmd_output","timestamp":1607098492,"output":"locks, block_index: 2, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loo"},{"event":"cmd_output","timestamp":1607098492,"output":"per.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:52.673 [info] ppl_id: 190155ea-b6fc-4ba6-8"},{"event":"cmd_output","timestamp":1607098492,"output":"f46-11f260b3f42b, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098492,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:52.680 [info] PplBlocks WaitingStat"},{"event":"cmd_output","timestamp":1607098492,"output":"e STM is scheduling block 0 from pipeline: \"190155ea-b6fc-4ba6-8f46-11f260b3f42b\"\n\u001b[0m\u001b[22m\n16:14:"},{"event":"cmd_output","timestamp":1607098492,"output":"52.684 [info] block_id: fd6bd319-f584-43bf-9072-a94270990fbe, type: BlockRequests, event: persisted"},{"event":"cmd_output","timestamp":1607098492,"output":" block run request from ppl 190155ea-b6fc-4ba6-8f46-11f260b3f42b for block 0, origin: Elixir.Block.B"},{"event":"cmd_output","timestamp":1607098492,"output":"lockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:14:52.686 [info] b"},{"event":"cmd_output","timestamp":1607098492,"output":"lock_id: fd6bd319-f584-43bf-9072-a94270990fbe, type: Blocks, state: initializing, event: initializin"},{"event":"cmd_output","timestamp":1607098492,"output":"g, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098492,"output":":14:52.689 [info] Block 0 of pipeline with id: 190155ea-b6fc-4ba6-8f46-11f260b3f42b scheduled in bl"},{"event":"cmd_output","timestamp":1607098492,"output":"ock service with id: : \"fd6bd319-f584-43bf-9072-a94270990fbe\"\n\u001b[0m\u001b[22m\n16:14:52.694 [info] block"},{"event":"cmd_output","timestamp":1607098492,"output":"_id: fd6bd319-f584-43bf-9072-a94270990fbe, type: BlockRequests, event: persisted build and sub_ppl d"},{"event":"cmd_output","timestamp":1607098492,"output":"etails for block_request: fd6bd319-f584-43bf-9072-a94270990fbe, origin: Elixir.Block.BlockRequests.M"},{"event":"cmd_output","timestamp":1607098492,"output":"odel.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:14:52.695 [info] ppl_id: 190155ea-b6"},{"event":"cmd_output","timestamp":1607098492,"output":"fc-4ba6-8f46-11f260b3f42b, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, "},{"event":"cmd_output","timestamp":1607098492,"output":"recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:52.697"},{"event":"cmd_output","timestamp":1607098492,"output":" [info] block_id: fd6bd319-f584-43bf-9072-a94270990fbe, type: Tasks, state: pending, event: created"},{"event":"cmd_output","timestamp":1607098492,"output":", recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098492,"output":"m\u001b[22m\n16:14:52.707 [info] block_id: fd6bd319-f584-43bf-9072-a94270990fbe, type: Blocks, state: ru"},{"event":"cmd_output","timestamp":1607098492,"output":"nning, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1("},{"event":"cmd_output","timestamp":1607098492,"output":"L90), \n\u001b[0m\u001b[22m\n16:14:52.715 [info] block_id: fd6bd319-f584-43bf-9072-a94270990fbe, type: Tasks,"},{"event":"cmd_output","timestamp":1607098492,"output":" state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state"},{"event":"cmd_output","timestamp":1607098492,"output":"_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:52.811 [info] block_id: fd6bd319-f584-43bf-9072-a94270990fbe, ty"},{"event":"cmd_output","timestamp":1607098492,"output":"pe: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.lo"},{"event":"cmd_output","timestamp":1607098492,"output":"g_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:52.818 [info] block_id: fd6bd319-f584-43bf-9072-a94270990"},{"event":"cmd_output","timestamp":1607098492,"output":"fbe, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM"},{"event":"cmd_output","timestamp":1607098492,"output":".Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:52.825 [info] ppl_id: 190155ea-b6fc-4ba6-8f46-11f"},{"event":"cmd_output","timestamp":1607098492,"output":"260b3f42b, block_id: fd6bd319-f584-43bf-9072-a94270990fbe, type: PplBlocks, block_index: 0, state: d"},{"event":"cmd_output","timestamp":1607098492,"output":"one, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_s"},{"event":"cmd_output","timestamp":1607098492,"output":"tate_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:52.829 [info] PplBlocks WaitingState STM is scheduling block"},{"event":"cmd_output","timestamp":1607098492,"output":" 1 from pipeline: \"190155ea-b6fc-4ba6-8f46-11f260b3f42b\"\n\u001b[0m\u001b[22m\n16:14:52.836 [info] ppl_id: 19"},{"event":"cmd_output","timestamp":1607098492,"output":"0155ea-b6fc-4ba6-8f46-11f260b3f42b, type: PplBlocks, block_index: 1, state: done, result: passed, ev"},{"event":"cmd_output","timestamp":1607098492,"output":"ent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b"},{"event":"cmd_output","timestamp":1607098492,"output":"[0m\u001b[22m\n16:14:52.840 [info] PplBlocks WaitingState STM is scheduling block 2 from pipeline: \"1901"},{"event":"cmd_output","timestamp":1607098492,"output":"55ea-b6fc-4ba6-8f46-11f260b3f42b\"\n\u001b[0m\u001b[22m\n16:14:52.845 [info] block_id: e1b42bb3-2fbf-4449-a9f7"},{"event":"cmd_output","timestamp":1607098492,"output":"-32ef2277ae28, type: BlockRequests, event: persisted block run request from ppl 190155ea-b6fc-4ba6-8"},{"event":"cmd_output","timestamp":1607098492,"output":"f46-11f260b3f42b for block 2, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_"},{"event":"cmd_output","timestamp":1607098492,"output":"response/4(L35), \n\u001b[0m\u001b[22m\n16:14:52.846 [info] block_id: e1b42bb3-2fbf-4449-a9f7-32ef2277ae28, t"},{"event":"cmd_output","timestamp":1607098492,"output":"ype: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Block"},{"event":"cmd_output","timestamp":1607098492,"output":"s.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:14:52.846 [info] Block 2 of pipeline with id: "},{"event":"cmd_output","timestamp":1607098492,"output":"190155ea-b6fc-4ba6-8f46-11f260b3f42b scheduled in block service with id: : \"e1b42bb3-2fbf-4449-a9f7-"},{"event":"cmd_output","timestamp":1607098492,"output":"32ef2277ae28\"\n\u001b[0m\u001b[22m\n16:14:52.849 [info] ppl_id: 190155ea-b6fc-4ba6-8f46-11f260b3f42b, type: P"},{"event":"cmd_output","timestamp":1607098492,"output":"plBlocks, block_index: 2, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098492,"output":"Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:52.853 [info] block_id: e1b42bb3-2fbf-4"},{"event":"cmd_output","timestamp":1607098492,"output":"449-a9f7-32ef2277ae28, type: BlockRequests, event: persisted build and sub_ppl details for block_req"},{"event":"cmd_output","timestamp":1607098492,"output":"uest: e1b42bb3-2fbf-4449-a9f7-32ef2277ae28, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQu"},{"event":"cmd_output","timestamp":1607098492,"output":"eries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:14:52.855 [info] block_id: e1b42bb3-2fbf-4449-a9f7-32ef2"},{"event":"cmd_output","timestamp":1607098492,"output":"277ae28, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks"},{"event":"cmd_output","timestamp":1607098492,"output":".STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:14:52.856 [info] block_id: e1b42bb3-"},{"event":"cmd_output","timestamp":1607098492,"output":"2fbf-4449-a9f7-32ef2277ae28, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0"},{"event":"cmd_output","timestamp":1607098492,"output":", origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:52.866 [info] block_id"},{"event":"cmd_output","timestamp":1607098492,"output":": e1b42bb3-2fbf-4449-a9f7-32ef2277ae28, type: Tasks, state: running, event: exit_scheduling, recover"},{"event":"cmd_output","timestamp":1607098492,"output":"y_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:52.921 [info]"},{"event":"cmd_output","timestamp":1607098492,"output":" block_id: e1b42bb3-2fbf-4449-a9f7-32ef2277ae28, type: Tasks, state: done, event: exit_scheduling, "},{"event":"cmd_output","timestamp":1607098492,"output":"recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:52.925"},{"event":"cmd_output","timestamp":1607098492,"output":" [info] block_id: e1b42bb3-2fbf-4449-a9f7-32ef2277ae28, type: Blocks, state: done, event: exit_sche"},{"event":"cmd_output","timestamp":1607098492,"output":"duling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098492,"output":"4:52.930 [info] ppl_id: 190155ea-b6fc-4ba6-8f46-11f260b3f42b, block_id: e1b42bb3-2fbf-4449-a9f7-32e"},{"event":"cmd_output","timestamp":1607098492,"output":"f2277ae28, type: PplBlocks, block_index: 2, state: done, result: passed, event: exit_scheduling, rec"},{"event":"cmd_output","timestamp":1607098492,"output":"overy_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:52.947 [i"},{"event":"cmd_output","timestamp":1607098492,"output":"nfo] ppl_id: 190155ea-b6fc-4ba6-8f46-11f260b3f42b, type: Ppls, state: done, result: passed, event: "},{"event":"cmd_output","timestamp":1607098493,"output":"exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098493,"output":"32m\r * test pipeline with valid expressions in all when conditions passes (580.7ms)\u001b[0m\n * test p"},{"event":"cmd_output","timestamp":1607098493,"output":"ipeline with invalid expression in one of when conditions finishes as malformed\u001b[22m\n16:14:53.047 ["},{"event":"cmd_output","timestamp":1607098493,"output":"info] Request: 'run: %{:file_name => \"invalid_when_cond.yml\", :repo_name => \"22_skip_block\", \"branc"},{"event":"cmd_output","timestamp":1607098493,"output":"h_id\" => \"3168ac49-1605-4be8-9169-ec6b5ac9a357\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4"},{"event":"cmd_output","timestamp":1607098493,"output":"469\", \"file_name\" => \"semaphore.yml\", \"hook_id\" => \"d779bb8e-364b-11eb-a297-5254005464e2\", \"label\" ="},{"event":"cmd_output","timestamp":1607098493,"output":"> \"master\", \"organization_id\" => \"77ac0fe3-1d6e-4631-8693-0ec5f145db27\", \"owner\" => \"rt\", \"project_i"},{"event":"cmd_output","timestamp":1607098493,"output":"d\" => \"92c5eee6-d2b1-4e28-9ba0-ad76cdacc8fb\", \"repo_name\" => \"2_basic\", \"request_token\" => \"d779b350"},{"event":"cmd_output","timestamp":1607098493,"output":"-364b-11eb-aeff-5254005464e2\", \"requester_id\" => \"8f0caf97-8b70-4aa3-a800-9c154d180653\", \"service\" ="},{"event":"cmd_output","timestamp":1607098493,"output":"> \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"444883c6-fb63-4"},{"event":"cmd_output","timestamp":1607098493,"output":"b3c-b9f5-13661b9947e0\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:14:53.049 [info] ppl_id: 3b78"},{"event":"cmd_output","timestamp":1607098493,"output":"7676-6218-4883-9559-c71b1ef83e50, type: PplRequests, event: persisted schedule request with request_"},{"event":"cmd_output","timestamp":1607098493,"output":"token: d779b350-364b-11eb-aeff-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries"},{"event":"cmd_output","timestamp":1607098493,"output":".process_response/2(L55), \n\u001b[0m\u001b[22m\n16:14:53.057 [info] ppl_id: 3b787676-6218-4883-9559-c71b1ef8"},{"event":"cmd_output","timestamp":1607098493,"output":"3e50, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Pp"},{"event":"cmd_output","timestamp":1607098493,"output":"ls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:14:53.061 [info] Project 92c5eee6-d2"},{"event":"cmd_output","timestamp":1607098493,"output":"b1-4e28-9ba0-ad76cdacc8fb and branch masterlatest_wf details updated: \"wf_id: 444883c6-fb63-4b3c-b9f"},{"event":"cmd_output","timestamp":1607098493,"output":"5-13661b9947e0, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:14:53.063 [info] Persisted ppl_sub_init for pipeline w"},{"event":"cmd_output","timestamp":1607098493,"output":"ith ppl_id: 3b787676-6218-4883-9559-c71b1ef83e50: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto"},{"event":"cmd_output","timestamp":1607098493,"output":".Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 3"},{"event":"cmd_output","timestamp":1607098493,"output":"49, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:14:53.061355], pipelin"},{"event":"cmd_output","timestamp":1607098493,"output":"e_requests: #Ecto.Association.NotLoaded, ppl_id: \"3b78"},{"event":"cmd_output","timestamp":1607098493,"output":"7676-6218-4883-9559-c71b1ef83e50\", recovery_count: 0, result: nil, result_reason: nil, state: \"creat"},{"event":"cmd_output","timestamp":1607098493,"output":"ed\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:14:53.061361]"},{"event":"cmd_output","timestamp":1607098493,"output":"}\n\u001b[0m\u001b[22m\n16:14:53.067 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingState"},{"event":"cmd_output","timestamp":1607098493,"output":" with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.behold"},{"event":"cmd_output","timestamp":1607098493,"output":"er-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initial"},{"event":"cmd_output","timestamp":1607098493,"output":"izing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state:"},{"event":"cmd_output","timestamp":1607098493,"output":" \"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args"},{"event":"cmd_output","timestamp":1607098493,"output":"/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recover"},{"event":"cmd_output","timestamp":1607098493,"output":"y_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:53.067 [in"},{"event":"cmd_output","timestamp":1607098493,"output":"fo] Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandl"},{"event":"cmd_output","timestamp":1607098493,"output":"er.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Pendi"},{"event":"cmd_output","timestamp":1607098493,"output":"ngState\"]}, recurring args: %{allowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_tim"},{"event":"cmd_output","timestamp":1607098493,"output":"e_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publisher_cb: #Function<0.8"},{"event":"cmd_output","timestamp":1607098493,"output":"493005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminat"},{"event":"cmd_output","timestamp":1607098493,"output":"e_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, tas"},{"event":"cmd_output","timestamp":1607098493,"output":"k_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:14:53.068 [info] Periodic from module Elixir.Ppl.P"},{"event":"cmd_output","timestamp":1607098493,"output":"pls.STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, met"},{"event":"cmd_output","timestamp":1607098493,"output":"ric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{allowed_"},{"event":"cmd_output","timestamp":1607098493,"output":"states: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, ob"},{"event":"cmd_output","timestamp":1607098493,"output":"served_state: \"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.a"},{"event":"cmd_output","timestamp":1607098493,"output":"rgs/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :reco"},{"event":"cmd_output","timestamp":1607098493,"output":"very_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:53.068 "},{"event":"cmd_output","timestamp":1607098493,"output":"[info] Periodic from module Elixir.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHa"},{"event":"cmd_output","timestamp":1607098493,"output":"ndler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Ru"},{"event":"cmd_output","timestamp":1607098493,"output":"nningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: "},{"event":"cmd_output","timestamp":1607098493,"output":"-2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"running\", publisher_cb: #Function<0.7467028"},{"event":"cmd_output","timestamp":1607098493,"output":"2/1 in Ppl.Ppls.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_req"},{"event":"cmd_output","timestamp":1607098493,"output":"uest, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_sup"},{"event":"cmd_output","timestamp":1607098493,"output":"ervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:14:53.068 [info] Periodic from module Elixir.Ppl.Ppls.S"},{"event":"cmd_output","timestamp":1607098493,"output":"TMHandler.StoppingState with name Elixir.Ppl.Ppls.STMHandler.StoppingState :: period: 100 ms, metric"},{"event":"cmd_output","timestamp":1607098493,"output":"_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring args: %{allowed_st"},{"event":"cmd_output","timestamp":1607098493,"output":"ates: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state"},{"event":"cmd_output","timestamp":1607098493,"output":": \"stopping\", publisher_cb: #Function<0.71803493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, rep"},{"event":"cmd_output","timestamp":1607098493,"output":"o: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count,"},{"event":"cmd_output","timestamp":1607098493,"output":" :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:53.069 [info] Per"},{"event":"cmd_output","timestamp":1607098493,"output":"iodic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.ST"},{"event":"cmd_output","timestamp":1607098493,"output":"MHandler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STM"},{"event":"cmd_output","timestamp":1607098493,"output":"Handler-CreatedState\"]}, recurring args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0"},{"event":"cmd_output","timestamp":1607098493,"output":", initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip, "},{"event":"cmd_output","timestamp":1607098493,"output":"repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_cou"},{"event":"cmd_output","timestamp":1607098493,"output":"nt, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:5"},{"event":"cmd_output","timestamp":1607098493,"output":"3.069 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir."},{"event":"cmd_output","timestamp":1607098493,"output":"Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\""},{"event":"cmd_output","timestamp":1607098493,"output":"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"com"},{"event":"cmd_output","timestamp":1607098493,"output":"pilation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed"},{"event":"cmd_output","timestamp":1607098493,"output":"_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :u"},{"event":"cmd_output","timestamp":1607098493,"output":"pdated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, ta"},{"event":"cmd_output","timestamp":1607098493,"output":"sk_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:53.069 [info] Periodic from module Elixir.Ppl.PplSubInits.S"},{"event":"cmd_output","timestamp":1607098493,"output":"TMHandler.CompilationState with name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 1"},{"event":"cmd_output","timestamp":1607098493,"output":"00 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recur"},{"event":"cmd_output","timestamp":1607098493,"output":"ring args: %{allowed_states: [\"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: "},{"event":"cmd_output","timestamp":1607098493,"output":"-2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"compilation\", publisher_cb: :"},{"event":"cmd_output","timestamp":1607098493,"output":"skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recove"},{"event":"cmd_output","timestamp":1607098493,"output":"ry_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098493,"output":"6:14:53.069 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with nam"},{"event":"cmd_output","timestamp":1607098493,"output":"e Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-"},{"event":"cmd_output","timestamp":1607098493,"output":"wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurring args: %{allowed_states: [\"done"},{"event":"cmd_output","timestamp":1607098493,"output":"\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_"},{"event":"cmd_output","timestamp":1607098493,"output":"init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :s"},{"event":"cmd_output","timestamp":1607098493,"output":"tate, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor"},{"event":"cmd_output","timestamp":1607098493,"output":": :skip}\n\u001b[0m\u001b[22m\n16:14:53.070 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.Initi"},{"event":"cmd_output","timestamp":1607098493,"output":"alizingState with name Elixir.Ppl.PplBlocks.STMHandler.InitializingState :: period: 100 ms, metric_n"},{"event":"cmd_output","timestamp":1607098493,"output":"ame: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-InitializingState\"]}, recurring args: %{all"},{"event":"cmd_output","timestamp":1607098493,"output":"owed_states: [\"initializing\", \"waiting\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks."},{"event":"cmd_output","timestamp":1607098493,"output":"Model.PplBlocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning:"},{"event":"cmd_output","timestamp":1607098493,"output":" [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], sc"},{"event":"cmd_output","timestamp":1607098493,"output":"hema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:53.070 [info] Period"},{"event":"cmd_output","timestamp":1607098493,"output":"ic from module Elixir.Ppl.PplBlocks.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandle"},{"event":"cmd_output","timestamp":1607098493,"output":"r.WaitingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-"},{"event":"cmd_output","timestamp":1607098493,"output":"WaitingState\"]}, recurring args: %{allowed_states: [\"waiting\", \"running\", \"done\"], cooling_time_sec:"},{"event":"cmd_output","timestamp":1607098493,"output":" 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"waiting\", publisher_cb: #Function"},{"event":"cmd_output","timestamp":1607098493,"output":"<0.8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, "},{"event":"cmd_output","timestamp":1607098493,"output":":terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: P"},{"event":"cmd_output","timestamp":1607098493,"output":"pl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:53.070 [info] Periodic from"},{"event":"cmd_output","timestamp":1607098493,"output":" module Elixir.Ppl.PplBlocks.STMHandler.RunningState with name Elixir.Ppl.PplBlocks.STMHandler.Runni"},{"event":"cmd_output","timestamp":1607098493,"output":"ngState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-Running"},{"event":"cmd_output","timestamp":1607098493,"output":"State\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, i"},{"event":"cmd_output","timestamp":1607098493,"output":"nitial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"running\", publisher_cb: #Function<0.28"},{"event":"cmd_output","timestamp":1607098493,"output":"166834/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :ter"},{"event":"cmd_output","timestamp":1607098493,"output":"minate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], sc"},{"event":"cmd_output","timestamp":1607098493,"output":"hema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:53.070 [info] Period"},{"event":"cmd_output","timestamp":1607098493,"output":"ic from module Elixir.Ppl.PplBlocks.STMHandler.StoppingState with name Elixir.Ppl.PplBlocks.STMHandl"},{"event":"cmd_output","timestamp":1607098493,"output":"er.StoppingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandle"},{"event":"cmd_output","timestamp":1607098493,"output":"r-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, in"},{"event":"cmd_output","timestamp":1607098493,"output":"itial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"stopping\", publisher_cb: #Function<0.10"},{"event":"cmd_output","timestamp":1607098493,"output":"4215991/1 in Ppl.PplBlocks.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :t"},{"event":"cmd_output","timestamp":1607098493,"output":"erminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], "},{"event":"cmd_output","timestamp":1607098493,"output":"schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:53.070 [info] Peri"},{"event":"cmd_output","timestamp":1607098493,"output":"odic from module Elixir.Block.Blocks.STMHandler.InitializingState with name Elixir.Block.Blocks.STMH"},{"event":"cmd_output","timestamp":1607098493,"output":"andler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STM"},{"event":"cmd_output","timestamp":1607098493,"output":"Handler-InitializingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_se"},{"event":"cmd_output","timestamp":1607098493,"output":"c: 0, initial_query: Block.Blocks.Model.Blocks, observed_state: \"initializing\", publisher_cb: :skip,"},{"event":"cmd_output","timestamp":1607098493,"output":" repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :b"},{"event":"cmd_output","timestamp":1607098493,"output":"lock_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:53.070 [info]"},{"event":"cmd_output","timestamp":1607098493,"output":" Periodic from module Elixir.Block.Blocks.STMHandler.RunningState with name Elixir.Block.Blocks.STM"},{"event":"cmd_output","timestamp":1607098493,"output":"Handler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHand"},{"event":"cmd_output","timestamp":1607098493,"output":"ler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time"},{"event":"cmd_output","timestamp":1607098493,"output":"_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"running\", publisher_cb: :skip, "},{"event":"cmd_output","timestamp":1607098493,"output":"repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :bl"},{"event":"cmd_output","timestamp":1607098493,"output":"ock_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:53.070 [info] "},{"event":"cmd_output","timestamp":1607098493,"output":" Periodic from module Elixir.Block.Blocks.STMHandler.StoppingState with name Elixir.Block.Blocks.STM"},{"event":"cmd_output","timestamp":1607098493,"output":"Handler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHan"},{"event":"cmd_output","timestamp":1607098493,"output":"dler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2,"},{"event":"cmd_output","timestamp":1607098493,"output":" initial_query: Block.Blocks.Model.Blocks, observed_state: \"stopping\", publisher_cb: :skip, repo: Bl"},{"event":"cmd_output","timestamp":1607098493,"output":"ock.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id],"},{"event":"cmd_output","timestamp":1607098493,"output":" schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:53.070 [info] Periodi"},{"event":"cmd_output","timestamp":1607098493,"output":"c from module Elixir.Block.Tasks.STMHandler.PendingState with name Elixir.Block.Tasks.STMHandler.Pen"},{"event":"cmd_output","timestamp":1607098493,"output":"dingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingS"},{"event":"cmd_output","timestamp":1607098493,"output":"tate\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: "},{"event":"cmd_output","timestamp":1607098493,"output":"Block.Tasks.Model.Tasks, observed_state: \"pending\", publisher_cb: :skip, repo: Block.EctoRepo, retur"},{"event":"cmd_output","timestamp":1607098493,"output":"ning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id, :build_request_id],"},{"event":"cmd_output","timestamp":1607098493,"output":" schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:53.071 [info] Periodic "},{"event":"cmd_output","timestamp":1607098493,"output":"from module Elixir.Block.Tasks.STMHandler.RunningState with name Elixir.Block.Tasks.STMHandler.Runni"},{"event":"cmd_output","timestamp":1607098493,"output":"ngState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningSta"},{"event":"cmd_output","timestamp":1607098493,"output":"te\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, init"},{"event":"cmd_output","timestamp":1607098493,"output":"ial_query: Block.Tasks.Model.Tasks, observed_state: \"running\", publisher_cb: :skip, repo: Block.Ecto"},{"event":"cmd_output","timestamp":1607098493,"output":"Repo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema:"},{"event":"cmd_output","timestamp":1607098493,"output":" Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:53.071 [info] Periodic from mod"},{"event":"cmd_output","timestamp":1607098493,"output":"ule Elixir.Block.Tasks.STMHandler.StoppingState with name Elixir.Block.Tasks.STMHandler.StoppingStat"},{"event":"cmd_output","timestamp":1607098493,"output":"e :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]}"},{"event":"cmd_output","timestamp":1607098493,"output":", recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block"},{"event":"cmd_output","timestamp":1607098493,"output":".Tasks.Model.Tasks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning"},{"event":"cmd_output","timestamp":1607098493,"output":": [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Mo"},{"event":"cmd_output","timestamp":1607098493,"output":"del.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:53.183 [info] ppl_id: 3b787676-6218-4883-9559-"},{"event":"cmd_output","timestamp":1607098493,"output":"c71b1ef83e50, type: PplRequests, event: persisted source_args for pipeline: 3b787676-6218-4883-9559-"},{"event":"cmd_output","timestamp":1607098493,"output":"c71b1ef83e50, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098493,"output":"22m\n16:14:53.184 [info] ppl_id: 3b787676-6218-4883-9559-c71b1ef83e50, type: PplSubInits, state: fe"},{"event":"cmd_output","timestamp":1607098493,"output":"tching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1"},{"event":"cmd_output","timestamp":1607098493,"output":"(L90), \n\u001b[0m\u001b[22m\n16:14:53.203 [info] ppl_id: 3b787676-6218-4883-9559-c71b1ef83e50, type: PplSubI"},{"event":"cmd_output","timestamp":1607098493,"output":"nits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl"},{"event":"cmd_output","timestamp":1607098493,"output":".log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:53.214 [info] ppl_id: 3b787676-6218-4883-9559-c71b1ef8"},{"event":"cmd_output","timestamp":1607098493,"output":"3e50, type: PplSubInits, state: done, result: failed, event: exit_scheduling, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098493,"output":"gin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:53.223 [info] ppl_id: 3b787"},{"event":"cmd_output","timestamp":1607098493,"output":"676-6218-4883-9559-c71b1ef83e50, type: Ppls, state: done, result: failed, event: exit_scheduling, re"},{"event":"cmd_output","timestamp":1607098493,"output":"covery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test pipeli"},{"event":"cmd_output","timestamp":1607098493,"output":"ne with invalid expression in one of when conditions finishes as malformed (285.1ms)\u001b[0m\n\nPpl.Defi"},{"event":"cmd_output","timestamp":1607098493,"output":"nitionReviser.JobsGodfather.Test\n * test jobs with duplicate names fail validation\u001b[22m\n16:14:53."},{"event":"cmd_output","timestamp":1607098493,"output":"338 [info] Request: 'run: %{:repo_name => \"21_jobs_with_duplicate_names\", \"branch_id\" => \"b56ae277-"},{"event":"cmd_output","timestamp":1607098493,"output":"a0a1-42a1-8366-e52a689b0d1b\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469\", \"file_name\" ="},{"event":"cmd_output","timestamp":1607098493,"output":"> \"semaphore.yml\", \"hook_id\" => \"d7a61ecc-364b-11eb-b34d-5254005464e2\", \"label\" => \"master\", \"organi"},{"event":"cmd_output","timestamp":1607098493,"output":"zation_id\" => \"e80f1e9a-c1e9-471a-b868-9381bc7dd3ad\", \"owner\" => \"rt\", \"project_id\" => \"804fd4ad-a4e"},{"event":"cmd_output","timestamp":1607098493,"output":"0-4160-9182-e254e62da4ac\", \"repo_name\" => \"2_basic\", \"request_token\" => \"d7a6160c-364b-11eb-8935-525"},{"event":"cmd_output","timestamp":1607098493,"output":"4005464e2\", \"requester_id\" => \"62fcca87-c015-49fa-aee5-4a2d67df5661\", \"service\" => \"local\", \"suppres"},{"event":"cmd_output","timestamp":1607098493,"output":"sed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"a4846773-964a-4f2d-a1c1-fdcfd9b113"},{"event":"cmd_output","timestamp":1607098493,"output":"75\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:14:53.340 [info] ppl_id: 22b6c18f-8917-44ac-b75c"},{"event":"cmd_output","timestamp":1607098493,"output":"-149e5848240a, type: PplRequests, event: persisted schedule request with request_token: d7a6160c-364"},{"event":"cmd_output","timestamp":1607098493,"output":"b-11eb-8935-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2"},{"event":"cmd_output","timestamp":1607098493,"output":"(L55), \n\u001b[0m\u001b[22m\n16:14:53.341 [info] ppl_id: 22b6c18f-8917-44ac-b75c-149e5848240a, type: Ppls, s"},{"event":"cmd_output","timestamp":1607098493,"output":"tate: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQuerie"},{"event":"cmd_output","timestamp":1607098493,"output":"s.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:14:53.349 [info] Project 804fd4ad-a4e0-4160-9182-e254e6"},{"event":"cmd_output","timestamp":1607098493,"output":"2da4ac and branch masterlatest_wf details updated: \"wf_id: a4846773-964a-4f2d-a1c1-fdcfd9b11375, wf_"},{"event":"cmd_output","timestamp":1607098493,"output":"number: 1\"\n\u001b[0m\u001b[22m\n16:14:53.350 [info] Persisted ppl_sub_init for pipeline with ppl_id: 22b6c18"},{"event":"cmd_output","timestamp":1607098493,"output":"f-8917-44ac-b75c-149e5848240a: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:l"},{"event":"cmd_output","timestamp":1607098493,"output":"oaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 350, in_scheduling: "},{"event":"cmd_output","timestamp":1607098493,"output":"false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:14:53.349156], pipeline_requests: #Ecto.A"},{"event":"cmd_output","timestamp":1607098493,"output":"ssociation.NotLoaded, ppl_id: \"22b6c18f-8917-44ac-b75c"},{"event":"cmd_output","timestamp":1607098493,"output":"-149e5848240a\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_requ"},{"event":"cmd_output","timestamp":1607098493,"output":"est: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:14:53.349160]}\n\u001b[0m\u001b[22m\n16:14"},{"event":"cmd_output","timestamp":1607098493,"output":":53.353 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingState with name Elixir.P"},{"event":"cmd_output","timestamp":1607098493,"output":"pl.Ppls.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-"},{"event":"cmd_output","timestamp":1607098493,"output":"Ppls-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"pending\", "},{"event":"cmd_output","timestamp":1607098493,"output":"\"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", pu"},{"event":"cmd_output","timestamp":1607098493,"output":"blisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.Ecto"},{"event":"cmd_output","timestamp":1607098493,"output":"Repo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], "},{"event":"cmd_output","timestamp":1607098493,"output":"schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:53.353 [info] Periodic from "},{"event":"cmd_output","timestamp":1607098493,"output":"module Elixir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler.PendingState :: "},{"event":"cmd_output","timestamp":1607098493,"output":"period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurri"},{"event":"cmd_output","timestamp":1607098493,"output":"ng args: %{allowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_sec: 0, initial_q"},{"event":"cmd_output","timestamp":1607098493,"output":"uery: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098493,"output":"s.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated"},{"event":"cmd_output","timestamp":1607098493,"output":"_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsT"},{"event":"cmd_output","timestamp":1607098493,"output":"askSupervisor}\n\u001b[0m\u001b[22m\n16:14:53.354 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.Queu"},{"event":"cmd_output","timestamp":1607098493,"output":"ingState with name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, metric_name: {\"Ppl.beh"},{"event":"cmd_output","timestamp":1607098493,"output":"older-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{allowed_states: [\"queuing\","},{"event":"cmd_output","timestamp":1607098493,"output":" \"running\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"queu"},{"event":"cmd_output","timestamp":1607098493,"output":"ing\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.args/0>, repo: Ppl.E"},{"event":"cmd_output","timestamp":1607098493,"output":"ctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id"},{"event":"cmd_output","timestamp":1607098493,"output":"], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:53.355 [info] Periodic fr"},{"event":"cmd_output","timestamp":1607098493,"output":"om module Elixir.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHandler.RunningState "},{"event":"cmd_output","timestamp":1607098493,"output":":: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recu"},{"event":"cmd_output","timestamp":1607098493,"output":"rring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: "},{"event":"cmd_output","timestamp":1607098493,"output":"Ppl.Ppls.Model.Ppls, observed_state: \"running\", publisher_cb: #Function<0.74670282/1 in Ppl.Ppls.STM"},{"event":"cmd_output","timestamp":1607098493,"output":"Handler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, "},{"event":"cmd_output","timestamp":1607098493,"output":":state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSu"},{"event":"cmd_output","timestamp":1607098493,"output":"pervisor}\n\u001b[0m\u001b[22m\n16:14:53.355 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.StoppingS"},{"event":"cmd_output","timestamp":1607098493,"output":"tate with name Elixir.Ppl.Ppls.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.behold"},{"event":"cmd_output","timestamp":1607098493,"output":"er-wake_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", "},{"event":"cmd_output","timestamp":1607098493,"output":"\"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"stopping\", publi"},{"event":"cmd_output","timestamp":1607098493,"output":"sher_cb: #Function<0.71803493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, re"},{"event":"cmd_output","timestamp":1607098493,"output":"turning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: "},{"event":"cmd_output","timestamp":1607098493,"output":"Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:53.355 [info] Periodic from module E"},{"event":"cmd_output","timestamp":1607098493,"output":"lixir.Ppl.PplSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHandler.CreatedSta"},{"event":"cmd_output","timestamp":1607098493,"output":"te :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedStat"},{"event":"cmd_output","timestamp":1607098493,"output":"e\"]}, recurring args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Pp"},{"event":"cmd_output","timestamp":1607098493,"output":"l.PplSubInits.Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo,"},{"event":"cmd_output","timestamp":1607098493,"output":" returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schem"},{"event":"cmd_output","timestamp":1607098493,"output":"a: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:53.356 [info] Perio"},{"event":"cmd_output","timestamp":1607098493,"output":"dic from module Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl.PplSubInits.STM"},{"event":"cmd_output","timestamp":1607098493,"output":"Handler.FetchingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STM"},{"event":"cmd_output","timestamp":1607098493,"output":"Handler-FetchingState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"done\"],"},{"event":"cmd_output","timestamp":1607098493,"output":" cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fetching\","},{"event":"cmd_output","timestamp":1607098493,"output":" publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, "},{"event":"cmd_output","timestamp":1607098493,"output":":result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :ski"},{"event":"cmd_output","timestamp":1607098493,"output":"p}\n\u001b[0m\u001b[22m\n16:14:53.356 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.Compilati"},{"event":"cmd_output","timestamp":1607098493,"output":"onState with name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 100 ms, metric_name:"},{"event":"cmd_output","timestamp":1607098493,"output":" {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurring args: %{allowe"},{"event":"cmd_output","timestamp":1607098493,"output":"d_states: [\"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: "},{"event":"cmd_output","timestamp":1607098493,"output":"Ppl.PplSubInits.Model.PplSubInits, observed_state: \"compilation\", publisher_cb: :skip, repo: Ppl.Ect"},{"event":"cmd_output","timestamp":1607098493,"output":"oRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id],"},{"event":"cmd_output","timestamp":1607098493,"output":" schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:53.356 [info] "},{"event":"cmd_output","timestamp":1607098493,"output":" Periodic from module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with name Elixir.Ppl.PplSub"},{"event":"cmd_output","timestamp":1607098493,"output":"Inits.STMHandler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppl"},{"event":"cmd_output","timestamp":1607098493,"output":"SubInits-STMHandler-RegularInitState\"]}, recurring args: %{allowed_states: [\"done\"], cooling_time_se"},{"event":"cmd_output","timestamp":1607098493,"output":"c: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_init\", publisher_cb"},{"event":"cmd_output","timestamp":1607098493,"output":": :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :rec"},{"event":"cmd_output","timestamp":1607098493,"output":"overy_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098493,"output":"\n16:14:53.357 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.InitializingState with n"},{"event":"cmd_output","timestamp":1607098493,"output":"ame Elixir.Ppl.PplBlocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder"},{"event":"cmd_output","timestamp":1607098493,"output":"-wake_up\", [\"Ppl-PplBlocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"init"},{"event":"cmd_output","timestamp":1607098493,"output":"ializing\", \"waiting\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, ob"},{"event":"cmd_output","timestamp":1607098493,"output":"served_state: \"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_r"},{"event":"cmd_output","timestamp":1607098493,"output":"equest, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks"},{"event":"cmd_output","timestamp":1607098493,"output":".Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:53.357 [info] Periodic from module Elix"},{"event":"cmd_output","timestamp":1607098493,"output":"ir.Ppl.PplBlocks.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler.WaitingState :: p"},{"event":"cmd_output","timestamp":1607098493,"output":"eriod: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, re"},{"event":"cmd_output","timestamp":1607098493,"output":"curring args: %{allowed_states: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: "},{"event":"cmd_output","timestamp":1607098493,"output":"Ppl.PplBlocks.Model.PplBlocks, observed_state: \"waiting\", publisher_cb: #Function<0.8975022/1 in Ppl"},{"event":"cmd_output","timestamp":1607098493,"output":".PplBlocks.STMHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request,"},{"event":"cmd_output","timestamp":1607098493,"output":" :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model."},{"event":"cmd_output","timestamp":1607098493,"output":"PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:53.358 [info] Periodic from module Elixir.Ppl."},{"event":"cmd_output","timestamp":1607098493,"output":"PplBlocks.STMHandler.RunningState with name Elixir.Ppl.PplBlocks.STMHandler.RunningState :: period: "},{"event":"cmd_output","timestamp":1607098493,"output":"1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, recurring"},{"event":"cmd_output","timestamp":1607098493,"output":" args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.P"},{"event":"cmd_output","timestamp":1607098493,"output":"plBlocks.Model.PplBlocks, observed_state: \"running\", publisher_cb: #Function<0.28166834/1 in Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098493,"output":"Blocks.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :up"},{"event":"cmd_output","timestamp":1607098493,"output":"dated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks"},{"event":"cmd_output","timestamp":1607098493,"output":".Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:53.359 [info] Periodic from module Elix"},{"event":"cmd_output","timestamp":1607098493,"output":"ir.Ppl.PplBlocks.STMHandler.StoppingState with name Elixir.Ppl.PplBlocks.STMHandler.StoppingState ::"},{"event":"cmd_output","timestamp":1607098493,"output":" period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-StoppingState\"]},"},{"event":"cmd_output","timestamp":1607098493,"output":" recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Pp"},{"event":"cmd_output","timestamp":1607098493,"output":"lBlocks.Model.PplBlocks, observed_state: \"stopping\", publisher_cb: #Function<0.104215991/1 in Ppl.Pp"},{"event":"cmd_output","timestamp":1607098493,"output":"lBlocks.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :"},{"event":"cmd_output","timestamp":1607098493,"output":"updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBloc"},{"event":"cmd_output","timestamp":1607098493,"output":"ks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:53.359 [info] Periodic from module El"},{"event":"cmd_output","timestamp":1607098493,"output":"ixir.Block.Blocks.STMHandler.InitializingState with name Elixir.Block.Blocks.STMHandler.Initializing"},{"event":"cmd_output","timestamp":1607098493,"output":"State :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-Initializin"},{"event":"cmd_output","timestamp":1607098493,"output":"gState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query"},{"event":"cmd_output","timestamp":1607098493,"output":": Block.Blocks.Model.Blocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Block.EctoRe"},{"event":"cmd_output","timestamp":1607098493,"output":"po, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: B"},{"event":"cmd_output","timestamp":1607098493,"output":"lock.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:53.359 [info] Periodic from mod"},{"event":"cmd_output","timestamp":1607098493,"output":"ule Elixir.Block.Blocks.STMHandler.RunningState with name Elixir.Block.Blocks.STMHandler.RunningStat"},{"event":"cmd_output","timestamp":1607098493,"output":"e :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-RunningState\"]}"},{"event":"cmd_output","timestamp":1607098493,"output":", recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_q"},{"event":"cmd_output","timestamp":1607098493,"output":"uery: Block.Blocks.Model.Blocks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRep"},{"event":"cmd_output","timestamp":1607098493,"output":"o, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Bl"},{"event":"cmd_output","timestamp":1607098493,"output":"ock.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:53.359 [info] Periodic from modu"},{"event":"cmd_output","timestamp":1607098493,"output":"le Elixir.Block.Blocks.STMHandler.StoppingState with name Elixir.Block.Blocks.STMHandler.StoppingSta"},{"event":"cmd_output","timestamp":1607098493,"output":"te :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-StoppingState\""},{"event":"cmd_output","timestamp":1607098493,"output":"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Blo"},{"event":"cmd_output","timestamp":1607098493,"output":"ck.Blocks.Model.Blocks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, retur"},{"event":"cmd_output","timestamp":1607098493,"output":"ning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Bloc"},{"event":"cmd_output","timestamp":1607098493,"output":"ks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:53.360 [info] Periodic from module Elixi"},{"event":"cmd_output","timestamp":1607098493,"output":"r.Block.Tasks.STMHandler.PendingState with name Elixir.Block.Tasks.STMHandler.PendingState :: period"},{"event":"cmd_output","timestamp":1607098493,"output":": 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingState\"]}, recurring "},{"event":"cmd_output","timestamp":1607098493,"output":"args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Tasks.Model.T"},{"event":"cmd_output","timestamp":1607098493,"output":"asks, observed_state: \"pending\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :termin"},{"event":"cmd_output","timestamp":1607098493,"output":"ate_request, :updated_at, :state, :recovery_count, :block_id, :build_request_id], schema: Block.Task"},{"event":"cmd_output","timestamp":1607098493,"output":"s.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:53.360 [info] Periodic from module Elixir."},{"event":"cmd_output","timestamp":1607098493,"output":"Block.Tasks.STMHandler.RunningState with name Elixir.Block.Tasks.STMHandler.RunningState :: period: "},{"event":"cmd_output","timestamp":1607098493,"output":"100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningState\"]}, recurring ar"},{"event":"cmd_output","timestamp":1607098493,"output":"gs: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Ta"},{"event":"cmd_output","timestamp":1607098493,"output":"sks.Model.Tasks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:"},{"event":"cmd_output","timestamp":1607098493,"output":"id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model."},{"event":"cmd_output","timestamp":1607098493,"output":"Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:53.361 [info] Periodic from module Elixir.Block.Ta"},{"event":"cmd_output","timestamp":1607098493,"output":"sks.STMHandler.StoppingState with name Elixir.Block.Tasks.STMHandler.StoppingState :: period: 100 ms"},{"event":"cmd_output","timestamp":1607098493,"output":", metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]}, recurring args: %"},{"event":"cmd_output","timestamp":1607098493,"output":"{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks,"},{"event":"cmd_output","timestamp":1607098493,"output":" observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_"},{"event":"cmd_output","timestamp":1607098493,"output":"request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_sup"},{"event":"cmd_output","timestamp":1607098493,"output":"ervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:53.472 [info] ppl_id: 22b6c18f-8917-44ac-b75c-149e5848240a, type:"},{"event":"cmd_output","timestamp":1607098493,"output":" PplRequests, event: persisted source_args for pipeline: 22b6c18f-8917-44ac-b75c-149e5848240a, origi"},{"event":"cmd_output","timestamp":1607098493,"output":"n: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:14:53.474 ["},{"event":"cmd_output","timestamp":1607098493,"output":"info] ppl_id: 22b6c18f-8917-44ac-b75c-149e5848240a, type: PplSubInits, state: fetching, event: exit"},{"event":"cmd_output","timestamp":1607098493,"output":"_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098493,"output":"\n16:14:53.497 [info] ppl_id: 22b6c18f-8917-44ac-b75c-149e5848240a, type: PplSubInits, state: regula"},{"event":"cmd_output","timestamp":1607098493,"output":"r_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1"},{"event":"cmd_output","timestamp":1607098493,"output":"(L90), \n\u001b[0m\u001b[22m\n16:14:53.525 [info] ppl_id: 22b6c18f-8917-44ac-b75c-149e5848240a, type: PplSubI"},{"event":"cmd_output","timestamp":1607098493,"output":"nits, state: done, result: failed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper."},{"event":"cmd_output","timestamp":1607098493,"output":"STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:53.534 [info] ppl_id: 22b6c18f-8917-44ac-b75c-"},{"event":"cmd_output","timestamp":1607098493,"output":"149e5848240a, type: Ppls, state: done, result: failed, event: exit_scheduling, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098493,"output":"igin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test jobs with duplicate names"},{"event":"cmd_output","timestamp":1607098493,"output":" fail validation (283.6ms)\u001b[0m\n * test jobs and boosters already named 'Nameless x'\r * test jobs "},{"event":"cmd_output","timestamp":1607098493,"output":"and boosters already named 'Nameless x' (skipped)\n * test jobs and boosters with all unique names "},{"event":"cmd_output","timestamp":1607098493,"output":"pass validation\r * test jobs and boosters with all unique names pass validation (skipped)\n * test"},{"event":"cmd_output","timestamp":1607098493,"output":" blank job names are filled\r * test blank job names are filled (skipped)\n * test boosters with du"},{"event":"cmd_output","timestamp":1607098493,"output":"plicate names fail validation\r * test boosters with duplicate names fail validation (skipped)\n * "},{"event":"cmd_output","timestamp":1607098493,"output":"test blank booster names are filled\r * test blank booster names are filled (skipped)\n * test boos"},{"event":"cmd_output","timestamp":1607098493,"output":"ter already named 'Nameless x'\r * test booster already named 'Nameless x' (skipped)\n * test jobs "},{"event":"cmd_output","timestamp":1607098493,"output":"and boosters together\r * test jobs and boosters together (skipped)\n * test jobs and boosters with"},{"event":"cmd_output","timestamp":1607098493,"output":" duplicate names fail validation\r * test jobs and boosters with duplicate names fail validation (sk"},{"event":"cmd_output","timestamp":1607098493,"output":"ipped)\n\nPpl.DefinitionReviser.Task2BuildTest\n * doctest Ppl.DefinitionReviser.Task2Build.rename/"},{"event":"cmd_output","timestamp":1607098493,"output":"1 (1)\r * doctest Ppl.DefinitionReviser.Task2Build.rename/1 (1) (skipped)\n * test rename\r * test "},{"event":"cmd_output","timestamp":1607098493,"output":"rename (skipped)\n\nPpl.DefinitionReviser.ImplicitDependency.Test\n * test convert implicit into ex"},{"event":"cmd_output","timestamp":1607098493,"output":"plicit dependencies\u001b[22m\n16:14:53.634 [info] Request: 'run: %{:repo_name => \"5_v1_full\", \"branch_i"},{"event":"cmd_output","timestamp":1607098493,"output":"d\" => \"aa4f0ea8-e060-48a9-8141-dcea2dd63447\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469"},{"event":"cmd_output","timestamp":1607098493,"output":"\", \"file_name\" => \"semaphore.yml\", \"hook_id\" => \"d7d34528-364b-11eb-99f1-5254005464e2\", \"label\" => \""},{"event":"cmd_output","timestamp":1607098493,"output":"master\", \"organization_id\" => \"b5972f20-8226-4677-a4a4-20017b708068\", \"owner\" => \"rt\", \"project_id\" "},{"event":"cmd_output","timestamp":1607098493,"output":"=> \"b8222f34-810f-4dd0-9302-b6a9ae13d2ca\", \"repo_name\" => \"2_basic\", \"request_token\" => \"d7d33d1c-36"},{"event":"cmd_output","timestamp":1607098493,"output":"4b-11eb-82d4-5254005464e2\", \"requester_id\" => \"de48e88e-a8eb-420c-b3ce-9731b4074347\", \"service\" => \""},{"event":"cmd_output","timestamp":1607098493,"output":"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"2b6f1f02-8e14-40e6"},{"event":"cmd_output","timestamp":1607098493,"output":"-8d0a-85f550a7a1b6\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:14:53.636 [info] ppl_id: 567a01a"},{"event":"cmd_output","timestamp":1607098493,"output":"3-db80-45b3-a71a-c25c7fc5f7da, type: PplRequests, event: persisted schedule request with request_tok"},{"event":"cmd_output","timestamp":1607098493,"output":"en: d7d33d1c-364b-11eb-82d4-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.pr"},{"event":"cmd_output","timestamp":1607098493,"output":"ocess_response/2(L55), \n\u001b[0m\u001b[22m\n16:14:53.638 [info] ppl_id: 567a01a3-db80-45b3-a71a-c25c7fc5f7d"},{"event":"cmd_output","timestamp":1607098493,"output":"a, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls."},{"event":"cmd_output","timestamp":1607098493,"output":"Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:14:53.641 [info] Project b8222f34-810f-"},{"event":"cmd_output","timestamp":1607098493,"output":"4dd0-9302-b6a9ae13d2ca and branch masterlatest_wf details updated: \"wf_id: 2b6f1f02-8e14-40e6-8d0a-8"},{"event":"cmd_output","timestamp":1607098493,"output":"5f550a7a1b6, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:14:53.641 [info] Persisted ppl_sub_init for pipeline with"},{"event":"cmd_output","timestamp":1607098493,"output":" ppl_id: 567a01a3-db80-45b3-a71a-c25c7fc5f7da: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Sc"},{"event":"cmd_output","timestamp":1607098493,"output":"hema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 351,"},{"event":"cmd_output","timestamp":1607098493,"output":" in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:14:53.641163], pipeline_r"},{"event":"cmd_output","timestamp":1607098493,"output":"equests: #Ecto.Association.NotLoaded, ppl_id: \"567a01a"},{"event":"cmd_output","timestamp":1607098493,"output":"3-db80-45b3-a71a-c25c7fc5f7da\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\""},{"event":"cmd_output","timestamp":1607098493,"output":", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:14:53.641169]}\n"},{"event":"cmd_output","timestamp":1607098493,"output":"\u001b[0m\u001b[22m\n16:14:53.645 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingState wi"},{"event":"cmd_output","timestamp":1607098493,"output":"th name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-"},{"event":"cmd_output","timestamp":1607098493,"output":"wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializi"},{"event":"cmd_output","timestamp":1607098493,"output":"ng\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"i"},{"event":"cmd_output","timestamp":1607098493,"output":"nitializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>"},{"event":"cmd_output","timestamp":1607098493,"output":", repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_c"},{"event":"cmd_output","timestamp":1607098493,"output":"ount, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:53.645 [info]"},{"event":"cmd_output","timestamp":1607098493,"output":" Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubIni"},{"event":"cmd_output","timestamp":1607098493,"output":"ts.STMHandler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInit"},{"event":"cmd_output","timestamp":1607098493,"output":"s-STMHandler-CreatedState\"]}, recurring args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_s"},{"event":"cmd_output","timestamp":1607098493,"output":"ec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"created\", publisher_cb: :s"},{"event":"cmd_output","timestamp":1607098493,"output":"kip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recover"},{"event":"cmd_output","timestamp":1607098493,"output":"y_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098493,"output":":14:53.645 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name El"},{"event":"cmd_output","timestamp":1607098493,"output":"ixir.Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up"},{"event":"cmd_output","timestamp":1607098493,"output":"\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %{allowed_states: [\"regular_init\","},{"event":"cmd_output","timestamp":1607098493,"output":" \"compilation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, obs"},{"event":"cmd_output","timestamp":1607098493,"output":"erved_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_reques"},{"event":"cmd_output","timestamp":1607098493,"output":"t, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInit"},{"event":"cmd_output","timestamp":1607098493,"output":"s, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:53.645 [info] Periodic from module Elixir.Ppl.PplSubIn"},{"event":"cmd_output","timestamp":1607098493,"output":"its.STMHandler.CompilationState with name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: peri"},{"event":"cmd_output","timestamp":1607098493,"output":"od: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, "},{"event":"cmd_output","timestamp":1607098493,"output":"recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_"},{"event":"cmd_output","timestamp":1607098493,"output":"sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"compilation\", publisher_"},{"event":"cmd_output","timestamp":1607098493,"output":"cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :r"},{"event":"cmd_output","timestamp":1607098493,"output":"ecovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098493,"output":"2m\n16:14:53.645 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState wit"},{"event":"cmd_output","timestamp":1607098493,"output":"h name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beho"},{"event":"cmd_output","timestamp":1607098493,"output":"lder-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurring args: %{allowed_states: ["},{"event":"cmd_output","timestamp":1607098493,"output":"\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"reg"},{"event":"cmd_output","timestamp":1607098493,"output":"ular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_a"},{"event":"cmd_output","timestamp":1607098493,"output":"t, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_super"},{"event":"cmd_output","timestamp":1607098493,"output":"visor: :skip}\n\u001b[0m\u001b[22m\n16:14:53.763 [info] ppl_id: 567a01a3-db80-45b3-a71a-c25c7fc5f7da, type: P"},{"event":"cmd_output","timestamp":1607098493,"output":"plRequests, event: persisted source_args for pipeline: 567a01a3-db80-45b3-a71a-c25c7fc5f7da, origin:"},{"event":"cmd_output","timestamp":1607098493,"output":" Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:14:53.765 [in"},{"event":"cmd_output","timestamp":1607098493,"output":"fo] ppl_id: 567a01a3-db80-45b3-a71a-c25c7fc5f7da, type: PplSubInits, state: fetching, event: exit_s"},{"event":"cmd_output","timestamp":1607098493,"output":"cheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098493,"output":"6:14:53.779 [info] ppl_id: 567a01a3-db80-45b3-a71a-c25c7fc5f7da, type: PplSubInits, state: regular_"},{"event":"cmd_output","timestamp":1607098493,"output":"init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098493,"output":"90), \n\u001b[0m\u001b[22m\n16:14:53.796 [info] ppl_id: 567a01a3-db80-45b3-a71a-c25c7fc5f7da, type: PplReques"},{"event":"cmd_output","timestamp":1607098493,"output":"ts, event: persisted definition for request with request_token: d7d33d1c-364b-11eb-82d4-5254005464e2"},{"event":"cmd_output","timestamp":1607098493,"output":", origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098493,"output":"14:53.800 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:l"},{"event":"cmd_output","timestamp":1607098493,"output":"oaded, \"queues\">, inserted_at: ~N[2020-12-04 16:14:53.799060], name: \"master-.semaphore/semaphore.ym"},{"event":"cmd_output","timestamp":1607098493,"output":"l\", organization_id: \"b5972f20-8226-4677-a4a4-20017b708068\", project_id: \"b8222f34-810f-4dd0-9302-b6"},{"event":"cmd_output","timestamp":1607098493,"output":"a9ae13d2ca\", queue_id: \"cedba0a6-dcc0-4e92-bac5-0a5c205755ba\", scope: \"project\", updated_at: ~N[2020"},{"event":"cmd_output","timestamp":1607098493,"output":"-12-04 16:14:53.799067], user_generated: false}}\n\u001b[0m\u001b[22m\n16:14:53.803 [info] ppl_id: not_availa"},{"event":"cmd_output","timestamp":1607098493,"output":"ble, event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b"},{"event":"cmd_output","timestamp":1607098493,"output":"[0m\u001b[22m\n16:14:53.803 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInit"},{"event":"cmd_output","timestamp":1607098493,"output":"State.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:53.804 [info] ppl_id: 567a01a3-db80-45b3-a71a-c25c7fc5f7d"},{"event":"cmd_output","timestamp":1607098493,"output":"a, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098493,"output":"Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:53.804 [info]"},{"event":"cmd_output","timestamp":1607098493,"output":" ppl_id: 567a01a3-db80-45b3-a71a-c25c7fc5f7da, type: PplBlocks, block_index: 1, state: initializing"},{"event":"cmd_output","timestamp":1607098493,"output":", event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_"},{"event":"cmd_output","timestamp":1607098493,"output":"ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:53.806 [info] ppl_id: 567a01a3-db80-45b3-a71a-c25c7fc5f7da, type: P"},{"event":"cmd_output","timestamp":1607098493,"output":"plSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098493,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:53.812 [info] ppl_id: 567a01a3-db80-45b3"},{"event":"cmd_output","timestamp":1607098493,"output":"-a71a-c25c7fc5f7da, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: E"},{"event":"cmd_output","timestamp":1607098493,"output":"lixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test convert implicit into explicit d"},{"event":"cmd_output","timestamp":1607098493,"output":"ependencies (286.5ms)\u001b[0m\n\nPpl.DefinitionReviser.BlocksReviser.Test\n * test BlocksReviser correc"},{"event":"cmd_output","timestamp":1607098493,"output":"tly sets ppl_env_vars when there are env vars in request\r * test BlocksReviser correctly sets ppl_e"},{"event":"cmd_output","timestamp":1607098493,"output":"nv_vars when there are env vars in request (skipped)\n * test priorities in global_job_config are p"},{"event":"cmd_output","timestamp":1607098493,"output":"roperly merged with the ones on job level\r * test priorities in global_job_config are properly merg"},{"event":"cmd_output","timestamp":1607098493,"output":"ed with the ones on job level (skipped)\n * test BlocksReviser correctly sets ppl_env_vars\r * test"},{"event":"cmd_output","timestamp":1607098493,"output":" BlocksReviser correctly sets ppl_env_vars (skipped)\n * test old style epilogue commands both in b"},{"event":"cmd_output","timestamp":1607098493,"output":"locks and global are transformed into always commands\r * test old style epilogue commands both in b"},{"event":"cmd_output","timestamp":1607098493,"output":"locks and global are transformed into always commands (skipped)\n * test BlocksReviser correctly se"},{"event":"cmd_output","timestamp":1607098493,"output":"ts ppl_env_vars when prev_ppl_artefact_ids is not empty\r * test BlocksReviser correctly sets ppl_en"},{"event":"cmd_output","timestamp":1607098493,"output":"v_vars when prev_ppl_artefact_ids is not empty (skipped)\n * test global always, on_pass and on_fai"},{"event":"cmd_output","timestamp":1607098493,"output":"l commands are read from cmd_files and merged with ones in block\r * test global always, on_pass and"},{"event":"cmd_output","timestamp":1607098493,"output":" on_fail commands are read from cmd_files and merged with ones in block (skipped)\n * test BlocksRe"},{"event":"cmd_output","timestamp":1607098493,"output":"viser correctly sets agent\r * test BlocksReviser correctly sets agent (skipped)\n * test prioritie"},{"event":"cmd_output","timestamp":1607098493,"output":"s only on job level => nothing is changed\r * test priorities only on job level => nothing is change"},{"event":"cmd_output","timestamp":1607098493,"output":"d (skipped)\n * test priorities only in global_job_config are exported into each job\r * test prior"},{"event":"cmd_output","timestamp":1607098493,"output":"ities only in global_job_config are exported into each job (skipped)\n * test BlocksReviser calls u"},{"event":"cmd_output","timestamp":1607098493,"output":"ser API and correctly sets promoted_by env var in promotions\r * test BlocksReviser calls user API a"},{"event":"cmd_output","timestamp":1607098493,"output":"nd correctly sets promoted_by env var in promotions (skipped)\n\nPpl.DefinitionReviser.BlocksReviser"},{"event":"cmd_output","timestamp":1607098493,"output":".GlobalJobConfig.Test\n * test Pipelines with various combinations of global and block level job co"},{"event":"cmd_output","timestamp":1607098493,"output":"nfigs are passing\u001b[22m\n16:14:53.891 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.Initial"},{"event":"cmd_output","timestamp":1607098493,"output":"izingState with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms, metric_name: {\""},{"event":"cmd_output","timestamp":1607098493,"output":"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %{allowed_states:"},{"event":"cmd_output","timestamp":1607098493,"output":" [\"initializing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, obser"},{"event":"cmd_output","timestamp":1607098493,"output":"ved_state: \"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.Initializing"},{"event":"cmd_output","timestamp":1607098493,"output":"State.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result"},{"event":"cmd_output","timestamp":1607098493,"output":", :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:"},{"event":"cmd_output","timestamp":1607098493,"output":"53.891 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098493,"output":"s.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHan"},{"event":"cmd_output","timestamp":1607098493,"output":"dler-PendingState\"]}, recurring args: %{allowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], c"},{"event":"cmd_output","timestamp":1607098493,"output":"ooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publisher_cb: #Fu"},{"event":"cmd_output","timestamp":1607098493,"output":"nction<0.8493005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id,"},{"event":"cmd_output","timestamp":1607098493,"output":" :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model"},{"event":"cmd_output","timestamp":1607098493,"output":".Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:14:53.891 [info] Periodic from module El"},{"event":"cmd_output","timestamp":1607098493,"output":"ixir.Ppl.Ppls.STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 1"},{"event":"cmd_output","timestamp":1607098493,"output":"00 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: "},{"event":"cmd_output","timestamp":1607098493,"output":"%{allowed_states: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Mode"},{"event":"cmd_output","timestamp":1607098493,"output":"l.Ppls, observed_state: \"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.Queu"},{"event":"cmd_output","timestamp":1607098493,"output":"ingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :res"},{"event":"cmd_output","timestamp":1607098493,"output":"ult, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098493,"output":"14:53.891 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl."},{"event":"cmd_output","timestamp":1607098493,"output":"Ppls.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STM"},{"event":"cmd_output","timestamp":1607098493,"output":"Handler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_"},{"event":"cmd_output","timestamp":1607098493,"output":"time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"running\", publisher_cb: #Function"},{"event":"cmd_output","timestamp":1607098493,"output":"<0.74670282/1 in Ppl.Ppls.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :ter"},{"event":"cmd_output","timestamp":1607098493,"output":"minate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls"},{"event":"cmd_output","timestamp":1607098493,"output":", task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:14:53.892 [info] Periodic from module Elixir."},{"event":"cmd_output","timestamp":1607098493,"output":"Ppl.Ppls.STMHandler.StoppingState with name Elixir.Ppl.Ppls.STMHandler.StoppingState :: period: 100 "},{"event":"cmd_output","timestamp":1607098493,"output":"ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring args: %{"},{"event":"cmd_output","timestamp":1607098493,"output":"allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, obse"},{"event":"cmd_output","timestamp":1607098493,"output":"rved_state: \"stopping\", publisher_cb: #Function<0.71803493/1 in Ppl.Ppls.STMHandler.StoppingState.ar"},{"event":"cmd_output","timestamp":1607098493,"output":"gs/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recov"},{"event":"cmd_output","timestamp":1607098493,"output":"ery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:53.892 ["},{"event":"cmd_output","timestamp":1607098493,"output":"info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplS"},{"event":"cmd_output","timestamp":1607098493,"output":"ubInits.STMHandler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSu"},{"event":"cmd_output","timestamp":1607098493,"output":"bInits-STMHandler-CreatedState\"]}, recurring args: %{allowed_states: [\"fetching\", \"done\"], cooling_t"},{"event":"cmd_output","timestamp":1607098493,"output":"ime_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"created\", publisher_c"},{"event":"cmd_output","timestamp":1607098493,"output":"b: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :re"},{"event":"cmd_output","timestamp":1607098493,"output":"covery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098493,"output":"m\n16:14:53.892 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.FetchingState with na"},{"event":"cmd_output","timestamp":1607098493,"output":"me Elixir.Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wa"},{"event":"cmd_output","timestamp":1607098493,"output":"ke_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %{allowed_states: [\"regular_i"},{"event":"cmd_output","timestamp":1607098493,"output":"nit\", \"compilation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits"},{"event":"cmd_output","timestamp":1607098493,"output":", observed_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_r"},{"event":"cmd_output","timestamp":1607098493,"output":"equest, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSu"},{"event":"cmd_output","timestamp":1607098493,"output":"bInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:53.892 [info] Periodic from module Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098493,"output":"SubInits.STMHandler.CompilationState with name Elixir.Ppl.PplSubInits.STMHandler.CompilationState ::"},{"event":"cmd_output","timestamp":1607098493,"output":" period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState"},{"event":"cmd_output","timestamp":1607098493,"output":"\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_"},{"event":"cmd_output","timestamp":1607098493,"output":"time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"compilation\", publi"},{"event":"cmd_output","timestamp":1607098493,"output":"sher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :resul"},{"event":"cmd_output","timestamp":1607098493,"output":"t, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b["},{"event":"cmd_output","timestamp":1607098493,"output":"0m\u001b[22m\n16:14:53.892 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.RegularInitStat"},{"event":"cmd_output","timestamp":1607098493,"output":"e with name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl"},{"event":"cmd_output","timestamp":1607098493,"output":".beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurring args: %{allowed_stat"},{"event":"cmd_output","timestamp":1607098493,"output":"es: [\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state:"},{"event":"cmd_output","timestamp":1607098493,"output":" \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :upda"},{"event":"cmd_output","timestamp":1607098493,"output":"ted_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_"},{"event":"cmd_output","timestamp":1607098493,"output":"supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:53.892 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHan"},{"event":"cmd_output","timestamp":1607098493,"output":"dler.InitializingState with name Elixir.Ppl.PplBlocks.STMHandler.InitializingState :: period: 100 ms"},{"event":"cmd_output","timestamp":1607098493,"output":", metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-InitializingState\"]}, recurring a"},{"event":"cmd_output","timestamp":1607098493,"output":"rgs: %{allowed_states: [\"initializing\", \"waiting\", \"done\"], cooling_time_sec: 0, initial_query: Ppl."},{"event":"cmd_output","timestamp":1607098493,"output":"PplBlocks.Model.PplBlocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, "},{"event":"cmd_output","timestamp":1607098493,"output":"returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_"},{"event":"cmd_output","timestamp":1607098493,"output":"index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:53.892 [inf"},{"event":"cmd_output","timestamp":1607098493,"output":"o] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks"},{"event":"cmd_output","timestamp":1607098493,"output":".STMHandler.WaitingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-S"},{"event":"cmd_output","timestamp":1607098493,"output":"TMHandler-WaitingState\"]}, recurring args: %{allowed_states: [\"waiting\", \"running\", \"done\"], cooling"},{"event":"cmd_output","timestamp":1607098493,"output":"_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"waiting\", publisher_cb:"},{"event":"cmd_output","timestamp":1607098493,"output":" #Function<0.8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, returni"},{"event":"cmd_output","timestamp":1607098493,"output":"ng: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index],"},{"event":"cmd_output","timestamp":1607098493,"output":" schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:53.892 [info] Per"},{"event":"cmd_output","timestamp":1607098493,"output":"iodic from module Elixir.Ppl.PplBlocks.STMHandler.RunningState with name Elixir.Ppl.PplBlocks.STMHan"},{"event":"cmd_output","timestamp":1607098493,"output":"dler.RunningState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandl"},{"event":"cmd_output","timestamp":1607098493,"output":"er-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_"},{"event":"cmd_output","timestamp":1607098493,"output":"sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"running\", publisher_cb: #Fun"},{"event":"cmd_output","timestamp":1607098493,"output":"ction<0.28166834/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: "},{"event":"cmd_output","timestamp":1607098493,"output":"[:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :blo"},{"event":"cmd_output","timestamp":1607098493,"output":"ck_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:53.892 [inf"},{"event":"cmd_output","timestamp":1607098493,"output":"o] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.StoppingState with name Elixir.Ppl.PplBlock"},{"event":"cmd_output","timestamp":1607098493,"output":"s.STMHandler.StoppingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks"},{"event":"cmd_output","timestamp":1607098493,"output":"-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_s"},{"event":"cmd_output","timestamp":1607098493,"output":"ec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"stopping\", publisher_cb: #Fun"},{"event":"cmd_output","timestamp":1607098493,"output":"ction<0.104215991/1 in Ppl.PplBlocks.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning"},{"event":"cmd_output","timestamp":1607098493,"output":": [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :b"},{"event":"cmd_output","timestamp":1607098493,"output":"lock_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:53.893 [i"},{"event":"cmd_output","timestamp":1607098493,"output":"nfo] Periodic from module Elixir.Block.Blocks.STMHandler.InitializingState with name Elixir.Block.B"},{"event":"cmd_output","timestamp":1607098493,"output":"locks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-"},{"event":"cmd_output","timestamp":1607098493,"output":"Blocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooli"},{"event":"cmd_output","timestamp":1607098493,"output":"ng_time_sec: 0, initial_query: Block.Blocks.Model.Blocks, observed_state: \"initializing\", publisher_"},{"event":"cmd_output","timestamp":1607098493,"output":"cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery"},{"event":"cmd_output","timestamp":1607098493,"output":"_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:53."},{"event":"cmd_output","timestamp":1607098493,"output":"893 [info] Periodic from module Elixir.Block.Blocks.STMHandler.RunningState with name Elixir.Block."},{"event":"cmd_output","timestamp":1607098493,"output":"Blocks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Bloc"},{"event":"cmd_output","timestamp":1607098493,"output":"ks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], co"},{"event":"cmd_output","timestamp":1607098493,"output":"oling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"running\", publisher_c"},{"event":"cmd_output","timestamp":1607098493,"output":"b: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_"},{"event":"cmd_output","timestamp":1607098493,"output":"count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:53.8"},{"event":"cmd_output","timestamp":1607098493,"output":"93 [info] Periodic from module Elixir.Block.Blocks.STMHandler.StoppingState with name Elixir.Block."},{"event":"cmd_output","timestamp":1607098493,"output":"Blocks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blo"},{"event":"cmd_output","timestamp":1607098493,"output":"cks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_tim"},{"event":"cmd_output","timestamp":1607098493,"output":"e_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"stopping\", publisher_cb: :skip"},{"event":"cmd_output","timestamp":1607098493,"output":", repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :"},{"event":"cmd_output","timestamp":1607098493,"output":"block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:53.893 [info"},{"event":"cmd_output","timestamp":1607098493,"output":"] Periodic from module Elixir.Block.Tasks.STMHandler.PendingState with name Elixir.Block.Tasks.STMH"},{"event":"cmd_output","timestamp":1607098493,"output":"andler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandle"},{"event":"cmd_output","timestamp":1607098493,"output":"r-PendingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initi"},{"event":"cmd_output","timestamp":1607098493,"output":"al_query: Block.Tasks.Model.Tasks, observed_state: \"pending\", publisher_cb: :skip, repo: Block.EctoR"},{"event":"cmd_output","timestamp":1607098493,"output":"epo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id, :build_re"},{"event":"cmd_output","timestamp":1607098493,"output":"quest_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:53.893 [info] "},{"event":"cmd_output","timestamp":1607098493,"output":" Periodic from module Elixir.Block.Tasks.STMHandler.RunningState with name Elixir.Block.Tasks.STMHan"},{"event":"cmd_output","timestamp":1607098493,"output":"dler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-"},{"event":"cmd_output","timestamp":1607098493,"output":"RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec"},{"event":"cmd_output","timestamp":1607098493,"output":": -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"running\", publisher_cb: :skip, repo: "},{"event":"cmd_output","timestamp":1607098493,"output":"Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id"},{"event":"cmd_output","timestamp":1607098493,"output":"], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:53.893 [info] Periodi"},{"event":"cmd_output","timestamp":1607098493,"output":"c from module Elixir.Block.Tasks.STMHandler.StoppingState with name Elixir.Block.Tasks.STMHandler.St"},{"event":"cmd_output","timestamp":1607098493,"output":"oppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-Stoppi"},{"event":"cmd_output","timestamp":1607098493,"output":"ngState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_qu"},{"event":"cmd_output","timestamp":1607098493,"output":"ery: Block.Tasks.Model.Tasks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo,"},{"event":"cmd_output","timestamp":1607098493,"output":" returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Bloc"},{"event":"cmd_output","timestamp":1607098493,"output":"k.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:53.904 [info] Request: 'run: %{:file"},{"event":"cmd_output","timestamp":1607098493,"output":"_name => \"cmd-files-both.yml\", :repo_name => \"25_global_job_config\", \"branch_id\" => \"561cc020-1795-4"},{"event":"cmd_output","timestamp":1607098493,"output":"010-a75a-8d1b5ac9693a\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"sem"},{"event":"cmd_output","timestamp":1607098493,"output":"aphore.yml\", \"hook_id\" => \"d7fb25b6-364b-11eb-b92d-5254005464e2\", \"label\" => \"master\", \"organization"},{"event":"cmd_output","timestamp":1607098493,"output":"_id\" => \"05940336-034e-4a15-935a-8893646a950f\", \"owner\" => \"rt\", \"project_id\" => \"bf8f9890-66a9-4eac"},{"event":"cmd_output","timestamp":1607098493,"output":"-85e4-448d9aa5cf98\", \"repo_name\" => \"2_basic\", \"request_token\" => \"d7fb1e86-364b-11eb-bb23-525400546"},{"event":"cmd_output","timestamp":1607098493,"output":"4e2\", \"requester_id\" => \"65a41354-dcd9-4967-968e-282c91bd64dd\", \"service\" => \"local\", \"suppressed_at"},{"event":"cmd_output","timestamp":1607098493,"output":"tributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"50c9cc30-7f82-4417-9cd8-5038208efc0d\", \""},{"event":"cmd_output","timestamp":1607098493,"output":"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:14:53.907 [info] ppl_id: c0ba3ed3-3755-4be7-8899-e6b47"},{"event":"cmd_output","timestamp":1607098493,"output":"de267fb, type: PplRequests, event: persisted schedule request with request_token: d7fb1e86-364b-11eb"},{"event":"cmd_output","timestamp":1607098493,"output":"-bb23-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55),"},{"event":"cmd_output","timestamp":1607098493,"output":" \n\u001b[0m\u001b[22m\n16:14:53.910 [info] ppl_id: c0ba3ed3-3755-4be7-8899-e6b47de267fb, type: Ppls, state: "},{"event":"cmd_output","timestamp":1607098493,"output":"initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.proc"},{"event":"cmd_output","timestamp":1607098493,"output":"ess_response/2(L124), \n\u001b[0m\u001b[22m\n16:14:53.913 [info] Project bf8f9890-66a9-4eac-85e4-448d9aa5cf98"},{"event":"cmd_output","timestamp":1607098493,"output":" and branch masterlatest_wf details updated: \"wf_id: 50c9cc30-7f82-4417-9cd8-5038208efc0d, wf_number"},{"event":"cmd_output","timestamp":1607098493,"output":": 1\"\n\u001b[0m\u001b[22m\n16:14:53.914 [info] Persisted ppl_sub_init for pipeline with ppl_id: c0ba3ed3-3755"},{"event":"cmd_output","timestamp":1607098493,"output":"-4be7-8899-e6b47de267fb: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded,"},{"event":"cmd_output","timestamp":1607098493,"output":" \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 352, in_scheduling: false,"},{"event":"cmd_output","timestamp":1607098493,"output":" init_type: \"regular\", inserted_at: ~N[2020-12-04 16:14:53.913259], pipeline_requests: #Ecto.Associa"},{"event":"cmd_output","timestamp":1607098493,"output":"tion.NotLoaded, ppl_id: \"c0ba3ed3-3755-4be7-8899-e6b47"},{"event":"cmd_output","timestamp":1607098493,"output":"de267fb\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: n"},{"event":"cmd_output","timestamp":1607098493,"output":"il, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:14:53.913264]}\n\u001b[0m\u001b[22m\n16:14:53.92"},{"event":"cmd_output","timestamp":1607098493,"output":"2 [info] ppl_id: c0ba3ed3-3755-4be7-8899-e6b47de267fb, type: PplRequests, event: persisted source_a"},{"event":"cmd_output","timestamp":1607098493,"output":"rgs for pipeline: c0ba3ed3-3755-4be7-8899-e6b47de267fb, origin: Elixir.Ppl.PplRequests.Model.PplRequ"},{"event":"cmd_output","timestamp":1607098493,"output":"estsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:14:53.924 [info] ppl_id: c0ba3ed3-3755-4be7-8899-"},{"event":"cmd_output","timestamp":1607098493,"output":"e6b47de267fb, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098493,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:53.936 [info] ppl_id: c0ba3ed3-"},{"event":"cmd_output","timestamp":1607098493,"output":"3755-4be7-8899-e6b47de267fb, type: PplSubInits, state: regular_init, event: exit_scheduling, recover"},{"event":"cmd_output","timestamp":1607098493,"output":"y_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:53.954 [info]"},{"event":"cmd_output","timestamp":1607098493,"output":" ppl_id: c0ba3ed3-3755-4be7-8899-e6b47de267fb, type: PplRequests, event: persisted definition for r"},{"event":"cmd_output","timestamp":1607098493,"output":"equest with request_token: d7fb1e86-364b-11eb-bb23-5254005464e2, origin: Elixir.Ppl.PplRequests.Mode"},{"event":"cmd_output","timestamp":1607098493,"output":"l.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:14:53.964 [info] Queue persisted: {:"},{"event":"cmd_output","timestamp":1607098493,"output":"ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[202"},{"event":"cmd_output","timestamp":1607098493,"output":"0-12-04 16:14:53.963724], name: \"master-.semaphore/semaphore.yml\", organization_id: \"05940336-034e-4"},{"event":"cmd_output","timestamp":1607098493,"output":"a15-935a-8893646a950f\", project_id: \"bf8f9890-66a9-4eac-85e4-448d9aa5cf98\", queue_id: \"726f8d3c-0da5"},{"event":"cmd_output","timestamp":1607098493,"output":"-4aff-88c6-615799bd70f6\", scope: \"project\", updated_at: ~N[2020-12-04 16:14:53.963732], user_generat"},{"event":"cmd_output","timestamp":1607098493,"output":"ed: false}}\n\u001b[0m\u001b[22m\n16:14:53.967 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandl"},{"event":"cmd_output","timestamp":1607098493,"output":"er.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:53.967 [info] ppl_id: c0ba3ed3-3755-4be7-88"},{"event":"cmd_output","timestamp":1607098493,"output":"99-e6b47de267fb, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_coun"},{"event":"cmd_output","timestamp":1607098493,"output":"t: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14"},{"event":"cmd_output","timestamp":1607098493,"output":":53.969 [info] ppl_id: c0ba3ed3-3755-4be7-8899-e6b47de267fb, type: PplSubInits, state: done, result"},{"event":"cmd_output","timestamp":1607098493,"output":": passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change"},{"event":"cmd_output","timestamp":1607098493,"output":"/1(L90), \n\u001b[0m\u001b[22m\n16:14:53.976 [info] ppl_id: c0ba3ed3-3755-4be7-8899-e6b47de267fb, type: Ppls,"},{"event":"cmd_output","timestamp":1607098493,"output":" state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state"},{"event":"cmd_output","timestamp":1607098493,"output":"_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:53.977 [info] ppl_id: c0ba3ed3-3755-4be7-8899-e6b47de267fb, type"},{"event":"cmd_output","timestamp":1607098493,"output":": PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098493,"output":"ir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:53.986 [info] ppl_id: c0ba3ed3-3755-"},{"event":"cmd_output","timestamp":1607098493,"output":"4be7-8899-e6b47de267fb, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098493,"output":"n: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:53.996 [info] ppl_id: c0ba3ed"},{"event":"cmd_output","timestamp":1607098493,"output":"3-3755-4be7-8899-e6b47de267fb, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0"},{"event":"cmd_output","timestamp":1607098494,"output":", origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:54.005 [info] PplBlock"},{"event":"cmd_output","timestamp":1607098494,"output":"s WaitingState STM is scheduling block 0 from pipeline: \"c0ba3ed3-3755-4be7-8899-e6b47de267fb\"\n\u001b[0m"},{"event":"cmd_output","timestamp":1607098494,"output":"\u001b[22m\n16:14:54.009 [info] block_id: 7347f3ab-cd29-4279-b03c-6d77684cf252, type: BlockRequests, eve"},{"event":"cmd_output","timestamp":1607098494,"output":"nt: persisted block run request from ppl c0ba3ed3-3755-4be7-8899-e6b47de267fb for block 0, origin: E"},{"event":"cmd_output","timestamp":1607098494,"output":"lixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:14:54."},{"event":"cmd_output","timestamp":1607098494,"output":"010 [info] block_id: 7347f3ab-cd29-4279-b03c-6d77684cf252, type: Blocks, state: initializing, event"},{"event":"cmd_output","timestamp":1607098494,"output":": initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n"},{"event":"cmd_output","timestamp":1607098494,"output":"\u001b[0m\u001b[22m\n16:14:54.013 [info] Block 0 of pipeline with id: c0ba3ed3-3755-4be7-8899-e6b47de267fb sc"},{"event":"cmd_output","timestamp":1607098494,"output":"heduled in block service with id: : \"7347f3ab-cd29-4279-b03c-6d77684cf252\"\n\u001b[0m\u001b[22m\n16:14:54.016 "},{"event":"cmd_output","timestamp":1607098494,"output":"[info] block_id: 7347f3ab-cd29-4279-b03c-6d77684cf252, type: BlockRequests, event: persisted build "},{"event":"cmd_output","timestamp":1607098494,"output":"and sub_ppl details for block_request: 7347f3ab-cd29-4279-b03c-6d77684cf252, origin: Elixir.Block.Bl"},{"event":"cmd_output","timestamp":1607098494,"output":"ockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:14:54.022 [info] block_"},{"event":"cmd_output","timestamp":1607098494,"output":"id: 7347f3ab-cd29-4279-b03c-6d77684cf252, type: Tasks, state: pending, event: created, recovery_coun"},{"event":"cmd_output","timestamp":1607098494,"output":"t: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:14:5"},{"event":"cmd_output","timestamp":1607098494,"output":"4.023 [info] ppl_id: c0ba3ed3-3755-4be7-8899-e6b47de267fb, type: PplBlocks, block_index: 0, state: "},{"event":"cmd_output","timestamp":1607098494,"output":"running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/"},{"event":"cmd_output","timestamp":1607098494,"output":"1(L90), \n\u001b[0m\u001b[22m\n16:14:54.024 [info] block_id: 7347f3ab-cd29-4279-b03c-6d77684cf252, type: Bloc"},{"event":"cmd_output","timestamp":1607098494,"output":"ks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_st"},{"event":"cmd_output","timestamp":1607098494,"output":"ate_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:54.042 [info] block_id: 7347f3ab-cd29-4279-b03c-6d77684cf252,"},{"event":"cmd_output","timestamp":1607098494,"output":" type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.I"},{"event":"cmd_output","timestamp":1607098494,"output":"mpl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:54.116 [info] block_id: 7347f3ab-cd29-4279-b03c-6d7"},{"event":"cmd_output","timestamp":1607098494,"output":"7684cf252, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loope"},{"event":"cmd_output","timestamp":1607098494,"output":"r.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:54.128 [info] block_id: 7347f3ab-cd29-4279-b"},{"event":"cmd_output","timestamp":1607098494,"output":"03c-6d77684cf252, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098494,"output":"ir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:54.134 [info] ppl_id: c0ba3ed3-3755-"},{"event":"cmd_output","timestamp":1607098494,"output":"4be7-8899-e6b47de267fb, block_id: 7347f3ab-cd29-4279-b03c-6d77684cf252, type: PplBlocks, block_index"},{"event":"cmd_output","timestamp":1607098494,"output":": 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.S"},{"event":"cmd_output","timestamp":1607098494,"output":"TM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:54.153 [info] ppl_id: c0ba3ed3-3755-4be7-8899-e"},{"event":"cmd_output","timestamp":1607098494,"output":"6b47de267fb, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098494,"output":"gin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:54.230 [info] Request: 'run"},{"event":"cmd_output","timestamp":1607098494,"output":": %{:file_name => \"cmd-file-commands.yml\", :repo_name => \"25_global_job_config\", \"branch_id\" => \"6d7"},{"event":"cmd_output","timestamp":1607098494,"output":"8a9d4-c52a-4efa-aa9b-e57ec92a1e26\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469\", \"file_n"},{"event":"cmd_output","timestamp":1607098494,"output":"ame\" => \"semaphore.yml\", \"hook_id\" => \"d82e46da-364b-11eb-9f96-5254005464e2\", \"label\" => \"master\", \""},{"event":"cmd_output","timestamp":1607098494,"output":"organization_id\" => \"55e8edd0-0724-482e-bbaa-f32ad5fddf03\", \"owner\" => \"rt\", \"project_id\" => \"e21522"},{"event":"cmd_output","timestamp":1607098494,"output":"3f-beb2-4037-b105-a9beafbca656\", \"repo_name\" => \"2_basic\", \"request_token\" => \"d82e3e56-364b-11eb-a3"},{"event":"cmd_output","timestamp":1607098494,"output":"a5-5254005464e2\", \"requester_id\" => \"67f74ea2-6f82-4e41-b788-e9843aec6843\", \"service\" => \"local\", \"s"},{"event":"cmd_output","timestamp":1607098494,"output":"uppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"da7f438c-0f4f-448e-b42d-a50a"},{"event":"cmd_output","timestamp":1607098494,"output":"52a9c65e\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:14:54.232 [info] ppl_id: d5ff1040-c011-4c5"},{"event":"cmd_output","timestamp":1607098494,"output":"4-a2d2-860711a37e25, type: PplRequests, event: persisted schedule request with request_token: d82e3e"},{"event":"cmd_output","timestamp":1607098494,"output":"56-364b-11eb-a3a5-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_resp"},{"event":"cmd_output","timestamp":1607098494,"output":"onse/2(L55), \n\u001b[0m\u001b[22m\n16:14:54.234 [info] ppl_id: d5ff1040-c011-4c54-a2d2-860711a37e25, type: P"},{"event":"cmd_output","timestamp":1607098494,"output":"pls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.Ppls"},{"event":"cmd_output","timestamp":1607098494,"output":"Queries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:14:54.237 [info] Project e215223f-beb2-4037-b105-"},{"event":"cmd_output","timestamp":1607098494,"output":"a9beafbca656 and branch masterlatest_wf details updated: \"wf_id: da7f438c-0f4f-448e-b42d-a50a52a9c65"},{"event":"cmd_output","timestamp":1607098494,"output":"e, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:14:54.238 [info] Persisted ppl_sub_init for pipeline with ppl_id: d"},{"event":"cmd_output","timestamp":1607098494,"output":"5ff1040-c011-4c54-a2d2-860711a37e25: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metad"},{"event":"cmd_output","timestamp":1607098494,"output":"ata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 353, in_schedu"},{"event":"cmd_output","timestamp":1607098494,"output":"ling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:14:54.237701], pipeline_requests: #"},{"event":"cmd_output","timestamp":1607098494,"output":"Ecto.Association.NotLoaded, ppl_id: \"d5ff1040-c011-4c5"},{"event":"cmd_output","timestamp":1607098494,"output":"4-a2d2-860711a37e25\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminat"},{"event":"cmd_output","timestamp":1607098494,"output":"e_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:14:54.237708]}\n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098494,"output":"\n16:14:54.249 [info] ppl_id: d5ff1040-c011-4c54-a2d2-860711a37e25, type: PplRequests, event: persis"},{"event":"cmd_output","timestamp":1607098494,"output":"ted source_args for pipeline: d5ff1040-c011-4c54-a2d2-860711a37e25, origin: Elixir.Ppl.PplRequests.M"},{"event":"cmd_output","timestamp":1607098494,"output":"odel.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:14:54.254 [info] ppl_id: d5ff1040-c01"},{"event":"cmd_output","timestamp":1607098494,"output":"1-4c54-a2d2-860711a37e25, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count"},{"event":"cmd_output","timestamp":1607098494,"output":": 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:54.268 [info] ppl_i"},{"event":"cmd_output","timestamp":1607098494,"output":"d: d5ff1040-c011-4c54-a2d2-860711a37e25, type: PplSubInits, state: regular_init, event: exit_schedul"},{"event":"cmd_output","timestamp":1607098494,"output":"ing, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:5"},{"event":"cmd_output","timestamp":1607098494,"output":"4.293 [info] ppl_id: d5ff1040-c011-4c54-a2d2-860711a37e25, type: PplRequests, event: persisted defi"},{"event":"cmd_output","timestamp":1607098494,"output":"nition for request with request_token: d82e3e56-364b-11eb-a3a5-5254005464e2, origin: Elixir.Ppl.PplR"},{"event":"cmd_output","timestamp":1607098494,"output":"equests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:14:54.296 [info] Queue p"},{"event":"cmd_output","timestamp":1607098494,"output":"ersisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserte"},{"event":"cmd_output","timestamp":1607098494,"output":"d_at: ~N[2020-12-04 16:14:54.295600], name: \"master-.semaphore/semaphore.yml\", organization_id: \"55e"},{"event":"cmd_output","timestamp":1607098494,"output":"8edd0-0724-482e-bbaa-f32ad5fddf03\", project_id: \"e215223f-beb2-4037-b105-a9beafbca656\", queue_id: \"2"},{"event":"cmd_output","timestamp":1607098494,"output":"948d0b3-5c86-4914-aed5-5e5ee246e36b\", scope: \"project\", updated_at: ~N[2020-12-04 16:14:54.295621], "},{"event":"cmd_output","timestamp":1607098494,"output":"user_generated: false}}\n\u001b[0m\u001b[22m\n16:14:54.300 [info] event: created, origin: Elixir.Ppl.PplSubIn"},{"event":"cmd_output","timestamp":1607098494,"output":"its.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:54.300 [info] ppl_id: d5ff1040-"},{"event":"cmd_output","timestamp":1607098494,"output":"c011-4c54-a2d2-860711a37e25, type: PplBlocks, block_index: 0, state: initializing, event: created, r"},{"event":"cmd_output","timestamp":1607098494,"output":"ecovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098494,"output":"\u001b[22m\n16:14:54.303 [info] ppl_id: d5ff1040-c011-4c54-a2d2-860711a37e25, type: PplSubInits, state: "},{"event":"cmd_output","timestamp":1607098494,"output":"done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_"},{"event":"cmd_output","timestamp":1607098494,"output":"state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:54.309 [info] ppl_id: d5ff1040-c011-4c54-a2d2-860711a37e25,"},{"event":"cmd_output","timestamp":1607098494,"output":" type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098494,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:54.311 [info] ppl_id: d5ff1040-"},{"event":"cmd_output","timestamp":1607098494,"output":"c011-4c54-a2d2-860711a37e25, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098494,"output":"origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:54.317 [info] ppl_id: d5"},{"event":"cmd_output","timestamp":1607098494,"output":"ff1040-c011-4c54-a2d2-860711a37e25, type: Ppls, state: queuing, event: exit_scheduling, recovery_cou"},{"event":"cmd_output","timestamp":1607098494,"output":"nt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:54.336 [info] ppl"},{"event":"cmd_output","timestamp":1607098494,"output":"_id: d5ff1040-c011-4c54-a2d2-860711a37e25, type: Ppls, state: running, event: exit_scheduling, recov"},{"event":"cmd_output","timestamp":1607098494,"output":"ery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:54.341 [inf"},{"event":"cmd_output","timestamp":1607098494,"output":"o] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"d5ff1040-c011-4c54-a2d2-860711a"},{"event":"cmd_output","timestamp":1607098494,"output":"37e25\"\n\u001b[0m\u001b[22m\n16:14:54.344 [info] block_id: a6b6984f-ef9f-43e3-a95d-e9b47f9cb292, type: BlockR"},{"event":"cmd_output","timestamp":1607098494,"output":"equests, event: persisted block run request from ppl d5ff1040-c011-4c54-a2d2-860711a37e25 for block "},{"event":"cmd_output","timestamp":1607098494,"output":"0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098494,"output":"m\n16:14:54.347 [info] block_id: a6b6984f-ef9f-43e3-a95d-e9b47f9cb292, type: Blocks, state: initial"},{"event":"cmd_output","timestamp":1607098494,"output":"izing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.inser"},{"event":"cmd_output","timestamp":1607098494,"output":"t/1(L43), \n\u001b[0m\u001b[22m\n16:14:54.349 [info] Block 0 of pipeline with id: d5ff1040-c011-4c54-a2d2-860"},{"event":"cmd_output","timestamp":1607098494,"output":"711a37e25 scheduled in block service with id: : \"a6b6984f-ef9f-43e3-a95d-e9b47f9cb292\"\n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098494,"output":"6:14:54.352 [info] ppl_id: d5ff1040-c011-4c54-a2d2-860711a37e25, type: PplBlocks, block_index: 0, s"},{"event":"cmd_output","timestamp":1607098494,"output":"tate: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098494,"output":"hange/1(L90), \n\u001b[0m\u001b[22m\n16:14:54.352 [info] block_id: a6b6984f-ef9f-43e3-a95d-e9b47f9cb292, type"},{"event":"cmd_output","timestamp":1607098494,"output":": BlockRequests, event: persisted build and sub_ppl details for block_request: a6b6984f-ef9f-43e3-a9"},{"event":"cmd_output","timestamp":1607098494,"output":"5d-e9b47f9cb292, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), "},{"event":"cmd_output","timestamp":1607098494,"output":"\n\u001b[0m\u001b[22m\n16:14:54.354 [info] block_id: a6b6984f-ef9f-43e3-a95d-e9b47f9cb292, type: Tasks, state"},{"event":"cmd_output","timestamp":1607098494,"output":": pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingSta"},{"event":"cmd_output","timestamp":1607098494,"output":"te.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:14:54.356 [info] block_id: a6b6984f-ef9f-43e3-a95d-e9b47f9cb292"},{"event":"cmd_output","timestamp":1607098494,"output":", type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM"},{"event":"cmd_output","timestamp":1607098494,"output":".Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:54.367 [info] block_id: a6b6984f-ef9f-43e3-a95d-e"},{"event":"cmd_output","timestamp":1607098494,"output":"9b47f9cb292, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098494,"output":"Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:54.429 [info] block_id: a6b6984f-ef9f-4"},{"event":"cmd_output","timestamp":1607098494,"output":"3e3-a95d-e9b47f9cb292, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098494,"output":"Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:54.439 [info] block_id: a6b6984f"},{"event":"cmd_output","timestamp":1607098494,"output":"-ef9f-43e3-a95d-e9b47f9cb292, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098494,"output":"origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:54.445 [info] ppl_id: d5"},{"event":"cmd_output","timestamp":1607098494,"output":"ff1040-c011-4c54-a2d2-860711a37e25, block_id: a6b6984f-ef9f-43e3-a95d-e9b47f9cb292, type: PplBlocks,"},{"event":"cmd_output","timestamp":1607098494,"output":" block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098494,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:54.457 [info] ppl_id: d5ff1040-c011"},{"event":"cmd_output","timestamp":1607098494,"output":"-4c54-a2d2-860711a37e25, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098494,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:54.551 [info] R"},{"event":"cmd_output","timestamp":1607098494,"output":"equest: 'run: %{:file_name => \"commands-both.yml\", :repo_name => \"25_global_job_config\", \"branch_id\""},{"event":"cmd_output","timestamp":1607098494,"output":" => \"9f77b02e-3438-49d7-bc77-6bda35b9c352\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469\","},{"event":"cmd_output","timestamp":1607098494,"output":" \"file_name\" => \"semaphore.yml\", \"hook_id\" => \"d85f1f08-364b-11eb-b0d7-5254005464e2\", \"label\" => \"ma"},{"event":"cmd_output","timestamp":1607098494,"output":"ster\", \"organization_id\" => \"5f7594f2-685a-40dd-88c3-115712562609\", \"owner\" => \"rt\", \"project_id\" =>"},{"event":"cmd_output","timestamp":1607098494,"output":" \"4488f671-d877-4911-ac28-c2b82c5051a7\", \"repo_name\" => \"2_basic\", \"request_token\" => \"d85f158a-364b"},{"event":"cmd_output","timestamp":1607098494,"output":"-11eb-bbcb-5254005464e2\", \"requester_id\" => \"baf3ae04-49cf-447e-bb4f-e8ea78a2ed01\", \"service\" => \"lo"},{"event":"cmd_output","timestamp":1607098494,"output":"cal\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"8f1f9ec1-c27d-42dc-a"},{"event":"cmd_output","timestamp":1607098494,"output":"b10-5529fc35f4f9\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:14:54.553 [info] ppl_id: 41ec6468-"},{"event":"cmd_output","timestamp":1607098494,"output":"fe76-4b27-b906-116b1a0e3322, type: PplRequests, event: persisted schedule request with request_token"},{"event":"cmd_output","timestamp":1607098494,"output":": d85f158a-364b-11eb-bbcb-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.proc"},{"event":"cmd_output","timestamp":1607098494,"output":"ess_response/2(L55), \n\u001b[0m\u001b[22m\n16:14:54.555 [info] ppl_id: 41ec6468-fe76-4b27-b906-116b1a0e3322,"},{"event":"cmd_output","timestamp":1607098494,"output":" type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Mo"},{"event":"cmd_output","timestamp":1607098494,"output":"del.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:14:54.558 [info] Project 4488f671-d877-49"},{"event":"cmd_output","timestamp":1607098494,"output":"11-ac28-c2b82c5051a7 and branch masterlatest_wf details updated: \"wf_id: 8f1f9ec1-c27d-42dc-ab10-552"},{"event":"cmd_output","timestamp":1607098494,"output":"9fc35f4f9, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:14:54.559 [info] Persisted ppl_sub_init for pipeline with p"},{"event":"cmd_output","timestamp":1607098494,"output":"pl_id: 41ec6468-fe76-4b27-b906-116b1a0e3322: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Sche"},{"event":"cmd_output","timestamp":1607098494,"output":"ma.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 354, i"},{"event":"cmd_output","timestamp":1607098494,"output":"n_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:14:54.558448], pipeline_req"},{"event":"cmd_output","timestamp":1607098494,"output":"uests: #Ecto.Association.NotLoaded, ppl_id: \"41ec6468-"},{"event":"cmd_output","timestamp":1607098494,"output":"fe76-4b27-b906-116b1a0e3322\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", "},{"event":"cmd_output","timestamp":1607098494,"output":"terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:14:54.558455]}\n\u001b["},{"event":"cmd_output","timestamp":1607098494,"output":"0m\u001b[22m\n16:14:54.574 [info] ppl_id: 41ec6468-fe76-4b27-b906-116b1a0e3322, type: PplRequests, event"},{"event":"cmd_output","timestamp":1607098494,"output":": persisted source_args for pipeline: 41ec6468-fe76-4b27-b906-116b1a0e3322, origin: Elixir.Ppl.PplRe"},{"event":"cmd_output","timestamp":1607098494,"output":"quests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:14:54.576 [info] ppl_id: 41ec"},{"event":"cmd_output","timestamp":1607098494,"output":"6468-fe76-4b27-b906-116b1a0e3322, type: PplSubInits, state: fetching, event: exit_scheduling, recove"},{"event":"cmd_output","timestamp":1607098494,"output":"ry_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:54.596 [info"},{"event":"cmd_output","timestamp":1607098494,"output":"] ppl_id: 41ec6468-fe76-4b27-b906-116b1a0e3322, type: PplSubInits, state: regular_init, event: exit"},{"event":"cmd_output","timestamp":1607098494,"output":"_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098494,"output":"\n16:14:54.618 [info] ppl_id: 41ec6468-fe76-4b27-b906-116b1a0e3322, type: PplRequests, event: persis"},{"event":"cmd_output","timestamp":1607098494,"output":"ted definition for request with request_token: d85f158a-364b-11eb-bbcb-5254005464e2, origin: Elixir."},{"event":"cmd_output","timestamp":1607098494,"output":"Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:14:54.623 [info] "},{"event":"cmd_output","timestamp":1607098494,"output":" Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">,"},{"event":"cmd_output","timestamp":1607098494,"output":" inserted_at: ~N[2020-12-04 16:14:54.622301], name: \"master-.semaphore/semaphore.yml\", organization_"},{"event":"cmd_output","timestamp":1607098494,"output":"id: \"5f7594f2-685a-40dd-88c3-115712562609\", project_id: \"4488f671-d877-4911-ac28-c2b82c5051a7\", queu"},{"event":"cmd_output","timestamp":1607098494,"output":"e_id: \"84dd9611-9b21-4281-a4cd-64a9fe9c62c8\", scope: \"project\", updated_at: ~N[2020-12-04 16:14:54.6"},{"event":"cmd_output","timestamp":1607098494,"output":"22308], user_generated: false}}\n\u001b[0m\u001b[22m\n16:14:54.628 [info] event: created, origin: Elixir.Ppl."},{"event":"cmd_output","timestamp":1607098494,"output":"PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:54.628 [info] ppl_id: 4"},{"event":"cmd_output","timestamp":1607098494,"output":"1ec6468-fe76-4b27-b906-116b1a0e3322, type: PplBlocks, block_index: 0, state: initializing, event: cr"},{"event":"cmd_output","timestamp":1607098494,"output":"eated, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105)"},{"event":"cmd_output","timestamp":1607098494,"output":", \n\u001b[0m\u001b[22m\n16:14:54.631 [info] ppl_id: 41ec6468-fe76-4b27-b906-116b1a0e3322, type: PplSubInits,"},{"event":"cmd_output","timestamp":1607098494,"output":" state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.I"},{"event":"cmd_output","timestamp":1607098494,"output":"mpl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:54.637 [info] ppl_id: 41ec6468-fe76-4b27-b906-116b1"},{"event":"cmd_output","timestamp":1607098494,"output":"a0e3322, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098494,"output":" origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:54.639 [info] ppl_id: 4"},{"event":"cmd_output","timestamp":1607098494,"output":"1ec6468-fe76-4b27-b906-116b1a0e3322, type: Ppls, state: pending, event: exit_scheduling, recovery_co"},{"event":"cmd_output","timestamp":1607098494,"output":"unt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:54.650 [info] pp"},{"event":"cmd_output","timestamp":1607098494,"output":"l_id: 41ec6468-fe76-4b27-b906-116b1a0e3322, type: Ppls, state: queuing, event: exit_scheduling, reco"},{"event":"cmd_output","timestamp":1607098494,"output":"very_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:54.659 [in"},{"event":"cmd_output","timestamp":1607098494,"output":"fo] ppl_id: 41ec6468-fe76-4b27-b906-116b1a0e3322, type: Ppls, state: running, event: exit_schedulin"},{"event":"cmd_output","timestamp":1607098494,"output":"g, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:54."},{"event":"cmd_output","timestamp":1607098494,"output":"666 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"41ec6468-fe76-4b27-b906"},{"event":"cmd_output","timestamp":1607098494,"output":"-116b1a0e3322\"\n\u001b[0m\u001b[22m\n16:14:54.670 [info] block_id: c62a0fb0-9900-412a-b855-000de3cc6a42, type"},{"event":"cmd_output","timestamp":1607098494,"output":": BlockRequests, event: persisted block run request from ppl 41ec6468-fe76-4b27-b906-116b1a0e3322 fo"},{"event":"cmd_output","timestamp":1607098494,"output":"r block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n"},{"event":"cmd_output","timestamp":1607098494,"output":"\u001b[0m\u001b[22m\n16:14:54.678 [info] block_id: c62a0fb0-9900-412a-b855-000de3cc6a42, type: Blocks, state:"},{"event":"cmd_output","timestamp":1607098494,"output":" initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueri"},{"event":"cmd_output","timestamp":1607098494,"output":"es.insert/1(L43), \n\u001b[0m\u001b[22m\n16:14:54.679 [info] Block 0 of pipeline with id: 41ec6468-fe76-4b27-"},{"event":"cmd_output","timestamp":1607098494,"output":"b906-116b1a0e3322 scheduled in block service with id: : \"c62a0fb0-9900-412a-b855-000de3cc6a42\"\n\u001b[0m"},{"event":"cmd_output","timestamp":1607098494,"output":"\u001b[22m\n16:14:54.681 [info] ppl_id: 41ec6468-fe76-4b27-b906-116b1a0e3322, type: PplBlocks, block_ind"},{"event":"cmd_output","timestamp":1607098494,"output":"ex: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098494,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:54.683 [info] block_id: c62a0fb0-9900-412a-b855-000de3cc6a"},{"event":"cmd_output","timestamp":1607098494,"output":"42, type: BlockRequests, event: persisted build and sub_ppl details for block_request: c62a0fb0-9900"},{"event":"cmd_output","timestamp":1607098494,"output":"-412a-b855-000de3cc6a42, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/"},{"event":"cmd_output","timestamp":1607098494,"output":"2(L41), \n\u001b[0m\u001b[22m\n16:14:54.685 [info] block_id: c62a0fb0-9900-412a-b855-000de3cc6a42, type: Task"},{"event":"cmd_output","timestamp":1607098494,"output":"s, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.Initial"},{"event":"cmd_output","timestamp":1607098494,"output":"izingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:14:54.686 [info] block_id: c62a0fb0-9900-412a-b855-000d"},{"event":"cmd_output","timestamp":1607098494,"output":"e3cc6a42, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Lo"},{"event":"cmd_output","timestamp":1607098494,"output":"oper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:54.701 [info] block_id: c62a0fb0-9900-412"},{"event":"cmd_output","timestamp":1607098494,"output":"a-b855-000de3cc6a42, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098494,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:54.743 [info] block_id: c62a0fb"},{"event":"cmd_output","timestamp":1607098494,"output":"0-9900-412a-b855-000de3cc6a42, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098494,"output":"origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:54.750 [info] block_id: "},{"event":"cmd_output","timestamp":1607098494,"output":"c62a0fb0-9900-412a-b855-000de3cc6a42, type: Blocks, state: done, event: exit_scheduling, recovery_co"},{"event":"cmd_output","timestamp":1607098494,"output":"unt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:54.757 [info] pp"},{"event":"cmd_output","timestamp":1607098494,"output":"l_id: 41ec6468-fe76-4b27-b906-116b1a0e3322, block_id: c62a0fb0-9900-412a-b855-000de3cc6a42, type: Pp"},{"event":"cmd_output","timestamp":1607098494,"output":"lBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098494,"output":"gin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:54.769 [info] ppl_id: 41ec6"},{"event":"cmd_output","timestamp":1607098494,"output":"468-fe76-4b27-b906-116b1a0e3322, type: Ppls, state: done, result: passed, event: exit_scheduling, re"},{"event":"cmd_output","timestamp":1607098494,"output":"covery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:54.874 ["},{"event":"cmd_output","timestamp":1607098494,"output":"info] Request: 'run: %{:file_name => \"commands-cmd-file.yml\", :repo_name => \"25_global_job_config\","},{"event":"cmd_output","timestamp":1607098494,"output":" \"branch_id\" => \"704aad47-ab3c-4d14-9489-7b65fcb8a269\", \"branch_name\" => \"master\", \"commit_sha\" => \""},{"event":"cmd_output","timestamp":1607098494,"output":"75891a4469\", \"file_name\" => \"semaphore.yml\", \"hook_id\" => \"d89078d2-364b-11eb-be83-5254005464e2\", \"l"},{"event":"cmd_output","timestamp":1607098494,"output":"abel\" => \"master\", \"organization_id\" => \"42441d17-b82d-4c0b-a42e-9c6f41ec11f2\", \"owner\" => \"rt\", \"pr"},{"event":"cmd_output","timestamp":1607098494,"output":"oject_id\" => \"99cdf040-c5b7-4903-9000-57d6572bc51b\", \"repo_name\" => \"2_basic\", \"request_token\" => \"d"},{"event":"cmd_output","timestamp":1607098494,"output":"8906da6-364b-11eb-9e96-5254005464e2\", \"requester_id\" => \"13b7e564-fdb0-489d-98f8-523fce113e38\", \"ser"},{"event":"cmd_output","timestamp":1607098494,"output":"vice\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"3ee4dbb4"},{"event":"cmd_output","timestamp":1607098494,"output":"-f0a3-4bf4-a63e-0617e0e2fd55\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:14:54.876 [info] ppl_i"},{"event":"cmd_output","timestamp":1607098494,"output":"d: 17bbc32d-b54d-4cc9-8854-5f18c3146924, type: PplRequests, event: persisted schedule request with r"},{"event":"cmd_output","timestamp":1607098494,"output":"equest_token: d8906da6-364b-11eb-9e96-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequests"},{"event":"cmd_output","timestamp":1607098494,"output":"Queries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:14:54.878 [info] ppl_id: 17bbc32d-b54d-4cc9-8854-5"},{"event":"cmd_output","timestamp":1607098494,"output":"f18c3146924, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098494,"output":".Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:14:54.881 [info] Project 99cd"},{"event":"cmd_output","timestamp":1607098494,"output":"f040-c5b7-4903-9000-57d6572bc51b and branch masterlatest_wf details updated: \"wf_id: 3ee4dbb4-f0a3-4"},{"event":"cmd_output","timestamp":1607098494,"output":"bf4-a63e-0617e0e2fd55, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:14:54.884 [info] Persisted ppl_sub_init for pip"},{"event":"cmd_output","timestamp":1607098494,"output":"eline with ppl_id: 17bbc32d-b54d-4cc9-8854-5f18c3146924: %Ppl.PplSubInits.Model.PplSubInits{__meta__"},{"event":"cmd_output","timestamp":1607098494,"output":": #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil"},{"event":"cmd_output","timestamp":1607098494,"output":", id: 355, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:14:54.883015], "},{"event":"cmd_output","timestamp":1607098494,"output":"pipeline_requests: #Ecto.Association.NotLoaded, ppl_id"},{"event":"cmd_output","timestamp":1607098494,"output":": \"17bbc32d-b54d-4cc9-8854-5f18c3146924\", recovery_count: 0, result: nil, result_reason: nil, state:"},{"event":"cmd_output","timestamp":1607098494,"output":" \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:14:54."},{"event":"cmd_output","timestamp":1607098494,"output":"883023]}\n\u001b[0m\u001b[22m\n16:14:54.893 [info] ppl_id: 17bbc32d-b54d-4cc9-8854-5f18c3146924, type: PplReq"},{"event":"cmd_output","timestamp":1607098494,"output":"uests, event: persisted source_args for pipeline: 17bbc32d-b54d-4cc9-8854-5f18c3146924, origin: Elix"},{"event":"cmd_output","timestamp":1607098494,"output":"ir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:14:54.898 [info] "},{"event":"cmd_output","timestamp":1607098494,"output":"ppl_id: 17bbc32d-b54d-4cc9-8854-5f18c3146924, type: PplSubInits, state: fetching, event: exit_schedu"},{"event":"cmd_output","timestamp":1607098494,"output":"ling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:"},{"event":"cmd_output","timestamp":1607098494,"output":"54.921 [info] ppl_id: 17bbc32d-b54d-4cc9-8854-5f18c3146924, type: PplSubInits, state: regular_init,"},{"event":"cmd_output","timestamp":1607098494,"output":" event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), "},{"event":"cmd_output","timestamp":1607098494,"output":"\n\u001b[0m\u001b[22m\n16:14:54.946 [info] ppl_id: 17bbc32d-b54d-4cc9-8854-5f18c3146924, type: PplRequests, e"},{"event":"cmd_output","timestamp":1607098494,"output":"vent: persisted definition for request with request_token: d8906da6-364b-11eb-9e96-5254005464e2, ori"},{"event":"cmd_output","timestamp":1607098494,"output":"gin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:14:54"},{"event":"cmd_output","timestamp":1607098494,"output":".949 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded"},{"event":"cmd_output","timestamp":1607098494,"output":", \"queues\">, inserted_at: ~N[2020-12-04 16:14:54.947846], name: \"master-.semaphore/semaphore.yml\", o"},{"event":"cmd_output","timestamp":1607098494,"output":"rganization_id: \"42441d17-b82d-4c0b-a42e-9c6f41ec11f2\", project_id: \"99cdf040-c5b7-4903-9000-57d6572"},{"event":"cmd_output","timestamp":1607098494,"output":"bc51b\", queue_id: \"2f53053a-f7f4-4031-b92b-9146d3af7956\", scope: \"project\", updated_at: ~N[2020-12-0"},{"event":"cmd_output","timestamp":1607098494,"output":"4 16:14:54.947854], user_generated: false}}\n\u001b[0m\u001b[22m\n16:14:54.952 [info] event: created, origin:"},{"event":"cmd_output","timestamp":1607098494,"output":" Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:54.952 [info"},{"event":"cmd_output","timestamp":1607098494,"output":"] ppl_id: 17bbc32d-b54d-4cc9-8854-5f18c3146924, type: PplBlocks, block_index: 0, state: initializin"},{"event":"cmd_output","timestamp":1607098494,"output":"g, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all"},{"event":"cmd_output","timestamp":1607098494,"output":"_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:54.954 [info] ppl_id: 17bbc32d-b54d-4cc9-8854-5f18c3146924, type: "},{"event":"cmd_output","timestamp":1607098494,"output":"PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098494,"output":"Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:54.960 [info] ppl_id: 17bbc32d-b54d-4cc"},{"event":"cmd_output","timestamp":1607098494,"output":"9-8854-5f18c3146924, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098494,"output":"Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:54.961 [info] ppl_id: 17bbc32d-b"},{"event":"cmd_output","timestamp":1607098494,"output":"54d-4cc9-8854-5f18c3146924, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling,"},{"event":"cmd_output","timestamp":1607098494,"output":" recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:54.96"},{"event":"cmd_output","timestamp":1607098494,"output":"6 [info] ppl_id: 17bbc32d-b54d-4cc9-8854-5f18c3146924, type: Ppls, state: queuing, event: exit_sche"},{"event":"cmd_output","timestamp":1607098494,"output":"duling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098494,"output":"4:54.975 [info] ppl_id: 17bbc32d-b54d-4cc9-8854-5f18c3146924, type: Ppls, state: running, event: ex"},{"event":"cmd_output","timestamp":1607098494,"output":"it_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098494,"output":"m\n16:14:54.980 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"17bbc32d-b5"},{"event":"cmd_output","timestamp":1607098494,"output":"4d-4cc9-8854-5f18c3146924\"\n\u001b[0m\u001b[22m\n16:14:54.985 [info] block_id: 206a5a53-0ffe-4b9f-832d-7d2387"},{"event":"cmd_output","timestamp":1607098494,"output":"2812b4, type: BlockRequests, event: persisted block run request from ppl 17bbc32d-b54d-4cc9-8854-5f1"},{"event":"cmd_output","timestamp":1607098494,"output":"8c3146924 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_respons"},{"event":"cmd_output","timestamp":1607098494,"output":"e/4(L35), \n\u001b[0m\u001b[22m\n16:14:54.994 [info] block_id: 206a5a53-0ffe-4b9f-832d-7d23872812b4, type: Bl"},{"event":"cmd_output","timestamp":1607098494,"output":"ocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model"},{"event":"cmd_output","timestamp":1607098494,"output":".BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:14:54.996 [info] Block 0 of pipeline with id: 17bbc32"},{"event":"cmd_output","timestamp":1607098494,"output":"d-b54d-4cc9-8854-5f18c3146924 scheduled in block service with id: : \"206a5a53-0ffe-4b9f-832d-7d23872"},{"event":"cmd_output","timestamp":1607098495,"output":"812b4\"\n\u001b[0m\u001b[22m\n16:14:54.999 [info] block_id: 206a5a53-0ffe-4b9f-832d-7d23872812b4, type: BlockR"},{"event":"cmd_output","timestamp":1607098495,"output":"equests, event: persisted build and sub_ppl details for block_request: 206a5a53-0ffe-4b9f-832d-7d238"},{"event":"cmd_output","timestamp":1607098495,"output":"72812b4, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098495,"output":"22m\n16:14:55.001 [info] ppl_id: 17bbc32d-b54d-4cc9-8854-5f18c3146924, type: PplBlocks, block_index"},{"event":"cmd_output","timestamp":1607098495,"output":": 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_s"},{"event":"cmd_output","timestamp":1607098495,"output":"tate_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:55.003 [info] block_id: 206a5a53-0ffe-4b9f-832d-7d23872812b4"},{"event":"cmd_output","timestamp":1607098495,"output":", type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHan"},{"event":"cmd_output","timestamp":1607098495,"output":"dler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:14:55.007 [info] block_id: 206a5a53-0ffe-4b"},{"event":"cmd_output","timestamp":1607098495,"output":"9f-832d-7d23872812b4, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098495,"output":"n: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:55.021 [info] block_id: 206a5"},{"event":"cmd_output","timestamp":1607098495,"output":"a53-0ffe-4b9f-832d-7d23872812b4, type: Tasks, state: running, event: exit_scheduling, recovery_count"},{"event":"cmd_output","timestamp":1607098495,"output":": 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:55.055 [info] block"},{"event":"cmd_output","timestamp":1607098495,"output":"_id: 206a5a53-0ffe-4b9f-832d-7d23872812b4, type: Tasks, state: done, event: exit_scheduling, recover"},{"event":"cmd_output","timestamp":1607098495,"output":"y_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:55.066 [info]"},{"event":"cmd_output","timestamp":1607098495,"output":" block_id: 206a5a53-0ffe-4b9f-832d-7d23872812b4, type: Blocks, state: done, event: exit_scheduling,"},{"event":"cmd_output","timestamp":1607098495,"output":" recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:55.07"},{"event":"cmd_output","timestamp":1607098495,"output":"2 [info] ppl_id: 17bbc32d-b54d-4cc9-8854-5f18c3146924, block_id: 206a5a53-0ffe-4b9f-832d-7d23872812"},{"event":"cmd_output","timestamp":1607098495,"output":"b4, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098495,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:55.085 [info] p"},{"event":"cmd_output","timestamp":1607098495,"output":"pl_id: 17bbc32d-b54d-4cc9-8854-5f18c3146924, type: Ppls, state: done, result: passed, event: exit_sc"},{"event":"cmd_output","timestamp":1607098495,"output":"heduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098495,"output":":14:55.102 [info] Request: 'run: %{:file_name => \"env-vars-both.yml\", :repo_name => \"25_global_job_"},{"event":"cmd_output","timestamp":1607098495,"output":"config\", \"branch_id\" => \"68f56e2b-1a5c-4100-b886-d0c62b75fb73\", \"branch_name\" => \"master\", \"commit_s"},{"event":"cmd_output","timestamp":1607098495,"output":"ha\" => \"75891a4469\", \"file_name\" => \"semaphore.yml\", \"hook_id\" => \"d8b34772-364b-11eb-8355-525400546"},{"event":"cmd_output","timestamp":1607098495,"output":"4e2\", \"label\" => \"master\", \"organization_id\" => \"1e5c3a0e-2a0a-490e-8ada-37ea4cf2bc65\", \"owner\" => \""},{"event":"cmd_output","timestamp":1607098495,"output":"rt\", \"project_id\" => \"4217a4c4-4ee2-453d-b584-a2f36e8c364c\", \"repo_name\" => \"2_basic\", \"request_toke"},{"event":"cmd_output","timestamp":1607098495,"output":"n\" => \"d8b33d9a-364b-11eb-8a2a-5254005464e2\", \"requester_id\" => \"7e2a2b20-34de-4ee5-8cf6-6dd0e619f17"},{"event":"cmd_output","timestamp":1607098495,"output":"d\", \"service\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \""},{"event":"cmd_output","timestamp":1607098495,"output":"e5a2424a-83d3-4451-a813-dd050d686b7a\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:14:55.104 [info"},{"event":"cmd_output","timestamp":1607098495,"output":"] ppl_id: 9b1a23ab-ef80-4257-a6e0-c562654afeec, type: PplRequests, event: persisted schedule reques"},{"event":"cmd_output","timestamp":1607098495,"output":"t with request_token: d8b33d9a-364b-11eb-8a2a-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.Ppl"},{"event":"cmd_output","timestamp":1607098495,"output":"RequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:14:55.106 [info] ppl_id: 9b1a23ab-ef80-425"},{"event":"cmd_output","timestamp":1607098495,"output":"7-a6e0-c562654afeec, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098495,"output":": Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:14:55.109 [info] Proj"},{"event":"cmd_output","timestamp":1607098495,"output":"ect 4217a4c4-4ee2-453d-b584-a2f36e8c364c and branch masterlatest_wf details updated: \"wf_id: e5a2424"},{"event":"cmd_output","timestamp":1607098495,"output":"a-83d3-4451-a813-dd050d686b7a, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:14:55.110 [info] Persisted ppl_sub_init"},{"event":"cmd_output","timestamp":1607098495,"output":" for pipeline with ppl_id: 9b1a23ab-ef80-4257-a6e0-c562654afeec: %Ppl.PplSubInits.Model.PplSubInits{"},{"event":"cmd_output","timestamp":1607098495,"output":"__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_descript"},{"event":"cmd_output","timestamp":1607098495,"output":"ion: nil, id: 356, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:14:55.1"},{"event":"cmd_output","timestamp":1607098495,"output":"09656], pipeline_requests: #Ecto.Association.NotLoaded"},{"event":"cmd_output","timestamp":1607098495,"output":", ppl_id: \"9b1a23ab-ef80-4257-a6e0-c562654afeec\", recovery_count: 0, result: nil, result_reason: nil"},{"event":"cmd_output","timestamp":1607098495,"output":", state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 1"},{"event":"cmd_output","timestamp":1607098495,"output":"6:14:55.109663]}\n\u001b[0m\u001b[22m\n16:14:55.122 [info] ppl_id: 9b1a23ab-ef80-4257-a6e0-c562654afeec, type"},{"event":"cmd_output","timestamp":1607098495,"output":": PplRequests, event: persisted source_args for pipeline: 9b1a23ab-ef80-4257-a6e0-c562654afeec, orig"},{"event":"cmd_output","timestamp":1607098495,"output":"in: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:14:55.124 "},{"event":"cmd_output","timestamp":1607098495,"output":"[info] ppl_id: 9b1a23ab-ef80-4257-a6e0-c562654afeec, type: PplSubInits, state: fetching, event: exi"},{"event":"cmd_output","timestamp":1607098495,"output":"t_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098495,"output":"\n16:14:55.140 [info] ppl_id: 9b1a23ab-ef80-4257-a6e0-c562654afeec, type: PplSubInits, state: regul"},{"event":"cmd_output","timestamp":1607098495,"output":"ar_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/"},{"event":"cmd_output","timestamp":1607098495,"output":"1(L90), \n\u001b[0m\u001b[22m\n16:14:55.162 [info] ppl_id: 9b1a23ab-ef80-4257-a6e0-c562654afeec, type: PplReq"},{"event":"cmd_output","timestamp":1607098495,"output":"uests, event: persisted definition for request with request_token: d8b33d9a-364b-11eb-8a2a-525400546"},{"event":"cmd_output","timestamp":1607098495,"output":"4e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098495,"output":"16:14:55.164 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata"},{"event":"cmd_output","timestamp":1607098495,"output":"<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:14:55.163524], name: \"master-.semaphore/semaphore"},{"event":"cmd_output","timestamp":1607098495,"output":".yml\", organization_id: \"1e5c3a0e-2a0a-490e-8ada-37ea4cf2bc65\", project_id: \"4217a4c4-4ee2-453d-b584"},{"event":"cmd_output","timestamp":1607098495,"output":"-a2f36e8c364c\", queue_id: \"812f5e9c-dc99-45b9-b2f0-9a6b427d31a5\", scope: \"project\", updated_at: ~N[2"},{"event":"cmd_output","timestamp":1607098495,"output":"020-12-04 16:14:55.163534], user_generated: false}}\n\u001b[0m\u001b[22m\n16:14:55.167 [info] event: created,"},{"event":"cmd_output","timestamp":1607098495,"output":" origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:55.1"},{"event":"cmd_output","timestamp":1607098495,"output":"68 [info] ppl_id: 9b1a23ab-ef80-4257-a6e0-c562654afeec, type: PplBlocks, block_index: 0, state: ini"},{"event":"cmd_output","timestamp":1607098495,"output":"tializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitS"},{"event":"cmd_output","timestamp":1607098495,"output":"tate.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:55.169 [info] ppl_id: 9b1a23ab-ef80-4257-a6e0-c562654afeec"},{"event":"cmd_output","timestamp":1607098495,"output":", type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098495,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:55.175 [info] ppl_id: 9b1a23ab-"},{"event":"cmd_output","timestamp":1607098495,"output":"ef80-4257-a6e0-c562654afeec, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098495,"output":"origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:55.178 [info] ppl_id: 9b"},{"event":"cmd_output","timestamp":1607098495,"output":"1a23ab-ef80-4257-a6e0-c562654afeec, type: PplBlocks, block_index: 0, state: waiting, event: exit_sch"},{"event":"cmd_output","timestamp":1607098495,"output":"eduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098495,"output":"14:55.182 [info] ppl_id: 9b1a23ab-ef80-4257-a6e0-c562654afeec, type: Ppls, state: queuing, event: e"},{"event":"cmd_output","timestamp":1607098495,"output":"xit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098495,"output":"2m\n16:14:55.188 [info] ppl_id: 9b1a23ab-ef80-4257-a6e0-c562654afeec, type: Ppls, state: running, e"},{"event":"cmd_output","timestamp":1607098495,"output":"vent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n"},{"event":"cmd_output","timestamp":1607098495,"output":"\u001b[0m\u001b[22m\n16:14:55.193 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"9b1"},{"event":"cmd_output","timestamp":1607098495,"output":"a23ab-ef80-4257-a6e0-c562654afeec\"\n\u001b[0m\u001b[22m\n16:14:55.196 [info] block_id: ef03173c-0048-431b-9ce"},{"event":"cmd_output","timestamp":1607098495,"output":"c-973a1833afd6, type: BlockRequests, event: persisted block run request from ppl 9b1a23ab-ef80-4257-"},{"event":"cmd_output","timestamp":1607098495,"output":"a6e0-c562654afeec for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process"},{"event":"cmd_output","timestamp":1607098495,"output":"_response/4(L35), \n\u001b[0m\u001b[22m\n16:14:55.197 [info] block_id: ef03173c-0048-431b-9cec-973a1833afd6, "},{"event":"cmd_output","timestamp":1607098495,"output":"type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Bloc"},{"event":"cmd_output","timestamp":1607098495,"output":"ks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:14:55.199 [info] Block 0 of pipeline with id:"},{"event":"cmd_output","timestamp":1607098495,"output":" 9b1a23ab-ef80-4257-a6e0-c562654afeec scheduled in block service with id: : \"ef03173c-0048-431b-9cec"},{"event":"cmd_output","timestamp":1607098495,"output":"-973a1833afd6\"\n\u001b[0m\u001b[22m\n16:14:55.201 [info] ppl_id: 9b1a23ab-ef80-4257-a6e0-c562654afeec, type: "},{"event":"cmd_output","timestamp":1607098495,"output":"PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098495,"output":".Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:55.202 [info] block_id: ef03173c-0048-"},{"event":"cmd_output","timestamp":1607098495,"output":"431b-9cec-973a1833afd6, type: BlockRequests, event: persisted build and sub_ppl details for block_re"},{"event":"cmd_output","timestamp":1607098495,"output":"quest: ef03173c-0048-431b-9cec-973a1833afd6, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQ"},{"event":"cmd_output","timestamp":1607098495,"output":"ueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:14:55.203 [info] block_id: ef03173c-0048-431b-9cec-973a"},{"event":"cmd_output","timestamp":1607098495,"output":"1833afd6, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Block"},{"event":"cmd_output","timestamp":1607098495,"output":"s.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:14:55.204 [info] block_id: ef03173c"},{"event":"cmd_output","timestamp":1607098495,"output":"-0048-431b-9cec-973a1833afd6, type: Blocks, state: running, event: exit_scheduling, recovery_count: "},{"event":"cmd_output","timestamp":1607098495,"output":"0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:55.219 [info] block_i"},{"event":"cmd_output","timestamp":1607098495,"output":"d: ef03173c-0048-431b-9cec-973a1833afd6, type: Tasks, state: running, event: exit_scheduling, recove"},{"event":"cmd_output","timestamp":1607098495,"output":"ry_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:55.263 [info"},{"event":"cmd_output","timestamp":1607098495,"output":"] block_id: ef03173c-0048-431b-9cec-973a1833afd6, type: Tasks, state: done, event: exit_scheduling,"},{"event":"cmd_output","timestamp":1607098495,"output":" recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:55.27"},{"event":"cmd_output","timestamp":1607098495,"output":"3 [info] block_id: ef03173c-0048-431b-9cec-973a1833afd6, type: Blocks, state: done, event: exit_sch"},{"event":"cmd_output","timestamp":1607098495,"output":"eduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098495,"output":"14:55.278 [info] ppl_id: 9b1a23ab-ef80-4257-a6e0-c562654afeec, block_id: ef03173c-0048-431b-9cec-97"},{"event":"cmd_output","timestamp":1607098495,"output":"3a1833afd6, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, re"},{"event":"cmd_output","timestamp":1607098495,"output":"covery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:55.285 ["},{"event":"cmd_output","timestamp":1607098495,"output":"info] ppl_id: 9b1a23ab-ef80-4257-a6e0-c562654afeec, type: Ppls, state: done, result: passed, event:"},{"event":"cmd_output","timestamp":1607098495,"output":" exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098495,"output":"[22m\n16:14:55.317 [info] Request: 'run: %{:file_name => \"secrets-both.yml\", :repo_name => \"25_glob"},{"event":"cmd_output","timestamp":1607098495,"output":"al_job_config\", \"branch_id\" => \"4623e7a3-84ef-4c43-a142-eb27680a344d\", \"branch_name\" => \"master\", \"c"},{"event":"cmd_output","timestamp":1607098495,"output":"ommit_sha\" => \"75891a4469\", \"file_name\" => \"semaphore.yml\", \"hook_id\" => \"d8d4490e-364b-11eb-9960-52"},{"event":"cmd_output","timestamp":1607098495,"output":"54005464e2\", \"label\" => \"master\", \"organization_id\" => \"503dcc3a-95c8-4a41-8a4a-478903adc809\", \"owne"},{"event":"cmd_output","timestamp":1607098495,"output":"r\" => \"rt\", \"project_id\" => \"8f1b5c2a-67f6-4fde-b79e-860613372636\", \"repo_name\" => \"2_basic\", \"reque"},{"event":"cmd_output","timestamp":1607098495,"output":"st_token\" => \"d8d44242-364b-11eb-aeba-5254005464e2\", \"requester_id\" => \"a6997aa9-0628-4075-9573-1abe"},{"event":"cmd_output","timestamp":1607098495,"output":"84f01b13\", \"service\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_i"},{"event":"cmd_output","timestamp":1607098495,"output":"d\" => \"2664658e-6f70-4f19-8b1f-55f01f4ef1ea\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:14:55.31"},{"event":"cmd_output","timestamp":1607098495,"output":"9 [info] ppl_id: 0b9ef7b8-b9e0-4e3c-9ef6-8f11a79d3702, type: PplRequests, event: persisted schedule"},{"event":"cmd_output","timestamp":1607098495,"output":" request with request_token: d8d44242-364b-11eb-aeba-5254005464e2, origin: Elixir.Ppl.PplRequests.Mo"},{"event":"cmd_output","timestamp":1607098495,"output":"del.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:14:55.320 [info] ppl_id: 0b9ef7b8-b"},{"event":"cmd_output","timestamp":1607098495,"output":"9e0-4e3c-9ef6-8f11a79d3702, type: Ppls, state: initializing, event: initializing, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098495,"output":" origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:14:55.322 [info"},{"event":"cmd_output","timestamp":1607098495,"output":"] Project 8f1b5c2a-67f6-4fde-b79e-860613372636 and branch masterlatest_wf details updated: \"wf_id: "},{"event":"cmd_output","timestamp":1607098495,"output":"2664658e-6f70-4f19-8b1f-55f01f4ef1ea, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:14:55.323 [info] Persisted ppl_s"},{"event":"cmd_output","timestamp":1607098495,"output":"ub_init for pipeline with ppl_id: 0b9ef7b8-b9e0-4e3c-9ef6-8f11a79d3702: %Ppl.PplSubInits.Model.PplSu"},{"event":"cmd_output","timestamp":1607098495,"output":"bInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_d"},{"event":"cmd_output","timestamp":1607098495,"output":"escription: nil, id: 357, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:"},{"event":"cmd_output","timestamp":1607098495,"output":"14:55.322500], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"0b9ef7b8-b9e0-4e3c-9ef6-8f11a79d3702\", recovery_count: 0, result: nil, result_reas"},{"event":"cmd_output","timestamp":1607098495,"output":"on: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-"},{"event":"cmd_output","timestamp":1607098495,"output":"12-04 16:14:55.322506]}\n\u001b[0m\u001b[22m\n16:14:55.329 [info] ppl_id: 0b9ef7b8-b9e0-4e3c-9ef6-8f11a79d370"},{"event":"cmd_output","timestamp":1607098495,"output":"2, type: PplRequests, event: persisted source_args for pipeline: 0b9ef7b8-b9e0-4e3c-9ef6-8f11a79d370"},{"event":"cmd_output","timestamp":1607098495,"output":"2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:14:"},{"event":"cmd_output","timestamp":1607098495,"output":"55.331 [info] ppl_id: 0b9ef7b8-b9e0-4e3c-9ef6-8f11a79d3702, type: PplSubInits, state: fetching, eve"},{"event":"cmd_output","timestamp":1607098495,"output":"nt: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b["},{"event":"cmd_output","timestamp":1607098495,"output":"0m\u001b[22m\n16:14:55.345 [info] ppl_id: 0b9ef7b8-b9e0-4e3c-9ef6-8f11a79d3702, type: PplSubInits, state"},{"event":"cmd_output","timestamp":1607098495,"output":": regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_"},{"event":"cmd_output","timestamp":1607098495,"output":"change/1(L90), \n\u001b[0m\u001b[22m\n16:14:55.365 [info] ppl_id: 0b9ef7b8-b9e0-4e3c-9ef6-8f11a79d3702, type:"},{"event":"cmd_output","timestamp":1607098495,"output":" PplRequests, event: persisted definition for request with request_token: d8d44242-364b-11eb-aeba-52"},{"event":"cmd_output","timestamp":1607098495,"output":"54005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098495,"output":"\u001b[22m\n16:14:55.371 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.M"},{"event":"cmd_output","timestamp":1607098495,"output":"etadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:14:55.370214], name: \"master-.semaphore/se"},{"event":"cmd_output","timestamp":1607098495,"output":"maphore.yml\", organization_id: \"503dcc3a-95c8-4a41-8a4a-478903adc809\", project_id: \"8f1b5c2a-67f6-4f"},{"event":"cmd_output","timestamp":1607098495,"output":"de-b79e-860613372636\", queue_id: \"7c9801aa-ec5a-4130-a601-616b4a2e940a\", scope: \"project\", updated_a"},{"event":"cmd_output","timestamp":1607098495,"output":"t: ~N[2020-12-04 16:14:55.370221], user_generated: false}}\n\u001b[0m\u001b[22m\n16:14:55.373 [info] event: c"},{"event":"cmd_output","timestamp":1607098495,"output":"reated, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098495,"output":"14:55.373 [info] ppl_id: 0b9ef7b8-b9e0-4e3c-9ef6-8f11a79d3702, type: PplBlocks, block_index: 0, sta"},{"event":"cmd_output","timestamp":1607098495,"output":"te: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.Regul"},{"event":"cmd_output","timestamp":1607098495,"output":"arInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:55.374 [info] ppl_id: 0b9ef7b8-b9e0-4e3c-9ef6-8f11a"},{"event":"cmd_output","timestamp":1607098495,"output":"79d3702, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098495,"output":"origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:55.379 [info] ppl_id: 0b"},{"event":"cmd_output","timestamp":1607098495,"output":"9ef7b8-b9e0-4e3c-9ef6-8f11a79d3702, type: PplBlocks, block_index: 0, state: waiting, event: exit_sch"},{"event":"cmd_output","timestamp":1607098495,"output":"eduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098495,"output":"14:55.385 [info] ppl_id: 0b9ef7b8-b9e0-4e3c-9ef6-8f11a79d3702, type: Ppls, state: pending, event: e"},{"event":"cmd_output","timestamp":1607098495,"output":"xit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098495,"output":"2m\n16:14:55.389 [info] ppl_id: 0b9ef7b8-b9e0-4e3c-9ef6-8f11a79d3702, type: Ppls, state: queuing, e"},{"event":"cmd_output","timestamp":1607098495,"output":"vent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n"},{"event":"cmd_output","timestamp":1607098495,"output":"\u001b[0m\u001b[22m\n16:14:55.402 [info] ppl_id: 0b9ef7b8-b9e0-4e3c-9ef6-8f11a79d3702, type: Ppls, state: run"},{"event":"cmd_output","timestamp":1607098495,"output":"ning, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098495,"output":"90), \n\u001b[0m\u001b[22m\n16:14:55.407 [info] PplBlocks WaitingState STM is scheduling block 0 from pipelin"},{"event":"cmd_output","timestamp":1607098495,"output":"e: \"0b9ef7b8-b9e0-4e3c-9ef6-8f11a79d3702\"\n\u001b[0m\u001b[22m\n16:14:55.410 [info] block_id: 1527eab0-5118-4"},{"event":"cmd_output","timestamp":1607098495,"output":"9ba-ae0b-3f649ede06b4, type: BlockRequests, event: persisted block run request from ppl 0b9ef7b8-b9e"},{"event":"cmd_output","timestamp":1607098495,"output":"0-4e3c-9ef6-8f11a79d3702 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries."},{"event":"cmd_output","timestamp":1607098495,"output":"process_response/4(L35), \n\u001b[0m\u001b[22m\n16:14:55.411 [info] block_id: 1527eab0-5118-49ba-ae0b-3f649ed"},{"event":"cmd_output","timestamp":1607098495,"output":"e06b4, type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Blo"},{"event":"cmd_output","timestamp":1607098495,"output":"ck.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:14:55.414 [info] Block 0 of pipeline w"},{"event":"cmd_output","timestamp":1607098495,"output":"ith id: 0b9ef7b8-b9e0-4e3c-9ef6-8f11a79d3702 scheduled in block service with id: : \"1527eab0-5118-49"},{"event":"cmd_output","timestamp":1607098495,"output":"ba-ae0b-3f649ede06b4\"\n\u001b[0m\u001b[22m\n16:14:55.415 [info] block_id: 1527eab0-5118-49ba-ae0b-3f649ede06b"},{"event":"cmd_output","timestamp":1607098495,"output":"4, type: BlockRequests, event: persisted build and sub_ppl details for block_request: 1527eab0-5118-"},{"event":"cmd_output","timestamp":1607098495,"output":"49ba-ae0b-3f649ede06b4, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2"},{"event":"cmd_output","timestamp":1607098495,"output":"(L41), \n\u001b[0m\u001b[22m\n16:14:55.416 [info] ppl_id: 0b9ef7b8-b9e0-4e3c-9ef6-8f11a79d3702, type: PplBloc"},{"event":"cmd_output","timestamp":1607098495,"output":"ks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper"},{"event":"cmd_output","timestamp":1607098495,"output":".STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:55.417 [info] block_id: 1527eab0-5118-49ba-ae"},{"event":"cmd_output","timestamp":1607098495,"output":"0b-3f649ede06b4, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Bloc"},{"event":"cmd_output","timestamp":1607098495,"output":"k.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:14:55.418 [info] block_id: 1"},{"event":"cmd_output","timestamp":1607098495,"output":"527eab0-5118-49ba-ae0b-3f649ede06b4, type: Blocks, state: running, event: exit_scheduling, recovery_"},{"event":"cmd_output","timestamp":1607098495,"output":"count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:55.428 [info] "},{"event":"cmd_output","timestamp":1607098495,"output":"block_id: 1527eab0-5118-49ba-ae0b-3f649ede06b4, type: Tasks, state: running, event: exit_scheduling,"},{"event":"cmd_output","timestamp":1607098495,"output":" recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:55.47"},{"event":"cmd_output","timestamp":1607098495,"output":"3 [info] block_id: 1527eab0-5118-49ba-ae0b-3f649ede06b4, type: Tasks, state: done, event: exit_sche"},{"event":"cmd_output","timestamp":1607098495,"output":"duling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098495,"output":"4:55.480 [info] block_id: 1527eab0-5118-49ba-ae0b-3f649ede06b4, type: Blocks, state: done, event: e"},{"event":"cmd_output","timestamp":1607098495,"output":"xit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098495,"output":"2m\n16:14:55.490 [info] ppl_id: 0b9ef7b8-b9e0-4e3c-9ef6-8f11a79d3702, block_id: 1527eab0-5118-49ba-"},{"event":"cmd_output","timestamp":1607098495,"output":"ae0b-3f649ede06b4, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_schedul"},{"event":"cmd_output","timestamp":1607098495,"output":"ing, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:5"},{"event":"cmd_output","timestamp":1607098495,"output":"5.500 [info] ppl_id: 0b9ef7b8-b9e0-4e3c-9ef6-8f11a79d3702, type: Ppls, state: done, result: passed,"},{"event":"cmd_output","timestamp":1607098495,"output":" event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), "},{"event":"cmd_output","timestamp":1607098495,"output":"\n\u001b[0m\u001b[32m\r * test Pipelines with various combinations of global and block level job configs are p"},{"event":"cmd_output","timestamp":1607098495,"output":"assing (1672.1ms)\u001b[0m\n\nPpl.Actions.Test\n * test schedule() returns error when request has invali"},{"event":"cmd_output","timestamp":1607098495,"output":"d args\r * test schedule() returns error when request has invalid args (skipped)\n * test terminate"},{"event":"cmd_output","timestamp":1607098495,"output":" test - running pipeline\r * test terminate test - running pipeline (skipped)\n * test list_ppls re"},{"event":"cmd_output","timestamp":1607098495,"output":"turns error when called without project_id or wf_id\r * test list_ppls returns error when called wit"},{"event":"cmd_output","timestamp":1607098495,"output":"hout project_id or wf_id (skipped)\n * test terminate test - pending pipeline\r * test terminate te"},{"event":"cmd_output","timestamp":1607098495,"output":"st - pending pipeline (skipped)\n * test list_ppls call with valid params returns {:ok, list_resp_p"},{"event":"cmd_output","timestamp":1607098495,"output":"arams}\r * test list_ppls call with valid params returns {:ok, list_resp_params} (skipped)\n * test"},{"event":"cmd_output","timestamp":1607098495,"output":" describe_topology() returns array of blocks\r * test describe_topology() returns array of blocks (s"},{"event":"cmd_output","timestamp":1607098495,"output":"kipped)\n * test describe_topology() returns empty array\r * test describe_topology() returns empty"},{"event":"cmd_output","timestamp":1607098495,"output":" array (skipped)\n * test schedule(request, true, true) is idempotent in regard to request_token \r "},{"event":"cmd_output","timestamp":1607098495,"output":" * test schedule(request, true, true) is idempotent in regard to request_token (skipped)\n * test "},{"event":"cmd_output","timestamp":1607098495,"output":"describe_topology() returns matrix jobs\r * test describe_topology() returns matrix jobs (skipped)\n"},{"event":"cmd_output","timestamp":1607098495,"output":" * test delete_request is stored\r * test delete_request is stored (skipped)\n * test terminate te"},{"event":"cmd_output","timestamp":1607098495,"output":"st - stopping pipeline\r * test terminate test - stopping pipeline (skipped)\n * test list_ppls ret"},{"event":"cmd_output","timestamp":1607098495,"output":"urns total 0 when called with project_id or branch_name without ppls\r * test list_ppls returns tota"},{"event":"cmd_output","timestamp":1607098495,"output":"l 0 when called with project_id or branch_name without ppls (skipped)\n * test terminate test - ini"},{"event":"cmd_output","timestamp":1607098495,"output":"tializing pipeline\r * test terminate test - initializing pipeline (skipped)\n * test schedule() li"},{"event":"cmd_output","timestamp":1607098495,"output":"mit exceeded\u001b[22m\n16:14:55.591 [info] Request: 'run: %{\"branch_id\" => \"456\", \"branch_name\" => \"mas"},{"event":"cmd_output","timestamp":1607098495,"output":"ter\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"semaphore.yml\", \"hook_id\" => \"d8fd4e26-364b-11eb"},{"event":"cmd_output","timestamp":1607098495,"output":"-a36a-5254005464e2\", \"label\" => \"master\", \"organization_id\" => \"52f8498a-1e7d-41d2-9769-53252864659b"},{"event":"cmd_output","timestamp":1607098495,"output":"\", \"owner\" => \"psr\", \"project_id\" => \"123\", \"repo_name\" => \"5_v1_full\", \"request_token\" => \"d8fd46e2"},{"event":"cmd_output","timestamp":1607098495,"output":"-364b-11eb-ad4a-5254005464e2\", \"requester_id\" => \"861ae2d5-03b7-4edc-b0d8-a13430eadc07\", \"service\" ="},{"event":"cmd_output","timestamp":1607098495,"output":"> \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"86f065fa-1160-4"},{"event":"cmd_output","timestamp":1607098495,"output":"c1c-8402-75a9afc025df\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:14:55.593 [info] ppl_id: 352d"},{"event":"cmd_output","timestamp":1607098495,"output":"db19-ac8d-4189-8038-5a2653cf10ba, type: PplRequests, event: persisted schedule request with request_"},{"event":"cmd_output","timestamp":1607098495,"output":"token: d8fd46e2-364b-11eb-ad4a-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries"},{"event":"cmd_output","timestamp":1607098495,"output":".process_response/2(L55), \n\u001b[0m\u001b[22m\n16:14:55.596 [info] ppl_id: 352ddb19-ac8d-4189-8038-5a2653cf"},{"event":"cmd_output","timestamp":1607098495,"output":"10ba, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Pp"},{"event":"cmd_output","timestamp":1607098495,"output":"ls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:14:55.599 [info] Project 123 and bra"},{"event":"cmd_output","timestamp":1607098495,"output":"nch masterlatest_wf details updated: \"wf_id: 86f065fa-1160-4c1c-8402-75a9afc025df, wf_number: 1\"\n\u001b["},{"event":"cmd_output","timestamp":1607098495,"output":"0m\u001b[22m\n16:14:55.600 [info] Persisted ppl_sub_init for pipeline with ppl_id: 352ddb19-ac8d-4189-80"},{"event":"cmd_output","timestamp":1607098495,"output":"38-5a2653cf10ba: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeli"},{"event":"cmd_output","timestamp":1607098495,"output":"ne_sub_inits\">, compile_task_id: nil, error_description: nil, id: 358, in_scheduling: false, init_ty"},{"event":"cmd_output","timestamp":1607098495,"output":"pe: \"regular\", inserted_at: ~N[2020-12-04 16:14:55.599643], pipeline_requests: #Ecto.Association.Not"},{"event":"cmd_output","timestamp":1607098495,"output":"Loaded, ppl_id: \"352ddb19-ac8d-4189-8038-5a2653cf10ba\""},{"event":"cmd_output","timestamp":1607098495,"output":", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, term"},{"event":"cmd_output","timestamp":1607098495,"output":"inate_request_desc: nil, updated_at: ~N[2020-12-04 16:14:55.599649]}\n\u001b[0m\u001b[22m\n16:14:55.605 [info]"},{"event":"cmd_output","timestamp":1607098495,"output":" Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.STMHan"},{"event":"cmd_output","timestamp":1607098495,"output":"dler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandle"},{"event":"cmd_output","timestamp":1607098495,"output":"r-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], cooli"},{"event":"cmd_output","timestamp":1607098495,"output":"ng_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher_cb: #F"},{"event":"cmd_output","timestamp":1607098495,"output":"unction<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, returnin"},{"event":"cmd_output","timestamp":1607098495,"output":"g: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Pp"},{"event":"cmd_output","timestamp":1607098495,"output":"ls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:55.605 [info] Periodic from module Elixir."},{"event":"cmd_output","timestamp":1607098495,"output":"Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 100 ms"},{"event":"cmd_output","timestamp":1607098495,"output":", metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args: %{all"},{"event":"cmd_output","timestamp":1607098495,"output":"owed_states: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls"},{"event":"cmd_output","timestamp":1607098495,"output":".Model.Ppls, observed_state: \"pending\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler.P"},{"event":"cmd_output","timestamp":1607098495,"output":"endingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :"},{"event":"cmd_output","timestamp":1607098495,"output":"result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}"},{"event":"cmd_output","timestamp":1607098495,"output":"\n\u001b[0m\u001b[22m\n16:14:55.606 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedStat"},{"event":"cmd_output","timestamp":1607098495,"output":"e with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.beh"},{"event":"cmd_output","timestamp":1607098495,"output":"older-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args: %{allowed_states: [\"fe"},{"event":"cmd_output","timestamp":1607098495,"output":"tching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_st"},{"event":"cmd_output","timestamp":1607098495,"output":"ate: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updat"},{"event":"cmd_output","timestamp":1607098495,"output":"ed_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_s"},{"event":"cmd_output","timestamp":1607098495,"output":"upervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:55.606 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHa"},{"event":"cmd_output","timestamp":1607098495,"output":"ndler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 ms, met"},{"event":"cmd_output","timestamp":1607098495,"output":"ric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %{"},{"event":"cmd_output","timestamp":1607098495,"output":"allowed_states: [\"regular_init\", \"compilation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Pp"},{"event":"cmd_output","timestamp":1607098495,"output":"lSubInits.Model.PplSubInits, observed_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, re"},{"event":"cmd_output","timestamp":1607098495,"output":"turning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: "},{"event":"cmd_output","timestamp":1607098495,"output":"Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:55.607 [info] Periodic"},{"event":"cmd_output","timestamp":1607098495,"output":" from module Elixir.Ppl.PplSubInits.STMHandler.CompilationState with name Elixir.Ppl.PplSubInits.STM"},{"event":"cmd_output","timestamp":1607098495,"output":"Handler.CompilationState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-"},{"event":"cmd_output","timestamp":1607098495,"output":"STMHandler-CompilationState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"s"},{"event":"cmd_output","timestamp":1607098495,"output":"topping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_"},{"event":"cmd_output","timestamp":1607098495,"output":"state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, "},{"event":"cmd_output","timestamp":1607098495,"output":":updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, "},{"event":"cmd_output","timestamp":1607098495,"output":"task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:55.607 [info] Periodic from module Elixir.Ppl.PplSubInits"},{"event":"cmd_output","timestamp":1607098495,"output":".STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period:"},{"event":"cmd_output","timestamp":1607098495,"output":" 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, rec"},{"event":"cmd_output","timestamp":1607098495,"output":"urring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.P"},{"event":"cmd_output","timestamp":1607098495,"output":"plSubInits, observed_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id"},{"event":"cmd_output","timestamp":1607098495,"output":", :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubIni"},{"event":"cmd_output","timestamp":1607098495,"output":"ts.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:55.716 [info] ppl_id: 352ddb19-ac8d"},{"event":"cmd_output","timestamp":1607098495,"output":"-4189-8038-5a2653cf10ba, type: PplRequests, event: persisted source_args for pipeline: 352ddb19-ac8d"},{"event":"cmd_output","timestamp":1607098495,"output":"-4189-8038-5a2653cf10ba, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89"},{"event":"cmd_output","timestamp":1607098495,"output":"), \n\u001b[0m\u001b[22m\n16:14:55.726 [info] ppl_id: 352ddb19-ac8d-4189-8038-5a2653cf10ba, type: PplSubInits"},{"event":"cmd_output","timestamp":1607098495,"output":", state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_sta"},{"event":"cmd_output","timestamp":1607098495,"output":"te_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:55.740 [info] ppl_id: 352ddb19-ac8d-4189-8038-5a2653cf10ba, ty"},{"event":"cmd_output","timestamp":1607098495,"output":"pe: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loop"},{"event":"cmd_output","timestamp":1607098495,"output":"er.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:55.760 [info] ppl_id: 352ddb19-ac8d-4189-80"},{"event":"cmd_output","timestamp":1607098495,"output":"38-5a2653cf10ba, type: PplRequests, event: persisted definition for request with request_token: d8fd"},{"event":"cmd_output","timestamp":1607098495,"output":"46e2-364b-11eb-ad4a-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_def"},{"event":"cmd_output","timestamp":1607098495,"output":"inition/3(L76), \n\u001b[0m\u001b[22m\n16:14:55.763 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__"},{"event":"cmd_output","timestamp":1607098495,"output":"meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:14:55.762483], name:"},{"event":"cmd_output","timestamp":1607098495,"output":" \"master-.semaphore/semaphore.yml\", organization_id: \"52f8498a-1e7d-41d2-9769-53252864659b\", project"},{"event":"cmd_output","timestamp":1607098495,"output":"_id: \"123\", queue_id: \"fae64b2b-4925-48dc-ae40-aa64770680b5\", scope: \"project\", updated_at: ~N[2020-"},{"event":"cmd_output","timestamp":1607098495,"output":"12-04 16:14:55.762491], user_generated: false}}\n\u001b[0m\u001b[22m\n16:14:55.770 [info] ppl_id: not_availab"},{"event":"cmd_output","timestamp":1607098495,"output":"le, event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b["},{"event":"cmd_output","timestamp":1607098495,"output":"0m\u001b[22m\n16:14:55.770 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitS"},{"event":"cmd_output","timestamp":1607098495,"output":"tate.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:55.770 [info] ppl_id: 352ddb19-ac8d-4189-8038-5a2653cf10ba"},{"event":"cmd_output","timestamp":1607098495,"output":", type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: E"},{"event":"cmd_output","timestamp":1607098495,"output":"lixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:55.770 [info] "},{"event":"cmd_output","timestamp":1607098495,"output":" ppl_id: 352ddb19-ac8d-4189-8038-5a2653cf10ba, type: PplBlocks, block_index: 1, state: initializing,"},{"event":"cmd_output","timestamp":1607098495,"output":" event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_o"},{"event":"cmd_output","timestamp":1607098495,"output":"k?/1(L105), \n\u001b[0m\u001b[22m\n16:14:55.771 [info] ppl_id: 352ddb19-ac8d-4189-8038-5a2653cf10ba, type: Pp"},{"event":"cmd_output","timestamp":1607098495,"output":"lSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Lo"},{"event":"cmd_output","timestamp":1607098495,"output":"oper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:55.776 [info] ppl_id: 352ddb19-ac8d-4189-"},{"event":"cmd_output","timestamp":1607098495,"output":"8038-5a2653cf10ba, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098495,"output":"ixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:55.789 [info] ppl_id: 352ddb19-ac8"},{"event":"cmd_output","timestamp":1607098495,"output":"d-4189-8038-5a2653cf10ba, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098495,"output":"gin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:55.817 [info] Request: 'run"},{"event":"cmd_output","timestamp":1607098495,"output":": %{\"branch_id\" => \"456\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"s"},{"event":"cmd_output","timestamp":1607098495,"output":"emaphore.yml\", \"hook_id\" => \"d9206fa0-364b-11eb-85f6-5254005464e2\", \"label\" => \"master\", \"organizati"},{"event":"cmd_output","timestamp":1607098495,"output":"on_id\" => \"54647bac-c93e-4901-b91a-8414e18910fc\", \"owner\" => \"psr\", \"project_id\" => \"123\", \"repo_nam"},{"event":"cmd_output","timestamp":1607098495,"output":"e\" => \"5_v1_full\", \"request_token\" => \"d92068d4-364b-11eb-9726-5254005464e2\", \"requester_id\" => \"cf3"},{"event":"cmd_output","timestamp":1607098495,"output":"08cb4-7a89-4794-9c3c-64ecd4544b6c\", \"service\" => \"local\", \"suppressed_attributes\" => [\"access_token\""},{"event":"cmd_output","timestamp":1607098495,"output":", \"client_secret\"], \"wf_id\" => \"12db711c-7d16-4082-8b56-2232be4b4da1\", \"working_dir\" => \".semaphore\""},{"event":"cmd_output","timestamp":1607098495,"output":"}\n\u001b[0m\u001b[22m\n16:14:55.819 [info] ppl_id: 98247a83-2008-4caf-9f38-ce7b3480d2ac, type: PplRequests, "},{"event":"cmd_output","timestamp":1607098495,"output":"event: persisted schedule request with request_token: d92068d4-364b-11eb-9726-5254005464e2, origin: "},{"event":"cmd_output","timestamp":1607098495,"output":"Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:14:55.820 ["},{"event":"cmd_output","timestamp":1607098495,"output":"info] ppl_id: 98247a83-2008-4caf-9f38-ce7b3480d2ac, type: Ppls, state: initializing, event: initial"},{"event":"cmd_output","timestamp":1607098495,"output":"izing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098495,"output":"\u001b[22m\n16:14:55.822 [info] Project 123 and branch masterlatest_wf details updated: \"wf_id: 12db711c"},{"event":"cmd_output","timestamp":1607098495,"output":"-7d16-4082-8b56-2232be4b4da1, wf_number: 2\"\n\u001b[0m\u001b[22m\n16:14:55.823 [info] Persisted ppl_sub_init "},{"event":"cmd_output","timestamp":1607098495,"output":"for pipeline with ppl_id: 98247a83-2008-4caf-9f38-ce7b3480d2ac: %Ppl.PplSubInits.Model.PplSubInits{_"},{"event":"cmd_output","timestamp":1607098495,"output":"_meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_descripti"},{"event":"cmd_output","timestamp":1607098495,"output":"on: nil, id: 359, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:14:55.82"},{"event":"cmd_output","timestamp":1607098495,"output":"2757], pipeline_requests: #Ecto.Association.NotLoaded,"},{"event":"cmd_output","timestamp":1607098495,"output":" ppl_id: \"98247a83-2008-4caf-9f38-ce7b3480d2ac\", recovery_count: 0, result: nil, result_reason: nil,"},{"event":"cmd_output","timestamp":1607098495,"output":" state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16"},{"event":"cmd_output","timestamp":1607098495,"output":":14:55.822769]}\n\u001b[0m\u001b[22m\n16:14:55.826 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.Ini"},{"event":"cmd_output","timestamp":1607098495,"output":"tializingState with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms, metric_name"},{"event":"cmd_output","timestamp":1607098495,"output":": {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %{allowed_sta"},{"event":"cmd_output","timestamp":1607098495,"output":"tes: [\"initializing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, o"},{"event":"cmd_output","timestamp":1607098495,"output":"bserved_state: \"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.Initiali"},{"event":"cmd_output","timestamp":1607098495,"output":"zingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :re"},{"event":"cmd_output","timestamp":1607098495,"output":"sult, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098495,"output":":14:55.826 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098495,"output":".Ppls.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-ST"},{"event":"cmd_output","timestamp":1607098495,"output":"MHandler-PendingState\"]}, recurring args: %{allowed_states: [\"pending\", \"queuing\", \"running\", \"done\""},{"event":"cmd_output","timestamp":1607098495,"output":"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publisher_cb:"},{"event":"cmd_output","timestamp":1607098495,"output":" #Function<0.8493005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, returning: ["},{"event":"cmd_output","timestamp":1607098495,"output":":id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.M"},{"event":"cmd_output","timestamp":1607098495,"output":"odel.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:14:55.826 [info] Periodic from modul"},{"event":"cmd_output","timestamp":1607098495,"output":"e Elixir.Ppl.PplSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHandler.Created"},{"event":"cmd_output","timestamp":1607098495,"output":"State :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedS"},{"event":"cmd_output","timestamp":1607098495,"output":"tate\"]}, recurring args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query:"},{"event":"cmd_output","timestamp":1607098495,"output":" Ppl.PplSubInits.Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRe"},{"event":"cmd_output","timestamp":1607098495,"output":"po, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], sc"},{"event":"cmd_output","timestamp":1607098495,"output":"hema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:55.827 [info] Pe"},{"event":"cmd_output","timestamp":1607098495,"output":"riodic from module Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl.PplSubInits."},{"event":"cmd_output","timestamp":1607098495,"output":"STMHandler.FetchingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-"},{"event":"cmd_output","timestamp":1607098495,"output":"STMHandler-FetchingState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"done"},{"event":"cmd_output","timestamp":1607098495,"output":"\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fetchin"},{"event":"cmd_output","timestamp":1607098495,"output":"g\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :stat"},{"event":"cmd_output","timestamp":1607098495,"output":"e, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :"},{"event":"cmd_output","timestamp":1607098495,"output":"skip}\n\u001b[0m\u001b[22m\n16:14:55.828 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.Compil"},{"event":"cmd_output","timestamp":1607098495,"output":"ationState with name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 100 ms, metric_na"},{"event":"cmd_output","timestamp":1607098495,"output":"me: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurring args: %{all"},{"event":"cmd_output","timestamp":1607098495,"output":"owed_states: [\"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_quer"},{"event":"cmd_output","timestamp":1607098495,"output":"y: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"compilation\", publisher_cb: :skip, repo: Ppl."},{"event":"cmd_output","timestamp":1607098495,"output":"EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_i"},{"event":"cmd_output","timestamp":1607098495,"output":"d], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:55.828 [inf"},{"event":"cmd_output","timestamp":1607098495,"output":"o] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with name Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098495,"output":"SubInits.STMHandler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-"},{"event":"cmd_output","timestamp":1607098495,"output":"PplSubInits-STMHandler-RegularInitState\"]}, recurring args: %{allowed_states: [\"done\"], cooling_time"},{"event":"cmd_output","timestamp":1607098495,"output":"_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_init\", publisher"},{"event":"cmd_output","timestamp":1607098495,"output":"_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :"},{"event":"cmd_output","timestamp":1607098495,"output":"recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098495,"output":"22m\n16:14:55.935 [info] ppl_id: 98247a83-2008-4caf-9f38-ce7b3480d2ac, type: PplRequests, event: pe"},{"event":"cmd_output","timestamp":1607098495,"output":"rsisted source_args for pipeline: 98247a83-2008-4caf-9f38-ce7b3480d2ac, origin: Elixir.Ppl.PplReques"},{"event":"cmd_output","timestamp":1607098495,"output":"ts.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:14:55.936 [info] ppl_id: 98247a83"},{"event":"cmd_output","timestamp":1607098495,"output":"-2008-4caf-9f38-ce7b3480d2ac, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098495,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:55.958 [info] p"},{"event":"cmd_output","timestamp":1607098495,"output":"pl_id: 98247a83-2008-4caf-9f38-ce7b3480d2ac, type: PplSubInits, state: regular_init, event: exit_sch"},{"event":"cmd_output","timestamp":1607098495,"output":"eduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098495,"output":"14:55.978 [info] ppl_id: 98247a83-2008-4caf-9f38-ce7b3480d2ac, type: PplRequests, event: persisted "},{"event":"cmd_output","timestamp":1607098495,"output":"definition for request with request_token: d92068d4-364b-11eb-9726-5254005464e2, origin: Elixir.Ppl."},{"event":"cmd_output","timestamp":1607098495,"output":"PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:14:55.990 [info] ppl"},{"event":"cmd_output","timestamp":1607098495,"output":"_id: not_available, event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_o"},{"event":"cmd_output","timestamp":1607098495,"output":"k?/1(L105), \n\u001b[0m\u001b[22m\n16:14:55.990 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHand"},{"event":"cmd_output","timestamp":1607098495,"output":"ler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:55.990 [info] ppl_id: 98247a83-2008-4caf-9"},{"event":"cmd_output","timestamp":1607098495,"output":"f38-ce7b3480d2ac, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_cou"},{"event":"cmd_output","timestamp":1607098495,"output":"nt: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098495,"output":"4:55.990 [info] ppl_id: 98247a83-2008-4caf-9f38-ce7b3480d2ac, type: PplBlocks, block_index: 1, stat"},{"event":"cmd_output","timestamp":1607098495,"output":"e: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.Regula"},{"event":"cmd_output","timestamp":1607098495,"output":"rInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:55.991 [info] ppl_id: 98247a83-2008-4caf-9f38-ce7b34"},{"event":"cmd_output","timestamp":1607098495,"output":"80d2ac, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098495,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:55.996 [info] ppl_id: 982"},{"event":"cmd_output","timestamp":1607098495,"output":"47a83-2008-4caf-9f38-ce7b3480d2ac, type: Ppls, state: pending, event: exit_scheduling, recovery_coun"},{"event":"cmd_output","timestamp":1607098496,"output":"t: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:56.002 [info] ppl_"},{"event":"cmd_output","timestamp":1607098496,"output":"id: 98247a83-2008-4caf-9f38-ce7b3480d2ac, type: Ppls, state: queuing, event: exit_scheduling, recove"},{"event":"cmd_output","timestamp":1607098496,"output":"ry_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test schedule()"},{"event":"cmd_output","timestamp":1607098496,"output":" limit exceeded (503.3ms)\u001b[0m\n * test schedule() persists requests with valid args\r * test schedu"},{"event":"cmd_output","timestamp":1607098496,"output":"le() persists requests with valid args (skipped)\n * test list_ppls sets default values for page an"},{"event":"cmd_output","timestamp":1607098496,"output":"d page_size if they are omitted\r * test list_ppls sets default values for page and page_size if the"},{"event":"cmd_output","timestamp":1607098496,"output":"y are omitted (skipped)\n * test describe_topology() all types of jobs\r * test describe_topology()"},{"event":"cmd_output","timestamp":1607098496,"output":" all types of jobs (skipped)\n * test describe call for existing ppl in all states\u001b[22m\n16:14:56.0"},{"event":"cmd_output","timestamp":1607098496,"output":"88 [info] ppl_id: ab680ac8-0c7f-4133-a1b6-bd0ef13a9b1f, type: PplRequests, event: persisted schedul"},{"event":"cmd_output","timestamp":1607098496,"output":"e request with request_token: d949afa0-364b-11eb-be15-5254005464e2, origin: Elixir.Ppl.PplRequests.M"},{"event":"cmd_output","timestamp":1607098496,"output":"odel.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:14:56.091 [info] ppl_id: ab680ac8-"},{"event":"cmd_output","timestamp":1607098496,"output":"0c7f-4133-a1b6-bd0ef13a9b1f, type: Ppls, state: initializing, event: initializing, recovery_count: 0"},{"event":"cmd_output","timestamp":1607098496,"output":", origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:14:56.104 [inf"},{"event":"cmd_output","timestamp":1607098496,"output":"o] ppl_id: ab680ac8-0c7f-4133-a1b6-bd0ef13a9b1f, type: Ppls, event: exit_scheduling, origin: Elixir"},{"event":"cmd_output","timestamp":1607098496,"output":".Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:56.109 [info] Request: 'run: %{\"branch"},{"event":"cmd_output","timestamp":1607098496,"output":"_id\" => \"85dca8d7-5541-4763-be2b-1bc5ce7e4957\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a44"},{"event":"cmd_output","timestamp":1607098496,"output":"69\", \"file_name\" => \"semaphore.yml\", \"hook_id\" => \"d94d0df8-364b-11eb-ba55-5254005464e2\", \"label\" =>"},{"event":"cmd_output","timestamp":1607098496,"output":" \"master\", \"organization_id\" => \"dbce436d-a479-4c33-b92f-92c845049f06\", \"owner\" => \"rt\", \"project_id"},{"event":"cmd_output","timestamp":1607098496,"output":"\" => \"2dabbc21-7cc2-4814-9143-eb85efaa815a\", \"repo_name\" => \"2_basic\", \"request_token\" => \"d94d02c2-"},{"event":"cmd_output","timestamp":1607098496,"output":"364b-11eb-8901-5254005464e2\", \"requester_id\" => \"887d65f6-1a82-4b12-ad52-96f52af1f379\", \"service\" =>"},{"event":"cmd_output","timestamp":1607098496,"output":" \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"f3bf97d5-d643-40"},{"event":"cmd_output","timestamp":1607098496,"output":"09-b8f3-fdf7cbf31daa\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:14:56.111 [info] ppl_id: f03df"},{"event":"cmd_output","timestamp":1607098496,"output":"029-3814-4b56-8f77-2c87de8ad11f, type: PplRequests, event: persisted schedule request with request_t"},{"event":"cmd_output","timestamp":1607098496,"output":"oken: d94d02c2-364b-11eb-8901-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries."},{"event":"cmd_output","timestamp":1607098496,"output":"process_response/2(L55), \n\u001b[0m\u001b[22m\n16:14:56.112 [info] ppl_id: f03df029-3814-4b56-8f77-2c87de8ad"},{"event":"cmd_output","timestamp":1607098496,"output":"11f, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098496,"output":"s.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:14:56.116 [info] Project 2dabbc21-7cc"},{"event":"cmd_output","timestamp":1607098496,"output":"2-4814-9143-eb85efaa815a and branch masterlatest_wf details updated: \"wf_id: f3bf97d5-d643-4009-b8f3"},{"event":"cmd_output","timestamp":1607098496,"output":"-fdf7cbf31daa, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:14:56.117 [info] Persisted ppl_sub_init for pipeline wi"},{"event":"cmd_output","timestamp":1607098496,"output":"th ppl_id: f03df029-3814-4b56-8f77-2c87de8ad11f: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto."},{"event":"cmd_output","timestamp":1607098496,"output":"Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 36"},{"event":"cmd_output","timestamp":1607098496,"output":"0, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:14:56.116078], pipeline"},{"event":"cmd_output","timestamp":1607098496,"output":"_requests: #Ecto.Association.NotLoaded, ppl_id: \"f03df"},{"event":"cmd_output","timestamp":1607098496,"output":"029-3814-4b56-8f77-2c87de8ad11f\", recovery_count: 0, result: nil, result_reason: nil, state: \"create"},{"event":"cmd_output","timestamp":1607098496,"output":"d\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:14:56.116084]}"},{"event":"cmd_output","timestamp":1607098496,"output":"\n\u001b[0m\u001b[22m\n16:14:56.120 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedStat"},{"event":"cmd_output","timestamp":1607098496,"output":"e with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.beh"},{"event":"cmd_output","timestamp":1607098496,"output":"older-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args: %{allowed_states: [\"fe"},{"event":"cmd_output","timestamp":1607098496,"output":"tching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_st"},{"event":"cmd_output","timestamp":1607098496,"output":"ate: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updat"},{"event":"cmd_output","timestamp":1607098496,"output":"ed_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_s"},{"event":"cmd_output","timestamp":1607098496,"output":"upervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:56.121 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHa"},{"event":"cmd_output","timestamp":1607098496,"output":"ndler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 ms, met"},{"event":"cmd_output","timestamp":1607098496,"output":"ric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %{"},{"event":"cmd_output","timestamp":1607098496,"output":"allowed_states: [\"regular_init\", \"compilation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Pp"},{"event":"cmd_output","timestamp":1607098496,"output":"lSubInits.Model.PplSubInits, observed_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, re"},{"event":"cmd_output","timestamp":1607098496,"output":"turning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: "},{"event":"cmd_output","timestamp":1607098496,"output":"Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:56.121 [info] Periodic"},{"event":"cmd_output","timestamp":1607098496,"output":" from module Elixir.Ppl.PplSubInits.STMHandler.CompilationState with name Elixir.Ppl.PplSubInits.STM"},{"event":"cmd_output","timestamp":1607098496,"output":"Handler.CompilationState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-"},{"event":"cmd_output","timestamp":1607098496,"output":"STMHandler-CompilationState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"s"},{"event":"cmd_output","timestamp":1607098496,"output":"topping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_"},{"event":"cmd_output","timestamp":1607098496,"output":"state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, "},{"event":"cmd_output","timestamp":1607098496,"output":":updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, "},{"event":"cmd_output","timestamp":1607098496,"output":"task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:56.122 [info] Periodic from module Elixir.Ppl.PplSubInits"},{"event":"cmd_output","timestamp":1607098496,"output":".STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period:"},{"event":"cmd_output","timestamp":1607098496,"output":" 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, rec"},{"event":"cmd_output","timestamp":1607098496,"output":"urring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.P"},{"event":"cmd_output","timestamp":1607098496,"output":"plSubInits, observed_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id"},{"event":"cmd_output","timestamp":1607098496,"output":", :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubIni"},{"event":"cmd_output","timestamp":1607098496,"output":"ts.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:56.122 [info] Periodic from module "},{"event":"cmd_output","timestamp":1607098496,"output":"Elixir.Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.STMHandler.InitializingState "},{"event":"cmd_output","timestamp":1607098496,"output":":: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]},"},{"event":"cmd_output","timestamp":1607098496,"output":" recurring args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], cooling_time_sec: 0, initial"},{"event":"cmd_output","timestamp":1607098496,"output":"_query: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher_cb: #Function<0.125326080/1 i"},{"event":"cmd_output","timestamp":1607098496,"output":"n Ppl.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_req"},{"event":"cmd_output","timestamp":1607098496,"output":"uest, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_sup"},{"event":"cmd_output","timestamp":1607098496,"output":"ervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:56.235 [info] ppl_id: f03df029-3814-4b56-8f77-2c87de8ad11f, type:"},{"event":"cmd_output","timestamp":1607098496,"output":" PplRequests, event: persisted source_args for pipeline: f03df029-3814-4b56-8f77-2c87de8ad11f, origi"},{"event":"cmd_output","timestamp":1607098496,"output":"n: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:14:56.237 ["},{"event":"cmd_output","timestamp":1607098496,"output":"info] ppl_id: f03df029-3814-4b56-8f77-2c87de8ad11f, type: PplSubInits, state: fetching, event: exit"},{"event":"cmd_output","timestamp":1607098496,"output":"_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098496,"output":"\n16:14:56.253 [info] ppl_id: f03df029-3814-4b56-8f77-2c87de8ad11f, type: PplSubInits, state: regula"},{"event":"cmd_output","timestamp":1607098496,"output":"r_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1"},{"event":"cmd_output","timestamp":1607098496,"output":"(L90), \n\u001b[0m\u001b[22m\n16:14:56.276 [info] ppl_id: f03df029-3814-4b56-8f77-2c87de8ad11f, type: PplRequ"},{"event":"cmd_output","timestamp":1607098496,"output":"ests, event: persisted definition for request with request_token: d94d02c2-364b-11eb-8901-5254005464"},{"event":"cmd_output","timestamp":1607098496,"output":"e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098496,"output":"6:14:56.286 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<"},{"event":"cmd_output","timestamp":1607098496,"output":":loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:14:56.278289], name: \"master-.semaphore/semaphore."},{"event":"cmd_output","timestamp":1607098496,"output":"yml\", organization_id: \"dbce436d-a479-4c33-b92f-92c845049f06\", project_id: \"2dabbc21-7cc2-4814-9143-"},{"event":"cmd_output","timestamp":1607098496,"output":"eb85efaa815a\", queue_id: \"4ffd03b7-34f1-486b-91a7-d8b82af32a69\", scope: \"project\", updated_at: ~N[20"},{"event":"cmd_output","timestamp":1607098496,"output":"20-12-04 16:14:56.278297], user_generated: false}}\n\u001b[0m\u001b[22m\n16:14:56.289 [info] event: created, "},{"event":"cmd_output","timestamp":1607098496,"output":"origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:56.28"},{"event":"cmd_output","timestamp":1607098496,"output":"9 [info] ppl_id: f03df029-3814-4b56-8f77-2c87de8ad11f, type: PplBlocks, block_index: 0, state: init"},{"event":"cmd_output","timestamp":1607098496,"output":"ializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitSt"},{"event":"cmd_output","timestamp":1607098496,"output":"ate.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:56.290 [info] ppl_id: f03df029-3814-4b56-8f77-2c87de8ad11f,"},{"event":"cmd_output","timestamp":1607098496,"output":" type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098496,"output":"Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:56.295 [info] ppl_id: f03df029-3"},{"event":"cmd_output","timestamp":1607098496,"output":"814-4b56-8f77-2c87de8ad11f, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098496,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:56.329 [info] Periodic fr"},{"event":"cmd_output","timestamp":1607098496,"output":"om module Elixir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler.PendingState "},{"event":"cmd_output","timestamp":1607098496,"output":":: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recu"},{"event":"cmd_output","timestamp":1607098496,"output":"rring args: %{allowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_sec: 0, initia"},{"event":"cmd_output","timestamp":1607098496,"output":"l_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publisher_cb: #Function<0.8493005/1 in Ppl."},{"event":"cmd_output","timestamp":1607098496,"output":"Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :upda"},{"event":"cmd_output","timestamp":1607098496,"output":"ted_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: Pp"},{"event":"cmd_output","timestamp":1607098496,"output":"lsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:14:56.437 [info] ppl_id: f03df029-3814-4b56-8f77-2c87de8ad11f, typ"},{"event":"cmd_output","timestamp":1607098496,"output":"e: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.l"},{"event":"cmd_output","timestamp":1607098496,"output":"og_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:56.540 [info] Periodic from module Elixir.Ppl.Ppls.STMHa"},{"event":"cmd_output","timestamp":1607098496,"output":"ndler.QueuingState with name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, metric_name:"},{"event":"cmd_output","timestamp":1607098496,"output":" {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{allowed_states: ["},{"event":"cmd_output","timestamp":1607098496,"output":"\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_st"},{"event":"cmd_output","timestamp":1607098496,"output":"ate: \"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.args/0>, r"},{"event":"cmd_output","timestamp":1607098496,"output":"epo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_coun"},{"event":"cmd_output","timestamp":1607098496,"output":"t, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:56.540 [info] P"},{"event":"cmd_output","timestamp":1607098496,"output":"eriodic from module Elixir.Ppl.PplBlocks.STMHandler.InitializingState with name Elixir.Ppl.PplBlocks"},{"event":"cmd_output","timestamp":1607098496,"output":".STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBloc"},{"event":"cmd_output","timestamp":1607098496,"output":"ks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"waiting\", \"d"},{"event":"cmd_output","timestamp":1607098496,"output":"one\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"initializ"},{"event":"cmd_output","timestamp":1607098496,"output":"ing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :st"},{"event":"cmd_output","timestamp":1607098496,"output":"ate, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_s"},{"event":"cmd_output","timestamp":1607098496,"output":"upervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:56.540 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHand"},{"event":"cmd_output","timestamp":1607098496,"output":"ler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler.WaitingState :: period: 1000 ms, metric_n"},{"event":"cmd_output","timestamp":1607098496,"output":"ame: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurring args: %{allowed_"},{"event":"cmd_output","timestamp":1607098496,"output":"states: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplB"},{"event":"cmd_output","timestamp":1607098496,"output":"locks, observed_state: \"waiting\", publisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.STMHandler.Wa"},{"event":"cmd_output","timestamp":1607098496,"output":"itingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :r"},{"event":"cmd_output","timestamp":1607098496,"output":"esult, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervis"},{"event":"cmd_output","timestamp":1607098496,"output":"or: :skip}\n\u001b[0m\u001b[22m\n16:14:56.540 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.Run"},{"event":"cmd_output","timestamp":1607098496,"output":"ningState with name Elixir.Ppl.PplBlocks.STMHandler.RunningState :: period: 1000 ms, metric_name: {\""},{"event":"cmd_output","timestamp":1607098496,"output":"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states:"},{"event":"cmd_output","timestamp":1607098496,"output":" [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks"},{"event":"cmd_output","timestamp":1607098496,"output":", observed_state: \"running\", publisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHandler.Runnin"},{"event":"cmd_output","timestamp":1607098496,"output":"gState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :resul"},{"event":"cmd_output","timestamp":1607098496,"output":"t, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_s"},{"event":"cmd_output","timestamp":1607098496,"output":"upervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:56.541 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHand"},{"event":"cmd_output","timestamp":1607098496,"output":"ler.StoppingState with name Elixir.Ppl.PplBlocks.STMHandler.StoppingState :: period: 1000 ms, metric"},{"event":"cmd_output","timestamp":1607098496,"output":"_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurring args: %{allow"},{"event":"cmd_output","timestamp":1607098496,"output":"ed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks,"},{"event":"cmd_output","timestamp":1607098496,"output":" observed_state: \"stopping\", publisher_cb: #Function<0.104215991/1 in Ppl.PplBlocks.STMHandler.Stopp"},{"event":"cmd_output","timestamp":1607098496,"output":"ingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :res"},{"event":"cmd_output","timestamp":1607098496,"output":"ult, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task"},{"event":"cmd_output","timestamp":1607098496,"output":"_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:56.541 [info] Periodic from module Elixir.Block.Blocks.STMHan"},{"event":"cmd_output","timestamp":1607098496,"output":"dler.InitializingState with name Elixir.Block.Blocks.STMHandler.InitializingState :: period: 100 ms,"},{"event":"cmd_output","timestamp":1607098496,"output":" metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, recurring arg"},{"event":"cmd_output","timestamp":1607098496,"output":"s: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Blocks.Model.Blo"},{"event":"cmd_output","timestamp":1607098496,"output":"cks, observed_state: \"initializing\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :te"},{"event":"cmd_output","timestamp":1607098496,"output":"rminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks"},{"event":"cmd_output","timestamp":1607098496,"output":", task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:56.542 [info] Periodic from module Elixir.Block.Blocks."},{"event":"cmd_output","timestamp":1607098496,"output":"STMHandler.RunningState with name Elixir.Block.Blocks.STMHandler.RunningState :: period: 100 ms, met"},{"event":"cmd_output","timestamp":1607098496,"output":"ric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-RunningState\"]}, recurring args: %{allo"},{"event":"cmd_output","timestamp":1607098496,"output":"wed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model"},{"event":"cmd_output","timestamp":1607098496,"output":".Blocks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :ter"},{"event":"cmd_output","timestamp":1607098496,"output":"minate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks,"},{"event":"cmd_output","timestamp":1607098496,"output":" task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:56.542 [info] Periodic from module Elixir.Block.Blocks.S"},{"event":"cmd_output","timestamp":1607098496,"output":"TMHandler.StoppingState with name Elixir.Block.Blocks.STMHandler.StoppingState :: period: 100 ms, me"},{"event":"cmd_output","timestamp":1607098496,"output":"tric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-StoppingState\"]}, recurring args: %{al"},{"event":"cmd_output","timestamp":1607098496,"output":"lowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, "},{"event":"cmd_output","timestamp":1607098496,"output":"observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_r"},{"event":"cmd_output","timestamp":1607098496,"output":"equest, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_su"},{"event":"cmd_output","timestamp":1607098496,"output":"pervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:56.542 [info] Periodic from module Elixir.Block.Tasks.STMHandler"},{"event":"cmd_output","timestamp":1607098496,"output":".PendingState with name Elixir.Block.Tasks.STMHandler.PendingState :: period: 100 ms, metric_name: {"},{"event":"cmd_output","timestamp":1607098496,"output":"\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingState\"]}, recurring args: %{allowed_states: "},{"event":"cmd_output","timestamp":1607098496,"output":"[\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Tasks.Model.Tasks, observed_state: \"p"},{"event":"cmd_output","timestamp":1607098496,"output":"ending\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at"},{"event":"cmd_output","timestamp":1607098496,"output":", :state, :recovery_count, :block_id, :build_request_id], schema: Block.Tasks.Model.Tasks, task_supe"},{"event":"cmd_output","timestamp":1607098496,"output":"rvisor: :skip}\n\u001b[0m\u001b[22m\n16:14:56.542 [info] Periodic from module Elixir.Block.Tasks.STMHandler.R"},{"event":"cmd_output","timestamp":1607098496,"output":"unningState with name Elixir.Block.Tasks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"P"},{"event":"cmd_output","timestamp":1607098496,"output":"pl.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\""},{"event":"cmd_output","timestamp":1607098496,"output":"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observe"},{"event":"cmd_output","timestamp":1607098496,"output":"d_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, "},{"event":"cmd_output","timestamp":1607098496,"output":":updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: "},{"event":"cmd_output","timestamp":1607098496,"output":":skip}\n\u001b[0m\u001b[22m\n16:14:56.543 [info] Periodic from module Elixir.Block.Tasks.STMHandler.StoppingS"},{"event":"cmd_output","timestamp":1607098496,"output":"tate with name Elixir.Block.Tasks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beh"},{"event":"cmd_output","timestamp":1607098496,"output":"older-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopp"},{"event":"cmd_output","timestamp":1607098496,"output":"ing\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"stoppi"},{"event":"cmd_output","timestamp":1607098496,"output":"ng\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :s"},{"event":"cmd_output","timestamp":1607098496,"output":"tate, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098496,"output":"2m\n16:14:56.657 [info] ppl_id: f03df029-3814-4b56-8f77-2c87de8ad11f, type: PplBlocks, block_index:"},{"event":"cmd_output","timestamp":1607098496,"output":" 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_st"},{"event":"cmd_output","timestamp":1607098496,"output":"ate_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:56.659 [info] ppl_id: f03df029-3814-4b56-8f77-2c87de8ad11f, t"},{"event":"cmd_output","timestamp":1607098496,"output":"ype: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl"},{"event":"cmd_output","timestamp":1607098496,"output":".log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:56.667 [info] PplBlocks WaitingState STM is scheduling"},{"event":"cmd_output","timestamp":1607098496,"output":" block 0 from pipeline: \"f03df029-3814-4b56-8f77-2c87de8ad11f\"\n\u001b[0m\u001b[22m\n16:14:56.674 [info] bloc"},{"event":"cmd_output","timestamp":1607098496,"output":"k_id: 8f5a7072-8a1e-4055-8e49-052622ed294c, type: BlockRequests, event: persisted block run request "},{"event":"cmd_output","timestamp":1607098496,"output":"from ppl f03df029-3814-4b56-8f77-2c87de8ad11f for block 0, origin: Elixir.Block.BlockRequests.Model."},{"event":"cmd_output","timestamp":1607098496,"output":"BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:14:56.676 [info] block_id: 8f5a7072-8"},{"event":"cmd_output","timestamp":1607098496,"output":"a1e-4055-8e49-052622ed294c, type: Blocks, state: initializing, event: initializing, recovery_count: "},{"event":"cmd_output","timestamp":1607098496,"output":"0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:14:56.678 [info] "},{"event":"cmd_output","timestamp":1607098496,"output":"Block 0 of pipeline with id: f03df029-3814-4b56-8f77-2c87de8ad11f scheduled in block service with id"},{"event":"cmd_output","timestamp":1607098496,"output":": : \"8f5a7072-8a1e-4055-8e49-052622ed294c\"\n\u001b[0m\u001b[22m\n16:14:56.682 [info] ppl_id: f03df029-3814-4b"},{"event":"cmd_output","timestamp":1607098496,"output":"56-8f77-2c87de8ad11f, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recov"},{"event":"cmd_output","timestamp":1607098496,"output":"ery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:56.690 [inf"},{"event":"cmd_output","timestamp":1607098496,"output":"o] block_id: 8f5a7072-8a1e-4055-8e49-052622ed294c, type: BlockRequests, event: persisted build and "},{"event":"cmd_output","timestamp":1607098496,"output":"sub_ppl details for block_request: 8f5a7072-8a1e-4055-8e49-052622ed294c, origin: Elixir.Block.BlockR"},{"event":"cmd_output","timestamp":1607098496,"output":"equests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:14:56.692 [info] block_id: "},{"event":"cmd_output","timestamp":1607098496,"output":"8f5a7072-8a1e-4055-8e49-052622ed294c, type: Tasks, state: pending, event: created, recovery_count: 0"},{"event":"cmd_output","timestamp":1607098496,"output":", origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:14:56.69"},{"event":"cmd_output","timestamp":1607098496,"output":"4 [info] block_id: 8f5a7072-8a1e-4055-8e49-052622ed294c, type: Blocks, state: running, event: exit_"},{"event":"cmd_output","timestamp":1607098496,"output":"scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098496,"output":"16:14:56.712 [info] block_id: 8f5a7072-8a1e-4055-8e49-052622ed294c, type: Tasks, state: running, ev"},{"event":"cmd_output","timestamp":1607098496,"output":"ent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b"},{"event":"cmd_output","timestamp":1607098496,"output":"[0m\u001b[22m\n16:14:56.766 [info] block_id: 8f5a7072-8a1e-4055-8e49-052622ed294c, type: Tasks, state: d"},{"event":"cmd_output","timestamp":1607098496,"output":"one, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L9"},{"event":"cmd_output","timestamp":1607098496,"output":"0), \n\u001b[0m\u001b[22m\n16:14:56.770 [info] block_id: 8f5a7072-8a1e-4055-8e49-052622ed294c, type: Blocks, "},{"event":"cmd_output","timestamp":1607098496,"output":"state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_cha"},{"event":"cmd_output","timestamp":1607098496,"output":"nge/1(L90), \n\u001b[0m\u001b[22m\n16:14:56.775 [info] ppl_id: f03df029-3814-4b56-8f77-2c87de8ad11f, block_id"},{"event":"cmd_output","timestamp":1607098496,"output":": 8f5a7072-8a1e-4055-8e49-052622ed294c, type: PplBlocks, block_index: 0, state: done, result: passed"},{"event":"cmd_output","timestamp":1607098496,"output":", event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90),"},{"event":"cmd_output","timestamp":1607098499,"output":" \n\u001b[0m\u001b[22m\n16:14:59.758 [info] Request: 'terminate', request: %{\"ppl_id\" => \"f03df029-3814-4b56-"},{"event":"cmd_output","timestamp":1607098499,"output":"8f77-2c87de8ad11f\", \"requester_id\" => \"user1\"}\n\u001b[0m\u001b[22m\n16:14:59.766 [info] Periodic from module"},{"event":"cmd_output","timestamp":1607098499,"output":" Elixir.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHandler.RunningState :: period"},{"event":"cmd_output","timestamp":1607098499,"output":": 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring arg"},{"event":"cmd_output","timestamp":1607098499,"output":"s: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls."},{"event":"cmd_output","timestamp":1607098499,"output":"Model.Ppls, observed_state: \"running\", publisher_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler.R"},{"event":"cmd_output","timestamp":1607098499,"output":"unningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :"},{"event":"cmd_output","timestamp":1607098499,"output":"result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}"},{"event":"cmd_output","timestamp":1607098499,"output":"\n\u001b[0m\u001b[22m\n16:14:59.887 [info] ppl_id: f03df029-3814-4b56-8f77-2c87de8ad11f, type: Ppls, state: s"},{"event":"cmd_output","timestamp":1607098499,"output":"topping, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/"},{"event":"cmd_output","timestamp":1607098499,"output":"1(L90), \n\u001b[0m\u001b[22m\n16:14:59.979 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.StoppingSt"},{"event":"cmd_output","timestamp":1607098499,"output":"ate with name Elixir.Ppl.Ppls.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholde"},{"event":"cmd_output","timestamp":1607098499,"output":"r-wake_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \""},{"event":"cmd_output","timestamp":1607098499,"output":"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"stopping\", publis"},{"event":"cmd_output","timestamp":1607098499,"output":"her_cb: #Function<0.71803493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, ret"},{"event":"cmd_output","timestamp":1607098499,"output":"urning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: P"},{"event":"cmd_output","timestamp":1607098500,"output":"pl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:15:00.109 [info] ppl_id: f03df029-3814-4"},{"event":"cmd_output","timestamp":1607098500,"output":"b56-8f77-2c87de8ad11f, type: Ppls, state: done, result: stopped, event: exit_scheduling, recovery_co"},{"event":"cmd_output","timestamp":1607098500,"output":"unt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test describe call f"},{"event":"cmd_output","timestamp":1607098500,"output":"or existing ppl in all states (4159.6ms)\u001b[0m\n * test terminate test - done pipeline\r * test termi"},{"event":"cmd_output","timestamp":1607098500,"output":"nate test - done pipeline (skipped)\n * test describe_topology() returns boosters jobs\r * test des"},{"event":"cmd_output","timestamp":1607098500,"output":"cribe_topology() returns boosters jobs (skipped)\n\nPpl.DefinitionReviser.BlocksGodfather.Test\n * "},{"event":"cmd_output","timestamp":1607098500,"output":"test set unique names for blocks whitouth names\r * test set unique names for blocks whitouth names "},{"event":"cmd_output","timestamp":1607098500,"output":"(skipped)\n * test blocks with all unique names should pass validation\r * test blocks with all uni"},{"event":"cmd_output","timestamp":1607098500,"output":"que names should pass validation (skipped)\n * test blocks with same names should not pass validati"},{"event":"cmd_output","timestamp":1607098500,"output":"on\r * test blocks with same names should not pass validation (skipped)\n * test set unique names o"},{"event":"cmd_output","timestamp":1607098500,"output":"nly for blocks whitouth names\r * test set unique names only for blocks whitouth names (skipped)\n "},{"event":"cmd_output","timestamp":1607098500,"output":"* test when default name is taken, use one with increased index for nameless blocks\r * test when de"},{"event":"cmd_output","timestamp":1607098500,"output":"fault name is taken, use one with increased index for nameless blocks (skipped)\n\nPpl.Admin.Server."},{"event":"cmd_output","timestamp":1607098500,"output":"Test\n * test get_yaml returns error for non-existing pipeline\r * test get_yaml returns error for "},{"event":"cmd_output","timestamp":1607098500,"output":"non-existing pipeline (skipped)\n * test get_yaml returns yaml definition for existing pipeline\u001b[22"},{"event":"cmd_output","timestamp":1607098500,"output":"m\n16:15:00.243 [info] Request: 'run: %{:repo_name => \"2_basic\", \"branch_id\" => \"c2c9b852-50cc-4ca6"},{"event":"cmd_output","timestamp":1607098500,"output":"-a7ac-78d0a5c28551\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"semaph"},{"event":"cmd_output","timestamp":1607098500,"output":"ore.yml\", \"hook_id\" => \"dbc3cf72-364b-11eb-bf0f-5254005464e2\", \"label\" => \"master\", \"organization_id"},{"event":"cmd_output","timestamp":1607098500,"output":"\" => \"1e382724-b7dd-4134-9174-baaf91053c4d\", \"owner\" => \"rt\", \"project_id\" => \"562004a9-6d84-4e02-a0"},{"event":"cmd_output","timestamp":1607098500,"output":"59-052b1e9f6970\", \"repo_name\" => \"2_basic\", \"request_token\" => \"dbc3c7de-364b-11eb-b3ff-5254005464e2"},{"event":"cmd_output","timestamp":1607098500,"output":"\", \"requester_id\" => \"fc06a721-9f98-407f-8e33-02010476b9e4\", \"service\" => \"local\", \"suppressed_attri"},{"event":"cmd_output","timestamp":1607098500,"output":"butes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"03cbdee7-c1c5-4c5d-8c75-c2749b361ee6\", \"wor"},{"event":"cmd_output","timestamp":1607098500,"output":"king_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:15:00.247 [info] ppl_id: 7d55a30e-cb9a-4d64-a986-2f2c63d0"},{"event":"cmd_output","timestamp":1607098500,"output":"8861, type: PplRequests, event: persisted schedule request with request_token: dbc3c7de-364b-11eb-b3"},{"event":"cmd_output","timestamp":1607098500,"output":"ff-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n"},{"event":"cmd_output","timestamp":1607098500,"output":"\u001b[0m\u001b[22m\n16:15:00.249 [info] ppl_id: 7d55a30e-cb9a-4d64-a986-2f2c63d08861, type: Ppls, state: ini"},{"event":"cmd_output","timestamp":1607098500,"output":"tializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process"},{"event":"cmd_output","timestamp":1607098500,"output":"_response/2(L124), \n\u001b[0m\u001b[22m\n16:15:00.252 [info] Project 562004a9-6d84-4e02-a059-052b1e9f6970 an"},{"event":"cmd_output","timestamp":1607098500,"output":"d branch masterlatest_wf details updated: \"wf_id: 03cbdee7-c1c5-4c5d-8c75-c2749b361ee6, wf_number: 1"},{"event":"cmd_output","timestamp":1607098500,"output":"\"\n\u001b[0m\u001b[22m\n16:15:00.253 [info] Persisted ppl_sub_init for pipeline with ppl_id: 7d55a30e-cb9a-4d"},{"event":"cmd_output","timestamp":1607098500,"output":"64-a986-2f2c63d08861: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"p"},{"event":"cmd_output","timestamp":1607098500,"output":"ipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 361, in_scheduling: false, in"},{"event":"cmd_output","timestamp":1607098500,"output":"it_type: \"regular\", inserted_at: ~N[2020-12-04 16:15:00.252455], pipeline_requests: #Ecto.Associatio"},{"event":"cmd_output","timestamp":1607098500,"output":"n.NotLoaded, ppl_id: \"7d55a30e-cb9a-4d64-a986-2f2c63d0"},{"event":"cmd_output","timestamp":1607098500,"output":"8861\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil,"},{"event":"cmd_output","timestamp":1607098500,"output":" terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:15:00.252460]}\n\u001b[0m\u001b[22m\n16:15:00.256 ["},{"event":"cmd_output","timestamp":1607098500,"output":"info] Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.S"},{"event":"cmd_output","timestamp":1607098500,"output":"TMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMH"},{"event":"cmd_output","timestamp":1607098500,"output":"andler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], "},{"event":"cmd_output","timestamp":1607098500,"output":"cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher_c"},{"event":"cmd_output","timestamp":1607098500,"output":"b: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, ret"},{"event":"cmd_output","timestamp":1607098500,"output":"urning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: P"},{"event":"cmd_output","timestamp":1607098500,"output":"pl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:15:00.256 [info] Periodic from module El"},{"event":"cmd_output","timestamp":1607098500,"output":"ixir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 1"},{"event":"cmd_output","timestamp":1607098500,"output":"00 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args: "},{"event":"cmd_output","timestamp":1607098500,"output":"%{allowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl"},{"event":"cmd_output","timestamp":1607098500,"output":".Ppls.Model.Ppls, observed_state: \"pending\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHand"},{"event":"cmd_output","timestamp":1607098500,"output":"ler.PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :sta"},{"event":"cmd_output","timestamp":1607098500,"output":"te, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSuperv"},{"event":"cmd_output","timestamp":1607098500,"output":"isor}\n\u001b[0m\u001b[22m\n16:15:00.257 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.QueuingState "},{"event":"cmd_output","timestamp":1607098500,"output":"with name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wak"},{"event":"cmd_output","timestamp":1607098500,"output":"e_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{allowed_states: [\"queuing\", \"running"},{"event":"cmd_output","timestamp":1607098500,"output":"\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", pub"},{"event":"cmd_output","timestamp":1607098500,"output":"lisher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, "},{"event":"cmd_output","timestamp":1607098500,"output":"returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema"},{"event":"cmd_output","timestamp":1607098500,"output":": Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:15:00.257 [info] Periodic from module"},{"event":"cmd_output","timestamp":1607098500,"output":" Elixir.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHandler.RunningState :: period"},{"event":"cmd_output","timestamp":1607098500,"output":": 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring arg"},{"event":"cmd_output","timestamp":1607098500,"output":"s: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls."},{"event":"cmd_output","timestamp":1607098500,"output":"Model.Ppls, observed_state: \"running\", publisher_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler.R"},{"event":"cmd_output","timestamp":1607098500,"output":"unningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :"},{"event":"cmd_output","timestamp":1607098500,"output":"result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}"},{"event":"cmd_output","timestamp":1607098500,"output":"\n\u001b[0m\u001b[22m\n16:15:00.257 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.StoppingState with"},{"event":"cmd_output","timestamp":1607098500,"output":" name Elixir.Ppl.Ppls.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_u"},{"event":"cmd_output","timestamp":1607098500,"output":"p\", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], "},{"event":"cmd_output","timestamp":1607098500,"output":"cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"stopping\", publisher_cb: "},{"event":"cmd_output","timestamp":1607098500,"output":"#Function<0.71803493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: "},{"event":"cmd_output","timestamp":1607098500,"output":"[:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls."},{"event":"cmd_output","timestamp":1607098500,"output":"Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:15:00.257 [info] Periodic from module Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098500,"output":".PplSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: per"},{"event":"cmd_output","timestamp":1607098500,"output":"iod: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, rec"},{"event":"cmd_output","timestamp":1607098500,"output":"urring args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubI"},{"event":"cmd_output","timestamp":1607098500,"output":"nits.Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returnin"},{"event":"cmd_output","timestamp":1607098500,"output":"g: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Pp"},{"event":"cmd_output","timestamp":1607098500,"output":"lSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:15:00.257 [info] Periodic from "},{"event":"cmd_output","timestamp":1607098500,"output":"module Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler.F"},{"event":"cmd_output","timestamp":1607098500,"output":"etchingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-F"},{"event":"cmd_output","timestamp":1607098500,"output":"etchingState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"done\"], cooling_"},{"event":"cmd_output","timestamp":1607098500,"output":"time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fetching\", publishe"},{"event":"cmd_output","timestamp":1607098500,"output":"r_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, "},{"event":"cmd_output","timestamp":1607098500,"output":":recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098500,"output":"[22m\n16:15:00.257 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CompilationState w"},{"event":"cmd_output","timestamp":1607098500,"output":"ith name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 100 ms, metric_name: {\"Ppl.be"},{"event":"cmd_output","timestamp":1607098500,"output":"holder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurring args: %{allowed_states:"},{"event":"cmd_output","timestamp":1607098500,"output":" [\"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSu"},{"event":"cmd_output","timestamp":1607098500,"output":"bInits.Model.PplSubInits, observed_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, re"},{"event":"cmd_output","timestamp":1607098500,"output":"turning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: "},{"event":"cmd_output","timestamp":1607098500,"output":"Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:15:00.257 [info] Periodic"},{"event":"cmd_output","timestamp":1607098500,"output":" from module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.STM"},{"event":"cmd_output","timestamp":1607098500,"output":"Handler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-"},{"event":"cmd_output","timestamp":1607098500,"output":"STMHandler-RegularInitState\"]}, recurring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, ini"},{"event":"cmd_output","timestamp":1607098500,"output":"tial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_init\", publisher_cb: :skip, "},{"event":"cmd_output","timestamp":1607098500,"output":"repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_cou"},{"event":"cmd_output","timestamp":1607098500,"output":"nt, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:15:0"},{"event":"cmd_output","timestamp":1607098500,"output":"0.257 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.InitializingState with name Elixi"},{"event":"cmd_output","timestamp":1607098500,"output":"r.Ppl.PplBlocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\""},{"event":"cmd_output","timestamp":1607098500,"output":", [\"Ppl-PplBlocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\""},{"event":"cmd_output","timestamp":1607098500,"output":", \"waiting\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_st"},{"event":"cmd_output","timestamp":1607098500,"output":"ate: \"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :"},{"event":"cmd_output","timestamp":1607098500,"output":"updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.Pp"},{"event":"cmd_output","timestamp":1607098500,"output":"lBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:15:00.257 [info] Periodic from module Elixir.Ppl.Pp"},{"event":"cmd_output","timestamp":1607098500,"output":"lBlocks.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler.WaitingState :: period: 10"},{"event":"cmd_output","timestamp":1607098500,"output":"00 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurring a"},{"event":"cmd_output","timestamp":1607098500,"output":"rgs: %{allowed_states: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBl"},{"event":"cmd_output","timestamp":1607098500,"output":"ocks.Model.PplBlocks, observed_state: \"waiting\", publisher_cb: #Function<0.8975022/1 in Ppl.PplBlock"},{"event":"cmd_output","timestamp":1607098500,"output":"s.STMHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated"},{"event":"cmd_output","timestamp":1607098500,"output":"_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks"},{"event":"cmd_output","timestamp":1607098500,"output":", task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:15:00.258 [info] Periodic from module Elixir.Ppl.PplBlocks"},{"event":"cmd_output","timestamp":1607098500,"output":".STMHandler.RunningState with name Elixir.Ppl.PplBlocks.STMHandler.RunningState :: period: 1000 ms, "},{"event":"cmd_output","timestamp":1607098500,"output":"metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, recurring args: %{"},{"event":"cmd_output","timestamp":1607098500,"output":"allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks."},{"event":"cmd_output","timestamp":1607098500,"output":"Model.PplBlocks, observed_state: \"running\", publisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.ST"},{"event":"cmd_output","timestamp":1607098500,"output":"MHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at,"},{"event":"cmd_output","timestamp":1607098500,"output":" :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.Pp"},{"event":"cmd_output","timestamp":1607098500,"output":"lBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:15:00.258 [info] Periodic from module Elixir.Ppl.Pp"},{"event":"cmd_output","timestamp":1607098500,"output":"lBlocks.STMHandler.StoppingState with name Elixir.Ppl.PplBlocks.STMHandler.StoppingState :: period: "},{"event":"cmd_output","timestamp":1607098500,"output":"1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurrin"},{"event":"cmd_output","timestamp":1607098500,"output":"g args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.M"},{"event":"cmd_output","timestamp":1607098500,"output":"odel.PplBlocks, observed_state: \"stopping\", publisher_cb: #Function<0.104215991/1 in Ppl.PplBlocks.S"},{"event":"cmd_output","timestamp":1607098500,"output":"TMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_a"},{"event":"cmd_output","timestamp":1607098500,"output":"t, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model."},{"event":"cmd_output","timestamp":1607098500,"output":"PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:15:00.258 [info] Periodic from module Elixir.Bloc"},{"event":"cmd_output","timestamp":1607098500,"output":"k.Blocks.STMHandler.InitializingState with name Elixir.Block.Blocks.STMHandler.InitializingState :: "},{"event":"cmd_output","timestamp":1607098500,"output":"period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-InitializingState\"]}"},{"event":"cmd_output","timestamp":1607098500,"output":", recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.B"},{"event":"cmd_output","timestamp":1607098500,"output":"locks.Model.Blocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Block.EctoRepo, retur"},{"event":"cmd_output","timestamp":1607098500,"output":"ning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Bloc"},{"event":"cmd_output","timestamp":1607098500,"output":"ks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:15:00.258 [info] Periodic from module Elixi"},{"event":"cmd_output","timestamp":1607098500,"output":"r.Block.Blocks.STMHandler.RunningState with name Elixir.Block.Blocks.STMHandler.RunningState :: peri"},{"event":"cmd_output","timestamp":1607098500,"output":"od: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-RunningState\"]}, recurri"},{"event":"cmd_output","timestamp":1607098500,"output":"ng args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Blo"},{"event":"cmd_output","timestamp":1607098500,"output":"ck.Blocks.Model.Blocks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, return"},{"event":"cmd_output","timestamp":1607098500,"output":"ing: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Block"},{"event":"cmd_output","timestamp":1607098500,"output":"s.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:15:00.258 [info] Periodic from module Elixir"},{"event":"cmd_output","timestamp":1607098500,"output":".Block.Blocks.STMHandler.StoppingState with name Elixir.Block.Blocks.STMHandler.StoppingState :: per"},{"event":"cmd_output","timestamp":1607098500,"output":"iod: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-StoppingState\"]}, recur"},{"event":"cmd_output","timestamp":1607098500,"output":"ring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks"},{"event":"cmd_output","timestamp":1607098500,"output":".Model.Blocks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:i"},{"event":"cmd_output","timestamp":1607098500,"output":"d, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model."},{"event":"cmd_output","timestamp":1607098500,"output":"Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:15:00.258 [info] Periodic from module Elixir.Block.T"},{"event":"cmd_output","timestamp":1607098500,"output":"asks.STMHandler.PendingState with name Elixir.Block.Tasks.STMHandler.PendingState :: period: 100 ms,"},{"event":"cmd_output","timestamp":1607098500,"output":" metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingState\"]}, recurring args: %{a"},{"event":"cmd_output","timestamp":1607098500,"output":"llowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Tasks.Model.Tasks, obs"},{"event":"cmd_output","timestamp":1607098500,"output":"erved_state: \"pending\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_reque"},{"event":"cmd_output","timestamp":1607098500,"output":"st, :updated_at, :state, :recovery_count, :block_id, :build_request_id], schema: Block.Tasks.Model.T"},{"event":"cmd_output","timestamp":1607098500,"output":"asks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:15:00.258 [info] Periodic from module Elixir.Block.Tas"},{"event":"cmd_output","timestamp":1607098500,"output":"ks.STMHandler.RunningState with name Elixir.Block.Tasks.STMHandler.RunningState :: period: 100 ms, m"},{"event":"cmd_output","timestamp":1607098500,"output":"etric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningState\"]}, recurring args: %{all"},{"event":"cmd_output","timestamp":1607098500,"output":"owed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model"},{"event":"cmd_output","timestamp":1607098500,"output":".Tasks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :term"},{"event":"cmd_output","timestamp":1607098500,"output":"inate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, ta"},{"event":"cmd_output","timestamp":1607098500,"output":"sk_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:15:00.258 [info] Periodic from module Elixir.Block.Tasks.STMHa"},{"event":"cmd_output","timestamp":1607098500,"output":"ndler.StoppingState with name Elixir.Block.Tasks.STMHandler.StoppingState :: period: 100 ms, metric_"},{"event":"cmd_output","timestamp":1607098500,"output":"name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]}, recurring args: %{allowed_"},{"event":"cmd_output","timestamp":1607098500,"output":"states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed"},{"event":"cmd_output","timestamp":1607098500,"output":"_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, "},{"event":"cmd_output","timestamp":1607098500,"output":":updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: "},{"event":"cmd_output","timestamp":1607098500,"output":":skip}\n\u001b[0m\u001b[22m\n16:15:00.404 [info] ppl_id: 7d55a30e-cb9a-4d64-a986-2f2c63d08861, type: PplReque"},{"event":"cmd_output","timestamp":1607098500,"output":"sts, event: persisted source_args for pipeline: 7d55a30e-cb9a-4d64-a986-2f2c63d08861, origin: Elixir"},{"event":"cmd_output","timestamp":1607098500,"output":".Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:15:00.407 [info] pp"},{"event":"cmd_output","timestamp":1607098500,"output":"l_id: 7d55a30e-cb9a-4d64-a986-2f2c63d08861, type: PplSubInits, state: fetching, event: exit_scheduli"},{"event":"cmd_output","timestamp":1607098500,"output":"ng, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:15:00"},{"event":"cmd_output","timestamp":1607098500,"output":".425 [info] ppl_id: 7d55a30e-cb9a-4d64-a986-2f2c63d08861, type: PplSubInits, state: regular_init, e"},{"event":"cmd_output","timestamp":1607098500,"output":"vent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n"},{"event":"cmd_output","timestamp":1607098500,"output":"\u001b[0m\u001b[22m\n16:15:00.442 [info] ppl_id: 7d55a30e-cb9a-4d64-a986-2f2c63d08861, type: PplRequests, eve"},{"event":"cmd_output","timestamp":1607098500,"output":"nt: persisted definition for request with request_token: dbc3c7de-364b-11eb-b3ff-5254005464e2, origi"},{"event":"cmd_output","timestamp":1607098500,"output":"n: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:15:00.4"},{"event":"cmd_output","timestamp":1607098500,"output":"44 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, "},{"event":"cmd_output","timestamp":1607098500,"output":"\"queues\">, inserted_at: ~N[2020-12-04 16:15:00.443558], name: \"master-.semaphore/semaphore.yml\", org"},{"event":"cmd_output","timestamp":1607098500,"output":"anization_id: \"1e382724-b7dd-4134-9174-baaf91053c4d\", project_id: \"562004a9-6d84-4e02-a059-052b1e9f6"},{"event":"cmd_output","timestamp":1607098500,"output":"970\", queue_id: \"948cb4f0-e6cc-45c3-9903-6508e53e315e\", scope: \"project\", updated_at: ~N[2020-12-04 "},{"event":"cmd_output","timestamp":1607098500,"output":"16:15:00.443566], user_generated: false}}\n\u001b[0m\u001b[22m\n16:15:00.447 [info] event: created, origin: E"},{"event":"cmd_output","timestamp":1607098500,"output":"lixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:15:00.447 [info] "},{"event":"cmd_output","timestamp":1607098500,"output":" ppl_id: 7d55a30e-cb9a-4d64-a986-2f2c63d08861, type: PplBlocks, block_index: 0, state: initializing,"},{"event":"cmd_output","timestamp":1607098500,"output":" event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_o"},{"event":"cmd_output","timestamp":1607098500,"output":"k?/1(L105), \n\u001b[0m\u001b[22m\n16:15:00.448 [info] ppl_id: 7d55a30e-cb9a-4d64-a986-2f2c63d08861, type: Pp"},{"event":"cmd_output","timestamp":1607098500,"output":"lSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Lo"},{"event":"cmd_output","timestamp":1607098500,"output":"oper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:15:00.456 [info] ppl_id: 7d55a30e-cb9a-4d64-"},{"event":"cmd_output","timestamp":1607098500,"output":"a986-2f2c63d08861, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098500,"output":"ixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:15:00.459 [info] ppl_id: 7d55a30e-cb9"},{"event":"cmd_output","timestamp":1607098500,"output":"a-4d64-a986-2f2c63d08861, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, r"},{"event":"cmd_output","timestamp":1607098500,"output":"ecovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:15:00.463 "},{"event":"cmd_output","timestamp":1607098500,"output":"[info] ppl_id: 7d55a30e-cb9a-4d64-a986-2f2c63d08861, type: Ppls, state: queuing, event: exit_schedu"},{"event":"cmd_output","timestamp":1607098500,"output":"ling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:15:"},{"event":"cmd_output","timestamp":1607098500,"output":"00.477 [info] ppl_id: 7d55a30e-cb9a-4d64-a986-2f2c63d08861, type: Ppls, state: running, event: exit"},{"event":"cmd_output","timestamp":1607098500,"output":"_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098500,"output":"\n16:15:00.482 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"7d55a30e-cb9a"},{"event":"cmd_output","timestamp":1607098500,"output":"-4d64-a986-2f2c63d08861\"\n\u001b[0m\u001b[22m\n16:15:00.487 [info] block_id: c35ed1cf-f0ad-4016-8741-0741678e"},{"event":"cmd_output","timestamp":1607098500,"output":"43bc, type: BlockRequests, event: persisted block run request from ppl 7d55a30e-cb9a-4d64-a986-2f2c6"},{"event":"cmd_output","timestamp":1607098500,"output":"3d08861 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/"},{"event":"cmd_output","timestamp":1607098500,"output":"4(L35), \n\u001b[0m\u001b[22m\n16:15:00.489 [info] block_id: c35ed1cf-f0ad-4016-8741-0741678e43bc, type: Bloc"},{"event":"cmd_output","timestamp":1607098500,"output":"ks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.B"},{"event":"cmd_output","timestamp":1607098500,"output":"locksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:15:00.492 [info] Block 0 of pipeline with id: 7d55a30e-"},{"event":"cmd_output","timestamp":1607098500,"output":"cb9a-4d64-a986-2f2c63d08861 scheduled in block service with id: : \"c35ed1cf-f0ad-4016-8741-0741678e4"},{"event":"cmd_output","timestamp":1607098500,"output":"3bc\"\n\u001b[0m\u001b[22m\n16:15:00.494 [info] ppl_id: 7d55a30e-cb9a-4d64-a986-2f2c63d08861, type: PplBlocks,"},{"event":"cmd_output","timestamp":1607098500,"output":" block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.ST"},{"event":"cmd_output","timestamp":1607098500,"output":"M.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:15:00.495 [info] block_id: c35ed1cf-f0ad-4016-8741-"},{"event":"cmd_output","timestamp":1607098500,"output":"0741678e43bc, type: BlockRequests, event: persisted build and sub_ppl details for block_request: c35"},{"event":"cmd_output","timestamp":1607098500,"output":"ed1cf-f0ad-4016-8741-0741678e43bc, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.ins"},{"event":"cmd_output","timestamp":1607098500,"output":"ert_build/2(L41), \n\u001b[0m\u001b[22m\n16:15:00.497 [info] block_id: c35ed1cf-f0ad-4016-8741-0741678e43bc, "},{"event":"cmd_output","timestamp":1607098500,"output":"type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandl"},{"event":"cmd_output","timestamp":1607098500,"output":"er.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:15:00.498 [info] block_id: c35ed1cf-f0ad-4016"},{"event":"cmd_output","timestamp":1607098500,"output":"-8741-0741678e43bc, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098500,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:15:00.508 [info] block_id: c35ed1c"},{"event":"cmd_output","timestamp":1607098500,"output":"f-f0ad-4016-8741-0741678e43bc, type: Tasks, state: running, event: exit_scheduling, recovery_count: "},{"event":"cmd_output","timestamp":1607098500,"output":"0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:15:00.614 [info] block_i"},{"event":"cmd_output","timestamp":1607098500,"output":"d: c35ed1cf-f0ad-4016-8741-0741678e43bc, type: Tasks, state: done, event: exit_scheduling, recovery_"},{"event":"cmd_output","timestamp":1607098500,"output":"count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:15:00.620 [info] "},{"event":"cmd_output","timestamp":1607098500,"output":"block_id: c35ed1cf-f0ad-4016-8741-0741678e43bc, type: Blocks, state: done, event: exit_scheduling, r"},{"event":"cmd_output","timestamp":1607098500,"output":"ecovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:15:00.625 "},{"event":"cmd_output","timestamp":1607098500,"output":"[info] ppl_id: 7d55a30e-cb9a-4d64-a986-2f2c63d08861, block_id: c35ed1cf-f0ad-4016-8741-0741678e43bc"},{"event":"cmd_output","timestamp":1607098500,"output":", type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_cou"},{"event":"cmd_output","timestamp":1607098500,"output":"nt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:15:00.633 [info] ppl"},{"event":"cmd_output","timestamp":1607098500,"output":"_id: 7d55a30e-cb9a-4d64-a986-2f2c63d08861, type: Ppls, state: done, result: passed, event: exit_sche"},{"event":"cmd_output","timestamp":1607098500,"output":"duling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * t"},{"event":"cmd_output","timestamp":1607098500,"output":"est get_yaml returns yaml definition for existing pipeline (522.1ms)\u001b[0m\n * test set admin termina"},{"event":"cmd_output","timestamp":1607098500,"output":"tion flags for all pipelines from given branch of given project\r * test set admin termination flags"},{"event":"cmd_output","timestamp":1607098500,"output":" for all pipelines from given branch of given project (skipped)\n * test set branch deletion termin"},{"event":"cmd_output","timestamp":1607098500,"output":"ation flags for all pipelines from given branch of given project\r * test set branch deletion termin"},{"event":"cmd_output","timestamp":1607098500,"output":"ation flags for all pipelines from given branch of given project (skipped)\n\nTest.Helpers\n\n\nFini"},{"event":"cmd_output","timestamp":1607098500,"output":"shed in 301.4 seconds\n\n\u001b[32m23 doctests, 392 tests, 0 failures, 281 skipped\u001b[0m\n\nRandomized with"},{"event":"cmd_output","timestamp":1607098500,"output":" seed 145509\nmake[1]: Leaving directory '/home/semaphore/alles/plumber/ppl'\n\nreal\t5m7.337s\nuser\t"},{"event":"cmd_output","timestamp":1607098500,"output":"0m0.409s\nsys\t0m0.614s\n"},{"event":"cmd_finished","timestamp":1607098500,"directive":"time make integration-test USER=root","exit_code":0,"started_at":1607098193,"finished_at":1607098500},{"event":"cmd_started","timestamp":1607098500,"directive":"export SEMAPHORE_JOB_RESULT=passed"},{"event":"cmd_finished","timestamp":1607098500,"directive":"export SEMAPHORE_JOB_RESULT=passed","exit_code":0,"started_at":1607098500,"finished_at":1607098500},{"event":"job_finished","timestamp":1607098501,"result":"passed"}] } \ No newline at end of file +{ "events": [{"event":"job_started","timestamp":1607098013},{"event":"cmd_started","timestamp":1607098013,"directive":"Exporting environment variables"},{"event":"cmd_output","timestamp":1607098013,"output":"Exporting TERM\n"},{"event":"cmd_output","timestamp":1607098013,"output":"Exporting PAGER\n"},{"event":"cmd_output","timestamp":1607098013,"output":"Exporting DISPLAY\n"},{"event":"cmd_output","timestamp":1607098013,"output":"Exporting CI\n"},{"event":"cmd_output","timestamp":1607098013,"output":"Exporting SEMAPHORE\n"},{"event":"cmd_output","timestamp":1607098013,"output":"Exporting SEMAPHORE_PROJECT_NAME\n"},{"event":"cmd_output","timestamp":1607098013,"output":"Exporting SEMAPHORE_PROJECT_ID\n"},{"event":"cmd_output","timestamp":1607098013,"output":"Exporting SEMAPHORE_JOB_NAME\n"},{"event":"cmd_output","timestamp":1607098013,"output":"Exporting SEMAPHORE_JOB_ID\n"},{"event":"cmd_output","timestamp":1607098013,"output":"Exporting SEMAPHORE_AGENT_MACHINE_TYPE\n"},{"event":"cmd_output","timestamp":1607098013,"output":"Exporting SEMAPHORE_AGENT_MACHINE_OS_IMAGE\n"},{"event":"cmd_output","timestamp":1607098013,"output":"Exporting SEMAPHORE_AGENT_MACHINE_ENVIRONMENT_TYPE\n"},{"event":"cmd_output","timestamp":1607098013,"output":"Exporting SEMAPHORE_ORGANIZATION_URL\n"},{"event":"cmd_output","timestamp":1607098013,"output":"Exporting SEMAPHORE_ARTIFACT_TOKEN\n"},{"event":"cmd_output","timestamp":1607098013,"output":"Exporting SSH_PRIVATE_KEY_PATH\n"},{"event":"cmd_output","timestamp":1607098013,"output":"Exporting SEMAPHORE_CACHE_PRIVATE_KEY_PATH\n"},{"event":"cmd_output","timestamp":1607098013,"output":"Exporting SEMAPHORE_CACHE_USERNAME\n"},{"event":"cmd_output","timestamp":1607098013,"output":"Exporting SEMAPHORE_CACHE_URL\n"},{"event":"cmd_output","timestamp":1607098013,"output":"Exporting SEMAPHORE_GIT_URL\n"},{"event":"cmd_output","timestamp":1607098013,"output":"Exporting SEMAPHORE_GIT_DIR\n"},{"event":"cmd_output","timestamp":1607098013,"output":"Exporting SEMAPHORE_GIT_SHA\n"},{"event":"cmd_output","timestamp":1607098013,"output":"Exporting SEMAPHORE_GIT_REPO_SLUG\n"},{"event":"cmd_output","timestamp":1607098013,"output":"Exporting SEMAPHORE_GIT_REF\n"},{"event":"cmd_output","timestamp":1607098013,"output":"Exporting SEMAPHORE_GIT_COMMIT_RANGE\n"},{"event":"cmd_output","timestamp":1607098013,"output":"Exporting SEMAPHORE_GIT_REF_TYPE\n"},{"event":"cmd_output","timestamp":1607098013,"output":"Exporting SEMAPHORE_GIT_BRANCH\n"},{"event":"cmd_output","timestamp":1607098013,"output":"Exporting DOCKER_USERNAME\n"},{"event":"cmd_output","timestamp":1607098013,"output":"Exporting DOCKER_PASSWORD\n"},{"event":"cmd_output","timestamp":1607098013,"output":"Exporting SEMAPHORE_WORKFLOW_ID\n"},{"event":"cmd_output","timestamp":1607098013,"output":"Exporting SEMAPHORE_WORKFLOW_NUMBER\n"},{"event":"cmd_output","timestamp":1607098013,"output":"Exporting SEMAPHORE_WORKFLOW_RERUN\n"},{"event":"cmd_output","timestamp":1607098013,"output":"Exporting SEMAPHORE_WORKFLOW_TRIGGERED_BY_HOOK\n"},{"event":"cmd_output","timestamp":1607098013,"output":"Exporting SEMAPHORE_WORKFLOW_HOOK_SOURCE\n"},{"event":"cmd_output","timestamp":1607098013,"output":"Exporting SEMAPHORE_WORKFLOW_TRIGGERED_BY_SCHEDULE\n"},{"event":"cmd_output","timestamp":1607098013,"output":"Exporting SEMAPHORE_WORKFLOW_TRIGGERED_BY_API\n"},{"event":"cmd_output","timestamp":1607098013,"output":"Exporting SEMAPHORE_PIPELINE_ARTEFACT_ID\n"},{"event":"cmd_output","timestamp":1607098013,"output":"Exporting SEMAPHORE_PIPELINE_ID\n"},{"event":"cmd_output","timestamp":1607098013,"output":"Exporting SEMAPHORE_PIPELINE_RERUN\n"},{"event":"cmd_output","timestamp":1607098013,"output":"Exporting SEMAPHORE_PIPELINE_PROMOTION\n"},{"event":"cmd_output","timestamp":1607098013,"output":"Exporting SEMAPHORE_PIPELINE_PROMOTED_BY\n"},{"event":"cmd_output","timestamp":1607098013,"output":"Exporting SEMAPHORE_PIPELINE_0_ARTEFACT_ID\n"},{"event":"cmd_finished","timestamp":1607098013,"directive":"Exporting environment variables","exit_code":0,"started_at":1607098013,"finished_at":1607098013},{"event":"cmd_started","timestamp":1607098013,"directive":"Injecting Files"},{"event":"cmd_output","timestamp":1607098013,"output":"Injecting /home/semaphore/.ssh/semaphore_cache_key with file mode 0600\n"},{"event":"cmd_output","timestamp":1607098013,"output":"Injecting .ssh/id_rsa with file mode 0600\n"},{"event":"cmd_finished","timestamp":1607098013,"directive":"Injecting Files","exit_code":0,"started_at":1607098013,"finished_at":1607098013},{"event":"cmd_started","timestamp":1607098013,"directive":"Setting up the Semaphore toolbox"},{"event":"cmd_output","timestamp":1607098013,"output":"Running: curl --retry 5 -L https://storage.googleapis.com/semaphore-toolbox/toolbox-370ee9f29606c3cac78364b94487ccc1.zip -o /tmp/toolbox.zip && unzip /tmp/toolbox.zip -d /tmp && mv /tmp/toolbox ~/.toolbox && bash ~/.toolbox/install-toolbox && source ~/.toolbox/toolbox && echo 'source ~/.toolbox/toolbox' >> ~/.bash_profile && if [ -f /etc/init.d/xvfb ]; then /etc/init.d/xvfb start; fi\n"},{"event":"cmd_output","timestamp":1607098013,"output":" % Total % Received % Xferd Average Speed Time Time Time Current\n "},{"event":"cmd_output","timestamp":1607098013,"output":" Dload Upload Total Spent Left Speed\n\r 0 0 0 0 0 0 0 "},{"event":"cmd_output","timestamp":1607098013,"output":" 0 --:--:-- --:--:-- --:--:-- 0\r100 413k 100 413k 0 0 4261k 0 --:--:-- --:--"},{"event":"cmd_output","timestamp":1607098013,"output":":-- --:--:-- 4261k\nArchive: /tmp/toolbox.zip\n creating: /tmp/toolbox/\n inflating: /tmp/toolbo"},{"event":"cmd_output","timestamp":1607098013,"output":"x/libcheckout \n extracting: /tmp/toolbox/artifacts \n inflating: /tmp/toolbox/cache \n inf"},{"event":"cmd_output","timestamp":1607098013,"output":"lating: /tmp/toolbox/retry \n creating: /tmp/toolbox/tests/\n inflating: /tmp/toolbox/tests/"},{"event":"cmd_output","timestamp":1607098013,"output":"cache.bats \n inflating: /tmp/toolbox/tests/libcheckout.bats \n inflating: /tmp/toolbox/tests/ma"},{"event":"cmd_output","timestamp":1607098013,"output":"cOS_cache.bats \n inflating: /tmp/toolbox/tests/base.bats \n inflating: /tmp/toolbox/tests/macOS"},{"event":"cmd_output","timestamp":1607098013,"output":"_autocache.bats \n creating: /tmp/toolbox/tests/support/\n creating: /tmp/toolbox/tests/support"},{"event":"cmd_output","timestamp":1607098013,"output":"/bats-support/\n creating: /tmp/toolbox/tests/support/bats-assert/\n creating: /tmp/toolbox/test"},{"event":"cmd_output","timestamp":1607098013,"output":"s/support/bats-core/\n extracting: /tmp/toolbox/tests/test_helper \n inflating: /tmp/toolbox/tests"},{"event":"cmd_output","timestamp":1607098013,"output":"/install_package.bats \n inflating: /tmp/toolbox/tests/autocache.bats \n inflating: /tmp/toolbox"},{"event":"cmd_output","timestamp":1607098013,"output":"/sem-install \n inflating: /tmp/toolbox/.gitmodules \n inflating: /tmp/toolbox/README.md \n in"},{"event":"cmd_output","timestamp":1607098013,"output":"flating: /tmp/toolbox/install-package \n extracting: /tmp/toolbox/.gitignore \n inflating: /tmp/t"},{"event":"cmd_output","timestamp":1607098013,"output":"oolbox/sem-service \n inflating: /tmp/toolbox/toolbox \n inflating: /tmp/toolbox/libchecksum "},{"event":"cmd_output","timestamp":1607098013,"output":"\n inflating: /tmp/toolbox/sem-service-check-params \n inflating: /tmp/toolbox/install-toolbox \r"},{"event":"cmd_output","timestamp":1607098013,"output":"\n inflating: /tmp/toolbox/sem-version \n creating: /tmp/toolbox/.git/\n inflating: /tmp/toolbox"},{"event":"cmd_output","timestamp":1607098013,"output":"/.git/config \n creating: /tmp/toolbox/.git/objects/\n creating: /tmp/toolbox/.git/objects/pack"},{"event":"cmd_output","timestamp":1607098013,"output":"/\n inflating: /tmp/toolbox/.git/objects/pack/pack-8ef742abca08b24f2a4aad3b1de285112ea61683.pack \r"},{"event":"cmd_output","timestamp":1607098013,"output":"\n inflating: /tmp/toolbox/.git/objects/pack/pack-8ef742abca08b24f2a4aad3b1de285112ea61683.idx \n "},{"event":"cmd_output","timestamp":1607098013,"output":" creating: /tmp/toolbox/.git/objects/info/\n extracting: /tmp/toolbox/.git/HEAD \n creating: /tmp"},{"event":"cmd_output","timestamp":1607098013,"output":"/toolbox/.git/info/\n inflating: /tmp/toolbox/.git/info/exclude \n creating: /tmp/toolbox/.git/l"},{"event":"cmd_output","timestamp":1607098013,"output":"ogs/\n inflating: /tmp/toolbox/.git/logs/HEAD \n creating: /tmp/toolbox/.git/logs/refs/\n crea"},{"event":"cmd_output","timestamp":1607098013,"output":"ting: /tmp/toolbox/.git/logs/refs/heads/\n inflating: /tmp/toolbox/.git/logs/refs/heads/master \n "},{"event":"cmd_output","timestamp":1607098013,"output":" creating: /tmp/toolbox/.git/logs/refs/remotes/\n creating: /tmp/toolbox/.git/logs/refs/remotes/o"},{"event":"cmd_output","timestamp":1607098013,"output":"rigin/\n inflating: /tmp/toolbox/.git/logs/refs/remotes/origin/HEAD \n inflating: /tmp/toolbox/.g"},{"event":"cmd_output","timestamp":1607098013,"output":"it/description \n creating: /tmp/toolbox/.git/hooks/\n inflating: /tmp/toolbox/.git/hooks/commit"},{"event":"cmd_output","timestamp":1607098013,"output":"-msg.sample \n inflating: /tmp/toolbox/.git/hooks/pre-rebase.sample \n inflating: /tmp/toolbox/."},{"event":"cmd_output","timestamp":1607098013,"output":"git/hooks/pre-commit.sample \n inflating: /tmp/toolbox/.git/hooks/applypatch-msg.sample \n infla"},{"event":"cmd_output","timestamp":1607098013,"output":"ting: /tmp/toolbox/.git/hooks/fsmonitor-watchman.sample \n inflating: /tmp/toolbox/.git/hooks/pre-"},{"event":"cmd_output","timestamp":1607098013,"output":"receive.sample \n inflating: /tmp/toolbox/.git/hooks/prepare-commit-msg.sample \n inflating: /tm"},{"event":"cmd_output","timestamp":1607098013,"output":"p/toolbox/.git/hooks/post-update.sample \n inflating: /tmp/toolbox/.git/hooks/pre-applypatch.sampl"},{"event":"cmd_output","timestamp":1607098013,"output":"e \n inflating: /tmp/toolbox/.git/hooks/pre-push.sample \n inflating: /tmp/toolbox/.git/hooks/up"},{"event":"cmd_output","timestamp":1607098013,"output":"date.sample \n creating: /tmp/toolbox/.git/refs/\n creating: /tmp/toolbox/.git/refs/heads/\n ex"},{"event":"cmd_output","timestamp":1607098013,"output":"tracting: /tmp/toolbox/.git/refs/heads/master \n creating: /tmp/toolbox/.git/refs/tags/\n creat"},{"event":"cmd_output","timestamp":1607098013,"output":"ing: /tmp/toolbox/.git/refs/remotes/\n creating: /tmp/toolbox/.git/refs/remotes/origin/\n extracti"},{"event":"cmd_output","timestamp":1607098013,"output":"ng: /tmp/toolbox/.git/refs/remotes/origin/HEAD \n inflating: /tmp/toolbox/.git/index \n creatin"},{"event":"cmd_output","timestamp":1607098013,"output":"g: /tmp/toolbox/.git/branches/\n inflating: /tmp/toolbox/.git/packed-refs \n inflating: /tmp/tool"},{"event":"cmd_output","timestamp":1607098013,"output":"box/system-metrics-collector \n inflating: /tmp/toolbox/sem-dockerize \n inflating: /tmp/toolbox"},{"event":"cmd_output","timestamp":1607098013,"output":"/ssh-session-cli \n creating: /tmp/toolbox/.semaphore/\n inflating: /tmp/toolbox/.semaphore/sema"},{"event":"cmd_output","timestamp":1607098013,"output":"phore.yml \nretry installed\nssh-session-cli installed\ncache installed\nsem-service installed\nsem"},{"event":"cmd_output","timestamp":1607098014,"output":"-dockerize installed\nsem-service-check-params installed\ninstall-package installed\nInstalling the "},{"event":"cmd_output","timestamp":1607098014,"output":"artifacts CLI\nUsing http://packages.semaphoreci.com/v0.2.8/artifact_Linux_x86_64.tar.gz\nartifacts "},{"event":"cmd_output","timestamp":1607098014,"output":"installed\nStarting to collect System Metrics in /tmp/system-metrics\nStarting virtual X frame buffe"},{"event":"cmd_output","timestamp":1607098014,"output":"r: Xvfb.\n"},{"event":"cmd_finished","timestamp":1607098014,"directive":"Setting up the Semaphore toolbox","exit_code":0,"started_at":1607098013,"finished_at":1607098014},{"event":"cmd_started","timestamp":1607098014,"directive":"Starting an ssh-agent"},{"event":"cmd_output","timestamp":1607098014,"output":"Running: eval `ssh-agent` && echo 'eval $(ssh-agent) >/dev/null' >> ~/.bash_profile && echo 'yes' > /tmp/semaphore-user-commands-have-started\n"},{"event":"cmd_output","timestamp":1607098014,"output":"Agent pid 2414\n"},{"event":"cmd_finished","timestamp":1607098014,"directive":"Starting an ssh-agent","exit_code":0,"started_at":1607098014,"finished_at":1607098014},{"event":"cmd_started","timestamp":1607098014,"directive":"Connecting to cache"},{"event":"cmd_output","timestamp":1607098014,"output":"Running: ssh-keyscan -p 29920 -H 94.130.239.239 >> /home/semaphore/.ssh/known_hosts && ssh-add /home/semaphore/.ssh/semaphore_cache_key\n"},{"event":"cmd_output","timestamp":1607098014,"output":"# 94.130.239.239:29920 SSH-2.0-OpenSSH_7.6p1 Ubuntu-4ubuntu0.3\n# 94.130.239.239:29920 SSH-2.0-OpenS"},{"event":"cmd_output","timestamp":1607098014,"output":"SH_7.6p1 Ubuntu-4ubuntu0.3\n# 94.130.239.239:29920 SSH-2.0-OpenSSH_7.6p1 Ubuntu-4ubuntu0.3\nIdentity"},{"event":"cmd_output","timestamp":1607098014,"output":" added: /home/semaphore/.ssh/semaphore_cache_key (/home/semaphore/.ssh/semaphore_cache_key)\n"},{"event":"cmd_finished","timestamp":1607098014,"directive":"Connecting to cache","exit_code":0,"started_at":1607098014,"finished_at":1607098014},{"event":"cmd_started","timestamp":1607098014,"directive":"echo $DOCKER_PASSWORD | docker login --username \"$DOCKER_USERNAME\" --password-stdin"},{"event":"cmd_output","timestamp":1607098015,"output":"WARNING! Your password will be stored unencrypted in /home/semaphore/.docker/config.json.\nConfigure"},{"event":"cmd_output","timestamp":1607098015,"output":" a credential helper to remove this warning. See\nhttps://docs.docker.com/engine/reference/commandli"},{"event":"cmd_output","timestamp":1607098016,"output":"ne/login/#credentials-store\n\nLogin Succeeded\n"},{"event":"cmd_finished","timestamp":1607098016,"directive":"echo $DOCKER_PASSWORD | docker login --username \"$DOCKER_USERNAME\" --password-stdin","exit_code":0,"started_at":1607098014,"finished_at":1607098016},{"event":"cmd_started","timestamp":1607098016,"directive":"checkout"},{"event":"cmd_output","timestamp":1607098018,"output":"Performing shallow clone with depth: 50\nHEAD is now at e3cc76b Merge pull request #110 from rendere"},{"event":"cmd_output","timestamp":1607098018,"output":"dtext/fetch-changes-before-checkout\n"},{"event":"cmd_finished","timestamp":1607098018,"directive":"checkout","exit_code":0,"started_at":1607098016,"finished_at":1607098018},{"event":"cmd_started","timestamp":1607098018,"directive":"cd plumber/ppl"},{"event":"cmd_finished","timestamp":1607098018,"directive":"cd plumber/ppl","exit_code":0,"started_at":1607098018,"finished_at":1607098018},{"event":"cmd_started","timestamp":1607098018,"directive":"cache restore ppl-deps-test-$(checksum mix.lock),ppl-deps-test-"},{"event":"cmd_output","timestamp":1607098018,"output":"HIT: ppl-deps-test-2724a3e1c8cae66605d99cc5b389082e, using key ppl-deps-test-2724a3e1c8cae66605d99cc"},{"event":"cmd_output","timestamp":1607098019,"output":"5b389082e\nCache download time: 1 seconds\nRestored: deps/\n"},{"event":"cmd_finished","timestamp":1607098019,"directive":"cache restore ppl-deps-test-$(checksum mix.lock),ppl-deps-test-","exit_code":0,"started_at":1607098018,"finished_at":1607098019},{"event":"cmd_started","timestamp":1607098019,"directive":"cache restore ppl-build-test-$(checksum mix.lock),ppl-build-test-"},{"event":"cmd_output","timestamp":1607098020,"output":"HIT: ppl-build-test-2724a3e1c8cae66605d99cc5b389082e, using key ppl-build-test-2724a3e1c8cae66605d99"},{"event":"cmd_output","timestamp":1607098021,"output":"cc5b389082e\nCache download time: 1 seconds\nRestored: _build/\n"},{"event":"cmd_finished","timestamp":1607098021,"directive":"cache restore ppl-build-test-$(checksum mix.lock),ppl-build-test-","exit_code":0,"started_at":1607098019,"finished_at":1607098021},{"event":"cmd_started","timestamp":1607098021,"directive":"cd ../task_api_referent"},{"event":"cmd_finished","timestamp":1607098021,"directive":"cd ../task_api_referent","exit_code":0,"started_at":1607098021,"finished_at":1607098021},{"event":"cmd_started","timestamp":1607098021,"directive":"make image.run-detached USER=root"},{"event":"cmd_output","timestamp":1607098021,"output":"make build MIX_ENV=prod\nmake[1]: Entering directory '/home/semaphore/alles/plumber/task_api_referen"},{"event":"cmd_output","timestamp":1607098021,"output":"t'\nmake console CMD=\"mix do local.hex --force, local.rebar --force, deps.get, compile\"\nmake[2]: En"},{"event":"cmd_output","timestamp":1607098021,"output":"tering directory '/home/semaphore/alles/plumber/task_api_referent'\nmkdir -p home_dir\ndocker run --"},{"event":"cmd_output","timestamp":1607098021,"output":"network=host -e APP_ENV= -e MIX_ENV=prod -v $PWD/home_dir:/home/dev -v $PWD/..:/home/dev/repo --rm "},{"event":"cmd_output","timestamp":1607098021,"output":"--workdir=/home/dev/repo/task_api_referent --user=root -it renderedtext/elixir-dev:1.6.5-v2 mix do l"},{"event":"cmd_output","timestamp":1607098021,"output":"ocal.hex --force, local.rebar --force, deps.get, compile\nUnable to find image 'renderedtext/elixir-"},{"event":"cmd_output","timestamp":1607098023,"output":"dev:1.6.5-v2' locally\n1.6.5-v2: Pulling from renderedtext/elixir-dev\n\n\u001b[1A\u001b[2K\rcc1a78bfd46b: Pull"},{"event":"cmd_output","timestamp":1607098023,"output":"ing fs layer \r\u001b[1B\n\u001b[1A\u001b[2K\r6861473222a6: Pulling fs layer \r\u001b[1B\n\u001b[1A\u001b[2K\r7e0b9c3b5ae0: Pulling fs"},{"event":"cmd_output","timestamp":1607098023,"output":" layer \r\u001b[1B\n\u001b[1A\u001b[2K\r3ec98735f56f: Pulling fs layer \r\u001b[1B\n\u001b[1A\u001b[2K\r9b311b87a021: Pulling fs layer"},{"event":"cmd_output","timestamp":1607098023,"output":" \r\u001b[1B\n\u001b[1A\u001b[2K\r987a30f8af92: Pulling fs layer \r\u001b[1B\n\u001b[1A\u001b[2K\rfdc81c59203f: Pulling fs layer \r\u001b[1B"},{"event":"cmd_output","timestamp":1607098023,"output":"\n\u001b[1A\u001b[2K\r84732a75fcaa: Pulling fs layer \r\u001b[1B\n\u001b[1A\u001b[2K\rdbcab08679b9: Pulling fs layer \r\u001b[1B\n\u001b[1A"},{"event":"cmd_output","timestamp":1607098023,"output":"\u001b[2K\r954ea967a4b6: Pulling fs layer \r\u001b[1B\n\u001b[1A\u001b[2K\r85964177ed50: Pulling fs layer \r\u001b[1B\n\u001b[1A\u001b[2K\r9"},{"event":"cmd_output","timestamp":1607098023,"output":"5369df2fe13: Pulling fs layer \r\u001b[1B\n\u001b[1A\u001b[2K\r5de0a90a1599: Pulling fs layer \r\u001b[1B\n\u001b[1A\u001b[2K\rb3e4ec7"},{"event":"cmd_output","timestamp":1607098023,"output":"ba407: Pulling fs layer \r\u001b[1B\u001b[10A\u001b[2K\r9b311b87a021: Waiting \r\u001b[10B\u001b[9A\u001b[2K\r987a30f8af92: Waiting \r\u001b"},{"event":"cmd_output","timestamp":1607098023,"output":"[9B\u001b[8A\u001b[2K\rfdc81c59203f: Waiting \r\u001b[8B\u001b[6A\u001b[2K\rdbcab08679b9: Waiting \r\u001b[6B\u001b[5A\u001b[2K\r954ea967a4b6: Wa"},{"event":"cmd_output","timestamp":1607098023,"output":"iting \r\u001b[5B\u001b[4A\u001b[2K\r85964177ed50: Waiting \r\u001b[4B\u001b[3A\u001b[2K\r95369df2fe13: Waiting \r\u001b[3B\u001b[2A\u001b[2K\r5de0a90a"},{"event":"cmd_output","timestamp":1607098023,"output":"1599: Waiting \r\u001b[2B\u001b[1A\u001b[2K\rb3e4ec7ba407: Waiting \r\u001b[1B\u001b[7A\u001b[2K\r84732a75fcaa: Waiting \r\u001b[7B\u001b[11A\u001b[2K"},{"event":"cmd_output","timestamp":1607098023,"output":"\r3ec98735f56f: Waiting \r\u001b[11B\u001b[12A\u001b[2K\r7e0b9c3b5ae0: Downloading 44.03kB/4.336MB\r\u001b[12B\u001b[13A\u001b[2K\r686"},{"event":"cmd_output","timestamp":1607098023,"output":"1473222a6: Downloading 109.9kB/10.77MB\r\u001b[13B\u001b[14A\u001b[2K\rcc1a78bfd46b: Downloading 457.7kB/45.32MB\r\u001b["},{"event":"cmd_output","timestamp":1607098023,"output":"14B\u001b[12A\u001b[2K\r7e0b9c3b5ae0: Download complete \r\u001b[12B\u001b[13A\u001b[2K\r6861473222a6: Downloading 3.898MB/10.7"},{"event":"cmd_output","timestamp":1607098023,"output":"7MB\r\u001b[13B\u001b[14A\u001b[2K\rcc1a78bfd46b: Downloading 5.995MB/45.32MB\r\u001b[14B\u001b[13A\u001b[2K\r6861473222a6: Downloadi"},{"event":"cmd_output","timestamp":1607098023,"output":"ng 7.572MB/10.77MB\r\u001b[13B\u001b[14A\u001b[2K\rcc1a78bfd46b: Downloading 15.19MB/45.32MB\r\u001b[14B\u001b[13A\u001b[2K\r6861473"},{"event":"cmd_output","timestamp":1607098023,"output":"222a6: Downloading 9.53MB/10.77MB\r\u001b[13B\u001b[14A\u001b[2K\rcc1a78bfd46b: Downloading 22.52MB/45.32MB\r\u001b[14B\u001b"},{"event":"cmd_output","timestamp":1607098023,"output":"[13A\u001b[2K\r6861473222a6: Download complete \r\u001b[13B\u001b[14A\u001b[2K\rcc1a78bfd46b: Downloading 33.54MB/45.32MB\r"},{"event":"cmd_output","timestamp":1607098024,"output":"\u001b[14B\u001b[11A\u001b[2K\r3ec98735f56f: Downloading 506.2kB/50.03MB\r\u001b[11B\u001b[14A\u001b[2K\rcc1a78bfd46b: Downloading "},{"event":"cmd_output","timestamp":1607098024,"output":"36.75MB/45.32MB\r\u001b[14B\u001b[14A\u001b[2K\rcc1a78bfd46b: Downloading 40.43MB/45.32MB\r\u001b[14B\u001b[11A\u001b[2K\r3ec98735f56"},{"event":"cmd_output","timestamp":1607098024,"output":"f: Downloading 3.554MB/50.03MB\r\u001b[11B\u001b[14A\u001b[2K\rcc1a78bfd46b: Verifying Checksum \r\u001b[14B\u001b[14A\u001b[2K\rcc1a"},{"event":"cmd_output","timestamp":1607098024,"output":"78bfd46b: Download complete \r\u001b[14B\u001b[11A\u001b[2K\r3ec98735f56f: Downloading 8.121MB/50.03MB\r\u001b[11B\u001b[14A\u001b[2"},{"event":"cmd_output","timestamp":1607098024,"output":"K\rcc1a78bfd46b: Extracting 458.8kB/45.32MB\r\u001b[14B\u001b[11A\u001b[2K\r3ec98735f56f: Downloading 12.2MB/50.03M"},{"event":"cmd_output","timestamp":1607098024,"output":"B\r\u001b[11B\u001b[14A\u001b[2K\rcc1a78bfd46b: Extracting 2.294MB/45.32MB\r\u001b[14B\u001b[11A\u001b[2K\r3ec98735f56f: Downloading "},{"event":"cmd_output","timestamp":1607098024,"output":" 22.4MB/50.03MB\r\u001b[11B\u001b[14A\u001b[2K\rcc1a78bfd46b: Extracting 4.588MB/45.32MB\r\u001b[14B\u001b[11A\u001b[2K\r3ec98735f56"},{"event":"cmd_output","timestamp":1607098024,"output":"f: Downloading 23.92MB/50.03MB\r\u001b[11B\u001b[10A\u001b[2K\r9b311b87a021: Downloading 526.7kB/213.2MB\r\u001b[10B\u001b[14A"},{"event":"cmd_output","timestamp":1607098024,"output":"\u001b[2K\rcc1a78bfd46b: Extracting 7.34MB/45.32MB\r\u001b[14B\u001b[11A\u001b[2K\r3ec98735f56f: Downloading 29.01MB/50."},{"event":"cmd_output","timestamp":1607098024,"output":"03MB\r\u001b[11B\u001b[10A\u001b[2K\r9b311b87a021: Downloading 4.291MB/213.2MB\r\u001b[10B\u001b[14A\u001b[2K\rcc1a78bfd46b: Extracti"},{"event":"cmd_output","timestamp":1607098024,"output":"ng 9.175MB/45.32MB\r\u001b[14B\u001b[9A\u001b[2K\r987a30f8af92: Downloading 539.9kB/137.1MB\r\u001b[9B\u001b[11A\u001b[2K\r3ec98735f"},{"event":"cmd_output","timestamp":1607098024,"output":"56f: Downloading 33.11MB/50.03MB\r\u001b[11B\u001b[10A\u001b[2K\r9b311b87a021: Downloading 10.18MB/213.2MB\r\u001b[10B\u001b[1"},{"event":"cmd_output","timestamp":1607098024,"output":"4A\u001b[2K\rcc1a78bfd46b: Extracting 11.01MB/45.32MB\r\u001b[14B\u001b[11A\u001b[2K\r3ec98735f56f: Downloading 37.19MB/5"},{"event":"cmd_output","timestamp":1607098025,"output":"0.03MB\r\u001b[11B\u001b[9A\u001b[2K\r987a30f8af92: Downloading 3.226MB/137.1MB\r\u001b[9B\u001b[14A\u001b[2K\rcc1a78bfd46b: Extracti"},{"event":"cmd_output","timestamp":1607098025,"output":"ng 12.39MB/45.32MB\r\u001b[14B\u001b[10A\u001b[2K\r9b311b87a021: Downloading 18.2MB/213.2MB\r\u001b[10B\u001b[11A\u001b[2K\r3ec9873"},{"event":"cmd_output","timestamp":1607098025,"output":"5f56f: Downloading 43.79MB/50.03MB\r\u001b[11B\u001b[9A\u001b[2K\r987a30f8af92: Downloading 5.376MB/137.1MB\r\u001b[9B\u001b[1"},{"event":"cmd_output","timestamp":1607098025,"output":"4A\u001b[2K\rcc1a78bfd46b: Extracting 14.22MB/45.32MB\r\u001b[14B\u001b[10A\u001b[2K\r9b311b87a021: Downloading 20.33MB/2"},{"event":"cmd_output","timestamp":1607098025,"output":"13.2MB\r\u001b[10B\u001b[11A\u001b[2K\r3ec98735f56f: Downloading 48.36MB/50.03MB\r\u001b[11B\u001b[9A\u001b[2K\r987a30f8af92: Downloa"},{"event":"cmd_output","timestamp":1607098025,"output":"ding 9.128MB/137.1MB\r\u001b[9B\u001b[11A\u001b[2K\r3ec98735f56f: Verifying Checksum \r\u001b[11B\u001b[11A\u001b[2K\r3ec98735f56f: D"},{"event":"cmd_output","timestamp":1607098025,"output":"ownload complete \r\u001b[11B\u001b[14A\u001b[2K\rcc1a78bfd46b: Extracting 15.6MB/45.32MB\r\u001b[14B\u001b[10A\u001b[2K\r9b311b87a0"},{"event":"cmd_output","timestamp":1607098025,"output":"21: Downloading 24.1MB/213.2MB\r\u001b[10B\u001b[9A\u001b[2K\r987a30f8af92: Downloading 12.86MB/137.1MB\r\u001b[9B\u001b[14A\u001b"},{"event":"cmd_output","timestamp":1607098025,"output":"[2K\rcc1a78bfd46b: Extracting 17.43MB/45.32MB\r\u001b[14B\u001b[10A\u001b[2K\r9b311b87a021: Downloading 29.45MB/213."},{"event":"cmd_output","timestamp":1607098025,"output":"2MB\r\u001b[10B\u001b[9A\u001b[2K\r987a30f8af92: Downloading 17.68MB/137.1MB\r\u001b[9B\u001b[14A\u001b[2K\rcc1a78bfd46b: Extracting "},{"event":"cmd_output","timestamp":1607098025,"output":" 18.81MB/45.32MB\r\u001b[14B\u001b[10A\u001b[2K\r9b311b87a021: Downloading 36.96MB/213.2MB\r\u001b[10B\u001b[9A\u001b[2K\r987a30f8af9"},{"event":"cmd_output","timestamp":1607098025,"output":"2: Downloading 21.4MB/137.1MB\r\u001b[9B\u001b[14A\u001b[2K\rcc1a78bfd46b: Extracting 20.64MB/45.32MB\r\u001b[14B\u001b[10A\u001b["},{"event":"cmd_output","timestamp":1607098025,"output":"2K\r9b311b87a021: Downloading 42.83MB/213.2MB\r\u001b[10B\u001b[9A\u001b[2K\r987a30f8af92: Downloading 27.29MB/137.1"},{"event":"cmd_output","timestamp":1607098025,"output":"MB\r\u001b[9B\u001b[10A\u001b[2K\r9b311b87a021: Downloading 46.56MB/213.2MB\r\u001b[10B\u001b[9A\u001b[2K\r987a30f8af92: Downloading "},{"event":"cmd_output","timestamp":1607098025,"output":" 33.22MB/137.1MB\r\u001b[9B\u001b[8A\u001b[2K\rfdc81c59203f: Downloading 3.12kB/202kB\r\u001b[8B\u001b[8A\u001b[2K\rfdc81c59203f: Do"},{"event":"cmd_output","timestamp":1607098025,"output":"wnloading 202kB/202kB\r\u001b[8B\u001b[8A\u001b[2K\rfdc81c59203f: Verifying Checksum \r\u001b[8B\u001b[8A\u001b[2K\rfdc81c59203f: D"},{"event":"cmd_output","timestamp":1607098025,"output":"ownload complete \r\u001b[8B\u001b[14A\u001b[2K\rcc1a78bfd46b: Extracting 21.56MB/45.32MB\r\u001b[14B\u001b[10A\u001b[2K\r9b311b87a02"},{"event":"cmd_output","timestamp":1607098025,"output":"1: Downloading 53.53MB/213.2MB\r\u001b[10B\u001b[9A\u001b[2K\r987a30f8af92: Downloading 38.05MB/137.1MB\r\u001b[9B\u001b[14A\u001b["},{"event":"cmd_output","timestamp":1607098025,"output":"2K\rcc1a78bfd46b: Extracting 22.94MB/45.32MB\r\u001b[14B\u001b[10A\u001b[2K\r9b311b87a021: Downloading 56.21MB/213.2"},{"event":"cmd_output","timestamp":1607098025,"output":"MB\r\u001b[10B\u001b[9A\u001b[2K\r987a30f8af92: Downloading 44.49MB/137.1MB\r\u001b[9B\u001b[14A\u001b[2K\rcc1a78bfd46b: Extracting "},{"event":"cmd_output","timestamp":1607098026,"output":"27.53MB/45.32MB\r\u001b[14B\u001b[9A\u001b[2K\r987a30f8af92: Downloading 49.31MB/137.1MB\r\u001b[9B\u001b[10A\u001b[2K\r9b311b87a021:"},{"event":"cmd_output","timestamp":1607098026,"output":" Downloading 63.7MB/213.2MB\r\u001b[10B\u001b[14A\u001b[2K\rcc1a78bfd46b: Extracting 30.28MB/45.32MB\r\u001b[14B\u001b[10A\u001b[2"},{"event":"cmd_output","timestamp":1607098026,"output":"K\r9b311b87a021: Downloading 69.61MB/213.2MB\r\u001b[10B\u001b[9A\u001b[2K\r987a30f8af92: Downloading 56.77MB/137.1M"},{"event":"cmd_output","timestamp":1607098026,"output":"B\r\u001b[9B\u001b[10A\u001b[2K\r9b311b87a021: Downloading 76.05MB/213.2MB\r\u001b[10B\u001b[9A\u001b[2K\r987a30f8af92: Downloading "},{"event":"cmd_output","timestamp":1607098026,"output":"61.09MB/137.1MB\r\u001b[9B\u001b[14A\u001b[2K\rcc1a78bfd46b: Extracting 32.11MB/45.32MB\r\u001b[14B\u001b[7A\u001b[2K\r84732a75fcaa: "},{"event":"cmd_output","timestamp":1607098026,"output":"Downloading 33.08kB/3.269MB\r\u001b[7B\u001b[10A\u001b[2K\r9b311b87a021: Downloading 78.2MB/213.2MB\r\u001b[10B\u001b[9A\u001b[2K\r"},{"event":"cmd_output","timestamp":1607098026,"output":"987a30f8af92: Downloading 65.91MB/137.1MB\r\u001b[9B\u001b[7A\u001b[2K\r84732a75fcaa: Downloading 670.9kB/3.269MB\r\u001b"},{"event":"cmd_output","timestamp":1607098026,"output":"[7B\u001b[14A\u001b[2K\rcc1a78bfd46b: Extracting 32.57MB/45.32MB\r\u001b[14B\u001b[10A\u001b[2K\r9b311b87a021: Downloading 80."},{"event":"cmd_output","timestamp":1607098026,"output":"88MB/213.2MB\r\u001b[10B\u001b[9A\u001b[2K\r987a30f8af92: Downloading 69.11MB/137.1MB\r\u001b[9B\u001b[7A\u001b[2K\r84732a75fcaa: Dow"},{"event":"cmd_output","timestamp":1607098026,"output":"nloading 2.407MB/3.269MB\r\u001b[7B\u001b[7A\u001b[2K\r84732a75fcaa: Verifying Checksum \r\u001b[7B\u001b[7A\u001b[2K\r84732a75fcaa: "},{"event":"cmd_output","timestamp":1607098026,"output":"Download complete \r\u001b[7B\u001b[10A\u001b[2K\r9b311b87a021: Downloading 83.55MB/213.2MB\r\u001b[10B\u001b[14A\u001b[2K\rcc1a78bfd"},{"event":"cmd_output","timestamp":1607098026,"output":"46b: Extracting 33.03MB/45.32MB\r\u001b[14B\u001b[9A\u001b[2K\r987a30f8af92: Downloading 71.79MB/137.1MB\r\u001b[9B\u001b[10A\u001b"},{"event":"cmd_output","timestamp":1607098026,"output":"[2K\r9b311b87a021: Downloading 88.95MB/213.2MB\r\u001b[10B\u001b[9A\u001b[2K\r987a30f8af92: Downloading 75.58MB/137."},{"event":"cmd_output","timestamp":1607098026,"output":"1MB\r\u001b[9B\u001b[10A\u001b[2K\r9b311b87a021: Downloading 92.7MB/213.2MB\r\u001b[10B\u001b[14A\u001b[2K\rcc1a78bfd46b: Extracting"},{"event":"cmd_output","timestamp":1607098026,"output":" 33.95MB/45.32MB\r\u001b[14B\u001b[9A\u001b[2K\r987a30f8af92: Downloading 82.55MB/137.1MB\r\u001b[9B\u001b[10A\u001b[2K\r9b311b87a02"},{"event":"cmd_output","timestamp":1607098026,"output":"1: Downloading 97.5MB/213.2MB\r\u001b[10B\u001b[9A\u001b[2K\r987a30f8af92: Downloading 88.44MB/137.1MB\r\u001b[9B\u001b[14A\u001b["},{"event":"cmd_output","timestamp":1607098026,"output":"2K\rcc1a78bfd46b: Extracting 34.41MB/45.32MB\r\u001b[14B\u001b[10A\u001b[2K\r9b311b87a021: Downloading 100.7MB/213.2"},{"event":"cmd_output","timestamp":1607098027,"output":"MB\r\u001b[10B\u001b[9A\u001b[2K\r987a30f8af92: Downloading 93.8MB/137.1MB\r\u001b[9B\u001b[14A\u001b[2K\rcc1a78bfd46b: Extracting "},{"event":"cmd_output","timestamp":1607098027,"output":"34.87MB/45.32MB\r\u001b[14B\u001b[10A\u001b[2K\r9b311b87a021: Downloading 108.2MB/213.2MB\r\u001b[10B\u001b[9A\u001b[2K\r987a30f8af92"},{"event":"cmd_output","timestamp":1607098027,"output":": Downloading 100.8MB/137.1MB\r\u001b[9B\u001b[6A\u001b[2K\rdbcab08679b9: Downloading 63.44kB/6.005MB\r\u001b[6B\u001b[14A\u001b[2K"},{"event":"cmd_output","timestamp":1607098027,"output":"\rcc1a78bfd46b: Extracting 36.24MB/45.32MB\r\u001b[14B\u001b[10A\u001b[2K\r9b311b87a021: Downloading 114.1MB/213.2MB"},{"event":"cmd_output","timestamp":1607098027,"output":"\r\u001b[10B\u001b[6A\u001b[2K\rdbcab08679b9: Downloading 637.4kB/6.005MB\r\u001b[6B\u001b[9A\u001b[2K\r987a30f8af92: Downloading 10"},{"event":"cmd_output","timestamp":1607098027,"output":"6.2MB/137.1MB\r\u001b[9B\u001b[10A\u001b[2K\r9b311b87a021: Downloading 116.2MB/213.2MB\r\u001b[10B\u001b[14A\u001b[2K\rcc1a78bfd46b: "},{"event":"cmd_output","timestamp":1607098027,"output":"Extracting 37.16MB/45.32MB\r\u001b[14B\u001b[9A\u001b[2K\r987a30f8af92: Downloading 108.8MB/137.1MB\r\u001b[9B\u001b[6A\u001b[2K\rdb"},{"event":"cmd_output","timestamp":1607098027,"output":"cab08679b9: Downloading 2.223MB/6.005MB\r\u001b[6B\u001b[10A\u001b[2K\r9b311b87a021: Downloading 121.6MB/213.2MB\r\u001b["},{"event":"cmd_output","timestamp":1607098027,"output":"10B\u001b[14A\u001b[2K\rcc1a78bfd46b: Extracting 37.62MB/45.32MB\r\u001b[14B\u001b[6A\u001b[2K\rdbcab08679b9: Downloading 3.40"},{"event":"cmd_output","timestamp":1607098027,"output":"6MB/6.005MB\r\u001b[6B\u001b[9A\u001b[2K\r987a30f8af92: Downloading 115.8MB/137.1MB\r\u001b[9B\u001b[10A\u001b[2K\r9b311b87a021: Down"},{"event":"cmd_output","timestamp":1607098027,"output":"loading 130.2MB/213.2MB\r\u001b[10B\u001b[14A\u001b[2K\rcc1a78bfd46b: Extracting 39.91MB/45.32MB\r\u001b[14B\u001b[9A\u001b[2K\r987a"},{"event":"cmd_output","timestamp":1607098027,"output":"30f8af92: Downloading 119.6MB/137.1MB\r\u001b[9B\u001b[6A\u001b[2K\rdbcab08679b9: Downloading 4.328MB/6.005MB\r\u001b[6B\u001b"},{"event":"cmd_output","timestamp":1607098027,"output":"[10A\u001b[2K\r9b311b87a021: Downloading 136.1MB/213.2MB\r\u001b[10B\u001b[6A\u001b[2K\rdbcab08679b9: Downloading 5.319MB"},{"event":"cmd_output","timestamp":1607098027,"output":"/6.005MB\r\u001b[6B\u001b[9A\u001b[2K\r987a30f8af92: Downloading 122.3MB/137.1MB\r\u001b[9B\u001b[14A\u001b[2K\rcc1a78bfd46b: Extract"},{"event":"cmd_output","timestamp":1607098027,"output":"ing 41.29MB/45.32MB\r\u001b[14B\u001b[6A\u001b[2K\rdbcab08679b9: Verifying Checksum \r\u001b[6B\u001b[6A\u001b[2K\rdbcab08679b9: Down"},{"event":"cmd_output","timestamp":1607098027,"output":"load complete \r\u001b[6B\u001b[10A\u001b[2K\r9b311b87a021: Downloading 142.5MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021:"},{"event":"cmd_output","timestamp":1607098027,"output":" Downloading 146.2MB/213.2MB\r\u001b[10B\u001b[9A\u001b[2K\r987a30f8af92: Downloading 124.9MB/137.1MB\r\u001b[9B\u001b[14A\u001b[2K"},{"event":"cmd_output","timestamp":1607098028,"output":"\rcc1a78bfd46b: Extracting 42.21MB/45.32MB\r\u001b[14B\u001b[10A\u001b[2K\r9b311b87a021: Downloading 151.6MB/213.2MB"},{"event":"cmd_output","timestamp":1607098028,"output":"\r\u001b[10B\u001b[9A\u001b[2K\r987a30f8af92: Downloading 130.8MB/137.1MB\r\u001b[9B\u001b[14A\u001b[2K\rcc1a78bfd46b: Extracting 42"},{"event":"cmd_output","timestamp":1607098028,"output":".66MB/45.32MB\r\u001b[14B\u001b[10A\u001b[2K\r9b311b87a021: Downloading 158.1MB/213.2MB\r\u001b[10B\u001b[9A\u001b[2K\r987a30f8af92: "},{"event":"cmd_output","timestamp":1607098028,"output":"Downloading 136.2MB/137.1MB\r\u001b[9B\u001b[9A\u001b[2K\r987a30f8af92: Verifying Checksum \r\u001b[9B\u001b[9A\u001b[2K\r987a30f8af9"},{"event":"cmd_output","timestamp":1607098028,"output":"2: Download complete \r\u001b[9B\u001b[10A\u001b[2K\r9b311b87a021: Downloading 162.3MB/213.2MB\r\u001b[10B\u001b[14A\u001b[2K\rcc1a78"},{"event":"cmd_output","timestamp":1607098028,"output":"bfd46b: Extracting 43.12MB/45.32MB\r\u001b[14B\u001b[10A\u001b[2K\r9b311b87a021: Downloading 167.2MB/213.2MB\r\u001b[10B\u001b"},{"event":"cmd_output","timestamp":1607098028,"output":"[5A\u001b[2K\r954ea967a4b6: Downloading 14.07kB/1.361MB\r\u001b[5B\u001b[5A\u001b[2K\r954ea967a4b6: Verifying Checksum \r\u001b["},{"event":"cmd_output","timestamp":1607098028,"output":"5B\u001b[5A\u001b[2K\r954ea967a4b6: Download complete \r\u001b[5B\u001b[14A\u001b[2K\rcc1a78bfd46b: Extracting 44.04MB/45.32MB\r"},{"event":"cmd_output","timestamp":1607098028,"output":"\u001b[14B\u001b[10A\u001b[2K\r9b311b87a021: Downloading 174.7MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Downloading "},{"event":"cmd_output","timestamp":1607098028,"output":"178.5MB/213.2MB\r\u001b[10B\u001b[14A\u001b[2K\rcc1a78bfd46b: Extracting 44.5MB/45.32MB\r\u001b[14B\u001b[10A\u001b[2K\r9b311b87a021"},{"event":"cmd_output","timestamp":1607098028,"output":": Downloading 183.3MB/213.2MB\r\u001b[10B\u001b[4A\u001b[2K\r85964177ed50: Downloading 426B/4.295kB\r\u001b[4B\u001b[4A\u001b[2K"},{"event":"cmd_output","timestamp":1607098028,"output":"\r85964177ed50: Downloading 4.295kB/4.295kB\r\u001b[4B\u001b[4A\u001b[2K\r85964177ed50: Verifying Checksum \r\u001b[4B\u001b[4A\u001b"},{"event":"cmd_output","timestamp":1607098028,"output":"[2K\r85964177ed50: Download complete \r\u001b[4B\u001b[10A\u001b[2K\r9b311b87a021: Downloading 189.7MB/213.2MB\r\u001b[10B\u001b"},{"event":"cmd_output","timestamp":1607098028,"output":"[14A\u001b[2K\rcc1a78bfd46b: Extracting 45.32MB/45.32MB\r\u001b[14B\u001b[10A\u001b[2K\r9b311b87a021: Downloading 198.3MB"},{"event":"cmd_output","timestamp":1607098028,"output":"/213.2MB\r\u001b[10B\u001b[3A\u001b[2K\r95369df2fe13: Downloading 426B/2.158kB\r\u001b[3B\u001b[3A\u001b[2K\r95369df2fe13: Downloa"},{"event":"cmd_output","timestamp":1607098028,"output":"ding 2.158kB/2.158kB\r\u001b[3B\u001b[3A\u001b[2K\r95369df2fe13: Verifying Checksum \r\u001b[3B\u001b[3A\u001b[2K\r95369df2fe13: Down"},{"event":"cmd_output","timestamp":1607098028,"output":"load complete \r\u001b[3B\u001b[14A\u001b[2K\rcc1a78bfd46b: Pull complete \r\u001b[14B\u001b[10A\u001b[2K\r9b311b87a021: Downloading "},{"event":"cmd_output","timestamp":1607098028,"output":"208.5MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Verifying Checksum \r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Downlo"},{"event":"cmd_output","timestamp":1607098029,"output":"ad complete \r\u001b[10B\u001b[13A\u001b[2K\r6861473222a6: Extracting 131.1kB/10.77MB\r\u001b[13B\u001b[13A\u001b[2K\r6861473222a6: E"},{"event":"cmd_output","timestamp":1607098029,"output":"xtracting 262.1kB/10.77MB\r\u001b[13B\u001b[2A\u001b[2K\r5de0a90a1599: Downloading 48.14kB/4.685MB\r\u001b[2B\u001b[13A\u001b[2K\r68"},{"event":"cmd_output","timestamp":1607098029,"output":"61473222a6: Extracting 3.408MB/10.77MB\r\u001b[13B\u001b[2A\u001b[2K\r5de0a90a1599: Verifying Checksum \r\u001b[2B\u001b[2A\u001b[2K"},{"event":"cmd_output","timestamp":1607098029,"output":"\r5de0a90a1599: Download complete \r\u001b[2B\u001b[1A\u001b[2K\rb3e4ec7ba407: Downloading 427B/658B\r\u001b[1B\u001b[1A\u001b[2K\r"},{"event":"cmd_output","timestamp":1607098029,"output":"b3e4ec7ba407: Downloading 658B/658B\r\u001b[1B\u001b[1A\u001b[2K\rb3e4ec7ba407: Verifying Checksum \r\u001b[1B\u001b[1A\u001b[2K\r"},{"event":"cmd_output","timestamp":1607098029,"output":"b3e4ec7ba407: Download complete \r\u001b[1B\u001b[13A\u001b[2K\r6861473222a6: Extracting 7.078MB/10.77MB\r\u001b[13B\u001b[13A\u001b"},{"event":"cmd_output","timestamp":1607098029,"output":"[2K\r6861473222a6: Extracting 10.35MB/10.77MB\r\u001b[13B\u001b[13A\u001b[2K\r6861473222a6: Extracting 10.77MB/10.77"},{"event":"cmd_output","timestamp":1607098029,"output":"MB\r\u001b[13B\u001b[13A\u001b[2K\r6861473222a6: Pull complete \r\u001b[13B\u001b[12A\u001b[2K\r7e0b9c3b5ae0: Extracting 65.54kB/4.33"},{"event":"cmd_output","timestamp":1607098029,"output":"6MB\r\u001b[12B\u001b[12A\u001b[2K\r7e0b9c3b5ae0: Extracting 1.835MB/4.336MB\r\u001b[12B\u001b[12A\u001b[2K\r7e0b9c3b5ae0: Extracting"},{"event":"cmd_output","timestamp":1607098029,"output":" 4.336MB/4.336MB\r\u001b[12B\u001b[12A\u001b[2K\r7e0b9c3b5ae0: Pull complete \r\u001b[12B\u001b[11A\u001b[2K\r3ec98735f56f: Extractin"},{"event":"cmd_output","timestamp":1607098030,"output":"g 524.3kB/50.03MB\r\u001b[11B\u001b[11A\u001b[2K\r3ec98735f56f: Extracting 4.194MB/50.03MB\r\u001b[11B\u001b[11A\u001b[2K\r3ec98735f"},{"event":"cmd_output","timestamp":1607098030,"output":"56f: Extracting 7.34MB/50.03MB\r\u001b[11B\u001b[11A\u001b[2K\r3ec98735f56f: Extracting 11.01MB/50.03MB\r\u001b[11B\u001b[11A"},{"event":"cmd_output","timestamp":1607098030,"output":"\u001b[2K\r3ec98735f56f: Extracting 14.16MB/50.03MB\r\u001b[11B\u001b[11A\u001b[2K\r3ec98735f56f: Extracting 16.78MB/50.0"},{"event":"cmd_output","timestamp":1607098030,"output":"3MB\r\u001b[11B\u001b[11A\u001b[2K\r3ec98735f56f: Extracting 18.35MB/50.03MB\r\u001b[11B\u001b[11A\u001b[2K\r3ec98735f56f: Extracting"},{"event":"cmd_output","timestamp":1607098030,"output":" 19.92MB/50.03MB\r\u001b[11B\u001b[11A\u001b[2K\r3ec98735f56f: Extracting 22.02MB/50.03MB\r\u001b[11B\u001b[11A\u001b[2K\r3ec98735f5"},{"event":"cmd_output","timestamp":1607098031,"output":"6f: Extracting 24.12MB/50.03MB\r\u001b[11B\u001b[11A\u001b[2K\r3ec98735f56f: Extracting 26.74MB/50.03MB\r\u001b[11B\u001b[11A\u001b"},{"event":"cmd_output","timestamp":1607098031,"output":"[2K\r3ec98735f56f: Extracting 28.84MB/50.03MB\r\u001b[11B\u001b[11A\u001b[2K\r3ec98735f56f: Extracting 31.98MB/50.03"},{"event":"cmd_output","timestamp":1607098031,"output":"MB\r\u001b[11B\u001b[11A\u001b[2K\r3ec98735f56f: Extracting 34.6MB/50.03MB\r\u001b[11B\u001b[11A\u001b[2K\r3ec98735f56f: Extracting "},{"event":"cmd_output","timestamp":1607098031,"output":" 36.18MB/50.03MB\r\u001b[11B\u001b[11A\u001b[2K\r3ec98735f56f: Extracting 39.85MB/50.03MB\r\u001b[11B\u001b[11A\u001b[2K\r3ec98735f56"},{"event":"cmd_output","timestamp":1607098032,"output":"f: Extracting 42.47MB/50.03MB\r\u001b[11B\u001b[11A\u001b[2K\r3ec98735f56f: Extracting 45.61MB/50.03MB\r\u001b[11B\u001b[11A\u001b["},{"event":"cmd_output","timestamp":1607098032,"output":"2K\r3ec98735f56f: Extracting 47.19MB/50.03MB\r\u001b[11B\u001b[11A\u001b[2K\r3ec98735f56f: Extracting 48.76MB/50.03M"},{"event":"cmd_output","timestamp":1607098032,"output":"B\r\u001b[11B\u001b[11A\u001b[2K\r3ec98735f56f: Extracting 49.81MB/50.03MB\r\u001b[11B\u001b[11A\u001b[2K\r3ec98735f56f: Extracting "},{"event":"cmd_output","timestamp":1607098032,"output":"50.03MB/50.03MB\r\u001b[11B\u001b[11A\u001b[2K\r3ec98735f56f: Pull complete \r\u001b[11B\u001b[10A\u001b[2K\r9b311b87a021: Extracting "},{"event":"cmd_output","timestamp":1607098033,"output":" 557.1kB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Extracting 2.228MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a02"},{"event":"cmd_output","timestamp":1607098033,"output":"1: Extracting 6.128MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Extracting 9.47MB/213.2MB\r\u001b[10B\u001b[10A\u001b["},{"event":"cmd_output","timestamp":1607098033,"output":"2K\r9b311b87a021: Extracting 10.58MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Extracting 11.7MB/213.2M"},{"event":"cmd_output","timestamp":1607098033,"output":"B\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Extracting 12.81MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Extracting "},{"event":"cmd_output","timestamp":1607098034,"output":"13.93MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Extracting 15.6MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021"},{"event":"cmd_output","timestamp":1607098034,"output":": Extracting 19.5MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Extracting 23.4MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2"},{"event":"cmd_output","timestamp":1607098034,"output":"K\r9b311b87a021: Extracting 24.51MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Extracting 30.08MB/213.2MB"},{"event":"cmd_output","timestamp":1607098034,"output":"\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Extracting 33.42MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Extracting 3"},{"event":"cmd_output","timestamp":1607098034,"output":"5.09MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Extracting 38.44MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021:"},{"event":"cmd_output","timestamp":1607098035,"output":" Extracting 42.34MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Extracting 46.79MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K"},{"event":"cmd_output","timestamp":1607098035,"output":"\r9b311b87a021: Extracting 50.14MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Extracting 51.81MB/213.2MB\r"},{"event":"cmd_output","timestamp":1607098035,"output":"\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Extracting 54.03MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Extracting 56"},{"event":"cmd_output","timestamp":1607098035,"output":".26MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Extracting 58.49MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: "},{"event":"cmd_output","timestamp":1607098035,"output":"Extracting 61.83MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Extracting 66.29MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r"},{"event":"cmd_output","timestamp":1607098035,"output":"9b311b87a021: Extracting 70.19MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Extracting 74.09MB/213.2MB\r\u001b"},{"event":"cmd_output","timestamp":1607098036,"output":"[10B\u001b[10A\u001b[2K\r9b311b87a021: Extracting 76.87MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Extracting 78."},{"event":"cmd_output","timestamp":1607098036,"output":"54MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Extracting 79.66MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: E"},{"event":"cmd_output","timestamp":1607098036,"output":"xtracting 81.33MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Extracting 83MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9"},{"event":"cmd_output","timestamp":1607098036,"output":"b311b87a021: Extracting 86.34MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Extracting 90.24MB/213.2MB\r\u001b["},{"event":"cmd_output","timestamp":1607098037,"output":"10B\u001b[10A\u001b[2K\r9b311b87a021: Extracting 93.03MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Extracting 96.3"},{"event":"cmd_output","timestamp":1607098037,"output":"7MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Extracting 99.71MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Ex"},{"event":"cmd_output","timestamp":1607098037,"output":"tracting 103.6MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Extracting 107MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b"},{"event":"cmd_output","timestamp":1607098037,"output":"311b87a021: Extracting 110.3MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Extracting 112MB/213.2MB\r\u001b[1"},{"event":"cmd_output","timestamp":1607098037,"output":"0B\u001b[10A\u001b[2K\r9b311b87a021: Extracting 113.1MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Extracting 114.8"},{"event":"cmd_output","timestamp":1607098037,"output":"MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Extracting 116.4MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Ext"},{"event":"cmd_output","timestamp":1607098038,"output":"racting 118.7MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Extracting 121.4MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b3"},{"event":"cmd_output","timestamp":1607098038,"output":"11b87a021: Extracting 124.8MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Extracting 126.5MB/213.2MB\r\u001b[10"},{"event":"cmd_output","timestamp":1607098038,"output":"B\u001b[10A\u001b[2K\r9b311b87a021: Extracting 128.1MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Extracting 130.9M"},{"event":"cmd_output","timestamp":1607098038,"output":"B/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Extracting 133.7MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Extr"},{"event":"cmd_output","timestamp":1607098039,"output":"acting 137MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Extracting 139.3MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b31"},{"event":"cmd_output","timestamp":1607098039,"output":"1b87a021: Extracting 141.5MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Extracting 148.2MB/213.2MB\r\u001b[10B"},{"event":"cmd_output","timestamp":1607098039,"output":"\u001b[10A\u001b[2K\r9b311b87a021: Extracting 151.5MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Extracting 159.9MB"},{"event":"cmd_output","timestamp":1607098039,"output":"/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Extracting 169.3MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Extra"},{"event":"cmd_output","timestamp":1607098039,"output":"cting 174.4MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Extracting 178.3MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311"},{"event":"cmd_output","timestamp":1607098040,"output":"b87a021: Extracting 179.9MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Extracting 181MB/213.2MB\r\u001b[10B\u001b"},{"event":"cmd_output","timestamp":1607098040,"output":"[10A\u001b[2K\r9b311b87a021: Extracting 183.3MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Extracting 183.8MB/"},{"event":"cmd_output","timestamp":1607098040,"output":"213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Extracting 188.8MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Extrac"},{"event":"cmd_output","timestamp":1607098040,"output":"ting 191.6MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Extracting 192.7MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b"},{"event":"cmd_output","timestamp":1607098041,"output":"87a021: Extracting 194.4MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Extracting 196.6MB/213.2MB\r\u001b[10B\u001b["},{"event":"cmd_output","timestamp":1607098041,"output":"10A\u001b[2K\r9b311b87a021: Extracting 198.3MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Extracting 200.5MB/2"},{"event":"cmd_output","timestamp":1607098041,"output":"13.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Extracting 202.8MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Extract"},{"event":"cmd_output","timestamp":1607098041,"output":"ing 205MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Extracting 207.2MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b8"},{"event":"cmd_output","timestamp":1607098041,"output":"7a021: Extracting 210MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Extracting 211.1MB/213.2MB\r\u001b[10B\u001b[1"},{"event":"cmd_output","timestamp":1607098042,"output":"0A\u001b[2K\r9b311b87a021: Extracting 212.2MB/213.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Extracting 213.2MB/21"},{"event":"cmd_output","timestamp":1607098042,"output":"3.2MB\r\u001b[10B\u001b[10A\u001b[2K\r9b311b87a021: Pull complete \r\u001b[10B\u001b[9A\u001b[2K\r987a30f8af92: Extracting 557.1kB/13"},{"event":"cmd_output","timestamp":1607098042,"output":"7.1MB\r\u001b[9B\u001b[9A\u001b[2K\r987a30f8af92: Extracting 12.26MB/137.1MB\r\u001b[9B\u001b[9A\u001b[2K\r987a30f8af92: Extracting "},{"event":"cmd_output","timestamp":1607098042,"output":"24.51MB/137.1MB\r\u001b[9B\u001b[9A\u001b[2K\r987a30f8af92: Extracting 35.65MB/137.1MB\r\u001b[9B\u001b[9A\u001b[2K\r987a30f8af92: Ex"},{"event":"cmd_output","timestamp":1607098042,"output":"tracting 47.35MB/137.1MB\r\u001b[9B\u001b[9A\u001b[2K\r987a30f8af92: Extracting 60.16MB/137.1MB\r\u001b[9B\u001b[9A\u001b[2K\r987a30"},{"event":"cmd_output","timestamp":1607098043,"output":"f8af92: Extracting 69.63MB/137.1MB\r\u001b[9B\u001b[9A\u001b[2K\r987a30f8af92: Extracting 71.86MB/137.1MB\r\u001b[9B\u001b[9A\u001b"},{"event":"cmd_output","timestamp":1607098043,"output":"[2K\r987a30f8af92: Extracting 73.53MB/137.1MB\r\u001b[9B\u001b[9A\u001b[2K\r987a30f8af92: Extracting 74.65MB/137.1MB"},{"event":"cmd_output","timestamp":1607098043,"output":"\r\u001b[9B\u001b[9A\u001b[2K\r987a30f8af92: Extracting 76.32MB/137.1MB\r\u001b[9B\u001b[9A\u001b[2K\r987a30f8af92: Extracting 78.54"},{"event":"cmd_output","timestamp":1607098043,"output":"MB/137.1MB\r\u001b[9B\u001b[9A\u001b[2K\r987a30f8af92: Extracting 81.89MB/137.1MB\r\u001b[9B\u001b[9A\u001b[2K\r987a30f8af92: Extract"},{"event":"cmd_output","timestamp":1607098044,"output":"ing 84.67MB/137.1MB\r\u001b[9B\u001b[9A\u001b[2K\r987a30f8af92: Extracting 88.01MB/137.1MB\r\u001b[9B\u001b[9A\u001b[2K\r987a30f8af9"},{"event":"cmd_output","timestamp":1607098044,"output":"2: Extracting 89.13MB/137.1MB\r\u001b[9B\u001b[9A\u001b[2K\r987a30f8af92: Extracting 90.24MB/137.1MB\r\u001b[9B\u001b[9A\u001b[2K\r9"},{"event":"cmd_output","timestamp":1607098044,"output":"87a30f8af92: Extracting 91.36MB/137.1MB\r\u001b[9B\u001b[9A\u001b[2K\r987a30f8af92: Extracting 94.14MB/137.1MB\r\u001b[9B"},{"event":"cmd_output","timestamp":1607098044,"output":"\u001b[9A\u001b[2K\r987a30f8af92: Extracting 96.37MB/137.1MB\r\u001b[9B\u001b[9A\u001b[2K\r987a30f8af92: Extracting 99.71MB/13"},{"event":"cmd_output","timestamp":1607098044,"output":"7.1MB\r\u001b[9B\u001b[9A\u001b[2K\r987a30f8af92: Extracting 101.9MB/137.1MB\r\u001b[9B\u001b[9A\u001b[2K\r987a30f8af92: Extracting "},{"event":"cmd_output","timestamp":1607098045,"output":"106.4MB/137.1MB\r\u001b[9B\u001b[9A\u001b[2K\r987a30f8af92: Extracting 110.3MB/137.1MB\r\u001b[9B\u001b[9A\u001b[2K\r987a30f8af92: Ex"},{"event":"cmd_output","timestamp":1607098045,"output":"tracting 110.9MB/137.1MB\r\u001b[9B\u001b[9A\u001b[2K\r987a30f8af92: Extracting 111.4MB/137.1MB\r\u001b[9B\u001b[9A\u001b[2K\r987a30"},{"event":"cmd_output","timestamp":1607098045,"output":"f8af92: Extracting 114.8MB/137.1MB\r\u001b[9B\u001b[9A\u001b[2K\r987a30f8af92: Extracting 117.5MB/137.1MB\r\u001b[9B\u001b[9A\u001b"},{"event":"cmd_output","timestamp":1607098045,"output":"[2K\r987a30f8af92: Extracting 120.3MB/137.1MB\r\u001b[9B\u001b[9A\u001b[2K\r987a30f8af92: Extracting 124.8MB/137.1MB"},{"event":"cmd_output","timestamp":1607098045,"output":"\r\u001b[9B\u001b[9A\u001b[2K\r987a30f8af92: Extracting 129.2MB/137.1MB\r\u001b[9B\u001b[9A\u001b[2K\r987a30f8af92: Extracting 133.1"},{"event":"cmd_output","timestamp":1607098046,"output":"MB/137.1MB\r\u001b[9B\u001b[9A\u001b[2K\r987a30f8af92: Extracting 137MB/137.1MB\r\u001b[9B\u001b[9A\u001b[2K\r987a30f8af92: Extract"},{"event":"cmd_output","timestamp":1607098046,"output":"ing 137.1MB/137.1MB\r\u001b[9B\u001b[9A\u001b[2K\r987a30f8af92: Pull complete \r\u001b[9B\u001b[8A\u001b[2K\rfdc81c59203f: Extracting"},{"event":"cmd_output","timestamp":1607098046,"output":" 32.77kB/202kB\r\u001b[8B\u001b[8A\u001b[2K\rfdc81c59203f: Extracting 202kB/202kB\r\u001b[8B\u001b[8A\u001b[2K\rfdc81c59203f: Extr"},{"event":"cmd_output","timestamp":1607098046,"output":"acting 202kB/202kB\r\u001b[8B\u001b[8A\u001b[2K\rfdc81c59203f: Pull complete \r\u001b[8B\u001b[7A\u001b[2K\r84732a75fcaa: Extractin"},{"event":"cmd_output","timestamp":1607098046,"output":"g 32.77kB/3.269MB\r\u001b[7B\u001b[7A\u001b[2K\r84732a75fcaa: Extracting 3.269MB/3.269MB\r\u001b[7B\u001b[7A\u001b[2K\r84732a75fcaa:"},{"event":"cmd_output","timestamp":1607098046,"output":" Pull complete \r\u001b[7B\u001b[6A\u001b[2K\rdbcab08679b9: Extracting 65.54kB/6.005MB\r\u001b[6B\u001b[6A\u001b[2K\rdbcab08679b9: Ex"},{"event":"cmd_output","timestamp":1607098046,"output":"tracting 2.097MB/6.005MB\r\u001b[6B\u001b[6A\u001b[2K\rdbcab08679b9: Extracting 4.784MB/6.005MB\r\u001b[6B\u001b[6A\u001b[2K\rdbcab0"},{"event":"cmd_output","timestamp":1607098046,"output":"8679b9: Extracting 6.005MB/6.005MB\r\u001b[6B\u001b[6A\u001b[2K\rdbcab08679b9: Pull complete \r\u001b[6B\u001b[5A\u001b[2K\r954ea967a"},{"event":"cmd_output","timestamp":1607098046,"output":"4b6: Extracting 32.77kB/1.361MB\r\u001b[5B\u001b[5A\u001b[2K\r954ea967a4b6: Extracting 1.049MB/1.361MB\r\u001b[5B\u001b[5A\u001b[2K"},{"event":"cmd_output","timestamp":1607098046,"output":"\r954ea967a4b6: Extracting 1.361MB/1.361MB\r\u001b[5B\u001b[5A\u001b[2K\r954ea967a4b6: Extracting 1.361MB/1.361MB\r\u001b["},{"event":"cmd_output","timestamp":1607098046,"output":"5B\u001b[5A\u001b[2K\r954ea967a4b6: Pull complete \r\u001b[5B\u001b[4A\u001b[2K\r85964177ed50: Extracting 4.295kB/4.295kB\r\u001b[4B\u001b"},{"event":"cmd_output","timestamp":1607098046,"output":"[4A\u001b[2K\r85964177ed50: Extracting 4.295kB/4.295kB\r\u001b[4B\u001b[4A\u001b[2K\r85964177ed50: Pull complete \r\u001b[4B\u001b[3A"},{"event":"cmd_output","timestamp":1607098046,"output":"\u001b[2K\r95369df2fe13: Extracting 2.158kB/2.158kB\r\u001b[3B\u001b[3A\u001b[2K\r95369df2fe13: Extracting 2.158kB/2.158k"},{"event":"cmd_output","timestamp":1607098047,"output":"B\r\u001b[3B\u001b[3A\u001b[2K\r95369df2fe13: Pull complete \r\u001b[3B\u001b[2A\u001b[2K\r5de0a90a1599: Extracting 65.54kB/4.685MB\r\u001b"},{"event":"cmd_output","timestamp":1607098047,"output":"[2B\u001b[2A\u001b[2K\r5de0a90a1599: Extracting 262.1kB/4.685MB\r\u001b[2B\u001b[2A\u001b[2K\r5de0a90a1599: Extracting 2.359MB"},{"event":"cmd_output","timestamp":1607098047,"output":"/4.685MB\r\u001b[2B\u001b[2A\u001b[2K\r5de0a90a1599: Extracting 4.26MB/4.685MB\r\u001b[2B\u001b[2A\u001b[2K\r5de0a90a1599: Extractin"},{"event":"cmd_output","timestamp":1607098047,"output":"g 4.685MB/4.685MB\r\u001b[2B\u001b[2A\u001b[2K\r5de0a90a1599: Pull complete \r\u001b[2B\u001b[1A\u001b[2K\rb3e4ec7ba407: Extracting "},{"event":"cmd_output","timestamp":1607098047,"output":" 658B/658B\r\u001b[1B\u001b[1A\u001b[2K\rb3e4ec7ba407: Extracting 658B/658B\r\u001b[1B\u001b[1A\u001b[2K\rb3e4ec7ba407: Pull com"},{"event":"cmd_output","timestamp":1607098047,"output":"plete \r\u001b[1BDigest: sha256:a91d1eb2e24fe4c9f60cf370890148aaa5d5096899064144d1b56b2033909a7b\nStatus: "},{"event":"cmd_output","timestamp":1607098050,"output":"Downloaded newer image for renderedtext/elixir-dev:1.6.5-v2\n\u001b[32m* creating \u001b[0m/home/dev/.mix/arch"},{"event":"cmd_output","timestamp":1607098050,"output":"ives/hex-0.20.6\u001b[0m\n\u001b[32m* creating \u001b[0m/home/dev/.mix/rebar\u001b[0m\n\u001b[32m* creating \u001b[0m/home/dev/.mi"},{"event":"cmd_output","timestamp":1607098051,"output":"x/rebar3\u001b[0m\n* Getting sys2app (https://github.com/renderedtext/sys2app.git)\nremote: Enumerating o"},{"event":"cmd_output","timestamp":1607098051,"output":"bjects: 41, done. \nremote: Total 41 (delta 0), reused 0 (delta 0), pack-reused 41 \n*"},{"event":"cmd_output","timestamp":1607098052,"output":" Getting util (https://github.com/renderedtext/elixir-util.git)\nremote: Enumerating objects: 10, do"},{"event":"cmd_output","timestamp":1607098052,"output":"ne. \nremote: Counting objects: 10% (1/10) \rremote: Counting objects: 20% (2/10) "},{"event":"cmd_output","timestamp":1607098052,"output":" \rremote: Counting objects: 30% (3/10) \rremote: Counting objects: 40% (4/10) \rrem"},{"event":"cmd_output","timestamp":1607098052,"output":"ote: Counting objects: 50% (5/10) \rremote: Counting objects: 60% (6/10) \rremote: Cou"},{"event":"cmd_output","timestamp":1607098052,"output":"nting objects: 70% (7/10) \rremote: Counting objects: 80% (8/10) \rremote: Counting ob"},{"event":"cmd_output","timestamp":1607098052,"output":"jects: 90% (9/10) \rremote: Counting objects: 100% (10/10) \rremote: Counting objects: "},{"event":"cmd_output","timestamp":1607098052,"output":"100% (10/10), done. \nremote: Compressing objects: 12% (1/8) \rremote: Compressing obj"},{"event":"cmd_output","timestamp":1607098052,"output":"ects: 25% (2/8) \rremote: Compressing objects: 37% (3/8) \rremote: Compressing objects"},{"event":"cmd_output","timestamp":1607098052,"output":": 50% (4/8) \rremote: Compressing objects: 62% (5/8) \rremote: Compressing objects: 7"},{"event":"cmd_output","timestamp":1607098052,"output":"5% (6/8) \rremote: Compressing objects: 87% (7/8) \rremote: Compressing objects: 100% ("},{"event":"cmd_output","timestamp":1607098052,"output":"8/8) \rremote: Compressing objects: 100% (8/8), done. \nReceiving objects: 0% (1/150)"},{"event":"cmd_output","timestamp":1607098052,"output":" \rReceiving objects: 1% (2/150) \rReceiving objects: 2% (3/150) \rReceiving objects: 3% (5"},{"event":"cmd_output","timestamp":1607098052,"output":"/150) \rReceiving objects: 4% (6/150) \rReceiving objects: 5% (8/150) \rReceiving objects: "},{"event":"cmd_output","timestamp":1607098052,"output":"6% (9/150) \rReceiving objects: 7% (11/150) \rReceiving objects: 8% (12/150) \rReceiving obje"},{"event":"cmd_output","timestamp":1607098052,"output":"cts: 9% (14/150) \rReceiving objects: 10% (15/150) \rReceiving objects: 11% (17/150) \rReceiv"},{"event":"cmd_output","timestamp":1607098052,"output":"ing objects: 12% (18/150) \rReceiving objects: 13% (20/150) \rReceiving objects: 14% (21/150) "},{"event":"cmd_output","timestamp":1607098052,"output":" \rReceiving objects: 15% (23/150) \rReceiving objects: 16% (24/150) \rReceiving objects: 17% (2"},{"event":"cmd_output","timestamp":1607098052,"output":"6/150) \rReceiving objects: 18% (27/150) \rReceiving objects: 19% (29/150) \rReceiving objects:"},{"event":"cmd_output","timestamp":1607098052,"output":" 20% (30/150) \rReceiving objects: 21% (32/150) \rReceiving objects: 22% (33/150) \rReceiving "},{"event":"cmd_output","timestamp":1607098052,"output":"objects: 23% (35/150) \rReceiving objects: 24% (36/150) \rReceiving objects: 25% (38/150) \rRe"},{"event":"cmd_output","timestamp":1607098052,"output":"ceiving objects: 26% (39/150) \rReceiving objects: 27% (41/150) \rReceiving objects: 28% (42/15"},{"event":"cmd_output","timestamp":1607098052,"output":"0) \rReceiving objects: 29% (44/150) \rReceiving objects: 30% (45/150) \rReceiving objects: 31"},{"event":"cmd_output","timestamp":1607098052,"output":"% (47/150) \rReceiving objects: 32% (48/150) \rReceiving objects: 33% (50/150) \rReceiving obje"},{"event":"cmd_output","timestamp":1607098052,"output":"cts: 34% (51/150) \rReceiving objects: 35% (53/150) \rReceiving objects: 36% (54/150) \rReceiv"},{"event":"cmd_output","timestamp":1607098052,"output":"ing objects: 37% (56/150) \rReceiving objects: 38% (57/150) \rReceiving objects: 39% (59/150) "},{"event":"cmd_output","timestamp":1607098052,"output":" \rReceiving objects: 40% (60/150) \rReceiving objects: 41% (62/150) \rReceiving objects: 42% (6"},{"event":"cmd_output","timestamp":1607098052,"output":"3/150) \rReceiving objects: 43% (65/150) \rReceiving objects: 44% (66/150) \rReceiving objects:"},{"event":"cmd_output","timestamp":1607098052,"output":" 45% (68/150) \rReceiving objects: 46% (69/150) \rReceiving objects: 47% (71/150) \rReceiving "},{"event":"cmd_output","timestamp":1607098052,"output":"objects: 48% (72/150) \rReceiving objects: 49% (74/150) \rReceiving objects: 50% (75/150) \rRe"},{"event":"cmd_output","timestamp":1607098052,"output":"ceiving objects: 51% (77/150) \rReceiving objects: 52% (78/150) \rReceiving objects: 53% (80/15"},{"event":"cmd_output","timestamp":1607098052,"output":"0) \rReceiving objects: 54% (81/150) \rReceiving objects: 55% (83/150) \rReceiving objects: 56"},{"event":"cmd_output","timestamp":1607098052,"output":"% (84/150) \rremote: Total 150 (delta 1), reused 2 (delta 0), pack-reused 140 \nReceiving ob"},{"event":"cmd_output","timestamp":1607098052,"output":"jects: 57% (86/150) \rReceiving objects: 58% (87/150) \rReceiving objects: 59% (89/150) \rRece"},{"event":"cmd_output","timestamp":1607098052,"output":"iving objects: 60% (90/150) \rReceiving objects: 61% (92/150) \rReceiving objects: 62% (93/150)"},{"event":"cmd_output","timestamp":1607098052,"output":" \rReceiving objects: 63% (95/150) \rReceiving objects: 64% (96/150) \rReceiving objects: 65% "},{"event":"cmd_output","timestamp":1607098052,"output":"(98/150) \rReceiving objects: 66% (99/150) \rReceiving objects: 67% (101/150) \rReceiving objec"},{"event":"cmd_output","timestamp":1607098052,"output":"ts: 68% (102/150) \rReceiving objects: 69% (104/150) \rReceiving objects: 70% (105/150) \rRece"},{"event":"cmd_output","timestamp":1607098052,"output":"iving objects: 71% (107/150) \rReceiving objects: 72% (108/150) \rReceiving objects: 73% (110/1"},{"event":"cmd_output","timestamp":1607098052,"output":"50) \rReceiving objects: 74% (111/150) \rReceiving objects: 75% (113/150) \rReceiving objects: "},{"event":"cmd_output","timestamp":1607098052,"output":" 76% (114/150) \rReceiving objects: 77% (116/150) \rReceiving objects: 78% (117/150) \rReceivin"},{"event":"cmd_output","timestamp":1607098052,"output":"g objects: 79% (119/150) \rReceiving objects: 80% (120/150) \rReceiving objects: 81% (122/150) "},{"event":"cmd_output","timestamp":1607098052,"output":" \rReceiving objects: 82% (123/150) \rReceiving objects: 83% (125/150) \rReceiving objects: 84%"},{"event":"cmd_output","timestamp":1607098052,"output":" (126/150) \rReceiving objects: 85% (128/150) \rReceiving objects: 86% (129/150) \rReceiving ob"},{"event":"cmd_output","timestamp":1607098052,"output":"jects: 87% (131/150) \rReceiving objects: 88% (132/150) \rReceiving objects: 89% (134/150) \rR"},{"event":"cmd_output","timestamp":1607098052,"output":"eceiving objects: 90% (135/150) \rReceiving objects: 91% (137/150) \rReceiving objects: 92% (13"},{"event":"cmd_output","timestamp":1607098052,"output":"8/150) \rReceiving objects: 93% (140/150) \rReceiving objects: 94% (141/150) \rReceiving object"},{"event":"cmd_output","timestamp":1607098052,"output":"s: 95% (143/150) \rReceiving objects: 96% (144/150) \rReceiving objects: 97% (146/150) \rRecei"},{"event":"cmd_output","timestamp":1607098052,"output":"ving objects: 98% (147/150) \rReceiving objects: 99% (149/150) \rReceiving objects: 100% (150/15"},{"event":"cmd_output","timestamp":1607098052,"output":"0) \rReceiving objects: 100% (150/150), 33.16 KiB | 0 bytes/s, done.\nResolving deltas: 0% (0/75)"},{"event":"cmd_output","timestamp":1607098052,"output":" \rResolving deltas: 1% (1/75) \rResolving deltas: 2% (2/75) \rResolving deltas: 4% (3/75) "},{"event":"cmd_output","timestamp":1607098052,"output":" \rResolving deltas: 9% (7/75) \rResolving deltas: 10% (8/75) \rResolving deltas: 24% (18/75) "},{"event":"cmd_output","timestamp":1607098052,"output":" \rResolving deltas: 38% (29/75) \rResolving deltas: 41% (31/75) \rResolving deltas: 42% (32/75"},{"event":"cmd_output","timestamp":1607098052,"output":") \rResolving deltas: 44% (33/75) \rResolving deltas: 57% (43/75) \rResolving deltas: 72% (54/"},{"event":"cmd_output","timestamp":1607098052,"output":"75) \rResolving deltas: 73% (55/75) \rResolving deltas: 80% (60/75) \rResolving deltas: 85% (6"},{"event":"cmd_output","timestamp":1607098052,"output":"4/75) \rResolving deltas: 86% (65/75) \rResolving deltas: 100% (75/75) \rResolving deltas: 100% "},{"event":"cmd_output","timestamp":1607098053,"output":"(75/75), done.\n* Getting log_tee (https://github.com/renderedtext/log-tee.git)\nremote: Enumerating"},{"event":"cmd_output","timestamp":1607098053,"output":" objects: 20, done. \nremote: Total 20 (delta 0), reused 0 (delta 0), pack-reused 20 \r"},{"event":"cmd_output","timestamp":1607098054,"output":"\n* Getting watchman (https://github.com/renderedtext/ex-watchman.git)\nremote: Enumerating objects: "},{"event":"cmd_output","timestamp":1607098054,"output":"30, done. \nremote: Counting objects: 3% (1/30) \rremote: Counting objects: 6% (2/3"},{"event":"cmd_output","timestamp":1607098054,"output":"0) \rremote: Counting objects: 10% (3/30) \rremote: Counting objects: 13% (4/30) "},{"event":"cmd_output","timestamp":1607098054,"output":" \rremote: Counting objects: 16% (5/30) \rremote: Counting objects: 20% (6/30) \rremot"},{"event":"cmd_output","timestamp":1607098054,"output":"e: Counting objects: 23% (7/30) \rremote: Counting objects: 26% (8/30) \rremote: Count"},{"event":"cmd_output","timestamp":1607098054,"output":"ing objects: 30% (9/30) \rremote: Counting objects: 33% (10/30) \rremote: Counting obj"},{"event":"cmd_output","timestamp":1607098054,"output":"ects: 36% (11/30) \rremote: Counting objects: 40% (12/30) \rremote: Counting objects: "},{"event":"cmd_output","timestamp":1607098054,"output":" 43% (13/30) \rremote: Counting objects: 46% (14/30) \rremote: Counting objects: 50% ("},{"event":"cmd_output","timestamp":1607098054,"output":"15/30) \rremote: Counting objects: 53% (16/30) \rremote: Counting objects: 56% (17/30)"},{"event":"cmd_output","timestamp":1607098054,"output":" \rremote: Counting objects: 60% (18/30) \rremote: Counting objects: 63% (19/30) "},{"event":"cmd_output","timestamp":1607098054,"output":" \rremote: Counting objects: 66% (20/30) \rremote: Counting objects: 70% (21/30) \rrem"},{"event":"cmd_output","timestamp":1607098054,"output":"ote: Counting objects: 73% (22/30) \rremote: Counting objects: 76% (23/30) \rremote: C"},{"event":"cmd_output","timestamp":1607098054,"output":"ounting objects: 80% (24/30) \rremote: Counting objects: 83% (25/30) \rremote: Countin"},{"event":"cmd_output","timestamp":1607098054,"output":"g objects: 86% (26/30) \rremote: Counting objects: 90% (27/30) \rremote: Counting obje"},{"event":"cmd_output","timestamp":1607098054,"output":"cts: 93% (28/30) \rremote: Counting objects: 96% (29/30) \rremote: Counting objects: 1"},{"event":"cmd_output","timestamp":1607098054,"output":"00% (30/30) \rremote: Counting objects: 100% (30/30), done. \nremote: Compressing objec"},{"event":"cmd_output","timestamp":1607098054,"output":"ts: 4% (1/22) \rremote: Compressing objects: 9% (2/22) \rremote: Compressing objects"},{"event":"cmd_output","timestamp":1607098054,"output":": 13% (3/22) \rremote: Compressing objects: 18% (4/22) \rremote: Compressing objects: "},{"event":"cmd_output","timestamp":1607098054,"output":" 22% (5/22) \rremote: Compressing objects: 27% (6/22) \rremote: Compressing objects: 3"},{"event":"cmd_output","timestamp":1607098054,"output":"1% (7/22) \rremote: Compressing objects: 36% (8/22) \rremote: Compressing objects: 40%"},{"event":"cmd_output","timestamp":1607098054,"output":" (9/22) \rremote: Compressing objects: 45% (10/22) \rremote: Compressing objects: 50% "},{"event":"cmd_output","timestamp":1607098054,"output":"(11/22) \rremote: Compressing objects: 54% (12/22) \rremote: Compressing objects: 59% "},{"event":"cmd_output","timestamp":1607098054,"output":"(13/22) \rremote: Compressing objects: 63% (14/22) \rremote: Compressing objects: 68% "},{"event":"cmd_output","timestamp":1607098054,"output":"(15/22) \rremote: Compressing objects: 72% (16/22) \rremote: Compressing objects: 77% "},{"event":"cmd_output","timestamp":1607098054,"output":"(17/22) \rremote: Compressing objects: 81% (18/22) \rremote: Compressing objects: 86% "},{"event":"cmd_output","timestamp":1607098054,"output":"(19/22) \rremote: Compressing objects: 90% (20/22) \rremote: Compressing objects: 95% "},{"event":"cmd_output","timestamp":1607098054,"output":"(21/22) \rremote: Compressing objects: 100% (22/22) \rremote: Compressing objects: 100% "},{"event":"cmd_output","timestamp":1607098054,"output":"(22/22), done. \nReceiving objects: 0% (1/343) \rReceiving objects: 1% (4/343) \rReceiv"},{"event":"cmd_output","timestamp":1607098054,"output":"ing objects: 2% (7/343) \rReceiving objects: 3% (11/343) \rReceiving objects: 4% (14/343) "},{"event":"cmd_output","timestamp":1607098054,"output":"\rReceiving objects: 5% (18/343) \rReceiving objects: 6% (21/343) \rReceiving objects: 7% (25"},{"event":"cmd_output","timestamp":1607098054,"output":"/343) \rReceiving objects: 8% (28/343) \rReceiving objects: 9% (31/343) \rReceiving objects: "},{"event":"cmd_output","timestamp":1607098054,"output":" 10% (35/343) \rReceiving objects: 11% (38/343) \rReceiving objects: 12% (42/343) \rReceiving o"},{"event":"cmd_output","timestamp":1607098054,"output":"bjects: 13% (45/343) \rReceiving objects: 14% (49/343) \rReceiving objects: 15% (52/343) \rRec"},{"event":"cmd_output","timestamp":1607098054,"output":"eiving objects: 16% (55/343) \rReceiving objects: 17% (59/343) \rReceiving objects: 18% (62/343"},{"event":"cmd_output","timestamp":1607098054,"output":") \rReceiving objects: 19% (66/343) \rReceiving objects: 20% (69/343) \rReceiving objects: 21%"},{"event":"cmd_output","timestamp":1607098054,"output":" (73/343) \rReceiving objects: 22% (76/343) \rReceiving objects: 23% (79/343) \rReceiving objec"},{"event":"cmd_output","timestamp":1607098054,"output":"ts: 24% (83/343) \rReceiving objects: 25% (86/343) \rReceiving objects: 26% (90/343) \rReceivi"},{"event":"cmd_output","timestamp":1607098054,"output":"ng objects: 27% (93/343) \rReceiving objects: 28% (97/343) \rReceiving objects: 29% (100/343) "},{"event":"cmd_output","timestamp":1607098054,"output":" \rReceiving objects: 30% (103/343) \rReceiving objects: 31% (107/343) \rReceiving objects: 32% "},{"event":"cmd_output","timestamp":1607098054,"output":"(110/343) \rReceiving objects: 33% (114/343) \rReceiving objects: 34% (117/343) \rReceiving obj"},{"event":"cmd_output","timestamp":1607098054,"output":"ects: 35% (121/343) \rReceiving objects: 36% (124/343) \rReceiving objects: 37% (127/343) \rRe"},{"event":"cmd_output","timestamp":1607098054,"output":"ceiving objects: 38% (131/343) \rReceiving objects: 39% (134/343) \rReceiving objects: 40% (138"},{"event":"cmd_output","timestamp":1607098054,"output":"/343) \rReceiving objects: 41% (141/343) \rReceiving objects: 42% (145/343) \rReceiving objects"},{"event":"cmd_output","timestamp":1607098054,"output":": 43% (148/343) \rReceiving objects: 44% (151/343) \rReceiving objects: 45% (155/343) \rReceiv"},{"event":"cmd_output","timestamp":1607098054,"output":"ing objects: 46% (158/343) \rReceiving objects: 47% (162/343) \rReceiving objects: 48% (165/343"},{"event":"cmd_output","timestamp":1607098054,"output":") \rReceiving objects: 49% (169/343) \rReceiving objects: 50% (172/343) \rReceiving objects: 5"},{"event":"cmd_output","timestamp":1607098054,"output":"1% (175/343) \rReceiving objects: 52% (179/343) \rReceiving objects: 53% (182/343) \rReceiving "},{"event":"cmd_output","timestamp":1607098054,"output":"objects: 54% (186/343) \rReceiving objects: 55% (189/343) \rReceiving objects: 56% (193/343) "},{"event":"cmd_output","timestamp":1607098054,"output":"\rReceiving objects: 57% (196/343) \rReceiving objects: 58% (199/343) \rReceiving objects: 59% ("},{"event":"cmd_output","timestamp":1607098054,"output":"203/343) \rReceiving objects: 60% (206/343) \rReceiving objects: 61% (210/343) \rReceiving obje"},{"event":"cmd_output","timestamp":1607098054,"output":"cts: 62% (213/343) \rReceiving objects: 63% (217/343) \rReceiving objects: 64% (220/343) \rRec"},{"event":"cmd_output","timestamp":1607098054,"output":"eiving objects: 65% (223/343) \rReceiving objects: 66% (227/343) \rReceiving objects: 67% (230/"},{"event":"cmd_output","timestamp":1607098054,"output":"343) \rReceiving objects: 68% (234/343) \rReceiving objects: 69% (237/343) \rReceiving objects:"},{"event":"cmd_output","timestamp":1607098054,"output":" 70% (241/343) \rReceiving objects: 71% (244/343) \rReceiving objects: 72% (247/343) \rReceivi"},{"event":"cmd_output","timestamp":1607098054,"output":"ng objects: 73% (251/343) \rReceiving objects: 74% (254/343) \rReceiving objects: 75% (258/343)"},{"event":"cmd_output","timestamp":1607098054,"output":" \rReceiving objects: 76% (261/343) \rReceiving objects: 77% (265/343) \rReceiving objects: 78"},{"event":"cmd_output","timestamp":1607098054,"output":"% (268/343) \rReceiving objects: 79% (271/343) \rReceiving objects: 80% (275/343) \rReceiving o"},{"event":"cmd_output","timestamp":1607098054,"output":"bjects: 81% (278/343) \rReceiving objects: 82% (282/343) \rReceiving objects: 83% (285/343) \r"},{"event":"cmd_output","timestamp":1607098054,"output":"Receiving objects: 84% (289/343) \rReceiving objects: 85% (292/343) \rReceiving objects: 86% (2"},{"event":"cmd_output","timestamp":1607098054,"output":"95/343) \rReceiving objects: 87% (299/343) \rReceiving objects: 88% (302/343) \rReceiving objec"},{"event":"cmd_output","timestamp":1607098054,"output":"ts: 89% (306/343) \rReceiving objects: 90% (309/343) \rReceiving objects: 91% (313/343) \rRece"},{"event":"cmd_output","timestamp":1607098054,"output":"iving objects: 92% (316/343) \rReceiving objects: 93% (319/343) \rReceiving objects: 94% (323/3"},{"event":"cmd_output","timestamp":1607098054,"output":"43) \rReceiving objects: 95% (326/343) \rremote: Total 343 (delta 9), reused 17 (delta 6), pack-r"},{"event":"cmd_output","timestamp":1607098054,"output":"eused 313 \nReceiving objects: 96% (330/343) \rReceiving objects: 97% (333/343) \rReceivi"},{"event":"cmd_output","timestamp":1607098054,"output":"ng objects: 98% (337/343) \rReceiving objects: 99% (340/343) \rReceiving objects: 100% (343/343)"},{"event":"cmd_output","timestamp":1607098054,"output":" \rReceiving objects: 100% (343/343), 51.43 KiB | 0 bytes/s, done.\nResolving deltas: 0% (0/145) "},{"event":"cmd_output","timestamp":1607098054,"output":" \rResolving deltas: 4% (6/145) \rResolving deltas: 6% (9/145) \rResolving deltas: 9% (14/14"},{"event":"cmd_output","timestamp":1607098054,"output":"5) \rResolving deltas: 12% (18/145) \rResolving deltas: 13% (19/145) \rResolving deltas: 17% ("},{"event":"cmd_output","timestamp":1607098054,"output":"25/145) \rResolving deltas: 20% (29/145) \rResolving deltas: 21% (31/145) \rResolving deltas: "},{"event":"cmd_output","timestamp":1607098054,"output":"24% (36/145) \rResolving deltas: 25% (37/145) \rResolving deltas: 30% (44/145) \rResolving delt"},{"event":"cmd_output","timestamp":1607098054,"output":"as: 32% (47/145) \rResolving deltas: 42% (61/145) \rResolving deltas: 46% (67/145) \rResolving"},{"event":"cmd_output","timestamp":1607098054,"output":" deltas: 57% (83/145) \rResolving deltas: 59% (86/145) \rResolving deltas: 65% (95/145) \rReso"},{"event":"cmd_output","timestamp":1607098054,"output":"lving deltas: 67% (98/145) \rResolving deltas: 76% (111/145) \rResolving deltas: 91% (133/145) "},{"event":"cmd_output","timestamp":1607098054,"output":" \rResolving deltas: 92% (134/145) \rResolving deltas: 93% (136/145) \rResolving deltas: 94% (1"},{"event":"cmd_output","timestamp":1607098054,"output":"37/145) \rResolving deltas: 95% (138/145) \rResolving deltas: 96% (140/145) \rResolving deltas:"},{"event":"cmd_output","timestamp":1607098054,"output":" 97% (142/145) \rResolving deltas: 99% (144/145) \rResolving deltas: 100% (145/145) \rResolving"},{"event":"cmd_output","timestamp":1607098054,"output":" deltas: 100% (145/145), done.\nResolving Hex dependencies...\nDependency resolution completed:\nUnc"},{"event":"cmd_output","timestamp":1607098054,"output":"hanged:\n artificery 0.4.1\n bunt 0.2.0\n cowboy 2.5.0\n cowlib 2.6.0\n credo 0.10.2\n distill"},{"event":"cmd_output","timestamp":1607098054,"output":"ery 2.0.12\n grpc 0.3.1\n gun 1.3.0\n jason 1.1.2\n protobuf 0.5.4\n ranch 1.6.2\n uuid 1.1.8\r"},{"event":"cmd_output","timestamp":1607098055,"output":"\n wormhole 2.3.0\n* Getting distillery (Hex package)\n* Getting credo (Hex package)\n* Getting uuid"},{"event":"cmd_output","timestamp":1607098055,"output":" (Hex package)\n* Getting jason (Hex package)\n* Getting grpc (Hex package)\n* Getting cowboy (Hex p"},{"event":"cmd_output","timestamp":1607098055,"output":"ackage)\n* Getting gun (Hex package)\n* Getting protobuf (Hex package)\n* Getting cowlib (Hex packag"},{"event":"cmd_output","timestamp":1607098055,"output":"e)\n* Getting ranch (Hex package)\n* Getting wormhole (Hex package)\n* Getting bunt (Hex package)\n*"},{"event":"cmd_output","timestamp":1607098055,"output":" Getting artificery (Hex package)\n==> sys2app\nCompiling 2 files (.ex)\nGenerated sys2app app\n==> "},{"event":"cmd_output","timestamp":1607098056,"output":"log_tee\nCompiling 1 file (.ex)\nGenerated log_tee app\n==> wormhole\nCompiling 6 files (.ex)\nGener"},{"event":"cmd_output","timestamp":1607098059,"output":"ated wormhole app\n==> protobuf\nCompiling 21 files (.ex)\nGenerated protobuf app\n===> Compiling ra"},{"event":"cmd_output","timestamp":1607098062,"output":"nch\n==> jason\nCompiling 8 files (.ex)\nGenerated jason app\n==> watchman\nCompiling 6 files (.ex)\r"},{"event":"cmd_output","timestamp":1607098062,"output":"\n\u001b[33mwarning: \u001b[0mvariable \"now\" does not exist and is being expanded to \"now()\", please use parent"},{"event":"cmd_output","timestamp":1607098062,"output":"heses to remove the ambiguity or change the variable name\n lib/watchman/heartbeat.ex:9\n\n\u001b[33mwar"},{"event":"cmd_output","timestamp":1607098062,"output":"ning: \u001b[0mvariable \"now\" does not exist and is being expanded to \"now()\", please use parentheses to "},{"event":"cmd_output","timestamp":1607098062,"output":"remove the ambiguity or change the variable name\n lib/watchman/heartbeat.ex:15\n\n\u001b[33mwarning: \u001b["},{"event":"cmd_output","timestamp":1607098062,"output":"0mvariable \"submit_memory\" does not exist and is being expanded to \"submit_memory()\", please use par"},{"event":"cmd_output","timestamp":1607098062,"output":"entheses to remove the ambiguity or change the variable name\n lib/watchman/system.ex:17\n\n\u001b[33mwa"},{"event":"cmd_output","timestamp":1607098062,"output":"rning: \u001b[0mKernel.to_char_list/1 is deprecated, use Kernel.to_charlist/1\n lib/watchman/server.ex:3"},{"event":"cmd_output","timestamp":1607098062,"output":"6\n\n\u001b[33mwarning: \u001b[0mfunction init/1 required by behaviour GenServer is not implemented (in module"},{"event":"cmd_output","timestamp":1607098062,"output":" Watchman.Server).\n\nWe will inject a default implementation for now:\n\n def init(args) do\n "},{"event":"cmd_output","timestamp":1607098062,"output":" {:ok, args}\n end\n\nYou can copy the implementation above or define your own that converts th"},{"event":"cmd_output","timestamp":1607098062,"output":"e arguments given to GenServer.start_link/3 to the server state.\n\n lib/watchman/server.ex:1\n\nGe"},{"event":"cmd_output","timestamp":1607098074,"output":"nerated watchman app\n===> Compiling cowlib\n===> Compiling cowboy\n==> uuid\nCompiling 1 file (.ex)"},{"event":"cmd_output","timestamp":1607098075,"output":"\nGenerated uuid app\n==> artificery\nCompiling 10 files (.ex)\n\u001b[33mwarning: \u001b[0mmodule attribute @"},{"event":"cmd_output","timestamp":1607098075,"output":"impl was not set for function get/3 callback (specified in Access). This either means you forgot to "},{"event":"cmd_output","timestamp":1607098075,"output":"add the \"@impl true\" annotation before the definition or that you are accidentally overriding this c"},{"event":"cmd_output","timestamp":1607098075,"output":"allback\n lib/command.ex:74\n\nGenerated artificery app\n==> distillery\nCompiling 33 files (.ex)\n"},{"event":"cmd_output","timestamp":1607098079,"output":"Generated distillery app\n==> util\nCompiling 4 files (.ex)\nGenerated util app\n===> Compiling gun\r"},{"event":"cmd_output","timestamp":1607098081,"output":"\n==> grpc\nCompiling 1 file (.erl)\nCompiling 21 files (.ex)\nGenerated grpc app\n==> dependencies\n"},{"event":"cmd_output","timestamp":1607098092,"output":"Generated dependencies app\n==> proto\nCompiling 20 files (.ex)\nGenerated proto app\n==> task_api_r"},{"event":"cmd_output","timestamp":1607098092,"output":"eferent\nCompiling 22 files (.ex)\n\u001b[33mwarning: \u001b[0mvariable \"cmd_ids\" is unused\n lib/task_api_re"},{"event":"cmd_output","timestamp":1607098092,"output":"ferent/runner/job.ex:86\n\n\u001b[33mwarning: \u001b[0mvariable \"env_vars\" is unused\n lib/task_api_referent/"},{"event":"cmd_output","timestamp":1607098092,"output":"runner/job.ex:86\n\n\u001b[33mwarning: \u001b[0mvariable \"job_id\" is unused\n lib/task_api_referent/runner/jo"},{"event":"cmd_output","timestamp":1607098092,"output":"b.ex:86\n\n\u001b[33mwarning: \u001b[0mvariable \"cmd_ids\" is unused\n lib/task_api_referent/runner/job.ex:89\r"},{"event":"cmd_output","timestamp":1607098092,"output":"\n\n\u001b[33mwarning: \u001b[0mvariable \"env_vars\" is unused\n lib/task_api_referent/runner/job.ex:89\n\n\u001b[33"},{"event":"cmd_output","timestamp":1607098092,"output":"mwarning: \u001b[0mvariable \"job_id\" is unused\n lib/task_api_referent/runner/job.ex:89\n\nGenerated tas"},{"event":"cmd_output","timestamp":1607098093,"output":"k_api_referent app\nmake[2]: Leaving directory '/home/semaphore/alles/plumber/task_api_referent'\nma"},{"event":"cmd_output","timestamp":1607098093,"output":"ke[1]: Leaving directory '/home/semaphore/alles/plumber/task_api_referent'\nmake release\nmake[1]: E"},{"event":"cmd_output","timestamp":1607098093,"output":"ntering directory '/home/semaphore/alles/plumber/task_api_referent'\nmake console MIX_ENV=prod CMD=\""},{"event":"cmd_output","timestamp":1607098093,"output":"mix release --verbose\"\nmake[2]: Entering directory '/home/semaphore/alles/plumber/task_api_referent"},{"event":"cmd_output","timestamp":1607098093,"output":"'\nmkdir -p home_dir\ndocker run --network=host -e APP_ENV= -e MIX_ENV=prod -v $PWD/home_dir:/home/"},{"event":"cmd_output","timestamp":1607098093,"output":"dev -v $PWD/..:/home/dev/repo --rm --workdir=/home/dev/repo/task_api_referent --user=root -it render"},{"event":"cmd_output","timestamp":1607098095,"output":"edtext/elixir-dev:1.6.5-v2 mix release --verbose\n\u001b[36m==> Loading configuration..\n\u001b[0m\u001b[0m\u001b[1m\u001b[36"},{"event":"cmd_output","timestamp":1607098095,"output":"m==> Assembling release..\n\u001b[0m\u001b[0m\u001b[1m\u001b[36m==> Building release task_api_referent:0.2.0 using envir"},{"event":"cmd_output","timestamp":1607098095,"output":"onment prod\n\u001b[0m\u001b[0m\u001b[36m==> Discovered applications:\n\u001b[0m\u001b[0m\u001b[36m > \u001b[37mgun-1.3.0\u001b[0m\u001b[0m\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098095,"output":"[0m\u001b[36m\n |\n | from: _build/prod/lib/gun\n\u001b[0m\u001b[0m\u001b[36m | applications:\n | :kernel\n "},{"event":"cmd_output","timestamp":1607098095,"output":"| :stdlib\n | :ssl\n | :cowlib\n\u001b[0m\u001b[0m\u001b[36m | includes: none\n\u001b[0m\u001b[0m\u001b[36m |_"},{"event":"cmd_output","timestamp":1607098095,"output":"____\n\n\u001b[0m\u001b[0m\u001b[36m > \u001b[37mwatchman-0.2.0\u001b[0m\u001b[0m\u001b[0m\u001b[0m\u001b[36m\n |\n | from: _build/prod/lib/w"},{"event":"cmd_output","timestamp":1607098095,"output":"atchman\n\u001b[0m\u001b[0m\u001b[36m | applications:\n | :kernel\n | :stdlib\n | :elixir\n | "},{"event":"cmd_output","timestamp":1607098095,"output":" :logger\n\u001b[0m\u001b[0m\u001b[36m | includes: none\n\u001b[0m\u001b[0m\u001b[36m |_____\n\n\u001b[0m\u001b[0m\u001b[36m > \u001b[37mproto"},{"event":"cmd_output","timestamp":1607098095,"output":"buf-0.5.4\u001b[0m\u001b[0m\u001b[0m\u001b[0m\u001b[36m\n |\n | from: _build/prod/lib/protobuf\n\u001b[0m\u001b[0m\u001b[36m | applicat"},{"event":"cmd_output","timestamp":1607098095,"output":"ions:\n | :kernel\n | :stdlib\n | :elixir\n | :logger\n\u001b[0m\u001b[0m\u001b[36m | inc"},{"event":"cmd_output","timestamp":1607098095,"output":"ludes: none\n\u001b[0m\u001b[0m\u001b[36m |_____\n\n\u001b[0m\u001b[0m\u001b[36m > \u001b[37mwormhole-2.3.0\u001b[0m\u001b[0m\u001b[0m\u001b[0m\u001b[36m\n |"},{"event":"cmd_output","timestamp":1607098095,"output":"\n | from: _build/prod/lib/wormhole\n\u001b[0m\u001b[0m\u001b[36m | applications:\n | :kernel\n | :"},{"event":"cmd_output","timestamp":1607098095,"output":"stdlib\n | :elixir\n | :logger\n\u001b[0m\u001b[0m\u001b[36m | includes: none\n\u001b[0m\u001b[0m\u001b[36m |_____\r"},{"event":"cmd_output","timestamp":1607098095,"output":"\n\n\u001b[0m\u001b[0m\u001b[36m > \u001b[37mutil-0.0.1\u001b[0m\u001b[0m\u001b[0m\u001b[0m\u001b[36m\n |\n | from: _build/prod/lib/util\n\u001b[0m"},{"event":"cmd_output","timestamp":1607098095,"output":"\u001b[0m\u001b[36m | applications:\n | :kernel\n | :stdlib\n | :elixir\n | :logger\r"},{"event":"cmd_output","timestamp":1607098095,"output":"\n | :wormhole\n | :protobuf\n | :watchman\n\u001b[0m\u001b[0m\u001b[36m | includes: none\n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098095,"output":"[0m\u001b[36m |_____\n\n\u001b[0m\u001b[0m\u001b[36m > \u001b[37mkernel-5.4.3\u001b[0m\u001b[0m\u001b[0m\u001b[0m\u001b[36m\n |\n | from: /usr/lo"},{"event":"cmd_output","timestamp":1607098095,"output":"cal/lib/erlang/lib/kernel-5.4.3\n\u001b[0m\u001b[0m\u001b[36m | applications: none\n\u001b[0m\u001b[0m\u001b[36m | includes: n"},{"event":"cmd_output","timestamp":1607098095,"output":"one\n\u001b[0m\u001b[0m\u001b[36m |_____\n\n\u001b[0m\u001b[0m\u001b[36m > \u001b[37martificery-0.4.1\u001b[0m\u001b[0m\u001b[0m\u001b[0m\u001b[36m\n |\n | "},{"event":"cmd_output","timestamp":1607098095,"output":" from: _build/prod/lib/artificery\n\u001b[0m\u001b[0m\u001b[36m | applications:\n | :kernel\n | :stdl"},{"event":"cmd_output","timestamp":1607098095,"output":"ib\n | :elixir\n\u001b[0m\u001b[0m\u001b[36m | includes: none\n\u001b[0m\u001b[0m\u001b[36m |_____\n\n\u001b[0m\u001b[0m\u001b[36m > \u001b["},{"event":"cmd_output","timestamp":1607098095,"output":"37mdistillery-2.0.12\u001b[0m\u001b[0m\u001b[0m\u001b[0m\u001b[36m\n |\n | from: _build/prod/lib/distillery\n\u001b[0m\u001b[0m\u001b[36m"},{"event":"cmd_output","timestamp":1607098095,"output":" | applications:\n | :kernel\n | :stdlib\n | :elixir\n | :runtime_tools\n "},{"event":"cmd_output","timestamp":1607098095,"output":" | :artificery\n\u001b[0m\u001b[0m\u001b[36m | includes: none\n\u001b[0m\u001b[0m\u001b[36m |_____\n\n\u001b[0m\u001b[0m\u001b[36m > \u001b[3"},{"event":"cmd_output","timestamp":1607098095,"output":"7muuid-1.1.8\u001b[0m\u001b[0m\u001b[0m\u001b[0m\u001b[36m\n |\n | from: _build/prod/lib/uuid\n\u001b[0m\u001b[0m\u001b[36m | applicati"},{"event":"cmd_output","timestamp":1607098095,"output":"ons:\n | :kernel\n | :stdlib\n | :elixir\n\u001b[0m\u001b[0m\u001b[36m | includes: none\n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098095,"output":"0m\u001b[36m |_____\n\n\u001b[0m\u001b[0m\u001b[36m > \u001b[37minets-6.5.1\u001b[0m\u001b[0m\u001b[0m\u001b[0m\u001b[36m\n |\n | from: /usr/loca"},{"event":"cmd_output","timestamp":1607098095,"output":"l/lib/erlang/lib/inets-6.5.1\n\u001b[0m\u001b[0m\u001b[36m | applications:\n | :kernel\n | :stdlib\n\u001b"},{"event":"cmd_output","timestamp":1607098095,"output":"[0m\u001b[0m\u001b[36m | includes: none\n\u001b[0m\u001b[0m\u001b[36m |_____\n\n\u001b[0m\u001b[0m\u001b[36m > \u001b[37mruntime_tools-1.12.5"},{"event":"cmd_output","timestamp":1607098095,"output":"\u001b[0m\u001b[0m\u001b[0m\u001b[0m\u001b[36m\n |\n | from: /usr/local/lib/erlang/lib/runtime_tools-1.12.5\n\u001b[0m\u001b[0m\u001b[36m"},{"event":"cmd_output","timestamp":1607098095,"output":" | applications:\n | :kernel\n | :stdlib\n\u001b[0m\u001b[0m\u001b[36m | includes: none\n\u001b[0m\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098095,"output":"36m |_____\n\n\u001b[0m\u001b[0m\u001b[36m > \u001b[37mcowlib-2.6.0\u001b[0m\u001b[0m\u001b[0m\u001b[0m\u001b[36m\n |\n | from: _build/prod/"},{"event":"cmd_output","timestamp":1607098095,"output":"lib/cowlib\n\u001b[0m\u001b[0m\u001b[36m | applications:\n | :kernel\n | :stdlib\n | :crypto\n\u001b"},{"event":"cmd_output","timestamp":1607098095,"output":"[0m\u001b[0m\u001b[36m | includes: none\n\u001b[0m\u001b[0m\u001b[36m |_____\n\n\u001b[0m\u001b[0m\u001b[36m > \u001b[37mstdlib-3.4.5\u001b[0m\u001b[0m"},{"event":"cmd_output","timestamp":1607098095,"output":"\u001b[0m\u001b[0m\u001b[36m\n |\n | from: /usr/local/lib/erlang/lib/stdlib-3.4.5\n\u001b[0m\u001b[0m\u001b[36m | application"},{"event":"cmd_output","timestamp":1607098095,"output":"s:\n | :kernel\n\u001b[0m\u001b[0m\u001b[36m | includes: none\n\u001b[0m\u001b[0m\u001b[36m |_____\n\n\u001b[0m\u001b[0m\u001b[36m > \u001b["},{"event":"cmd_output","timestamp":1607098095,"output":"37mdependencies-0.1.0\u001b[0m\u001b[0m\u001b[0m\u001b[0m\u001b[36m\n |\n | from: _build/prod/lib/dependencies\n\u001b[0m\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098095,"output":"36m | applications:\n | :kernel\n | :stdlib\n | :elixir\n | :logger\n | "},{"event":"cmd_output","timestamp":1607098095,"output":" :log_tee\n | :grpc\n | :uuid\n\u001b[0m\u001b[0m\u001b[36m | includes: none\n\u001b[0m\u001b[0m\u001b[36m |____"},{"event":"cmd_output","timestamp":1607098095,"output":"_\n\n\u001b[0m\u001b[0m\u001b[36m > \u001b[37mproto-0.2.0\u001b[0m\u001b[0m\u001b[0m\u001b[0m\u001b[36m\n |\n | from: _build/prod/lib/proto\n"},{"event":"cmd_output","timestamp":1607098095,"output":"\u001b[0m\u001b[0m\u001b[36m | applications:\n | :kernel\n | :stdlib\n | :elixir\n | :log"},{"event":"cmd_output","timestamp":1607098095,"output":"ger\n | :dependencies\n\u001b[0m\u001b[0m\u001b[36m | includes: none\n\u001b[0m\u001b[0m\u001b[36m |_____\n\n\u001b[0m\u001b[0m\u001b[36"},{"event":"cmd_output","timestamp":1607098095,"output":"m > \u001b[37mcrypto-4.2.2\u001b[0m\u001b[0m\u001b[0m\u001b[0m\u001b[36m\n |\n | from: /usr/local/lib/erlang/lib/crypto-4.2.2\r"},{"event":"cmd_output","timestamp":1607098095,"output":"\n\u001b[0m\u001b[0m\u001b[36m | applications:\n | :kernel\n | :stdlib\n\u001b[0m\u001b[0m\u001b[36m | includes: no"},{"event":"cmd_output","timestamp":1607098095,"output":"ne\n\u001b[0m\u001b[0m\u001b[36m |_____\n\n\u001b[0m\u001b[0m\u001b[36m > \u001b[37masn1-5.0.5\u001b[0m\u001b[0m\u001b[0m\u001b[0m\u001b[36m\n |\n | from: "},{"event":"cmd_output","timestamp":1607098095,"output":"/usr/local/lib/erlang/lib/asn1-5.0.5\n\u001b[0m\u001b[0m\u001b[36m | applications:\n | :kernel\n | :s"},{"event":"cmd_output","timestamp":1607098095,"output":"tdlib\n\u001b[0m\u001b[0m\u001b[36m | includes: none\n\u001b[0m\u001b[0m\u001b[36m |_____\n\n\u001b[0m\u001b[0m\u001b[36m > \u001b[37mpublic_key-1"},{"event":"cmd_output","timestamp":1607098095,"output":".5.2\u001b[0m\u001b[0m\u001b[0m\u001b[0m\u001b[36m\n |\n | from: /usr/local/lib/erlang/lib/public_key-1.5.2\n\u001b[0m\u001b[0m\u001b[36m"},{"event":"cmd_output","timestamp":1607098095,"output":" | applications:\n | :asn1\n | :crypto\n | :kernel\n | :stdlib\n\u001b[0m\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098095,"output":"36m | includes: none\n\u001b[0m\u001b[0m\u001b[36m |_____\n\n\u001b[0m\u001b[0m\u001b[36m > \u001b[37mssl-8.2.6\u001b[0m\u001b[0m\u001b[0m\u001b[0m\u001b[36"},{"event":"cmd_output","timestamp":1607098095,"output":"m\n |\n | from: /usr/local/lib/erlang/lib/ssl-8.2.6\n\u001b[0m\u001b[0m\u001b[36m | applications:\n | :c"},{"event":"cmd_output","timestamp":1607098095,"output":"rypto\n | :public_key\n | :kernel\n | :stdlib\n\u001b[0m\u001b[0m\u001b[36m | includes: none\n\u001b"},{"event":"cmd_output","timestamp":1607098095,"output":"[0m\u001b[0m\u001b[36m |_____\n\n\u001b[0m\u001b[0m\u001b[36m > \u001b[37mranch-1.6.2\u001b[0m\u001b[0m\u001b[0m\u001b[0m\u001b[36m\n |\n | from: _bui"},{"event":"cmd_output","timestamp":1607098095,"output":"ld/prod/lib/ranch\n\u001b[0m\u001b[0m\u001b[36m | applications:\n | :kernel\n | :stdlib\n | :ss"},{"event":"cmd_output","timestamp":1607098095,"output":"l\n\u001b[0m\u001b[0m\u001b[36m | includes: none\n\u001b[0m\u001b[0m\u001b[36m |_____\n\n\u001b[0m\u001b[0m\u001b[36m > \u001b[37mcowboy-2.5.0\u001b[0m"},{"event":"cmd_output","timestamp":1607098095,"output":"\u001b[0m\u001b[0m\u001b[0m\u001b[36m\n |\n | from: _build/prod/lib/cowboy\n\u001b[0m\u001b[0m\u001b[36m | applications:\n | "},{"event":"cmd_output","timestamp":1607098096,"output":" :kernel\n | :stdlib\n | :crypto\n | :cowlib\n | :ranch\n\u001b[0m\u001b[0m\u001b[36m | i"},{"event":"cmd_output","timestamp":1607098096,"output":"ncludes: none\n\u001b[0m\u001b[0m\u001b[36m |_____\n\n\u001b[0m\u001b[0m\u001b[36m > \u001b[37mgrpc-0.3.1\u001b[0m\u001b[0m\u001b[0m\u001b[0m\u001b[36m\n |\n"},{"event":"cmd_output","timestamp":1607098096,"output":" | from: _build/prod/lib/grpc\n\u001b[0m\u001b[0m\u001b[36m | applications:\n | :kernel\n | :stdlib"},{"event":"cmd_output","timestamp":1607098096,"output":"\n | :elixir\n | :logger\n | :protobuf\n | :cowboy\n | :gun\n\u001b[0m\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098096,"output":"[36m | includes: none\n\u001b[0m\u001b[0m\u001b[36m |_____\n\n\u001b[0m\u001b[0m\u001b[36m > \u001b[37mcompiler-7.1.5\u001b[0m\u001b[0m\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098096,"output":"0m\u001b[36m\n |\n | from: /usr/local/lib/erlang/lib/compiler-7.1.5\n\u001b[0m\u001b[0m\u001b[36m | applications:\n"},{"event":"cmd_output","timestamp":1607098096,"output":" | :kernel\n | :stdlib\n\u001b[0m\u001b[0m\u001b[36m | includes: none\n\u001b[0m\u001b[0m\u001b[36m |_____\n\n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098096,"output":"[0m\u001b[36m > \u001b[37mjason-1.1.2\u001b[0m\u001b[0m\u001b[0m\u001b[0m\u001b[36m\n |\n | from: _build/prod/lib/jason\n\u001b[0m\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098096,"output":"36m | applications:\n | :kernel\n | :stdlib\n | :elixir\n\u001b[0m\u001b[0m\u001b[36m | inclu"},{"event":"cmd_output","timestamp":1607098096,"output":"des: none\n\u001b[0m\u001b[0m\u001b[36m |_____\n\n\u001b[0m\u001b[0m\u001b[36m > \u001b[37msasl-3.1.2\u001b[0m\u001b[0m\u001b[0m\u001b[0m\u001b[36m\n |\n | "},{"event":"cmd_output","timestamp":1607098096,"output":" from: /usr/local/lib/erlang/lib/sasl-3.1.2\n\u001b[0m\u001b[0m\u001b[36m | applications:\n | :kernel\n | "},{"event":"cmd_output","timestamp":1607098096,"output":" :stdlib\n\u001b[0m\u001b[0m\u001b[36m | includes: none\n\u001b[0m\u001b[0m\u001b[36m |_____\n\n\u001b[0m\u001b[0m\u001b[36m > \u001b[37miex-1"},{"event":"cmd_output","timestamp":1607098096,"output":".6.5\u001b[0m\u001b[0m\u001b[0m\u001b[0m\u001b[36m\n |\n | from: /usr/local/lib/elixir/bin/../lib/iex\n\u001b[0m\u001b[0m\u001b[36m | a"},{"event":"cmd_output","timestamp":1607098096,"output":"pplications:\n | :kernel\n | :stdlib\n | :elixir\n\u001b[0m\u001b[0m\u001b[36m | includes: none"},{"event":"cmd_output","timestamp":1607098096,"output":"\n\u001b[0m\u001b[0m\u001b[36m |_____\n\n\u001b[0m\u001b[0m\u001b[36m > \u001b[37mmix-1.6.5\u001b[0m\u001b[0m\u001b[0m\u001b[0m\u001b[36m\n |\n | from: /us"},{"event":"cmd_output","timestamp":1607098096,"output":"r/local/lib/elixir/bin/../lib/mix\n\u001b[0m\u001b[0m\u001b[36m | applications:\n | :kernel\n | :stdl"},{"event":"cmd_output","timestamp":1607098096,"output":"ib\n | :elixir\n\u001b[0m\u001b[0m\u001b[36m | includes: none\n\u001b[0m\u001b[0m\u001b[36m |_____\n\n\u001b[0m\u001b[0m\u001b[36m > \u001b["},{"event":"cmd_output","timestamp":1607098096,"output":"37mlog_tee-0.1.0\u001b[0m\u001b[0m\u001b[0m\u001b[0m\u001b[36m\n |\n | from: _build/prod/lib/log_tee\n\u001b[0m\u001b[0m\u001b[36m | ap"},{"event":"cmd_output","timestamp":1607098096,"output":"plications:\n | :kernel\n | :stdlib\n | :elixir\n | :logger\n\u001b[0m\u001b[0m\u001b[36m "},{"event":"cmd_output","timestamp":1607098096,"output":"| includes: none\n\u001b[0m\u001b[0m\u001b[36m |_____\n\n\u001b[0m\u001b[0m\u001b[36m > \u001b[37msys2app-0.1.0\u001b[0m\u001b[0m\u001b[0m\u001b[0m\u001b[36m"},{"event":"cmd_output","timestamp":1607098096,"output":"\n |\n | from: _build/prod/lib/sys2app\n\u001b[0m\u001b[0m\u001b[36m | applications:\n | :kernel\n | "},{"event":"cmd_output","timestamp":1607098096,"output":" :stdlib\n | :elixir\n | :logger\n\u001b[0m\u001b[0m\u001b[36m | includes: none\n\u001b[0m\u001b[0m\u001b[36m |__"},{"event":"cmd_output","timestamp":1607098096,"output":"___\n\n\u001b[0m\u001b[0m\u001b[36m > \u001b[37mlogger-1.6.5\u001b[0m\u001b[0m\u001b[0m\u001b[0m\u001b[36m\n |\n | from: /usr/local/lib/elixi"},{"event":"cmd_output","timestamp":1607098096,"output":"r/bin/../lib/logger\n\u001b[0m\u001b[0m\u001b[36m | applications:\n | :kernel\n | :stdlib\n | :"},{"event":"cmd_output","timestamp":1607098096,"output":"elixir\n\u001b[0m\u001b[0m\u001b[36m | includes: none\n\u001b[0m\u001b[0m\u001b[36m |_____\n\n\u001b[0m\u001b[0m\u001b[36m > \u001b[37mtask_api_re"},{"event":"cmd_output","timestamp":1607098096,"output":"ferent-0.2.0\u001b[0m\u001b[0m\u001b[0m\u001b[0m\u001b[36m\n |\n | from: _build/prod/lib/task_api_referent\n\u001b[0m\u001b[0m\u001b[36m "},{"event":"cmd_output","timestamp":1607098096,"output":" | applications:\n | :kernel\n | :stdlib\n | :elixir\n | :logger\n | "},{"event":"cmd_output","timestamp":1607098096,"output":":sys2app\n | :log_tee\n | :jason\n | :uuid\n | :distillery\n | :util\n"},{"event":"cmd_output","timestamp":1607098096,"output":" | :grpc\n | :proto\n\u001b[0m\u001b[0m\u001b[36m | includes: none\n\u001b[0m\u001b[0m\u001b[36m |_____\n\n\u001b[0m\u001b[0m"},{"event":"cmd_output","timestamp":1607098096,"output":"\u001b[36m > \u001b[37melixir-1.6.5\u001b[0m\u001b[0m\u001b[0m\u001b[0m\u001b[36m\n |\n | from: /usr/local/lib/elixir/bin/../lib/el"},{"event":"cmd_output","timestamp":1607098096,"output":"ixir\n\u001b[0m\u001b[0m\u001b[36m | applications:\n | :kernel\n | :stdlib\n | :compiler\n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098096,"output":"[0m\u001b[36m | includes: none\n\u001b[0m\u001b[0m\u001b[36m |_____\n\n\u001b[0m\u001b[0m\u001b[36m==> Running validation checks..\n"},{"event":"cmd_output","timestamp":1607098096,"output":"\u001b[0m\u001b[0m\u001b[36m > Mix.Releases.Checks.Erts\u001b[0m\u001b[0m\u001b[32m * PASS\n\u001b[0m\u001b[0m\u001b[36m > Mix.Releases.Che"},{"event":"cmd_output","timestamp":1607098096,"output":"cks.Cookie\u001b[0m\u001b[0m\u001b[32m * PASS\n\u001b[0m\u001b[0m\u001b[36m > Mix.Releases.Checks.LoadedOrphanedApps\u001b[0m\u001b[0m\u001b[3"},{"event":"cmd_output","timestamp":1607098096,"output":"2m * PASS\n\u001b[0m\u001b[0m\u001b[36m==> Generated overlay vars:\n\u001b[0m\u001b[0m\u001b[36m release_name=:task_api_referen"},{"event":"cmd_output","timestamp":1607098096,"output":"t\n release_version=\"0.2.0\"\n is_upgrade=false\n upgrade_from=:latest\n dev_mode=false\n"},{"event":"cmd_output","timestamp":1607098096,"output":" include_erts=true\n include_src=false\n include_system_libs=true\n erl_opts=\"\"\n run"},{"event":"cmd_output","timestamp":1607098096,"output":"_erl_env=\"\"\n erts_vsn=\"9.3.1\"\n output_dir=\"_build/prod/rel/task_api_referent\"\n\u001b[0m\u001b[0m\u001b[36m"},{"event":"cmd_output","timestamp":1607098096,"output":"==> Copying applications to _build/prod/rel/task_api_referent\n\u001b[0m\u001b[0m\u001b[36m==> Generating start_erl"},{"event":"cmd_output","timestamp":1607098096,"output":".data\n\u001b[0m\u001b[0m\u001b[36m==> Generating vm.args\n\u001b[0m\u001b[0m\u001b[36m==> Generating sys.config from config/confi"},{"event":"cmd_output","timestamp":1607098096,"output":"g.exs\n\u001b[0m\u001b[0m\u001b[1m\u001b[36m==> Including ERTS 9.3.1 from /usr/local/lib/erlang/erts-9.3.1\n\u001b[0m\u001b[0m\u001b[36"},{"event":"cmd_output","timestamp":1607098097,"output":"m==> Generating boot scripts\n\u001b[0m\u001b[0m\u001b[36m==> Generating RELEASES\n\u001b[0m\u001b[0m\u001b[36m==> Applying overla"},{"event":"cmd_output","timestamp":1607098097,"output":"ys\n\u001b[0m\u001b[0m\u001b[36m==> \u001b[36mApplying \u001b[0mmkdir\u001b[36m overlay\n dst: releases/0.2.0/hooks\u001b[0m\n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098097,"output":"0m\u001b[36m==> \u001b[36mApplying \u001b[0mmkdir\u001b[36m overlay\n dst: releases/0.2.0/hooks/pre_configure.d\u001b[0m\n"},{"event":"cmd_output","timestamp":1607098097,"output":"\u001b[0m\u001b[0m\u001b[36m==> \u001b[36mApplying \u001b[0mmkdir\u001b[36m overlay\n dst: releases/0.2.0/hooks/post_configure."},{"event":"cmd_output","timestamp":1607098097,"output":"d\u001b[0m\n\u001b[0m\u001b[0m\u001b[36m==> \u001b[36mApplying \u001b[0mmkdir\u001b[36m overlay\n dst: releases/0.2.0/hooks/pre_star"},{"event":"cmd_output","timestamp":1607098097,"output":"t.d\u001b[0m\n\u001b[0m\u001b[0m\u001b[36m==> \u001b[36mApplying \u001b[0mmkdir\u001b[36m overlay\n dst: releases/0.2.0/hooks/post_s"},{"event":"cmd_output","timestamp":1607098097,"output":"tart.d\u001b[0m\n\u001b[0m\u001b[0m\u001b[36m==> \u001b[36mApplying \u001b[0mmkdir\u001b[36m overlay\n dst: releases/0.2.0/hooks/pre"},{"event":"cmd_output","timestamp":1607098097,"output":"_stop.d\u001b[0m\n\u001b[0m\u001b[0m\u001b[36m==> \u001b[36mApplying \u001b[0mmkdir\u001b[36m overlay\n dst: releases/0.2.0/hooks/po"},{"event":"cmd_output","timestamp":1607098097,"output":"st_stop.d\u001b[0m\n\u001b[0m\u001b[0m\u001b[36m==> \u001b[36mApplying \u001b[0mmkdir\u001b[36m overlay\n dst: releases/0.2.0/hooks/"},{"event":"cmd_output","timestamp":1607098097,"output":"pre_upgrade.d\u001b[0m\n\u001b[0m\u001b[0m\u001b[36m==> \u001b[36mApplying \u001b[0mmkdir\u001b[36m overlay\n dst: releases/0.2.0/ho"},{"event":"cmd_output","timestamp":1607098097,"output":"oks/post_upgrade.d\u001b[0m\n\u001b[0m\u001b[0m\u001b[36m==> \u001b[36mApplying \u001b[0mcopy\u001b[36m overlay\n src: _build/prod/l"},{"event":"cmd_output","timestamp":1607098097,"output":"ib/distillery/priv/libexec\n dst: releases/0.2.0/libexec\u001b[0m\n\u001b[0m\u001b[0m\u001b[36m==> \u001b[36mApplying \u001b[0m"},{"event":"cmd_output","timestamp":1607098097,"output":"mkdir\u001b[36m overlay\n dst: releases/0.2.0/commands\u001b[0m\n\u001b[0m\u001b[0m\u001b[36m==> \u001b[36mApplying \u001b[0mcopy\u001b[3"},{"event":"cmd_output","timestamp":1607098097,"output":"6m overlay\n src: rel/commands/healthcheck.sh\n dst: releases/0.2.0/commands/healthcheck.sh\u001b[0"},{"event":"cmd_output","timestamp":1607098097,"output":"m\n\u001b[0m\u001b[0m\u001b[1m\u001b[36m==> Packaging release..\n\u001b[0m\u001b[0m\u001b[36m==> Archiving task_api_referent-0.2.0\n\u001b[0"},{"event":"cmd_output","timestamp":1607098097,"output":"m\u001b[0m\u001b[36m==> Writing archive to /home/dev/repo/task_api_referent/_build/prod/rel/task_api_referent/"},{"event":"cmd_output","timestamp":1607098102,"output":"releases/0.2.0/task_api_referent.tar.gz\n\u001b[0m\u001b[0m\u001b[36m==> Updating archive..\n\u001b[0m\u001b[0m\u001b[36m==> Inclu"},{"event":"cmd_output","timestamp":1607098106,"output":"ding system libs from current Erlang installation\n\u001b[0m\u001b[0m\u001b[36m==> Saving archive..\n\u001b[0m\u001b[0m\u001b[36m="},{"event":"cmd_output","timestamp":1607098106,"output":"=> Archive saved!\n\u001b[0m\u001b[0m\u001b[32mRelease successfully built!\n\u001b[0m\u001b[0m\u001b[32mTo start the release you h"},{"event":"cmd_output","timestamp":1607098106,"output":"ave built, you can use one of the following tasks:\n\n\u001b[0m\u001b[0m\u001b[22m # start a shell, like 'iex -S"},{"event":"cmd_output","timestamp":1607098106,"output":" mix'\n\u001b[0m\u001b[0m\u001b[36m > _build/prod/rel/task_api_referent/bin/task_api_referent \u001b[37mconsole\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098106,"output":"0m\u001b[0m\u001b[0m\n\n\u001b[22m # start in the foreground, like 'mix run --no-halt'\n\u001b[0m\u001b[0m\u001b[36m > _buil"},{"event":"cmd_output","timestamp":1607098106,"output":"d/prod/rel/task_api_referent/bin/task_api_referent \u001b[37mforeground\u001b[0m\u001b[0m\u001b[0m\u001b[0m\n\n\u001b[22m # sta"},{"event":"cmd_output","timestamp":1607098106,"output":"rt in the background, must be stopped with the 'stop' command\n\u001b[0m\u001b[0m\u001b[36m > _build/prod/rel/ta"},{"event":"cmd_output","timestamp":1607098106,"output":"sk_api_referent/bin/task_api_referent \u001b[37mstart\u001b[0m\u001b[0m\u001b[0m\u001b[0m\n\n\u001b[32mIf you started a release el"},{"event":"cmd_output","timestamp":1607098106,"output":"sewhere, and wish to connect to it:\n\n\u001b[0m\u001b[0m\u001b[22m # connects a local shell to the running node"},{"event":"cmd_output","timestamp":1607098106,"output":"\n\u001b[0m\u001b[0m\u001b[36m > _build/prod/rel/task_api_referent/bin/task_api_referent \u001b[37mremote_console\u001b[0m"},{"event":"cmd_output","timestamp":1607098106,"output":"\u001b[0m\u001b[0m\u001b[0m\n\n\u001b[22m # connects directly to the running node's console\n\u001b[0m\u001b[0m\u001b[36m > _buil"},{"event":"cmd_output","timestamp":1607098106,"output":"d/prod/rel/task_api_referent/bin/task_api_referent \u001b[37mattach\u001b[0m\u001b[0m\u001b[0m\u001b[0m\n\n\u001b[32mFor a complet"},{"event":"cmd_output","timestamp":1607098106,"output":"e listing of commands and their use:\n\n\u001b[0m\u001b[0m\u001b[36m > _build/prod/rel/task_api_referent/bin/tas"},{"event":"cmd_output","timestamp":1607098106,"output":"k_api_referent \u001b[37mhelp\u001b[0m\u001b[0m\u001b[0m\u001b[0m\nmake[2]: Leaving directory '/home/semaphore/alles/plumber/"},{"event":"cmd_output","timestamp":1607098106,"output":"task_api_referent'\nmkdir -p rel/artifacts\ncp \"_build/prod/rel/task_api_referent/releases/0.2.0/tas"},{"event":"cmd_output","timestamp":1607098106,"output":"k_api_referent.tar.gz\" rel/artifacts/\"task_api_referent-0.2.0.tar.gz\"\nmake[1]: Leaving directory '/"},{"event":"cmd_output","timestamp":1607098106,"output":"home/semaphore/alles/plumber/task_api_referent'\ndocker build \\\n--cache-from renderedtext/task_api_"},{"event":"cmd_output","timestamp":1607098106,"output":"referent:latest \\\n--build-arg APP_NAME=task_api_referent \\\n--build-arg APP_VSN=0.2.0 \\\n-t rende"},{"event":"cmd_output","timestamp":1607098106,"output":"redtext/task_api_referent:e3cc76b-ce6dce3b-f31b-4183-8411-150740f8d548 -t renderedtext/task_api_refe"},{"event":"cmd_output","timestamp":1607098106,"output":"rent:latest \\\n-f Dockerfile \\\n./\nSending build context to Docker daemon 557.1kB\rSending build co"},{"event":"cmd_output","timestamp":1607098107,"output":"ntext to Docker daemon 4.456MB\rSending build context to Docker daemon 22.28MB\rSending build contex"},{"event":"cmd_output","timestamp":1607098107,"output":"t to Docker daemon 32.87MB\rSending build context to Docker daemon 37.88MB\rSending build context to"},{"event":"cmd_output","timestamp":1607098107,"output":" Docker daemon 42.34MB\rSending build context to Docker daemon 49.02MB\rSending build context to Doc"},{"event":"cmd_output","timestamp":1607098107,"output":"ker daemon 61.83MB\rSending build context to Docker daemon 75.76MB\rSending build context to Docker "},{"event":"cmd_output","timestamp":1607098107,"output":"daemon 79.1MB\rSending build context to Docker daemon 86.9MB\rSending build context to Docker daem"},{"event":"cmd_output","timestamp":1607098109,"output":"on 105.3MB\r\r\nStep 1/11 : FROM renderedtext/elixir:1.6.5-v2\n1.6.5-v2: Pulling from renderedtext/el"},{"event":"cmd_output","timestamp":1607098109,"output":"ixir\n\n\u001b[1A\u001b[2K\rcc1a78bfd46b: Already exists \r\u001b[1B\n\u001b[1A\u001b[2K\r6861473222a6: Already exists \r\u001b[1B\n\u001b["},{"event":"cmd_output","timestamp":1607098109,"output":"1A\u001b[2K\r7e0b9c3b5ae0: Already exists \r\u001b[1B\n\u001b[1A\u001b[2K\r3ec98735f56f: Already exists \r\u001b[1B\n\u001b[1A\u001b[2K\r9b3"},{"event":"cmd_output","timestamp":1607098109,"output":"11b87a021: Already exists \r\u001b[1B\n\u001b[1A\u001b[2K\r987a30f8af92: Already exists \r\u001b[1B\n\u001b[1A\u001b[2K\rfdc81c59203f:"},{"event":"cmd_output","timestamp":1607098109,"output":" Already exists \r\u001b[1B\n\u001b[1A\u001b[2K\r84732a75fcaa: Already exists \r\u001b[1B\n\u001b[1A\u001b[2K\rdbcab08679b9: Already e"},{"event":"cmd_output","timestamp":1607098109,"output":"xists \r\u001b[1B\n\u001b[1A\u001b[2K\r954ea967a4b6: Already exists \r\u001b[1B\n\u001b[1A\u001b[2K\r85964177ed50: Already exists \r\u001b[1"},{"event":"cmd_output","timestamp":1607098109,"output":"B\n\u001b[1A\u001b[2K\r95369df2fe13: Already exists \r\u001b[1BDigest: sha256:0df07fcbc3c51730875e3358ea576d01c45175b"},{"event":"cmd_output","timestamp":1607098109,"output":"ecbd89cfb01e624bdec82d8c3\nStatus: Downloaded newer image for renderedtext/elixir:1.6.5-v2\n ---> 1b"},{"event":"cmd_output","timestamp":1607098110,"output":"3a396f450a\nStep 2/11 : USER root\n ---> Running in f05ecd7a88ca\nRemoving intermediate container f0"},{"event":"cmd_output","timestamp":1607098110,"output":"5ecd7a88ca\n ---> 1a954dcdaed4\nStep 3/11 : RUN GRPC_HEALTH_PROBE_VERSION=v0.2.0 && wget -qO/bin"},{"event":"cmd_output","timestamp":1607098110,"output":"/grpc_health_probe https://github.com/grpc-ecosystem/grpc-health-probe/releases/download/${GRPC_HEAL"},{"event":"cmd_output","timestamp":1607098110,"output":"TH_PROBE_VERSION}/grpc_health_probe-linux-amd64 && chmod +x /bin/grpc_health_probe\n ---> Runnin"},{"event":"cmd_output","timestamp":1607098112,"output":"g in 321043934be0\nRemoving intermediate container 321043934be0\n ---> fcae911d61ea\nStep 4/11 : ARG"},{"event":"cmd_output","timestamp":1607098112,"output":" APP_NAME\n ---> Running in 690fc0ee66c9\nRemoving intermediate container 690fc0ee66c9\n ---> afeb38"},{"event":"cmd_output","timestamp":1607098112,"output":"af808f\nStep 5/11 : ARG APP_VSN\n ---> Running in 4a0394efe916\nRemoving intermediate container 4a03"},{"event":"cmd_output","timestamp":1607098113,"output":"94efe916\n ---> 370224a1280b\nStep 6/11 : ENV APP_NAME=${APP_NAME}\n ---> Running in a974a5e10843\nR"},{"event":"cmd_output","timestamp":1607098113,"output":"emoving intermediate container a974a5e10843\n ---> ac1e81771c44\nStep 7/11 : ENV TERM=xterm\n ---> R"},{"event":"cmd_output","timestamp":1607098113,"output":"unning in 13a7a0815ca6\nRemoving intermediate container 13a7a0815ca6\n ---> 54d3f6b51910\nStep 8/11 "},{"event":"cmd_output","timestamp":1607098113,"output":": ENV MIX_ENV=prod\n ---> Running in 8c8305da0606\nRemoving intermediate container 8c8305da0606\n --"},{"event":"cmd_output","timestamp":1607098113,"output":"-> 97cadeecbfea\nStep 9/11 : COPY rel/artifacts/${APP_NAME}-${APP_VSN}.tar.gz ${APP_NAME}.tar.gz\n -"},{"event":"cmd_output","timestamp":1607098113,"output":"--> f571364c9ad0\nStep 10/11 : RUN tar -xzf ${APP_NAME}.tar.gz && rm ${APP_NAME}.tar.gz\n ---> Run"},{"event":"cmd_output","timestamp":1607098115,"output":"ning in cb55134abea7\nRemoving intermediate container cb55134abea7\n ---> 797723f488ad\nStep 11/11 :"},{"event":"cmd_output","timestamp":1607098116,"output":" CMD trap 'exit' INT; bin/${APP_NAME} foreground\n ---> Running in defa67e18897\nRemoving intermedia"},{"event":"cmd_output","timestamp":1607098116,"output":"te container defa67e18897\n ---> 279947463d62\nSuccessfully built 279947463d62\nSuccessfully tagged "},{"event":"cmd_output","timestamp":1607098116,"output":"renderedtext/task_api_referent:e3cc76b-ce6dce3b-f31b-4183-8411-150740f8d548\nSuccessfully tagged ren"},{"event":"cmd_output","timestamp":1607098116,"output":"deredtext/task_api_referent:latest\ndocker run --rm --name task-api-referent -d -p 50051:50051 rende"},{"event":"cmd_output","timestamp":1607098116,"output":"redtext/task_api_referent:e3cc76b-ce6dce3b-f31b-4183-8411-150740f8d548\n5674c41b78468e8f11c6d45b715c"},{"event":"cmd_output","timestamp":1607098116,"output":"d52d86724ddf962a05daef3a712e48fe2d7d\n"},{"event":"cmd_finished","timestamp":1607098116,"directive":"make image.run-detached USER=root","exit_code":0,"started_at":1607098021,"finished_at":1607098116},{"event":"cmd_started","timestamp":1607098116,"directive":"cd ../ppl"},{"event":"cmd_finished","timestamp":1607098116,"directive":"cd ../ppl","exit_code":0,"started_at":1607098116,"finished_at":1607098116},{"event":"cmd_started","timestamp":1607098116,"directive":"make rabbitmq.run"},{"event":"cmd_output","timestamp":1607098116,"output":"docker run -d --rm --name rabbitmq -p 5673:5672 --memory 512m rabbitmq:3.7\nUnable to find image 'ra"},{"event":"cmd_output","timestamp":1607098118,"output":"bbitmq:3.7' locally\n3.7: Pulling from library/rabbitmq\n\n\u001b[1A\u001b[2K\r7595c8c21622: Pulling fs layer \r"},{"event":"cmd_output","timestamp":1607098118,"output":"\u001b[1B\n\u001b[1A\u001b[2K\rd13af8ca898f: Pulling fs layer \r\u001b[1B\n\u001b[1A\u001b[2K\r70799171ddba: Pulling fs layer \r\u001b[1B\n"},{"event":"cmd_output","timestamp":1607098118,"output":"\u001b[1A\u001b[2K\rb6c12202c5ef: Pulling fs layer \r\u001b[1B\n\u001b[1A\u001b[2K\r7c7d7bd9523c: Pulling fs layer \r\u001b[1B\n\u001b[1A\u001b["},{"event":"cmd_output","timestamp":1607098118,"output":"2K\r522a04a12a81: Pulling fs layer \r\u001b[1B\n\u001b[1A\u001b[2K\r465d05ea44a2: Pulling fs layer \r\u001b[1B\n\u001b[1A\u001b[2K\rb06"},{"event":"cmd_output","timestamp":1607098118,"output":"0ed55c3fd: Pulling fs layer \r\u001b[1B\n\u001b[1A\u001b[2K\r874cbe0acbba: Pulling fs layer \r\u001b[1B\n\u001b[1A\u001b[2K\rdfbd1f813"},{"event":"cmd_output","timestamp":1607098118,"output":"a51: Pulling fs layer \r\u001b[1B\u001b[6A\u001b[2K\r7c7d7bd9523c: Waiting \r\u001b[6B\u001b[5A\u001b[2K\r522a04a12a81: Waiting \r\u001b[5B\u001b"},{"event":"cmd_output","timestamp":1607098118,"output":"[4A\u001b[2K\r465d05ea44a2: Waiting \r\u001b[4B\u001b[3A\u001b[2K\rb060ed55c3fd: Waiting \r\u001b[3B\u001b[2A\u001b[2K\r874cbe0acbba: Waitin"},{"event":"cmd_output","timestamp":1607098119,"output":"g \r\u001b[2B\u001b[1A\u001b[2K\rdfbd1f813a51: Waiting \r\u001b[1B\u001b[7A\u001b[2K\rb6c12202c5ef: Waiting \r\u001b[7B\u001b[9A\u001b[2K\rd13af8ca898f"},{"event":"cmd_output","timestamp":1607098119,"output":": Downloading 423B/35.36kB\r\u001b[9B\u001b[9A\u001b[2K\rd13af8ca898f: Downloading 35.36kB/35.36kB\r\u001b[9B\u001b[9A\u001b[2K\r"},{"event":"cmd_output","timestamp":1607098119,"output":"d13af8ca898f: Verifying Checksum \r\u001b[9B\u001b[9A\u001b[2K\rd13af8ca898f: Download complete \r\u001b[9B\u001b[8A\u001b[2K\r7079917"},{"event":"cmd_output","timestamp":1607098119,"output":"1ddba: Downloading 425B/848B\r\u001b[8B\u001b[8A\u001b[2K\r70799171ddba: Downloading 848B/848B\r\u001b[8B\u001b[8A\u001b[2K\r7"},{"event":"cmd_output","timestamp":1607098119,"output":"0799171ddba: Verifying Checksum \r\u001b[8B\u001b[8A\u001b[2K\r70799171ddba: Download complete \r\u001b[8B\u001b[10A\u001b[2K\r7595c8c"},{"event":"cmd_output","timestamp":1607098119,"output":"21622: Downloading 276.9kB/26.7MB\r\u001b[10B\u001b[10A\u001b[2K\r7595c8c21622: Downloading 6.101MB/26.7MB\r\u001b[10B\u001b[1"},{"event":"cmd_output","timestamp":1607098119,"output":"0A\u001b[2K\r7595c8c21622: Downloading 10.57MB/26.7MB\r\u001b[10B\u001b[10A\u001b[2K\r7595c8c21622: Downloading 19.18MB/2"},{"event":"cmd_output","timestamp":1607098119,"output":"6.7MB\r\u001b[10B\u001b[10A\u001b[2K\r7595c8c21622: Verifying Checksum \r\u001b[10B\u001b[10A\u001b[2K\r7595c8c21622: Download complet"},{"event":"cmd_output","timestamp":1607098119,"output":"e \r\u001b[10B\u001b[7A\u001b[2K\rb6c12202c5ef: Downloading 161B/161B\r\u001b[7B\u001b[7A\u001b[2K\rb6c12202c5ef: Verifying Checks"},{"event":"cmd_output","timestamp":1607098119,"output":"um \r\u001b[7B\u001b[7A\u001b[2K\rb6c12202c5ef: Download complete \r\u001b[7B\u001b[6A\u001b[2K\r7c7d7bd9523c: Downloading 8.593kB/77"},{"event":"cmd_output","timestamp":1607098119,"output":"9.7kB\r\u001b[6B\u001b[6A\u001b[2K\r7c7d7bd9523c: Verifying Checksum \r\u001b[6B\u001b[6A\u001b[2K\r7c7d7bd9523c: Download complete \r\u001b"},{"event":"cmd_output","timestamp":1607098119,"output":"[6B\u001b[10A\u001b[2K\r7595c8c21622: Extracting 294.9kB/26.7MB\r\u001b[10B\u001b[10A\u001b[2K\r7595c8c21622: Extracting 2.654"},{"event":"cmd_output","timestamp":1607098119,"output":"MB/26.7MB\r\u001b[10B\u001b[10A\u001b[2K\r7595c8c21622: Extracting 6.783MB/26.7MB\r\u001b[10B\u001b[4A\u001b[2K\r465d05ea44a2: Downlo"},{"event":"cmd_output","timestamp":1607098119,"output":"ading 424B/2.068kB\r\u001b[4B\u001b[4A\u001b[2K\r465d05ea44a2: Downloading 2.068kB/2.068kB\r\u001b[4B\u001b[4A\u001b[2K\r465d05ea"},{"event":"cmd_output","timestamp":1607098119,"output":"44a2: Verifying Checksum \r\u001b[4B\u001b[4A\u001b[2K\r465d05ea44a2: Download complete \r\u001b[4B\u001b[10A\u001b[2K\r7595c8c21622: "},{"event":"cmd_output","timestamp":1607098120,"output":"Extracting 9.732MB/26.7MB\r\u001b[10B\u001b[5A\u001b[2K\r522a04a12a81: Downloading 314.6kB/31.37MB\r\u001b[5B\u001b[3A\u001b[2K\rb06"},{"event":"cmd_output","timestamp":1607098120,"output":"0ed55c3fd: Downloading 109.9kB/10.93MB\r\u001b[3B\u001b[5A\u001b[2K\r522a04a12a81: Downloading 7.719MB/31.37MB\r\u001b[5B"},{"event":"cmd_output","timestamp":1607098120,"output":"\u001b[10A\u001b[2K\r7595c8c21622: Extracting 11.21MB/26.7MB\r\u001b[10B\u001b[3A\u001b[2K\rb060ed55c3fd: Downloading 4.856MB/"},{"event":"cmd_output","timestamp":1607098120,"output":"10.93MB\r\u001b[3B\u001b[5A\u001b[2K\r522a04a12a81: Downloading 12.86MB/31.37MB\r\u001b[5B\u001b[10A\u001b[2K\r7595c8c21622: Extracti"},{"event":"cmd_output","timestamp":1607098120,"output":"ng 12.68MB/26.7MB\r\u001b[10B\u001b[3A\u001b[2K\rb060ed55c3fd: Downloading 10.63MB/10.93MB\r\u001b[3B\u001b[3A\u001b[2K\rb060ed55c3f"},{"event":"cmd_output","timestamp":1607098120,"output":"d: Verifying Checksum \r\u001b[3B\u001b[3A\u001b[2K\rb060ed55c3fd: Download complete \r\u001b[3B\u001b[5A\u001b[2K\r522a04a12a81: Down"},{"event":"cmd_output","timestamp":1607098120,"output":"loading 21.81MB/31.37MB\r\u001b[5B\u001b[10A\u001b[2K\r7595c8c21622: Extracting 15.34MB/26.7MB\r\u001b[10B\u001b[5A\u001b[2K\r522a04"},{"event":"cmd_output","timestamp":1607098120,"output":"a12a81: Downloading 30.88MB/31.37MB\r\u001b[5B\u001b[5A\u001b[2K\r522a04a12a81: Verifying Checksum \r\u001b[5B\u001b[5A\u001b[2K\r522"},{"event":"cmd_output","timestamp":1607098120,"output":"a04a12a81: Download complete \r\u001b[5B\u001b[10A\u001b[2K\r7595c8c21622: Extracting 17.4MB/26.7MB\r\u001b[10B\u001b[2A\u001b[2K\r8"},{"event":"cmd_output","timestamp":1607098120,"output":"74cbe0acbba: Downloading 107B/107B\r\u001b[2B\u001b[2A\u001b[2K\r874cbe0acbba: Verifying Checksum \r\u001b[2B\u001b[2A\u001b[2K\r8"},{"event":"cmd_output","timestamp":1607098120,"output":"74cbe0acbba: Download complete \r\u001b[2B\u001b[10A\u001b[2K\r7595c8c21622: Extracting 22.12MB/26.7MB\r\u001b[10B\u001b[1A\u001b[2K"},{"event":"cmd_output","timestamp":1607098120,"output":"\rdfbd1f813a51: Downloading 425B/4.639kB\r\u001b[1B\u001b[1A\u001b[2K\rdfbd1f813a51: Downloading 4.639kB/4.639kB\r"},{"event":"cmd_output","timestamp":1607098120,"output":"\u001b[1B\u001b[1A\u001b[2K\rdfbd1f813a51: Verifying Checksum \r\u001b[1B\u001b[1A\u001b[2K\rdfbd1f813a51: Download complete \r\u001b[1B\u001b[1"},{"event":"cmd_output","timestamp":1607098120,"output":"0A\u001b[2K\r7595c8c21622: Extracting 24.48MB/26.7MB\r\u001b[10B\u001b[10A\u001b[2K\r7595c8c21622: Extracting 25.95MB/26."},{"event":"cmd_output","timestamp":1607098121,"output":"7MB\r\u001b[10B\u001b[10A\u001b[2K\r7595c8c21622: Extracting 26.7MB/26.7MB\r\u001b[10B\u001b[10A\u001b[2K\r7595c8c21622: Pull comple"},{"event":"cmd_output","timestamp":1607098121,"output":"te \r\u001b[10B\u001b[9A\u001b[2K\rd13af8ca898f: Extracting 32.77kB/35.36kB\r\u001b[9B\u001b[9A\u001b[2K\rd13af8ca898f: Extracting 3"},{"event":"cmd_output","timestamp":1607098121,"output":"5.36kB/35.36kB\r\u001b[9B\u001b[9A\u001b[2K\rd13af8ca898f: Pull complete \r\u001b[9B\u001b[8A\u001b[2K\r70799171ddba: Extracting 8"},{"event":"cmd_output","timestamp":1607098121,"output":"48B/848B\r\u001b[8B\u001b[8A\u001b[2K\r70799171ddba: Extracting 848B/848B\r\u001b[8B\u001b[8A\u001b[2K\r70799171ddba: Pull complet"},{"event":"cmd_output","timestamp":1607098121,"output":"e \r\u001b[8B\u001b[7A\u001b[2K\rb6c12202c5ef: Extracting 161B/161B\r\u001b[7B\u001b[7A\u001b[2K\rb6c12202c5ef: Extracting 161"},{"event":"cmd_output","timestamp":1607098121,"output":"B/161B\r\u001b[7B\u001b[7A\u001b[2K\rb6c12202c5ef: Pull complete \r\u001b[7B\u001b[6A\u001b[2K\r7c7d7bd9523c: Extracting 32.77kB/779."},{"event":"cmd_output","timestamp":1607098121,"output":"7kB\r\u001b[6B\u001b[6A\u001b[2K\r7c7d7bd9523c: Extracting 779.7kB/779.7kB\r\u001b[6B\u001b[6A\u001b[2K\r7c7d7bd9523c: Extracting 77"},{"event":"cmd_output","timestamp":1607098121,"output":"9.7kB/779.7kB\r\u001b[6B\u001b[6A\u001b[2K\r7c7d7bd9523c: Pull complete \r\u001b[6B\u001b[5A\u001b[2K\r522a04a12a81: Extracting 327.7"},{"event":"cmd_output","timestamp":1607098121,"output":"kB/31.37MB\r\u001b[5B\u001b[5A\u001b[2K\r522a04a12a81: Extracting 983kB/31.37MB\r\u001b[5B\u001b[5A\u001b[2K\r522a04a12a81: Extract"},{"event":"cmd_output","timestamp":1607098121,"output":"ing 6.881MB/31.37MB\r\u001b[5B\u001b[5A\u001b[2K\r522a04a12a81: Extracting 10.49MB/31.37MB\r\u001b[5B\u001b[5A\u001b[2K\r522a04a12a8"},{"event":"cmd_output","timestamp":1607098122,"output":"1: Extracting 14.09MB/31.37MB\r\u001b[5B\u001b[5A\u001b[2K\r522a04a12a81: Extracting 15.07MB/31.37MB\r\u001b[5B\u001b[5A\u001b[2K\r5"},{"event":"cmd_output","timestamp":1607098122,"output":"22a04a12a81: Extracting 16.71MB/31.37MB\r\u001b[5B\u001b[5A\u001b[2K\r522a04a12a81: Extracting 18.68MB/31.37MB\r\u001b[5B"},{"event":"cmd_output","timestamp":1607098122,"output":"\u001b[5A\u001b[2K\r522a04a12a81: Extracting 22.94MB/31.37MB\r\u001b[5B\u001b[5A\u001b[2K\r522a04a12a81: Extracting 29.49MB/31"},{"event":"cmd_output","timestamp":1607098122,"output":".37MB\r\u001b[5B\u001b[5A\u001b[2K\r522a04a12a81: Extracting 31.37MB/31.37MB\r\u001b[5B\u001b[5A\u001b[2K\r522a04a12a81: Pull complet"},{"event":"cmd_output","timestamp":1607098122,"output":"e \r\u001b[5B\u001b[4A\u001b[2K\r465d05ea44a2: Extracting 2.068kB/2.068kB\r\u001b[4B\u001b[4A\u001b[2K\r465d05ea44a2: Extracting 2.0"},{"event":"cmd_output","timestamp":1607098122,"output":"68kB/2.068kB\r\u001b[4B\u001b[4A\u001b[2K\r465d05ea44a2: Pull complete \r\u001b[4B\u001b[3A\u001b[2K\rb060ed55c3fd: Extracting 131.1k"},{"event":"cmd_output","timestamp":1607098122,"output":"B/10.93MB\r\u001b[3B\u001b[3A\u001b[2K\rb060ed55c3fd: Extracting 3.539MB/10.93MB\r\u001b[3B\u001b[3A\u001b[2K\rb060ed55c3fd: Extracti"},{"event":"cmd_output","timestamp":1607098122,"output":"ng 10.93MB/10.93MB\r\u001b[3B\u001b[3A\u001b[2K\rb060ed55c3fd: Pull complete \r\u001b[3B\u001b[2A\u001b[2K\r874cbe0acbba: Extracting "},{"event":"cmd_output","timestamp":1607098122,"output":" 107B/107B\r\u001b[2B\u001b[2A\u001b[2K\r874cbe0acbba: Extracting 107B/107B\r\u001b[2B\u001b[2A\u001b[2K\r874cbe0acbba: Pull co"},{"event":"cmd_output","timestamp":1607098122,"output":"mplete \r\u001b[2B\u001b[1A\u001b[2K\rdfbd1f813a51: Extracting 4.639kB/4.639kB\r\u001b[1B\u001b[1A\u001b[2K\rdfbd1f813a51: Extracting"},{"event":"cmd_output","timestamp":1607098122,"output":" 4.639kB/4.639kB\r\u001b[1B\u001b[1A\u001b[2K\rdfbd1f813a51: Pull complete \r\u001b[1BDigest: sha256:487b93521d72b4861aa54"},{"event":"cmd_output","timestamp":1607098123,"output":"cb58b970bd68e5a7c75e194cb56fdf29fc52a5198cd\nStatus: Downloaded newer image for rabbitmq:3.7\nWARNIN"},{"event":"cmd_output","timestamp":1607098123,"output":"G: Your kernel does not support swap limit capabilities or the cgroup is not mounted. Memory limited"},{"event":"cmd_output","timestamp":1607098123,"output":" without swap.\nd480987f4283f982db9a2d84837822acf0c9ae4f86a1f182facbcf53f9460c99\n"},{"event":"cmd_finished","timestamp":1607098123,"directive":"make rabbitmq.run","exit_code":0,"started_at":1607098116,"finished_at":1607098123},{"event":"cmd_started","timestamp":1607098123,"directive":"make _postgres.start"},{"event":"cmd_output","timestamp":1607098123,"output":"docker run -d --rm --name db --network=host postgres:9.6.16\nUnable to find image 'postgres:9.6.16' "},{"event":"cmd_output","timestamp":1607098125,"output":"locally\n9.6.16: Pulling from library/postgres\n\n\u001b[1A\u001b[2K\r619014d83c02: Pulling fs layer \r\u001b[1B\n\u001b[1"},{"event":"cmd_output","timestamp":1607098125,"output":"A\u001b[2K\r7ec0fe6664f6: Pulling fs layer \r\u001b[1B\n\u001b[1A\u001b[2K\r9ca7ba8f7764: Pulling fs layer \r\u001b[1B\n\u001b[1A\u001b[2K\r"},{"event":"cmd_output","timestamp":1607098125,"output":"9e1155d037e2: Pulling fs layer \r\u001b[1B\n\u001b[1A\u001b[2K\rfebcfb7f8870: Pulling fs layer \r\u001b[1B\n\u001b[1A\u001b[2K\r8c78c7"},{"event":"cmd_output","timestamp":1607098125,"output":"9412b5: Pulling fs layer \r\u001b[1B\n\u001b[1A\u001b[2K\r5a35744405c5: Pulling fs layer \r\u001b[1B\n\u001b[1A\u001b[2K\r27717922e067"},{"event":"cmd_output","timestamp":1607098125,"output":": Pulling fs layer \r\u001b[1B\n\u001b[1A\u001b[2K\r577de7c4ffdc: Pulling fs layer \r\u001b[1B\n\u001b[1A\u001b[2K\r1d3482e27d98: Pull"},{"event":"cmd_output","timestamp":1607098125,"output":"ing fs layer \r\u001b[1B\n\u001b[1A\u001b[2K\ra9ff898274ac: Pulling fs layer \r\u001b[1B\n\u001b[1A\u001b[2K\r0f6131782ee2: Pulling fs"},{"event":"cmd_output","timestamp":1607098125,"output":" layer \r\u001b[1B\n\u001b[1A\u001b[2K\r496ebd477eea: Pulling fs layer \r\u001b[1B\n\u001b[1A\u001b[2K\rd7f0da1de185: Pulling fs layer"},{"event":"cmd_output","timestamp":1607098125,"output":" \r\u001b[1B\u001b[11A\u001b[2K\r9e1155d037e2: Waiting \r\u001b[11B\u001b[10A\u001b[2K\rfebcfb7f8870: Waiting \r\u001b[10B\u001b[9A\u001b[2K\r8c78c7941"},{"event":"cmd_output","timestamp":1607098125,"output":"2b5: Waiting \r\u001b[9B\u001b[8A\u001b[2K\r5a35744405c5: Waiting \r\u001b[8B\u001b[7A\u001b[2K\r27717922e067: Waiting \r\u001b[7B\u001b[6A\u001b[2K\r5"},{"event":"cmd_output","timestamp":1607098125,"output":"77de7c4ffdc: Waiting \r\u001b[6B\u001b[5A\u001b[2K\r1d3482e27d98: Waiting \r\u001b[5B\u001b[4A\u001b[2K\ra9ff898274ac: Waiting \r\u001b[4B\u001b["},{"event":"cmd_output","timestamp":1607098125,"output":"3A\u001b[2K\r0f6131782ee2: Waiting \r\u001b[3B\u001b[2A\u001b[2K\r496ebd477eea: Waiting \r\u001b[2B\u001b[1A\u001b[2K\rd7f0da1de185: Waiting"},{"event":"cmd_output","timestamp":1607098125,"output":" \r\u001b[1B\u001b[13A\u001b[2K\r7ec0fe6664f6: Downloading 45.4kB/4.501MB\r\u001b[13B\u001b[14A\u001b[2K\r619014d83c02: Downloading "},{"event":"cmd_output","timestamp":1607098125,"output":" 228.3kB/22.52MB\r\u001b[14B\u001b[12A\u001b[2K\r9ca7ba8f7764: Downloading 423B/1.779kB\r\u001b[12B\u001b[12A\u001b[2K\r9ca7ba8f77"},{"event":"cmd_output","timestamp":1607098125,"output":"64: Downloading 1.779kB/1.779kB\r\u001b[12B\u001b[12A\u001b[2K\r9ca7ba8f7764: Verifying Checksum \r\u001b[12B\u001b[12A\u001b[2K\r9ca"},{"event":"cmd_output","timestamp":1607098125,"output":"7ba8f7764: Download complete \r\u001b[12B\u001b[13A\u001b[2K\r7ec0fe6664f6: Verifying Checksum \r\u001b[13B\u001b[13A\u001b[2K\r7ec0fe"},{"event":"cmd_output","timestamp":1607098126,"output":"6664f6: Download complete \r\u001b[13B\u001b[14A\u001b[2K\r619014d83c02: Downloading 5.508MB/22.52MB\r\u001b[14B\u001b[14A\u001b[2K\r"},{"event":"cmd_output","timestamp":1607098126,"output":"619014d83c02: Downloading 11.06MB/22.52MB\r\u001b[14B\u001b[14A\u001b[2K\r619014d83c02: Downloading 17.3MB/22.52MB"},{"event":"cmd_output","timestamp":1607098126,"output":"\r\u001b[14B\u001b[14A\u001b[2K\r619014d83c02: Downloading 22.39MB/22.52MB\r\u001b[14B\u001b[14A\u001b[2K\r619014d83c02: Verifying Ch"},{"event":"cmd_output","timestamp":1607098126,"output":"ecksum \r\u001b[14B\u001b[14A\u001b[2K\r619014d83c02: Download complete \r\u001b[14B\u001b[14A\u001b[2K\r619014d83c02: Extracting 229"},{"event":"cmd_output","timestamp":1607098126,"output":".4kB/22.52MB\r\u001b[14B\u001b[11A\u001b[2K\r9e1155d037e2: Downloading 14.07kB/1.351MB\r\u001b[11B\u001b[14A\u001b[2K\r619014d83c02: "},{"event":"cmd_output","timestamp":1607098126,"output":"Extracting 1.147MB/22.52MB\r\u001b[14B\u001b[10A\u001b[2K\rfebcfb7f8870: Downloading 63.44kB/6.183MB\r\u001b[10B\u001b[11A\u001b[2K"},{"event":"cmd_output","timestamp":1607098126,"output":"\r9e1155d037e2: Downloading 1.351MB/1.351MB\r\u001b[11B\u001b[11A\u001b[2K\r9e1155d037e2: Verifying Checksum \r\u001b[11B\u001b["},{"event":"cmd_output","timestamp":1607098126,"output":"11A\u001b[2K\r9e1155d037e2: Download complete \r\u001b[11B\u001b[14A\u001b[2K\r619014d83c02: Extracting 2.294MB/22.52MB\r\u001b["},{"event":"cmd_output","timestamp":1607098126,"output":"14B\u001b[10A\u001b[2K\rfebcfb7f8870: Downloading 2.313MB/6.183MB\r\u001b[10B\u001b[14A\u001b[2K\r619014d83c02: Extracting 2.7"},{"event":"cmd_output","timestamp":1607098126,"output":"53MB/22.52MB\r\u001b[14B\u001b[10A\u001b[2K\rfebcfb7f8870: Verifying Checksum \r\u001b[10B\u001b[10A\u001b[2K\rfebcfb7f8870: Download "},{"event":"cmd_output","timestamp":1607098126,"output":"complete \r\u001b[10B\u001b[14A\u001b[2K\r619014d83c02: Extracting 5.505MB/22.52MB\r\u001b[14B\u001b[9A\u001b[2K\r8c78c79412b5: Downl"},{"event":"cmd_output","timestamp":1607098126,"output":"oading 3.117kB/295.6kB\r\u001b[9B\u001b[9A\u001b[2K\r8c78c79412b5: Verifying Checksum \r\u001b[9B\u001b[9A\u001b[2K\r8c78c79412b5: Do"},{"event":"cmd_output","timestamp":1607098126,"output":"wnload complete \r\u001b[9B\u001b[14A\u001b[2K\r619014d83c02: Extracting 7.111MB/22.52MB\r\u001b[14B\u001b[14A\u001b[2K\r619014d83c02"},{"event":"cmd_output","timestamp":1607098127,"output":": Extracting 8.258MB/22.52MB\r\u001b[14B\u001b[14A\u001b[2K\r619014d83c02: Extracting 10.32MB/22.52MB\r\u001b[14B\u001b[7A\u001b[2K"},{"event":"cmd_output","timestamp":1607098127,"output":"\r27717922e067: Downloading 424B/4.79kB\r\u001b[7B\u001b[7A\u001b[2K\r27717922e067: Downloading 4.79kB/4.79kB\r\u001b["},{"event":"cmd_output","timestamp":1607098127,"output":"7B\u001b[7A\u001b[2K\r27717922e067: Verifying Checksum \r\u001b[7B\u001b[7A\u001b[2K\r27717922e067: Download complete \r\u001b[7B\u001b[8A\u001b"},{"event":"cmd_output","timestamp":1607098127,"output":"[2K\r5a35744405c5: Downloading 115B/115B\r\u001b[8B\u001b[8A\u001b[2K\r5a35744405c5: Verifying Checksum \r\u001b[8B\u001b[8A\u001b"},{"event":"cmd_output","timestamp":1607098127,"output":"[2K\r5a35744405c5: Download complete \r\u001b[8B\u001b[14A\u001b[2K\r619014d83c02: Extracting 12.62MB/22.52MB\r\u001b[14B\u001b["},{"event":"cmd_output","timestamp":1607098127,"output":"14A\u001b[2K\r619014d83c02: Extracting 13.99MB/22.52MB\r\u001b[14B\u001b[6A\u001b[2K\r577de7c4ffdc: Downloading 526.8kB/5"},{"event":"cmd_output","timestamp":1607098127,"output":"3.12MB\r\u001b[6B\u001b[14A\u001b[2K\r619014d83c02: Extracting 14.68MB/22.52MB\r\u001b[14B\u001b[6A\u001b[2K\r577de7c4ffdc: Downloadi"},{"event":"cmd_output","timestamp":1607098127,"output":"ng 7.478MB/53.12MB\r\u001b[6B\u001b[6A\u001b[2K\r577de7c4ffdc: Downloading 16.6MB/53.12MB\r\u001b[6B\u001b[14A\u001b[2K\r619014d83c"},{"event":"cmd_output","timestamp":1607098127,"output":"02: Extracting 16.06MB/22.52MB\r\u001b[14B\u001b[5A\u001b[2K\r1d3482e27d98: Downloading 425B/7.823kB\r\u001b[5B\u001b[5A\u001b[2"},{"event":"cmd_output","timestamp":1607098127,"output":"K\r1d3482e27d98: Downloading 7.823kB/7.823kB\r\u001b[5B\u001b[5A\u001b[2K\r1d3482e27d98: Verifying Checksum \r\u001b[5B\u001b[5A"},{"event":"cmd_output","timestamp":1607098127,"output":"\u001b[2K\r1d3482e27d98: Download complete \r\u001b[5B\u001b[6A\u001b[2K\r577de7c4ffdc: Downloading 20.88MB/53.12MB\r\u001b[6B\u001b["},{"event":"cmd_output","timestamp":1607098127,"output":"14A\u001b[2K\r619014d83c02: Extracting 17.2MB/22.52MB\r\u001b[14B\u001b[4A\u001b[2K\ra9ff898274ac: Downloading 130B/1"},{"event":"cmd_output","timestamp":1607098127,"output":"30B\r\u001b[4B\u001b[4A\u001b[2K\ra9ff898274ac: Verifying Checksum \r\u001b[4B\u001b[4A\u001b[2K\ra9ff898274ac: Download complete \r\u001b[4"},{"event":"cmd_output","timestamp":1607098127,"output":"B\u001b[14A\u001b[2K\r619014d83c02: Extracting 18.58MB/22.52MB\r\u001b[14B\u001b[6A\u001b[2K\r577de7c4ffdc: Downloading 24.09M"},{"event":"cmd_output","timestamp":1607098127,"output":"B/53.12MB\r\u001b[6B\u001b[14A\u001b[2K\r619014d83c02: Extracting 19.73MB/22.52MB\r\u001b[14B\u001b[6A\u001b[2K\r577de7c4ffdc: Downlo"},{"event":"cmd_output","timestamp":1607098128,"output":"ading 28.92MB/53.12MB\r\u001b[6B\u001b[6A\u001b[2K\r577de7c4ffdc: Downloading 34.82MB/53.12MB\r\u001b[6B\u001b[3A\u001b[2K\r0f613178"},{"event":"cmd_output","timestamp":1607098128,"output":"2ee2: Downloading 171B/171B\r\u001b[3B\u001b[3A\u001b[2K\r0f6131782ee2: Verifying Checksum \r\u001b[3B\u001b[3A\u001b[2K\r0f613178"},{"event":"cmd_output","timestamp":1607098128,"output":"2ee2: Download complete \r\u001b[3B\u001b[14A\u001b[2K\r619014d83c02: Extracting 20.41MB/22.52MB\r\u001b[14B\u001b[6A\u001b[2K\r577de"},{"event":"cmd_output","timestamp":1607098128,"output":"7c4ffdc: Downloading 42.88MB/53.12MB\r\u001b[6B\u001b[14A\u001b[2K\r619014d83c02: Extracting 21.1MB/22.52MB\r\u001b[14B\u001b"},{"event":"cmd_output","timestamp":1607098128,"output":"[2A\u001b[2K\r496ebd477eea: Downloading 425B/3.844kB\r\u001b[2B\u001b[2A\u001b[2K\r496ebd477eea: Downloading 3.844kB/3"},{"event":"cmd_output","timestamp":1607098128,"output":".844kB\r\u001b[2B\u001b[2A\u001b[2K\r496ebd477eea: Verifying Checksum \r\u001b[2B\u001b[2A\u001b[2K\r496ebd477eea: Download complete \r"},{"event":"cmd_output","timestamp":1607098128,"output":"\u001b[2B\u001b[6A\u001b[2K\r577de7c4ffdc: Downloading 48.76MB/53.12MB\r\u001b[6B\u001b[6A\u001b[2K\r577de7c4ffdc: Downloading 52.5"},{"event":"cmd_output","timestamp":1607098128,"output":"2MB/53.12MB\r\u001b[6B\u001b[6A\u001b[2K\r577de7c4ffdc: Verifying Checksum \r\u001b[6B\u001b[6A\u001b[2K\r577de7c4ffdc: Download compl"},{"event":"cmd_output","timestamp":1607098128,"output":"ete \r\u001b[6B\u001b[14A\u001b[2K\r619014d83c02: Extracting 21.56MB/22.52MB\r\u001b[14B\u001b[1A\u001b[2K\rd7f0da1de185: Downloading"},{"event":"cmd_output","timestamp":1607098128,"output":" 121B/121B\r\u001b[1B\u001b[1A\u001b[2K\rd7f0da1de185: Verifying Checksum \r\u001b[1B\u001b[1A\u001b[2K\rd7f0da1de185: Download co"},{"event":"cmd_output","timestamp":1607098128,"output":"mplete \r\u001b[1B\u001b[14A\u001b[2K\r619014d83c02: Extracting 21.79MB/22.52MB\r\u001b[14B\u001b[14A\u001b[2K\r619014d83c02: Extract"},{"event":"cmd_output","timestamp":1607098128,"output":"ing 22.48MB/22.52MB\r\u001b[14B\u001b[14A\u001b[2K\r619014d83c02: Extracting 22.52MB/22.52MB\r\u001b[14B\u001b[14A\u001b[2K\r619014d"},{"event":"cmd_output","timestamp":1607098128,"output":"83c02: Pull complete \r\u001b[14B\u001b[13A\u001b[2K\r7ec0fe6664f6: Extracting 65.54kB/4.501MB\r\u001b[13B\u001b[13A\u001b[2K\r7ec0fe"},{"event":"cmd_output","timestamp":1607098129,"output":"6664f6: Extracting 393.2kB/4.501MB\r\u001b[13B\u001b[13A\u001b[2K\r7ec0fe6664f6: Extracting 3.342MB/4.501MB\r\u001b[13B\u001b["},{"event":"cmd_output","timestamp":1607098129,"output":"13A\u001b[2K\r7ec0fe6664f6: Extracting 4.501MB/4.501MB\r\u001b[13B\u001b[13A\u001b[2K\r7ec0fe6664f6: Pull complete \r\u001b[13B\u001b"},{"event":"cmd_output","timestamp":1607098129,"output":"[12A\u001b[2K\r9ca7ba8f7764: Extracting 1.779kB/1.779kB\r\u001b[12B\u001b[12A\u001b[2K\r9ca7ba8f7764: Extracting 1.779kB/"},{"event":"cmd_output","timestamp":1607098129,"output":"1.779kB\r\u001b[12B\u001b[12A\u001b[2K\r9ca7ba8f7764: Pull complete \r\u001b[12B\u001b[11A\u001b[2K\r9e1155d037e2: Extracting 32.77kB"},{"event":"cmd_output","timestamp":1607098129,"output":"/1.351MB\r\u001b[11B\u001b[11A\u001b[2K\r9e1155d037e2: Extracting 589.8kB/1.351MB\r\u001b[11B\u001b[11A\u001b[2K\r9e1155d037e2: Extra"},{"event":"cmd_output","timestamp":1607098129,"output":"cting 1.351MB/1.351MB\r\u001b[11B\u001b[11A\u001b[2K\r9e1155d037e2: Pull complete \r\u001b[11B\u001b[10A\u001b[2K\rfebcfb7f8870: Extr"},{"event":"cmd_output","timestamp":1607098129,"output":"acting 65.54kB/6.183MB\r\u001b[10B\u001b[10A\u001b[2K\rfebcfb7f8870: Extracting 458.8kB/6.183MB\r\u001b[10B\u001b[10A\u001b[2K\rfebc"},{"event":"cmd_output","timestamp":1607098129,"output":"fb7f8870: Extracting 2.753MB/6.183MB\r\u001b[10B\u001b[10A\u001b[2K\rfebcfb7f8870: Extracting 3.867MB/6.183MB\r\u001b[10B"},{"event":"cmd_output","timestamp":1607098130,"output":"\u001b[10A\u001b[2K\rfebcfb7f8870: Extracting 4.325MB/6.183MB\r\u001b[10B\u001b[10A\u001b[2K\rfebcfb7f8870: Extracting 5.636MB"},{"event":"cmd_output","timestamp":1607098130,"output":"/6.183MB\r\u001b[10B\u001b[10A\u001b[2K\rfebcfb7f8870: Extracting 6.183MB/6.183MB\r\u001b[10B\u001b[10A\u001b[2K\rfebcfb7f8870: Pull "},{"event":"cmd_output","timestamp":1607098130,"output":"complete \r\u001b[10B\u001b[9A\u001b[2K\r8c78c79412b5: Extracting 32.77kB/295.6kB\r\u001b[9B\u001b[9A\u001b[2K\r8c78c79412b5: Extract"},{"event":"cmd_output","timestamp":1607098130,"output":"ing 295.6kB/295.6kB\r\u001b[9B\u001b[9A\u001b[2K\r8c78c79412b5: Pull complete \r\u001b[9B\u001b[8A\u001b[2K\r5a35744405c5: Extracting"},{"event":"cmd_output","timestamp":1607098130,"output":" 115B/115B\r\u001b[8B\u001b[8A\u001b[2K\r5a35744405c5: Extracting 115B/115B\r\u001b[8B\u001b[8A\u001b[2K\r5a35744405c5: Pull c"},{"event":"cmd_output","timestamp":1607098130,"output":"omplete \r\u001b[8B\u001b[7A\u001b[2K\r27717922e067: Extracting 4.79kB/4.79kB\r\u001b[7B\u001b[7A\u001b[2K\r27717922e067: Extracting"},{"event":"cmd_output","timestamp":1607098130,"output":" 4.79kB/4.79kB\r\u001b[7B\u001b[7A\u001b[2K\r27717922e067: Pull complete \r\u001b[7B\u001b[6A\u001b[2K\r577de7c4ffdc: Extracting 55"},{"event":"cmd_output","timestamp":1607098131,"output":"7.1kB/53.12MB\r\u001b[6B\u001b[6A\u001b[2K\r577de7c4ffdc: Extracting 1.671MB/53.12MB\r\u001b[6B\u001b[6A\u001b[2K\r577de7c4ffdc: Extr"},{"event":"cmd_output","timestamp":1607098131,"output":"acting 3.342MB/53.12MB\r\u001b[6B\u001b[6A\u001b[2K\r577de7c4ffdc: Extracting 6.128MB/53.12MB\r\u001b[6B\u001b[6A\u001b[2K\r577de7c4"},{"event":"cmd_output","timestamp":1607098131,"output":"ffdc: Extracting 8.913MB/53.12MB\r\u001b[6B\u001b[6A\u001b[2K\r577de7c4ffdc: Extracting 10.03MB/53.12MB\r\u001b[6B\u001b[6A\u001b[2"},{"event":"cmd_output","timestamp":1607098131,"output":"K\r577de7c4ffdc: Extracting 11.7MB/53.12MB\r\u001b[6B\u001b[6A\u001b[2K\r577de7c4ffdc: Extracting 12.81MB/53.12MB\r\u001b"},{"event":"cmd_output","timestamp":1607098131,"output":"[6B\u001b[6A\u001b[2K\r577de7c4ffdc: Extracting 14.48MB/53.12MB\r\u001b[6B\u001b[6A\u001b[2K\r577de7c4ffdc: Extracting 17.27MB"},{"event":"cmd_output","timestamp":1607098132,"output":"/53.12MB\r\u001b[6B\u001b[6A\u001b[2K\r577de7c4ffdc: Extracting 20.61MB/53.12MB\r\u001b[6B\u001b[6A\u001b[2K\r577de7c4ffdc: Extractin"},{"event":"cmd_output","timestamp":1607098132,"output":"g 22.84MB/53.12MB\r\u001b[6B\u001b[6A\u001b[2K\r577de7c4ffdc: Extracting 24.51MB/53.12MB\r\u001b[6B\u001b[6A\u001b[2K\r577de7c4ffdc:"},{"event":"cmd_output","timestamp":1607098132,"output":" Extracting 26.18MB/53.12MB\r\u001b[6B\u001b[6A\u001b[2K\r577de7c4ffdc: Extracting 28.41MB/53.12MB\r\u001b[6B\u001b[6A\u001b[2K\r577"},{"event":"cmd_output","timestamp":1607098132,"output":"de7c4ffdc: Extracting 30.64MB/53.12MB\r\u001b[6B\u001b[6A\u001b[2K\r577de7c4ffdc: Extracting 32.87MB/53.12MB\r\u001b[6B\u001b["},{"event":"cmd_output","timestamp":1607098132,"output":"6A\u001b[2K\r577de7c4ffdc: Extracting 35.09MB/53.12MB\r\u001b[6B\u001b[6A\u001b[2K\r577de7c4ffdc: Extracting 36.77MB/53.1"},{"event":"cmd_output","timestamp":1607098133,"output":"2MB\r\u001b[6B\u001b[6A\u001b[2K\r577de7c4ffdc: Extracting 38.44MB/53.12MB\r\u001b[6B\u001b[6A\u001b[2K\r577de7c4ffdc: Extracting 40"},{"event":"cmd_output","timestamp":1607098133,"output":".11MB/53.12MB\r\u001b[6B\u001b[6A\u001b[2K\r577de7c4ffdc: Extracting 40.67MB/53.12MB\r\u001b[6B\u001b[6A\u001b[2K\r577de7c4ffdc: Extr"},{"event":"cmd_output","timestamp":1607098133,"output":"acting 41.78MB/53.12MB\r\u001b[6B\u001b[6A\u001b[2K\r577de7c4ffdc: Extracting 42.89MB/53.12MB\r\u001b[6B\u001b[6A\u001b[2K\r577de7c4"},{"event":"cmd_output","timestamp":1607098134,"output":"ffdc: Extracting 44.01MB/53.12MB\r\u001b[6B\u001b[6A\u001b[2K\r577de7c4ffdc: Extracting 45.12MB/53.12MB\r\u001b[6B\u001b[6A\u001b[2"},{"event":"cmd_output","timestamp":1607098134,"output":"K\r577de7c4ffdc: Extracting 46.24MB/53.12MB\r\u001b[6B\u001b[6A\u001b[2K\r577de7c4ffdc: Extracting 46.79MB/53.12MB\r\u001b"},{"event":"cmd_output","timestamp":1607098134,"output":"[6B\u001b[6A\u001b[2K\r577de7c4ffdc: Extracting 47.91MB/53.12MB\r\u001b[6B\u001b[6A\u001b[2K\r577de7c4ffdc: Extracting 49.02MB"},{"event":"cmd_output","timestamp":1607098134,"output":"/53.12MB\r\u001b[6B\u001b[6A\u001b[2K\r577de7c4ffdc: Extracting 50.14MB/53.12MB\r\u001b[6B\u001b[6A\u001b[2K\r577de7c4ffdc: Extractin"},{"event":"cmd_output","timestamp":1607098135,"output":"g 50.69MB/53.12MB\r\u001b[6B\u001b[6A\u001b[2K\r577de7c4ffdc: Extracting 51.25MB/53.12MB\r\u001b[6B\u001b[6A\u001b[2K\r577de7c4ffdc:"},{"event":"cmd_output","timestamp":1607098135,"output":" Extracting 51.81MB/53.12MB\r\u001b[6B\u001b[6A\u001b[2K\r577de7c4ffdc: Extracting 52.92MB/53.12MB\r\u001b[6B\u001b[6A\u001b[2K\r577"},{"event":"cmd_output","timestamp":1607098135,"output":"de7c4ffdc: Extracting 53.12MB/53.12MB\r\u001b[6B\u001b[6A\u001b[2K\r577de7c4ffdc: Pull complete \r\u001b[6B\u001b[5A\u001b[2K\r1d3482"},{"event":"cmd_output","timestamp":1607098135,"output":"e27d98: Extracting 7.823kB/7.823kB\r\u001b[5B\u001b[5A\u001b[2K\r1d3482e27d98: Extracting 7.823kB/7.823kB\r\u001b[5B\u001b[5A\u001b"},{"event":"cmd_output","timestamp":1607098135,"output":"[2K\r1d3482e27d98: Pull complete \r\u001b[5B\u001b[4A\u001b[2K\ra9ff898274ac: Extracting 130B/130B\r\u001b[4B\u001b[4A\u001b[2K\ra9"},{"event":"cmd_output","timestamp":1607098135,"output":"ff898274ac: Extracting 130B/130B\r\u001b[4B\u001b[4A\u001b[2K\ra9ff898274ac: Pull complete \r\u001b[4B\u001b[3A\u001b[2K\r0f613178"},{"event":"cmd_output","timestamp":1607098135,"output":"2ee2: Extracting 171B/171B\r\u001b[3B\u001b[3A\u001b[2K\r0f6131782ee2: Extracting 171B/171B\r\u001b[3B\u001b[3A\u001b[2K\r0f61"},{"event":"cmd_output","timestamp":1607098135,"output":"31782ee2: Pull complete \r\u001b[3B\u001b[2A\u001b[2K\r496ebd477eea: Extracting 3.844kB/3.844kB\r\u001b[2B\u001b[2A\u001b[2K\r496ebd4"},{"event":"cmd_output","timestamp":1607098135,"output":"77eea: Extracting 3.844kB/3.844kB\r\u001b[2B\u001b[2A\u001b[2K\r496ebd477eea: Pull complete \r\u001b[2B\u001b[1A\u001b[2K\rd7f0da1de1"},{"event":"cmd_output","timestamp":1607098136,"output":"85: Extracting 121B/121B\r\u001b[1B\u001b[1A\u001b[2K\rd7f0da1de185: Extracting 121B/121B\r\u001b[1B\u001b[1A\u001b[2K\rd7f0da"},{"event":"cmd_output","timestamp":1607098136,"output":"1de185: Pull complete \r\u001b[1BDigest: sha256:d6a6badb2b5b22de5e135490a217522cecc2ae90fe35b3329061582756"},{"event":"cmd_output","timestamp":1607098136,"output":"9310a1\nStatus: Downloaded newer image for postgres:9.6.16\neccd06fcebfe226eb2338600bd0197187ef26569"},{"event":"cmd_output","timestamp":1607098142,"output":"af506ec5c3d80d792dc5cc87\n\nWaiting for DB to become operational\nsleep 5\n"},{"event":"cmd_finished","timestamp":1607098142,"directive":"make _postgres.start","exit_code":0,"started_at":1607098123,"finished_at":1607098142},{"event":"cmd_started","timestamp":1607098142,"directive":"make repo_proxy_ref.run USER=root"},{"event":"cmd_output","timestamp":1607098142,"output":"cd ../repo_proxy_ref && make USER=root background\nmake[1]: Entering directory '/home/semaphore/alle"},{"event":"cmd_output","timestamp":1607098142,"output":"s/plumber/repo_proxy_ref'\ndocker run --name repo_proxy_ref --network=host -e APP_ENV= -e MIX_ENV=de"},{"event":"cmd_output","timestamp":1607098142,"output":"v \\\n -e GRPC_PORT=51000 -v $PWD/home_dir:/home/dev -v $PWD/..:/home/dev/repo --rm --workdir=/ho"},{"event":"cmd_output","timestamp":1607098142,"output":"me/dev/repo/repo_proxy_ref --user=root -d renderedtext/elixir-dev:1.6.5-v2 \\\n\t mix do local.hex -"},{"event":"cmd_output","timestamp":1607098142,"output":"-force, local.rebar --force, deps.get, run --no-halt\n2e918cd065e914a6338aca2315e4ccdc66f8318fe79b71"},{"event":"cmd_output","timestamp":1607098142,"output":"fd87e35d49ec5117d4\nmake[1]: Leaving directory '/home/semaphore/alles/plumber/repo_proxy_ref'\n"},{"event":"cmd_finished","timestamp":1607098142,"directive":"make repo_proxy_ref.run USER=root","exit_code":0,"started_at":1607098142,"finished_at":1607098142},{"event":"cmd_started","timestamp":1607098142,"directive":"make console USER=root MIX_ENV=test CMD=\"mix do local.hex --force, local.rebar --force, deps.get, ecto.create, ecto.migrate\""},{"event":"cmd_output","timestamp":1607098142,"output":"docker run --network=host -e MIX_ENV=test -e DB_URL=\"ecto://postgres:PASSWORD@localhost/ppl_repo\" -e"},{"event":"cmd_output","timestamp":1607098142,"output":" DB_PASSWORD=\"postgres\" -e DB_USE_SSL=\"false\" -e BLOCK_DB_URL=\"ecto://postgres:PASSWORD@localhost/bl"},{"event":"cmd_output","timestamp":1607098142,"output":"ock_repo\" -e BLOCK_DB_PASSWORD=\"postgres\" -e BLOCK_DB_USE_SSL=\"false\" -e USER_CREDS_ENC_KEY_1=\"zsef6"},{"event":"cmd_output","timestamp":1607098142,"output":"S7fv98op1qf60M7GfOc3d6I5KvE\" -e GOFER_GRPC_URL=localhost:50055 -e RABBITMQ_URL=\"amqp://localhost:567"},{"event":"cmd_output","timestamp":1607098142,"output":"3\" -e TASK_API_URL=localhost:50051 -e PPL_QUEUE_LIMIT=\"9\" -e IN_FLIGHT_DESCRIBE_LIMIT=\"50\" -e IN_FLI"},{"event":"cmd_output","timestamp":1607098142,"output":"GHT_LIST_LIMIT=\"50\" -e REPO_PROXY_GRPC_URL=localhost:51000 -e PAPARAZZO_URL=localhost:12345 -e REPOH"},{"event":"cmd_output","timestamp":1607098142,"output":"UB_GRPC_URL=localhost:51500 -e USER_GRPC_URL=localhost:51500 -e ARTIFACTHUB_GRPC_URL=localhost:51500"},{"event":"cmd_output","timestamp":1607098142,"output":" -v $PWD/home_dir:/home/dev -v $PWD/..:/home/dev/pipelines --rm --workdir=/home/dev/pipelines/ppl -"},{"event":"cmd_output","timestamp":1607098142,"output":"-user=root -it renderedtext/elixir-dev:1.6.5-v2 mix do local.hex --force, local.rebar --force, deps."},{"event":"cmd_output","timestamp":1607098144,"output":"get, ecto.create, ecto.migrate\n\u001b[32m* creating \u001b[0m/home/dev/.mix/archives/hex-0.20.6\u001b[0m\n\u001b[32m* c"},{"event":"cmd_output","timestamp":1607098146,"output":"reating \u001b[0m/home/dev/.mix/rebar\u001b[0m\n\u001b[32m* creating \u001b[0m/home/dev/.mix/rebar3\u001b[0m\nResolving Hex d"},{"event":"cmd_output","timestamp":1607098146,"output":"ependencies...\nDependency resolution completed:\nUnchanged:\n amqp 1.1.0\n amqp_client 3.7.9\n a"},{"event":"cmd_output","timestamp":1607098146,"output":"rtificery 0.2.6\n bunt 0.2.0\n certifi 2.0.0\n cloak 0.5.0\n connection 1.0.4\n cowboy 2.5.0\n "},{"event":"cmd_output","timestamp":1607098146,"output":" cowlib 2.6.0\n credo 0.9.3\n db_connection 1.1.3\n decimal 1.6.0\n deep_merge 0.1.1\n dialyxir"},{"event":"cmd_output","timestamp":1607098146,"output":" 0.5.1\n distillery 2.0.9\n ecto 2.2.11\n ex_json_schema 0.5.7\n fs 0.9.2\n goldrush 0.1.9\n g"},{"event":"cmd_output","timestamp":1607098146,"output":"rpc 0.3.1\n gun 1.3.0\n hackney 1.10.1\n httpoison 0.13.0\n idna 5.1.0\n jesse 1.4.0\n jsx 2.1"},{"event":"cmd_output","timestamp":1607098146,"output":"0.0\n lager 3.8.0\n meck 0.8.8\n metrics 1.0.1\n mimerl 1.0.2\n mix_test_watch 0.4.1\n mock 0."},{"event":"cmd_output","timestamp":1607098146,"output":"2.1\n observer_cli 1.3.4\n\u001b[33m paginator 0.5.0 RETIRED!\u001b[0m\n\u001b[33m (security) Remote Code Exec"},{"event":"cmd_output","timestamp":1607098146,"output":"ution Vulnerability\u001b[0m\n poison 3.1.0\n poolboy 1.5.1\n postgrex 0.13.5\n protobuf 0.5.2\n rab"},{"event":"cmd_output","timestamp":1607098146,"output":"bit_common 3.7.9\n ranch 1.6.2\n ranch_proxy_protocol 2.1.1\n recon 2.3.6\n scrivener 2.5.0\n s"},{"event":"cmd_output","timestamp":1607098146,"output":"crivener_ecto 1.3.0\n ssl_verify_fun 1.1.1\n unicode_util_compat 0.3.1\n uuid 1.1.7\n vmstats 2."},{"event":"cmd_output","timestamp":1607098147,"output":"2.0\n wormhole 2.2.0\n yamerl 0.5.0\n yaml_elixir 1.3.1\n==> spec\nCompiling 2 files (.ex)\n\u001b[33m"},{"event":"cmd_output","timestamp":1607098147,"output":"warning: \u001b[0mvariable \"pipeline_file\" is unused\n lib/spec/validator.ex:9\n\nGenerated spec app\n=="},{"event":"cmd_output","timestamp":1607098147,"output":"> definition_validator\nCompiling 7 files (.ex)\nGenerated definition_validator app\n==> job_matrix\r"},{"event":"cmd_output","timestamp":1607098149,"output":"\nCompiling 5 files (.ex)\nGenerated job_matrix app\n==> looper\nCompiling 21 files (.ex)\nGenerated "},{"event":"cmd_output","timestamp":1607098168,"output":"looper app\n==> dependencies\nGenerated dependencies app\n==> proto\nCompiling 20 files (.ex)\nGener"},{"event":"cmd_output","timestamp":1607098169,"output":"ated proto app\n==> block\nCompiling 43 files (.ex)\n\u001b[33mwarning: \u001b[0mthe first 4 default arguments"},{"event":"cmd_output","timestamp":1607098169,"output":" in fetch_attribute/5 are never used\n lib/block/code_repo/git_hub.ex:32\n\n\u001b[33mwarning: \u001b[0mvaria"},{"event":"cmd_output","timestamp":1607098170,"output":"ble \"ppl_args\" is unused\n lib/block/task_api_client/schedule_request_formatter.ex:120\n\n\u001b[33mwarn"},{"event":"cmd_output","timestamp":1607098172,"output":"ing: \u001b[0munused alias ToTuple\n lib/block/change_in_resolver.ex:8\n\nGenerated block app\n==> gofer"},{"event":"cmd_output","timestamp":1607098181,"output":"_client\nCompiling 5 files (.ex)\nGenerated gofer_client app\n==> ppl\nCompiling 108 files (.ex)\nGe"},{"event":"cmd_output","timestamp":1607098185,"output":"nerated ppl app\nThe database for Ppl.EctoRepo has been created\n\u001b[22m\n16:09:45.278 [info] == Runn"},{"event":"cmd_output","timestamp":1607098185,"output":"ing Ppl.EctoRepo.Migrations.AddPipelineRequestsTable.change/0 forward\n\u001b[0m\u001b[22m\n16:09:45.279 [info"},{"event":"cmd_output","timestamp":1607098185,"output":"] create table pipeline_requests\n\u001b[0m\u001b[22m\n16:09:45.285 [info] create index unique_request_token"},{"event":"cmd_output","timestamp":1607098185,"output":"_for_ppl_requests\n\u001b[0m\u001b[22m\n16:09:45.288 [info] == Migrated in 0.0s\n\u001b[0m\u001b[22m\n16:09:45.382 [inf"},{"event":"cmd_output","timestamp":1607098185,"output":"o] == Running Ppl.EctoRepo.Migrations.AddPipelineTable.change/0 forward\n\u001b[0m\u001b[22m\n16:09:45.382 [i"},{"event":"cmd_output","timestamp":1607098185,"output":"nfo] create table pipelines\n\u001b[0m\u001b[22m\n16:09:45.402 [info] create index pipelines_in_scheduling_s"},{"event":"cmd_output","timestamp":1607098185,"output":"tate_updated_at_index\n\u001b[0m\u001b[22m\n16:09:45.404 [info] create index one_ppl_per_ppl_request\n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098185,"output":"2m\n16:09:45.407 [info] == Migrated in 0.0s\n\u001b[0m\u001b[22m\n16:09:45.459 [info] == Running Ppl.EctoRep"},{"event":"cmd_output","timestamp":1607098185,"output":"o.Migrations.AddPipelineBlocksTable.change/0 forward\n\u001b[0m\u001b[22m\n16:09:45.459 [info] create table p"},{"event":"cmd_output","timestamp":1607098185,"output":"ipeline_blocks\n\u001b[0m\u001b[22m\n16:09:45.472 [info] create index ppl_id_and_block_index_unique_index\n\u001b["},{"event":"cmd_output","timestamp":1607098185,"output":"0m\u001b[22m\n16:09:45.474 [info] create index pipeline_blocks_in_scheduling_state_updated_at_index\n\u001b[0"},{"event":"cmd_output","timestamp":1607098185,"output":"m\u001b[22m\n16:09:45.476 [info] create index ppl_id_and_name_unique_index\n\u001b[0m\u001b[22m\n16:09:45.478 [inf"},{"event":"cmd_output","timestamp":1607098185,"output":"o] == Migrated in 0.0s\n\u001b[0m\u001b[22m\n16:09:45.528 [info] == Running Ppl.EctoRepo.Migrations.AddPipel"},{"event":"cmd_output","timestamp":1607098185,"output":"ineTracesTable.change/0 forward\n\u001b[0m\u001b[22m\n16:09:45.529 [info] create table pipeline_traces\n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098185,"output":"[22m\n16:09:45.539 [info] create index one_ppl_trace_per_ppl\n\u001b[0m\u001b[22m\n16:09:45.542 [info] == Mi"},{"event":"cmd_output","timestamp":1607098185,"output":"grated in 0.0s\n\u001b[0m\u001b[22m\n16:09:45.590 [info] == Running Ppl.EctoRepo.Migrations.PipelineBlockConn"},{"event":"cmd_output","timestamp":1607098185,"output":"ections.change/0 forward\n\u001b[0m\u001b[22m\n16:09:45.591 [info] create table pipeline_block_connections\n\u001b"},{"event":"cmd_output","timestamp":1607098185,"output":"[0m\u001b[22m\n16:09:45.596 [info] create index pipeline_block_connections_target_dependency_index\n\u001b[0m"},{"event":"cmd_output","timestamp":1607098185,"output":"\u001b[22m\n16:09:45.599 [info] == Migrated in 0.0s\n\u001b[0m\u001b[22m\n16:09:45.655 [info] == Running Ppl.Ecto"},{"event":"cmd_output","timestamp":1607098185,"output":"Repo.Migrations.AddPreviousPplIdsToPipelineRequestsTable.change/0 forward\n\u001b[0m\u001b[22m\n16:09:45.655 ["},{"event":"cmd_output","timestamp":1607098185,"output":"info] alter table pipeline_requests\n\u001b[0m\u001b[22m\n16:09:45.656 [info] == Migrated in 0.0s\n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098185,"output":"\n16:09:45.712 [info] == Running Ppl.EctoRepo.Migrations.AddTerminatedByToPipelinesTable.change/0 f"},{"event":"cmd_output","timestamp":1607098185,"output":"orward\n\u001b[0m\u001b[22m\n16:09:45.712 [info] alter table pipelines\n\u001b[0m\u001b[22m\n16:09:45.719 [info] == Mi"},{"event":"cmd_output","timestamp":1607098185,"output":"grated in 0.0s\n\u001b[0m\u001b[22m\n16:09:45.781 [info] == Running Ppl.EctoRepo.Migrations.AddPipelineOrigin"},{"event":"cmd_output","timestamp":1607098185,"output":"sTable.change/0 forward\n\u001b[0m\u001b[22m\n16:09:45.782 [info] create table pipeline_origins\n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098185,"output":"6:09:45.788 [info] create index one_origin_per_ppl\n\u001b[0m\u001b[22m\n16:09:45.791 [info] == Migrated in "},{"event":"cmd_output","timestamp":1607098185,"output":"0.0s\n\u001b[0m\u001b[22m\n16:09:45.825 [info] == Running Ppl.EctoRepo.Migrations.AddPplArtefactIdToPipelineR"},{"event":"cmd_output","timestamp":1607098185,"output":"equestsTable.up/0 forward\n\u001b[0m\u001b[22m\n16:09:45.825 [info] alter table pipeline_requests\n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098185,"output":"\n16:09:45.845 [info] == Migrated in 0.0s\n\u001b[0m\u001b[22m\n16:09:45.889 [info] == Running Ppl.EctoRepo.M"},{"event":"cmd_output","timestamp":1607098185,"output":"igrations.ChnagePreviousPplIdsToPrevPplArtefactIdsInPipelineRequestsTable.up/0 forward\n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098185,"output":"6:09:45.889 [info] alter table pipeline_requests\n\u001b[0m\u001b[22m\n16:09:45.891 [info] alter table pipel"},{"event":"cmd_output","timestamp":1607098185,"output":"ine_requests\n\u001b[0m\u001b[22m\n16:09:45.892 [info] == Migrated in 0.0s\n\u001b[0m\u001b[22m\n16:09:45.937 [info] ="},{"event":"cmd_output","timestamp":1607098185,"output":"= Running Ppl.EctoRepo.Migrations.AddPplSubInitTable.change/0 forward\n\u001b[0m\u001b[22m\n16:09:45.938 [info"},{"event":"cmd_output","timestamp":1607098185,"output":"] create table pipeline_sub_inits\n\u001b[0m\u001b[22m\n16:09:45.944 [info] create index pipeline_sub_inits_"},{"event":"cmd_output","timestamp":1607098185,"output":"in_scheduling_state_updated_at_index\n\u001b[0m\u001b[22m\n16:09:45.946 [info] create index one_ppl_sub_init_"},{"event":"cmd_output","timestamp":1607098186,"output":"per_ppl_request\n\u001b[0m\u001b[22m\n16:09:45.948 [info] == Migrated in 0.0s\n\u001b[0m\u001b[22m\n16:09:46.010 [info]"},{"event":"cmd_output","timestamp":1607098186,"output":" == Running Ppl.EctoRepo.Migrations.AddDuplicateFieldToPipelineBlocksTable.change/0 forward\n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098186,"output":"22m\n16:09:46.010 [info] alter table pipeline_blocks\n\u001b[0m\u001b[22m\n16:09:46.015 [info] == Migrated i"},{"event":"cmd_output","timestamp":1607098186,"output":"n 0.0s\n\u001b[0m\u001b[22m\n16:09:46.048 [info] == Running Ppl.EctoRepo.Migrations.AddPartialRebuildOfToPipe"},{"event":"cmd_output","timestamp":1607098186,"output":"linesTable.change/0 forward\n\u001b[0m\u001b[22m\n16:09:46.048 [info] alter table pipelines\n\u001b[0m\u001b[22m\n16:09"},{"event":"cmd_output","timestamp":1607098186,"output":":46.056 [info] == Migrated in 0.0s\n\u001b[0m\u001b[22m\n16:09:46.097 [info] == Running Ppl.EctoRepo.Migrati"},{"event":"cmd_output","timestamp":1607098186,"output":"ons.AddDeleteRequestsTable.change/0 forward\n\u001b[0m\u001b[22m\n16:09:46.098 [info] create table delete_req"},{"event":"cmd_output","timestamp":1607098186,"output":"uests\n\u001b[0m\u001b[22m\n16:09:46.104 [info] create index delete_requests_in_scheduling_state_updated_at_i"},{"event":"cmd_output","timestamp":1607098186,"output":"ndex\n\u001b[0m\u001b[22m\n16:09:46.117 [info] create index delete_requests_project_id_index\n\u001b[0m\u001b[22m\n16:0"},{"event":"cmd_output","timestamp":1607098186,"output":"9:46.119 [info] == Migrated in 0.0s\n\u001b[0m\u001b[22m\n16:09:46.172 [info] == Running Ppl.EctoRepo.Migrat"},{"event":"cmd_output","timestamp":1607098186,"output":"ions.AddDeletionRequestedToPipelinesTable.change/0 forward\n\u001b[0m\u001b[22m\n16:09:46.173 [info] alter ta"},{"event":"cmd_output","timestamp":1607098186,"output":"ble pipelines\n\u001b[0m\u001b[22m\n16:09:46.178 [info] create index pipelines_project_id_index\n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098186,"output":"6:09:46.180 [info] == Migrated in 0.0s\n\u001b[0m\u001b[22m\n16:09:46.222 [info] == Running Ppl.EctoRepo.Mig"},{"event":"cmd_output","timestamp":1607098186,"output":"rations.AddDeleteCascadeToFkeyConstraints.up/0 forward\n\u001b[0m\u001b[22m\n16:09:46.222 [info] drop constra"},{"event":"cmd_output","timestamp":1607098186,"output":"int pipelines_ppl_id_fkey from table pipelines\n\u001b[0m\u001b[22m\n16:09:46.223 [info] alter table pipeline"},{"event":"cmd_output","timestamp":1607098186,"output":"s\n\u001b[0m\u001b[22m\n16:09:46.225 [info] drop constraint pipeline_blocks_ppl_id_fkey from table pipeline_b"},{"event":"cmd_output","timestamp":1607098186,"output":"locks\n\u001b[0m\u001b[22m\n16:09:46.225 [info] alter table pipeline_blocks\n\u001b[0m\u001b[22m\n16:09:46.246 [info] "},{"event":"cmd_output","timestamp":1607098186,"output":"drop constraint pipeline_block_connections_dependency_fkey from table pipeline_block_connections\n\u001b["},{"event":"cmd_output","timestamp":1607098186,"output":"0m\u001b[22m\n16:09:46.248 [info] drop constraint pipeline_block_connections_target_fkey from table pipe"},{"event":"cmd_output","timestamp":1607098186,"output":"line_block_connections\n\u001b[0m\u001b[22m\n16:09:46.249 [info] alter table pipeline_block_connections\n\u001b[0m"},{"event":"cmd_output","timestamp":1607098186,"output":"\u001b[22m\n16:09:46.252 [info] drop constraint pipeline_origins_ppl_id_fkey from table pipeline_origins"},{"event":"cmd_output","timestamp":1607098186,"output":"\n\u001b[0m\u001b[22m\n16:09:46.253 [info] alter table pipeline_origins\n\u001b[0m\u001b[22m\n16:09:46.256 [info] drop"},{"event":"cmd_output","timestamp":1607098186,"output":" constraint pipeline_sub_inits_ppl_id_fkey from table pipeline_sub_inits\n\u001b[0m\u001b[22m\n16:09:46.257 [i"},{"event":"cmd_output","timestamp":1607098186,"output":"nfo] alter table pipeline_sub_inits\n\u001b[0m\u001b[22m\n16:09:46.260 [info] drop constraint pipeline_trace"},{"event":"cmd_output","timestamp":1607098186,"output":"s_ppl_id_fkey from table pipeline_traces\n\u001b[0m\u001b[22m\n16:09:46.261 [info] alter table pipeline_trace"},{"event":"cmd_output","timestamp":1607098186,"output":"s\n\u001b[0m\u001b[22m\n16:09:46.264 [info] == Migrated in 0.0s\n\u001b[0m\u001b[22m\n16:09:46.309 [info] == Running P"},{"event":"cmd_output","timestamp":1607098186,"output":"pl.EctoRepo.Migrations.AddTerminateFieldsToDeleteRequestsTable.change/0 forward\n\u001b[0m\u001b[22m\n16:09:46"},{"event":"cmd_output","timestamp":1607098186,"output":".309 [info] alter table delete_requests\n\u001b[0m\u001b[22m\n16:09:46.314 [info] == Migrated in 0.0s\n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098186,"output":"[22m\n16:09:46.348 [info] == Running Ppl.EctoRepo.Migrations.AddFastFailingToPipelinesTable.change/"},{"event":"cmd_output","timestamp":1607098186,"output":"0 forward\n\u001b[0m\u001b[22m\n16:09:46.348 [info] alter table pipelines\n\u001b[0m\u001b[22m\n16:09:46.349 [info] =="},{"event":"cmd_output","timestamp":1607098186,"output":" Migrated in 0.0s\n\u001b[0m\u001b[22m\n16:09:46.382 [info] == Running Ppl.EctoRepo.Migrations.AddExecTimeLim"},{"event":"cmd_output","timestamp":1607098186,"output":"itMinFields.change/0 forward\n\u001b[0m\u001b[22m\n16:09:46.382 [info] alter table pipelines\n\u001b[0m\u001b[22m\n16:0"},{"event":"cmd_output","timestamp":1607098186,"output":"9:46.383 [info] alter table pipeline_blocks\n\u001b[0m\u001b[22m\n16:09:46.383 [info] == Migrated in 0.0s\n\u001b"},{"event":"cmd_output","timestamp":1607098186,"output":"[0m\u001b[22m\n16:09:46.450 [info] == Running Ppl.EctoRepo.Migrations.AddWorkflowIdToPipelineRequestsTab"},{"event":"cmd_output","timestamp":1607098186,"output":"le.up/0 forward\n\u001b[0m\u001b[22m\n16:09:46.451 [info] execute \" UPDATE pipeline_requests AS p1\\n SET re"},{"event":"cmd_output","timestamp":1607098186,"output":"quest_args = p1.request_args ||\\n (SELECT row_to_json(t)\\n FROM\\n (SELECT request_args -"},{"event":"cmd_output","timestamp":1607098186,"output":">>'hook_id' as workflow_id\\n FROM pipeline_requests AS p2\\n WHERE p1.id = p2.id )\\n "},{"event":"cmd_output","timestamp":1607098186,"output":" as t)::jsonb\\n WHERE p1.request_args->>'workflow_id' IS NULL;\\n\"\n\u001b[0m\u001b[22m\n16:09:46.453 [info] "},{"event":"cmd_output","timestamp":1607098186,"output":"== Migrated in 0.0s\n\u001b[0m\u001b[22m\n16:09:46.525 [info] == Running Ppl.EctoRepo.Migrations.ExtractWorkf"},{"event":"cmd_output","timestamp":1607098186,"output":"lowIdFromRequestArgsInPipelineRequestsTable.up/0 forward\n\u001b[0m\u001b[22m\n16:09:46.525 [info] alter tabl"},{"event":"cmd_output","timestamp":1607098186,"output":"e pipeline_requests\n\u001b[0m\u001b[22m\n16:09:46.527 [info] execute \" UPDATE pipeline_requests\\n SET requ"},{"event":"cmd_output","timestamp":1607098186,"output":"est_args = request_args - 'workflow_id';\\n\"\n\u001b[0m\u001b[22m\n16:09:46.529 [info] == Migrated in 0.0s\n\u001b["},{"event":"cmd_output","timestamp":1607098186,"output":"0m\u001b[22m\n16:09:46.585 [info] == Running Ppl.EctoRepo.Migrations.AddExtensionOfToPipelinesTable.chan"},{"event":"cmd_output","timestamp":1607098186,"output":"ge/0 forward\n\u001b[0m\u001b[22m\n16:09:46.585 [info] alter table pipelines\n\u001b[0m\u001b[22m\n16:09:46.592 [info] "},{"event":"cmd_output","timestamp":1607098186,"output":" == Migrated in 0.0s\n\u001b[0m\u001b[22m\n16:09:46.659 [info] == Running Ppl.EctoRepo.Migrations.AddTriggers"},{"event":"cmd_output","timestamp":1607098186,"output":"ForPplStateChangeEvents.up/0 forward\n\u001b[0m\u001b[22m\n16:09:46.660 [info] create table pipeline_state_ch"},{"event":"cmd_output","timestamp":1607098186,"output":"anges\n\u001b[0m\u001b[22m\n16:09:46.667 [info] execute \"CREATE OR REPLACE FUNCTION audit_ppl_created_func()\\"},{"event":"cmd_output","timestamp":1607098186,"output":"n RETURNS TRIGGER AS\\n$BODY$\\n\\nBEGIN\\n INSERT INTO pipeline_state_changes(ppl_id, ppl_state, ppl_c"},{"event":"cmd_output","timestamp":1607098186,"output":"hanged_state_on,\\n inserted_at, updated_at, state)\\n VALUES(NEW.ppl_id, NEW.state, NEW.u"},{"event":"cmd_output","timestamp":1607098186,"output":"pdated_at, now(), now(), 'for_publishing');\\n\\n RETURN NEW;\\nEND;\\n\\n$BODY$\\nLANGUAGE plpgsql;\\n\"\n\u001b"},{"event":"cmd_output","timestamp":1607098186,"output":"[0m\u001b[22m\n16:09:46.672 [info] execute \"CREATE OR REPLACE FUNCTION audit_ppl_state_change_func()\\n "},{"event":"cmd_output","timestamp":1607098186,"output":"RETURNS TRIGGER AS\\n$BODY$\\n\\nBEGIN\\n IF NEW.state <> OLD.state THEN\\n INSERT INTO pipeline_state_ch"},{"event":"cmd_output","timestamp":1607098186,"output":"anges(ppl_id, ppl_state, ppl_changed_state_on,\\n inserted_at, updated_at, state)\\n VALUE"},{"event":"cmd_output","timestamp":1607098186,"output":"S(NEW.ppl_id, NEW.state, NEW.updated_at, now(), now(), 'for_publishing');\\n END IF;\\n\\n RETURN NEW;\\"},{"event":"cmd_output","timestamp":1607098186,"output":"nEND;\\n\\n$BODY$\\nLANGUAGE plpgsql;\\n\"\n\u001b[0m\u001b[22m\n16:09:46.674 [info] execute \"CREATE TRIGGER ppl_c"},{"event":"cmd_output","timestamp":1607098186,"output":"reated\\n AFTER INSERT\\n ON pipelines\\n FOR EACH ROW\\n EXECUTE PROCEDURE audit_ppl_created_func()"},{"event":"cmd_output","timestamp":1607098186,"output":";\\n\"\n\u001b[0m\u001b[22m\n16:09:46.684 [info] execute \"CREATE TRIGGER ppl_state_changes\\n AFTER UPDATE\\n O"},{"event":"cmd_output","timestamp":1607098186,"output":"N pipelines\\n FOR EACH ROW\\n EXECUTE PROCEDURE audit_ppl_state_change_func();\\n\"\n\u001b[0m\u001b[22m\n16:09"},{"event":"cmd_output","timestamp":1607098186,"output":":46.685 [info] == Migrated in 0.0s\n\u001b[0m\u001b[22m\n16:09:46.744 [info] == Running Ppl.EctoRepo.Migrati"},{"event":"cmd_output","timestamp":1607098186,"output":"ons.AddIndexesOnStateField.change/0 forward\n\u001b[0m\u001b[22m\n16:09:46.745 [info] create index pipelines_"},{"event":"cmd_output","timestamp":1607098186,"output":"state_index\n\u001b[0m\u001b[22m\n16:09:46.755 [info] create index pipeline_sub_inits_state_index\n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098186,"output":"\n16:09:46.770 [info] create index pipeline_blocks_state_index\n\u001b[0m\u001b[22m\n16:09:46.776 [info] == M"},{"event":"cmd_output","timestamp":1607098186,"output":"igrated in 0.0s\n\u001b[0m\u001b[22m\n16:09:46.839 [info] == Running Ppl.EctoRepo.Migrations.AddMissingFields"},{"event":"cmd_output","timestamp":1607098186,"output":"ToPipelineStateChangesTable.change/0 forward\n\u001b[0m\u001b[22m\n16:09:46.839 [info] alter table pipeline_s"},{"event":"cmd_output","timestamp":1607098186,"output":"tate_changes\n\u001b[0m\u001b[22m\n16:09:46.846 [info] == Migrated in 0.0s\n\u001b[0m\u001b[22m\n16:09:46.912 [info] ="},{"event":"cmd_output","timestamp":1607098186,"output":"= Running Ppl.EctoRepo.Migrations.AddIndexesForWfApi.change/0 forward\n\u001b[0m\u001b[22m\n16:09:46.913 [info"},{"event":"cmd_output","timestamp":1607098186,"output":"] create index pipeline_requests_request_args___organization_id__index\n\u001b[0m\u001b[22m\n16:09:46.916 [in"},{"event":"cmd_output","timestamp":1607098186,"output":"fo] create index pipeline_requests_request_args___requester_id__index\n\u001b[0m\u001b[22m\n16:09:46.918 [inf"},{"event":"cmd_output","timestamp":1607098186,"output":"o] create index pipeline_requests_wf_id_index\n\u001b[0m\u001b[22m\n16:09:46.932 [info] == Migrated in 0.0s\r"},{"event":"cmd_output","timestamp":1607098186,"output":"\n\u001b[0m\u001b[22m\n16:09:46.980 [info] == Running Ppl.EctoRepo.Migrations.AddMoreIndexesForWfList.change/0"},{"event":"cmd_output","timestamp":1607098186,"output":" forward\n\u001b[0m\u001b[22m\n16:09:46.981 [info] create index pipelines_branch_name_index\n\u001b[0m\u001b[22m\n16:09"},{"event":"cmd_output","timestamp":1607098186,"output":":46.991 [info] create index pipeline_requests_initial_request_index\n\u001b[0m\u001b[22m\n16:09:46.995 [info]"},{"event":"cmd_output","timestamp":1607098187,"output":" == Migrated in 0.0s\n\u001b[0m\u001b[33mwarning: \u001b[0munused alias Repo\n priv/ecto_repo/migrations/20190611"},{"event":"cmd_output","timestamp":1607098187,"output":"230217_add_queue_field_to_pipelines_table.exs:4\n\n\u001b[33mwarning: \u001b[0munused import Ecto.Query\n pri"},{"event":"cmd_output","timestamp":1607098187,"output":"v/ecto_repo/migrations/20190611230217_add_queue_field_to_pipelines_table.exs:3\n\n\u001b[22m\n16:09:47.04"},{"event":"cmd_output","timestamp":1607098187,"output":"7 [info] == Running Ppl.EctoRepo.Migrations.AddQueueFieldToPipelinesTable.change/0 forward\n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098187,"output":"2m\n16:09:47.048 [info] alter table pipelines\n\u001b[0m\u001b[22m\n16:09:47.048 [info] == Migrated in 0.0s\r"},{"event":"cmd_output","timestamp":1607098187,"output":"\n\u001b[0m\u001b[22m\n16:09:47.099 [info] == Running Ppl.EctoRepo.Migrations.FixJsonIndexesOnPipelineRequests"},{"event":"cmd_output","timestamp":1607098187,"output":"Table.up/0 forward\n\u001b[0m\u001b[22m\n16:09:47.100 [info] execute \"DROP INDEX IF EXISTS pipeline_requests_"},{"event":"cmd_output","timestamp":1607098187,"output":"request_args___organization_id__index;\"\n\u001b[0m\u001b[22m\n16:09:47.103 [info] execute \"DROP INDEX IF EXIS"},{"event":"cmd_output","timestamp":1607098187,"output":"TS pipeline_requests_request_args___requester_id__index;\"\n\u001b[0m\u001b[22m\n16:09:47.105 [info] create in"},{"event":"cmd_output","timestamp":1607098187,"output":"dex pipeline_requests_request_args___organization_id__index\n\u001b[0m\u001b[22m\n16:09:47.108 [info] create "},{"event":"cmd_output","timestamp":1607098187,"output":"index pipeline_requests_request_args___requester_id__index\n\u001b[0m\u001b[22m\n16:09:47.111 [info] == Migra"},{"event":"cmd_output","timestamp":1607098187,"output":"ted in 0.0s\n\u001b[0m\u001b[22m\n16:09:47.152 [info] == Running Ppl.EctoRepo.Migrations.AddIndexOnInsertedAt"},{"event":"cmd_output","timestamp":1607098187,"output":"OnPipelineRequestsTable.change/0 forward\n\u001b[0m\u001b[22m\n16:09:47.152 [info] create index pipeline_requ"},{"event":"cmd_output","timestamp":1607098187,"output":"ests_inserted_at_index\n\u001b[0m\u001b[22m\n16:09:47.156 [info] == Migrated in 0.0s\n\u001b[0m\u001b[22m\n16:09:47.201"},{"event":"cmd_output","timestamp":1607098187,"output":" [info] == Running Ppl.EctoRepo.Migrations.AddSourceArgsAndLabelFieldsToPipelines.change/0 forward\r"},{"event":"cmd_output","timestamp":1607098187,"output":"\n\u001b[0m\u001b[22m\n16:09:47.201 [info] alter table pipeline_requests\n\u001b[0m\u001b[22m\n16:09:47.202 [info] alte"},{"event":"cmd_output","timestamp":1607098187,"output":"r table pipelines\n\u001b[0m\u001b[22m\n16:09:47.203 [info] == Migrated in 0.0s\n\u001b[0m\u001b[22m\n16:09:47.247 [inf"},{"event":"cmd_output","timestamp":1607098187,"output":"o] == Running Ppl.EctoRepo.Migrations.AddIndexesOnLabelAndGitRefType.change/0 forward\n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098187,"output":"6:09:47.248 [info] create index pipelines_label_index\n\u001b[0m\u001b[22m\n16:09:47.251 [info] create index"},{"event":"cmd_output","timestamp":1607098187,"output":" pipeline_requests_source_args___git_ref_type__index\n\u001b[0m\u001b[22m\n16:09:47.254 [info] == Migrated in"},{"event":"cmd_output","timestamp":1607098187,"output":" 0.0s\n\u001b[0m\u001b[22m\n16:09:47.291 [info] == Running Ppl.EctoRepo.Migrations.AddAutoCancelFiledToPipeli"},{"event":"cmd_output","timestamp":1607098187,"output":"nesTabel.change/0 forward\n\u001b[0m\u001b[22m\n16:09:47.291 [info] alter table pipelines\n\u001b[0m\u001b[22m\n16:09:4"},{"event":"cmd_output","timestamp":1607098187,"output":"7.291 [info] == Migrated in 0.0s\n\u001b[0m\u001b[22m\n16:09:47.333 [info] == Running Ppl.EctoRepo.Migration"},{"event":"cmd_output","timestamp":1607098187,"output":"s.AddNewQueueModel.change/0 forward\n\u001b[0m\u001b[22m\n16:09:47.334 [info] create table queues\n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098187,"output":"\n16:09:47.338 [info] create index unique_queue_name_for_project\n\u001b[0m\u001b[22m\n16:09:47.341 [info] cr"},{"event":"cmd_output","timestamp":1607098187,"output":"eate index unique_queue_name_for_org\n\u001b[0m\u001b[22m\n16:09:47.343 [info] create index queues_project_id"},{"event":"cmd_output","timestamp":1607098187,"output":"_index\n\u001b[0m\u001b[22m\n16:09:47.345 [info] create index queues_organization_id_index\n\u001b[0m\u001b[22m\n16:09:"},{"event":"cmd_output","timestamp":1607098187,"output":"47.347 [info] alter table pipelines\n\u001b[0m\u001b[22m\n16:09:47.349 [info] == Migrated in 0.0s\n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098187,"output":"\n16:09:47.384 [info] == Running Ppl.EctoRepo.Migrations.RemoveOldQueueFieldFromPipelinesTable.chan"},{"event":"cmd_output","timestamp":1607098187,"output":"ge/0 forward\n\u001b[0m\u001b[22m\n16:09:47.384 [info] alter table pipelines\n\u001b[0m\u001b[22m\n16:09:47.386 [info] "},{"event":"cmd_output","timestamp":1607098187,"output":" == Migrated in 0.0s\n\u001b[0m\u001b[22m\n16:09:47.424 [info] == Running Ppl.EctoRepo.Migrations.AddInserted"},{"event":"cmd_output","timestamp":1607098187,"output":"AtIndexToPipelines.change/0 forward\n\u001b[0m\u001b[22m\n16:09:47.425 [info] create index pipelines_inserted"},{"event":"cmd_output","timestamp":1607098187,"output":"_at_index\n\u001b[0m\u001b[22m\n16:09:47.430 [info] == Migrated in 0.0s\n\u001b[0m\u001b[22m\n16:09:47.466 [info] == R"},{"event":"cmd_output","timestamp":1607098187,"output":"unning Ppl.EctoRepo.Migrations.AddQueueIdIndexToPipelines.change/0 forward\n\u001b[0m\u001b[22m\n16:09:47.467 "},{"event":"cmd_output","timestamp":1607098187,"output":"[info] create index pipelines_queue_id_index\n\u001b[0m\u001b[22m\n16:09:47.472 [info] == Migrated in 0.0s\n"},{"event":"cmd_output","timestamp":1607098187,"output":"\u001b[0m\u001b[22m\n16:09:47.501 [info] == Running Ppl.EctoRepo.Migrations.AddWfNumberToPipelinesTable.chang"},{"event":"cmd_output","timestamp":1607098187,"output":"e/0 forward\n\u001b[0m\u001b[22m\n16:09:47.502 [info] alter table pipelines\n\u001b[0m\u001b[22m\n16:09:47.505 [info] "},{"event":"cmd_output","timestamp":1607098187,"output":"== Migrated in 0.0s\n\u001b[0m\u001b[22m\n16:09:47.537 [info] == Running Ppl.EctoRepo.Migrations.AddInsertedA"},{"event":"cmd_output","timestamp":1607098187,"output":"tAndIdIndexToPipelinesTable.change/0 forward\n\u001b[0m\u001b[22m\n16:09:47.537 [info] create index pipelines"},{"event":"cmd_output","timestamp":1607098187,"output":"_inserted_at_DESC_NULLS_LAST_id_DESC_NULLS_LAST_index\n\u001b[0m\u001b[22m\n16:09:47.540 [info] == Migrated i"},{"event":"cmd_output","timestamp":1607098187,"output":"n 0.0s\n\u001b[0m\u001b[22m\n16:09:47.574 [info] == Running Ppl.EctoRepo.Migrations.AddPrioritiesFieldsForPpl"},{"event":"cmd_output","timestamp":1607098187,"output":"AndBlk.change/0 forward\n\u001b[0m\u001b[22m\n16:09:47.576 [info] alter table pipelines\n\u001b[0m\u001b[22m\n16:09:47."},{"event":"cmd_output","timestamp":1607098187,"output":"578 [info] alter table pipeline_blocks\n\u001b[0m\u001b[22m\n16:09:47.581 [info] == Migrated in 0.0s\n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098187,"output":"22m\n16:09:47.621 [info] == Running Ppl.EctoRepo.Migrations.AddLatestWorkflowsTable.change/0 forwar"},{"event":"cmd_output","timestamp":1607098187,"output":"d\n\u001b[0m\u001b[22m\n16:09:47.622 [info] create table latest_workflows\n\u001b[0m\u001b[22m\n16:09:47.627 [info] cr"},{"event":"cmd_output","timestamp":1607098187,"output":"eate index latest_workflows_organization_id_index\n\u001b[0m\u001b[22m\n16:09:47.630 [info] create index one_"},{"event":"cmd_output","timestamp":1607098187,"output":"wf_per_git_ref_on_project\n\u001b[0m\u001b[22m\n16:09:47.633 [info] == Migrated in 0.0s\n\u001b[0m\u001b[22m\n16:09:47."},{"event":"cmd_output","timestamp":1607098187,"output":"666 [info] == Running Ppl.EctoRepo.Migrations.AddParallelRunToPipelinesTable.change/0 forward\n\u001b[0m"},{"event":"cmd_output","timestamp":1607098187,"output":"\u001b[22m\n16:09:47.667 [info] alter table pipelines\n\u001b[0m\u001b[22m\n16:09:47.668 [info] == Migrated in 0."},{"event":"cmd_output","timestamp":1607098187,"output":"0s\n\u001b[0m\u001b[22m\n16:09:47.704 [info] == Running Ppl.EctoRepo.Migrations.AddComplTaskIdToPipelinesTabl"},{"event":"cmd_output","timestamp":1607098187,"output":"e.change/0 forward\n\u001b[0m\u001b[22m\n16:09:47.704 [info] alter table pipeline_sub_inits\n\u001b[0m\u001b[22m\n16:09"},{"event":"cmd_output","timestamp":1607098187,"output":":47.705 [info] alter table pipelines\n\u001b[0m\u001b[22m\n16:09:47.706 [info] == Migrated in 0.0s\n\u001b[0m"},{"event":"cmd_finished","timestamp":1607098187,"directive":"make console USER=root MIX_ENV=test CMD=\"mix do local.hex --force, local.rebar --force, deps.get, ecto.create, ecto.migrate\"","exit_code":0,"started_at":1607098142,"finished_at":1607098187},{"event":"cmd_started","timestamp":1607098187,"directive":"make console USER=root MIX_ENV=test CMD=\"mix do ecto.create -r Block.EctoRepo, ecto.migrate -r Block.EctoRepo\""},{"event":"cmd_output","timestamp":1607098187,"output":"docker run --network=host -e MIX_ENV=test -e DB_URL=\"ecto://postgres:PASSWORD@localhost/ppl_repo\" -e"},{"event":"cmd_output","timestamp":1607098187,"output":" DB_PASSWORD=\"postgres\" -e DB_USE_SSL=\"false\" -e BLOCK_DB_URL=\"ecto://postgres:PASSWORD@localhost/bl"},{"event":"cmd_output","timestamp":1607098187,"output":"ock_repo\" -e BLOCK_DB_PASSWORD=\"postgres\" -e BLOCK_DB_USE_SSL=\"false\" -e USER_CREDS_ENC_KEY_1=\"zsef6"},{"event":"cmd_output","timestamp":1607098187,"output":"S7fv98op1qf60M7GfOc3d6I5KvE\" -e GOFER_GRPC_URL=localhost:50055 -e RABBITMQ_URL=\"amqp://localhost:567"},{"event":"cmd_output","timestamp":1607098187,"output":"3\" -e TASK_API_URL=localhost:50051 -e PPL_QUEUE_LIMIT=\"9\" -e IN_FLIGHT_DESCRIBE_LIMIT=\"50\" -e IN_FLI"},{"event":"cmd_output","timestamp":1607098187,"output":"GHT_LIST_LIMIT=\"50\" -e REPO_PROXY_GRPC_URL=localhost:51000 -e PAPARAZZO_URL=localhost:12345 -e REPOH"},{"event":"cmd_output","timestamp":1607098187,"output":"UB_GRPC_URL=localhost:51500 -e USER_GRPC_URL=localhost:51500 -e ARTIFACTHUB_GRPC_URL=localhost:51500"},{"event":"cmd_output","timestamp":1607098187,"output":" -v $PWD/home_dir:/home/dev -v $PWD/..:/home/dev/pipelines --rm --workdir=/home/dev/pipelines/ppl -"},{"event":"cmd_output","timestamp":1607098187,"output":"-user=root -it renderedtext/elixir-dev:1.6.5-v2 mix do ecto.create -r Block.EctoRepo, ecto.migrate -"},{"event":"cmd_output","timestamp":1607098192,"output":"r Block.EctoRepo\nThe database for Block.EctoRepo has been created\n\u001b[22m\n16:09:52.692 [info] == R"},{"event":"cmd_output","timestamp":1607098192,"output":"unning Block.EctoRepo.Migrations.AddBlockRequestsTable.change/0 forward\n\u001b[0m\u001b[22m\n16:09:52.692 [in"},{"event":"cmd_output","timestamp":1607098192,"output":"fo] create table block_requests\n\u001b[0m\u001b[22m\n16:09:52.697 [info] create index ppl_id_and_blk_ind_un"},{"event":"cmd_output","timestamp":1607098192,"output":"ique_index\n\u001b[0m\u001b[22m\n16:09:52.715 [info] == Migrated in 0.0s\n\u001b[0m\u001b[22m\n16:09:52.823 [info] == "},{"event":"cmd_output","timestamp":1607098192,"output":"Running Block.EctoRepo.Migrations.AddBlockBuildsTable.change/0 forward\n\u001b[0m\u001b[22m\n16:09:52.823 [inf"},{"event":"cmd_output","timestamp":1607098192,"output":"o] create table block_builds\n\u001b[0m\u001b[22m\n16:09:52.831 [info] create index block_builds_in_scheduli"},{"event":"cmd_output","timestamp":1607098192,"output":"ng_state_updated_at_index\n\u001b[0m\u001b[22m\n16:09:52.834 [info] == Migrated in 0.0s\n\u001b[0m\u001b[22m\n16:09:52."},{"event":"cmd_output","timestamp":1607098192,"output":"875 [info] == Running Block.EctoRepo.Migrations.AddBlocksTable.change/0 forward\n\u001b[0m\u001b[22m\n16:09:5"},{"event":"cmd_output","timestamp":1607098192,"output":"2.876 [info] create table blocks\n\u001b[0m\u001b[22m\n16:09:52.883 [info] create index blocks_in_scheduling"},{"event":"cmd_output","timestamp":1607098192,"output":"_state_updated_at_index\n\u001b[0m\u001b[22m\n16:09:52.886 [info] create index blocks_block_id_index\n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098192,"output":"2m\n16:09:52.888 [info] == Migrated in 0.0s\n\u001b[0m\u001b[22m\n16:09:52.929 [info] == Running Block.EctoR"},{"event":"cmd_output","timestamp":1607098192,"output":"epo.Migrations.AddBlockSubpplsTable.change/0 forward\n\u001b[0m\u001b[22m\n16:09:52.930 [info] create table b"},{"event":"cmd_output","timestamp":1607098192,"output":"lock_subppls\n\u001b[0m\u001b[22m\n16:09:52.939 [info] create index block_subppls_in_scheduling_state_updated"},{"event":"cmd_output","timestamp":1607098192,"output":"_at_index\n\u001b[0m\u001b[22m\n16:09:52.945 [info] == Migrated in 0.0s\n\u001b[0m\u001b[22m\n16:09:52.979 [info] == R"},{"event":"cmd_output","timestamp":1607098192,"output":"unning Block.EctoRepo.Migrations.AddDeleteCascadeToFkeyConstraints.up/0 forward\n\u001b[0m\u001b[22m\n16:09:52"},{"event":"cmd_output","timestamp":1607098192,"output":".980 [info] drop constraint blocks_block_id_fkey from table blocks\n\u001b[0m\u001b[22m\n16:09:52.983 [info] "},{"event":"cmd_output","timestamp":1607098192,"output":" alter table blocks\n\u001b[0m\u001b[22m\n16:09:52.987 [info] drop constraint block_builds_block_id_fkey from"},{"event":"cmd_output","timestamp":1607098192,"output":" table block_builds\n\u001b[0m\u001b[22m\n16:09:52.988 [info] alter table block_builds\n\u001b[0m\u001b[22m\n16:09:52.9"},{"event":"cmd_output","timestamp":1607098192,"output":"93 [info] drop constraint block_subppls_block_id_fkey from table block_subppls\n\u001b[0m\u001b[22m\n16:09:52"},{"event":"cmd_output","timestamp":1607098193,"output":".995 [info] alter table block_subppls\n\u001b[0m\u001b[22m\n16:09:52.998 [info] == Migrated in 0.0s\n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098193,"output":"2m\n16:09:53.083 [info] == Running Block.EctoRepo.Migrations.ChangeBlockBuildsExecutableIdToBuildRe"},{"event":"cmd_output","timestamp":1607098193,"output":"questId.up/0 forward\n\u001b[0m\u001b[22m\n16:09:53.084 [info] alter table block_builds\n\u001b[0m\u001b[22m\n16:09:53."},{"event":"cmd_output","timestamp":1607098193,"output":"097 [info] alter table block_builds\n\u001b[0m\u001b[22m\n16:09:53.099 [info] == Migrated in 0.0s\n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098193,"output":"\n16:09:53.145 [info] == Running Block.EctoRepo.Migrations.AddTaskIdToBlockBuildsTable.up/0 forward"},{"event":"cmd_output","timestamp":1607098193,"output":"\n\u001b[0m\u001b[22m\n16:09:53.146 [info] alter table block_builds\n\u001b[0m\u001b[22m\n16:09:53.152 [info] == Migra"},{"event":"cmd_output","timestamp":1607098193,"output":"ted in 0.0s\n\u001b[0m\u001b[22m\n16:09:53.192 [info] == Running Block.EctoRepo.Migrations.AddIndexOnBlockIdT"},{"event":"cmd_output","timestamp":1607098193,"output":"oBlockBuildsTable.change/0 forward\n\u001b[0m\u001b[22m\n16:09:53.192 [info] create index block_builds_block_"},{"event":"cmd_output","timestamp":1607098193,"output":"id_index\n\u001b[0m\u001b[22m\n16:09:53.206 [info] == Migrated in 0.0s\n\u001b[0m\u001b[22m\n16:09:53.251 [info] == Ru"},{"event":"cmd_output","timestamp":1607098193,"output":"nning Block.EctoRepo.Migrations.AddSourceArgsToBlockRequestTable.change/0 forward\n\u001b[0m\u001b[22m\n16:09:"},{"event":"cmd_output","timestamp":1607098193,"output":"53.251 [info] alter table block_requests\n\u001b[0m\u001b[22m\n16:09:53.252 [info] == Migrated in 0.0s\n\u001b[0m"},{"event":"cmd_output","timestamp":1607098193,"output":"\u001b[22m\n16:09:53.284 [info] == Running Block.EctoRepo.Migrations.AddStateIndexToBlockBuildsTable.cha"},{"event":"cmd_output","timestamp":1607098193,"output":"nge/0 forward\n\u001b[0m\u001b[22m\n16:09:53.285 [info] create index block_builds_state_index\n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098193,"output":"09:53.289 [info] == Migrated in 0.0s\n\u001b[0m"},{"event":"cmd_finished","timestamp":1607098193,"directive":"make console USER=root MIX_ENV=test CMD=\"mix do ecto.create -r Block.EctoRepo, ecto.migrate -r Block.EctoRepo\"","exit_code":0,"started_at":1607098187,"finished_at":1607098193},{"event":"cmd_started","timestamp":1607098193,"directive":"time make integration-test USER=root"},{"event":"cmd_output","timestamp":1607098193,"output":"make console MIX_ENV=test USER=root CMD=\"mix test --only integration\"\nmake[1]: Entering directory '"},{"event":"cmd_output","timestamp":1607098193,"output":"/home/semaphore/alles/plumber/ppl'\ndocker run --network=host -e MIX_ENV=test -e DB_URL=\"ecto://post"},{"event":"cmd_output","timestamp":1607098193,"output":"gres:PASSWORD@localhost/ppl_repo\" -e DB_PASSWORD=\"postgres\" -e DB_USE_SSL=\"false\" -e BLOCK_DB_URL=\"e"},{"event":"cmd_output","timestamp":1607098193,"output":"cto://postgres:PASSWORD@localhost/block_repo\" -e BLOCK_DB_PASSWORD=\"postgres\" -e BLOCK_DB_USE_SSL=\"f"},{"event":"cmd_output","timestamp":1607098193,"output":"alse\" -e USER_CREDS_ENC_KEY_1=\"zsef6S7fv98op1qf60M7GfOc3d6I5KvE\" -e GOFER_GRPC_URL=localhost:50055 -"},{"event":"cmd_output","timestamp":1607098193,"output":"e RABBITMQ_URL=\"amqp://localhost:5673\" -e TASK_API_URL=localhost:50051 -e PPL_QUEUE_LIMIT=\"9\" -e IN_"},{"event":"cmd_output","timestamp":1607098193,"output":"FLIGHT_DESCRIBE_LIMIT=\"50\" -e IN_FLIGHT_LIST_LIMIT=\"50\" -e REPO_PROXY_GRPC_URL=localhost:51000 -e PA"},{"event":"cmd_output","timestamp":1607098193,"output":"PARAZZO_URL=localhost:12345 -e REPOHUB_GRPC_URL=localhost:51500 -e USER_GRPC_URL=localhost:51500 -e "},{"event":"cmd_output","timestamp":1607098193,"output":"ARTIFACTHUB_GRPC_URL=localhost:51500 -v $PWD/home_dir:/home/dev -v $PWD/..:/home/dev/pipelines --rm"},{"event":"cmd_output","timestamp":1607098193,"output":" --workdir=/home/dev/pipelines/ppl --user=root -it renderedtext/elixir-dev:1.6.5-v2 mix test --only "},{"event":"cmd_output","timestamp":1607098196,"output":"integration\n\u001b[22m\n16:09:56.576 [info] Executing sys2app callback: {Ppl.Sys2app, :callback, []}\n\u001b"},{"event":"cmd_output","timestamp":1607098196,"output":"[0m\u001b[22m\n16:09:56.682 [info] Watchman sending metrics to localhost:8125 with prefix 'ppl.test'\n\u001b["},{"event":"cmd_output","timestamp":1607098197,"output":"0m16:09:56.990 [error] Supervisor 'Elixir.Logger.Supervisor' had child 'Elixir.Logger.ErrorHandler' "},{"event":"cmd_output","timestamp":1607098197,"output":"started with 'Elixir.Logger.Watcher':start_link({error_logger,'Elixir.Logger.ErrorHandler',{true,fal"},{"event":"cmd_output","timestamp":1607098197,"output":"se,500}}) at <0.537.0> exit with reason normal in context child_terminated\r\n16:09:57.071 [info] App"},{"event":"cmd_output","timestamp":1607098197,"output":"lication lager started on node nonode@nohost\r\n16:09:57.135 [info] Application xmerl started on node"},{"event":"cmd_output","timestamp":1607098197,"output":" nonode@nohost\r\n16:09:57.153 [info] Application ranch_proxy_protocol started on node nonode@nohost\r"},{"event":"cmd_output","timestamp":1607098197,"output":"\n16:09:57.167 [info] Application recon started on node nonode@nohost\r\n16:09:57.167 [info] Applicat"},{"event":"cmd_output","timestamp":1607098197,"output":"ion rabbit_common started on node nonode@nohost\r\n16:09:57.222 [info] Application amqp_client starte"},{"event":"cmd_output","timestamp":1607098197,"output":"d on node nonode@nohost\r\n16:09:57.222 [info] Application amqp started on node nonode@nohost\r\n16:09"},{"event":"cmd_output","timestamp":1607098197,"output":":57.241 [info] Application tackle started on node nonode@nohost\r\n16:09:57.267 [info] Application co"},{"event":"cmd_output","timestamp":1607098197,"output":"nnection started on node nonode@nohost\r\n16:09:57.306 [info] Application db_connection started on no"},{"event":"cmd_output","timestamp":1607098197,"output":"de nonode@nohost\r\n16:09:57.328 [info] Application decimal started on node nonode@nohost\r\n16:09:57."},{"event":"cmd_output","timestamp":1607098197,"output":"358 [info] Application postgrex started on node nonode@nohost\r\n16:09:57.386 [info] Application pool"},{"event":"cmd_output","timestamp":1607098197,"output":"boy started on node nonode@nohost\r\n16:09:57.402 [info] Application ecto started on node nonode@noho"},{"event":"cmd_output","timestamp":1607098197,"output":"st\r\n16:09:57.413 [info] Application paginator started on node nonode@nohost\r\n16:09:57.506 [info] A"},{"event":"cmd_output","timestamp":1607098197,"output":"pplication runtime_tools started on node nonode@nohost\r\n16:09:57.515 [info] Application artificery "},{"event":"cmd_output","timestamp":1607098197,"output":"started on node nonode@nohost\r\n16:09:57.515 [info] Application distillery started on node nonode@no"},{"event":"cmd_output","timestamp":1607098197,"output":"host\r\n16:09:57.524 [info] Application observer_cli started on node nonode@nohost\r\n16:09:57.533 [in"},{"event":"cmd_output","timestamp":1607098197,"output":"fo] Application cloak started on node nonode@nohost\r\n16:09:57.734 [info] Application yamerl started"},{"event":"cmd_output","timestamp":1607098197,"output":" on node nonode@nohost\r\n16:09:57.746 [info] Application yaml_elixir started on node nonode@nohost\r\r"},{"event":"cmd_output","timestamp":1607098197,"output":"\n16:09:57.775 [info] Application jesse started on node nonode@nohost\r\n16:09:57.803 [info] Applicati"},{"event":"cmd_output","timestamp":1607098197,"output":"on ex_json_schema started on node nonode@nohost\r\n16:09:57.818 [info] Application spec started on no"},{"event":"cmd_output","timestamp":1607098197,"output":"de nonode@nohost\r\n16:09:57.862 [info] Application wormhole started on node nonode@nohost\r\n16:09:57"},{"event":"cmd_output","timestamp":1607098197,"output":".862 [info] Application util started on node nonode@nohost\r\n16:09:57.909 [info] Application definit"},{"event":"cmd_output","timestamp":1607098197,"output":"ion_validator started on node nonode@nohost\r\n16:09:57.923 [info] Application job_matrix started on "},{"event":"cmd_output","timestamp":1607098197,"output":"node nonode@nohost\r\n16:09:57.951 [info] Application log_tee started on node nonode@nohost\r\n16:09:5"},{"event":"cmd_output","timestamp":1607098197,"output":"7.976 [info] Application uuid started on node nonode@nohost\r\n16:09:57.979 [info] Application looper"},{"event":"cmd_output","timestamp":1607098197,"output":" started on node nonode@nohost\r\n16:09:57.988 [info] Application when started on node nonode@nohost\r"},{"event":"cmd_output","timestamp":1607098198,"output":"\n16:09:58.024 [info] Application cowlib started on node nonode@nohost\r\n16:09:58.046 [info] Applica"},{"event":"cmd_output","timestamp":1607098198,"output":"tion cowboy started on node nonode@nohost\r\n16:09:58.066 [info] Application gun started on node nono"},{"event":"cmd_output","timestamp":1607098198,"output":"de@nohost\r\n16:09:58.067 [info] Application grpc started on node nonode@nohost\r\n16:09:58.067 [info]"},{"event":"cmd_output","timestamp":1607098198,"output":" Application dependencies started on node nonode@nohost\r\n16:09:58.078 [info] Application proto star"},{"event":"cmd_output","timestamp":1607098198,"output":"ted on node nonode@nohost\r\n16:09:58.177 [info] Application block started on node nonode@nohost\r\n16"},{"event":"cmd_output","timestamp":1607098198,"output":":09:58.214 [info] Application gofer_client started on node nonode@nohost\r\n16:09:58.230 [info] Appli"},{"event":"cmd_output","timestamp":1607098198,"output":"cation grpc_mock started on node nonode@nohost\r\n16:09:58.240 [info] Application scrivener started o"},{"event":"cmd_output","timestamp":1607098198,"output":"n node nonode@nohost\r\n16:09:58.242 [info] Application scrivener_ecto started on node nonode@nohost\r"},{"event":"cmd_output","timestamp":1607098198,"output":"\n\u001b[22m\n16:09:58.245 [info] Watchman sending metrics to localhost:8125 with prefix 'ppl.test'\n\u001b[0"},{"event":"cmd_output","timestamp":1607098198,"output":"m\u001b[22m\n16:09:58.310 [info] Application watchman exited: :stopped\n\u001b[0m16:09:58.320 [info] Applicat"},{"event":"cmd_output","timestamp":1607098198,"output":"ion watchman exited with reason: stopped\r\n16:09:58.320 [info] Application watchman started on node "},{"event":"cmd_output","timestamp":1607098198,"output":"nonode@nohost\r\n\u001b[22m\n16:09:58.672 [info] Elixir.Ppl.Grpc.ProcessCounter: type: :describe\n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098198,"output":"2m\n16:09:58.673 [info] Elixir.Ppl.Grpc.ProcessCounter: type: :list\n\u001b[0m\u001b[22m\n16:09:58.776 [info]"},{"event":"cmd_output","timestamp":1607098198,"output":" Running Ppl.Admin.Server,Ppl.Grpc.Server,Plumber.WorkflowAPI.Server,Ppl.Grpc.HealthCheck with Cowb"},{"event":"cmd_output","timestamp":1607098198,"output":"oy using http://0.0.0.0:50053\n\u001b[0m16:09:58.777 [info] Application ppl started on node nonode@nohost"},{"event":"cmd_output","timestamp":1607098199,"output":"\r\n16:09:58.843 [info] Application ex_unit started on node nonode@nohost\r\nIncluding tags: [:integra"},{"event":"cmd_output","timestamp":1607098200,"output":"tion]\nExcluding tags: [:test, {:integration, true}]\n\n\u001b[33mwarning: \u001b[0mvariable \"ppl_id_1\" is unu"},{"event":"cmd_output","timestamp":1607098200,"output":"sed\n test/actions_test.exs:239\n\n\u001b[33mwarning: \u001b[0munused alias Result\n test/actions_test.exs:1"},{"event":"cmd_output","timestamp":1607098200,"output":"1\n\n\u001b[33mwarning: \u001b[0munused alias ResultReason\n test/actions_test.exs:11\n\n\u001b[33mwarning: \u001b[0mun"},{"event":"cmd_output","timestamp":1607098200,"output":"used alias State\n test/actions_test.exs:11\n\n\u001b[33mwarning: \u001b[0munused alias Timestamp\n test/act"},{"event":"cmd_output","timestamp":1607098200,"output":"ions_test.exs:10\n\n\u001b[33mwarning: \u001b[0munused alias Result\n test/definition_reviser/global_job_conf"},{"event":"cmd_output","timestamp":1607098200,"output":"ig_test.exs:4\n\n\u001b[33mwarning: \u001b[0munused alias Result\n test/definition_reviser/jobs_godfather_tes"},{"event":"cmd_output","timestamp":1607098200,"output":"t.exs:6\n\n\u001b[33mwarning: \u001b[0munused alias ResultReason\n test/definition_reviser/jobs_godfather_tes"},{"event":"cmd_output","timestamp":1607098200,"output":"t.exs:6\n\n\u001b[33mwarning: \u001b[0munused alias Result\n test/definition_reviser/when_validator_test.exs:"},{"event":"cmd_output","timestamp":1607098200,"output":"5\n\n\u001b[33mwarning: \u001b[0munused alias ResultReason\n test/definition_reviser/when_validator_test.exs:"},{"event":"cmd_output","timestamp":1607098200,"output":"5\n\n\u001b[33mwarning: \u001b[0mvariable \"ppl\" is unused\n test/e2e/auto_cancel_test.exs:23\n\n\u001b[33mwarning:"},{"event":"cmd_output","timestamp":1607098200,"output":" \u001b[0mvariable \"ppl\" is unused\n test/e2e/auto_cancel_test.exs:66\n\n\u001b[33mwarning: \u001b[0mvariable \"ppl"},{"event":"cmd_output","timestamp":1607098200,"output":"\" is unused\n test/e2e/auto_cancel_test.exs:80\n\n\u001b[33mwarning: \u001b[0munused alias Result\n test/e2e"},{"event":"cmd_output","timestamp":1607098200,"output":"/auto_cancel_test.exs:5\n\n\u001b[33mwarning: \u001b[0munused alias ResultReason\n test/e2e/auto_cancel_test."},{"event":"cmd_output","timestamp":1607098201,"output":"exs:5\n\n\u001b[33mwarning: \u001b[0munused alias Result\n test/e2e/compose_style_ci_test.exs:5\n\n\u001b[33mwarni"},{"event":"cmd_output","timestamp":1607098201,"output":"ng: \u001b[0mfunction changes/3 is unused\n test/e2e/change_in_test.exs:401\n\n\u001b[33mwarning: \u001b[0munused "},{"event":"cmd_output","timestamp":1607098201,"output":"alias Result\n test/e2e/free_topology_test.exs:5\n\n\u001b[33mwarning: \u001b[0munused alias Result\n test/e"},{"event":"cmd_output","timestamp":1607098201,"output":"2e/looper_execute_now_test.exs:5\n\n\u001b[33mwarning: \u001b[0munused alias Result\n test/e2e/parallelism_su"},{"event":"cmd_output","timestamp":1607098201,"output":"pport_test.exs:5\n\n\u001b[33mwarning: \u001b[0munused alias ResultReason\n test/e2e/parallelism_support_test"},{"event":"cmd_output","timestamp":1607098201,"output":".exs:5\n\n\u001b[33mwarning: \u001b[0munused alias Result\n test/e2e/task_file_test.exs:5\n\n\u001b[33mwarning: \u001b["},{"event":"cmd_output","timestamp":1607098201,"output":"0munused alias ResultReason\n test/e2e/task_file_test.exs:5\n\n\u001b[33mwarning: \u001b[0mvariable \"pid\" is "},{"event":"cmd_output","timestamp":1607098202,"output":"unused\n test/org_events_consumer_test.exs:54\n\n\u001b[33mwarning: \u001b[0munused alias ResultReason\n tes"},{"event":"cmd_output","timestamp":1607098202,"output":"t/ppl_blocks/model/ppl_block_connections_test.exs:4\n\n\u001b[33mwarning: \u001b[0munused alias State\n test/"},{"event":"cmd_output","timestamp":1607098203,"output":"ppl_blocks/model/ppl_block_connections_test.exs:4\n\n\u001b[33mwarning: \u001b[0munused alias PplsQueries\n t"},{"event":"cmd_output","timestamp":1607098203,"output":"est/ppl_blocks/stm_handler/execution_time_limit_test.exs:6\n\n\u001b[33mwarning: \u001b[0munused alias Result\r"},{"event":"cmd_output","timestamp":1607098203,"output":"\n test/ppl_blocks/stm_handler/filters_test.exs:5\n\n\u001b[33mwarning: \u001b[0mvariable \"n_token\" is unused\r"},{"event":"cmd_output","timestamp":1607098203,"output":"\n test/grpc/server_test.exs:1221\n\n\u001b[33mwarning: \u001b[0mvariable \"req_args\" is unused\n test/ppl_blo"},{"event":"cmd_output","timestamp":1607098203,"output":"cks/stm_handler/run_test.exs:124\n\n\u001b[33mwarning: \u001b[0munused alias PplsQueries\n test/ppl_blocks/st"},{"event":"cmd_output","timestamp":1607098204,"output":"m_handler/run_test.exs:8\n\n\u001b[33mwarning: \u001b[0munused alias Result\n test/ppl_blocks/stm_handler/ski"},{"event":"cmd_output","timestamp":1607098204,"output":"p_block_test.exs:5\n\n\u001b[33mwarning: \u001b[0munused alias PplsQueries\n test/ppl_blocks/stm_handler/stat"},{"event":"cmd_output","timestamp":1607098205,"output":"e_transition_test.exs:4\n\n\u001b[33mwarning: \u001b[0mvariable \"task_id\" is unused\n test/ppl_sub_inits/stm_"},{"event":"cmd_output","timestamp":1607098205,"output":"handler/compilation/task_client_test.exs:42\n\n\u001b[33mwarning: \u001b[0munused alias Result\n test/ppls/be"},{"event":"cmd_output","timestamp":1607098206,"output":"holder_test.exs:4\n\n\u001b[33mwarning: \u001b[0munused alias PplsQueries\n test/ppls/model/ppls_queuing_test"},{"event":"cmd_output","timestamp":1607098206,"output":".exs:6\n\n\u001b[33mwarning: \u001b[0mvariable \"ind\" is unused\n test/ppls/model/ppls_queries_test.exs:345\n\r"},{"event":"cmd_output","timestamp":1607098206,"output":"\n\u001b[33mwarning: \u001b[0mvariable \"ind\" is unused\n test/ppls/model/ppls_queries_test.exs:349\n\n\u001b[33mwar"},{"event":"cmd_output","timestamp":1607098206,"output":"ning: \u001b[0munused alias Credentials\n test/ppls/stm_handler/event_publishing_test.exs:6\n\n\u001b[33mwarn"},{"event":"cmd_output","timestamp":1607098206,"output":"ing: \u001b[0munused alias PipelineService\n test/ppls/stm_handler/event_publishing_test.exs:8\n\n\u001b[33mw"},{"event":"cmd_output","timestamp":1607098206,"output":"arning: \u001b[0munused alias ScheduleRequest\n test/ppls/stm_handler/event_publishing_test.exs:8\n\n\u001b[3"},{"event":"cmd_output","timestamp":1607098206,"output":"3mwarning: \u001b[0mvariable \"ppl\" is unused\n test/ppls/stm_handler/initializing_test.exs:84\n\n\u001b[33mwa"},{"event":"cmd_output","timestamp":1607098207,"output":"rning: \u001b[0mvariable \"ppl\" is unused\n test/ppls/stm_handler/initializing_test.exs:88\n\n\u001b[33mwarnin"},{"event":"cmd_output","timestamp":1607098207,"output":"g: \u001b[0mvariable \"queue\" is unused\n test/queues/model/queues_queries_test.exs:41\n\n\u001b[33mwarning: \u001b"},{"event":"cmd_output","timestamp":1607098207,"output":"[0mvariable \"queue\" is unused\n test/queues/model/queues_queries_test.exs:50\n\n\u001b[33mwarning: \u001b[0mv"},{"event":"cmd_output","timestamp":1607098207,"output":"ariable \"paramas\" is unused\n test/queues/model/queues_queries_test.exs:52\n\n\u001b[33mwarning: \u001b[0mvar"},{"event":"cmd_output","timestamp":1607098207,"output":"iable \"queues\" is unused\n test/queues/model/queues_queries_test.exs:119\n\n\u001b[33mwarning: \u001b[0mvaria"},{"event":"cmd_output","timestamp":1607098207,"output":"ble \"req\" is unused\n test/user_client_test.exs:35\n\n\u001b[33mwarning: \u001b[0mvariable \"next_token\" is un"},{"event":"cmd_output","timestamp":1607098207,"output":"used\n test/workflow/workflow_queries_test.exs:68\n\n\u001b[33mwarning: \u001b[0mvariable \"previous_token\" is"},{"event":"cmd_output","timestamp":1607098207,"output":" unused\n test/workflow/workflow_queries_test.exs:69\n\n\u001b[33mwarning: \u001b[0mvariable \"next_token\" is "},{"event":"cmd_output","timestamp":1607098207,"output":"unused\n test/workflow/workflow_queries_test.exs:125\n\n\u001b[33mwarning: \u001b[0mvariable \"previous_token\""},{"event":"cmd_output","timestamp":1607098207,"output":" is unused\n test/workflow/workflow_queries_test.exs:126\n\n\u001b[33mwarning: \u001b[0mvariable \"next_token\""},{"event":"cmd_output","timestamp":1607098207,"output":" is unused\n test/workflow/workflow_queries_test.exs:178\n\n\u001b[33mwarning: \u001b[0mvariable \"previous_to"},{"event":"cmd_output","timestamp":1607098208,"output":"ken\" is unused\n test/workflow/workflow_queries_test.exs:179\n\n\u001b[33mwarning: \u001b[0mvariable \"message"},{"event":"cmd_output","timestamp":1607098208,"output":"\" is unused\n test/workflow/workflow_api_server_test.exs:602\n\n\u001b[33mwarning: \u001b[0mvariable \"tot_ent"},{"event":"cmd_output","timestamp":1607098208,"output":"ries\" is unused\n test/workflow/workflow_api_server_test.exs:651\n\n\u001b[33mwarning: \u001b[0mvariable \"tot"},{"event":"cmd_output","timestamp":1607098208,"output":"_pages\" is unused\n test/workflow/workflow_api_server_test.exs:651\n\n\u001b[33mwarning: \u001b[0mvariable \"t"},{"event":"cmd_output","timestamp":1607098208,"output":"ot_pages\" is unused\n test/workflow/workflow_api_server_test.exs:658\n\n\u001b[33mwarning: \u001b[0mvariable "},{"event":"cmd_output","timestamp":1607098208,"output":"\"tot_entries\" is unused\n test/workflow/workflow_api_server_test.exs:659\n\n\u001b[33mwarning: \u001b[0mvaria"},{"event":"cmd_output","timestamp":1607098208,"output":"ble \"ind\" is unused\n test/workflow/workflow_api_server_test.exs:681\n\n\u001b[33mwarning: \u001b[0mvariable "},{"event":"cmd_output","timestamp":1607098208,"output":"\"token\" is unused\n test/workflow/workflow_api_server_test.exs:841\n\n\u001b[33mwarning: \u001b[0mvariable \"a"},{"event":"cmd_output","timestamp":1607098208,"output":"\" is unused\n test/workflow/workflow_api_server_test.exs:846\n\n\u001b[33mwarning: \u001b[0mvariable \"i\" is u"},{"event":"cmd_output","timestamp":1607098208,"output":"nused\n test/workflow/workflow_api_server_test.exs:847\n\n\u001b[33mwarning: \u001b[0mvariable \"a\" is unused\r"},{"event":"cmd_output","timestamp":1607098208,"output":"\n test/workflow/workflow_api_server_test.exs:852\n\n\u001b[33mwarning: \u001b[0mvariable \"i\" is unused\n tes"},{"event":"cmd_output","timestamp":1607098208,"output":"t/workflow/workflow_api_server_test.exs:853\n\n\u001b[33mwarning: \u001b[0mvariable \"token\" is unused\n test/"},{"event":"cmd_output","timestamp":1607098208,"output":"workflow/workflow_api_server_test.exs:863\n\n\u001b[33mwarning: \u001b[0mvariable \"a\" is unused\n test/workfl"},{"event":"cmd_output","timestamp":1607098208,"output":"ow/workflow_api_server_test.exs:868\n\n\u001b[33mwarning: \u001b[0mvariable \"i\" is unused\n test/workflow/wor"},{"event":"cmd_output","timestamp":1607098208,"output":"kflow_api_server_test.exs:869\n\n\u001b[33mwarning: \u001b[0mvariable \"a\" is unused\n test/workflow/workflow_"},{"event":"cmd_output","timestamp":1607098208,"output":"api_server_test.exs:874\n\n\u001b[33mwarning: \u001b[0mvariable \"i\" is unused\n test/workflow/workflow_api_se"},{"event":"cmd_output","timestamp":1607098208,"output":"rver_test.exs:875\n\n\nPlumber.WorkflowAPI.Server.Test\n * test gRPC list() - filter by requester_i"},{"event":"cmd_output","timestamp":1607098208,"output":"d\r * test gRPC list() - filter by requester_id (skipped)\n * test gRPC list_grouped() - returns la"},{"event":"cmd_output","timestamp":1607098208,"output":"test workflow per distinct label when given valid params\u001b[22m\n16:10:08.715 [info] Request: 'run: %"},{"event":"cmd_output","timestamp":1607098208,"output":"{\"branch_id\" => \"9c4b8feb-415b-4637-ac1e-e82bcf8bd02f\", \"branch_name\" => \"master\", \"client_id\" => \"f"},{"event":"cmd_output","timestamp":1607098208,"output":"bc724dd-5ca0-47df-8b7d-2b6be1bd9ee7\", \"commit_sha\" => \"75891a4469\", \"definition_file\" => \"\", \"hook_i"},{"event":"cmd_output","timestamp":1607098208,"output":"d\" => \"branch\", \"label\" => \"master-0\", \"organization_id\" => \"30948249-89ce-4b01-bbf0-13c50974a1d0\", "},{"event":"cmd_output","timestamp":1607098208,"output":"\"owner\" => \"rt\", \"project_id\" => \"list_grouped\", \"repo_name\" => \"2_basic\", \"request_token\" => \"2debe"},{"event":"cmd_output","timestamp":1607098208,"output":"920-364b-11eb-ba5a-5254005464e2\", \"requester_id\" => \"6b5b6b2c-b619-435d-a60d-549e852d6d02\", \"service"},{"event":"cmd_output","timestamp":1607098208,"output":"\" => \"local\", \"snapshot_id\" => \"\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"tr"},{"event":"cmd_output","timestamp":1607098208,"output":"iggered_by\" => \"hook\", \"wf_id\" => \"c77a4d68-886d-441f-b080-96d2ff13ff51\"}\n\u001b[0m\u001b[22m\n16:10:08.821 ["},{"event":"cmd_output","timestamp":1607098208,"output":"info] ppl_id: f8417768-647c-4f8c-9f21-79ee3579d746, type: PplRequests, event: persisted schedule re"},{"event":"cmd_output","timestamp":1607098208,"output":"quest with request_token: 2debe920-364b-11eb-ba5a-5254005464e2, origin: Elixir.Ppl.PplRequests.Model"},{"event":"cmd_output","timestamp":1607098208,"output":".PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:08.831 [info] ppl_id: f8417768-647c"},{"event":"cmd_output","timestamp":1607098208,"output":"-4f8c-9f21-79ee3579d746, type: Ppls, state: initializing, event: initializing, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098208,"output":"igin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:08.865 [info] "},{"event":"cmd_output","timestamp":1607098208,"output":"Project list_grouped and branch masterlatest_wf details updated: \"wf_id: c77a4d68-886d-441f-b080-96d"},{"event":"cmd_output","timestamp":1607098208,"output":"2ff13ff51, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:10:08.891 [info] Persisted ppl_sub_init for pipeline with p"},{"event":"cmd_output","timestamp":1607098208,"output":"pl_id: f8417768-647c-4f8c-9f21-79ee3579d746: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Sche"},{"event":"cmd_output","timestamp":1607098208,"output":"ma.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 1, in_"},{"event":"cmd_output","timestamp":1607098208,"output":"scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:10:08.871101], pipeline_reque"},{"event":"cmd_output","timestamp":1607098208,"output":"sts: #Ecto.Association.NotLoaded, ppl_id: \"f8417768-64"},{"event":"cmd_output","timestamp":1607098208,"output":"7c-4f8c-9f21-79ee3579d746\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", te"},{"event":"cmd_output","timestamp":1607098208,"output":"rminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:08.871112]}\n\u001b[0m"},{"event":"cmd_output","timestamp":1607098208,"output":"\u001b[22m\n16:10:08.948 [info] Request: 'run: %{\"branch_id\" => \"1c59eb04-df20-445f-8298-656a653fa20a\", "},{"event":"cmd_output","timestamp":1607098208,"output":"\"branch_name\" => \"master\", \"client_id\" => \"cdaaed5d-7796-4cf4-80d8-af557c194661\", \"commit_sha\" => \"7"},{"event":"cmd_output","timestamp":1607098208,"output":"5891a4469\", \"definition_file\" => \"\", \"hook_id\" => \"branch\", \"label\" => \"master-1\", \"organization_id\""},{"event":"cmd_output","timestamp":1607098208,"output":" => \"b58fea44-f79c-4966-8292-b315d6a60b77\", \"owner\" => \"rt\", \"project_id\" => \"list_grouped\", \"repo_n"},{"event":"cmd_output","timestamp":1607098208,"output":"ame\" => \"2_basic\", \"request_token\" => \"2e21dcba-364b-11eb-89af-5254005464e2\", \"requester_id\" => \"464"},{"event":"cmd_output","timestamp":1607098208,"output":"6b699-5433-40bb-915a-4710d96ad488\", \"service\" => \"local\", \"snapshot_id\" => \"\", \"suppressed_attribute"},{"event":"cmd_output","timestamp":1607098208,"output":"s\" => [\"access_token\", \"client_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"4edd00bc-2608-4a49-8c"},{"event":"cmd_output","timestamp":1607098208,"output":"b6-15e2e1441ddd\"}\n\u001b[0m\u001b[22m\n16:10:08.971 [info] ppl_id: 451f2dd4-1ce5-4dae-ba53-aa4aaf0e0daf, typ"},{"event":"cmd_output","timestamp":1607098208,"output":"e: PplRequests, event: persisted schedule request with request_token: 2e21dcba-364b-11eb-89af-525400"},{"event":"cmd_output","timestamp":1607098208,"output":"5464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098208,"output":"\n16:10:08.978 [info] ppl_id: 451f2dd4-1ce5-4dae-ba53-aa4aaf0e0daf, type: Ppls, state: initializing"},{"event":"cmd_output","timestamp":1607098208,"output":", event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response"},{"event":"cmd_output","timestamp":1607098208,"output":"/2(L124), \n\u001b[0m\u001b[22m\n16:10:08.986 [info] Project list_grouped and branch masterlatest_wf details "},{"event":"cmd_output","timestamp":1607098208,"output":"updated: \"wf_id: 4edd00bc-2608-4a49-8cb6-15e2e1441ddd, wf_number: 2\"\n\u001b[0m\u001b[22m\n16:10:08.988 [info]"},{"event":"cmd_output","timestamp":1607098208,"output":" Persisted ppl_sub_init for pipeline with ppl_id: 451f2dd4-1ce5-4dae-ba53-aa4aaf0e0daf: %Ppl.PplSub"},{"event":"cmd_output","timestamp":1607098208,"output":"Inits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task"},{"event":"cmd_output","timestamp":1607098208,"output":"_id: nil, error_description: nil, id: 2, in_scheduling: false, init_type: \"regular\", inserted_at: ~N"},{"event":"cmd_output","timestamp":1607098208,"output":"[2020-12-04 16:10:08.986263], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"451f2dd4-1ce5-4dae-ba53-aa4aaf0e0daf\", recovery_count: 0, result: n"},{"event":"cmd_output","timestamp":1607098208,"output":"il, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updat"},{"event":"cmd_output","timestamp":1607098209,"output":"ed_at: ~N[2020-12-04 16:10:08.986558]}\n\u001b[0m\u001b[22m\n16:10:09.000 [info] Request: 'run: %{\"branch_id\""},{"event":"cmd_output","timestamp":1607098209,"output":" => \"ec85fbe3-5680-4f96-b19c-6f0e3a87aa94\", \"branch_name\" => \"master\", \"client_id\" => \"10e2e55d-4f21"},{"event":"cmd_output","timestamp":1607098209,"output":"-4dc2-9771-ca4c27ac8872\", \"commit_sha\" => \"75891a4469\", \"definition_file\" => \"\", \"hook_id\" => \"branc"},{"event":"cmd_output","timestamp":1607098209,"output":"h\", \"label\" => \"master-2\", \"organization_id\" => \"5e760a3b-1af0-4ab9-929a-61f7a03f5455\", \"owner\" => \""},{"event":"cmd_output","timestamp":1607098209,"output":"rt\", \"project_id\" => \"list_grouped\", \"repo_name\" => \"2_basic\", \"request_token\" => \"2e2ae08a-364b-11e"},{"event":"cmd_output","timestamp":1607098209,"output":"b-9899-5254005464e2\", \"requester_id\" => \"f6744f2b-9177-4927-93fe-b304e4dd6dce\", \"service\" => \"local\""},{"event":"cmd_output","timestamp":1607098209,"output":", \"snapshot_id\" => \"\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"triggered_by\" "},{"event":"cmd_output","timestamp":1607098209,"output":"=> \"hook\", \"wf_id\" => \"e1fbe5c2-6f58-4a66-b109-5e98168d571e\"}\n\u001b[0m\u001b[22m\n16:10:09.024 [info] ppl_i"},{"event":"cmd_output","timestamp":1607098209,"output":"d: 744f7a59-b743-4cb8-8756-33d133517971, type: PplRequests, event: persisted schedule request with r"},{"event":"cmd_output","timestamp":1607098209,"output":"equest_token: 2e2ae08a-364b-11eb-9899-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequests"},{"event":"cmd_output","timestamp":1607098209,"output":"Queries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:09.030 [info] ppl_id: 744f7a59-b743-4cb8-8756-3"},{"event":"cmd_output","timestamp":1607098209,"output":"3d133517971, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098209,"output":".Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:09.035 [info] Project list"},{"event":"cmd_output","timestamp":1607098209,"output":"_grouped and branch masterlatest_wf details updated: \"wf_id: e1fbe5c2-6f58-4a66-b109-5e98168d571e, w"},{"event":"cmd_output","timestamp":1607098209,"output":"f_number: 3\"\n\u001b[0m\u001b[22m\n16:10:09.036 [info] Persisted ppl_sub_init for pipeline with ppl_id: 744f7"},{"event":"cmd_output","timestamp":1607098209,"output":"a59-b743-4cb8-8756-33d133517971: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<"},{"event":"cmd_output","timestamp":1607098209,"output":":loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 3, in_scheduling: "},{"event":"cmd_output","timestamp":1607098209,"output":"false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:10:09.035693], pipeline_requests: #Ecto.A"},{"event":"cmd_output","timestamp":1607098209,"output":"ssociation.NotLoaded, ppl_id: \"744f7a59-b743-4cb8-8756"},{"event":"cmd_output","timestamp":1607098209,"output":"-33d133517971\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_requ"},{"event":"cmd_output","timestamp":1607098209,"output":"est: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:09.035703]}\n\u001b[0m\u001b[22m\n16:10"},{"event":"cmd_output","timestamp":1607098209,"output":":09.049 [info] Request: 'run: %{\"branch_id\" => \"c97e428c-5f65-44b9-a8ab-c54cb2bd4ffc\", \"branch_name"},{"event":"cmd_output","timestamp":1607098209,"output":"\" => \"master\", \"client_id\" => \"72cade68-3ef1-4ce0-8668-42f2d49de55e\", \"commit_sha\" => \"75891a4469\", "},{"event":"cmd_output","timestamp":1607098209,"output":"\"definition_file\" => \"\", \"hook_id\" => \"branch\", \"label\" => \"master-3\", \"organization_id\" => \"8121c90"},{"event":"cmd_output","timestamp":1607098209,"output":"d-b801-4324-864e-778a3506e996\", \"owner\" => \"rt\", \"project_id\" => \"list_grouped\", \"repo_name\" => \"2_b"},{"event":"cmd_output","timestamp":1607098209,"output":"asic\", \"request_token\" => \"2e32a158-364b-11eb-9e9d-5254005464e2\", \"requester_id\" => \"25385111-06de-4"},{"event":"cmd_output","timestamp":1607098209,"output":"fb0-84b5-d869571ad675\", \"service\" => \"local\", \"snapshot_id\" => \"\", \"suppressed_attributes\" => [\"acce"},{"event":"cmd_output","timestamp":1607098209,"output":"ss_token\", \"client_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"87fc1500-4c15-4cce-a8a9-76864fd46"},{"event":"cmd_output","timestamp":1607098209,"output":"c1a\"}\n\u001b[0m\u001b[22m\n16:10:09.078 [info] ppl_id: 10f8d5f9-e0fb-4ba9-b509-b2d99bd16f14, type: PplReques"},{"event":"cmd_output","timestamp":1607098209,"output":"ts, event: persisted schedule request with request_token: 2e32a158-364b-11eb-9e9d-5254005464e2, orig"},{"event":"cmd_output","timestamp":1607098209,"output":"in: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:09.0"},{"event":"cmd_output","timestamp":1607098209,"output":"84 [info] ppl_id: 10f8d5f9-e0fb-4ba9-b509-b2d99bd16f14, type: Ppls, state: initializing, event: ini"},{"event":"cmd_output","timestamp":1607098209,"output":"tializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n"},{"event":"cmd_output","timestamp":1607098209,"output":"\u001b[0m\u001b[22m\n16:10:09.088 [info] Project list_grouped and branch masterlatest_wf details updated: \"wf"},{"event":"cmd_output","timestamp":1607098209,"output":"_id: 87fc1500-4c15-4cce-a8a9-76864fd46c1a, wf_number: 4\"\n\u001b[0m\u001b[22m\n16:10:09.090 [info] Persisted "},{"event":"cmd_output","timestamp":1607098209,"output":"ppl_sub_init for pipeline with ppl_id: 10f8d5f9-e0fb-4ba9-b509-b2d99bd16f14: %Ppl.PplSubInits.Model."},{"event":"cmd_output","timestamp":1607098209,"output":"PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, er"},{"event":"cmd_output","timestamp":1607098209,"output":"ror_description: nil, id: 4, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 "},{"event":"cmd_output","timestamp":1607098209,"output":"16:10:09.088572], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"10f8d5f9-e0fb-4ba9-b509-b2d99bd16f14\", recovery_count: 0, result: nil, result_r"},{"event":"cmd_output","timestamp":1607098209,"output":"eason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[20"},{"event":"cmd_output","timestamp":1607098209,"output":"20-12-04 16:10:09.088582]}\n\u001b[0m\u001b[22m\n16:10:09.103 [info] Request: 'run: %{\"branch_id\" => \"8df2b45"},{"event":"cmd_output","timestamp":1607098209,"output":"2-731b-42a5-af6a-b15047ca8141\", \"branch_name\" => \"master\", \"client_id\" => \"e0e76f68-a151-4c2c-bc06-e"},{"event":"cmd_output","timestamp":1607098209,"output":"2b87d1cc12b\", \"commit_sha\" => \"75891a4469\", \"definition_file\" => \"\", \"hook_id\" => \"branch\", \"label\" "},{"event":"cmd_output","timestamp":1607098209,"output":"=> \"master-4\", \"organization_id\" => \"0f4680df-d5b5-4d05-8d26-8da0059fe091\", \"owner\" => \"rt\", \"projec"},{"event":"cmd_output","timestamp":1607098209,"output":"t_id\" => \"list_grouped\", \"repo_name\" => \"2_basic\", \"request_token\" => \"2e3ab2ee-364b-11eb-90e2-52540"},{"event":"cmd_output","timestamp":1607098209,"output":"05464e2\", \"requester_id\" => \"7917bdd9-4013-4a6f-be85-70e6d898a237\", \"service\" => \"local\", \"snapshot_"},{"event":"cmd_output","timestamp":1607098209,"output":"id\" => \"\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"triggered_by\" => \"hook\", \""},{"event":"cmd_output","timestamp":1607098209,"output":"wf_id\" => \"446c1759-cc53-46c5-8131-c36674b524f0\"}\n\u001b[0m\u001b[22m\n16:10:09.143 [info] ppl_id: a156cb57-"},{"event":"cmd_output","timestamp":1607098209,"output":"e802-46aa-b3bd-1ef79b3be293, type: PplRequests, event: persisted schedule request with request_token"},{"event":"cmd_output","timestamp":1607098209,"output":": 2e3ab2ee-364b-11eb-90e2-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.proc"},{"event":"cmd_output","timestamp":1607098209,"output":"ess_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:09.149 [info] ppl_id: a156cb57-e802-46aa-b3bd-1ef79b3be293,"},{"event":"cmd_output","timestamp":1607098209,"output":" type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Mo"},{"event":"cmd_output","timestamp":1607098209,"output":"del.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:09.154 [info] Project list_grouped and"},{"event":"cmd_output","timestamp":1607098209,"output":" branch masterlatest_wf details updated: \"wf_id: 446c1759-cc53-46c5-8131-c36674b524f0, wf_number: 5\""},{"event":"cmd_output","timestamp":1607098209,"output":"\n\u001b[0m\u001b[22m\n16:10:09.157 [info] Persisted ppl_sub_init for pipeline with ppl_id: a156cb57-e802-46a"},{"event":"cmd_output","timestamp":1607098209,"output":"a-b3bd-1ef79b3be293: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pi"},{"event":"cmd_output","timestamp":1607098209,"output":"peline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 5, in_scheduling: false, init_"},{"event":"cmd_output","timestamp":1607098209,"output":"type: \"regular\", inserted_at: ~N[2020-12-04 16:10:09.154892], pipeline_requests: #Ecto.Association.N"},{"event":"cmd_output","timestamp":1607098209,"output":"otLoaded, ppl_id: \"a156cb57-e802-46aa-b3bd-1ef79b3be29"},{"event":"cmd_output","timestamp":1607098209,"output":"3\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, te"},{"event":"cmd_output","timestamp":1607098209,"output":"rminate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:09.154906]}\n\u001b[0m\u001b[22m\n16:10:09.173 [inf"},{"event":"cmd_output","timestamp":1607098209,"output":"o] Request: 'run: %{\"branch_id\" => \"72ed8c86-c851-455c-82eb-fb8a7ab158c8\", \"branch_name\" => \"master"},{"event":"cmd_output","timestamp":1607098209,"output":"\", \"client_id\" => \"08d37d52-c423-40ad-9036-9a4878804798\", \"commit_sha\" => \"75891a4469\", \"definition_"},{"event":"cmd_output","timestamp":1607098209,"output":"file\" => \"\", \"hook_id\" => \"branch\", \"label\" => \"master-5\", \"organization_id\" => \"d259e5e2-6978-48af-"},{"event":"cmd_output","timestamp":1607098209,"output":"ae0e-c7eee9b3f49a\", \"owner\" => \"rt\", \"project_id\" => \"list_grouped\", \"repo_name\" => \"2_basic\", \"requ"},{"event":"cmd_output","timestamp":1607098209,"output":"est_token\" => \"2e4567ac-364b-11eb-a763-5254005464e2\", \"requester_id\" => \"0a1e6a23-ee57-4571-89c5-389"},{"event":"cmd_output","timestamp":1607098209,"output":"3f3e5d6e6\", \"service\" => \"local\", \"snapshot_id\" => \"\", \"suppressed_attributes\" => [\"access_token\", \""},{"event":"cmd_output","timestamp":1607098209,"output":"client_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"a3c2949d-3959-4c48-9bbd-78700f47de3a\"}\n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098209,"output":"[22m\n16:10:09.204 [info] ppl_id: ad902bad-7a6c-4a0e-944b-675869cac0fc, type: PplRequests, event: p"},{"event":"cmd_output","timestamp":1607098209,"output":"ersisted schedule request with request_token: 2e4567ac-364b-11eb-a763-5254005464e2, origin: Elixir.P"},{"event":"cmd_output","timestamp":1607098209,"output":"pl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:09.211 [info] p"},{"event":"cmd_output","timestamp":1607098209,"output":"pl_id: ad902bad-7a6c-4a0e-944b-675869cac0fc, type: Ppls, state: initializing, event: initializing, r"},{"event":"cmd_output","timestamp":1607098209,"output":"ecovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098209,"output":"6:10:09.216 [info] Project list_grouped and branch masterlatest_wf details updated: \"wf_id: a3c2949"},{"event":"cmd_output","timestamp":1607098209,"output":"d-3959-4c48-9bbd-78700f47de3a, wf_number: 6\"\n\u001b[0m\u001b[22m\n16:10:09.220 [info] Persisted ppl_sub_init"},{"event":"cmd_output","timestamp":1607098209,"output":" for pipeline with ppl_id: ad902bad-7a6c-4a0e-944b-675869cac0fc: %Ppl.PplSubInits.Model.PplSubInits{"},{"event":"cmd_output","timestamp":1607098209,"output":"__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_descript"},{"event":"cmd_output","timestamp":1607098209,"output":"ion: nil, id: 6, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:10:09.218"},{"event":"cmd_output","timestamp":1607098209,"output":"588], pipeline_requests: #Ecto.Association.NotLoaded, "},{"event":"cmd_output","timestamp":1607098209,"output":"ppl_id: \"ad902bad-7a6c-4a0e-944b-675869cac0fc\", recovery_count: 0, result: nil, result_reason: nil, "},{"event":"cmd_output","timestamp":1607098209,"output":"state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:"},{"event":"cmd_output","timestamp":1607098209,"output":"10:09.218602]}\n\u001b[0m\u001b[22m\n16:10:09.239 [info] Request: 'run: %{\"branch_id\" => \"0e8ba7c4-b92a-401f-"},{"event":"cmd_output","timestamp":1607098209,"output":"8822-b00fb852bf60\", \"branch_name\" => \"master\", \"client_id\" => \"6d7e45b4-f3ef-443e-b16f-c6b1b045fcf7\""},{"event":"cmd_output","timestamp":1607098209,"output":", \"commit_sha\" => \"75891a4469\", \"definition_file\" => \"\", \"hook_id\" => \"tag\", \"label\" => \"refs/tags/v"},{"event":"cmd_output","timestamp":1607098209,"output":"1.6\", \"organization_id\" => \"bd002e52-69ff-4bbb-b930-769a19cbcec9\", \"owner\" => \"rt\", \"project_id\" => "},{"event":"cmd_output","timestamp":1607098209,"output":"\"list_grouped\", \"repo_name\" => \"2_basic\", \"request_token\" => \"2e4eccfc-364b-11eb-97d7-5254005464e2\","},{"event":"cmd_output","timestamp":1607098209,"output":" \"requester_id\" => \"b67797b8-ed13-40c0-aeff-fc695782f941\", \"service\" => \"local\", \"snapshot_id\" => \"\""},{"event":"cmd_output","timestamp":1607098209,"output":", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" =>"},{"event":"cmd_output","timestamp":1607098209,"output":" \"00fa8079-0135-446e-8365-ec59cfd88778\"}\n\u001b[0m\u001b[22m\n16:10:09.272 [info] ppl_id: f3948fcc-c38d-4cfa"},{"event":"cmd_output","timestamp":1607098209,"output":"-a202-3e631e236c7c, type: PplRequests, event: persisted schedule request with request_token: 2e4eccf"},{"event":"cmd_output","timestamp":1607098209,"output":"c-364b-11eb-97d7-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_respo"},{"event":"cmd_output","timestamp":1607098209,"output":"nse/2(L55), \n\u001b[0m\u001b[22m\n16:10:09.278 [info] ppl_id: f3948fcc-c38d-4cfa-a202-3e631e236c7c, type: Pp"},{"event":"cmd_output","timestamp":1607098209,"output":"ls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQ"},{"event":"cmd_output","timestamp":1607098209,"output":"ueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:09.283 [info] Project list_grouped and branch m"},{"event":"cmd_output","timestamp":1607098209,"output":"asterlatest_wf details updated: \"wf_id: 00fa8079-0135-446e-8365-ec59cfd88778, wf_number: 7\"\n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098209,"output":"2m\n16:10:09.285 [info] Persisted ppl_sub_init for pipeline with ppl_id: f3948fcc-c38d-4cfa-a202-3e"},{"event":"cmd_output","timestamp":1607098209,"output":"631e236c7c: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_su"},{"event":"cmd_output","timestamp":1607098209,"output":"b_inits\">, compile_task_id: nil, error_description: nil, id: 7, in_scheduling: false, init_type: \"re"},{"event":"cmd_output","timestamp":1607098209,"output":"gular\", inserted_at: ~N[2020-12-04 16:10:09.283755], pipeline_requests: #Ecto.Association.NotLoaded<"},{"event":"cmd_output","timestamp":1607098209,"output":"association :pipeline_requests is not loaded>, ppl_id: \"f3948fcc-c38d-4cfa-a202-3e631e236c7c\", recov"},{"event":"cmd_output","timestamp":1607098209,"output":"ery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_r"},{"event":"cmd_output","timestamp":1607098209,"output":"equest_desc: nil, updated_at: ~N[2020-12-04 16:10:09.283767]}\n\u001b[0m\u001b[22m\n16:10:09.304 [info] Reque"},{"event":"cmd_output","timestamp":1607098209,"output":"st: 'run: %{\"branch_id\" => \"64751c95-9ece-402d-a367-22d04f8b65db\", \"branch_name\" => \"master\", \"clien"},{"event":"cmd_output","timestamp":1607098209,"output":"t_id\" => \"ac2bf3d5-1720-4e11-838f-19bf6dda6259\", \"commit_sha\" => \"75891a4469\", \"definition_file\" => "},{"event":"cmd_output","timestamp":1607098209,"output":"\"\", \"hook_id\" => \"tag\", \"label\" => \"refs/tags/v1.7\", \"organization_id\" => \"be43d966-c642-4587-b667-8"},{"event":"cmd_output","timestamp":1607098209,"output":"630a4d24d1d\", \"owner\" => \"rt\", \"project_id\" => \"list_grouped\", \"repo_name\" => \"2_basic\", \"request_to"},{"event":"cmd_output","timestamp":1607098209,"output":"ken\" => \"2e5955aa-364b-11eb-a2f0-5254005464e2\", \"requester_id\" => \"d1bc841f-f6e0-4d95-b4b1-266afc145"},{"event":"cmd_output","timestamp":1607098209,"output":"f68\", \"service\" => \"local\", \"snapshot_id\" => \"\", \"suppressed_attributes\" => [\"access_token\", \"client"},{"event":"cmd_output","timestamp":1607098209,"output":"_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"04efe8d9-d8bd-4c2c-8f43-9454be652105\"}\n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098209,"output":"16:10:09.339 [info] ppl_id: 9c52e284-86f8-496a-bb60-679230b02f4f, type: PplRequests, event: persist"},{"event":"cmd_output","timestamp":1607098209,"output":"ed schedule request with request_token: 2e5955aa-364b-11eb-a2f0-5254005464e2, origin: Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098209,"output":"Requests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:09.346 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098209,"output":" 9c52e284-86f8-496a-bb60-679230b02f4f, type: Ppls, state: initializing, event: initializing, recover"},{"event":"cmd_output","timestamp":1607098209,"output":"y_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:0"},{"event":"cmd_output","timestamp":1607098209,"output":"9.354 [info] Project list_grouped and branch masterlatest_wf details updated: \"wf_id: 04efe8d9-d8bd"},{"event":"cmd_output","timestamp":1607098209,"output":"-4c2c-8f43-9454be652105, wf_number: 8\"\n\u001b[0m\u001b[22m\n16:10:09.357 [info] Persisted ppl_sub_init for p"},{"event":"cmd_output","timestamp":1607098209,"output":"ipeline with ppl_id: 9c52e284-86f8-496a-bb60-679230b02f4f: %Ppl.PplSubInits.Model.PplSubInits{__meta"},{"event":"cmd_output","timestamp":1607098209,"output":"__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: n"},{"event":"cmd_output","timestamp":1607098209,"output":"il, id: 8, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:10:09.355319], "},{"event":"cmd_output","timestamp":1607098209,"output":"pipeline_requests: #Ecto.Association.NotLoaded, ppl_id"},{"event":"cmd_output","timestamp":1607098209,"output":": \"9c52e284-86f8-496a-bb60-679230b02f4f\", recovery_count: 0, result: nil, result_reason: nil, state:"},{"event":"cmd_output","timestamp":1607098209,"output":" \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:09."},{"event":"cmd_output","timestamp":1607098209,"output":"355333]}\n\u001b[0m\u001b[22m\n16:10:09.373 [info] Request: 'run: %{\"branch_id\" => \"b928f08d-4412-46d0-96a3-5"},{"event":"cmd_output","timestamp":1607098209,"output":"9c5b5c63862\", \"branch_name\" => \"master\", \"client_id\" => \"97642005-a9c3-4fb0-abd7-379e9db880c2\", \"com"},{"event":"cmd_output","timestamp":1607098209,"output":"mit_sha\" => \"75891a4469\", \"definition_file\" => \"\", \"hook_id\" => \"tag\", \"label\" => \"refs/tags/v1.8\", "},{"event":"cmd_output","timestamp":1607098209,"output":"\"organization_id\" => \"6fc58770-a07a-44aa-894c-ca6d23c3578d\", \"owner\" => \"rt\", \"project_id\" => \"list_"},{"event":"cmd_output","timestamp":1607098209,"output":"grouped\", \"repo_name\" => \"2_basic\", \"request_token\" => \"2e635622-364b-11eb-a079-5254005464e2\", \"requ"},{"event":"cmd_output","timestamp":1607098209,"output":"ester_id\" => \"98576140-c75c-4422-8aff-8f31ba198def\", \"service\" => \"local\", \"snapshot_id\" => \"\", \"sup"},{"event":"cmd_output","timestamp":1607098209,"output":"pressed_attributes\" => [\"access_token\", \"client_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"1225"},{"event":"cmd_output","timestamp":1607098209,"output":"f9ca-13a7-4cd9-84b4-89366fbd7c2e\"}\n\u001b[0m\u001b[22m\n16:10:09.407 [info] ppl_id: 6d621a6a-b251-4df8-833c-"},{"event":"cmd_output","timestamp":1607098209,"output":"890b56e41b2b, type: PplRequests, event: persisted schedule request with request_token: 2e635622-364b"},{"event":"cmd_output","timestamp":1607098209,"output":"-11eb-a079-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2("},{"event":"cmd_output","timestamp":1607098209,"output":"L55), \n\u001b[0m\u001b[22m\n16:10:09.415 [info] ppl_id: 6d621a6a-b251-4df8-833c-890b56e41b2b, type: Ppls, st"},{"event":"cmd_output","timestamp":1607098209,"output":"ate: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries"},{"event":"cmd_output","timestamp":1607098209,"output":".process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:09.422 [info] Project list_grouped and branch masterl"},{"event":"cmd_output","timestamp":1607098209,"output":"atest_wf details updated: \"wf_id: 1225f9ca-13a7-4cd9-84b4-89366fbd7c2e, wf_number: 9\"\n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098209,"output":":10:09.427 [info] Persisted ppl_sub_init for pipeline with ppl_id: 6d621a6a-b251-4df8-833c-890b56e4"},{"event":"cmd_output","timestamp":1607098209,"output":"1b2b: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_init"},{"event":"cmd_output","timestamp":1607098209,"output":"s\">, compile_task_id: nil, error_description: nil, id: 9, in_scheduling: false, init_type: \"regular\""},{"event":"cmd_output","timestamp":1607098209,"output":", inserted_at: ~N[2020-12-04 16:10:09.424662], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"6d621a6a-b251-4df8-833c-890b56e41b2b\", recovery_co"},{"event":"cmd_output","timestamp":1607098209,"output":"unt: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request"},{"event":"cmd_output","timestamp":1607098209,"output":"_desc: nil, updated_at: ~N[2020-12-04 16:10:09.424676]}\n\u001b[0m\u001b[22m\n16:10:09.451 [info] Request: 'r"},{"event":"cmd_output","timestamp":1607098209,"output":"un: %{\"branch_id\" => \"49eda626-7de2-4741-bd0b-716e5485faa6\", \"branch_name\" => \"master\", \"client_id\" "},{"event":"cmd_output","timestamp":1607098209,"output":"=> \"34ec7840-cdba-4e83-98d5-865d7efdf1d1\", \"commit_sha\" => \"75891a4469\", \"definition_file\" => \"\", \"h"},{"event":"cmd_output","timestamp":1607098209,"output":"ook_id\" => \"tag\", \"label\" => \"refs/tags/v1.9\", \"organization_id\" => \"91fa9a1e-c317-47ca-91bf-e6651ca"},{"event":"cmd_output","timestamp":1607098209,"output":"cea93\", \"owner\" => \"rt\", \"project_id\" => \"list_grouped\", \"repo_name\" => \"2_basic\", \"request_token\" ="},{"event":"cmd_output","timestamp":1607098209,"output":"> \"2e6f02d8-364b-11eb-8775-5254005464e2\", \"requester_id\" => \"c8b5da22-7c5d-4494-9cd9-fea8abf6207d\", "},{"event":"cmd_output","timestamp":1607098209,"output":"\"service\" => \"local\", \"snapshot_id\" => \"\", \"suppressed_attributes\" => [\"access_token\", \"client_secre"},{"event":"cmd_output","timestamp":1607098209,"output":"t\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"d63f9324-430a-4adc-9af2-f11c5e1a9c9a\"}\n\u001b[0m\u001b[22m\n16:10:"},{"event":"cmd_output","timestamp":1607098209,"output":"09.490 [info] ppl_id: b3db881a-96cd-4172-b05f-dd75d21e74db, type: PplRequests, event: persisted sch"},{"event":"cmd_output","timestamp":1607098209,"output":"edule request with request_token: 2e6f02d8-364b-11eb-8775-5254005464e2, origin: Elixir.Ppl.PplReques"},{"event":"cmd_output","timestamp":1607098209,"output":"ts.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:09.500 [info] ppl_id: b3db8"},{"event":"cmd_output","timestamp":1607098209,"output":"81a-96cd-4172-b05f-dd75d21e74db, type: Ppls, state: initializing, event: initializing, recovery_coun"},{"event":"cmd_output","timestamp":1607098209,"output":"t: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:09.510 "},{"event":"cmd_output","timestamp":1607098209,"output":"[info] Project list_grouped and branch masterlatest_wf details updated: \"wf_id: d63f9324-430a-4adc-"},{"event":"cmd_output","timestamp":1607098209,"output":"9af2-f11c5e1a9c9a, wf_number: 10\"\n\u001b[0m\u001b[22m\n16:10:09.514 [info] Persisted ppl_sub_init for pipeli"},{"event":"cmd_output","timestamp":1607098209,"output":"ne with ppl_id: b3db881a-96cd-4172-b05f-dd75d21e74db: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #"},{"event":"cmd_output","timestamp":1607098209,"output":"Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, i"},{"event":"cmd_output","timestamp":1607098209,"output":"d: 10, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:10:09.512566], pipe"},{"event":"cmd_output","timestamp":1607098209,"output":"line_requests: #Ecto.Association.NotLoaded, ppl_id: \"b"},{"event":"cmd_output","timestamp":1607098209,"output":"3db881a-96cd-4172-b05f-dd75d21e74db\", recovery_count: 0, result: nil, result_reason: nil, state: \"cr"},{"event":"cmd_output","timestamp":1607098209,"output":"eated\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:09.5125"},{"event":"cmd_output","timestamp":1607098209,"output":"80]}\n\u001b[0m\u001b[22m\n16:10:09.527 [info] Request: 'run: %{\"branch_id\" => \"5f8704d1-cd4a-457a-b69b-23274"},{"event":"cmd_output","timestamp":1607098209,"output":"42893e9\", \"branch_name\" => \"master\", \"client_id\" => \"33d1eaa6-1144-42a8-b26f-012ee078e16f\", \"commit_"},{"event":"cmd_output","timestamp":1607098209,"output":"sha\" => \"75891a4469\", \"definition_file\" => \"\", \"hook_id\" => \"tag\", \"label\" => \"refs/tags/v1.10\", \"or"},{"event":"cmd_output","timestamp":1607098209,"output":"ganization_id\" => \"b1868eee-fa76-4031-ad26-8f82a1d83f2f\", \"owner\" => \"rt\", \"project_id\" => \"list_gro"},{"event":"cmd_output","timestamp":1607098209,"output":"uped\", \"repo_name\" => \"2_basic\", \"request_token\" => \"2e7b8c06-364b-11eb-b11b-5254005464e2\", \"request"},{"event":"cmd_output","timestamp":1607098209,"output":"er_id\" => \"8112e829-c7a3-4b53-9c3f-3c056f07042a\", \"service\" => \"local\", \"snapshot_id\" => \"\", \"suppre"},{"event":"cmd_output","timestamp":1607098209,"output":"ssed_attributes\" => [\"access_token\", \"client_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"6da220f"},{"event":"cmd_output","timestamp":1607098209,"output":"4-d705-4f73-805d-ce2db2bd3b1b\"}\n\u001b[0m\u001b[22m\n16:10:09.559 [info] ppl_id: 6ed662cb-2593-40e8-ba32-ff3"},{"event":"cmd_output","timestamp":1607098209,"output":"981693ad2, type: PplRequests, event: persisted schedule request with request_token: 2e7b8c06-364b-11"},{"event":"cmd_output","timestamp":1607098209,"output":"eb-b11b-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55"},{"event":"cmd_output","timestamp":1607098209,"output":"), \n\u001b[0m\u001b[22m\n16:10:09.562 [info] ppl_id: 6ed662cb-2593-40e8-ba32-ff3981693ad2, type: Ppls, state"},{"event":"cmd_output","timestamp":1607098209,"output":": initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.pr"},{"event":"cmd_output","timestamp":1607098209,"output":"ocess_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:09.566 [info] Project list_grouped and branch masterlate"},{"event":"cmd_output","timestamp":1607098209,"output":"st_wf details updated: \"wf_id: 6da220f4-d705-4f73-805d-ce2db2bd3b1b, wf_number: 11\"\n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098209,"output":"0:09.575 [info] Persisted ppl_sub_init for pipeline with ppl_id: 6ed662cb-2593-40e8-ba32-ff3981693a"},{"event":"cmd_output","timestamp":1607098209,"output":"d2: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\""},{"event":"cmd_output","timestamp":1607098209,"output":">, compile_task_id: nil, error_description: nil, id: 11, in_scheduling: false, init_type: \"regular\","},{"event":"cmd_output","timestamp":1607098209,"output":" inserted_at: ~N[2020-12-04 16:10:09.566918], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"6ed662cb-2593-40e8-ba32-ff3981693ad2\", recovery_cou"},{"event":"cmd_output","timestamp":1607098209,"output":"nt: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_"},{"event":"cmd_output","timestamp":1607098209,"output":"desc: nil, updated_at: ~N[2020-12-04 16:10:09.566927]}\n\u001b[0m\u001b[22m\n16:10:09.591 [info] Request: 'ru"},{"event":"cmd_output","timestamp":1607098209,"output":"n: %{\"branch_id\" => \"4256ff01-2e0f-4b94-8ba2-4b52fe9512f3\", \"branch_name\" => \"master\", \"client_id\" ="},{"event":"cmd_output","timestamp":1607098209,"output":"> \"ea63b5f7-17a4-47b1-b75d-ee393aab894c\", \"commit_sha\" => \"75891a4469\", \"definition_file\" => \"\", \"ho"},{"event":"cmd_output","timestamp":1607098209,"output":"ok_id\" => \"tag\", \"label\" => \"refs/tags/v1.11\", \"organization_id\" => \"c4ebc2b9-0a96-4e48-a5a2-fb3566d"},{"event":"cmd_output","timestamp":1607098209,"output":"f5bf7\", \"owner\" => \"rt\", \"project_id\" => \"list_grouped\", \"repo_name\" => \"2_basic\", \"request_token\" ="},{"event":"cmd_output","timestamp":1607098209,"output":"> \"2e847262-364b-11eb-b12b-5254005464e2\", \"requester_id\" => \"55fb322b-f188-4db3-b64e-6a802d94b33b\", "},{"event":"cmd_output","timestamp":1607098209,"output":"\"service\" => \"local\", \"snapshot_id\" => \"\", \"suppressed_attributes\" => [\"access_token\", \"client_secre"},{"event":"cmd_output","timestamp":1607098209,"output":"t\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"2b8f9921-04b3-4eda-9a37-bfbe2d035fdb\"}\n\u001b[0m\u001b[22m\n16:10:"},{"event":"cmd_output","timestamp":1607098209,"output":"09.622 [info] ppl_id: 2483651c-19f5-4776-9786-44f6100dbdc1, type: PplRequests, event: persisted sch"},{"event":"cmd_output","timestamp":1607098209,"output":"edule request with request_token: 2e847262-364b-11eb-b12b-5254005464e2, origin: Elixir.Ppl.PplReques"},{"event":"cmd_output","timestamp":1607098209,"output":"ts.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:09.626 [info] ppl_id: 24836"},{"event":"cmd_output","timestamp":1607098209,"output":"51c-19f5-4776-9786-44f6100dbdc1, type: Ppls, state: initializing, event: initializing, recovery_coun"},{"event":"cmd_output","timestamp":1607098209,"output":"t: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:09.630 "},{"event":"cmd_output","timestamp":1607098209,"output":"[info] Project list_grouped and branch masterlatest_wf details updated: \"wf_id: 2b8f9921-04b3-4eda-"},{"event":"cmd_output","timestamp":1607098209,"output":"9a37-bfbe2d035fdb, wf_number: 12\"\n\u001b[0m\u001b[22m\n16:10:09.632 [info] Persisted ppl_sub_init for pipeli"},{"event":"cmd_output","timestamp":1607098209,"output":"ne with ppl_id: 2483651c-19f5-4776-9786-44f6100dbdc1: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #"},{"event":"cmd_output","timestamp":1607098209,"output":"Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, i"},{"event":"cmd_output","timestamp":1607098209,"output":"d: 12, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:10:09.630400], pipe"},{"event":"cmd_output","timestamp":1607098209,"output":"line_requests: #Ecto.Association.NotLoaded, ppl_id: \"2"},{"event":"cmd_output","timestamp":1607098209,"output":"483651c-19f5-4776-9786-44f6100dbdc1\", recovery_count: 0, result: nil, result_reason: nil, state: \"cr"},{"event":"cmd_output","timestamp":1607098209,"output":"eated\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:09.6307"},{"event":"cmd_output","timestamp":1607098209,"output":"91]}\n\u001b[0m\u001b[22m\n16:10:09.667 [info] Request: 'run: %{\"branch_id\" => \"6ff825cc-d33b-4f1d-9e07-44fbf"},{"event":"cmd_output","timestamp":1607098209,"output":"62ee3a8\", \"branch_name\" => \"master\", \"client_id\" => \"edc79119-d9bc-4ec9-acd2-5d9b3bbdf39d\", \"commit_"},{"event":"cmd_output","timestamp":1607098209,"output":"sha\" => \"75891a4469\", \"definition_file\" => \"\", \"hook_id\" => \"pr\", \"label\" => \"pull-request-1212\", \"o"},{"event":"cmd_output","timestamp":1607098209,"output":"rganization_id\" => \"05a613aa-3625-49c8-887c-30dec00b5c83\", \"owner\" => \"rt\", \"project_id\" => \"list_gr"},{"event":"cmd_output","timestamp":1607098209,"output":"ouped\", \"repo_name\" => \"2_basic\", \"request_token\" => \"2e90e876-364b-11eb-87a2-5254005464e2\", \"reques"},{"event":"cmd_output","timestamp":1607098209,"output":"ter_id\" => \"877b3179-18c3-42fc-ae9a-31928e3a32df\", \"service\" => \"local\", \"snapshot_id\" => \"\", \"suppr"},{"event":"cmd_output","timestamp":1607098209,"output":"essed_attributes\" => [\"access_token\", \"client_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"a410ba"},{"event":"cmd_output","timestamp":1607098209,"output":"80-84e0-44b1-9a0d-5a782a46a079\"}\n\u001b[0m\u001b[22m\n16:10:09.701 [info] ppl_id: 3d6f1f89-3cd1-47de-892c-df"},{"event":"cmd_output","timestamp":1607098209,"output":"fdcea48d92, type: PplRequests, event: persisted schedule request with request_token: 2e90e876-364b-1"},{"event":"cmd_output","timestamp":1607098209,"output":"1eb-87a2-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L5"},{"event":"cmd_output","timestamp":1607098209,"output":"5), \n\u001b[0m\u001b[22m\n16:10:09.704 [info] ppl_id: 3d6f1f89-3cd1-47de-892c-dffdcea48d92, type: Ppls, stat"},{"event":"cmd_output","timestamp":1607098209,"output":"e: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.p"},{"event":"cmd_output","timestamp":1607098209,"output":"rocess_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:09.711 [info] Project list_grouped and branch masterlat"},{"event":"cmd_output","timestamp":1607098209,"output":"est_wf details updated: \"wf_id: a410ba80-84e0-44b1-9a0d-5a782a46a079, wf_number: 13\"\n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098209,"output":"10:09.713 [info] Persisted ppl_sub_init for pipeline with ppl_id: 3d6f1f89-3cd1-47de-892c-dffdcea48"},{"event":"cmd_output","timestamp":1607098209,"output":"d92: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits"},{"event":"cmd_output","timestamp":1607098209,"output":"\">, compile_task_id: nil, error_description: nil, id: 13, in_scheduling: false, init_type: \"regular\""},{"event":"cmd_output","timestamp":1607098209,"output":", inserted_at: ~N[2020-12-04 16:10:09.711869], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"3d6f1f89-3cd1-47de-892c-dffdcea48d92\", recovery_co"},{"event":"cmd_output","timestamp":1607098209,"output":"unt: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request"},{"event":"cmd_output","timestamp":1607098209,"output":"_desc: nil, updated_at: ~N[2020-12-04 16:10:09.711882]}\n\u001b[0m\u001b[22m\n16:10:09.722 [info] Request: 'r"},{"event":"cmd_output","timestamp":1607098209,"output":"un: %{\"branch_id\" => \"522a793f-6c36-4450-a9e8-af194b1bcce4\", \"branch_name\" => \"master\", \"client_id\" "},{"event":"cmd_output","timestamp":1607098209,"output":"=> \"3babcafe-80c3-45a5-a4de-7b5064824f7a\", \"commit_sha\" => \"75891a4469\", \"definition_file\" => \"\", \"h"},{"event":"cmd_output","timestamp":1607098209,"output":"ook_id\" => \"pr\", \"label\" => \"pull-request-1213\", \"organization_id\" => \"072eeff9-12f3-4240-9a96-070a4"},{"event":"cmd_output","timestamp":1607098209,"output":"eef4acd\", \"owner\" => \"rt\", \"project_id\" => \"list_grouped\", \"repo_name\" => \"2_basic\", \"request_token\""},{"event":"cmd_output","timestamp":1607098209,"output":" => \"2e99673a-364b-11eb-becf-5254005464e2\", \"requester_id\" => \"cf6bb630-48a0-4f91-8eed-b2c1ec9e887c\""},{"event":"cmd_output","timestamp":1607098209,"output":", \"service\" => \"local\", \"snapshot_id\" => \"\", \"suppressed_attributes\" => [\"access_token\", \"client_sec"},{"event":"cmd_output","timestamp":1607098209,"output":"ret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"503c1592-081d-46a7-bef2-e1170490d8d7\"}\n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098209,"output":"0:09.753 [info] ppl_id: b4243f3a-3b21-43bd-acc5-01a28e7e74c0, type: PplRequests, event: persisted s"},{"event":"cmd_output","timestamp":1607098209,"output":"chedule request with request_token: 2e99673a-364b-11eb-becf-5254005464e2, origin: Elixir.Ppl.PplRequ"},{"event":"cmd_output","timestamp":1607098209,"output":"ests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:09.756 [info] ppl_id: b42"},{"event":"cmd_output","timestamp":1607098209,"output":"43f3a-3b21-43bd-acc5-01a28e7e74c0, type: Ppls, state: initializing, event: initializing, recovery_co"},{"event":"cmd_output","timestamp":1607098209,"output":"unt: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:09.76"},{"event":"cmd_output","timestamp":1607098209,"output":"0 [info] Project list_grouped and branch masterlatest_wf details updated: \"wf_id: 503c1592-081d-46a"},{"event":"cmd_output","timestamp":1607098209,"output":"7-bef2-e1170490d8d7, wf_number: 14\"\n\u001b[0m\u001b[22m\n16:10:09.762 [info] Persisted ppl_sub_init for pipe"},{"event":"cmd_output","timestamp":1607098209,"output":"line with ppl_id: b4243f3a-3b21-43bd-acc5-01a28e7e74c0: %Ppl.PplSubInits.Model.PplSubInits{__meta__:"},{"event":"cmd_output","timestamp":1607098209,"output":" #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil,"},{"event":"cmd_output","timestamp":1607098209,"output":" id: 14, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:10:09.760761], pi"},{"event":"cmd_output","timestamp":1607098209,"output":"peline_requests: #Ecto.Association.NotLoaded, ppl_id: "},{"event":"cmd_output","timestamp":1607098209,"output":"\"b4243f3a-3b21-43bd-acc5-01a28e7e74c0\", recovery_count: 0, result: nil, result_reason: nil, state: \""},{"event":"cmd_output","timestamp":1607098209,"output":"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:09.76"},{"event":"cmd_output","timestamp":1607098209,"output":"0774]}\n\u001b[0m\u001b[22m\n16:10:09.777 [info] Request: 'run: %{\"branch_id\" => \"b4f1b79d-26a5-4d29-914b-0f7"},{"event":"cmd_output","timestamp":1607098209,"output":"1b80bc4ca\", \"branch_name\" => \"master\", \"client_id\" => \"ce80a270-b055-4a0c-86a8-91744f2d019f\", \"commi"},{"event":"cmd_output","timestamp":1607098209,"output":"t_sha\" => \"75891a4469\", \"definition_file\" => \"\", \"hook_id\" => \"pr\", \"label\" => \"pull-request-1214\", "},{"event":"cmd_output","timestamp":1607098209,"output":"\"organization_id\" => \"67470fc1-2f66-4d82-9087-2e680b9fd9b1\", \"owner\" => \"rt\", \"project_id\" => \"list_"},{"event":"cmd_output","timestamp":1607098209,"output":"grouped\", \"repo_name\" => \"2_basic\", \"request_token\" => \"2ea0d286-364b-11eb-89a7-5254005464e2\", \"requ"},{"event":"cmd_output","timestamp":1607098209,"output":"ester_id\" => \"8ae64a9f-d75e-4a1b-a330-88358806907a\", \"service\" => \"local\", \"snapshot_id\" => \"\", \"sup"},{"event":"cmd_output","timestamp":1607098209,"output":"pressed_attributes\" => [\"access_token\", \"client_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"6ad2"},{"event":"cmd_output","timestamp":1607098209,"output":"95e7-cef1-4191-8e01-a2c117ae61f7\"}\n\u001b[0m\u001b[22m\n16:10:09.803 [info] ppl_id: bed3964b-51e8-4281-88d7-"},{"event":"cmd_output","timestamp":1607098209,"output":"b3e5d9a27910, type: PplRequests, event: persisted schedule request with request_token: 2ea0d286-364b"},{"event":"cmd_output","timestamp":1607098209,"output":"-11eb-89a7-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2("},{"event":"cmd_output","timestamp":1607098209,"output":"L55), \n\u001b[0m\u001b[22m\n16:10:09.806 [info] ppl_id: bed3964b-51e8-4281-88d7-b3e5d9a27910, type: Ppls, st"},{"event":"cmd_output","timestamp":1607098209,"output":"ate: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries"},{"event":"cmd_output","timestamp":1607098209,"output":".process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:09.810 [info] Project list_grouped and branch masterl"},{"event":"cmd_output","timestamp":1607098209,"output":"atest_wf details updated: \"wf_id: 6ad295e7-cef1-4191-8e01-a2c117ae61f7, wf_number: 15\"\n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098209,"output":"6:10:09.812 [info] Persisted ppl_sub_init for pipeline with ppl_id: bed3964b-51e8-4281-88d7-b3e5d9a"},{"event":"cmd_output","timestamp":1607098209,"output":"27910: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_ini"},{"event":"cmd_output","timestamp":1607098209,"output":"ts\">, compile_task_id: nil, error_description: nil, id: 15, in_scheduling: false, init_type: \"regula"},{"event":"cmd_output","timestamp":1607098209,"output":"r\", inserted_at: ~N[2020-12-04 16:10:09.811751], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"bed3964b-51e8-4281-88d7-b3e5d9a27910\", recovery_"},{"event":"cmd_output","timestamp":1607098209,"output":"count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_reque"},{"event":"cmd_output","timestamp":1607098209,"output":"st_desc: nil, updated_at: ~N[2020-12-04 16:10:09.811764]}\n\u001b[0m\u001b[22m\n16:10:09.823 [info] Request: "},{"event":"cmd_output","timestamp":1607098209,"output":"'run: %{\"branch_id\" => \"3ff35b0f-db2a-4522-be12-81038d3bf5ee\", \"branch_name\" => \"master\", \"client_id"},{"event":"cmd_output","timestamp":1607098209,"output":"\" => \"3d2f0a6b-377d-481e-8946-d26a95d2288d\", \"commit_sha\" => \"75891a4469\", \"definition_file\" => \"\", "},{"event":"cmd_output","timestamp":1607098209,"output":"\"hook_id\" => \"pr\", \"label\" => \"pull-request-1215\", \"organization_id\" => \"47aade49-d28a-45ad-86c1-230"},{"event":"cmd_output","timestamp":1607098209,"output":"a7ca8e479\", \"owner\" => \"rt\", \"project_id\" => \"list_grouped\", \"repo_name\" => \"2_basic\", \"request_toke"},{"event":"cmd_output","timestamp":1607098209,"output":"n\" => \"2ea8c0a4-364b-11eb-8b1f-5254005464e2\", \"requester_id\" => \"b7cbd06c-0103-447f-bb18-8c667fdb3b3"},{"event":"cmd_output","timestamp":1607098209,"output":"6\", \"service\" => \"local\", \"snapshot_id\" => \"\", \"suppressed_attributes\" => [\"access_token\", \"client_s"},{"event":"cmd_output","timestamp":1607098209,"output":"ecret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"1d39fb62-c3c3-4977-b378-f07cb971417c\"}\n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098209,"output":":10:09.852 [info] ppl_id: 1f64866a-4595-426a-8815-3319a63fb026, type: PplRequests, event: persisted"},{"event":"cmd_output","timestamp":1607098209,"output":" schedule request with request_token: 2ea8c0a4-364b-11eb-8b1f-5254005464e2, origin: Elixir.Ppl.PplRe"},{"event":"cmd_output","timestamp":1607098209,"output":"quests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:09.855 [info] ppl_id: 1"},{"event":"cmd_output","timestamp":1607098209,"output":"f64866a-4595-426a-8815-3319a63fb026, type: Ppls, state: initializing, event: initializing, recovery_"},{"event":"cmd_output","timestamp":1607098209,"output":"count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:09."},{"event":"cmd_output","timestamp":1607098209,"output":"858 [info] Project list_grouped and branch masterlatest_wf details updated: \"wf_id: 1d39fb62-c3c3-4"},{"event":"cmd_output","timestamp":1607098209,"output":"977-b378-f07cb971417c, wf_number: 16\"\n\u001b[0m\u001b[22m\n16:10:09.859 [info] Persisted ppl_sub_init for pi"},{"event":"cmd_output","timestamp":1607098209,"output":"peline with ppl_id: 1f64866a-4595-426a-8815-3319a63fb026: %Ppl.PplSubInits.Model.PplSubInits{__meta_"},{"event":"cmd_output","timestamp":1607098209,"output":"_: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: ni"},{"event":"cmd_output","timestamp":1607098209,"output":"l, id: 16, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:10:09.858204], "},{"event":"cmd_output","timestamp":1607098209,"output":"pipeline_requests: #Ecto.Association.NotLoaded, ppl_id"},{"event":"cmd_output","timestamp":1607098209,"output":": \"1f64866a-4595-426a-8815-3319a63fb026\", recovery_count: 0, result: nil, result_reason: nil, state:"},{"event":"cmd_output","timestamp":1607098209,"output":" \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:09."},{"event":"cmd_output","timestamp":1607098209,"output":"858211]}\n\u001b[0m\u001b[22m\n16:10:09.873 [info] Request: 'run: %{\"branch_id\" => \"d161231d-9370-4923-aef4-e"},{"event":"cmd_output","timestamp":1607098209,"output":"e40ff0ce7d6\", \"branch_name\" => \"master\", \"client_id\" => \"d6d83e33-4ca9-4d36-b7ff-c3222a2b1a7c\", \"com"},{"event":"cmd_output","timestamp":1607098209,"output":"mit_sha\" => \"75891a4469\", \"definition_file\" => \"\", \"hook_id\" => \"pr\", \"label\" => \"pull-request-1216\""},{"event":"cmd_output","timestamp":1607098209,"output":", \"organization_id\" => \"d40c9a54-5c9e-4f68-aa48-21124aeea3c5\", \"owner\" => \"rt\", \"project_id\" => \"lis"},{"event":"cmd_output","timestamp":1607098209,"output":"t_grouped\", \"repo_name\" => \"2_basic\", \"request_token\" => \"2eb07b96-364b-11eb-b93b-5254005464e2\", \"re"},{"event":"cmd_output","timestamp":1607098209,"output":"quester_id\" => \"6f9dc19c-8aa7-4989-b7ea-b1d55d39f688\", \"service\" => \"local\", \"snapshot_id\" => \"\", \"s"},{"event":"cmd_output","timestamp":1607098209,"output":"uppressed_attributes\" => [\"access_token\", \"client_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"18"},{"event":"cmd_output","timestamp":1607098209,"output":"8f9bd0-15cc-42b1-bf23-f92e60b8553a\"}\n\u001b[0m\u001b[22m\n16:10:09.899 [info] ppl_id: c1b2009c-e56b-4a07-a90"},{"event":"cmd_output","timestamp":1607098209,"output":"1-2d7a7aa73213, type: PplRequests, event: persisted schedule request with request_token: 2eb07b96-36"},{"event":"cmd_output","timestamp":1607098209,"output":"4b-11eb-b93b-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/"},{"event":"cmd_output","timestamp":1607098209,"output":"2(L55), \n\u001b[0m\u001b[22m\n16:10:09.902 [info] ppl_id: c1b2009c-e56b-4a07-a901-2d7a7aa73213, type: Ppls, "},{"event":"cmd_output","timestamp":1607098209,"output":"state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueri"},{"event":"cmd_output","timestamp":1607098209,"output":"es.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:09.905 [info] Project list_grouped and branch maste"},{"event":"cmd_output","timestamp":1607098209,"output":"rlatest_wf details updated: \"wf_id: 188f9bd0-15cc-42b1-bf23-f92e60b8553a, wf_number: 17\"\n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098209,"output":"\n16:10:09.906 [info] Persisted ppl_sub_init for pipeline with ppl_id: c1b2009c-e56b-4a07-a901-2d7a7"},{"event":"cmd_output","timestamp":1607098209,"output":"aa73213: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_i"},{"event":"cmd_output","timestamp":1607098209,"output":"nits\">, compile_task_id: nil, error_description: nil, id: 17, in_scheduling: false, init_type: \"regu"},{"event":"cmd_output","timestamp":1607098209,"output":"lar\", inserted_at: ~N[2020-12-04 16:10:09.905348], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"c1b2009c-e56b-4a07-a901-2d7a7aa73213\", recover"},{"event":"cmd_output","timestamp":1607098209,"output":"y_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_req"},{"event":"cmd_output","timestamp":1607098209,"output":"uest_desc: nil, updated_at: ~N[2020-12-04 16:10:09.905357]}\n\u001b[0m\u001b[22m\n16:10:09.922 [info] Request"},{"event":"cmd_output","timestamp":1607098209,"output":": 'run: %{\"branch_id\" => \"d2a7d45e-832a-4606-bd7b-717915a05604\", \"branch_name\" => \"master\", \"client_"},{"event":"cmd_output","timestamp":1607098209,"output":"id\" => \"7f784e5b-f1ed-4cff-929d-7cd0765cd704\", \"commit_sha\" => \"75891a4469\", \"definition_file\" => \"\""},{"event":"cmd_output","timestamp":1607098209,"output":", \"hook_id\" => \"pr\", \"label\" => \"pull-request-1217\", \"organization_id\" => \"1df28f74-cf88-4565-bc39-8"},{"event":"cmd_output","timestamp":1607098209,"output":"12327892f89\", \"owner\" => \"rt\", \"project_id\" => \"list_grouped\", \"repo_name\" => \"2_basic\", \"request_to"},{"event":"cmd_output","timestamp":1607098209,"output":"ken\" => \"2eb700ec-364b-11eb-8230-5254005464e2\", \"requester_id\" => \"20f92186-37b9-4d2d-9c91-cf4297a3b"},{"event":"cmd_output","timestamp":1607098209,"output":"ed9\", \"service\" => \"local\", \"snapshot_id\" => \"\", \"suppressed_attributes\" => [\"access_token\", \"client"},{"event":"cmd_output","timestamp":1607098209,"output":"_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"21afacde-9d2d-4d5b-9071-1c73498dc13b\"}\n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098209,"output":"16:10:09.961 [info] ppl_id: ad6a27bb-db7b-4838-826e-1da6e6c54e11, type: PplRequests, event: persist"},{"event":"cmd_output","timestamp":1607098209,"output":"ed schedule request with request_token: 2eb700ec-364b-11eb-8230-5254005464e2, origin: Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098209,"output":"Requests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:09.963 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098209,"output":" ad6a27bb-db7b-4838-826e-1da6e6c54e11, type: Ppls, state: initializing, event: initializing, recover"},{"event":"cmd_output","timestamp":1607098209,"output":"y_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:0"},{"event":"cmd_output","timestamp":1607098209,"output":"9.967 [info] Project list_grouped and branch masterlatest_wf details updated: \"wf_id: 21afacde-9d2d"},{"event":"cmd_output","timestamp":1607098209,"output":"-4d5b-9071-1c73498dc13b, wf_number: 18\"\n\u001b[0m\u001b[22m\n16:10:09.969 [info] Persisted ppl_sub_init for "},{"event":"cmd_output","timestamp":1607098209,"output":"pipeline with ppl_id: ad6a27bb-db7b-4838-826e-1da6e6c54e11: %Ppl.PplSubInits.Model.PplSubInits{__met"},{"event":"cmd_output","timestamp":1607098209,"output":"a__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: "},{"event":"cmd_output","timestamp":1607098209,"output":"nil, id: 18, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:10:09.967351]"},{"event":"cmd_output","timestamp":1607098209,"output":", pipeline_requests: #Ecto.Association.NotLoaded, ppl_"},{"event":"cmd_output","timestamp":1607098209,"output":"id: \"ad6a27bb-db7b-4838-826e-1da6e6c54e11\", recovery_count: 0, result: nil, result_reason: nil, stat"},{"event":"cmd_output","timestamp":1607098209,"output":"e: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:0"},{"event":"cmd_output","timestamp":1607098209,"output":"9.967376]}\n\u001b[0m\u001b[22m\n16:10:09.984 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.Initiali"},{"event":"cmd_output","timestamp":1607098209,"output":"zingState with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"P"},{"event":"cmd_output","timestamp":1607098209,"output":"pl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: "},{"event":"cmd_output","timestamp":1607098209,"output":"[\"initializing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observ"},{"event":"cmd_output","timestamp":1607098209,"output":"ed_state: \"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingS"},{"event":"cmd_output","timestamp":1607098209,"output":"tate.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result,"},{"event":"cmd_output","timestamp":1607098209,"output":" :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:0"},{"event":"cmd_output","timestamp":1607098209,"output":"9.988 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls"},{"event":"cmd_output","timestamp":1607098209,"output":".STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHand"},{"event":"cmd_output","timestamp":1607098209,"output":"ler-PendingState\"]}, recurring args: %{allowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], co"},{"event":"cmd_output","timestamp":1607098209,"output":"oling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publisher_cb: #Fun"},{"event":"cmd_output","timestamp":1607098209,"output":"ction<0.8493005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, "},{"event":"cmd_output","timestamp":1607098209,"output":":terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model."},{"event":"cmd_output","timestamp":1607098209,"output":"Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:10:09.993 [info] Periodic from module Eli"},{"event":"cmd_output","timestamp":1607098209,"output":"xir.Ppl.Ppls.STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 10"},{"event":"cmd_output","timestamp":1607098209,"output":"0 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %"},{"event":"cmd_output","timestamp":1607098209,"output":"{allowed_states: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model"},{"event":"cmd_output","timestamp":1607098209,"output":".Ppls, observed_state: \"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.Queui"},{"event":"cmd_output","timestamp":1607098209,"output":"ngState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :resu"},{"event":"cmd_output","timestamp":1607098209,"output":"lt, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098209,"output":"0:09.997 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl.P"},{"event":"cmd_output","timestamp":1607098209,"output":"pls.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMH"},{"event":"cmd_output","timestamp":1607098209,"output":"andler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_t"},{"event":"cmd_output","timestamp":1607098209,"output":"ime_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"running\", publisher_cb: #Function<"},{"event":"cmd_output","timestamp":1607098209,"output":"0.74670282/1 in Ppl.Ppls.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :term"},{"event":"cmd_output","timestamp":1607098209,"output":"inate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls,"},{"event":"cmd_output","timestamp":1607098210,"output":" task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:10:10.004 [info] Periodic from module Elixir.P"},{"event":"cmd_output","timestamp":1607098210,"output":"pl.Ppls.STMHandler.StoppingState with name Elixir.Ppl.Ppls.STMHandler.StoppingState :: period: 100 m"},{"event":"cmd_output","timestamp":1607098210,"output":"s, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring args: %{a"},{"event":"cmd_output","timestamp":1607098210,"output":"llowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, obser"},{"event":"cmd_output","timestamp":1607098210,"output":"ved_state: \"stopping\", publisher_cb: #Function<0.71803493/1 in Ppl.Ppls.STMHandler.StoppingState.arg"},{"event":"cmd_output","timestamp":1607098210,"output":"s/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recove"},{"event":"cmd_output","timestamp":1607098210,"output":"ry_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:10.005 [i"},{"event":"cmd_output","timestamp":1607098210,"output":"nfo] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSu"},{"event":"cmd_output","timestamp":1607098210,"output":"bInits.STMHandler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSub"},{"event":"cmd_output","timestamp":1607098210,"output":"Inits-STMHandler-CreatedState\"]}, recurring args: %{allowed_states: [\"fetching\", \"done\"], cooling_ti"},{"event":"cmd_output","timestamp":1607098210,"output":"me_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"created\", publisher_cb"},{"event":"cmd_output","timestamp":1607098210,"output":": :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :rec"},{"event":"cmd_output","timestamp":1607098210,"output":"overy_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098210,"output":"\n16:10:10.010 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.FetchingState with nam"},{"event":"cmd_output","timestamp":1607098210,"output":"e Elixir.Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wak"},{"event":"cmd_output","timestamp":1607098210,"output":"e_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %{allowed_states: [\"regular_in"},{"event":"cmd_output","timestamp":1607098210,"output":"it\", \"compilation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits,"},{"event":"cmd_output","timestamp":1607098210,"output":" observed_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_re"},{"event":"cmd_output","timestamp":1607098210,"output":"quest, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSub"},{"event":"cmd_output","timestamp":1607098210,"output":"Inits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:10.015 [info] Periodic from module Elixir.Ppl.PplS"},{"event":"cmd_output","timestamp":1607098210,"output":"ubInits.STMHandler.CompilationState with name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: "},{"event":"cmd_output","timestamp":1607098210,"output":"period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\""},{"event":"cmd_output","timestamp":1607098210,"output":"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_t"},{"event":"cmd_output","timestamp":1607098210,"output":"ime_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"compilation\", publis"},{"event":"cmd_output","timestamp":1607098210,"output":"her_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result"},{"event":"cmd_output","timestamp":1607098210,"output":", :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0"},{"event":"cmd_output","timestamp":1607098210,"output":"m\u001b[22m\n16:10:10.020 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState"},{"event":"cmd_output","timestamp":1607098210,"output":" with name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl."},{"event":"cmd_output","timestamp":1607098210,"output":"beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurring args: %{allowed_state"},{"event":"cmd_output","timestamp":1607098210,"output":"s: [\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: "},{"event":"cmd_output","timestamp":1607098210,"output":"\"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updat"},{"event":"cmd_output","timestamp":1607098210,"output":"ed_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_s"},{"event":"cmd_output","timestamp":1607098210,"output":"upervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:10.024 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHand"},{"event":"cmd_output","timestamp":1607098210,"output":"ler.InitializingState with name Elixir.Ppl.PplBlocks.STMHandler.InitializingState :: period: 100 ms,"},{"event":"cmd_output","timestamp":1607098210,"output":" metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-InitializingState\"]}, recurring ar"},{"event":"cmd_output","timestamp":1607098210,"output":"gs: %{allowed_states: [\"initializing\", \"waiting\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.P"},{"event":"cmd_output","timestamp":1607098210,"output":"plBlocks.Model.PplBlocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, r"},{"event":"cmd_output","timestamp":1607098210,"output":"eturning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_i"},{"event":"cmd_output","timestamp":1607098210,"output":"ndex], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:10.030 [info"},{"event":"cmd_output","timestamp":1607098210,"output":"] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks."},{"event":"cmd_output","timestamp":1607098210,"output":"STMHandler.WaitingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-ST"},{"event":"cmd_output","timestamp":1607098210,"output":"MHandler-WaitingState\"]}, recurring args: %{allowed_states: [\"waiting\", \"running\", \"done\"], cooling_"},{"event":"cmd_output","timestamp":1607098210,"output":"time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"waiting\", publisher_cb: "},{"event":"cmd_output","timestamp":1607098210,"output":"#Function<0.8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, returnin"},{"event":"cmd_output","timestamp":1607098210,"output":"g: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], "},{"event":"cmd_output","timestamp":1607098210,"output":"schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:10.034 [info] Peri"},{"event":"cmd_output","timestamp":1607098210,"output":"odic from module Elixir.Ppl.PplBlocks.STMHandler.RunningState with name Elixir.Ppl.PplBlocks.STMHand"},{"event":"cmd_output","timestamp":1607098210,"output":"ler.RunningState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandle"},{"event":"cmd_output","timestamp":1607098210,"output":"r-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_s"},{"event":"cmd_output","timestamp":1607098210,"output":"ec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"running\", publisher_cb: #Func"},{"event":"cmd_output","timestamp":1607098210,"output":"tion<0.28166834/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: ["},{"event":"cmd_output","timestamp":1607098210,"output":":id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :bloc"},{"event":"cmd_output","timestamp":1607098210,"output":"k_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:10.039 [info"},{"event":"cmd_output","timestamp":1607098210,"output":"] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.StoppingState with name Elixir.Ppl.PplBlocks"},{"event":"cmd_output","timestamp":1607098210,"output":".STMHandler.StoppingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-"},{"event":"cmd_output","timestamp":1607098210,"output":"STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_se"},{"event":"cmd_output","timestamp":1607098210,"output":"c: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"stopping\", publisher_cb: #Func"},{"event":"cmd_output","timestamp":1607098210,"output":"tion<0.104215991/1 in Ppl.PplBlocks.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning:"},{"event":"cmd_output","timestamp":1607098210,"output":" [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :bl"},{"event":"cmd_output","timestamp":1607098210,"output":"ock_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:10.045 [in"},{"event":"cmd_output","timestamp":1607098210,"output":"fo] Periodic from module Elixir.Block.Blocks.STMHandler.InitializingState with name Elixir.Block.Bl"},{"event":"cmd_output","timestamp":1607098210,"output":"ocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-B"},{"event":"cmd_output","timestamp":1607098210,"output":"locks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], coolin"},{"event":"cmd_output","timestamp":1607098210,"output":"g_time_sec: 0, initial_query: Block.Blocks.Model.Blocks, observed_state: \"initializing\", publisher_c"},{"event":"cmd_output","timestamp":1607098210,"output":"b: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_"},{"event":"cmd_output","timestamp":1607098210,"output":"count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:10.0"},{"event":"cmd_output","timestamp":1607098210,"output":"50 [info] Periodic from module Elixir.Block.Blocks.STMHandler.RunningState with name Elixir.Block.B"},{"event":"cmd_output","timestamp":1607098210,"output":"locks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Block"},{"event":"cmd_output","timestamp":1607098210,"output":"s-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], coo"},{"event":"cmd_output","timestamp":1607098210,"output":"ling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"running\", publisher_cb"},{"event":"cmd_output","timestamp":1607098210,"output":": :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_c"},{"event":"cmd_output","timestamp":1607098210,"output":"ount, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:10.05"},{"event":"cmd_output","timestamp":1607098210,"output":"5 [info] Periodic from module Elixir.Block.Blocks.STMHandler.StoppingState with name Elixir.Block.B"},{"event":"cmd_output","timestamp":1607098210,"output":"locks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Bloc"},{"event":"cmd_output","timestamp":1607098210,"output":"ks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time"},{"event":"cmd_output","timestamp":1607098210,"output":"_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"stopping\", publisher_cb: :skip,"},{"event":"cmd_output","timestamp":1607098210,"output":" repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :b"},{"event":"cmd_output","timestamp":1607098210,"output":"lock_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:10.059 [info]"},{"event":"cmd_output","timestamp":1607098210,"output":" Periodic from module Elixir.Block.Tasks.STMHandler.PendingState with name Elixir.Block.Tasks.STMHa"},{"event":"cmd_output","timestamp":1607098210,"output":"ndler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler"},{"event":"cmd_output","timestamp":1607098210,"output":"-PendingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initia"},{"event":"cmd_output","timestamp":1607098210,"output":"l_query: Block.Tasks.Model.Tasks, observed_state: \"pending\", publisher_cb: :skip, repo: Block.EctoRe"},{"event":"cmd_output","timestamp":1607098210,"output":"po, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id, :build_req"},{"event":"cmd_output","timestamp":1607098210,"output":"uest_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:10.065 [info] "},{"event":"cmd_output","timestamp":1607098210,"output":"Periodic from module Elixir.Block.Tasks.STMHandler.RunningState with name Elixir.Block.Tasks.STMHand"},{"event":"cmd_output","timestamp":1607098210,"output":"ler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-R"},{"event":"cmd_output","timestamp":1607098210,"output":"unningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec:"},{"event":"cmd_output","timestamp":1607098210,"output":" -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"running\", publisher_cb: :skip, repo: B"},{"event":"cmd_output","timestamp":1607098210,"output":"lock.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id]"},{"event":"cmd_output","timestamp":1607098210,"output":", schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:10.069 [info] Periodic"},{"event":"cmd_output","timestamp":1607098210,"output":" from module Elixir.Block.Tasks.STMHandler.StoppingState with name Elixir.Block.Tasks.STMHandler.Sto"},{"event":"cmd_output","timestamp":1607098210,"output":"ppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-Stoppin"},{"event":"cmd_output","timestamp":1607098210,"output":"gState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_que"},{"event":"cmd_output","timestamp":1607098210,"output":"ry: Block.Tasks.Model.Tasks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, "},{"event":"cmd_output","timestamp":1607098210,"output":"returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block"},{"event":"cmd_output","timestamp":1607098210,"output":".Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:10.193 [info] ppl_id: f8417768-647c-4"},{"event":"cmd_output","timestamp":1607098210,"output":"f8c-9f21-79ee3579d746, type: PplRequests, event: persisted source_args for pipeline: f8417768-647c-4"},{"event":"cmd_output","timestamp":1607098210,"output":"f8c-9f21-79ee3579d746, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89),"},{"event":"cmd_output","timestamp":1607098210,"output":" \n\u001b[0m\u001b[22m\n16:10:10.198 [info] ppl_id: f8417768-647c-4f8c-9f21-79ee3579d746, type: PplSubInits, "},{"event":"cmd_output","timestamp":1607098210,"output":"state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state"},{"event":"cmd_output","timestamp":1607098210,"output":"_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:10.316 [info] ppl_id: 451f2dd4-1ce5-4dae-ba53-aa4aaf0e0daf, type"},{"event":"cmd_output","timestamp":1607098210,"output":": PplRequests, event: persisted source_args for pipeline: 451f2dd4-1ce5-4dae-ba53-aa4aaf0e0daf, orig"},{"event":"cmd_output","timestamp":1607098210,"output":"in: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:10.319 "},{"event":"cmd_output","timestamp":1607098210,"output":"[info] ppl_id: 451f2dd4-1ce5-4dae-ba53-aa4aaf0e0daf, type: PplSubInits, state: fetching, event: exi"},{"event":"cmd_output","timestamp":1607098210,"output":"t_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098210,"output":"\n16:10:10.359 [info] ppl_id: f8417768-647c-4f8c-9f21-79ee3579d746, type: PplSubInits, state: regul"},{"event":"cmd_output","timestamp":1607098210,"output":"ar_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/"},{"event":"cmd_output","timestamp":1607098210,"output":"1(L90), \n\u001b[0m\u001b[22m\n16:10:10.396 [info] ppl_id: 451f2dd4-1ce5-4dae-ba53-aa4aaf0e0daf, type: PplSub"},{"event":"cmd_output","timestamp":1607098210,"output":"Inits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Imp"},{"event":"cmd_output","timestamp":1607098210,"output":"l.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:10.433 [info] ppl_id: 744f7a59-b743-4cb8-8756-33d1335"},{"event":"cmd_output","timestamp":1607098210,"output":"17971, type: PplRequests, event: persisted source_args for pipeline: 744f7a59-b743-4cb8-8756-33d1335"},{"event":"cmd_output","timestamp":1607098210,"output":"17971, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098210,"output":":10:10.437 [info] ppl_id: 744f7a59-b743-4cb8-8756-33d133517971, type: PplSubInits, state: fetching,"},{"event":"cmd_output","timestamp":1607098210,"output":" event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), "},{"event":"cmd_output","timestamp":1607098210,"output":"\n\u001b[0m\u001b[22m\n16:10:10.479 [info] ppl_id: 744f7a59-b743-4cb8-8756-33d133517971, type: PplSubInits, s"},{"event":"cmd_output","timestamp":1607098210,"output":"tate: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_st"},{"event":"cmd_output","timestamp":1607098210,"output":"ate_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:10.534 [info] ppl_id: f8417768-647c-4f8c-9f21-79ee3579d746, t"},{"event":"cmd_output","timestamp":1607098210,"output":"ype: PplRequests, event: persisted definition for request with request_token: 2debe920-364b-11eb-ba5"},{"event":"cmd_output","timestamp":1607098210,"output":"a-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n"},{"event":"cmd_output","timestamp":1607098210,"output":"\u001b[0m\u001b[22m\n16:10:10.543 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Sche"},{"event":"cmd_output","timestamp":1607098210,"output":"ma.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:10:10.541933], name: \"master-0-.semaph"},{"event":"cmd_output","timestamp":1607098210,"output":"ore/semaphore.yml\", organization_id: \"30948249-89ce-4b01-bbf0-13c50974a1d0\", project_id: \"list_group"},{"event":"cmd_output","timestamp":1607098210,"output":"ed\", queue_id: \"b9769577-bc8d-4652-96f7-f610b939bbd8\", scope: \"project\", updated_at: ~N[2020-12-04 1"},{"event":"cmd_output","timestamp":1607098210,"output":"6:10:10.541944], user_generated: false}}\n\u001b[0m\u001b[22m\n16:10:10.561 [info] ppl_id: 10f8d5f9-e0fb-4ba9"},{"event":"cmd_output","timestamp":1607098210,"output":"-b509-b2d99bd16f14, type: PplRequests, event: persisted source_args for pipeline: 10f8d5f9-e0fb-4ba9"},{"event":"cmd_output","timestamp":1607098210,"output":"-b509-b2d99bd16f14, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n"},{"event":"cmd_output","timestamp":1607098210,"output":"\u001b[0m\u001b[22m\n16:10:10.567 [info] ppl_id: 10f8d5f9-e0fb-4ba9-b509-b2d99bd16f14, type: PplSubInits, sta"},{"event":"cmd_output","timestamp":1607098210,"output":"te: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_ch"},{"event":"cmd_output","timestamp":1607098210,"output":"ange/1(L90), \n\u001b[0m\u001b[22m\n16:10:10.567 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHan"},{"event":"cmd_output","timestamp":1607098210,"output":"dler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:10.567 [info] ppl_id: f8417768-647c-4f8c-"},{"event":"cmd_output","timestamp":1607098210,"output":"9f21-79ee3579d746, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_co"},{"event":"cmd_output","timestamp":1607098210,"output":"unt: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098210,"output":"10:10.571 [info] ppl_id: f8417768-647c-4f8c-9f21-79ee3579d746, type: PplSubInits, state: done, resu"},{"event":"cmd_output","timestamp":1607098210,"output":"lt: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chan"},{"event":"cmd_output","timestamp":1607098210,"output":"ge/1(L90), \n\u001b[0m\u001b[22m\n16:10:10.587 [info] ppl_id: f8417768-647c-4f8c-9f21-79ee3579d746, type: Ppl"},{"event":"cmd_output","timestamp":1607098210,"output":"Blocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Lo"},{"event":"cmd_output","timestamp":1607098210,"output":"oper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:10.598 [info] ppl_id: f8417768-647c-4f8c-"},{"event":"cmd_output","timestamp":1607098210,"output":"9f21-79ee3579d746, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098210,"output":"ixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:10.623 [info] ppl_id: 10f8d5f9-e0f"},{"event":"cmd_output","timestamp":1607098210,"output":"b-4ba9-b509-b2d99bd16f14, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098210,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:10.632 [info] p"},{"event":"cmd_output","timestamp":1607098210,"output":"pl_id: f8417768-647c-4f8c-9f21-79ee3579d746, type: Ppls, state: queuing, event: exit_scheduling, rec"},{"event":"cmd_output","timestamp":1607098210,"output":"overy_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:10.645 [i"},{"event":"cmd_output","timestamp":1607098210,"output":"nfo] ppl_id: 451f2dd4-1ce5-4dae-ba53-aa4aaf0e0daf, type: PplRequests, event: persisted definition f"},{"event":"cmd_output","timestamp":1607098210,"output":"or request with request_token: 2e21dcba-364b-11eb-89af-5254005464e2, origin: Elixir.Ppl.PplRequests."},{"event":"cmd_output","timestamp":1607098210,"output":"Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:10.649 [info] Queue persisted"},{"event":"cmd_output","timestamp":1607098210,"output":": {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N"},{"event":"cmd_output","timestamp":1607098210,"output":"[2020-12-04 16:10:10.646834], name: \"master-1-.semaphore/semaphore.yml\", organization_id: \"b58fea44-"},{"event":"cmd_output","timestamp":1607098210,"output":"f79c-4966-8292-b315d6a60b77\", project_id: \"list_grouped\", queue_id: \"e9b81dd1-76fa-4571-ad10-8c82772"},{"event":"cmd_output","timestamp":1607098210,"output":"5965d\", scope: \"project\", updated_at: ~N[2020-12-04 16:10:10.646845], user_generated: false}}\n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098210,"output":"[22m\n16:10:10.651 [info] ppl_id: f8417768-647c-4f8c-9f21-79ee3579d746, type: Ppls, state: running,"},{"event":"cmd_output","timestamp":1607098210,"output":" event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), "},{"event":"cmd_output","timestamp":1607098210,"output":"\n\u001b[0m\u001b[22m\n16:10:10.657 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularI"},{"event":"cmd_output","timestamp":1607098210,"output":"nitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:10.657 [info] ppl_id: 451f2dd4-1ce5-4dae-ba53-aa4aaf0e"},{"event":"cmd_output","timestamp":1607098210,"output":"0daf, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098210,"output":"n: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:10.661 [in"},{"event":"cmd_output","timestamp":1607098210,"output":"fo] ppl_id: 451f2dd4-1ce5-4dae-ba53-aa4aaf0e0daf, type: PplSubInits, state: done, result: passed, e"},{"event":"cmd_output","timestamp":1607098210,"output":"vent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n"},{"event":"cmd_output","timestamp":1607098210,"output":"\u001b[0m\u001b[22m\n16:10:10.663 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"f84"},{"event":"cmd_output","timestamp":1607098210,"output":"17768-647c-4f8c-9f21-79ee3579d746\"\n\u001b[0m\u001b[22m\n16:10:10.683 [info] ppl_id: 451f2dd4-1ce5-4dae-ba53-"},{"event":"cmd_output","timestamp":1607098210,"output":"aa4aaf0e0daf, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098210,"output":"Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:10.689 [info] ppl_id: 451f2dd4-1ce5-4da"},{"event":"cmd_output","timestamp":1607098210,"output":"e-ba53-aa4aaf0e0daf, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recove"},{"event":"cmd_output","timestamp":1607098210,"output":"ry_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:10.695 [info"},{"event":"cmd_output","timestamp":1607098210,"output":"] ppl_id: a156cb57-e802-46aa-b3bd-1ef79b3be293, type: PplRequests, event: persisted source_args for"},{"event":"cmd_output","timestamp":1607098210,"output":" pipeline: a156cb57-e802-46aa-b3bd-1ef79b3be293, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQue"},{"event":"cmd_output","timestamp":1607098210,"output":"ries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:10.703 [info] ppl_id: a156cb57-e802-46aa-b3bd-1ef79b3"},{"event":"cmd_output","timestamp":1607098210,"output":"be293, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098210,"output":".Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:10.724 [info] ppl_id: 451f2dd4-1ce5-4d"},{"event":"cmd_output","timestamp":1607098210,"output":"ae-ba53-aa4aaf0e0daf, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098210,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:10.750 [info] ppl_id: 744f7a59-"},{"event":"cmd_output","timestamp":1607098210,"output":"b743-4cb8-8756-33d133517971, type: PplRequests, event: persisted definition for request with request"},{"event":"cmd_output","timestamp":1607098210,"output":"_token: 2e2ae08a-364b-11eb-9899-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQuerie"},{"event":"cmd_output","timestamp":1607098210,"output":"s.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:10.755 [info] ppl_id: 451f2dd4-1ce5-4dae-ba53-aa4aaf"},{"event":"cmd_output","timestamp":1607098210,"output":"0e0daf, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper"},{"event":"cmd_output","timestamp":1607098210,"output":".STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:10.757 [info] Queue persisted: {:ok, %Ppl.Que"},{"event":"cmd_output","timestamp":1607098210,"output":"ues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:1"},{"event":"cmd_output","timestamp":1607098210,"output":"0:10.753563], name: \"master-2-.semaphore/semaphore.yml\", organization_id: \"5e760a3b-1af0-4ab9-929a-6"},{"event":"cmd_output","timestamp":1607098210,"output":"1f7a03f5455\", project_id: \"list_grouped\", queue_id: \"c317e27c-6fd0-4c59-a8f8-10a6101af7f2\", scope: \""},{"event":"cmd_output","timestamp":1607098210,"output":"project\", updated_at: ~N[2020-12-04 16:10:10.753576], user_generated: false}}\n\u001b[0m\u001b[22m\n16:10:10.7"},{"event":"cmd_output","timestamp":1607098210,"output":"67 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105"},{"event":"cmd_output","timestamp":1607098210,"output":"), \n\u001b[0m\u001b[22m\n16:10:10.767 [info] ppl_id: 744f7a59-b743-4cb8-8756-33d133517971, type: PplBlocks, "},{"event":"cmd_output","timestamp":1607098210,"output":"block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubIni"},{"event":"cmd_output","timestamp":1607098210,"output":"ts.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:10.772 [info] ppl_id: 744f7a59-b"},{"event":"cmd_output","timestamp":1607098210,"output":"743-4cb8-8756-33d133517971, type: PplSubInits, state: done, result: passed, event: exit_scheduling, "},{"event":"cmd_output","timestamp":1607098210,"output":"recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:10.776"},{"event":"cmd_output","timestamp":1607098210,"output":" [info] ppl_id: a156cb57-e802-46aa-b3bd-1ef79b3be293, type: PplSubInits, state: regular_init, event"},{"event":"cmd_output","timestamp":1607098210,"output":": exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098210,"output":"\u001b[22m\n16:10:10.788 [info] block_id: 048ba67f-e313-4eae-b41c-244356000e80, type: BlockRequests, eve"},{"event":"cmd_output","timestamp":1607098210,"output":"nt: persisted block run request from ppl f8417768-647c-4f8c-9f21-79ee3579d746 for block 0, origin: E"},{"event":"cmd_output","timestamp":1607098210,"output":"lixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:10."},{"event":"cmd_output","timestamp":1607098210,"output":"790 [info] ppl_id: 744f7a59-b743-4cb8-8756-33d133517971, type: PplBlocks, block_index: 0, state: wa"},{"event":"cmd_output","timestamp":1607098210,"output":"iting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1("},{"event":"cmd_output","timestamp":1607098210,"output":"L90), \n\u001b[0m\u001b[22m\n16:10:10.798 [info] ppl_id: 744f7a59-b743-4cb8-8756-33d133517971, type: Ppls, st"},{"event":"cmd_output","timestamp":1607098210,"output":"ate: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_ch"},{"event":"cmd_output","timestamp":1607098210,"output":"ange/1(L90), \n\u001b[0m\u001b[22m\n16:10:10.801 [info] block_id: 048ba67f-e313-4eae-b41c-244356000e80, type:"},{"event":"cmd_output","timestamp":1607098210,"output":" Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Mo"},{"event":"cmd_output","timestamp":1607098210,"output":"del.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:10.814 [info] Block 0 of pipeline with id: f841"},{"event":"cmd_output","timestamp":1607098210,"output":"7768-647c-4f8c-9f21-79ee3579d746 scheduled in block service with id: : \"048ba67f-e313-4eae-b41c-2443"},{"event":"cmd_output","timestamp":1607098210,"output":"56000e80\"\n\u001b[0m\u001b[22m\n16:10:10.832 [info] ppl_id: f8417768-647c-4f8c-9f21-79ee3579d746, type: PplBl"},{"event":"cmd_output","timestamp":1607098210,"output":"ocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loop"},{"event":"cmd_output","timestamp":1607098210,"output":"er.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:10.839 [info] ppl_id: 744f7a59-b743-4cb8-87"},{"event":"cmd_output","timestamp":1607098210,"output":"56-33d133517971, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098210,"output":"ir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:10.847 [info] ppl_id: ad902bad-7a6c-"},{"event":"cmd_output","timestamp":1607098210,"output":"4a0e-944b-675869cac0fc, type: PplRequests, event: persisted source_args for pipeline: ad902bad-7a6c-"},{"event":"cmd_output","timestamp":1607098210,"output":"4a0e-944b-675869cac0fc, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89)"},{"event":"cmd_output","timestamp":1607098210,"output":", \n\u001b[0m\u001b[22m\n16:10:10.851 [info] ppl_id: 10f8d5f9-e0fb-4ba9-b509-b2d99bd16f14, type: PplRequests,"},{"event":"cmd_output","timestamp":1607098210,"output":" event: persisted definition for request with request_token: 2e32a158-364b-11eb-9e9d-5254005464e2, o"},{"event":"cmd_output","timestamp":1607098210,"output":"rigin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:"},{"event":"cmd_output","timestamp":1607098210,"output":"10.852 [info] ppl_id: ad902bad-7a6c-4a0e-944b-675869cac0fc, type: PplSubInits, state: fetching, eve"},{"event":"cmd_output","timestamp":1607098210,"output":"nt: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b["},{"event":"cmd_output","timestamp":1607098210,"output":"0m\u001b[22m\n16:10:10.859 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema"},{"event":"cmd_output","timestamp":1607098210,"output":".Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:10:10.855350], name: \"master-3-.semaphor"},{"event":"cmd_output","timestamp":1607098210,"output":"e/semaphore.yml\", organization_id: \"8121c90d-b801-4324-864e-778a3506e996\", project_id: \"list_grouped"},{"event":"cmd_output","timestamp":1607098210,"output":"\", queue_id: \"e50ab3c2-a172-4dc3-80db-736a66f6f20c\", scope: \"project\", updated_at: ~N[2020-12-04 16:"},{"event":"cmd_output","timestamp":1607098210,"output":"10:10.855359], user_generated: false}}\n\u001b[0m\u001b[22m\n16:10:10.866 [info] ppl_id: 744f7a59-b743-4cb8-8"},{"event":"cmd_output","timestamp":1607098210,"output":"756-33d133517971, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098210,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:10.869 [info] event: created, origi"},{"event":"cmd_output","timestamp":1607098210,"output":"n: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:10.870 [in"},{"event":"cmd_output","timestamp":1607098210,"output":"fo] ppl_id: 10f8d5f9-e0fb-4ba9-b509-b2d99bd16f14, type: PplBlocks, block_index: 0, state: initializ"},{"event":"cmd_output","timestamp":1607098210,"output":"ing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.a"},{"event":"cmd_output","timestamp":1607098210,"output":"ll_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:10.872 [info] ppl_id: 10f8d5f9-e0fb-4ba9-b509-b2d99bd16f14, type"},{"event":"cmd_output","timestamp":1607098210,"output":": PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098210,"output":"r.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:10.897 [info] ppl_id: 10f8d5f9-e0fb-4"},{"event":"cmd_output","timestamp":1607098210,"output":"ba9-b509-b2d99bd16f14, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098210,"output":": Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:10.898 [info] ppl_id: 10f8d5f9"},{"event":"cmd_output","timestamp":1607098210,"output":"-e0fb-4ba9-b509-b2d99bd16f14, type: PplBlocks, block_index: 0, state: waiting, event: exit_schedulin"},{"event":"cmd_output","timestamp":1607098210,"output":"g, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:10."},{"event":"cmd_output","timestamp":1607098210,"output":"912 [info] ppl_id: 10f8d5f9-e0fb-4ba9-b509-b2d99bd16f14, type: Ppls, state: queuing, event: exit_sc"},{"event":"cmd_output","timestamp":1607098210,"output":"heduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098210,"output":":10:10.926 [info] ppl_id: 10f8d5f9-e0fb-4ba9-b509-b2d99bd16f14, type: Ppls, state: running, event: "},{"event":"cmd_output","timestamp":1607098210,"output":"exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098210,"output":"22m\n16:10:10.937 [info] ppl_id: ad902bad-7a6c-4a0e-944b-675869cac0fc, type: PplSubInits, state: re"},{"event":"cmd_output","timestamp":1607098210,"output":"gular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chan"},{"event":"cmd_output","timestamp":1607098210,"output":"ge/1(L90), \n\u001b[0m\u001b[22m\n16:10:10.951 [info] ppl_id: a156cb57-e802-46aa-b3bd-1ef79b3be293, type: Ppl"},{"event":"cmd_output","timestamp":1607098210,"output":"Requests, event: persisted definition for request with request_token: 2e3ab2ee-364b-11eb-90e2-525400"},{"event":"cmd_output","timestamp":1607098210,"output":"5464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098210,"output":"m\n16:10:10.952 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"10f8d5f9-e0"},{"event":"cmd_output","timestamp":1607098210,"output":"fb-4ba9-b509-b2d99bd16f14\"\n\u001b[0m\u001b[22m\n16:10:10.961 [info] Queue persisted: {:ok, %Ppl.Queues.Model"},{"event":"cmd_output","timestamp":1607098210,"output":".Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:10:10.9561"},{"event":"cmd_output","timestamp":1607098210,"output":"26], name: \"master-4-.semaphore/semaphore.yml\", organization_id: \"0f4680df-d5b5-4d05-8d26-8da0059fe0"},{"event":"cmd_output","timestamp":1607098210,"output":"91\", project_id: \"list_grouped\", queue_id: \"1b1b85b7-d710-49ba-8e91-deead36d1d1e\", scope: \"project\","},{"event":"cmd_output","timestamp":1607098210,"output":" updated_at: ~N[2020-12-04 16:10:10.956178], user_generated: false}}\n\u001b[0m\u001b[22m\n16:10:10.974 [info]"},{"event":"cmd_output","timestamp":1607098210,"output":" event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098210,"output":"\u001b[22m\n16:10:10.974 [info] ppl_id: a156cb57-e802-46aa-b3bd-1ef79b3be293, type: PplBlocks, block_ind"},{"event":"cmd_output","timestamp":1607098210,"output":"ex: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHan"},{"event":"cmd_output","timestamp":1607098210,"output":"dler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:10.976 [info] block_id: a1f7745d-6b77-433"},{"event":"cmd_output","timestamp":1607098210,"output":"9-a98e-e37df46a689a, type: BlockRequests, event: persisted block run request from ppl 10f8d5f9-e0fb-"},{"event":"cmd_output","timestamp":1607098210,"output":"4ba9-b509-b2d99bd16f14 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.pr"},{"event":"cmd_output","timestamp":1607098210,"output":"ocess_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:10.977 [info] ppl_id: f3948fcc-c38d-4cfa-a202-3e631e236c7"},{"event":"cmd_output","timestamp":1607098210,"output":"c, type: PplRequests, event: persisted source_args for pipeline: f3948fcc-c38d-4cfa-a202-3e631e236c7"},{"event":"cmd_output","timestamp":1607098210,"output":"c, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:"},{"event":"cmd_output","timestamp":1607098210,"output":"10.980 [info] block_id: 048ba67f-e313-4eae-b41c-244356000e80, type: BlockRequests, event: persisted"},{"event":"cmd_output","timestamp":1607098210,"output":" build and sub_ppl details for block_request: 048ba67f-e313-4eae-b41c-244356000e80, origin: Elixir.B"},{"event":"cmd_output","timestamp":1607098210,"output":"lock.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:10.981 [info] "},{"event":"cmd_output","timestamp":1607098210,"output":" ppl_id: a156cb57-e802-46aa-b3bd-1ef79b3be293, type: PplSubInits, state: done, result: passed, event"},{"event":"cmd_output","timestamp":1607098210,"output":": exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098210,"output":"\u001b[22m\n16:10:10.983 [info] block_id: a1f7745d-6b77-4339-a98e-e37df46a689a, type: Blocks, state: ini"},{"event":"cmd_output","timestamp":1607098210,"output":"tializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.i"},{"event":"cmd_output","timestamp":1607098210,"output":"nsert/1(L43), \n\u001b[0m\u001b[22m\n16:10:10.988 [info] Block 0 of pipeline with id: 10f8d5f9-e0fb-4ba9-b509"},{"event":"cmd_output","timestamp":1607098210,"output":"-b2d99bd16f14 scheduled in block service with id: : \"a1f7745d-6b77-4339-a98e-e37df46a689a\"\n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098210,"output":"m\n16:10:10.989 [info] ppl_id: f3948fcc-c38d-4cfa-a202-3e631e236c7c, type: PplSubInits, state: fetc"},{"event":"cmd_output","timestamp":1607098210,"output":"hing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098211,"output":"90), \n\u001b[0m\u001b[22m\n16:10:10.999 [info] ppl_id: 10f8d5f9-e0fb-4ba9-b509-b2d99bd16f14, type: PplBlocks"},{"event":"cmd_output","timestamp":1607098211,"output":", block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.S"},{"event":"cmd_output","timestamp":1607098211,"output":"TM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.002 [info] ppl_id: a156cb57-e802-46aa-b3bd-1"},{"event":"cmd_output","timestamp":1607098211,"output":"ef79b3be293, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count"},{"event":"cmd_output","timestamp":1607098211,"output":": 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.005 [info] block"},{"event":"cmd_output","timestamp":1607098211,"output":"_id: 048ba67f-e313-4eae-b41c-244356000e80, type: Tasks, state: pending, event: created, recovery_cou"},{"event":"cmd_output","timestamp":1607098211,"output":"nt: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:"},{"event":"cmd_output","timestamp":1607098211,"output":"11.012 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"744f7a59-b743-4cb8-8"},{"event":"cmd_output","timestamp":1607098211,"output":"756-33d133517971\"\n\u001b[0m\u001b[22m\n16:10:11.016 [info] ppl_id: a156cb57-e802-46aa-b3bd-1ef79b3be293, typ"},{"event":"cmd_output","timestamp":1607098211,"output":"e: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.l"},{"event":"cmd_output","timestamp":1607098211,"output":"og_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.024 [info] block_id: 048ba67f-e313-4eae-b41c-24435600"},{"event":"cmd_output","timestamp":1607098211,"output":"0e80, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper"},{"event":"cmd_output","timestamp":1607098211,"output":".STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.035 [info] block_id: e3f76ecc-4d93-402e-bb"},{"event":"cmd_output","timestamp":1607098211,"output":"37-a5cfc4624bba, type: BlockRequests, event: persisted block run request from ppl 744f7a59-b743-4cb8"},{"event":"cmd_output","timestamp":1607098211,"output":"-8756-33d133517971 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.proces"},{"event":"cmd_output","timestamp":1607098211,"output":"s_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:11.046 [info] block_id: e3f76ecc-4d93-402e-bb37-a5cfc4624bba,"},{"event":"cmd_output","timestamp":1607098211,"output":" type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blo"},{"event":"cmd_output","timestamp":1607098211,"output":"cks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:11.054 [info] ppl_id: a156cb57-e802-46aa-"},{"event":"cmd_output","timestamp":1607098211,"output":"b3bd-1ef79b3be293, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098211,"output":"ixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.059 [info] Block 0 of pipeline "},{"event":"cmd_output","timestamp":1607098211,"output":"with id: 744f7a59-b743-4cb8-8756-33d133517971 scheduled in block service with id: : \"e3f76ecc-4d93-4"},{"event":"cmd_output","timestamp":1607098211,"output":"02e-bb37-a5cfc4624bba\"\n\u001b[0m\u001b[22m\n16:10:11.072 [info] ppl_id: 744f7a59-b743-4cb8-8756-33d133517971"},{"event":"cmd_output","timestamp":1607098211,"output":", type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098211,"output":": Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.073 [info] block_id: a1f774"},{"event":"cmd_output","timestamp":1607098211,"output":"5d-6b77-4339-a98e-e37df46a689a, type: BlockRequests, event: persisted build and sub_ppl details for "},{"event":"cmd_output","timestamp":1607098211,"output":"block_request: a1f7745d-6b77-4339-a98e-e37df46a689a, origin: Elixir.Block.BlockRequests.Model.BlockR"},{"event":"cmd_output","timestamp":1607098211,"output":"equestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:11.084 [info] PplBlocks WaitingState STM is "},{"event":"cmd_output","timestamp":1607098211,"output":"scheduling block 0 from pipeline: \"451f2dd4-1ce5-4dae-ba53-aa4aaf0e0daf\"\n\u001b[0m\u001b[22m\n16:10:11.090 [i"},{"event":"cmd_output","timestamp":1607098211,"output":"nfo] block_id: a1f7745d-6b77-4339-a98e-e37df46a689a, type: Tasks, state: pending, event: created, r"},{"event":"cmd_output","timestamp":1607098211,"output":"ecovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098211,"output":"22m\n16:10:11.101 [info] ppl_id: f3948fcc-c38d-4cfa-a202-3e631e236c7c, type: PplSubInits, state: re"},{"event":"cmd_output","timestamp":1607098211,"output":"gular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chan"},{"event":"cmd_output","timestamp":1607098211,"output":"ge/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.103 [info] block_id: a1f7745d-6b77-4339-a98e-e37df46a689a, type: B"},{"event":"cmd_output","timestamp":1607098211,"output":"locks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098211,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.104 [info] ppl_id: a156cb57-e802-46aa-b3bd-1ef79b3be293"},{"event":"cmd_output","timestamp":1607098211,"output":", type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.I"},{"event":"cmd_output","timestamp":1607098211,"output":"mpl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.122 [info] block_id: d2cebf47-5fdc-410e-945b-39f"},{"event":"cmd_output","timestamp":1607098211,"output":"345e04a5d, type: BlockRequests, event: persisted block run request from ppl 451f2dd4-1ce5-4dae-ba53-"},{"event":"cmd_output","timestamp":1607098211,"output":"aa4aaf0e0daf for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_resp"},{"event":"cmd_output","timestamp":1607098211,"output":"onse/4(L35), \n\u001b[0m\u001b[22m\n16:10:11.126 [info] ppl_id: ad902bad-7a6c-4a0e-944b-675869cac0fc, type: P"},{"event":"cmd_output","timestamp":1607098211,"output":"plRequests, event: persisted definition for request with request_token: 2e4567ac-364b-11eb-a763-5254"},{"event":"cmd_output","timestamp":1607098211,"output":"005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098211,"output":"22m\n16:10:11.136 [info] ppl_id: 9c52e284-86f8-496a-bb60-679230b02f4f, type: PplRequests, event: pe"},{"event":"cmd_output","timestamp":1607098211,"output":"rsisted source_args for pipeline: 9c52e284-86f8-496a-bb60-679230b02f4f, origin: Elixir.Ppl.PplReques"},{"event":"cmd_output","timestamp":1607098211,"output":"ts.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:11.140 [info] ppl_id: 9c52e284"},{"event":"cmd_output","timestamp":1607098211,"output":"-86f8-496a-bb60-679230b02f4f, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098211,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.140 [info] b"},{"event":"cmd_output","timestamp":1607098211,"output":"lock_id: d2cebf47-5fdc-410e-945b-39f345e04a5d, type: Blocks, state: initializing, event: initializin"},{"event":"cmd_output","timestamp":1607098211,"output":"g, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098211,"output":":10:11.148 [info] block_id: e3f76ecc-4d93-402e-bb37-a5cfc4624bba, type: BlockRequests, event: persi"},{"event":"cmd_output","timestamp":1607098211,"output":"sted build and sub_ppl details for block_request: e3f76ecc-4d93-402e-bb37-a5cfc4624bba, origin: Elix"},{"event":"cmd_output","timestamp":1607098211,"output":"ir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:11.150 [in"},{"event":"cmd_output","timestamp":1607098211,"output":"fo] Block 0 of pipeline with id: 451f2dd4-1ce5-4dae-ba53-aa4aaf0e0daf scheduled in block service wi"},{"event":"cmd_output","timestamp":1607098211,"output":"th id: : \"d2cebf47-5fdc-410e-945b-39f345e04a5d\"\n\u001b[0m\u001b[22m\n16:10:11.151 [info] Queue persisted: {:"},{"event":"cmd_output","timestamp":1607098211,"output":"ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[202"},{"event":"cmd_output","timestamp":1607098211,"output":"0-12-04 16:10:11.142567], name: \"master-5-.semaphore/semaphore.yml\", organization_id: \"d259e5e2-6978"},{"event":"cmd_output","timestamp":1607098211,"output":"-48af-ae0e-c7eee9b3f49a\", project_id: \"list_grouped\", queue_id: \"2967a6de-752a-423a-a11b-0c9546ab989"},{"event":"cmd_output","timestamp":1607098211,"output":"9\", scope: \"project\", updated_at: ~N[2020-12-04 16:10:11.142578], user_generated: false}}\n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098211,"output":"\n16:10:11.154 [info] block_id: e3f76ecc-4d93-402e-bb37-a5cfc4624bba, type: Tasks, state: pending, "},{"event":"cmd_output","timestamp":1607098211,"output":"event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/"},{"event":"cmd_output","timestamp":1607098211,"output":"1(L167), \n\u001b[0m\u001b[22m\n16:10:11.160 [info] ppl_id: 451f2dd4-1ce5-4dae-ba53-aa4aaf0e0daf, type: PplBl"},{"event":"cmd_output","timestamp":1607098211,"output":"ocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loop"},{"event":"cmd_output","timestamp":1607098211,"output":"er.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.162 [info] block_id: e3f76ecc-4d93-402e-"},{"event":"cmd_output","timestamp":1607098211,"output":"bb37-a5cfc4624bba, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098211,"output":"Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.164 [info] event: created, or"},{"event":"cmd_output","timestamp":1607098211,"output":"igin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:11.164 "},{"event":"cmd_output","timestamp":1607098211,"output":"[info] ppl_id: ad902bad-7a6c-4a0e-944b-675869cac0fc, type: PplBlocks, block_index: 0, state: initia"},{"event":"cmd_output","timestamp":1607098211,"output":"lizing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitStat"},{"event":"cmd_output","timestamp":1607098211,"output":"e.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:11.168 [info] ppl_id: ad902bad-7a6c-4a0e-944b-675869cac0fc, t"},{"event":"cmd_output","timestamp":1607098211,"output":"ype: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098211,"output":"ixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.181 [info] PplBlocks WaitingSta"},{"event":"cmd_output","timestamp":1607098211,"output":"te STM is scheduling block 0 from pipeline: \"a156cb57-e802-46aa-b3bd-1ef79b3be293\"\n\u001b[0m\u001b[22m\n16:10"},{"event":"cmd_output","timestamp":1607098211,"output":":11.187 [info] block_id: d2cebf47-5fdc-410e-945b-39f345e04a5d, type: BlockRequests, event: persiste"},{"event":"cmd_output","timestamp":1607098211,"output":"d build and sub_ppl details for block_request: d2cebf47-5fdc-410e-945b-39f345e04a5d, origin: Elixir."},{"event":"cmd_output","timestamp":1607098211,"output":"Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:11.191 [info]"},{"event":"cmd_output","timestamp":1607098211,"output":" block_id: d2cebf47-5fdc-410e-945b-39f345e04a5d, type: Tasks, state: pending, event: created, recov"},{"event":"cmd_output","timestamp":1607098211,"output":"ery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098211,"output":"\n16:10:11.200 [info] ppl_id: ad902bad-7a6c-4a0e-944b-675869cac0fc, type: PplBlocks, block_index: 0,"},{"event":"cmd_output","timestamp":1607098211,"output":" state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state"},{"event":"cmd_output","timestamp":1607098211,"output":"_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.200 [info] ppl_id: ad902bad-7a6c-4a0e-944b-675869cac0fc, type"},{"event":"cmd_output","timestamp":1607098211,"output":": Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.lo"},{"event":"cmd_output","timestamp":1607098211,"output":"g_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.204 [info] block_id: d2cebf47-5fdc-410e-945b-39f345e04"},{"event":"cmd_output","timestamp":1607098211,"output":"a5d, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper."},{"event":"cmd_output","timestamp":1607098211,"output":"STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.210 [info] block_id: 4ba39d24-b89d-433f-8c3"},{"event":"cmd_output","timestamp":1607098211,"output":"8-bc1efb8bb287, type: BlockRequests, event: persisted block run request from ppl a156cb57-e802-46aa-"},{"event":"cmd_output","timestamp":1607098211,"output":"b3bd-1ef79b3be293 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process"},{"event":"cmd_output","timestamp":1607098211,"output":"_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:11.219 [info] block_id: 4ba39d24-b89d-433f-8c38-bc1efb8bb287, "},{"event":"cmd_output","timestamp":1607098211,"output":"type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Bloc"},{"event":"cmd_output","timestamp":1607098211,"output":"ks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:11.224 [info] Block 0 of pipeline with id:"},{"event":"cmd_output","timestamp":1607098211,"output":" a156cb57-e802-46aa-b3bd-1ef79b3be293 scheduled in block service with id: : \"4ba39d24-b89d-433f-8c38"},{"event":"cmd_output","timestamp":1607098211,"output":"-bc1efb8bb287\"\n\u001b[0m\u001b[22m\n16:10:11.225 [info] ppl_id: ad902bad-7a6c-4a0e-944b-675869cac0fc, type: "},{"event":"cmd_output","timestamp":1607098211,"output":"Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_"},{"event":"cmd_output","timestamp":1607098211,"output":"state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.234 [info] ppl_id: 9c52e284-86f8-496a-bb60-679230b02f4f,"},{"event":"cmd_output","timestamp":1607098211,"output":" type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098211,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.244 [info] ppl_id: a156cb57-e802-46aa"},{"event":"cmd_output","timestamp":1607098211,"output":"-b3bd-1ef79b3be293, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recover"},{"event":"cmd_output","timestamp":1607098211,"output":"y_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.250 [info]"},{"event":"cmd_output","timestamp":1607098211,"output":" ppl_id: f3948fcc-c38d-4cfa-a202-3e631e236c7c, type: PplRequests, event: persisted definition for r"},{"event":"cmd_output","timestamp":1607098211,"output":"equest with request_token: 2e4eccfc-364b-11eb-97d7-5254005464e2, origin: Elixir.Ppl.PplRequests.Mode"},{"event":"cmd_output","timestamp":1607098211,"output":"l.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:11.255 [info] block_id: 4ba39d24-"},{"event":"cmd_output","timestamp":1607098211,"output":"b89d-433f-8c38-bc1efb8bb287, type: BlockRequests, event: persisted build and sub_ppl details for blo"},{"event":"cmd_output","timestamp":1607098211,"output":"ck_request: 4ba39d24-b89d-433f-8c38-bc1efb8bb287, origin: Elixir.Block.BlockRequests.Model.BlockRequ"},{"event":"cmd_output","timestamp":1607098211,"output":"estsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:11.258 [info] block_id: 4ba39d24-b89d-433f-8c38"},{"event":"cmd_output","timestamp":1607098211,"output":"-bc1efb8bb287, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block."},{"event":"cmd_output","timestamp":1607098211,"output":"Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:11.264 [info] ppl_id: ad902"},{"event":"cmd_output","timestamp":1607098211,"output":"bad-7a6c-4a0e-944b-675869cac0fc, type: Ppls, state: running, event: exit_scheduling, recovery_count:"},{"event":"cmd_output","timestamp":1607098211,"output":" 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.265 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098211,"output":": 6d621a6a-b251-4df8-833c-890b56e41b2b, type: PplRequests, event: persisted source_args for pipeline"},{"event":"cmd_output","timestamp":1607098211,"output":": 6d621a6a-b251-4df8-833c-890b56e41b2b, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.inse"},{"event":"cmd_output","timestamp":1607098211,"output":"rt_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:11.265 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{"},{"event":"cmd_output","timestamp":1607098211,"output":"__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:10:11.262947], nam"},{"event":"cmd_output","timestamp":1607098211,"output":"e: \"refs/tags/v1.6-.semaphore/semaphore.yml\", organization_id: \"bd002e52-69ff-4bbb-b930-769a19cbcec9"},{"event":"cmd_output","timestamp":1607098211,"output":"\", project_id: \"list_grouped\", queue_id: \"30937f68-7637-4828-b278-e0a7bd8b2f74\", scope: \"project\", u"},{"event":"cmd_output","timestamp":1607098211,"output":"pdated_at: ~N[2020-12-04 16:10:11.262956], user_generated: false}}\n\u001b[0m\u001b[22m\n16:10:11.268 [info] "},{"event":"cmd_output","timestamp":1607098211,"output":"block_id: 4ba39d24-b89d-433f-8c38-bc1efb8bb287, type: Blocks, state: running, event: exit_scheduling"},{"event":"cmd_output","timestamp":1607098211,"output":", recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.2"},{"event":"cmd_output","timestamp":1607098211,"output":"72 [info] ppl_id: 6d621a6a-b251-4df8-833c-890b56e41b2b, type: PplSubInits, state: fetching, event: "},{"event":"cmd_output","timestamp":1607098211,"output":"exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098211,"output":"22m\n16:10:11.284 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"ad902bad-"},{"event":"cmd_output","timestamp":1607098211,"output":"7a6c-4a0e-944b-675869cac0fc\"\n\u001b[0m\u001b[22m\n16:10:11.288 [info] event: created, origin: Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098211,"output":"SubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:11.288 [info] ppl_id: f394"},{"event":"cmd_output","timestamp":1607098211,"output":"8fcc-c38d-4cfa-a202-3e631e236c7c, type: PplBlocks, block_index: 0, state: initializing, event: creat"},{"event":"cmd_output","timestamp":1607098211,"output":"ed, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \r"},{"event":"cmd_output","timestamp":1607098211,"output":"\n\u001b[0m\u001b[22m\n16:10:11.293 [info] ppl_id: f3948fcc-c38d-4cfa-a202-3e631e236c7c, type: PplSubInits, st"},{"event":"cmd_output","timestamp":1607098211,"output":"ate: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl"},{"event":"cmd_output","timestamp":1607098211,"output":".log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.304 [info] block_id: dabab286-201f-4a55-a36d-10fe0f"},{"event":"cmd_output","timestamp":1607098211,"output":"866b05, type: BlockRequests, event: persisted block run request from ppl ad902bad-7a6c-4a0e-944b-675"},{"event":"cmd_output","timestamp":1607098211,"output":"869cac0fc for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_respons"},{"event":"cmd_output","timestamp":1607098211,"output":"e/4(L35), \n\u001b[0m\u001b[22m\n16:10:11.307 [info] ppl_id: f3948fcc-c38d-4cfa-a202-3e631e236c7c, type: PplB"},{"event":"cmd_output","timestamp":1607098211,"output":"locks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loo"},{"event":"cmd_output","timestamp":1607098211,"output":"per.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.316 [info] block_id: dabab286-201f-4a55"},{"event":"cmd_output","timestamp":1607098211,"output":"-a36d-10fe0f866b05, type: Blocks, state: initializing, event: initializing, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098211,"output":"n: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:11.329 [info] ppl_id: "},{"event":"cmd_output","timestamp":1607098211,"output":"f3948fcc-c38d-4cfa-a202-3e631e236c7c, type: Ppls, state: pending, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098211,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.330 [info] B"},{"event":"cmd_output","timestamp":1607098211,"output":"lock 0 of pipeline with id: ad902bad-7a6c-4a0e-944b-675869cac0fc scheduled in block service with id:"},{"event":"cmd_output","timestamp":1607098211,"output":" : \"dabab286-201f-4a55-a36d-10fe0f866b05\"\n\u001b[0m\u001b[22m\n16:10:11.336 [info] block_id: dabab286-201f-4"},{"event":"cmd_output","timestamp":1607098211,"output":"a55-a36d-10fe0f866b05, type: BlockRequests, event: persisted build and sub_ppl details for block_req"},{"event":"cmd_output","timestamp":1607098211,"output":"uest: dabab286-201f-4a55-a36d-10fe0f866b05, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQu"},{"event":"cmd_output","timestamp":1607098211,"output":"eries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:11.339 [info] ppl_id: ad902bad-7a6c-4a0e-944b-675869c"},{"event":"cmd_output","timestamp":1607098211,"output":"ac0fc, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098211,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.345 [info] ppl_id: 6d6"},{"event":"cmd_output","timestamp":1607098211,"output":"21a6a-b251-4df8-833c-890b56e41b2b, type: PplSubInits, state: regular_init, event: exit_scheduling, r"},{"event":"cmd_output","timestamp":1607098211,"output":"ecovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.348 "},{"event":"cmd_output","timestamp":1607098211,"output":"[info] block_id: dabab286-201f-4a55-a36d-10fe0f866b05, type: Tasks, state: pending, event: created,"},{"event":"cmd_output","timestamp":1607098211,"output":" recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098211,"output":"\u001b[22m\n16:10:11.350 [info] block_id: dabab286-201f-4a55-a36d-10fe0f866b05, type: Blocks, state: run"},{"event":"cmd_output","timestamp":1607098211,"output":"ning, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098211,"output":"90), \n\u001b[0m\u001b[22m\n16:10:11.363 [info] ppl_id: f3948fcc-c38d-4cfa-a202-3e631e236c7c, type: Ppls, sta"},{"event":"cmd_output","timestamp":1607098211,"output":"te: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_cha"},{"event":"cmd_output","timestamp":1607098211,"output":"nge/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.383 [info] ppl_id: 9c52e284-86f8-496a-bb60-679230b02f4f, type: Pp"},{"event":"cmd_output","timestamp":1607098211,"output":"lRequests, event: persisted definition for request with request_token: 2e5955aa-364b-11eb-a2f0-52540"},{"event":"cmd_output","timestamp":1607098211,"output":"05464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098211,"output":"2m\n16:10:11.389 [info] ppl_id: f3948fcc-c38d-4cfa-a202-3e631e236c7c, type: Ppls, state: running, e"},{"event":"cmd_output","timestamp":1607098211,"output":"vent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n"},{"event":"cmd_output","timestamp":1607098211,"output":"\u001b[0m\u001b[22m\n16:10:11.390 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Sche"},{"event":"cmd_output","timestamp":1607098211,"output":"ma.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:10:11.387429], name: \"refs/tags/v1.7-."},{"event":"cmd_output","timestamp":1607098211,"output":"semaphore/semaphore.yml\", organization_id: \"be43d966-c642-4587-b667-8630a4d24d1d\", project_id: \"list"},{"event":"cmd_output","timestamp":1607098211,"output":"_grouped\", queue_id: \"f0cec1f5-ac7b-48eb-bab8-b57ba6251bee\", scope: \"project\", updated_at: ~N[2020-1"},{"event":"cmd_output","timestamp":1607098211,"output":"2-04 16:10:11.387440], user_generated: false}}\n\u001b[0m\u001b[22m\n16:10:11.402 [info] PplBlocks WaitingSta"},{"event":"cmd_output","timestamp":1607098211,"output":"te STM is scheduling block 0 from pipeline: \"f3948fcc-c38d-4cfa-a202-3e631e236c7c\"\n\u001b[0m\u001b[22m\n16:10"},{"event":"cmd_output","timestamp":1607098211,"output":":11.405 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1"},{"event":"cmd_output","timestamp":1607098211,"output":"(L105), \n\u001b[0m\u001b[22m\n16:10:11.405 [info] ppl_id: 9c52e284-86f8-496a-bb60-679230b02f4f, type: PplBlo"},{"event":"cmd_output","timestamp":1607098211,"output":"cks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplS"},{"event":"cmd_output","timestamp":1607098211,"output":"ubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:11.407 [info] ppl_id: 9c52e"},{"event":"cmd_output","timestamp":1607098211,"output":"284-86f8-496a-bb60-679230b02f4f, type: PplSubInits, state: done, result: passed, event: exit_schedul"},{"event":"cmd_output","timestamp":1607098211,"output":"ing, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:1"},{"event":"cmd_output","timestamp":1607098211,"output":"1.408 [info] ppl_id: b3db881a-96cd-4172-b05f-dd75d21e74db, type: PplRequests, event: persisted sour"},{"event":"cmd_output","timestamp":1607098211,"output":"ce_args for pipeline: b3db881a-96cd-4172-b05f-dd75d21e74db, origin: Elixir.Ppl.PplRequests.Model.Ppl"},{"event":"cmd_output","timestamp":1607098211,"output":"RequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:11.414 [info] block_id: 0c41a4d2-eeb4-470c"},{"event":"cmd_output","timestamp":1607098211,"output":"-9cc1-fe45f44fd780, type: BlockRequests, event: persisted block run request from ppl f3948fcc-c38d-4"},{"event":"cmd_output","timestamp":1607098211,"output":"cfa-a202-3e631e236c7c for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.pro"},{"event":"cmd_output","timestamp":1607098211,"output":"cess_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:11.418 [info] block_id: 0c41a4d2-eeb4-470c-9cc1-fe45f44fd7"},{"event":"cmd_output","timestamp":1607098211,"output":"80, type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block."},{"event":"cmd_output","timestamp":1607098211,"output":"Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:11.423 [info] ppl_id: b3db881a-96cd-41"},{"event":"cmd_output","timestamp":1607098211,"output":"72-b05f-dd75d21e74db, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098211,"output":" origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.423 [info] Block 0 o"},{"event":"cmd_output","timestamp":1607098211,"output":"f pipeline with id: f3948fcc-c38d-4cfa-a202-3e631e236c7c scheduled in block service with id: : \"0c41"},{"event":"cmd_output","timestamp":1607098211,"output":"a4d2-eeb4-470c-9cc1-fe45f44fd780\"\n\u001b[0m\u001b[22m\n16:10:11.429 [info] ppl_id: f3948fcc-c38d-4cfa-a202-3"},{"event":"cmd_output","timestamp":1607098211,"output":"e631e236c7c, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count"},{"event":"cmd_output","timestamp":1607098211,"output":": 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.433 [info] block"},{"event":"cmd_output","timestamp":1607098211,"output":"_id: 0c41a4d2-eeb4-470c-9cc1-fe45f44fd780, type: BlockRequests, event: persisted build and sub_ppl d"},{"event":"cmd_output","timestamp":1607098211,"output":"etails for block_request: 0c41a4d2-eeb4-470c-9cc1-fe45f44fd780, origin: Elixir.Block.BlockRequests.M"},{"event":"cmd_output","timestamp":1607098211,"output":"odel.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:11.434 [info] ppl_id: 9c52e284-86"},{"event":"cmd_output","timestamp":1607098211,"output":"f8-496a-bb60-679230b02f4f, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098211,"output":"igin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.437 [info] ppl_id: 9c52"},{"event":"cmd_output","timestamp":1607098211,"output":"e284-86f8-496a-bb60-679230b02f4f, type: PplBlocks, block_index: 0, state: waiting, event: exit_sched"},{"event":"cmd_output","timestamp":1607098211,"output":"uling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10"},{"event":"cmd_output","timestamp":1607098211,"output":":11.439 [info] block_id: 0c41a4d2-eeb4-470c-9cc1-fe45f44fd780, type: Tasks, state: pending, event: "},{"event":"cmd_output","timestamp":1607098211,"output":"created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167)"},{"event":"cmd_output","timestamp":1607098211,"output":", \n\u001b[0m\u001b[22m\n16:10:11.443 [info] block_id: 0c41a4d2-eeb4-470c-9cc1-fe45f44fd780, type: Blocks, st"},{"event":"cmd_output","timestamp":1607098211,"output":"ate: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_ch"},{"event":"cmd_output","timestamp":1607098211,"output":"ange/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.454 [info] ppl_id: 9c52e284-86f8-496a-bb60-679230b02f4f, type: P"},{"event":"cmd_output","timestamp":1607098211,"output":"pls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_s"},{"event":"cmd_output","timestamp":1607098211,"output":"tate_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.481 [info] ppl_id: 6d621a6a-b251-4df8-833c-890b56e41b2b, "},{"event":"cmd_output","timestamp":1607098211,"output":"type: PplRequests, event: persisted definition for request with request_token: 2e635622-364b-11eb-a0"},{"event":"cmd_output","timestamp":1607098211,"output":"79-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \r"},{"event":"cmd_output","timestamp":1607098211,"output":"\n\u001b[0m\u001b[22m\n16:10:11.485 [info] ppl_id: b3db881a-96cd-4172-b05f-dd75d21e74db, type: PplSubInits, st"},{"event":"cmd_output","timestamp":1607098211,"output":"ate: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_sta"},{"event":"cmd_output","timestamp":1607098211,"output":"te_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.489 [info] ppl_id: 9c52e284-86f8-496a-bb60-679230b02f4f, ty"},{"event":"cmd_output","timestamp":1607098211,"output":"pe: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl."},{"event":"cmd_output","timestamp":1607098211,"output":"log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.492 [info] Queue persisted: {:ok, %Ppl.Queues.Model."},{"event":"cmd_output","timestamp":1607098211,"output":"Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:10:11.48991"},{"event":"cmd_output","timestamp":1607098211,"output":"7], name: \"refs/tags/v1.8-.semaphore/semaphore.yml\", organization_id: \"6fc58770-a07a-44aa-894c-ca6d2"},{"event":"cmd_output","timestamp":1607098211,"output":"3c3578d\", project_id: \"list_grouped\", queue_id: \"ea1053f0-f267-4f90-b99c-c4df42f154e3\", scope: \"proj"},{"event":"cmd_output","timestamp":1607098211,"output":"ect\", updated_at: ~N[2020-12-04 16:10:11.489930], user_generated: false}}\n\u001b[0m\u001b[22m\n16:10:11.501 ["},{"event":"cmd_output","timestamp":1607098211,"output":"info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \r"},{"event":"cmd_output","timestamp":1607098211,"output":"\n\u001b[0m\u001b[22m\n16:10:11.501 [info] ppl_id: 6d621a6a-b251-4df8-833c-890b56e41b2b, type: PplBlocks, bloc"},{"event":"cmd_output","timestamp":1607098211,"output":"k_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.S"},{"event":"cmd_output","timestamp":1607098211,"output":"TMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:11.503 [info] PplBlocks WaitingState"},{"event":"cmd_output","timestamp":1607098211,"output":" STM is scheduling block 0 from pipeline: \"9c52e284-86f8-496a-bb60-679230b02f4f\"\n\u001b[0m\u001b[22m\n16:10:1"},{"event":"cmd_output","timestamp":1607098211,"output":"1.507 [info] ppl_id: 6d621a6a-b251-4df8-833c-890b56e41b2b, type: PplSubInits, state: done, result: "},{"event":"cmd_output","timestamp":1607098211,"output":"passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1"},{"event":"cmd_output","timestamp":1607098211,"output":"(L90), \n\u001b[0m\u001b[22m\n16:10:11.518 [info] block_id: 66450015-b75e-4d47-871b-19e00cab4eb3, type: Block"},{"event":"cmd_output","timestamp":1607098211,"output":"Requests, event: persisted block run request from ppl 9c52e284-86f8-496a-bb60-679230b02f4f for block"},{"event":"cmd_output","timestamp":1607098211,"output":" 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098211,"output":"2m\n16:10:11.519 [info] ppl_id: 6d621a6a-b251-4df8-833c-890b56e41b2b, type: PplBlocks, block_index:"},{"event":"cmd_output","timestamp":1607098211,"output":" 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_st"},{"event":"cmd_output","timestamp":1607098211,"output":"ate_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.527 [info] block_id: 66450015-b75e-4d47-871b-19e00cab4eb3,"},{"event":"cmd_output","timestamp":1607098211,"output":" type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blo"},{"event":"cmd_output","timestamp":1607098211,"output":"cks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:11.530 [info] Block 0 of pipeline with id"},{"event":"cmd_output","timestamp":1607098211,"output":": 9c52e284-86f8-496a-bb60-679230b02f4f scheduled in block service with id: : \"66450015-b75e-4d47-871"},{"event":"cmd_output","timestamp":1607098211,"output":"b-19e00cab4eb3\"\n\u001b[0m\u001b[22m\n16:10:11.534 [info] ppl_id: 6d621a6a-b251-4df8-833c-890b56e41b2b, type:"},{"event":"cmd_output","timestamp":1607098211,"output":" Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098211,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.541 [info] ppl_id: 9c52e284-86f8-496a-bb60-679230b02f4f"},{"event":"cmd_output","timestamp":1607098211,"output":", type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098211,"output":": Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.549 [info] block_id: 664500"},{"event":"cmd_output","timestamp":1607098211,"output":"15-b75e-4d47-871b-19e00cab4eb3, type: BlockRequests, event: persisted build and sub_ppl details for "},{"event":"cmd_output","timestamp":1607098211,"output":"block_request: 66450015-b75e-4d47-871b-19e00cab4eb3, origin: Elixir.Block.BlockRequests.Model.BlockR"},{"event":"cmd_output","timestamp":1607098211,"output":"equestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:11.552 [info] block_id: 66450015-b75e-4d47-8"},{"event":"cmd_output","timestamp":1607098211,"output":"71b-19e00cab4eb3, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Blo"},{"event":"cmd_output","timestamp":1607098211,"output":"ck.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:11.557 [info] block_id: "},{"event":"cmd_output","timestamp":1607098211,"output":"66450015-b75e-4d47-871b-19e00cab4eb3, type: Blocks, state: running, event: exit_scheduling, recovery"},{"event":"cmd_output","timestamp":1607098211,"output":"_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.564 [info] "},{"event":"cmd_output","timestamp":1607098211,"output":" ppl_id: 6d621a6a-b251-4df8-833c-890b56e41b2b, type: Ppls, state: queuing, event: exit_scheduling, r"},{"event":"cmd_output","timestamp":1607098211,"output":"ecovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.567 "},{"event":"cmd_output","timestamp":1607098211,"output":"[info] ppl_id: 6ed662cb-2593-40e8-ba32-ff3981693ad2, type: PplRequests, event: persisted source_arg"},{"event":"cmd_output","timestamp":1607098211,"output":"s for pipeline: 6ed662cb-2593-40e8-ba32-ff3981693ad2, origin: Elixir.Ppl.PplRequests.Model.PplReques"},{"event":"cmd_output","timestamp":1607098211,"output":"tsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:11.573 [info] ppl_id: 6ed662cb-2593-40e8-ba32-ff"},{"event":"cmd_output","timestamp":1607098211,"output":"3981693ad2, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: E"},{"event":"cmd_output","timestamp":1607098211,"output":"lixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.585 [info] ppl_id: 6d621a6a-b2"},{"event":"cmd_output","timestamp":1607098211,"output":"51-4df8-833c-890b56e41b2b, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098211,"output":"igin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.597 [info] PplBlocks Wa"},{"event":"cmd_output","timestamp":1607098211,"output":"itingState STM is scheduling block 0 from pipeline: \"6d621a6a-b251-4df8-833c-890b56e41b2b\"\n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098211,"output":"m\n16:10:11.600 [info] block_id: 048ba67f-e313-4eae-b41c-244356000e80, type: Tasks, state: running,"},{"event":"cmd_output","timestamp":1607098211,"output":" event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), "},{"event":"cmd_output","timestamp":1607098211,"output":"\n\u001b[0m\u001b[22m\n16:10:11.618 [info] ppl_id: b3db881a-96cd-4172-b05f-dd75d21e74db, type: PplRequests, e"},{"event":"cmd_output","timestamp":1607098211,"output":"vent: persisted definition for request with request_token: 2e6f02d8-364b-11eb-8775-5254005464e2, ori"},{"event":"cmd_output","timestamp":1607098211,"output":"gin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:11"},{"event":"cmd_output","timestamp":1607098211,"output":".624 [info] block_id: bb7b1055-4070-4b96-872a-79e9361a80a9, type: BlockRequests, event: persisted b"},{"event":"cmd_output","timestamp":1607098211,"output":"lock run request from ppl 6d621a6a-b251-4df8-833c-890b56e41b2b for block 0, origin: Elixir.Block.Blo"},{"event":"cmd_output","timestamp":1607098211,"output":"ckRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:11.636 [info] blo"},{"event":"cmd_output","timestamp":1607098211,"output":"ck_id: bb7b1055-4070-4b96-872a-79e9361a80a9, type: Blocks, state: initializing, event: initializing,"},{"event":"cmd_output","timestamp":1607098211,"output":" recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098211,"output":"0:11.637 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:lo"},{"event":"cmd_output","timestamp":1607098211,"output":"aded, \"queues\">, inserted_at: ~N[2020-12-04 16:10:11.628429], name: \"refs/tags/v1.9-.semaphore/semap"},{"event":"cmd_output","timestamp":1607098211,"output":"hore.yml\", organization_id: \"91fa9a1e-c317-47ca-91bf-e6651cacea93\", project_id: \"list_grouped\", queu"},{"event":"cmd_output","timestamp":1607098211,"output":"e_id: \"242f35e1-496f-4772-a115-4c023b6b567b\", scope: \"project\", updated_at: ~N[2020-12-04 16:10:11.6"},{"event":"cmd_output","timestamp":1607098211,"output":"28442], user_generated: false}}\n\u001b[0m\u001b[22m\n16:10:11.645 [info] Block 0 of pipeline with id: 6d621a"},{"event":"cmd_output","timestamp":1607098211,"output":"6a-b251-4df8-833c-890b56e41b2b scheduled in block service with id: : \"bb7b1055-4070-4b96-872a-79e936"},{"event":"cmd_output","timestamp":1607098211,"output":"1a80a9\"\n\u001b[0m\u001b[22m\n16:10:11.650 [info] ppl_id: 6d621a6a-b251-4df8-833c-890b56e41b2b, type: PplBloc"},{"event":"cmd_output","timestamp":1607098211,"output":"ks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper"},{"event":"cmd_output","timestamp":1607098211,"output":".STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.655 [info] block_id: bb7b1055-4070-4b96-87"},{"event":"cmd_output","timestamp":1607098211,"output":"2a-79e9361a80a9, type: BlockRequests, event: persisted build and sub_ppl details for block_request: "},{"event":"cmd_output","timestamp":1607098211,"output":"bb7b1055-4070-4b96-872a-79e9361a80a9, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries."},{"event":"cmd_output","timestamp":1607098211,"output":"insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:11.662 [info] block_id: a1f7745d-6b77-4339-a98e-e37df46a689"},{"event":"cmd_output","timestamp":1607098211,"output":"a, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM"},{"event":"cmd_output","timestamp":1607098211,"output":".Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.662 [info] ppl_id: 6ed662cb-2593-40e8-ba32-ff3"},{"event":"cmd_output","timestamp":1607098211,"output":"981693ad2, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098211,"output":": Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.668 [info] event: created, "},{"event":"cmd_output","timestamp":1607098211,"output":"origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:11.66"},{"event":"cmd_output","timestamp":1607098211,"output":"8 [info] ppl_id: b3db881a-96cd-4172-b05f-dd75d21e74db, type: PplBlocks, block_index: 0, state: init"},{"event":"cmd_output","timestamp":1607098211,"output":"ializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitSt"},{"event":"cmd_output","timestamp":1607098211,"output":"ate.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:11.671 [info] block_id: bb7b1055-4070-4b96-872a-79e9361a80a"},{"event":"cmd_output","timestamp":1607098211,"output":"9, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHa"},{"event":"cmd_output","timestamp":1607098211,"output":"ndler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:11.675 [info] block_id: bb7b1055-4070-4"},{"event":"cmd_output","timestamp":1607098211,"output":"b96-872a-79e9361a80a9, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098211,"output":"in: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.680 [info] ppl_id: b3db88"},{"event":"cmd_output","timestamp":1607098211,"output":"1a-96cd-4172-b05f-dd75d21e74db, type: PplSubInits, state: done, result: passed, event: exit_scheduli"},{"event":"cmd_output","timestamp":1607098211,"output":"ng, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11"},{"event":"cmd_output","timestamp":1607098211,"output":".704 [info] ppl_id: b3db881a-96cd-4172-b05f-dd75d21e74db, type: Ppls, state: pending, event: exit_s"},{"event":"cmd_output","timestamp":1607098211,"output":"cheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098211,"output":"6:10:11.711 [info] ppl_id: 2483651c-19f5-4776-9786-44f6100dbdc1, type: PplRequests, event: persiste"},{"event":"cmd_output","timestamp":1607098211,"output":"d source_args for pipeline: 2483651c-19f5-4776-9786-44f6100dbdc1, origin: Elixir.Ppl.PplRequests.Mod"},{"event":"cmd_output","timestamp":1607098211,"output":"el.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:11.713 [info] ppl_id: b3db881a-96cd-"},{"event":"cmd_output","timestamp":1607098211,"output":"4172-b05f-dd75d21e74db, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, rec"},{"event":"cmd_output","timestamp":1607098211,"output":"overy_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.719 [i"},{"event":"cmd_output","timestamp":1607098211,"output":"nfo] ppl_id: 2483651c-19f5-4776-9786-44f6100dbdc1, type: PplSubInits, state: fetching, event: exit_"},{"event":"cmd_output","timestamp":1607098211,"output":"scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098211,"output":"16:10:11.727 [info] block_id: e3f76ecc-4d93-402e-bb37-a5cfc4624bba, type: Tasks, state: running, ev"},{"event":"cmd_output","timestamp":1607098211,"output":"ent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b"},{"event":"cmd_output","timestamp":1607098211,"output":"[0m\u001b[22m\n16:10:11.737 [info] ppl_id: b3db881a-96cd-4172-b05f-dd75d21e74db, type: Ppls, state: queu"},{"event":"cmd_output","timestamp":1607098211,"output":"ing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L9"},{"event":"cmd_output","timestamp":1607098211,"output":"0), \n\u001b[0m\u001b[22m\n16:10:11.766 [info] block_id: d2cebf47-5fdc-410e-945b-39f345e04a5d, type: Tasks, s"},{"event":"cmd_output","timestamp":1607098211,"output":"tate: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098211,"output":"hange/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.773 [info] ppl_id: b3db881a-96cd-4172-b05f-dd75d21e74db, type: "},{"event":"cmd_output","timestamp":1607098211,"output":"Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_"},{"event":"cmd_output","timestamp":1607098211,"output":"state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.792 [info] PplBlocks WaitingState STM is scheduling bloc"},{"event":"cmd_output","timestamp":1607098211,"output":"k 0 from pipeline: \"b3db881a-96cd-4172-b05f-dd75d21e74db\"\n\u001b[0m\u001b[22m\n16:10:11.796 [info] block_id:"},{"event":"cmd_output","timestamp":1607098211,"output":" 4ba39d24-b89d-433f-8c38-bc1efb8bb287, type: Tasks, state: running, event: exit_scheduling, recovery"},{"event":"cmd_output","timestamp":1607098211,"output":"_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.798 [info] "},{"event":"cmd_output","timestamp":1607098211,"output":" ppl_id: 2483651c-19f5-4776-9786-44f6100dbdc1, type: PplSubInits, state: regular_init, event: exit_s"},{"event":"cmd_output","timestamp":1607098211,"output":"cheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098211,"output":"6:10:11.805 [info] ppl_id: 6ed662cb-2593-40e8-ba32-ff3981693ad2, type: PplRequests, event: persiste"},{"event":"cmd_output","timestamp":1607098211,"output":"d definition for request with request_token: 2e7b8c06-364b-11eb-b11b-5254005464e2, origin: Elixir.Pp"},{"event":"cmd_output","timestamp":1607098211,"output":"l.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:11.806 [info] b"},{"event":"cmd_output","timestamp":1607098211,"output":"lock_id: 9163706b-16eb-4f3d-a5d1-f0ca4c376a43, type: BlockRequests, event: persisted block run reque"},{"event":"cmd_output","timestamp":1607098211,"output":"st from ppl b3db881a-96cd-4172-b05f-dd75d21e74db for block 0, origin: Elixir.Block.BlockRequests.Mod"},{"event":"cmd_output","timestamp":1607098211,"output":"el.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:11.808 [info] block_id: 9163706"},{"event":"cmd_output","timestamp":1607098211,"output":"b-16eb-4f3d-a5d1-f0ca4c376a43, type: Blocks, state: initializing, event: initializing, recovery_coun"},{"event":"cmd_output","timestamp":1607098211,"output":"t: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:11.816 [info"},{"event":"cmd_output","timestamp":1607098211,"output":"] Block 0 of pipeline with id: b3db881a-96cd-4172-b05f-dd75d21e74db scheduled in block service with"},{"event":"cmd_output","timestamp":1607098211,"output":" id: : \"9163706b-16eb-4f3d-a5d1-f0ca4c376a43\"\n\u001b[0m\u001b[22m\n16:10:11.816 [info] Queue persisted: {:ok"},{"event":"cmd_output","timestamp":1607098211,"output":", %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-"},{"event":"cmd_output","timestamp":1607098211,"output":"12-04 16:10:11.809368], name: \"refs/tags/v1.10-.semaphore/semaphore.yml\", organization_id: \"b1868eee"},{"event":"cmd_output","timestamp":1607098211,"output":"-fa76-4031-ad26-8f82a1d83f2f\", project_id: \"list_grouped\", queue_id: \"22d8f140-0815-45e9-94aa-b62fc5"},{"event":"cmd_output","timestamp":1607098211,"output":"242da7\", scope: \"project\", updated_at: ~N[2020-12-04 16:10:11.809381], user_generated: false}}\n\u001b[0m"},{"event":"cmd_output","timestamp":1607098211,"output":"\u001b[22m\n16:10:11.825 [info] block_id: dabab286-201f-4a55-a36d-10fe0f866b05, type: Tasks, state: runn"},{"event":"cmd_output","timestamp":1607098211,"output":"ing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L9"},{"event":"cmd_output","timestamp":1607098211,"output":"0), \n\u001b[0m\u001b[22m\n16:10:11.825 [info] ppl_id: b3db881a-96cd-4172-b05f-dd75d21e74db, type: PplBlocks,"},{"event":"cmd_output","timestamp":1607098211,"output":" block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.ST"},{"event":"cmd_output","timestamp":1607098211,"output":"M.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.828 [info] block_id: 048ba67f-e313-4eae-b41c-"},{"event":"cmd_output","timestamp":1607098211,"output":"244356000e80, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Lo"},{"event":"cmd_output","timestamp":1607098211,"output":"oper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.830 [info] event: created, origin: Eli"},{"event":"cmd_output","timestamp":1607098211,"output":"xir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:11.830 [info] p"},{"event":"cmd_output","timestamp":1607098211,"output":"pl_id: 6ed662cb-2593-40e8-ba32-ff3981693ad2, type: PplBlocks, block_index: 0, state: initializing, e"},{"event":"cmd_output","timestamp":1607098211,"output":"vent: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?"},{"event":"cmd_output","timestamp":1607098211,"output":"/1(L105), \n\u001b[0m\u001b[22m\n16:10:11.833 [info] ppl_id: 6ed662cb-2593-40e8-ba32-ff3981693ad2, type: PplS"},{"event":"cmd_output","timestamp":1607098211,"output":"ubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loop"},{"event":"cmd_output","timestamp":1607098211,"output":"er.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.837 [info] block_id: 9163706b-16eb-4f3d-"},{"event":"cmd_output","timestamp":1607098211,"output":"a5d1-f0ca4c376a43, type: BlockRequests, event: persisted build and sub_ppl details for block_request"},{"event":"cmd_output","timestamp":1607098211,"output":": 9163706b-16eb-4f3d-a5d1-f0ca4c376a43, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQuerie"},{"event":"cmd_output","timestamp":1607098211,"output":"s.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:11.841 [info] block_id: 9163706b-16eb-4f3d-a5d1-f0ca4c376"},{"event":"cmd_output","timestamp":1607098211,"output":"a43, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STM"},{"event":"cmd_output","timestamp":1607098211,"output":"Handler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:11.845 [info] block_id: 9163706b-16eb"},{"event":"cmd_output","timestamp":1607098211,"output":"-4f3d-a5d1-f0ca4c376a43, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098211,"output":"igin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.861 [info] ppl_id: 6ed6"},{"event":"cmd_output","timestamp":1607098211,"output":"62cb-2593-40e8-ba32-ff3981693ad2, type: PplBlocks, block_index: 0, state: waiting, event: exit_sched"},{"event":"cmd_output","timestamp":1607098211,"output":"uling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10"},{"event":"cmd_output","timestamp":1607098211,"output":":11.866 [info] block_id: 048ba67f-e313-4eae-b41c-244356000e80, type: Blocks, state: done, event: ex"},{"event":"cmd_output","timestamp":1607098211,"output":"it_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098211,"output":"m\n16:10:11.867 [info] ppl_id: 3d6f1f89-3cd1-47de-892c-dffdcea48d92, type: PplRequests, event: pers"},{"event":"cmd_output","timestamp":1607098211,"output":"isted source_args for pipeline: 3d6f1f89-3cd1-47de-892c-dffdcea48d92, origin: Elixir.Ppl.PplRequests"},{"event":"cmd_output","timestamp":1607098211,"output":".Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:11.870 [info] ppl_id: 3d6f1f89-3"},{"event":"cmd_output","timestamp":1607098211,"output":"cd1-47de-892c-dffdcea48d92, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_cou"},{"event":"cmd_output","timestamp":1607098211,"output":"nt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.873 [info] blo"},{"event":"cmd_output","timestamp":1607098211,"output":"ck_id: 0c41a4d2-eeb4-470c-9cc1-fe45f44fd780, type: Tasks, state: running, event: exit_scheduling, re"},{"event":"cmd_output","timestamp":1607098211,"output":"covery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.885 ["},{"event":"cmd_output","timestamp":1607098211,"output":"info] ppl_id: 6ed662cb-2593-40e8-ba32-ff3981693ad2, type: Ppls, state: pending, event: exit_schedul"},{"event":"cmd_output","timestamp":1607098211,"output":"ing, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:1"},{"event":"cmd_output","timestamp":1607098211,"output":"1.900 [info] block_id: 66450015-b75e-4d47-871b-19e00cab4eb3, type: Tasks, state: running, event: ex"},{"event":"cmd_output","timestamp":1607098211,"output":"it_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098211,"output":"m\n16:10:11.928 [info] ppl_id: 2483651c-19f5-4776-9786-44f6100dbdc1, type: PplRequests, event: pers"},{"event":"cmd_output","timestamp":1607098211,"output":"isted definition for request with request_token: 2e847262-364b-11eb-b12b-5254005464e2, origin: Elixi"},{"event":"cmd_output","timestamp":1607098211,"output":"r.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:11.929 [info"},{"event":"cmd_output","timestamp":1607098211,"output":"] ppl_id: 6ed662cb-2593-40e8-ba32-ff3981693ad2, type: Ppls, state: queuing, event: exit_scheduling,"},{"event":"cmd_output","timestamp":1607098211,"output":" recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.95"},{"event":"cmd_output","timestamp":1607098211,"output":"5 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \""},{"event":"cmd_output","timestamp":1607098211,"output":"queues\">, inserted_at: ~N[2020-12-04 16:10:11.953795], name: \"refs/tags/v1.11-.semaphore/semaphore.y"},{"event":"cmd_output","timestamp":1607098211,"output":"ml\", organization_id: \"c4ebc2b9-0a96-4e48-a5a2-fb3566df5bf7\", project_id: \"list_grouped\", queue_id: "},{"event":"cmd_output","timestamp":1607098211,"output":"\"44e32996-7019-4bf5-b7f8-8758d468ab1a\", scope: \"project\", updated_at: ~N[2020-12-04 16:10:11.953808]"},{"event":"cmd_output","timestamp":1607098211,"output":", user_generated: false}}\n\u001b[0m\u001b[22m\n16:10:11.959 [info] block_id: bb7b1055-4070-4b96-872a-79e9361"},{"event":"cmd_output","timestamp":1607098211,"output":"a80a9, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper"},{"event":"cmd_output","timestamp":1607098211,"output":".STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.985 [info] ppl_id: f8417768-647c-4f8c-9f21"},{"event":"cmd_output","timestamp":1607098211,"output":"-79ee3579d746, block_id: 048ba67f-e313-4eae-b41c-244356000e80, type: PplBlocks, block_index: 0, stat"},{"event":"cmd_output","timestamp":1607098211,"output":"e: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.l"},{"event":"cmd_output","timestamp":1607098211,"output":"og_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.985 [info] block_id: a1f7745d-6b77-4339-a98e-e37df46a"},{"event":"cmd_output","timestamp":1607098211,"output":"689a, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM"},{"event":"cmd_output","timestamp":1607098211,"output":".Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:11.990 [info] event: created, origin: Elixir.Ppl."},{"event":"cmd_output","timestamp":1607098211,"output":"PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:11.990 [info] ppl_id: 2"},{"event":"cmd_output","timestamp":1607098211,"output":"483651c-19f5-4776-9786-44f6100dbdc1, type: PplBlocks, block_index: 0, state: initializing, event: cr"},{"event":"cmd_output","timestamp":1607098211,"output":"eated, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105)"},{"event":"cmd_output","timestamp":1607098212,"output":", \n\u001b[0m\u001b[22m\n16:10:12.010 [info] ppl_id: 2483651c-19f5-4776-9786-44f6100dbdc1, type: PplSubInits,"},{"event":"cmd_output","timestamp":1607098212,"output":" state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.I"},{"event":"cmd_output","timestamp":1607098212,"output":"mpl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.011 [info] ppl_id: 6ed662cb-2593-40e8-ba32-ff398"},{"event":"cmd_output","timestamp":1607098212,"output":"1693ad2, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loope"},{"event":"cmd_output","timestamp":1607098212,"output":"r.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.014 [info] block_id: a1f7745d-6b77-4339-a"},{"event":"cmd_output","timestamp":1607098212,"output":"98e-e37df46a689a, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098212,"output":"ir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.023 [info] block_id: 9163706b-16e"},{"event":"cmd_output","timestamp":1607098212,"output":"b-4f3d-a5d1-f0ca4c376a43, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098212,"output":"igin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.026 [info] ppl_id: 3d6f"},{"event":"cmd_output","timestamp":1607098212,"output":"1f89-3cd1-47de-892c-dffdcea48d92, type: PplSubInits, state: regular_init, event: exit_scheduling, re"},{"event":"cmd_output","timestamp":1607098212,"output":"covery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.026 ["},{"event":"cmd_output","timestamp":1607098212,"output":"info] ppl_id: b4243f3a-3b21-43bd-acc5-01a28e7e74c0, type: PplRequests, event: persisted source_args"},{"event":"cmd_output","timestamp":1607098212,"output":" for pipeline: b4243f3a-3b21-43bd-acc5-01a28e7e74c0, origin: Elixir.Ppl.PplRequests.Model.PplRequest"},{"event":"cmd_output","timestamp":1607098212,"output":"sQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:12.042 [info] PplBlocks WaitingState STM is sched"},{"event":"cmd_output","timestamp":1607098212,"output":"uling block 0 from pipeline: \"6ed662cb-2593-40e8-ba32-ff3981693ad2\"\n\u001b[0m\u001b[22m\n16:10:12.043 [info] "},{"event":"cmd_output","timestamp":1607098212,"output":" ppl_id: b4243f3a-3b21-43bd-acc5-01a28e7e74c0, type: PplSubInits, state: fetching, event: exit_sched"},{"event":"cmd_output","timestamp":1607098212,"output":"uling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10"},{"event":"cmd_output","timestamp":1607098212,"output":":12.051 [info] ppl_id: 10f8d5f9-e0fb-4ba9-b509-b2d99bd16f14, block_id: a1f7745d-6b77-4339-a98e-e37d"},{"event":"cmd_output","timestamp":1607098212,"output":"f46a689a, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, reco"},{"event":"cmd_output","timestamp":1607098212,"output":"very_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.055 [in"},{"event":"cmd_output","timestamp":1607098212,"output":"fo] ppl_id: 2483651c-19f5-4776-9786-44f6100dbdc1, type: Ppls, state: pending, event: exit_schedulin"},{"event":"cmd_output","timestamp":1607098212,"output":"g, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12."},{"event":"cmd_output","timestamp":1607098212,"output":"059 [info] ppl_id: 2483651c-19f5-4776-9786-44f6100dbdc1, type: PplBlocks, block_index: 0, state: wa"},{"event":"cmd_output","timestamp":1607098212,"output":"iting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1("},{"event":"cmd_output","timestamp":1607098212,"output":"L90), \n\u001b[0m\u001b[22m\n16:10:12.067 [info] block_id: e2af100f-d6f6-4073-b5d8-7888f2ed28de, type: BlockR"},{"event":"cmd_output","timestamp":1607098212,"output":"equests, event: persisted block run request from ppl 6ed662cb-2593-40e8-ba32-ff3981693ad2 for block "},{"event":"cmd_output","timestamp":1607098212,"output":"0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098212,"output":"m\n16:10:12.073 [info] block_id: e2af100f-d6f6-4073-b5d8-7888f2ed28de, type: Blocks, state: initial"},{"event":"cmd_output","timestamp":1607098212,"output":"izing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.inser"},{"event":"cmd_output","timestamp":1607098212,"output":"t/1(L43), \n\u001b[0m\u001b[22m\n16:10:12.081 [info] Block 0 of pipeline with id: 6ed662cb-2593-40e8-ba32-ff3"},{"event":"cmd_output","timestamp":1607098212,"output":"981693ad2 scheduled in block service with id: : \"e2af100f-d6f6-4073-b5d8-7888f2ed28de\"\n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098212,"output":"6:10:12.084 [info] ppl_id: 2483651c-19f5-4776-9786-44f6100dbdc1, type: Ppls, state: queuing, event:"},{"event":"cmd_output","timestamp":1607098212,"output":" exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098212,"output":"[22m\n16:10:12.092 [info] ppl_id: 6ed662cb-2593-40e8-ba32-ff3981693ad2, type: PplBlocks, block_inde"},{"event":"cmd_output","timestamp":1607098212,"output":"x: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_"},{"event":"cmd_output","timestamp":1607098212,"output":"state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.105 [info] block_id: e2af100f-d6f6-4073-b5d8-7888f2ed28d"},{"event":"cmd_output","timestamp":1607098212,"output":"e, type: BlockRequests, event: persisted build and sub_ppl details for block_request: e2af100f-d6f6-"},{"event":"cmd_output","timestamp":1607098212,"output":"4073-b5d8-7888f2ed28de, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2"},{"event":"cmd_output","timestamp":1607098212,"output":"(L41), \n\u001b[0m\u001b[22m\n16:10:12.116 [info] block_id: e2af100f-d6f6-4073-b5d8-7888f2ed28de, type: Tasks"},{"event":"cmd_output","timestamp":1607098212,"output":", state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.Initiali"},{"event":"cmd_output","timestamp":1607098212,"output":"zingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:12.125 [info] ppl_id: 3d6f1f89-3cd1-47de-892c-dffdcea"},{"event":"cmd_output","timestamp":1607098212,"output":"48d92, type: PplRequests, event: persisted definition for request with request_token: 2e90e876-364b-"},{"event":"cmd_output","timestamp":1607098212,"output":"11eb-87a2-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3("},{"event":"cmd_output","timestamp":1607098212,"output":"L76), \n\u001b[0m\u001b[22m\n16:10:12.127 [info] block_id: e2af100f-d6f6-4073-b5d8-7888f2ed28de, type: Blocks"},{"event":"cmd_output","timestamp":1607098212,"output":", state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_stat"},{"event":"cmd_output","timestamp":1607098212,"output":"e_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.131 [info] ppl_id: f8417768-647c-4f8c-9f21-79ee3579d746, typ"},{"event":"cmd_output","timestamp":1607098212,"output":"e: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loop"},{"event":"cmd_output","timestamp":1607098212,"output":"er.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.131 [info] ppl_id: 2483651c-19f5-4776-97"},{"event":"cmd_output","timestamp":1607098212,"output":"86-44f6100dbdc1, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098212,"output":"ir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.135 [info] block_id: e3f76ecc-4d9"},{"event":"cmd_output","timestamp":1607098212,"output":"3-402e-bb37-a5cfc4624bba, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098212,"output":"n: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.138 [info] Queue persisted"},{"event":"cmd_output","timestamp":1607098212,"output":": {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N"},{"event":"cmd_output","timestamp":1607098212,"output":"[2020-12-04 16:10:12.132243], name: \"pull-request-1212-.semaphore/semaphore.yml\", organization_id: \""},{"event":"cmd_output","timestamp":1607098212,"output":"05a613aa-3625-49c8-887c-30dec00b5c83\", project_id: \"list_grouped\", queue_id: \"e4ef84e5-c5c1-4c6b-9e1"},{"event":"cmd_output","timestamp":1607098212,"output":"c-2bf2c3ddc37f\", scope: \"project\", updated_at: ~N[2020-12-04 16:10:12.132254], user_generated: false"},{"event":"cmd_output","timestamp":1607098212,"output":"}}\n\u001b[0m\u001b[22m\n16:10:12.150 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: "},{"event":"cmd_output","timestamp":1607098212,"output":"\"2483651c-19f5-4776-9786-44f6100dbdc1\"\n\u001b[0m\u001b[22m\n16:10:12.150 [info] block_id: e3f76ecc-4d93-402e"},{"event":"cmd_output","timestamp":1607098212,"output":"-bb37-a5cfc4624bba, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098212,"output":"ixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.154 [info] ppl_id: b4243f3a-3b2"},{"event":"cmd_output","timestamp":1607098212,"output":"1-43bd-acc5-01a28e7e74c0, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098212,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.163 [info] e"},{"event":"cmd_output","timestamp":1607098212,"output":"vent: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098212,"output":"2m\n16:10:12.163 [info] ppl_id: 3d6f1f89-3cd1-47de-892c-dffdcea48d92, type: PplBlocks, block_index:"},{"event":"cmd_output","timestamp":1607098212,"output":" 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandle"},{"event":"cmd_output","timestamp":1607098212,"output":"r.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:12.165 [info] ppl_id: 3d6f1f89-3cd1-47de-892"},{"event":"cmd_output","timestamp":1607098212,"output":"c-dffdcea48d92, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_cou"},{"event":"cmd_output","timestamp":1607098212,"output":"nt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.168 [info] blo"},{"event":"cmd_output","timestamp":1607098212,"output":"ck_id: 64162418-2a04-4863-8ed5-251d2a4f6f95, type: BlockRequests, event: persisted block run request"},{"event":"cmd_output","timestamp":1607098212,"output":" from ppl 2483651c-19f5-4776-9786-44f6100dbdc1 for block 0, origin: Elixir.Block.BlockRequests.Model"},{"event":"cmd_output","timestamp":1607098212,"output":".BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:12.171 [info] block_id: e2af100f-"},{"event":"cmd_output","timestamp":1607098212,"output":"d6f6-4073-b5d8-7888f2ed28de, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098212,"output":" origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.181 [info] block_id:"},{"event":"cmd_output","timestamp":1607098212,"output":" 64162418-2a04-4863-8ed5-251d2a4f6f95, type: Blocks, state: initializing, event: initializing, recov"},{"event":"cmd_output","timestamp":1607098212,"output":"ery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:12.1"},{"event":"cmd_output","timestamp":1607098212,"output":"84 [info] ppl_id: bed3964b-51e8-4281-88d7-b3e5d9a27910, type: PplRequests, event: persisted source_"},{"event":"cmd_output","timestamp":1607098212,"output":"args for pipeline: bed3964b-51e8-4281-88d7-b3e5d9a27910, origin: Elixir.Ppl.PplRequests.Model.PplReq"},{"event":"cmd_output","timestamp":1607098212,"output":"uestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:12.185 [info] ppl_id: 3d6f1f89-3cd1-47de-892c"},{"event":"cmd_output","timestamp":1607098212,"output":"-dffdcea48d92, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098212,"output":".Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.186 [info] Block 0 of pipeline with"},{"event":"cmd_output","timestamp":1607098212,"output":" id: 2483651c-19f5-4776-9786-44f6100dbdc1 scheduled in block service with id: : \"64162418-2a04-4863-"},{"event":"cmd_output","timestamp":1607098212,"output":"8ed5-251d2a4f6f95\"\n\u001b[0m\u001b[22m\n16:10:12.190 [info] ppl_id: bed3964b-51e8-4281-88d7-b3e5d9a27910, ty"},{"event":"cmd_output","timestamp":1607098212,"output":"pe: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.S"},{"event":"cmd_output","timestamp":1607098212,"output":"TM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.193 [info] ppl_id: 744f7a59-b743-4cb8-8756-3"},{"event":"cmd_output","timestamp":1607098212,"output":"3d133517971, block_id: e3f76ecc-4d93-402e-bb37-a5cfc4624bba, type: PplBlocks, block_index: 0, state:"},{"event":"cmd_output","timestamp":1607098212,"output":" done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098212,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.198 [info] ppl_id: 2483651c-19f5-4776-9786-44f6100dbdc1"},{"event":"cmd_output","timestamp":1607098212,"output":", type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098212,"output":": Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.200 [info] ppl_id: 3d6f1f89"},{"event":"cmd_output","timestamp":1607098212,"output":"-3cd1-47de-892c-dffdcea48d92, type: PplBlocks, block_index: 0, state: waiting, event: exit_schedulin"},{"event":"cmd_output","timestamp":1607098212,"output":"g, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12."},{"event":"cmd_output","timestamp":1607098212,"output":"205 [info] block_id: 64162418-2a04-4863-8ed5-251d2a4f6f95, type: BlockRequests, event: persisted bu"},{"event":"cmd_output","timestamp":1607098212,"output":"ild and sub_ppl details for block_request: 64162418-2a04-4863-8ed5-251d2a4f6f95, origin: Elixir.Bloc"},{"event":"cmd_output","timestamp":1607098212,"output":"k.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:12.211 [info] bl"},{"event":"cmd_output","timestamp":1607098212,"output":"ock_id: 64162418-2a04-4863-8ed5-251d2a4f6f95, type: Tasks, state: pending, event: created, recovery_"},{"event":"cmd_output","timestamp":1607098212,"output":"count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098212,"output":"10:12.218 [info] ppl_id: 10f8d5f9-e0fb-4ba9-b509-b2d99bd16f14, type: Ppls, state: done, result: pas"},{"event":"cmd_output","timestamp":1607098212,"output":"sed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L9"},{"event":"cmd_output","timestamp":1607098212,"output":"0), \n\u001b[0m\u001b[22m\n16:10:12.226 [info] block_id: 64162418-2a04-4863-8ed5-251d2a4f6f95, type: Blocks, "},{"event":"cmd_output","timestamp":1607098212,"output":"state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_"},{"event":"cmd_output","timestamp":1607098212,"output":"change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.228 [info] ppl_id: 3d6f1f89-3cd1-47de-892c-dffdcea48d92, type:"},{"event":"cmd_output","timestamp":1607098212,"output":" Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098212,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.267 [info] block_id: 64162418-2a04-4863-8ed5-251d2a4f6f"},{"event":"cmd_output","timestamp":1607098212,"output":"95, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.ST"},{"event":"cmd_output","timestamp":1607098212,"output":"M.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.283 [info] ppl_id: 3d6f1f89-3cd1-47de-892c-df"},{"event":"cmd_output","timestamp":1607098212,"output":"fdcea48d92, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Lo"},{"event":"cmd_output","timestamp":1607098212,"output":"oper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.292 [info] block_id: d2cebf47-5fdc-410"},{"event":"cmd_output","timestamp":1607098212,"output":"e-945b-39f345e04a5d, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098212,"output":"ixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.293 [info] ppl_id: bed3964b-51e"},{"event":"cmd_output","timestamp":1607098212,"output":"8-4281-88d7-b3e5d9a27910, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098212,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.308 [info] P"},{"event":"cmd_output","timestamp":1607098212,"output":"plBlocks WaitingState STM is scheduling block 0 from pipeline: \"3d6f1f89-3cd1-47de-892c-dffdcea48d92"},{"event":"cmd_output","timestamp":1607098212,"output":"\"\n\u001b[0m\u001b[22m\n16:10:12.312 [info] block_id: d2cebf47-5fdc-410e-945b-39f345e04a5d, type: Blocks, sta"},{"event":"cmd_output","timestamp":1607098212,"output":"te: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change"},{"event":"cmd_output","timestamp":1607098212,"output":"/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.313 [info] ppl_id: b4243f3a-3b21-43bd-acc5-01a28e7e74c0, type: PplRe"},{"event":"cmd_output","timestamp":1607098212,"output":"quests, event: persisted definition for request with request_token: 2e99673a-364b-11eb-becf-52540054"},{"event":"cmd_output","timestamp":1607098212,"output":"64e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098212,"output":"\n16:10:12.319 [info] ppl_id: 1f64866a-4595-426a-8815-3319a63fb026, type: PplRequests, event: persis"},{"event":"cmd_output","timestamp":1607098212,"output":"ted source_args for pipeline: 1f64866a-4595-426a-8815-3319a63fb026, origin: Elixir.Ppl.PplRequests.M"},{"event":"cmd_output","timestamp":1607098212,"output":"odel.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:12.327 [info] ppl_id: 1f64866a-459"},{"event":"cmd_output","timestamp":1607098212,"output":"5-426a-8815-3319a63fb026, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count"},{"event":"cmd_output","timestamp":1607098212,"output":": 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.329 [info] Queue"},{"event":"cmd_output","timestamp":1607098212,"output":" persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inser"},{"event":"cmd_output","timestamp":1607098212,"output":"ted_at: ~N[2020-12-04 16:10:12.321865], name: \"pull-request-1213-.semaphore/semaphore.yml\", organiza"},{"event":"cmd_output","timestamp":1607098212,"output":"tion_id: \"072eeff9-12f3-4240-9a96-070a4eef4acd\", project_id: \"list_grouped\", queue_id: \"33d6e456-4bf"},{"event":"cmd_output","timestamp":1607098212,"output":"d-4998-8de2-30d3d0657696\", scope: \"project\", updated_at: ~N[2020-12-04 16:10:12.321878], user_genera"},{"event":"cmd_output","timestamp":1607098212,"output":"ted: false}}\n\u001b[0m\u001b[22m\n16:10:12.336 [info] ppl_id: 451f2dd4-1ce5-4dae-ba53-aa4aaf0e0daf, block_id"},{"event":"cmd_output","timestamp":1607098212,"output":": d2cebf47-5fdc-410e-945b-39f345e04a5d, type: PplBlocks, block_index: 0, state: done, result: passed"},{"event":"cmd_output","timestamp":1607098212,"output":", event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90),"},{"event":"cmd_output","timestamp":1607098212,"output":" \n\u001b[0m\u001b[22m\n16:10:12.338 [info] block_id: 6551f60c-4f3c-47d4-8c55-0e872b6100d5, type: BlockReques"},{"event":"cmd_output","timestamp":1607098212,"output":"ts, event: persisted block run request from ppl 3d6f1f89-3cd1-47de-892c-dffdcea48d92 for block 0, or"},{"event":"cmd_output","timestamp":1607098212,"output":"igin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098212,"output":":10:12.342 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok"},{"event":"cmd_output","timestamp":1607098212,"output":"?/1(L105), \n\u001b[0m\u001b[22m\n16:10:12.342 [info] ppl_id: b4243f3a-3b21-43bd-acc5-01a28e7e74c0, type: Ppl"},{"event":"cmd_output","timestamp":1607098212,"output":"Blocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.P"},{"event":"cmd_output","timestamp":1607098212,"output":"plSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:12.343 [info] block_id: "},{"event":"cmd_output","timestamp":1607098212,"output":"6551f60c-4f3c-47d4-8c55-0e872b6100d5, type: Blocks, state: initializing, event: initializing, recove"},{"event":"cmd_output","timestamp":1607098212,"output":"ry_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:12.34"},{"event":"cmd_output","timestamp":1607098212,"output":"7 [info] ppl_id: b4243f3a-3b21-43bd-acc5-01a28e7e74c0, type: PplSubInits, state: done, result: pass"},{"event":"cmd_output","timestamp":1607098212,"output":"ed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90"},{"event":"cmd_output","timestamp":1607098212,"output":"), \n\u001b[0m\u001b[22m\n16:10:12.354 [info] ppl_id: 744f7a59-b743-4cb8-8756-33d133517971, type: Ppls, state"},{"event":"cmd_output","timestamp":1607098212,"output":": done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.lo"},{"event":"cmd_output","timestamp":1607098212,"output":"g_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.355 [info] Block 0 of pipeline with id: 3d6f1f89-3cd1-"},{"event":"cmd_output","timestamp":1607098212,"output":"47de-892c-dffdcea48d92 scheduled in block service with id: : \"6551f60c-4f3c-47d4-8c55-0e872b6100d5\"\r"},{"event":"cmd_output","timestamp":1607098212,"output":"\n\u001b[0m\u001b[22m\n16:10:12.370 [info] block_id: 6551f60c-4f3c-47d4-8c55-0e872b6100d5, type: BlockRequests"},{"event":"cmd_output","timestamp":1607098212,"output":", event: persisted build and sub_ppl details for block_request: 6551f60c-4f3c-47d4-8c55-0e872b6100d5"},{"event":"cmd_output","timestamp":1607098212,"output":", origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098212,"output":":10:12.377 [info] ppl_id: 3d6f1f89-3cd1-47de-892c-dffdcea48d92, type: PplBlocks, block_index: 0, st"},{"event":"cmd_output","timestamp":1607098212,"output":"ate: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_ch"},{"event":"cmd_output","timestamp":1607098212,"output":"ange/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.385 [info] block_id: 6551f60c-4f3c-47d4-8c55-0e872b6100d5, type:"},{"event":"cmd_output","timestamp":1607098212,"output":" Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.In"},{"event":"cmd_output","timestamp":1607098212,"output":"itializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:12.386 [info] ppl_id: b4243f3a-3b21-43bd-acc5-0"},{"event":"cmd_output","timestamp":1607098212,"output":"1a28e7e74c0, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count"},{"event":"cmd_output","timestamp":1607098212,"output":": 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.396 [info] ppl_i"},{"event":"cmd_output","timestamp":1607098212,"output":"d: b4243f3a-3b21-43bd-acc5-01a28e7e74c0, type: Ppls, state: pending, event: exit_scheduling, recover"},{"event":"cmd_output","timestamp":1607098212,"output":"y_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.399 [info]"},{"event":"cmd_output","timestamp":1607098212,"output":" block_id: 6551f60c-4f3c-47d4-8c55-0e872b6100d5, type: Blocks, state: running, event: exit_scheduli"},{"event":"cmd_output","timestamp":1607098212,"output":"ng, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12"},{"event":"cmd_output","timestamp":1607098212,"output":".403 [info] ppl_id: 1f64866a-4595-426a-8815-3319a63fb026, type: PplSubInits, state: regular_init, e"},{"event":"cmd_output","timestamp":1607098212,"output":"vent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n"},{"event":"cmd_output","timestamp":1607098212,"output":"\u001b[0m\u001b[22m\n16:10:12.433 [info] ppl_id: 451f2dd4-1ce5-4dae-ba53-aa4aaf0e0daf, type: Ppls, state: don"},{"event":"cmd_output","timestamp":1607098212,"output":"e, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_sta"},{"event":"cmd_output","timestamp":1607098212,"output":"te_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.438 [info] block_id: 4ba39d24-b89d-433f-8c38-bc1efb8bb287, "},{"event":"cmd_output","timestamp":1607098212,"output":"type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl."},{"event":"cmd_output","timestamp":1607098212,"output":"log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.447 [info] block_id: 6551f60c-4f3c-47d4-8c55-0e872b6"},{"event":"cmd_output","timestamp":1607098212,"output":"100d5, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper"},{"event":"cmd_output","timestamp":1607098212,"output":".STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.447 [info] ppl_id: b4243f3a-3b21-43bd-acc5"},{"event":"cmd_output","timestamp":1607098212,"output":"-01a28e7e74c0, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098212,"output":".Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.457 [info] ppl_id: c1b2009c-e56b-4a"},{"event":"cmd_output","timestamp":1607098212,"output":"07-a901-2d7a7aa73213, type: PplRequests, event: persisted source_args for pipeline: c1b2009c-e56b-4a"},{"event":"cmd_output","timestamp":1607098212,"output":"07-a901-2d7a7aa73213, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), "},{"event":"cmd_output","timestamp":1607098212,"output":"\n\u001b[0m\u001b[22m\n16:10:12.459 [info] block_id: 4ba39d24-b89d-433f-8c38-bc1efb8bb287, type: Blocks, stat"},{"event":"cmd_output","timestamp":1607098212,"output":"e: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/"},{"event":"cmd_output","timestamp":1607098212,"output":"1(L90), \n\u001b[0m\u001b[22m\n16:10:12.459 [info] ppl_id: bed3964b-51e8-4281-88d7-b3e5d9a27910, type: PplReq"},{"event":"cmd_output","timestamp":1607098212,"output":"uests, event: persisted definition for request with request_token: 2ea0d286-364b-11eb-89a7-525400546"},{"event":"cmd_output","timestamp":1607098212,"output":"4e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098212,"output":"16:10:12.467 [info] ppl_id: c1b2009c-e56b-4a07-a901-2d7a7aa73213, type: PplSubInits, state: fetchin"},{"event":"cmd_output","timestamp":1607098212,"output":"g, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90)"},{"event":"cmd_output","timestamp":1607098212,"output":", \n\u001b[0m\u001b[22m\n16:10:12.468 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto."},{"event":"cmd_output","timestamp":1607098212,"output":"Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:10:12.465027], name: \"pull-request"},{"event":"cmd_output","timestamp":1607098212,"output":"-1214-.semaphore/semaphore.yml\", organization_id: \"67470fc1-2f66-4d82-9087-2e680b9fd9b1\", project_id"},{"event":"cmd_output","timestamp":1607098212,"output":": \"list_grouped\", queue_id: \"1394a7cd-e53b-4556-9429-99e69e1438f7\", scope: \"project\", updated_at: ~N"},{"event":"cmd_output","timestamp":1607098212,"output":"[2020-12-04 16:10:12.465036], user_generated: false}}\n\u001b[0m\u001b[22m\n16:10:12.476 [info] ppl_id: b4243"},{"event":"cmd_output","timestamp":1607098212,"output":"f3a-3b21-43bd-acc5-01a28e7e74c0, type: Ppls, state: running, event: exit_scheduling, recovery_count:"},{"event":"cmd_output","timestamp":1607098212,"output":" 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.480 [info] event:"},{"event":"cmd_output","timestamp":1607098212,"output":" created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098212,"output":"6:10:12.480 [info] ppl_id: bed3964b-51e8-4281-88d7-b3e5d9a27910, type: PplBlocks, block_index: 0, s"},{"event":"cmd_output","timestamp":1607098212,"output":"tate: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.Reg"},{"event":"cmd_output","timestamp":1607098212,"output":"ularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:12.480 [info] ppl_id: a156cb57-e802-46aa-b3bd-1ef"},{"event":"cmd_output","timestamp":1607098212,"output":"79b3be293, block_id: 4ba39d24-b89d-433f-8c38-bc1efb8bb287, type: PplBlocks, block_index: 0, state: d"},{"event":"cmd_output","timestamp":1607098212,"output":"one, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_s"},{"event":"cmd_output","timestamp":1607098212,"output":"tate_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.484 [info] ppl_id: bed3964b-51e8-4281-88d7-b3e5d9a27910, "},{"event":"cmd_output","timestamp":1607098212,"output":"type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: E"},{"event":"cmd_output","timestamp":1607098212,"output":"lixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.491 [info] PplBlocks WaitingSt"},{"event":"cmd_output","timestamp":1607098212,"output":"ate STM is scheduling block 0 from pipeline: \"b4243f3a-3b21-43bd-acc5-01a28e7e74c0\"\n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098212,"output":"0:12.511 [info] ppl_id: bed3964b-51e8-4281-88d7-b3e5d9a27910, type: Ppls, state: pending, event: ex"},{"event":"cmd_output","timestamp":1607098212,"output":"it_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098212,"output":"m\n16:10:12.515 [info] block_id: 6e8f066e-c405-4102-8dcb-ad61e19189a5, type: BlockRequests, event: "},{"event":"cmd_output","timestamp":1607098212,"output":"persisted block run request from ppl b4243f3a-3b21-43bd-acc5-01a28e7e74c0 for block 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098212,"output":"r.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:12.516 "},{"event":"cmd_output","timestamp":1607098212,"output":"[info] ppl_id: bed3964b-51e8-4281-88d7-b3e5d9a27910, type: PplBlocks, block_index: 0, state: waitin"},{"event":"cmd_output","timestamp":1607098212,"output":"g, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90)"},{"event":"cmd_output","timestamp":1607098212,"output":", \n\u001b[0m\u001b[22m\n16:10:12.519 [info] ppl_id: c1b2009c-e56b-4a07-a901-2d7a7aa73213, type: PplSubInits,"},{"event":"cmd_output","timestamp":1607098212,"output":" state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_"},{"event":"cmd_output","timestamp":1607098212,"output":"state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.522 [info] ppl_id: a156cb57-e802-46aa-b3bd-1ef79b3be293,"},{"event":"cmd_output","timestamp":1607098212,"output":" type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098212,"output":"Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.524 [info] block_id: 6e8f066e-c405-4"},{"event":"cmd_output","timestamp":1607098212,"output":"102-8dcb-ad61e19189a5, type: Blocks, state: initializing, event: initializing, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098212,"output":"igin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:12.532 [info] Block"},{"event":"cmd_output","timestamp":1607098212,"output":" 0 of pipeline with id: b4243f3a-3b21-43bd-acc5-01a28e7e74c0 scheduled in block service with id: : \""},{"event":"cmd_output","timestamp":1607098212,"output":"6e8f066e-c405-4102-8dcb-ad61e19189a5\"\n\u001b[0m\u001b[22m\n16:10:12.536 [info] ppl_id: bed3964b-51e8-4281-88"},{"event":"cmd_output","timestamp":1607098212,"output":"d7-b3e5d9a27910, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098212,"output":"ir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.540 [info] ppl_id: b4243f3a-3b21-"},{"event":"cmd_output","timestamp":1607098212,"output":"43bd-acc5-01a28e7e74c0, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, rec"},{"event":"cmd_output","timestamp":1607098212,"output":"overy_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.542 [i"},{"event":"cmd_output","timestamp":1607098212,"output":"nfo] block_id: 6e8f066e-c405-4102-8dcb-ad61e19189a5, type: BlockRequests, event: persisted build an"},{"event":"cmd_output","timestamp":1607098212,"output":"d sub_ppl details for block_request: 6e8f066e-c405-4102-8dcb-ad61e19189a5, origin: Elixir.Block.Bloc"},{"event":"cmd_output","timestamp":1607098212,"output":"kRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:12.552 [info] block_id"},{"event":"cmd_output","timestamp":1607098212,"output":": 6e8f066e-c405-4102-8dcb-ad61e19189a5, type: Tasks, state: pending, event: created, recovery_count:"},{"event":"cmd_output","timestamp":1607098212,"output":" 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:12."},{"event":"cmd_output","timestamp":1607098212,"output":"560 [info] block_id: 6e8f066e-c405-4102-8dcb-ad61e19189a5, type: Blocks, state: running, event: exi"},{"event":"cmd_output","timestamp":1607098212,"output":"t_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098212,"output":"\n16:10:12.568 [info] block_id: dabab286-201f-4a55-a36d-10fe0f866b05, type: Tasks, state: done, eve"},{"event":"cmd_output","timestamp":1607098212,"output":"nt: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b["},{"event":"cmd_output","timestamp":1607098212,"output":"0m\u001b[22m\n16:10:12.568 [info] ppl_id: bed3964b-51e8-4281-88d7-b3e5d9a27910, type: Ppls, state: runni"},{"event":"cmd_output","timestamp":1607098212,"output":"ng, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90"},{"event":"cmd_output","timestamp":1607098212,"output":"), \n\u001b[0m\u001b[22m\n16:10:12.591 [info] ppl_id: 1f64866a-4595-426a-8815-3319a63fb026, type: PplRequests"},{"event":"cmd_output","timestamp":1607098212,"output":", event: persisted definition for request with request_token: 2ea8c0a4-364b-11eb-8b1f-5254005464e2, "},{"event":"cmd_output","timestamp":1607098212,"output":"origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10"},{"event":"cmd_output","timestamp":1607098212,"output":":12.593 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"bed3964b-51e8-4281-"},{"event":"cmd_output","timestamp":1607098212,"output":"88d7-b3e5d9a27910\"\n\u001b[0m\u001b[22m\n16:10:12.593 [info] block_id: 6e8f066e-c405-4102-8dcb-ad61e19189a5, "},{"event":"cmd_output","timestamp":1607098212,"output":"type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Im"},{"event":"cmd_output","timestamp":1607098212,"output":"pl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.600 [info] ppl_id: ad6a27bb-db7b-4838-826e-1da6e6"},{"event":"cmd_output","timestamp":1607098212,"output":"c54e11, type: PplRequests, event: persisted source_args for pipeline: ad6a27bb-db7b-4838-826e-1da6e6"},{"event":"cmd_output","timestamp":1607098212,"output":"c54e11, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098212,"output":"6:10:12.602 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<"},{"event":"cmd_output","timestamp":1607098212,"output":":loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:10:12.595992], name: \"pull-request-1215-.semaphore"},{"event":"cmd_output","timestamp":1607098212,"output":"/semaphore.yml\", organization_id: \"47aade49-d28a-45ad-86c1-230a7ca8e479\", project_id: \"list_grouped\""},{"event":"cmd_output","timestamp":1607098212,"output":", queue_id: \"a23c9bb2-4af5-4277-bf74-b80b912fe300\", scope: \"project\", updated_at: ~N[2020-12-04 16:1"},{"event":"cmd_output","timestamp":1607098212,"output":"0:12.596002], user_generated: false}}\n\u001b[0m\u001b[22m\n16:10:12.607 [info] block_id: dabab286-201f-4a55-"},{"event":"cmd_output","timestamp":1607098212,"output":"a36d-10fe0f866b05, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098212,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.610 [info] ppl_id: ad6a27bb-db7b"},{"event":"cmd_output","timestamp":1607098212,"output":"-4838-826e-1da6e6c54e11, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count:"},{"event":"cmd_output","timestamp":1607098212,"output":" 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.613 [info] block_"},{"event":"cmd_output","timestamp":1607098212,"output":"id: 7cde9aed-161c-4f47-b44d-fb8b27ebb7ae, type: BlockRequests, event: persisted block run request fr"},{"event":"cmd_output","timestamp":1607098212,"output":"om ppl bed3964b-51e8-4281-88d7-b3e5d9a27910 for block 0, origin: Elixir.Block.BlockRequests.Model.Bl"},{"event":"cmd_output","timestamp":1607098212,"output":"ockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:12.615 [info] event: created, origin"},{"event":"cmd_output","timestamp":1607098212,"output":": Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:12.615 [inf"},{"event":"cmd_output","timestamp":1607098212,"output":"o] ppl_id: 1f64866a-4595-426a-8815-3319a63fb026, type: PplBlocks, block_index: 0, state: initializi"},{"event":"cmd_output","timestamp":1607098212,"output":"ng, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.al"},{"event":"cmd_output","timestamp":1607098212,"output":"l_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:12.618 [info] ppl_id: 1f64866a-4595-426a-8815-3319a63fb026, type:"},{"event":"cmd_output","timestamp":1607098212,"output":" PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098212,"output":".Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.625 [info] block_id: 7cde9aed-161c-"},{"event":"cmd_output","timestamp":1607098212,"output":"4f47-b44d-fb8b27ebb7ae, type: Blocks, state: initializing, event: initializing, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098212,"output":"rigin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:12.629 [info] ppl_"},{"event":"cmd_output","timestamp":1607098212,"output":"id: ad902bad-7a6c-4a0e-944b-675869cac0fc, block_id: dabab286-201f-4a55-a36d-10fe0f866b05, type: PplB"},{"event":"cmd_output","timestamp":1607098212,"output":"locks, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098212,"output":"n: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.636 [info] Block 0 of pipe"},{"event":"cmd_output","timestamp":1607098212,"output":"line with id: bed3964b-51e8-4281-88d7-b3e5d9a27910 scheduled in block service with id: : \"7cde9aed-1"},{"event":"cmd_output","timestamp":1607098212,"output":"61c-4f47-b44d-fb8b27ebb7ae\"\n\u001b[0m\u001b[22m\n16:10:12.643 [info] ppl_id: bed3964b-51e8-4281-88d7-b3e5d9a"},{"event":"cmd_output","timestamp":1607098212,"output":"27910, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098212,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.646 [info] ppl_id: 1f6"},{"event":"cmd_output","timestamp":1607098212,"output":"4866a-4595-426a-8815-3319a63fb026, type: Ppls, state: pending, event: exit_scheduling, recovery_coun"},{"event":"cmd_output","timestamp":1607098212,"output":"t: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.653 [info] bloc"},{"event":"cmd_output","timestamp":1607098212,"output":"k_id: 7cde9aed-161c-4f47-b44d-fb8b27ebb7ae, type: BlockRequests, event: persisted build and sub_ppl "},{"event":"cmd_output","timestamp":1607098212,"output":"details for block_request: 7cde9aed-161c-4f47-b44d-fb8b27ebb7ae, origin: Elixir.Block.BlockRequests."},{"event":"cmd_output","timestamp":1607098212,"output":"Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:12.660 [info] ppl_id: 1f64866a-4"},{"event":"cmd_output","timestamp":1607098212,"output":"595-426a-8815-3319a63fb026, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling,"},{"event":"cmd_output","timestamp":1607098212,"output":" recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.66"},{"event":"cmd_output","timestamp":1607098212,"output":"5 [info] block_id: 7cde9aed-161c-4f47-b44d-fb8b27ebb7ae, type: Tasks, state: pending, event: create"},{"event":"cmd_output","timestamp":1607098212,"output":"d, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b["},{"event":"cmd_output","timestamp":1607098212,"output":"0m\u001b[22m\n16:10:12.670 [info] block_id: 7cde9aed-161c-4f47-b44d-fb8b27ebb7ae, type: Blocks, state: r"},{"event":"cmd_output","timestamp":1607098212,"output":"unning, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1"},{"event":"cmd_output","timestamp":1607098212,"output":"(L90), \n\u001b[0m\u001b[22m\n16:10:12.684 [info] ppl_id: 1f64866a-4595-426a-8815-3319a63fb026, type: Ppls, s"},{"event":"cmd_output","timestamp":1607098212,"output":"tate: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098212,"output":"hange/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.689 [info] ppl_id: ad6a27bb-db7b-4838-826e-1da6e6c54e11, type: "},{"event":"cmd_output","timestamp":1607098212,"output":"PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.S"},{"event":"cmd_output","timestamp":1607098212,"output":"TM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.694 [info] ppl_id: ad902bad-7a6c-4a0e-944b-6"},{"event":"cmd_output","timestamp":1607098212,"output":"75869cac0fc, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098212,"output":"gin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.717 [info] block_id: 7cd"},{"event":"cmd_output","timestamp":1607098212,"output":"e9aed-161c-4f47-b44d-fb8b27ebb7ae, type: Tasks, state: running, event: exit_scheduling, recovery_cou"},{"event":"cmd_output","timestamp":1607098212,"output":"nt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.718 [info] blo"},{"event":"cmd_output","timestamp":1607098212,"output":"ck_id: 0c41a4d2-eeb4-470c-9cc1-fe45f44fd780, type: Tasks, state: done, event: exit_scheduling, recov"},{"event":"cmd_output","timestamp":1607098212,"output":"ery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.728 [inf"},{"event":"cmd_output","timestamp":1607098212,"output":"o] ppl_id: 1f64866a-4595-426a-8815-3319a63fb026, type: Ppls, state: running, event: exit_scheduling"},{"event":"cmd_output","timestamp":1607098212,"output":", recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.7"},{"event":"cmd_output","timestamp":1607098212,"output":"40 [info] block_id: 0c41a4d2-eeb4-470c-9cc1-fe45f44fd780, type: Blocks, state: done, event: exit_sc"},{"event":"cmd_output","timestamp":1607098212,"output":"heduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098212,"output":":10:12.741 [info] ppl_id: c1b2009c-e56b-4a07-a901-2d7a7aa73213, type: PplRequests, event: persisted"},{"event":"cmd_output","timestamp":1607098212,"output":" definition for request with request_token: 2eb07b96-364b-11eb-b93b-5254005464e2, origin: Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098212,"output":".PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:12.741 [info] Pp"},{"event":"cmd_output","timestamp":1607098212,"output":"lBlocks WaitingState STM is scheduling block 0 from pipeline: \"1f64866a-4595-426a-8815-3319a63fb026\""},{"event":"cmd_output","timestamp":1607098212,"output":"\n\u001b[0m\u001b[22m\n16:10:12.756 [info] block_id: 0dad97ba-efbb-42eb-a004-b49657eabbcc, type: BlockRequest"},{"event":"cmd_output","timestamp":1607098212,"output":"s, event: persisted block run request from ppl 1f64866a-4595-426a-8815-3319a63fb026 for block 0, ori"},{"event":"cmd_output","timestamp":1607098212,"output":"gin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098212,"output":"10:12.758 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:l"},{"event":"cmd_output","timestamp":1607098212,"output":"oaded, \"queues\">, inserted_at: ~N[2020-12-04 16:10:12.750858], name: \"pull-request-1216-.semaphore/s"},{"event":"cmd_output","timestamp":1607098212,"output":"emaphore.yml\", organization_id: \"d40c9a54-5c9e-4f68-aa48-21124aeea3c5\", project_id: \"list_grouped\", "},{"event":"cmd_output","timestamp":1607098212,"output":"queue_id: \"9af3a155-3a6a-4660-9045-c86387cdf2c3\", scope: \"project\", updated_at: ~N[2020-12-04 16:10:"},{"event":"cmd_output","timestamp":1607098212,"output":"12.750870], user_generated: false}}\n\u001b[0m\u001b[22m\n16:10:12.760 [info] block_id: 0dad97ba-efbb-42eb-a0"},{"event":"cmd_output","timestamp":1607098212,"output":"04-b49657eabbcc, type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098212,"output":"Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:12.764 [info] event: crea"},{"event":"cmd_output","timestamp":1607098212,"output":"ted, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:"},{"event":"cmd_output","timestamp":1607098212,"output":"12.764 [info] ppl_id: c1b2009c-e56b-4a07-a901-2d7a7aa73213, type: PplBlocks, block_index: 0, state:"},{"event":"cmd_output","timestamp":1607098212,"output":" initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularI"},{"event":"cmd_output","timestamp":1607098212,"output":"nitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:12.766 [info] Block 0 of pipeline with id: 1f64866a-45"},{"event":"cmd_output","timestamp":1607098212,"output":"95-426a-8815-3319a63fb026 scheduled in block service with id: : \"0dad97ba-efbb-42eb-a004-b49657eabbc"},{"event":"cmd_output","timestamp":1607098212,"output":"c\"\n\u001b[0m\u001b[22m\n16:10:12.768 [info] ppl_id: c1b2009c-e56b-4a07-a901-2d7a7aa73213, type: PplSubInits,"},{"event":"cmd_output","timestamp":1607098212,"output":" state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.I"},{"event":"cmd_output","timestamp":1607098212,"output":"mpl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.777 [info] ppl_id: 1f64866a-4595-426a-8815-3319a"},{"event":"cmd_output","timestamp":1607098212,"output":"63fb026, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098212,"output":" origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.778 [info] ppl_id: f"},{"event":"cmd_output","timestamp":1607098212,"output":"3948fcc-c38d-4cfa-a202-3e631e236c7c, block_id: 0c41a4d2-eeb4-470c-9cc1-fe45f44fd780, type: PplBlocks"},{"event":"cmd_output","timestamp":1607098212,"output":", block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098212,"output":"ixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.780 [info] block_id: 0dad97ba-e"},{"event":"cmd_output","timestamp":1607098212,"output":"fbb-42eb-a004-b49657eabbcc, type: BlockRequests, event: persisted build and sub_ppl details for bloc"},{"event":"cmd_output","timestamp":1607098212,"output":"k_request: 0dad97ba-efbb-42eb-a004-b49657eabbcc, origin: Elixir.Block.BlockRequests.Model.BlockReque"},{"event":"cmd_output","timestamp":1607098212,"output":"stsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:12.784 [info] ppl_id: c1b2009c-e56b-4a07-a901-2d"},{"event":"cmd_output","timestamp":1607098212,"output":"7a7aa73213, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count:"},{"event":"cmd_output","timestamp":1607098212,"output":" 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.784 [info] block_"},{"event":"cmd_output","timestamp":1607098212,"output":"id: 0dad97ba-efbb-42eb-a004-b49657eabbcc, type: Tasks, state: pending, event: created, recovery_coun"},{"event":"cmd_output","timestamp":1607098212,"output":"t: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:1"},{"event":"cmd_output","timestamp":1607098212,"output":"2.786 [info] ppl_id: c1b2009c-e56b-4a07-a901-2d7a7aa73213, type: Ppls, state: pending, event: exit_"},{"event":"cmd_output","timestamp":1607098212,"output":"scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098212,"output":"16:10:12.789 [info] block_id: 0dad97ba-efbb-42eb-a004-b49657eabbcc, type: Blocks, state: running, e"},{"event":"cmd_output","timestamp":1607098212,"output":"vent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n"},{"event":"cmd_output","timestamp":1607098212,"output":"\u001b[0m\u001b[22m\n16:10:12.810 [info] ppl_id: c1b2009c-e56b-4a07-a901-2d7a7aa73213, type: Ppls, state: que"},{"event":"cmd_output","timestamp":1607098212,"output":"uing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098212,"output":"90), \n\u001b[0m\u001b[22m\n16:10:12.820 [info] ppl_id: f3948fcc-c38d-4cfa-a202-3e631e236c7c, type: Ppls, sta"},{"event":"cmd_output","timestamp":1607098212,"output":"te: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl."},{"event":"cmd_output","timestamp":1607098212,"output":"log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.823 [info] block_id: 0dad97ba-efbb-42eb-a004-b49657e"},{"event":"cmd_output","timestamp":1607098212,"output":"abbcc, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper"},{"event":"cmd_output","timestamp":1607098212,"output":".STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.849 [info] block_id: 66450015-b75e-4d47-87"},{"event":"cmd_output","timestamp":1607098212,"output":"1b-19e00cab4eb3, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098212,"output":".Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.850 [info] ppl_id: ad6a27bb-db7b-48"},{"event":"cmd_output","timestamp":1607098212,"output":"38-826e-1da6e6c54e11, type: PplRequests, event: persisted definition for request with request_token:"},{"event":"cmd_output","timestamp":1607098212,"output":" 2eb700ec-364b-11eb-8230-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.inser"},{"event":"cmd_output","timestamp":1607098212,"output":"t_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:12.853 [info] ppl_id: c1b2009c-e56b-4a07-a901-2d7a7aa73213,"},{"event":"cmd_output","timestamp":1607098212,"output":" type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Im"},{"event":"cmd_output","timestamp":1607098212,"output":"pl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.858 [info] Queue persisted: {:ok, %Ppl.Queues.Mod"},{"event":"cmd_output","timestamp":1607098212,"output":"el.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:10:12.85"},{"event":"cmd_output","timestamp":1607098212,"output":"6910], name: \"pull-request-1217-.semaphore/semaphore.yml\", organization_id: \"1df28f74-cf88-4565-bc39"},{"event":"cmd_output","timestamp":1607098212,"output":"-812327892f89\", project_id: \"list_grouped\", queue_id: \"5ec5fda9-db48-4f67-b332-adebead4b495\", scope:"},{"event":"cmd_output","timestamp":1607098212,"output":" \"project\", updated_at: ~N[2020-12-04 16:10:12.856920], user_generated: false}}\n\u001b[0m\u001b[22m\n16:10:12"},{"event":"cmd_output","timestamp":1607098212,"output":".867 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"c1b2009c-e56b-4a07-a90"},{"event":"cmd_output","timestamp":1607098212,"output":"1-2d7a7aa73213\"\n\u001b[0m\u001b[22m\n16:10:12.867 [info] block_id: 66450015-b75e-4d47-871b-19e00cab4eb3, typ"},{"event":"cmd_output","timestamp":1607098212,"output":"e: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.lo"},{"event":"cmd_output","timestamp":1607098212,"output":"g_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.872 [info] event: created, origin: Elixir.Ppl.PplSubIn"},{"event":"cmd_output","timestamp":1607098212,"output":"its.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:12.872 [info] ppl_id: ad6a27bb-"},{"event":"cmd_output","timestamp":1607098212,"output":"db7b-4838-826e-1da6e6c54e11, type: PplBlocks, block_index: 0, state: initializing, event: created, r"},{"event":"cmd_output","timestamp":1607098212,"output":"ecovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098212,"output":"\u001b[22m\n16:10:12.874 [info] ppl_id: ad6a27bb-db7b-4838-826e-1da6e6c54e11, type: PplSubInits, state: "},{"event":"cmd_output","timestamp":1607098212,"output":"done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_"},{"event":"cmd_output","timestamp":1607098212,"output":"state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.881 [info] block_id: a8aadc29-d11f-4b75-a468-337d81b6110"},{"event":"cmd_output","timestamp":1607098212,"output":"2, type: BlockRequests, event: persisted block run request from ppl c1b2009c-e56b-4a07-a901-2d7a7aa7"},{"event":"cmd_output","timestamp":1607098212,"output":"3213 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L"},{"event":"cmd_output","timestamp":1607098212,"output":"35), \n\u001b[0m\u001b[22m\n16:10:12.884 [info] block_id: a8aadc29-d11f-4b75-a468-337d81b61102, type: Blocks,"},{"event":"cmd_output","timestamp":1607098212,"output":" state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.Bloc"},{"event":"cmd_output","timestamp":1607098212,"output":"ksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:12.891 [info] Block 0 of pipeline with id: c1b2009c-e56"},{"event":"cmd_output","timestamp":1607098212,"output":"b-4a07-a901-2d7a7aa73213 scheduled in block service with id: : \"a8aadc29-d11f-4b75-a468-337d81b61102"},{"event":"cmd_output","timestamp":1607098212,"output":"\"\n\u001b[0m\u001b[22m\n16:10:12.897 [info] ppl_id: c1b2009c-e56b-4a07-a901-2d7a7aa73213, type: PplBlocks, bl"},{"event":"cmd_output","timestamp":1607098212,"output":"ock_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.I"},{"event":"cmd_output","timestamp":1607098212,"output":"mpl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.899 [info] ppl_id: ad6a27bb-db7b-4838-826e-1da6e"},{"event":"cmd_output","timestamp":1607098212,"output":"6c54e11, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098212,"output":" origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.900 [info] block_id:"},{"event":"cmd_output","timestamp":1607098212,"output":" a8aadc29-d11f-4b75-a468-337d81b61102, type: BlockRequests, event: persisted build and sub_ppl detai"},{"event":"cmd_output","timestamp":1607098212,"output":"ls for block_request: a8aadc29-d11f-4b75-a468-337d81b61102, origin: Elixir.Block.BlockRequests.Model"},{"event":"cmd_output","timestamp":1607098212,"output":".BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:12.901 [info] ppl_id: 9c52e284-86f8-4"},{"event":"cmd_output","timestamp":1607098212,"output":"96a-bb60-679230b02f4f, block_id: 66450015-b75e-4d47-871b-19e00cab4eb3, type: PplBlocks, block_index:"},{"event":"cmd_output","timestamp":1607098212,"output":" 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.ST"},{"event":"cmd_output","timestamp":1607098212,"output":"M.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.907 [info] ppl_id: ad6a27bb-db7b-4838-826e-1d"},{"event":"cmd_output","timestamp":1607098212,"output":"a6e6c54e11, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Lo"},{"event":"cmd_output","timestamp":1607098212,"output":"oper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.909 [info] block_id: a8aadc29-d11f-4b7"},{"event":"cmd_output","timestamp":1607098212,"output":"5-a468-337d81b61102, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098212,"output":"Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:12.915 [info] block_i"},{"event":"cmd_output","timestamp":1607098212,"output":"d: a8aadc29-d11f-4b75-a468-337d81b61102, type: Blocks, state: running, event: exit_scheduling, recov"},{"event":"cmd_output","timestamp":1607098212,"output":"ery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.928 [inf"},{"event":"cmd_output","timestamp":1607098212,"output":"o] ppl_id: ad6a27bb-db7b-4838-826e-1da6e6c54e11, type: Ppls, state: queuing, event: exit_scheduling"},{"event":"cmd_output","timestamp":1607098212,"output":", recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.9"},{"event":"cmd_output","timestamp":1607098212,"output":"46 [info] block_id: a8aadc29-d11f-4b75-a468-337d81b61102, type: Tasks, state: running, event: exit_"},{"event":"cmd_output","timestamp":1607098212,"output":"scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098212,"output":"16:10:12.950 [info] ppl_id: 9c52e284-86f8-496a-bb60-679230b02f4f, type: Ppls, state: done, result: "},{"event":"cmd_output","timestamp":1607098212,"output":"passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1"},{"event":"cmd_output","timestamp":1607098212,"output":"(L90), \n\u001b[0m\u001b[22m\n16:10:12.954 [info] ppl_id: ad6a27bb-db7b-4838-826e-1da6e6c54e11, type: Ppls, s"},{"event":"cmd_output","timestamp":1607098212,"output":"tate: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098212,"output":"hange/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.964 [info] block_id: bb7b1055-4070-4b96-872a-79e9361a80a9, type"},{"event":"cmd_output","timestamp":1607098212,"output":": Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_"},{"event":"cmd_output","timestamp":1607098212,"output":"state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.968 [info] PplBlocks WaitingState STM is scheduling bloc"},{"event":"cmd_output","timestamp":1607098212,"output":"k 0 from pipeline: \"ad6a27bb-db7b-4838-826e-1da6e6c54e11\"\n\u001b[0m\u001b[22m\n16:10:12.973 [info] block_id:"},{"event":"cmd_output","timestamp":1607098212,"output":" bb7b1055-4070-4b96-872a-79e9361a80a9, type: Blocks, state: done, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098212,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.974 [info] b"},{"event":"cmd_output","timestamp":1607098212,"output":"lock_id: 66ac3348-e236-4de5-bdc4-6d6500e111ed, type: BlockRequests, event: persisted block run reque"},{"event":"cmd_output","timestamp":1607098212,"output":"st from ppl ad6a27bb-db7b-4838-826e-1da6e6c54e11 for block 0, origin: Elixir.Block.BlockRequests.Mod"},{"event":"cmd_output","timestamp":1607098212,"output":"el.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:12.977 [info] block_id: 66ac334"},{"event":"cmd_output","timestamp":1607098212,"output":"8-e236-4de5-bdc4-6d6500e111ed, type: Blocks, state: initializing, event: initializing, recovery_coun"},{"event":"cmd_output","timestamp":1607098212,"output":"t: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:12.981 [info"},{"event":"cmd_output","timestamp":1607098212,"output":"] Block 0 of pipeline with id: ad6a27bb-db7b-4838-826e-1da6e6c54e11 scheduled in block service with"},{"event":"cmd_output","timestamp":1607098212,"output":" id: : \"66ac3348-e236-4de5-bdc4-6d6500e111ed\"\n\u001b[0m\u001b[22m\n16:10:12.984 [info] block_id: 66ac3348-e2"},{"event":"cmd_output","timestamp":1607098212,"output":"36-4de5-bdc4-6d6500e111ed, type: BlockRequests, event: persisted build and sub_ppl details for block"},{"event":"cmd_output","timestamp":1607098212,"output":"_request: 66ac3348-e236-4de5-bdc4-6d6500e111ed, origin: Elixir.Block.BlockRequests.Model.BlockReques"},{"event":"cmd_output","timestamp":1607098212,"output":"tsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:12.986 [info] ppl_id: ad6a27bb-db7b-4838-826e-1da"},{"event":"cmd_output","timestamp":1607098212,"output":"6e6c54e11, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: "},{"event":"cmd_output","timestamp":1607098212,"output":"0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.987 [info] block_i"},{"event":"cmd_output","timestamp":1607098212,"output":"d: 66ac3348-e236-4de5-bdc4-6d6500e111ed, type: Tasks, state: pending, event: created, recovery_count"},{"event":"cmd_output","timestamp":1607098212,"output":": 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:12"},{"event":"cmd_output","timestamp":1607098212,"output":".988 [info] ppl_id: 6d621a6a-b251-4df8-833c-890b56e41b2b, block_id: bb7b1055-4070-4b96-872a-79e9361"},{"event":"cmd_output","timestamp":1607098212,"output":"a80a9, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, recover"},{"event":"cmd_output","timestamp":1607098212,"output":"y_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:12.991 [info]"},{"event":"cmd_output","timestamp":1607098212,"output":" block_id: 66ac3348-e236-4de5-bdc4-6d6500e111ed, type: Blocks, state: running, event: exit_scheduli"},{"event":"cmd_output","timestamp":1607098213,"output":"ng, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:13"},{"event":"cmd_output","timestamp":1607098213,"output":".011 [info] ppl_id: 6d621a6a-b251-4df8-833c-890b56e41b2b, type: Ppls, state: done, result: passed, "},{"event":"cmd_output","timestamp":1607098213,"output":"event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \r"},{"event":"cmd_output","timestamp":1607098213,"output":"\n\u001b[0m\u001b[22m\n16:10:13.019 [info] block_id: 66ac3348-e236-4de5-bdc4-6d6500e111ed, type: Tasks, state:"},{"event":"cmd_output","timestamp":1607098213,"output":" running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change"},{"event":"cmd_output","timestamp":1607098213,"output":"/1(L90), \n\u001b[0m\u001b[22m\n16:10:13.071 [info] block_id: 9163706b-16eb-4f3d-a5d1-f0ca4c376a43, type: Tas"},{"event":"cmd_output","timestamp":1607098213,"output":"ks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state"},{"event":"cmd_output","timestamp":1607098213,"output":"_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:13.080 [info] block_id: 9163706b-16eb-4f3d-a5d1-f0ca4c376a43, ty"},{"event":"cmd_output","timestamp":1607098213,"output":"pe: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.l"},{"event":"cmd_output","timestamp":1607098213,"output":"og_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:13.089 [info] ppl_id: b3db881a-96cd-4172-b05f-dd75d21e74"},{"event":"cmd_output","timestamp":1607098213,"output":"db, block_id: 9163706b-16eb-4f3d-a5d1-f0ca4c376a43, type: PplBlocks, block_index: 0, state: done, re"},{"event":"cmd_output","timestamp":1607098213,"output":"sult: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_ch"},{"event":"cmd_output","timestamp":1607098213,"output":"ange/1(L90), \n\u001b[0m\u001b[22m\n16:10:13.097 [info] ppl_id: b3db881a-96cd-4172-b05f-dd75d21e74db, type: P"},{"event":"cmd_output","timestamp":1607098213,"output":"pls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.S"},{"event":"cmd_output","timestamp":1607098213,"output":"TM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:13.194 [info] block_id: e2af100f-d6f6-4073-b5d8"},{"event":"cmd_output","timestamp":1607098213,"output":"-7888f2ed28de, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098213,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:13.199 [info] block_id: e2af100f-d6f6-40"},{"event":"cmd_output","timestamp":1607098213,"output":"73-b5d8-7888f2ed28de, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098213,"output":"Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:13.208 [info] ppl_id: 6ed662cb-2"},{"event":"cmd_output","timestamp":1607098213,"output":"593-40e8-ba32-ff3981693ad2, block_id: e2af100f-d6f6-4073-b5d8-7888f2ed28de, type: PplBlocks, block_i"},{"event":"cmd_output","timestamp":1607098213,"output":"ndex: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loop"},{"event":"cmd_output","timestamp":1607098213,"output":"er.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:13.217 [info] ppl_id: 6ed662cb-2593-40e8-ba"},{"event":"cmd_output","timestamp":1607098213,"output":"32-ff3981693ad2, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098213,"output":" origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:13.305 [info] block_id:"},{"event":"cmd_output","timestamp":1607098213,"output":" 64162418-2a04-4863-8ed5-251d2a4f6f95, type: Tasks, state: done, event: exit_scheduling, recovery_co"},{"event":"cmd_output","timestamp":1607098213,"output":"unt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:13.312 [info] bl"},{"event":"cmd_output","timestamp":1607098213,"output":"ock_id: 64162418-2a04-4863-8ed5-251d2a4f6f95, type: Blocks, state: done, event: exit_scheduling, rec"},{"event":"cmd_output","timestamp":1607098213,"output":"overy_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:13.327 [i"},{"event":"cmd_output","timestamp":1607098213,"output":"nfo] ppl_id: 2483651c-19f5-4776-9786-44f6100dbdc1, block_id: 64162418-2a04-4863-8ed5-251d2a4f6f95, "},{"event":"cmd_output","timestamp":1607098213,"output":"type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count"},{"event":"cmd_output","timestamp":1607098213,"output":": 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:13.345 [info] ppl_i"},{"event":"cmd_output","timestamp":1607098213,"output":"d: 2483651c-19f5-4776-9786-44f6100dbdc1, type: Ppls, state: done, result: passed, event: exit_schedu"},{"event":"cmd_output","timestamp":1607098213,"output":"ling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:"},{"event":"cmd_output","timestamp":1607098213,"output":"13.415 [info] block_id: 6551f60c-4f3c-47d4-8c55-0e872b6100d5, type: Tasks, state: done, event: exit"},{"event":"cmd_output","timestamp":1607098213,"output":"_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098213,"output":"\n16:10:13.431 [info] block_id: 6551f60c-4f3c-47d4-8c55-0e872b6100d5, type: Blocks, state: done, eve"},{"event":"cmd_output","timestamp":1607098213,"output":"nt: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b["},{"event":"cmd_output","timestamp":1607098213,"output":"0m\u001b[22m\n16:10:13.445 [info] ppl_id: 3d6f1f89-3cd1-47de-892c-dffdcea48d92, block_id: 6551f60c-4f3c-"},{"event":"cmd_output","timestamp":1607098213,"output":"47d4-8c55-0e872b6100d5, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_sc"},{"event":"cmd_output","timestamp":1607098213,"output":"heduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098213,"output":":10:13.464 [info] ppl_id: 3d6f1f89-3cd1-47de-892c-dffdcea48d92, type: Ppls, state: done, result: pa"},{"event":"cmd_output","timestamp":1607098213,"output":"ssed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098213,"output":"90), \n\u001b[0m\u001b[22m\n16:10:13.527 [info] block_id: 6e8f066e-c405-4102-8dcb-ad61e19189a5, type: Tasks, "},{"event":"cmd_output","timestamp":1607098213,"output":"state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_cha"},{"event":"cmd_output","timestamp":1607098213,"output":"nge/1(L90), \n\u001b[0m\u001b[22m\n16:10:13.541 [info] block_id: 6e8f066e-c405-4102-8dcb-ad61e19189a5, type: "},{"event":"cmd_output","timestamp":1607098213,"output":"Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_s"},{"event":"cmd_output","timestamp":1607098213,"output":"tate_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:13.550 [info] ppl_id: b4243f3a-3b21-43bd-acc5-01a28e7e74c0, "},{"event":"cmd_output","timestamp":1607098213,"output":"block_id: 6e8f066e-c405-4102-8dcb-ad61e19189a5, type: PplBlocks, block_index: 0, state: done, result"},{"event":"cmd_output","timestamp":1607098213,"output":": passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change"},{"event":"cmd_output","timestamp":1607098213,"output":"/1(L90), \n\u001b[0m\u001b[22m\n16:10:13.588 [info] ppl_id: b4243f3a-3b21-43bd-acc5-01a28e7e74c0, type: Ppls,"},{"event":"cmd_output","timestamp":1607098213,"output":" state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.I"},{"event":"cmd_output","timestamp":1607098213,"output":"mpl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:13.640 [info] block_id: 7cde9aed-161c-4f47-b44d-fb8"},{"event":"cmd_output","timestamp":1607098213,"output":"b27ebb7ae, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loope"},{"event":"cmd_output","timestamp":1607098213,"output":"r.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:13.648 [info] block_id: 7cde9aed-161c-4f47-b"},{"event":"cmd_output","timestamp":1607098213,"output":"44d-fb8b27ebb7ae, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098213,"output":"ir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:13.662 [info] ppl_id: bed3964b-51e8-"},{"event":"cmd_output","timestamp":1607098213,"output":"4281-88d7-b3e5d9a27910, block_id: 7cde9aed-161c-4f47-b44d-fb8b27ebb7ae, type: PplBlocks, block_index"},{"event":"cmd_output","timestamp":1607098213,"output":": 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.S"},{"event":"cmd_output","timestamp":1607098213,"output":"TM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:13.682 [info] ppl_id: bed3964b-51e8-4281-88d7-b"},{"event":"cmd_output","timestamp":1607098213,"output":"3e5d9a27910, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098213,"output":"gin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:13.752 [info] block_id: 0da"},{"event":"cmd_output","timestamp":1607098213,"output":"d97ba-efbb-42eb-a004-b49657eabbcc, type: Tasks, state: done, event: exit_scheduling, recovery_count:"},{"event":"cmd_output","timestamp":1607098213,"output":" 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:13.760 [info] block_"},{"event":"cmd_output","timestamp":1607098213,"output":"id: 0dad97ba-efbb-42eb-a004-b49657eabbcc, type: Blocks, state: done, event: exit_scheduling, recover"},{"event":"cmd_output","timestamp":1607098213,"output":"y_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:13.772 [info]"},{"event":"cmd_output","timestamp":1607098213,"output":" ppl_id: 1f64866a-4595-426a-8815-3319a63fb026, block_id: 0dad97ba-efbb-42eb-a004-b49657eabbcc, type"},{"event":"cmd_output","timestamp":1607098213,"output":": PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098213,"output":" origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:13.791 [info] ppl_id: 1"},{"event":"cmd_output","timestamp":1607098213,"output":"f64866a-4595-426a-8815-3319a63fb026, type: Ppls, state: done, result: passed, event: exit_scheduling"},{"event":"cmd_output","timestamp":1607098213,"output":", recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:13.8"},{"event":"cmd_output","timestamp":1607098213,"output":"60 [info] block_id: a8aadc29-d11f-4b75-a468-337d81b61102, type: Tasks, state: done, event: exit_sch"},{"event":"cmd_output","timestamp":1607098213,"output":"eduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098213,"output":"10:13.866 [info] block_id: a8aadc29-d11f-4b75-a468-337d81b61102, type: Blocks, state: done, event: "},{"event":"cmd_output","timestamp":1607098213,"output":"exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098213,"output":"22m\n16:10:13.874 [info] ppl_id: c1b2009c-e56b-4a07-a901-2d7a7aa73213, block_id: a8aadc29-d11f-4b75"},{"event":"cmd_output","timestamp":1607098213,"output":"-a468-337d81b61102, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_schedu"},{"event":"cmd_output","timestamp":1607098213,"output":"ling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:"},{"event":"cmd_output","timestamp":1607098213,"output":"13.896 [info] ppl_id: c1b2009c-e56b-4a07-a901-2d7a7aa73213, type: Ppls, state: done, result: passed"},{"event":"cmd_output","timestamp":1607098213,"output":", event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90),"},{"event":"cmd_output","timestamp":1607098213,"output":" \n\u001b[0m\u001b[22m\n16:10:13.970 [info] block_id: 66ac3348-e236-4de5-bdc4-6d6500e111ed, type: Tasks, stat"},{"event":"cmd_output","timestamp":1607098213,"output":"e: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/"},{"event":"cmd_output","timestamp":1607098213,"output":"1(L90), \n\u001b[0m\u001b[22m\n16:10:13.977 [info] block_id: 66ac3348-e236-4de5-bdc4-6d6500e111ed, type: Bloc"},{"event":"cmd_output","timestamp":1607098213,"output":"ks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state"},{"event":"cmd_output","timestamp":1607098213,"output":"_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:13.991 [info] ppl_id: ad6a27bb-db7b-4838-826e-1da6e6c54e11, bloc"},{"event":"cmd_output","timestamp":1607098213,"output":"k_id: 66ac3348-e236-4de5-bdc4-6d6500e111ed, type: PplBlocks, block_index: 0, state: done, result: pa"},{"event":"cmd_output","timestamp":1607098213,"output":"ssed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098214,"output":"90), \n\u001b[0m\u001b[22m\n16:10:14.004 [info] ppl_id: ad6a27bb-db7b-4838-826e-1da6e6c54e11, type: Ppls, sta"},{"event":"cmd_output","timestamp":1607098214,"output":"te: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl."},{"event":"cmd_output","timestamp":1607098214,"output":"log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test gRPC list_grouped() - returns latest workflow per dist"},{"event":"cmd_output","timestamp":1607098214,"output":"inct label when given valid params (5691.8ms)\u001b[0m\n * test gRPC terminate() - suceeds when given va"},{"event":"cmd_output","timestamp":1607098214,"output":"lid params\u001b[22m\n16:10:14.260 [info] Request: 'run: %{\"branch_id\" => \"6f59f9c8-a70d-45b1-982e-3f258"},{"event":"cmd_output","timestamp":1607098214,"output":"3c0db62\", \"branch_name\" => \"e7e3f871-b8d5-46b3-9fba-f88b50def38d\", \"client_id\" => \"328c742132e5407ab"},{"event":"cmd_output","timestamp":1607098214,"output":"d7d\", \"commit_sha\" => \"efbd0ae9-56c9-4f09-b6fa-fb6fe73cb0de\", \"definition_file\" => \"\", \"hook_id\" => "},{"event":"cmd_output","timestamp":1607098214,"output":"\"80bd1b89-9cdc-4fd9-a172-056f6c660683\", \"label\" => \"\", \"organization_id\" => \"3e7960c6-6bfd-4474-97bd"},{"event":"cmd_output","timestamp":1607098214,"output":"-da16d4520000\", \"owner\" => \"20e6e89c-0efe-4933-9a5a-c57076aa5501\", \"project_id\" => \"b5adf06f-2f7b-4b"},{"event":"cmd_output","timestamp":1607098214,"output":"06-815f-5ed4d9e54e3a\", \"repo_name\" => \"10_schedule_extension\", \"request_token\" => \"295d4120-d310-480"},{"event":"cmd_output","timestamp":1607098214,"output":"1-ad6a-63afcc612c5f\", \"requester_id\" => \"abc0cbad-1c5b-441e-95bb-907414b6dfbe\", \"service\" => \"local\""},{"event":"cmd_output","timestamp":1607098214,"output":", \"snapshot_id\" => \"\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"triggered_by\" "},{"event":"cmd_output","timestamp":1607098214,"output":"=> \"hook\", \"wf_id\" => \"1266003a-7adc-4853-9f88-7c2b45e95b82\"}\n\u001b[0m\u001b[22m\n16:10:14.283 [info] ppl_i"},{"event":"cmd_output","timestamp":1607098214,"output":"d: a0e57883-cdba-4e6e-a6ee-266aa53a8690, type: PplRequests, event: persisted schedule request with r"},{"event":"cmd_output","timestamp":1607098214,"output":"equest_token: 295d4120-d310-4801-ad6a-63afcc612c5f, origin: Elixir.Ppl.PplRequests.Model.PplRequests"},{"event":"cmd_output","timestamp":1607098214,"output":"Queries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:14.287 [info] ppl_id: a0e57883-cdba-4e6e-a6ee-2"},{"event":"cmd_output","timestamp":1607098214,"output":"66aa53a8690, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098214,"output":".Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:14.292 [info] Project b5ad"},{"event":"cmd_output","timestamp":1607098214,"output":"f06f-2f7b-4b06-815f-5ed4d9e54e3a and branch e7e3f871-b8d5-46b3-9fba-f88b50def38dlatest_wf details up"},{"event":"cmd_output","timestamp":1607098214,"output":"dated: \"wf_id: 1266003a-7adc-4853-9f88-7c2b45e95b82, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:10:14.294 [info] "},{"event":"cmd_output","timestamp":1607098214,"output":"Persisted ppl_sub_init for pipeline with ppl_id: a0e57883-cdba-4e6e-a6ee-266aa53a8690: %Ppl.PplSubIn"},{"event":"cmd_output","timestamp":1607098214,"output":"its.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_i"},{"event":"cmd_output","timestamp":1607098214,"output":"d: nil, error_description: nil, id: 19, in_scheduling: false, init_type: \"regular\", inserted_at: ~N["},{"event":"cmd_output","timestamp":1607098214,"output":"2020-12-04 16:10:14.292593], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"a0e57883-cdba-4e6e-a6ee-266aa53a8690\", recovery_count: 0, result: ni"},{"event":"cmd_output","timestamp":1607098214,"output":"l, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, update"},{"event":"cmd_output","timestamp":1607098214,"output":"d_at: ~N[2020-12-04 16:10:14.292642]}\n\u001b[0m\u001b[22m\n16:10:14.312 [info] Request: 'run: %{\"auto_promot"},{"event":"cmd_output","timestamp":1607098214,"output":"ed\" => false, \"branch_id\" => \"6f59f9c8-a70d-45b1-982e-3f2583c0db62\", \"branch_name\" => \"e7e3f871-b8d5"},{"event":"cmd_output","timestamp":1607098214,"output":"-46b3-9fba-f88b50def38d\", \"client_id\" => \"328c742132e5407abd7d\", \"commit_sha\" => \"efbd0ae9-56c9-4f09"},{"event":"cmd_output","timestamp":1607098214,"output":"-b6fa-fb6fe73cb0de\", \"definition_file\" => \"\", \"env_vars\" => [], \"extension_of\" => \"a0e57883-cdba-4e6"},{"event":"cmd_output","timestamp":1607098214,"output":"e-a6ee-266aa53a8690\", \"file_name\" => \"../foo/bar/test.yml\", \"hook_id\" => \"80bd1b89-9cdc-4fd9-a172-05"},{"event":"cmd_output","timestamp":1607098214,"output":"6f6c660683\", \"label\" => \"\", \"organization_id\" => \"3e7960c6-6bfd-4474-97bd-da16d4520000\", \"owner\" => "},{"event":"cmd_output","timestamp":1607098214,"output":"\"20e6e89c-0efe-4933-9a5a-c57076aa5501\", \"prev_ppl_artefact_ids\" => [\"a0e57883-cdba-4e6e-a6ee-266aa53"},{"event":"cmd_output","timestamp":1607098214,"output":"a8690\"], \"project_id\" => \"b5adf06f-2f7b-4b06-815f-5ed4d9e54e3a\", \"promoter_id\" => \"\", \"repo_name\" =>"},{"event":"cmd_output","timestamp":1607098214,"output":" \"10_schedule_extension\", \"request_token\" => \"28d7aa43-b89d-4ddb-818a-07c1443aeb23\", \"requester_id\" "},{"event":"cmd_output","timestamp":1607098214,"output":"=> \"abc0cbad-1c5b-441e-95bb-907414b6dfbe\", \"service\" => \"local\", \"snapshot_id\" => \"\", \"suppressed_at"},{"event":"cmd_output","timestamp":1607098214,"output":"tributes\" => [\"access_token\", \"client_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"1266003a-7adc-"},{"event":"cmd_output","timestamp":1607098214,"output":"4853-9f88-7c2b45e95b82\", \"wf_number\" => 1, \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:10:14.315 ["},{"event":"cmd_output","timestamp":1607098214,"output":"info] ppl_id: 6c375d9f-73a2-4996-9770-351282ca050e, type: PplRequests, event: persisted schedule re"},{"event":"cmd_output","timestamp":1607098214,"output":"quest with request_token: 28d7aa43-b89d-4ddb-818a-07c1443aeb23, origin: Elixir.Ppl.PplRequests.Model"},{"event":"cmd_output","timestamp":1607098214,"output":".PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:14.318 [info] ppl_id: 6c375d9f-73a2"},{"event":"cmd_output","timestamp":1607098214,"output":"-4996-9770-351282ca050e, type: Ppls, state: initializing, event: initializing, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098214,"output":"igin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:14.321 [info] "},{"event":"cmd_output","timestamp":1607098214,"output":"Persisted ppl_sub_init for pipeline with ppl_id: 6c375d9f-73a2-4996-9770-351282ca050e: %Ppl.PplSubIn"},{"event":"cmd_output","timestamp":1607098214,"output":"its.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_i"},{"event":"cmd_output","timestamp":1607098214,"output":"d: nil, error_description: nil, id: 20, in_scheduling: false, init_type: \"regular\", inserted_at: ~N["},{"event":"cmd_output","timestamp":1607098214,"output":"2020-12-04 16:10:14.320316], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"6c375d9f-73a2-4996-9770-351282ca050e\", recovery_count: 0, result: ni"},{"event":"cmd_output","timestamp":1607098214,"output":"l, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, update"},{"event":"cmd_output","timestamp":1607098214,"output":"d_at: ~N[2020-12-04 16:10:14.320326]}\n\u001b[0m\u001b[22m\n16:10:14.333 [info] Periodic from module Elixir.P"},{"event":"cmd_output","timestamp":1607098214,"output":"pl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: perio"},{"event":"cmd_output","timestamp":1607098214,"output":"d: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurri"},{"event":"cmd_output","timestamp":1607098214,"output":"ng args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: "},{"event":"cmd_output","timestamp":1607098214,"output":"Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Pp"},{"event":"cmd_output","timestamp":1607098214,"output":"ls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :u"},{"event":"cmd_output","timestamp":1607098214,"output":"pdated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor:"},{"event":"cmd_output","timestamp":1607098214,"output":" :skip}\n\u001b[0m\u001b[22m\n16:10:14.335 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingStat"},{"event":"cmd_output","timestamp":1607098214,"output":"e with name Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-w"},{"event":"cmd_output","timestamp":1607098214,"output":"ake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"pending\", \"queui"},{"event":"cmd_output","timestamp":1607098214,"output":"ng\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"p"},{"event":"cmd_output","timestamp":1607098214,"output":"ending\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl."},{"event":"cmd_output","timestamp":1607098214,"output":"EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_i"},{"event":"cmd_output","timestamp":1607098214,"output":"d], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:10:14.336 [info"},{"event":"cmd_output","timestamp":1607098214,"output":"] Periodic from module Elixir.Ppl.Ppls.STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandler"},{"event":"cmd_output","timestamp":1607098214,"output":".QueuingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Queuing"},{"event":"cmd_output","timestamp":1607098214,"output":"State\"]}, recurring args: %{allowed_states: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, in"},{"event":"cmd_output","timestamp":1607098214,"output":"itial_query: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", publisher_cb: #Function<0.125102843/1 i"},{"event":"cmd_output","timestamp":1607098214,"output":"n Ppl.Ppls.STMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request,"},{"event":"cmd_output","timestamp":1607098214,"output":" :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervis"},{"event":"cmd_output","timestamp":1607098214,"output":"or: :skip}\n\u001b[0m\u001b[22m\n16:10:14.337 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.C"},{"event":"cmd_output","timestamp":1607098214,"output":"reatedState with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 100 ms, metric_name:"},{"event":"cmd_output","timestamp":1607098214,"output":" {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args: %{allowed_st"},{"event":"cmd_output","timestamp":1607098214,"output":"ates: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, o"},{"event":"cmd_output","timestamp":1607098214,"output":"bserved_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_reque"},{"event":"cmd_output","timestamp":1607098214,"output":"st, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubIni"},{"event":"cmd_output","timestamp":1607098214,"output":"ts, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:14.338 [info] Periodic from module Elixir.Ppl.PplSubI"},{"event":"cmd_output","timestamp":1607098214,"output":"nits.STMHandler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler.FetchingState :: period: 1"},{"event":"cmd_output","timestamp":1607098214,"output":"00 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurrin"},{"event":"cmd_output","timestamp":1607098214,"output":"g args: %{allowed_states: [\"regular_init\", \"compilation\", \"done\"], cooling_time_sec: -2, initial_que"},{"event":"cmd_output","timestamp":1607098214,"output":"ry: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fetching\", publisher_cb: :skip, repo: Ppl.Ec"},{"event":"cmd_output","timestamp":1607098214,"output":"toRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id]"},{"event":"cmd_output","timestamp":1607098214,"output":", schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:14.339 [info]"},{"event":"cmd_output","timestamp":1607098214,"output":" Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CompilationState with name Elixir.Ppl.PplSu"},{"event":"cmd_output","timestamp":1607098214,"output":"bInits.STMHandler.CompilationState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Pp"},{"event":"cmd_output","timestamp":1607098214,"output":"lSubInits-STMHandler-CompilationState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compil"},{"event":"cmd_output","timestamp":1607098214,"output":"ation\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits,"},{"event":"cmd_output","timestamp":1607098214,"output":" observed_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate"},{"event":"cmd_output","timestamp":1607098214,"output":"_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.Ppl"},{"event":"cmd_output","timestamp":1607098214,"output":"SubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:14.340 [info] Periodic from module Elixir.Ppl.P"},{"event":"cmd_output","timestamp":1607098214,"output":"plSubInits.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState "},{"event":"cmd_output","timestamp":1607098214,"output":":: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitSta"},{"event":"cmd_output","timestamp":1607098214,"output":"te\"]}, recurring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubIni"},{"event":"cmd_output","timestamp":1607098214,"output":"ts.Model.PplSubInits, observed_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, retur"},{"event":"cmd_output","timestamp":1607098214,"output":"ning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl"},{"event":"cmd_output","timestamp":1607098214,"output":".PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:14.449 [info] ppl_id: a0e"},{"event":"cmd_output","timestamp":1607098214,"output":"57883-cdba-4e6e-a6ee-266aa53a8690, type: PplRequests, event: persisted source_args for pipeline: a0e"},{"event":"cmd_output","timestamp":1607098214,"output":"57883-cdba-4e6e-a6ee-266aa53a8690, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_so"},{"event":"cmd_output","timestamp":1607098214,"output":"urce/2(L89), \n\u001b[0m\u001b[22m\n16:10:14.459 [info] ppl_id: a0e57883-cdba-4e6e-a6ee-266aa53a8690, type: P"},{"event":"cmd_output","timestamp":1607098214,"output":"plSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Im"},{"event":"cmd_output","timestamp":1607098214,"output":"pl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:14.483 [info] ppl_id: a0e57883-cdba-4e6e-a6ee-266aa5"},{"event":"cmd_output","timestamp":1607098214,"output":"3a8690, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: E"},{"event":"cmd_output","timestamp":1607098214,"output":"lixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:14.514 [info] ppl_id: a0e57883-cd"},{"event":"cmd_output","timestamp":1607098214,"output":"ba-4e6e-a6ee-266aa53a8690, type: PplRequests, event: persisted definition for request with request_t"},{"event":"cmd_output","timestamp":1607098214,"output":"oken: 295d4120-d310-4801-ad6a-63afcc612c5f, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries."},{"event":"cmd_output","timestamp":1607098214,"output":"insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:14.523 [info] Queue persisted: {:ok, %Ppl.Queues.Model"},{"event":"cmd_output","timestamp":1607098214,"output":".Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:10:14.5218"},{"event":"cmd_output","timestamp":1607098214,"output":"22], name: \"-.semaphore/semaphore.yml\", organization_id: \"3e7960c6-6bfd-4474-97bd-da16d4520000\", pro"},{"event":"cmd_output","timestamp":1607098214,"output":"ject_id: \"b5adf06f-2f7b-4b06-815f-5ed4d9e54e3a\", queue_id: \"9d007eb2-f6bd-467c-b6b8-4281890480c1\", s"},{"event":"cmd_output","timestamp":1607098214,"output":"cope: \"project\", updated_at: ~N[2020-12-04 16:10:14.521834], user_generated: false}}\n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098214,"output":"10:14.545 [info] ppl_id: not_available, event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.R"},{"event":"cmd_output","timestamp":1607098214,"output":"egularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:14.545 [info] event: created, origin: Elixir.Pp"},{"event":"cmd_output","timestamp":1607098214,"output":"l.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:14.545 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098214,"output":" a0e57883-cdba-4e6e-a6ee-266aa53a8690, type: PplBlocks, block_index: 0, state: initializing, event: "},{"event":"cmd_output","timestamp":1607098214,"output":"created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L10"},{"event":"cmd_output","timestamp":1607098214,"output":"5), \n\u001b[0m\u001b[22m\n16:10:14.545 [info] ppl_id: a0e57883-cdba-4e6e-a6ee-266aa53a8690, type: PplBlocks,"},{"event":"cmd_output","timestamp":1607098214,"output":" block_index: 1, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubIn"},{"event":"cmd_output","timestamp":1607098214,"output":"its.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:14.552 [info] ppl_id: a0e57883-"},{"event":"cmd_output","timestamp":1607098214,"output":"cdba-4e6e-a6ee-266aa53a8690, type: PplSubInits, state: done, result: passed, event: exit_scheduling,"},{"event":"cmd_output","timestamp":1607098214,"output":" recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:14.56"},{"event":"cmd_output","timestamp":1607098214,"output":"8 [info] ppl_id: 6c375d9f-73a2-4996-9770-351282ca050e, type: PplRequests, event: persisted source_a"},{"event":"cmd_output","timestamp":1607098214,"output":"rgs for pipeline: 6c375d9f-73a2-4996-9770-351282ca050e, origin: Elixir.Ppl.PplRequests.Model.PplRequ"},{"event":"cmd_output","timestamp":1607098214,"output":"estsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:14.570 [info] ppl_id: a0e57883-cdba-4e6e-a6ee-"},{"event":"cmd_output","timestamp":1607098214,"output":"266aa53a8690, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098214,"output":"Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:14.571 [info] ppl_id: 6c375d9f-73a2-499"},{"event":"cmd_output","timestamp":1607098214,"output":"6-9770-351282ca050e, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098214,"output":"origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:14.591 [info] ppl_id: a0"},{"event":"cmd_output","timestamp":1607098214,"output":"e57883-cdba-4e6e-a6ee-266aa53a8690, type: Ppls, state: queuing, event: exit_scheduling, recovery_cou"},{"event":"cmd_output","timestamp":1607098214,"output":"nt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:14.603 [info] ppl"},{"event":"cmd_output","timestamp":1607098214,"output":"_id: a0e57883-cdba-4e6e-a6ee-266aa53a8690, type: Ppls, state: running, event: exit_scheduling, recov"},{"event":"cmd_output","timestamp":1607098214,"output":"ery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:14.615 [inf"},{"event":"cmd_output","timestamp":1607098214,"output":"o] ppl_id: 6c375d9f-73a2-4996-9770-351282ca050e, type: PplSubInits, state: regular_init, event: exi"},{"event":"cmd_output","timestamp":1607098214,"output":"t_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098214,"output":"\n16:10:14.652 [info] ppl_id: 6c375d9f-73a2-4996-9770-351282ca050e, type: PplRequests, event: persi"},{"event":"cmd_output","timestamp":1607098214,"output":"sted definition for request with request_token: 28d7aa43-b89d-4ddb-818a-07c1443aeb23, origin: Elixir"},{"event":"cmd_output","timestamp":1607098214,"output":".Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:14.660 [info]"},{"event":"cmd_output","timestamp":1607098214,"output":" Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">"},{"event":"cmd_output","timestamp":1607098214,"output":", inserted_at: ~N[2020-12-04 16:10:14.658569], name: \"-foo/bar/test.yml\", organization_id: \"3e7960c6"},{"event":"cmd_output","timestamp":1607098214,"output":"-6bfd-4474-97bd-da16d4520000\", project_id: \"b5adf06f-2f7b-4b06-815f-5ed4d9e54e3a\", queue_id: \"7cdc17"},{"event":"cmd_output","timestamp":1607098214,"output":"ad-b41f-4a46-9d2e-6c45408f3839\", scope: \"project\", updated_at: ~N[2020-12-04 16:10:14.658581], user_"},{"event":"cmd_output","timestamp":1607098214,"output":"generated: false}}\n\u001b[0m\u001b[22m\n16:10:14.668 [info] ppl_id: not_available, event: created, origin: E"},{"event":"cmd_output","timestamp":1607098214,"output":"lixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:14.668 [info] "},{"event":"cmd_output","timestamp":1607098214,"output":" event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098214,"output":"[22m\n16:10:14.668 [info] ppl_id: 6c375d9f-73a2-4996-9770-351282ca050e, type: PplBlocks, block_inde"},{"event":"cmd_output","timestamp":1607098214,"output":"x: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHand"},{"event":"cmd_output","timestamp":1607098214,"output":"ler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:14.668 [info] ppl_id: 6c375d9f-73a2-4996-9"},{"event":"cmd_output","timestamp":1607098214,"output":"770-351282ca050e, type: PplBlocks, block_index: 1, state: initializing, event: created, recovery_cou"},{"event":"cmd_output","timestamp":1607098214,"output":"nt: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098214,"output":"0:14.671 [info] ppl_id: 6c375d9f-73a2-4996-9770-351282ca050e, type: PplSubInits, state: done, resul"},{"event":"cmd_output","timestamp":1607098214,"output":"t: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chang"},{"event":"cmd_output","timestamp":1607098214,"output":"e/1(L90), \n\u001b[0m\u001b[22m\n16:10:14.685 [info] ppl_id: 6c375d9f-73a2-4996-9770-351282ca050e, type: Ppls"},{"event":"cmd_output","timestamp":1607098214,"output":", state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_stat"},{"event":"cmd_output","timestamp":1607098214,"output":"e_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:14.697 [info] ppl_id: 6c375d9f-73a2-4996-9770-351282ca050e, typ"},{"event":"cmd_output","timestamp":1607098214,"output":"e: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.l"},{"event":"cmd_output","timestamp":1607098214,"output":"og_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:14.712 [info] ppl_id: 6c375d9f-73a2-4996-9770-351282ca05"},{"event":"cmd_output","timestamp":1607098214,"output":"0e, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM"},{"event":"cmd_output","timestamp":1607098214,"output":".Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:14.772 [info] Periodic from module Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098214,"output":"s.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHandler.RunningState :: period: 100 ms, metri"},{"event":"cmd_output","timestamp":1607098214,"output":"c_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring args: %{allowed_st"},{"event":"cmd_output","timestamp":1607098214,"output":"ates: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, obs"},{"event":"cmd_output","timestamp":1607098214,"output":"erved_state: \"running\", publisher_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler.RunningState.arg"},{"event":"cmd_output","timestamp":1607098214,"output":"s/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recove"},{"event":"cmd_output","timestamp":1607098214,"output":"ry_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098214,"output":":10:14.773 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.StoppingState with name Elixir.Pp"},{"event":"cmd_output","timestamp":1607098214,"output":"l.Ppls.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-"},{"event":"cmd_output","timestamp":1607098214,"output":"STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_se"},{"event":"cmd_output","timestamp":1607098214,"output":"c: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"stopping\", publisher_cb: #Function<0.718"},{"event":"cmd_output","timestamp":1607098214,"output":"03493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminat"},{"event":"cmd_output","timestamp":1607098214,"output":"e_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, tas"},{"event":"cmd_output","timestamp":1607098214,"output":"k_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:14.775 [info] Periodic from module Elixir.Ppl.PplBlocks.STMH"},{"event":"cmd_output","timestamp":1607098214,"output":"andler.InitializingState with name Elixir.Ppl.PplBlocks.STMHandler.InitializingState :: period: 100 "},{"event":"cmd_output","timestamp":1607098214,"output":"ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-InitializingState\"]}, recurring"},{"event":"cmd_output","timestamp":1607098214,"output":" args: %{allowed_states: [\"initializing\", \"waiting\", \"done\"], cooling_time_sec: 0, initial_query: Pp"},{"event":"cmd_output","timestamp":1607098214,"output":"l.PplBlocks.Model.PplBlocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo"},{"event":"cmd_output","timestamp":1607098214,"output":", returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :bloc"},{"event":"cmd_output","timestamp":1607098214,"output":"k_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:14.776 [i"},{"event":"cmd_output","timestamp":1607098214,"output":"nfo] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.WaitingState with name Elixir.Ppl.PplBloc"},{"event":"cmd_output","timestamp":1607098214,"output":"ks.STMHandler.WaitingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks"},{"event":"cmd_output","timestamp":1607098214,"output":"-STMHandler-WaitingState\"]}, recurring args: %{allowed_states: [\"waiting\", \"running\", \"done\"], cooli"},{"event":"cmd_output","timestamp":1607098214,"output":"ng_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"waiting\", publisher_c"},{"event":"cmd_output","timestamp":1607098214,"output":"b: #Function<0.8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, retur"},{"event":"cmd_output","timestamp":1607098214,"output":"ning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index"},{"event":"cmd_output","timestamp":1607098214,"output":"], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:14.929 [info] p"},{"event":"cmd_output","timestamp":1607098214,"output":"pl_id: a0e57883-cdba-4e6e-a6ee-266aa53a8690, type: PplBlocks, block_index: 0, state: waiting, event:"},{"event":"cmd_output","timestamp":1607098214,"output":" exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098214,"output":"[22m\n16:10:14.933 [info] ppl_id: a0e57883-cdba-4e6e-a6ee-266aa53a8690, type: Ppls, state: stopping"},{"event":"cmd_output","timestamp":1607098214,"output":", event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90),"},{"event":"cmd_output","timestamp":1607098214,"output":" \n\u001b[0m\u001b[22m\n16:10:14.944 [info] ppl_id: a0e57883-cdba-4e6e-a6ee-266aa53a8690, type: PplBlocks, bl"},{"event":"cmd_output","timestamp":1607098214,"output":"ock_index: 0, state: done, result: canceled, event: exit_scheduling, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098214,"output":"ir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:14.951 [info] ppl_id: a0e57883-cdba-"},{"event":"cmd_output","timestamp":1607098214,"output":"4e6e-a6ee-266aa53a8690, type: PplBlocks, block_index: 1, state: done, result: canceled, event: exit_"},{"event":"cmd_output","timestamp":1607098214,"output":"scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098214,"output":"16:10:14.965 [info] ppl_id: a0e57883-cdba-4e6e-a6ee-266aa53a8690, type: Ppls, state: done, result: "},{"event":"cmd_output","timestamp":1607098214,"output":"stopped, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/"},{"event":"cmd_output","timestamp":1607098215,"output":"1(L90), \n\u001b[0m\u001b[22m\n16:10:15.036 [info] ppl_id: 6c375d9f-73a2-4996-9770-351282ca050e, type: PplBlo"},{"event":"cmd_output","timestamp":1607098215,"output":"cks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loope"},{"event":"cmd_output","timestamp":1607098215,"output":"r.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:15.052 [info] ppl_id: 6c375d9f-73a2-4996-977"},{"event":"cmd_output","timestamp":1607098215,"output":"0-351282ca050e, type: Ppls, state: stopping, event: exit_scheduling, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098215,"output":"ir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:15.065 [info] ppl_id: 6c375d9f-73a2-"},{"event":"cmd_output","timestamp":1607098215,"output":"4996-9770-351282ca050e, type: PplBlocks, block_index: 0, state: done, result: canceled, event: exit_"},{"event":"cmd_output","timestamp":1607098215,"output":"scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098215,"output":"16:10:15.084 [info] ppl_id: 6c375d9f-73a2-4996-9770-351282ca050e, type: PplBlocks, block_index: 1, "},{"event":"cmd_output","timestamp":1607098215,"output":"state: done, result: canceled, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM."},{"event":"cmd_output","timestamp":1607098215,"output":"Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:15.100 [info] ppl_id: 6c375d9f-73a2-4996-9770-3512"},{"event":"cmd_output","timestamp":1607098215,"output":"82ca050e, type: Ppls, state: done, result: stopped, event: exit_scheduling, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098215,"output":"n: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:15.210 [info] Request: 'parti"},{"event":"cmd_output","timestamp":1607098215,"output":"al_rebuild', request: %{ppl_id: \"a0e57883-cdba-4e6e-a6ee-266aa53a8690\", request_token: \"af6de0c0-3c7"},{"event":"cmd_output","timestamp":1607098215,"output":"7-4c9c-b035-f1b51046c489\", user_id: \"\"}\n\u001b[0m\u001b[22m\n16:10:15.214 [info] ppl_id: 2498e2c9-1b09-4a26-"},{"event":"cmd_output","timestamp":1607098215,"output":"a00a-0ca19c41a8c0, type: PplRequests, event: persisted schedule request with request_token: af6de0c0"},{"event":"cmd_output","timestamp":1607098215,"output":"-3c77-4c9c-b035-f1b51046c489, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_respon"},{"event":"cmd_output","timestamp":1607098215,"output":"se/2(L55), \n\u001b[0m\u001b[22m\n16:10:15.216 [info] ppl_id: 2498e2c9-1b09-4a26-a00a-0ca19c41a8c0, type: Ppl"},{"event":"cmd_output","timestamp":1607098215,"output":"s, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQu"},{"event":"cmd_output","timestamp":1607098215,"output":"eries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:15.223 [info] Persisted ppl_sub_init for pipelin"},{"event":"cmd_output","timestamp":1607098215,"output":"e with ppl_id: 2498e2c9-1b09-4a26-a00a-0ca19c41a8c0: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #E"},{"event":"cmd_output","timestamp":1607098215,"output":"cto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id"},{"event":"cmd_output","timestamp":1607098215,"output":": 21, in_scheduling: false, init_type: \"rebuild\", inserted_at: ~N[2020-12-04 16:10:15.222029], pipel"},{"event":"cmd_output","timestamp":1607098215,"output":"ine_requests: #Ecto.Association.NotLoaded, ppl_id: \"24"},{"event":"cmd_output","timestamp":1607098215,"output":"98e2c9-1b09-4a26-a00a-0ca19c41a8c0\", recovery_count: 0, result: nil, result_reason: nil, state: \"cre"},{"event":"cmd_output","timestamp":1607098215,"output":"ated\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:15.22204"},{"event":"cmd_output","timestamp":1607098215,"output":"3]}\n\u001b[0m\u001b[22m\n16:10:15.258 [info] Request: 'schedule with definition: %{\"auto_promoted\" => false,"},{"event":"cmd_output","timestamp":1607098215,"output":" \"branch_id\" => \"6f59f9c8-a70d-45b1-982e-3f2583c0db62\", \"branch_name\" => \"e7e3f871-b8d5-46b3-9fba-f8"},{"event":"cmd_output","timestamp":1607098215,"output":"8b50def38d\", \"client_id\" => \"328c742132e5407abd7d\", \"commit_sha\" => \"efbd0ae9-56c9-4f09-b6fa-fb6fe73"},{"event":"cmd_output","timestamp":1607098215,"output":"cb0de\", \"definition_file\" => \"\", \"env_vars\" => [], \"extension_of\" => \"a0e57883-cdba-4e6e-a6ee-266aa5"},{"event":"cmd_output","timestamp":1607098215,"output":"3a8690\", \"file_name\" => \"test.yml\", \"hook_id\" => \"80bd1b89-9cdc-4fd9-a172-056f6c660683\", \"label\" => "},{"event":"cmd_output","timestamp":1607098215,"output":"\"\", \"organization_id\" => \"3e7960c6-6bfd-4474-97bd-da16d4520000\", \"owner\" => \"20e6e89c-0efe-4933-9a5a"},{"event":"cmd_output","timestamp":1607098215,"output":"-c57076aa5501\", \"project_id\" => \"b5adf06f-2f7b-4b06-815f-5ed4d9e54e3a\", \"promoter_id\" => \"\", \"repo_n"},{"event":"cmd_output","timestamp":1607098215,"output":"ame\" => \"10_schedule_extension\", \"request_token\" => \"b42f0cd8-aa8b-4bfb-8a6f-58c87f784559\", \"request"},{"event":"cmd_output","timestamp":1607098215,"output":"er_id\" => \"abc0cbad-1c5b-441e-95bb-907414b6dfbe\", \"service\" => \"local\", \"snapshot_id\" => \"\", \"suppre"},{"event":"cmd_output","timestamp":1607098215,"output":"ssed_attributes\" => [\"access_token\", \"client_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"1266003"},{"event":"cmd_output","timestamp":1607098215,"output":"a-7adc-4853-9f88-7c2b45e95b82\", \"wf_number\" => 1, \"working_dir\" => \"foo/bar\"}\n\u001b[0m\u001b[22m\n16:10:15.2"},{"event":"cmd_output","timestamp":1607098215,"output":"61 [info] ppl_id: 51569548-46c8-443d-bb23-a081fcb556f5, type: PplRequests, event: persisted schedul"},{"event":"cmd_output","timestamp":1607098215,"output":"e request with request_token: b42f0cd8-aa8b-4bfb-8a6f-58c87f784559, origin: Elixir.Ppl.PplRequests.M"},{"event":"cmd_output","timestamp":1607098215,"output":"odel.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:15.263 [info] ppl_id: 51569548-"},{"event":"cmd_output","timestamp":1607098215,"output":"46c8-443d-bb23-a081fcb556f5, type: Ppls, state: initializing, event: initializing, recovery_count: 0"},{"event":"cmd_output","timestamp":1607098215,"output":", origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:15.267 [inf"},{"event":"cmd_output","timestamp":1607098215,"output":"o] Persisted ppl_sub_init for pipeline with ppl_id: 51569548-46c8-443d-bb23-a081fcb556f5: %Ppl.PplS"},{"event":"cmd_output","timestamp":1607098215,"output":"ubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_ta"},{"event":"cmd_output","timestamp":1607098215,"output":"sk_id: nil, error_description: nil, id: 22, in_scheduling: false, init_type: \"regular\", inserted_at:"},{"event":"cmd_output","timestamp":1607098215,"output":" ~N[2020-12-04 16:10:15.266049], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"51569548-46c8-443d-bb23-a081fcb556f5\", recovery_count: 0, result"},{"event":"cmd_output","timestamp":1607098215,"output":": nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, up"},{"event":"cmd_output","timestamp":1607098215,"output":"dated_at: ~N[2020-12-04 16:10:15.266062]}\n\u001b[0m\u001b[22m\n16:10:15.272 [info] ppl_id: 51569548-46c8-443"},{"event":"cmd_output","timestamp":1607098215,"output":"d-bb23-a081fcb556f5, type: PplRequests, event: persisted definition for request with request_token: "},{"event":"cmd_output","timestamp":1607098215,"output":"b42f0cd8-aa8b-4bfb-8a6f-58c87f784559, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert"},{"event":"cmd_output","timestamp":1607098215,"output":"_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:15.281 [info] Periodic from module Elixir.Ppl.Ppls.STMHandle"},{"event":"cmd_output","timestamp":1607098215,"output":"r.InitializingState with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms, metric"},{"event":"cmd_output","timestamp":1607098215,"output":"_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %{allowe"},{"event":"cmd_output","timestamp":1607098215,"output":"d_states: [\"initializing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Pp"},{"event":"cmd_output","timestamp":1607098215,"output":"ls, observed_state: \"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.Ini"},{"event":"cmd_output","timestamp":1607098215,"output":"tializingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state"},{"event":"cmd_output","timestamp":1607098215,"output":", :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098215,"output":"m\n16:10:15.282 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingState with name Elixi"},{"event":"cmd_output","timestamp":1607098215,"output":"r.Ppl.Ppls.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Pp"},{"event":"cmd_output","timestamp":1607098215,"output":"ls-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"pending\", \"queuing\", \"running\", \""},{"event":"cmd_output","timestamp":1607098215,"output":"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publishe"},{"event":"cmd_output","timestamp":1607098215,"output":"r_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, returni"},{"event":"cmd_output","timestamp":1607098215,"output":"ng: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.P"},{"event":"cmd_output","timestamp":1607098215,"output":"pls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:10:15.282 [info] Periodic from "},{"event":"cmd_output","timestamp":1607098215,"output":"module Elixir.Ppl.Ppls.STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandler.QueuingState :: "},{"event":"cmd_output","timestamp":1607098215,"output":"period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurri"},{"event":"cmd_output","timestamp":1607098215,"output":"ng args: %{allowed_states: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, initial_query: Ppl."},{"event":"cmd_output","timestamp":1607098215,"output":"Ppls.Model.Ppls, observed_state: \"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHan"},{"event":"cmd_output","timestamp":1607098215,"output":"dler.QueuingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :st"},{"event":"cmd_output","timestamp":1607098215,"output":"ate, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098215,"output":"[22m\n16:10:15.282 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedState with "},{"event":"cmd_output","timestamp":1607098215,"output":"name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.beholder-w"},{"event":"cmd_output","timestamp":1607098215,"output":"ake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args: %{allowed_states: [\"fetching\""},{"event":"cmd_output","timestamp":1607098215,"output":", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"c"},{"event":"cmd_output","timestamp":1607098215,"output":"reated\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, "},{"event":"cmd_output","timestamp":1607098215,"output":":state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervis"},{"event":"cmd_output","timestamp":1607098215,"output":"or: :skip}\n\u001b[0m\u001b[22m\n16:10:15.283 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.F"},{"event":"cmd_output","timestamp":1607098215,"output":"etchingState with name Elixir.Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 ms, metric_nam"},{"event":"cmd_output","timestamp":1607098215,"output":"e: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %{allowed"},{"event":"cmd_output","timestamp":1607098215,"output":"_states: [\"regular_init\", \"compilation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubIni"},{"event":"cmd_output","timestamp":1607098215,"output":"ts.Model.PplSubInits, observed_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning"},{"event":"cmd_output","timestamp":1607098215,"output":": [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098215,"output":"SubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:15.283 [info] Periodic from m"},{"event":"cmd_output","timestamp":1607098215,"output":"odule Elixir.Ppl.PplSubInits.STMHandler.CompilationState with name Elixir.Ppl.PplSubInits.STMHandler"},{"event":"cmd_output","timestamp":1607098215,"output":".CompilationState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHand"},{"event":"cmd_output","timestamp":1607098215,"output":"ler-CompilationState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"stopping"},{"event":"cmd_output","timestamp":1607098215,"output":"\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: "},{"event":"cmd_output","timestamp":1607098215,"output":"\"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :update"},{"event":"cmd_output","timestamp":1607098215,"output":"d_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_su"},{"event":"cmd_output","timestamp":1607098215,"output":"pervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:15.283 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHan"},{"event":"cmd_output","timestamp":1607098215,"output":"dler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period: 100 ms"},{"event":"cmd_output","timestamp":1607098215,"output":", metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurring "},{"event":"cmd_output","timestamp":1607098215,"output":"args: %{allowed_states: [\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubIn"},{"event":"cmd_output","timestamp":1607098215,"output":"its, observed_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :term"},{"event":"cmd_output","timestamp":1607098215,"output":"inate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Mode"},{"event":"cmd_output","timestamp":1607098215,"output":"l.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:15.398 [info] ppl_id: 2498e2c9-1b09-4a26-a"},{"event":"cmd_output","timestamp":1607098215,"output":"00a-0ca19c41a8c0, type: PplRequests, event: persisted source_args for pipeline: 2498e2c9-1b09-4a26-a"},{"event":"cmd_output","timestamp":1607098215,"output":"00a-0ca19c41a8c0, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b["},{"event":"cmd_output","timestamp":1607098215,"output":"0m\u001b[22m\n16:10:15.402 [info] ppl_id: 2498e2c9-1b09-4a26-a00a-0ca19c41a8c0, type: PplSubInits, state"},{"event":"cmd_output","timestamp":1607098215,"output":": fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chan"},{"event":"cmd_output","timestamp":1607098215,"output":"ge/1(L90), \n\u001b[0m\u001b[22m\n16:10:15.457 [info] ppl_id: 2498e2c9-1b09-4a26-a00a-0ca19c41a8c0, type: Ppl"},{"event":"cmd_output","timestamp":1607098215,"output":"SubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM."},{"event":"cmd_output","timestamp":1607098215,"output":"Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:15.498 [info] ppl_id: 2498e2c9-1b09-4a26-a00a-0ca1"},{"event":"cmd_output","timestamp":1607098215,"output":"9c41a8c0, type: PplRequests, event: persisted definition for request with request_token: af6de0c0-3c"},{"event":"cmd_output","timestamp":1607098215,"output":"77-4c9c-b035-f1b51046c489, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition"},{"event":"cmd_output","timestamp":1607098215,"output":"/3(L76), \n\u001b[0m\u001b[22m\n16:10:15.518 [info] ppl_id: not_available, event: created, origin: Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098215,"output":".PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:15.518 [info] event: c"},{"event":"cmd_output","timestamp":1607098215,"output":"reated, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098215,"output":"10:15.518 [info] ppl_id: 2498e2c9-1b09-4a26-a00a-0ca19c41a8c0, type: PplBlocks, block_index: 0, sta"},{"event":"cmd_output","timestamp":1607098215,"output":"te: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.Regul"},{"event":"cmd_output","timestamp":1607098215,"output":"arInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:15.518 [info] ppl_id: 2498e2c9-1b09-4a26-a00a-0ca19"},{"event":"cmd_output","timestamp":1607098215,"output":"c41a8c0, type: PplBlocks, block_index: 1, state: initializing, event: created, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098215,"output":"igin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:15.519 "},{"event":"cmd_output","timestamp":1607098215,"output":"[info] ppl_id: 51569548-46c8-443d-bb23-a081fcb556f5, type: PplRequests, event: persisted source_arg"},{"event":"cmd_output","timestamp":1607098215,"output":"s for pipeline: 51569548-46c8-443d-bb23-a081fcb556f5, origin: Elixir.Ppl.PplRequests.Model.PplReques"},{"event":"cmd_output","timestamp":1607098215,"output":"tsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:15.539 [info] ppl_id: 2498e2c9-1b09-4a26-a00a-0c"},{"event":"cmd_output","timestamp":1607098215,"output":"a19c41a8c0, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: "},{"event":"cmd_output","timestamp":1607098215,"output":"0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:15.540 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098215,"output":" 51569548-46c8-443d-bb23-a081fcb556f5, type: PplSubInits, state: fetching, event: exit_scheduling, r"},{"event":"cmd_output","timestamp":1607098215,"output":"ecovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:15.555 "},{"event":"cmd_output","timestamp":1607098215,"output":"[info] ppl_id: 2498e2c9-1b09-4a26-a00a-0ca19c41a8c0, type: Ppls, state: pending, event: exit_schedu"},{"event":"cmd_output","timestamp":1607098215,"output":"ling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:"},{"event":"cmd_output","timestamp":1607098215,"output":"15.571 [info] ppl_id: 2498e2c9-1b09-4a26-a00a-0ca19c41a8c0, type: Ppls, state: queuing, event: exit"},{"event":"cmd_output","timestamp":1607098215,"output":"_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098215,"output":"\n16:10:15.581 [info] ppl_id: 51569548-46c8-443d-bb23-a081fcb556f5, type: PplSubInits, state: regula"},{"event":"cmd_output","timestamp":1607098215,"output":"r_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1"},{"event":"cmd_output","timestamp":1607098215,"output":"(L90), \n\u001b[0m\u001b[22m\n16:10:15.583 [info] ppl_id: 2498e2c9-1b09-4a26-a00a-0ca19c41a8c0, type: Ppls, s"},{"event":"cmd_output","timestamp":1607098215,"output":"tate: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098215,"output":"hange/1(L90), \n\u001b[0m\u001b[22m\n16:10:15.646 [info] ppl_id: 51569548-46c8-443d-bb23-a081fcb556f5, type: "},{"event":"cmd_output","timestamp":1607098215,"output":"PplRequests, event: persisted definition for request with request_token: b42f0cd8-aa8b-4bfb-8a6f-58c"},{"event":"cmd_output","timestamp":1607098215,"output":"87f784559, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098215,"output":"[22m\n16:10:15.664 [info] ppl_id: not_available, event: created, origin: Elixir.Ppl.PplSubInits.STM"},{"event":"cmd_output","timestamp":1607098215,"output":"Handler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:15.664 [info] event: created, origin: "},{"event":"cmd_output","timestamp":1607098215,"output":"Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:15.664 [info]"},{"event":"cmd_output","timestamp":1607098215,"output":" ppl_id: 51569548-46c8-443d-bb23-a081fcb556f5, type: PplBlocks, block_index: 0, state: initializing"},{"event":"cmd_output","timestamp":1607098215,"output":", event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_"},{"event":"cmd_output","timestamp":1607098215,"output":"ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:15.664 [info] ppl_id: 51569548-46c8-443d-bb23-a081fcb556f5, type: P"},{"event":"cmd_output","timestamp":1607098215,"output":"plBlocks, block_index: 1, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098215,"output":".PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:15.668 [info] ppl_id: "},{"event":"cmd_output","timestamp":1607098215,"output":"51569548-46c8-443d-bb23-a081fcb556f5, type: PplSubInits, state: done, result: passed, event: exit_sc"},{"event":"cmd_output","timestamp":1607098215,"output":"heduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098215,"output":":10:15.681 [info] ppl_id: 51569548-46c8-443d-bb23-a081fcb556f5, type: Ppls, state: pending, event: "},{"event":"cmd_output","timestamp":1607098215,"output":"exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098215,"output":"22m\n16:10:15.708 [info] ppl_id: 51569548-46c8-443d-bb23-a081fcb556f5, type: Ppls, state: queuing, "},{"event":"cmd_output","timestamp":1607098215,"output":"event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \r"},{"event":"cmd_output","timestamp":1607098215,"output":"\n\u001b[0m\u001b[22m\n16:10:15.720 [info] ppl_id: 51569548-46c8-443d-bb23-a081fcb556f5, type: Ppls, state: ru"},{"event":"cmd_output","timestamp":1607098215,"output":"nning, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1("},{"event":"cmd_output","timestamp":1607098215,"output":"L90), \n\u001b[0m\u001b[22m\n16:10:15.816 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.RunningState"},{"event":"cmd_output","timestamp":1607098215,"output":" with name Elixir.Ppl.Ppls.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wa"},{"event":"cmd_output","timestamp":1607098215,"output":"ke_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stoppi"},{"event":"cmd_output","timestamp":1607098215,"output":"ng\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"running\", p"},{"event":"cmd_output","timestamp":1607098215,"output":"ublisher_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo,"},{"event":"cmd_output","timestamp":1607098215,"output":" returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schem"},{"event":"cmd_output","timestamp":1607098215,"output":"a: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:10:15.817 [info] Period"},{"event":"cmd_output","timestamp":1607098215,"output":"ic from module Elixir.Ppl.Ppls.STMHandler.StoppingState with name Elixir.Ppl.Ppls.STMHandler.Stoppin"},{"event":"cmd_output","timestamp":1607098215,"output":"gState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-StoppingState\""},{"event":"cmd_output","timestamp":1607098215,"output":"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl"},{"event":"cmd_output","timestamp":1607098215,"output":".Ppls.Model.Ppls, observed_state: \"stopping\", publisher_cb: #Function<0.71803493/1 in Ppl.Ppls.STMHa"},{"event":"cmd_output","timestamp":1607098215,"output":"ndler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :"},{"event":"cmd_output","timestamp":1607098215,"output":"state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0"},{"event":"cmd_output","timestamp":1607098215,"output":"m\u001b[22m\n16:10:15.817 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.InitializingState "},{"event":"cmd_output","timestamp":1607098215,"output":"with name Elixir.Ppl.PplBlocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.be"},{"event":"cmd_output","timestamp":1607098215,"output":"holder-wake_up\", [\"Ppl-PplBlocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: "},{"event":"cmd_output","timestamp":1607098215,"output":"[\"initializing\", \"waiting\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBloc"},{"event":"cmd_output","timestamp":1607098215,"output":"ks, observed_state: \"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :termi"},{"event":"cmd_output","timestamp":1607098215,"output":"nate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098215,"output":"Blocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:15.818 [info] Periodic from modul"},{"event":"cmd_output","timestamp":1607098215,"output":"e Elixir.Ppl.PplBlocks.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler.WaitingStat"},{"event":"cmd_output","timestamp":1607098215,"output":"e :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\""},{"event":"cmd_output","timestamp":1607098215,"output":"]}, recurring args: %{allowed_states: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 0, initial_q"},{"event":"cmd_output","timestamp":1607098215,"output":"uery: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"waiting\", publisher_cb: #Function<0.8975022/1 "},{"event":"cmd_output","timestamp":1607098215,"output":"in Ppl.PplBlocks.STMHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_re"},{"event":"cmd_output","timestamp":1607098215,"output":"quest, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks."},{"event":"cmd_output","timestamp":1607098215,"output":"Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:15.928 [info] ppl_id: 2498e2c9-1b09-4a26"},{"event":"cmd_output","timestamp":1607098215,"output":"-a00a-0ca19c41a8c0, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recover"},{"event":"cmd_output","timestamp":1607098215,"output":"y_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:15.938 [info]"},{"event":"cmd_output","timestamp":1607098215,"output":" ppl_id: 2498e2c9-1b09-4a26-a00a-0ca19c41a8c0, type: Ppls, state: stopping, event: exit_scheduling,"},{"event":"cmd_output","timestamp":1607098215,"output":" recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:15.94"},{"event":"cmd_output","timestamp":1607098215,"output":"8 [info] ppl_id: 2498e2c9-1b09-4a26-a00a-0ca19c41a8c0, type: PplBlocks, block_index: 0, state: done"},{"event":"cmd_output","timestamp":1607098215,"output":", result: canceled, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_st"},{"event":"cmd_output","timestamp":1607098215,"output":"ate_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:15.956 [info] ppl_id: 2498e2c9-1b09-4a26-a00a-0ca19c41a8c0, t"},{"event":"cmd_output","timestamp":1607098215,"output":"ype: PplBlocks, block_index: 1, state: done, result: canceled, event: exit_scheduling, recovery_coun"},{"event":"cmd_output","timestamp":1607098215,"output":"t: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:15.965 [info] ppl_"},{"event":"cmd_output","timestamp":1607098215,"output":"id: 2498e2c9-1b09-4a26-a00a-0ca19c41a8c0, type: Ppls, state: done, result: stopped, event: exit_sche"},{"event":"cmd_output","timestamp":1607098216,"output":"duling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098216,"output":"0:16.038 [info] ppl_id: 51569548-46c8-443d-bb23-a081fcb556f5, type: PplBlocks, block_index: 0, stat"},{"event":"cmd_output","timestamp":1607098216,"output":"e: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chan"},{"event":"cmd_output","timestamp":1607098216,"output":"ge/1(L90), \n\u001b[0m\u001b[22m\n16:10:16.062 [info] ppl_id: 51569548-46c8-443d-bb23-a081fcb556f5, type: Ppl"},{"event":"cmd_output","timestamp":1607098216,"output":"s, state: stopping, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_st"},{"event":"cmd_output","timestamp":1607098216,"output":"ate_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:16.079 [info] ppl_id: 51569548-46c8-443d-bb23-a081fcb556f5, t"},{"event":"cmd_output","timestamp":1607098216,"output":"ype: PplBlocks, block_index: 0, state: done, result: canceled, event: exit_scheduling, recovery_coun"},{"event":"cmd_output","timestamp":1607098216,"output":"t: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:16.083 [info] ppl_"},{"event":"cmd_output","timestamp":1607098216,"output":"id: 51569548-46c8-443d-bb23-a081fcb556f5, type: PplBlocks, block_index: 1, state: done, result: canc"},{"event":"cmd_output","timestamp":1607098216,"output":"eled, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098216,"output":"90), \n\u001b[0m\u001b[22m\n16:10:16.093 [info] ppl_id: 51569548-46c8-443d-bb23-a081fcb556f5, type: Ppls, sta"},{"event":"cmd_output","timestamp":1607098216,"output":"te: done, result: stopped, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl"},{"event":"cmd_output","timestamp":1607098216,"output":".log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test gRPC terminate() - suceeds when given valid params (1"},{"event":"cmd_output","timestamp":1607098216,"output":"976.6ms)\u001b[0m\n * test gRPC list_keyset() - filtering by triggers\r * test gRPC list_keyset() - filt"},{"event":"cmd_output","timestamp":1607098216,"output":"ering by triggers (skipped)\n * test gRPC get_project_id() - failes when wf_id is omitted\r * test "},{"event":"cmd_output","timestamp":1607098216,"output":"gRPC get_project_id() - failes when wf_id is omitted (skipped)\n * test gRPC reschedule() - fails w"},{"event":"cmd_output","timestamp":1607098216,"output":"hen project deletion was already requested\r * test gRPC reschedule() - fails when project deletion "},{"event":"cmd_output","timestamp":1607098216,"output":"was already requested (skipped)\n * test gRPC schedule() - refuse if project deletion was requested"},{"event":"cmd_output","timestamp":1607098216,"output":"\r * test gRPC schedule() - refuse if project deletion was requested (skipped)\n * test gRPC termin"},{"event":"cmd_output","timestamp":1607098216,"output":"ate() - fails when non-existing workflow id is given\r * test gRPC terminate() - fails when non-exis"},{"event":"cmd_output","timestamp":1607098216,"output":"ting workflow id is given (skipped)\n * test gRPC schedule() - success (GitHub repo, master)\r * t"},{"event":"cmd_output","timestamp":1607098216,"output":"est gRPC schedule() - success (GitHub repo, master) (skipped)\n * test gRPC list() - succeeds when"},{"event":"cmd_output","timestamp":1607098216,"output":" given valid params\r * test gRPC list() - succeeds when given valid params (skipped)\n * test gRPC"},{"event":"cmd_output","timestamp":1607098216,"output":" list_grouped_ks() - refuse request when there are to many unfinished ones\r * test gRPC list_groupe"},{"event":"cmd_output","timestamp":1607098216,"output":"d_ks() - refuse request when there are to many unfinished ones (skipped)\n * test gRPC list() - ref"},{"event":"cmd_output","timestamp":1607098216,"output":"use request when there are to many unfinished ones\r * test gRPC list() - refuse request when there "},{"event":"cmd_output","timestamp":1607098216,"output":"are to many unfinished ones (skipped)\n * test gRPC get_path() - works for all combinations of requ"},{"event":"cmd_output","timestamp":1607098216,"output":"est params\u001b[22m\n16:10:16.222 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingSt"},{"event":"cmd_output","timestamp":1607098216,"output":"ate with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beh"},{"event":"cmd_output","timestamp":1607098216,"output":"older-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"init"},{"event":"cmd_output","timestamp":1607098216,"output":"ializing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_sta"},{"event":"cmd_output","timestamp":1607098216,"output":"te: \"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.a"},{"event":"cmd_output","timestamp":1607098216,"output":"rgs/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :reco"},{"event":"cmd_output","timestamp":1607098216,"output":"very_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:16.223 "},{"event":"cmd_output","timestamp":1607098216,"output":"[info] Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHa"},{"event":"cmd_output","timestamp":1607098216,"output":"ndler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Pe"},{"event":"cmd_output","timestamp":1607098216,"output":"ndingState\"]}, recurring args: %{allowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_"},{"event":"cmd_output","timestamp":1607098216,"output":"time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publisher_cb: #Function<"},{"event":"cmd_output","timestamp":1607098216,"output":"0.8493005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :termi"},{"event":"cmd_output","timestamp":1607098216,"output":"nate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, "},{"event":"cmd_output","timestamp":1607098216,"output":"task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:10:16.223 [info] Periodic from module Elixir.Pp"},{"event":"cmd_output","timestamp":1607098216,"output":"l.Ppls.STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, "},{"event":"cmd_output","timestamp":1607098216,"output":"metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{allow"},{"event":"cmd_output","timestamp":1607098216,"output":"ed_states: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls,"},{"event":"cmd_output","timestamp":1607098216,"output":" observed_state: \"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingStat"},{"event":"cmd_output","timestamp":1607098216,"output":"e.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :r"},{"event":"cmd_output","timestamp":1607098216,"output":"ecovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:16.2"},{"event":"cmd_output","timestamp":1607098216,"output":"24 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl.Ppls.ST"},{"event":"cmd_output","timestamp":1607098216,"output":"MHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler"},{"event":"cmd_output","timestamp":1607098216,"output":"-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_se"},{"event":"cmd_output","timestamp":1607098216,"output":"c: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"running\", publisher_cb: #Function<0.7467"},{"event":"cmd_output","timestamp":1607098216,"output":"0282/1 in Ppl.Ppls.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_"},{"event":"cmd_output","timestamp":1607098216,"output":"request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_"},{"event":"cmd_output","timestamp":1607098216,"output":"supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:10:16.224 [info] Periodic from module Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098216,"output":"s.STMHandler.StoppingState with name Elixir.Ppl.Ppls.STMHandler.StoppingState :: period: 100 ms, met"},{"event":"cmd_output","timestamp":1607098216,"output":"ric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring args: %{allowed"},{"event":"cmd_output","timestamp":1607098216,"output":"_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_st"},{"event":"cmd_output","timestamp":1607098216,"output":"ate: \"stopping\", publisher_cb: #Function<0.71803493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, "},{"event":"cmd_output","timestamp":1607098216,"output":"repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_cou"},{"event":"cmd_output","timestamp":1607098216,"output":"nt, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:16.225 [info] "},{"event":"cmd_output","timestamp":1607098216,"output":"Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits"},{"event":"cmd_output","timestamp":1607098216,"output":".STMHandler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-"},{"event":"cmd_output","timestamp":1607098216,"output":"STMHandler-CreatedState\"]}, recurring args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec"},{"event":"cmd_output","timestamp":1607098216,"output":": 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"created\", publisher_cb: :ski"},{"event":"cmd_output","timestamp":1607098216,"output":"p, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_"},{"event":"cmd_output","timestamp":1607098216,"output":"count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098216,"output":"0:16.225 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elix"},{"event":"cmd_output","timestamp":1607098216,"output":"ir.Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\","},{"event":"cmd_output","timestamp":1607098216,"output":" [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %{allowed_states: [\"regular_init\", \""},{"event":"cmd_output","timestamp":1607098216,"output":"compilation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, obser"},{"event":"cmd_output","timestamp":1607098216,"output":"ved_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request,"},{"event":"cmd_output","timestamp":1607098216,"output":" :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits,"},{"event":"cmd_output","timestamp":1607098216,"output":" task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:16.226 [info] Periodic from module Elixir.Ppl.PplSubInit"},{"event":"cmd_output","timestamp":1607098216,"output":"s.STMHandler.CompilationState with name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period"},{"event":"cmd_output","timestamp":1607098216,"output":": 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, re"},{"event":"cmd_output","timestamp":1607098216,"output":"curring args: %{allowed_states: [\"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_se"},{"event":"cmd_output","timestamp":1607098216,"output":"c: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"compilation\", publisher_cb"},{"event":"cmd_output","timestamp":1607098216,"output":": :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :rec"},{"event":"cmd_output","timestamp":1607098216,"output":"overy_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098216,"output":"\n16:10:16.226 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with "},{"event":"cmd_output","timestamp":1607098216,"output":"name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.behold"},{"event":"cmd_output","timestamp":1607098216,"output":"er-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurring args: %{allowed_states: [\"d"},{"event":"cmd_output","timestamp":1607098216,"output":"one\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regul"},{"event":"cmd_output","timestamp":1607098216,"output":"ar_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at,"},{"event":"cmd_output","timestamp":1607098216,"output":" :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervi"},{"event":"cmd_output","timestamp":1607098216,"output":"sor: :skip}\n\u001b[0m\u001b[22m\n16:10:16.226 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.In"},{"event":"cmd_output","timestamp":1607098216,"output":"itializingState with name Elixir.Ppl.PplBlocks.STMHandler.InitializingState :: period: 100 ms, metri"},{"event":"cmd_output","timestamp":1607098216,"output":"c_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-InitializingState\"]}, recurring args: %{"},{"event":"cmd_output","timestamp":1607098216,"output":"allowed_states: [\"initializing\", \"waiting\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBloc"},{"event":"cmd_output","timestamp":1607098216,"output":"ks.Model.PplBlocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returni"},{"event":"cmd_output","timestamp":1607098216,"output":"ng: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index],"},{"event":"cmd_output","timestamp":1607098216,"output":" schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:16.227 [info] Per"},{"event":"cmd_output","timestamp":1607098216,"output":"iodic from module Elixir.Ppl.PplBlocks.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks.STMHan"},{"event":"cmd_output","timestamp":1607098216,"output":"dler.WaitingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandl"},{"event":"cmd_output","timestamp":1607098216,"output":"er-WaitingState\"]}, recurring args: %{allowed_states: [\"waiting\", \"running\", \"done\"], cooling_time_s"},{"event":"cmd_output","timestamp":1607098216,"output":"ec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"waiting\", publisher_cb: #Funct"},{"event":"cmd_output","timestamp":1607098216,"output":"ion<0.8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, returning: [:i"},{"event":"cmd_output","timestamp":1607098216,"output":"d, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema"},{"event":"cmd_output","timestamp":1607098216,"output":": Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:16.227 [info] Periodic f"},{"event":"cmd_output","timestamp":1607098216,"output":"rom module Elixir.Ppl.PplBlocks.STMHandler.RunningState with name Elixir.Ppl.PplBlocks.STMHandler.Ru"},{"event":"cmd_output","timestamp":1607098216,"output":"nningState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-Runn"},{"event":"cmd_output","timestamp":1607098216,"output":"ingState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2"},{"event":"cmd_output","timestamp":1607098216,"output":", initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"running\", publisher_cb: #Function<0"},{"event":"cmd_output","timestamp":1607098216,"output":".28166834/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :"},{"event":"cmd_output","timestamp":1607098216,"output":"terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id],"},{"event":"cmd_output","timestamp":1607098216,"output":" schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:16.227 [info] Per"},{"event":"cmd_output","timestamp":1607098216,"output":"iodic from module Elixir.Ppl.PplBlocks.STMHandler.StoppingState with name Elixir.Ppl.PplBlocks.STMHa"},{"event":"cmd_output","timestamp":1607098216,"output":"ndler.StoppingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHan"},{"event":"cmd_output","timestamp":1607098216,"output":"dler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2,"},{"event":"cmd_output","timestamp":1607098216,"output":" initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"stopping\", publisher_cb: #Function<0"},{"event":"cmd_output","timestamp":1607098216,"output":".104215991/1 in Ppl.PplBlocks.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id,"},{"event":"cmd_output","timestamp":1607098216,"output":" :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id"},{"event":"cmd_output","timestamp":1607098216,"output":"], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:16.228 [info] P"},{"event":"cmd_output","timestamp":1607098216,"output":"eriodic from module Elixir.Block.Blocks.STMHandler.InitializingState with name Elixir.Block.Blocks.S"},{"event":"cmd_output","timestamp":1607098216,"output":"TMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-"},{"event":"cmd_output","timestamp":1607098216,"output":"STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time"},{"event":"cmd_output","timestamp":1607098216,"output":"_sec: 0, initial_query: Block.Blocks.Model.Blocks, observed_state: \"initializing\", publisher_cb: :sk"},{"event":"cmd_output","timestamp":1607098216,"output":"ip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count,"},{"event":"cmd_output","timestamp":1607098216,"output":" :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:16.228 [in"},{"event":"cmd_output","timestamp":1607098216,"output":"fo] Periodic from module Elixir.Block.Blocks.STMHandler.RunningState with name Elixir.Block.Blocks."},{"event":"cmd_output","timestamp":1607098216,"output":"STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMH"},{"event":"cmd_output","timestamp":1607098216,"output":"andler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_t"},{"event":"cmd_output","timestamp":1607098216,"output":"ime_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"running\", publisher_cb: :ski"},{"event":"cmd_output","timestamp":1607098216,"output":"p, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, "},{"event":"cmd_output","timestamp":1607098216,"output":":block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:16.228 [inf"},{"event":"cmd_output","timestamp":1607098216,"output":"o] Periodic from module Elixir.Block.Blocks.STMHandler.StoppingState with name Elixir.Block.Blocks."},{"event":"cmd_output","timestamp":1607098216,"output":"STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STM"},{"event":"cmd_output","timestamp":1607098216,"output":"Handler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: "},{"event":"cmd_output","timestamp":1607098216,"output":"-2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"stopping\", publisher_cb: :skip, repo:"},{"event":"cmd_output","timestamp":1607098216,"output":" Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_i"},{"event":"cmd_output","timestamp":1607098216,"output":"d], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:16.229 [info] Peri"},{"event":"cmd_output","timestamp":1607098216,"output":"odic from module Elixir.Block.Tasks.STMHandler.PendingState with name Elixir.Block.Tasks.STMHandler."},{"event":"cmd_output","timestamp":1607098216,"output":"PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-Pendi"},{"event":"cmd_output","timestamp":1607098216,"output":"ngState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_quer"},{"event":"cmd_output","timestamp":1607098216,"output":"y: Block.Tasks.Model.Tasks, observed_state: \"pending\", publisher_cb: :skip, repo: Block.EctoRepo, re"},{"event":"cmd_output","timestamp":1607098216,"output":"turning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id, :build_request_i"},{"event":"cmd_output","timestamp":1607098216,"output":"d], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:16.229 [info] Period"},{"event":"cmd_output","timestamp":1607098216,"output":"ic from module Elixir.Block.Tasks.STMHandler.RunningState with name Elixir.Block.Tasks.STMHandler.Ru"},{"event":"cmd_output","timestamp":1607098216,"output":"nningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-Running"},{"event":"cmd_output","timestamp":1607098216,"output":"State\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, i"},{"event":"cmd_output","timestamp":1607098216,"output":"nitial_query: Block.Tasks.Model.Tasks, observed_state: \"running\", publisher_cb: :skip, repo: Block.E"},{"event":"cmd_output","timestamp":1607098216,"output":"ctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], sche"},{"event":"cmd_output","timestamp":1607098216,"output":"ma: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:16.229 [info] Periodic from "},{"event":"cmd_output","timestamp":1607098216,"output":"module Elixir.Block.Tasks.STMHandler.StoppingState with name Elixir.Block.Tasks.STMHandler.StoppingS"},{"event":"cmd_output","timestamp":1607098216,"output":"tate :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-StoppingState"},{"event":"cmd_output","timestamp":1607098216,"output":"\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Bl"},{"event":"cmd_output","timestamp":1607098216,"output":"ock.Tasks.Model.Tasks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, return"},{"event":"cmd_output","timestamp":1607098216,"output":"ing: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks"},{"event":"cmd_output","timestamp":1607098216,"output":".Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:16.242 [info] Request: 'run: %{\"branch_id\" "},{"event":"cmd_output","timestamp":1607098216,"output":"=> \"bdce0663-1c92-4344-81a5-7b176cb05e4b\", \"branch_name\" => \"master\", \"client_id\" => \"eaeff548-cc76-"},{"event":"cmd_output","timestamp":1607098216,"output":"43c0-985c-0c249e718667\", \"commit_sha\" => \"75891a4469\", \"definition_file\" => \"\", \"hook_id\" => \"327b35"},{"event":"cmd_output","timestamp":1607098216,"output":"90-364b-11eb-810a-5254005464e2\", \"label\" => \"master\", \"organization_id\" => \"fcd76cdb-c637-42a9-a488-"},{"event":"cmd_output","timestamp":1607098216,"output":"93114297b9f9\", \"owner\" => \"rt\", \"project_id\" => \"d4609f23-a69e-4134-abf0-6aca734a1536\", \"repo_name\" "},{"event":"cmd_output","timestamp":1607098216,"output":"=> \"20_workflow_builder\", \"request_token\" => \"327b2258-364b-11eb-ac81-5254005464e2\", \"requester_id\" "},{"event":"cmd_output","timestamp":1607098216,"output":"=> \"0bb5c580-6586-417c-8957-a2695f509d39\", \"service\" => \"local\", \"snapshot_id\" => \"\", \"suppressed_at"},{"event":"cmd_output","timestamp":1607098216,"output":"tributes\" => [\"access_token\", \"client_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"a8344254-b96d-"},{"event":"cmd_output","timestamp":1607098216,"output":"41b3-b239-5a234156ea28\"}\n\u001b[0m\u001b[22m\n16:10:16.270 [info] ppl_id: 8299454d-872f-438a-b91b-76a3fe043c"},{"event":"cmd_output","timestamp":1607098216,"output":"83, type: PplRequests, event: persisted schedule request with request_token: 327b2258-364b-11eb-ac81"},{"event":"cmd_output","timestamp":1607098216,"output":"-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b["},{"event":"cmd_output","timestamp":1607098216,"output":"0m\u001b[22m\n16:10:16.273 [info] ppl_id: 8299454d-872f-438a-b91b-76a3fe043c83, type: Ppls, state: initi"},{"event":"cmd_output","timestamp":1607098216,"output":"alizing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_r"},{"event":"cmd_output","timestamp":1607098216,"output":"esponse/2(L124), \n\u001b[0m\u001b[22m\n16:10:16.277 [info] Project d4609f23-a69e-4134-abf0-6aca734a1536 and "},{"event":"cmd_output","timestamp":1607098216,"output":"branch masterlatest_wf details updated: \"wf_id: a8344254-b96d-41b3-b239-5a234156ea28, wf_number: 1\"\r"},{"event":"cmd_output","timestamp":1607098216,"output":"\n\u001b[0m\u001b[22m\n16:10:16.279 [info] Persisted ppl_sub_init for pipeline with ppl_id: 8299454d-872f-438a"},{"event":"cmd_output","timestamp":1607098216,"output":"-b91b-76a3fe043c83: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pip"},{"event":"cmd_output","timestamp":1607098216,"output":"eline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 23, in_scheduling: false, init_"},{"event":"cmd_output","timestamp":1607098216,"output":"type: \"regular\", inserted_at: ~N[2020-12-04 16:10:16.278123], pipeline_requests: #Ecto.Association.N"},{"event":"cmd_output","timestamp":1607098216,"output":"otLoaded, ppl_id: \"8299454d-872f-438a-b91b-76a3fe043c8"},{"event":"cmd_output","timestamp":1607098216,"output":"3\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, te"},{"event":"cmd_output","timestamp":1607098216,"output":"rminate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:16.278210]}\n\u001b[0m\u001b[22m\n16:10:16.293 [inf"},{"event":"cmd_output","timestamp":1607098216,"output":"o] Request: 'run: %{\"auto_promoted\" => false, \"branch_id\" => \"bdce0663-1c92-4344-81a5-7b176cb05e4b\""},{"event":"cmd_output","timestamp":1607098216,"output":", \"branch_name\" => \"master\", \"client_id\" => \"eaeff548-cc76-43c0-985c-0c249e718667\", \"commit_sha\" => "},{"event":"cmd_output","timestamp":1607098216,"output":"\"75891a4469\", \"definition_file\" => \"\", \"env_vars\" => [], \"extension_of\" => \"8299454d-872f-438a-b91b-"},{"event":"cmd_output","timestamp":1607098216,"output":"76a3fe043c83\", \"file_name\" => \"/foo/bar/test.yml\", \"hook_id\" => \"327b3590-364b-11eb-810a-5254005464e"},{"event":"cmd_output","timestamp":1607098216,"output":"2\", \"label\" => \"master\", \"organization_id\" => \"fcd76cdb-c637-42a9-a488-93114297b9f9\", \"owner\" => \"rt"},{"event":"cmd_output","timestamp":1607098216,"output":"\", \"prev_ppl_artefact_ids\" => [\"8299454d-872f-438a-b91b-76a3fe043c83\"], \"project_id\" => \"d4609f23-a6"},{"event":"cmd_output","timestamp":1607098216,"output":"9e-4134-abf0-6aca734a1536\", \"promoter_id\" => \"\", \"repo_name\" => \"20_workflow_builder\", \"request_toke"},{"event":"cmd_output","timestamp":1607098216,"output":"n\" => \"1a99f7cb-c4da-4362-b553-d7e0e89983a2\", \"requester_id\" => \"0bb5c580-6586-417c-8957-a2695f509d3"},{"event":"cmd_output","timestamp":1607098216,"output":"9\", \"service\" => \"local\", \"snapshot_id\" => \"\", \"suppressed_attributes\" => [\"access_token\", \"client_s"},{"event":"cmd_output","timestamp":1607098216,"output":"ecret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"a8344254-b96d-41b3-b239-5a234156ea28\", \"wf_number\" =>"},{"event":"cmd_output","timestamp":1607098216,"output":" 1, \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:10:16.297 [info] ppl_id: 8299454d-872f-438a-b91b-"},{"event":"cmd_output","timestamp":1607098216,"output":"76a3fe043c83, type: PplRequests, event: persisted source_args for pipeline: 8299454d-872f-438a-b91b-"},{"event":"cmd_output","timestamp":1607098216,"output":"76a3fe043c83, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098216,"output":"22m\n16:10:16.299 [info] ppl_id: 123e6edd-07d1-469a-b899-8a123499bf03, type: PplRequests, event: pe"},{"event":"cmd_output","timestamp":1607098216,"output":"rsisted schedule request with request_token: 1a99f7cb-c4da-4362-b553-d7e0e89983a2, origin: Elixir.Pp"},{"event":"cmd_output","timestamp":1607098216,"output":"l.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:16.300 [info] pp"},{"event":"cmd_output","timestamp":1607098216,"output":"l_id: 8299454d-872f-438a-b91b-76a3fe043c83, type: PplSubInits, state: fetching, event: exit_scheduli"},{"event":"cmd_output","timestamp":1607098216,"output":"ng, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:16"},{"event":"cmd_output","timestamp":1607098216,"output":".302 [info] ppl_id: 123e6edd-07d1-469a-b899-8a123499bf03, type: Ppls, state: initializing, event: i"},{"event":"cmd_output","timestamp":1607098216,"output":"nitializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), "},{"event":"cmd_output","timestamp":1607098216,"output":"\n\u001b[0m\u001b[22m\n16:10:16.305 [info] Persisted ppl_sub_init for pipeline with ppl_id: 123e6edd-07d1-469"},{"event":"cmd_output","timestamp":1607098216,"output":"a-b899-8a123499bf03: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pi"},{"event":"cmd_output","timestamp":1607098216,"output":"peline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 24, in_scheduling: false, init"},{"event":"cmd_output","timestamp":1607098216,"output":"_type: \"regular\", inserted_at: ~N[2020-12-04 16:10:16.303930], pipeline_requests: #Ecto.Association."},{"event":"cmd_output","timestamp":1607098216,"output":"NotLoaded, ppl_id: \"123e6edd-07d1-469a-b899-8a123499bf"},{"event":"cmd_output","timestamp":1607098216,"output":"03\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, t"},{"event":"cmd_output","timestamp":1607098216,"output":"erminate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:16.303941]}\n\u001b[0m\u001b[22m\n16:10:16.320 [in"},{"event":"cmd_output","timestamp":1607098216,"output":"fo] ppl_id: 123e6edd-07d1-469a-b899-8a123499bf03, type: PplRequests, event: persisted source_args f"},{"event":"cmd_output","timestamp":1607098216,"output":"or pipeline: 123e6edd-07d1-469a-b899-8a123499bf03, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQ"},{"event":"cmd_output","timestamp":1607098216,"output":"ueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:16.325 [info] ppl_id: 123e6edd-07d1-469a-b899-8a123"},{"event":"cmd_output","timestamp":1607098216,"output":"499bf03, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098216,"output":"ir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:16.328 [info] ppl_id: 8299454d-872f-"},{"event":"cmd_output","timestamp":1607098216,"output":"438a-b91b-76a3fe043c83, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_cou"},{"event":"cmd_output","timestamp":1607098216,"output":"nt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:16.365 [info] ppl"},{"event":"cmd_output","timestamp":1607098216,"output":"_id: 123e6edd-07d1-469a-b899-8a123499bf03, type: PplSubInits, state: regular_init, event: exit_sched"},{"event":"cmd_output","timestamp":1607098218,"output":"uling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[33m\n16:10"},{"event":"cmd_output","timestamp":1607098218,"output":":18.755 [warn] Elixir.Wormhole{#PID<0.3332.0>}:: callback: {GoferClient.GrpcClient, :create_, [%Int"},{"event":"cmd_output","timestamp":1607098218,"output":"ernalApi.Gofer.CreateRequest{branch_name: \"master\", commit_range: \"1234...4567\", commit_sha: \"75891a"},{"event":"cmd_output","timestamp":1607098218,"output":"4469\", git_ref_type: 0, label: \"master\", pipeline_id: \"8299454d-872f-438a-b91b-76a3fe043c83\", pr_bas"},{"event":"cmd_output","timestamp":1607098218,"output":"e: \"\", pr_sha: \"\", prev_ppl_artefact_ids: [\"8299454d-872f-438a-b91b-76a3fe043c83\"], project_id: \"d46"},{"event":"cmd_output","timestamp":1607098218,"output":"09f23-a69e-4134-abf0-6aca734a1536\", targets: [%InternalApi.Gofer.Target{auto_promote_when: \"\", auto_"},{"event":"cmd_output","timestamp":1607098218,"output":"trigger_on: [], name: \"Extension ppl\", parameter_env_vars: [], pipeline_path: \"/foo/bar/test.yml\"}],"},{"event":"cmd_output","timestamp":1607098218,"output":" working_dir: \".semaphore\", yml_file_name: \"semaphore.yml\"}]}; reason: {:timeout, 2345}\n\u001b[0m\u001b[31m\n"},{"event":"cmd_output","timestamp":1607098218,"output":"16:10:18.756 [error] ppl_id: not_available, event: exit_scheduling, context: {:error, :user_exit_fun"},{"event":"cmd_output","timestamp":1607098218,"output":"ction, {:error, {:timeout, 2345}}, %{item: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema"},{"event":"cmd_output","timestamp":1607098218,"output":".Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: \"\", id: 23, in_sc"},{"event":"cmd_output","timestamp":1607098218,"output":"heduling: true, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:10:16.278123], pipeline_requests"},{"event":"cmd_output","timestamp":1607098218,"output":": #Ecto.Association.NotLoaded, ppl_id: \"8299454d-872f-"},{"event":"cmd_output","timestamp":1607098218,"output":"438a-b91b-76a3fe043c83\", recovery_count: 0, result: nil, result_reason: nil, state: \"regular_init\", "},{"event":"cmd_output","timestamp":1607098218,"output":"terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:16.330700]}}}, "},{"event":"cmd_output","timestamp":1607098218,"output":"origin: Elixir.Looper.STM.Impl.log_state_change/1(L96), \n\u001b[0m\u001b[31m\n16:10:18.757 [error] STM Elixir"},{"event":"cmd_output","timestamp":1607098218,"output":".Ppl.PplSubInits.STMHandler.RegularInitState FAILED: {:error, :user_exit_function, {:error, {:timeou"},{"event":"cmd_output","timestamp":1607098218,"output":"t, 2345}}, %{item: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipe"},{"event":"cmd_output","timestamp":1607098218,"output":"line_sub_inits\">, compile_task_id: nil, error_description: \"\", id: 23, in_scheduling: true, init_typ"},{"event":"cmd_output","timestamp":1607098218,"output":"e: \"regular\", inserted_at: ~N[2020-12-04 16:10:16.278123], pipeline_requests: #Ecto.Association.NotL"},{"event":"cmd_output","timestamp":1607098218,"output":"oaded, ppl_id: \"8299454d-872f-438a-b91b-76a3fe043c83\","},{"event":"cmd_output","timestamp":1607098218,"output":" recovery_count: 0, result: nil, result_reason: nil, state: \"regular_init\", terminate_request: nil, "},{"event":"cmd_output","timestamp":1607098218,"output":"terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:16.330700]}}}\n\u001b[0m\u001b[22m\n16:10:18.782 "},{"event":"cmd_output","timestamp":1607098218,"output":"[info] ppl_id: 123e6edd-07d1-469a-b899-8a123499bf03, type: PplRequests, event: persisted definition"},{"event":"cmd_output","timestamp":1607098218,"output":" for request with request_token: 1a99f7cb-c4da-4362-b553-d7e0e89983a2, origin: Elixir.Ppl.PplRequest"},{"event":"cmd_output","timestamp":1607098218,"output":"s.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:18.786 [info] Queue persist"},{"event":"cmd_output","timestamp":1607098218,"output":"ed: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: "},{"event":"cmd_output","timestamp":1607098218,"output":"~N[2020-12-04 16:10:18.784993], name: \"master-/foo/bar/test.yml\", organization_id: \"fcd76cdb-c637-42"},{"event":"cmd_output","timestamp":1607098218,"output":"a9-a488-93114297b9f9\", project_id: \"d4609f23-a69e-4134-abf0-6aca734a1536\", queue_id: \"380c42d3-df79-"},{"event":"cmd_output","timestamp":1607098218,"output":"47a1-9e24-517bca6912d6\", scope: \"project\", updated_at: ~N[2020-12-04 16:10:18.785004], user_generate"},{"event":"cmd_output","timestamp":1607098218,"output":"d: false}}\n\u001b[0m\u001b[22m\n16:10:18.799 [info] ppl_id: not_available, event: created, origin: Elixir.Pp"},{"event":"cmd_output","timestamp":1607098218,"output":"l.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:18.799 [info] event: "},{"event":"cmd_output","timestamp":1607098218,"output":"created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098218,"output":":10:18.800 [info] ppl_id: 123e6edd-07d1-469a-b899-8a123499bf03, type: PplBlocks, block_index: 0, st"},{"event":"cmd_output","timestamp":1607098218,"output":"ate: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.Regu"},{"event":"cmd_output","timestamp":1607098218,"output":"larInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:18.800 [info] ppl_id: 123e6edd-07d1-469a-b899-8a12"},{"event":"cmd_output","timestamp":1607098218,"output":"3499bf03, type: PplBlocks, block_index: 1, state: initializing, event: created, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098218,"output":"rigin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:18.804"},{"event":"cmd_output","timestamp":1607098218,"output":" [info] ppl_id: 123e6edd-07d1-469a-b899-8a123499bf03, type: PplSubInits, state: done, result: passe"},{"event":"cmd_output","timestamp":1607098218,"output":"d, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90)"},{"event":"cmd_output","timestamp":1607098218,"output":", \n\u001b[0m\u001b[22m\n16:10:18.815 [info] ppl_id: 123e6edd-07d1-469a-b899-8a123499bf03, type: PplBlocks, b"},{"event":"cmd_output","timestamp":1607098218,"output":"lock_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM."},{"event":"cmd_output","timestamp":1607098218,"output":"Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:18.816 [info] ppl_id: 123e6edd-07d1-469a-b899-8a12"},{"event":"cmd_output","timestamp":1607098218,"output":"3499bf03, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loop"},{"event":"cmd_output","timestamp":1607098218,"output":"er.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:18.824 [info] ppl_id: 123e6edd-07d1-469a-b8"},{"event":"cmd_output","timestamp":1607098218,"output":"99-8a123499bf03, type: PplBlocks, block_index: 1, state: waiting, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098218,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:18.824 [info] p"},{"event":"cmd_output","timestamp":1607098218,"output":"pl_id: 123e6edd-07d1-469a-b899-8a123499bf03, type: Ppls, state: queuing, event: exit_scheduling, rec"},{"event":"cmd_output","timestamp":1607098218,"output":"overy_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:18.834 [i"},{"event":"cmd_output","timestamp":1607098218,"output":"nfo] ppl_id: 123e6edd-07d1-469a-b899-8a123499bf03, type: Ppls, state: running, event: exit_scheduli"},{"event":"cmd_output","timestamp":1607098218,"output":"ng, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:18"},{"event":"cmd_output","timestamp":1607098218,"output":".840 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"123e6edd-07d1-469a-b89"},{"event":"cmd_output","timestamp":1607098218,"output":"9-8a123499bf03\"\n\u001b[0m\u001b[22m\n16:10:18.846 [info] block_id: 8ef97f53-1636-40e4-b7c0-9a580aa6768a, typ"},{"event":"cmd_output","timestamp":1607098218,"output":"e: BlockRequests, event: persisted block run request from ppl 123e6edd-07d1-469a-b899-8a123499bf03 f"},{"event":"cmd_output","timestamp":1607098218,"output":"or block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \r"},{"event":"cmd_output","timestamp":1607098218,"output":"\n\u001b[0m\u001b[22m\n16:10:18.854 [info] block_id: 8ef97f53-1636-40e4-b7c0-9a580aa6768a, type: Blocks, state"},{"event":"cmd_output","timestamp":1607098218,"output":": initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQuer"},{"event":"cmd_output","timestamp":1607098218,"output":"ies.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:18.856 [info] Block 0 of pipeline with id: 123e6edd-07d1-469a"},{"event":"cmd_output","timestamp":1607098218,"output":"-b899-8a123499bf03 scheduled in block service with id: : \"8ef97f53-1636-40e4-b7c0-9a580aa6768a\"\n\u001b[0"},{"event":"cmd_output","timestamp":1607098218,"output":"m\u001b[22m\n16:10:18.858 [info] ppl_id: 123e6edd-07d1-469a-b899-8a123499bf03, type: PplBlocks, block_in"},{"event":"cmd_output","timestamp":1607098218,"output":"dex: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.lo"},{"event":"cmd_output","timestamp":1607098218,"output":"g_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:18.862 [info] block_id: 8ef97f53-1636-40e4-b7c0-9a580aa67"},{"event":"cmd_output","timestamp":1607098218,"output":"68a, type: BlockRequests, event: persisted build and sub_ppl details for block_request: 8ef97f53-163"},{"event":"cmd_output","timestamp":1607098218,"output":"6-40e4-b7c0-9a580aa6768a, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build"},{"event":"cmd_output","timestamp":1607098218,"output":"/2(L41), \n\u001b[0m\u001b[22m\n16:10:18.866 [info] block_id: 8ef97f53-1636-40e4-b7c0-9a580aa6768a, type: Tas"},{"event":"cmd_output","timestamp":1607098218,"output":"ks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.Initia"},{"event":"cmd_output","timestamp":1607098218,"output":"lizingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:18.869 [info] block_id: 8ef97f53-1636-40e4-b7c0-9a5"},{"event":"cmd_output","timestamp":1607098218,"output":"80aa6768a, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098218,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:18.888 [info] block_id: 8ef97f53-1636-40"},{"event":"cmd_output","timestamp":1607098218,"output":"e4-b7c0-9a580aa6768a, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098218,"output":": Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:18.930 [info] block_id: 8ef97f"},{"event":"cmd_output","timestamp":1607098218,"output":"53-1636-40e4-b7c0-9a580aa6768a, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098218,"output":" origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:18.939 [info] block_id:"},{"event":"cmd_output","timestamp":1607098218,"output":" 8ef97f53-1636-40e4-b7c0-9a580aa6768a, type: Blocks, state: done, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098218,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:18.951 [info] p"},{"event":"cmd_output","timestamp":1607098218,"output":"pl_id: 123e6edd-07d1-469a-b899-8a123499bf03, block_id: 8ef97f53-1636-40e4-b7c0-9a580aa6768a, type: P"},{"event":"cmd_output","timestamp":1607098218,"output":"plBlocks, block_index: 0, state: done, result: failed, event: exit_scheduling, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098218,"output":"igin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:18.961 [info] PplBlocks Wa"},{"event":"cmd_output","timestamp":1607098218,"output":"itingState STM is scheduling block 1 from pipeline: \"123e6edd-07d1-469a-b899-8a123499bf03\"\n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098218,"output":"m\n16:10:18.971 [info] ppl_id: 123e6edd-07d1-469a-b899-8a123499bf03, type: PplBlocks, block_index: "},{"event":"cmd_output","timestamp":1607098218,"output":"1, state: done, result: canceled, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.S"},{"event":"cmd_output","timestamp":1607098218,"output":"TM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:18.995 [info] ppl_id: 123e6edd-07d1-469a-b899-8"},{"event":"cmd_output","timestamp":1607098218,"output":"a123499bf03, type: Ppls, state: done, result: failed, event: exit_scheduling, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098219,"output":"gin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:19.091 [info] Request: 'par"},{"event":"cmd_output","timestamp":1607098219,"output":"tial_rebuild', request: %{ppl_id: \"123e6edd-07d1-469a-b899-8a123499bf03\", request_token: \"b34f7d26-f"},{"event":"cmd_output","timestamp":1607098219,"output":"227-40e4-bfc7-efc51b57bcd1\", user_id: \"\"}\n\u001b[0m\u001b[22m\n16:10:19.094 [info] ppl_id: 2ce0d223-2beb-480"},{"event":"cmd_output","timestamp":1607098219,"output":"3-9a5e-58ed77a721ea, type: PplRequests, event: persisted schedule request with request_token: b34f7d"},{"event":"cmd_output","timestamp":1607098219,"output":"26-f227-40e4-bfc7-efc51b57bcd1, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_resp"},{"event":"cmd_output","timestamp":1607098219,"output":"onse/2(L55), \n\u001b[0m\u001b[22m\n16:10:19.098 [info] ppl_id: 2ce0d223-2beb-4803-9a5e-58ed77a721ea, type: P"},{"event":"cmd_output","timestamp":1607098219,"output":"pls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.Ppls"},{"event":"cmd_output","timestamp":1607098219,"output":"Queries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:19.101 [info] Persisted ppl_sub_init for pipel"},{"event":"cmd_output","timestamp":1607098219,"output":"ine with ppl_id: 2ce0d223-2beb-4803-9a5e-58ed77a721ea: %Ppl.PplSubInits.Model.PplSubInits{__meta__: "},{"event":"cmd_output","timestamp":1607098219,"output":"#Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, "},{"event":"cmd_output","timestamp":1607098219,"output":"id: 25, in_scheduling: false, init_type: \"rebuild\", inserted_at: ~N[2020-12-04 16:10:19.100109], pip"},{"event":"cmd_output","timestamp":1607098219,"output":"eline_requests: #Ecto.Association.NotLoaded, ppl_id: \""},{"event":"cmd_output","timestamp":1607098219,"output":"2ce0d223-2beb-4803-9a5e-58ed77a721ea\", recovery_count: 0, result: nil, result_reason: nil, state: \"c"},{"event":"cmd_output","timestamp":1607098219,"output":"reated\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:19.100"},{"event":"cmd_output","timestamp":1607098219,"output":"122]}\n\u001b[0m\u001b[22m\n16:10:19.121 [info] ppl_id: 2ce0d223-2beb-4803-9a5e-58ed77a721ea, type: PplReques"},{"event":"cmd_output","timestamp":1607098219,"output":"ts, event: persisted source_args for pipeline: 2ce0d223-2beb-4803-9a5e-58ed77a721ea, origin: Elixir."},{"event":"cmd_output","timestamp":1607098219,"output":"Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:19.123 [info] Req"},{"event":"cmd_output","timestamp":1607098219,"output":"uest: 'run: %{\"auto_promoted\" => false, \"branch_id\" => \"bdce0663-1c92-4344-81a5-7b176cb05e4b\", \"bran"},{"event":"cmd_output","timestamp":1607098219,"output":"ch_name\" => \"master\", \"client_id\" => \"eaeff548-cc76-43c0-985c-0c249e718667\", \"commit_sha\" => \"75891a"},{"event":"cmd_output","timestamp":1607098219,"output":"4469\", \"definition_file\" => \"\", \"env_vars\" => [], \"extension_of\" => \"8299454d-872f-438a-b91b-76a3fe0"},{"event":"cmd_output","timestamp":1607098219,"output":"43c83\", \"file_name\" => \"/foo/bar/test.yml\", \"hook_id\" => \"327b3590-364b-11eb-810a-5254005464e2\", \"la"},{"event":"cmd_output","timestamp":1607098219,"output":"bel\" => \"master\", \"organization_id\" => \"fcd76cdb-c637-42a9-a488-93114297b9f9\", \"owner\" => \"rt\", \"pre"},{"event":"cmd_output","timestamp":1607098219,"output":"v_ppl_artefact_ids\" => [\"8299454d-872f-438a-b91b-76a3fe043c83\"], \"project_id\" => \"d4609f23-a69e-4134"},{"event":"cmd_output","timestamp":1607098219,"output":"-abf0-6aca734a1536\", \"promoter_id\" => \"\", \"repo_name\" => \"20_workflow_builder\", \"request_token\" => \""},{"event":"cmd_output","timestamp":1607098219,"output":"34962d60-1632-43b1-ae23-1de6504ce7e1\", \"requester_id\" => \"0bb5c580-6586-417c-8957-a2695f509d39\", \"se"},{"event":"cmd_output","timestamp":1607098219,"output":"rvice\" => \"local\", \"snapshot_id\" => \"\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"]"},{"event":"cmd_output","timestamp":1607098219,"output":", \"triggered_by\" => \"hook\", \"wf_id\" => \"a8344254-b96d-41b3-b239-5a234156ea28\", \"wf_number\" => 1, \"wo"},{"event":"cmd_output","timestamp":1607098219,"output":"rking_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:10:19.127 [info] ppl_id: 2ce0d223-2beb-4803-9a5e-58ed77a"},{"event":"cmd_output","timestamp":1607098219,"output":"721ea, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098219,"output":".Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:19.128 [info] ppl_id: 15f67058-ec8f-48"},{"event":"cmd_output","timestamp":1607098219,"output":"28-893d-7bf38b94a020, type: PplRequests, event: persisted schedule request with request_token: 34962"},{"event":"cmd_output","timestamp":1607098219,"output":"d60-1632-43b1-ae23-1de6504ce7e1, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_res"},{"event":"cmd_output","timestamp":1607098219,"output":"ponse/2(L55), \n\u001b[0m\u001b[22m\n16:10:19.132 [info] ppl_id: 15f67058-ec8f-4828-893d-7bf38b94a020, type: "},{"event":"cmd_output","timestamp":1607098219,"output":"Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.Ppl"},{"event":"cmd_output","timestamp":1607098219,"output":"sQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:19.135 [info] Persisted ppl_sub_init for pipe"},{"event":"cmd_output","timestamp":1607098219,"output":"line with ppl_id: 15f67058-ec8f-4828-893d-7bf38b94a020: %Ppl.PplSubInits.Model.PplSubInits{__meta__:"},{"event":"cmd_output","timestamp":1607098219,"output":" #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil,"},{"event":"cmd_output","timestamp":1607098219,"output":" id: 26, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:10:19.133869], pi"},{"event":"cmd_output","timestamp":1607098219,"output":"peline_requests: #Ecto.Association.NotLoaded, ppl_id: "},{"event":"cmd_output","timestamp":1607098219,"output":"\"15f67058-ec8f-4828-893d-7bf38b94a020\", recovery_count: 0, result: nil, result_reason: nil, state: \""},{"event":"cmd_output","timestamp":1607098219,"output":"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:19.13"},{"event":"cmd_output","timestamp":1607098219,"output":"3881]}\n\u001b[0m\u001b[22m\n16:10:19.148 [info] ppl_id: 15f67058-ec8f-4828-893d-7bf38b94a020, type: PplReque"},{"event":"cmd_output","timestamp":1607098219,"output":"sts, event: persisted source_args for pipeline: 15f67058-ec8f-4828-893d-7bf38b94a020, origin: Elixir"},{"event":"cmd_output","timestamp":1607098219,"output":".Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:19.151 [info] pp"},{"event":"cmd_output","timestamp":1607098219,"output":"l_id: 15f67058-ec8f-4828-893d-7bf38b94a020, type: PplSubInits, state: fetching, event: exit_scheduli"},{"event":"cmd_output","timestamp":1607098219,"output":"ng, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:19"},{"event":"cmd_output","timestamp":1607098219,"output":".168 [info] ppl_id: 2ce0d223-2beb-4803-9a5e-58ed77a721ea, type: PplSubInits, state: regular_init, e"},{"event":"cmd_output","timestamp":1607098219,"output":"vent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n"},{"event":"cmd_output","timestamp":1607098219,"output":"\u001b[0m\u001b[22m\n16:10:19.192 [info] ppl_id: 15f67058-ec8f-4828-893d-7bf38b94a020, type: PplSubInits, sta"},{"event":"cmd_output","timestamp":1607098219,"output":"te: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_stat"},{"event":"cmd_output","timestamp":1607098219,"output":"e_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:19.215 [info] ppl_id: 2ce0d223-2beb-4803-9a5e-58ed77a721ea, typ"},{"event":"cmd_output","timestamp":1607098219,"output":"e: PplRequests, event: persisted definition for request with request_token: b34f7d26-f227-40e4-bfc7-"},{"event":"cmd_output","timestamp":1607098219,"output":"efc51b57bcd1, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b["},{"event":"cmd_output","timestamp":1607098219,"output":"0m\u001b[22m\n16:10:19.225 [info] ppl_id: not_available, event: created, origin: Elixir.Ppl.PplSubInits."},{"event":"cmd_output","timestamp":1607098219,"output":"STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:19.225 [info] event: created, origi"},{"event":"cmd_output","timestamp":1607098219,"output":"n: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:19.225 [in"},{"event":"cmd_output","timestamp":1607098219,"output":"fo] ppl_id: 2ce0d223-2beb-4803-9a5e-58ed77a721ea, type: PplBlocks, block_index: 0, state: initializ"},{"event":"cmd_output","timestamp":1607098219,"output":"ing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.a"},{"event":"cmd_output","timestamp":1607098219,"output":"ll_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:19.225 [info] ppl_id: 2ce0d223-2beb-4803-9a5e-58ed77a721ea, type"},{"event":"cmd_output","timestamp":1607098219,"output":": PplBlocks, block_index: 1, state: initializing, event: created, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098219,"output":"Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:19.227 [info] ppl_i"},{"event":"cmd_output","timestamp":1607098219,"output":"d: 2ce0d223-2beb-4803-9a5e-58ed77a721ea, type: PplSubInits, state: done, result: passed, event: exit"},{"event":"cmd_output","timestamp":1607098219,"output":"_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098219,"output":"\n16:10:19.236 [info] ppl_id: 2ce0d223-2beb-4803-9a5e-58ed77a721ea, type: Ppls, state: pending, even"},{"event":"cmd_output","timestamp":1607098219,"output":"t: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098219,"output":"m\u001b[22m\n16:10:19.248 [info] ppl_id: 2ce0d223-2beb-4803-9a5e-58ed77a721ea, type: PplBlocks, block_in"},{"event":"cmd_output","timestamp":1607098219,"output":"dex: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.lo"},{"event":"cmd_output","timestamp":1607098219,"output":"g_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:19.254 [info] ppl_id: 2ce0d223-2beb-4803-9a5e-58ed77a721e"},{"event":"cmd_output","timestamp":1607098219,"output":"a, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM."},{"event":"cmd_output","timestamp":1607098219,"output":"Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:19.268 [info] ppl_id: 2ce0d223-2beb-4803-9a5e-58ed"},{"event":"cmd_output","timestamp":1607098219,"output":"77a721ea, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loop"},{"event":"cmd_output","timestamp":1607098219,"output":"er.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:19.269 [info] ppl_id: 2ce0d223-2beb-4803-9a"},{"event":"cmd_output","timestamp":1607098219,"output":"5e-58ed77a721ea, type: PplBlocks, block_index: 1, state: waiting, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098219,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:19.277 [info] P"},{"event":"cmd_output","timestamp":1607098219,"output":"plBlocks WaitingState STM is scheduling block 0 from pipeline: \"2ce0d223-2beb-4803-9a5e-58ed77a721ea"},{"event":"cmd_output","timestamp":1607098219,"output":"\"\n\u001b[0m\u001b[22m\n16:10:19.285 [info] block_id: 6fa0f85b-e3c9-4e4c-814e-782a63897c02, type: BlockReques"},{"event":"cmd_output","timestamp":1607098219,"output":"ts, event: persisted block run request from ppl 2ce0d223-2beb-4803-9a5e-58ed77a721ea for block 0, or"},{"event":"cmd_output","timestamp":1607098219,"output":"igin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098219,"output":":10:19.287 [info] block_id: 6fa0f85b-e3c9-4e4c-814e-782a63897c02, type: Blocks, state: initializing"},{"event":"cmd_output","timestamp":1607098219,"output":", event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L"},{"event":"cmd_output","timestamp":1607098219,"output":"43), \n\u001b[0m\u001b[22m\n16:10:19.290 [info] Block 0 of pipeline with id: 2ce0d223-2beb-4803-9a5e-58ed77a7"},{"event":"cmd_output","timestamp":1607098219,"output":"21ea scheduled in block service with id: : \"6fa0f85b-e3c9-4e4c-814e-782a63897c02\"\n\u001b[0m\u001b[22m\n16:10:"},{"event":"cmd_output","timestamp":1607098219,"output":"19.295 [info] ppl_id: 15f67058-ec8f-4828-893d-7bf38b94a020, type: PplRequests, event: persisted def"},{"event":"cmd_output","timestamp":1607098219,"output":"inition for request with request_token: 34962d60-1632-43b1-ae23-1de6504ce7e1, origin: Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098219,"output":"Requests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:19.296 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098219,"output":": 2ce0d223-2beb-4803-9a5e-58ed77a721ea, type: PplBlocks, block_index: 0, state: running, event: exit"},{"event":"cmd_output","timestamp":1607098219,"output":"_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098219,"output":"\n16:10:19.299 [info] block_id: 6fa0f85b-e3c9-4e4c-814e-782a63897c02, type: BlockRequests, event: pe"},{"event":"cmd_output","timestamp":1607098219,"output":"rsisted build and sub_ppl details for block_request: 6fa0f85b-e3c9-4e4c-814e-782a63897c02, origin: E"},{"event":"cmd_output","timestamp":1607098219,"output":"lixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:19.302 "},{"event":"cmd_output","timestamp":1607098219,"output":"[info] block_id: 6fa0f85b-e3c9-4e4c-814e-782a63897c02, type: Tasks, state: pending, event: created,"},{"event":"cmd_output","timestamp":1607098219,"output":" recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098219,"output":"\u001b[22m\n16:10:19.306 [info] block_id: 6fa0f85b-e3c9-4e4c-814e-782a63897c02, type: Blocks, state: run"},{"event":"cmd_output","timestamp":1607098219,"output":"ning, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098219,"output":"90), \n\u001b[0m\u001b[22m\n16:10:19.312 [info] ppl_id: not_available, event: created, origin: Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098219,"output":"SubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:19.312 [info] event: creat"},{"event":"cmd_output","timestamp":1607098219,"output":"ed, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:1"},{"event":"cmd_output","timestamp":1607098219,"output":"9.312 [info] ppl_id: 15f67058-ec8f-4828-893d-7bf38b94a020, type: PplBlocks, block_index: 0, state: "},{"event":"cmd_output","timestamp":1607098219,"output":"initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularIn"},{"event":"cmd_output","timestamp":1607098219,"output":"itState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:19.312 [info] ppl_id: 15f67058-ec8f-4828-893d-7bf38b94a"},{"event":"cmd_output","timestamp":1607098219,"output":"020, type: PplBlocks, block_index: 1, state: initializing, event: created, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098219,"output":": Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:19.317 [inf"},{"event":"cmd_output","timestamp":1607098219,"output":"o] ppl_id: 15f67058-ec8f-4828-893d-7bf38b94a020, type: PplSubInits, state: done, result: passed, ev"},{"event":"cmd_output","timestamp":1607098219,"output":"ent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b"},{"event":"cmd_output","timestamp":1607098219,"output":"[0m\u001b[22m\n16:10:19.339 [info] block_id: 6fa0f85b-e3c9-4e4c-814e-782a63897c02, type: Tasks, state: r"},{"event":"cmd_output","timestamp":1607098219,"output":"unning, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1"},{"event":"cmd_output","timestamp":1607098219,"output":"(L90), \n\u001b[0m\u001b[22m\n16:10:19.347 [info] ppl_id: 15f67058-ec8f-4828-893d-7bf38b94a020, type: Ppls, s"},{"event":"cmd_output","timestamp":1607098219,"output":"tate: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098219,"output":"hange/1(L90), \n\u001b[0m\u001b[22m\n16:10:19.353 [info] ppl_id: 15f67058-ec8f-4828-893d-7bf38b94a020, type: "},{"event":"cmd_output","timestamp":1607098219,"output":"PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098219,"output":".Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:19.371 [info] block_id: 6fa0f85b-e3c9-"},{"event":"cmd_output","timestamp":1607098219,"output":"4e4c-814e-782a63897c02, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098219,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:19.373 [info] ppl_id: 15f67058-"},{"event":"cmd_output","timestamp":1607098219,"output":"ec8f-4828-893d-7bf38b94a020, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098219,"output":"origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:19.375 [info] ppl_id: 15"},{"event":"cmd_output","timestamp":1607098219,"output":"f67058-ec8f-4828-893d-7bf38b94a020, type: PplBlocks, block_index: 1, state: waiting, event: exit_sch"},{"event":"cmd_output","timestamp":1607098219,"output":"eduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098219,"output":"10:19.383 [info] block_id: 6fa0f85b-e3c9-4e4c-814e-782a63897c02, type: Blocks, state: done, event: "},{"event":"cmd_output","timestamp":1607098219,"output":"exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098219,"output":"22m\n16:10:19.402 [info] ppl_id: 2ce0d223-2beb-4803-9a5e-58ed77a721ea, block_id: 6fa0f85b-e3c9-4e4c"},{"event":"cmd_output","timestamp":1607098219,"output":"-814e-782a63897c02, type: PplBlocks, block_index: 0, state: done, result: failed, event: exit_schedu"},{"event":"cmd_output","timestamp":1607098219,"output":"ling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:"},{"event":"cmd_output","timestamp":1607098219,"output":"19.418 [info] PplBlocks WaitingState STM is scheduling block 1 from pipeline: \"2ce0d223-2beb-4803-9"},{"event":"cmd_output","timestamp":1607098219,"output":"a5e-58ed77a721ea\"\n\u001b[0m\u001b[22m\n16:10:19.429 [info] ppl_id: 2ce0d223-2beb-4803-9a5e-58ed77a721ea, typ"},{"event":"cmd_output","timestamp":1607098219,"output":"e: PplBlocks, block_index: 1, state: done, result: canceled, event: exit_scheduling, recovery_count:"},{"event":"cmd_output","timestamp":1607098219,"output":" 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:19.447 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098219,"output":": 2ce0d223-2beb-4803-9a5e-58ed77a721ea, type: Ppls, state: done, result: failed, event: exit_schedul"},{"event":"cmd_output","timestamp":1607098219,"output":"ing, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:1"},{"event":"cmd_output","timestamp":1607098219,"output":"9.503 [info] ppl_id: 15f67058-ec8f-4828-893d-7bf38b94a020, type: Ppls, state: running, event: exit_"},{"event":"cmd_output","timestamp":1607098219,"output":"scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098219,"output":"16:10:19.521 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"15f67058-ec8f-"},{"event":"cmd_output","timestamp":1607098219,"output":"4828-893d-7bf38b94a020\"\n\u001b[0m\u001b[22m\n16:10:19.530 [info] block_id: 5834a422-646c-4002-ac34-a4abbb7da"},{"event":"cmd_output","timestamp":1607098219,"output":"f7a, type: BlockRequests, event: persisted block run request from ppl 15f67058-ec8f-4828-893d-7bf38b"},{"event":"cmd_output","timestamp":1607098219,"output":"94a020 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4"},{"event":"cmd_output","timestamp":1607098219,"output":"(L35), \n\u001b[0m\u001b[22m\n16:10:19.534 [info] block_id: 5834a422-646c-4002-ac34-a4abbb7daf7a, type: Block"},{"event":"cmd_output","timestamp":1607098219,"output":"s, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.Bl"},{"event":"cmd_output","timestamp":1607098219,"output":"ocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:19.536 [info] Block 0 of pipeline with id: 15f67058-e"},{"event":"cmd_output","timestamp":1607098219,"output":"c8f-4828-893d-7bf38b94a020 scheduled in block service with id: : \"5834a422-646c-4002-ac34-a4abbb7daf"},{"event":"cmd_output","timestamp":1607098219,"output":"7a\"\n\u001b[0m\u001b[22m\n16:10:19.538 [info] ppl_id: 15f67058-ec8f-4828-893d-7bf38b94a020, type: PplBlocks, "},{"event":"cmd_output","timestamp":1607098219,"output":"block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM"},{"event":"cmd_output","timestamp":1607098219,"output":".Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:19.543 [info] block_id: 5834a422-646c-4002-ac34-a"},{"event":"cmd_output","timestamp":1607098219,"output":"4abbb7daf7a, type: BlockRequests, event: persisted build and sub_ppl details for block_request: 5834"},{"event":"cmd_output","timestamp":1607098219,"output":"a422-646c-4002-ac34-a4abbb7daf7a, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.inse"},{"event":"cmd_output","timestamp":1607098219,"output":"rt_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:19.546 [info] block_id: 5834a422-646c-4002-ac34-a4abbb7daf7a, t"},{"event":"cmd_output","timestamp":1607098219,"output":"ype: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandle"},{"event":"cmd_output","timestamp":1607098219,"output":"r.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:19.551 [info] block_id: 5834a422-646c-4002-"},{"event":"cmd_output","timestamp":1607098219,"output":"ac34-a4abbb7daf7a, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098219,"output":"Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:19.572 [info] block_id: 5834a422"},{"event":"cmd_output","timestamp":1607098219,"output":"-646c-4002-ac34-a4abbb7daf7a, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0"},{"event":"cmd_output","timestamp":1607098219,"output":", origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:19.706 [info] block_id"},{"event":"cmd_output","timestamp":1607098219,"output":": 5834a422-646c-4002-ac34-a4abbb7daf7a, type: Tasks, state: done, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098219,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:19.715 [info] b"},{"event":"cmd_output","timestamp":1607098219,"output":"lock_id: 5834a422-646c-4002-ac34-a4abbb7daf7a, type: Blocks, state: done, event: exit_scheduling, re"},{"event":"cmd_output","timestamp":1607098219,"output":"covery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:19.726 ["},{"event":"cmd_output","timestamp":1607098219,"output":"info] ppl_id: 15f67058-ec8f-4828-893d-7bf38b94a020, block_id: 5834a422-646c-4002-ac34-a4abbb7daf7a,"},{"event":"cmd_output","timestamp":1607098219,"output":" type: PplBlocks, block_index: 0, state: done, result: failed, event: exit_scheduling, recovery_coun"},{"event":"cmd_output","timestamp":1607098219,"output":"t: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:19.734 [info] PplB"},{"event":"cmd_output","timestamp":1607098219,"output":"locks WaitingState STM is scheduling block 1 from pipeline: \"15f67058-ec8f-4828-893d-7bf38b94a020\"\n"},{"event":"cmd_output","timestamp":1607098219,"output":"\u001b[0m\u001b[22m\n16:10:19.745 [info] ppl_id: 15f67058-ec8f-4828-893d-7bf38b94a020, type: PplBlocks, block"},{"event":"cmd_output","timestamp":1607098219,"output":"_index: 1, state: done, result: canceled, event: exit_scheduling, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098219,"output":"Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:19.761 [info] ppl_id: 15f67058-ec8f-482"},{"event":"cmd_output","timestamp":1607098219,"output":"8-893d-7bf38b94a020, type: Ppls, state: done, result: failed, event: exit_scheduling, recovery_count"},{"event":"cmd_output","timestamp":1607098219,"output":": 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:19.769 [info] Reque"},{"event":"cmd_output","timestamp":1607098219,"output":"st: 'partial_rebuild', request: %{ppl_id: \"15f67058-ec8f-4828-893d-7bf38b94a020\", request_token: \"fe"},{"event":"cmd_output","timestamp":1607098219,"output":"4a060e-d656-4e5b-9b37-1dad498644c1\", user_id: \"\"}\n\u001b[0m\u001b[22m\n16:10:19.772 [info] ppl_id: a8e827ce-"},{"event":"cmd_output","timestamp":1607098219,"output":"5f3b-4e80-b940-df542b6c54ab, type: PplRequests, event: persisted schedule request with request_token"},{"event":"cmd_output","timestamp":1607098219,"output":": fe4a060e-d656-4e5b-9b37-1dad498644c1, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.proc"},{"event":"cmd_output","timestamp":1607098219,"output":"ess_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:19.775 [info] ppl_id: a8e827ce-5f3b-4e80-b940-df542b6c54ab,"},{"event":"cmd_output","timestamp":1607098219,"output":" type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Mo"},{"event":"cmd_output","timestamp":1607098219,"output":"del.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:19.785 [info] Persisted ppl_sub_init f"},{"event":"cmd_output","timestamp":1607098219,"output":"or pipeline with ppl_id: a8e827ce-5f3b-4e80-b940-df542b6c54ab: %Ppl.PplSubInits.Model.PplSubInits{__"},{"event":"cmd_output","timestamp":1607098219,"output":"meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_descriptio"},{"event":"cmd_output","timestamp":1607098219,"output":"n: nil, id: 27, in_scheduling: false, init_type: \"rebuild\", inserted_at: ~N[2020-12-04 16:10:19.7843"},{"event":"cmd_output","timestamp":1607098219,"output":"44], pipeline_requests: #Ecto.Association.NotLoaded, p"},{"event":"cmd_output","timestamp":1607098219,"output":"pl_id: \"a8e827ce-5f3b-4e80-b940-df542b6c54ab\", recovery_count: 0, result: nil, result_reason: nil, s"},{"event":"cmd_output","timestamp":1607098219,"output":"tate: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:1"},{"event":"cmd_output","timestamp":1607098219,"output":"0:19.784357]}\n\u001b[0m\u001b[22m\n16:10:19.827 [info] ppl_id: a8e827ce-5f3b-4e80-b940-df542b6c54ab, type: P"},{"event":"cmd_output","timestamp":1607098219,"output":"plRequests, event: persisted source_args for pipeline: a8e827ce-5f3b-4e80-b940-df542b6c54ab, origin:"},{"event":"cmd_output","timestamp":1607098219,"output":" Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:19.831 [in"},{"event":"cmd_output","timestamp":1607098219,"output":"fo] ppl_id: a8e827ce-5f3b-4e80-b940-df542b6c54ab, type: PplSubInits, state: fetching, event: exit_s"},{"event":"cmd_output","timestamp":1607098219,"output":"cheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098219,"output":"6:10:19.836 [info] Request: 'run: %{\"auto_promoted\" => false, \"branch_id\" => \"bdce0663-1c92-4344-81"},{"event":"cmd_output","timestamp":1607098219,"output":"a5-7b176cb05e4b\", \"branch_name\" => \"master\", \"client_id\" => \"eaeff548-cc76-43c0-985c-0c249e718667\", "},{"event":"cmd_output","timestamp":1607098219,"output":"\"commit_sha\" => \"75891a4469\", \"definition_file\" => \"\", \"env_vars\" => [], \"extension_of\" => \"2ce0d223"},{"event":"cmd_output","timestamp":1607098219,"output":"-2beb-4803-9a5e-58ed77a721ea\", \"file_name\" => \"/foo/bar/test.yml\", \"hook_id\" => \"327b3590-364b-11eb-"},{"event":"cmd_output","timestamp":1607098219,"output":"810a-5254005464e2\", \"label\" => \"master\", \"organization_id\" => \"fcd76cdb-c637-42a9-a488-93114297b9f9\""},{"event":"cmd_output","timestamp":1607098219,"output":", \"owner\" => \"rt\", \"partially_rerun_by\" => \"\", \"prev_ppl_artefact_ids\" => [\"8299454d-872f-438a-b91b-"},{"event":"cmd_output","timestamp":1607098219,"output":"76a3fe043c83\", \"123e6edd-07d1-469a-b899-8a123499bf03\"], \"project_id\" => \"d4609f23-a69e-4134-abf0-6ac"},{"event":"cmd_output","timestamp":1607098219,"output":"a734a1536\", \"promoter_id\" => \"\", \"repo_name\" => \"20_workflow_builder\", \"request_token\" => \"fae0744b-"},{"event":"cmd_output","timestamp":1607098219,"output":"cafc-464d-8ffc-5fd0238bb797\", \"requester_id\" => \"0bb5c580-6586-417c-8957-a2695f509d39\", \"service\" =>"},{"event":"cmd_output","timestamp":1607098219,"output":" \"local\", \"snapshot_id\" => \"\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"trigge"},{"event":"cmd_output","timestamp":1607098219,"output":"red_by\" => \"hook\", \"wf_id\" => \"a8344254-b96d-41b3-b239-5a234156ea28\", \"wf_number\" => 1, \"working_dir"},{"event":"cmd_output","timestamp":1607098219,"output":"\" => \"/foo/bar\"}\n\u001b[0m\u001b[22m\n16:10:19.839 [info] ppl_id: 5b2e6fd9-e7ce-40ae-a842-ed116add183e, type"},{"event":"cmd_output","timestamp":1607098219,"output":": PplRequests, event: persisted schedule request with request_token: fae0744b-cafc-464d-8ffc-5fd0238"},{"event":"cmd_output","timestamp":1607098219,"output":"bb797, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098219,"output":"\n16:10:19.842 [info] ppl_id: 5b2e6fd9-e7ce-40ae-a842-ed116add183e, type: Ppls, state: initializing,"},{"event":"cmd_output","timestamp":1607098219,"output":" event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/"},{"event":"cmd_output","timestamp":1607098219,"output":"2(L124), \n\u001b[0m\u001b[22m\n16:10:19.846 [info] Persisted ppl_sub_init for pipeline with ppl_id: 5b2e6fd9"},{"event":"cmd_output","timestamp":1607098219,"output":"-e7ce-40ae-a842-ed116add183e: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:lo"},{"event":"cmd_output","timestamp":1607098219,"output":"aded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 28, in_scheduling: fa"},{"event":"cmd_output","timestamp":1607098219,"output":"lse, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:10:19.844277], pipeline_requests: #Ecto.Ass"},{"event":"cmd_output","timestamp":1607098219,"output":"ociation.NotLoaded, ppl_id: \"5b2e6fd9-e7ce-40ae-a842-e"},{"event":"cmd_output","timestamp":1607098219,"output":"d116add183e\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_reques"},{"event":"cmd_output","timestamp":1607098219,"output":"t: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:19.844288]}\n\u001b[0m\u001b[22m\n16:10:1"},{"event":"cmd_output","timestamp":1607098219,"output":"9.867 [info] ppl_id: a8e827ce-5f3b-4e80-b940-df542b6c54ab, type: PplSubInits, state: regular_init, "},{"event":"cmd_output","timestamp":1607098219,"output":"event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \r"},{"event":"cmd_output","timestamp":1607098219,"output":"\n\u001b[0m\u001b[22m\n16:10:19.867 [info] ppl_id: 5b2e6fd9-e7ce-40ae-a842-ed116add183e, type: PplRequests, ev"},{"event":"cmd_output","timestamp":1607098219,"output":"ent: persisted source_args for pipeline: 5b2e6fd9-e7ce-40ae-a842-ed116add183e, origin: Elixir.Ppl.Pp"},{"event":"cmd_output","timestamp":1607098219,"output":"lRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:19.872 [info] ppl_id: 5"},{"event":"cmd_output","timestamp":1607098219,"output":"b2e6fd9-e7ce-40ae-a842-ed116add183e, type: PplSubInits, state: fetching, event: exit_scheduling, rec"},{"event":"cmd_output","timestamp":1607098219,"output":"overy_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test gRPC ge"},{"event":"cmd_output","timestamp":1607098219,"output":"t_path() - works for all combinations of request params (3774.4ms)\u001b[0m\n * test gRPC list() - filte"},{"event":"cmd_output","timestamp":1607098220,"output":"r by label and git_ref_types\u001b[22m\n16:10:20.102 [info] Request: 'run: %{\"branch_id\" => \"eb652664-96"},{"event":"cmd_output","timestamp":1607098220,"output":"1e-4520-b5fa-213f4ec3931e\", \"branch_name\" => \"to_list\", \"client_id\" => \"0b119bd7-8c30-4b95-a555-4ced"},{"event":"cmd_output","timestamp":1607098220,"output":"4b5e9d24\", \"commit_sha\" => \"sha0\", \"definition_file\" => \"\", \"hook_id\" => \"34c8d302-364b-11eb-b58c-52"},{"event":"cmd_output","timestamp":1607098220,"output":"54005464e2\", \"label\" => \"to_list\", \"organization_id\" => \"org1\", \"owner\" => \"rt\", \"project_id\" => \"li"},{"event":"cmd_output","timestamp":1607098220,"output":"st_project\", \"repo_name\" => \"2_basic\", \"request_token\" => \"34c8c4f2-364b-11eb-a929-5254005464e2\", \"r"},{"event":"cmd_output","timestamp":1607098220,"output":"equester_id\" => \"f85008d7-0acb-4086-8ef4-4d575758a530\", \"service\" => \"local\", \"snapshot_id\" => \"\", \""},{"event":"cmd_output","timestamp":1607098220,"output":"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"9"},{"event":"cmd_output","timestamp":1607098220,"output":"e31dd04-98cf-4736-89a0-fa0995e7d7f2\"}\n\u001b[0m\u001b[22m\n16:10:20.152 [info] ppl_id: 13153ca3-89ed-4895-b2"},{"event":"cmd_output","timestamp":1607098220,"output":"b3-3c33eedee019, type: PplRequests, event: persisted schedule request with request_token: 34c8c4f2-3"},{"event":"cmd_output","timestamp":1607098220,"output":"64b-11eb-a929-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response"},{"event":"cmd_output","timestamp":1607098220,"output":"/2(L55), \n\u001b[0m\u001b[22m\n16:10:20.157 [info] ppl_id: 13153ca3-89ed-4895-b2b3-3c33eedee019, type: Ppls,"},{"event":"cmd_output","timestamp":1607098220,"output":" state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQuer"},{"event":"cmd_output","timestamp":1607098220,"output":"ies.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:20.164 [info] Project list_project and branch to_l"},{"event":"cmd_output","timestamp":1607098220,"output":"istlatest_wf details updated: \"wf_id: 9e31dd04-98cf-4736-89a0-fa0995e7d7f2, wf_number: 1\"\n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098220,"output":"\n16:10:20.167 [info] Persisted ppl_sub_init for pipeline with ppl_id: 13153ca3-89ed-4895-b2b3-3c33"},{"event":"cmd_output","timestamp":1607098220,"output":"eedee019: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_"},{"event":"cmd_output","timestamp":1607098220,"output":"inits\">, compile_task_id: nil, error_description: nil, id: 29, in_scheduling: false, init_type: \"reg"},{"event":"cmd_output","timestamp":1607098220,"output":"ular\", inserted_at: ~N[2020-12-04 16:10:20.164689], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"13153ca3-89ed-4895-b2b3-3c33eedee019\", recove"},{"event":"cmd_output","timestamp":1607098220,"output":"ry_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_re"},{"event":"cmd_output","timestamp":1607098220,"output":"quest_desc: nil, updated_at: ~N[2020-12-04 16:10:20.164699]}\n\u001b[0m\u001b[22m\n16:10:20.191 [info] Reques"},{"event":"cmd_output","timestamp":1607098220,"output":"t: 'run: %{\"branch_id\" => \"3f607fb4-8f2a-45e3-98c8-820045dc34fb\", \"branch_name\" => \"refs/tag/v1.0\", "},{"event":"cmd_output","timestamp":1607098220,"output":"\"client_id\" => \"00eb2cd5-7ba8-4902-9e12-4949bcf14d67\", \"commit_sha\" => \"sha0\", \"definition_file\" => "},{"event":"cmd_output","timestamp":1607098220,"output":"\"\", \"hook_id\" => \"tag\", \"label\" => \"v1.0\", \"organization_id\" => \"org1\", \"owner\" => \"rt\", \"project_id"},{"event":"cmd_output","timestamp":1607098220,"output":"\" => \"list_project\", \"repo_name\" => \"2_basic\", \"request_token\" => \"34d4f394-364b-11eb-84f0-525400546"},{"event":"cmd_output","timestamp":1607098220,"output":"4e2\", \"requester_id\" => \"ecb93f84-bcc6-429e-bdb0-06980a9d274e\", \"service\" => \"local\", \"snapshot_id\" "},{"event":"cmd_output","timestamp":1607098220,"output":"=> \"\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"triggered_by\" => \"hook\", \"wf_i"},{"event":"cmd_output","timestamp":1607098220,"output":"d\" => \"298bab75-d2ba-4d91-b2e7-c809306c1421\"}\n\u001b[0m\u001b[22m\n16:10:20.233 [info] ppl_id: 0d6b1690-3999"},{"event":"cmd_output","timestamp":1607098220,"output":"-46f3-bb6a-eeae8f1f0767, type: PplRequests, event: persisted schedule request with request_token: 34"},{"event":"cmd_output","timestamp":1607098220,"output":"d4f394-364b-11eb-84f0-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_"},{"event":"cmd_output","timestamp":1607098220,"output":"response/2(L55), \n\u001b[0m\u001b[22m\n16:10:20.237 [info] ppl_id: 0d6b1690-3999-46f3-bb6a-eeae8f1f0767, typ"},{"event":"cmd_output","timestamp":1607098220,"output":"e: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model."},{"event":"cmd_output","timestamp":1607098220,"output":"PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:20.246 [info] Project list_project and bra"},{"event":"cmd_output","timestamp":1607098220,"output":"nch refs/tag/v1.0latest_wf details updated: \"wf_id: 298bab75-d2ba-4d91-b2e7-c809306c1421, wf_number:"},{"event":"cmd_output","timestamp":1607098220,"output":" 1\"\n\u001b[0m\u001b[22m\n16:10:20.248 [info] Persisted ppl_sub_init for pipeline with ppl_id: 0d6b1690-3999-"},{"event":"cmd_output","timestamp":1607098220,"output":"46f3-bb6a-eeae8f1f0767: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, "},{"event":"cmd_output","timestamp":1607098220,"output":"\"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 30, in_scheduling: false, i"},{"event":"cmd_output","timestamp":1607098220,"output":"nit_type: \"regular\", inserted_at: ~N[2020-12-04 16:10:20.247109], pipeline_requests: #Ecto.Associati"},{"event":"cmd_output","timestamp":1607098220,"output":"on.NotLoaded, ppl_id: \"0d6b1690-3999-46f3-bb6a-eeae8f1"},{"event":"cmd_output","timestamp":1607098220,"output":"f0767\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil"},{"event":"cmd_output","timestamp":1607098220,"output":", terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:20.247118]}\n\u001b[0m\u001b[22m\n16:10:20.258 "},{"event":"cmd_output","timestamp":1607098220,"output":"[info] Request: 'run: %{\"branch_id\" => \"453df03a-bddb-499b-af13-29298c7a2a8c\", \"branch_name\" => \"pu"},{"event":"cmd_output","timestamp":1607098220,"output":"ll-request-123\", \"client_id\" => \"d6a7defd-5716-4cf7-97b2-cfa553085309\", \"commit_sha\" => \"sha0\", \"def"},{"event":"cmd_output","timestamp":1607098220,"output":"inition_file\" => \"\", \"hook_id\" => \"pr\", \"label\" => \"123\", \"organization_id\" => \"org1\", \"owner\" => \"r"},{"event":"cmd_output","timestamp":1607098220,"output":"t\", \"project_id\" => \"list_project\", \"repo_name\" => \"2_basic\", \"request_token\" => \"34e0f4e6-364b-11eb"},{"event":"cmd_output","timestamp":1607098220,"output":"-a328-5254005464e2\", \"requester_id\" => \"f31c946b-da80-4ce7-986b-0f4fc5808713\", \"service\" => \"local\","},{"event":"cmd_output","timestamp":1607098220,"output":" \"snapshot_id\" => \"\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"triggered_by\" ="},{"event":"cmd_output","timestamp":1607098220,"output":"> \"hook\", \"wf_id\" => \"2faeb009-5646-4f6f-8363-d8bc735b6b37\"}\n\u001b[0m\u001b[22m\n16:10:20.299 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098220,"output":": d85a8d6c-636f-403c-94dd-7334ef1f3a97, type: PplRequests, event: persisted schedule request with re"},{"event":"cmd_output","timestamp":1607098220,"output":"quest_token: 34e0f4e6-364b-11eb-a328-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQ"},{"event":"cmd_output","timestamp":1607098220,"output":"ueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:20.303 [info] ppl_id: d85a8d6c-636f-403c-94dd-73"},{"event":"cmd_output","timestamp":1607098220,"output":"34ef1f3a97, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098220,"output":"Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:20.311 [info] Project list_"},{"event":"cmd_output","timestamp":1607098220,"output":"project and pr 123latest_wf details updated: \"wf_id: 2faeb009-5646-4f6f-8363-d8bc735b6b37, wf_number"},{"event":"cmd_output","timestamp":1607098220,"output":": 1\"\n\u001b[0m\u001b[22m\n16:10:20.313 [info] Persisted ppl_sub_init for pipeline with ppl_id: d85a8d6c-636f"},{"event":"cmd_output","timestamp":1607098220,"output":"-403c-94dd-7334ef1f3a97: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded,"},{"event":"cmd_output","timestamp":1607098220,"output":" \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 31, in_scheduling: false, "},{"event":"cmd_output","timestamp":1607098220,"output":"init_type: \"regular\", inserted_at: ~N[2020-12-04 16:10:20.312074], pipeline_requests: #Ecto.Associat"},{"event":"cmd_output","timestamp":1607098220,"output":"ion.NotLoaded, ppl_id: \"d85a8d6c-636f-403c-94dd-7334ef"},{"event":"cmd_output","timestamp":1607098220,"output":"1f3a97\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: ni"},{"event":"cmd_output","timestamp":1607098220,"output":"l, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:20.312086]}\n\u001b[0m\u001b[22m\n16:10:20.317"},{"event":"cmd_output","timestamp":1607098220,"output":" [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls"},{"event":"cmd_output","timestamp":1607098220,"output":".STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-ST"},{"event":"cmd_output","timestamp":1607098220,"output":"MHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"pending\", \"done\"]"},{"event":"cmd_output","timestamp":1607098220,"output":", cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher"},{"event":"cmd_output","timestamp":1607098220,"output":"_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, r"},{"event":"cmd_output","timestamp":1607098220,"output":"eturning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema:"},{"event":"cmd_output","timestamp":1607098220,"output":" Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:20.317 [info] Periodic from module "},{"event":"cmd_output","timestamp":1607098220,"output":"Elixir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler.PendingState :: period:"},{"event":"cmd_output","timestamp":1607098220,"output":" 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args"},{"event":"cmd_output","timestamp":1607098220,"output":": %{allowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: P"},{"event":"cmd_output","timestamp":1607098220,"output":"pl.Ppls.Model.Ppls, observed_state: \"pending\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHa"},{"event":"cmd_output","timestamp":1607098220,"output":"ndler.PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :s"},{"event":"cmd_output","timestamp":1607098220,"output":"tate, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupe"},{"event":"cmd_output","timestamp":1607098220,"output":"rvisor}\n\u001b[0m\u001b[22m\n16:10:20.318 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.QueuingStat"},{"event":"cmd_output","timestamp":1607098220,"output":"e with name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, metric_name: {\"Ppl.beholder-w"},{"event":"cmd_output","timestamp":1607098220,"output":"ake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{allowed_states: [\"queuing\", \"runni"},{"event":"cmd_output","timestamp":1607098220,"output":"ng\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", p"},{"event":"cmd_output","timestamp":1607098220,"output":"ublisher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo"},{"event":"cmd_output","timestamp":1607098220,"output":", returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], sche"},{"event":"cmd_output","timestamp":1607098220,"output":"ma: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:20.318 [info] Periodic from modu"},{"event":"cmd_output","timestamp":1607098220,"output":"le Elixir.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHandler.RunningState :: peri"},{"event":"cmd_output","timestamp":1607098220,"output":"od: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring a"},{"event":"cmd_output","timestamp":1607098220,"output":"rgs: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098220,"output":"s.Model.Ppls, observed_state: \"running\", publisher_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler"},{"event":"cmd_output","timestamp":1607098220,"output":".RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state,"},{"event":"cmd_output","timestamp":1607098220,"output":" :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSuperviso"},{"event":"cmd_output","timestamp":1607098220,"output":"r}\n\u001b[0m\u001b[22m\n16:10:20.319 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.StoppingState wi"},{"event":"cmd_output","timestamp":1607098220,"output":"th name Elixir.Ppl.Ppls.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake"},{"event":"cmd_output","timestamp":1607098220,"output":"_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"]"},{"event":"cmd_output","timestamp":1607098220,"output":", cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"stopping\", publisher_cb"},{"event":"cmd_output","timestamp":1607098220,"output":": #Function<0.71803493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning"},{"event":"cmd_output","timestamp":1607098220,"output":": [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098220,"output":"s.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:20.319 [info] Periodic from module Elixir.P"},{"event":"cmd_output","timestamp":1607098220,"output":"pl.PplSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: p"},{"event":"cmd_output","timestamp":1607098220,"output":"eriod: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, r"},{"event":"cmd_output","timestamp":1607098220,"output":"ecurring args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSu"},{"event":"cmd_output","timestamp":1607098220,"output":"bInits.Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, return"},{"event":"cmd_output","timestamp":1607098220,"output":"ing: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl."},{"event":"cmd_output","timestamp":1607098220,"output":"PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:20.319 [info] Periodic fro"},{"event":"cmd_output","timestamp":1607098220,"output":"m module Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler"},{"event":"cmd_output","timestamp":1607098220,"output":".FetchingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler"},{"event":"cmd_output","timestamp":1607098220,"output":"-FetchingState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"done\"], coolin"},{"event":"cmd_output","timestamp":1607098220,"output":"g_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fetching\", publis"},{"event":"cmd_output","timestamp":1607098220,"output":"her_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result"},{"event":"cmd_output","timestamp":1607098220,"output":", :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0"},{"event":"cmd_output","timestamp":1607098220,"output":"m\u001b[22m\n16:10:20.320 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CompilationState"},{"event":"cmd_output","timestamp":1607098220,"output":" with name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 100 ms, metric_name: {\"Ppl."},{"event":"cmd_output","timestamp":1607098220,"output":"beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurring args: %{allowed_state"},{"event":"cmd_output","timestamp":1607098220,"output":"s: [\"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098220,"output":"SubInits.Model.PplSubInits, observed_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, "},{"event":"cmd_output","timestamp":1607098220,"output":"returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema"},{"event":"cmd_output","timestamp":1607098220,"output":": Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:20.320 [info] Period"},{"event":"cmd_output","timestamp":1607098220,"output":"ic from module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.S"},{"event":"cmd_output","timestamp":1607098220,"output":"TMHandler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInit"},{"event":"cmd_output","timestamp":1607098220,"output":"s-STMHandler-RegularInitState\"]}, recurring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, i"},{"event":"cmd_output","timestamp":1607098220,"output":"nitial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_init\", publisher_cb: :skip"},{"event":"cmd_output","timestamp":1607098220,"output":", repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_c"},{"event":"cmd_output","timestamp":1607098220,"output":"ount, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10"},{"event":"cmd_output","timestamp":1607098220,"output":":20.320 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.InitializingState with name Eli"},{"event":"cmd_output","timestamp":1607098220,"output":"xir.Ppl.PplBlocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_u"},{"event":"cmd_output","timestamp":1607098220,"output":"p\", [\"Ppl-PplBlocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializin"},{"event":"cmd_output","timestamp":1607098220,"output":"g\", \"waiting\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_"},{"event":"cmd_output","timestamp":1607098220,"output":"state: \"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request,"},{"event":"cmd_output","timestamp":1607098220,"output":" :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model."},{"event":"cmd_output","timestamp":1607098220,"output":"PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:20.321 [info] Periodic from module Elixir.Ppl."},{"event":"cmd_output","timestamp":1607098220,"output":"PplBlocks.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler.WaitingState :: period: "},{"event":"cmd_output","timestamp":1607098220,"output":"1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurring"},{"event":"cmd_output","timestamp":1607098220,"output":" args: %{allowed_states: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098220,"output":"Blocks.Model.PplBlocks, observed_state: \"waiting\", publisher_cb: #Function<0.8975022/1 in Ppl.PplBlo"},{"event":"cmd_output","timestamp":1607098220,"output":"cks.STMHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updat"},{"event":"cmd_output","timestamp":1607098220,"output":"ed_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBloc"},{"event":"cmd_output","timestamp":1607098220,"output":"ks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:20.321 [info] Periodic from module Elixir.Ppl.PplBloc"},{"event":"cmd_output","timestamp":1607098220,"output":"ks.STMHandler.RunningState with name Elixir.Ppl.PplBlocks.STMHandler.RunningState :: period: 1000 ms"},{"event":"cmd_output","timestamp":1607098220,"output":", metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, recurring args: "},{"event":"cmd_output","timestamp":1607098220,"output":"%{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlock"},{"event":"cmd_output","timestamp":1607098220,"output":"s.Model.PplBlocks, observed_state: \"running\", publisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks."},{"event":"cmd_output","timestamp":1607098220,"output":"STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_a"},{"event":"cmd_output","timestamp":1607098220,"output":"t, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model."},{"event":"cmd_output","timestamp":1607098220,"output":"PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:20.321 [info] Periodic from module Elixir.Ppl."},{"event":"cmd_output","timestamp":1607098220,"output":"PplBlocks.STMHandler.StoppingState with name Elixir.Ppl.PplBlocks.STMHandler.StoppingState :: period"},{"event":"cmd_output","timestamp":1607098220,"output":": 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurr"},{"event":"cmd_output","timestamp":1607098220,"output":"ing args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks"},{"event":"cmd_output","timestamp":1607098220,"output":".Model.PplBlocks, observed_state: \"stopping\", publisher_cb: #Function<0.104215991/1 in Ppl.PplBlocks"},{"event":"cmd_output","timestamp":1607098220,"output":".STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated"},{"event":"cmd_output","timestamp":1607098220,"output":"_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Mode"},{"event":"cmd_output","timestamp":1607098220,"output":"l.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:20.322 [info] Periodic from module Elixir.Bl"},{"event":"cmd_output","timestamp":1607098220,"output":"ock.Blocks.STMHandler.InitializingState with name Elixir.Block.Blocks.STMHandler.InitializingState :"},{"event":"cmd_output","timestamp":1607098220,"output":": period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-InitializingState\""},{"event":"cmd_output","timestamp":1607098220,"output":"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block"},{"event":"cmd_output","timestamp":1607098220,"output":".Blocks.Model.Blocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Block.EctoRepo, ret"},{"event":"cmd_output","timestamp":1607098220,"output":"urning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Bl"},{"event":"cmd_output","timestamp":1607098220,"output":"ocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:20.322 [info] Periodic from module Eli"},{"event":"cmd_output","timestamp":1607098220,"output":"xir.Block.Blocks.STMHandler.RunningState with name Elixir.Block.Blocks.STMHandler.RunningState :: pe"},{"event":"cmd_output","timestamp":1607098220,"output":"riod: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-RunningState\"]}, recur"},{"event":"cmd_output","timestamp":1607098220,"output":"ring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: B"},{"event":"cmd_output","timestamp":1607098220,"output":"lock.Blocks.Model.Blocks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, retu"},{"event":"cmd_output","timestamp":1607098220,"output":"rning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blo"},{"event":"cmd_output","timestamp":1607098220,"output":"cks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:20.322 [info] Periodic from module Elix"},{"event":"cmd_output","timestamp":1607098220,"output":"ir.Block.Blocks.STMHandler.StoppingState with name Elixir.Block.Blocks.STMHandler.StoppingState :: p"},{"event":"cmd_output","timestamp":1607098220,"output":"eriod: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-StoppingState\"]}, rec"},{"event":"cmd_output","timestamp":1607098220,"output":"urring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Bloc"},{"event":"cmd_output","timestamp":1607098220,"output":"ks.Model.Blocks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: ["},{"event":"cmd_output","timestamp":1607098220,"output":":id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Mode"},{"event":"cmd_output","timestamp":1607098220,"output":"l.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:20.323 [info] Periodic from module Elixir.Block"},{"event":"cmd_output","timestamp":1607098220,"output":".Tasks.STMHandler.PendingState with name Elixir.Block.Tasks.STMHandler.PendingState :: period: 100 m"},{"event":"cmd_output","timestamp":1607098220,"output":"s, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingState\"]}, recurring args: %"},{"event":"cmd_output","timestamp":1607098220,"output":"{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Tasks.Model.Tasks, o"},{"event":"cmd_output","timestamp":1607098220,"output":"bserved_state: \"pending\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_req"},{"event":"cmd_output","timestamp":1607098220,"output":"uest, :updated_at, :state, :recovery_count, :block_id, :build_request_id], schema: Block.Tasks.Model"},{"event":"cmd_output","timestamp":1607098220,"output":".Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:20.323 [info] Periodic from module Elixir.Block.T"},{"event":"cmd_output","timestamp":1607098220,"output":"asks.STMHandler.RunningState with name Elixir.Block.Tasks.STMHandler.RunningState :: period: 100 ms,"},{"event":"cmd_output","timestamp":1607098220,"output":" metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningState\"]}, recurring args: %{a"},{"event":"cmd_output","timestamp":1607098220,"output":"llowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Mod"},{"event":"cmd_output","timestamp":1607098220,"output":"el.Tasks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :te"},{"event":"cmd_output","timestamp":1607098220,"output":"rminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, "},{"event":"cmd_output","timestamp":1607098220,"output":"task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:20.324 [info] Periodic from module Elixir.Block.Tasks.STM"},{"event":"cmd_output","timestamp":1607098220,"output":"Handler.StoppingState with name Elixir.Block.Tasks.STMHandler.StoppingState :: period: 100 ms, metri"},{"event":"cmd_output","timestamp":1607098220,"output":"c_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]}, recurring args: %{allowe"},{"event":"cmd_output","timestamp":1607098220,"output":"d_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observ"},{"event":"cmd_output","timestamp":1607098220,"output":"ed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request"},{"event":"cmd_output","timestamp":1607098220,"output":", :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor"},{"event":"cmd_output","timestamp":1607098220,"output":": :skip}\n\u001b[0m\u001b[22m\n16:10:20.437 [info] ppl_id: 13153ca3-89ed-4895-b2b3-3c33eedee019, type: PplReq"},{"event":"cmd_output","timestamp":1607098220,"output":"uests, event: persisted source_args for pipeline: 13153ca3-89ed-4895-b2b3-3c33eedee019, origin: Elix"},{"event":"cmd_output","timestamp":1607098220,"output":"ir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:20.440 [info] "},{"event":"cmd_output","timestamp":1607098220,"output":"ppl_id: 13153ca3-89ed-4895-b2b3-3c33eedee019, type: PplSubInits, state: fetching, event: exit_schedu"},{"event":"cmd_output","timestamp":1607098220,"output":"ling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:"},{"event":"cmd_output","timestamp":1607098220,"output":"20.475 [info] ppl_id: 13153ca3-89ed-4895-b2b3-3c33eedee019, type: PplSubInits, state: regular_init,"},{"event":"cmd_output","timestamp":1607098220,"output":" event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), "},{"event":"cmd_output","timestamp":1607098220,"output":"\n\u001b[0m\u001b[22m\n16:10:20.527 [info] ppl_id: 13153ca3-89ed-4895-b2b3-3c33eedee019, type: PplRequests, e"},{"event":"cmd_output","timestamp":1607098220,"output":"vent: persisted definition for request with request_token: 34c8c4f2-364b-11eb-a929-5254005464e2, ori"},{"event":"cmd_output","timestamp":1607098220,"output":"gin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:20"},{"event":"cmd_output","timestamp":1607098220,"output":".537 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded"},{"event":"cmd_output","timestamp":1607098220,"output":", \"queues\">, inserted_at: ~N[2020-12-04 16:10:20.530753], name: \"to_list-.semaphore/semaphore.yml\", "},{"event":"cmd_output","timestamp":1607098220,"output":"organization_id: \"org1\", project_id: \"list_project\", queue_id: \"0d8bccbf-62de-4fc7-bde7-7468432e506f"},{"event":"cmd_output","timestamp":1607098220,"output":"\", scope: \"project\", updated_at: ~N[2020-12-04 16:10:20.530765], user_generated: false}}\n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098220,"output":"\n16:10:20.550 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all"},{"event":"cmd_output","timestamp":1607098220,"output":"_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:20.550 [info] ppl_id: 13153ca3-89ed-4895-b2b3-3c33eedee019, type: "},{"event":"cmd_output","timestamp":1607098220,"output":"PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Pp"},{"event":"cmd_output","timestamp":1607098220,"output":"l.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:20.556 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098220,"output":" 13153ca3-89ed-4895-b2b3-3c33eedee019, type: PplSubInits, state: done, result: passed, event: exit_s"},{"event":"cmd_output","timestamp":1607098220,"output":"cheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098220,"output":"6:10:20.558 [info] ppl_id: 0d6b1690-3999-46f3-bb6a-eeae8f1f0767, type: PplRequests, event: persiste"},{"event":"cmd_output","timestamp":1607098220,"output":"d source_args for pipeline: 0d6b1690-3999-46f3-bb6a-eeae8f1f0767, origin: Elixir.Ppl.PplRequests.Mod"},{"event":"cmd_output","timestamp":1607098220,"output":"el.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:20.560 [info] ppl_id: 0d6b1690-3999-"},{"event":"cmd_output","timestamp":1607098220,"output":"46f3-bb6a-eeae8f1f0767, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: "},{"event":"cmd_output","timestamp":1607098220,"output":"0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:20.571 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098220,"output":" 13153ca3-89ed-4895-b2b3-3c33eedee019, type: Ppls, state: pending, event: exit_scheduling, recovery_"},{"event":"cmd_output","timestamp":1607098220,"output":"count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:20.576 [info] "},{"event":"cmd_output","timestamp":1607098220,"output":"ppl_id: 13153ca3-89ed-4895-b2b3-3c33eedee019, type: PplBlocks, block_index: 0, state: waiting, event"},{"event":"cmd_output","timestamp":1607098220,"output":": exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098220,"output":"\u001b[22m\n16:10:20.589 [info] ppl_id: 13153ca3-89ed-4895-b2b3-3c33eedee019, type: Ppls, state: queuing"},{"event":"cmd_output","timestamp":1607098220,"output":", event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90),"},{"event":"cmd_output","timestamp":1607098220,"output":" \n\u001b[0m\u001b[22m\n16:10:20.599 [info] ppl_id: 0d6b1690-3999-46f3-bb6a-eeae8f1f0767, type: PplSubInits, "},{"event":"cmd_output","timestamp":1607098220,"output":"state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_s"},{"event":"cmd_output","timestamp":1607098220,"output":"tate_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:20.604 [info] ppl_id: 13153ca3-89ed-4895-b2b3-3c33eedee019, "},{"event":"cmd_output","timestamp":1607098220,"output":"type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Imp"},{"event":"cmd_output","timestamp":1607098220,"output":"l.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:20.614 [info] PplBlocks WaitingState STM is schedulin"},{"event":"cmd_output","timestamp":1607098220,"output":"g block 0 from pipeline: \"13153ca3-89ed-4895-b2b3-3c33eedee019\"\n\u001b[0m\u001b[22m\n16:10:20.624 [info] blo"},{"event":"cmd_output","timestamp":1607098220,"output":"ck_id: f7127794-25a7-422c-8e7b-433c5b8b0143, type: BlockRequests, event: persisted block run request"},{"event":"cmd_output","timestamp":1607098220,"output":" from ppl 13153ca3-89ed-4895-b2b3-3c33eedee019 for block 0, origin: Elixir.Block.BlockRequests.Model"},{"event":"cmd_output","timestamp":1607098220,"output":".BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:20.629 [info] block_id: f7127794-"},{"event":"cmd_output","timestamp":1607098220,"output":"25a7-422c-8e7b-433c5b8b0143, type: Blocks, state: initializing, event: initializing, recovery_count:"},{"event":"cmd_output","timestamp":1607098220,"output":" 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:20.634 [info] "},{"event":"cmd_output","timestamp":1607098220,"output":" Block 0 of pipeline with id: 13153ca3-89ed-4895-b2b3-3c33eedee019 scheduled in block service with i"},{"event":"cmd_output","timestamp":1607098220,"output":"d: : \"f7127794-25a7-422c-8e7b-433c5b8b0143\"\n\u001b[0m\u001b[22m\n16:10:20.638 [info] ppl_id: 13153ca3-89ed-4"},{"event":"cmd_output","timestamp":1607098220,"output":"895-b2b3-3c33eedee019, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, reco"},{"event":"cmd_output","timestamp":1607098220,"output":"very_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:20.650 [in"},{"event":"cmd_output","timestamp":1607098220,"output":"fo] block_id: f7127794-25a7-422c-8e7b-433c5b8b0143, type: BlockRequests, event: persisted build and"},{"event":"cmd_output","timestamp":1607098220,"output":" sub_ppl details for block_request: f7127794-25a7-422c-8e7b-433c5b8b0143, origin: Elixir.Block.Block"},{"event":"cmd_output","timestamp":1607098220,"output":"Requests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:20.664 [info] block_id:"},{"event":"cmd_output","timestamp":1607098220,"output":" f7127794-25a7-422c-8e7b-433c5b8b0143, type: Tasks, state: pending, event: created, recovery_count: "},{"event":"cmd_output","timestamp":1607098220,"output":"0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:20.6"},{"event":"cmd_output","timestamp":1607098220,"output":"72 [info] block_id: f7127794-25a7-422c-8e7b-433c5b8b0143, type: Blocks, state: running, event: exit"},{"event":"cmd_output","timestamp":1607098220,"output":"_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098220,"output":"\n16:10:20.677 [info] ppl_id: 0d6b1690-3999-46f3-bb6a-eeae8f1f0767, type: PplRequests, event: persis"},{"event":"cmd_output","timestamp":1607098220,"output":"ted definition for request with request_token: 34d4f394-364b-11eb-84f0-5254005464e2, origin: Elixir."},{"event":"cmd_output","timestamp":1607098220,"output":"Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:20.682 [info] "},{"event":"cmd_output","timestamp":1607098220,"output":" Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">,"},{"event":"cmd_output","timestamp":1607098220,"output":" inserted_at: ~N[2020-12-04 16:10:20.680399], name: \"v1.0-.semaphore/semaphore.yml\", organization_id"},{"event":"cmd_output","timestamp":1607098220,"output":": \"org1\", project_id: \"list_project\", queue_id: \"1865e8f9-7295-4a1d-a7ad-92ae6c76d6cd\", scope: \"proj"},{"event":"cmd_output","timestamp":1607098220,"output":"ect\", updated_at: ~N[2020-12-04 16:10:20.680428], user_generated: false}}\n\u001b[0m\u001b[22m\n16:10:20.683 ["},{"event":"cmd_output","timestamp":1607098220,"output":"info] ppl_id: d85a8d6c-636f-403c-94dd-7334ef1f3a97, type: PplRequests, event: persisted source_args"},{"event":"cmd_output","timestamp":1607098220,"output":" for pipeline: d85a8d6c-636f-403c-94dd-7334ef1f3a97, origin: Elixir.Ppl.PplRequests.Model.PplRequest"},{"event":"cmd_output","timestamp":1607098220,"output":"sQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:20.690 [info] event: created, origin: Elixir.Ppl."},{"event":"cmd_output","timestamp":1607098220,"output":"PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:20.690 [info] ppl_id: 0"},{"event":"cmd_output","timestamp":1607098220,"output":"d6b1690-3999-46f3-bb6a-eeae8f1f0767, type: PplBlocks, block_index: 0, state: initializing, event: cr"},{"event":"cmd_output","timestamp":1607098220,"output":"eated, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105)"},{"event":"cmd_output","timestamp":1607098220,"output":", \n\u001b[0m\u001b[22m\n16:10:20.690 [info] ppl_id: d85a8d6c-636f-403c-94dd-7334ef1f3a97, type: PplSubInits,"},{"event":"cmd_output","timestamp":1607098220,"output":" state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_stat"},{"event":"cmd_output","timestamp":1607098220,"output":"e_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:20.694 [info] ppl_id: 0d6b1690-3999-46f3-bb6a-eeae8f1f0767, typ"},{"event":"cmd_output","timestamp":1607098220,"output":"e: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098220,"output":"ir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:20.709 [info] ppl_id: 0d6b1690-3999-"},{"event":"cmd_output","timestamp":1607098220,"output":"46f3-bb6a-eeae8f1f0767, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, rec"},{"event":"cmd_output","timestamp":1607098220,"output":"overy_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:20.711 [i"},{"event":"cmd_output","timestamp":1607098220,"output":"nfo] block_id: f7127794-25a7-422c-8e7b-433c5b8b0143, type: Tasks, state: running, event: exit_sched"},{"event":"cmd_output","timestamp":1607098220,"output":"uling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10"},{"event":"cmd_output","timestamp":1607098220,"output":":20.716 [info] ppl_id: 0d6b1690-3999-46f3-bb6a-eeae8f1f0767, type: Ppls, state: pending, event: exi"},{"event":"cmd_output","timestamp":1607098220,"output":"t_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098220,"output":"\n16:10:20.725 [info] ppl_id: 0d6b1690-3999-46f3-bb6a-eeae8f1f0767, type: Ppls, state: queuing, eve"},{"event":"cmd_output","timestamp":1607098220,"output":"nt: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b["},{"event":"cmd_output","timestamp":1607098220,"output":"0m\u001b[22m\n16:10:20.733 [info] ppl_id: 0d6b1690-3999-46f3-bb6a-eeae8f1f0767, type: Ppls, state: runni"},{"event":"cmd_output","timestamp":1607098220,"output":"ng, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90"},{"event":"cmd_output","timestamp":1607098220,"output":"), \n\u001b[0m\u001b[22m\n16:10:20.734 [info] ppl_id: d85a8d6c-636f-403c-94dd-7334ef1f3a97, type: PplSubInits"},{"event":"cmd_output","timestamp":1607098220,"output":", state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098220,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:20.741 [info] PplBlocks WaitingState STM is scheduling blo"},{"event":"cmd_output","timestamp":1607098220,"output":"ck 0 from pipeline: \"0d6b1690-3999-46f3-bb6a-eeae8f1f0767\"\n\u001b[0m\u001b[22m\n16:10:20.748 [info] block_id"},{"event":"cmd_output","timestamp":1607098220,"output":": 32c41d4b-0576-4e38-8c2a-5245da225ac8, type: BlockRequests, event: persisted block run request from"},{"event":"cmd_output","timestamp":1607098220,"output":" ppl 0d6b1690-3999-46f3-bb6a-eeae8f1f0767 for block 0, origin: Elixir.Block.BlockRequests.Model.Bloc"},{"event":"cmd_output","timestamp":1607098220,"output":"kRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:20.752 [info] block_id: 32c41d4b-0576-"},{"event":"cmd_output","timestamp":1607098220,"output":"4e38-8c2a-5245da225ac8, type: Blocks, state: initializing, event: initializing, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098220,"output":"rigin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:20.756 [info] Bloc"},{"event":"cmd_output","timestamp":1607098220,"output":"k 0 of pipeline with id: 0d6b1690-3999-46f3-bb6a-eeae8f1f0767 scheduled in block service with id: : "},{"event":"cmd_output","timestamp":1607098220,"output":"\"32c41d4b-0576-4e38-8c2a-5245da225ac8\"\n\u001b[0m\u001b[22m\n16:10:20.767 [info] ppl_id: 0d6b1690-3999-46f3-b"},{"event":"cmd_output","timestamp":1607098220,"output":"b6a-eeae8f1f0767, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_"},{"event":"cmd_output","timestamp":1607098220,"output":"count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:20.767 [info] "},{"event":"cmd_output","timestamp":1607098220,"output":"block_id: 32c41d4b-0576-4e38-8c2a-5245da225ac8, type: BlockRequests, event: persisted build and sub_"},{"event":"cmd_output","timestamp":1607098220,"output":"ppl details for block_request: 32c41d4b-0576-4e38-8c2a-5245da225ac8, origin: Elixir.Block.BlockReque"},{"event":"cmd_output","timestamp":1607098220,"output":"sts.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:20.772 [info] block_id: 32c4"},{"event":"cmd_output","timestamp":1607098220,"output":"1d4b-0576-4e38-8c2a-5245da225ac8, type: Tasks, state: pending, event: created, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098220,"output":"igin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:20.775 [i"},{"event":"cmd_output","timestamp":1607098220,"output":"nfo] block_id: f7127794-25a7-422c-8e7b-433c5b8b0143, type: Tasks, state: done, event: exit_scheduli"},{"event":"cmd_output","timestamp":1607098220,"output":"ng, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:20"},{"event":"cmd_output","timestamp":1607098220,"output":".775 [info] block_id: 32c41d4b-0576-4e38-8c2a-5245da225ac8, type: Blocks, state: running, event: ex"},{"event":"cmd_output","timestamp":1607098220,"output":"it_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098220,"output":"m\n16:10:20.784 [info] ppl_id: d85a8d6c-636f-403c-94dd-7334ef1f3a97, type: PplRequests, event: pers"},{"event":"cmd_output","timestamp":1607098220,"output":"isted definition for request with request_token: 34e0f4e6-364b-11eb-a328-5254005464e2, origin: Elixi"},{"event":"cmd_output","timestamp":1607098220,"output":"r.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:20.790 [info"},{"event":"cmd_output","timestamp":1607098220,"output":"] block_id: f7127794-25a7-422c-8e7b-433c5b8b0143, type: Blocks, state: done, event: exit_scheduling"},{"event":"cmd_output","timestamp":1607098220,"output":", recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:20.7"},{"event":"cmd_output","timestamp":1607098220,"output":"96 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, "},{"event":"cmd_output","timestamp":1607098220,"output":"\"queues\">, inserted_at: ~N[2020-12-04 16:10:20.787967], name: \"123-.semaphore/semaphore.yml\", organi"},{"event":"cmd_output","timestamp":1607098220,"output":"zation_id: \"org1\", project_id: \"list_project\", queue_id: \"2db00249-7479-4681-9948-15586dc8d3aa\", sco"},{"event":"cmd_output","timestamp":1607098220,"output":"pe: \"project\", updated_at: ~N[2020-12-04 16:10:20.787977], user_generated: false}}\n\u001b[0m\u001b[22m\n16:10"},{"event":"cmd_output","timestamp":1607098220,"output":":20.807 [info] block_id: 32c41d4b-0576-4e38-8c2a-5245da225ac8, type: Tasks, state: running, event: "},{"event":"cmd_output","timestamp":1607098220,"output":"exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098220,"output":"22m\n16:10:20.810 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState"},{"event":"cmd_output","timestamp":1607098220,"output":".all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:20.810 [info] ppl_id: d85a8d6c-636f-403c-94dd-7334ef1f3a97, ty"},{"event":"cmd_output","timestamp":1607098220,"output":"pe: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098220,"output":"r.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:20.813 [info] ppl"},{"event":"cmd_output","timestamp":1607098220,"output":"_id: d85a8d6c-636f-403c-94dd-7334ef1f3a97, type: PplSubInits, state: done, result: passed, event: ex"},{"event":"cmd_output","timestamp":1607098220,"output":"it_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098220,"output":"m\n16:10:20.813 [info] ppl_id: 13153ca3-89ed-4895-b2b3-3c33eedee019, block_id: f7127794-25a7-422c-8"},{"event":"cmd_output","timestamp":1607098220,"output":"e7b-433c5b8b0143, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduli"},{"event":"cmd_output","timestamp":1607098220,"output":"ng, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:20"},{"event":"cmd_output","timestamp":1607098220,"output":".823 [info] ppl_id: d85a8d6c-636f-403c-94dd-7334ef1f3a97, type: PplBlocks, block_index: 0, state: w"},{"event":"cmd_output","timestamp":1607098220,"output":"aiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1"},{"event":"cmd_output","timestamp":1607098220,"output":"(L90), \n\u001b[0m\u001b[22m\n16:10:20.828 [info] ppl_id: d85a8d6c-636f-403c-94dd-7334ef1f3a97, type: Ppls, s"},{"event":"cmd_output","timestamp":1607098220,"output":"tate: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098220,"output":"hange/1(L90), \n\u001b[0m\u001b[22m\n16:10:20.837 [info] ppl_id: 13153ca3-89ed-4895-b2b3-3c33eedee019, type: "},{"event":"cmd_output","timestamp":1607098220,"output":"Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper."},{"event":"cmd_output","timestamp":1607098220,"output":"STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:20.838 [info] ppl_id: d85a8d6c-636f-403c-94dd-"},{"event":"cmd_output","timestamp":1607098220,"output":"7334ef1f3a97, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098220,"output":"Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:20.849 [info] ppl_id: d85a8d6c-636f-403"},{"event":"cmd_output","timestamp":1607098220,"output":"c-94dd-7334ef1f3a97, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098220,"output":"Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:20.857 [info] PplBlocks WaitingS"},{"event":"cmd_output","timestamp":1607098220,"output":"tate STM is scheduling block 0 from pipeline: \"d85a8d6c-636f-403c-94dd-7334ef1f3a97\"\n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098220,"output":"10:20.870 [info] block_id: 2085d7ed-b7d3-44f4-9c9c-5aee9808e320, type: BlockRequests, event: persis"},{"event":"cmd_output","timestamp":1607098220,"output":"ted block run request from ppl d85a8d6c-636f-403c-94dd-7334ef1f3a97 for block 0, origin: Elixir.Bloc"},{"event":"cmd_output","timestamp":1607098220,"output":"k.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:20.873 [info]"},{"event":"cmd_output","timestamp":1607098220,"output":" block_id: 2085d7ed-b7d3-44f4-9c9c-5aee9808e320, type: Blocks, state: initializing, event: initiali"},{"event":"cmd_output","timestamp":1607098220,"output":"zing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098220,"output":"\n16:10:20.875 [info] Block 0 of pipeline with id: d85a8d6c-636f-403c-94dd-7334ef1f3a97 scheduled in"},{"event":"cmd_output","timestamp":1607098220,"output":" block service with id: : \"2085d7ed-b7d3-44f4-9c9c-5aee9808e320\"\n\u001b[0m\u001b[22m\n16:10:20.883 [info] pp"},{"event":"cmd_output","timestamp":1607098220,"output":"l_id: d85a8d6c-636f-403c-94dd-7334ef1f3a97, type: PplBlocks, block_index: 0, state: running, event: "},{"event":"cmd_output","timestamp":1607098220,"output":"exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098220,"output":"22m\n16:10:20.892 [info] block_id: 2085d7ed-b7d3-44f4-9c9c-5aee9808e320, type: BlockRequests, event"},{"event":"cmd_output","timestamp":1607098220,"output":": persisted build and sub_ppl details for block_request: 2085d7ed-b7d3-44f4-9c9c-5aee9808e320, origi"},{"event":"cmd_output","timestamp":1607098220,"output":"n: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:20."},{"event":"cmd_output","timestamp":1607098220,"output":"893 [info] block_id: 32c41d4b-0576-4e38-8c2a-5245da225ac8, type: Tasks, state: done, event: exit_sc"},{"event":"cmd_output","timestamp":1607098220,"output":"heduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098220,"output":":10:20.896 [info] block_id: 2085d7ed-b7d3-44f4-9c9c-5aee9808e320, type: Tasks, state: pending, even"},{"event":"cmd_output","timestamp":1607098220,"output":"t: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L1"},{"event":"cmd_output","timestamp":1607098220,"output":"67), \n\u001b[0m\u001b[22m\n16:10:20.899 [info] block_id: 2085d7ed-b7d3-44f4-9c9c-5aee9808e320, type: Blocks,"},{"event":"cmd_output","timestamp":1607098220,"output":" state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state"},{"event":"cmd_output","timestamp":1607098220,"output":"_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:20.904 [info] block_id: 32c41d4b-0576-4e38-8c2a-5245da225ac8, ty"},{"event":"cmd_output","timestamp":1607098220,"output":"pe: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.l"},{"event":"cmd_output","timestamp":1607098220,"output":"og_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:20.925 [info] ppl_id: 0d6b1690-3999-46f3-bb6a-eeae8f1f07"},{"event":"cmd_output","timestamp":1607098220,"output":"67, block_id: 32c41d4b-0576-4e38-8c2a-5245da225ac8, type: PplBlocks, block_index: 0, state: done, re"},{"event":"cmd_output","timestamp":1607098220,"output":"sult: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_ch"},{"event":"cmd_output","timestamp":1607098220,"output":"ange/1(L90), \n\u001b[0m\u001b[22m\n16:10:20.937 [info] block_id: 2085d7ed-b7d3-44f4-9c9c-5aee9808e320, type:"},{"event":"cmd_output","timestamp":1607098220,"output":" Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.lo"},{"event":"cmd_output","timestamp":1607098220,"output":"g_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:20.952 [info] ppl_id: 0d6b1690-3999-46f3-bb6a-eeae8f1f076"},{"event":"cmd_output","timestamp":1607098220,"output":"7, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098221,"output":"r.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:21.014 [info] block_id: 2085d7ed-b7d3"},{"event":"cmd_output","timestamp":1607098221,"output":"-44f4-9c9c-5aee9808e320, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098221,"output":": Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:21.035 [info] block_id: 2085d7"},{"event":"cmd_output","timestamp":1607098221,"output":"ed-b7d3-44f4-9c9c-5aee9808e320, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0"},{"event":"cmd_output","timestamp":1607098221,"output":", origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:21.045 [info] ppl_id: "},{"event":"cmd_output","timestamp":1607098221,"output":"d85a8d6c-636f-403c-94dd-7334ef1f3a97, block_id: 2085d7ed-b7d3-44f4-9c9c-5aee9808e320, type: PplBlock"},{"event":"cmd_output","timestamp":1607098221,"output":"s, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: E"},{"event":"cmd_output","timestamp":1607098221,"output":"lixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:21.061 [info] ppl_id: d85a8d6c-63"},{"event":"cmd_output","timestamp":1607098221,"output":"6f-403c-94dd-7334ef1f3a97, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery"},{"event":"cmd_output","timestamp":1607098221,"output":"_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test gRPC list() "},{"event":"cmd_output","timestamp":1607098221,"output":"- filter by label and git_ref_types (1302.5ms)\u001b[0m\n * test gRPC list_grouped() - fails when projec"},{"event":"cmd_output","timestamp":1607098221,"output":"t_id is omitted\r * test gRPC list_grouped() - fails when project_id is omitted (skipped)\n * test "},{"event":"cmd_output","timestamp":1607098221,"output":"gRPC terminate() - fails when requester_id is empty \r * test gRPC terminate() - fails when requeste"},{"event":"cmd_output","timestamp":1607098221,"output":"r_id is empty (skipped)\n * test gRPC schedule() - full v1 specification\r * test gRPC schedule() "},{"event":"cmd_output","timestamp":1607098221,"output":"- full v1 specification (skipped)\n * test gRPC describe() - failes when there is no workflow with "},{"event":"cmd_output","timestamp":1607098221,"output":"given wf_id\r * test gRPC describe() - failes when there is no workflow with given wf_id (skipped)\n"},{"event":"cmd_output","timestamp":1607098221,"output":" * test gRPC list_keyset() - refuse request when there are to many unfinished ones\r * test gRPC li"},{"event":"cmd_output","timestamp":1607098221,"output":"st_keyset() - refuse request when there are to many unfinished ones (skipped)\n * test gRPC describ"},{"event":"cmd_output","timestamp":1607098221,"output":"e() - refuse request when there are to many unfinished ones\r * test gRPC describe() - refuse reques"},{"event":"cmd_output","timestamp":1607098221,"output":"t when there are to many unfinished ones (skipped)\n * test gRPC list_keyset() - failes when proje"},{"event":"cmd_output","timestamp":1607098221,"output":"ct_ids, project_id and organization_id is omitted\r * test gRPC list_keyset() - failes when project"},{"event":"cmd_output","timestamp":1607098221,"output":"_ids, project_id and organization_id is omitted (skipped)\n * test gRPC schedule() - limit exceeded"},{"event":"cmd_output","timestamp":1607098221,"output":"\u001b[22m\n16:10:21.308 [info] Request: 'run: %{\"branch_id\" => \"456\", \"branch_name\" => \"master\", \"clien"},{"event":"cmd_output","timestamp":1607098221,"output":"t_id\" => \"328c742132e5407abd7d\", \"commit_sha\" => \"5ab81e1541ba70f49b1f7af59a252ae64257f5d6\", \"defini"},{"event":"cmd_output","timestamp":1607098221,"output":"tion_file\" => \"\", \"hook_id\" => \"ac4425b8-8470-4e1b-8e23-6b2e0ba9736e\", \"label\" => \"\", \"organization_"},{"event":"cmd_output","timestamp":1607098221,"output":"id\" => \"cd8dc252-8aaa-40ad-8b71-d5a414b9b211\", \"owner\" => \"psr\", \"project_id\" => \"123\", \"repo_name\" "},{"event":"cmd_output","timestamp":1607098221,"output":"=> \"2_basic\", \"request_token\" => \"128b2253-21cc-474d-b008-ba90b3a0c55e\", \"requester_id\" => \"7487326d"},{"event":"cmd_output","timestamp":1607098221,"output":"-409e-46e0-b4d8-4ed61124906d\", \"service\" => \"local\", \"snapshot_id\" => \"\", \"suppressed_attributes\" =>"},{"event":"cmd_output","timestamp":1607098221,"output":" [\"access_token\", \"client_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"66cb70db-e64e-4c1e-9cbf-65"},{"event":"cmd_output","timestamp":1607098221,"output":"8e0caed327\"}\n\u001b[0m\u001b[22m\n16:10:21.350 [info] ppl_id: fc40af89-a0aa-45ca-bb3d-a48f509a3be6, type: Pp"},{"event":"cmd_output","timestamp":1607098221,"output":"lRequests, event: persisted schedule request with request_token: 128b2253-21cc-474d-b008-ba90b3a0c55"},{"event":"cmd_output","timestamp":1607098221,"output":"e, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098221,"output":"10:21.357 [info] ppl_id: fc40af89-a0aa-45ca-bb3d-a48f509a3be6, type: Ppls, state: initializing, eve"},{"event":"cmd_output","timestamp":1607098221,"output":"nt: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L1"},{"event":"cmd_output","timestamp":1607098221,"output":"24), \n\u001b[0m\u001b[22m\n16:10:21.366 [info] Project 123 and branch masterlatest_wf details updated: \"wf_i"},{"event":"cmd_output","timestamp":1607098221,"output":"d: 66cb70db-e64e-4c1e-9cbf-658e0caed327, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:10:21.369 [info] Persisted pp"},{"event":"cmd_output","timestamp":1607098221,"output":"l_sub_init for pipeline with ppl_id: fc40af89-a0aa-45ca-bb3d-a48f509a3be6: %Ppl.PplSubInits.Model.Pp"},{"event":"cmd_output","timestamp":1607098221,"output":"lSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, erro"},{"event":"cmd_output","timestamp":1607098221,"output":"r_description: nil, id: 32, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 1"},{"event":"cmd_output","timestamp":1607098221,"output":"6:10:21.367864], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"fc40af89-a0aa-45ca-bb3d-a48f509a3be6\", recovery_count: 0, result: nil, result_re"},{"event":"cmd_output","timestamp":1607098221,"output":"ason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[202"},{"event":"cmd_output","timestamp":1607098221,"output":"0-12-04 16:10:21.367877]}\n\u001b[0m\u001b[22m\n16:10:21.379 [info] Periodic from module Elixir.Ppl.Ppls.STMH"},{"event":"cmd_output","timestamp":1607098221,"output":"andler.InitializingState with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms, m"},{"event":"cmd_output","timestamp":1607098221,"output":"etric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %{a"},{"event":"cmd_output","timestamp":1607098221,"output":"llowed_states: [\"initializing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Mod"},{"event":"cmd_output","timestamp":1607098221,"output":"el.Ppls, observed_state: \"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandle"},{"event":"cmd_output","timestamp":1607098221,"output":"r.InitializingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :"},{"event":"cmd_output","timestamp":1607098221,"output":"state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0"},{"event":"cmd_output","timestamp":1607098221,"output":"m\u001b[22m\n16:10:21.381 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingState with name "},{"event":"cmd_output","timestamp":1607098221,"output":"Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"P"},{"event":"cmd_output","timestamp":1607098221,"output":"pl-Ppls-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"pending\", \"queuing\", \"runnin"},{"event":"cmd_output","timestamp":1607098221,"output":"g\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", pub"},{"event":"cmd_output","timestamp":1607098221,"output":"lisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, re"},{"event":"cmd_output","timestamp":1607098221,"output":"turning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: "},{"event":"cmd_output","timestamp":1607098221,"output":"Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:10:21.383 [info] Periodic "},{"event":"cmd_output","timestamp":1607098221,"output":"from module Elixir.Ppl.Ppls.STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandler.QueuingStat"},{"event":"cmd_output","timestamp":1607098221,"output":"e :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, re"},{"event":"cmd_output","timestamp":1607098221,"output":"curring args: %{allowed_states: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, initial_query:"},{"event":"cmd_output","timestamp":1607098221,"output":" Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.S"},{"event":"cmd_output","timestamp":1607098221,"output":"TMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at"},{"event":"cmd_output","timestamp":1607098221,"output":", :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n"},{"event":"cmd_output","timestamp":1607098221,"output":"\u001b[0m\u001b[22m\n16:10:21.384 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedState "},{"event":"cmd_output","timestamp":1607098221,"output":"with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.behol"},{"event":"cmd_output","timestamp":1607098221,"output":"der-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args: %{allowed_states: [\"fetc"},{"event":"cmd_output","timestamp":1607098221,"output":"hing\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_stat"},{"event":"cmd_output","timestamp":1607098221,"output":"e: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated"},{"event":"cmd_output","timestamp":1607098221,"output":"_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_sup"},{"event":"cmd_output","timestamp":1607098221,"output":"ervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:21.386 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHand"},{"event":"cmd_output","timestamp":1607098221,"output":"ler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 ms, metri"},{"event":"cmd_output","timestamp":1607098221,"output":"c_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %{al"},{"event":"cmd_output","timestamp":1607098221,"output":"lowed_states: [\"regular_init\", \"compilation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplS"},{"event":"cmd_output","timestamp":1607098221,"output":"ubInits.Model.PplSubInits, observed_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, retu"},{"event":"cmd_output","timestamp":1607098221,"output":"rning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Pp"},{"event":"cmd_output","timestamp":1607098221,"output":"l.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:21.386 [info] Periodic f"},{"event":"cmd_output","timestamp":1607098221,"output":"rom module Elixir.Ppl.PplSubInits.STMHandler.CompilationState with name Elixir.Ppl.PplSubInits.STMHa"},{"event":"cmd_output","timestamp":1607098221,"output":"ndler.CompilationState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-ST"},{"event":"cmd_output","timestamp":1607098221,"output":"MHandler-CompilationState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"sto"},{"event":"cmd_output","timestamp":1607098221,"output":"pping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_st"},{"event":"cmd_output","timestamp":1607098221,"output":"ate: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :u"},{"event":"cmd_output","timestamp":1607098221,"output":"pdated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, ta"},{"event":"cmd_output","timestamp":1607098221,"output":"sk_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:21.386 [info] Periodic from module Elixir.Ppl.PplSubInits.S"},{"event":"cmd_output","timestamp":1607098221,"output":"TMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period: 1"},{"event":"cmd_output","timestamp":1607098221,"output":"00 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recur"},{"event":"cmd_output","timestamp":1607098221,"output":"ring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.Ppl"},{"event":"cmd_output","timestamp":1607098221,"output":"SubInits, observed_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, "},{"event":"cmd_output","timestamp":1607098221,"output":":terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits"},{"event":"cmd_output","timestamp":1607098221,"output":".Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:21.499 [info] ppl_id: fc40af89-a0aa-4"},{"event":"cmd_output","timestamp":1607098221,"output":"5ca-bb3d-a48f509a3be6, type: PplRequests, event: persisted source_args for pipeline: fc40af89-a0aa-4"},{"event":"cmd_output","timestamp":1607098221,"output":"5ca-bb3d-a48f509a3be6, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89),"},{"event":"cmd_output","timestamp":1607098221,"output":" \n\u001b[0m\u001b[22m\n16:10:21.502 [info] ppl_id: fc40af89-a0aa-45ca-bb3d-a48f509a3be6, type: PplSubInits, "},{"event":"cmd_output","timestamp":1607098221,"output":"state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state"},{"event":"cmd_output","timestamp":1607098221,"output":"_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:21.527 [info] ppl_id: fc40af89-a0aa-45ca-bb3d-a48f509a3be6, type"},{"event":"cmd_output","timestamp":1607098221,"output":": PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper"},{"event":"cmd_output","timestamp":1607098221,"output":".STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:21.561 [info] ppl_id: fc40af89-a0aa-45ca-bb3d"},{"event":"cmd_output","timestamp":1607098221,"output":"-a48f509a3be6, type: PplRequests, event: persisted definition for request with request_token: 128b22"},{"event":"cmd_output","timestamp":1607098221,"output":"53-21cc-474d-b008-ba90b3a0c55e, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_defin"},{"event":"cmd_output","timestamp":1607098221,"output":"ition/3(L76), \n\u001b[0m\u001b[22m\n16:10:21.567 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__me"},{"event":"cmd_output","timestamp":1607098221,"output":"ta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:10:21.564641], name: \""},{"event":"cmd_output","timestamp":1607098221,"output":"-.semaphore/semaphore.yml\", organization_id: \"cd8dc252-8aaa-40ad-8b71-d5a414b9b211\", project_id: \"12"},{"event":"cmd_output","timestamp":1607098221,"output":"3\", queue_id: \"366ba127-f85c-4406-88b0-a4e03e0ffbc9\", scope: \"project\", updated_at: ~N[2020-12-04 16"},{"event":"cmd_output","timestamp":1607098221,"output":":10:21.564650], user_generated: false}}\n\u001b[0m\u001b[22m\n16:10:21.580 [info] event: created, origin: Eli"},{"event":"cmd_output","timestamp":1607098221,"output":"xir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:21.580 [info] p"},{"event":"cmd_output","timestamp":1607098221,"output":"pl_id: fc40af89-a0aa-45ca-bb3d-a48f509a3be6, type: PplBlocks, block_index: 0, state: initializing, e"},{"event":"cmd_output","timestamp":1607098221,"output":"vent: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?"},{"event":"cmd_output","timestamp":1607098221,"output":"/1(L105), \n\u001b[0m\u001b[22m\n16:10:21.584 [info] ppl_id: fc40af89-a0aa-45ca-bb3d-a48f509a3be6, type: PplS"},{"event":"cmd_output","timestamp":1607098221,"output":"ubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loop"},{"event":"cmd_output","timestamp":1607098221,"output":"er.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:21.596 [info] ppl_id: fc40af89-a0aa-45ca-bb"},{"event":"cmd_output","timestamp":1607098221,"output":"3d-a48f509a3be6, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098221,"output":"ir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:21.607 [info] ppl_id: fc40af89-a0aa-"},{"event":"cmd_output","timestamp":1607098221,"output":"45ca-bb3d-a48f509a3be6, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098221,"output":"n: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:21.625 [info] ppl_id: fc40af8"},{"event":"cmd_output","timestamp":1607098221,"output":"9-a0aa-45ca-bb3d-a48f509a3be6, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0"},{"event":"cmd_output","timestamp":1607098221,"output":", origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:21.713 [info] Request:"},{"event":"cmd_output","timestamp":1607098221,"output":" 'run: %{\"branch_id\" => \"456\", \"branch_name\" => \"master\", \"client_id\" => \"328c742132e5407abd7d\", \"co"},{"event":"cmd_output","timestamp":1607098221,"output":"mmit_sha\" => \"5ab81e1541ba70f49b1f7af59a252ae64257f5d6\", \"definition_file\" => \"\", \"hook_id\" => \"ac44"},{"event":"cmd_output","timestamp":1607098221,"output":"25b8-8470-4e1b-8e23-6b2e0ba9736e\", \"label\" => \"\", \"organization_id\" => \"91730f61-e50d-4bab-9be2-4e1b"},{"event":"cmd_output","timestamp":1607098221,"output":"c9834afe\", \"owner\" => \"psr\", \"project_id\" => \"123\", \"repo_name\" => \"2_basic\", \"request_token\" => \"3d"},{"event":"cmd_output","timestamp":1607098221,"output":"f16509-888f-4f9a-b01e-3913cac9dc9f\", \"requester_id\" => \"7487326d-409e-46e0-b4d8-4ed61124906d\", \"serv"},{"event":"cmd_output","timestamp":1607098221,"output":"ice\" => \"local\", \"snapshot_id\" => \"\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], "},{"event":"cmd_output","timestamp":1607098221,"output":"\"triggered_by\" => \"hook\", \"wf_id\" => \"f9d6c9a0-0a30-4f61-a9d9-3c14ba112d8d\"}\n\u001b[0m\u001b[22m\n16:10:21.76"},{"event":"cmd_output","timestamp":1607098221,"output":"2 [info] ppl_id: fb350475-4df4-4f56-9806-2656d3358c41, type: PplRequests, event: persisted schedule"},{"event":"cmd_output","timestamp":1607098221,"output":" request with request_token: 3df16509-888f-4f9a-b01e-3913cac9dc9f, origin: Elixir.Ppl.PplRequests.Mo"},{"event":"cmd_output","timestamp":1607098221,"output":"del.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:21.766 [info] ppl_id: fb350475-4"},{"event":"cmd_output","timestamp":1607098221,"output":"df4-4f56-9806-2656d3358c41, type: Ppls, state: initializing, event: initializing, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098221,"output":" origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:21.771 [info"},{"event":"cmd_output","timestamp":1607098221,"output":"] Project 123 and branch masterlatest_wf details updated: \"wf_id: f9d6c9a0-0a30-4f61-a9d9-3c14ba112"},{"event":"cmd_output","timestamp":1607098221,"output":"d8d, wf_number: 2\"\n\u001b[0m\u001b[22m\n16:10:21.773 [info] Persisted ppl_sub_init for pipeline with ppl_id:"},{"event":"cmd_output","timestamp":1607098221,"output":" fb350475-4df4-4f56-9806-2656d3358c41: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Met"},{"event":"cmd_output","timestamp":1607098221,"output":"adata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 33, in_sched"},{"event":"cmd_output","timestamp":1607098221,"output":"uling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:10:21.772488], pipeline_requests: "},{"event":"cmd_output","timestamp":1607098221,"output":"#Ecto.Association.NotLoaded, ppl_id: \"fb350475-4df4-4f"},{"event":"cmd_output","timestamp":1607098221,"output":"56-9806-2656d3358c41\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", termina"},{"event":"cmd_output","timestamp":1607098221,"output":"te_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:21.772502]}\n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098221,"output":"\n16:10:21.805 [info] ppl_id: fb350475-4df4-4f56-9806-2656d3358c41, type: PplRequests, event: persi"},{"event":"cmd_output","timestamp":1607098221,"output":"sted source_args for pipeline: fb350475-4df4-4f56-9806-2656d3358c41, origin: Elixir.Ppl.PplRequests."},{"event":"cmd_output","timestamp":1607098221,"output":"Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:21.809 [info] ppl_id: fb350475-4d"},{"event":"cmd_output","timestamp":1607098221,"output":"f4-4f56-9806-2656d3358c41, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_coun"},{"event":"cmd_output","timestamp":1607098221,"output":"t: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:21.843 [info] ppl_"},{"event":"cmd_output","timestamp":1607098221,"output":"id: fb350475-4df4-4f56-9806-2656d3358c41, type: PplSubInits, state: regular_init, event: exit_schedu"},{"event":"cmd_output","timestamp":1607098221,"output":"ling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:"},{"event":"cmd_output","timestamp":1607098221,"output":"21.874 [info] ppl_id: fb350475-4df4-4f56-9806-2656d3358c41, type: PplRequests, event: persisted def"},{"event":"cmd_output","timestamp":1607098221,"output":"inition for request with request_token: 3df16509-888f-4f9a-b01e-3913cac9dc9f, origin: Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098221,"output":"Requests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:21.894 [info] event:"},{"event":"cmd_output","timestamp":1607098221,"output":" created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098221,"output":"6:10:21.894 [info] ppl_id: fb350475-4df4-4f56-9806-2656d3358c41, type: PplBlocks, block_index: 0, s"},{"event":"cmd_output","timestamp":1607098221,"output":"tate: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.Reg"},{"event":"cmd_output","timestamp":1607098221,"output":"ularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:21.896 [info] ppl_id: fb350475-4df4-4f56-9806-265"},{"event":"cmd_output","timestamp":1607098221,"output":"6d3358c41, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0"},{"event":"cmd_output","timestamp":1607098221,"output":", origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:21.907 [info] ppl_id: "},{"event":"cmd_output","timestamp":1607098221,"output":"fb350475-4df4-4f56-9806-2656d3358c41, type: Ppls, state: pending, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098221,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:21.921 [info] p"},{"event":"cmd_output","timestamp":1607098221,"output":"pl_id: fb350475-4df4-4f56-9806-2656d3358c41, type: Ppls, state: queuing, event: exit_scheduling, rec"},{"event":"cmd_output","timestamp":1607098222,"output":"overy_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test gRPC sc"},{"event":"cmd_output","timestamp":1607098222,"output":"hedule() - limit exceeded (822.4ms)\u001b[0m\n * test gRPC reschedule() - fails when there is no workflo"},{"event":"cmd_output","timestamp":1607098222,"output":"w with given wf_id\r * test gRPC reschedule() - fails when there is no workflow with given wf_id (sk"},{"event":"cmd_output","timestamp":1607098222,"output":"ipped)\n * test gRPC reschedule() - succeeds and initial ppl passes\u001b[22m\n16:10:22.206 [info] Requ"},{"event":"cmd_output","timestamp":1607098222,"output":"est: 'run: %{\"branch_id\" => \"84d896bc-cea3-4925-a65d-b3305797ee5b\", \"branch_name\" => \"master\", \"clie"},{"event":"cmd_output","timestamp":1607098222,"output":"nt_id\" => \"65de9ee0-eaef-4ead-8af0-a0195036532d\", \"commit_sha\" => \"75891a4469\", \"definition_file\" =>"},{"event":"cmd_output","timestamp":1607098222,"output":" \"\", \"hook_id\" => \"360a21c6-364b-11eb-adb5-5254005464e2\", \"label\" => \"master\", \"organization_id\" => "},{"event":"cmd_output","timestamp":1607098222,"output":"\"4fb5f989-2c71-4be7-8aea-54a1359a6c6d\", \"owner\" => \"rt\", \"project_id\" => \"e984ca07-2d8c-4256-bca5-18"},{"event":"cmd_output","timestamp":1607098222,"output":"3df8b9e2a0\", \"repo_name\" => \"2_basic\", \"request_token\" => \"360a18ca-364b-11eb-8dd3-5254005464e2\", \"r"},{"event":"cmd_output","timestamp":1607098222,"output":"equester_id\" => \"14c6a54c-06ab-4e05-a789-26517e38a2cd\", \"service\" => \"local\", \"snapshot_id\" => \"\", \""},{"event":"cmd_output","timestamp":1607098222,"output":"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"8"},{"event":"cmd_output","timestamp":1607098222,"output":"871ccfb-6dfc-4141-9232-bdf366c57133\"}\n\u001b[0m\u001b[22m\n16:10:22.239 [info] ppl_id: fc383b10-3e21-451f-94"},{"event":"cmd_output","timestamp":1607098222,"output":"e0-3bd1962c437d, type: PplRequests, event: persisted schedule request with request_token: 360a18ca-3"},{"event":"cmd_output","timestamp":1607098222,"output":"64b-11eb-8dd3-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response"},{"event":"cmd_output","timestamp":1607098222,"output":"/2(L55), \n\u001b[0m\u001b[22m\n16:10:22.243 [info] ppl_id: fc383b10-3e21-451f-94e0-3bd1962c437d, type: Ppls,"},{"event":"cmd_output","timestamp":1607098222,"output":" state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQuer"},{"event":"cmd_output","timestamp":1607098222,"output":"ies.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:22.249 [info] Project e984ca07-2d8c-4256-bca5-183d"},{"event":"cmd_output","timestamp":1607098222,"output":"f8b9e2a0 and branch masterlatest_wf details updated: \"wf_id: 8871ccfb-6dfc-4141-9232-bdf366c57133, w"},{"event":"cmd_output","timestamp":1607098222,"output":"f_number: 1\"\n\u001b[0m\u001b[22m\n16:10:22.251 [info] Persisted ppl_sub_init for pipeline with ppl_id: fc383"},{"event":"cmd_output","timestamp":1607098222,"output":"b10-3e21-451f-94e0-3bd1962c437d: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<"},{"event":"cmd_output","timestamp":1607098222,"output":":loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 34, in_scheduling:"},{"event":"cmd_output","timestamp":1607098222,"output":" false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:10:22.249210], pipeline_requests: #Ecto."},{"event":"cmd_output","timestamp":1607098222,"output":"Association.NotLoaded, ppl_id: \"fc383b10-3e21-451f-94e"},{"event":"cmd_output","timestamp":1607098222,"output":"0-3bd1962c437d\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_req"},{"event":"cmd_output","timestamp":1607098222,"output":"uest: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:22.249217]}\n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098222,"output":"0:22.269 [info] Request: 'run: %{\"branch_id\" => \"84d896bc-cea3-4925-a65d-b3305797ee5b\", \"branch_nam"},{"event":"cmd_output","timestamp":1607098222,"output":"e\" => \"master\", \"client_id\" => \"65de9ee0-eaef-4ead-8af0-a0195036532d\", \"commit_sha\" => \"75891a4469\","},{"event":"cmd_output","timestamp":1607098222,"output":" \"definition_file\" => \"\", \"file_name\" => \"semaphore.yml\", \"hook_id\" => \"360a21c6-364b-11eb-adb5-5254"},{"event":"cmd_output","timestamp":1607098222,"output":"005464e2\", \"label\" => \"master\", \"organization_id\" => \"4fb5f989-2c71-4be7-8aea-54a1359a6c6d\", \"owner\""},{"event":"cmd_output","timestamp":1607098222,"output":" => \"rt\", \"project_id\" => \"e984ca07-2d8c-4256-bca5-183df8b9e2a0\", \"repo_name\" => \"2_basic\", \"request"},{"event":"cmd_output","timestamp":1607098222,"output":"_token\" => \"c912456c-d759-4e11-8109-641805bed347\", \"requester_id\" => \"123\", \"service\" => \"local\", \"s"},{"event":"cmd_output","timestamp":1607098222,"output":"napshot_id\" => \"\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"triggered_by\" => \""},{"event":"cmd_output","timestamp":1607098222,"output":"hook\", \"wf_id\" => \"58ba823f-d7fa-432c-93e7-381cd769e8dd\", \"wf_rebuild_of\" => \"8871ccfb-6dfc-4141-923"},{"event":"cmd_output","timestamp":1607098222,"output":"2-bdf366c57133\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:10:22.273 [info] ppl_id: 9baeb32a-ef"},{"event":"cmd_output","timestamp":1607098222,"output":"fe-470a-bc8f-562f6d3a053f, type: PplRequests, event: persisted schedule request with request_token: "},{"event":"cmd_output","timestamp":1607098222,"output":"c912456c-d759-4e11-8109-641805bed347, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.proces"},{"event":"cmd_output","timestamp":1607098222,"output":"s_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:22.283 [info] ppl_id: 9baeb32a-effe-470a-bc8f-562f6d3a053f, t"},{"event":"cmd_output","timestamp":1607098222,"output":"ype: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Mode"},{"event":"cmd_output","timestamp":1607098222,"output":"l.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:22.287 [info] Project e984ca07-2d8c-4256"},{"event":"cmd_output","timestamp":1607098222,"output":"-bca5-183df8b9e2a0 and branch masterlatest_wf details updated: \"wf_id: 58ba823f-d7fa-432c-93e7-381cd"},{"event":"cmd_output","timestamp":1607098222,"output":"769e8dd, wf_number: 2\"\n\u001b[0m\u001b[22m\n16:10:22.289 [info] Persisted ppl_sub_init for pipeline with ppl"},{"event":"cmd_output","timestamp":1607098222,"output":"_id: 9baeb32a-effe-470a-bc8f-562f6d3a053f: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema"},{"event":"cmd_output","timestamp":1607098222,"output":".Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 35, in_s"},{"event":"cmd_output","timestamp":1607098222,"output":"cheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:10:22.287412], pipeline_reques"},{"event":"cmd_output","timestamp":1607098222,"output":"ts: #Ecto.Association.NotLoaded, ppl_id: \"9baeb32a-eff"},{"event":"cmd_output","timestamp":1607098222,"output":"e-470a-bc8f-562f6d3a053f\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", ter"},{"event":"cmd_output","timestamp":1607098222,"output":"minate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:22.287421]}\n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098222,"output":"[22m\n16:10:22.307 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingState with na"},{"event":"cmd_output","timestamp":1607098222,"output":"me Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_"},{"event":"cmd_output","timestamp":1607098222,"output":"up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", "},{"event":"cmd_output","timestamp":1607098222,"output":"\"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"initia"},{"event":"cmd_output","timestamp":1607098222,"output":"lizing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, rep"},{"event":"cmd_output","timestamp":1607098222,"output":"o: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count,"},{"event":"cmd_output","timestamp":1607098222,"output":" :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:22.307 [info] Per"},{"event":"cmd_output","timestamp":1607098222,"output":"iodic from module Elixir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler.Pendi"},{"event":"cmd_output","timestamp":1607098222,"output":"ngState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\""},{"event":"cmd_output","timestamp":1607098222,"output":"]}, recurring args: %{allowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_sec: 0"},{"event":"cmd_output","timestamp":1607098222,"output":", initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publisher_cb: #Function<0.8493005/1"},{"event":"cmd_output","timestamp":1607098222,"output":" in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_reques"},{"event":"cmd_output","timestamp":1607098222,"output":"t, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_superv"},{"event":"cmd_output","timestamp":1607098222,"output":"isor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:10:22.308 [info] Periodic from module Elixir.Ppl.Ppls.STMH"},{"event":"cmd_output","timestamp":1607098222,"output":"andler.QueuingState with name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, metric_name"},{"event":"cmd_output","timestamp":1607098222,"output":": {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{allowed_states: "},{"event":"cmd_output","timestamp":1607098222,"output":"[\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_s"},{"event":"cmd_output","timestamp":1607098222,"output":"tate: \"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.args/0>, "},{"event":"cmd_output","timestamp":1607098222,"output":"repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_cou"},{"event":"cmd_output","timestamp":1607098222,"output":"nt, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:22.308 [info] "},{"event":"cmd_output","timestamp":1607098222,"output":"Periodic from module Elixir.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHandler.Ru"},{"event":"cmd_output","timestamp":1607098222,"output":"nningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-RunningSta"},{"event":"cmd_output","timestamp":1607098222,"output":"te\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, init"},{"event":"cmd_output","timestamp":1607098222,"output":"ial_query: Ppl.Ppls.Model.Ppls, observed_state: \"running\", publisher_cb: #Function<0.74670282/1 in P"},{"event":"cmd_output","timestamp":1607098222,"output":"pl.Ppls.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :u"},{"event":"cmd_output","timestamp":1607098222,"output":"pdated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor:"},{"event":"cmd_output","timestamp":1607098222,"output":" PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:10:22.308 [info] Periodic from module Elixir.Ppl.Ppls.STMHandle"},{"event":"cmd_output","timestamp":1607098222,"output":"r.StoppingState with name Elixir.Ppl.Ppls.STMHandler.StoppingState :: period: 100 ms, metric_name: {"},{"event":"cmd_output","timestamp":1607098222,"output":"\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\""},{"event":"cmd_output","timestamp":1607098222,"output":"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"stopp"},{"event":"cmd_output","timestamp":1607098222,"output":"ing\", publisher_cb: #Function<0.71803493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, repo: Ppl.E"},{"event":"cmd_output","timestamp":1607098222,"output":"ctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id"},{"event":"cmd_output","timestamp":1607098222,"output":"], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:22.308 [info] Periodic fr"},{"event":"cmd_output","timestamp":1607098222,"output":"om module Elixir.Ppl.PplSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHandler"},{"event":"cmd_output","timestamp":1607098222,"output":".CreatedState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-"},{"event":"cmd_output","timestamp":1607098222,"output":"CreatedState\"]}, recurring args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, initia"},{"event":"cmd_output","timestamp":1607098222,"output":"l_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip, repo: Pp"},{"event":"cmd_output","timestamp":1607098222,"output":"l.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl"},{"event":"cmd_output","timestamp":1607098222,"output":"_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:22.308 [i"},{"event":"cmd_output","timestamp":1607098222,"output":"nfo] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl.PplS"},{"event":"cmd_output","timestamp":1607098222,"output":"ubInits.STMHandler.FetchingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplS"},{"event":"cmd_output","timestamp":1607098222,"output":"ubInits-STMHandler-FetchingState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation"},{"event":"cmd_output","timestamp":1607098222,"output":"\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: "},{"event":"cmd_output","timestamp":1607098222,"output":"\"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_a"},{"event":"cmd_output","timestamp":1607098222,"output":"t, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_super"},{"event":"cmd_output","timestamp":1607098222,"output":"visor: :skip}\n\u001b[0m\u001b[22m\n16:10:22.309 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandle"},{"event":"cmd_output","timestamp":1607098222,"output":"r.CompilationState with name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 100 ms, m"},{"event":"cmd_output","timestamp":1607098222,"output":"etric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurring arg"},{"event":"cmd_output","timestamp":1607098222,"output":"s: %{allowed_states: [\"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2, init"},{"event":"cmd_output","timestamp":1607098222,"output":"ial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"compilation\", publisher_cb: :skip, re"},{"event":"cmd_output","timestamp":1607098222,"output":"po: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count"},{"event":"cmd_output","timestamp":1607098222,"output":", :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:22."},{"event":"cmd_output","timestamp":1607098222,"output":"309 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with name Elixir"},{"event":"cmd_output","timestamp":1607098222,"output":".Ppl.PplSubInits.STMHandler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\""},{"event":"cmd_output","timestamp":1607098222,"output":", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurring args: %{allowed_states: [\"done\"], cool"},{"event":"cmd_output","timestamp":1607098222,"output":"ing_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_init\", p"},{"event":"cmd_output","timestamp":1607098222,"output":"ublisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :r"},{"event":"cmd_output","timestamp":1607098222,"output":"esult, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}"},{"event":"cmd_output","timestamp":1607098222,"output":"\n\u001b[0m\u001b[22m\n16:10:22.309 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.InitializingS"},{"event":"cmd_output","timestamp":1607098222,"output":"tate with name Elixir.Ppl.PplBlocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"P"},{"event":"cmd_output","timestamp":1607098222,"output":"pl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_sta"},{"event":"cmd_output","timestamp":1607098222,"output":"tes: [\"initializing\", \"waiting\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.Pp"},{"event":"cmd_output","timestamp":1607098222,"output":"lBlocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :"},{"event":"cmd_output","timestamp":1607098222,"output":"terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Pp"},{"event":"cmd_output","timestamp":1607098222,"output":"l.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:22.309 [info] Periodic from "},{"event":"cmd_output","timestamp":1607098222,"output":"module Elixir.Ppl.PplBlocks.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler.Waitin"},{"event":"cmd_output","timestamp":1607098222,"output":"gState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingS"},{"event":"cmd_output","timestamp":1607098222,"output":"tate\"]}, recurring args: %{allowed_states: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 0, init"},{"event":"cmd_output","timestamp":1607098222,"output":"ial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"waiting\", publisher_cb: #Function<0.89750"},{"event":"cmd_output","timestamp":1607098222,"output":"22/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :termina"},{"event":"cmd_output","timestamp":1607098222,"output":"te_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBl"},{"event":"cmd_output","timestamp":1607098222,"output":"ocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:22.309 [info] Periodic from module "},{"event":"cmd_output","timestamp":1607098222,"output":"Elixir.Ppl.PplBlocks.STMHandler.RunningState with name Elixir.Ppl.PplBlocks.STMHandler.RunningState "},{"event":"cmd_output","timestamp":1607098222,"output":":: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}"},{"event":"cmd_output","timestamp":1607098222,"output":", recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_q"},{"event":"cmd_output","timestamp":1607098222,"output":"uery: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"running\", publisher_cb: #Function<0.28166834/1"},{"event":"cmd_output","timestamp":1607098222,"output":" in Ppl.PplBlocks.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_r"},{"event":"cmd_output","timestamp":1607098222,"output":"equest, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Pp"},{"event":"cmd_output","timestamp":1607098222,"output":"l.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:22.309 [info] Periodic from "},{"event":"cmd_output","timestamp":1607098222,"output":"module Elixir.Ppl.PplBlocks.STMHandler.StoppingState with name Elixir.Ppl.PplBlocks.STMHandler.Stopp"},{"event":"cmd_output","timestamp":1607098222,"output":"ingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-Stoppi"},{"event":"cmd_output","timestamp":1607098222,"output":"ngState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_qu"},{"event":"cmd_output","timestamp":1607098222,"output":"ery: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"stopping\", publisher_cb: #Function<0.104215991/"},{"event":"cmd_output","timestamp":1607098222,"output":"1 in Ppl.PplBlocks.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate"},{"event":"cmd_output","timestamp":1607098222,"output":"_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: "},{"event":"cmd_output","timestamp":1607098222,"output":"Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:22.310 [info] Periodic fro"},{"event":"cmd_output","timestamp":1607098222,"output":"m module Elixir.Block.Blocks.STMHandler.InitializingState with name Elixir.Block.Blocks.STMHandler.I"},{"event":"cmd_output","timestamp":1607098222,"output":"nitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-"},{"event":"cmd_output","timestamp":1607098222,"output":"InitializingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, in"},{"event":"cmd_output","timestamp":1607098222,"output":"itial_query: Block.Blocks.Model.Blocks, observed_state: \"initializing\", publisher_cb: :skip, repo: B"},{"event":"cmd_output","timestamp":1607098222,"output":"lock.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id]"},{"event":"cmd_output","timestamp":1607098222,"output":", schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:22.310 [info] Period"},{"event":"cmd_output","timestamp":1607098222,"output":"ic from module Elixir.Block.Blocks.STMHandler.RunningState with name Elixir.Block.Blocks.STMHandler."},{"event":"cmd_output","timestamp":1607098222,"output":"RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-Runn"},{"event":"cmd_output","timestamp":1607098222,"output":"ingState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2"},{"event":"cmd_output","timestamp":1607098222,"output":", initial_query: Block.Blocks.Model.Blocks, observed_state: \"running\", publisher_cb: :skip, repo: Bl"},{"event":"cmd_output","timestamp":1607098222,"output":"ock.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id],"},{"event":"cmd_output","timestamp":1607098222,"output":" schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:22.310 [info] Periodi"},{"event":"cmd_output","timestamp":1607098222,"output":"c from module Elixir.Block.Blocks.STMHandler.StoppingState with name Elixir.Block.Blocks.STMHandler."},{"event":"cmd_output","timestamp":1607098222,"output":"StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-Sto"},{"event":"cmd_output","timestamp":1607098222,"output":"ppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial"},{"event":"cmd_output","timestamp":1607098222,"output":"_query: Block.Blocks.Model.Blocks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.Ecto"},{"event":"cmd_output","timestamp":1607098222,"output":"Repo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema:"},{"event":"cmd_output","timestamp":1607098222,"output":" Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:22.311 [info] Periodic from m"},{"event":"cmd_output","timestamp":1607098222,"output":"odule Elixir.Block.Tasks.STMHandler.PendingState with name Elixir.Block.Tasks.STMHandler.PendingStat"},{"event":"cmd_output","timestamp":1607098222,"output":"e :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingState\"]},"},{"event":"cmd_output","timestamp":1607098222,"output":" recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Ta"},{"event":"cmd_output","timestamp":1607098222,"output":"sks.Model.Tasks, observed_state: \"pending\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:"},{"event":"cmd_output","timestamp":1607098222,"output":"id, :terminate_request, :updated_at, :state, :recovery_count, :block_id, :build_request_id], schema:"},{"event":"cmd_output","timestamp":1607098222,"output":" Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:22.311 [info] Periodic from mod"},{"event":"cmd_output","timestamp":1607098222,"output":"ule Elixir.Block.Tasks.STMHandler.RunningState with name Elixir.Block.Tasks.STMHandler.RunningState "},{"event":"cmd_output","timestamp":1607098222,"output":":: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningState\"]}, r"},{"event":"cmd_output","timestamp":1607098222,"output":"ecurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_quer"},{"event":"cmd_output","timestamp":1607098222,"output":"y: Block.Tasks.Model.Tasks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, re"},{"event":"cmd_output","timestamp":1607098222,"output":"turning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.T"},{"event":"cmd_output","timestamp":1607098222,"output":"asks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:22.311 [info] Periodic from module Elix"},{"event":"cmd_output","timestamp":1607098222,"output":"ir.Block.Tasks.STMHandler.StoppingState with name Elixir.Block.Tasks.STMHandler.StoppingState :: per"},{"event":"cmd_output","timestamp":1607098222,"output":"iod: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]}, recurr"},{"event":"cmd_output","timestamp":1607098222,"output":"ing args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.M"},{"event":"cmd_output","timestamp":1607098222,"output":"odel.Tasks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, "},{"event":"cmd_output","timestamp":1607098222,"output":":terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Task"},{"event":"cmd_output","timestamp":1607098222,"output":"s, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:22.436 [info] ppl_id: fc383b10-3e21-451f-94e0-3bd1962c"},{"event":"cmd_output","timestamp":1607098222,"output":"437d, type: PplRequests, event: persisted source_args for pipeline: fc383b10-3e21-451f-94e0-3bd1962c"},{"event":"cmd_output","timestamp":1607098222,"output":"437d, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098222,"output":"10:22.439 [info] ppl_id: fc383b10-3e21-451f-94e0-3bd1962c437d, type: PplSubInits, state: fetching, "},{"event":"cmd_output","timestamp":1607098222,"output":"event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \r"},{"event":"cmd_output","timestamp":1607098222,"output":"\n\u001b[0m\u001b[22m\n16:10:22.467 [info] ppl_id: fc383b10-3e21-451f-94e0-3bd1962c437d, type: PplSubInits, st"},{"event":"cmd_output","timestamp":1607098222,"output":"ate: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_sta"},{"event":"cmd_output","timestamp":1607098222,"output":"te_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:22.501 [info] ppl_id: fc383b10-3e21-451f-94e0-3bd1962c437d, ty"},{"event":"cmd_output","timestamp":1607098222,"output":"pe: PplRequests, event: persisted definition for request with request_token: 360a18ca-364b-11eb-8dd3"},{"event":"cmd_output","timestamp":1607098222,"output":"-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b"},{"event":"cmd_output","timestamp":1607098222,"output":"[0m\u001b[22m\n16:10:22.513 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schem"},{"event":"cmd_output","timestamp":1607098222,"output":"a.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:10:22.511352], name: \"master-.semaphore"},{"event":"cmd_output","timestamp":1607098222,"output":"/semaphore.yml\", organization_id: \"4fb5f989-2c71-4be7-8aea-54a1359a6c6d\", project_id: \"e984ca07-2d8c"},{"event":"cmd_output","timestamp":1607098222,"output":"-4256-bca5-183df8b9e2a0\", queue_id: \"2a5dcaac-8185-4e55-b8e7-4f003df2260d\", scope: \"project\", update"},{"event":"cmd_output","timestamp":1607098222,"output":"d_at: ~N[2020-12-04 16:10:22.511365], user_generated: false}}\n\u001b[0m\u001b[22m\n16:10:22.520 [info] event"},{"event":"cmd_output","timestamp":1607098222,"output":": created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098222,"output":"16:10:22.520 [info] ppl_id: fc383b10-3e21-451f-94e0-3bd1962c437d, type: PplBlocks, block_index: 0, "},{"event":"cmd_output","timestamp":1607098222,"output":"state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.Re"},{"event":"cmd_output","timestamp":1607098222,"output":"gularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:22.525 [info] ppl_id: fc383b10-3e21-451f-94e0-3b"},{"event":"cmd_output","timestamp":1607098222,"output":"d1962c437d, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: "},{"event":"cmd_output","timestamp":1607098222,"output":"0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:22.546 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098222,"output":" fc383b10-3e21-451f-94e0-3bd1962c437d, type: PplBlocks, block_index: 0, state: waiting, event: exit_"},{"event":"cmd_output","timestamp":1607098222,"output":"scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098222,"output":"16:10:22.546 [info] ppl_id: fc383b10-3e21-451f-94e0-3bd1962c437d, type: Ppls, state: pending, event"},{"event":"cmd_output","timestamp":1607098222,"output":": exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098222,"output":"\u001b[22m\n16:10:22.564 [info] ppl_id: 9baeb32a-effe-470a-bc8f-562f6d3a053f, type: PplRequests, event: "},{"event":"cmd_output","timestamp":1607098222,"output":"persisted source_args for pipeline: 9baeb32a-effe-470a-bc8f-562f6d3a053f, origin: Elixir.Ppl.PplRequ"},{"event":"cmd_output","timestamp":1607098222,"output":"ests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:22.566 [info] ppl_id: fc383b"},{"event":"cmd_output","timestamp":1607098222,"output":"10-3e21-451f-94e0-3bd1962c437d, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: "},{"event":"cmd_output","timestamp":1607098222,"output":"0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:22.568 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098222,"output":" 9baeb32a-effe-470a-bc8f-562f6d3a053f, type: PplSubInits, state: fetching, event: exit_scheduling, r"},{"event":"cmd_output","timestamp":1607098222,"output":"ecovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:22.580 "},{"event":"cmd_output","timestamp":1607098222,"output":"[info] ppl_id: fc383b10-3e21-451f-94e0-3bd1962c437d, type: Ppls, state: running, event: exit_schedu"},{"event":"cmd_output","timestamp":1607098222,"output":"ling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:"},{"event":"cmd_output","timestamp":1607098222,"output":"22.593 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"fc383b10-3e21-451f-9"},{"event":"cmd_output","timestamp":1607098222,"output":"4e0-3bd1962c437d\"\n\u001b[0m\u001b[22m\n16:10:22.606 [info] ppl_id: 9baeb32a-effe-470a-bc8f-562f6d3a053f, typ"},{"event":"cmd_output","timestamp":1607098222,"output":"e: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loope"},{"event":"cmd_output","timestamp":1607098222,"output":"r.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:22.611 [info] block_id: 28333314-40c5-4fd9-9"},{"event":"cmd_output","timestamp":1607098222,"output":"9d9-5a01b0365e09, type: BlockRequests, event: persisted block run request from ppl fc383b10-3e21-451"},{"event":"cmd_output","timestamp":1607098222,"output":"f-94e0-3bd1962c437d for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.proce"},{"event":"cmd_output","timestamp":1607098222,"output":"ss_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:22.618 [info] block_id: 28333314-40c5-4fd9-99d9-5a01b0365e09"},{"event":"cmd_output","timestamp":1607098222,"output":", type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Bl"},{"event":"cmd_output","timestamp":1607098222,"output":"ocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:22.624 [info] Block 0 of pipeline with i"},{"event":"cmd_output","timestamp":1607098222,"output":"d: fc383b10-3e21-451f-94e0-3bd1962c437d scheduled in block service with id: : \"28333314-40c5-4fd9-99"},{"event":"cmd_output","timestamp":1607098222,"output":"d9-5a01b0365e09\"\n\u001b[0m\u001b[22m\n16:10:22.631 [info] ppl_id: fc383b10-3e21-451f-94e0-3bd1962c437d, type"},{"event":"cmd_output","timestamp":1607098222,"output":": PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098222,"output":"ir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:22.638 [info] block_id: 28333314-40c"},{"event":"cmd_output","timestamp":1607098222,"output":"5-4fd9-99d9-5a01b0365e09, type: BlockRequests, event: persisted build and sub_ppl details for block_"},{"event":"cmd_output","timestamp":1607098222,"output":"request: 28333314-40c5-4fd9-99d9-5a01b0365e09, origin: Elixir.Block.BlockRequests.Model.BlockRequest"},{"event":"cmd_output","timestamp":1607098222,"output":"sQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:22.644 [info] block_id: 28333314-40c5-4fd9-99d9-5a"},{"event":"cmd_output","timestamp":1607098222,"output":"01b0365e09, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blo"},{"event":"cmd_output","timestamp":1607098222,"output":"cks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:22.651 [info] block_id: 283333"},{"event":"cmd_output","timestamp":1607098222,"output":"14-40c5-4fd9-99d9-5a01b0365e09, type: Blocks, state: running, event: exit_scheduling, recovery_count"},{"event":"cmd_output","timestamp":1607098222,"output":": 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:22.661 [info] ppl_i"},{"event":"cmd_output","timestamp":1607098222,"output":"d: 9baeb32a-effe-470a-bc8f-562f6d3a053f, type: PplRequests, event: persisted definition for request "},{"event":"cmd_output","timestamp":1607098222,"output":"with request_token: c912456c-d759-4e11-8109-641805bed347, origin: Elixir.Ppl.PplRequests.Model.PplRe"},{"event":"cmd_output","timestamp":1607098222,"output":"questsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:22.675 [info] event: created, origin: El"},{"event":"cmd_output","timestamp":1607098222,"output":"ixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:22.675 [info] "},{"event":"cmd_output","timestamp":1607098222,"output":"ppl_id: 9baeb32a-effe-470a-bc8f-562f6d3a053f, type: PplBlocks, block_index: 0, state: initializing, "},{"event":"cmd_output","timestamp":1607098222,"output":"event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok"},{"event":"cmd_output","timestamp":1607098222,"output":"?/1(L105), \n\u001b[0m\u001b[22m\n16:10:22.678 [info] ppl_id: 9baeb32a-effe-470a-bc8f-562f6d3a053f, type: Ppl"},{"event":"cmd_output","timestamp":1607098222,"output":"SubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loo"},{"event":"cmd_output","timestamp":1607098222,"output":"per.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:22.691 [info] block_id: 28333314-40c5-4fd9"},{"event":"cmd_output","timestamp":1607098222,"output":"-99d9-5a01b0365e09, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098222,"output":"Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:22.697 [info] ppl_id: 9baeb32a-e"},{"event":"cmd_output","timestamp":1607098222,"output":"ffe-470a-bc8f-562f6d3a053f, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098222,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:22.701 [info] ppl_id: 9ba"},{"event":"cmd_output","timestamp":1607098222,"output":"eb32a-effe-470a-bc8f-562f6d3a053f, type: PplBlocks, block_index: 0, state: waiting, event: exit_sche"},{"event":"cmd_output","timestamp":1607098222,"output":"duling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098222,"output":"0:22.713 [info] ppl_id: 9baeb32a-effe-470a-bc8f-562f6d3a053f, type: Ppls, state: queuing, event: ex"},{"event":"cmd_output","timestamp":1607098222,"output":"it_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098222,"output":"m\n16:10:22.768 [info] block_id: 28333314-40c5-4fd9-99d9-5a01b0365e09, type: Tasks, state: done, ev"},{"event":"cmd_output","timestamp":1607098222,"output":"ent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b"},{"event":"cmd_output","timestamp":1607098222,"output":"[0m\u001b[22m\n16:10:22.782 [info] block_id: 28333314-40c5-4fd9-99d9-5a01b0365e09, type: Blocks, state: "},{"event":"cmd_output","timestamp":1607098222,"output":"done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098222,"output":"90), \n\u001b[0m\u001b[22m\n16:10:22.805 [info] ppl_id: fc383b10-3e21-451f-94e0-3bd1962c437d, block_id: 28333"},{"event":"cmd_output","timestamp":1607098222,"output":"314-40c5-4fd9-99d9-5a01b0365e09, type: PplBlocks, block_index: 0, state: done, result: passed, event"},{"event":"cmd_output","timestamp":1607098222,"output":": exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098222,"output":"\u001b[22m\n16:10:22.829 [info] ppl_id: fc383b10-3e21-451f-94e0-3bd1962c437d, type: Ppls, state: done, r"},{"event":"cmd_output","timestamp":1607098222,"output":"esult: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098222,"output":"hange/1(L90), \n\u001b[0m\u001b[22m\n16:10:22.868 [info] ppl_id: 9baeb32a-effe-470a-bc8f-562f6d3a053f, type: "},{"event":"cmd_output","timestamp":1607098222,"output":"Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_"},{"event":"cmd_output","timestamp":1607098222,"output":"state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:22.879 [info] PplBlocks WaitingState STM is scheduling bloc"},{"event":"cmd_output","timestamp":1607098222,"output":"k 0 from pipeline: \"9baeb32a-effe-470a-bc8f-562f6d3a053f\"\n\u001b[0m\u001b[22m\n16:10:22.893 [info] block_id:"},{"event":"cmd_output","timestamp":1607098222,"output":" e3176301-dd41-46c4-85e2-4f8fe35a1c8d, type: BlockRequests, event: persisted block run request from "},{"event":"cmd_output","timestamp":1607098222,"output":"ppl 9baeb32a-effe-470a-bc8f-562f6d3a053f for block 0, origin: Elixir.Block.BlockRequests.Model.Block"},{"event":"cmd_output","timestamp":1607098222,"output":"RequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:22.897 [info] block_id: e3176301-dd41-4"},{"event":"cmd_output","timestamp":1607098222,"output":"6c4-85e2-4f8fe35a1c8d, type: Blocks, state: initializing, event: initializing, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098222,"output":"igin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:22.898 [info] Block"},{"event":"cmd_output","timestamp":1607098222,"output":" 0 of pipeline with id: 9baeb32a-effe-470a-bc8f-562f6d3a053f scheduled in block service with id: : \""},{"event":"cmd_output","timestamp":1607098222,"output":"e3176301-dd41-46c4-85e2-4f8fe35a1c8d\"\n\u001b[0m\u001b[22m\n16:10:22.906 [info] ppl_id: 9baeb32a-effe-470a-bc"},{"event":"cmd_output","timestamp":1607098222,"output":"8f-562f6d3a053f, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098222,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:22.908 [info] b"},{"event":"cmd_output","timestamp":1607098222,"output":"lock_id: e3176301-dd41-46c4-85e2-4f8fe35a1c8d, type: BlockRequests, event: persisted build and sub_p"},{"event":"cmd_output","timestamp":1607098222,"output":"pl details for block_request: e3176301-dd41-46c4-85e2-4f8fe35a1c8d, origin: Elixir.Block.BlockReques"},{"event":"cmd_output","timestamp":1607098222,"output":"ts.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:22.912 [info] block_id: e3176"},{"event":"cmd_output","timestamp":1607098222,"output":"301-dd41-46c4-85e2-4f8fe35a1c8d, type: Tasks, state: pending, event: created, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098222,"output":"gin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:22.921 [in"},{"event":"cmd_output","timestamp":1607098222,"output":"fo] block_id: e3176301-dd41-46c4-85e2-4f8fe35a1c8d, type: Blocks, state: running, event: exit_sched"},{"event":"cmd_output","timestamp":1607098222,"output":"uling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10"},{"event":"cmd_output","timestamp":1607098222,"output":":22.942 [info] block_id: e3176301-dd41-46c4-85e2-4f8fe35a1c8d, type: Tasks, state: running, event: "},{"event":"cmd_output","timestamp":1607098222,"output":"exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098222,"output":"22m\n16:10:22.991 [info] block_id: e3176301-dd41-46c4-85e2-4f8fe35a1c8d, type: Tasks, state: done, "},{"event":"cmd_output","timestamp":1607098222,"output":"event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \r"},{"event":"cmd_output","timestamp":1607098223,"output":"\n\u001b[0m\u001b[22m\n16:10:23.003 [info] block_id: e3176301-dd41-46c4-85e2-4f8fe35a1c8d, type: Blocks, state"},{"event":"cmd_output","timestamp":1607098223,"output":": done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1"},{"event":"cmd_output","timestamp":1607098223,"output":"(L90), \n\u001b[0m\u001b[22m\n16:10:23.018 [info] ppl_id: 9baeb32a-effe-470a-bc8f-562f6d3a053f, block_id: e31"},{"event":"cmd_output","timestamp":1607098223,"output":"76301-dd41-46c4-85e2-4f8fe35a1c8d, type: PplBlocks, block_index: 0, state: done, result: passed, eve"},{"event":"cmd_output","timestamp":1607098223,"output":"nt: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b["},{"event":"cmd_output","timestamp":1607098223,"output":"0m\u001b[22m\n16:10:23.045 [info] ppl_id: 9baeb32a-effe-470a-bc8f-562f6d3a053f, type: Ppls, state: done,"},{"event":"cmd_output","timestamp":1607098223,"output":" result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state"},{"event":"cmd_output","timestamp":1607098223,"output":"_change/1(L90), \n\u001b[0m\u001b[32m\r * test gRPC reschedule() - succeeds and initial ppl passes (1129.2ms)\u001b"},{"event":"cmd_output","timestamp":1607098223,"output":"[0m\n * test gRPC terminate() - fails when wf_id is empty \r * test gRPC terminate() - fails when w"},{"event":"cmd_output","timestamp":1607098223,"output":"f_id is empty (skipped)\n * test gRPC list_latest_workflows() - successfully walk the list in both"},{"event":"cmd_output","timestamp":1607098223,"output":" directions\u001b[22m\n16:10:23.285 [info] Request: 'run: %{\"branch_id\" => \"efb4aec9-6dcb-4196-a652-047d"},{"event":"cmd_output","timestamp":1607098223,"output":"a8e10230\", \"branch_name\" => \"master-0\", \"client_id\" => \"3b479ad1-7ff8-4bcf-b830-32e1d6c5807e\", \"comm"},{"event":"cmd_output","timestamp":1607098223,"output":"it_sha\" => \"75891a4469\", \"definition_file\" => \"\", \"hook_id\" => \"branch\", \"label\" => \"master-0\", \"org"},{"event":"cmd_output","timestamp":1607098223,"output":"anization_id\" => \"bf04a99c-87ae-4e9d-8696-e3fb2cb6830d\", \"owner\" => \"rt\", \"project_id\" => \"list_late"},{"event":"cmd_output","timestamp":1607098223,"output":"st_workflows\", \"repo_name\" => \"2_basic\", \"request_token\" => \"36ae7dd4-364b-11eb-806e-5254005464e2\", "},{"event":"cmd_output","timestamp":1607098223,"output":"\"requester_id\" => \"57d65426-e421-42dd-8f07-803140452bab\", \"service\" => \"local\", \"snapshot_id\" => \"\","},{"event":"cmd_output","timestamp":1607098223,"output":" \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => "},{"event":"cmd_output","timestamp":1607098223,"output":"\"1ac94079-0cdf-4fc1-9f10-6c079a684b5f\"}\n\u001b[0m\u001b[22m\n16:10:23.316 [info] ppl_id: 74221866-6c83-4c23-"},{"event":"cmd_output","timestamp":1607098223,"output":"918c-f039ff445450, type: PplRequests, event: persisted schedule request with request_token: 36ae7dd4"},{"event":"cmd_output","timestamp":1607098223,"output":"-364b-11eb-806e-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_respon"},{"event":"cmd_output","timestamp":1607098223,"output":"se/2(L55), \n\u001b[0m\u001b[22m\n16:10:23.320 [info] ppl_id: 74221866-6c83-4c23-918c-f039ff445450, type: Ppl"},{"event":"cmd_output","timestamp":1607098223,"output":"s, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQu"},{"event":"cmd_output","timestamp":1607098223,"output":"eries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:23.328 [info] Project list_latest_workflows and "},{"event":"cmd_output","timestamp":1607098223,"output":"branch master-0latest_wf details updated: \"wf_id: 1ac94079-0cdf-4fc1-9f10-6c079a684b5f, wf_number: 1"},{"event":"cmd_output","timestamp":1607098223,"output":"\"\n\u001b[0m\u001b[22m\n16:10:23.332 [info] Persisted ppl_sub_init for pipeline with ppl_id: 74221866-6c83-4c"},{"event":"cmd_output","timestamp":1607098223,"output":"23-918c-f039ff445450: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"p"},{"event":"cmd_output","timestamp":1607098223,"output":"ipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 36, in_scheduling: false, ini"},{"event":"cmd_output","timestamp":1607098223,"output":"t_type: \"regular\", inserted_at: ~N[2020-12-04 16:10:23.330463], pipeline_requests: #Ecto.Association"},{"event":"cmd_output","timestamp":1607098223,"output":".NotLoaded, ppl_id: \"74221866-6c83-4c23-918c-f039ff445"},{"event":"cmd_output","timestamp":1607098223,"output":"450\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, "},{"event":"cmd_output","timestamp":1607098223,"output":"terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:23.330477]}\n\u001b[0m\u001b[22m\n16:10:23.358 [i"},{"event":"cmd_output","timestamp":1607098223,"output":"nfo] Request: 'run: %{\"branch_id\" => \"3e342e32-f808-4e49-b92f-a829631eaa14\", \"branch_name\" => \"mast"},{"event":"cmd_output","timestamp":1607098223,"output":"er-1\", \"client_id\" => \"1f18b8b2-f5cd-4bf8-8db9-1814225d417d\", \"commit_sha\" => \"75891a4469\", \"definit"},{"event":"cmd_output","timestamp":1607098223,"output":"ion_file\" => \"\", \"hook_id\" => \"branch\", \"label\" => \"master-1\", \"organization_id\" => \"d549e2ae-7bbd-4"},{"event":"cmd_output","timestamp":1607098223,"output":"c76-9468-6f142e37cacc\", \"owner\" => \"rt\", \"project_id\" => \"list_latest_workflows\", \"repo_name\" => \"2_"},{"event":"cmd_output","timestamp":1607098223,"output":"basic\", \"request_token\" => \"36b90420-364b-11eb-a92a-5254005464e2\", \"requester_id\" => \"61966dfc-9d3d-"},{"event":"cmd_output","timestamp":1607098223,"output":"4799-a0aa-662f16ae9ea6\", \"service\" => \"local\", \"snapshot_id\" => \"\", \"suppressed_attributes\" => [\"acc"},{"event":"cmd_output","timestamp":1607098223,"output":"ess_token\", \"client_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"fe15093b-ce49-4f74-b149-f151b84e"},{"event":"cmd_output","timestamp":1607098223,"output":"b99d\"}\n\u001b[0m\u001b[22m\n16:10:23.399 [info] ppl_id: d1cb87af-47a7-4e12-a38c-e22ead8748d4, type: PplReque"},{"event":"cmd_output","timestamp":1607098223,"output":"sts, event: persisted schedule request with request_token: 36b90420-364b-11eb-a92a-5254005464e2, ori"},{"event":"cmd_output","timestamp":1607098223,"output":"gin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:23."},{"event":"cmd_output","timestamp":1607098223,"output":"404 [info] ppl_id: d1cb87af-47a7-4e12-a38c-e22ead8748d4, type: Ppls, state: initializing, event: in"},{"event":"cmd_output","timestamp":1607098223,"output":"itializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \r"},{"event":"cmd_output","timestamp":1607098223,"output":"\n\u001b[0m\u001b[22m\n16:10:23.409 [info] Project list_latest_workflows and branch master-1latest_wf details "},{"event":"cmd_output","timestamp":1607098223,"output":"updated: \"wf_id: fe15093b-ce49-4f74-b149-f151b84eb99d, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:10:23.411 [info]"},{"event":"cmd_output","timestamp":1607098223,"output":" Persisted ppl_sub_init for pipeline with ppl_id: d1cb87af-47a7-4e12-a38c-e22ead8748d4: %Ppl.PplSub"},{"event":"cmd_output","timestamp":1607098223,"output":"Inits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task"},{"event":"cmd_output","timestamp":1607098223,"output":"_id: nil, error_description: nil, id: 37, in_scheduling: false, init_type: \"regular\", inserted_at: ~"},{"event":"cmd_output","timestamp":1607098223,"output":"N[2020-12-04 16:10:23.409820], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"d1cb87af-47a7-4e12-a38c-e22ead8748d4\", recovery_count: 0, result: "},{"event":"cmd_output","timestamp":1607098223,"output":"nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, upda"},{"event":"cmd_output","timestamp":1607098223,"output":"ted_at: ~N[2020-12-04 16:10:23.409831]}\n\u001b[0m\u001b[22m\n16:10:23.426 [info] Request: 'run: %{\"branch_id"},{"event":"cmd_output","timestamp":1607098223,"output":"\" => \"92cf1700-378c-4a21-b2df-e4e6044f838a\", \"branch_name\" => \"master-2\", \"client_id\" => \"e2cd2032-a"},{"event":"cmd_output","timestamp":1607098223,"output":"cb3-4946-9cfc-443d74ac7795\", \"commit_sha\" => \"75891a4469\", \"definition_file\" => \"\", \"hook_id\" => \"br"},{"event":"cmd_output","timestamp":1607098223,"output":"anch\", \"label\" => \"master-2\", \"organization_id\" => \"8752f975-63c0-407a-86d9-a1bad39a49bf\", \"owner\" ="},{"event":"cmd_output","timestamp":1607098223,"output":"> \"rt\", \"project_id\" => \"list_latest_workflows\", \"repo_name\" => \"2_basic\", \"request_token\" => \"36c3b"},{"event":"cmd_output","timestamp":1607098223,"output":"604-364b-11eb-92e6-5254005464e2\", \"requester_id\" => \"bacdf663-ca4f-4530-b541-b5213c1c505a\", \"service"},{"event":"cmd_output","timestamp":1607098223,"output":"\" => \"local\", \"snapshot_id\" => \"\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"tr"},{"event":"cmd_output","timestamp":1607098223,"output":"iggered_by\" => \"hook\", \"wf_id\" => \"473acbee-76c2-4279-be1b-59b41a5ac606\"}\n\u001b[0m\u001b[22m\n16:10:23.459 ["},{"event":"cmd_output","timestamp":1607098223,"output":"info] ppl_id: edb8fd0b-5585-4011-9b4f-7438e2333f69, type: PplRequests, event: persisted schedule re"},{"event":"cmd_output","timestamp":1607098223,"output":"quest with request_token: 36c3b604-364b-11eb-92e6-5254005464e2, origin: Elixir.Ppl.PplRequests.Model"},{"event":"cmd_output","timestamp":1607098223,"output":".PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:23.462 [info] ppl_id: edb8fd0b-5585"},{"event":"cmd_output","timestamp":1607098223,"output":"-4011-9b4f-7438e2333f69, type: Ppls, state: initializing, event: initializing, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098223,"output":"igin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:23.472 [info] "},{"event":"cmd_output","timestamp":1607098223,"output":"Project list_latest_workflows and branch master-2latest_wf details updated: \"wf_id: 473acbee-76c2-42"},{"event":"cmd_output","timestamp":1607098223,"output":"79-be1b-59b41a5ac606, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:10:23.474 [info] Persisted ppl_sub_init for pipe"},{"event":"cmd_output","timestamp":1607098223,"output":"line with ppl_id: edb8fd0b-5585-4011-9b4f-7438e2333f69: %Ppl.PplSubInits.Model.PplSubInits{__meta__:"},{"event":"cmd_output","timestamp":1607098223,"output":" #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil,"},{"event":"cmd_output","timestamp":1607098223,"output":" id: 38, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:10:23.472538], pi"},{"event":"cmd_output","timestamp":1607098223,"output":"peline_requests: #Ecto.Association.NotLoaded, ppl_id: "},{"event":"cmd_output","timestamp":1607098223,"output":"\"edb8fd0b-5585-4011-9b4f-7438e2333f69\", recovery_count: 0, result: nil, result_reason: nil, state: \""},{"event":"cmd_output","timestamp":1607098223,"output":"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:23.47"},{"event":"cmd_output","timestamp":1607098223,"output":"2552]}\n\u001b[0m\u001b[22m\n16:10:23.485 [info] Request: 'run: %{\"branch_id\" => \"6775ceea-d8b6-48e3-bc18-256"},{"event":"cmd_output","timestamp":1607098223,"output":"c797adf15\", \"branch_name\" => \"master-3\", \"client_id\" => \"0bdd78fd-683d-42b3-9390-f59bc81026e7\", \"com"},{"event":"cmd_output","timestamp":1607098223,"output":"mit_sha\" => \"75891a4469\", \"definition_file\" => \"\", \"hook_id\" => \"branch\", \"label\" => \"master-3\", \"or"},{"event":"cmd_output","timestamp":1607098223,"output":"ganization_id\" => \"4f21ee19-9652-4e98-b0cb-85f1ac8f74d5\", \"owner\" => \"rt\", \"project_id\" => \"list_lat"},{"event":"cmd_output","timestamp":1607098223,"output":"est_workflows\", \"repo_name\" => \"2_basic\", \"request_token\" => \"36cd662c-364b-11eb-9259-5254005464e2\","},{"event":"cmd_output","timestamp":1607098223,"output":" \"requester_id\" => \"0297a54b-8afe-43db-97ef-1d1c5cca9077\", \"service\" => \"local\", \"snapshot_id\" => \"\""},{"event":"cmd_output","timestamp":1607098223,"output":", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" =>"},{"event":"cmd_output","timestamp":1607098223,"output":" \"61e53be7-ecbf-4666-9fa8-581620f0d604\"}\n\u001b[0m\u001b[22m\n16:10:23.507 [info] ppl_id: 87dc30ef-6275-4b2b"},{"event":"cmd_output","timestamp":1607098223,"output":"-9807-f32f91179bfe, type: PplRequests, event: persisted schedule request with request_token: 36cd662"},{"event":"cmd_output","timestamp":1607098223,"output":"c-364b-11eb-9259-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_respo"},{"event":"cmd_output","timestamp":1607098223,"output":"nse/2(L55), \n\u001b[0m\u001b[22m\n16:10:23.509 [info] ppl_id: 87dc30ef-6275-4b2b-9807-f32f91179bfe, type: Pp"},{"event":"cmd_output","timestamp":1607098223,"output":"ls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQ"},{"event":"cmd_output","timestamp":1607098223,"output":"ueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:23.513 [info] Project list_latest_workflows and"},{"event":"cmd_output","timestamp":1607098223,"output":" branch master-3latest_wf details updated: \"wf_id: 61e53be7-ecbf-4666-9fa8-581620f0d604, wf_number: "},{"event":"cmd_output","timestamp":1607098223,"output":"1\"\n\u001b[0m\u001b[22m\n16:10:23.515 [info] Persisted ppl_sub_init for pipeline with ppl_id: 87dc30ef-6275-4"},{"event":"cmd_output","timestamp":1607098223,"output":"b2b-9807-f32f91179bfe: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \""},{"event":"cmd_output","timestamp":1607098223,"output":"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 39, in_scheduling: false, in"},{"event":"cmd_output","timestamp":1607098223,"output":"it_type: \"regular\", inserted_at: ~N[2020-12-04 16:10:23.514187], pipeline_requests: #Ecto.Associatio"},{"event":"cmd_output","timestamp":1607098223,"output":"n.NotLoaded, ppl_id: \"87dc30ef-6275-4b2b-9807-f32f9117"},{"event":"cmd_output","timestamp":1607098223,"output":"9bfe\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil,"},{"event":"cmd_output","timestamp":1607098223,"output":" terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:23.514197]}\n\u001b[0m\u001b[22m\n16:10:23.527 ["},{"event":"cmd_output","timestamp":1607098223,"output":"info] Request: 'run: %{\"branch_id\" => \"a57e05e8-4e92-4ca4-828d-05205b6f7a6d\", \"branch_name\" => \"mas"},{"event":"cmd_output","timestamp":1607098223,"output":"ter-4\", \"client_id\" => \"e4c2d5a0-acc7-49a7-bcd5-b8e403704165\", \"commit_sha\" => \"75891a4469\", \"defini"},{"event":"cmd_output","timestamp":1607098223,"output":"tion_file\" => \"\", \"hook_id\" => \"branch\", \"label\" => \"master-4\", \"organization_id\" => \"ccbfb857-f38e-"},{"event":"cmd_output","timestamp":1607098223,"output":"4bd5-9898-a785821fea82\", \"owner\" => \"rt\", \"project_id\" => \"list_latest_workflows\", \"repo_name\" => \"2"},{"event":"cmd_output","timestamp":1607098223,"output":"_basic\", \"request_token\" => \"36d389da-364b-11eb-a3dc-5254005464e2\", \"requester_id\" => \"8c5df7c3-eb11"},{"event":"cmd_output","timestamp":1607098223,"output":"-4433-8ab8-3c45d339b36d\", \"service\" => \"local\", \"snapshot_id\" => \"\", \"suppressed_attributes\" => [\"ac"},{"event":"cmd_output","timestamp":1607098223,"output":"cess_token\", \"client_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"3d59d823-7199-454a-8d13-fda6115"},{"event":"cmd_output","timestamp":1607098223,"output":"15d3f\"}\n\u001b[0m\u001b[22m\n16:10:23.552 [info] ppl_id: 01a5ce37-52c9-4069-bdb1-27f51289e77e, type: PplRequ"},{"event":"cmd_output","timestamp":1607098223,"output":"ests, event: persisted schedule request with request_token: 36d389da-364b-11eb-a3dc-5254005464e2, or"},{"event":"cmd_output","timestamp":1607098223,"output":"igin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:23"},{"event":"cmd_output","timestamp":1607098223,"output":".555 [info] ppl_id: 01a5ce37-52c9-4069-bdb1-27f51289e77e, type: Ppls, state: initializing, event: i"},{"event":"cmd_output","timestamp":1607098223,"output":"nitializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), "},{"event":"cmd_output","timestamp":1607098223,"output":"\n\u001b[0m\u001b[22m\n16:10:23.561 [info] Project list_latest_workflows and branch master-4latest_wf details"},{"event":"cmd_output","timestamp":1607098223,"output":" updated: \"wf_id: 3d59d823-7199-454a-8d13-fda611515d3f, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:10:23.563 [info"},{"event":"cmd_output","timestamp":1607098223,"output":"] Persisted ppl_sub_init for pipeline with ppl_id: 01a5ce37-52c9-4069-bdb1-27f51289e77e: %Ppl.PplSu"},{"event":"cmd_output","timestamp":1607098223,"output":"bInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_tas"},{"event":"cmd_output","timestamp":1607098223,"output":"k_id: nil, error_description: nil, id: 40, in_scheduling: false, init_type: \"regular\", inserted_at: "},{"event":"cmd_output","timestamp":1607098223,"output":"~N[2020-12-04 16:10:23.561263], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"01a5ce37-52c9-4069-bdb1-27f51289e77e\", recovery_count: 0, result:"},{"event":"cmd_output","timestamp":1607098223,"output":" nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, upd"},{"event":"cmd_output","timestamp":1607098223,"output":"ated_at: ~N[2020-12-04 16:10:23.561272]}\n\u001b[0m\u001b[22m\n16:10:23.572 [info] Request: 'run: %{\"branch_i"},{"event":"cmd_output","timestamp":1607098223,"output":"d\" => \"35c0e1de-7542-4496-8ae4-e41a9314bba5\", \"branch_name\" => \"master-5\", \"client_id\" => \"46b0b539-"},{"event":"cmd_output","timestamp":1607098223,"output":"157f-42d1-9a9d-ce4f260d66dd\", \"commit_sha\" => \"75891a4469\", \"definition_file\" => \"\", \"hook_id\" => \"b"},{"event":"cmd_output","timestamp":1607098223,"output":"ranch\", \"label\" => \"master-5\", \"organization_id\" => \"eeb6fe95-fef8-4c8b-99b3-26e9d4efab63\", \"owner\" "},{"event":"cmd_output","timestamp":1607098223,"output":"=> \"rt\", \"project_id\" => \"list_latest_workflows\", \"repo_name\" => \"2_basic\", \"request_token\" => \"36da"},{"event":"cmd_output","timestamp":1607098223,"output":"cef2-364b-11eb-bc84-5254005464e2\", \"requester_id\" => \"f23bc061-a4af-4c84-bcf2-a7f774cd0060\", \"servic"},{"event":"cmd_output","timestamp":1607098223,"output":"e\" => \"local\", \"snapshot_id\" => \"\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"t"},{"event":"cmd_output","timestamp":1607098223,"output":"riggered_by\" => \"hook\", \"wf_id\" => \"19f65fb3-e807-45af-9328-d8db948783b4\"}\n\u001b[0m\u001b[22m\n16:10:23.596 "},{"event":"cmd_output","timestamp":1607098223,"output":"[info] ppl_id: 026dd4fe-f373-4822-b79d-5d6351d3cc75, type: PplRequests, event: persisted schedule r"},{"event":"cmd_output","timestamp":1607098223,"output":"equest with request_token: 36dacef2-364b-11eb-bc84-5254005464e2, origin: Elixir.Ppl.PplRequests.Mode"},{"event":"cmd_output","timestamp":1607098223,"output":"l.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:23.600 [info] ppl_id: 026dd4fe-f37"},{"event":"cmd_output","timestamp":1607098223,"output":"3-4822-b79d-5d6351d3cc75, type: Ppls, state: initializing, event: initializing, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098223,"output":"rigin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:23.606 [info] "},{"event":"cmd_output","timestamp":1607098223,"output":" Project list_latest_workflows and branch master-5latest_wf details updated: \"wf_id: 19f65fb3-e807-4"},{"event":"cmd_output","timestamp":1607098223,"output":"5af-9328-d8db948783b4, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:10:23.608 [info] Persisted ppl_sub_init for pip"},{"event":"cmd_output","timestamp":1607098223,"output":"eline with ppl_id: 026dd4fe-f373-4822-b79d-5d6351d3cc75: %Ppl.PplSubInits.Model.PplSubInits{__meta__"},{"event":"cmd_output","timestamp":1607098223,"output":": #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil"},{"event":"cmd_output","timestamp":1607098223,"output":", id: 41, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:10:23.606838], p"},{"event":"cmd_output","timestamp":1607098223,"output":"ipeline_requests: #Ecto.Association.NotLoaded, ppl_id:"},{"event":"cmd_output","timestamp":1607098223,"output":" \"026dd4fe-f373-4822-b79d-5d6351d3cc75\", recovery_count: 0, result: nil, result_reason: nil, state: "},{"event":"cmd_output","timestamp":1607098223,"output":"\"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:23.6"},{"event":"cmd_output","timestamp":1607098223,"output":"07325]}\n\u001b[0m\u001b[22m\n16:10:23.617 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.Initializin"},{"event":"cmd_output","timestamp":1607098223,"output":"gState with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl."},{"event":"cmd_output","timestamp":1607098223,"output":"beholder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"i"},{"event":"cmd_output","timestamp":1607098223,"output":"nitializing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_"},{"event":"cmd_output","timestamp":1607098223,"output":"state: \"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingStat"},{"event":"cmd_output","timestamp":1607098223,"output":"e.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :r"},{"event":"cmd_output","timestamp":1607098223,"output":"ecovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:23.6"},{"event":"cmd_output","timestamp":1607098223,"output":"18 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.ST"},{"event":"cmd_output","timestamp":1607098223,"output":"MHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler"},{"event":"cmd_output","timestamp":1607098223,"output":"-PendingState\"]}, recurring args: %{allowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], cooli"},{"event":"cmd_output","timestamp":1607098223,"output":"ng_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publisher_cb: #Functi"},{"event":"cmd_output","timestamp":1607098223,"output":"on<0.8493005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :te"},{"event":"cmd_output","timestamp":1607098223,"output":"rminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppl"},{"event":"cmd_output","timestamp":1607098223,"output":"s, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:10:23.619 [info] Periodic from module Elixir"},{"event":"cmd_output","timestamp":1607098223,"output":".Ppl.Ppls.STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 m"},{"event":"cmd_output","timestamp":1607098223,"output":"s, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{al"},{"event":"cmd_output","timestamp":1607098223,"output":"lowed_states: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Pp"},{"event":"cmd_output","timestamp":1607098223,"output":"ls, observed_state: \"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingS"},{"event":"cmd_output","timestamp":1607098223,"output":"tate.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result,"},{"event":"cmd_output","timestamp":1607098223,"output":" :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:2"},{"event":"cmd_output","timestamp":1607098223,"output":"3.620 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl.Ppls"},{"event":"cmd_output","timestamp":1607098223,"output":".STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHand"},{"event":"cmd_output","timestamp":1607098223,"output":"ler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time"},{"event":"cmd_output","timestamp":1607098223,"output":"_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"running\", publisher_cb: #Function<0.7"},{"event":"cmd_output","timestamp":1607098223,"output":"4670282/1 in Ppl.Ppls.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :termina"},{"event":"cmd_output","timestamp":1607098223,"output":"te_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, ta"},{"event":"cmd_output","timestamp":1607098223,"output":"sk_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:10:23.621 [info] Periodic from module Elixir.Ppl."},{"event":"cmd_output","timestamp":1607098223,"output":"Ppls.STMHandler.StoppingState with name Elixir.Ppl.Ppls.STMHandler.StoppingState :: period: 100 ms, "},{"event":"cmd_output","timestamp":1607098223,"output":"metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring args: %{allo"},{"event":"cmd_output","timestamp":1607098223,"output":"wed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed"},{"event":"cmd_output","timestamp":1607098223,"output":"_state: \"stopping\", publisher_cb: #Function<0.71803493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0"},{"event":"cmd_output","timestamp":1607098223,"output":">, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_"},{"event":"cmd_output","timestamp":1607098223,"output":"count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:23.621 [info"},{"event":"cmd_output","timestamp":1607098223,"output":"] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubIn"},{"event":"cmd_output","timestamp":1607098223,"output":"its.STMHandler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubIni"},{"event":"cmd_output","timestamp":1607098223,"output":"ts-STMHandler-CreatedState\"]}, recurring args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_"},{"event":"cmd_output","timestamp":1607098223,"output":"sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"created\", publisher_cb: :"},{"event":"cmd_output","timestamp":1607098223,"output":"skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recove"},{"event":"cmd_output","timestamp":1607098223,"output":"ry_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098223,"output":"6:10:23.622 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name E"},{"event":"cmd_output","timestamp":1607098223,"output":"lixir.Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_u"},{"event":"cmd_output","timestamp":1607098223,"output":"p\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %{allowed_states: [\"regular_init\""},{"event":"cmd_output","timestamp":1607098223,"output":", \"compilation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, ob"},{"event":"cmd_output","timestamp":1607098223,"output":"served_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_reque"},{"event":"cmd_output","timestamp":1607098223,"output":"st, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubIni"},{"event":"cmd_output","timestamp":1607098223,"output":"ts, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:23.623 [info] Periodic from module Elixir.Ppl.PplSubI"},{"event":"cmd_output","timestamp":1607098223,"output":"nits.STMHandler.CompilationState with name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: per"},{"event":"cmd_output","timestamp":1607098223,"output":"iod: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]},"},{"event":"cmd_output","timestamp":1607098223,"output":" recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time"},{"event":"cmd_output","timestamp":1607098223,"output":"_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"compilation\", publisher"},{"event":"cmd_output","timestamp":1607098223,"output":"_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :"},{"event":"cmd_output","timestamp":1607098223,"output":"recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098223,"output":"22m\n16:10:23.623 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState wi"},{"event":"cmd_output","timestamp":1607098223,"output":"th name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beh"},{"event":"cmd_output","timestamp":1607098223,"output":"older-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurring args: %{allowed_states: "},{"event":"cmd_output","timestamp":1607098223,"output":"[\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"re"},{"event":"cmd_output","timestamp":1607098223,"output":"gular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_"},{"event":"cmd_output","timestamp":1607098223,"output":"at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supe"},{"event":"cmd_output","timestamp":1607098223,"output":"rvisor: :skip}\n\u001b[0m\u001b[22m\n16:10:23.624 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler"},{"event":"cmd_output","timestamp":1607098223,"output":".InitializingState with name Elixir.Ppl.PplBlocks.STMHandler.InitializingState :: period: 100 ms, me"},{"event":"cmd_output","timestamp":1607098223,"output":"tric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-InitializingState\"]}, recurring args:"},{"event":"cmd_output","timestamp":1607098223,"output":" %{allowed_states: [\"initializing\", \"waiting\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplB"},{"event":"cmd_output","timestamp":1607098223,"output":"locks.Model.PplBlocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, retu"},{"event":"cmd_output","timestamp":1607098223,"output":"rning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_inde"},{"event":"cmd_output","timestamp":1607098223,"output":"x], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:23.625 [info] "},{"event":"cmd_output","timestamp":1607098223,"output":"Periodic from module Elixir.Ppl.PplBlocks.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks.STM"},{"event":"cmd_output","timestamp":1607098223,"output":"Handler.WaitingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHa"},{"event":"cmd_output","timestamp":1607098223,"output":"ndler-WaitingState\"]}, recurring args: %{allowed_states: [\"waiting\", \"running\", \"done\"], cooling_tim"},{"event":"cmd_output","timestamp":1607098223,"output":"e_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"waiting\", publisher_cb: #Fu"},{"event":"cmd_output","timestamp":1607098223,"output":"nction<0.8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, returning: "},{"event":"cmd_output","timestamp":1607098223,"output":"[:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], sch"},{"event":"cmd_output","timestamp":1607098223,"output":"ema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:23.626 [info] Periodi"},{"event":"cmd_output","timestamp":1607098223,"output":"c from module Elixir.Ppl.PplBlocks.STMHandler.RunningState with name Elixir.Ppl.PplBlocks.STMHandler"},{"event":"cmd_output","timestamp":1607098223,"output":".RunningState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-R"},{"event":"cmd_output","timestamp":1607098223,"output":"unningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec:"},{"event":"cmd_output","timestamp":1607098223,"output":" -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"running\", publisher_cb: #Functio"},{"event":"cmd_output","timestamp":1607098223,"output":"n<0.28166834/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id"},{"event":"cmd_output","timestamp":1607098223,"output":", :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_i"},{"event":"cmd_output","timestamp":1607098223,"output":"d], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:23.626 [info] "},{"event":"cmd_output","timestamp":1607098223,"output":"Periodic from module Elixir.Ppl.PplBlocks.STMHandler.StoppingState with name Elixir.Ppl.PplBlocks.ST"},{"event":"cmd_output","timestamp":1607098223,"output":"MHandler.StoppingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STM"},{"event":"cmd_output","timestamp":1607098223,"output":"Handler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: "},{"event":"cmd_output","timestamp":1607098223,"output":"-2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"stopping\", publisher_cb: #Functio"},{"event":"cmd_output","timestamp":1607098223,"output":"n<0.104215991/1 in Ppl.PplBlocks.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:"},{"event":"cmd_output","timestamp":1607098223,"output":"id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block"},{"event":"cmd_output","timestamp":1607098223,"output":"_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:23.627 [info]"},{"event":"cmd_output","timestamp":1607098223,"output":" Periodic from module Elixir.Block.Blocks.STMHandler.InitializingState with name Elixir.Block.Block"},{"event":"cmd_output","timestamp":1607098223,"output":"s.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Bloc"},{"event":"cmd_output","timestamp":1607098223,"output":"ks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_t"},{"event":"cmd_output","timestamp":1607098223,"output":"ime_sec: 0, initial_query: Block.Blocks.Model.Blocks, observed_state: \"initializing\", publisher_cb: "},{"event":"cmd_output","timestamp":1607098223,"output":":skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_cou"},{"event":"cmd_output","timestamp":1607098223,"output":"nt, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:23.627 "},{"event":"cmd_output","timestamp":1607098223,"output":"[info] Periodic from module Elixir.Block.Blocks.STMHandler.RunningState with name Elixir.Block.Bloc"},{"event":"cmd_output","timestamp":1607098223,"output":"ks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-S"},{"event":"cmd_output","timestamp":1607098223,"output":"TMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], coolin"},{"event":"cmd_output","timestamp":1607098223,"output":"g_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"running\", publisher_cb: :"},{"event":"cmd_output","timestamp":1607098223,"output":"skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_coun"},{"event":"cmd_output","timestamp":1607098223,"output":"t, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:23.627 ["},{"event":"cmd_output","timestamp":1607098223,"output":"info] Periodic from module Elixir.Block.Blocks.STMHandler.StoppingState with name Elixir.Block.Bloc"},{"event":"cmd_output","timestamp":1607098223,"output":"ks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-"},{"event":"cmd_output","timestamp":1607098223,"output":"STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_se"},{"event":"cmd_output","timestamp":1607098223,"output":"c: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"stopping\", publisher_cb: :skip, re"},{"event":"cmd_output","timestamp":1607098223,"output":"po: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :bloc"},{"event":"cmd_output","timestamp":1607098223,"output":"k_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:23.628 [info] P"},{"event":"cmd_output","timestamp":1607098223,"output":"eriodic from module Elixir.Block.Tasks.STMHandler.PendingState with name Elixir.Block.Tasks.STMHandl"},{"event":"cmd_output","timestamp":1607098223,"output":"er.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-Pe"},{"event":"cmd_output","timestamp":1607098223,"output":"ndingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_q"},{"event":"cmd_output","timestamp":1607098223,"output":"uery: Block.Tasks.Model.Tasks, observed_state: \"pending\", publisher_cb: :skip, repo: Block.EctoRepo,"},{"event":"cmd_output","timestamp":1607098223,"output":" returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id, :build_reques"},{"event":"cmd_output","timestamp":1607098223,"output":"t_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:23.628 [info] Per"},{"event":"cmd_output","timestamp":1607098223,"output":"iodic from module Elixir.Block.Tasks.STMHandler.RunningState with name Elixir.Block.Tasks.STMHandler"},{"event":"cmd_output","timestamp":1607098223,"output":".RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-Runn"},{"event":"cmd_output","timestamp":1607098223,"output":"ingState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2"},{"event":"cmd_output","timestamp":1607098223,"output":", initial_query: Block.Tasks.Model.Tasks, observed_state: \"running\", publisher_cb: :skip, repo: Bloc"},{"event":"cmd_output","timestamp":1607098223,"output":"k.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], s"},{"event":"cmd_output","timestamp":1607098223,"output":"chema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:23.629 [info] Periodic fr"},{"event":"cmd_output","timestamp":1607098223,"output":"om module Elixir.Block.Tasks.STMHandler.StoppingState with name Elixir.Block.Tasks.STMHandler.Stoppi"},{"event":"cmd_output","timestamp":1607098223,"output":"ngState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-StoppingSt"},{"event":"cmd_output","timestamp":1607098223,"output":"ate\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query:"},{"event":"cmd_output","timestamp":1607098223,"output":" Block.Tasks.Model.Tasks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, ret"},{"event":"cmd_output","timestamp":1607098223,"output":"urning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Ta"},{"event":"cmd_output","timestamp":1607098223,"output":"sks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:23.753 [info] ppl_id: 74221866-6c83-4c23"},{"event":"cmd_output","timestamp":1607098223,"output":"-918c-f039ff445450, type: PplRequests, event: persisted source_args for pipeline: 74221866-6c83-4c23"},{"event":"cmd_output","timestamp":1607098223,"output":"-918c-f039ff445450, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n"},{"event":"cmd_output","timestamp":1607098223,"output":"\u001b[0m\u001b[22m\n16:10:23.756 [info] ppl_id: 74221866-6c83-4c23-918c-f039ff445450, type: PplSubInits, sta"},{"event":"cmd_output","timestamp":1607098223,"output":"te: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_ch"},{"event":"cmd_output","timestamp":1607098223,"output":"ange/1(L90), \n\u001b[0m\u001b[22m\n16:10:23.790 [info] ppl_id: 74221866-6c83-4c23-918c-f039ff445450, type: P"},{"event":"cmd_output","timestamp":1607098223,"output":"plSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.ST"},{"event":"cmd_output","timestamp":1607098223,"output":"M.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:23.838 [info] ppl_id: 74221866-6c83-4c23-918c-f0"},{"event":"cmd_output","timestamp":1607098223,"output":"39ff445450, type: PplRequests, event: persisted definition for request with request_token: 36ae7dd4-"},{"event":"cmd_output","timestamp":1607098223,"output":"364b-11eb-806e-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definiti"},{"event":"cmd_output","timestamp":1607098223,"output":"on/3(L76), \n\u001b[0m\u001b[22m\n16:10:23.855 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta_"},{"event":"cmd_output","timestamp":1607098223,"output":"_: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:10:23.853456], name: \"mas"},{"event":"cmd_output","timestamp":1607098223,"output":"ter-0-.semaphore/semaphore.yml\", organization_id: \"bf04a99c-87ae-4e9d-8696-e3fb2cb6830d\", project_id"},{"event":"cmd_output","timestamp":1607098223,"output":": \"list_latest_workflows\", queue_id: \"7af6fff0-4b4b-438b-b671-d3deb1acee02\", scope: \"project\", updat"},{"event":"cmd_output","timestamp":1607098223,"output":"ed_at: ~N[2020-12-04 16:10:23.853469], user_generated: false}}\n\u001b[0m\u001b[22m\n16:10:23.863 [info] even"},{"event":"cmd_output","timestamp":1607098223,"output":"t: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098223,"output":"\n16:10:23.863 [info] ppl_id: 74221866-6c83-4c23-918c-f039ff445450, type: PplBlocks, block_index: 0,"},{"event":"cmd_output","timestamp":1607098223,"output":" state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.R"},{"event":"cmd_output","timestamp":1607098223,"output":"egularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:23.866 [info] ppl_id: 74221866-6c83-4c23-918c-f"},{"event":"cmd_output","timestamp":1607098223,"output":"039ff445450, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count:"},{"event":"cmd_output","timestamp":1607098223,"output":" 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:23.878 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098223,"output":": d1cb87af-47a7-4e12-a38c-e22ead8748d4, type: PplRequests, event: persisted source_args for pipeline"},{"event":"cmd_output","timestamp":1607098223,"output":": d1cb87af-47a7-4e12-a38c-e22ead8748d4, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.inse"},{"event":"cmd_output","timestamp":1607098223,"output":"rt_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:23.881 [info] ppl_id: d1cb87af-47a7-4e12-a38c-e22ead8748d4, ty"},{"event":"cmd_output","timestamp":1607098223,"output":"pe: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.S"},{"event":"cmd_output","timestamp":1607098223,"output":"TM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:23.884 [info] ppl_id: 74221866-6c83-4c23-918c-f"},{"event":"cmd_output","timestamp":1607098223,"output":"039ff445450, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count"},{"event":"cmd_output","timestamp":1607098223,"output":": 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:23.886 [info] ppl_i"},{"event":"cmd_output","timestamp":1607098223,"output":"d: 74221866-6c83-4c23-918c-f039ff445450, type: Ppls, state: pending, event: exit_scheduling, recover"},{"event":"cmd_output","timestamp":1607098223,"output":"y_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:23.902 [info]"},{"event":"cmd_output","timestamp":1607098223,"output":" ppl_id: 74221866-6c83-4c23-918c-f039ff445450, type: Ppls, state: queuing, event: exit_scheduling, "},{"event":"cmd_output","timestamp":1607098223,"output":"recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:23.915"},{"event":"cmd_output","timestamp":1607098223,"output":" [info] ppl_id: 74221866-6c83-4c23-918c-f039ff445450, type: Ppls, state: running, event: exit_sched"},{"event":"cmd_output","timestamp":1607098223,"output":"uling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10"},{"event":"cmd_output","timestamp":1607098223,"output":":23.925 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"74221866-6c83-4c23-"},{"event":"cmd_output","timestamp":1607098223,"output":"918c-f039ff445450\"\n\u001b[0m\u001b[22m\n16:10:23.926 [info] ppl_id: d1cb87af-47a7-4e12-a38c-e22ead8748d4, ty"},{"event":"cmd_output","timestamp":1607098223,"output":"pe: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loop"},{"event":"cmd_output","timestamp":1607098223,"output":"er.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:23.934 [info] block_id: b766a689-ea3f-4303-"},{"event":"cmd_output","timestamp":1607098223,"output":"8740-bdde7dbe5211, type: BlockRequests, event: persisted block run request from ppl 74221866-6c83-4c"},{"event":"cmd_output","timestamp":1607098223,"output":"23-918c-f039ff445450 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.proc"},{"event":"cmd_output","timestamp":1607098223,"output":"ess_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:23.936 [info] block_id: b766a689-ea3f-4303-8740-bdde7dbe521"},{"event":"cmd_output","timestamp":1607098223,"output":"1, type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.B"},{"event":"cmd_output","timestamp":1607098223,"output":"locks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:23.942 [info] Block 0 of pipeline with "},{"event":"cmd_output","timestamp":1607098223,"output":"id: 74221866-6c83-4c23-918c-f039ff445450 scheduled in block service with id: : \"b766a689-ea3f-4303-8"},{"event":"cmd_output","timestamp":1607098223,"output":"740-bdde7dbe5211\"\n\u001b[0m\u001b[22m\n16:10:23.945 [info] ppl_id: 74221866-6c83-4c23-918c-f039ff445450, typ"},{"event":"cmd_output","timestamp":1607098223,"output":"e: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098223,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:23.952 [info] block_id: b766a689-ea"},{"event":"cmd_output","timestamp":1607098223,"output":"3f-4303-8740-bdde7dbe5211, type: BlockRequests, event: persisted build and sub_ppl details for block"},{"event":"cmd_output","timestamp":1607098223,"output":"_request: b766a689-ea3f-4303-8740-bdde7dbe5211, origin: Elixir.Block.BlockRequests.Model.BlockReques"},{"event":"cmd_output","timestamp":1607098223,"output":"tsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:23.960 [info] block_id: b766a689-ea3f-4303-8740-b"},{"event":"cmd_output","timestamp":1607098223,"output":"dde7dbe5211, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Bl"},{"event":"cmd_output","timestamp":1607098223,"output":"ocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:23.965 [info] block_id: b766a"},{"event":"cmd_output","timestamp":1607098223,"output":"689-ea3f-4303-8740-bdde7dbe5211, type: Blocks, state: running, event: exit_scheduling, recovery_coun"},{"event":"cmd_output","timestamp":1607098223,"output":"t: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:23.990 [info] ppl_"},{"event":"cmd_output","timestamp":1607098223,"output":"id: d1cb87af-47a7-4e12-a38c-e22ead8748d4, type: PplRequests, event: persisted definition for request"},{"event":"cmd_output","timestamp":1607098223,"output":" with request_token: 36b90420-364b-11eb-a92a-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplR"},{"event":"cmd_output","timestamp":1607098223,"output":"equestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:23.995 [info] block_id: b766a689-ea3f-4"},{"event":"cmd_output","timestamp":1607098223,"output":"303-8740-bdde7dbe5211, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098224,"output":"n: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:24.000 [info] Queue persisted"},{"event":"cmd_output","timestamp":1607098224,"output":": {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N"},{"event":"cmd_output","timestamp":1607098224,"output":"[2020-12-04 16:10:23.997643], name: \"master-1-.semaphore/semaphore.yml\", organization_id: \"d549e2ae-"},{"event":"cmd_output","timestamp":1607098224,"output":"7bbd-4c76-9468-6f142e37cacc\", project_id: \"list_latest_workflows\", queue_id: \"bfb6a942-ea3e-4b97-bee"},{"event":"cmd_output","timestamp":1607098224,"output":"7-b9a8906205cd\", scope: \"project\", updated_at: ~N[2020-12-04 16:10:23.997656], user_generated: false"},{"event":"cmd_output","timestamp":1607098224,"output":"}}\n\u001b[0m\u001b[22m\n16:10:24.005 [info] ppl_id: edb8fd0b-5585-4011-9b4f-7438e2333f69, type: PplRequests,"},{"event":"cmd_output","timestamp":1607098224,"output":" event: persisted source_args for pipeline: edb8fd0b-5585-4011-9b4f-7438e2333f69, origin: Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098224,"output":".PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:24.008 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098224,"output":": edb8fd0b-5585-4011-9b4f-7438e2333f69, type: PplSubInits, state: fetching, event: exit_scheduling, "},{"event":"cmd_output","timestamp":1607098224,"output":"recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:24.013"},{"event":"cmd_output","timestamp":1607098224,"output":" [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105),"},{"event":"cmd_output","timestamp":1607098224,"output":" \n\u001b[0m\u001b[22m\n16:10:24.013 [info] ppl_id: d1cb87af-47a7-4e12-a38c-e22ead8748d4, type: PplBlocks, bl"},{"event":"cmd_output","timestamp":1607098224,"output":"ock_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits"},{"event":"cmd_output","timestamp":1607098224,"output":".STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:24.016 [info] ppl_id: d1cb87af-47a"},{"event":"cmd_output","timestamp":1607098224,"output":"7-4e12-a38c-e22ead8748d4, type: PplSubInits, state: done, result: passed, event: exit_scheduling, re"},{"event":"cmd_output","timestamp":1607098224,"output":"covery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:24.028 ["},{"event":"cmd_output","timestamp":1607098224,"output":"info] ppl_id: d1cb87af-47a7-4e12-a38c-e22ead8748d4, type: PplBlocks, block_index: 0, state: waiting"},{"event":"cmd_output","timestamp":1607098224,"output":", event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90),"},{"event":"cmd_output","timestamp":1607098224,"output":" \n\u001b[0m\u001b[22m\n16:10:24.032 [info] ppl_id: d1cb87af-47a7-4e12-a38c-e22ead8748d4, type: Ppls, state: "},{"event":"cmd_output","timestamp":1607098224,"output":"pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/"},{"event":"cmd_output","timestamp":1607098224,"output":"1(L90), \n\u001b[0m\u001b[22m\n16:10:24.043 [info] ppl_id: d1cb87af-47a7-4e12-a38c-e22ead8748d4, type: Ppls, "},{"event":"cmd_output","timestamp":1607098224,"output":"state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_"},{"event":"cmd_output","timestamp":1607098224,"output":"change/1(L90), \n\u001b[0m\u001b[22m\n16:10:24.046 [info] ppl_id: edb8fd0b-5585-4011-9b4f-7438e2333f69, type:"},{"event":"cmd_output","timestamp":1607098224,"output":" PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper."},{"event":"cmd_output","timestamp":1607098224,"output":"STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:24.064 [info] ppl_id: d1cb87af-47a7-4e12-a38c-"},{"event":"cmd_output","timestamp":1607098224,"output":"e22ead8748d4, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098224,"output":"Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:24.071 [info] block_id: b766a689-ea3f-4"},{"event":"cmd_output","timestamp":1607098224,"output":"303-8740-bdde7dbe5211, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098224,"output":"Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:24.084 [info] PplBlocks WaitingS"},{"event":"cmd_output","timestamp":1607098224,"output":"tate STM is scheduling block 0 from pipeline: \"d1cb87af-47a7-4e12-a38c-e22ead8748d4\"\n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098224,"output":"10:24.084 [info] block_id: b766a689-ea3f-4303-8740-bdde7dbe5211, type: Blocks, state: done, event: "},{"event":"cmd_output","timestamp":1607098224,"output":"exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098224,"output":"22m\n16:10:24.097 [info] block_id: 532ef73c-4a26-4b07-b318-c764997b8b8f, type: BlockRequests, event"},{"event":"cmd_output","timestamp":1607098224,"output":": persisted block run request from ppl d1cb87af-47a7-4e12-a38c-e22ead8748d4 for block 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098224,"output":"xir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:24.10"},{"event":"cmd_output","timestamp":1607098224,"output":"2 [info] block_id: 532ef73c-4a26-4b07-b318-c764997b8b8f, type: Blocks, state: initializing, event: "},{"event":"cmd_output","timestamp":1607098224,"output":"initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b["},{"event":"cmd_output","timestamp":1607098224,"output":"0m\u001b[22m\n16:10:24.102 [info] ppl_id: edb8fd0b-5585-4011-9b4f-7438e2333f69, type: PplRequests, event"},{"event":"cmd_output","timestamp":1607098224,"output":": persisted definition for request with request_token: 36c3b604-364b-11eb-92e6-5254005464e2, origin:"},{"event":"cmd_output","timestamp":1607098224,"output":" Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:24.104"},{"event":"cmd_output","timestamp":1607098224,"output":" [info] ppl_id: 74221866-6c83-4c23-918c-f039ff445450, block_id: b766a689-ea3f-4303-8740-bdde7dbe521"},{"event":"cmd_output","timestamp":1607098224,"output":"1, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_co"},{"event":"cmd_output","timestamp":1607098224,"output":"unt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:24.105 [info] Bl"},{"event":"cmd_output","timestamp":1607098224,"output":"ock 0 of pipeline with id: d1cb87af-47a7-4e12-a38c-e22ead8748d4 scheduled in block service with id: "},{"event":"cmd_output","timestamp":1607098224,"output":": \"532ef73c-4a26-4b07-b318-c764997b8b8f\"\n\u001b[0m\u001b[22m\n16:10:24.108 [info] Queue persisted: {:ok, %Pp"},{"event":"cmd_output","timestamp":1607098224,"output":"l.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04"},{"event":"cmd_output","timestamp":1607098224,"output":" 16:10:24.106825], name: \"master-2-.semaphore/semaphore.yml\", organization_id: \"8752f975-63c0-407a-8"},{"event":"cmd_output","timestamp":1607098224,"output":"6d9-a1bad39a49bf\", project_id: \"list_latest_workflows\", queue_id: \"bb046d67-c800-4230-ae1c-6266a2098"},{"event":"cmd_output","timestamp":1607098224,"output":"816\", scope: \"project\", updated_at: ~N[2020-12-04 16:10:24.106834], user_generated: false}}\n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098224,"output":"2m\n16:10:24.110 [info] ppl_id: d1cb87af-47a7-4e12-a38c-e22ead8748d4, type: PplBlocks, block_index:"},{"event":"cmd_output","timestamp":1607098224,"output":" 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_st"},{"event":"cmd_output","timestamp":1607098224,"output":"ate_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:24.118 [info] block_id: 532ef73c-4a26-4b07-b318-c764997b8b8f,"},{"event":"cmd_output","timestamp":1607098224,"output":" type: BlockRequests, event: persisted build and sub_ppl details for block_request: 532ef73c-4a26-4b"},{"event":"cmd_output","timestamp":1607098224,"output":"07-b318-c764997b8b8f, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L"},{"event":"cmd_output","timestamp":1607098224,"output":"41), \n\u001b[0m\u001b[22m\n16:10:24.121 [info] ppl_id: 87dc30ef-6275-4b2b-9807-f32f91179bfe, type: PplReques"},{"event":"cmd_output","timestamp":1607098224,"output":"ts, event: persisted source_args for pipeline: 87dc30ef-6275-4b2b-9807-f32f91179bfe, origin: Elixir."},{"event":"cmd_output","timestamp":1607098224,"output":"Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:24.121 [info] eve"},{"event":"cmd_output","timestamp":1607098224,"output":"nt: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098224,"output":"\n16:10:24.121 [info] ppl_id: edb8fd0b-5585-4011-9b4f-7438e2333f69, type: PplBlocks, block_index: 0"},{"event":"cmd_output","timestamp":1607098224,"output":", state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler."},{"event":"cmd_output","timestamp":1607098224,"output":"RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:24.125 [info] block_id: 532ef73c-4a26-4b07-b31"},{"event":"cmd_output","timestamp":1607098224,"output":"8-c764997b8b8f, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block"},{"event":"cmd_output","timestamp":1607098224,"output":".Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:24.125 [info] ppl_id: 87dc"},{"event":"cmd_output","timestamp":1607098224,"output":"30ef-6275-4b2b-9807-f32f91179bfe, type: PplSubInits, state: fetching, event: exit_scheduling, recove"},{"event":"cmd_output","timestamp":1607098224,"output":"ry_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:24.126 [info"},{"event":"cmd_output","timestamp":1607098224,"output":"] ppl_id: edb8fd0b-5585-4011-9b4f-7438e2333f69, type: PplSubInits, state: done, result: passed, eve"},{"event":"cmd_output","timestamp":1607098224,"output":"nt: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b["},{"event":"cmd_output","timestamp":1607098224,"output":"0m\u001b[22m\n16:10:24.129 [info] block_id: 532ef73c-4a26-4b07-b318-c764997b8b8f, type: Blocks, state: r"},{"event":"cmd_output","timestamp":1607098224,"output":"unning, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1"},{"event":"cmd_output","timestamp":1607098224,"output":"(L90), \n\u001b[0m\u001b[22m\n16:10:24.135 [info] ppl_id: 74221866-6c83-4c23-918c-f039ff445450, type: Ppls, s"},{"event":"cmd_output","timestamp":1607098224,"output":"tate: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Imp"},{"event":"cmd_output","timestamp":1607098224,"output":"l.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:24.143 [info] ppl_id: edb8fd0b-5585-4011-9b4f-7438e23"},{"event":"cmd_output","timestamp":1607098224,"output":"33f69, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper."},{"event":"cmd_output","timestamp":1607098224,"output":"STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:24.147 [info] ppl_id: edb8fd0b-5585-4011-9b4f-"},{"event":"cmd_output","timestamp":1607098224,"output":"7438e2333f69, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_coun"},{"event":"cmd_output","timestamp":1607098224,"output":"t: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:24.159 [info] bloc"},{"event":"cmd_output","timestamp":1607098224,"output":"k_id: 532ef73c-4a26-4b07-b318-c764997b8b8f, type: Tasks, state: running, event: exit_scheduling, rec"},{"event":"cmd_output","timestamp":1607098224,"output":"overy_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:24.165 [i"},{"event":"cmd_output","timestamp":1607098224,"output":"nfo] ppl_id: 87dc30ef-6275-4b2b-9807-f32f91179bfe, type: PplSubInits, state: regular_init, event: e"},{"event":"cmd_output","timestamp":1607098224,"output":"xit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098224,"output":"2m\n16:10:24.167 [info] ppl_id: edb8fd0b-5585-4011-9b4f-7438e2333f69, type: Ppls, state: queuing, e"},{"event":"cmd_output","timestamp":1607098224,"output":"vent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n"},{"event":"cmd_output","timestamp":1607098224,"output":"\u001b[0m\u001b[22m\n16:10:24.192 [info] block_id: 532ef73c-4a26-4b07-b318-c764997b8b8f, type: Tasks, state: "},{"event":"cmd_output","timestamp":1607098224,"output":"done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098224,"output":"90), \n\u001b[0m\u001b[22m\n16:10:24.195 [info] ppl_id: edb8fd0b-5585-4011-9b4f-7438e2333f69, type: Ppls, sta"},{"event":"cmd_output","timestamp":1607098224,"output":"te: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_cha"},{"event":"cmd_output","timestamp":1607098224,"output":"nge/1(L90), \n\u001b[0m\u001b[22m\n16:10:24.211 [info] block_id: 532ef73c-4a26-4b07-b318-c764997b8b8f, type: "},{"event":"cmd_output","timestamp":1607098224,"output":"Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_s"},{"event":"cmd_output","timestamp":1607098224,"output":"tate_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:24.211 [info] PplBlocks WaitingState STM is scheduling block"},{"event":"cmd_output","timestamp":1607098224,"output":" 0 from pipeline: \"edb8fd0b-5585-4011-9b4f-7438e2333f69\"\n\u001b[0m\u001b[22m\n16:10:24.214 [info] ppl_id: 87"},{"event":"cmd_output","timestamp":1607098224,"output":"dc30ef-6275-4b2b-9807-f32f91179bfe, type: PplRequests, event: persisted definition for request with "},{"event":"cmd_output","timestamp":1607098224,"output":"request_token: 36cd662c-364b-11eb-9259-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequest"},{"event":"cmd_output","timestamp":1607098224,"output":"sQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:24.220 [info] Queue persisted: {:ok, %Ppl.Que"},{"event":"cmd_output","timestamp":1607098224,"output":"ues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:1"},{"event":"cmd_output","timestamp":1607098224,"output":"0:24.217982], name: \"master-3-.semaphore/semaphore.yml\", organization_id: \"4f21ee19-9652-4e98-b0cb-8"},{"event":"cmd_output","timestamp":1607098224,"output":"5f1ac8f74d5\", project_id: \"list_latest_workflows\", queue_id: \"80b209b1-e536-4b5e-8d3e-d1617a25aeb4\","},{"event":"cmd_output","timestamp":1607098224,"output":" scope: \"project\", updated_at: ~N[2020-12-04 16:10:24.217993], user_generated: false}}\n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098224,"output":"6:10:24.222 [info] block_id: 4b28f03d-b3d3-4e6b-ae08-bc0febdebed3, type: BlockRequests, event: pers"},{"event":"cmd_output","timestamp":1607098224,"output":"isted block run request from ppl edb8fd0b-5585-4011-9b4f-7438e2333f69 for block 0, origin: Elixir.Bl"},{"event":"cmd_output","timestamp":1607098224,"output":"ock.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:24.225 [inf"},{"event":"cmd_output","timestamp":1607098224,"output":"o] block_id: 4b28f03d-b3d3-4e6b-ae08-bc0febdebed3, type: Blocks, state: initializing, event: initia"},{"event":"cmd_output","timestamp":1607098224,"output":"lizing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098224,"output":"m\n16:10:24.231 [info] Block 0 of pipeline with id: edb8fd0b-5585-4011-9b4f-7438e2333f69 scheduled "},{"event":"cmd_output","timestamp":1607098224,"output":"in block service with id: : \"4b28f03d-b3d3-4e6b-ae08-bc0febdebed3\"\n\u001b[0m\u001b[22m\n16:10:24.231 [info] "},{"event":"cmd_output","timestamp":1607098224,"output":"event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098224,"output":"22m\n16:10:24.231 [info] ppl_id: 87dc30ef-6275-4b2b-9807-f32f91179bfe, type: PplBlocks, block_index"},{"event":"cmd_output","timestamp":1607098224,"output":": 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandl"},{"event":"cmd_output","timestamp":1607098224,"output":"er.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:24.233 [info] ppl_id: d1cb87af-47a7-4e12-a3"},{"event":"cmd_output","timestamp":1607098224,"output":"8c-e22ead8748d4, block_id: 532ef73c-4a26-4b07-b318-c764997b8b8f, type: PplBlocks, block_index: 0, st"},{"event":"cmd_output","timestamp":1607098224,"output":"ate: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl"},{"event":"cmd_output","timestamp":1607098224,"output":".log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:24.234 [info] ppl_id: 87dc30ef-6275-4b2b-9807-f32f9117"},{"event":"cmd_output","timestamp":1607098224,"output":"9bfe, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098224,"output":"gin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:24.245 [info] block_id: 4b2"},{"event":"cmd_output","timestamp":1607098224,"output":"8f03d-b3d3-4e6b-ae08-bc0febdebed3, type: BlockRequests, event: persisted build and sub_ppl details f"},{"event":"cmd_output","timestamp":1607098224,"output":"or block_request: 4b28f03d-b3d3-4e6b-ae08-bc0febdebed3, origin: Elixir.Block.BlockRequests.Model.Blo"},{"event":"cmd_output","timestamp":1607098224,"output":"ckRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:24.246 [info] ppl_id: edb8fd0b-5585-4011-"},{"event":"cmd_output","timestamp":1607098224,"output":"9b4f-7438e2333f69, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery"},{"event":"cmd_output","timestamp":1607098224,"output":"_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:24.248 [info] "},{"event":"cmd_output","timestamp":1607098224,"output":" ppl_id: 01a5ce37-52c9-4069-bdb1-27f51289e77e, type: PplRequests, event: persisted source_args for p"},{"event":"cmd_output","timestamp":1607098224,"output":"ipeline: 01a5ce37-52c9-4069-bdb1-27f51289e77e, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueri"},{"event":"cmd_output","timestamp":1607098224,"output":"es.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:24.255 [info] ppl_id: 01a5ce37-52c9-4069-bdb1-27f51289e"},{"event":"cmd_output","timestamp":1607098224,"output":"77e, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098224,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:24.258 [info] block_id: 4b28f03d-b3d3-4e"},{"event":"cmd_output","timestamp":1607098224,"output":"6b-ae08-bc0febdebed3, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098224,"output":".Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:24.259 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098224,"output":": 87dc30ef-6275-4b2b-9807-f32f91179bfe, type: Ppls, state: pending, event: exit_scheduling, recovery"},{"event":"cmd_output","timestamp":1607098224,"output":"_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:24.264 [info] "},{"event":"cmd_output","timestamp":1607098224,"output":" block_id: 4b28f03d-b3d3-4e6b-ae08-bc0febdebed3, type: Blocks, state: running, event: exit_schedulin"},{"event":"cmd_output","timestamp":1607098224,"output":"g, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:24."},{"event":"cmd_output","timestamp":1607098224,"output":"264 [info] ppl_id: 87dc30ef-6275-4b2b-9807-f32f91179bfe, type: PplBlocks, block_index: 0, state: wa"},{"event":"cmd_output","timestamp":1607098224,"output":"iting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1("},{"event":"cmd_output","timestamp":1607098224,"output":"L90), \n\u001b[0m\u001b[22m\n16:10:24.278 [info] ppl_id: 87dc30ef-6275-4b2b-9807-f32f91179bfe, type: Ppls, st"},{"event":"cmd_output","timestamp":1607098224,"output":"ate: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_ch"},{"event":"cmd_output","timestamp":1607098224,"output":"ange/1(L90), \n\u001b[0m\u001b[22m\n16:10:24.282 [info] ppl_id: d1cb87af-47a7-4e12-a38c-e22ead8748d4, type: P"},{"event":"cmd_output","timestamp":1607098224,"output":"pls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.S"},{"event":"cmd_output","timestamp":1607098224,"output":"TM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:24.305 [info] block_id: 4b28f03d-b3d3-4e6b-ae08"},{"event":"cmd_output","timestamp":1607098224,"output":"-bc0febdebed3, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098224,"output":"r.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:24.310 [info] ppl_id: 01a5ce37-52c9-4"},{"event":"cmd_output","timestamp":1607098224,"output":"069-bdb1-27f51289e77e, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_coun"},{"event":"cmd_output","timestamp":1607098224,"output":"t: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:24.310 [info] ppl_"},{"event":"cmd_output","timestamp":1607098224,"output":"id: 87dc30ef-6275-4b2b-9807-f32f91179bfe, type: Ppls, state: running, event: exit_scheduling, recove"},{"event":"cmd_output","timestamp":1607098224,"output":"ry_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:24.325 [info"},{"event":"cmd_output","timestamp":1607098224,"output":"] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"87dc30ef-6275-4b2b-9807-f32f9117"},{"event":"cmd_output","timestamp":1607098224,"output":"9bfe\"\n\u001b[0m\u001b[22m\n16:10:24.336 [info] block_id: 8a87fc0c-8601-49df-ba36-0724d8956bb5, type: BlockRe"},{"event":"cmd_output","timestamp":1607098224,"output":"quests, event: persisted block run request from ppl 87dc30ef-6275-4b2b-9807-f32f91179bfe for block 0"},{"event":"cmd_output","timestamp":1607098224,"output":", origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098224,"output":"\n16:10:24.341 [info] block_id: 8a87fc0c-8601-49df-ba36-0724d8956bb5, type: Blocks, state: initiali"},{"event":"cmd_output","timestamp":1607098224,"output":"zing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert"},{"event":"cmd_output","timestamp":1607098224,"output":"/1(L43), \n\u001b[0m\u001b[22m\n16:10:24.345 [info] Block 0 of pipeline with id: 87dc30ef-6275-4b2b-9807-f32f"},{"event":"cmd_output","timestamp":1607098224,"output":"91179bfe scheduled in block service with id: : \"8a87fc0c-8601-49df-ba36-0724d8956bb5\"\n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098224,"output":":10:24.349 [info] ppl_id: 87dc30ef-6275-4b2b-9807-f32f91179bfe, type: PplBlocks, block_index: 0, st"},{"event":"cmd_output","timestamp":1607098224,"output":"ate: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_ch"},{"event":"cmd_output","timestamp":1607098224,"output":"ange/1(L90), \n\u001b[0m\u001b[22m\n16:10:24.351 [info] block_id: 8a87fc0c-8601-49df-ba36-0724d8956bb5, type:"},{"event":"cmd_output","timestamp":1607098224,"output":" BlockRequests, event: persisted build and sub_ppl details for block_request: 8a87fc0c-8601-49df-ba3"},{"event":"cmd_output","timestamp":1607098224,"output":"6-0724d8956bb5, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \r"},{"event":"cmd_output","timestamp":1607098224,"output":"\n\u001b[0m\u001b[22m\n16:10:24.355 [info] block_id: 8a87fc0c-8601-49df-ba36-0724d8956bb5, type: Tasks, state:"},{"event":"cmd_output","timestamp":1607098224,"output":" pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingStat"},{"event":"cmd_output","timestamp":1607098224,"output":"e.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:24.359 [info] block_id: 8a87fc0c-8601-49df-ba36-0724d8956bb5,"},{"event":"cmd_output","timestamp":1607098224,"output":" type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM."},{"event":"cmd_output","timestamp":1607098224,"output":"Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:24.371 [info] ppl_id: 026dd4fe-f373-4822-b79d-5d63"},{"event":"cmd_output","timestamp":1607098224,"output":"51d3cc75, type: PplRequests, event: persisted source_args for pipeline: 026dd4fe-f373-4822-b79d-5d63"},{"event":"cmd_output","timestamp":1607098224,"output":"51d3cc75, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098224,"output":"\n16:10:24.376 [info] ppl_id: 026dd4fe-f373-4822-b79d-5d6351d3cc75, type: PplSubInits, state: fetchi"},{"event":"cmd_output","timestamp":1607098224,"output":"ng, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90"},{"event":"cmd_output","timestamp":1607098224,"output":"), \n\u001b[0m\u001b[22m\n16:10:24.380 [info] ppl_id: 01a5ce37-52c9-4069-bdb1-27f51289e77e, type: PplRequests"},{"event":"cmd_output","timestamp":1607098224,"output":", event: persisted definition for request with request_token: 36d389da-364b-11eb-a3dc-5254005464e2, "},{"event":"cmd_output","timestamp":1607098224,"output":"origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10"},{"event":"cmd_output","timestamp":1607098224,"output":":24.393 [info] block_id: 8a87fc0c-8601-49df-ba36-0724d8956bb5, type: Tasks, state: running, event: "},{"event":"cmd_output","timestamp":1607098224,"output":"exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098224,"output":"22m\n16:10:24.394 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Met"},{"event":"cmd_output","timestamp":1607098224,"output":"adata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:10:24.392345], name: \"master-4-.semaphore/se"},{"event":"cmd_output","timestamp":1607098224,"output":"maphore.yml\", organization_id: \"ccbfb857-f38e-4bd5-9898-a785821fea82\", project_id: \"list_latest_work"},{"event":"cmd_output","timestamp":1607098224,"output":"flows\", queue_id: \"afb9f4c6-b2d3-41bd-b5e0-1ef716b6b052\", scope: \"project\", updated_at: ~N[2020-12-0"},{"event":"cmd_output","timestamp":1607098224,"output":"4 16:10:24.392358], user_generated: false}}\n\u001b[0m\u001b[22m\n16:10:24.404 [info] event: created, origin:"},{"event":"cmd_output","timestamp":1607098224,"output":" Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:24.404 [info"},{"event":"cmd_output","timestamp":1607098224,"output":"] ppl_id: 01a5ce37-52c9-4069-bdb1-27f51289e77e, type: PplBlocks, block_index: 0, state: initializin"},{"event":"cmd_output","timestamp":1607098224,"output":"g, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all"},{"event":"cmd_output","timestamp":1607098224,"output":"_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:24.408 [info] ppl_id: 01a5ce37-52c9-4069-bdb1-27f51289e77e, type: "},{"event":"cmd_output","timestamp":1607098224,"output":"PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098224,"output":"Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:24.421 [info] block_id: 4b28f03d-b3d3-4"},{"event":"cmd_output","timestamp":1607098224,"output":"e6b-ae08-bc0febdebed3, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098224,"output":"Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:24.430 [info] ppl_id: 01a5ce37-5"},{"event":"cmd_output","timestamp":1607098224,"output":"2c9-4069-bdb1-27f51289e77e, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098224,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:24.430 [info] block_id: 4"},{"event":"cmd_output","timestamp":1607098224,"output":"b28f03d-b3d3-4e6b-ae08-bc0febdebed3, type: Blocks, state: done, event: exit_scheduling, recovery_cou"},{"event":"cmd_output","timestamp":1607098224,"output":"nt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:24.431 [info] ppl"},{"event":"cmd_output","timestamp":1607098224,"output":"_id: 01a5ce37-52c9-4069-bdb1-27f51289e77e, type: PplBlocks, block_index: 0, state: waiting, event: e"},{"event":"cmd_output","timestamp":1607098224,"output":"xit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098224,"output":"2m\n16:10:24.431 [info] ppl_id: 026dd4fe-f373-4822-b79d-5d6351d3cc75, type: PplSubInits, state: reg"},{"event":"cmd_output","timestamp":1607098224,"output":"ular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chang"},{"event":"cmd_output","timestamp":1607098224,"output":"e/1(L90), \n\u001b[0m\u001b[22m\n16:10:24.455 [info] ppl_id: edb8fd0b-5585-4011-9b4f-7438e2333f69, block_id: "},{"event":"cmd_output","timestamp":1607098224,"output":"4b28f03d-b3d3-4e6b-ae08-bc0febdebed3, type: PplBlocks, block_index: 0, state: done, result: passed, "},{"event":"cmd_output","timestamp":1607098224,"output":"event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \r"},{"event":"cmd_output","timestamp":1607098224,"output":"\n\u001b[0m\u001b[22m\n16:10:24.455 [info] ppl_id: 01a5ce37-52c9-4069-bdb1-27f51289e77e, type: Ppls, state: qu"},{"event":"cmd_output","timestamp":1607098224,"output":"euing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1("},{"event":"cmd_output","timestamp":1607098224,"output":"L90), \n\u001b[0m\u001b[22m\n16:10:24.475 [info] ppl_id: 01a5ce37-52c9-4069-bdb1-27f51289e77e, type: Ppls, st"},{"event":"cmd_output","timestamp":1607098224,"output":"ate: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_ch"},{"event":"cmd_output","timestamp":1607098224,"output":"ange/1(L90), \n\u001b[0m\u001b[22m\n16:10:24.478 [info] ppl_id: 026dd4fe-f373-4822-b79d-5d6351d3cc75, type: P"},{"event":"cmd_output","timestamp":1607098224,"output":"plRequests, event: persisted definition for request with request_token: 36dacef2-364b-11eb-bc84-5254"},{"event":"cmd_output","timestamp":1607098224,"output":"005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098224,"output":"22m\n16:10:24.483 [info] ppl_id: edb8fd0b-5585-4011-9b4f-7438e2333f69, type: Ppls, state: done, res"},{"event":"cmd_output","timestamp":1607098224,"output":"ult: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_cha"},{"event":"cmd_output","timestamp":1607098224,"output":"nge/1(L90), \n\u001b[0m\u001b[22m\n16:10:24.484 [info] PplBlocks WaitingState STM is scheduling block 0 from "},{"event":"cmd_output","timestamp":1607098224,"output":"pipeline: \"01a5ce37-52c9-4069-bdb1-27f51289e77e\"\n\u001b[0m\u001b[22m\n16:10:24.486 [info] Queue persisted: {"},{"event":"cmd_output","timestamp":1607098224,"output":":ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[20"},{"event":"cmd_output","timestamp":1607098224,"output":"20-12-04 16:10:24.482666], name: \"master-5-.semaphore/semaphore.yml\", organization_id: \"eeb6fe95-fef"},{"event":"cmd_output","timestamp":1607098224,"output":"8-4c8b-99b3-26e9d4efab63\", project_id: \"list_latest_workflows\", queue_id: \"b26bc48b-ea4c-4375-9365-7"},{"event":"cmd_output","timestamp":1607098224,"output":"a00f33a24d8\", scope: \"project\", updated_at: ~N[2020-12-04 16:10:24.482677], user_generated: false}}\r"},{"event":"cmd_output","timestamp":1607098224,"output":"\n\u001b[0m\u001b[22m\n16:10:24.493 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularIn"},{"event":"cmd_output","timestamp":1607098224,"output":"itState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:24.493 [info] ppl_id: 026dd4fe-f373-4822-b79d-5d6351d3c"},{"event":"cmd_output","timestamp":1607098224,"output":"c75, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098224,"output":": Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:24.496 [inf"},{"event":"cmd_output","timestamp":1607098224,"output":"o] block_id: c6a2cb20-4e93-45db-974f-4b2da273663b, type: BlockRequests, event: persisted block run "},{"event":"cmd_output","timestamp":1607098224,"output":"request from ppl 01a5ce37-52c9-4069-bdb1-27f51289e77e for block 0, origin: Elixir.Block.BlockRequest"},{"event":"cmd_output","timestamp":1607098224,"output":"s.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:24.496 [info] ppl_id: 026d"},{"event":"cmd_output","timestamp":1607098224,"output":"d4fe-f373-4822-b79d-5d6351d3cc75, type: PplSubInits, state: done, result: passed, event: exit_schedu"},{"event":"cmd_output","timestamp":1607098224,"output":"ling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:"},{"event":"cmd_output","timestamp":1607098224,"output":"24.500 [info] block_id: c6a2cb20-4e93-45db-974f-4b2da273663b, type: Blocks, state: initializing, ev"},{"event":"cmd_output","timestamp":1607098224,"output":"ent: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43),"},{"event":"cmd_output","timestamp":1607098224,"output":" \n\u001b[0m\u001b[22m\n16:10:24.502 [info] Block 0 of pipeline with id: 01a5ce37-52c9-4069-bdb1-27f51289e77e"},{"event":"cmd_output","timestamp":1607098224,"output":" scheduled in block service with id: : \"c6a2cb20-4e93-45db-974f-4b2da273663b\"\n\u001b[0m\u001b[22m\n16:10:24.5"},{"event":"cmd_output","timestamp":1607098224,"output":"05 [info] ppl_id: 026dd4fe-f373-4822-b79d-5d6351d3cc75, type: PplBlocks, block_index: 0, state: wai"},{"event":"cmd_output","timestamp":1607098224,"output":"ting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098224,"output":"90), \n\u001b[0m\u001b[22m\n16:10:24.506 [info] ppl_id: 01a5ce37-52c9-4069-bdb1-27f51289e77e, type: PplBlocks"},{"event":"cmd_output","timestamp":1607098224,"output":", block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.S"},{"event":"cmd_output","timestamp":1607098224,"output":"TM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:24.510 [info] ppl_id: 026dd4fe-f373-4822-b79d-5"},{"event":"cmd_output","timestamp":1607098224,"output":"d6351d3cc75, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098224,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:24.510 [info] block_id: c6a2cb20-4e93-45"},{"event":"cmd_output","timestamp":1607098224,"output":"db-974f-4b2da273663b, type: BlockRequests, event: persisted build and sub_ppl details for block_requ"},{"event":"cmd_output","timestamp":1607098224,"output":"est: c6a2cb20-4e93-45db-974f-4b2da273663b, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQue"},{"event":"cmd_output","timestamp":1607098224,"output":"ries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:24.513 [info] block_id: c6a2cb20-4e93-45db-974f-4b2da2"},{"event":"cmd_output","timestamp":1607098224,"output":"73663b, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks."},{"event":"cmd_output","timestamp":1607098224,"output":"STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:24.517 [info] block_id: c6a2cb20-4"},{"event":"cmd_output","timestamp":1607098224,"output":"e93-45db-974f-4b2da273663b, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098224,"output":" origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:24.522 [info] ppl_id: 0"},{"event":"cmd_output","timestamp":1607098224,"output":"26dd4fe-f373-4822-b79d-5d6351d3cc75, type: Ppls, state: queuing, event: exit_scheduling, recovery_co"},{"event":"cmd_output","timestamp":1607098224,"output":"unt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:24.548 [info] bl"},{"event":"cmd_output","timestamp":1607098224,"output":"ock_id: c6a2cb20-4e93-45db-974f-4b2da273663b, type: Tasks, state: running, event: exit_scheduling, r"},{"event":"cmd_output","timestamp":1607098224,"output":"ecovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:24.550 "},{"event":"cmd_output","timestamp":1607098224,"output":"[info] block_id: 8a87fc0c-8601-49df-ba36-0724d8956bb5, type: Tasks, state: done, event: exit_schedu"},{"event":"cmd_output","timestamp":1607098224,"output":"ling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:"},{"event":"cmd_output","timestamp":1607098224,"output":"24.555 [info] ppl_id: 026dd4fe-f373-4822-b79d-5d6351d3cc75, type: Ppls, state: running, event: exit"},{"event":"cmd_output","timestamp":1607098224,"output":"_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098224,"output":"\n16:10:24.561 [info] block_id: 8a87fc0c-8601-49df-ba36-0724d8956bb5, type: Blocks, state: done, eve"},{"event":"cmd_output","timestamp":1607098224,"output":"nt: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b["},{"event":"cmd_output","timestamp":1607098224,"output":"0m\u001b[22m\n16:10:24.562 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"026dd"},{"event":"cmd_output","timestamp":1607098224,"output":"4fe-f373-4822-b79d-5d6351d3cc75\"\n\u001b[0m\u001b[22m\n16:10:24.571 [info] block_id: df1544b4-8c7f-4187-8f1e-"},{"event":"cmd_output","timestamp":1607098224,"output":"e7cf241690bc, type: BlockRequests, event: persisted block run request from ppl 026dd4fe-f373-4822-b7"},{"event":"cmd_output","timestamp":1607098224,"output":"9d-5d6351d3cc75 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_r"},{"event":"cmd_output","timestamp":1607098224,"output":"esponse/4(L35), \n\u001b[0m\u001b[22m\n16:10:24.575 [info] block_id: df1544b4-8c7f-4187-8f1e-e7cf241690bc, ty"},{"event":"cmd_output","timestamp":1607098224,"output":"pe: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks"},{"event":"cmd_output","timestamp":1607098224,"output":".Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:24.581 [info] Block 0 of pipeline with id: 0"},{"event":"cmd_output","timestamp":1607098224,"output":"26dd4fe-f373-4822-b79d-5d6351d3cc75 scheduled in block service with id: : \"df1544b4-8c7f-4187-8f1e-e"},{"event":"cmd_output","timestamp":1607098224,"output":"7cf241690bc\"\n\u001b[0m\u001b[22m\n16:10:24.588 [info] ppl_id: 026dd4fe-f373-4822-b79d-5d6351d3cc75, type: Pp"},{"event":"cmd_output","timestamp":1607098224,"output":"lBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098224,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:24.588 [info] ppl_id: 87dc30ef-6275-4b2b"},{"event":"cmd_output","timestamp":1607098224,"output":"-9807-f32f91179bfe, block_id: 8a87fc0c-8601-49df-ba36-0724d8956bb5, type: PplBlocks, block_index: 0,"},{"event":"cmd_output","timestamp":1607098224,"output":" state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.I"},{"event":"cmd_output","timestamp":1607098224,"output":"mpl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:24.590 [info] block_id: df1544b4-8c7f-4187-8f1e-e7c"},{"event":"cmd_output","timestamp":1607098224,"output":"f241690bc, type: BlockRequests, event: persisted build and sub_ppl details for block_request: df1544"},{"event":"cmd_output","timestamp":1607098224,"output":"b4-8c7f-4187-8f1e-e7cf241690bc, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert"},{"event":"cmd_output","timestamp":1607098224,"output":"_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:24.593 [info] block_id: df1544b4-8c7f-4187-8f1e-e7cf241690bc, typ"},{"event":"cmd_output","timestamp":1607098224,"output":"e: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler."},{"event":"cmd_output","timestamp":1607098224,"output":"InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:24.599 [info] block_id: df1544b4-8c7f-4187-8f"},{"event":"cmd_output","timestamp":1607098224,"output":"1e-e7cf241690bc, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098224,"output":"ixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:24.622 [info] block_id: df1544b4-8"},{"event":"cmd_output","timestamp":1607098224,"output":"c7f-4187-8f1e-e7cf241690bc, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098224,"output":"origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:24.630 [info] ppl_id: 87"},{"event":"cmd_output","timestamp":1607098224,"output":"dc30ef-6275-4b2b-9807-f32f91179bfe, type: Ppls, state: done, result: passed, event: exit_scheduling,"},{"event":"cmd_output","timestamp":1607098224,"output":" recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:24.66"},{"event":"cmd_output","timestamp":1607098224,"output":"0 [info] block_id: c6a2cb20-4e93-45db-974f-4b2da273663b, type: Tasks, state: done, event: exit_sche"},{"event":"cmd_output","timestamp":1607098224,"output":"duling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098224,"output":"0:24.667 [info] block_id: c6a2cb20-4e93-45db-974f-4b2da273663b, type: Blocks, state: done, event: e"},{"event":"cmd_output","timestamp":1607098224,"output":"xit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098224,"output":"2m\n16:10:24.676 [info] ppl_id: 01a5ce37-52c9-4069-bdb1-27f51289e77e, block_id: c6a2cb20-4e93-45db-"},{"event":"cmd_output","timestamp":1607098224,"output":"974f-4b2da273663b, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_schedul"},{"event":"cmd_output","timestamp":1607098224,"output":"ing, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:2"},{"event":"cmd_output","timestamp":1607098224,"output":"4.690 [info] ppl_id: 01a5ce37-52c9-4069-bdb1-27f51289e77e, type: Ppls, state: done, result: passed,"},{"event":"cmd_output","timestamp":1607098224,"output":" event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), "},{"event":"cmd_output","timestamp":1607098224,"output":"\n\u001b[0m\u001b[22m\n16:10:24.773 [info] block_id: df1544b4-8c7f-4187-8f1e-e7cf241690bc, type: Tasks, state"},{"event":"cmd_output","timestamp":1607098224,"output":": done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1"},{"event":"cmd_output","timestamp":1607098224,"output":"(L90), \n\u001b[0m\u001b[22m\n16:10:24.793 [info] block_id: df1544b4-8c7f-4187-8f1e-e7cf241690bc, type: Block"},{"event":"cmd_output","timestamp":1607098224,"output":"s, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_"},{"event":"cmd_output","timestamp":1607098224,"output":"change/1(L90), \n\u001b[0m\u001b[22m\n16:10:24.802 [info] ppl_id: 026dd4fe-f373-4822-b79d-5d6351d3cc75, block"},{"event":"cmd_output","timestamp":1607098224,"output":"_id: df1544b4-8c7f-4187-8f1e-e7cf241690bc, type: PplBlocks, block_index: 0, state: done, result: pas"},{"event":"cmd_output","timestamp":1607098224,"output":"sed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L9"},{"event":"cmd_output","timestamp":1607098224,"output":"0), \n\u001b[0m\u001b[22m\n16:10:24.823 [info] ppl_id: 026dd4fe-f373-4822-b79d-5d6351d3cc75, type: Ppls, stat"},{"event":"cmd_output","timestamp":1607098224,"output":"e: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.l"},{"event":"cmd_output","timestamp":1607098224,"output":"og_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test gRPC list_latest_workflows() - successfully walk the li"},{"event":"cmd_output","timestamp":1607098224,"output":"st in both directions (1793.7ms)\u001b[0m\n * test gRPC list() - filter by created_before(after)\r * tes"},{"event":"cmd_output","timestamp":1607098224,"output":"t gRPC list() - filter by created_before(after) (skipped)\n * test gRPC list_latest_workflows() - f"},{"event":"cmd_output","timestamp":1607098224,"output":"ails when project_id is omitted\r * test gRPC list_latest_workflows() - fails when project_id is omi"},{"event":"cmd_output","timestamp":1607098224,"output":"tted (skipped)\n * test gRPC describe() - failes when wf_id is omitted\r * test gRPC describe() - f"},{"event":"cmd_output","timestamp":1607098224,"output":"ailes when wf_id is omitted (skipped)\n * test gRPC list_latest_workflows() - returns latest workfl"},{"event":"cmd_output","timestamp":1607098225,"output":"ow per distinct label when given valid params\u001b[22m\n16:10:25.043 [info] Request: 'run: %{\"branch_id"},{"event":"cmd_output","timestamp":1607098225,"output":"\" => \"0156633b-defa-4843-ad30-50c927ba2049\", \"branch_name\" => \"master-0\", \"client_id\" => \"931a562e-6"},{"event":"cmd_output","timestamp":1607098225,"output":"833-4df1-8315-696b6f46364e\", \"commit_sha\" => \"75891a4469\", \"definition_file\" => \"\", \"hook_id\" => \"br"},{"event":"cmd_output","timestamp":1607098225,"output":"anch\", \"label\" => \"master-0\", \"organization_id\" => \"f698ed1c-e751-477e-87e9-3da85a73f016\", \"owner\" ="},{"event":"cmd_output","timestamp":1607098225,"output":"> \"rt\", \"project_id\" => \"list_latest_workflows\", \"repo_name\" => \"2_basic\", \"request_token\" => \"37ba9"},{"event":"cmd_output","timestamp":1607098225,"output":"7c6-364b-11eb-bdfd-5254005464e2\", \"requester_id\" => \"b0eb046c-b69c-4bf8-bfab-982a8d581679\", \"service"},{"event":"cmd_output","timestamp":1607098225,"output":"\" => \"local\", \"snapshot_id\" => \"\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"tr"},{"event":"cmd_output","timestamp":1607098225,"output":"iggered_by\" => \"hook\", \"wf_id\" => \"c9aacc56-20df-4dc7-81ea-5627cf29d0e2\"}\n\u001b[0m\u001b[22m\n16:10:25.087 ["},{"event":"cmd_output","timestamp":1607098225,"output":"info] ppl_id: f5396772-58c0-481c-8130-725aacbff447, type: PplRequests, event: persisted schedule re"},{"event":"cmd_output","timestamp":1607098225,"output":"quest with request_token: 37ba97c6-364b-11eb-bdfd-5254005464e2, origin: Elixir.Ppl.PplRequests.Model"},{"event":"cmd_output","timestamp":1607098225,"output":".PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:25.092 [info] ppl_id: f5396772-58c0"},{"event":"cmd_output","timestamp":1607098225,"output":"-481c-8130-725aacbff447, type: Ppls, state: initializing, event: initializing, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098225,"output":"igin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:25.096 [info] "},{"event":"cmd_output","timestamp":1607098225,"output":"Project list_latest_workflows and branch master-0latest_wf details updated: \"wf_id: c9aacc56-20df-4d"},{"event":"cmd_output","timestamp":1607098225,"output":"c7-81ea-5627cf29d0e2, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:10:25.098 [info] Persisted ppl_sub_init for pipe"},{"event":"cmd_output","timestamp":1607098225,"output":"line with ppl_id: f5396772-58c0-481c-8130-725aacbff447: %Ppl.PplSubInits.Model.PplSubInits{__meta__:"},{"event":"cmd_output","timestamp":1607098225,"output":" #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil,"},{"event":"cmd_output","timestamp":1607098225,"output":" id: 42, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:10:25.096862], pi"},{"event":"cmd_output","timestamp":1607098225,"output":"peline_requests: #Ecto.Association.NotLoaded, ppl_id: "},{"event":"cmd_output","timestamp":1607098225,"output":"\"f5396772-58c0-481c-8130-725aacbff447\", recovery_count: 0, result: nil, result_reason: nil, state: \""},{"event":"cmd_output","timestamp":1607098225,"output":"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:25.09"},{"event":"cmd_output","timestamp":1607098225,"output":"6873]}\n\u001b[0m\u001b[22m\n16:10:25.113 [info] Request: 'run: %{\"branch_id\" => \"6bf7910e-4c7f-43f8-ae7a-cd5"},{"event":"cmd_output","timestamp":1607098225,"output":"e48682da9\", \"branch_name\" => \"master-1\", \"client_id\" => \"72b1221a-a5b2-4ff0-bd80-b74d257cc5b0\", \"com"},{"event":"cmd_output","timestamp":1607098225,"output":"mit_sha\" => \"75891a4469\", \"definition_file\" => \"\", \"hook_id\" => \"branch\", \"label\" => \"master-1\", \"or"},{"event":"cmd_output","timestamp":1607098225,"output":"ganization_id\" => \"33f7fdda-7d85-4a67-aca7-0f1c8c8c22f8\", \"owner\" => \"rt\", \"project_id\" => \"list_lat"},{"event":"cmd_output","timestamp":1607098225,"output":"est_workflows\", \"repo_name\" => \"2_basic\", \"request_token\" => \"37c56e44-364b-11eb-a0ad-5254005464e2\","},{"event":"cmd_output","timestamp":1607098225,"output":" \"requester_id\" => \"8258125d-99e5-4c83-86d7-d220b143910e\", \"service\" => \"local\", \"snapshot_id\" => \"\""},{"event":"cmd_output","timestamp":1607098225,"output":", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" =>"},{"event":"cmd_output","timestamp":1607098225,"output":" \"753e1eda-97e8-4c4a-ba28-1d9067405a3e\"}\n\u001b[0m\u001b[22m\n16:10:25.151 [info] ppl_id: 412d7e9e-9129-49cd"},{"event":"cmd_output","timestamp":1607098225,"output":"-8696-b96d8d5116ac, type: PplRequests, event: persisted schedule request with request_token: 37c56e4"},{"event":"cmd_output","timestamp":1607098225,"output":"4-364b-11eb-a0ad-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_respo"},{"event":"cmd_output","timestamp":1607098225,"output":"nse/2(L55), \n\u001b[0m\u001b[22m\n16:10:25.155 [info] ppl_id: 412d7e9e-9129-49cd-8696-b96d8d5116ac, type: Pp"},{"event":"cmd_output","timestamp":1607098225,"output":"ls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQ"},{"event":"cmd_output","timestamp":1607098225,"output":"ueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:25.160 [info] Project list_latest_workflows and"},{"event":"cmd_output","timestamp":1607098225,"output":" branch master-1latest_wf details updated: \"wf_id: 753e1eda-97e8-4c4a-ba28-1d9067405a3e, wf_number: "},{"event":"cmd_output","timestamp":1607098225,"output":"1\"\n\u001b[0m\u001b[22m\n16:10:25.162 [info] Persisted ppl_sub_init for pipeline with ppl_id: 412d7e9e-9129-4"},{"event":"cmd_output","timestamp":1607098225,"output":"9cd-8696-b96d8d5116ac: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \""},{"event":"cmd_output","timestamp":1607098225,"output":"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 43, in_scheduling: false, in"},{"event":"cmd_output","timestamp":1607098225,"output":"it_type: \"regular\", inserted_at: ~N[2020-12-04 16:10:25.160532], pipeline_requests: #Ecto.Associatio"},{"event":"cmd_output","timestamp":1607098225,"output":"n.NotLoaded, ppl_id: \"412d7e9e-9129-49cd-8696-b96d8d51"},{"event":"cmd_output","timestamp":1607098225,"output":"16ac\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil,"},{"event":"cmd_output","timestamp":1607098225,"output":" terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:25.160542]}\n\u001b[0m\u001b[22m\n16:10:25.175 ["},{"event":"cmd_output","timestamp":1607098225,"output":"info] Request: 'run: %{\"branch_id\" => \"1128a3d1-ca53-4664-b9e7-a0f0df224d9a\", \"branch_name\" => \"mas"},{"event":"cmd_output","timestamp":1607098225,"output":"ter-2\", \"client_id\" => \"afd64196-cc11-4757-a72b-7d5a51d37eb5\", \"commit_sha\" => \"75891a4469\", \"defini"},{"event":"cmd_output","timestamp":1607098225,"output":"tion_file\" => \"\", \"hook_id\" => \"branch\", \"label\" => \"master-2\", \"organization_id\" => \"825486ea-62a5-"},{"event":"cmd_output","timestamp":1607098225,"output":"48c2-8816-01df44ef3bd5\", \"owner\" => \"rt\", \"project_id\" => \"list_latest_workflows\", \"repo_name\" => \"2"},{"event":"cmd_output","timestamp":1607098225,"output":"_basic\", \"request_token\" => \"37cf0382-364b-11eb-a070-5254005464e2\", \"requester_id\" => \"36d7a3b8-7a9e"},{"event":"cmd_output","timestamp":1607098225,"output":"-438a-a551-10b6aeab3257\", \"service\" => \"local\", \"snapshot_id\" => \"\", \"suppressed_attributes\" => [\"ac"},{"event":"cmd_output","timestamp":1607098225,"output":"cess_token\", \"client_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"6df6c437-544d-44bf-bf0c-634372d"},{"event":"cmd_output","timestamp":1607098225,"output":"c217b\"}\n\u001b[0m\u001b[22m\n16:10:25.228 [info] ppl_id: f96f00e2-7b5a-45e9-8980-70ca0822092d, type: PplRequ"},{"event":"cmd_output","timestamp":1607098225,"output":"ests, event: persisted schedule request with request_token: 37cf0382-364b-11eb-a070-5254005464e2, or"},{"event":"cmd_output","timestamp":1607098225,"output":"igin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:25"},{"event":"cmd_output","timestamp":1607098225,"output":".232 [info] ppl_id: f96f00e2-7b5a-45e9-8980-70ca0822092d, type: Ppls, state: initializing, event: i"},{"event":"cmd_output","timestamp":1607098225,"output":"nitializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), "},{"event":"cmd_output","timestamp":1607098225,"output":"\n\u001b[0m\u001b[22m\n16:10:25.242 [info] Project list_latest_workflows and branch master-2latest_wf details"},{"event":"cmd_output","timestamp":1607098225,"output":" updated: \"wf_id: 6df6c437-544d-44bf-bf0c-634372dc217b, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:10:25.244 [info"},{"event":"cmd_output","timestamp":1607098225,"output":"] Persisted ppl_sub_init for pipeline with ppl_id: f96f00e2-7b5a-45e9-8980-70ca0822092d: %Ppl.PplSu"},{"event":"cmd_output","timestamp":1607098225,"output":"bInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_tas"},{"event":"cmd_output","timestamp":1607098225,"output":"k_id: nil, error_description: nil, id: 44, in_scheduling: false, init_type: \"regular\", inserted_at: "},{"event":"cmd_output","timestamp":1607098225,"output":"~N[2020-12-04 16:10:25.242582], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"f96f00e2-7b5a-45e9-8980-70ca0822092d\", recovery_count: 0, result:"},{"event":"cmd_output","timestamp":1607098225,"output":" nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, upd"},{"event":"cmd_output","timestamp":1607098225,"output":"ated_at: ~N[2020-12-04 16:10:25.242593]}\n\u001b[0m\u001b[22m\n16:10:25.257 [info] Request: 'run: %{\"branch_i"},{"event":"cmd_output","timestamp":1607098225,"output":"d\" => \"091cfbc1-5a01-4c15-a3cf-3c5d25b125d9\", \"branch_name\" => \"master-3\", \"client_id\" => \"b7ca83fe-"},{"event":"cmd_output","timestamp":1607098225,"output":"b4b6-4187-86a1-26f24be77f30\", \"commit_sha\" => \"75891a4469\", \"definition_file\" => \"\", \"hook_id\" => \"b"},{"event":"cmd_output","timestamp":1607098225,"output":"ranch\", \"label\" => \"master-3\", \"organization_id\" => \"e0633a04-53a9-49d0-8625-62e1ae96d34b\", \"owner\" "},{"event":"cmd_output","timestamp":1607098225,"output":"=> \"rt\", \"project_id\" => \"list_latest_workflows\", \"repo_name\" => \"2_basic\", \"request_token\" => \"37db"},{"event":"cmd_output","timestamp":1607098225,"output":"a9f2-364b-11eb-b41e-5254005464e2\", \"requester_id\" => \"fe015c4c-5a38-4b21-817c-333791d60d3a\", \"servic"},{"event":"cmd_output","timestamp":1607098225,"output":"e\" => \"local\", \"snapshot_id\" => \"\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"t"},{"event":"cmd_output","timestamp":1607098225,"output":"riggered_by\" => \"hook\", \"wf_id\" => \"8e241a08-82e5-457d-8337-e7ff48547ee0\"}\n\u001b[0m\u001b[22m\n16:10:25.287 "},{"event":"cmd_output","timestamp":1607098225,"output":"[info] ppl_id: f6d30615-e614-472a-9d30-db5da1993c88, type: PplRequests, event: persisted schedule r"},{"event":"cmd_output","timestamp":1607098225,"output":"equest with request_token: 37dba9f2-364b-11eb-b41e-5254005464e2, origin: Elixir.Ppl.PplRequests.Mode"},{"event":"cmd_output","timestamp":1607098225,"output":"l.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:25.289 [info] ppl_id: f6d30615-e61"},{"event":"cmd_output","timestamp":1607098225,"output":"4-472a-9d30-db5da1993c88, type: Ppls, state: initializing, event: initializing, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098225,"output":"rigin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:25.294 [info] "},{"event":"cmd_output","timestamp":1607098225,"output":" Project list_latest_workflows and branch master-3latest_wf details updated: \"wf_id: 8e241a08-82e5-4"},{"event":"cmd_output","timestamp":1607098225,"output":"57d-8337-e7ff48547ee0, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:10:25.296 [info] Persisted ppl_sub_init for pip"},{"event":"cmd_output","timestamp":1607098225,"output":"eline with ppl_id: f6d30615-e614-472a-9d30-db5da1993c88: %Ppl.PplSubInits.Model.PplSubInits{__meta__"},{"event":"cmd_output","timestamp":1607098225,"output":": #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil"},{"event":"cmd_output","timestamp":1607098225,"output":", id: 45, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:10:25.294967], p"},{"event":"cmd_output","timestamp":1607098225,"output":"ipeline_requests: #Ecto.Association.NotLoaded, ppl_id:"},{"event":"cmd_output","timestamp":1607098225,"output":" \"f6d30615-e614-472a-9d30-db5da1993c88\", recovery_count: 0, result: nil, result_reason: nil, state: "},{"event":"cmd_output","timestamp":1607098225,"output":"\"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:25.2"},{"event":"cmd_output","timestamp":1607098225,"output":"94979]}\n\u001b[0m\u001b[22m\n16:10:25.314 [info] Request: 'run: %{\"branch_id\" => \"67f0d072-fcc0-4b81-aab3-28"},{"event":"cmd_output","timestamp":1607098225,"output":"cb505367c0\", \"branch_name\" => \"master-4\", \"client_id\" => \"ac1c9e3d-c474-4af0-bd1a-0d07c95663cf\", \"co"},{"event":"cmd_output","timestamp":1607098225,"output":"mmit_sha\" => \"75891a4469\", \"definition_file\" => \"\", \"hook_id\" => \"branch\", \"label\" => \"master-4\", \"o"},{"event":"cmd_output","timestamp":1607098225,"output":"rganization_id\" => \"ada8fd2f-56a8-46b4-9e24-25af0ffee056\", \"owner\" => \"rt\", \"project_id\" => \"list_la"},{"event":"cmd_output","timestamp":1607098225,"output":"test_workflows\", \"repo_name\" => \"2_basic\", \"request_token\" => \"37e36840-364b-11eb-9595-5254005464e2\""},{"event":"cmd_output","timestamp":1607098225,"output":", \"requester_id\" => \"0becdabf-0dad-4a38-9c57-a4e4788653c0\", \"service\" => \"local\", \"snapshot_id\" => \""},{"event":"cmd_output","timestamp":1607098225,"output":"\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" ="},{"event":"cmd_output","timestamp":1607098225,"output":"> \"2a6b7ea3-d70d-4a0d-a700-531112a71383\"}\n\u001b[0m\u001b[22m\n16:10:25.345 [info] ppl_id: ddfb0ae5-8b17-454"},{"event":"cmd_output","timestamp":1607098225,"output":"1-b560-c0ea49c3c69e, type: PplRequests, event: persisted schedule request with request_token: 37e368"},{"event":"cmd_output","timestamp":1607098225,"output":"40-364b-11eb-9595-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_resp"},{"event":"cmd_output","timestamp":1607098225,"output":"onse/2(L55), \n\u001b[0m\u001b[22m\n16:10:25.348 [info] ppl_id: ddfb0ae5-8b17-4541-b560-c0ea49c3c69e, type: P"},{"event":"cmd_output","timestamp":1607098225,"output":"pls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.Ppls"},{"event":"cmd_output","timestamp":1607098225,"output":"Queries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:25.354 [info] Project list_latest_workflows an"},{"event":"cmd_output","timestamp":1607098225,"output":"d branch master-4latest_wf details updated: \"wf_id: 2a6b7ea3-d70d-4a0d-a700-531112a71383, wf_number:"},{"event":"cmd_output","timestamp":1607098225,"output":" 1\"\n\u001b[0m\u001b[22m\n16:10:25.356 [info] Persisted ppl_sub_init for pipeline with ppl_id: ddfb0ae5-8b17-"},{"event":"cmd_output","timestamp":1607098225,"output":"4541-b560-c0ea49c3c69e: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, "},{"event":"cmd_output","timestamp":1607098225,"output":"\"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 46, in_scheduling: false, i"},{"event":"cmd_output","timestamp":1607098225,"output":"nit_type: \"regular\", inserted_at: ~N[2020-12-04 16:10:25.354405], pipeline_requests: #Ecto.Associati"},{"event":"cmd_output","timestamp":1607098225,"output":"on.NotLoaded, ppl_id: \"ddfb0ae5-8b17-4541-b560-c0ea49c"},{"event":"cmd_output","timestamp":1607098225,"output":"3c69e\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil"},{"event":"cmd_output","timestamp":1607098225,"output":", terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:25.354415]}\n\u001b[0m\u001b[22m\n16:10:25.384 "},{"event":"cmd_output","timestamp":1607098225,"output":"[info] Request: 'run: %{\"branch_id\" => \"4a0edb47-f44f-42b1-a201-408e368ede83\", \"branch_name\" => \"ma"},{"event":"cmd_output","timestamp":1607098225,"output":"ster-5\", \"client_id\" => \"dc67897d-3d1c-4d29-be84-91530670b760\", \"commit_sha\" => \"75891a4469\", \"defin"},{"event":"cmd_output","timestamp":1607098225,"output":"ition_file\" => \"\", \"hook_id\" => \"branch\", \"label\" => \"master-5\", \"organization_id\" => \"4df20b80-27e8"},{"event":"cmd_output","timestamp":1607098225,"output":"-4b39-82f2-b4ba86012c2b\", \"owner\" => \"rt\", \"project_id\" => \"list_latest_workflows\", \"repo_name\" => \""},{"event":"cmd_output","timestamp":1607098225,"output":"2_basic\", \"request_token\" => \"37eccf8e-364b-11eb-8be2-5254005464e2\", \"requester_id\" => \"b6cd5bab-dd7"},{"event":"cmd_output","timestamp":1607098225,"output":"a-43dd-8515-534767b3712f\", \"service\" => \"local\", \"snapshot_id\" => \"\", \"suppressed_attributes\" => [\"a"},{"event":"cmd_output","timestamp":1607098225,"output":"ccess_token\", \"client_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"227ee8c6-11d3-41ed-a557-aa5f28"},{"event":"cmd_output","timestamp":1607098225,"output":"d6e2a1\"}\n\u001b[0m\u001b[22m\n16:10:25.414 [info] ppl_id: 85e10f98-2a77-46e9-99bc-033714d2ae8b, type: PplReq"},{"event":"cmd_output","timestamp":1607098225,"output":"uests, event: persisted schedule request with request_token: 37eccf8e-364b-11eb-8be2-5254005464e2, o"},{"event":"cmd_output","timestamp":1607098225,"output":"rigin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:2"},{"event":"cmd_output","timestamp":1607098225,"output":"5.418 [info] ppl_id: 85e10f98-2a77-46e9-99bc-033714d2ae8b, type: Ppls, state: initializing, event: "},{"event":"cmd_output","timestamp":1607098225,"output":"initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124),"},{"event":"cmd_output","timestamp":1607098225,"output":" \n\u001b[0m\u001b[22m\n16:10:25.424 [info] Project list_latest_workflows and branch master-5latest_wf detail"},{"event":"cmd_output","timestamp":1607098225,"output":"s updated: \"wf_id: 227ee8c6-11d3-41ed-a557-aa5f28d6e2a1, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:10:25.427 [inf"},{"event":"cmd_output","timestamp":1607098225,"output":"o] Persisted ppl_sub_init for pipeline with ppl_id: 85e10f98-2a77-46e9-99bc-033714d2ae8b: %Ppl.PplS"},{"event":"cmd_output","timestamp":1607098225,"output":"ubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_ta"},{"event":"cmd_output","timestamp":1607098225,"output":"sk_id: nil, error_description: nil, id: 47, in_scheduling: false, init_type: \"regular\", inserted_at:"},{"event":"cmd_output","timestamp":1607098225,"output":" ~N[2020-12-04 16:10:25.425023], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"85e10f98-2a77-46e9-99bc-033714d2ae8b\", recovery_count: 0, result"},{"event":"cmd_output","timestamp":1607098225,"output":": nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, up"},{"event":"cmd_output","timestamp":1607098225,"output":"dated_at: ~N[2020-12-04 16:10:25.425035]}\n\u001b[0m\u001b[22m\n16:10:25.439 [info] Request: 'run: %{\"branch_"},{"event":"cmd_output","timestamp":1607098225,"output":"id\" => \"6d8dee7e-251f-4313-80ee-2d70e8edcfe4\", \"branch_name\" => \"refs/tags/v1.6\", \"client_id\" => \"d3"},{"event":"cmd_output","timestamp":1607098225,"output":"561421-e3f7-4425-b5a0-4c7fa6bbe20f\", \"commit_sha\" => \"75891a4469\", \"definition_file\" => \"\", \"hook_id"},{"event":"cmd_output","timestamp":1607098225,"output":"\" => \"tag\", \"label\" => \"refs/tags/v1.6\", \"organization_id\" => \"ab92b451-8785-4a17-aeab-9462f6803183\""},{"event":"cmd_output","timestamp":1607098225,"output":", \"owner\" => \"rt\", \"project_id\" => \"list_latest_workflows\", \"repo_name\" => \"2_basic\", \"request_token"},{"event":"cmd_output","timestamp":1607098225,"output":"\" => \"37f76f98-364b-11eb-a2d1-5254005464e2\", \"requester_id\" => \"b271e290-a207-4bd2-b6e5-9689a4f1d237"},{"event":"cmd_output","timestamp":1607098225,"output":"\", \"service\" => \"local\", \"snapshot_id\" => \"\", \"suppressed_attributes\" => [\"access_token\", \"client_se"},{"event":"cmd_output","timestamp":1607098225,"output":"cret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"5af94c5e-e1ff-47c2-9430-c1e4cdde888f\"}\n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098225,"output":"10:25.471 [info] ppl_id: a8ec42e4-8ae2-4228-912a-34d54eaa5dd4, type: PplRequests, event: persisted "},{"event":"cmd_output","timestamp":1607098225,"output":"schedule request with request_token: 37f76f98-364b-11eb-a2d1-5254005464e2, origin: Elixir.Ppl.PplReq"},{"event":"cmd_output","timestamp":1607098225,"output":"uests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:25.476 [info] ppl_id: a8"},{"event":"cmd_output","timestamp":1607098225,"output":"ec42e4-8ae2-4228-912a-34d54eaa5dd4, type: Ppls, state: initializing, event: initializing, recovery_c"},{"event":"cmd_output","timestamp":1607098225,"output":"ount: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:25.4"},{"event":"cmd_output","timestamp":1607098225,"output":"84 [info] Project list_latest_workflows and tag v1.6latest_wf details updated: \"wf_id: 5af94c5e-e1f"},{"event":"cmd_output","timestamp":1607098225,"output":"f-47c2-9430-c1e4cdde888f, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:10:25.486 [info] Persisted ppl_sub_init for "},{"event":"cmd_output","timestamp":1607098225,"output":"pipeline with ppl_id: a8ec42e4-8ae2-4228-912a-34d54eaa5dd4: %Ppl.PplSubInits.Model.PplSubInits{__met"},{"event":"cmd_output","timestamp":1607098225,"output":"a__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: "},{"event":"cmd_output","timestamp":1607098225,"output":"nil, id: 48, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:10:25.484551]"},{"event":"cmd_output","timestamp":1607098225,"output":", pipeline_requests: #Ecto.Association.NotLoaded, ppl_"},{"event":"cmd_output","timestamp":1607098225,"output":"id: \"a8ec42e4-8ae2-4228-912a-34d54eaa5dd4\", recovery_count: 0, result: nil, result_reason: nil, stat"},{"event":"cmd_output","timestamp":1607098225,"output":"e: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:2"},{"event":"cmd_output","timestamp":1607098225,"output":"5.484558]}\n\u001b[0m\u001b[22m\n16:10:25.498 [info] Request: 'run: %{\"branch_id\" => \"505a1eac-16d3-4211-b95f"},{"event":"cmd_output","timestamp":1607098225,"output":"-7b6aeb2ba23b\", \"branch_name\" => \"refs/tags/v1.7\", \"client_id\" => \"72e85e7c-65f2-43a1-82ae-c7a8ffa62"},{"event":"cmd_output","timestamp":1607098225,"output":"5d5\", \"commit_sha\" => \"75891a4469\", \"definition_file\" => \"\", \"hook_id\" => \"tag\", \"label\" => \"refs/ta"},{"event":"cmd_output","timestamp":1607098225,"output":"gs/v1.7\", \"organization_id\" => \"51265280-6a58-447a-8508-ce56266dab8f\", \"owner\" => \"rt\", \"project_id\""},{"event":"cmd_output","timestamp":1607098225,"output":" => \"list_latest_workflows\", \"repo_name\" => \"2_basic\", \"request_token\" => \"38004c58-364b-11eb-b74c-5"},{"event":"cmd_output","timestamp":1607098225,"output":"254005464e2\", \"requester_id\" => \"c242abdb-6563-497a-9502-fb4caa99db92\", \"service\" => \"local\", \"snaps"},{"event":"cmd_output","timestamp":1607098225,"output":"hot_id\" => \"\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"triggered_by\" => \"hook"},{"event":"cmd_output","timestamp":1607098225,"output":"\", \"wf_id\" => \"7c1c69b6-e26c-4918-a2e5-2492369715a3\"}\n\u001b[0m\u001b[22m\n16:10:25.535 [info] ppl_id: 541b6"},{"event":"cmd_output","timestamp":1607098225,"output":"bd0-fe78-407d-b0b5-ba30acbfd3a6, type: PplRequests, event: persisted schedule request with request_t"},{"event":"cmd_output","timestamp":1607098225,"output":"oken: 38004c58-364b-11eb-b74c-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries."},{"event":"cmd_output","timestamp":1607098225,"output":"process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:25.537 [info] ppl_id: 541b6bd0-fe78-407d-b0b5-ba30acbfd"},{"event":"cmd_output","timestamp":1607098225,"output":"3a6, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098225,"output":"s.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:25.550 [info] Project list_latest_"},{"event":"cmd_output","timestamp":1607098225,"output":"workflows and tag v1.7latest_wf details updated: \"wf_id: 7c1c69b6-e26c-4918-a2e5-2492369715a3, wf_nu"},{"event":"cmd_output","timestamp":1607098225,"output":"mber: 1\"\n\u001b[0m\u001b[22m\n16:10:25.552 [info] Persisted ppl_sub_init for pipeline with ppl_id: 541b6bd0-"},{"event":"cmd_output","timestamp":1607098225,"output":"fe78-407d-b0b5-ba30acbfd3a6: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loa"},{"event":"cmd_output","timestamp":1607098225,"output":"ded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 49, in_scheduling: fal"},{"event":"cmd_output","timestamp":1607098225,"output":"se, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:10:25.550673], pipeline_requests: #Ecto.Asso"},{"event":"cmd_output","timestamp":1607098225,"output":"ciation.NotLoaded, ppl_id: \"541b6bd0-fe78-407d-b0b5-ba"},{"event":"cmd_output","timestamp":1607098225,"output":"30acbfd3a6\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request"},{"event":"cmd_output","timestamp":1607098225,"output":": nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:25.550684]}\n\u001b[0m\u001b[22m\n16:10:25"},{"event":"cmd_output","timestamp":1607098225,"output":".563 [info] Request: 'run: %{\"branch_id\" => \"5cc019ec-6714-4b10-8e78-d518631cbe75\", \"branch_name\" ="},{"event":"cmd_output","timestamp":1607098225,"output":"> \"refs/tags/v1.8\", \"client_id\" => \"d63c4336-9b78-49dc-894e-442212c458b4\", \"commit_sha\" => \"75891a44"},{"event":"cmd_output","timestamp":1607098225,"output":"69\", \"definition_file\" => \"\", \"hook_id\" => \"tag\", \"label\" => \"refs/tags/v1.8\", \"organization_id\" => "},{"event":"cmd_output","timestamp":1607098225,"output":"\"f3e0daf3-f206-4c67-af90-e13991489c74\", \"owner\" => \"rt\", \"project_id\" => \"list_latest_workflows\", \"r"},{"event":"cmd_output","timestamp":1607098225,"output":"epo_name\" => \"2_basic\", \"request_token\" => \"380a5b1c-364b-11eb-b896-5254005464e2\", \"requester_id\" =>"},{"event":"cmd_output","timestamp":1607098225,"output":" \"3c36abab-35b0-45ba-b8d8-c39ee816a81d\", \"service\" => \"local\", \"snapshot_id\" => \"\", \"suppressed_attr"},{"event":"cmd_output","timestamp":1607098225,"output":"ibutes\" => [\"access_token\", \"client_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"68586936-f618-45"},{"event":"cmd_output","timestamp":1607098225,"output":"03-9513-afb4c73e9f0f\"}\n\u001b[0m\u001b[22m\n16:10:25.588 [info] ppl_id: a5cb0326-8258-4105-8629-7906eca809d8"},{"event":"cmd_output","timestamp":1607098225,"output":", type: PplRequests, event: persisted schedule request with request_token: 380a5b1c-364b-11eb-b896-5"},{"event":"cmd_output","timestamp":1607098225,"output":"254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098225,"output":"\u001b[22m\n16:10:25.591 [info] ppl_id: a5cb0326-8258-4105-8629-7906eca809d8, type: Ppls, state: initial"},{"event":"cmd_output","timestamp":1607098225,"output":"izing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_res"},{"event":"cmd_output","timestamp":1607098225,"output":"ponse/2(L124), \n\u001b[0m\u001b[22m\n16:10:25.598 [info] Project list_latest_workflows and tag v1.8latest_wf"},{"event":"cmd_output","timestamp":1607098225,"output":" details updated: \"wf_id: 68586936-f618-4503-9513-afb4c73e9f0f, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:10:25.6"},{"event":"cmd_output","timestamp":1607098225,"output":"00 [info] Persisted ppl_sub_init for pipeline with ppl_id: a5cb0326-8258-4105-8629-7906eca809d8: %P"},{"event":"cmd_output","timestamp":1607098225,"output":"pl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, com"},{"event":"cmd_output","timestamp":1607098225,"output":"pile_task_id: nil, error_description: nil, id: 50, in_scheduling: false, init_type: \"regular\", inser"},{"event":"cmd_output","timestamp":1607098225,"output":"ted_at: ~N[2020-12-04 16:10:25.598586], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"a5cb0326-8258-4105-8629-7906eca809d8\", recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098225,"output":" result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: "},{"event":"cmd_output","timestamp":1607098225,"output":"nil, updated_at: ~N[2020-12-04 16:10:25.598597]}\n\u001b[0m\u001b[22m\n16:10:25.616 [info] Request: 'run: %{\""},{"event":"cmd_output","timestamp":1607098225,"output":"branch_id\" => \"7b517b61-bcdc-41a2-9f83-1a2a510d446b\", \"branch_name\" => \"refs/tags/v1.9\", \"client_id\""},{"event":"cmd_output","timestamp":1607098225,"output":" => \"2ac62a3f-99f4-43b8-a9b9-2d1798851aa4\", \"commit_sha\" => \"75891a4469\", \"definition_file\" => \"\", \""},{"event":"cmd_output","timestamp":1607098225,"output":"hook_id\" => \"tag\", \"label\" => \"refs/tags/v1.9\", \"organization_id\" => \"423fdbe6-d1ce-4fda-b66b-8e8d81"},{"event":"cmd_output","timestamp":1607098225,"output":"ed7aae\", \"owner\" => \"rt\", \"project_id\" => \"list_latest_workflows\", \"repo_name\" => \"2_basic\", \"reques"},{"event":"cmd_output","timestamp":1607098225,"output":"t_token\" => \"3811a75a-364b-11eb-93bf-5254005464e2\", \"requester_id\" => \"af09608c-b182-4f3e-96b9-c04cc"},{"event":"cmd_output","timestamp":1607098225,"output":"2adf361\", \"service\" => \"local\", \"snapshot_id\" => \"\", \"suppressed_attributes\" => [\"access_token\", \"cl"},{"event":"cmd_output","timestamp":1607098225,"output":"ient_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"e03a7561-0272-400c-b047-08c12ed7e849\"}\n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098225,"output":"2m\n16:10:25.641 [info] ppl_id: 0eb6501c-842d-40eb-8c2b-b346bf437ff8, type: PplRequests, event: per"},{"event":"cmd_output","timestamp":1607098225,"output":"sisted schedule request with request_token: 3811a75a-364b-11eb-93bf-5254005464e2, origin: Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098225,"output":".PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:25.645 [info] ppl"},{"event":"cmd_output","timestamp":1607098225,"output":"_id: 0eb6501c-842d-40eb-8c2b-b346bf437ff8, type: Ppls, state: initializing, event: initializing, rec"},{"event":"cmd_output","timestamp":1607098225,"output":"overy_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098225,"output":"10:25.652 [info] Project list_latest_workflows and tag v1.9latest_wf details updated: \"wf_id: e03a7"},{"event":"cmd_output","timestamp":1607098225,"output":"561-0272-400c-b047-08c12ed7e849, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:10:25.654 [info] Persisted ppl_sub_in"},{"event":"cmd_output","timestamp":1607098225,"output":"it for pipeline with ppl_id: 0eb6501c-842d-40eb-8c2b-b346bf437ff8: %Ppl.PplSubInits.Model.PplSubInit"},{"event":"cmd_output","timestamp":1607098225,"output":"s{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_descri"},{"event":"cmd_output","timestamp":1607098225,"output":"ption: nil, id: 51, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:10:25."},{"event":"cmd_output","timestamp":1607098225,"output":"653531], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"0eb6501c-842d-40eb-8c2b-b346bf437ff8\", recovery_count: 0, result: nil, result_reason: ni"},{"event":"cmd_output","timestamp":1607098225,"output":"l, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 "},{"event":"cmd_output","timestamp":1607098225,"output":"16:10:25.653538]}\n\u001b[0m\u001b[22m\n16:10:25.666 [info] Request: 'run: %{\"branch_id\" => \"5ca01a7b-7859-43"},{"event":"cmd_output","timestamp":1607098225,"output":"8d-ae9c-1611bee610e3\", \"branch_name\" => \"refs/tags/v1.10\", \"client_id\" => \"76ef4c7d-8e81-4d06-a0d8-c"},{"event":"cmd_output","timestamp":1607098225,"output":"a600dc3bb53\", \"commit_sha\" => \"75891a4469\", \"definition_file\" => \"\", \"hook_id\" => \"tag\", \"label\" => "},{"event":"cmd_output","timestamp":1607098225,"output":"\"refs/tags/v1.10\", \"organization_id\" => \"f7fe9682-a292-437c-9526-2b7f37f883f0\", \"owner\" => \"rt\", \"pr"},{"event":"cmd_output","timestamp":1607098225,"output":"oject_id\" => \"list_latest_workflows\", \"repo_name\" => \"2_basic\", \"request_token\" => \"381a376c-364b-11"},{"event":"cmd_output","timestamp":1607098225,"output":"eb-a96c-5254005464e2\", \"requester_id\" => \"05d46c4a-bbea-4f66-96fa-243730a1e476\", \"service\" => \"local"},{"event":"cmd_output","timestamp":1607098225,"output":"\", \"snapshot_id\" => \"\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"triggered_by\""},{"event":"cmd_output","timestamp":1607098225,"output":" => \"hook\", \"wf_id\" => \"fa8a5b73-6002-4fcb-adc9-b9b88275457d\"}\n\u001b[0m\u001b[22m\n16:10:25.697 [info] ppl_"},{"event":"cmd_output","timestamp":1607098225,"output":"id: 2ad8f743-eb7f-4f0d-bf04-d2673b0b326e, type: PplRequests, event: persisted schedule request with "},{"event":"cmd_output","timestamp":1607098225,"output":"request_token: 381a376c-364b-11eb-a96c-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequest"},{"event":"cmd_output","timestamp":1607098225,"output":"sQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:25.700 [info] ppl_id: 2ad8f743-eb7f-4f0d-bf04-"},{"event":"cmd_output","timestamp":1607098225,"output":"d2673b0b326e, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098225,"output":"r.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:25.705 [info] Project lis"},{"event":"cmd_output","timestamp":1607098225,"output":"t_latest_workflows and tag v1.10latest_wf details updated: \"wf_id: fa8a5b73-6002-4fcb-adc9-b9b882754"},{"event":"cmd_output","timestamp":1607098225,"output":"57d, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:10:25.707 [info] Persisted ppl_sub_init for pipeline with ppl_id:"},{"event":"cmd_output","timestamp":1607098225,"output":" 2ad8f743-eb7f-4f0d-bf04-d2673b0b326e: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Met"},{"event":"cmd_output","timestamp":1607098225,"output":"adata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 52, in_sched"},{"event":"cmd_output","timestamp":1607098225,"output":"uling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:10:25.705588], pipeline_requests: "},{"event":"cmd_output","timestamp":1607098225,"output":"#Ecto.Association.NotLoaded, ppl_id: \"2ad8f743-eb7f-4f"},{"event":"cmd_output","timestamp":1607098225,"output":"0d-bf04-d2673b0b326e\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", termina"},{"event":"cmd_output","timestamp":1607098225,"output":"te_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:25.705597]}\n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098225,"output":"\n16:10:25.719 [info] Request: 'run: %{\"branch_id\" => \"bdabfa8a-a04d-4af7-a9a2-235aecdfb531\", \"bran"},{"event":"cmd_output","timestamp":1607098225,"output":"ch_name\" => \"refs/tags/v1.11\", \"client_id\" => \"54a94d8e-067a-4e7c-b36e-3d843b049e09\", \"commit_sha\" ="},{"event":"cmd_output","timestamp":1607098225,"output":"> \"75891a4469\", \"definition_file\" => \"\", \"hook_id\" => \"tag\", \"label\" => \"refs/tags/v1.11\", \"organiza"},{"event":"cmd_output","timestamp":1607098225,"output":"tion_id\" => \"7a25c8c5-16ee-44cd-8517-550404a3a571\", \"owner\" => \"rt\", \"project_id\" => \"list_latest_wo"},{"event":"cmd_output","timestamp":1607098225,"output":"rkflows\", \"repo_name\" => \"2_basic\", \"request_token\" => \"38225924-364b-11eb-a771-5254005464e2\", \"requ"},{"event":"cmd_output","timestamp":1607098225,"output":"ester_id\" => \"e3d6e94e-c1cc-4339-8173-d3555a5d5986\", \"service\" => \"local\", \"snapshot_id\" => \"\", \"sup"},{"event":"cmd_output","timestamp":1607098225,"output":"pressed_attributes\" => [\"access_token\", \"client_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"f185"},{"event":"cmd_output","timestamp":1607098225,"output":"b1c4-d22d-4a63-a846-6ca53e9df193\"}\n\u001b[0m\u001b[22m\n16:10:25.754 [info] ppl_id: 36f110fc-b9d0-4a09-9976-"},{"event":"cmd_output","timestamp":1607098225,"output":"cc956a044f8e, type: PplRequests, event: persisted schedule request with request_token: 38225924-364b"},{"event":"cmd_output","timestamp":1607098225,"output":"-11eb-a771-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2("},{"event":"cmd_output","timestamp":1607098225,"output":"L55), \n\u001b[0m\u001b[22m\n16:10:25.758 [info] ppl_id: 36f110fc-b9d0-4a09-9976-cc956a044f8e, type: Ppls, st"},{"event":"cmd_output","timestamp":1607098225,"output":"ate: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries"},{"event":"cmd_output","timestamp":1607098225,"output":".process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:25.762 [info] Project list_latest_workflows and tag v"},{"event":"cmd_output","timestamp":1607098225,"output":"1.11latest_wf details updated: \"wf_id: f185b1c4-d22d-4a63-a846-6ca53e9df193, wf_number: 1\"\n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098225,"output":"m\n16:10:25.764 [info] Persisted ppl_sub_init for pipeline with ppl_id: 36f110fc-b9d0-4a09-9976-cc9"},{"event":"cmd_output","timestamp":1607098225,"output":"56a044f8e: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub"},{"event":"cmd_output","timestamp":1607098225,"output":"_inits\">, compile_task_id: nil, error_description: nil, id: 53, in_scheduling: false, init_type: \"re"},{"event":"cmd_output","timestamp":1607098225,"output":"gular\", inserted_at: ~N[2020-12-04 16:10:25.762779], pipeline_requests: #Ecto.Association.NotLoaded<"},{"event":"cmd_output","timestamp":1607098225,"output":"association :pipeline_requests is not loaded>, ppl_id: \"36f110fc-b9d0-4a09-9976-cc956a044f8e\", recov"},{"event":"cmd_output","timestamp":1607098225,"output":"ery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_r"},{"event":"cmd_output","timestamp":1607098225,"output":"equest_desc: nil, updated_at: ~N[2020-12-04 16:10:25.762791]}\n\u001b[0m\u001b[22m\n16:10:25.773 [info] Reque"},{"event":"cmd_output","timestamp":1607098225,"output":"st: 'run: %{\"branch_id\" => \"cc610181-fc06-43bf-8b69-33840a9ec040\", \"branch_name\" => \"pull-request-12"},{"event":"cmd_output","timestamp":1607098225,"output":"12\", \"client_id\" => \"8977e657-735c-4ff6-9b55-d1edefdd5b5e\", \"commit_sha\" => \"75891a4469\", \"definitio"},{"event":"cmd_output","timestamp":1607098225,"output":"n_file\" => \"\", \"hook_id\" => \"pr\", \"label\" => \"pull-request-1212\", \"organization_id\" => \"28770b22-ff5"},{"event":"cmd_output","timestamp":1607098225,"output":"7-4825-b706-3be0dbf95d04\", \"owner\" => \"rt\", \"project_id\" => \"list_latest_workflows\", \"repo_name\" => "},{"event":"cmd_output","timestamp":1607098225,"output":"\"2_basic\", \"request_token\" => \"382a7c3a-364b-11eb-95f8-5254005464e2\", \"requester_id\" => \"c581f4a7-4a"},{"event":"cmd_output","timestamp":1607098225,"output":"d0-40dd-a86d-3150290fb7f3\", \"service\" => \"local\", \"snapshot_id\" => \"\", \"suppressed_attributes\" => [\""},{"event":"cmd_output","timestamp":1607098225,"output":"access_token\", \"client_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"f51f8645-b254-420e-a38c-50c5c"},{"event":"cmd_output","timestamp":1607098225,"output":"c1e4914\"}\n\u001b[0m\u001b[22m\n16:10:25.819 [info] ppl_id: b862d192-f56c-46b8-9b40-99170c360c7a, type: PplRe"},{"event":"cmd_output","timestamp":1607098225,"output":"quests, event: persisted schedule request with request_token: 382a7c3a-364b-11eb-95f8-5254005464e2, "},{"event":"cmd_output","timestamp":1607098225,"output":"origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:"},{"event":"cmd_output","timestamp":1607098225,"output":"25.826 [info] ppl_id: b862d192-f56c-46b8-9b40-99170c360c7a, type: Ppls, state: initializing, event:"},{"event":"cmd_output","timestamp":1607098225,"output":" initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124)"},{"event":"cmd_output","timestamp":1607098225,"output":", \n\u001b[0m\u001b[22m\n16:10:25.834 [info] Project list_latest_workflows and pr 1212latest_wf details updat"},{"event":"cmd_output","timestamp":1607098225,"output":"ed: \"wf_id: f51f8645-b254-420e-a38c-50c5cc1e4914, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:10:25.836 [info] Per"},{"event":"cmd_output","timestamp":1607098225,"output":"sisted ppl_sub_init for pipeline with ppl_id: b862d192-f56c-46b8-9b40-99170c360c7a: %Ppl.PplSubInits"},{"event":"cmd_output","timestamp":1607098225,"output":".Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: "},{"event":"cmd_output","timestamp":1607098225,"output":"nil, error_description: nil, id: 54, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[202"},{"event":"cmd_output","timestamp":1607098225,"output":"0-12-04 16:10:25.835695], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"b862d192-f56c-46b8-9b40-99170c360c7a\", recovery_count: 0, result: nil, "},{"event":"cmd_output","timestamp":1607098225,"output":"result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_a"},{"event":"cmd_output","timestamp":1607098225,"output":"t: ~N[2020-12-04 16:10:25.835707]}\n\u001b[0m\u001b[22m\n16:10:25.854 [info] Request: 'run: %{\"branch_id\" => "},{"event":"cmd_output","timestamp":1607098225,"output":"\"bcc2865e-fe14-4b37-b398-7a5f6878bdf1\", \"branch_name\" => \"pull-request-1213\", \"client_id\" => \"a627d3"},{"event":"cmd_output","timestamp":1607098225,"output":"8b-f27f-48ff-90a4-5a312fb3b6e4\", \"commit_sha\" => \"75891a4469\", \"definition_file\" => \"\", \"hook_id\" =>"},{"event":"cmd_output","timestamp":1607098225,"output":" \"pr\", \"label\" => \"pull-request-1213\", \"organization_id\" => \"b3fe3814-9c96-463f-8117-81f2f540b99b\", "},{"event":"cmd_output","timestamp":1607098225,"output":"\"owner\" => \"rt\", \"project_id\" => \"list_latest_workflows\", \"repo_name\" => \"2_basic\", \"request_token\" "},{"event":"cmd_output","timestamp":1607098225,"output":"=> \"3836c616-364b-11eb-92eb-5254005464e2\", \"requester_id\" => \"d1700e50-4f78-4443-9226-80f99b26d933\","},{"event":"cmd_output","timestamp":1607098225,"output":" \"service\" => \"local\", \"snapshot_id\" => \"\", \"suppressed_attributes\" => [\"access_token\", \"client_secr"},{"event":"cmd_output","timestamp":1607098225,"output":"et\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"5b31cabc-0676-48e7-b250-ef27cc339889\"}\n\u001b[0m\u001b[22m\n16:10"},{"event":"cmd_output","timestamp":1607098225,"output":":25.879 [info] ppl_id: 608dc11e-6529-4912-9121-813bb4723eb4, type: PplRequests, event: persisted sc"},{"event":"cmd_output","timestamp":1607098225,"output":"hedule request with request_token: 3836c616-364b-11eb-92eb-5254005464e2, origin: Elixir.Ppl.PplReque"},{"event":"cmd_output","timestamp":1607098225,"output":"sts.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:25.881 [info] ppl_id: 608d"},{"event":"cmd_output","timestamp":1607098225,"output":"c11e-6529-4912-9121-813bb4723eb4, type: Ppls, state: initializing, event: initializing, recovery_cou"},{"event":"cmd_output","timestamp":1607098225,"output":"nt: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:25.886"},{"event":"cmd_output","timestamp":1607098225,"output":" [info] Project list_latest_workflows and pr 1213latest_wf details updated: \"wf_id: 5b31cabc-0676-4"},{"event":"cmd_output","timestamp":1607098225,"output":"8e7-b250-ef27cc339889, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:10:25.887 [info] Persisted ppl_sub_init for pip"},{"event":"cmd_output","timestamp":1607098225,"output":"eline with ppl_id: 608dc11e-6529-4912-9121-813bb4723eb4: %Ppl.PplSubInits.Model.PplSubInits{__meta__"},{"event":"cmd_output","timestamp":1607098225,"output":": #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil"},{"event":"cmd_output","timestamp":1607098225,"output":", id: 55, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:10:25.886170], p"},{"event":"cmd_output","timestamp":1607098225,"output":"ipeline_requests: #Ecto.Association.NotLoaded, ppl_id:"},{"event":"cmd_output","timestamp":1607098225,"output":" \"608dc11e-6529-4912-9121-813bb4723eb4\", recovery_count: 0, result: nil, result_reason: nil, state: "},{"event":"cmd_output","timestamp":1607098225,"output":"\"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:25.8"},{"event":"cmd_output","timestamp":1607098225,"output":"86181]}\n\u001b[0m\u001b[22m\n16:10:25.896 [info] Request: 'run: %{\"branch_id\" => \"4537912b-c7fd-47d6-8e6a-a3"},{"event":"cmd_output","timestamp":1607098225,"output":"cf635c78e6\", \"branch_name\" => \"pull-request-1214\", \"client_id\" => \"d1cc1402-49dc-4b9e-ae99-71d6fba21"},{"event":"cmd_output","timestamp":1607098225,"output":"af2\", \"commit_sha\" => \"75891a4469\", \"definition_file\" => \"\", \"hook_id\" => \"pr\", \"label\" => \"pull-req"},{"event":"cmd_output","timestamp":1607098225,"output":"uest-1214\", \"organization_id\" => \"e66dd4bb-b5c4-4b65-8797-7227c6ae307b\", \"owner\" => \"rt\", \"project_i"},{"event":"cmd_output","timestamp":1607098225,"output":"d\" => \"list_latest_workflows\", \"repo_name\" => \"2_basic\", \"request_token\" => \"383d6e80-364b-11eb-9505"},{"event":"cmd_output","timestamp":1607098225,"output":"-5254005464e2\", \"requester_id\" => \"ce32f563-29e4-45ce-9d77-737b154d655a\", \"service\" => \"local\", \"sna"},{"event":"cmd_output","timestamp":1607098225,"output":"pshot_id\" => \"\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"triggered_by\" => \"ho"},{"event":"cmd_output","timestamp":1607098225,"output":"ok\", \"wf_id\" => \"f7880b29-6bc1-4e16-a40a-1f37e6b3bb06\"}\n\u001b[0m\u001b[22m\n16:10:25.920 [info] ppl_id: 0a0"},{"event":"cmd_output","timestamp":1607098225,"output":"c3dd8-589a-4ee7-a8b4-a960b430b2c7, type: PplRequests, event: persisted schedule request with request"},{"event":"cmd_output","timestamp":1607098225,"output":"_token: 383d6e80-364b-11eb-9505-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQuerie"},{"event":"cmd_output","timestamp":1607098225,"output":"s.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:25.922 [info] ppl_id: 0a0c3dd8-589a-4ee7-a8b4-a960b43"},{"event":"cmd_output","timestamp":1607098225,"output":"0b2c7, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.P"},{"event":"cmd_output","timestamp":1607098225,"output":"pls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:25.925 [info] Project list_lates"},{"event":"cmd_output","timestamp":1607098225,"output":"t_workflows and pr 1214latest_wf details updated: \"wf_id: f7880b29-6bc1-4e16-a40a-1f37e6b3bb06, wf_n"},{"event":"cmd_output","timestamp":1607098225,"output":"umber: 1\"\n\u001b[0m\u001b[22m\n16:10:25.927 [info] Persisted ppl_sub_init for pipeline with ppl_id: 0a0c3dd8"},{"event":"cmd_output","timestamp":1607098225,"output":"-589a-4ee7-a8b4-a960b430b2c7: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:lo"},{"event":"cmd_output","timestamp":1607098225,"output":"aded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 56, in_scheduling: fa"},{"event":"cmd_output","timestamp":1607098225,"output":"lse, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:10:25.926416], pipeline_requests: #Ecto.Ass"},{"event":"cmd_output","timestamp":1607098225,"output":"ociation.NotLoaded, ppl_id: \"0a0c3dd8-589a-4ee7-a8b4-a"},{"event":"cmd_output","timestamp":1607098225,"output":"960b430b2c7\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_reques"},{"event":"cmd_output","timestamp":1607098225,"output":"t: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:25.926425]}\n\u001b[0m\u001b[22m\n16:10:2"},{"event":"cmd_output","timestamp":1607098225,"output":"5.934 [info] Request: 'run: %{\"branch_id\" => \"30ac4aa0-06d3-4047-a304-4c39ad1dfaa1\", \"branch_name\" "},{"event":"cmd_output","timestamp":1607098225,"output":"=> \"pull-request-1215\", \"client_id\" => \"3acd1561-98d1-43cb-b28f-36ffea8f37d3\", \"commit_sha\" => \"7589"},{"event":"cmd_output","timestamp":1607098225,"output":"1a4469\", \"definition_file\" => \"\", \"hook_id\" => \"pr\", \"label\" => \"pull-request-1215\", \"organization_i"},{"event":"cmd_output","timestamp":1607098225,"output":"d\" => \"fd289d3d-1888-4069-a601-b2a74002999c\", \"owner\" => \"rt\", \"project_id\" => \"list_latest_workflow"},{"event":"cmd_output","timestamp":1607098225,"output":"s\", \"repo_name\" => \"2_basic\", \"request_token\" => \"38433860-364b-11eb-9bd2-5254005464e2\", \"requester_"},{"event":"cmd_output","timestamp":1607098225,"output":"id\" => \"3bf05ec6-c226-4da1-85bd-3d1a0e496dc4\", \"service\" => \"local\", \"snapshot_id\" => \"\", \"suppresse"},{"event":"cmd_output","timestamp":1607098225,"output":"d_attributes\" => [\"access_token\", \"client_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"ec1891a0-7"},{"event":"cmd_output","timestamp":1607098225,"output":"19c-4ae9-80bd-1294012d371d\"}\n\u001b[0m\u001b[22m\n16:10:25.957 [info] ppl_id: 6d84b04f-3a70-4304-bdbb-42129b"},{"event":"cmd_output","timestamp":1607098225,"output":"e868a7, type: PplRequests, event: persisted schedule request with request_token: 38433860-364b-11eb-"},{"event":"cmd_output","timestamp":1607098225,"output":"9bd2-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), "},{"event":"cmd_output","timestamp":1607098225,"output":"\n\u001b[0m\u001b[22m\n16:10:25.960 [info] ppl_id: 6d84b04f-3a70-4304-bdbb-42129be868a7, type: Ppls, state: i"},{"event":"cmd_output","timestamp":1607098225,"output":"nitializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.proce"},{"event":"cmd_output","timestamp":1607098225,"output":"ss_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:25.964 [info] Project list_latest_workflows and pr 1215late"},{"event":"cmd_output","timestamp":1607098225,"output":"st_wf details updated: \"wf_id: ec1891a0-719c-4ae9-80bd-1294012d371d, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:10"},{"event":"cmd_output","timestamp":1607098225,"output":":25.966 [info] Persisted ppl_sub_init for pipeline with ppl_id: 6d84b04f-3a70-4304-bdbb-42129be868a"},{"event":"cmd_output","timestamp":1607098225,"output":"7: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">"},{"event":"cmd_output","timestamp":1607098225,"output":", compile_task_id: nil, error_description: nil, id: 57, in_scheduling: false, init_type: \"regular\", "},{"event":"cmd_output","timestamp":1607098225,"output":"inserted_at: ~N[2020-12-04 16:10:25.964730], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"6d84b04f-3a70-4304-bdbb-42129be868a7\", recovery_coun"},{"event":"cmd_output","timestamp":1607098225,"output":"t: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_d"},{"event":"cmd_output","timestamp":1607098225,"output":"esc: nil, updated_at: ~N[2020-12-04 16:10:25.964740]}\n\u001b[0m\u001b[22m\n16:10:25.975 [info] Request: 'run"},{"event":"cmd_output","timestamp":1607098225,"output":": %{\"branch_id\" => \"a9c3ef23-aa74-46dd-9bcc-dcd1c08854da\", \"branch_name\" => \"pull-request-1216\", \"cl"},{"event":"cmd_output","timestamp":1607098225,"output":"ient_id\" => \"19a8bd34-a9bb-4e07-8810-1c643c8e1cc4\", \"commit_sha\" => \"75891a4469\", \"definition_file\" "},{"event":"cmd_output","timestamp":1607098225,"output":"=> \"\", \"hook_id\" => \"pr\", \"label\" => \"pull-request-1216\", \"organization_id\" => \"87b991a2-9e63-44e2-a"},{"event":"cmd_output","timestamp":1607098225,"output":"557-1b12410d69ab\", \"owner\" => \"rt\", \"project_id\" => \"list_latest_workflows\", \"repo_name\" => \"2_basic"},{"event":"cmd_output","timestamp":1607098225,"output":"\", \"request_token\" => \"38496230-364b-11eb-ab50-5254005464e2\", \"requester_id\" => \"8e9821de-db74-49a6-"},{"event":"cmd_output","timestamp":1607098225,"output":"a083-6ff81a2e0c29\", \"service\" => \"local\", \"snapshot_id\" => \"\", \"suppressed_attributes\" => [\"access_t"},{"event":"cmd_output","timestamp":1607098225,"output":"oken\", \"client_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"339634d9-5712-447c-a904-861b4621f52c\""},{"event":"cmd_output","timestamp":1607098225,"output":"}\n\u001b[0m\u001b[22m\n16:10:25.998 [info] ppl_id: c3c8dc93-eccb-4a42-9eee-90e7d3cfd455, type: PplRequests, "},{"event":"cmd_output","timestamp":1607098225,"output":"event: persisted schedule request with request_token: 38496230-364b-11eb-ab50-5254005464e2, origin: "},{"event":"cmd_output","timestamp":1607098226,"output":"Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:26.001 ["},{"event":"cmd_output","timestamp":1607098226,"output":"info] ppl_id: c3c8dc93-eccb-4a42-9eee-90e7d3cfd455, type: Ppls, state: initializing, event: initial"},{"event":"cmd_output","timestamp":1607098226,"output":"izing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098226,"output":"\u001b[22m\n16:10:26.006 [info] Project list_latest_workflows and pr 1216latest_wf details updated: \"wf_"},{"event":"cmd_output","timestamp":1607098226,"output":"id: 339634d9-5712-447c-a904-861b4621f52c, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:10:26.007 [info] Persisted p"},{"event":"cmd_output","timestamp":1607098226,"output":"pl_sub_init for pipeline with ppl_id: c3c8dc93-eccb-4a42-9eee-90e7d3cfd455: %Ppl.PplSubInits.Model.P"},{"event":"cmd_output","timestamp":1607098226,"output":"plSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, err"},{"event":"cmd_output","timestamp":1607098226,"output":"or_description: nil, id: 58, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 "},{"event":"cmd_output","timestamp":1607098226,"output":"16:10:26.006845], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"c3c8dc93-eccb-4a42-9eee-90e7d3cfd455\", recovery_count: 0, result: nil, result_r"},{"event":"cmd_output","timestamp":1607098226,"output":"eason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[20"},{"event":"cmd_output","timestamp":1607098226,"output":"20-12-04 16:10:26.006856]}\n\u001b[0m\u001b[22m\n16:10:26.015 [info] Request: 'run: %{\"branch_id\" => \"aa98842"},{"event":"cmd_output","timestamp":1607098226,"output":"0-2971-4ab2-804d-5330fba3dd03\", \"branch_name\" => \"pull-request-1217\", \"client_id\" => \"a4998017-b593-"},{"event":"cmd_output","timestamp":1607098226,"output":"4d06-a92b-1b1c317f0424\", \"commit_sha\" => \"75891a4469\", \"definition_file\" => \"\", \"hook_id\" => \"pr\", \""},{"event":"cmd_output","timestamp":1607098226,"output":"label\" => \"pull-request-1217\", \"organization_id\" => \"17bbc787-159e-467c-9f9d-75b96b8c60f2\", \"owner\" "},{"event":"cmd_output","timestamp":1607098226,"output":"=> \"rt\", \"project_id\" => \"list_latest_workflows\", \"repo_name\" => \"2_basic\", \"request_token\" => \"384f"},{"event":"cmd_output","timestamp":1607098226,"output":"9f2e-364b-11eb-9848-5254005464e2\", \"requester_id\" => \"f9ffb43b-8ef0-43fc-9159-44f193e97938\", \"servic"},{"event":"cmd_output","timestamp":1607098226,"output":"e\" => \"local\", \"snapshot_id\" => \"\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"t"},{"event":"cmd_output","timestamp":1607098226,"output":"riggered_by\" => \"hook\", \"wf_id\" => \"0ee0e8bd-7f79-4224-aa2f-e2514f36e34e\"}\n\u001b[0m\u001b[22m\n16:10:26.039 "},{"event":"cmd_output","timestamp":1607098226,"output":"[info] ppl_id: eaba441e-9d94-4f55-8648-26b773c73488, type: PplRequests, event: persisted schedule r"},{"event":"cmd_output","timestamp":1607098226,"output":"equest with request_token: 384f9f2e-364b-11eb-9848-5254005464e2, origin: Elixir.Ppl.PplRequests.Mode"},{"event":"cmd_output","timestamp":1607098226,"output":"l.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:26.041 [info] ppl_id: eaba441e-9d9"},{"event":"cmd_output","timestamp":1607098226,"output":"4-4f55-8648-26b773c73488, type: Ppls, state: initializing, event: initializing, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098226,"output":"rigin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:26.045 [info] "},{"event":"cmd_output","timestamp":1607098226,"output":" Project list_latest_workflows and pr 1217latest_wf details updated: \"wf_id: 0ee0e8bd-7f79-4224-aa2f"},{"event":"cmd_output","timestamp":1607098226,"output":"-e2514f36e34e, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:10:26.046 [info] Persisted ppl_sub_init for pipeline wi"},{"event":"cmd_output","timestamp":1607098226,"output":"th ppl_id: eaba441e-9d94-4f55-8648-26b773c73488: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto."},{"event":"cmd_output","timestamp":1607098226,"output":"Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 59"},{"event":"cmd_output","timestamp":1607098226,"output":", in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:10:26.045476], pipeline_"},{"event":"cmd_output","timestamp":1607098226,"output":"requests: #Ecto.Association.NotLoaded, ppl_id: \"eaba44"},{"event":"cmd_output","timestamp":1607098226,"output":"1e-9d94-4f55-8648-26b773c73488\", recovery_count: 0, result: nil, result_reason: nil, state: \"created"},{"event":"cmd_output","timestamp":1607098226,"output":"\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:26.045483]}\r"},{"event":"cmd_output","timestamp":1607098226,"output":"\n\u001b[0m\u001b[22m\n16:10:26.052 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingState w"},{"event":"cmd_output","timestamp":1607098226,"output":"ith name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder"},{"event":"cmd_output","timestamp":1607098226,"output":"-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializ"},{"event":"cmd_output","timestamp":1607098226,"output":"ing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \""},{"event":"cmd_output","timestamp":1607098226,"output":"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0"},{"event":"cmd_output","timestamp":1607098226,"output":">, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_"},{"event":"cmd_output","timestamp":1607098226,"output":"count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:26.053 [info"},{"event":"cmd_output","timestamp":1607098226,"output":"] Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler"},{"event":"cmd_output","timestamp":1607098226,"output":".PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Pending"},{"event":"cmd_output","timestamp":1607098226,"output":"State\"]}, recurring args: %{allowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_"},{"event":"cmd_output","timestamp":1607098226,"output":"sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publisher_cb: #Function<0.849"},{"event":"cmd_output","timestamp":1607098226,"output":"3005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_"},{"event":"cmd_output","timestamp":1607098226,"output":"request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_"},{"event":"cmd_output","timestamp":1607098226,"output":"supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:10:26.054 [info] Periodic from module Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098226,"output":"s.STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, metri"},{"event":"cmd_output","timestamp":1607098226,"output":"c_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{allowed_st"},{"event":"cmd_output","timestamp":1607098226,"output":"ates: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, obse"},{"event":"cmd_output","timestamp":1607098226,"output":"rved_state: \"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.arg"},{"event":"cmd_output","timestamp":1607098226,"output":"s/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recove"},{"event":"cmd_output","timestamp":1607098226,"output":"ry_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:26.054 [i"},{"event":"cmd_output","timestamp":1607098226,"output":"nfo] Periodic from module Elixir.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHand"},{"event":"cmd_output","timestamp":1607098226,"output":"ler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Runn"},{"event":"cmd_output","timestamp":1607098226,"output":"ingState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2"},{"event":"cmd_output","timestamp":1607098226,"output":", initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"running\", publisher_cb: #Function<0.74670282/"},{"event":"cmd_output","timestamp":1607098226,"output":"1 in Ppl.Ppls.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_reque"},{"event":"cmd_output","timestamp":1607098226,"output":"st, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_super"},{"event":"cmd_output","timestamp":1607098226,"output":"visor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:10:26.055 [info] Periodic from module Elixir.Ppl.Ppls.STM"},{"event":"cmd_output","timestamp":1607098226,"output":"Handler.StoppingState with name Elixir.Ppl.Ppls.STMHandler.StoppingState :: period: 100 ms, metric_n"},{"event":"cmd_output","timestamp":1607098226,"output":"ame: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring args: %{allowed_stat"},{"event":"cmd_output","timestamp":1607098226,"output":"es: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: "},{"event":"cmd_output","timestamp":1607098226,"output":"\"stopping\", publisher_cb: #Function<0.71803493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, repo:"},{"event":"cmd_output","timestamp":1607098226,"output":" Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :"},{"event":"cmd_output","timestamp":1607098226,"output":"ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:26.055 [info] Perio"},{"event":"cmd_output","timestamp":1607098226,"output":"dic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMH"},{"event":"cmd_output","timestamp":1607098226,"output":"andler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHa"},{"event":"cmd_output","timestamp":1607098226,"output":"ndler-CreatedState\"]}, recurring args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, "},{"event":"cmd_output","timestamp":1607098226,"output":"initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip, re"},{"event":"cmd_output","timestamp":1607098226,"output":"po: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count"},{"event":"cmd_output","timestamp":1607098226,"output":", :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:26."},{"event":"cmd_output","timestamp":1607098226,"output":"055 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Pp"},{"event":"cmd_output","timestamp":1607098226,"output":"l.PplSubInits.STMHandler.FetchingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Pp"},{"event":"cmd_output","timestamp":1607098226,"output":"l-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compi"},{"event":"cmd_output","timestamp":1607098226,"output":"lation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_s"},{"event":"cmd_output","timestamp":1607098226,"output":"tate: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :upd"},{"event":"cmd_output","timestamp":1607098226,"output":"ated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task"},{"event":"cmd_output","timestamp":1607098226,"output":"_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:26.055 [info] Periodic from module Elixir.Ppl.PplSubInits.STM"},{"event":"cmd_output","timestamp":1607098226,"output":"Handler.CompilationState with name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 100"},{"event":"cmd_output","timestamp":1607098226,"output":" ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurri"},{"event":"cmd_output","timestamp":1607098226,"output":"ng args: %{allowed_states: [\"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2"},{"event":"cmd_output","timestamp":1607098226,"output":", initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"compilation\", publisher_cb: :sk"},{"event":"cmd_output","timestamp":1607098226,"output":"ip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery"},{"event":"cmd_output","timestamp":1607098226,"output":"_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098226,"output":"10:26.056 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with name "},{"event":"cmd_output","timestamp":1607098226,"output":"Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wa"},{"event":"cmd_output","timestamp":1607098226,"output":"ke_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurring args: %{allowed_states: [\"done\"]"},{"event":"cmd_output","timestamp":1607098226,"output":", cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_in"},{"event":"cmd_output","timestamp":1607098226,"output":"it\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :sta"},{"event":"cmd_output","timestamp":1607098226,"output":"te, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: "},{"event":"cmd_output","timestamp":1607098226,"output":":skip}\n\u001b[0m\u001b[22m\n16:10:26.059 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.Initial"},{"event":"cmd_output","timestamp":1607098226,"output":"izingState with name Elixir.Ppl.PplBlocks.STMHandler.InitializingState :: period: 100 ms, metric_nam"},{"event":"cmd_output","timestamp":1607098226,"output":"e: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-InitializingState\"]}, recurring args: %{allow"},{"event":"cmd_output","timestamp":1607098226,"output":"ed_states: [\"initializing\", \"waiting\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Mo"},{"event":"cmd_output","timestamp":1607098226,"output":"del.PplBlocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: ["},{"event":"cmd_output","timestamp":1607098226,"output":":id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], sche"},{"event":"cmd_output","timestamp":1607098226,"output":"ma: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:26.059 [info] Periodic"},{"event":"cmd_output","timestamp":1607098226,"output":" from module Elixir.Ppl.PplBlocks.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler."},{"event":"cmd_output","timestamp":1607098226,"output":"WaitingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-Wa"},{"event":"cmd_output","timestamp":1607098226,"output":"itingState\"]}, recurring args: %{allowed_states: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 0"},{"event":"cmd_output","timestamp":1607098226,"output":", initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"waiting\", publisher_cb: #Function<0"},{"event":"cmd_output","timestamp":1607098226,"output":".8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :t"},{"event":"cmd_output","timestamp":1607098226,"output":"erminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl"},{"event":"cmd_output","timestamp":1607098226,"output":".PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:26.060 [info] Periodic from m"},{"event":"cmd_output","timestamp":1607098226,"output":"odule Elixir.Ppl.PplBlocks.STMHandler.RunningState with name Elixir.Ppl.PplBlocks.STMHandler.Running"},{"event":"cmd_output","timestamp":1607098226,"output":"State :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningSt"},{"event":"cmd_output","timestamp":1607098226,"output":"ate\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, ini"},{"event":"cmd_output","timestamp":1607098226,"output":"tial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"running\", publisher_cb: #Function<0.2816"},{"event":"cmd_output","timestamp":1607098226,"output":"6834/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :termi"},{"event":"cmd_output","timestamp":1607098226,"output":"nate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], sche"},{"event":"cmd_output","timestamp":1607098226,"output":"ma: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:26.060 [info] Periodic"},{"event":"cmd_output","timestamp":1607098226,"output":" from module Elixir.Ppl.PplBlocks.STMHandler.StoppingState with name Elixir.Ppl.PplBlocks.STMHandler"},{"event":"cmd_output","timestamp":1607098226,"output":".StoppingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-"},{"event":"cmd_output","timestamp":1607098226,"output":"StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, init"},{"event":"cmd_output","timestamp":1607098226,"output":"ial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"stopping\", publisher_cb: #Function<0.1042"},{"event":"cmd_output","timestamp":1607098226,"output":"15991/1 in Ppl.PplBlocks.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :ter"},{"event":"cmd_output","timestamp":1607098226,"output":"minate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], sc"},{"event":"cmd_output","timestamp":1607098226,"output":"hema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:26.061 [info] Period"},{"event":"cmd_output","timestamp":1607098226,"output":"ic from module Elixir.Block.Blocks.STMHandler.InitializingState with name Elixir.Block.Blocks.STMHan"},{"event":"cmd_output","timestamp":1607098226,"output":"dler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHa"},{"event":"cmd_output","timestamp":1607098226,"output":"ndler-InitializingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec:"},{"event":"cmd_output","timestamp":1607098226,"output":" 0, initial_query: Block.Blocks.Model.Blocks, observed_state: \"initializing\", publisher_cb: :skip, r"},{"event":"cmd_output","timestamp":1607098226,"output":"epo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :blo"},{"event":"cmd_output","timestamp":1607098226,"output":"ck_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:26.062 [info] "},{"event":"cmd_output","timestamp":1607098226,"output":"Periodic from module Elixir.Block.Blocks.STMHandler.RunningState with name Elixir.Block.Blocks.STMHa"},{"event":"cmd_output","timestamp":1607098226,"output":"ndler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandle"},{"event":"cmd_output","timestamp":1607098226,"output":"r-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_s"},{"event":"cmd_output","timestamp":1607098226,"output":"ec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"running\", publisher_cb: :skip, re"},{"event":"cmd_output","timestamp":1607098226,"output":"po: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :bloc"},{"event":"cmd_output","timestamp":1607098226,"output":"k_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:26.062 [info] P"},{"event":"cmd_output","timestamp":1607098226,"output":"eriodic from module Elixir.Block.Blocks.STMHandler.StoppingState with name Elixir.Block.Blocks.STMHa"},{"event":"cmd_output","timestamp":1607098226,"output":"ndler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandl"},{"event":"cmd_output","timestamp":1607098226,"output":"er-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, i"},{"event":"cmd_output","timestamp":1607098226,"output":"nitial_query: Block.Blocks.Model.Blocks, observed_state: \"stopping\", publisher_cb: :skip, repo: Bloc"},{"event":"cmd_output","timestamp":1607098226,"output":"k.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], s"},{"event":"cmd_output","timestamp":1607098226,"output":"chema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:26.064 [info] Periodic "},{"event":"cmd_output","timestamp":1607098226,"output":"from module Elixir.Block.Tasks.STMHandler.PendingState with name Elixir.Block.Tasks.STMHandler.Pendi"},{"event":"cmd_output","timestamp":1607098226,"output":"ngState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingSta"},{"event":"cmd_output","timestamp":1607098226,"output":"te\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Bl"},{"event":"cmd_output","timestamp":1607098226,"output":"ock.Tasks.Model.Tasks, observed_state: \"pending\", publisher_cb: :skip, repo: Block.EctoRepo, returni"},{"event":"cmd_output","timestamp":1607098226,"output":"ng: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id, :build_request_id], s"},{"event":"cmd_output","timestamp":1607098226,"output":"chema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:26.064 [info] Periodic fr"},{"event":"cmd_output","timestamp":1607098226,"output":"om module Elixir.Block.Tasks.STMHandler.RunningState with name Elixir.Block.Tasks.STMHandler.Running"},{"event":"cmd_output","timestamp":1607098226,"output":"State :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningState"},{"event":"cmd_output","timestamp":1607098226,"output":"\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initia"},{"event":"cmd_output","timestamp":1607098226,"output":"l_query: Block.Tasks.Model.Tasks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRe"},{"event":"cmd_output","timestamp":1607098226,"output":"po, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: B"},{"event":"cmd_output","timestamp":1607098226,"output":"lock.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:26.065 [info] Periodic from modul"},{"event":"cmd_output","timestamp":1607098226,"output":"e Elixir.Block.Tasks.STMHandler.StoppingState with name Elixir.Block.Tasks.STMHandler.StoppingState "},{"event":"cmd_output","timestamp":1607098226,"output":":: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]}, "},{"event":"cmd_output","timestamp":1607098226,"output":"recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.T"},{"event":"cmd_output","timestamp":1607098226,"output":"asks.Model.Tasks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: "},{"event":"cmd_output","timestamp":1607098226,"output":"[:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Mode"},{"event":"cmd_output","timestamp":1607098226,"output":"l.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:26.177 [info] ppl_id: f5396772-58c0-481c-8130-72"},{"event":"cmd_output","timestamp":1607098226,"output":"5aacbff447, type: PplRequests, event: persisted source_args for pipeline: f5396772-58c0-481c-8130-72"},{"event":"cmd_output","timestamp":1607098226,"output":"5aacbff447, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098226,"output":"m\n16:10:26.181 [info] ppl_id: f5396772-58c0-481c-8130-725aacbff447, type: PplSubInits, state: fetc"},{"event":"cmd_output","timestamp":1607098226,"output":"hing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098226,"output":"90), \n\u001b[0m\u001b[22m\n16:10:26.220 [info] ppl_id: f5396772-58c0-481c-8130-725aacbff447, type: PplSubIni"},{"event":"cmd_output","timestamp":1607098226,"output":"ts, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.l"},{"event":"cmd_output","timestamp":1607098226,"output":"og_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:26.250 [info] ppl_id: f5396772-58c0-481c-8130-725aacbff4"},{"event":"cmd_output","timestamp":1607098226,"output":"47, type: PplRequests, event: persisted definition for request with request_token: 37ba97c6-364b-11e"},{"event":"cmd_output","timestamp":1607098226,"output":"b-bdfd-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76"},{"event":"cmd_output","timestamp":1607098226,"output":"), \n\u001b[0m\u001b[22m\n16:10:26.255 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto"},{"event":"cmd_output","timestamp":1607098226,"output":".Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:10:26.253394], name: \"master-0-.s"},{"event":"cmd_output","timestamp":1607098226,"output":"emaphore/semaphore.yml\", organization_id: \"f698ed1c-e751-477e-87e9-3da85a73f016\", project_id: \"list_"},{"event":"cmd_output","timestamp":1607098226,"output":"latest_workflows\", queue_id: \"12e6d36b-87c7-4976-a133-9ebfb1abe928\", scope: \"project\", updated_at: ~"},{"event":"cmd_output","timestamp":1607098226,"output":"N[2020-12-04 16:10:26.253407], user_generated: false}}\n\u001b[0m\u001b[22m\n16:10:26.260 [info] event: creat"},{"event":"cmd_output","timestamp":1607098226,"output":"ed, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:2"},{"event":"cmd_output","timestamp":1607098226,"output":"6.260 [info] ppl_id: f5396772-58c0-481c-8130-725aacbff447, type: PplBlocks, block_index: 0, state: "},{"event":"cmd_output","timestamp":1607098226,"output":"initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularIn"},{"event":"cmd_output","timestamp":1607098226,"output":"itState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:26.265 [info] ppl_id: f5396772-58c0-481c-8130-725aacbff"},{"event":"cmd_output","timestamp":1607098226,"output":"447, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098226,"output":"in: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:26.280 [info] ppl_id: f53967"},{"event":"cmd_output","timestamp":1607098226,"output":"72-58c0-481c-8130-725aacbff447, type: PplBlocks, block_index: 0, state: waiting, event: exit_schedul"},{"event":"cmd_output","timestamp":1607098226,"output":"ing, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:2"},{"event":"cmd_output","timestamp":1607098226,"output":"6.287 [info] ppl_id: f5396772-58c0-481c-8130-725aacbff447, type: Ppls, state: pending, event: exit_"},{"event":"cmd_output","timestamp":1607098226,"output":"scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098226,"output":"16:10:26.300 [info] ppl_id: 412d7e9e-9129-49cd-8696-b96d8d5116ac, type: PplRequests, event: persist"},{"event":"cmd_output","timestamp":1607098226,"output":"ed source_args for pipeline: 412d7e9e-9129-49cd-8696-b96d8d5116ac, origin: Elixir.Ppl.PplRequests.Mo"},{"event":"cmd_output","timestamp":1607098226,"output":"del.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:26.302 [info] ppl_id: f5396772-58c0"},{"event":"cmd_output","timestamp":1607098226,"output":"-481c-8130-725aacbff447, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098226,"output":"in: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:26.308 [info] ppl_id: 412d7e"},{"event":"cmd_output","timestamp":1607098226,"output":"9e-9129-49cd-8696-b96d8d5116ac, type: PplSubInits, state: fetching, event: exit_scheduling, recovery"},{"event":"cmd_output","timestamp":1607098226,"output":"_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:26.319 [info] "},{"event":"cmd_output","timestamp":1607098226,"output":" ppl_id: f5396772-58c0-481c-8130-725aacbff447, type: Ppls, state: running, event: exit_scheduling, r"},{"event":"cmd_output","timestamp":1607098226,"output":"ecovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:26.330 "},{"event":"cmd_output","timestamp":1607098226,"output":"[info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"f5396772-58c0-481c-8130-725"},{"event":"cmd_output","timestamp":1607098226,"output":"aacbff447\"\n\u001b[0m\u001b[22m\n16:10:26.342 [info] block_id: 631fad26-2462-46d4-a6c4-f4a4e80141fc, type: Bl"},{"event":"cmd_output","timestamp":1607098226,"output":"ockRequests, event: persisted block run request from ppl f5396772-58c0-481c-8130-725aacbff447 for bl"},{"event":"cmd_output","timestamp":1607098226,"output":"ock 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098226,"output":"\u001b[22m\n16:10:26.346 [info] ppl_id: 412d7e9e-9129-49cd-8696-b96d8d5116ac, type: PplSubInits, state: "},{"event":"cmd_output","timestamp":1607098226,"output":"regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_ch"},{"event":"cmd_output","timestamp":1607098226,"output":"ange/1(L90), \n\u001b[0m\u001b[22m\n16:10:26.346 [info] block_id: 631fad26-2462-46d4-a6c4-f4a4e80141fc, type:"},{"event":"cmd_output","timestamp":1607098226,"output":" Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Mo"},{"event":"cmd_output","timestamp":1607098226,"output":"del.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:26.352 [info] Block 0 of pipeline with id: f539"},{"event":"cmd_output","timestamp":1607098226,"output":"6772-58c0-481c-8130-725aacbff447 scheduled in block service with id: : \"631fad26-2462-46d4-a6c4-f4a4"},{"event":"cmd_output","timestamp":1607098226,"output":"e80141fc\"\n\u001b[0m\u001b[22m\n16:10:26.360 [info] block_id: 631fad26-2462-46d4-a6c4-f4a4e80141fc, type: Blo"},{"event":"cmd_output","timestamp":1607098226,"output":"ckRequests, event: persisted build and sub_ppl details for block_request: 631fad26-2462-46d4-a6c4-f4"},{"event":"cmd_output","timestamp":1607098226,"output":"a4e80141fc, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098226,"output":"m\u001b[22m\n16:10:26.360 [info] ppl_id: f5396772-58c0-481c-8130-725aacbff447, type: PplBlocks, block_in"},{"event":"cmd_output","timestamp":1607098226,"output":"dex: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.lo"},{"event":"cmd_output","timestamp":1607098226,"output":"g_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:26.364 [info] block_id: 631fad26-2462-46d4-a6c4-f4a4e8014"},{"event":"cmd_output","timestamp":1607098226,"output":"1fc, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STM"},{"event":"cmd_output","timestamp":1607098226,"output":"Handler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:26.371 [info] block_id: 631fad26-2462"},{"event":"cmd_output","timestamp":1607098226,"output":"-46d4-a6c4-f4a4e80141fc, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098226,"output":"igin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:26.404 [info] block_id: 63"},{"event":"cmd_output","timestamp":1607098226,"output":"1fad26-2462-46d4-a6c4-f4a4e80141fc, type: Tasks, state: running, event: exit_scheduling, recovery_co"},{"event":"cmd_output","timestamp":1607098226,"output":"unt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:26.407 [info] pp"},{"event":"cmd_output","timestamp":1607098226,"output":"l_id: 412d7e9e-9129-49cd-8696-b96d8d5116ac, type: PplRequests, event: persisted definition for reque"},{"event":"cmd_output","timestamp":1607098226,"output":"st with request_token: 37c56e44-364b-11eb-a0ad-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.Pp"},{"event":"cmd_output","timestamp":1607098226,"output":"lRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:26.413 [info] Queue persisted: {:ok, "},{"event":"cmd_output","timestamp":1607098226,"output":"%Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12"},{"event":"cmd_output","timestamp":1607098226,"output":"-04 16:10:26.411181], name: \"master-1-.semaphore/semaphore.yml\", organization_id: \"33f7fdda-7d85-4a6"},{"event":"cmd_output","timestamp":1607098226,"output":"7-aca7-0f1c8c8c22f8\", project_id: \"list_latest_workflows\", queue_id: \"ad4da8d9-4279-42ed-bd14-a66db6"},{"event":"cmd_output","timestamp":1607098226,"output":"6014df\", scope: \"project\", updated_at: ~N[2020-12-04 16:10:26.411194], user_generated: false}}\n\u001b[0m"},{"event":"cmd_output","timestamp":1607098226,"output":"\u001b[22m\n16:10:26.418 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitSta"},{"event":"cmd_output","timestamp":1607098226,"output":"te.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:26.418 [info] ppl_id: 412d7e9e-9129-49cd-8696-b96d8d5116ac, "},{"event":"cmd_output","timestamp":1607098226,"output":"type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098226,"output":"xir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:26.421 [info] p"},{"event":"cmd_output","timestamp":1607098226,"output":"pl_id: 412d7e9e-9129-49cd-8696-b96d8d5116ac, type: PplSubInits, state: done, result: passed, event: "},{"event":"cmd_output","timestamp":1607098226,"output":"exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098226,"output":"22m\n16:10:26.423 [info] ppl_id: f96f00e2-7b5a-45e9-8980-70ca0822092d, type: PplRequests, event: pe"},{"event":"cmd_output","timestamp":1607098226,"output":"rsisted source_args for pipeline: f96f00e2-7b5a-45e9-8980-70ca0822092d, origin: Elixir.Ppl.PplReques"},{"event":"cmd_output","timestamp":1607098226,"output":"ts.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:26.430 [info] ppl_id: f96f00e2"},{"event":"cmd_output","timestamp":1607098226,"output":"-7b5a-45e9-8980-70ca0822092d, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098226,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:26.434 [info] p"},{"event":"cmd_output","timestamp":1607098226,"output":"pl_id: 412d7e9e-9129-49cd-8696-b96d8d5116ac, type: PplBlocks, block_index: 0, state: waiting, event:"},{"event":"cmd_output","timestamp":1607098226,"output":" exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098226,"output":"[22m\n16:10:26.434 [info] ppl_id: 412d7e9e-9129-49cd-8696-b96d8d5116ac, type: Ppls, state: pending,"},{"event":"cmd_output","timestamp":1607098226,"output":" event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), "},{"event":"cmd_output","timestamp":1607098226,"output":"\n\u001b[0m\u001b[22m\n16:10:26.446 [info] ppl_id: 412d7e9e-9129-49cd-8696-b96d8d5116ac, type: Ppls, state: q"},{"event":"cmd_output","timestamp":1607098226,"output":"ueuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1"},{"event":"cmd_output","timestamp":1607098226,"output":"(L90), \n\u001b[0m\u001b[22m\n16:10:26.463 [info] ppl_id: 412d7e9e-9129-49cd-8696-b96d8d5116ac, type: Ppls, s"},{"event":"cmd_output","timestamp":1607098226,"output":"tate: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098226,"output":"hange/1(L90), \n\u001b[0m\u001b[22m\n16:10:26.464 [info] ppl_id: f96f00e2-7b5a-45e9-8980-70ca0822092d, type: "},{"event":"cmd_output","timestamp":1607098226,"output":"PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.S"},{"event":"cmd_output","timestamp":1607098226,"output":"TM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:26.473 [info] PplBlocks WaitingState STM is sch"},{"event":"cmd_output","timestamp":1607098226,"output":"eduling block 0 from pipeline: \"412d7e9e-9129-49cd-8696-b96d8d5116ac\"\n\u001b[0m\u001b[22m\n16:10:26.483 [info"},{"event":"cmd_output","timestamp":1607098226,"output":"] block_id: 3b781860-6bd5-40fc-b3de-cfc947a0c16e, type: BlockRequests, event: persisted block run r"},{"event":"cmd_output","timestamp":1607098226,"output":"equest from ppl 412d7e9e-9129-49cd-8696-b96d8d5116ac for block 0, origin: Elixir.Block.BlockRequests"},{"event":"cmd_output","timestamp":1607098226,"output":".Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:26.487 [info] block_id: 3b7"},{"event":"cmd_output","timestamp":1607098226,"output":"81860-6bd5-40fc-b3de-cfc947a0c16e, type: Blocks, state: initializing, event: initializing, recovery_"},{"event":"cmd_output","timestamp":1607098226,"output":"count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:26.493 ["},{"event":"cmd_output","timestamp":1607098226,"output":"info] Block 0 of pipeline with id: 412d7e9e-9129-49cd-8696-b96d8d5116ac scheduled in block service "},{"event":"cmd_output","timestamp":1607098226,"output":"with id: : \"3b781860-6bd5-40fc-b3de-cfc947a0c16e\"\n\u001b[0m\u001b[22m\n16:10:26.507 [info] block_id: 3b78186"},{"event":"cmd_output","timestamp":1607098226,"output":"0-6bd5-40fc-b3de-cfc947a0c16e, type: BlockRequests, event: persisted build and sub_ppl details for b"},{"event":"cmd_output","timestamp":1607098226,"output":"lock_request: 3b781860-6bd5-40fc-b3de-cfc947a0c16e, origin: Elixir.Block.BlockRequests.Model.BlockRe"},{"event":"cmd_output","timestamp":1607098226,"output":"questsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:26.507 [info] ppl_id: 412d7e9e-9129-49cd-8696"},{"event":"cmd_output","timestamp":1607098226,"output":"-b96d8d5116ac, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_cou"},{"event":"cmd_output","timestamp":1607098226,"output":"nt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:26.509 [info] blo"},{"event":"cmd_output","timestamp":1607098226,"output":"ck_id: 631fad26-2462-46d4-a6c4-f4a4e80141fc, type: Tasks, state: done, event: exit_scheduling, recov"},{"event":"cmd_output","timestamp":1607098226,"output":"ery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:26.511 [inf"},{"event":"cmd_output","timestamp":1607098226,"output":"o] block_id: 3b781860-6bd5-40fc-b3de-cfc947a0c16e, type: Tasks, state: pending, event: created, rec"},{"event":"cmd_output","timestamp":1607098226,"output":"overy_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098226,"output":"m\n16:10:26.520 [info] block_id: 3b781860-6bd5-40fc-b3de-cfc947a0c16e, type: Blocks, state: running"},{"event":"cmd_output","timestamp":1607098226,"output":", event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90),"},{"event":"cmd_output","timestamp":1607098226,"output":" \n\u001b[0m\u001b[22m\n16:10:26.529 [info] ppl_id: f96f00e2-7b5a-45e9-8980-70ca0822092d, type: PplRequests, "},{"event":"cmd_output","timestamp":1607098226,"output":"event: persisted definition for request with request_token: 37cf0382-364b-11eb-a070-5254005464e2, or"},{"event":"cmd_output","timestamp":1607098226,"output":"igin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:2"},{"event":"cmd_output","timestamp":1607098226,"output":"6.531 [info] block_id: 631fad26-2462-46d4-a6c4-f4a4e80141fc, type: Blocks, state: done, event: exit"},{"event":"cmd_output","timestamp":1607098226,"output":"_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098226,"output":"\n16:10:26.551 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadat"},{"event":"cmd_output","timestamp":1607098226,"output":"a<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:10:26.542463], name: \"master-2-.semaphore/semaph"},{"event":"cmd_output","timestamp":1607098226,"output":"ore.yml\", organization_id: \"825486ea-62a5-48c2-8816-01df44ef3bd5\", project_id: \"list_latest_workflow"},{"event":"cmd_output","timestamp":1607098226,"output":"s\", queue_id: \"538ec78c-89cc-4900-8e09-a3d807d1c50e\", scope: \"project\", updated_at: ~N[2020-12-04 16"},{"event":"cmd_output","timestamp":1607098226,"output":":10:26.542476], user_generated: false}}\n\u001b[0m\u001b[22m\n16:10:26.552 [info] block_id: 3b781860-6bd5-40f"},{"event":"cmd_output","timestamp":1607098226,"output":"c-b3de-cfc947a0c16e, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098226,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:26.561 [info] event: created, o"},{"event":"cmd_output","timestamp":1607098226,"output":"rigin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:26.562"},{"event":"cmd_output","timestamp":1607098226,"output":" [info] ppl_id: f96f00e2-7b5a-45e9-8980-70ca0822092d, type: PplBlocks, block_index: 0, state: initi"},{"event":"cmd_output","timestamp":1607098226,"output":"alizing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitSta"},{"event":"cmd_output","timestamp":1607098226,"output":"te.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:26.564 [info] ppl_id: f6d30615-e614-472a-9d30-db5da1993c88, "},{"event":"cmd_output","timestamp":1607098226,"output":"type: PplRequests, event: persisted source_args for pipeline: f6d30615-e614-472a-9d30-db5da1993c88, "},{"event":"cmd_output","timestamp":1607098226,"output":"origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:26."},{"event":"cmd_output","timestamp":1607098226,"output":"564 [info] ppl_id: f96f00e2-7b5a-45e9-8980-70ca0822092d, type: PplSubInits, state: done, result: pa"},{"event":"cmd_output","timestamp":1607098226,"output":"ssed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098226,"output":"90), \n\u001b[0m\u001b[22m\n16:10:26.564 [info] ppl_id: f5396772-58c0-481c-8130-725aacbff447, block_id: 631fa"},{"event":"cmd_output","timestamp":1607098226,"output":"d26-2462-46d4-a6c4-f4a4e80141fc, type: PplBlocks, block_index: 0, state: done, result: passed, event"},{"event":"cmd_output","timestamp":1607098226,"output":": exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098226,"output":"\u001b[22m\n16:10:26.568 [info] ppl_id: f6d30615-e614-472a-9d30-db5da1993c88, type: PplSubInits, state: "},{"event":"cmd_output","timestamp":1607098226,"output":"fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change"},{"event":"cmd_output","timestamp":1607098226,"output":"/1(L90), \n\u001b[0m\u001b[22m\n16:10:26.584 [info] ppl_id: f96f00e2-7b5a-45e9-8980-70ca0822092d, type: Ppls,"},{"event":"cmd_output","timestamp":1607098226,"output":" state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state"},{"event":"cmd_output","timestamp":1607098226,"output":"_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:26.593 [info] ppl_id: f96f00e2-7b5a-45e9-8980-70ca0822092d, type"},{"event":"cmd_output","timestamp":1607098226,"output":": PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098226,"output":"ir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:26.597 [info] ppl_id: f96f00e2-7b5a-"},{"event":"cmd_output","timestamp":1607098226,"output":"45e9-8980-70ca0822092d, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098226,"output":"n: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:26.607 [info] ppl_id: f539677"},{"event":"cmd_output","timestamp":1607098226,"output":"2-58c0-481c-8130-725aacbff447, type: Ppls, state: done, result: passed, event: exit_scheduling, reco"},{"event":"cmd_output","timestamp":1607098226,"output":"very_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:26.621 [in"},{"event":"cmd_output","timestamp":1607098226,"output":"fo] ppl_id: f96f00e2-7b5a-45e9-8980-70ca0822092d, type: Ppls, state: running, event: exit_schedulin"},{"event":"cmd_output","timestamp":1607098226,"output":"g, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:26."},{"event":"cmd_output","timestamp":1607098226,"output":"630 [info] ppl_id: f6d30615-e614-472a-9d30-db5da1993c88, type: PplSubInits, state: regular_init, ev"},{"event":"cmd_output","timestamp":1607098226,"output":"ent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b"},{"event":"cmd_output","timestamp":1607098226,"output":"[0m\u001b[22m\n16:10:26.633 [info] block_id: 3b781860-6bd5-40fc-b3de-cfc947a0c16e, type: Tasks, state: d"},{"event":"cmd_output","timestamp":1607098226,"output":"one, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L9"},{"event":"cmd_output","timestamp":1607098226,"output":"0), \n\u001b[0m\u001b[22m\n16:10:26.642 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline"},{"event":"cmd_output","timestamp":1607098226,"output":": \"f96f00e2-7b5a-45e9-8980-70ca0822092d\"\n\u001b[0m\u001b[22m\n16:10:26.647 [info] block_id: 3b781860-6bd5-40"},{"event":"cmd_output","timestamp":1607098226,"output":"fc-b3de-cfc947a0c16e, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098226,"output":"Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:26.665 [info] block_id: 363daef8"},{"event":"cmd_output","timestamp":1607098226,"output":"-252c-454f-b2d2-4b2d1750a938, type: BlockRequests, event: persisted block run request from ppl f96f0"},{"event":"cmd_output","timestamp":1607098226,"output":"0e2-7b5a-45e9-8980-70ca0822092d for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQ"},{"event":"cmd_output","timestamp":1607098226,"output":"ueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:26.668 [info] block_id: 363daef8-252c-454f-b2d2-"},{"event":"cmd_output","timestamp":1607098226,"output":"4b2d1750a938, type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098226,"output":"xir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:26.676 [info] Block 0 of pip"},{"event":"cmd_output","timestamp":1607098226,"output":"eline with id: f96f00e2-7b5a-45e9-8980-70ca0822092d scheduled in block service with id: : \"363daef8-"},{"event":"cmd_output","timestamp":1607098226,"output":"252c-454f-b2d2-4b2d1750a938\"\n\u001b[0m\u001b[22m\n16:10:26.677 [info] ppl_id: 412d7e9e-9129-49cd-8696-b96d8d"},{"event":"cmd_output","timestamp":1607098226,"output":"5116ac, block_id: 3b781860-6bd5-40fc-b3de-cfc947a0c16e, type: PplBlocks, block_index: 0, state: done"},{"event":"cmd_output","timestamp":1607098226,"output":", result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_stat"},{"event":"cmd_output","timestamp":1607098226,"output":"e_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:26.685 [info] ppl_id: f96f00e2-7b5a-45e9-8980-70ca0822092d, typ"},{"event":"cmd_output","timestamp":1607098226,"output":"e: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098226,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:26.685 [info] block_id: 363daef8-25"},{"event":"cmd_output","timestamp":1607098226,"output":"2c-454f-b2d2-4b2d1750a938, type: BlockRequests, event: persisted build and sub_ppl details for block"},{"event":"cmd_output","timestamp":1607098226,"output":"_request: 363daef8-252c-454f-b2d2-4b2d1750a938, origin: Elixir.Block.BlockRequests.Model.BlockReques"},{"event":"cmd_output","timestamp":1607098226,"output":"tsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:26.692 [info] block_id: 363daef8-252c-454f-b2d2-4"},{"event":"cmd_output","timestamp":1607098226,"output":"b2d1750a938, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Bl"},{"event":"cmd_output","timestamp":1607098226,"output":"ocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:26.699 [info] ppl_id: ddfb0ae"},{"event":"cmd_output","timestamp":1607098226,"output":"5-8b17-4541-b560-c0ea49c3c69e, type: PplRequests, event: persisted source_args for pipeline: ddfb0ae"},{"event":"cmd_output","timestamp":1607098226,"output":"5-8b17-4541-b560-c0ea49c3c69e, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source"},{"event":"cmd_output","timestamp":1607098226,"output":"/2(L89), \n\u001b[0m\u001b[22m\n16:10:26.702 [info] block_id: 363daef8-252c-454f-b2d2-4b2d1750a938, type: Blo"},{"event":"cmd_output","timestamp":1607098226,"output":"cks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_s"},{"event":"cmd_output","timestamp":1607098226,"output":"tate_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:26.704 [info] ppl_id: f6d30615-e614-472a-9d30-db5da1993c88, "},{"event":"cmd_output","timestamp":1607098226,"output":"type: PplRequests, event: persisted definition for request with request_token: 37dba9f2-364b-11eb-b4"},{"event":"cmd_output","timestamp":1607098226,"output":"1e-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \r"},{"event":"cmd_output","timestamp":1607098226,"output":"\n\u001b[0m\u001b[22m\n16:10:26.706 [info] ppl_id: ddfb0ae5-8b17-4541-b560-c0ea49c3c69e, type: PplSubInits, st"},{"event":"cmd_output","timestamp":1607098226,"output":"ate: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098226,"output":"hange/1(L90), \n\u001b[0m\u001b[22m\n16:10:26.711 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__me"},{"event":"cmd_output","timestamp":1607098226,"output":"ta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:10:26.709923], name: \""},{"event":"cmd_output","timestamp":1607098226,"output":"master-3-.semaphore/semaphore.yml\", organization_id: \"e0633a04-53a9-49d0-8625-62e1ae96d34b\", project"},{"event":"cmd_output","timestamp":1607098226,"output":"_id: \"list_latest_workflows\", queue_id: \"59099f06-7cc3-425b-97a1-7aed14c87e61\", scope: \"project\", up"},{"event":"cmd_output","timestamp":1607098226,"output":"dated_at: ~N[2020-12-04 16:10:26.709936], user_generated: false}}\n\u001b[0m\u001b[22m\n16:10:26.735 [info] e"},{"event":"cmd_output","timestamp":1607098226,"output":"vent: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098226,"output":"2m\n16:10:26.735 [info] ppl_id: f6d30615-e614-472a-9d30-db5da1993c88, type: PplBlocks, block_index:"},{"event":"cmd_output","timestamp":1607098226,"output":" 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandle"},{"event":"cmd_output","timestamp":1607098226,"output":"r.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:26.738 [info] ppl_id: f6d30615-e614-472a-9d3"},{"event":"cmd_output","timestamp":1607098226,"output":"0-db5da1993c88, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_cou"},{"event":"cmd_output","timestamp":1607098226,"output":"nt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:26.745 [info] ppl"},{"event":"cmd_output","timestamp":1607098226,"output":"_id: 412d7e9e-9129-49cd-8696-b96d8d5116ac, type: Ppls, state: done, result: passed, event: exit_sche"},{"event":"cmd_output","timestamp":1607098226,"output":"duling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098226,"output":"0:26.746 [info] block_id: 363daef8-252c-454f-b2d2-4b2d1750a938, type: Tasks, state: running, event:"},{"event":"cmd_output","timestamp":1607098226,"output":" exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098226,"output":"[22m\n16:10:26.759 [info] block_id: 363daef8-252c-454f-b2d2-4b2d1750a938, type: Tasks, state: done,"},{"event":"cmd_output","timestamp":1607098226,"output":" event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), "},{"event":"cmd_output","timestamp":1607098226,"output":"\n\u001b[0m\u001b[22m\n16:10:26.761 [info] ppl_id: f6d30615-e614-472a-9d30-db5da1993c88, type: PplBlocks, blo"},{"event":"cmd_output","timestamp":1607098226,"output":"ck_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Im"},{"event":"cmd_output","timestamp":1607098226,"output":"pl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:26.762 [info] ppl_id: f6d30615-e614-472a-9d30-db5da1"},{"event":"cmd_output","timestamp":1607098226,"output":"993c88, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper"},{"event":"cmd_output","timestamp":1607098226,"output":".STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:26.772 [info] block_id: 363daef8-252c-454f-b2"},{"event":"cmd_output","timestamp":1607098226,"output":"d2-4b2d1750a938, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098226,"output":"r.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:26.782 [info] ppl_id: ddfb0ae5-8b17-4"},{"event":"cmd_output","timestamp":1607098226,"output":"541-b560-c0ea49c3c69e, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_coun"},{"event":"cmd_output","timestamp":1607098226,"output":"t: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:26.783 [info] ppl_"},{"event":"cmd_output","timestamp":1607098226,"output":"id: f6d30615-e614-472a-9d30-db5da1993c88, type: Ppls, state: queuing, event: exit_scheduling, recove"},{"event":"cmd_output","timestamp":1607098226,"output":"ry_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:26.796 [info"},{"event":"cmd_output","timestamp":1607098226,"output":"] ppl_id: f96f00e2-7b5a-45e9-8980-70ca0822092d, block_id: 363daef8-252c-454f-b2d2-4b2d1750a938, typ"},{"event":"cmd_output","timestamp":1607098226,"output":"e: PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0"},{"event":"cmd_output","timestamp":1607098226,"output":", origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:26.811 [info] ppl_id: "},{"event":"cmd_output","timestamp":1607098226,"output":"f6d30615-e614-472a-9d30-db5da1993c88, type: Ppls, state: running, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098226,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:26.825 [info] P"},{"event":"cmd_output","timestamp":1607098226,"output":"plBlocks WaitingState STM is scheduling block 0 from pipeline: \"f6d30615-e614-472a-9d30-db5da1993c88"},{"event":"cmd_output","timestamp":1607098226,"output":"\"\n\u001b[0m\u001b[22m\n16:10:26.833 [info] ppl_id: ddfb0ae5-8b17-4541-b560-c0ea49c3c69e, type: PplRequests, "},{"event":"cmd_output","timestamp":1607098226,"output":"event: persisted definition for request with request_token: 37e36840-364b-11eb-9595-5254005464e2, or"},{"event":"cmd_output","timestamp":1607098226,"output":"igin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:2"},{"event":"cmd_output","timestamp":1607098226,"output":"6.839 [info] ppl_id: 85e10f98-2a77-46e9-99bc-033714d2ae8b, type: PplRequests, event: persisted sour"},{"event":"cmd_output","timestamp":1607098226,"output":"ce_args for pipeline: 85e10f98-2a77-46e9-99bc-033714d2ae8b, origin: Elixir.Ppl.PplRequests.Model.Ppl"},{"event":"cmd_output","timestamp":1607098226,"output":"RequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:26.839 [info] ppl_id: f96f00e2-7b5a-45e9-8"},{"event":"cmd_output","timestamp":1607098226,"output":"980-70ca0822092d, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0"},{"event":"cmd_output","timestamp":1607098226,"output":", origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:26.843 [info] Queue pe"},{"event":"cmd_output","timestamp":1607098226,"output":"rsisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted"},{"event":"cmd_output","timestamp":1607098226,"output":"_at: ~N[2020-12-04 16:10:26.839329], name: \"master-4-.semaphore/semaphore.yml\", organization_id: \"ad"},{"event":"cmd_output","timestamp":1607098226,"output":"a8fd2f-56a8-46b4-9e24-25af0ffee056\", project_id: \"list_latest_workflows\", queue_id: \"f536b6f0-2ac5-4"},{"event":"cmd_output","timestamp":1607098226,"output":"fd8-8ca2-4cd69a52c0b8\", scope: \"project\", updated_at: ~N[2020-12-04 16:10:26.839338], user_generated"},{"event":"cmd_output","timestamp":1607098226,"output":": false}}\n\u001b[0m\u001b[22m\n16:10:26.844 [info] block_id: f0224140-bb1b-4d77-af18-e8700cf390b1, type: Blo"},{"event":"cmd_output","timestamp":1607098226,"output":"ckRequests, event: persisted block run request from ppl f6d30615-e614-472a-9d30-db5da1993c88 for blo"},{"event":"cmd_output","timestamp":1607098226,"output":"ck 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098226,"output":"[22m\n16:10:26.846 [info] ppl_id: 85e10f98-2a77-46e9-99bc-033714d2ae8b, type: PplSubInits, state: f"},{"event":"cmd_output","timestamp":1607098226,"output":"etching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/"},{"event":"cmd_output","timestamp":1607098226,"output":"1(L90), \n\u001b[0m\u001b[22m\n16:10:26.849 [info] block_id: f0224140-bb1b-4d77-af18-e8700cf390b1, type: Bloc"},{"event":"cmd_output","timestamp":1607098226,"output":"ks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.B"},{"event":"cmd_output","timestamp":1607098226,"output":"locksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:26.852 [info] Block 0 of pipeline with id: f6d30615-"},{"event":"cmd_output","timestamp":1607098226,"output":"e614-472a-9d30-db5da1993c88 scheduled in block service with id: : \"f0224140-bb1b-4d77-af18-e8700cf39"},{"event":"cmd_output","timestamp":1607098226,"output":"0b1\"\n\u001b[0m\u001b[22m\n16:10:26.854 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.Regu"},{"event":"cmd_output","timestamp":1607098226,"output":"larInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:26.854 [info] ppl_id: ddfb0ae5-8b17-4541-b560-c0ea"},{"event":"cmd_output","timestamp":1607098226,"output":"49c3c69e, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098226,"output":"rigin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:26.859"},{"event":"cmd_output","timestamp":1607098226,"output":" [info] ppl_id: ddfb0ae5-8b17-4541-b560-c0ea49c3c69e, type: PplSubInits, state: done, result: passe"},{"event":"cmd_output","timestamp":1607098226,"output":"d, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90)"},{"event":"cmd_output","timestamp":1607098226,"output":", \n\u001b[0m\u001b[22m\n16:10:26.860 [info] block_id: f0224140-bb1b-4d77-af18-e8700cf390b1, type: BlockReque"},{"event":"cmd_output","timestamp":1607098226,"output":"sts, event: persisted build and sub_ppl details for block_request: f0224140-bb1b-4d77-af18-e8700cf39"},{"event":"cmd_output","timestamp":1607098226,"output":"0b1, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098226,"output":"\n16:10:26.857 [info] ppl_id: f6d30615-e614-472a-9d30-db5da1993c88, type: PplBlocks, block_index: 0,"},{"event":"cmd_output","timestamp":1607098226,"output":" state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state"},{"event":"cmd_output","timestamp":1607098226,"output":"_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:26.871 [info] block_id: f0224140-bb1b-4d77-af18-e8700cf390b1, ty"},{"event":"cmd_output","timestamp":1607098226,"output":"pe: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler"},{"event":"cmd_output","timestamp":1607098226,"output":".InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:26.879 [info] block_id: f0224140-bb1b-4d77-a"},{"event":"cmd_output","timestamp":1607098226,"output":"f18-e8700cf390b1, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: E"},{"event":"cmd_output","timestamp":1607098226,"output":"lixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:26.880 [info] ppl_id: ddfb0ae5-8b"},{"event":"cmd_output","timestamp":1607098226,"output":"17-4541-b560-c0ea49c3c69e, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, "},{"event":"cmd_output","timestamp":1607098226,"output":"recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:26.894"},{"event":"cmd_output","timestamp":1607098226,"output":" [info] ppl_id: ddfb0ae5-8b17-4541-b560-c0ea49c3c69e, type: Ppls, state: pending, event: exit_sched"},{"event":"cmd_output","timestamp":1607098226,"output":"uling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10"},{"event":"cmd_output","timestamp":1607098226,"output":":26.903 [info] block_id: f0224140-bb1b-4d77-af18-e8700cf390b1, type: Tasks, state: running, event: "},{"event":"cmd_output","timestamp":1607098226,"output":"exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098226,"output":"22m\n16:10:26.914 [info] ppl_id: 85e10f98-2a77-46e9-99bc-033714d2ae8b, type: PplSubInits, state: re"},{"event":"cmd_output","timestamp":1607098226,"output":"gular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chan"},{"event":"cmd_output","timestamp":1607098226,"output":"ge/1(L90), \n\u001b[0m\u001b[22m\n16:10:26.915 [info] ppl_id: ddfb0ae5-8b17-4541-b560-c0ea49c3c69e, type: Ppl"},{"event":"cmd_output","timestamp":1607098226,"output":"s, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_sta"},{"event":"cmd_output","timestamp":1607098226,"output":"te_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:26.930 [info] ppl_id: ddfb0ae5-8b17-4541-b560-c0ea49c3c69e, ty"},{"event":"cmd_output","timestamp":1607098226,"output":"pe: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl."},{"event":"cmd_output","timestamp":1607098226,"output":"log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:26.940 [info] PplBlocks WaitingState STM is scheduling "},{"event":"cmd_output","timestamp":1607098226,"output":"block 0 from pipeline: \"ddfb0ae5-8b17-4541-b560-c0ea49c3c69e\"\n\u001b[0m\u001b[22m\n16:10:26.947 [info] block"},{"event":"cmd_output","timestamp":1607098226,"output":"_id: 423a767e-0b31-4763-a8fe-35399d826278, type: BlockRequests, event: persisted block run request f"},{"event":"cmd_output","timestamp":1607098226,"output":"rom ppl ddfb0ae5-8b17-4541-b560-c0ea49c3c69e for block 0, origin: Elixir.Block.BlockRequests.Model.B"},{"event":"cmd_output","timestamp":1607098226,"output":"lockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:26.949 [info] block_id: 423a767e-0b"},{"event":"cmd_output","timestamp":1607098226,"output":"31-4763-a8fe-35399d826278, type: Blocks, state: initializing, event: initializing, recovery_count: 0"},{"event":"cmd_output","timestamp":1607098226,"output":", origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:26.953 [info] B"},{"event":"cmd_output","timestamp":1607098226,"output":"lock 0 of pipeline with id: ddfb0ae5-8b17-4541-b560-c0ea49c3c69e scheduled in block service with id:"},{"event":"cmd_output","timestamp":1607098226,"output":" : \"423a767e-0b31-4763-a8fe-35399d826278\"\n\u001b[0m\u001b[22m\n16:10:26.958 [info] block_id: 423a767e-0b31-4"},{"event":"cmd_output","timestamp":1607098226,"output":"763-a8fe-35399d826278, type: BlockRequests, event: persisted build and sub_ppl details for block_req"},{"event":"cmd_output","timestamp":1607098226,"output":"uest: 423a767e-0b31-4763-a8fe-35399d826278, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQu"},{"event":"cmd_output","timestamp":1607098226,"output":"eries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:26.958 [info] ppl_id: ddfb0ae5-8b17-4541-b560-c0ea49c"},{"event":"cmd_output","timestamp":1607098226,"output":"3c69e, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098226,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:26.963 [info] ppl_id: 85e"},{"event":"cmd_output","timestamp":1607098226,"output":"10f98-2a77-46e9-99bc-033714d2ae8b, type: PplRequests, event: persisted definition for request with r"},{"event":"cmd_output","timestamp":1607098226,"output":"equest_token: 37eccf8e-364b-11eb-8be2-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequests"},{"event":"cmd_output","timestamp":1607098226,"output":"Queries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:26.964 [info] block_id: 423a767e-0b31-4763-a8f"},{"event":"cmd_output","timestamp":1607098226,"output":"e-35399d826278, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block"},{"event":"cmd_output","timestamp":1607098226,"output":".Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:26.967 [info] block_id: 42"},{"event":"cmd_output","timestamp":1607098226,"output":"3a767e-0b31-4763-a8fe-35399d826278, type: Blocks, state: running, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098226,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:26.970 [info] Q"},{"event":"cmd_output","timestamp":1607098226,"output":"ueue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, i"},{"event":"cmd_output","timestamp":1607098226,"output":"nserted_at: ~N[2020-12-04 16:10:26.966476], name: \"master-5-.semaphore/semaphore.yml\", organization_"},{"event":"cmd_output","timestamp":1607098226,"output":"id: \"4df20b80-27e8-4b39-82f2-b4ba86012c2b\", project_id: \"list_latest_workflows\", queue_id: \"50011247"},{"event":"cmd_output","timestamp":1607098226,"output":"-19b9-4778-bc1b-cb5b80f5018c\", scope: \"project\", updated_at: ~N[2020-12-04 16:10:26.966488], user_ge"},{"event":"cmd_output","timestamp":1607098226,"output":"nerated: false}}\n\u001b[0m\u001b[22m\n16:10:26.970 [info] ppl_id: a8ec42e4-8ae2-4228-912a-34d54eaa5dd4, type"},{"event":"cmd_output","timestamp":1607098226,"output":": PplRequests, event: persisted source_args for pipeline: a8ec42e4-8ae2-4228-912a-34d54eaa5dd4, orig"},{"event":"cmd_output","timestamp":1607098226,"output":"in: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:26.977 "},{"event":"cmd_output","timestamp":1607098226,"output":"[info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), "},{"event":"cmd_output","timestamp":1607098226,"output":"\n\u001b[0m\u001b[22m\n16:10:26.977 [info] ppl_id: 85e10f98-2a77-46e9-99bc-033714d2ae8b, type: PplBlocks, blo"},{"event":"cmd_output","timestamp":1607098226,"output":"ck_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits."},{"event":"cmd_output","timestamp":1607098226,"output":"STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:26.979 [info] ppl_id: a8ec42e4-8ae2"},{"event":"cmd_output","timestamp":1607098226,"output":"-4228-912a-34d54eaa5dd4, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count:"},{"event":"cmd_output","timestamp":1607098226,"output":" 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:26.980 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098226,"output":": 85e10f98-2a77-46e9-99bc-033714d2ae8b, type: PplSubInits, state: done, result: passed, event: exit_"},{"event":"cmd_output","timestamp":1607098226,"output":"scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098226,"output":"16:10:26.995 [info] block_id: 423a767e-0b31-4763-a8fe-35399d826278, type: Tasks, state: running, ev"},{"event":"cmd_output","timestamp":1607098226,"output":"ent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b"},{"event":"cmd_output","timestamp":1607098227,"output":"[0m\u001b[22m\n16:10:27.001 [info] ppl_id: 85e10f98-2a77-46e9-99bc-033714d2ae8b, type: PplBlocks, block_"},{"event":"cmd_output","timestamp":1607098227,"output":"index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl."},{"event":"cmd_output","timestamp":1607098227,"output":"log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.004 [info] block_id: f0224140-bb1b-4d77-af18-e8700cf"},{"event":"cmd_output","timestamp":1607098227,"output":"390b1, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.ST"},{"event":"cmd_output","timestamp":1607098227,"output":"M.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.013 [info] block_id: f0224140-bb1b-4d77-af18-"},{"event":"cmd_output","timestamp":1607098227,"output":"e8700cf390b1, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098227,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.019 [info] ppl_id: 85e10f98-2a77-46e9"},{"event":"cmd_output","timestamp":1607098227,"output":"-99bc-033714d2ae8b, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: E"},{"event":"cmd_output","timestamp":1607098227,"output":"lixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.042 [info] ppl_id: f6d30615-e6"},{"event":"cmd_output","timestamp":1607098227,"output":"14-472a-9d30-db5da1993c88, block_id: f0224140-bb1b-4d77-af18-e8700cf390b1, type: PplBlocks, block_in"},{"event":"cmd_output","timestamp":1607098227,"output":"dex: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loope"},{"event":"cmd_output","timestamp":1607098227,"output":"r.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.048 [info] ppl_id: a8ec42e4-8ae2-4228-912"},{"event":"cmd_output","timestamp":1607098227,"output":"a-34d54eaa5dd4, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098227,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.051 [info] ppl_id: 85e"},{"event":"cmd_output","timestamp":1607098227,"output":"10f98-2a77-46e9-99bc-033714d2ae8b, type: Ppls, state: queuing, event: exit_scheduling, recovery_coun"},{"event":"cmd_output","timestamp":1607098227,"output":"t: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.078 [info] ppl_"},{"event":"cmd_output","timestamp":1607098227,"output":"id: 85e10f98-2a77-46e9-99bc-033714d2ae8b, type: Ppls, state: running, event: exit_scheduling, recove"},{"event":"cmd_output","timestamp":1607098227,"output":"ry_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.084 [info"},{"event":"cmd_output","timestamp":1607098227,"output":"] ppl_id: f6d30615-e614-472a-9d30-db5da1993c88, type: Ppls, state: done, result: passed, event: exi"},{"event":"cmd_output","timestamp":1607098227,"output":"t_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098227,"output":"\n16:10:27.090 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"85e10f98-2a7"},{"event":"cmd_output","timestamp":1607098227,"output":"7-46e9-99bc-033714d2ae8b\"\n\u001b[0m\u001b[22m\n16:10:27.097 [info] block_id: 51eebc29-10f4-44f9-92b0-c0fd568"},{"event":"cmd_output","timestamp":1607098227,"output":"c8b2b, type: BlockRequests, event: persisted block run request from ppl 85e10f98-2a77-46e9-99bc-0337"},{"event":"cmd_output","timestamp":1607098227,"output":"14d2ae8b for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response"},{"event":"cmd_output","timestamp":1607098227,"output":"/4(L35), \n\u001b[0m\u001b[22m\n16:10:27.101 [info] ppl_id: 541b6bd0-fe78-407d-b0b5-ba30acbfd3a6, type: PplRe"},{"event":"cmd_output","timestamp":1607098227,"output":"quests, event: persisted source_args for pipeline: 541b6bd0-fe78-407d-b0b5-ba30acbfd3a6, origin: Eli"},{"event":"cmd_output","timestamp":1607098227,"output":"xir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:27.104 [info] "},{"event":"cmd_output","timestamp":1607098227,"output":" block_id: 51eebc29-10f4-44f9-92b0-c0fd568c8b2b, type: Blocks, state: initializing, event: initializ"},{"event":"cmd_output","timestamp":1607098227,"output":"ing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098227,"output":"16:10:27.105 [info] ppl_id: 541b6bd0-fe78-407d-b0b5-ba30acbfd3a6, type: PplSubInits, state: fetchin"},{"event":"cmd_output","timestamp":1607098227,"output":"g, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90)"},{"event":"cmd_output","timestamp":1607098227,"output":", \n\u001b[0m\u001b[22m\n16:10:27.111 [info] Block 0 of pipeline with id: 85e10f98-2a77-46e9-99bc-033714d2ae8"},{"event":"cmd_output","timestamp":1607098227,"output":"b scheduled in block service with id: : \"51eebc29-10f4-44f9-92b0-c0fd568c8b2b\"\n\u001b[0m\u001b[22m\n16:10:27."},{"event":"cmd_output","timestamp":1607098227,"output":"115 [info] block_id: 51eebc29-10f4-44f9-92b0-c0fd568c8b2b, type: BlockRequests, event: persisted bu"},{"event":"cmd_output","timestamp":1607098227,"output":"ild and sub_ppl details for block_request: 51eebc29-10f4-44f9-92b0-c0fd568c8b2b, origin: Elixir.Bloc"},{"event":"cmd_output","timestamp":1607098227,"output":"k.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:27.115 [info] pp"},{"event":"cmd_output","timestamp":1607098227,"output":"l_id: 85e10f98-2a77-46e9-99bc-033714d2ae8b, type: PplBlocks, block_index: 0, state: running, event: "},{"event":"cmd_output","timestamp":1607098227,"output":"exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098227,"output":"22m\n16:10:27.119 [info] ppl_id: a8ec42e4-8ae2-4228-912a-34d54eaa5dd4, type: PplRequests, event: pe"},{"event":"cmd_output","timestamp":1607098227,"output":"rsisted definition for request with request_token: 37f76f98-364b-11eb-a2d1-5254005464e2, origin: Eli"},{"event":"cmd_output","timestamp":1607098227,"output":"xir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:27.119 [in"},{"event":"cmd_output","timestamp":1607098227,"output":"fo] block_id: 51eebc29-10f4-44f9-92b0-c0fd568c8b2b, type: Tasks, state: pending, event: created, re"},{"event":"cmd_output","timestamp":1607098227,"output":"covery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098227,"output":"2m\n16:10:27.121 [info] block_id: 51eebc29-10f4-44f9-92b0-c0fd568c8b2b, type: Blocks, state: runnin"},{"event":"cmd_output","timestamp":1607098227,"output":"g, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90)"},{"event":"cmd_output","timestamp":1607098227,"output":", \n\u001b[0m\u001b[22m\n16:10:27.135 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto."},{"event":"cmd_output","timestamp":1607098227,"output":"Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:10:27.129534], name: \"refs/tags/v1"},{"event":"cmd_output","timestamp":1607098227,"output":".6-.semaphore/semaphore.yml\", organization_id: \"ab92b451-8785-4a17-aeab-9462f6803183\", project_id: \""},{"event":"cmd_output","timestamp":1607098227,"output":"list_latest_workflows\", queue_id: \"e3f94acc-5105-444f-8f0b-3ca80f282ea4\", scope: \"project\", updated_"},{"event":"cmd_output","timestamp":1607098227,"output":"at: ~N[2020-12-04 16:10:27.129545], user_generated: false}}\n\u001b[0m\u001b[22m\n16:10:27.139 [info] block_i"},{"event":"cmd_output","timestamp":1607098227,"output":"d: 423a767e-0b31-4763-a8fe-35399d826278, type: Tasks, state: done, event: exit_scheduling, recovery_"},{"event":"cmd_output","timestamp":1607098227,"output":"count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.153 [info] "},{"event":"cmd_output","timestamp":1607098227,"output":"event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098227,"output":"22m\n16:10:27.153 [info] ppl_id: a8ec42e4-8ae2-4228-912a-34d54eaa5dd4, type: PplBlocks, block_index"},{"event":"cmd_output","timestamp":1607098227,"output":": 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandl"},{"event":"cmd_output","timestamp":1607098227,"output":"er.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:27.161 [info] ppl_id: a8ec42e4-8ae2-4228-91"},{"event":"cmd_output","timestamp":1607098227,"output":"2a-34d54eaa5dd4, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_co"},{"event":"cmd_output","timestamp":1607098227,"output":"unt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.166 [info] bl"},{"event":"cmd_output","timestamp":1607098227,"output":"ock_id: 423a767e-0b31-4763-a8fe-35399d826278, type: Blocks, state: done, event: exit_scheduling, rec"},{"event":"cmd_output","timestamp":1607098227,"output":"overy_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.168 [i"},{"event":"cmd_output","timestamp":1607098227,"output":"nfo] block_id: 51eebc29-10f4-44f9-92b0-c0fd568c8b2b, type: Tasks, state: running, event: exit_sched"},{"event":"cmd_output","timestamp":1607098227,"output":"uling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10"},{"event":"cmd_output","timestamp":1607098227,"output":":27.180 [info] ppl_id: 541b6bd0-fe78-407d-b0b5-ba30acbfd3a6, type: PplSubInits, state: regular_init"},{"event":"cmd_output","timestamp":1607098227,"output":", event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90),"},{"event":"cmd_output","timestamp":1607098227,"output":" \n\u001b[0m\u001b[22m\n16:10:27.184 [info] ppl_id: ddfb0ae5-8b17-4541-b560-c0ea49c3c69e, block_id: 423a767e-"},{"event":"cmd_output","timestamp":1607098227,"output":"0b31-4763-a8fe-35399d826278, type: PplBlocks, block_index: 0, state: done, result: passed, event: ex"},{"event":"cmd_output","timestamp":1607098227,"output":"it_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098227,"output":"m\n16:10:27.185 [info] ppl_id: a8ec42e4-8ae2-4228-912a-34d54eaa5dd4, type: PplBlocks, block_index: "},{"event":"cmd_output","timestamp":1607098227,"output":"0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_sta"},{"event":"cmd_output","timestamp":1607098227,"output":"te_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.200 [info] ppl_id: a8ec42e4-8ae2-4228-912a-34d54eaa5dd4, ty"},{"event":"cmd_output","timestamp":1607098227,"output":"pe: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl."},{"event":"cmd_output","timestamp":1607098227,"output":"log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.219 [info] ppl_id: a8ec42e4-8ae2-4228-912a-34d54eaa5"},{"event":"cmd_output","timestamp":1607098227,"output":"dd4, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.ST"},{"event":"cmd_output","timestamp":1607098227,"output":"M.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.222 [info] ppl_id: ddfb0ae5-8b17-4541-b560-c0"},{"event":"cmd_output","timestamp":1607098227,"output":"ea49c3c69e, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098227,"output":"in: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.228 [info] ppl_id: 541b6b"},{"event":"cmd_output","timestamp":1607098227,"output":"d0-fe78-407d-b0b5-ba30acbfd3a6, type: PplRequests, event: persisted definition for request with requ"},{"event":"cmd_output","timestamp":1607098227,"output":"est_token: 38004c58-364b-11eb-b74c-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQue"},{"event":"cmd_output","timestamp":1607098227,"output":"ries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:27.229 [info] ppl_id: a5cb0326-8258-4105-8629-790"},{"event":"cmd_output","timestamp":1607098227,"output":"6eca809d8, type: PplRequests, event: persisted source_args for pipeline: a5cb0326-8258-4105-8629-790"},{"event":"cmd_output","timestamp":1607098227,"output":"6eca809d8, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098227,"output":"\n16:10:27.232 [info] ppl_id: a5cb0326-8258-4105-8629-7906eca809d8, type: PplSubInits, state: fetch"},{"event":"cmd_output","timestamp":1607098227,"output":"ing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L9"},{"event":"cmd_output","timestamp":1607098227,"output":"0), \n\u001b[0m\u001b[22m\n16:10:27.234 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ect"},{"event":"cmd_output","timestamp":1607098227,"output":"o.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:10:27.231947], name: \"refs/tags/"},{"event":"cmd_output","timestamp":1607098227,"output":"v1.7-.semaphore/semaphore.yml\", organization_id: \"51265280-6a58-447a-8508-ce56266dab8f\", project_id:"},{"event":"cmd_output","timestamp":1607098227,"output":" \"list_latest_workflows\", queue_id: \"fd57b3c8-33f5-450f-aefb-227b51de7457\", scope: \"project\", update"},{"event":"cmd_output","timestamp":1607098227,"output":"d_at: ~N[2020-12-04 16:10:27.231960], user_generated: false}}\n\u001b[0m\u001b[22m\n16:10:27.242 [info] ppl_i"},{"event":"cmd_output","timestamp":1607098227,"output":"d: a8ec42e4-8ae2-4228-912a-34d54eaa5dd4, type: Ppls, state: running, event: exit_scheduling, recover"},{"event":"cmd_output","timestamp":1607098227,"output":"y_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.244 [info]"},{"event":"cmd_output","timestamp":1607098227,"output":" event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098227,"output":"\u001b[22m\n16:10:27.244 [info] ppl_id: 541b6bd0-fe78-407d-b0b5-ba30acbfd3a6, type: PplBlocks, block_ind"},{"event":"cmd_output","timestamp":1607098227,"output":"ex: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHan"},{"event":"cmd_output","timestamp":1607098227,"output":"dler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:27.249 [info] ppl_id: 541b6bd0-fe78-407d-"},{"event":"cmd_output","timestamp":1607098227,"output":"b0b5-ba30acbfd3a6, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_"},{"event":"cmd_output","timestamp":1607098227,"output":"count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.255 [info] "},{"event":"cmd_output","timestamp":1607098227,"output":"PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"a8ec42e4-8ae2-4228-912a-34d54eaa5dd"},{"event":"cmd_output","timestamp":1607098227,"output":"4\"\n\u001b[0m\u001b[22m\n16:10:27.271 [info] ppl_id: 541b6bd0-fe78-407d-b0b5-ba30acbfd3a6, type: Ppls, state:"},{"event":"cmd_output","timestamp":1607098227,"output":" pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change"},{"event":"cmd_output","timestamp":1607098227,"output":"/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.273 [info] block_id: 51eebc29-10f4-44f9-92b0-c0fd568c8b2b, type: Tas"},{"event":"cmd_output","timestamp":1607098227,"output":"ks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state"},{"event":"cmd_output","timestamp":1607098227,"output":"_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.280 [info] ppl_id: 541b6bd0-fe78-407d-b0b5-ba30acbfd3a6, type"},{"event":"cmd_output","timestamp":1607098227,"output":": PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098227,"output":"ir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.280 [info] block_id: 92f9ca29-772"},{"event":"cmd_output","timestamp":1607098227,"output":"4-4940-b740-cedd3f6eeaa4, type: BlockRequests, event: persisted block run request from ppl a8ec42e4-"},{"event":"cmd_output","timestamp":1607098227,"output":"8ae2-4228-912a-34d54eaa5dd4 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueri"},{"event":"cmd_output","timestamp":1607098227,"output":"es.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:27.283 [info] block_id: 92f9ca29-7724-4940-b740-cedd"},{"event":"cmd_output","timestamp":1607098227,"output":"3f6eeaa4, type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098227,"output":"Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:27.293 [info] block_id: 51eebc29"},{"event":"cmd_output","timestamp":1607098227,"output":"-10f4-44f9-92b0-c0fd568c8b2b, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098227,"output":"origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.294 [info] Block 0 of"},{"event":"cmd_output","timestamp":1607098227,"output":" pipeline with id: a8ec42e4-8ae2-4228-912a-34d54eaa5dd4 scheduled in block service with id: : \"92f9c"},{"event":"cmd_output","timestamp":1607098227,"output":"a29-7724-4940-b740-cedd3f6eeaa4\"\n\u001b[0m\u001b[22m\n16:10:27.301 [info] block_id: 92f9ca29-7724-4940-b740-"},{"event":"cmd_output","timestamp":1607098227,"output":"cedd3f6eeaa4, type: BlockRequests, event: persisted build and sub_ppl details for block_request: 92f"},{"event":"cmd_output","timestamp":1607098227,"output":"9ca29-7724-4940-b740-cedd3f6eeaa4, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.ins"},{"event":"cmd_output","timestamp":1607098227,"output":"ert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:27.306 [info] ppl_id: a8ec42e4-8ae2-4228-912a-34d54eaa5dd4, ty"},{"event":"cmd_output","timestamp":1607098227,"output":"pe: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098227,"output":"ixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.306 [info] block_id: 92f9ca29-7"},{"event":"cmd_output","timestamp":1607098227,"output":"724-4940-b740-cedd3f6eeaa4, type: Tasks, state: pending, event: created, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098227,"output":"Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:27.311 [info] "},{"event":"cmd_output","timestamp":1607098227,"output":"ppl_id: 541b6bd0-fe78-407d-b0b5-ba30acbfd3a6, type: Ppls, state: queuing, event: exit_scheduling, re"},{"event":"cmd_output","timestamp":1607098227,"output":"covery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.311 ["},{"event":"cmd_output","timestamp":1607098227,"output":"info] block_id: 92f9ca29-7724-4940-b740-cedd3f6eeaa4, type: Blocks, state: running, event: exit_sch"},{"event":"cmd_output","timestamp":1607098227,"output":"eduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098227,"output":"10:27.319 [info] ppl_id: a5cb0326-8258-4105-8629-7906eca809d8, type: PplSubInits, state: regular_in"},{"event":"cmd_output","timestamp":1607098227,"output":"it, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90"},{"event":"cmd_output","timestamp":1607098227,"output":"), \n\u001b[0m\u001b[22m\n16:10:27.331 [info] ppl_id: 85e10f98-2a77-46e9-99bc-033714d2ae8b, block_id: 51eebc2"},{"event":"cmd_output","timestamp":1607098227,"output":"9-10f4-44f9-92b0-c0fd568c8b2b, type: PplBlocks, block_index: 0, state: done, result: passed, event: "},{"event":"cmd_output","timestamp":1607098227,"output":"exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098227,"output":"22m\n16:10:27.343 [info] block_id: 92f9ca29-7724-4940-b740-cedd3f6eeaa4, type: Tasks, state: runnin"},{"event":"cmd_output","timestamp":1607098227,"output":"g, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90)"},{"event":"cmd_output","timestamp":1607098227,"output":", \n\u001b[0m\u001b[22m\n16:10:27.358 [info] ppl_id: 541b6bd0-fe78-407d-b0b5-ba30acbfd3a6, type: Ppls, state:"},{"event":"cmd_output","timestamp":1607098227,"output":" running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change"},{"event":"cmd_output","timestamp":1607098227,"output":"/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.367 [info] ppl_id: 0eb6501c-842d-40eb-8c2b-b346bf437ff8, type: PplRe"},{"event":"cmd_output","timestamp":1607098227,"output":"quests, event: persisted source_args for pipeline: 0eb6501c-842d-40eb-8c2b-b346bf437ff8, origin: Eli"},{"event":"cmd_output","timestamp":1607098227,"output":"xir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:27.375 [info] "},{"event":"cmd_output","timestamp":1607098227,"output":" ppl_id: 0eb6501c-842d-40eb-8c2b-b346bf437ff8, type: PplSubInits, state: fetching, event: exit_sched"},{"event":"cmd_output","timestamp":1607098227,"output":"uling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10"},{"event":"cmd_output","timestamp":1607098227,"output":":27.375 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"541b6bd0-fe78-407d-"},{"event":"cmd_output","timestamp":1607098227,"output":"b0b5-ba30acbfd3a6\"\n\u001b[0m\u001b[22m\n16:10:27.391 [info] ppl_id: 85e10f98-2a77-46e9-99bc-033714d2ae8b, ty"},{"event":"cmd_output","timestamp":1607098227,"output":"pe: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loo"},{"event":"cmd_output","timestamp":1607098227,"output":"per.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.393 [info] ppl_id: a5cb0326-8258-4105-8"},{"event":"cmd_output","timestamp":1607098227,"output":"629-7906eca809d8, type: PplRequests, event: persisted definition for request with request_token: 380"},{"event":"cmd_output","timestamp":1607098227,"output":"a5b1c-364b-11eb-b896-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_de"},{"event":"cmd_output","timestamp":1607098227,"output":"finition/3(L76), \n\u001b[0m\u001b[22m\n16:10:27.395 [info] block_id: 92f9ca29-7724-4940-b740-cedd3f6eeaa4, t"},{"event":"cmd_output","timestamp":1607098227,"output":"ype: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.l"},{"event":"cmd_output","timestamp":1607098227,"output":"og_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.402 [info] block_id: 203fca1d-f700-4f87-bc6c-1dfb9294"},{"event":"cmd_output","timestamp":1607098227,"output":"0427, type: BlockRequests, event: persisted block run request from ppl 541b6bd0-fe78-407d-b0b5-ba30a"},{"event":"cmd_output","timestamp":1607098227,"output":"cbfd3a6 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/"},{"event":"cmd_output","timestamp":1607098227,"output":"4(L35), \n\u001b[0m\u001b[22m\n16:10:27.406 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: "},{"event":"cmd_output","timestamp":1607098227,"output":"#Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:10:27.399090], name: \"refs/t"},{"event":"cmd_output","timestamp":1607098227,"output":"ags/v1.8-.semaphore/semaphore.yml\", organization_id: \"f3e0daf3-f206-4c67-af90-e13991489c74\", project"},{"event":"cmd_output","timestamp":1607098227,"output":"_id: \"list_latest_workflows\", queue_id: \"cab8e23b-66e5-47c5-9497-3e45dd6bde14\", scope: \"project\", up"},{"event":"cmd_output","timestamp":1607098227,"output":"dated_at: ~N[2020-12-04 16:10:27.399102], user_generated: false}}\n\u001b[0m\u001b[22m\n16:10:27.406 [info] b"},{"event":"cmd_output","timestamp":1607098227,"output":"lock_id: 92f9ca29-7724-4940-b740-cedd3f6eeaa4, type: Blocks, state: done, event: exit_scheduling, re"},{"event":"cmd_output","timestamp":1607098227,"output":"covery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.411 ["},{"event":"cmd_output","timestamp":1607098227,"output":"info] block_id: 203fca1d-f700-4f87-bc6c-1dfb92940427, type: Blocks, state: initializing, event: ini"},{"event":"cmd_output","timestamp":1607098227,"output":"tializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098227,"output":"[22m\n16:10:27.421 [info] Block 0 of pipeline with id: 541b6bd0-fe78-407d-b0b5-ba30acbfd3a6 schedul"},{"event":"cmd_output","timestamp":1607098227,"output":"ed in block service with id: : \"203fca1d-f700-4f87-bc6c-1dfb92940427\"\n\u001b[0m\u001b[22m\n16:10:27.426 [info"},{"event":"cmd_output","timestamp":1607098227,"output":"] block_id: 203fca1d-f700-4f87-bc6c-1dfb92940427, type: BlockRequests, event: persisted build and s"},{"event":"cmd_output","timestamp":1607098227,"output":"ub_ppl details for block_request: 203fca1d-f700-4f87-bc6c-1dfb92940427, origin: Elixir.Block.BlockRe"},{"event":"cmd_output","timestamp":1607098227,"output":"quests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:27.429 [info] block_id: 2"},{"event":"cmd_output","timestamp":1607098227,"output":"03fca1d-f700-4f87-bc6c-1dfb92940427, type: Tasks, state: pending, event: created, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098227,"output":" origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:27.430"},{"event":"cmd_output","timestamp":1607098227,"output":" [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105),"},{"event":"cmd_output","timestamp":1607098227,"output":" \n\u001b[0m\u001b[22m\n16:10:27.430 [info] ppl_id: a5cb0326-8258-4105-8629-7906eca809d8, type: PplBlocks, bl"},{"event":"cmd_output","timestamp":1607098227,"output":"ock_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits"},{"event":"cmd_output","timestamp":1607098227,"output":".STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:27.432 [info] block_id: 203fca1d-f"},{"event":"cmd_output","timestamp":1607098227,"output":"700-4f87-bc6c-1dfb92940427, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098227,"output":" origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.436 [info] ppl_id: a"},{"event":"cmd_output","timestamp":1607098227,"output":"5cb0326-8258-4105-8629-7906eca809d8, type: PplSubInits, state: done, result: passed, event: exit_sch"},{"event":"cmd_output","timestamp":1607098227,"output":"eduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098227,"output":"10:27.438 [info] ppl_id: 541b6bd0-fe78-407d-b0b5-ba30acbfd3a6, type: PplBlocks, block_index: 0, sta"},{"event":"cmd_output","timestamp":1607098227,"output":"te: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_cha"},{"event":"cmd_output","timestamp":1607098227,"output":"nge/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.438 [info] ppl_id: a8ec42e4-8ae2-4228-912a-34d54eaa5dd4, block_id"},{"event":"cmd_output","timestamp":1607098227,"output":": 92f9ca29-7724-4940-b740-cedd3f6eeaa4, type: PplBlocks, block_index: 0, state: done, result: passed"},{"event":"cmd_output","timestamp":1607098227,"output":", event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90),"},{"event":"cmd_output","timestamp":1607098227,"output":" \n\u001b[0m\u001b[22m\n16:10:27.449 [info] ppl_id: 0eb6501c-842d-40eb-8c2b-b346bf437ff8, type: PplSubInits, "},{"event":"cmd_output","timestamp":1607098227,"output":"state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_s"},{"event":"cmd_output","timestamp":1607098227,"output":"tate_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.464 [info] ppl_id: a5cb0326-8258-4105-8629-7906eca809d8, "},{"event":"cmd_output","timestamp":1607098227,"output":"type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098227,"output":"Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.471 [info] block_id: 203fca1d"},{"event":"cmd_output","timestamp":1607098227,"output":"-f700-4f87-bc6c-1dfb92940427, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0"},{"event":"cmd_output","timestamp":1607098227,"output":", origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.477 [info] ppl_id: "},{"event":"cmd_output","timestamp":1607098227,"output":"a8ec42e4-8ae2-4228-912a-34d54eaa5dd4, type: Ppls, state: done, result: passed, event: exit_schedulin"},{"event":"cmd_output","timestamp":1607098227,"output":"g, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27."},{"event":"cmd_output","timestamp":1607098227,"output":"484 [info] ppl_id: a5cb0326-8258-4105-8629-7906eca809d8, type: Ppls, state: pending, event: exit_sc"},{"event":"cmd_output","timestamp":1607098227,"output":"heduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098227,"output":":10:27.494 [info] ppl_id: 2ad8f743-eb7f-4f0d-bf04-d2673b0b326e, type: PplRequests, event: persisted"},{"event":"cmd_output","timestamp":1607098227,"output":" source_args for pipeline: 2ad8f743-eb7f-4f0d-bf04-d2673b0b326e, origin: Elixir.Ppl.PplRequests.Mode"},{"event":"cmd_output","timestamp":1607098227,"output":"l.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:27.500 [info] ppl_id: 2ad8f743-eb7f-4"},{"event":"cmd_output","timestamp":1607098227,"output":"f0d-bf04-d2673b0b326e, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0"},{"event":"cmd_output","timestamp":1607098227,"output":", origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.516 [info] ppl_id: "},{"event":"cmd_output","timestamp":1607098227,"output":"a5cb0326-8258-4105-8629-7906eca809d8, type: Ppls, state: queuing, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098227,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.525 [info] p"},{"event":"cmd_output","timestamp":1607098227,"output":"pl_id: 0eb6501c-842d-40eb-8c2b-b346bf437ff8, type: PplRequests, event: persisted definition for requ"},{"event":"cmd_output","timestamp":1607098227,"output":"est with request_token: 3811a75a-364b-11eb-93bf-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.P"},{"event":"cmd_output","timestamp":1607098227,"output":"plRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:27.530 [info] block_id: 203fca1d-f70"},{"event":"cmd_output","timestamp":1607098227,"output":"0-4f87-bc6c-1dfb92940427, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098227,"output":"n: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.532 [info] Queue persisted"},{"event":"cmd_output","timestamp":1607098227,"output":": {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N"},{"event":"cmd_output","timestamp":1607098227,"output":"[2020-12-04 16:10:27.528662], name: \"refs/tags/v1.9-.semaphore/semaphore.yml\", organization_id: \"423"},{"event":"cmd_output","timestamp":1607098227,"output":"fdbe6-d1ce-4fda-b66b-8e8d81ed7aae\", project_id: \"list_latest_workflows\", queue_id: \"91fc1a48-9094-44"},{"event":"cmd_output","timestamp":1607098227,"output":"fd-8eae-f5610df8d984\", scope: \"project\", updated_at: ~N[2020-12-04 16:10:27.528674], user_generated:"},{"event":"cmd_output","timestamp":1607098227,"output":" false}}\n\u001b[0m\u001b[22m\n16:10:27.537 [info] ppl_id: a5cb0326-8258-4105-8629-7906eca809d8, type: Ppls, "},{"event":"cmd_output","timestamp":1607098227,"output":"state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_"},{"event":"cmd_output","timestamp":1607098227,"output":"change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.543 [info] block_id: 203fca1d-f700-4f87-bc6c-1dfb92940427, typ"},{"event":"cmd_output","timestamp":1607098227,"output":"e: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.lo"},{"event":"cmd_output","timestamp":1607098227,"output":"g_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.545 [info] PplBlocks WaitingState STM is scheduling bl"},{"event":"cmd_output","timestamp":1607098227,"output":"ock 0 from pipeline: \"a5cb0326-8258-4105-8629-7906eca809d8\"\n\u001b[0m\u001b[22m\n16:10:27.549 [info] event: "},{"event":"cmd_output","timestamp":1607098227,"output":"created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098227,"output":":10:27.549 [info] ppl_id: 0eb6501c-842d-40eb-8c2b-b346bf437ff8, type: PplBlocks, block_index: 0, st"},{"event":"cmd_output","timestamp":1607098227,"output":"ate: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.Regu"},{"event":"cmd_output","timestamp":1607098227,"output":"larInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:27.553 [info] ppl_id: 0eb6501c-842d-40eb-8c2b-b346"},{"event":"cmd_output","timestamp":1607098227,"output":"bf437ff8, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098227,"output":" origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.554 [info] ppl_id: 2"},{"event":"cmd_output","timestamp":1607098227,"output":"ad8f743-eb7f-4f0d-bf04-d2673b0b326e, type: PplSubInits, state: regular_init, event: exit_scheduling,"},{"event":"cmd_output","timestamp":1607098227,"output":" recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.55"},{"event":"cmd_output","timestamp":1607098227,"output":"6 [info] block_id: 86cf8b1d-63aa-41d5-8d8d-a2f232beade2, type: BlockRequests, event: persisted bloc"},{"event":"cmd_output","timestamp":1607098227,"output":"k run request from ppl a5cb0326-8258-4105-8629-7906eca809d8 for block 0, origin: Elixir.Block.BlockR"},{"event":"cmd_output","timestamp":1607098227,"output":"equests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:27.558 [info] block_"},{"event":"cmd_output","timestamp":1607098227,"output":"id: 86cf8b1d-63aa-41d5-8d8d-a2f232beade2, type: Blocks, state: initializing, event: initializing, re"},{"event":"cmd_output","timestamp":1607098227,"output":"covery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:2"},{"event":"cmd_output","timestamp":1607098227,"output":"7.565 [info] Block 0 of pipeline with id: a5cb0326-8258-4105-8629-7906eca809d8 scheduled in block s"},{"event":"cmd_output","timestamp":1607098227,"output":"ervice with id: : \"86cf8b1d-63aa-41d5-8d8d-a2f232beade2\"\n\u001b[0m\u001b[22m\n16:10:27.570 [info] block_id: "},{"event":"cmd_output","timestamp":1607098227,"output":"86cf8b1d-63aa-41d5-8d8d-a2f232beade2, type: BlockRequests, event: persisted build and sub_ppl detail"},{"event":"cmd_output","timestamp":1607098227,"output":"s for block_request: 86cf8b1d-63aa-41d5-8d8d-a2f232beade2, origin: Elixir.Block.BlockRequests.Model."},{"event":"cmd_output","timestamp":1607098227,"output":"BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:27.573 [info] block_id: 86cf8b1d-63aa-"},{"event":"cmd_output","timestamp":1607098227,"output":"41d5-8d8d-a2f232beade2, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098227,"output":"ir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:27.574 [info] ppl_"},{"event":"cmd_output","timestamp":1607098227,"output":"id: 541b6bd0-fe78-407d-b0b5-ba30acbfd3a6, block_id: 203fca1d-f700-4f87-bc6c-1dfb92940427, type: PplB"},{"event":"cmd_output","timestamp":1607098227,"output":"locks, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098227,"output":"n: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.578 [info] ppl_id: 0eb6501"},{"event":"cmd_output","timestamp":1607098227,"output":"c-842d-40eb-8c2b-b346bf437ff8, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduli"},{"event":"cmd_output","timestamp":1607098227,"output":"ng, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27"},{"event":"cmd_output","timestamp":1607098227,"output":".579 [info] ppl_id: a5cb0326-8258-4105-8629-7906eca809d8, type: PplBlocks, block_index: 0, state: r"},{"event":"cmd_output","timestamp":1607098227,"output":"unning, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1"},{"event":"cmd_output","timestamp":1607098227,"output":"(L90), \n\u001b[0m\u001b[22m\n16:10:27.580 [info] ppl_id: 0eb6501c-842d-40eb-8c2b-b346bf437ff8, type: Ppls, s"},{"event":"cmd_output","timestamp":1607098227,"output":"tate: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098227,"output":"hange/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.580 [info] block_id: 86cf8b1d-63aa-41d5-8d8d-a2f232beade2, type"},{"event":"cmd_output","timestamp":1607098227,"output":": Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl."},{"event":"cmd_output","timestamp":1607098227,"output":"log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.619 [info] ppl_id: 0eb6501c-842d-40eb-8c2b-b346bf437"},{"event":"cmd_output","timestamp":1607098227,"output":"ff8, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.ST"},{"event":"cmd_output","timestamp":1607098227,"output":"M.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.628 [info] block_id: 86cf8b1d-63aa-41d5-8d8d-"},{"event":"cmd_output","timestamp":1607098227,"output":"a2f232beade2, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098227,"output":".Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.635 [info] ppl_id: 2ad8f743-eb7f-4f"},{"event":"cmd_output","timestamp":1607098227,"output":"0d-bf04-d2673b0b326e, type: PplRequests, event: persisted definition for request with request_token:"},{"event":"cmd_output","timestamp":1607098227,"output":" 381a376c-364b-11eb-a96c-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.inser"},{"event":"cmd_output","timestamp":1607098227,"output":"t_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:27.637 [info] ppl_id: 36f110fc-b9d0-4a09-9976-cc956a044f8e,"},{"event":"cmd_output","timestamp":1607098227,"output":" type: PplRequests, event: persisted source_args for pipeline: 36f110fc-b9d0-4a09-9976-cc956a044f8e,"},{"event":"cmd_output","timestamp":1607098227,"output":" origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:27"},{"event":"cmd_output","timestamp":1607098227,"output":".639 [info] ppl_id: 541b6bd0-fe78-407d-b0b5-ba30acbfd3a6, type: Ppls, state: done, result: passed, "},{"event":"cmd_output","timestamp":1607098227,"output":"event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \r"},{"event":"cmd_output","timestamp":1607098227,"output":"\n\u001b[0m\u001b[22m\n16:10:27.644 [info] ppl_id: 0eb6501c-842d-40eb-8c2b-b346bf437ff8, type: Ppls, state: ru"},{"event":"cmd_output","timestamp":1607098227,"output":"nning, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1("},{"event":"cmd_output","timestamp":1607098227,"output":"L90), \n\u001b[0m\u001b[22m\n16:10:27.647 [info] ppl_id: 36f110fc-b9d0-4a09-9976-cc956a044f8e, type: PplSubIn"},{"event":"cmd_output","timestamp":1607098227,"output":"its, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_"},{"event":"cmd_output","timestamp":1607098227,"output":"state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.649 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queu"},{"event":"cmd_output","timestamp":1607098227,"output":"es{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:10:27.642404], "},{"event":"cmd_output","timestamp":1607098227,"output":"name: \"refs/tags/v1.10-.semaphore/semaphore.yml\", organization_id: \"f7fe9682-a292-437c-9526-2b7f37f8"},{"event":"cmd_output","timestamp":1607098227,"output":"83f0\", project_id: \"list_latest_workflows\", queue_id: \"470e09f9-f5b5-482c-8147-bb452140bb2b\", scope:"},{"event":"cmd_output","timestamp":1607098227,"output":" \"project\", updated_at: ~N[2020-12-04 16:10:27.642418], user_generated: false}}\n\u001b[0m\u001b[22m\n16:10:27"},{"event":"cmd_output","timestamp":1607098227,"output":".659 [info] block_id: 86cf8b1d-63aa-41d5-8d8d-a2f232beade2, type: Tasks, state: done, event: exit_s"},{"event":"cmd_output","timestamp":1607098227,"output":"cheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098227,"output":"6:10:27.662 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"0eb6501c-842d-4"},{"event":"cmd_output","timestamp":1607098227,"output":"0eb-8c2b-b346bf437ff8\"\n\u001b[0m\u001b[22m\n16:10:27.669 [info] event: created, origin: Elixir.Ppl.PplSubIni"},{"event":"cmd_output","timestamp":1607098227,"output":"ts.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:27.669 [info] ppl_id: 2ad8f743-e"},{"event":"cmd_output","timestamp":1607098227,"output":"b7f-4f0d-bf04-d2673b0b326e, type: PplBlocks, block_index: 0, state: initializing, event: created, re"},{"event":"cmd_output","timestamp":1607098227,"output":"covery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098227,"output":"[22m\n16:10:27.672 [info] block_id: 86cf8b1d-63aa-41d5-8d8d-a2f232beade2, type: Blocks, state: done"},{"event":"cmd_output","timestamp":1607098227,"output":", event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90),"},{"event":"cmd_output","timestamp":1607098227,"output":" \n\u001b[0m\u001b[22m\n16:10:27.674 [info] ppl_id: 2ad8f743-eb7f-4f0d-bf04-d2673b0b326e, type: PplSubInits, "},{"event":"cmd_output","timestamp":1607098227,"output":"state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Im"},{"event":"cmd_output","timestamp":1607098227,"output":"pl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.687 [info] block_id: 569a3f4d-bf65-42cf-931b-6481"},{"event":"cmd_output","timestamp":1607098227,"output":"5e5faa40, type: BlockRequests, event: persisted block run request from ppl 0eb6501c-842d-40eb-8c2b-b"},{"event":"cmd_output","timestamp":1607098227,"output":"346bf437ff8 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_respo"},{"event":"cmd_output","timestamp":1607098227,"output":"nse/4(L35), \n\u001b[0m\u001b[22m\n16:10:27.695 [info] ppl_id: 2ad8f743-eb7f-4f0d-bf04-d2673b0b326e, type: Pp"},{"event":"cmd_output","timestamp":1607098227,"output":"lBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098227,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.695 [info] block_id: 569a3f4d-bf65-42"},{"event":"cmd_output","timestamp":1607098227,"output":"cf-931b-64815e5faa40, type: Blocks, state: initializing, event: initializing, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098227,"output":"gin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:27.703 [info] block_"},{"event":"cmd_output","timestamp":1607098227,"output":"id: 569a3f4d-bf65-42cf-931b-64815e5faa40, type: BlockRequests, event: persisted build and sub_ppl de"},{"event":"cmd_output","timestamp":1607098227,"output":"tails for block_request: 569a3f4d-bf65-42cf-931b-64815e5faa40, origin: Elixir.Block.BlockRequests.Mo"},{"event":"cmd_output","timestamp":1607098227,"output":"del.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:27.704 [info] ppl_id: 2ad8f743-eb7"},{"event":"cmd_output","timestamp":1607098227,"output":"f-4f0d-bf04-d2673b0b326e, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098227,"output":"gin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.704 [info] Block 0 of pi"},{"event":"cmd_output","timestamp":1607098227,"output":"peline with id: 0eb6501c-842d-40eb-8c2b-b346bf437ff8 scheduled in block service with id: : \"569a3f4d"},{"event":"cmd_output","timestamp":1607098227,"output":"-bf65-42cf-931b-64815e5faa40\"\n\u001b[0m\u001b[22m\n16:10:27.707 [info] ppl_id: a5cb0326-8258-4105-8629-7906e"},{"event":"cmd_output","timestamp":1607098227,"output":"ca809d8, block_id: 86cf8b1d-63aa-41d5-8d8d-a2f232beade2, type: PplBlocks, block_index: 0, state: don"},{"event":"cmd_output","timestamp":1607098227,"output":"e, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_sta"},{"event":"cmd_output","timestamp":1607098227,"output":"te_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.708 [info] block_id: 569a3f4d-bf65-42cf-931b-64815e5faa40, "},{"event":"cmd_output","timestamp":1607098227,"output":"type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandl"},{"event":"cmd_output","timestamp":1607098227,"output":"er.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:27.711 [info] ppl_id: 0eb6501c-842d-40eb-8"},{"event":"cmd_output","timestamp":1607098227,"output":"c2b-b346bf437ff8, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_"},{"event":"cmd_output","timestamp":1607098227,"output":"count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.716 [info] "},{"event":"cmd_output","timestamp":1607098227,"output":"block_id: 569a3f4d-bf65-42cf-931b-64815e5faa40, type: Blocks, state: running, event: exit_scheduling"},{"event":"cmd_output","timestamp":1607098227,"output":", recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.7"},{"event":"cmd_output","timestamp":1607098227,"output":"22 [info] ppl_id: 36f110fc-b9d0-4a09-9976-cc956a044f8e, type: PplSubInits, state: regular_init, eve"},{"event":"cmd_output","timestamp":1607098227,"output":"nt: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b["},{"event":"cmd_output","timestamp":1607098227,"output":"0m\u001b[22m\n16:10:27.733 [info] ppl_id: 2ad8f743-eb7f-4f0d-bf04-d2673b0b326e, type: Ppls, state: queui"},{"event":"cmd_output","timestamp":1607098227,"output":"ng, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90"},{"event":"cmd_output","timestamp":1607098227,"output":"), \n\u001b[0m\u001b[22m\n16:10:27.751 [info] block_id: 569a3f4d-bf65-42cf-931b-64815e5faa40, type: Tasks, st"},{"event":"cmd_output","timestamp":1607098227,"output":"ate: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_ch"},{"event":"cmd_output","timestamp":1607098227,"output":"ange/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.764 [info] ppl_id: a5cb0326-8258-4105-8629-7906eca809d8, type: P"},{"event":"cmd_output","timestamp":1607098227,"output":"pls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.S"},{"event":"cmd_output","timestamp":1607098227,"output":"TM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.768 [info] ppl_id: b862d192-f56c-46b8-9b40-9"},{"event":"cmd_output","timestamp":1607098227,"output":"9170c360c7a, type: PplRequests, event: persisted source_args for pipeline: b862d192-f56c-46b8-9b40-9"},{"event":"cmd_output","timestamp":1607098227,"output":"9170c360c7a, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098227,"output":"2m\n16:10:27.773 [info] ppl_id: b862d192-f56c-46b8-9b40-99170c360c7a, type: PplSubInits, state: fet"},{"event":"cmd_output","timestamp":1607098227,"output":"ching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1("},{"event":"cmd_output","timestamp":1607098227,"output":"L90), \n\u001b[0m\u001b[22m\n16:10:27.780 [info] ppl_id: 2ad8f743-eb7f-4f0d-bf04-d2673b0b326e, type: Ppls, st"},{"event":"cmd_output","timestamp":1607098227,"output":"ate: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_ch"},{"event":"cmd_output","timestamp":1607098227,"output":"ange/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.799 [info] block_id: 569a3f4d-bf65-42cf-931b-64815e5faa40, type:"},{"event":"cmd_output","timestamp":1607098227,"output":" Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_s"},{"event":"cmd_output","timestamp":1607098227,"output":"tate_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.807 [info] block_id: 569a3f4d-bf65-42cf-931b-64815e5faa40"},{"event":"cmd_output","timestamp":1607098227,"output":", type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Im"},{"event":"cmd_output","timestamp":1607098227,"output":"pl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.807 [info] PplBlocks WaitingState STM is scheduli"},{"event":"cmd_output","timestamp":1607098227,"output":"ng block 0 from pipeline: \"2ad8f743-eb7f-4f0d-bf04-d2673b0b326e\"\n\u001b[0m\u001b[22m\n16:10:27.815 [info] pp"},{"event":"cmd_output","timestamp":1607098227,"output":"l_id: 36f110fc-b9d0-4a09-9976-cc956a044f8e, type: PplRequests, event: persisted definition for reque"},{"event":"cmd_output","timestamp":1607098227,"output":"st with request_token: 38225924-364b-11eb-a771-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.Pp"},{"event":"cmd_output","timestamp":1607098227,"output":"lRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:27.823 [info] block_id: 08bf3a40-95fd"},{"event":"cmd_output","timestamp":1607098227,"output":"-4081-88d2-5debf81a5af4, type: BlockRequests, event: persisted block run request from ppl 2ad8f743-e"},{"event":"cmd_output","timestamp":1607098227,"output":"b7f-4f0d-bf04-d2673b0b326e for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQuerie"},{"event":"cmd_output","timestamp":1607098227,"output":"s.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:27.824 [info] Queue persisted: {:ok, %Ppl.Queues.Mode"},{"event":"cmd_output","timestamp":1607098227,"output":"l.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:10:27.820"},{"event":"cmd_output","timestamp":1607098227,"output":"875], name: \"refs/tags/v1.11-.semaphore/semaphore.yml\", organization_id: \"7a25c8c5-16ee-44cd-8517-55"},{"event":"cmd_output","timestamp":1607098227,"output":"0404a3a571\", project_id: \"list_latest_workflows\", queue_id: \"2789595d-13e4-47d1-9e03-aaadab4bcc26\", "},{"event":"cmd_output","timestamp":1607098227,"output":"scope: \"project\", updated_at: ~N[2020-12-04 16:10:27.820884], user_generated: false}}\n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098227,"output":":10:27.825 [info] ppl_id: 0eb6501c-842d-40eb-8c2b-b346bf437ff8, block_id: 569a3f4d-bf65-42cf-931b-6"},{"event":"cmd_output","timestamp":1607098227,"output":"4815e5faa40, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, r"},{"event":"cmd_output","timestamp":1607098227,"output":"ecovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.827 "},{"event":"cmd_output","timestamp":1607098227,"output":"[info] block_id: 08bf3a40-95fd-4081-88d2-5debf81a5af4, type: Blocks, state: initializing, event: in"},{"event":"cmd_output","timestamp":1607098227,"output":"itializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098227,"output":"\u001b[22m\n16:10:27.829 [info] Block 0 of pipeline with id: 2ad8f743-eb7f-4f0d-bf04-d2673b0b326e schedu"},{"event":"cmd_output","timestamp":1607098227,"output":"led in block service with id: : \"08bf3a40-95fd-4081-88d2-5debf81a5af4\"\n\u001b[0m\u001b[22m\n16:10:27.835 [inf"},{"event":"cmd_output","timestamp":1607098227,"output":"o] ppl_id: 2ad8f743-eb7f-4f0d-bf04-d2673b0b326e, type: PplBlocks, block_index: 0, state: running, e"},{"event":"cmd_output","timestamp":1607098227,"output":"vent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n"},{"event":"cmd_output","timestamp":1607098227,"output":"\u001b[0m\u001b[22m\n16:10:27.841 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularIni"},{"event":"cmd_output","timestamp":1607098227,"output":"tState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:27.841 [info] ppl_id: 36f110fc-b9d0-4a09-9976-cc956a044f"},{"event":"cmd_output","timestamp":1607098227,"output":"8e, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098227,"output":" Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:27.842 [info"},{"event":"cmd_output","timestamp":1607098227,"output":"] block_id: 08bf3a40-95fd-4081-88d2-5debf81a5af4, type: BlockRequests, event: persisted build and s"},{"event":"cmd_output","timestamp":1607098227,"output":"ub_ppl details for block_request: 08bf3a40-95fd-4081-88d2-5debf81a5af4, origin: Elixir.Block.BlockRe"},{"event":"cmd_output","timestamp":1607098227,"output":"quests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:27.845 [info] block_id: 0"},{"event":"cmd_output","timestamp":1607098227,"output":"8bf3a40-95fd-4081-88d2-5debf81a5af4, type: Tasks, state: pending, event: created, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098227,"output":" origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:27.847"},{"event":"cmd_output","timestamp":1607098227,"output":" [info] ppl_id: b862d192-f56c-46b8-9b40-99170c360c7a, type: PplSubInits, state: regular_init, event"},{"event":"cmd_output","timestamp":1607098227,"output":": exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098227,"output":"\u001b[22m\n16:10:27.847 [info] ppl_id: 36f110fc-b9d0-4a09-9976-cc956a044f8e, type: PplSubInits, state: "},{"event":"cmd_output","timestamp":1607098227,"output":"done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_"},{"event":"cmd_output","timestamp":1607098227,"output":"state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.850 [info] block_id: 08bf3a40-95fd-4081-88d2-5debf81a5af"},{"event":"cmd_output","timestamp":1607098227,"output":"4, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.ST"},{"event":"cmd_output","timestamp":1607098227,"output":"M.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.862 [info] ppl_id: 36f110fc-b9d0-4a09-9976-cc"},{"event":"cmd_output","timestamp":1607098227,"output":"956a044f8e, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count:"},{"event":"cmd_output","timestamp":1607098227,"output":" 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.883 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098227,"output":": 36f110fc-b9d0-4a09-9976-cc956a044f8e, type: Ppls, state: pending, event: exit_scheduling, recovery"},{"event":"cmd_output","timestamp":1607098227,"output":"_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.889 [info] "},{"event":"cmd_output","timestamp":1607098227,"output":" ppl_id: 0eb6501c-842d-40eb-8c2b-b346bf437ff8, type: Ppls, state: done, result: passed, event: exit_"},{"event":"cmd_output","timestamp":1607098227,"output":"scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098227,"output":"16:10:27.890 [info] block_id: 08bf3a40-95fd-4081-88d2-5debf81a5af4, type: Tasks, state: running, ev"},{"event":"cmd_output","timestamp":1607098227,"output":"ent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b"},{"event":"cmd_output","timestamp":1607098227,"output":"[0m\u001b[22m\n16:10:27.905 [info] ppl_id: 608dc11e-6529-4912-9121-813bb4723eb4, type: PplRequests, even"},{"event":"cmd_output","timestamp":1607098227,"output":"t: persisted source_args for pipeline: 608dc11e-6529-4912-9121-813bb4723eb4, origin: Elixir.Ppl.PplR"},{"event":"cmd_output","timestamp":1607098227,"output":"equests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:27.910 [info] ppl_id: 608"},{"event":"cmd_output","timestamp":1607098227,"output":"dc11e-6529-4912-9121-813bb4723eb4, type: PplSubInits, state: fetching, event: exit_scheduling, recov"},{"event":"cmd_output","timestamp":1607098227,"output":"ery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.911 [inf"},{"event":"cmd_output","timestamp":1607098227,"output":"o] ppl_id: 36f110fc-b9d0-4a09-9976-cc956a044f8e, type: Ppls, state: queuing, event: exit_scheduling"},{"event":"cmd_output","timestamp":1607098227,"output":", recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.9"},{"event":"cmd_output","timestamp":1607098227,"output":"15 [info] ppl_id: b862d192-f56c-46b8-9b40-99170c360c7a, type: PplRequests, event: persisted definit"},{"event":"cmd_output","timestamp":1607098227,"output":"ion for request with request_token: 382a7c3a-364b-11eb-95f8-5254005464e2, origin: Elixir.Ppl.PplRequ"},{"event":"cmd_output","timestamp":1607098227,"output":"ests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:27.924 [info] Queue pers"},{"event":"cmd_output","timestamp":1607098227,"output":"isted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_a"},{"event":"cmd_output","timestamp":1607098227,"output":"t: ~N[2020-12-04 16:10:27.921326], name: \"pull-request-1212-.semaphore/semaphore.yml\", organization_"},{"event":"cmd_output","timestamp":1607098227,"output":"id: \"28770b22-ff57-4825-b706-3be0dbf95d04\", project_id: \"list_latest_workflows\", queue_id: \"28e46f2a"},{"event":"cmd_output","timestamp":1607098227,"output":"-79cd-4ab7-8ea0-980a40f68238\", scope: \"project\", updated_at: ~N[2020-12-04 16:10:27.921334], user_ge"},{"event":"cmd_output","timestamp":1607098227,"output":"nerated: false}}\n\u001b[0m\u001b[22m\n16:10:27.927 [info] block_id: 08bf3a40-95fd-4081-88d2-5debf81a5af4, ty"},{"event":"cmd_output","timestamp":1607098227,"output":"pe: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.lo"},{"event":"cmd_output","timestamp":1607098227,"output":"g_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.934 [info] block_id: 08bf3a40-95fd-4081-88d2-5debf81a5"},{"event":"cmd_output","timestamp":1607098227,"output":"af4, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM"},{"event":"cmd_output","timestamp":1607098227,"output":".Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.939 [info] ppl_id: 36f110fc-b9d0-4a09-9976-cc9"},{"event":"cmd_output","timestamp":1607098227,"output":"56a044f8e, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loo"},{"event":"cmd_output","timestamp":1607098227,"output":"per.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.945 [info] event: created, origin: Elix"},{"event":"cmd_output","timestamp":1607098227,"output":"ir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:27.945 [info] pp"},{"event":"cmd_output","timestamp":1607098227,"output":"l_id: b862d192-f56c-46b8-9b40-99170c360c7a, type: PplBlocks, block_index: 0, state: initializing, ev"},{"event":"cmd_output","timestamp":1607098227,"output":"ent: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/"},{"event":"cmd_output","timestamp":1607098227,"output":"1(L105), \n\u001b[0m\u001b[22m\n16:10:27.949 [info] ppl_id: 2ad8f743-eb7f-4f0d-bf04-d2673b0b326e, block_id: 0"},{"event":"cmd_output","timestamp":1607098227,"output":"8bf3a40-95fd-4081-88d2-5debf81a5af4, type: PplBlocks, block_index: 0, state: done, result: passed, e"},{"event":"cmd_output","timestamp":1607098227,"output":"vent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n"},{"event":"cmd_output","timestamp":1607098227,"output":"\u001b[0m\u001b[22m\n16:10:27.950 [info] ppl_id: b862d192-f56c-46b8-9b40-99170c360c7a, type: PplSubInits, sta"},{"event":"cmd_output","timestamp":1607098227,"output":"te: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl."},{"event":"cmd_output","timestamp":1607098227,"output":"log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.963 [info] ppl_id: 608dc11e-6529-4912-9121-813bb4723"},{"event":"cmd_output","timestamp":1607098227,"output":"eb4, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098227,"output":"ir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.964 [info] ppl_id: b862d192-f56c-"},{"event":"cmd_output","timestamp":1607098227,"output":"46b8-9b40-99170c360c7a, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098227,"output":"n: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.966 [info] PplBlocks Waiti"},{"event":"cmd_output","timestamp":1607098227,"output":"ngState STM is scheduling block 0 from pipeline: \"36f110fc-b9d0-4a09-9976-cc956a044f8e\"\n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098227,"output":"16:10:27.970 [info] ppl_id: b862d192-f56c-46b8-9b40-99170c360c7a, type: PplBlocks, block_index: 0, "},{"event":"cmd_output","timestamp":1607098227,"output":"state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_"},{"event":"cmd_output","timestamp":1607098227,"output":"change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.979 [info] ppl_id: b862d192-f56c-46b8-9b40-99170c360c7a, type:"},{"event":"cmd_output","timestamp":1607098227,"output":" Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098227,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.983 [info] block_id: 8a86ca5d-96d3-47b0-aba0-67236b88da"},{"event":"cmd_output","timestamp":1607098227,"output":"56, type: BlockRequests, event: persisted block run request from ppl 36f110fc-b9d0-4a09-9976-cc956a0"},{"event":"cmd_output","timestamp":1607098227,"output":"44f8e for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4("},{"event":"cmd_output","timestamp":1607098227,"output":"L35), \n\u001b[0m\u001b[22m\n16:10:27.987 [info] block_id: 8a86ca5d-96d3-47b0-aba0-67236b88da56, type: Blocks"},{"event":"cmd_output","timestamp":1607098227,"output":", state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.Blo"},{"event":"cmd_output","timestamp":1607098227,"output":"cksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:27.992 [info] ppl_id: 2ad8f743-eb7f-4f0d-bf04-d2673b0b"},{"event":"cmd_output","timestamp":1607098227,"output":"326e, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098227,"output":"ixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:27.996 [info] Block 0 of pipeline "},{"event":"cmd_output","timestamp":1607098227,"output":"with id: 36f110fc-b9d0-4a09-9976-cc956a044f8e scheduled in block service with id: : \"8a86ca5d-96d3-4"},{"event":"cmd_output","timestamp":1607098228,"output":"7b0-aba0-67236b88da56\"\n\u001b[0m\u001b[22m\n16:10:28.000 [info] ppl_id: 36f110fc-b9d0-4a09-9976-cc956a044f8e"},{"event":"cmd_output","timestamp":1607098228,"output":", type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098228,"output":": Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.003 [info] block_id: 8a86ca"},{"event":"cmd_output","timestamp":1607098228,"output":"5d-96d3-47b0-aba0-67236b88da56, type: BlockRequests, event: persisted build and sub_ppl details for "},{"event":"cmd_output","timestamp":1607098228,"output":"block_request: 8a86ca5d-96d3-47b0-aba0-67236b88da56, origin: Elixir.Block.BlockRequests.Model.BlockR"},{"event":"cmd_output","timestamp":1607098228,"output":"equestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:28.008 [info] block_id: 8a86ca5d-96d3-47b0-a"},{"event":"cmd_output","timestamp":1607098228,"output":"ba0-67236b88da56, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Blo"},{"event":"cmd_output","timestamp":1607098228,"output":"ck.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:28.012 [info] ppl_id: 60"},{"event":"cmd_output","timestamp":1607098228,"output":"8dc11e-6529-4912-9121-813bb4723eb4, type: PplRequests, event: persisted definition for request with "},{"event":"cmd_output","timestamp":1607098228,"output":"request_token: 3836c616-364b-11eb-92eb-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequest"},{"event":"cmd_output","timestamp":1607098228,"output":"sQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:28.012 [info] block_id: 8a86ca5d-96d3-47b0-ab"},{"event":"cmd_output","timestamp":1607098228,"output":"a0-67236b88da56, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098228,"output":"ixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.012 [info] ppl_id: b862d192-f56"},{"event":"cmd_output","timestamp":1607098228,"output":"c-46b8-9b40-99170c360c7a, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098228,"output":"gin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.018 [info] Queue persist"},{"event":"cmd_output","timestamp":1607098228,"output":"ed: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: "},{"event":"cmd_output","timestamp":1607098228,"output":"~N[2020-12-04 16:10:28.017150], name: \"pull-request-1213-.semaphore/semaphore.yml\", organization_id:"},{"event":"cmd_output","timestamp":1607098228,"output":" \"b3fe3814-9c96-463f-8117-81f2f540b99b\", project_id: \"list_latest_workflows\", queue_id: \"ae2269ea-97"},{"event":"cmd_output","timestamp":1607098228,"output":"aa-410a-b821-755f07eb8774\", scope: \"project\", updated_at: ~N[2020-12-04 16:10:28.017158], user_gener"},{"event":"cmd_output","timestamp":1607098228,"output":"ated: false}}\n\u001b[0m\u001b[22m\n16:10:28.027 [info] PplBlocks WaitingState STM is scheduling block 0 from"},{"event":"cmd_output","timestamp":1607098228,"output":" pipeline: \"b862d192-f56c-46b8-9b40-99170c360c7a\"\n\u001b[0m\u001b[22m\n16:10:28.031 [info] event: created, o"},{"event":"cmd_output","timestamp":1607098228,"output":"rigin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:28.031"},{"event":"cmd_output","timestamp":1607098228,"output":" [info] ppl_id: 608dc11e-6529-4912-9121-813bb4723eb4, type: PplBlocks, block_index: 0, state: initi"},{"event":"cmd_output","timestamp":1607098228,"output":"alizing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitSta"},{"event":"cmd_output","timestamp":1607098228,"output":"te.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:28.035 [info] ppl_id: 608dc11e-6529-4912-9121-813bb4723eb4, "},{"event":"cmd_output","timestamp":1607098228,"output":"type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: E"},{"event":"cmd_output","timestamp":1607098228,"output":"lixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.038 [info] ppl_id: 0a0c3dd8-58"},{"event":"cmd_output","timestamp":1607098228,"output":"9a-4ee7-a8b4-a960b430b2c7, type: PplRequests, event: persisted source_args for pipeline: 0a0c3dd8-58"},{"event":"cmd_output","timestamp":1607098228,"output":"9a-4ee7-a8b4-a960b430b2c7, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L"},{"event":"cmd_output","timestamp":1607098228,"output":"89), \n\u001b[0m\u001b[22m\n16:10:28.039 [info] block_id: 8a86ca5d-96d3-47b0-aba0-67236b88da56, type: Tasks, "},{"event":"cmd_output","timestamp":1607098228,"output":"state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_"},{"event":"cmd_output","timestamp":1607098228,"output":"change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.043 [info] block_id: d0805991-c64a-4528-b53c-e92e9dd0b635, typ"},{"event":"cmd_output","timestamp":1607098228,"output":"e: BlockRequests, event: persisted block run request from ppl b862d192-f56c-46b8-9b40-99170c360c7a f"},{"event":"cmd_output","timestamp":1607098228,"output":"or block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \r"},{"event":"cmd_output","timestamp":1607098228,"output":"\n\u001b[0m\u001b[22m\n16:10:28.047 [info] ppl_id: 0a0c3dd8-589a-4ee7-a8b4-a960b430b2c7, type: PplSubInits, st"},{"event":"cmd_output","timestamp":1607098228,"output":"ate: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098228,"output":"hange/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.047 [info] block_id: d0805991-c64a-4528-b53c-e92e9dd0b635, type"},{"event":"cmd_output","timestamp":1607098228,"output":": Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.M"},{"event":"cmd_output","timestamp":1607098228,"output":"odel.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:28.051 [info] Block 0 of pipeline with id: b86"},{"event":"cmd_output","timestamp":1607098228,"output":"2d192-f56c-46b8-9b40-99170c360c7a scheduled in block service with id: : \"d0805991-c64a-4528-b53c-e92"},{"event":"cmd_output","timestamp":1607098228,"output":"e9dd0b635\"\n\u001b[0m\u001b[22m\n16:10:28.054 [info] ppl_id: 608dc11e-6529-4912-9121-813bb4723eb4, type: PplB"},{"event":"cmd_output","timestamp":1607098228,"output":"locks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loo"},{"event":"cmd_output","timestamp":1607098228,"output":"per.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.057 [info] ppl_id: b862d192-f56c-46b8-9"},{"event":"cmd_output","timestamp":1607098228,"output":"b40-99170c360c7a, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_"},{"event":"cmd_output","timestamp":1607098228,"output":"count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.066 [info] "},{"event":"cmd_output","timestamp":1607098228,"output":"ppl_id: 608dc11e-6529-4912-9121-813bb4723eb4, type: Ppls, state: pending, event: exit_scheduling, re"},{"event":"cmd_output","timestamp":1607098228,"output":"covery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.066 ["},{"event":"cmd_output","timestamp":1607098228,"output":"info] block_id: d0805991-c64a-4528-b53c-e92e9dd0b635, type: BlockRequests, event: persisted build a"},{"event":"cmd_output","timestamp":1607098228,"output":"nd sub_ppl details for block_request: d0805991-c64a-4528-b53c-e92e9dd0b635, origin: Elixir.Block.Blo"},{"event":"cmd_output","timestamp":1607098228,"output":"ckRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:28.068 [info] block_i"},{"event":"cmd_output","timestamp":1607098228,"output":"d: d0805991-c64a-4528-b53c-e92e9dd0b635, type: Tasks, state: pending, event: created, recovery_count"},{"event":"cmd_output","timestamp":1607098228,"output":": 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:28"},{"event":"cmd_output","timestamp":1607098228,"output":".070 [info] block_id: d0805991-c64a-4528-b53c-e92e9dd0b635, type: Blocks, state: running, event: ex"},{"event":"cmd_output","timestamp":1607098228,"output":"it_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098228,"output":"m\n16:10:28.099 [info] ppl_id: 608dc11e-6529-4912-9121-813bb4723eb4, type: Ppls, state: queuing, ev"},{"event":"cmd_output","timestamp":1607098228,"output":"ent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b"},{"event":"cmd_output","timestamp":1607098228,"output":"[0m\u001b[22m\n16:10:28.102 [info] block_id: d0805991-c64a-4528-b53c-e92e9dd0b635, type: Tasks, state: r"},{"event":"cmd_output","timestamp":1607098228,"output":"unning, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1"},{"event":"cmd_output","timestamp":1607098228,"output":"(L90), \n\u001b[0m\u001b[22m\n16:10:28.106 [info] ppl_id: 0a0c3dd8-589a-4ee7-a8b4-a960b430b2c7, type: PplSubI"},{"event":"cmd_output","timestamp":1607098228,"output":"nits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl"},{"event":"cmd_output","timestamp":1607098228,"output":".log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.118 [info] ppl_id: 608dc11e-6529-4912-9121-813bb472"},{"event":"cmd_output","timestamp":1607098228,"output":"3eb4, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.S"},{"event":"cmd_output","timestamp":1607098228,"output":"TM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.126 [info] PplBlocks WaitingState STM is sch"},{"event":"cmd_output","timestamp":1607098228,"output":"eduling block 0 from pipeline: \"608dc11e-6529-4912-9121-813bb4723eb4\"\n\u001b[0m\u001b[22m\n16:10:28.132 [info"},{"event":"cmd_output","timestamp":1607098228,"output":"] block_id: cea5cd5a-6ca8-4eb7-8397-6dde9468ad1f, type: BlockRequests, event: persisted block run r"},{"event":"cmd_output","timestamp":1607098228,"output":"equest from ppl 608dc11e-6529-4912-9121-813bb4723eb4 for block 0, origin: Elixir.Block.BlockRequests"},{"event":"cmd_output","timestamp":1607098228,"output":".Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:28.134 [info] block_id: cea"},{"event":"cmd_output","timestamp":1607098228,"output":"5cd5a-6ca8-4eb7-8397-6dde9468ad1f, type: Blocks, state: initializing, event: initializing, recovery_"},{"event":"cmd_output","timestamp":1607098228,"output":"count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:28.139 ["},{"event":"cmd_output","timestamp":1607098228,"output":"info] Block 0 of pipeline with id: 608dc11e-6529-4912-9121-813bb4723eb4 scheduled in block service "},{"event":"cmd_output","timestamp":1607098228,"output":"with id: : \"cea5cd5a-6ca8-4eb7-8397-6dde9468ad1f\"\n\u001b[0m\u001b[22m\n16:10:28.145 [info] ppl_id: 608dc11e-"},{"event":"cmd_output","timestamp":1607098228,"output":"6529-4912-9121-813bb4723eb4, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling"},{"event":"cmd_output","timestamp":1607098228,"output":", recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.1"},{"event":"cmd_output","timestamp":1607098228,"output":"45 [info] block_id: cea5cd5a-6ca8-4eb7-8397-6dde9468ad1f, type: BlockRequests, event: persisted bui"},{"event":"cmd_output","timestamp":1607098228,"output":"ld and sub_ppl details for block_request: cea5cd5a-6ca8-4eb7-8397-6dde9468ad1f, origin: Elixir.Block"},{"event":"cmd_output","timestamp":1607098228,"output":".BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:28.150 [info] ppl"},{"event":"cmd_output","timestamp":1607098228,"output":"_id: 0a0c3dd8-589a-4ee7-a8b4-a960b430b2c7, type: PplRequests, event: persisted definition for reques"},{"event":"cmd_output","timestamp":1607098228,"output":"t with request_token: 383d6e80-364b-11eb-9505-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.Ppl"},{"event":"cmd_output","timestamp":1607098228,"output":"RequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:28.154 [info] block_id: cea5cd5a-6ca8-"},{"event":"cmd_output","timestamp":1607098228,"output":"4eb7-8397-6dde9468ad1f, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098228,"output":"ir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:28.160 [info] bloc"},{"event":"cmd_output","timestamp":1607098228,"output":"k_id: cea5cd5a-6ca8-4eb7-8397-6dde9468ad1f, type: Blocks, state: running, event: exit_scheduling, re"},{"event":"cmd_output","timestamp":1607098228,"output":"covery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.160 ["},{"event":"cmd_output","timestamp":1607098228,"output":"info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"que"},{"event":"cmd_output","timestamp":1607098228,"output":"ues\">, inserted_at: ~N[2020-12-04 16:10:28.158031], name: \"pull-request-1214-.semaphore/semaphore.ym"},{"event":"cmd_output","timestamp":1607098228,"output":"l\", organization_id: \"e66dd4bb-b5c4-4b65-8797-7227c6ae307b\", project_id: \"list_latest_workflows\", qu"},{"event":"cmd_output","timestamp":1607098228,"output":"eue_id: \"be180f24-3431-4f8c-9bd7-96cf62c94594\", scope: \"project\", updated_at: ~N[2020-12-04 16:10:28"},{"event":"cmd_output","timestamp":1607098228,"output":".158043], user_generated: false}}\n\u001b[0m\u001b[22m\n16:10:28.166 [info] block_id: 8a86ca5d-96d3-47b0-aba0"},{"event":"cmd_output","timestamp":1607098228,"output":"-67236b88da56, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098228,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.167 [info] event: created, origin: El"},{"event":"cmd_output","timestamp":1607098228,"output":"ixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:28.167 [info] "},{"event":"cmd_output","timestamp":1607098228,"output":"ppl_id: 0a0c3dd8-589a-4ee7-a8b4-a960b430b2c7, type: PplBlocks, block_index: 0, state: initializing, "},{"event":"cmd_output","timestamp":1607098228,"output":"event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok"},{"event":"cmd_output","timestamp":1607098228,"output":"?/1(L105), \n\u001b[0m\u001b[22m\n16:10:28.171 [info] ppl_id: 6d84b04f-3a70-4304-bdbb-42129be868a7, type: Ppl"},{"event":"cmd_output","timestamp":1607098228,"output":"Requests, event: persisted source_args for pipeline: 6d84b04f-3a70-4304-bdbb-42129be868a7, origin: E"},{"event":"cmd_output","timestamp":1607098228,"output":"lixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:28.172 [info"},{"event":"cmd_output","timestamp":1607098228,"output":"] ppl_id: 0a0c3dd8-589a-4ee7-a8b4-a960b430b2c7, type: PplSubInits, state: done, result: passed, eve"},{"event":"cmd_output","timestamp":1607098228,"output":"nt: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b["},{"event":"cmd_output","timestamp":1607098228,"output":"0m\u001b[22m\n16:10:28.184 [info] block_id: 8a86ca5d-96d3-47b0-aba0-67236b88da56, type: Blocks, state: d"},{"event":"cmd_output","timestamp":1607098228,"output":"one, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L9"},{"event":"cmd_output","timestamp":1607098228,"output":"0), \n\u001b[0m\u001b[22m\n16:10:28.186 [info] ppl_id: 6d84b04f-3a70-4304-bdbb-42129be868a7, type: PplSubInit"},{"event":"cmd_output","timestamp":1607098228,"output":"s, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_st"},{"event":"cmd_output","timestamp":1607098228,"output":"ate_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.194 [info] block_id: cea5cd5a-6ca8-4eb7-8397-6dde9468ad1f,"},{"event":"cmd_output","timestamp":1607098228,"output":" type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.I"},{"event":"cmd_output","timestamp":1607098228,"output":"mpl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.202 [info] ppl_id: 0a0c3dd8-589a-4ee7-a8b4-a960b"},{"event":"cmd_output","timestamp":1607098228,"output":"430b2c7, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loope"},{"event":"cmd_output","timestamp":1607098228,"output":"r.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.205 [info] ppl_id: 0a0c3dd8-589a-4ee7-a8b"},{"event":"cmd_output","timestamp":1607098228,"output":"4-a960b430b2c7, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_co"},{"event":"cmd_output","timestamp":1607098228,"output":"unt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.216 [info] pp"},{"event":"cmd_output","timestamp":1607098228,"output":"l_id: 36f110fc-b9d0-4a09-9976-cc956a044f8e, block_id: 8a86ca5d-96d3-47b0-aba0-67236b88da56, type: Pp"},{"event":"cmd_output","timestamp":1607098228,"output":"lBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098228,"output":"gin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.227 [info] ppl_id: 0a0c3"},{"event":"cmd_output","timestamp":1607098228,"output":"dd8-589a-4ee7-a8b4-a960b430b2c7, type: Ppls, state: queuing, event: exit_scheduling, recovery_count:"},{"event":"cmd_output","timestamp":1607098228,"output":" 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.233 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098228,"output":": 6d84b04f-3a70-4304-bdbb-42129be868a7, type: PplSubInits, state: regular_init, event: exit_scheduli"},{"event":"cmd_output","timestamp":1607098228,"output":"ng, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28"},{"event":"cmd_output","timestamp":1607098228,"output":".237 [info] ppl_id: 0a0c3dd8-589a-4ee7-a8b4-a960b430b2c7, type: Ppls, state: running, event: exit_s"},{"event":"cmd_output","timestamp":1607098228,"output":"cheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098228,"output":"6:10:28.243 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"0a0c3dd8-589a-4"},{"event":"cmd_output","timestamp":1607098228,"output":"ee7-a8b4-a960b430b2c7\"\n\u001b[0m\u001b[22m\n16:10:28.245 [info] ppl_id: 36f110fc-b9d0-4a09-9976-cc956a044f8e"},{"event":"cmd_output","timestamp":1607098228,"output":", type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098228,"output":".Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.251 [info] block_id: f36ccb28-b7f0-"},{"event":"cmd_output","timestamp":1607098228,"output":"4de4-9f14-135e2aa20a67, type: BlockRequests, event: persisted block run request from ppl 0a0c3dd8-58"},{"event":"cmd_output","timestamp":1607098228,"output":"9a-4ee7-a8b4-a960b430b2c7 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries"},{"event":"cmd_output","timestamp":1607098228,"output":".process_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:28.253 [info] block_id: f36ccb28-b7f0-4de4-9f14-135e2a"},{"event":"cmd_output","timestamp":1607098228,"output":"a20a67, type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Bl"},{"event":"cmd_output","timestamp":1607098228,"output":"ock.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:28.256 [info] Block 0 of pipeline "},{"event":"cmd_output","timestamp":1607098228,"output":"with id: 0a0c3dd8-589a-4ee7-a8b4-a960b430b2c7 scheduled in block service with id: : \"f36ccb28-b7f0-4"},{"event":"cmd_output","timestamp":1607098228,"output":"de4-9f14-135e2aa20a67\"\n\u001b[0m\u001b[22m\n16:10:28.260 [info] block_id: f36ccb28-b7f0-4de4-9f14-135e2aa20a"},{"event":"cmd_output","timestamp":1607098228,"output":"67, type: BlockRequests, event: persisted build and sub_ppl details for block_request: f36ccb28-b7f0"},{"event":"cmd_output","timestamp":1607098228,"output":"-4de4-9f14-135e2aa20a67, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/"},{"event":"cmd_output","timestamp":1607098228,"output":"2(L41), \n\u001b[0m\u001b[22m\n16:10:28.260 [info] ppl_id: 0a0c3dd8-589a-4ee7-a8b4-a960b430b2c7, type: PplBlo"},{"event":"cmd_output","timestamp":1607098228,"output":"cks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loope"},{"event":"cmd_output","timestamp":1607098228,"output":"r.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.263 [info] block_id: f36ccb28-b7f0-4de4-9"},{"event":"cmd_output","timestamp":1607098228,"output":"f14-135e2aa20a67, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Blo"},{"event":"cmd_output","timestamp":1607098228,"output":"ck.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:28.265 [info] block_id: "},{"event":"cmd_output","timestamp":1607098228,"output":"f36ccb28-b7f0-4de4-9f14-135e2aa20a67, type: Blocks, state: running, event: exit_scheduling, recovery"},{"event":"cmd_output","timestamp":1607098228,"output":"_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.290 [info] "},{"event":"cmd_output","timestamp":1607098228,"output":" block_id: f36ccb28-b7f0-4de4-9f14-135e2aa20a67, type: Tasks, state: running, event: exit_scheduling"},{"event":"cmd_output","timestamp":1607098228,"output":", recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.2"},{"event":"cmd_output","timestamp":1607098228,"output":"92 [info] ppl_id: 6d84b04f-3a70-4304-bdbb-42129be868a7, type: PplRequests, event: persisted definit"},{"event":"cmd_output","timestamp":1607098228,"output":"ion for request with request_token: 38433860-364b-11eb-9bd2-5254005464e2, origin: Elixir.Ppl.PplRequ"},{"event":"cmd_output","timestamp":1607098228,"output":"ests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:28.300 [info] block_id: "},{"event":"cmd_output","timestamp":1607098228,"output":"d0805991-c64a-4528-b53c-e92e9dd0b635, type: Tasks, state: done, event: exit_scheduling, recovery_cou"},{"event":"cmd_output","timestamp":1607098228,"output":"nt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.306 [info] ppl"},{"event":"cmd_output","timestamp":1607098228,"output":"_id: c3c8dc93-eccb-4a42-9eee-90e7d3cfd455, type: PplRequests, event: persisted source_args for pipel"},{"event":"cmd_output","timestamp":1607098228,"output":"ine: c3c8dc93-eccb-4a42-9eee-90e7d3cfd455, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.i"},{"event":"cmd_output","timestamp":1607098228,"output":"nsert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:28.306 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queu"},{"event":"cmd_output","timestamp":1607098228,"output":"es{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:10:28.299610], "},{"event":"cmd_output","timestamp":1607098228,"output":"name: \"pull-request-1215-.semaphore/semaphore.yml\", organization_id: \"fd289d3d-1888-4069-a601-b2a740"},{"event":"cmd_output","timestamp":1607098228,"output":"02999c\", project_id: \"list_latest_workflows\", queue_id: \"9acbd8d1-52d8-436b-a700-bcfe3bf00c86\", scop"},{"event":"cmd_output","timestamp":1607098228,"output":"e: \"project\", updated_at: ~N[2020-12-04 16:10:28.299623], user_generated: false}}\n\u001b[0m\u001b[22m\n16:10:"},{"event":"cmd_output","timestamp":1607098228,"output":"28.311 [info] block_id: d0805991-c64a-4528-b53c-e92e9dd0b635, type: Blocks, state: done, event: exi"},{"event":"cmd_output","timestamp":1607098228,"output":"t_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098228,"output":"\n16:10:28.312 [info] ppl_id: c3c8dc93-eccb-4a42-9eee-90e7d3cfd455, type: PplSubInits, state: fetch"},{"event":"cmd_output","timestamp":1607098228,"output":"ing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L9"},{"event":"cmd_output","timestamp":1607098228,"output":"0), \n\u001b[0m\u001b[22m\n16:10:28.324 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.Regu"},{"event":"cmd_output","timestamp":1607098228,"output":"larInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:28.324 [info] ppl_id: 6d84b04f-3a70-4304-bdbb-4212"},{"event":"cmd_output","timestamp":1607098228,"output":"9be868a7, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098228,"output":"rigin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:28.327"},{"event":"cmd_output","timestamp":1607098228,"output":" [info] ppl_id: 6d84b04f-3a70-4304-bdbb-42129be868a7, type: PplSubInits, state: done, result: passe"},{"event":"cmd_output","timestamp":1607098228,"output":"d, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90)"},{"event":"cmd_output","timestamp":1607098228,"output":", \n\u001b[0m\u001b[22m\n16:10:28.341 [info] ppl_id: 6d84b04f-3a70-4304-bdbb-42129be868a7, type: PplBlocks, b"},{"event":"cmd_output","timestamp":1607098228,"output":"lock_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM."},{"event":"cmd_output","timestamp":1607098228,"output":"Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.345 [info] ppl_id: b862d192-f56c-46b8-9b40-9917"},{"event":"cmd_output","timestamp":1607098228,"output":"0c360c7a, block_id: d0805991-c64a-4528-b53c-e92e9dd0b635, type: PplBlocks, block_index: 0, state: do"},{"event":"cmd_output","timestamp":1607098228,"output":"ne, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_st"},{"event":"cmd_output","timestamp":1607098228,"output":"ate_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.354 [info] ppl_id: 6d84b04f-3a70-4304-bdbb-42129be868a7, t"},{"event":"cmd_output","timestamp":1607098228,"output":"ype: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl"},{"event":"cmd_output","timestamp":1607098228,"output":".log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.366 [info] ppl_id: c3c8dc93-eccb-4a42-9eee-90e7d3cf"},{"event":"cmd_output","timestamp":1607098228,"output":"d455, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098228,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.370 [info] ppl_id: b862d192-f56c"},{"event":"cmd_output","timestamp":1607098228,"output":"-46b8-9b40-99170c360c7a, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098228,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.375 [info] p"},{"event":"cmd_output","timestamp":1607098228,"output":"pl_id: 6d84b04f-3a70-4304-bdbb-42129be868a7, type: Ppls, state: queuing, event: exit_scheduling, rec"},{"event":"cmd_output","timestamp":1607098228,"output":"overy_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.389 [i"},{"event":"cmd_output","timestamp":1607098228,"output":"nfo] ppl_id: 6d84b04f-3a70-4304-bdbb-42129be868a7, type: Ppls, state: running, event: exit_scheduli"},{"event":"cmd_output","timestamp":1607098228,"output":"ng, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28"},{"event":"cmd_output","timestamp":1607098228,"output":".402 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"6d84b04f-3a70-4304-bdb"},{"event":"cmd_output","timestamp":1607098228,"output":"b-42129be868a7\"\n\u001b[0m\u001b[22m\n16:10:28.417 [info] block_id: da87f7ed-fe56-44cb-ac2c-c9b80fd8c604, typ"},{"event":"cmd_output","timestamp":1607098228,"output":"e: BlockRequests, event: persisted block run request from ppl 6d84b04f-3a70-4304-bdbb-42129be868a7 f"},{"event":"cmd_output","timestamp":1607098228,"output":"or block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \r"},{"event":"cmd_output","timestamp":1607098228,"output":"\n\u001b[0m\u001b[22m\n16:10:28.424 [info] ppl_id: c3c8dc93-eccb-4a42-9eee-90e7d3cfd455, type: PplRequests, ev"},{"event":"cmd_output","timestamp":1607098228,"output":"ent: persisted definition for request with request_token: 38496230-364b-11eb-ab50-5254005464e2, orig"},{"event":"cmd_output","timestamp":1607098228,"output":"in: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:28."},{"event":"cmd_output","timestamp":1607098228,"output":"426 [info] block_id: cea5cd5a-6ca8-4eb7-8397-6dde9468ad1f, type: Tasks, state: done, event: exit_sc"},{"event":"cmd_output","timestamp":1607098228,"output":"heduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098228,"output":":10:28.426 [info] block_id: da87f7ed-fe56-44cb-ac2c-c9b80fd8c604, type: Blocks, state: initializing"},{"event":"cmd_output","timestamp":1607098228,"output":", event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L"},{"event":"cmd_output","timestamp":1607098228,"output":"43), \n\u001b[0m\u001b[22m\n16:10:28.433 [info] ppl_id: eaba441e-9d94-4f55-8648-26b773c73488, type: PplReques"},{"event":"cmd_output","timestamp":1607098228,"output":"ts, event: persisted source_args for pipeline: eaba441e-9d94-4f55-8648-26b773c73488, origin: Elixir."},{"event":"cmd_output","timestamp":1607098228,"output":"Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:28.437 [info] Que"},{"event":"cmd_output","timestamp":1607098228,"output":"ue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, ins"},{"event":"cmd_output","timestamp":1607098228,"output":"erted_at: ~N[2020-12-04 16:10:28.430983], name: \"pull-request-1216-.semaphore/semaphore.yml\", organi"},{"event":"cmd_output","timestamp":1607098228,"output":"zation_id: \"87b991a2-9e63-44e2-a557-1b12410d69ab\", project_id: \"list_latest_workflows\", queue_id: \"6"},{"event":"cmd_output","timestamp":1607098228,"output":"9324df5-7196-4fde-b7db-7366927dec6a\", scope: \"project\", updated_at: ~N[2020-12-04 16:10:28.430996], "},{"event":"cmd_output","timestamp":1607098228,"output":"user_generated: false}}\n\u001b[0m\u001b[22m\n16:10:28.438 [info] Block 0 of pipeline with id: 6d84b04f-3a70-"},{"event":"cmd_output","timestamp":1607098228,"output":"4304-bdbb-42129be868a7 scheduled in block service with id: : \"da87f7ed-fe56-44cb-ac2c-c9b80fd8c604\"\r"},{"event":"cmd_output","timestamp":1607098228,"output":"\n\u001b[0m\u001b[22m\n16:10:28.440 [info] ppl_id: eaba441e-9d94-4f55-8648-26b773c73488, type: PplSubInits, st"},{"event":"cmd_output","timestamp":1607098228,"output":"ate: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098228,"output":"hange/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.442 [info] block_id: da87f7ed-fe56-44cb-ac2c-c9b80fd8c604, type"},{"event":"cmd_output","timestamp":1607098228,"output":": BlockRequests, event: persisted build and sub_ppl details for block_request: da87f7ed-fe56-44cb-ac"},{"event":"cmd_output","timestamp":1607098228,"output":"2c-c9b80fd8c604, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), "},{"event":"cmd_output","timestamp":1607098228,"output":"\n\u001b[0m\u001b[22m\n16:10:28.445 [info] block_id: cea5cd5a-6ca8-4eb7-8397-6dde9468ad1f, type: Blocks, stat"},{"event":"cmd_output","timestamp":1607098228,"output":"e: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/"},{"event":"cmd_output","timestamp":1607098228,"output":"1(L90), \n\u001b[0m\u001b[22m\n16:10:28.447 [info] block_id: da87f7ed-fe56-44cb-ac2c-c9b80fd8c604, type: Task"},{"event":"cmd_output","timestamp":1607098228,"output":"s, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.Initial"},{"event":"cmd_output","timestamp":1607098228,"output":"izingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:28.453 [info] block_id: da87f7ed-fe56-44cb-ac2c-c9b8"},{"event":"cmd_output","timestamp":1607098228,"output":"0fd8c604, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Lo"},{"event":"cmd_output","timestamp":1607098228,"output":"oper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.454 [info] ppl_id: 6d84b04f-3a70-4304-"},{"event":"cmd_output","timestamp":1607098228,"output":"bdbb-42129be868a7, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery"},{"event":"cmd_output","timestamp":1607098228,"output":"_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.455 [info] "},{"event":"cmd_output","timestamp":1607098228,"output":" event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098228,"output":"[22m\n16:10:28.456 [info] ppl_id: c3c8dc93-eccb-4a42-9eee-90e7d3cfd455, type: PplBlocks, block_inde"},{"event":"cmd_output","timestamp":1607098228,"output":"x: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHand"},{"event":"cmd_output","timestamp":1607098228,"output":"ler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:28.461 [info] ppl_id: c3c8dc93-eccb-4a42-9"},{"event":"cmd_output","timestamp":1607098228,"output":"eee-90e7d3cfd455, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098228,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.481 [info] p"},{"event":"cmd_output","timestamp":1607098228,"output":"pl_id: 608dc11e-6529-4912-9121-813bb4723eb4, block_id: cea5cd5a-6ca8-4eb7-8397-6dde9468ad1f, type: P"},{"event":"cmd_output","timestamp":1607098228,"output":"plBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098228,"output":"igin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.490 [info] ppl_id: c3c8"},{"event":"cmd_output","timestamp":1607098228,"output":"dc93-eccb-4a42-9eee-90e7d3cfd455, type: PplBlocks, block_index: 0, state: waiting, event: exit_sched"},{"event":"cmd_output","timestamp":1607098228,"output":"uling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10"},{"event":"cmd_output","timestamp":1607098228,"output":":28.491 [info] ppl_id: c3c8dc93-eccb-4a42-9eee-90e7d3cfd455, type: Ppls, state: pending, event: exi"},{"event":"cmd_output","timestamp":1607098228,"output":"t_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098228,"output":"\n16:10:28.497 [info] block_id: da87f7ed-fe56-44cb-ac2c-c9b80fd8c604, type: Tasks, state: running, "},{"event":"cmd_output","timestamp":1607098228,"output":"event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \r"},{"event":"cmd_output","timestamp":1607098228,"output":"\n\u001b[0m\u001b[22m\n16:10:28.512 [info] ppl_id: eaba441e-9d94-4f55-8648-26b773c73488, type: PplSubInits, st"},{"event":"cmd_output","timestamp":1607098228,"output":"ate: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_sta"},{"event":"cmd_output","timestamp":1607098228,"output":"te_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.516 [info] ppl_id: c3c8dc93-eccb-4a42-9eee-90e7d3cfd455, ty"},{"event":"cmd_output","timestamp":1607098228,"output":"pe: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl."},{"event":"cmd_output","timestamp":1607098228,"output":"log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.524 [info] ppl_id: 608dc11e-6529-4912-9121-813bb4723"},{"event":"cmd_output","timestamp":1607098228,"output":"eb4, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098228,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.542 [info] block_id: f36ccb28-b7"},{"event":"cmd_output","timestamp":1607098228,"output":"f0-4de4-9f14-135e2aa20a67, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098228,"output":"in: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.549 [info] ppl_id: c3c8dc"},{"event":"cmd_output","timestamp":1607098228,"output":"93-eccb-4a42-9eee-90e7d3cfd455, type: Ppls, state: running, event: exit_scheduling, recovery_count: "},{"event":"cmd_output","timestamp":1607098228,"output":"0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.553 [info] block_i"},{"event":"cmd_output","timestamp":1607098228,"output":"d: f36ccb28-b7f0-4de4-9f14-135e2aa20a67, type: Blocks, state: done, event: exit_scheduling, recovery"},{"event":"cmd_output","timestamp":1607098228,"output":"_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.559 [info] "},{"event":"cmd_output","timestamp":1607098228,"output":" ppl_id: eaba441e-9d94-4f55-8648-26b773c73488, type: PplRequests, event: persisted definition for re"},{"event":"cmd_output","timestamp":1607098228,"output":"quest with request_token: 384f9f2e-364b-11eb-9848-5254005464e2, origin: Elixir.Ppl.PplRequests.Model"},{"event":"cmd_output","timestamp":1607098228,"output":".PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:28.563 [info] PplBlocks WaitingSta"},{"event":"cmd_output","timestamp":1607098228,"output":"te STM is scheduling block 0 from pipeline: \"c3c8dc93-eccb-4a42-9eee-90e7d3cfd455\"\n\u001b[0m\u001b[22m\n16:10"},{"event":"cmd_output","timestamp":1607098228,"output":":28.565 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loa"},{"event":"cmd_output","timestamp":1607098228,"output":"ded, \"queues\">, inserted_at: ~N[2020-12-04 16:10:28.561746], name: \"pull-request-1217-.semaphore/sem"},{"event":"cmd_output","timestamp":1607098228,"output":"aphore.yml\", organization_id: \"17bbc787-159e-467c-9f9d-75b96b8c60f2\", project_id: \"list_latest_workf"},{"event":"cmd_output","timestamp":1607098228,"output":"lows\", queue_id: \"469906f5-f7f1-4361-ba8f-11e9e537aa82\", scope: \"project\", updated_at: ~N[2020-12-04"},{"event":"cmd_output","timestamp":1607098228,"output":" 16:10:28.561759], user_generated: false}}\n\u001b[0m\u001b[22m\n16:10:28.570 [info] block_id: 0494100d-85c6-"},{"event":"cmd_output","timestamp":1607098228,"output":"45a0-a408-9d259ac70fb2, type: BlockRequests, event: persisted block run request from ppl c3c8dc93-ec"},{"event":"cmd_output","timestamp":1607098228,"output":"cb-4a42-9eee-90e7d3cfd455 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries"},{"event":"cmd_output","timestamp":1607098228,"output":".process_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:28.574 [info] event: created, origin: Elixir.Ppl.PplSu"},{"event":"cmd_output","timestamp":1607098228,"output":"bInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:28.574 [info] ppl_id: eaba44"},{"event":"cmd_output","timestamp":1607098228,"output":"1e-9d94-4f55-8648-26b773c73488, type: PplBlocks, block_index: 0, state: initializing, event: created"},{"event":"cmd_output","timestamp":1607098228,"output":", recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b"},{"event":"cmd_output","timestamp":1607098228,"output":"[0m\u001b[22m\n16:10:28.575 [info] ppl_id: 0a0c3dd8-589a-4ee7-a8b4-a960b430b2c7, block_id: f36ccb28-b7f0"},{"event":"cmd_output","timestamp":1607098228,"output":"-4de4-9f14-135e2aa20a67, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_s"},{"event":"cmd_output","timestamp":1607098228,"output":"cheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098228,"output":"6:10:28.576 [info] block_id: 0494100d-85c6-45a0-a408-9d259ac70fb2, type: Blocks, state: initializin"},{"event":"cmd_output","timestamp":1607098228,"output":"g, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1("},{"event":"cmd_output","timestamp":1607098228,"output":"L43), \n\u001b[0m\u001b[22m\n16:10:28.580 [info] ppl_id: eaba441e-9d94-4f55-8648-26b773c73488, type: PplSubIn"},{"event":"cmd_output","timestamp":1607098228,"output":"its, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.S"},{"event":"cmd_output","timestamp":1607098228,"output":"TM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.585 [info] Block 0 of pipeline with id: c3c8"},{"event":"cmd_output","timestamp":1607098228,"output":"dc93-eccb-4a42-9eee-90e7d3cfd455 scheduled in block service with id: : \"0494100d-85c6-45a0-a408-9d25"},{"event":"cmd_output","timestamp":1607098228,"output":"9ac70fb2\"\n\u001b[0m\u001b[22m\n16:10:28.592 [info] ppl_id: c3c8dc93-eccb-4a42-9eee-90e7d3cfd455, type: PplBl"},{"event":"cmd_output","timestamp":1607098228,"output":"ocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loop"},{"event":"cmd_output","timestamp":1607098228,"output":"er.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.592 [info] block_id: 0494100d-85c6-45a0-"},{"event":"cmd_output","timestamp":1607098228,"output":"a408-9d259ac70fb2, type: BlockRequests, event: persisted build and sub_ppl details for block_request"},{"event":"cmd_output","timestamp":1607098228,"output":": 0494100d-85c6-45a0-a408-9d259ac70fb2, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQuerie"},{"event":"cmd_output","timestamp":1607098228,"output":"s.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:28.599 [info] ppl_id: eaba441e-9d94-4f55-8648-26b773c7348"},{"event":"cmd_output","timestamp":1607098228,"output":"8, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM."},{"event":"cmd_output","timestamp":1607098228,"output":"Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.603 [info] block_id: 0494100d-85c6-45a0-a408-9d"},{"event":"cmd_output","timestamp":1607098228,"output":"259ac70fb2, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blo"},{"event":"cmd_output","timestamp":1607098228,"output":"cks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:28.604 [info] ppl_id: eaba441e"},{"event":"cmd_output","timestamp":1607098228,"output":"-9d94-4f55-8648-26b773c73488, type: PplBlocks, block_index: 0, state: waiting, event: exit_schedulin"},{"event":"cmd_output","timestamp":1607098228,"output":"g, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28."},{"event":"cmd_output","timestamp":1607098228,"output":"606 [info] block_id: 0494100d-85c6-45a0-a408-9d259ac70fb2, type: Blocks, state: running, event: exi"},{"event":"cmd_output","timestamp":1607098228,"output":"t_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098228,"output":"\n16:10:28.614 [info] ppl_id: 0a0c3dd8-589a-4ee7-a8b4-a960b430b2c7, type: Ppls, state: done, result"},{"event":"cmd_output","timestamp":1607098228,"output":": passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change"},{"event":"cmd_output","timestamp":1607098228,"output":"/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.631 [info] ppl_id: eaba441e-9d94-4f55-8648-26b773c73488, type: Ppls,"},{"event":"cmd_output","timestamp":1607098228,"output":" state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state"},{"event":"cmd_output","timestamp":1607098228,"output":"_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.634 [info] block_id: 0494100d-85c6-45a0-a408-9d259ac70fb2, ty"},{"event":"cmd_output","timestamp":1607098228,"output":"pe: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl"},{"event":"cmd_output","timestamp":1607098228,"output":".log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.647 [info] ppl_id: eaba441e-9d94-4f55-8648-26b773c7"},{"event":"cmd_output","timestamp":1607098228,"output":"3488, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.S"},{"event":"cmd_output","timestamp":1607098228,"output":"TM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.660 [info] PplBlocks WaitingState STM is sch"},{"event":"cmd_output","timestamp":1607098228,"output":"eduling block 0 from pipeline: \"eaba441e-9d94-4f55-8648-26b773c73488\"\n\u001b[0m\u001b[22m\n16:10:28.665 [info"},{"event":"cmd_output","timestamp":1607098228,"output":"] block_id: da87f7ed-fe56-44cb-ac2c-c9b80fd8c604, type: Tasks, state: done, event: exit_scheduling,"},{"event":"cmd_output","timestamp":1607098228,"output":" recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.66"},{"event":"cmd_output","timestamp":1607098228,"output":"9 [info] block_id: c60d6438-e77f-469f-b073-8fe80026b7d9, type: BlockRequests, event: persisted bloc"},{"event":"cmd_output","timestamp":1607098228,"output":"k run request from ppl eaba441e-9d94-4f55-8648-26b773c73488 for block 0, origin: Elixir.Block.BlockR"},{"event":"cmd_output","timestamp":1607098228,"output":"equests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:28.672 [info] block_"},{"event":"cmd_output","timestamp":1607098228,"output":"id: c60d6438-e77f-469f-b073-8fe80026b7d9, type: Blocks, state: initializing, event: initializing, re"},{"event":"cmd_output","timestamp":1607098228,"output":"covery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:2"},{"event":"cmd_output","timestamp":1607098228,"output":"8.674 [info] block_id: da87f7ed-fe56-44cb-ac2c-c9b80fd8c604, type: Blocks, state: done, event: exit"},{"event":"cmd_output","timestamp":1607098228,"output":"_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098228,"output":"\n16:10:28.676 [info] Block 0 of pipeline with id: eaba441e-9d94-4f55-8648-26b773c73488 scheduled in"},{"event":"cmd_output","timestamp":1607098228,"output":" block service with id: : \"c60d6438-e77f-469f-b073-8fe80026b7d9\"\n\u001b[0m\u001b[22m\n16:10:28.681 [info] pp"},{"event":"cmd_output","timestamp":1607098228,"output":"l_id: eaba441e-9d94-4f55-8648-26b773c73488, type: PplBlocks, block_index: 0, state: running, event: "},{"event":"cmd_output","timestamp":1607098228,"output":"exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098228,"output":"22m\n16:10:28.682 [info] block_id: c60d6438-e77f-469f-b073-8fe80026b7d9, type: BlockRequests, event"},{"event":"cmd_output","timestamp":1607098228,"output":": persisted build and sub_ppl details for block_request: c60d6438-e77f-469f-b073-8fe80026b7d9, origi"},{"event":"cmd_output","timestamp":1607098228,"output":"n: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:28."},{"event":"cmd_output","timestamp":1607098228,"output":"685 [info] block_id: c60d6438-e77f-469f-b073-8fe80026b7d9, type: Tasks, state: pending, event: crea"},{"event":"cmd_output","timestamp":1607098228,"output":"ted, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n"},{"event":"cmd_output","timestamp":1607098228,"output":"\u001b[0m\u001b[22m\n16:10:28.686 [info] ppl_id: 6d84b04f-3a70-4304-bdbb-42129be868a7, block_id: da87f7ed-fe5"},{"event":"cmd_output","timestamp":1607098228,"output":"6-44cb-ac2c-c9b80fd8c604, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_"},{"event":"cmd_output","timestamp":1607098228,"output":"scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098228,"output":"16:10:28.689 [info] block_id: c60d6438-e77f-469f-b073-8fe80026b7d9, type: Blocks, state: running, e"},{"event":"cmd_output","timestamp":1607098228,"output":"vent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n"},{"event":"cmd_output","timestamp":1607098228,"output":"\u001b[0m\u001b[22m\n16:10:28.712 [info] ppl_id: 6d84b04f-3a70-4304-bdbb-42129be868a7, type: Ppls, state: don"},{"event":"cmd_output","timestamp":1607098228,"output":"e, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_sta"},{"event":"cmd_output","timestamp":1607098228,"output":"te_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.716 [info] block_id: c60d6438-e77f-469f-b073-8fe80026b7d9, "},{"event":"cmd_output","timestamp":1607098228,"output":"type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Im"},{"event":"cmd_output","timestamp":1607098228,"output":"pl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.777 [info] block_id: 0494100d-85c6-45a0-a408-9d25"},{"event":"cmd_output","timestamp":1607098228,"output":"9ac70fb2, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper"},{"event":"cmd_output","timestamp":1607098228,"output":".STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.783 [info] block_id: 0494100d-85c6-45a0-a4"},{"event":"cmd_output","timestamp":1607098228,"output":"08-9d259ac70fb2, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098228,"output":"r.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.792 [info] ppl_id: c3c8dc93-eccb-4"},{"event":"cmd_output","timestamp":1607098228,"output":"a42-9eee-90e7d3cfd455, block_id: 0494100d-85c6-45a0-a408-9d259ac70fb2, type: PplBlocks, block_index:"},{"event":"cmd_output","timestamp":1607098228,"output":" 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.ST"},{"event":"cmd_output","timestamp":1607098228,"output":"M.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.807 [info] ppl_id: c3c8dc93-eccb-4a42-9eee-90"},{"event":"cmd_output","timestamp":1607098228,"output":"e7d3cfd455, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098228,"output":"in: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.888 [info] block_id: c60d"},{"event":"cmd_output","timestamp":1607098228,"output":"6438-e77f-469f-b073-8fe80026b7d9, type: Tasks, state: done, event: exit_scheduling, recovery_count: "},{"event":"cmd_output","timestamp":1607098228,"output":"0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.894 [info] block_i"},{"event":"cmd_output","timestamp":1607098228,"output":"d: c60d6438-e77f-469f-b073-8fe80026b7d9, type: Blocks, state: done, event: exit_scheduling, recovery"},{"event":"cmd_output","timestamp":1607098228,"output":"_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.901 [info] "},{"event":"cmd_output","timestamp":1607098228,"output":" ppl_id: eaba441e-9d94-4f55-8648-26b773c73488, block_id: c60d6438-e77f-469f-b073-8fe80026b7d9, type:"},{"event":"cmd_output","timestamp":1607098228,"output":" PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098228,"output":"origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:28.914 [info] ppl_id: ea"},{"event":"cmd_output","timestamp":1607098228,"output":"ba441e-9d94-4f55-8648-26b773c73488, type: Ppls, state: done, result: passed, event: exit_scheduling,"},{"event":"cmd_output","timestamp":1607098228,"output":" recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test gRP"},{"event":"cmd_output","timestamp":1607098228,"output":"C list_latest_workflows() - returns latest workflow per distinct label when given valid params (3991"},{"event":"cmd_output","timestamp":1607098229,"output":".3ms)\u001b[0m\n * test gRPC reschedule() - limit exceeded\u001b[22m\n16:10:29.084 [info] Request: 'run: %{\""},{"event":"cmd_output","timestamp":1607098229,"output":"branch_id\" => \"aa82461f-61eb-489d-97ca-4ac819c9b0e5\", \"branch_name\" => \"master\", \"client_id\" => \"a50"},{"event":"cmd_output","timestamp":1607098229,"output":"a5c53-9c48-4265-88b1-e94dddc5ca88\", \"commit_sha\" => \"75891a4469\", \"definition_file\" => \"\", \"hook_id\""},{"event":"cmd_output","timestamp":1607098229,"output":" => \"3a233e50-364b-11eb-94bb-5254005464e2\", \"label\" => \"master\", \"organization_id\" => \"e8f27a39-d336"},{"event":"cmd_output","timestamp":1607098229,"output":"-4f12-a056-645e5c1657ea\", \"owner\" => \"rt\", \"project_id\" => \"to-queue\", \"repo_name\" => \"2_basic\", \"re"},{"event":"cmd_output","timestamp":1607098229,"output":"quest_token\" => \"3a23334c-364b-11eb-b39d-5254005464e2\", \"requester_id\" => \"d93e17de-3dbd-4c9d-85f2-9"},{"event":"cmd_output","timestamp":1607098229,"output":"16be2b2a363\", \"service\" => \"local\", \"snapshot_id\" => \"\", \"suppressed_attributes\" => [\"access_token\","},{"event":"cmd_output","timestamp":1607098229,"output":" \"client_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"63e6437e-bcac-4f98-8ec2-c75b4c7cb169\"}\n\u001b[0"},{"event":"cmd_output","timestamp":1607098229,"output":"m\u001b[22m\n16:10:29.145 [info] ppl_id: 248ae406-5d75-4953-b21c-8c9c0315780e, type: PplRequests, event:"},{"event":"cmd_output","timestamp":1607098229,"output":" persisted schedule request with request_token: 3a23334c-364b-11eb-b39d-5254005464e2, origin: Elixir"},{"event":"cmd_output","timestamp":1607098229,"output":".Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:29.159 [info] "},{"event":"cmd_output","timestamp":1607098229,"output":" ppl_id: 248ae406-5d75-4953-b21c-8c9c0315780e, type: Ppls, state: initializing, event: initializing,"},{"event":"cmd_output","timestamp":1607098229,"output":" recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098229,"output":"\n16:10:29.166 [info] Project to-queue and branch masterlatest_wf details updated: \"wf_id: 63e6437e-"},{"event":"cmd_output","timestamp":1607098229,"output":"bcac-4f98-8ec2-c75b4c7cb169, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:10:29.169 [info] Persisted ppl_sub_init f"},{"event":"cmd_output","timestamp":1607098229,"output":"or pipeline with ppl_id: 248ae406-5d75-4953-b21c-8c9c0315780e: %Ppl.PplSubInits.Model.PplSubInits{__"},{"event":"cmd_output","timestamp":1607098229,"output":"meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_descriptio"},{"event":"cmd_output","timestamp":1607098229,"output":"n: nil, id: 60, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:10:29.1682"},{"event":"cmd_output","timestamp":1607098229,"output":"55], pipeline_requests: #Ecto.Association.NotLoaded, p"},{"event":"cmd_output","timestamp":1607098229,"output":"pl_id: \"248ae406-5d75-4953-b21c-8c9c0315780e\", recovery_count: 0, result: nil, result_reason: nil, s"},{"event":"cmd_output","timestamp":1607098229,"output":"tate: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:1"},{"event":"cmd_output","timestamp":1607098229,"output":"0:29.168265]}\n\u001b[0m\u001b[22m\n16:10:29.181 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.Initi"},{"event":"cmd_output","timestamp":1607098229,"output":"alizingState with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms, metric_name: "},{"event":"cmd_output","timestamp":1607098229,"output":"{\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %{allowed_state"},{"event":"cmd_output","timestamp":1607098229,"output":"s: [\"initializing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, obs"},{"event":"cmd_output","timestamp":1607098229,"output":"erved_state: \"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.Initializi"},{"event":"cmd_output","timestamp":1607098229,"output":"ngState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :resu"},{"event":"cmd_output","timestamp":1607098229,"output":"lt, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098229,"output":"0:29.182 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.P"},{"event":"cmd_output","timestamp":1607098229,"output":"pls.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMH"},{"event":"cmd_output","timestamp":1607098229,"output":"andler-PendingState\"]}, recurring args: %{allowed_states: [\"pending\", \"queuing\", \"running\", \"done\"],"},{"event":"cmd_output","timestamp":1607098229,"output":" cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publisher_cb: #"},{"event":"cmd_output","timestamp":1607098229,"output":"Function<0.8493005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:i"},{"event":"cmd_output","timestamp":1607098229,"output":"d, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Mod"},{"event":"cmd_output","timestamp":1607098229,"output":"el.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:10:29.182 [info] Periodic from module "},{"event":"cmd_output","timestamp":1607098229,"output":"Elixir.Ppl.Ppls.STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period:"},{"event":"cmd_output","timestamp":1607098229,"output":" 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args"},{"event":"cmd_output","timestamp":1607098229,"output":": %{allowed_states: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Mo"},{"event":"cmd_output","timestamp":1607098229,"output":"del.Ppls, observed_state: \"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.Qu"},{"event":"cmd_output","timestamp":1607098229,"output":"euingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :r"},{"event":"cmd_output","timestamp":1607098229,"output":"esult, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098229,"output":"6:10:29.183 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedState with name El"},{"event":"cmd_output","timestamp":1607098229,"output":"ixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\""},{"event":"cmd_output","timestamp":1607098229,"output":", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args: %{allowed_states: [\"fetching\", \"done"},{"event":"cmd_output","timestamp":1607098229,"output":"\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"created\""},{"event":"cmd_output","timestamp":1607098229,"output":", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state,"},{"event":"cmd_output","timestamp":1607098229,"output":" :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :sk"},{"event":"cmd_output","timestamp":1607098229,"output":"ip}\n\u001b[0m\u001b[22m\n16:10:29.183 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.Fetching"},{"event":"cmd_output","timestamp":1607098229,"output":"State with name Elixir.Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 ms, metric_name: {\"Pp"},{"event":"cmd_output","timestamp":1607098229,"output":"l.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %{allowed_states"},{"event":"cmd_output","timestamp":1607098229,"output":": [\"regular_init\", \"compilation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Mode"},{"event":"cmd_output","timestamp":1607098229,"output":"l.PplSubInits, observed_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id,"},{"event":"cmd_output","timestamp":1607098229,"output":" :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInit"},{"event":"cmd_output","timestamp":1607098229,"output":"s.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:29.183 [info] Periodic from module E"},{"event":"cmd_output","timestamp":1607098229,"output":"lixir.Ppl.PplSubInits.STMHandler.CompilationState with name Elixir.Ppl.PplSubInits.STMHandler.Compil"},{"event":"cmd_output","timestamp":1607098229,"output":"ationState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-Com"},{"event":"cmd_output","timestamp":1607098229,"output":"pilationState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"stopping\", \"don"},{"event":"cmd_output","timestamp":1607098229,"output":"e\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"compil"},{"event":"cmd_output","timestamp":1607098229,"output":"ation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :"},{"event":"cmd_output","timestamp":1607098229,"output":"state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_superviso"},{"event":"cmd_output","timestamp":1607098229,"output":"r: :skip}\n\u001b[0m\u001b[22m\n16:10:29.184 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.Re"},{"event":"cmd_output","timestamp":1607098229,"output":"gularInitState with name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period: 100 ms, metri"},{"event":"cmd_output","timestamp":1607098229,"output":"c_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurring args: %"},{"event":"cmd_output","timestamp":1607098229,"output":"{allowed_states: [\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, ob"},{"event":"cmd_output","timestamp":1607098229,"output":"served_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_r"},{"event":"cmd_output","timestamp":1607098229,"output":"equest, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSu"},{"event":"cmd_output","timestamp":1607098229,"output":"bInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:29.314 [info] ppl_id: 248ae406-5d75-4953-b21c-8c9"},{"event":"cmd_output","timestamp":1607098229,"output":"c0315780e, type: PplRequests, event: persisted source_args for pipeline: 248ae406-5d75-4953-b21c-8c9"},{"event":"cmd_output","timestamp":1607098229,"output":"c0315780e, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098229,"output":"\n16:10:29.318 [info] ppl_id: 248ae406-5d75-4953-b21c-8c9c0315780e, type: PplSubInits, state: fetch"},{"event":"cmd_output","timestamp":1607098229,"output":"ing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L9"},{"event":"cmd_output","timestamp":1607098229,"output":"0), \n\u001b[0m\u001b[22m\n16:10:29.347 [info] ppl_id: 248ae406-5d75-4953-b21c-8c9c0315780e, type: PplSubInit"},{"event":"cmd_output","timestamp":1607098229,"output":"s, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.lo"},{"event":"cmd_output","timestamp":1607098229,"output":"g_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:29.381 [info] ppl_id: 248ae406-5d75-4953-b21c-8c9c0315780"},{"event":"cmd_output","timestamp":1607098229,"output":"e, type: PplRequests, event: persisted definition for request with request_token: 3a23334c-364b-11eb"},{"event":"cmd_output","timestamp":1607098229,"output":"-b39d-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76)"},{"event":"cmd_output","timestamp":1607098229,"output":", \n\u001b[0m\u001b[22m\n16:10:29.391 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto."},{"event":"cmd_output","timestamp":1607098229,"output":"Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:10:29.383958], name: \"master-.sema"},{"event":"cmd_output","timestamp":1607098229,"output":"phore/semaphore.yml\", organization_id: \"e8f27a39-d336-4f12-a056-645e5c1657ea\", project_id: \"to-queue"},{"event":"cmd_output","timestamp":1607098229,"output":"\", queue_id: \"bfa3cb39-0a5f-4204-8131-e89c97ff9d4b\", scope: \"project\", updated_at: ~N[2020-12-04 16:"},{"event":"cmd_output","timestamp":1607098229,"output":"10:29.383973], user_generated: false}}\n\u001b[0m\u001b[22m\n16:10:29.401 [info] event: created, origin: Elix"},{"event":"cmd_output","timestamp":1607098229,"output":"ir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:29.401 [info] pp"},{"event":"cmd_output","timestamp":1607098229,"output":"l_id: 248ae406-5d75-4953-b21c-8c9c0315780e, type: PplBlocks, block_index: 0, state: initializing, ev"},{"event":"cmd_output","timestamp":1607098229,"output":"ent: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/"},{"event":"cmd_output","timestamp":1607098229,"output":"1(L105), \n\u001b[0m\u001b[22m\n16:10:29.405 [info] ppl_id: 248ae406-5d75-4953-b21c-8c9c0315780e, type: PplSu"},{"event":"cmd_output","timestamp":1607098229,"output":"bInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loope"},{"event":"cmd_output","timestamp":1607098229,"output":"r.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:29.415 [info] ppl_id: 248ae406-5d75-4953-b21"},{"event":"cmd_output","timestamp":1607098229,"output":"c-8c9c0315780e, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098229,"output":"r.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:29.433 [info] ppl_id: 248ae406-5d75-4"},{"event":"cmd_output","timestamp":1607098229,"output":"953-b21c-8c9c0315780e, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098229,"output":": Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:29.450 [info] ppl_id: 248ae406"},{"event":"cmd_output","timestamp":1607098229,"output":"-5d75-4953-b21c-8c9c0315780e, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098229,"output":" origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:29.511 [info] Request: "},{"event":"cmd_output","timestamp":1607098229,"output":"'run: %{\"branch_id\" => \"8232aaee-6cda-4bbc-84d2-842b0cd818db\", \"branch_name\" => \"master\", \"client_id"},{"event":"cmd_output","timestamp":1607098229,"output":"\" => \"12f72c49-334e-4e81-918c-ef4e341c132b\", \"commit_sha\" => \"75891a4469\", \"definition_file\" => \"\", "},{"event":"cmd_output","timestamp":1607098229,"output":"\"hook_id\" => \"3a649666-364b-11eb-8156-5254005464e2\", \"label\" => \"master\", \"organization_id\" => \"46d3"},{"event":"cmd_output","timestamp":1607098229,"output":"8963-0d4a-4b0c-8ab3-3ea20ec7f1ea\", \"owner\" => \"rt\", \"project_id\" => \"to-queue\", \"repo_name\" => \"2_ba"},{"event":"cmd_output","timestamp":1607098229,"output":"sic\", \"request_token\" => \"3a648ad6-364b-11eb-a770-5254005464e2\", \"requester_id\" => \"a34f0514-9ca9-46"},{"event":"cmd_output","timestamp":1607098229,"output":"d1-a684-1649567c4b2d\", \"service\" => \"local\", \"snapshot_id\" => \"\", \"suppressed_attributes\" => [\"acces"},{"event":"cmd_output","timestamp":1607098229,"output":"s_token\", \"client_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"dc339ad7-20d2-432f-8046-d1609f6f3c"},{"event":"cmd_output","timestamp":1607098229,"output":"40\"}\n\u001b[0m\u001b[22m\n16:10:29.568 [info] ppl_id: 940e1761-b198-4278-8b5d-1dcfe6054716, type: PplRequest"},{"event":"cmd_output","timestamp":1607098229,"output":"s, event: persisted schedule request with request_token: 3a648ad6-364b-11eb-a770-5254005464e2, origi"},{"event":"cmd_output","timestamp":1607098229,"output":"n: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:29.57"},{"event":"cmd_output","timestamp":1607098229,"output":"0 [info] ppl_id: 940e1761-b198-4278-8b5d-1dcfe6054716, type: Ppls, state: initializing, event: init"},{"event":"cmd_output","timestamp":1607098229,"output":"ializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b"},{"event":"cmd_output","timestamp":1607098229,"output":"[0m\u001b[22m\n16:10:29.574 [info] Project to-queue and branch masterlatest_wf details updated: \"wf_id: "},{"event":"cmd_output","timestamp":1607098229,"output":"dc339ad7-20d2-432f-8046-d1609f6f3c40, wf_number: 2\"\n\u001b[0m\u001b[22m\n16:10:29.576 [info] Persisted ppl_s"},{"event":"cmd_output","timestamp":1607098229,"output":"ub_init for pipeline with ppl_id: 940e1761-b198-4278-8b5d-1dcfe6054716: %Ppl.PplSubInits.Model.PplSu"},{"event":"cmd_output","timestamp":1607098229,"output":"bInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_d"},{"event":"cmd_output","timestamp":1607098229,"output":"escription: nil, id: 61, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:1"},{"event":"cmd_output","timestamp":1607098229,"output":"0:29.574835], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"940e1761-b198-4278-8b5d-1dcfe6054716\", recovery_count: 0, result: nil, result_reaso"},{"event":"cmd_output","timestamp":1607098229,"output":"n: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-1"},{"event":"cmd_output","timestamp":1607098229,"output":"2-04 16:10:29.574845]}\n\u001b[0m\u001b[22m\n16:10:29.594 [info] ppl_id: 940e1761-b198-4278-8b5d-1dcfe6054716"},{"event":"cmd_output","timestamp":1607098229,"output":", type: PplRequests, event: persisted source_args for pipeline: 940e1761-b198-4278-8b5d-1dcfe6054716"},{"event":"cmd_output","timestamp":1607098229,"output":", origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:2"},{"event":"cmd_output","timestamp":1607098229,"output":"9.597 [info] ppl_id: 940e1761-b198-4278-8b5d-1dcfe6054716, type: PplSubInits, state: fetching, even"},{"event":"cmd_output","timestamp":1607098229,"output":"t: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098229,"output":"m\u001b[22m\n16:10:29.620 [info] ppl_id: 940e1761-b198-4278-8b5d-1dcfe6054716, type: PplSubInits, state:"},{"event":"cmd_output","timestamp":1607098229,"output":" regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098229,"output":"hange/1(L90), \n\u001b[0m\u001b[22m\n16:10:29.644 [info] ppl_id: 940e1761-b198-4278-8b5d-1dcfe6054716, type: "},{"event":"cmd_output","timestamp":1607098229,"output":"PplRequests, event: persisted definition for request with request_token: 3a648ad6-364b-11eb-a770-525"},{"event":"cmd_output","timestamp":1607098229,"output":"4005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098229,"output":"[22m\n16:10:29.667 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitStat"},{"event":"cmd_output","timestamp":1607098229,"output":"e.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:29.668 [info] ppl_id: 940e1761-b198-4278-8b5d-1dcfe6054716, t"},{"event":"cmd_output","timestamp":1607098229,"output":"ype: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098229,"output":"ir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:29.670 [info] pp"},{"event":"cmd_output","timestamp":1607098229,"output":"l_id: 940e1761-b198-4278-8b5d-1dcfe6054716, type: PplSubInits, state: done, result: passed, event: e"},{"event":"cmd_output","timestamp":1607098229,"output":"xit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098229,"output":"2m\n16:10:29.678 [info] ppl_id: 940e1761-b198-4278-8b5d-1dcfe6054716, type: Ppls, state: pending, e"},{"event":"cmd_output","timestamp":1607098229,"output":"vent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n"},{"event":"cmd_output","timestamp":1607098229,"output":"\u001b[0m\u001b[22m\n16:10:29.694 [info] ppl_id: 940e1761-b198-4278-8b5d-1dcfe6054716, type: Ppls, state: que"},{"event":"cmd_output","timestamp":1607098229,"output":"uing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098229,"output":"90), \n\u001b[0m\u001b[32m\r * test gRPC reschedule() - limit exceeded (844.1ms)\u001b[0m\n * test gRPC describe()"},{"event":"cmd_output","timestamp":1607098229,"output":" - succedes when given valid params\r * test gRPC describe() - succedes when given valid params (ski"},{"event":"cmd_output","timestamp":1607098229,"output":"pped)\n * test gRPC list_labels() - fails when project_id is omitted\r * test gRPC list_labels() - "},{"event":"cmd_output","timestamp":1607098229,"output":"fails when project_id is omitted (skipped)\n * test gRPC list_keyset() - succeeds when given valid "},{"event":"cmd_output","timestamp":1607098229,"output":"params\r * test gRPC list_keyset() - succeeds when given valid params (skipped)\n * test gRPC get_p"},{"event":"cmd_output","timestamp":1607098229,"output":"roject_id() - succedes when given valid wf_id\r * test gRPC get_project_id() - succedes when given v"},{"event":"cmd_output","timestamp":1607098229,"output":"alid wf_id (skipped)\n * test gRPC list() - failes when project_ids, project_id and organization_i"},{"event":"cmd_output","timestamp":1607098229,"output":"d is omitted\r * test gRPC list() - failes when project_ids, project_id and organization_id is omit"},{"event":"cmd_output","timestamp":1607098229,"output":"ted (skipped)\n * test gRPC list_grouped_ks() - returns latest workflow per distinct label when giv"},{"event":"cmd_output","timestamp":1607098229,"output":"en valid params\u001b[22m\n16:10:29.915 [info] Request: 'run: %{\"branch_id\" => \"4f53840a-9ed2-476e-9f9e-"},{"event":"cmd_output","timestamp":1607098229,"output":"770d1449e801\", \"branch_name\" => \"master\", \"client_id\" => \"7d10e8c7-0adf-4745-9513-afedb72ff31f\", \"co"},{"event":"cmd_output","timestamp":1607098229,"output":"mmit_sha\" => \"75891a4469\", \"definition_file\" => \"\", \"hook_id\" => \"branch\", \"label\" => \"master-0\", \"o"},{"event":"cmd_output","timestamp":1607098229,"output":"rganization_id\" => \"3068e1a1-6eb8-4b03-8b50-928fa9e86e87\", \"owner\" => \"rt\", \"project_id\" => \"list_gr"},{"event":"cmd_output","timestamp":1607098229,"output":"ouped_ks\", \"repo_name\" => \"2_basic\", \"request_token\" => \"3aa241aa-364b-11eb-94b3-5254005464e2\", \"req"},{"event":"cmd_output","timestamp":1607098229,"output":"uester_id\" => \"1bf655f8-1e5c-4adf-a17e-bc7b5a8f3fab\", \"service\" => \"local\", \"snapshot_id\" => \"\", \"su"},{"event":"cmd_output","timestamp":1607098229,"output":"ppressed_attributes\" => [\"access_token\", \"client_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"472"},{"event":"cmd_output","timestamp":1607098229,"output":"0139f-4ec6-499d-9791-b76e44a67f96\"}\n\u001b[0m\u001b[22m\n16:10:29.945 [info] ppl_id: e3a9c4c7-02e5-4ff9-9ff5"},{"event":"cmd_output","timestamp":1607098229,"output":"-4b33ed789a05, type: PplRequests, event: persisted schedule request with request_token: 3aa241aa-364"},{"event":"cmd_output","timestamp":1607098229,"output":"b-11eb-94b3-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2"},{"event":"cmd_output","timestamp":1607098229,"output":"(L55), \n\u001b[0m\u001b[22m\n16:10:29.949 [info] ppl_id: e3a9c4c7-02e5-4ff9-9ff5-4b33ed789a05, type: Ppls, s"},{"event":"cmd_output","timestamp":1607098229,"output":"tate: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQuerie"},{"event":"cmd_output","timestamp":1607098229,"output":"s.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:29.954 [info] Project list_grouped_ks and branch mas"},{"event":"cmd_output","timestamp":1607098229,"output":"terlatest_wf details updated: \"wf_id: 4720139f-4ec6-499d-9791-b76e44a67f96, wf_number: 1\"\n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098229,"output":"\n16:10:29.957 [info] Persisted ppl_sub_init for pipeline with ppl_id: e3a9c4c7-02e5-4ff9-9ff5-4b33"},{"event":"cmd_output","timestamp":1607098229,"output":"ed789a05: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_"},{"event":"cmd_output","timestamp":1607098229,"output":"inits\">, compile_task_id: nil, error_description: nil, id: 62, in_scheduling: false, init_type: \"reg"},{"event":"cmd_output","timestamp":1607098229,"output":"ular\", inserted_at: ~N[2020-12-04 16:10:29.955933], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"e3a9c4c7-02e5-4ff9-9ff5-4b33ed789a05\", recove"},{"event":"cmd_output","timestamp":1607098229,"output":"ry_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_re"},{"event":"cmd_output","timestamp":1607098229,"output":"quest_desc: nil, updated_at: ~N[2020-12-04 16:10:29.955942]}\n\u001b[0m\u001b[22m\n16:10:29.968 [info] Reques"},{"event":"cmd_output","timestamp":1607098229,"output":"t: 'run: %{\"branch_id\" => \"5131b933-79e7-4831-9906-36d730c69dbf\", \"branch_name\" => \"master\", \"client"},{"event":"cmd_output","timestamp":1607098229,"output":"_id\" => \"3beb5dc4-1fd6-4132-bfbd-a78868d57721\", \"commit_sha\" => \"75891a4469\", \"definition_file\" => \""},{"event":"cmd_output","timestamp":1607098229,"output":"\", \"hook_id\" => \"branch\", \"label\" => \"master-1\", \"organization_id\" => \"34fc9efd-66b1-498a-a46f-98f8b"},{"event":"cmd_output","timestamp":1607098229,"output":"acc7b0e\", \"owner\" => \"rt\", \"project_id\" => \"list_grouped_ks\", \"repo_name\" => \"2_basic\", \"request_tok"},{"event":"cmd_output","timestamp":1607098229,"output":"en\" => \"3aaa917a-364b-11eb-99b4-5254005464e2\", \"requester_id\" => \"a8a30e1b-a31d-4a27-8fa1-bb013db8bf"},{"event":"cmd_output","timestamp":1607098229,"output":"44\", \"service\" => \"local\", \"snapshot_id\" => \"\", \"suppressed_attributes\" => [\"access_token\", \"client_"},{"event":"cmd_output","timestamp":1607098230,"output":"secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"fa436d2e-c0d3-49d3-8503-2b65b2200a2c\"}\n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098230,"output":"6:10:30.006 [info] ppl_id: 64ee8488-bea7-473e-b5b0-f45461ecbcc2, type: PplRequests, event: persiste"},{"event":"cmd_output","timestamp":1607098230,"output":"d schedule request with request_token: 3aaa917a-364b-11eb-99b4-5254005464e2, origin: Elixir.Ppl.PplR"},{"event":"cmd_output","timestamp":1607098230,"output":"equests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:30.012 [info] ppl_id: "},{"event":"cmd_output","timestamp":1607098230,"output":"64ee8488-bea7-473e-b5b0-f45461ecbcc2, type: Ppls, state: initializing, event: initializing, recovery"},{"event":"cmd_output","timestamp":1607098230,"output":"_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:30"},{"event":"cmd_output","timestamp":1607098230,"output":".014 [info] Project list_grouped_ks and branch masterlatest_wf details updated: \"wf_id: fa436d2e-c0"},{"event":"cmd_output","timestamp":1607098230,"output":"d3-49d3-8503-2b65b2200a2c, wf_number: 2\"\n\u001b[0m\u001b[22m\n16:10:30.016 [info] Persisted ppl_sub_init for"},{"event":"cmd_output","timestamp":1607098230,"output":" pipeline with ppl_id: 64ee8488-bea7-473e-b5b0-f45461ecbcc2: %Ppl.PplSubInits.Model.PplSubInits{__me"},{"event":"cmd_output","timestamp":1607098230,"output":"ta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description:"},{"event":"cmd_output","timestamp":1607098230,"output":" nil, id: 63, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:10:30.014930"},{"event":"cmd_output","timestamp":1607098230,"output":"], pipeline_requests: #Ecto.Association.NotLoaded, ppl"},{"event":"cmd_output","timestamp":1607098230,"output":"_id: \"64ee8488-bea7-473e-b5b0-f45461ecbcc2\", recovery_count: 0, result: nil, result_reason: nil, sta"},{"event":"cmd_output","timestamp":1607098230,"output":"te: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:"},{"event":"cmd_output","timestamp":1607098230,"output":"30.014938]}\n\u001b[0m\u001b[22m\n16:10:30.025 [info] Request: 'run: %{\"branch_id\" => \"e800d1db-cd6b-4419-910"},{"event":"cmd_output","timestamp":1607098230,"output":"7-c9270ae61d08\", \"branch_name\" => \"master\", \"client_id\" => \"10d8f97e-1a5d-4f6a-a638-9c8a8bf23321\", \""},{"event":"cmd_output","timestamp":1607098230,"output":"commit_sha\" => \"75891a4469\", \"definition_file\" => \"\", \"hook_id\" => \"branch\", \"label\" => \"master-2\", "},{"event":"cmd_output","timestamp":1607098230,"output":"\"organization_id\" => \"ebc1a532-6fb1-443c-a0b5-b21b3d9f1f56\", \"owner\" => \"rt\", \"project_id\" => \"list_"},{"event":"cmd_output","timestamp":1607098230,"output":"grouped_ks\", \"repo_name\" => \"2_basic\", \"request_token\" => \"3ab344be-364b-11eb-982d-5254005464e2\", \"r"},{"event":"cmd_output","timestamp":1607098230,"output":"equester_id\" => \"6cb166a0-73d3-4194-a70e-dcb6e6a8a12a\", \"service\" => \"local\", \"snapshot_id\" => \"\", \""},{"event":"cmd_output","timestamp":1607098230,"output":"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"6"},{"event":"cmd_output","timestamp":1607098230,"output":"99d53da-47ac-4020-9afd-5a9231a9542e\"}\n\u001b[0m\u001b[22m\n16:10:30.049 [info] ppl_id: f724d2a2-4bc3-4d5a-bf"},{"event":"cmd_output","timestamp":1607098230,"output":"10-dd079113c0d3, type: PplRequests, event: persisted schedule request with request_token: 3ab344be-3"},{"event":"cmd_output","timestamp":1607098230,"output":"64b-11eb-982d-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response"},{"event":"cmd_output","timestamp":1607098230,"output":"/2(L55), \n\u001b[0m\u001b[22m\n16:10:30.053 [info] ppl_id: f724d2a2-4bc3-4d5a-bf10-dd079113c0d3, type: Ppls,"},{"event":"cmd_output","timestamp":1607098230,"output":" state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQuer"},{"event":"cmd_output","timestamp":1607098230,"output":"ies.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:30.056 [info] Project list_grouped_ks and branch m"},{"event":"cmd_output","timestamp":1607098230,"output":"asterlatest_wf details updated: \"wf_id: 699d53da-47ac-4020-9afd-5a9231a9542e, wf_number: 3\"\n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098230,"output":"2m\n16:10:30.057 [info] Persisted ppl_sub_init for pipeline with ppl_id: f724d2a2-4bc3-4d5a-bf10-dd"},{"event":"cmd_output","timestamp":1607098230,"output":"079113c0d3: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_su"},{"event":"cmd_output","timestamp":1607098230,"output":"b_inits\">, compile_task_id: nil, error_description: nil, id: 64, in_scheduling: false, init_type: \"r"},{"event":"cmd_output","timestamp":1607098230,"output":"egular\", inserted_at: ~N[2020-12-04 16:10:30.056366], pipeline_requests: #Ecto.Association.NotLoaded"},{"event":"cmd_output","timestamp":1607098230,"output":", ppl_id: \"f724d2a2-4bc3-4d5a-bf10-dd079113c0d3\", reco"},{"event":"cmd_output","timestamp":1607098230,"output":"very_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_"},{"event":"cmd_output","timestamp":1607098230,"output":"request_desc: nil, updated_at: ~N[2020-12-04 16:10:30.056376]}\n\u001b[0m\u001b[22m\n16:10:30.074 [info] Requ"},{"event":"cmd_output","timestamp":1607098230,"output":"est: 'run: %{\"branch_id\" => \"886bc65f-9df7-452a-a65a-a8f19df912e6\", \"branch_name\" => \"master\", \"clie"},{"event":"cmd_output","timestamp":1607098230,"output":"nt_id\" => \"44813b70-0543-41c0-b833-15fffd966cdb\", \"commit_sha\" => \"75891a4469\", \"definition_file\" =>"},{"event":"cmd_output","timestamp":1607098230,"output":" \"\", \"hook_id\" => \"branch\", \"label\" => \"master-3\", \"organization_id\" => \"842bf3f2-194b-49e0-a2d8-bc9"},{"event":"cmd_output","timestamp":1607098230,"output":"9ae4f1429\", \"owner\" => \"rt\", \"project_id\" => \"list_grouped_ks\", \"repo_name\" => \"2_basic\", \"request_t"},{"event":"cmd_output","timestamp":1607098230,"output":"oken\" => \"3ab9b056-364b-11eb-95f2-5254005464e2\", \"requester_id\" => \"a2db6a49-6eeb-4d07-92b8-0e229f45"},{"event":"cmd_output","timestamp":1607098230,"output":"8c89\", \"service\" => \"local\", \"snapshot_id\" => \"\", \"suppressed_attributes\" => [\"access_token\", \"clien"},{"event":"cmd_output","timestamp":1607098230,"output":"t_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"7fefd8e8-8a07-4d54-ac88-14b47f72f662\"}\n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098230,"output":"\n16:10:30.106 [info] ppl_id: 5b6df62b-edb4-468c-8034-d92349521525, type: PplRequests, event: persis"},{"event":"cmd_output","timestamp":1607098230,"output":"ted schedule request with request_token: 3ab9b056-364b-11eb-95f2-5254005464e2, origin: Elixir.Ppl.Pp"},{"event":"cmd_output","timestamp":1607098230,"output":"lRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:30.114 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098230,"output":": 5b6df62b-edb4-468c-8034-d92349521525, type: Ppls, state: initializing, event: initializing, recove"},{"event":"cmd_output","timestamp":1607098230,"output":"ry_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:"},{"event":"cmd_output","timestamp":1607098230,"output":"30.118 [info] Project list_grouped_ks and branch masterlatest_wf details updated: \"wf_id: 7fefd8e8-"},{"event":"cmd_output","timestamp":1607098230,"output":"8a07-4d54-ac88-14b47f72f662, wf_number: 4\"\n\u001b[0m\u001b[22m\n16:10:30.120 [info] Persisted ppl_sub_init f"},{"event":"cmd_output","timestamp":1607098230,"output":"or pipeline with ppl_id: 5b6df62b-edb4-468c-8034-d92349521525: %Ppl.PplSubInits.Model.PplSubInits{__"},{"event":"cmd_output","timestamp":1607098230,"output":"meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_descriptio"},{"event":"cmd_output","timestamp":1607098230,"output":"n: nil, id: 65, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:10:30.1194"},{"event":"cmd_output","timestamp":1607098230,"output":"93], pipeline_requests: #Ecto.Association.NotLoaded, p"},{"event":"cmd_output","timestamp":1607098230,"output":"pl_id: \"5b6df62b-edb4-468c-8034-d92349521525\", recovery_count: 0, result: nil, result_reason: nil, s"},{"event":"cmd_output","timestamp":1607098230,"output":"tate: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:1"},{"event":"cmd_output","timestamp":1607098230,"output":"0:30.119503]}\n\u001b[0m\u001b[22m\n16:10:30.132 [info] Request: 'run: %{\"branch_id\" => \"0e93a33f-846d-4fb6-8"},{"event":"cmd_output","timestamp":1607098230,"output":"033-a6c9548b362e\", \"branch_name\" => \"master\", \"client_id\" => \"e13b5e60-d564-4837-9992-c6ec6d8dc566\","},{"event":"cmd_output","timestamp":1607098230,"output":" \"commit_sha\" => \"75891a4469\", \"definition_file\" => \"\", \"hook_id\" => \"branch\", \"label\" => \"master-4\""},{"event":"cmd_output","timestamp":1607098230,"output":", \"organization_id\" => \"178c5a12-8c4f-4225-b5b3-a24bc7d9b3c5\", \"owner\" => \"rt\", \"project_id\" => \"lis"},{"event":"cmd_output","timestamp":1607098230,"output":"t_grouped_ks\", \"repo_name\" => \"2_basic\", \"request_token\" => \"3ac3cd48-364b-11eb-94d5-5254005464e2\", "},{"event":"cmd_output","timestamp":1607098230,"output":"\"requester_id\" => \"f14e9810-1f83-4749-ad54-ec35536fa203\", \"service\" => \"local\", \"snapshot_id\" => \"\","},{"event":"cmd_output","timestamp":1607098230,"output":" \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => "},{"event":"cmd_output","timestamp":1607098230,"output":"\"9c2f7291-2f79-49e6-88b2-104ccf36147f\"}\n\u001b[0m\u001b[22m\n16:10:30.162 [info] ppl_id: 1ab2a87a-e96b-4175-"},{"event":"cmd_output","timestamp":1607098230,"output":"95ae-8425f6480900, type: PplRequests, event: persisted schedule request with request_token: 3ac3cd48"},{"event":"cmd_output","timestamp":1607098230,"output":"-364b-11eb-94d5-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_respon"},{"event":"cmd_output","timestamp":1607098230,"output":"se/2(L55), \n\u001b[0m\u001b[22m\n16:10:30.167 [info] ppl_id: 1ab2a87a-e96b-4175-95ae-8425f6480900, type: Ppl"},{"event":"cmd_output","timestamp":1607098230,"output":"s, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQu"},{"event":"cmd_output","timestamp":1607098230,"output":"eries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:30.171 [info] Project list_grouped_ks and branch"},{"event":"cmd_output","timestamp":1607098230,"output":" masterlatest_wf details updated: \"wf_id: 9c2f7291-2f79-49e6-88b2-104ccf36147f, wf_number: 5\"\n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098230,"output":"[22m\n16:10:30.173 [info] Persisted ppl_sub_init for pipeline with ppl_id: 1ab2a87a-e96b-4175-95ae-"},{"event":"cmd_output","timestamp":1607098230,"output":"8425f6480900: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_"},{"event":"cmd_output","timestamp":1607098230,"output":"sub_inits\">, compile_task_id: nil, error_description: nil, id: 66, in_scheduling: false, init_type: "},{"event":"cmd_output","timestamp":1607098230,"output":"\"regular\", inserted_at: ~N[2020-12-04 16:10:30.171223], pipeline_requests: #Ecto.Association.NotLoad"},{"event":"cmd_output","timestamp":1607098230,"output":"ed, ppl_id: \"1ab2a87a-e96b-4175-95ae-8425f6480900\", re"},{"event":"cmd_output","timestamp":1607098230,"output":"covery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminat"},{"event":"cmd_output","timestamp":1607098230,"output":"e_request_desc: nil, updated_at: ~N[2020-12-04 16:10:30.171234]}\n\u001b[0m\u001b[22m\n16:10:30.187 [info] Re"},{"event":"cmd_output","timestamp":1607098230,"output":"quest: 'run: %{\"branch_id\" => \"e0c8a260-a931-44b8-b27f-84d4a80573b7\", \"branch_name\" => \"master\", \"cl"},{"event":"cmd_output","timestamp":1607098230,"output":"ient_id\" => \"bbfbb334-b3ce-4f9f-a1ba-55c7f331f747\", \"commit_sha\" => \"75891a4469\", \"definition_file\" "},{"event":"cmd_output","timestamp":1607098230,"output":"=> \"\", \"hook_id\" => \"branch\", \"label\" => \"master-5\", \"organization_id\" => \"6619b4ea-e2c7-46b2-b50c-5"},{"event":"cmd_output","timestamp":1607098230,"output":"f68f36ff8d0\", \"owner\" => \"rt\", \"project_id\" => \"list_grouped_ks\", \"repo_name\" => \"2_basic\", \"request"},{"event":"cmd_output","timestamp":1607098230,"output":"_token\" => \"3acbd664-364b-11eb-b611-5254005464e2\", \"requester_id\" => \"452b12cb-6cb0-477a-80d2-d2e948"},{"event":"cmd_output","timestamp":1607098230,"output":"6a4f83\", \"service\" => \"local\", \"snapshot_id\" => \"\", \"suppressed_attributes\" => [\"access_token\", \"cli"},{"event":"cmd_output","timestamp":1607098230,"output":"ent_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"4f722896-995b-4841-8039-33f2fa3b5931\"}\n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098230,"output":"m\n16:10:30.230 [info] ppl_id: 7b998d12-d0cc-4c15-9bb9-1393c2495d28, type: PplRequests, event: pers"},{"event":"cmd_output","timestamp":1607098230,"output":"isted schedule request with request_token: 3acbd664-364b-11eb-b611-5254005464e2, origin: Elixir.Ppl."},{"event":"cmd_output","timestamp":1607098230,"output":"PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:30.234 [info] ppl_"},{"event":"cmd_output","timestamp":1607098230,"output":"id: 7b998d12-d0cc-4c15-9bb9-1393c2495d28, type: Ppls, state: initializing, event: initializing, reco"},{"event":"cmd_output","timestamp":1607098230,"output":"very_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098230,"output":"0:30.238 [info] Project list_grouped_ks and branch masterlatest_wf details updated: \"wf_id: 4f72289"},{"event":"cmd_output","timestamp":1607098230,"output":"6-995b-4841-8039-33f2fa3b5931, wf_number: 6\"\n\u001b[0m\u001b[22m\n16:10:30.240 [info] Persisted ppl_sub_init"},{"event":"cmd_output","timestamp":1607098230,"output":" for pipeline with ppl_id: 7b998d12-d0cc-4c15-9bb9-1393c2495d28: %Ppl.PplSubInits.Model.PplSubInits{"},{"event":"cmd_output","timestamp":1607098230,"output":"__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_descript"},{"event":"cmd_output","timestamp":1607098230,"output":"ion: nil, id: 67, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:10:30.23"},{"event":"cmd_output","timestamp":1607098230,"output":"8259], pipeline_requests: #Ecto.Association.NotLoaded,"},{"event":"cmd_output","timestamp":1607098230,"output":" ppl_id: \"7b998d12-d0cc-4c15-9bb9-1393c2495d28\", recovery_count: 0, result: nil, result_reason: nil,"},{"event":"cmd_output","timestamp":1607098230,"output":" state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16"},{"event":"cmd_output","timestamp":1607098230,"output":":10:30.238270]}\n\u001b[0m\u001b[22m\n16:10:30.250 [info] Request: 'run: %{\"branch_id\" => \"4279e772-b32b-466f"},{"event":"cmd_output","timestamp":1607098230,"output":"-a5c5-1cc4830c36ce\", \"branch_name\" => \"master\", \"client_id\" => \"9d0a7318-2d92-4068-913f-f2068db3cbb2"},{"event":"cmd_output","timestamp":1607098230,"output":"\", \"commit_sha\" => \"75891a4469\", \"definition_file\" => \"\", \"hook_id\" => \"tag\", \"label\" => \"refs/tags/"},{"event":"cmd_output","timestamp":1607098230,"output":"v1.6\", \"organization_id\" => \"b8060f78-e967-487e-ab8c-9ce3d2af3c68\", \"owner\" => \"rt\", \"project_id\" =>"},{"event":"cmd_output","timestamp":1607098230,"output":" \"list_grouped_ks\", \"repo_name\" => \"2_basic\", \"request_token\" => \"3ad5b71a-364b-11eb-88ce-5254005464"},{"event":"cmd_output","timestamp":1607098230,"output":"e2\", \"requester_id\" => \"cedac838-4d7e-4be3-96d1-504e3864d17c\", \"service\" => \"local\", \"snapshot_id\" ="},{"event":"cmd_output","timestamp":1607098230,"output":"> \"\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"triggered_by\" => \"hook\", \"wf_id"},{"event":"cmd_output","timestamp":1607098230,"output":"\" => \"29503d13-dee2-44e8-87ae-dda0ce1ab1e3\"}\n\u001b[0m\u001b[22m\n16:10:30.280 [info] ppl_id: bbc8c9bd-c984-"},{"event":"cmd_output","timestamp":1607098230,"output":"4943-ad96-adcb06e6b4d4, type: PplRequests, event: persisted schedule request with request_token: 3ad"},{"event":"cmd_output","timestamp":1607098230,"output":"5b71a-364b-11eb-88ce-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_r"},{"event":"cmd_output","timestamp":1607098230,"output":"esponse/2(L55), \n\u001b[0m\u001b[22m\n16:10:30.284 [info] ppl_id: bbc8c9bd-c984-4943-ad96-adcb06e6b4d4, type"},{"event":"cmd_output","timestamp":1607098230,"output":": Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.P"},{"event":"cmd_output","timestamp":1607098230,"output":"plsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:30.289 [info] Project list_grouped_ks and b"},{"event":"cmd_output","timestamp":1607098230,"output":"ranch masterlatest_wf details updated: \"wf_id: 29503d13-dee2-44e8-87ae-dda0ce1ab1e3, wf_number: 7\"\n"},{"event":"cmd_output","timestamp":1607098230,"output":"\u001b[0m\u001b[22m\n16:10:30.292 [info] Persisted ppl_sub_init for pipeline with ppl_id: bbc8c9bd-c984-4943-"},{"event":"cmd_output","timestamp":1607098230,"output":"ad96-adcb06e6b4d4: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipe"},{"event":"cmd_output","timestamp":1607098230,"output":"line_sub_inits\">, compile_task_id: nil, error_description: nil, id: 68, in_scheduling: false, init_t"},{"event":"cmd_output","timestamp":1607098230,"output":"ype: \"regular\", inserted_at: ~N[2020-12-04 16:10:30.290482], pipeline_requests: #Ecto.Association.No"},{"event":"cmd_output","timestamp":1607098230,"output":"tLoaded, ppl_id: \"bbc8c9bd-c984-4943-ad96-adcb06e6b4d4"},{"event":"cmd_output","timestamp":1607098230,"output":"\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, ter"},{"event":"cmd_output","timestamp":1607098230,"output":"minate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:30.290494]}\n\u001b[0m\u001b[22m\n16:10:30.306 [info"},{"event":"cmd_output","timestamp":1607098230,"output":"] Request: 'run: %{\"branch_id\" => \"8b8bbe10-a7b3-4358-a646-feeb6398896b\", \"branch_name\" => \"master\""},{"event":"cmd_output","timestamp":1607098230,"output":", \"client_id\" => \"83a81f7e-3f56-465f-980d-c41888463a4e\", \"commit_sha\" => \"75891a4469\", \"definition_f"},{"event":"cmd_output","timestamp":1607098230,"output":"ile\" => \"\", \"hook_id\" => \"tag\", \"label\" => \"refs/tags/v1.7\", \"organization_id\" => \"508ccf74-5449-4ad"},{"event":"cmd_output","timestamp":1607098230,"output":"3-aa70-d00231bd83aa\", \"owner\" => \"rt\", \"project_id\" => \"list_grouped_ks\", \"repo_name\" => \"2_basic\", "},{"event":"cmd_output","timestamp":1607098230,"output":"\"request_token\" => \"3ade20b2-364b-11eb-8379-5254005464e2\", \"requester_id\" => \"f0653670-1286-4f04-895"},{"event":"cmd_output","timestamp":1607098230,"output":"4-f84601650375\", \"service\" => \"local\", \"snapshot_id\" => \"\", \"suppressed_attributes\" => [\"access_toke"},{"event":"cmd_output","timestamp":1607098230,"output":"n\", \"client_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"22c46dcb-6980-4d29-b604-92ee8039a767\"}\n"},{"event":"cmd_output","timestamp":1607098230,"output":"\u001b[0m\u001b[22m\n16:10:30.337 [info] ppl_id: cfafd963-cc5d-4c5a-ba9e-d57db9329973, type: PplRequests, eve"},{"event":"cmd_output","timestamp":1607098230,"output":"nt: persisted schedule request with request_token: 3ade20b2-364b-11eb-8379-5254005464e2, origin: Eli"},{"event":"cmd_output","timestamp":1607098230,"output":"xir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:30.341 [inf"},{"event":"cmd_output","timestamp":1607098230,"output":"o] ppl_id: cfafd963-cc5d-4c5a-ba9e-d57db9329973, type: Ppls, state: initializing, event: initializi"},{"event":"cmd_output","timestamp":1607098230,"output":"ng, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098230,"output":"2m\n16:10:30.346 [info] Project list_grouped_ks and branch masterlatest_wf details updated: \"wf_id:"},{"event":"cmd_output","timestamp":1607098230,"output":" 22c46dcb-6980-4d29-b604-92ee8039a767, wf_number: 8\"\n\u001b[0m\u001b[22m\n16:10:30.349 [info] Persisted ppl_"},{"event":"cmd_output","timestamp":1607098230,"output":"sub_init for pipeline with ppl_id: cfafd963-cc5d-4c5a-ba9e-d57db9329973: %Ppl.PplSubInits.Model.PplS"},{"event":"cmd_output","timestamp":1607098230,"output":"ubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_"},{"event":"cmd_output","timestamp":1607098230,"output":"description: nil, id: 69, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:"},{"event":"cmd_output","timestamp":1607098230,"output":"10:30.348001], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"cfafd963-cc5d-4c5a-ba9e-d57db9329973\", recovery_count: 0, result: nil, result_reas"},{"event":"cmd_output","timestamp":1607098230,"output":"on: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-"},{"event":"cmd_output","timestamp":1607098230,"output":"12-04 16:10:30.348015]}\n\u001b[0m\u001b[22m\n16:10:30.364 [info] Request: 'run: %{\"branch_id\" => \"4ceaf452-d"},{"event":"cmd_output","timestamp":1607098230,"output":"b59-4f10-a7cb-faf2431f3048\", \"branch_name\" => \"master\", \"client_id\" => \"f4e31d3e-ba6f-4253-951d-d4cf"},{"event":"cmd_output","timestamp":1607098230,"output":"23894c17\", \"commit_sha\" => \"75891a4469\", \"definition_file\" => \"\", \"hook_id\" => \"tag\", \"label\" => \"re"},{"event":"cmd_output","timestamp":1607098230,"output":"fs/tags/v1.8\", \"organization_id\" => \"1a7111de-fb91-4fdf-9836-97f0221b500b\", \"owner\" => \"rt\", \"projec"},{"event":"cmd_output","timestamp":1607098230,"output":"t_id\" => \"list_grouped_ks\", \"repo_name\" => \"2_basic\", \"request_token\" => \"3ae6f19c-364b-11eb-91d2-52"},{"event":"cmd_output","timestamp":1607098230,"output":"54005464e2\", \"requester_id\" => \"453eb303-c1ff-4c35-909d-9ababc2b7d4e\", \"service\" => \"local\", \"snapsh"},{"event":"cmd_output","timestamp":1607098230,"output":"ot_id\" => \"\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"triggered_by\" => \"hook\""},{"event":"cmd_output","timestamp":1607098230,"output":", \"wf_id\" => \"a2e95e5f-fdb1-4184-a898-ff1bc4677af7\"}\n\u001b[0m\u001b[22m\n16:10:30.395 [info] ppl_id: dbfcdf"},{"event":"cmd_output","timestamp":1607098230,"output":"51-3c83-4a4d-a645-035067649428, type: PplRequests, event: persisted schedule request with request_to"},{"event":"cmd_output","timestamp":1607098230,"output":"ken: 3ae6f19c-364b-11eb-91d2-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.p"},{"event":"cmd_output","timestamp":1607098230,"output":"rocess_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:30.399 [info] ppl_id: dbfcdf51-3c83-4a4d-a645-0350676494"},{"event":"cmd_output","timestamp":1607098230,"output":"28, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls"},{"event":"cmd_output","timestamp":1607098230,"output":".Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:30.403 [info] Project list_grouped_"},{"event":"cmd_output","timestamp":1607098230,"output":"ks and branch masterlatest_wf details updated: \"wf_id: a2e95e5f-fdb1-4184-a898-ff1bc4677af7, wf_numb"},{"event":"cmd_output","timestamp":1607098230,"output":"er: 9\"\n\u001b[0m\u001b[22m\n16:10:30.405 [info] Persisted ppl_sub_init for pipeline with ppl_id: dbfcdf51-3c"},{"event":"cmd_output","timestamp":1607098230,"output":"83-4a4d-a645-035067649428: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loade"},{"event":"cmd_output","timestamp":1607098230,"output":"d, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 70, in_scheduling: false"},{"event":"cmd_output","timestamp":1607098230,"output":", init_type: \"regular\", inserted_at: ~N[2020-12-04 16:10:30.403220], pipeline_requests: #Ecto.Associ"},{"event":"cmd_output","timestamp":1607098230,"output":"ation.NotLoaded, ppl_id: \"dbfcdf51-3c83-4a4d-a645-0350"},{"event":"cmd_output","timestamp":1607098230,"output":"67649428\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: "},{"event":"cmd_output","timestamp":1607098230,"output":"nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:30.403229]}\n\u001b[0m\u001b[22m\n16:10:30.4"},{"event":"cmd_output","timestamp":1607098230,"output":"14 [info] Request: 'run: %{\"branch_id\" => \"239fdb5a-d4f0-4d99-aafc-ea1c91e4cff8\", \"branch_name\" => "},{"event":"cmd_output","timestamp":1607098230,"output":"\"master\", \"client_id\" => \"81a78b51-79d8-4501-a64b-212a5e363a56\", \"commit_sha\" => \"75891a4469\", \"defi"},{"event":"cmd_output","timestamp":1607098230,"output":"nition_file\" => \"\", \"hook_id\" => \"tag\", \"label\" => \"refs/tags/v1.9\", \"organization_id\" => \"717b50d6-"},{"event":"cmd_output","timestamp":1607098230,"output":"1947-4ad5-85c3-61bc813c984f\", \"owner\" => \"rt\", \"project_id\" => \"list_grouped_ks\", \"repo_name\" => \"2_"},{"event":"cmd_output","timestamp":1607098230,"output":"basic\", \"request_token\" => \"3aeeccf0-364b-11eb-a84e-5254005464e2\", \"requester_id\" => \"b5c21a69-3e90-"},{"event":"cmd_output","timestamp":1607098230,"output":"4a7f-b648-95badc42af83\", \"service\" => \"local\", \"snapshot_id\" => \"\", \"suppressed_attributes\" => [\"acc"},{"event":"cmd_output","timestamp":1607098230,"output":"ess_token\", \"client_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"75a3d1b1-92ac-4aaa-8283-dd739b6d"},{"event":"cmd_output","timestamp":1607098230,"output":"724f\"}\n\u001b[0m\u001b[22m\n16:10:30.445 [info] ppl_id: 122a2a60-c45e-4a43-baa6-937d4dd2b879, type: PplReque"},{"event":"cmd_output","timestamp":1607098230,"output":"sts, event: persisted schedule request with request_token: 3aeeccf0-364b-11eb-a84e-5254005464e2, ori"},{"event":"cmd_output","timestamp":1607098230,"output":"gin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:30."},{"event":"cmd_output","timestamp":1607098230,"output":"449 [info] ppl_id: 122a2a60-c45e-4a43-baa6-937d4dd2b879, type: Ppls, state: initializing, event: in"},{"event":"cmd_output","timestamp":1607098230,"output":"itializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \r"},{"event":"cmd_output","timestamp":1607098230,"output":"\n\u001b[0m\u001b[22m\n16:10:30.454 [info] Project list_grouped_ks and branch masterlatest_wf details updated:"},{"event":"cmd_output","timestamp":1607098230,"output":" \"wf_id: 75a3d1b1-92ac-4aaa-8283-dd739b6d724f, wf_number: 10\"\n\u001b[0m\u001b[22m\n16:10:30.457 [info] Persi"},{"event":"cmd_output","timestamp":1607098230,"output":"sted ppl_sub_init for pipeline with ppl_id: 122a2a60-c45e-4a43-baa6-937d4dd2b879: %Ppl.PplSubInits.M"},{"event":"cmd_output","timestamp":1607098230,"output":"odel.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: ni"},{"event":"cmd_output","timestamp":1607098230,"output":"l, error_description: nil, id: 71, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-"},{"event":"cmd_output","timestamp":1607098230,"output":"12-04 16:10:30.455652], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"122a2a60-c45e-4a43-baa6-937d4dd2b879\", recovery_count: 0, result: nil, re"},{"event":"cmd_output","timestamp":1607098230,"output":"sult_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at:"},{"event":"cmd_output","timestamp":1607098230,"output":" ~N[2020-12-04 16:10:30.455665]}\n\u001b[0m\u001b[22m\n16:10:30.466 [info] Request: 'run: %{\"branch_id\" => \"1"},{"event":"cmd_output","timestamp":1607098230,"output":"a000ce8-fd80-4db0-913e-88ed05aa9c81\", \"branch_name\" => \"master\", \"client_id\" => \"66bd7125-9b07-4ee4-"},{"event":"cmd_output","timestamp":1607098230,"output":"b846-a9a08440ba4c\", \"commit_sha\" => \"75891a4469\", \"definition_file\" => \"\", \"hook_id\" => \"tag\", \"labe"},{"event":"cmd_output","timestamp":1607098230,"output":"l\" => \"refs/tags/v1.10\", \"organization_id\" => \"e3c90ed9-473b-4264-8174-46e4378b45c4\", \"owner\" => \"rt"},{"event":"cmd_output","timestamp":1607098230,"output":"\", \"project_id\" => \"list_grouped_ks\", \"repo_name\" => \"2_basic\", \"request_token\" => \"3af6c478-364b-11"},{"event":"cmd_output","timestamp":1607098230,"output":"eb-bba2-5254005464e2\", \"requester_id\" => \"24ab63d2-2b09-4416-af4e-cc74ee960ff2\", \"service\" => \"local"},{"event":"cmd_output","timestamp":1607098230,"output":"\", \"snapshot_id\" => \"\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"triggered_by\""},{"event":"cmd_output","timestamp":1607098230,"output":" => \"hook\", \"wf_id\" => \"959ce5f3-6e1c-45b6-896a-3cd268ca272a\"}\n\u001b[0m\u001b[22m\n16:10:30.487 [info] ppl_"},{"event":"cmd_output","timestamp":1607098230,"output":"id: 2ca25cfc-4a35-4375-8efe-76f3163c59ee, type: PplRequests, event: persisted schedule request with "},{"event":"cmd_output","timestamp":1607098230,"output":"request_token: 3af6c478-364b-11eb-bba2-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequest"},{"event":"cmd_output","timestamp":1607098230,"output":"sQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:30.489 [info] ppl_id: 2ca25cfc-4a35-4375-8efe-"},{"event":"cmd_output","timestamp":1607098230,"output":"76f3163c59ee, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098230,"output":"r.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:30.492 [info] Project lis"},{"event":"cmd_output","timestamp":1607098230,"output":"t_grouped_ks and branch masterlatest_wf details updated: \"wf_id: 959ce5f3-6e1c-45b6-896a-3cd268ca272"},{"event":"cmd_output","timestamp":1607098230,"output":"a, wf_number: 11\"\n\u001b[0m\u001b[22m\n16:10:30.493 [info] Persisted ppl_sub_init for pipeline with ppl_id: "},{"event":"cmd_output","timestamp":1607098230,"output":"2ca25cfc-4a35-4375-8efe-76f3163c59ee: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Meta"},{"event":"cmd_output","timestamp":1607098230,"output":"data<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 72, in_schedu"},{"event":"cmd_output","timestamp":1607098230,"output":"ling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:10:30.492446], pipeline_requests: #"},{"event":"cmd_output","timestamp":1607098230,"output":"Ecto.Association.NotLoaded, ppl_id: \"2ca25cfc-4a35-437"},{"event":"cmd_output","timestamp":1607098230,"output":"5-8efe-76f3163c59ee\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminat"},{"event":"cmd_output","timestamp":1607098230,"output":"e_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:30.492455]}\n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098230,"output":"\n16:10:30.500 [info] Request: 'run: %{\"branch_id\" => \"212d2f53-c8bc-486a-a8d6-a2fe43a8f0ba\", \"branc"},{"event":"cmd_output","timestamp":1607098230,"output":"h_name\" => \"master\", \"client_id\" => \"1a0c9e6d-cd3a-4d61-a2be-711a04a1b671\", \"commit_sha\" => \"75891a4"},{"event":"cmd_output","timestamp":1607098230,"output":"469\", \"definition_file\" => \"\", \"hook_id\" => \"tag\", \"label\" => \"refs/tags/v1.11\", \"organization_id\" ="},{"event":"cmd_output","timestamp":1607098230,"output":"> \"46ee7156-0f30-4b1c-8c41-5dcb1a18b916\", \"owner\" => \"rt\", \"project_id\" => \"list_grouped_ks\", \"repo_"},{"event":"cmd_output","timestamp":1607098230,"output":"name\" => \"2_basic\", \"request_token\" => \"3afbeff2-364b-11eb-94a6-5254005464e2\", \"requester_id\" => \"29"},{"event":"cmd_output","timestamp":1607098230,"output":"d70865-8b20-496a-ab26-ec55c6ea4810\", \"service\" => \"local\", \"snapshot_id\" => \"\", \"suppressed_attribut"},{"event":"cmd_output","timestamp":1607098230,"output":"es\" => [\"access_token\", \"client_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"a28ab400-6d2c-4bac-b"},{"event":"cmd_output","timestamp":1607098230,"output":"cd0-a42f37add71c\"}\n\u001b[0m\u001b[22m\n16:10:30.521 [info] ppl_id: 781110ae-292e-4deb-85e8-7c35907ee65a, ty"},{"event":"cmd_output","timestamp":1607098230,"output":"pe: PplRequests, event: persisted schedule request with request_token: 3afbeff2-364b-11eb-94a6-52540"},{"event":"cmd_output","timestamp":1607098230,"output":"05464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098230,"output":"m\n16:10:30.524 [info] ppl_id: 781110ae-292e-4deb-85e8-7c35907ee65a, type: Ppls, state: initializin"},{"event":"cmd_output","timestamp":1607098230,"output":"g, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_respons"},{"event":"cmd_output","timestamp":1607098230,"output":"e/2(L124), \n\u001b[0m\u001b[22m\n16:10:30.527 [info] Project list_grouped_ks and branch masterlatest_wf deta"},{"event":"cmd_output","timestamp":1607098230,"output":"ils updated: \"wf_id: a28ab400-6d2c-4bac-bcd0-a42f37add71c, wf_number: 12\"\n\u001b[0m\u001b[22m\n16:10:30.528 ["},{"event":"cmd_output","timestamp":1607098230,"output":"info] Persisted ppl_sub_init for pipeline with ppl_id: 781110ae-292e-4deb-85e8-7c35907ee65a: %Ppl.P"},{"event":"cmd_output","timestamp":1607098230,"output":"plSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile"},{"event":"cmd_output","timestamp":1607098230,"output":"_task_id: nil, error_description: nil, id: 73, in_scheduling: false, init_type: \"regular\", inserted_"},{"event":"cmd_output","timestamp":1607098230,"output":"at: ~N[2020-12-04 16:10:30.527638], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"781110ae-292e-4deb-85e8-7c35907ee65a\", recovery_count: 0, res"},{"event":"cmd_output","timestamp":1607098230,"output":"ult: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil,"},{"event":"cmd_output","timestamp":1607098230,"output":" updated_at: ~N[2020-12-04 16:10:30.527647]}\n\u001b[0m\u001b[22m\n16:10:30.535 [info] Request: 'run: %{\"bran"},{"event":"cmd_output","timestamp":1607098230,"output":"ch_id\" => \"b54d82d4-7eca-47a3-93fa-85c72048bcab\", \"branch_name\" => \"master\", \"client_id\" => \"b7f9229"},{"event":"cmd_output","timestamp":1607098230,"output":"d-08b6-4f0d-8ee1-ff5c751a64b6\", \"commit_sha\" => \"75891a4469\", \"definition_file\" => \"\", \"hook_id\" => "},{"event":"cmd_output","timestamp":1607098230,"output":"\"pr\", \"label\" => \"pull-request-1212\", \"organization_id\" => \"14a5b091-9a4d-42e5-ab35-4d0dd2c62b3f\", \""},{"event":"cmd_output","timestamp":1607098230,"output":"owner\" => \"rt\", \"project_id\" => \"list_grouped_ks\", \"repo_name\" => \"2_basic\", \"request_token\" => \"3b0"},{"event":"cmd_output","timestamp":1607098230,"output":"16720-364b-11eb-a915-5254005464e2\", \"requester_id\" => \"7b8dab51-2615-46d5-8106-47225740e8de\", \"servi"},{"event":"cmd_output","timestamp":1607098230,"output":"ce\" => \"local\", \"snapshot_id\" => \"\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \""},{"event":"cmd_output","timestamp":1607098230,"output":"triggered_by\" => \"hook\", \"wf_id\" => \"e657ad40-850e-4e51-b535-0d7d3933880c\"}\n\u001b[0m\u001b[22m\n16:10:30.579"},{"event":"cmd_output","timestamp":1607098230,"output":" [info] ppl_id: 3bb0af1f-a347-463e-abf1-40b45aadd842, type: PplRequests, event: persisted schedule "},{"event":"cmd_output","timestamp":1607098230,"output":"request with request_token: 3b016720-364b-11eb-a915-5254005464e2, origin: Elixir.Ppl.PplRequests.Mod"},{"event":"cmd_output","timestamp":1607098230,"output":"el.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:30.581 [info] ppl_id: 3bb0af1f-a3"},{"event":"cmd_output","timestamp":1607098230,"output":"47-463e-abf1-40b45aadd842, type: Ppls, state: initializing, event: initializing, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098230,"output":"origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:30.584 [info]"},{"event":"cmd_output","timestamp":1607098230,"output":" Project list_grouped_ks and branch masterlatest_wf details updated: \"wf_id: e657ad40-850e-4e51-b53"},{"event":"cmd_output","timestamp":1607098230,"output":"5-0d7d3933880c, wf_number: 13\"\n\u001b[0m\u001b[22m\n16:10:30.586 [info] Persisted ppl_sub_init for pipeline "},{"event":"cmd_output","timestamp":1607098230,"output":"with ppl_id: 3bb0af1f-a347-463e-abf1-40b45aadd842: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ect"},{"event":"cmd_output","timestamp":1607098230,"output":"o.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: "},{"event":"cmd_output","timestamp":1607098230,"output":"74, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:10:30.584694], pipelin"},{"event":"cmd_output","timestamp":1607098230,"output":"e_requests: #Ecto.Association.NotLoaded, ppl_id: \"3bb0"},{"event":"cmd_output","timestamp":1607098230,"output":"af1f-a347-463e-abf1-40b45aadd842\", recovery_count: 0, result: nil, result_reason: nil, state: \"creat"},{"event":"cmd_output","timestamp":1607098230,"output":"ed\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:30.584700]"},{"event":"cmd_output","timestamp":1607098230,"output":"}\n\u001b[0m\u001b[22m\n16:10:30.593 [info] Request: 'run: %{\"branch_id\" => \"f922098a-f5e6-44e4-9877-b9db9b1c"},{"event":"cmd_output","timestamp":1607098230,"output":"5fa7\", \"branch_name\" => \"master\", \"client_id\" => \"160a46ec-e663-4837-8b00-77cdef4b6e86\", \"commit_sha"},{"event":"cmd_output","timestamp":1607098230,"output":"\" => \"75891a4469\", \"definition_file\" => \"\", \"hook_id\" => \"pr\", \"label\" => \"pull-request-1213\", \"orga"},{"event":"cmd_output","timestamp":1607098230,"output":"nization_id\" => \"ffa8028d-2e3a-4ac8-aeb6-75f30f6bb69f\", \"owner\" => \"rt\", \"project_id\" => \"list_group"},{"event":"cmd_output","timestamp":1607098230,"output":"ed_ks\", \"repo_name\" => \"2_basic\", \"request_token\" => \"3b0a2b44-364b-11eb-a119-5254005464e2\", \"reques"},{"event":"cmd_output","timestamp":1607098230,"output":"ter_id\" => \"7314218b-99c6-4433-a88a-a6c40c8cee03\", \"service\" => \"local\", \"snapshot_id\" => \"\", \"suppr"},{"event":"cmd_output","timestamp":1607098230,"output":"essed_attributes\" => [\"access_token\", \"client_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"c032b8"},{"event":"cmd_output","timestamp":1607098230,"output":"97-4697-4a00-8c45-f84c3622e12f\"}\n\u001b[0m\u001b[22m\n16:10:30.613 [info] ppl_id: 3dfbf506-8b31-45a8-9a07-17"},{"event":"cmd_output","timestamp":1607098230,"output":"1cd6636cea, type: PplRequests, event: persisted schedule request with request_token: 3b0a2b44-364b-1"},{"event":"cmd_output","timestamp":1607098230,"output":"1eb-a119-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L5"},{"event":"cmd_output","timestamp":1607098230,"output":"5), \n\u001b[0m\u001b[22m\n16:10:30.615 [info] ppl_id: 3dfbf506-8b31-45a8-9a07-171cd6636cea, type: Ppls, stat"},{"event":"cmd_output","timestamp":1607098230,"output":"e: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.p"},{"event":"cmd_output","timestamp":1607098230,"output":"rocess_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:30.617 [info] Project list_grouped_ks and branch master"},{"event":"cmd_output","timestamp":1607098230,"output":"latest_wf details updated: \"wf_id: c032b897-4697-4a00-8c45-f84c3622e12f, wf_number: 14\"\n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098230,"output":"16:10:30.618 [info] Persisted ppl_sub_init for pipeline with ppl_id: 3dfbf506-8b31-45a8-9a07-171cd6"},{"event":"cmd_output","timestamp":1607098230,"output":"636cea: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_in"},{"event":"cmd_output","timestamp":1607098230,"output":"its\">, compile_task_id: nil, error_description: nil, id: 75, in_scheduling: false, init_type: \"regul"},{"event":"cmd_output","timestamp":1607098230,"output":"ar\", inserted_at: ~N[2020-12-04 16:10:30.617735], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"3dfbf506-8b31-45a8-9a07-171cd6636cea\", recovery"},{"event":"cmd_output","timestamp":1607098230,"output":"_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_requ"},{"event":"cmd_output","timestamp":1607098230,"output":"est_desc: nil, updated_at: ~N[2020-12-04 16:10:30.617745]}\n\u001b[0m\u001b[22m\n16:10:30.625 [info] Request:"},{"event":"cmd_output","timestamp":1607098230,"output":" 'run: %{\"branch_id\" => \"e48dab10-1d5f-4088-be79-f227f68a3199\", \"branch_name\" => \"master\", \"client_i"},{"event":"cmd_output","timestamp":1607098230,"output":"d\" => \"482bbcab-3b20-4346-af06-eaeb3e952527\", \"commit_sha\" => \"75891a4469\", \"definition_file\" => \"\","},{"event":"cmd_output","timestamp":1607098230,"output":" \"hook_id\" => \"pr\", \"label\" => \"pull-request-1214\", \"organization_id\" => \"4d76d855-a7cf-42a4-b27b-81"},{"event":"cmd_output","timestamp":1607098230,"output":"b8003b1f3e\", \"owner\" => \"rt\", \"project_id\" => \"list_grouped_ks\", \"repo_name\" => \"2_basic\", \"request_"},{"event":"cmd_output","timestamp":1607098230,"output":"token\" => \"3b0f1690-364b-11eb-b29d-5254005464e2\", \"requester_id\" => \"e94a7bc8-9d07-4b05-80ac-56f133c"},{"event":"cmd_output","timestamp":1607098230,"output":"e8247\", \"service\" => \"local\", \"snapshot_id\" => \"\", \"suppressed_attributes\" => [\"access_token\", \"clie"},{"event":"cmd_output","timestamp":1607098230,"output":"nt_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"c64edb25-d545-42e5-b9b4-a11aa0a8f0d0\"}\n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098230,"output":"\n16:10:30.646 [info] ppl_id: c47a6c5b-5f4c-4e18-978f-cbddae202121, type: PplRequests, event: persi"},{"event":"cmd_output","timestamp":1607098230,"output":"sted schedule request with request_token: 3b0f1690-364b-11eb-b29d-5254005464e2, origin: Elixir.Ppl.P"},{"event":"cmd_output","timestamp":1607098230,"output":"plRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:30.647 [info] ppl_i"},{"event":"cmd_output","timestamp":1607098230,"output":"d: c47a6c5b-5f4c-4e18-978f-cbddae202121, type: Ppls, state: initializing, event: initializing, recov"},{"event":"cmd_output","timestamp":1607098230,"output":"ery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10"},{"event":"cmd_output","timestamp":1607098230,"output":":30.651 [info] Project list_grouped_ks and branch masterlatest_wf details updated: \"wf_id: c64edb25"},{"event":"cmd_output","timestamp":1607098230,"output":"-d545-42e5-b9b4-a11aa0a8f0d0, wf_number: 15\"\n\u001b[0m\u001b[22m\n16:10:30.653 [info] Persisted ppl_sub_init"},{"event":"cmd_output","timestamp":1607098230,"output":" for pipeline with ppl_id: c47a6c5b-5f4c-4e18-978f-cbddae202121: %Ppl.PplSubInits.Model.PplSubInits{"},{"event":"cmd_output","timestamp":1607098230,"output":"__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_descript"},{"event":"cmd_output","timestamp":1607098230,"output":"ion: nil, id: 76, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:10:30.65"},{"event":"cmd_output","timestamp":1607098230,"output":"1526], pipeline_requests: #Ecto.Association.NotLoaded,"},{"event":"cmd_output","timestamp":1607098230,"output":" ppl_id: \"c47a6c5b-5f4c-4e18-978f-cbddae202121\", recovery_count: 0, result: nil, result_reason: nil,"},{"event":"cmd_output","timestamp":1607098230,"output":" state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16"},{"event":"cmd_output","timestamp":1607098230,"output":":10:30.651574]}\n\u001b[0m\u001b[22m\n16:10:30.661 [info] Request: 'run: %{\"branch_id\" => \"58a217f7-290a-4d9f"},{"event":"cmd_output","timestamp":1607098230,"output":"-b458-e3256622d446\", \"branch_name\" => \"master\", \"client_id\" => \"66892687-9d93-4f51-822d-8f2a9535728b"},{"event":"cmd_output","timestamp":1607098230,"output":"\", \"commit_sha\" => \"75891a4469\", \"definition_file\" => \"\", \"hook_id\" => \"pr\", \"label\" => \"pull-reques"},{"event":"cmd_output","timestamp":1607098230,"output":"t-1215\", \"organization_id\" => \"1e0889a5-04ae-4843-8795-41912575b37e\", \"owner\" => \"rt\", \"project_id\" "},{"event":"cmd_output","timestamp":1607098230,"output":"=> \"list_grouped_ks\", \"repo_name\" => \"2_basic\", \"request_token\" => \"3b14720c-364b-11eb-93ba-52540054"},{"event":"cmd_output","timestamp":1607098230,"output":"64e2\", \"requester_id\" => \"db03692b-6f96-4cd2-8b31-454641106d45\", \"service\" => \"local\", \"snapshot_id\""},{"event":"cmd_output","timestamp":1607098230,"output":" => \"\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"triggered_by\" => \"hook\", \"wf_"},{"event":"cmd_output","timestamp":1607098230,"output":"id\" => \"6f0bebdd-b4dc-4610-9fe6-07e76683fd10\"}\n\u001b[0m\u001b[22m\n16:10:30.697 [info] ppl_id: 19229cb7-c8e"},{"event":"cmd_output","timestamp":1607098230,"output":"d-49ff-9108-cb147b957f1f, type: PplRequests, event: persisted schedule request with request_token: 3"},{"event":"cmd_output","timestamp":1607098230,"output":"b14720c-364b-11eb-93ba-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process"},{"event":"cmd_output","timestamp":1607098230,"output":"_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:30.701 [info] ppl_id: 19229cb7-c8ed-49ff-9108-cb147b957f1f, ty"},{"event":"cmd_output","timestamp":1607098230,"output":"pe: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model"},{"event":"cmd_output","timestamp":1607098230,"output":".PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:30.704 [info] Project list_grouped_ks and"},{"event":"cmd_output","timestamp":1607098230,"output":" branch masterlatest_wf details updated: \"wf_id: 6f0bebdd-b4dc-4610-9fe6-07e76683fd10, wf_number: 16"},{"event":"cmd_output","timestamp":1607098230,"output":"\"\n\u001b[0m\u001b[22m\n16:10:30.706 [info] Persisted ppl_sub_init for pipeline with ppl_id: 19229cb7-c8ed-49"},{"event":"cmd_output","timestamp":1607098230,"output":"ff-9108-cb147b957f1f: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"p"},{"event":"cmd_output","timestamp":1607098230,"output":"ipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 77, in_scheduling: false, ini"},{"event":"cmd_output","timestamp":1607098230,"output":"t_type: \"regular\", inserted_at: ~N[2020-12-04 16:10:30.705116], pipeline_requests: #Ecto.Association"},{"event":"cmd_output","timestamp":1607098230,"output":".NotLoaded, ppl_id: \"19229cb7-c8ed-49ff-9108-cb147b957"},{"event":"cmd_output","timestamp":1607098230,"output":"f1f\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, "},{"event":"cmd_output","timestamp":1607098230,"output":"terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:30.705128]}\n\u001b[0m\u001b[22m\n16:10:30.716 [i"},{"event":"cmd_output","timestamp":1607098230,"output":"nfo] Request: 'run: %{\"branch_id\" => \"edebf825-0297-4576-a53f-93589f1d8f24\", \"branch_name\" => \"mast"},{"event":"cmd_output","timestamp":1607098230,"output":"er\", \"client_id\" => \"66921023-4e4a-4c13-a175-cf3c01b15390\", \"commit_sha\" => \"75891a4469\", \"definitio"},{"event":"cmd_output","timestamp":1607098230,"output":"n_file\" => \"\", \"hook_id\" => \"pr\", \"label\" => \"pull-request-1216\", \"organization_id\" => \"6739c179-a3a"},{"event":"cmd_output","timestamp":1607098230,"output":"e-4d00-948c-77538236b1a7\", \"owner\" => \"rt\", \"project_id\" => \"list_grouped_ks\", \"repo_name\" => \"2_bas"},{"event":"cmd_output","timestamp":1607098230,"output":"ic\", \"request_token\" => \"3b1cc92a-364b-11eb-82d1-5254005464e2\", \"requester_id\" => \"72e500d0-bbe1-436"},{"event":"cmd_output","timestamp":1607098230,"output":"a-936a-46239815401b\", \"service\" => \"local\", \"snapshot_id\" => \"\", \"suppressed_attributes\" => [\"access"},{"event":"cmd_output","timestamp":1607098230,"output":"_token\", \"client_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"f36d1c46-ce2a-4d5f-8759-f72ff8f0f90"},{"event":"cmd_output","timestamp":1607098230,"output":"8\"}\n\u001b[0m\u001b[22m\n16:10:30.745 [info] ppl_id: f50e3d3c-2dfc-4506-8aa0-b5c8f42e800b, type: PplRequests"},{"event":"cmd_output","timestamp":1607098230,"output":", event: persisted schedule request with request_token: 3b1cc92a-364b-11eb-82d1-5254005464e2, origin"},{"event":"cmd_output","timestamp":1607098230,"output":": Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:30.747"},{"event":"cmd_output","timestamp":1607098230,"output":" [info] ppl_id: f50e3d3c-2dfc-4506-8aa0-b5c8f42e800b, type: Ppls, state: initializing, event: initi"},{"event":"cmd_output","timestamp":1607098230,"output":"alizing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b["},{"event":"cmd_output","timestamp":1607098230,"output":"0m\u001b[22m\n16:10:30.749 [info] Project list_grouped_ks and branch masterlatest_wf details updated: \"w"},{"event":"cmd_output","timestamp":1607098230,"output":"f_id: f36d1c46-ce2a-4d5f-8759-f72ff8f0f908, wf_number: 17\"\n\u001b[0m\u001b[22m\n16:10:30.751 [info] Persiste"},{"event":"cmd_output","timestamp":1607098230,"output":"d ppl_sub_init for pipeline with ppl_id: f50e3d3c-2dfc-4506-8aa0-b5c8f42e800b: %Ppl.PplSubInits.Mode"},{"event":"cmd_output","timestamp":1607098230,"output":"l.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, "},{"event":"cmd_output","timestamp":1607098230,"output":"error_description: nil, id: 78, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-"},{"event":"cmd_output","timestamp":1607098230,"output":"04 16:10:30.750038], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"f50e3d3c-2dfc-4506-8aa0-b5c8f42e800b\", recovery_count: 0, result: nil, resul"},{"event":"cmd_output","timestamp":1607098230,"output":"t_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N"},{"event":"cmd_output","timestamp":1607098230,"output":"[2020-12-04 16:10:30.750047]}\n\u001b[0m\u001b[22m\n16:10:30.759 [info] Request: 'run: %{\"branch_id\" => \"2d0e"},{"event":"cmd_output","timestamp":1607098230,"output":"363b-c266-419c-8c3b-2cb64a350e6a\", \"branch_name\" => \"master\", \"client_id\" => \"af20b748-db09-4c38-989"},{"event":"cmd_output","timestamp":1607098230,"output":"5-70c42f399545\", \"commit_sha\" => \"75891a4469\", \"definition_file\" => \"\", \"hook_id\" => \"pr\", \"label\" ="},{"event":"cmd_output","timestamp":1607098230,"output":"> \"pull-request-1217\", \"organization_id\" => \"845bdda1-9554-4a36-86d9-fdcad8e2a96c\", \"owner\" => \"rt\","},{"event":"cmd_output","timestamp":1607098230,"output":" \"project_id\" => \"list_grouped_ks\", \"repo_name\" => \"2_basic\", \"request_token\" => \"3b2373ba-364b-11eb"},{"event":"cmd_output","timestamp":1607098230,"output":"-9d1e-5254005464e2\", \"requester_id\" => \"3ee76d0f-566d-4b97-a575-1b40b28c3d5f\", \"service\" => \"local\","},{"event":"cmd_output","timestamp":1607098230,"output":" \"snapshot_id\" => \"\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"triggered_by\" ="},{"event":"cmd_output","timestamp":1607098230,"output":"> \"hook\", \"wf_id\" => \"9b173947-d2c5-482c-9d1c-41937c7eccb5\"}\n\u001b[0m\u001b[22m\n16:10:30.800 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098230,"output":": 7d08a45d-2e14-4bcb-b6f2-76c101a6a72a, type: PplRequests, event: persisted schedule request with re"},{"event":"cmd_output","timestamp":1607098230,"output":"quest_token: 3b2373ba-364b-11eb-9d1e-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQ"},{"event":"cmd_output","timestamp":1607098230,"output":"ueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:30.802 [info] ppl_id: 7d08a45d-2e14-4bcb-b6f2-76"},{"event":"cmd_output","timestamp":1607098230,"output":"c101a6a72a, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098230,"output":"Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:30.806 [info] Project list_"},{"event":"cmd_output","timestamp":1607098230,"output":"grouped_ks and branch masterlatest_wf details updated: \"wf_id: 9b173947-d2c5-482c-9d1c-41937c7eccb5,"},{"event":"cmd_output","timestamp":1607098230,"output":" wf_number: 18\"\n\u001b[0m\u001b[22m\n16:10:30.807 [info] Persisted ppl_sub_init for pipeline with ppl_id: 7d"},{"event":"cmd_output","timestamp":1607098230,"output":"08a45d-2e14-4bcb-b6f2-76c101a6a72a: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metada"},{"event":"cmd_output","timestamp":1607098230,"output":"ta<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 79, in_scheduli"},{"event":"cmd_output","timestamp":1607098230,"output":"ng: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:10:30.806754], pipeline_requests: #Ec"},{"event":"cmd_output","timestamp":1607098230,"output":"to.Association.NotLoaded, ppl_id: \"7d08a45d-2e14-4bcb-"},{"event":"cmd_output","timestamp":1607098230,"output":"b6f2-76c101a6a72a\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_"},{"event":"cmd_output","timestamp":1607098230,"output":"request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:30.806768]}\n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098230,"output":"6:10:30.813 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingState with name Elix"},{"event":"cmd_output","timestamp":1607098230,"output":"ir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\""},{"event":"cmd_output","timestamp":1607098230,"output":"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"pendin"},{"event":"cmd_output","timestamp":1607098230,"output":"g\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\""},{"event":"cmd_output","timestamp":1607098230,"output":", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl."},{"event":"cmd_output","timestamp":1607098230,"output":"EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_i"},{"event":"cmd_output","timestamp":1607098230,"output":"d], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:30.814 [info] Periodic f"},{"event":"cmd_output","timestamp":1607098230,"output":"rom module Elixir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler.PendingState"},{"event":"cmd_output","timestamp":1607098230,"output":" :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, rec"},{"event":"cmd_output","timestamp":1607098230,"output":"urring args: %{allowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_sec: 0, initi"},{"event":"cmd_output","timestamp":1607098230,"output":"al_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publisher_cb: #Function<0.8493005/1 in Ppl"},{"event":"cmd_output","timestamp":1607098230,"output":".Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :upd"},{"event":"cmd_output","timestamp":1607098230,"output":"ated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: P"},{"event":"cmd_output","timestamp":1607098230,"output":"plsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:10:30.814 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler."},{"event":"cmd_output","timestamp":1607098230,"output":"QueuingState with name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, metric_name: {\"Ppl"},{"event":"cmd_output","timestamp":1607098230,"output":".beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{allowed_states: [\"queui"},{"event":"cmd_output","timestamp":1607098230,"output":"ng\", \"running\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \""},{"event":"cmd_output","timestamp":1607098230,"output":"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.args/0>, repo: P"},{"event":"cmd_output","timestamp":1607098230,"output":"pl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :pp"},{"event":"cmd_output","timestamp":1607098230,"output":"l_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:30.815 [info] Periodi"},{"event":"cmd_output","timestamp":1607098230,"output":"c from module Elixir.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHandler.RunningSt"},{"event":"cmd_output","timestamp":1607098230,"output":"ate :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, "},{"event":"cmd_output","timestamp":1607098230,"output":"recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_que"},{"event":"cmd_output","timestamp":1607098230,"output":"ry: Ppl.Ppls.Model.Ppls, observed_state: \"running\", publisher_cb: #Function<0.74670282/1 in Ppl.Ppls"},{"event":"cmd_output","timestamp":1607098230,"output":".STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_"},{"event":"cmd_output","timestamp":1607098230,"output":"at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTa"},{"event":"cmd_output","timestamp":1607098230,"output":"skSupervisor}\n\u001b[0m\u001b[22m\n16:10:30.816 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.Stopp"},{"event":"cmd_output","timestamp":1607098230,"output":"ingState with name Elixir.Ppl.Ppls.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.be"},{"event":"cmd_output","timestamp":1607098230,"output":"holder-wake_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stoppin"},{"event":"cmd_output","timestamp":1607098230,"output":"g\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"stopping\", p"},{"event":"cmd_output","timestamp":1607098230,"output":"ublisher_cb: #Function<0.71803493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo"},{"event":"cmd_output","timestamp":1607098230,"output":", returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], sche"},{"event":"cmd_output","timestamp":1607098230,"output":"ma: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:30.817 [info] Periodic from modu"},{"event":"cmd_output","timestamp":1607098230,"output":"le Elixir.Ppl.PplSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHandler.Create"},{"event":"cmd_output","timestamp":1607098230,"output":"dState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-Created"},{"event":"cmd_output","timestamp":1607098230,"output":"State\"]}, recurring args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query"},{"event":"cmd_output","timestamp":1607098230,"output":": Ppl.PplSubInits.Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoR"},{"event":"cmd_output","timestamp":1607098230,"output":"epo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], s"},{"event":"cmd_output","timestamp":1607098230,"output":"chema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:30.818 [info] P"},{"event":"cmd_output","timestamp":1607098230,"output":"eriodic from module Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl.PplSubInits"},{"event":"cmd_output","timestamp":1607098230,"output":".STMHandler.FetchingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits"},{"event":"cmd_output","timestamp":1607098230,"output":"-STMHandler-FetchingState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"don"},{"event":"cmd_output","timestamp":1607098230,"output":"e\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fetchi"},{"event":"cmd_output","timestamp":1607098230,"output":"ng\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :sta"},{"event":"cmd_output","timestamp":1607098230,"output":"te, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: "},{"event":"cmd_output","timestamp":1607098230,"output":":skip}\n\u001b[0m\u001b[22m\n16:10:30.819 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.Compi"},{"event":"cmd_output","timestamp":1607098230,"output":"lationState with name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 100 ms, metric_n"},{"event":"cmd_output","timestamp":1607098230,"output":"ame: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurring args: %{al"},{"event":"cmd_output","timestamp":1607098230,"output":"lowed_states: [\"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_que"},{"event":"cmd_output","timestamp":1607098230,"output":"ry: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"compilation\", publisher_cb: :skip, repo: Ppl"},{"event":"cmd_output","timestamp":1607098230,"output":".EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_"},{"event":"cmd_output","timestamp":1607098230,"output":"id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:30.821 [in"},{"event":"cmd_output","timestamp":1607098230,"output":"fo] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with name Elixir.Ppl.Pp"},{"event":"cmd_output","timestamp":1607098230,"output":"lSubInits.STMHandler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl"},{"event":"cmd_output","timestamp":1607098230,"output":"-PplSubInits-STMHandler-RegularInitState\"]}, recurring args: %{allowed_states: [\"done\"], cooling_tim"},{"event":"cmd_output","timestamp":1607098230,"output":"e_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_init\", publishe"},{"event":"cmd_output","timestamp":1607098230,"output":"r_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, "},{"event":"cmd_output","timestamp":1607098230,"output":":recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098230,"output":"[22m\n16:10:30.822 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.InitializingState wi"},{"event":"cmd_output","timestamp":1607098230,"output":"th name Elixir.Ppl.PplBlocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beho"},{"event":"cmd_output","timestamp":1607098230,"output":"lder-wake_up\", [\"Ppl-PplBlocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\""},{"event":"cmd_output","timestamp":1607098230,"output":"initializing\", \"waiting\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks"},{"event":"cmd_output","timestamp":1607098230,"output":", observed_state: \"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :termina"},{"event":"cmd_output","timestamp":1607098230,"output":"te_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBl"},{"event":"cmd_output","timestamp":1607098230,"output":"ocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:30.823 [info] Periodic from module "},{"event":"cmd_output","timestamp":1607098230,"output":"Elixir.Ppl.PplBlocks.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler.WaitingState "},{"event":"cmd_output","timestamp":1607098230,"output":":: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}"},{"event":"cmd_output","timestamp":1607098230,"output":", recurring args: %{allowed_states: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 0, initial_que"},{"event":"cmd_output","timestamp":1607098230,"output":"ry: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"waiting\", publisher_cb: #Function<0.8975022/1 in"},{"event":"cmd_output","timestamp":1607098230,"output":" Ppl.PplBlocks.STMHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_requ"},{"event":"cmd_output","timestamp":1607098230,"output":"est, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Mo"},{"event":"cmd_output","timestamp":1607098230,"output":"del.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:30.824 [info] Periodic from module Elixir."},{"event":"cmd_output","timestamp":1607098230,"output":"Ppl.PplBlocks.STMHandler.RunningState with name Elixir.Ppl.PplBlocks.STMHandler.RunningState :: peri"},{"event":"cmd_output","timestamp":1607098230,"output":"od: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, recur"},{"event":"cmd_output","timestamp":1607098230,"output":"ring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: P"},{"event":"cmd_output","timestamp":1607098230,"output":"pl.PplBlocks.Model.PplBlocks, observed_state: \"running\", publisher_cb: #Function<0.28166834/1 in Ppl"},{"event":"cmd_output","timestamp":1607098230,"output":".PplBlocks.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request,"},{"event":"cmd_output","timestamp":1607098230,"output":" :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBl"},{"event":"cmd_output","timestamp":1607098230,"output":"ocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:30.825 [info] Periodic from module "},{"event":"cmd_output","timestamp":1607098230,"output":"Elixir.Ppl.PplBlocks.STMHandler.StoppingState with name Elixir.Ppl.PplBlocks.STMHandler.StoppingStat"},{"event":"cmd_output","timestamp":1607098230,"output":"e :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-StoppingState"},{"event":"cmd_output","timestamp":1607098230,"output":"\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Pp"},{"event":"cmd_output","timestamp":1607098230,"output":"l.PplBlocks.Model.PplBlocks, observed_state: \"stopping\", publisher_cb: #Function<0.104215991/1 in Pp"},{"event":"cmd_output","timestamp":1607098230,"output":"l.PplBlocks.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_reques"},{"event":"cmd_output","timestamp":1607098230,"output":"t, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098230,"output":"Blocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:30.826 [info] Periodic from modul"},{"event":"cmd_output","timestamp":1607098230,"output":"e Elixir.Block.Blocks.STMHandler.InitializingState with name Elixir.Block.Blocks.STMHandler.Initiali"},{"event":"cmd_output","timestamp":1607098230,"output":"zingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-Initial"},{"event":"cmd_output","timestamp":1607098230,"output":"izingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_q"},{"event":"cmd_output","timestamp":1607098230,"output":"uery: Block.Blocks.Model.Blocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Block.Ec"},{"event":"cmd_output","timestamp":1607098230,"output":"toRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schem"},{"event":"cmd_output","timestamp":1607098230,"output":"a: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:30.827 [info] Periodic from"},{"event":"cmd_output","timestamp":1607098230,"output":" module Elixir.Block.Blocks.STMHandler.RunningState with name Elixir.Block.Blocks.STMHandler.Running"},{"event":"cmd_output","timestamp":1607098230,"output":"State :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-RunningStat"},{"event":"cmd_output","timestamp":1607098230,"output":"e\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initi"},{"event":"cmd_output","timestamp":1607098230,"output":"al_query: Block.Blocks.Model.Blocks, observed_state: \"running\", publisher_cb: :skip, repo: Block.Ect"},{"event":"cmd_output","timestamp":1607098230,"output":"oRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema"},{"event":"cmd_output","timestamp":1607098230,"output":": Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:30.827 [info] Periodic from "},{"event":"cmd_output","timestamp":1607098230,"output":"module Elixir.Block.Blocks.STMHandler.StoppingState with name Elixir.Block.Blocks.STMHandler.Stoppin"},{"event":"cmd_output","timestamp":1607098230,"output":"gState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-StoppingSt"},{"event":"cmd_output","timestamp":1607098230,"output":"ate\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query:"},{"event":"cmd_output","timestamp":1607098230,"output":" Block.Blocks.Model.Blocks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, r"},{"event":"cmd_output","timestamp":1607098230,"output":"eturning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block."},{"event":"cmd_output","timestamp":1607098230,"output":"Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:30.829 [info] Periodic from module E"},{"event":"cmd_output","timestamp":1607098230,"output":"lixir.Block.Tasks.STMHandler.PendingState with name Elixir.Block.Tasks.STMHandler.PendingState :: pe"},{"event":"cmd_output","timestamp":1607098230,"output":"riod: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingState\"]}, recurr"},{"event":"cmd_output","timestamp":1607098230,"output":"ing args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Tasks.Mod"},{"event":"cmd_output","timestamp":1607098230,"output":"el.Tasks, observed_state: \"pending\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :te"},{"event":"cmd_output","timestamp":1607098230,"output":"rminate_request, :updated_at, :state, :recovery_count, :block_id, :build_request_id], schema: Block."},{"event":"cmd_output","timestamp":1607098230,"output":"Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:30.829 [info] Periodic from module Eli"},{"event":"cmd_output","timestamp":1607098230,"output":"xir.Block.Tasks.STMHandler.RunningState with name Elixir.Block.Tasks.STMHandler.RunningState :: peri"},{"event":"cmd_output","timestamp":1607098230,"output":"od: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningState\"]}, recurrin"},{"event":"cmd_output","timestamp":1607098230,"output":"g args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Bloc"},{"event":"cmd_output","timestamp":1607098230,"output":"k.Tasks.Model.Tasks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning"},{"event":"cmd_output","timestamp":1607098230,"output":": [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Mo"},{"event":"cmd_output","timestamp":1607098230,"output":"del.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:30.831 [info] Periodic from module Elixir.Bloc"},{"event":"cmd_output","timestamp":1607098230,"output":"k.Tasks.STMHandler.StoppingState with name Elixir.Block.Tasks.STMHandler.StoppingState :: period: 10"},{"event":"cmd_output","timestamp":1607098230,"output":"0 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]}, recurring arg"},{"event":"cmd_output","timestamp":1607098230,"output":"s: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Ta"},{"event":"cmd_output","timestamp":1607098230,"output":"sks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :termin"},{"event":"cmd_output","timestamp":1607098230,"output":"ate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task"},{"event":"cmd_output","timestamp":1607098230,"output":"_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:30.935 [info] ppl_id: e3a9c4c7-02e5-4ff9-9ff5-4b33ed789a05, t"},{"event":"cmd_output","timestamp":1607098230,"output":"ype: PplRequests, event: persisted source_args for pipeline: e3a9c4c7-02e5-4ff9-9ff5-4b33ed789a05, o"},{"event":"cmd_output","timestamp":1607098230,"output":"rigin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:30.9"},{"event":"cmd_output","timestamp":1607098230,"output":"40 [info] ppl_id: e3a9c4c7-02e5-4ff9-9ff5-4b33ed789a05, type: PplSubInits, state: fetching, event: "},{"event":"cmd_output","timestamp":1607098230,"output":"exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098230,"output":"22m\n16:10:30.966 [info] ppl_id: e3a9c4c7-02e5-4ff9-9ff5-4b33ed789a05, type: PplSubInits, state: re"},{"event":"cmd_output","timestamp":1607098230,"output":"gular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chan"},{"event":"cmd_output","timestamp":1607098230,"output":"ge/1(L90), \n\u001b[0m\u001b[22m\n16:10:30.990 [info] ppl_id: e3a9c4c7-02e5-4ff9-9ff5-4b33ed789a05, type: Ppl"},{"event":"cmd_output","timestamp":1607098230,"output":"Requests, event: persisted definition for request with request_token: 3aa241aa-364b-11eb-94b3-525400"},{"event":"cmd_output","timestamp":1607098230,"output":"5464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098230,"output":"m\n16:10:30.993 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metad"},{"event":"cmd_output","timestamp":1607098230,"output":"ata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:10:30.992485], name: \"master-0-.semaphore/sema"},{"event":"cmd_output","timestamp":1607098230,"output":"phore.yml\", organization_id: \"3068e1a1-6eb8-4b03-8b50-928fa9e86e87\", project_id: \"list_grouped_ks\", "},{"event":"cmd_output","timestamp":1607098230,"output":"queue_id: \"74e5296b-947d-4db9-aba5-0fffadb8a3b3\", scope: \"project\", updated_at: ~N[2020-12-04 16:10:"},{"event":"cmd_output","timestamp":1607098231,"output":"30.992497], user_generated: false}}\n\u001b[0m\u001b[22m\n16:10:31.007 [info] event: created, origin: Elixir."},{"event":"cmd_output","timestamp":1607098231,"output":"Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:31.007 [info] ppl_i"},{"event":"cmd_output","timestamp":1607098231,"output":"d: e3a9c4c7-02e5-4ff9-9ff5-4b33ed789a05, type: PplBlocks, block_index: 0, state: initializing, event"},{"event":"cmd_output","timestamp":1607098231,"output":": created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L"},{"event":"cmd_output","timestamp":1607098231,"output":"105), \n\u001b[0m\u001b[22m\n16:10:31.009 [info] ppl_id: e3a9c4c7-02e5-4ff9-9ff5-4b33ed789a05, type: PplSubIn"},{"event":"cmd_output","timestamp":1607098231,"output":"its, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.S"},{"event":"cmd_output","timestamp":1607098231,"output":"TM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.017 [info] ppl_id: e3a9c4c7-02e5-4ff9-9ff5-4"},{"event":"cmd_output","timestamp":1607098231,"output":"b33ed789a05, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098231,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.024 [info] ppl_id: e3a9c4c7-02e5-4ff9"},{"event":"cmd_output","timestamp":1607098231,"output":"-9ff5-4b33ed789a05, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recover"},{"event":"cmd_output","timestamp":1607098231,"output":"y_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.035 [info]"},{"event":"cmd_output","timestamp":1607098231,"output":" ppl_id: e3a9c4c7-02e5-4ff9-9ff5-4b33ed789a05, type: Ppls, state: queuing, event: exit_scheduling, "},{"event":"cmd_output","timestamp":1607098231,"output":"recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.052"},{"event":"cmd_output","timestamp":1607098231,"output":" [info] ppl_id: 64ee8488-bea7-473e-b5b0-f45461ecbcc2, type: PplRequests, event: persisted source_ar"},{"event":"cmd_output","timestamp":1607098231,"output":"gs for pipeline: 64ee8488-bea7-473e-b5b0-f45461ecbcc2, origin: Elixir.Ppl.PplRequests.Model.PplReque"},{"event":"cmd_output","timestamp":1607098231,"output":"stsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:31.053 [info] ppl_id: e3a9c4c7-02e5-4ff9-9ff5-4"},{"event":"cmd_output","timestamp":1607098231,"output":"b33ed789a05, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098231,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.056 [info] ppl_id: 64ee8488-bea7-473e"},{"event":"cmd_output","timestamp":1607098231,"output":"-b5b0-f45461ecbcc2, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098231,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.064 [info] PplBlocks W"},{"event":"cmd_output","timestamp":1607098231,"output":"aitingState STM is scheduling block 0 from pipeline: \"e3a9c4c7-02e5-4ff9-9ff5-4b33ed789a05\"\n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098231,"output":"2m\n16:10:31.070 [info] block_id: f2c9baea-bb19-4741-a128-eb4eddae0e40, type: BlockRequests, event:"},{"event":"cmd_output","timestamp":1607098231,"output":" persisted block run request from ppl e3a9c4c7-02e5-4ff9-9ff5-4b33ed789a05 for block 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098231,"output":"ir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:31.072"},{"event":"cmd_output","timestamp":1607098231,"output":" [info] block_id: f2c9baea-bb19-4741-a128-eb4eddae0e40, type: Blocks, state: initializing, event: i"},{"event":"cmd_output","timestamp":1607098231,"output":"nitializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098231,"output":"m\u001b[22m\n16:10:31.074 [info] Block 0 of pipeline with id: e3a9c4c7-02e5-4ff9-9ff5-4b33ed789a05 sched"},{"event":"cmd_output","timestamp":1607098231,"output":"uled in block service with id: : \"f2c9baea-bb19-4741-a128-eb4eddae0e40\"\n\u001b[0m\u001b[22m\n16:10:31.078 [in"},{"event":"cmd_output","timestamp":1607098231,"output":"fo] ppl_id: e3a9c4c7-02e5-4ff9-9ff5-4b33ed789a05, type: PplBlocks, block_index: 0, state: running, "},{"event":"cmd_output","timestamp":1607098231,"output":"event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \r"},{"event":"cmd_output","timestamp":1607098231,"output":"\n\u001b[0m\u001b[22m\n16:10:31.082 [info] block_id: f2c9baea-bb19-4741-a128-eb4eddae0e40, type: BlockRequests"},{"event":"cmd_output","timestamp":1607098231,"output":", event: persisted build and sub_ppl details for block_request: f2c9baea-bb19-4741-a128-eb4eddae0e40"},{"event":"cmd_output","timestamp":1607098231,"output":", origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098231,"output":":10:31.085 [info] ppl_id: 64ee8488-bea7-473e-b5b0-f45461ecbcc2, type: PplSubInits, state: regular_i"},{"event":"cmd_output","timestamp":1607098231,"output":"nit, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L9"},{"event":"cmd_output","timestamp":1607098231,"output":"0), \n\u001b[0m\u001b[22m\n16:10:31.085 [info] block_id: f2c9baea-bb19-4741-a128-eb4eddae0e40, type: Tasks, s"},{"event":"cmd_output","timestamp":1607098231,"output":"tate: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.Initializin"},{"event":"cmd_output","timestamp":1607098231,"output":"gState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:31.089 [info] block_id: f2c9baea-bb19-4741-a128-eb4eddae"},{"event":"cmd_output","timestamp":1607098231,"output":"0e40, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper"},{"event":"cmd_output","timestamp":1607098231,"output":".STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.106 [info] block_id: f2c9baea-bb19-4741-a1"},{"event":"cmd_output","timestamp":1607098231,"output":"28-eb4eddae0e40, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098231,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.122 [info] ppl_id: 64ee8488-bea7"},{"event":"cmd_output","timestamp":1607098231,"output":"-473e-b5b0-f45461ecbcc2, type: PplRequests, event: persisted definition for request with request_tok"},{"event":"cmd_output","timestamp":1607098231,"output":"en: 3aaa917a-364b-11eb-99b4-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.in"},{"event":"cmd_output","timestamp":1607098231,"output":"sert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:31.128 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Q"},{"event":"cmd_output","timestamp":1607098231,"output":"ueues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:10:31.127337"},{"event":"cmd_output","timestamp":1607098231,"output":"], name: \"master-1-.semaphore/semaphore.yml\", organization_id: \"34fc9efd-66b1-498a-a46f-98f8bacc7b0e"},{"event":"cmd_output","timestamp":1607098231,"output":"\", project_id: \"list_grouped_ks\", queue_id: \"95cfa36b-a455-4633-b898-4b147a16ddaa\", scope: \"project\""},{"event":"cmd_output","timestamp":1607098231,"output":", updated_at: ~N[2020-12-04 16:10:31.127351], user_generated: false}}\n\u001b[0m\u001b[22m\n16:10:31.132 [info"},{"event":"cmd_output","timestamp":1607098231,"output":"] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098231,"output":"m\u001b[22m\n16:10:31.132 [info] ppl_id: 64ee8488-bea7-473e-b5b0-f45461ecbcc2, type: PplBlocks, block_in"},{"event":"cmd_output","timestamp":1607098231,"output":"dex: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHa"},{"event":"cmd_output","timestamp":1607098231,"output":"ndler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:31.135 [info] ppl_id: 64ee8488-bea7-473e"},{"event":"cmd_output","timestamp":1607098231,"output":"-b5b0-f45461ecbcc2, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery"},{"event":"cmd_output","timestamp":1607098231,"output":"_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.152 [info] "},{"event":"cmd_output","timestamp":1607098231,"output":" ppl_id: 64ee8488-bea7-473e-b5b0-f45461ecbcc2, type: PplBlocks, block_index: 0, state: waiting, even"},{"event":"cmd_output","timestamp":1607098231,"output":"t: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098231,"output":"m\u001b[22m\n16:10:31.160 [info] ppl_id: 64ee8488-bea7-473e-b5b0-f45461ecbcc2, type: Ppls, state: pendin"},{"event":"cmd_output","timestamp":1607098231,"output":"g, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90)"},{"event":"cmd_output","timestamp":1607098231,"output":", \n\u001b[0m\u001b[22m\n16:10:31.168 [info] block_id: f2c9baea-bb19-4741-a128-eb4eddae0e40, type: Tasks, sta"},{"event":"cmd_output","timestamp":1607098231,"output":"te: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change"},{"event":"cmd_output","timestamp":1607098231,"output":"/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.172 [info] ppl_id: f724d2a2-4bc3-4d5a-bf10-dd079113c0d3, type: PplRe"},{"event":"cmd_output","timestamp":1607098231,"output":"quests, event: persisted source_args for pipeline: f724d2a2-4bc3-4d5a-bf10-dd079113c0d3, origin: Eli"},{"event":"cmd_output","timestamp":1607098231,"output":"xir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:31.176 [info] "},{"event":"cmd_output","timestamp":1607098231,"output":" ppl_id: f724d2a2-4bc3-4d5a-bf10-dd079113c0d3, type: PplSubInits, state: fetching, event: exit_sched"},{"event":"cmd_output","timestamp":1607098231,"output":"uling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10"},{"event":"cmd_output","timestamp":1607098231,"output":":31.178 [info] ppl_id: 64ee8488-bea7-473e-b5b0-f45461ecbcc2, type: Ppls, state: queuing, event: exi"},{"event":"cmd_output","timestamp":1607098231,"output":"t_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098231,"output":"\n16:10:31.182 [info] block_id: f2c9baea-bb19-4741-a128-eb4eddae0e40, type: Blocks, state: done, ev"},{"event":"cmd_output","timestamp":1607098231,"output":"ent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b"},{"event":"cmd_output","timestamp":1607098231,"output":"[0m\u001b[22m\n16:10:31.198 [info] ppl_id: 64ee8488-bea7-473e-b5b0-f45461ecbcc2, type: Ppls, state: runn"},{"event":"cmd_output","timestamp":1607098231,"output":"ing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L9"},{"event":"cmd_output","timestamp":1607098231,"output":"0), \n\u001b[0m\u001b[22m\n16:10:31.199 [info] ppl_id: e3a9c4c7-02e5-4ff9-9ff5-4b33ed789a05, block_id: f2c9ba"},{"event":"cmd_output","timestamp":1607098231,"output":"ea-bb19-4741-a128-eb4eddae0e40, type: PplBlocks, block_index: 0, state: done, result: passed, event:"},{"event":"cmd_output","timestamp":1607098231,"output":" exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098231,"output":"[22m\n16:10:31.215 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"64ee8488"},{"event":"cmd_output","timestamp":1607098231,"output":"-bea7-473e-b5b0-f45461ecbcc2\"\n\u001b[0m\u001b[22m\n16:10:31.226 [info] block_id: b48a7d41-8e36-48a1-be22-daa"},{"event":"cmd_output","timestamp":1607098231,"output":"520cf9ce5, type: BlockRequests, event: persisted block run request from ppl 64ee8488-bea7-473e-b5b0-"},{"event":"cmd_output","timestamp":1607098231,"output":"f45461ecbcc2 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_resp"},{"event":"cmd_output","timestamp":1607098231,"output":"onse/4(L35), \n\u001b[0m\u001b[22m\n16:10:31.230 [info] block_id: b48a7d41-8e36-48a1-be22-daa520cf9ce5, type:"},{"event":"cmd_output","timestamp":1607098231,"output":" Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Mo"},{"event":"cmd_output","timestamp":1607098231,"output":"del.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:31.232 [info] ppl_id: e3a9c4c7-02e5-4ff9-9ff5-4"},{"event":"cmd_output","timestamp":1607098231,"output":"b33ed789a05, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098231,"output":"gin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.233 [info] ppl_id: f724d"},{"event":"cmd_output","timestamp":1607098231,"output":"2a2-4bc3-4d5a-bf10-dd079113c0d3, type: PplSubInits, state: regular_init, event: exit_scheduling, rec"},{"event":"cmd_output","timestamp":1607098231,"output":"overy_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.239 [i"},{"event":"cmd_output","timestamp":1607098231,"output":"nfo] Block 0 of pipeline with id: 64ee8488-bea7-473e-b5b0-f45461ecbcc2 scheduled in block service w"},{"event":"cmd_output","timestamp":1607098231,"output":"ith id: : \"b48a7d41-8e36-48a1-be22-daa520cf9ce5\"\n\u001b[0m\u001b[22m\n16:10:31.242 [info] ppl_id: 64ee8488-b"},{"event":"cmd_output","timestamp":1607098231,"output":"ea7-473e-b5b0-f45461ecbcc2, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling,"},{"event":"cmd_output","timestamp":1607098231,"output":" recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.24"},{"event":"cmd_output","timestamp":1607098231,"output":"7 [info] block_id: b48a7d41-8e36-48a1-be22-daa520cf9ce5, type: BlockRequests, event: persisted buil"},{"event":"cmd_output","timestamp":1607098231,"output":"d and sub_ppl details for block_request: b48a7d41-8e36-48a1-be22-daa520cf9ce5, origin: Elixir.Block."},{"event":"cmd_output","timestamp":1607098231,"output":"BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:31.254 [info] bloc"},{"event":"cmd_output","timestamp":1607098231,"output":"k_id: b48a7d41-8e36-48a1-be22-daa520cf9ce5, type: Tasks, state: pending, event: created, recovery_co"},{"event":"cmd_output","timestamp":1607098231,"output":"unt: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10"},{"event":"cmd_output","timestamp":1607098231,"output":":31.259 [info] block_id: b48a7d41-8e36-48a1-be22-daa520cf9ce5, type: Blocks, state: running, event:"},{"event":"cmd_output","timestamp":1607098231,"output":" exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098231,"output":"[22m\n16:10:31.285 [info] ppl_id: f724d2a2-4bc3-4d5a-bf10-dd079113c0d3, type: PplRequests, event: p"},{"event":"cmd_output","timestamp":1607098231,"output":"ersisted definition for request with request_token: 3ab344be-364b-11eb-982d-5254005464e2, origin: El"},{"event":"cmd_output","timestamp":1607098231,"output":"ixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:31.291 [i"},{"event":"cmd_output","timestamp":1607098231,"output":"nfo] block_id: b48a7d41-8e36-48a1-be22-daa520cf9ce5, type: Tasks, state: running, event: exit_sched"},{"event":"cmd_output","timestamp":1607098231,"output":"uling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10"},{"event":"cmd_output","timestamp":1607098231,"output":":31.293 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loa"},{"event":"cmd_output","timestamp":1607098231,"output":"ded, \"queues\">, inserted_at: ~N[2020-12-04 16:10:31.289189], name: \"master-2-.semaphore/semaphore.ym"},{"event":"cmd_output","timestamp":1607098231,"output":"l\", organization_id: \"ebc1a532-6fb1-443c-a0b5-b21b3d9f1f56\", project_id: \"list_grouped_ks\", queue_id"},{"event":"cmd_output","timestamp":1607098231,"output":": \"cdd4606e-332d-435a-a545-ea4c64b9637b\", scope: \"project\", updated_at: ~N[2020-12-04 16:10:31.28919"},{"event":"cmd_output","timestamp":1607098231,"output":"9], user_generated: false}}\n\u001b[0m\u001b[22m\n16:10:31.299 [info] event: created, origin: Elixir.Ppl.PplS"},{"event":"cmd_output","timestamp":1607098231,"output":"ubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:31.299 [info] ppl_id: f724d"},{"event":"cmd_output","timestamp":1607098231,"output":"2a2-4bc3-4d5a-bf10-dd079113c0d3, type: PplBlocks, block_index: 0, state: initializing, event: create"},{"event":"cmd_output","timestamp":1607098231,"output":"d, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n"},{"event":"cmd_output","timestamp":1607098231,"output":"\u001b[0m\u001b[22m\n16:10:31.301 [info] ppl_id: 5b6df62b-edb4-468c-8034-d92349521525, type: PplRequests, eve"},{"event":"cmd_output","timestamp":1607098231,"output":"nt: persisted source_args for pipeline: 5b6df62b-edb4-468c-8034-d92349521525, origin: Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098231,"output":"Requests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:31.303 [info] ppl_id: f7"},{"event":"cmd_output","timestamp":1607098231,"output":"24d2a2-4bc3-4d5a-bf10-dd079113c0d3, type: PplSubInits, state: done, result: passed, event: exit_sche"},{"event":"cmd_output","timestamp":1607098231,"output":"duling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098231,"output":"0:31.305 [info] ppl_id: 5b6df62b-edb4-468c-8034-d92349521525, type: PplSubInits, state: fetching, e"},{"event":"cmd_output","timestamp":1607098231,"output":"vent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n"},{"event":"cmd_output","timestamp":1607098231,"output":"\u001b[0m\u001b[22m\n16:10:31.313 [info] ppl_id: f724d2a2-4bc3-4d5a-bf10-dd079113c0d3, type: PplBlocks, block"},{"event":"cmd_output","timestamp":1607098231,"output":"_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl"},{"event":"cmd_output","timestamp":1607098231,"output":".log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.314 [info] ppl_id: f724d2a2-4bc3-4d5a-bf10-dd079113"},{"event":"cmd_output","timestamp":1607098231,"output":"c0d3, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.S"},{"event":"cmd_output","timestamp":1607098231,"output":"TM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.321 [info] ppl_id: f724d2a2-4bc3-4d5a-bf10-d"},{"event":"cmd_output","timestamp":1607098231,"output":"d079113c0d3, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098231,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.332 [info] ppl_id: f724d2a2-4bc3-4d5a"},{"event":"cmd_output","timestamp":1607098231,"output":"-bf10-dd079113c0d3, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: E"},{"event":"cmd_output","timestamp":1607098231,"output":"lixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.340 [info] PplBlocks WaitingSt"},{"event":"cmd_output","timestamp":1607098231,"output":"ate STM is scheduling block 0 from pipeline: \"f724d2a2-4bc3-4d5a-bf10-dd079113c0d3\"\n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098231,"output":"0:31.345 [info] ppl_id: 5b6df62b-edb4-468c-8034-d92349521525, type: PplSubInits, state: regular_ini"},{"event":"cmd_output","timestamp":1607098231,"output":"t, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90)"},{"event":"cmd_output","timestamp":1607098231,"output":", \n\u001b[0m\u001b[22m\n16:10:31.346 [info] block_id: 8e5418c8-c60a-40cc-ab0b-db99cd5ec11f, type: BlockReque"},{"event":"cmd_output","timestamp":1607098231,"output":"sts, event: persisted block run request from ppl f724d2a2-4bc3-4d5a-bf10-dd079113c0d3 for block 0, o"},{"event":"cmd_output","timestamp":1607098231,"output":"rigin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098231,"output":"6:10:31.349 [info] block_id: 8e5418c8-c60a-40cc-ab0b-db99cd5ec11f, type: Blocks, state: initializin"},{"event":"cmd_output","timestamp":1607098231,"output":"g, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1("},{"event":"cmd_output","timestamp":1607098231,"output":"L43), \n\u001b[0m\u001b[22m\n16:10:31.352 [info] Block 0 of pipeline with id: f724d2a2-4bc3-4d5a-bf10-dd07911"},{"event":"cmd_output","timestamp":1607098231,"output":"3c0d3 scheduled in block service with id: : \"8e5418c8-c60a-40cc-ab0b-db99cd5ec11f\"\n\u001b[0m\u001b[22m\n16:10"},{"event":"cmd_output","timestamp":1607098231,"output":":31.354 [info] ppl_id: f724d2a2-4bc3-4d5a-bf10-dd079113c0d3, type: PplBlocks, block_index: 0, state"},{"event":"cmd_output","timestamp":1607098231,"output":": running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chang"},{"event":"cmd_output","timestamp":1607098231,"output":"e/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.360 [info] block_id: 8e5418c8-c60a-40cc-ab0b-db99cd5ec11f, type: Bl"},{"event":"cmd_output","timestamp":1607098231,"output":"ockRequests, event: persisted build and sub_ppl details for block_request: 8e5418c8-c60a-40cc-ab0b-d"},{"event":"cmd_output","timestamp":1607098231,"output":"b99cd5ec11f, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b["},{"event":"cmd_output","timestamp":1607098231,"output":"0m\u001b[22m\n16:10:31.365 [info] block_id: 8e5418c8-c60a-40cc-ab0b-db99cd5ec11f, type: Tasks, state: pe"},{"event":"cmd_output","timestamp":1607098231,"output":"nding, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.a"},{"event":"cmd_output","timestamp":1607098231,"output":"ll_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:31.369 [info] block_id: 8e5418c8-c60a-40cc-ab0b-db99cd5ec11f, ty"},{"event":"cmd_output","timestamp":1607098231,"output":"pe: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Imp"},{"event":"cmd_output","timestamp":1607098231,"output":"l.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.389 [info] block_id: 8e5418c8-c60a-40cc-ab0b-db99c"},{"event":"cmd_output","timestamp":1607098231,"output":"d5ec11f, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loop"},{"event":"cmd_output","timestamp":1607098231,"output":"er.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.392 [info] ppl_id: 5b6df62b-edb4-468c-80"},{"event":"cmd_output","timestamp":1607098231,"output":"34-d92349521525, type: PplRequests, event: persisted definition for request with request_token: 3ab9"},{"event":"cmd_output","timestamp":1607098231,"output":"b056-364b-11eb-95f2-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_def"},{"event":"cmd_output","timestamp":1607098231,"output":"inition/3(L76), \n\u001b[0m\u001b[22m\n16:10:31.399 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__"},{"event":"cmd_output","timestamp":1607098231,"output":"meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:10:31.397876], name:"},{"event":"cmd_output","timestamp":1607098231,"output":" \"master-3-.semaphore/semaphore.yml\", organization_id: \"842bf3f2-194b-49e0-a2d8-bc99ae4f1429\", proje"},{"event":"cmd_output","timestamp":1607098231,"output":"ct_id: \"list_grouped_ks\", queue_id: \"408ccb2f-8d80-44b6-9898-1b982cd18f2f\", scope: \"project\", update"},{"event":"cmd_output","timestamp":1607098231,"output":"d_at: ~N[2020-12-04 16:10:31.397890], user_generated: false}}\n\u001b[0m\u001b[22m\n16:10:31.401 [info] block"},{"event":"cmd_output","timestamp":1607098231,"output":"_id: b48a7d41-8e36-48a1-be22-daa520cf9ce5, type: Tasks, state: done, event: exit_scheduling, recover"},{"event":"cmd_output","timestamp":1607098231,"output":"y_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.408 [info]"},{"event":"cmd_output","timestamp":1607098231,"output":" event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098231,"output":"\u001b[22m\n16:10:31.408 [info] ppl_id: 5b6df62b-edb4-468c-8034-d92349521525, type: PplBlocks, block_ind"},{"event":"cmd_output","timestamp":1607098231,"output":"ex: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHan"},{"event":"cmd_output","timestamp":1607098231,"output":"dler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:31.411 [info] ppl_id: 5b6df62b-edb4-468c-"},{"event":"cmd_output","timestamp":1607098231,"output":"8034-d92349521525, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_"},{"event":"cmd_output","timestamp":1607098231,"output":"count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.422 [info] "},{"event":"cmd_output","timestamp":1607098231,"output":"ppl_id: 1ab2a87a-e96b-4175-95ae-8425f6480900, type: PplRequests, event: persisted source_args for pi"},{"event":"cmd_output","timestamp":1607098231,"output":"peline: 1ab2a87a-e96b-4175-95ae-8425f6480900, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQuerie"},{"event":"cmd_output","timestamp":1607098231,"output":"s.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:31.426 [info] block_id: b48a7d41-8e36-48a1-be22-daa520cf"},{"event":"cmd_output","timestamp":1607098231,"output":"9ce5, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.ST"},{"event":"cmd_output","timestamp":1607098231,"output":"M.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.429 [info] ppl_id: 5b6df62b-edb4-468c-8034-d9"},{"event":"cmd_output","timestamp":1607098231,"output":"2349521525, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count:"},{"event":"cmd_output","timestamp":1607098231,"output":" 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.431 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098231,"output":": 1ab2a87a-e96b-4175-95ae-8425f6480900, type: PplSubInits, state: fetching, event: exit_scheduling, "},{"event":"cmd_output","timestamp":1607098231,"output":"recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.435"},{"event":"cmd_output","timestamp":1607098231,"output":" [info] ppl_id: 5b6df62b-edb4-468c-8034-d92349521525, type: Ppls, state: pending, event: exit_sched"},{"event":"cmd_output","timestamp":1607098231,"output":"uling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10"},{"event":"cmd_output","timestamp":1607098231,"output":":31.444 [info] ppl_id: 64ee8488-bea7-473e-b5b0-f45461ecbcc2, block_id: b48a7d41-8e36-48a1-be22-daa5"},{"event":"cmd_output","timestamp":1607098231,"output":"20cf9ce5, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, reco"},{"event":"cmd_output","timestamp":1607098231,"output":"very_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.453 [in"},{"event":"cmd_output","timestamp":1607098231,"output":"fo] ppl_id: 5b6df62b-edb4-468c-8034-d92349521525, type: Ppls, state: queuing, event: exit_schedulin"},{"event":"cmd_output","timestamp":1607098231,"output":"g, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31."},{"event":"cmd_output","timestamp":1607098231,"output":"464 [info] ppl_id: 1ab2a87a-e96b-4175-95ae-8425f6480900, type: PplSubInits, state: regular_init, ev"},{"event":"cmd_output","timestamp":1607098231,"output":"ent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b"},{"event":"cmd_output","timestamp":1607098231,"output":"[0m\u001b[22m\n16:10:31.472 [info] ppl_id: 5b6df62b-edb4-468c-8034-d92349521525, type: Ppls, state: runn"},{"event":"cmd_output","timestamp":1607098231,"output":"ing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L9"},{"event":"cmd_output","timestamp":1607098231,"output":"0), \n\u001b[0m\u001b[22m\n16:10:31.479 [info] ppl_id: 64ee8488-bea7-473e-b5b0-f45461ecbcc2, type: Ppls, stat"},{"event":"cmd_output","timestamp":1607098231,"output":"e: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.l"},{"event":"cmd_output","timestamp":1607098231,"output":"og_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.486 [info] PplBlocks WaitingState STM is scheduling b"},{"event":"cmd_output","timestamp":1607098231,"output":"lock 0 from pipeline: \"5b6df62b-edb4-468c-8034-d92349521525\"\n\u001b[0m\u001b[22m\n16:10:31.494 [info] block_"},{"event":"cmd_output","timestamp":1607098231,"output":"id: 0df82246-a3eb-4061-b70f-75f56e42c36f, type: BlockRequests, event: persisted block run request fr"},{"event":"cmd_output","timestamp":1607098231,"output":"om ppl 5b6df62b-edb4-468c-8034-d92349521525 for block 0, origin: Elixir.Block.BlockRequests.Model.Bl"},{"event":"cmd_output","timestamp":1607098231,"output":"ockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:31.496 [info] block_id: 0df82246-a3e"},{"event":"cmd_output","timestamp":1607098231,"output":"b-4061-b70f-75f56e42c36f, type: Blocks, state: initializing, event: initializing, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098231,"output":" origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:31.500 [info] Bl"},{"event":"cmd_output","timestamp":1607098231,"output":"ock 0 of pipeline with id: 5b6df62b-edb4-468c-8034-d92349521525 scheduled in block service with id: "},{"event":"cmd_output","timestamp":1607098231,"output":": \"0df82246-a3eb-4061-b70f-75f56e42c36f\"\n\u001b[0m\u001b[22m\n16:10:31.504 [info] ppl_id: 5b6df62b-edb4-468c"},{"event":"cmd_output","timestamp":1607098231,"output":"-8034-d92349521525, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recover"},{"event":"cmd_output","timestamp":1607098231,"output":"y_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.507 [info]"},{"event":"cmd_output","timestamp":1607098231,"output":" block_id: 0df82246-a3eb-4061-b70f-75f56e42c36f, type: BlockRequests, event: persisted build and su"},{"event":"cmd_output","timestamp":1607098231,"output":"b_ppl details for block_request: 0df82246-a3eb-4061-b70f-75f56e42c36f, origin: Elixir.Block.BlockReq"},{"event":"cmd_output","timestamp":1607098231,"output":"uests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:31.510 [info] block_id: 0d"},{"event":"cmd_output","timestamp":1607098231,"output":"f82246-a3eb-4061-b70f-75f56e42c36f, type: Tasks, state: pending, event: created, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098231,"output":"origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:31.513 "},{"event":"cmd_output","timestamp":1607098231,"output":"[info] block_id: 0df82246-a3eb-4061-b70f-75f56e42c36f, type: Blocks, state: running, event: exit_sc"},{"event":"cmd_output","timestamp":1607098231,"output":"heduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098231,"output":":10:31.517 [info] ppl_id: 1ab2a87a-e96b-4175-95ae-8425f6480900, type: PplRequests, event: persisted"},{"event":"cmd_output","timestamp":1607098231,"output":" definition for request with request_token: 3ac3cd48-364b-11eb-94d5-5254005464e2, origin: Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098231,"output":".PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:31.528 [info] Qu"},{"event":"cmd_output","timestamp":1607098231,"output":"eue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, in"},{"event":"cmd_output","timestamp":1607098231,"output":"serted_at: ~N[2020-12-04 16:10:31.524403], name: \"master-4-.semaphore/semaphore.yml\", organization_i"},{"event":"cmd_output","timestamp":1607098231,"output":"d: \"178c5a12-8c4f-4225-b5b3-a24bc7d9b3c5\", project_id: \"list_grouped_ks\", queue_id: \"2e4ceab7-03f4-4"},{"event":"cmd_output","timestamp":1607098231,"output":"c6a-aef9-6edac83cd5d3\", scope: \"project\", updated_at: ~N[2020-12-04 16:10:31.524416], user_generated"},{"event":"cmd_output","timestamp":1607098231,"output":": false}}\n\u001b[0m\u001b[22m\n16:10:31.530 [info] block_id: 8e5418c8-c60a-40cc-ab0b-db99cd5ec11f, type: Tas"},{"event":"cmd_output","timestamp":1607098231,"output":"ks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state"},{"event":"cmd_output","timestamp":1607098231,"output":"_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.547 [info] block_id: 0df82246-a3eb-4061-b70f-75f56e42c36f, ty"},{"event":"cmd_output","timestamp":1607098231,"output":"pe: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl"},{"event":"cmd_output","timestamp":1607098231,"output":".log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.552 [info] block_id: 8e5418c8-c60a-40cc-ab0b-db99cd"},{"event":"cmd_output","timestamp":1607098231,"output":"5ec11f, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper."},{"event":"cmd_output","timestamp":1607098231,"output":"STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.556 [info] event: created, origin: Elixir.P"},{"event":"cmd_output","timestamp":1607098231,"output":"pl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:31.556 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098231,"output":": 1ab2a87a-e96b-4175-95ae-8425f6480900, type: PplBlocks, block_index: 0, state: initializing, event:"},{"event":"cmd_output","timestamp":1607098231,"output":" created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L1"},{"event":"cmd_output","timestamp":1607098231,"output":"05), \n\u001b[0m\u001b[22m\n16:10:31.558 [info] ppl_id: 7b998d12-d0cc-4c15-9bb9-1393c2495d28, type: PplReques"},{"event":"cmd_output","timestamp":1607098231,"output":"ts, event: persisted source_args for pipeline: 7b998d12-d0cc-4c15-9bb9-1393c2495d28, origin: Elixir."},{"event":"cmd_output","timestamp":1607098231,"output":"Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:31.559 [info] ppl"},{"event":"cmd_output","timestamp":1607098231,"output":"_id: 1ab2a87a-e96b-4175-95ae-8425f6480900, type: PplSubInits, state: done, result: passed, event: ex"},{"event":"cmd_output","timestamp":1607098231,"output":"it_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098231,"output":"m\n16:10:31.563 [info] ppl_id: 7b998d12-d0cc-4c15-9bb9-1393c2495d28, type: PplSubInits, state: fetc"},{"event":"cmd_output","timestamp":1607098231,"output":"hing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098231,"output":"90), \n\u001b[0m\u001b[22m\n16:10:31.574 [info] ppl_id: f724d2a2-4bc3-4d5a-bf10-dd079113c0d3, block_id: 8e541"},{"event":"cmd_output","timestamp":1607098231,"output":"8c8-c60a-40cc-ab0b-db99cd5ec11f, type: PplBlocks, block_index: 0, state: done, result: passed, event"},{"event":"cmd_output","timestamp":1607098231,"output":": exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098231,"output":"\u001b[22m\n16:10:31.586 [info] ppl_id: 1ab2a87a-e96b-4175-95ae-8425f6480900, type: PplBlocks, block_ind"},{"event":"cmd_output","timestamp":1607098231,"output":"ex: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098231,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.587 [info] ppl_id: 1ab2a87a-e96b-4175-95ae-8425f6480900"},{"event":"cmd_output","timestamp":1607098231,"output":", type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.I"},{"event":"cmd_output","timestamp":1607098231,"output":"mpl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.602 [info] ppl_id: f724d2a2-4bc3-4d5a-bf10-dd079"},{"event":"cmd_output","timestamp":1607098231,"output":"113c0d3, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098231,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.603 [info] ppl_id: 1ab2a87a-"},{"event":"cmd_output","timestamp":1607098231,"output":"e96b-4175-95ae-8425f6480900, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098231,"output":"origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.605 [info] ppl_id: 7b"},{"event":"cmd_output","timestamp":1607098231,"output":"998d12-d0cc-4c15-9bb9-1393c2495d28, type: PplSubInits, state: regular_init, event: exit_scheduling, "},{"event":"cmd_output","timestamp":1607098231,"output":"recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.614"},{"event":"cmd_output","timestamp":1607098231,"output":" [info] ppl_id: 1ab2a87a-e96b-4175-95ae-8425f6480900, type: Ppls, state: running, event: exit_sched"},{"event":"cmd_output","timestamp":1607098231,"output":"uling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10"},{"event":"cmd_output","timestamp":1607098231,"output":":31.621 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"1ab2a87a-e96b-4175-"},{"event":"cmd_output","timestamp":1607098231,"output":"95ae-8425f6480900\"\n\u001b[0m\u001b[22m\n16:10:31.627 [info] block_id: dc1c31f7-e067-4163-af81-3d7278150aba, "},{"event":"cmd_output","timestamp":1607098231,"output":"type: BlockRequests, event: persisted block run request from ppl 1ab2a87a-e96b-4175-95ae-8425f648090"},{"event":"cmd_output","timestamp":1607098231,"output":"0 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35)"},{"event":"cmd_output","timestamp":1607098231,"output":", \n\u001b[0m\u001b[22m\n16:10:31.629 [info] block_id: dc1c31f7-e067-4163-af81-3d7278150aba, type: Blocks, st"},{"event":"cmd_output","timestamp":1607098231,"output":"ate: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQ"},{"event":"cmd_output","timestamp":1607098231,"output":"ueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:31.634 [info] ppl_id: 7b998d12-d0cc-4c15-9bb9-1393c2495d28"},{"event":"cmd_output","timestamp":1607098231,"output":", type: PplRequests, event: persisted definition for request with request_token: 3acbd664-364b-11eb-"},{"event":"cmd_output","timestamp":1607098231,"output":"b611-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76),"},{"event":"cmd_output","timestamp":1607098231,"output":" \n\u001b[0m\u001b[22m\n16:10:31.635 [info] Block 0 of pipeline with id: 1ab2a87a-e96b-4175-95ae-8425f6480900"},{"event":"cmd_output","timestamp":1607098231,"output":" scheduled in block service with id: : \"dc1c31f7-e067-4163-af81-3d7278150aba\"\n\u001b[0m\u001b[22m\n16:10:31.6"},{"event":"cmd_output","timestamp":1607098231,"output":"37 [info] block_id: dc1c31f7-e067-4163-af81-3d7278150aba, type: BlockRequests, event: persisted bui"},{"event":"cmd_output","timestamp":1607098231,"output":"ld and sub_ppl details for block_request: dc1c31f7-e067-4163-af81-3d7278150aba, origin: Elixir.Block"},{"event":"cmd_output","timestamp":1607098231,"output":".BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:31.638 [info] ppl"},{"event":"cmd_output","timestamp":1607098231,"output":"_id: 1ab2a87a-e96b-4175-95ae-8425f6480900, type: PplBlocks, block_index: 0, state: running, event: e"},{"event":"cmd_output","timestamp":1607098231,"output":"xit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098231,"output":"2m\n16:10:31.640 [info] block_id: dc1c31f7-e067-4163-af81-3d7278150aba, type: Tasks, state: pending"},{"event":"cmd_output","timestamp":1607098231,"output":", event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok"},{"event":"cmd_output","timestamp":1607098231,"output":"?/1(L167), \n\u001b[0m\u001b[22m\n16:10:31.643 [info] block_id: dc1c31f7-e067-4163-af81-3d7278150aba, type: B"},{"event":"cmd_output","timestamp":1607098231,"output":"locks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098231,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.644 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Que"},{"event":"cmd_output","timestamp":1607098231,"output":"ues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:10:31.639872],"},{"event":"cmd_output","timestamp":1607098231,"output":" name: \"master-5-.semaphore/semaphore.yml\", organization_id: \"6619b4ea-e2c7-46b2-b50c-5f68f36ff8d0\","},{"event":"cmd_output","timestamp":1607098231,"output":" project_id: \"list_grouped_ks\", queue_id: \"533dd22f-5429-4c35-aa8e-8b75afc44e3f\", scope: \"project\", "},{"event":"cmd_output","timestamp":1607098231,"output":"updated_at: ~N[2020-12-04 16:10:31.639879], user_generated: false}}\n\u001b[0m\u001b[22m\n16:10:31.649 [info] "},{"event":"cmd_output","timestamp":1607098231,"output":" block_id: 0df82246-a3eb-4061-b70f-75f56e42c36f, type: Tasks, state: done, event: exit_scheduling, r"},{"event":"cmd_output","timestamp":1607098231,"output":"ecovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.651 "},{"event":"cmd_output","timestamp":1607098231,"output":"[info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), "},{"event":"cmd_output","timestamp":1607098231,"output":"\n\u001b[0m\u001b[22m\n16:10:31.651 [info] ppl_id: 7b998d12-d0cc-4c15-9bb9-1393c2495d28, type: PplBlocks, blo"},{"event":"cmd_output","timestamp":1607098231,"output":"ck_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits."},{"event":"cmd_output","timestamp":1607098231,"output":"STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:31.653 [info] ppl_id: 7b998d12-d0cc"},{"event":"cmd_output","timestamp":1607098231,"output":"-4c15-9bb9-1393c2495d28, type: PplSubInits, state: done, result: passed, event: exit_scheduling, rec"},{"event":"cmd_output","timestamp":1607098231,"output":"overy_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.663 [i"},{"event":"cmd_output","timestamp":1607098231,"output":"nfo] block_id: 0df82246-a3eb-4061-b70f-75f56e42c36f, type: Blocks, state: done, event: exit_schedul"},{"event":"cmd_output","timestamp":1607098231,"output":"ing, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:3"},{"event":"cmd_output","timestamp":1607098231,"output":"1.672 [info] block_id: dc1c31f7-e067-4163-af81-3d7278150aba, type: Tasks, state: running, event: ex"},{"event":"cmd_output","timestamp":1607098231,"output":"it_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098231,"output":"m\n16:10:31.674 [info] ppl_id: 7b998d12-d0cc-4c15-9bb9-1393c2495d28, type: PplBlocks, block_index: "},{"event":"cmd_output","timestamp":1607098231,"output":"0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_sta"},{"event":"cmd_output","timestamp":1607098231,"output":"te_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.680 [info] ppl_id: 7b998d12-d0cc-4c15-9bb9-1393c2495d28, ty"},{"event":"cmd_output","timestamp":1607098231,"output":"pe: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl."},{"event":"cmd_output","timestamp":1607098231,"output":"log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.690 [info] ppl_id: 5b6df62b-edb4-468c-8034-d92349521"},{"event":"cmd_output","timestamp":1607098231,"output":"525, block_id: 0df82246-a3eb-4061-b70f-75f56e42c36f, type: PplBlocks, block_index: 0, state: done, r"},{"event":"cmd_output","timestamp":1607098231,"output":"esult: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098231,"output":"hange/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.695 [info] ppl_id: bbc8c9bd-c984-4943-ad96-adcb06e6b4d4, type: "},{"event":"cmd_output","timestamp":1607098231,"output":"PplRequests, event: persisted source_args for pipeline: bbc8c9bd-c984-4943-ad96-adcb06e6b4d4, origin"},{"event":"cmd_output","timestamp":1607098231,"output":": Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:31.698 [i"},{"event":"cmd_output","timestamp":1607098231,"output":"nfo] ppl_id: 7b998d12-d0cc-4c15-9bb9-1393c2495d28, type: Ppls, state: queuing, event: exit_scheduli"},{"event":"cmd_output","timestamp":1607098231,"output":"ng, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31"},{"event":"cmd_output","timestamp":1607098231,"output":".701 [info] ppl_id: bbc8c9bd-c984-4943-ad96-adcb06e6b4d4, type: PplSubInits, state: fetching, event"},{"event":"cmd_output","timestamp":1607098231,"output":": exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098231,"output":"\u001b[22m\n16:10:31.709 [info] ppl_id: 5b6df62b-edb4-468c-8034-d92349521525, type: Ppls, state: done, r"},{"event":"cmd_output","timestamp":1607098231,"output":"esult: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098231,"output":"hange/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.716 [info] ppl_id: 7b998d12-d0cc-4c15-9bb9-1393c2495d28, type: "},{"event":"cmd_output","timestamp":1607098231,"output":"Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_"},{"event":"cmd_output","timestamp":1607098231,"output":"state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.728 [info] PplBlocks WaitingState STM is scheduling bloc"},{"event":"cmd_output","timestamp":1607098231,"output":"k 0 from pipeline: \"7b998d12-d0cc-4c15-9bb9-1393c2495d28\"\n\u001b[0m\u001b[22m\n16:10:31.737 [info] ppl_id: b"},{"event":"cmd_output","timestamp":1607098231,"output":"bc8c9bd-c984-4943-ad96-adcb06e6b4d4, type: PplSubInits, state: regular_init, event: exit_scheduling,"},{"event":"cmd_output","timestamp":1607098231,"output":" recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.73"},{"event":"cmd_output","timestamp":1607098231,"output":"8 [info] block_id: 8dd5bbf5-5b0c-4915-bcf0-a9030654d1f0, type: BlockRequests, event: persisted bloc"},{"event":"cmd_output","timestamp":1607098231,"output":"k run request from ppl 7b998d12-d0cc-4c15-9bb9-1393c2495d28 for block 0, origin: Elixir.Block.BlockR"},{"event":"cmd_output","timestamp":1607098231,"output":"equests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:31.746 [info] block_"},{"event":"cmd_output","timestamp":1607098231,"output":"id: 8dd5bbf5-5b0c-4915-bcf0-a9030654d1f0, type: Blocks, state: initializing, event: initializing, re"},{"event":"cmd_output","timestamp":1607098231,"output":"covery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:3"},{"event":"cmd_output","timestamp":1607098231,"output":"1.749 [info] Block 0 of pipeline with id: 7b998d12-d0cc-4c15-9bb9-1393c2495d28 scheduled in block s"},{"event":"cmd_output","timestamp":1607098231,"output":"ervice with id: : \"8dd5bbf5-5b0c-4915-bcf0-a9030654d1f0\"\n\u001b[0m\u001b[22m\n16:10:31.757 [info] ppl_id: 7b"},{"event":"cmd_output","timestamp":1607098231,"output":"998d12-d0cc-4c15-9bb9-1393c2495d28, type: PplBlocks, block_index: 0, state: running, event: exit_sch"},{"event":"cmd_output","timestamp":1607098231,"output":"eduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098231,"output":"10:31.762 [info] block_id: 8dd5bbf5-5b0c-4915-bcf0-a9030654d1f0, type: BlockRequests, event: persis"},{"event":"cmd_output","timestamp":1607098231,"output":"ted build and sub_ppl details for block_request: 8dd5bbf5-5b0c-4915-bcf0-a9030654d1f0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098231,"output":"r.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:31.768 [inf"},{"event":"cmd_output","timestamp":1607098231,"output":"o] block_id: 8dd5bbf5-5b0c-4915-bcf0-a9030654d1f0, type: Tasks, state: pending, event: created, rec"},{"event":"cmd_output","timestamp":1607098231,"output":"overy_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098231,"output":"m\n16:10:31.774 [info] block_id: 8dd5bbf5-5b0c-4915-bcf0-a9030654d1f0, type: Blocks, state: running"},{"event":"cmd_output","timestamp":1607098231,"output":", event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90),"},{"event":"cmd_output","timestamp":1607098231,"output":" \n\u001b[0m\u001b[22m\n16:10:31.789 [info] block_id: dc1c31f7-e067-4163-af81-3d7278150aba, type: Tasks, stat"},{"event":"cmd_output","timestamp":1607098231,"output":"e: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/"},{"event":"cmd_output","timestamp":1607098231,"output":"1(L90), \n\u001b[0m\u001b[22m\n16:10:31.810 [info] block_id: dc1c31f7-e067-4163-af81-3d7278150aba, type: Bloc"},{"event":"cmd_output","timestamp":1607098231,"output":"ks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state"},{"event":"cmd_output","timestamp":1607098231,"output":"_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.812 [info] ppl_id: bbc8c9bd-c984-4943-ad96-adcb06e6b4d4, type"},{"event":"cmd_output","timestamp":1607098231,"output":": PplRequests, event: persisted definition for request with request_token: 3ad5b71a-364b-11eb-88ce-5"},{"event":"cmd_output","timestamp":1607098231,"output":"254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098231,"output":"m\u001b[22m\n16:10:31.814 [info] block_id: 8dd5bbf5-5b0c-4915-bcf0-a9030654d1f0, type: Tasks, state: run"},{"event":"cmd_output","timestamp":1607098231,"output":"ning, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098231,"output":"90), \n\u001b[0m\u001b[22m\n16:10:31.823 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ec"},{"event":"cmd_output","timestamp":1607098231,"output":"to.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:10:31.819176], name: \"refs/tags"},{"event":"cmd_output","timestamp":1607098231,"output":"/v1.6-.semaphore/semaphore.yml\", organization_id: \"b8060f78-e967-487e-ab8c-9ce3d2af3c68\", project_id"},{"event":"cmd_output","timestamp":1607098231,"output":": \"list_grouped_ks\", queue_id: \"acbec1a5-c768-4962-938a-b7b490f4e43e\", scope: \"project\", updated_at:"},{"event":"cmd_output","timestamp":1607098231,"output":" ~N[2020-12-04 16:10:31.819185], user_generated: false}}\n\u001b[0m\u001b[22m\n16:10:31.834 [info] ppl_id: 1a"},{"event":"cmd_output","timestamp":1607098231,"output":"b2a87a-e96b-4175-95ae-8425f6480900, block_id: dc1c31f7-e067-4163-af81-3d7278150aba, type: PplBlocks,"},{"event":"cmd_output","timestamp":1607098231,"output":" block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098231,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.836 [info] ppl_id: cfafd963-cc5d"},{"event":"cmd_output","timestamp":1607098231,"output":"-4c5a-ba9e-d57db9329973, type: PplRequests, event: persisted source_args for pipeline: cfafd963-cc5d"},{"event":"cmd_output","timestamp":1607098231,"output":"-4c5a-ba9e-d57db9329973, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89"},{"event":"cmd_output","timestamp":1607098231,"output":"), \n\u001b[0m\u001b[22m\n16:10:31.839 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.Regul"},{"event":"cmd_output","timestamp":1607098231,"output":"arInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:31.839 [info] ppl_id: bbc8c9bd-c984-4943-ad96-adcb0"},{"event":"cmd_output","timestamp":1607098231,"output":"6e6b4d4, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098231,"output":"igin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:31.839 "},{"event":"cmd_output","timestamp":1607098231,"output":"[info] ppl_id: cfafd963-cc5d-4c5a-ba9e-d57db9329973, type: PplSubInits, state: fetching, event: exi"},{"event":"cmd_output","timestamp":1607098231,"output":"t_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098231,"output":"\n16:10:31.842 [info] ppl_id: bbc8c9bd-c984-4943-ad96-adcb06e6b4d4, type: PplSubInits, state: done,"},{"event":"cmd_output","timestamp":1607098231,"output":" result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state"},{"event":"cmd_output","timestamp":1607098231,"output":"_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.864 [info] ppl_id: bbc8c9bd-c984-4943-ad96-adcb06e6b4d4, type"},{"event":"cmd_output","timestamp":1607098231,"output":": Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.lo"},{"event":"cmd_output","timestamp":1607098231,"output":"g_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.865 [info] ppl_id: bbc8c9bd-c984-4943-ad96-adcb06e6b4d"},{"event":"cmd_output","timestamp":1607098231,"output":"4, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098231,"output":"n: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.877 [info] ppl_id: 1ab2a87"},{"event":"cmd_output","timestamp":1607098231,"output":"a-e96b-4175-95ae-8425f6480900, type: Ppls, state: done, result: passed, event: exit_scheduling, reco"},{"event":"cmd_output","timestamp":1607098231,"output":"very_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.886 [in"},{"event":"cmd_output","timestamp":1607098231,"output":"fo] ppl_id: cfafd963-cc5d-4c5a-ba9e-d57db9329973, type: PplSubInits, state: regular_init, event: ex"},{"event":"cmd_output","timestamp":1607098231,"output":"it_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098231,"output":"m\n16:10:31.888 [info] ppl_id: bbc8c9bd-c984-4943-ad96-adcb06e6b4d4, type: Ppls, state: queuing, ev"},{"event":"cmd_output","timestamp":1607098231,"output":"ent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b"},{"event":"cmd_output","timestamp":1607098231,"output":"[0m\u001b[22m\n16:10:31.909 [info] ppl_id: bbc8c9bd-c984-4943-ad96-adcb06e6b4d4, type: Ppls, state: runn"},{"event":"cmd_output","timestamp":1607098231,"output":"ing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L9"},{"event":"cmd_output","timestamp":1607098231,"output":"0), \n\u001b[0m\u001b[22m\n16:10:31.915 [info] block_id: 8dd5bbf5-5b0c-4915-bcf0-a9030654d1f0, type: Tasks, s"},{"event":"cmd_output","timestamp":1607098231,"output":"tate: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chan"},{"event":"cmd_output","timestamp":1607098231,"output":"ge/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.925 [info] PplBlocks WaitingState STM is scheduling block 0 from p"},{"event":"cmd_output","timestamp":1607098231,"output":"ipeline: \"bbc8c9bd-c984-4943-ad96-adcb06e6b4d4\"\n\u001b[0m\u001b[22m\n16:10:31.931 [info] block_id: 8dd5bbf5-"},{"event":"cmd_output","timestamp":1607098231,"output":"5b0c-4915-bcf0-a9030654d1f0, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098231,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.937 [info] block_id: c"},{"event":"cmd_output","timestamp":1607098231,"output":"bcfe90e-ea12-4c29-9b98-c6378f1b437a, type: BlockRequests, event: persisted block run request from pp"},{"event":"cmd_output","timestamp":1607098231,"output":"l bbc8c9bd-c984-4943-ad96-adcb06e6b4d4 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRe"},{"event":"cmd_output","timestamp":1607098231,"output":"questsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:31.942 [info] block_id: cbcfe90e-ea12-4c2"},{"event":"cmd_output","timestamp":1607098231,"output":"9-9b98-c6378f1b437a, type: Blocks, state: initializing, event: initializing, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098231,"output":"in: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:31.945 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098231,"output":" cfafd963-cc5d-4c5a-ba9e-d57db9329973, type: PplRequests, event: persisted definition for request wi"},{"event":"cmd_output","timestamp":1607098231,"output":"th request_token: 3ade20b2-364b-11eb-8379-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequ"},{"event":"cmd_output","timestamp":1607098231,"output":"estsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:31.947 [info] Block 0 of pipeline with id:"},{"event":"cmd_output","timestamp":1607098231,"output":" bbc8c9bd-c984-4943-ad96-adcb06e6b4d4 scheduled in block service with id: : \"cbcfe90e-ea12-4c29-9b98"},{"event":"cmd_output","timestamp":1607098231,"output":"-c6378f1b437a\"\n\u001b[0m\u001b[22m\n16:10:31.952 [info] ppl_id: bbc8c9bd-c984-4943-ad96-adcb06e6b4d4, type: "},{"event":"cmd_output","timestamp":1607098231,"output":"PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098231,"output":".Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.956 [info] ppl_id: 7b998d12-d0cc-4c"},{"event":"cmd_output","timestamp":1607098231,"output":"15-9bb9-1393c2495d28, block_id: 8dd5bbf5-5b0c-4915-bcf0-a9030654d1f0, type: PplBlocks, block_index: "},{"event":"cmd_output","timestamp":1607098231,"output":"0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM"},{"event":"cmd_output","timestamp":1607098231,"output":".Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.959 [info] block_id: cbcfe90e-ea12-4c29-9b98-c"},{"event":"cmd_output","timestamp":1607098231,"output":"6378f1b437a, type: BlockRequests, event: persisted build and sub_ppl details for block_request: cbcf"},{"event":"cmd_output","timestamp":1607098231,"output":"e90e-ea12-4c29-9b98-c6378f1b437a, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.inse"},{"event":"cmd_output","timestamp":1607098231,"output":"rt_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:31.960 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{_"},{"event":"cmd_output","timestamp":1607098231,"output":"_meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:10:31.956080], name"},{"event":"cmd_output","timestamp":1607098231,"output":": \"refs/tags/v1.7-.semaphore/semaphore.yml\", organization_id: \"508ccf74-5449-4ad3-aa70-d00231bd83aa\""},{"event":"cmd_output","timestamp":1607098231,"output":", project_id: \"list_grouped_ks\", queue_id: \"f6c10f13-5a3f-4495-8567-9fb227ec23aa\", scope: \"project\","},{"event":"cmd_output","timestamp":1607098231,"output":" updated_at: ~N[2020-12-04 16:10:31.956093], user_generated: false}}\n\u001b[0m\u001b[22m\n16:10:31.965 [info]"},{"event":"cmd_output","timestamp":1607098231,"output":" block_id: cbcfe90e-ea12-4c29-9b98-c6378f1b437a, type: Tasks, state: pending, event: created, recov"},{"event":"cmd_output","timestamp":1607098231,"output":"ery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098231,"output":"\n16:10:31.975 [info] ppl_id: dbfcdf51-3c83-4a4d-a645-035067649428, type: PplRequests, event: persis"},{"event":"cmd_output","timestamp":1607098231,"output":"ted source_args for pipeline: dbfcdf51-3c83-4a4d-a645-035067649428, origin: Elixir.Ppl.PplRequests.M"},{"event":"cmd_output","timestamp":1607098231,"output":"odel.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:31.978 [info] event: created, orig"},{"event":"cmd_output","timestamp":1607098231,"output":"in: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:31.978 [i"},{"event":"cmd_output","timestamp":1607098231,"output":"nfo] ppl_id: cfafd963-cc5d-4c5a-ba9e-d57db9329973, type: PplBlocks, block_index: 0, state: initiali"},{"event":"cmd_output","timestamp":1607098231,"output":"zing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState."},{"event":"cmd_output","timestamp":1607098231,"output":"all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:31.982 [info] block_id: cbcfe90e-ea12-4c29-9b98-c6378f1b437a, t"},{"event":"cmd_output","timestamp":1607098231,"output":"ype: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Im"},{"event":"cmd_output","timestamp":1607098231,"output":"pl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.983 [info] ppl_id: cfafd963-cc5d-4c5a-ba9e-d57db9"},{"event":"cmd_output","timestamp":1607098231,"output":"329973, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098231,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.983 [info] ppl_id: dbf"},{"event":"cmd_output","timestamp":1607098231,"output":"cdf51-3c83-4a4d-a645-035067649428, type: PplSubInits, state: fetching, event: exit_scheduling, recov"},{"event":"cmd_output","timestamp":1607098231,"output":"ery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:31.984 [inf"},{"event":"cmd_output","timestamp":1607098231,"output":"o] ppl_id: 7b998d12-d0cc-4c15-9bb9-1393c2495d28, type: Ppls, state: done, result: passed, event: ex"},{"event":"cmd_output","timestamp":1607098231,"output":"it_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098231,"output":"m\n16:10:31.998 [info] ppl_id: cfafd963-cc5d-4c5a-ba9e-d57db9329973, type: PplBlocks, block_index: "},{"event":"cmd_output","timestamp":1607098231,"output":"0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_sta"},{"event":"cmd_output","timestamp":1607098232,"output":"te_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.019 [info] block_id: cbcfe90e-ea12-4c29-9b98-c6378f1b437a, "},{"event":"cmd_output","timestamp":1607098232,"output":"type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Im"},{"event":"cmd_output","timestamp":1607098232,"output":"pl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.028 [info] ppl_id: dbfcdf51-3c83-4a4d-a645-035067"},{"event":"cmd_output","timestamp":1607098232,"output":"649428, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: E"},{"event":"cmd_output","timestamp":1607098232,"output":"lixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.033 [info] ppl_id: cfafd963-cc"},{"event":"cmd_output","timestamp":1607098232,"output":"5d-4c5a-ba9e-d57db9329973, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098232,"output":"igin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.039 [info] block_id: cb"},{"event":"cmd_output","timestamp":1607098232,"output":"cfe90e-ea12-4c29-9b98-c6378f1b437a, type: Tasks, state: done, event: exit_scheduling, recovery_count"},{"event":"cmd_output","timestamp":1607098232,"output":": 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.048 [info] ppl_i"},{"event":"cmd_output","timestamp":1607098232,"output":"d: cfafd963-cc5d-4c5a-ba9e-d57db9329973, type: Ppls, state: queuing, event: exit_scheduling, recover"},{"event":"cmd_output","timestamp":1607098232,"output":"y_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.053 [info]"},{"event":"cmd_output","timestamp":1607098232,"output":" block_id: cbcfe90e-ea12-4c29-9b98-c6378f1b437a, type: Blocks, state: done, event: exit_scheduling,"},{"event":"cmd_output","timestamp":1607098232,"output":" recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.06"},{"event":"cmd_output","timestamp":1607098232,"output":"6 [info] ppl_id: dbfcdf51-3c83-4a4d-a645-035067649428, type: PplRequests, event: persisted definiti"},{"event":"cmd_output","timestamp":1607098232,"output":"on for request with request_token: 3ae6f19c-364b-11eb-91d2-5254005464e2, origin: Elixir.Ppl.PplReque"},{"event":"cmd_output","timestamp":1607098232,"output":"sts.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:32.067 [info] ppl_id: bbc"},{"event":"cmd_output","timestamp":1607098232,"output":"8c9bd-c984-4943-ad96-adcb06e6b4d4, block_id: cbcfe90e-ea12-4c29-9b98-c6378f1b437a, type: PplBlocks, "},{"event":"cmd_output","timestamp":1607098232,"output":"block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098232,"output":"ir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.071 [info] ppl_id: cfafd963-cc5d-"},{"event":"cmd_output","timestamp":1607098232,"output":"4c5a-ba9e-d57db9329973, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098232,"output":"n: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.074 [info] Queue persisted"},{"event":"cmd_output","timestamp":1607098232,"output":": {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N"},{"event":"cmd_output","timestamp":1607098232,"output":"[2020-12-04 16:10:32.070940], name: \"refs/tags/v1.8-.semaphore/semaphore.yml\", organization_id: \"1a7"},{"event":"cmd_output","timestamp":1607098232,"output":"111de-fb91-4fdf-9836-97f0221b500b\", project_id: \"list_grouped_ks\", queue_id: \"832ddb8c-d72d-4069-8b3"},{"event":"cmd_output","timestamp":1607098232,"output":"3-7421d83928b9\", scope: \"project\", updated_at: ~N[2020-12-04 16:10:32.070951], user_generated: false"},{"event":"cmd_output","timestamp":1607098232,"output":"}}\n\u001b[0m\u001b[22m\n16:10:32.080 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: "},{"event":"cmd_output","timestamp":1607098232,"output":"\"cfafd963-cc5d-4c5a-ba9e-d57db9329973\"\n\u001b[0m\u001b[22m\n16:10:32.089 [info] event: created, origin: Elix"},{"event":"cmd_output","timestamp":1607098232,"output":"ir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:32.089 [info] pp"},{"event":"cmd_output","timestamp":1607098232,"output":"l_id: dbfcdf51-3c83-4a4d-a645-035067649428, type: PplBlocks, block_index: 0, state: initializing, ev"},{"event":"cmd_output","timestamp":1607098232,"output":"ent: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/"},{"event":"cmd_output","timestamp":1607098232,"output":"1(L105), \n\u001b[0m\u001b[22m\n16:10:32.095 [info] ppl_id: dbfcdf51-3c83-4a4d-a645-035067649428, type: PplSu"},{"event":"cmd_output","timestamp":1607098232,"output":"bInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loope"},{"event":"cmd_output","timestamp":1607098232,"output":"r.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.098 [info] block_id: 4d35def6-6f84-4c03-b"},{"event":"cmd_output","timestamp":1607098232,"output":"d6f-b03d275c0ad3, type: BlockRequests, event: persisted block run request from ppl cfafd963-cc5d-4c5"},{"event":"cmd_output","timestamp":1607098232,"output":"a-ba9e-d57db9329973 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.proce"},{"event":"cmd_output","timestamp":1607098232,"output":"ss_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:32.099 [info] ppl_id: bbc8c9bd-c984-4943-ad96-adcb06e6b4d4, "},{"event":"cmd_output","timestamp":1607098232,"output":"type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098232,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.100 [info] ppl_id: 122a2a60-c45e-4a43"},{"event":"cmd_output","timestamp":1607098232,"output":"-baa6-937d4dd2b879, type: PplRequests, event: persisted source_args for pipeline: 122a2a60-c45e-4a43"},{"event":"cmd_output","timestamp":1607098232,"output":"-baa6-937d4dd2b879, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n"},{"event":"cmd_output","timestamp":1607098232,"output":"\u001b[0m\u001b[22m\n16:10:32.103 [info] block_id: 4d35def6-6f84-4c03-bd6f-b03d275c0ad3, type: Blocks, state:"},{"event":"cmd_output","timestamp":1607098232,"output":" initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueri"},{"event":"cmd_output","timestamp":1607098232,"output":"es.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:32.107 [info] ppl_id: 122a2a60-c45e-4a43-baa6-937d4dd2b879, ty"},{"event":"cmd_output","timestamp":1607098232,"output":"pe: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.S"},{"event":"cmd_output","timestamp":1607098232,"output":"TM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.111 [info] ppl_id: dbfcdf51-3c83-4a4d-a645-0"},{"event":"cmd_output","timestamp":1607098232,"output":"35067649428, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098232,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.112 [info] Block 0 of pipeline with i"},{"event":"cmd_output","timestamp":1607098232,"output":"d: cfafd963-cc5d-4c5a-ba9e-d57db9329973 scheduled in block service with id: : \"4d35def6-6f84-4c03-bd"},{"event":"cmd_output","timestamp":1607098232,"output":"6f-b03d275c0ad3\"\n\u001b[0m\u001b[22m\n16:10:32.120 [info] ppl_id: cfafd963-cc5d-4c5a-ba9e-d57db9329973, type"},{"event":"cmd_output","timestamp":1607098232,"output":": PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098232,"output":"ir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.120 [info] ppl_id: dbfcdf51-3c83-"},{"event":"cmd_output","timestamp":1607098232,"output":"4a4d-a645-035067649428, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, rec"},{"event":"cmd_output","timestamp":1607098232,"output":"overy_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.132 [i"},{"event":"cmd_output","timestamp":1607098232,"output":"nfo] block_id: 4d35def6-6f84-4c03-bd6f-b03d275c0ad3, type: BlockRequests, event: persisted build an"},{"event":"cmd_output","timestamp":1607098232,"output":"d sub_ppl details for block_request: 4d35def6-6f84-4c03-bd6f-b03d275c0ad3, origin: Elixir.Block.Bloc"},{"event":"cmd_output","timestamp":1607098232,"output":"kRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:32.133 [info] ppl_id: "},{"event":"cmd_output","timestamp":1607098232,"output":"dbfcdf51-3c83-4a4d-a645-035067649428, type: Ppls, state: queuing, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098232,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.138 [info] b"},{"event":"cmd_output","timestamp":1607098232,"output":"lock_id: 4d35def6-6f84-4c03-bd6f-b03d275c0ad3, type: Tasks, state: pending, event: created, recovery"},{"event":"cmd_output","timestamp":1607098232,"output":"_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098232,"output":":10:32.145 [info] block_id: 4d35def6-6f84-4c03-bd6f-b03d275c0ad3, type: Blocks, state: running, eve"},{"event":"cmd_output","timestamp":1607098232,"output":"nt: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b["},{"event":"cmd_output","timestamp":1607098232,"output":"0m\u001b[22m\n16:10:32.154 [info] ppl_id: dbfcdf51-3c83-4a4d-a645-035067649428, type: Ppls, state: runni"},{"event":"cmd_output","timestamp":1607098232,"output":"ng, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90"},{"event":"cmd_output","timestamp":1607098232,"output":"), \n\u001b[0m\u001b[22m\n16:10:32.156 [info] ppl_id: 122a2a60-c45e-4a43-baa6-937d4dd2b879, type: PplSubInits"},{"event":"cmd_output","timestamp":1607098232,"output":", state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098232,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.162 [info] PplBlocks WaitingState STM is scheduling blo"},{"event":"cmd_output","timestamp":1607098232,"output":"ck 0 from pipeline: \"dbfcdf51-3c83-4a4d-a645-035067649428\"\n\u001b[0m\u001b[22m\n16:10:32.181 [info] block_id"},{"event":"cmd_output","timestamp":1607098232,"output":": 3a9b20db-8ede-4115-ba77-a19daf566cb9, type: BlockRequests, event: persisted block run request from"},{"event":"cmd_output","timestamp":1607098232,"output":" ppl dbfcdf51-3c83-4a4d-a645-035067649428 for block 0, origin: Elixir.Block.BlockRequests.Model.Bloc"},{"event":"cmd_output","timestamp":1607098232,"output":"kRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:32.187 [info] block_id: 4d35def6-6f84-"},{"event":"cmd_output","timestamp":1607098232,"output":"4c03-bd6f-b03d275c0ad3, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098232,"output":"in: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.187 [info] block_id: 3a9b"},{"event":"cmd_output","timestamp":1607098232,"output":"20db-8ede-4115-ba77-a19daf566cb9, type: Blocks, state: initializing, event: initializing, recovery_c"},{"event":"cmd_output","timestamp":1607098232,"output":"ount: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:32.191 [i"},{"event":"cmd_output","timestamp":1607098232,"output":"nfo] Block 0 of pipeline with id: dbfcdf51-3c83-4a4d-a645-035067649428 scheduled in block service w"},{"event":"cmd_output","timestamp":1607098232,"output":"ith id: : \"3a9b20db-8ede-4115-ba77-a19daf566cb9\"\n\u001b[0m\u001b[22m\n16:10:32.196 [info] ppl_id: dbfcdf51-3"},{"event":"cmd_output","timestamp":1607098232,"output":"c83-4a4d-a645-035067649428, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling,"},{"event":"cmd_output","timestamp":1607098232,"output":" recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.19"},{"event":"cmd_output","timestamp":1607098232,"output":"9 [info] block_id: 3a9b20db-8ede-4115-ba77-a19daf566cb9, type: BlockRequests, event: persisted buil"},{"event":"cmd_output","timestamp":1607098232,"output":"d and sub_ppl details for block_request: 3a9b20db-8ede-4115-ba77-a19daf566cb9, origin: Elixir.Block."},{"event":"cmd_output","timestamp":1607098232,"output":"BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:32.202 [info] bloc"},{"event":"cmd_output","timestamp":1607098232,"output":"k_id: 3a9b20db-8ede-4115-ba77-a19daf566cb9, type: Tasks, state: pending, event: created, recovery_co"},{"event":"cmd_output","timestamp":1607098232,"output":"unt: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10"},{"event":"cmd_output","timestamp":1607098232,"output":":32.205 [info] block_id: 3a9b20db-8ede-4115-ba77-a19daf566cb9, type: Blocks, state: running, event:"},{"event":"cmd_output","timestamp":1607098232,"output":" exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098232,"output":"[22m\n16:10:32.208 [info] ppl_id: 122a2a60-c45e-4a43-baa6-937d4dd2b879, type: PplRequests, event: p"},{"event":"cmd_output","timestamp":1607098232,"output":"ersisted definition for request with request_token: 3aeeccf0-364b-11eb-a84e-5254005464e2, origin: El"},{"event":"cmd_output","timestamp":1607098232,"output":"ixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:32.215 [i"},{"event":"cmd_output","timestamp":1607098232,"output":"nfo] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queu"},{"event":"cmd_output","timestamp":1607098232,"output":"es\">, inserted_at: ~N[2020-12-04 16:10:32.212968], name: \"refs/tags/v1.9-.semaphore/semaphore.yml\", "},{"event":"cmd_output","timestamp":1607098232,"output":"organization_id: \"717b50d6-1947-4ad5-85c3-61bc813c984f\", project_id: \"list_grouped_ks\", queue_id: \"7"},{"event":"cmd_output","timestamp":1607098232,"output":"506c306-476f-479f-803e-066e2fe1555c\", scope: \"project\", updated_at: ~N[2020-12-04 16:10:32.212978], "},{"event":"cmd_output","timestamp":1607098232,"output":"user_generated: false}}\n\u001b[0m\u001b[22m\n16:10:32.219 [info] ppl_id: 2ca25cfc-4a35-4375-8efe-76f3163c59e"},{"event":"cmd_output","timestamp":1607098232,"output":"e, type: PplRequests, event: persisted source_args for pipeline: 2ca25cfc-4a35-4375-8efe-76f3163c59e"},{"event":"cmd_output","timestamp":1607098232,"output":"e, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:"},{"event":"cmd_output","timestamp":1607098232,"output":"32.219 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1("},{"event":"cmd_output","timestamp":1607098232,"output":"L105), \n\u001b[0m\u001b[22m\n16:10:32.219 [info] ppl_id: 122a2a60-c45e-4a43-baa6-937d4dd2b879, type: PplBloc"},{"event":"cmd_output","timestamp":1607098232,"output":"ks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSu"},{"event":"cmd_output","timestamp":1607098232,"output":"bInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:32.222 [info] ppl_id: 2ca25c"},{"event":"cmd_output","timestamp":1607098232,"output":"fc-4a35-4375-8efe-76f3163c59ee, type: PplSubInits, state: fetching, event: exit_scheduling, recovery"},{"event":"cmd_output","timestamp":1607098232,"output":"_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.224 [info] "},{"event":"cmd_output","timestamp":1607098232,"output":" ppl_id: 122a2a60-c45e-4a43-baa6-937d4dd2b879, type: PplSubInits, state: done, result: passed, event"},{"event":"cmd_output","timestamp":1607098232,"output":": exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098232,"output":"\u001b[22m\n16:10:32.245 [info] block_id: 3a9b20db-8ede-4115-ba77-a19daf566cb9, type: Tasks, state: runn"},{"event":"cmd_output","timestamp":1607098232,"output":"ing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L9"},{"event":"cmd_output","timestamp":1607098232,"output":"0), \n\u001b[0m\u001b[22m\n16:10:32.246 [info] ppl_id: 122a2a60-c45e-4a43-baa6-937d4dd2b879, type: PplBlocks,"},{"event":"cmd_output","timestamp":1607098232,"output":" block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.ST"},{"event":"cmd_output","timestamp":1607098232,"output":"M.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.248 [info] ppl_id: 122a2a60-c45e-4a43-baa6-93"},{"event":"cmd_output","timestamp":1607098232,"output":"7d4dd2b879, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Lo"},{"event":"cmd_output","timestamp":1607098232,"output":"oper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.266 [info] ppl_id: 2ca25cfc-4a35-4375-"},{"event":"cmd_output","timestamp":1607098232,"output":"8efe-76f3163c59ee, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0"},{"event":"cmd_output","timestamp":1607098232,"output":", origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.268 [info] ppl_id: "},{"event":"cmd_output","timestamp":1607098232,"output":"122a2a60-c45e-4a43-baa6-937d4dd2b879, type: Ppls, state: queuing, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098232,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.268 [info] b"},{"event":"cmd_output","timestamp":1607098232,"output":"lock_id: 4d35def6-6f84-4c03-bd6f-b03d275c0ad3, type: Tasks, state: done, event: exit_scheduling, rec"},{"event":"cmd_output","timestamp":1607098232,"output":"overy_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.279 [i"},{"event":"cmd_output","timestamp":1607098232,"output":"nfo] block_id: 4d35def6-6f84-4c03-bd6f-b03d275c0ad3, type: Blocks, state: done, event: exit_schedul"},{"event":"cmd_output","timestamp":1607098232,"output":"ing, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:3"},{"event":"cmd_output","timestamp":1607098232,"output":"2.290 [info] ppl_id: 122a2a60-c45e-4a43-baa6-937d4dd2b879, type: Ppls, state: running, event: exit_"},{"event":"cmd_output","timestamp":1607098232,"output":"scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098232,"output":"16:10:32.294 [info] ppl_id: cfafd963-cc5d-4c5a-ba9e-d57db9329973, block_id: 4d35def6-6f84-4c03-bd6f"},{"event":"cmd_output","timestamp":1607098232,"output":"-b03d275c0ad3, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling,"},{"event":"cmd_output","timestamp":1607098232,"output":" recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.30"},{"event":"cmd_output","timestamp":1607098232,"output":"0 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"122a2a60-c45e-4a43-baa6-9"},{"event":"cmd_output","timestamp":1607098232,"output":"37d4dd2b879\"\n\u001b[0m\u001b[22m\n16:10:32.307 [info] ppl_id: 2ca25cfc-4a35-4375-8efe-76f3163c59ee, type: Pp"},{"event":"cmd_output","timestamp":1607098232,"output":"lRequests, event: persisted definition for request with request_token: 3af6c478-364b-11eb-bba2-52540"},{"event":"cmd_output","timestamp":1607098232,"output":"05464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098232,"output":"2m\n16:10:32.312 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Meta"},{"event":"cmd_output","timestamp":1607098232,"output":"data<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:10:32.310375], name: \"refs/tags/v1.10-.semaph"},{"event":"cmd_output","timestamp":1607098232,"output":"ore/semaphore.yml\", organization_id: \"e3c90ed9-473b-4264-8174-46e4378b45c4\", project_id: \"list_group"},{"event":"cmd_output","timestamp":1607098232,"output":"ed_ks\", queue_id: \"b81faa9a-ff2b-4f79-b4eb-306c77dcd284\", scope: \"project\", updated_at: ~N[2020-12-0"},{"event":"cmd_output","timestamp":1607098232,"output":"4 16:10:32.310385], user_generated: false}}\n\u001b[0m\u001b[22m\n16:10:32.316 [info] block_id: 6012c31f-d0cb"},{"event":"cmd_output","timestamp":1607098232,"output":"-4120-8636-afeca6ab6d91, type: BlockRequests, event: persisted block run request from ppl 122a2a60-c"},{"event":"cmd_output","timestamp":1607098232,"output":"45e-4a43-baa6-937d4dd2b879 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQuerie"},{"event":"cmd_output","timestamp":1607098232,"output":"s.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:32.320 [info] event: created, origin: Elixir.Ppl.PplS"},{"event":"cmd_output","timestamp":1607098232,"output":"ubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:32.320 [info] ppl_id: 2ca25"},{"event":"cmd_output","timestamp":1607098232,"output":"cfc-4a35-4375-8efe-76f3163c59ee, type: PplBlocks, block_index: 0, state: initializing, event: create"},{"event":"cmd_output","timestamp":1607098232,"output":"d, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n"},{"event":"cmd_output","timestamp":1607098232,"output":"\u001b[0m\u001b[22m\n16:10:32.323 [info] ppl_id: 2ca25cfc-4a35-4375-8efe-76f3163c59ee, type: PplSubInits, sta"},{"event":"cmd_output","timestamp":1607098232,"output":"te: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl."},{"event":"cmd_output","timestamp":1607098232,"output":"log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.324 [info] ppl_id: cfafd963-cc5d-4c5a-ba9e-d57db9329"},{"event":"cmd_output","timestamp":1607098232,"output":"973, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098232,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.327 [info] block_id: 6012c31f-d0"},{"event":"cmd_output","timestamp":1607098232,"output":"cb-4120-8636-afeca6ab6d91, type: Blocks, state: initializing, event: initializing, recovery_count: 0"},{"event":"cmd_output","timestamp":1607098232,"output":", origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:32.330 [info] B"},{"event":"cmd_output","timestamp":1607098232,"output":"lock 0 of pipeline with id: 122a2a60-c45e-4a43-baa6-937d4dd2b879 scheduled in block service with id:"},{"event":"cmd_output","timestamp":1607098232,"output":" : \"6012c31f-d0cb-4120-8636-afeca6ab6d91\"\n\u001b[0m\u001b[22m\n16:10:32.334 [info] ppl_id: 122a2a60-c45e-4a4"},{"event":"cmd_output","timestamp":1607098232,"output":"3-baa6-937d4dd2b879, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recove"},{"event":"cmd_output","timestamp":1607098232,"output":"ry_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.338 [info"},{"event":"cmd_output","timestamp":1607098232,"output":"] ppl_id: 781110ae-292e-4deb-85e8-7c35907ee65a, type: PplRequests, event: persisted source_args for"},{"event":"cmd_output","timestamp":1607098232,"output":" pipeline: 781110ae-292e-4deb-85e8-7c35907ee65a, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQue"},{"event":"cmd_output","timestamp":1607098232,"output":"ries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:32.341 [info] block_id: 6012c31f-d0cb-4120-8636-afeca"},{"event":"cmd_output","timestamp":1607098232,"output":"6ab6d91, type: BlockRequests, event: persisted build and sub_ppl details for block_request: 6012c31f"},{"event":"cmd_output","timestamp":1607098232,"output":"-d0cb-4120-8636-afeca6ab6d91, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_b"},{"event":"cmd_output","timestamp":1607098232,"output":"uild/2(L41), \n\u001b[0m\u001b[22m\n16:10:32.345 [info] block_id: 6012c31f-d0cb-4120-8636-afeca6ab6d91, type:"},{"event":"cmd_output","timestamp":1607098232,"output":" Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.In"},{"event":"cmd_output","timestamp":1607098232,"output":"itializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:32.346 [info] ppl_id: 2ca25cfc-4a35-4375-8efe-7"},{"event":"cmd_output","timestamp":1607098232,"output":"6f3163c59ee, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098232,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.348 [info] ppl_id: 781110ae-292e-4deb"},{"event":"cmd_output","timestamp":1607098232,"output":"-85e8-7c35907ee65a, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098232,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.351 [info] block_id: 6"},{"event":"cmd_output","timestamp":1607098232,"output":"012c31f-d0cb-4120-8636-afeca6ab6d91, type: Blocks, state: running, event: exit_scheduling, recovery_"},{"event":"cmd_output","timestamp":1607098232,"output":"count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.352 [info] "},{"event":"cmd_output","timestamp":1607098232,"output":"ppl_id: 2ca25cfc-4a35-4375-8efe-76f3163c59ee, type: PplBlocks, block_index: 0, state: waiting, event"},{"event":"cmd_output","timestamp":1607098232,"output":": exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098232,"output":"\u001b[22m\n16:10:32.377 [info] block_id: 6012c31f-d0cb-4120-8636-afeca6ab6d91, type: Tasks, state: runn"},{"event":"cmd_output","timestamp":1607098232,"output":"ing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L9"},{"event":"cmd_output","timestamp":1607098232,"output":"0), \n\u001b[0m\u001b[22m\n16:10:32.381 [info] ppl_id: 2ca25cfc-4a35-4375-8efe-76f3163c59ee, type: Ppls, stat"},{"event":"cmd_output","timestamp":1607098232,"output":"e: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chan"},{"event":"cmd_output","timestamp":1607098232,"output":"ge/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.393 [info] ppl_id: 781110ae-292e-4deb-85e8-7c35907ee65a, type: Ppl"},{"event":"cmd_output","timestamp":1607098232,"output":"SubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM."},{"event":"cmd_output","timestamp":1607098232,"output":"Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.402 [info] block_id: 3a9b20db-8ede-4115-ba77-a1"},{"event":"cmd_output","timestamp":1607098232,"output":"9daf566cb9, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loop"},{"event":"cmd_output","timestamp":1607098232,"output":"er.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.403 [info] ppl_id: 2ca25cfc-4a35-4375-8e"},{"event":"cmd_output","timestamp":1607098232,"output":"fe-76f3163c59ee, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098232,"output":"ir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.411 [info] block_id: 3a9b20db-8ed"},{"event":"cmd_output","timestamp":1607098232,"output":"e-4115-ba77-a19daf566cb9, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098232,"output":"in: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.419 [info] PplBlocks Wait"},{"event":"cmd_output","timestamp":1607098232,"output":"ingState STM is scheduling block 0 from pipeline: \"2ca25cfc-4a35-4375-8efe-76f3163c59ee\"\n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098232,"output":"\n16:10:32.429 [info] ppl_id: dbfcdf51-3c83-4a4d-a645-035067649428, block_id: 3a9b20db-8ede-4115-ba7"},{"event":"cmd_output","timestamp":1607098232,"output":"7-a19daf566cb9, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling"},{"event":"cmd_output","timestamp":1607098232,"output":", recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.4"},{"event":"cmd_output","timestamp":1607098232,"output":"32 [info] block_id: 9855eba8-14f8-43e6-b8f4-a0f1e7a0e7cf, type: BlockRequests, event: persisted blo"},{"event":"cmd_output","timestamp":1607098232,"output":"ck run request from ppl 2ca25cfc-4a35-4375-8efe-76f3163c59ee for block 0, origin: Elixir.Block.Block"},{"event":"cmd_output","timestamp":1607098232,"output":"Requests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:32.439 [info] block"},{"event":"cmd_output","timestamp":1607098232,"output":"_id: 9855eba8-14f8-43e6-b8f4-a0f1e7a0e7cf, type: Blocks, state: initializing, event: initializing, r"},{"event":"cmd_output","timestamp":1607098232,"output":"ecovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:"},{"event":"cmd_output","timestamp":1607098232,"output":"32.443 [info] Block 0 of pipeline with id: 2ca25cfc-4a35-4375-8efe-76f3163c59ee scheduled in block "},{"event":"cmd_output","timestamp":1607098232,"output":"service with id: : \"9855eba8-14f8-43e6-b8f4-a0f1e7a0e7cf\"\n\u001b[0m\u001b[22m\n16:10:32.446 [info] ppl_id: 2"},{"event":"cmd_output","timestamp":1607098232,"output":"ca25cfc-4a35-4375-8efe-76f3163c59ee, type: PplBlocks, block_index: 0, state: running, event: exit_sc"},{"event":"cmd_output","timestamp":1607098232,"output":"heduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098232,"output":":10:32.448 [info] block_id: 9855eba8-14f8-43e6-b8f4-a0f1e7a0e7cf, type: BlockRequests, event: persi"},{"event":"cmd_output","timestamp":1607098232,"output":"sted build and sub_ppl details for block_request: 9855eba8-14f8-43e6-b8f4-a0f1e7a0e7cf, origin: Elix"},{"event":"cmd_output","timestamp":1607098232,"output":"ir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:32.449 [in"},{"event":"cmd_output","timestamp":1607098232,"output":"fo] ppl_id: 781110ae-292e-4deb-85e8-7c35907ee65a, type: PplRequests, event: persisted definition fo"},{"event":"cmd_output","timestamp":1607098232,"output":"r request with request_token: 3afbeff2-364b-11eb-94a6-5254005464e2, origin: Elixir.Ppl.PplRequests.M"},{"event":"cmd_output","timestamp":1607098232,"output":"odel.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:32.454 [info] block_id: 9855eb"},{"event":"cmd_output","timestamp":1607098232,"output":"a8-14f8-43e6-b8f4-a0f1e7a0e7cf, type: Tasks, state: pending, event: created, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098232,"output":"in: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:32.455 [inf"},{"event":"cmd_output","timestamp":1607098232,"output":"o] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues"},{"event":"cmd_output","timestamp":1607098232,"output":"\">, inserted_at: ~N[2020-12-04 16:10:32.454095], name: \"refs/tags/v1.11-.semaphore/semaphore.yml\", o"},{"event":"cmd_output","timestamp":1607098232,"output":"rganization_id: \"46ee7156-0f30-4b1c-8c41-5dcb1a18b916\", project_id: \"list_grouped_ks\", queue_id: \"5f"},{"event":"cmd_output","timestamp":1607098232,"output":"b15fc4-12da-4c1b-a355-59e94fa836a4\", scope: \"project\", updated_at: ~N[2020-12-04 16:10:32.454106], u"},{"event":"cmd_output","timestamp":1607098232,"output":"ser_generated: false}}\n\u001b[0m\u001b[22m\n16:10:32.459 [info] block_id: 9855eba8-14f8-43e6-b8f4-a0f1e7a0e7"},{"event":"cmd_output","timestamp":1607098232,"output":"cf, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.S"},{"event":"cmd_output","timestamp":1607098232,"output":"TM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.460 [info] ppl_id: dbfcdf51-3c83-4a4d-a645-0"},{"event":"cmd_output","timestamp":1607098232,"output":"35067649428, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098232,"output":"gin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.462 [info] event: create"},{"event":"cmd_output","timestamp":1607098232,"output":"d, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:32"},{"event":"cmd_output","timestamp":1607098232,"output":".462 [info] ppl_id: 781110ae-292e-4deb-85e8-7c35907ee65a, type: PplBlocks, block_index: 0, state: i"},{"event":"cmd_output","timestamp":1607098232,"output":"nitializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularIni"},{"event":"cmd_output","timestamp":1607098232,"output":"tState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:32.467 [info] ppl_id: 781110ae-292e-4deb-85e8-7c35907ee6"},{"event":"cmd_output","timestamp":1607098232,"output":"5a, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098232,"output":"n: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.470 [info] ppl_id: 3bb0af1"},{"event":"cmd_output","timestamp":1607098232,"output":"f-a347-463e-abf1-40b45aadd842, type: PplRequests, event: persisted source_args for pipeline: 3bb0af1"},{"event":"cmd_output","timestamp":1607098232,"output":"f-a347-463e-abf1-40b45aadd842, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source"},{"event":"cmd_output","timestamp":1607098232,"output":"/2(L89), \n\u001b[0m\u001b[22m\n16:10:32.475 [info] ppl_id: 781110ae-292e-4deb-85e8-7c35907ee65a, type: PplBl"},{"event":"cmd_output","timestamp":1607098232,"output":"ocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loop"},{"event":"cmd_output","timestamp":1607098232,"output":"er.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.476 [info] ppl_id: 3bb0af1f-a347-463e-ab"},{"event":"cmd_output","timestamp":1607098232,"output":"f1-40b45aadd842, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098232,"output":"in: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.484 [info] block_id: 9855"},{"event":"cmd_output","timestamp":1607098232,"output":"eba8-14f8-43e6-b8f4-a0f1e7a0e7cf, type: Tasks, state: running, event: exit_scheduling, recovery_coun"},{"event":"cmd_output","timestamp":1607098232,"output":"t: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.489 [info] ppl_"},{"event":"cmd_output","timestamp":1607098232,"output":"id: 781110ae-292e-4deb-85e8-7c35907ee65a, type: Ppls, state: pending, event: exit_scheduling, recove"},{"event":"cmd_output","timestamp":1607098232,"output":"ry_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.498 [info"},{"event":"cmd_output","timestamp":1607098232,"output":"] ppl_id: 781110ae-292e-4deb-85e8-7c35907ee65a, type: Ppls, state: queuing, event: exit_scheduling,"},{"event":"cmd_output","timestamp":1607098232,"output":" recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.51"},{"event":"cmd_output","timestamp":1607098232,"output":"2 [info] ppl_id: 3bb0af1f-a347-463e-abf1-40b45aadd842, type: PplSubInits, state: regular_init, even"},{"event":"cmd_output","timestamp":1607098232,"output":"t: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098232,"output":"m\u001b[22m\n16:10:32.523 [info] block_id: 6012c31f-d0cb-4120-8636-afeca6ab6d91, type: Tasks, state: don"},{"event":"cmd_output","timestamp":1607098232,"output":"e, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90)"},{"event":"cmd_output","timestamp":1607098232,"output":", \n\u001b[0m\u001b[22m\n16:10:32.526 [info] ppl_id: 781110ae-292e-4deb-85e8-7c35907ee65a, type: Ppls, state:"},{"event":"cmd_output","timestamp":1607098232,"output":" running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change"},{"event":"cmd_output","timestamp":1607098232,"output":"/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.532 [info] block_id: 6012c31f-d0cb-4120-8636-afeca6ab6d91, type: Blo"},{"event":"cmd_output","timestamp":1607098232,"output":"cks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_stat"},{"event":"cmd_output","timestamp":1607098232,"output":"e_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.539 [info] PplBlocks WaitingState STM is scheduling block 0 "},{"event":"cmd_output","timestamp":1607098232,"output":"from pipeline: \"781110ae-292e-4deb-85e8-7c35907ee65a\"\n\u001b[0m\u001b[22m\n16:10:32.548 [info] block_id: 57f"},{"event":"cmd_output","timestamp":1607098232,"output":"304bf-3ddb-4b29-8217-fdbe1c5c3dae, type: BlockRequests, event: persisted block run request from ppl "},{"event":"cmd_output","timestamp":1607098232,"output":"781110ae-292e-4deb-85e8-7c35907ee65a for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequ"},{"event":"cmd_output","timestamp":1607098232,"output":"estsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:32.549 [info] ppl_id: 122a2a60-c45e-4a43-ba"},{"event":"cmd_output","timestamp":1607098232,"output":"a6-937d4dd2b879, block_id: 6012c31f-d0cb-4120-8636-afeca6ab6d91, type: PplBlocks, block_index: 0, st"},{"event":"cmd_output","timestamp":1607098232,"output":"ate: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl"},{"event":"cmd_output","timestamp":1607098232,"output":".log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.549 [info] block_id: 57f304bf-3ddb-4b29-8217-fdbe1c"},{"event":"cmd_output","timestamp":1607098232,"output":"5c3dae, type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Bl"},{"event":"cmd_output","timestamp":1607098232,"output":"ock.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:32.555 [info] block_id: 57f304bf-3"},{"event":"cmd_output","timestamp":1607098232,"output":"ddb-4b29-8217-fdbe1c5c3dae, type: BlockRequests, event: persisted build and sub_ppl details for bloc"},{"event":"cmd_output","timestamp":1607098232,"output":"k_request: 57f304bf-3ddb-4b29-8217-fdbe1c5c3dae, origin: Elixir.Block.BlockRequests.Model.BlockReque"},{"event":"cmd_output","timestamp":1607098232,"output":"stsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:32.556 [info] Block 0 of pipeline with id: 78111"},{"event":"cmd_output","timestamp":1607098232,"output":"0ae-292e-4deb-85e8-7c35907ee65a scheduled in block service with id: : \"57f304bf-3ddb-4b29-8217-fdbe1"},{"event":"cmd_output","timestamp":1607098232,"output":"c5c3dae\"\n\u001b[0m\u001b[22m\n16:10:32.560 [info] ppl_id: 781110ae-292e-4deb-85e8-7c35907ee65a, type: PplBlo"},{"event":"cmd_output","timestamp":1607098232,"output":"cks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loope"},{"event":"cmd_output","timestamp":1607098232,"output":"r.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.564 [info] block_id: 57f304bf-3ddb-4b29-8"},{"event":"cmd_output","timestamp":1607098232,"output":"217-fdbe1c5c3dae, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Blo"},{"event":"cmd_output","timestamp":1607098232,"output":"ck.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:32.566 [info] block_id: "},{"event":"cmd_output","timestamp":1607098232,"output":"57f304bf-3ddb-4b29-8217-fdbe1c5c3dae, type: Blocks, state: running, event: exit_scheduling, recovery"},{"event":"cmd_output","timestamp":1607098232,"output":"_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.568 [info] "},{"event":"cmd_output","timestamp":1607098232,"output":" ppl_id: 3bb0af1f-a347-463e-abf1-40b45aadd842, type: PplRequests, event: persisted definition for re"},{"event":"cmd_output","timestamp":1607098232,"output":"quest with request_token: 3b016720-364b-11eb-a915-5254005464e2, origin: Elixir.Ppl.PplRequests.Model"},{"event":"cmd_output","timestamp":1607098232,"output":".PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:32.572 [info] Queue persisted: {:o"},{"event":"cmd_output","timestamp":1607098232,"output":"k, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020"},{"event":"cmd_output","timestamp":1607098232,"output":"-12-04 16:10:32.570170], name: \"pull-request-1212-.semaphore/semaphore.yml\", organization_id: \"14a5b"},{"event":"cmd_output","timestamp":1607098232,"output":"091-9a4d-42e5-ab35-4d0dd2c62b3f\", project_id: \"list_grouped_ks\", queue_id: \"4aa0fbbc-4a75-4a5a-9943-"},{"event":"cmd_output","timestamp":1607098232,"output":"23f5bc78336a\", scope: \"project\", updated_at: ~N[2020-12-04 16:10:32.570181], user_generated: false}}"},{"event":"cmd_output","timestamp":1607098232,"output":"\n\u001b[0m\u001b[22m\n16:10:32.584 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularI"},{"event":"cmd_output","timestamp":1607098232,"output":"nitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:32.584 [info] ppl_id: 3bb0af1f-a347-463e-abf1-40b45aad"},{"event":"cmd_output","timestamp":1607098232,"output":"d842, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098232,"output":"n: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:32.587 [in"},{"event":"cmd_output","timestamp":1607098232,"output":"fo] ppl_id: 122a2a60-c45e-4a43-baa6-937d4dd2b879, type: Ppls, state: done, result: passed, event: e"},{"event":"cmd_output","timestamp":1607098232,"output":"xit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098232,"output":"2m\n16:10:32.588 [info] ppl_id: 3bb0af1f-a347-463e-abf1-40b45aadd842, type: PplSubInits, state: don"},{"event":"cmd_output","timestamp":1607098232,"output":"e, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_sta"},{"event":"cmd_output","timestamp":1607098232,"output":"te_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.596 [info] ppl_id: 3dfbf506-8b31-45a8-9a07-171cd6636cea, ty"},{"event":"cmd_output","timestamp":1607098232,"output":"pe: PplRequests, event: persisted source_args for pipeline: 3dfbf506-8b31-45a8-9a07-171cd6636cea, or"},{"event":"cmd_output","timestamp":1607098232,"output":"igin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:32.59"},{"event":"cmd_output","timestamp":1607098232,"output":"7 [info] block_id: 57f304bf-3ddb-4b29-8217-fdbe1c5c3dae, type: Tasks, state: running, event: exit_s"},{"event":"cmd_output","timestamp":1607098232,"output":"cheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098232,"output":"6:10:32.600 [info] ppl_id: 3bb0af1f-a347-463e-abf1-40b45aadd842, type: PplBlocks, block_index: 0, s"},{"event":"cmd_output","timestamp":1607098232,"output":"tate: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098232,"output":"hange/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.600 [info] ppl_id: 3bb0af1f-a347-463e-abf1-40b45aadd842, type: "},{"event":"cmd_output","timestamp":1607098232,"output":"Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_"},{"event":"cmd_output","timestamp":1607098232,"output":"state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.603 [info] ppl_id: 3dfbf506-8b31-45a8-9a07-171cd6636cea,"},{"event":"cmd_output","timestamp":1607098232,"output":" type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loope"},{"event":"cmd_output","timestamp":1607098232,"output":"r.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.611 [info] ppl_id: 3bb0af1f-a347-463e-abf"},{"event":"cmd_output","timestamp":1607098232,"output":"1-40b45aadd842, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098232,"output":"r.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.623 [info] ppl_id: 3bb0af1f-a347-4"},{"event":"cmd_output","timestamp":1607098232,"output":"63e-abf1-40b45aadd842, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098232,"output":": Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.633 [info] PplBlocks Waitin"},{"event":"cmd_output","timestamp":1607098232,"output":"gState STM is scheduling block 0 from pipeline: \"3bb0af1f-a347-463e-abf1-40b45aadd842\"\n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098232,"output":"6:10:32.640 [info] block_id: 9855eba8-14f8-43e6-b8f4-a0f1e7a0e7cf, type: Tasks, state: done, event:"},{"event":"cmd_output","timestamp":1607098232,"output":" exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098232,"output":"[22m\n16:10:32.641 [info] ppl_id: 3dfbf506-8b31-45a8-9a07-171cd6636cea, type: PplSubInits, state: r"},{"event":"cmd_output","timestamp":1607098232,"output":"egular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_cha"},{"event":"cmd_output","timestamp":1607098232,"output":"nge/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.644 [info] block_id: 870a8cfb-672f-46f9-a21c-dd869061cdb6, type: "},{"event":"cmd_output","timestamp":1607098232,"output":"BlockRequests, event: persisted block run request from ppl 3bb0af1f-a347-463e-abf1-40b45aadd842 for "},{"event":"cmd_output","timestamp":1607098232,"output":"block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b["},{"event":"cmd_output","timestamp":1607098232,"output":"0m\u001b[22m\n16:10:32.647 [info] block_id: 870a8cfb-672f-46f9-a21c-dd869061cdb6, type: Blocks, state: i"},{"event":"cmd_output","timestamp":1607098232,"output":"nitializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries"},{"event":"cmd_output","timestamp":1607098232,"output":".insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:32.649 [info] block_id: 9855eba8-14f8-43e6-b8f4-a0f1e7a0e7cf, ty"},{"event":"cmd_output","timestamp":1607098232,"output":"pe: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.l"},{"event":"cmd_output","timestamp":1607098232,"output":"og_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.651 [info] Block 0 of pipeline with id: 3bb0af1f-a347"},{"event":"cmd_output","timestamp":1607098232,"output":"-463e-abf1-40b45aadd842 scheduled in block service with id: : \"870a8cfb-672f-46f9-a21c-dd869061cdb6\""},{"event":"cmd_output","timestamp":1607098232,"output":"\n\u001b[0m\u001b[22m\n16:10:32.657 [info] ppl_id: 3bb0af1f-a347-463e-abf1-40b45aadd842, type: PplBlocks, blo"},{"event":"cmd_output","timestamp":1607098232,"output":"ck_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Im"},{"event":"cmd_output","timestamp":1607098232,"output":"pl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.662 [info] block_id: 870a8cfb-672f-46f9-a21c-dd86"},{"event":"cmd_output","timestamp":1607098232,"output":"9061cdb6, type: BlockRequests, event: persisted build and sub_ppl details for block_request: 870a8cf"},{"event":"cmd_output","timestamp":1607098232,"output":"b-672f-46f9-a21c-dd869061cdb6, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_"},{"event":"cmd_output","timestamp":1607098232,"output":"build/2(L41), \n\u001b[0m\u001b[22m\n16:10:32.664 [info] block_id: 870a8cfb-672f-46f9-a21c-dd869061cdb6, type"},{"event":"cmd_output","timestamp":1607098232,"output":": Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.I"},{"event":"cmd_output","timestamp":1607098232,"output":"nitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:32.667 [info] block_id: 870a8cfb-672f-46f9-a21"},{"event":"cmd_output","timestamp":1607098232,"output":"c-dd869061cdb6, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098232,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.668 [info] ppl_id: 2ca25cfc-4a35"},{"event":"cmd_output","timestamp":1607098232,"output":"-4375-8efe-76f3163c59ee, block_id: 9855eba8-14f8-43e6-b8f4-a0f1e7a0e7cf, type: PplBlocks, block_inde"},{"event":"cmd_output","timestamp":1607098232,"output":"x: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper."},{"event":"cmd_output","timestamp":1607098232,"output":"STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.687 [info] block_id: 870a8cfb-672f-46f9-a21"},{"event":"cmd_output","timestamp":1607098232,"output":"c-dd869061cdb6, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098232,"output":"ir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.693 [info] ppl_id: 3dfbf506-8b31-"},{"event":"cmd_output","timestamp":1607098232,"output":"45a8-9a07-171cd6636cea, type: PplRequests, event: persisted definition for request with request_toke"},{"event":"cmd_output","timestamp":1607098232,"output":"n: 3b0a2b44-364b-11eb-a119-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.ins"},{"event":"cmd_output","timestamp":1607098232,"output":"ert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:32.694 [info] ppl_id: 2ca25cfc-4a35-4375-8efe-76f3163c59e"},{"event":"cmd_output","timestamp":1607098232,"output":"e, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098232,"output":"r.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.698 [info] Queue persisted: {:ok, "},{"event":"cmd_output","timestamp":1607098232,"output":"%Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12"},{"event":"cmd_output","timestamp":1607098232,"output":"-04 16:10:32.696444], name: \"pull-request-1213-.semaphore/semaphore.yml\", organization_id: \"ffa8028d"},{"event":"cmd_output","timestamp":1607098232,"output":"-2e3a-4ac8-aeb6-75f30f6bb69f\", project_id: \"list_grouped_ks\", queue_id: \"a9173681-6c16-4dc5-a399-efb"},{"event":"cmd_output","timestamp":1607098232,"output":"2c73f1991\", scope: \"project\", updated_at: ~N[2020-12-04 16:10:32.696494], user_generated: false}}\n\u001b"},{"event":"cmd_output","timestamp":1607098232,"output":"[0m\u001b[22m\n16:10:32.703 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInit"},{"event":"cmd_output","timestamp":1607098232,"output":"State.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:32.703 [info] ppl_id: 3dfbf506-8b31-45a8-9a07-171cd6636ce"},{"event":"cmd_output","timestamp":1607098232,"output":"a, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098232,"output":"Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:32.705 [info]"},{"event":"cmd_output","timestamp":1607098232,"output":" ppl_id: 3dfbf506-8b31-45a8-9a07-171cd6636cea, type: PplSubInits, state: done, result: passed, even"},{"event":"cmd_output","timestamp":1607098232,"output":"t: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098232,"output":"m\u001b[22m\n16:10:32.714 [info] ppl_id: 3dfbf506-8b31-45a8-9a07-171cd6636cea, type: PplBlocks, block_in"},{"event":"cmd_output","timestamp":1607098232,"output":"dex: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.lo"},{"event":"cmd_output","timestamp":1607098232,"output":"g_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.714 [info] ppl_id: 3dfbf506-8b31-45a8-9a07-171cd6636ce"},{"event":"cmd_output","timestamp":1607098232,"output":"a, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM."},{"event":"cmd_output","timestamp":1607098232,"output":"Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.716 [info] ppl_id: c47a6c5b-5f4c-4e18-978f-cbdd"},{"event":"cmd_output","timestamp":1607098232,"output":"ae202121, type: PplRequests, event: persisted source_args for pipeline: c47a6c5b-5f4c-4e18-978f-cbdd"},{"event":"cmd_output","timestamp":1607098232,"output":"ae202121, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098232,"output":"\n16:10:32.719 [info] ppl_id: c47a6c5b-5f4c-4e18-978f-cbddae202121, type: PplSubInits, state: fetchi"},{"event":"cmd_output","timestamp":1607098232,"output":"ng, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90"},{"event":"cmd_output","timestamp":1607098232,"output":"), \n\u001b[0m\u001b[22m\n16:10:32.726 [info] ppl_id: 3dfbf506-8b31-45a8-9a07-171cd6636cea, type: Ppls, state"},{"event":"cmd_output","timestamp":1607098232,"output":": queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chang"},{"event":"cmd_output","timestamp":1607098232,"output":"e/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.739 [info] ppl_id: 3dfbf506-8b31-45a8-9a07-171cd6636cea, type: Ppls"},{"event":"cmd_output","timestamp":1607098232,"output":", state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_stat"},{"event":"cmd_output","timestamp":1607098232,"output":"e_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.749 [info] PplBlocks WaitingState STM is scheduling block 0 "},{"event":"cmd_output","timestamp":1607098232,"output":"from pipeline: \"3dfbf506-8b31-45a8-9a07-171cd6636cea\"\n\u001b[0m\u001b[22m\n16:10:32.753 [info] ppl_id: c47a6"},{"event":"cmd_output","timestamp":1607098232,"output":"c5b-5f4c-4e18-978f-cbddae202121, type: PplSubInits, state: regular_init, event: exit_scheduling, rec"},{"event":"cmd_output","timestamp":1607098232,"output":"overy_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.761 [i"},{"event":"cmd_output","timestamp":1607098232,"output":"nfo] block_id: 57f304bf-3ddb-4b29-8217-fdbe1c5c3dae, type: Tasks, state: done, event: exit_scheduli"},{"event":"cmd_output","timestamp":1607098232,"output":"ng, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32"},{"event":"cmd_output","timestamp":1607098232,"output":".761 [info] block_id: b5008f04-4173-4abb-a4da-25ff8f698db3, type: BlockRequests, event: persisted b"},{"event":"cmd_output","timestamp":1607098232,"output":"lock run request from ppl 3dfbf506-8b31-45a8-9a07-171cd6636cea for block 0, origin: Elixir.Block.Blo"},{"event":"cmd_output","timestamp":1607098232,"output":"ckRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:32.767 [info] blo"},{"event":"cmd_output","timestamp":1607098232,"output":"ck_id: b5008f04-4173-4abb-a4da-25ff8f698db3, type: Blocks, state: initializing, event: initializing,"},{"event":"cmd_output","timestamp":1607098232,"output":" recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098232,"output":"0:32.772 [info] Block 0 of pipeline with id: 3dfbf506-8b31-45a8-9a07-171cd6636cea scheduled in bloc"},{"event":"cmd_output","timestamp":1607098232,"output":"k service with id: : \"b5008f04-4173-4abb-a4da-25ff8f698db3\"\n\u001b[0m\u001b[22m\n16:10:32.775 [info] block_i"},{"event":"cmd_output","timestamp":1607098232,"output":"d: 57f304bf-3ddb-4b29-8217-fdbe1c5c3dae, type: Blocks, state: done, event: exit_scheduling, recovery"},{"event":"cmd_output","timestamp":1607098232,"output":"_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.776 [info] "},{"event":"cmd_output","timestamp":1607098232,"output":" ppl_id: 3dfbf506-8b31-45a8-9a07-171cd6636cea, type: PplBlocks, block_index: 0, state: running, even"},{"event":"cmd_output","timestamp":1607098232,"output":"t: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098232,"output":"m\u001b[22m\n16:10:32.779 [info] block_id: b5008f04-4173-4abb-a4da-25ff8f698db3, type: BlockRequests, ev"},{"event":"cmd_output","timestamp":1607098232,"output":"ent: persisted build and sub_ppl details for block_request: b5008f04-4173-4abb-a4da-25ff8f698db3, or"},{"event":"cmd_output","timestamp":1607098232,"output":"igin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:"},{"event":"cmd_output","timestamp":1607098232,"output":"32.783 [info] block_id: b5008f04-4173-4abb-a4da-25ff8f698db3, type: Tasks, state: pending, event: c"},{"event":"cmd_output","timestamp":1607098232,"output":"reated, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167),"},{"event":"cmd_output","timestamp":1607098232,"output":" \n\u001b[0m\u001b[22m\n16:10:32.793 [info] block_id: b5008f04-4173-4abb-a4da-25ff8f698db3, type: Blocks, sta"},{"event":"cmd_output","timestamp":1607098232,"output":"te: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_cha"},{"event":"cmd_output","timestamp":1607098232,"output":"nge/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.798 [info] ppl_id: 781110ae-292e-4deb-85e8-7c35907ee65a, block_id"},{"event":"cmd_output","timestamp":1607098232,"output":": 57f304bf-3ddb-4b29-8217-fdbe1c5c3dae, type: PplBlocks, block_index: 0, state: done, result: passed"},{"event":"cmd_output","timestamp":1607098232,"output":", event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90),"},{"event":"cmd_output","timestamp":1607098232,"output":" \n\u001b[0m\u001b[22m\n16:10:32.798 [info] ppl_id: c47a6c5b-5f4c-4e18-978f-cbddae202121, type: PplRequests, "},{"event":"cmd_output","timestamp":1607098232,"output":"event: persisted definition for request with request_token: 3b0f1690-364b-11eb-b29d-5254005464e2, or"},{"event":"cmd_output","timestamp":1607098232,"output":"igin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:3"},{"event":"cmd_output","timestamp":1607098232,"output":"2.807 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loade"},{"event":"cmd_output","timestamp":1607098232,"output":"d, \"queues\">, inserted_at: ~N[2020-12-04 16:10:32.802828], name: \"pull-request-1214-.semaphore/semap"},{"event":"cmd_output","timestamp":1607098232,"output":"hore.yml\", organization_id: \"4d76d855-a7cf-42a4-b27b-81b8003b1f3e\", project_id: \"list_grouped_ks\", q"},{"event":"cmd_output","timestamp":1607098232,"output":"ueue_id: \"488ce41d-2701-4440-bf32-16e2b8feab6b\", scope: \"project\", updated_at: ~N[2020-12-04 16:10:3"},{"event":"cmd_output","timestamp":1607098232,"output":"2.802872], user_generated: false}}\n\u001b[0m\u001b[22m\n16:10:32.823 [info] event: created, origin: Elixir.P"},{"event":"cmd_output","timestamp":1607098232,"output":"pl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:32.823 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098232,"output":": c47a6c5b-5f4c-4e18-978f-cbddae202121, type: PplBlocks, block_index: 0, state: initializing, event:"},{"event":"cmd_output","timestamp":1607098232,"output":" created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L1"},{"event":"cmd_output","timestamp":1607098232,"output":"05), \n\u001b[0m\u001b[22m\n16:10:32.826 [info] ppl_id: c47a6c5b-5f4c-4e18-978f-cbddae202121, type: PplSubIni"},{"event":"cmd_output","timestamp":1607098232,"output":"ts, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.ST"},{"event":"cmd_output","timestamp":1607098232,"output":"M.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.832 [info] ppl_id: 781110ae-292e-4deb-85e8-7c"},{"event":"cmd_output","timestamp":1607098232,"output":"35907ee65a, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098232,"output":"in: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.833 [info] block_id: b500"},{"event":"cmd_output","timestamp":1607098232,"output":"8f04-4173-4abb-a4da-25ff8f698db3, type: Tasks, state: running, event: exit_scheduling, recovery_coun"},{"event":"cmd_output","timestamp":1607098232,"output":"t: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.844 [info] ppl_"},{"event":"cmd_output","timestamp":1607098232,"output":"id: c47a6c5b-5f4c-4e18-978f-cbddae202121, type: PplBlocks, block_index: 0, state: waiting, event: ex"},{"event":"cmd_output","timestamp":1607098232,"output":"it_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098232,"output":"m\n16:10:32.847 [info] ppl_id: 19229cb7-c8ed-49ff-9108-cb147b957f1f, type: PplRequests, event: pers"},{"event":"cmd_output","timestamp":1607098232,"output":"isted source_args for pipeline: 19229cb7-c8ed-49ff-9108-cb147b957f1f, origin: Elixir.Ppl.PplRequests"},{"event":"cmd_output","timestamp":1607098232,"output":".Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:32.848 [info] ppl_id: c47a6c5b-5"},{"event":"cmd_output","timestamp":1607098232,"output":"f4c-4e18-978f-cbddae202121, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098232,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.849 [info] ppl_id: 192"},{"event":"cmd_output","timestamp":1607098232,"output":"29cb7-c8ed-49ff-9108-cb147b957f1f, type: PplSubInits, state: fetching, event: exit_scheduling, recov"},{"event":"cmd_output","timestamp":1607098232,"output":"ery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.859 [inf"},{"event":"cmd_output","timestamp":1607098232,"output":"o] ppl_id: c47a6c5b-5f4c-4e18-978f-cbddae202121, type: Ppls, state: queuing, event: exit_scheduling"},{"event":"cmd_output","timestamp":1607098232,"output":", recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.8"},{"event":"cmd_output","timestamp":1607098232,"output":"79 [info] block_id: 870a8cfb-672f-46f9-a21c-dd869061cdb6, type: Tasks, state: done, event: exit_sch"},{"event":"cmd_output","timestamp":1607098232,"output":"eduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098232,"output":"10:32.880 [info] ppl_id: 19229cb7-c8ed-49ff-9108-cb147b957f1f, type: PplSubInits, state: regular_in"},{"event":"cmd_output","timestamp":1607098232,"output":"it, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90"},{"event":"cmd_output","timestamp":1607098232,"output":"), \n\u001b[0m\u001b[22m\n16:10:32.888 [info] block_id: 870a8cfb-672f-46f9-a21c-dd869061cdb6, type: Blocks, s"},{"event":"cmd_output","timestamp":1607098232,"output":"tate: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chan"},{"event":"cmd_output","timestamp":1607098232,"output":"ge/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.891 [info] ppl_id: c47a6c5b-5f4c-4e18-978f-cbddae202121, type: Ppl"},{"event":"cmd_output","timestamp":1607098232,"output":"s, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_sta"},{"event":"cmd_output","timestamp":1607098232,"output":"te_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.904 [info] PplBlocks WaitingState STM is scheduling block 0"},{"event":"cmd_output","timestamp":1607098232,"output":" from pipeline: \"c47a6c5b-5f4c-4e18-978f-cbddae202121\"\n\u001b[0m\u001b[22m\n16:10:32.912 [info] ppl_id: 3bb0"},{"event":"cmd_output","timestamp":1607098232,"output":"af1f-a347-463e-abf1-40b45aadd842, block_id: 870a8cfb-672f-46f9-a21c-dd869061cdb6, type: PplBlocks, b"},{"event":"cmd_output","timestamp":1607098232,"output":"lock_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098232,"output":"r.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.915 [info] block_id: a6f33dc0-5455"},{"event":"cmd_output","timestamp":1607098232,"output":"-4d79-9620-39587a3e5c2f, type: BlockRequests, event: persisted block run request from ppl c47a6c5b-5"},{"event":"cmd_output","timestamp":1607098232,"output":"f4c-4e18-978f-cbddae202121 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQuerie"},{"event":"cmd_output","timestamp":1607098232,"output":"s.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:32.917 [info] block_id: a6f33dc0-5455-4d79-9620-39587"},{"event":"cmd_output","timestamp":1607098232,"output":"a3e5c2f, type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.B"},{"event":"cmd_output","timestamp":1607098232,"output":"lock.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:32.924 [info] Block 0 of pipeline"},{"event":"cmd_output","timestamp":1607098232,"output":" with id: c47a6c5b-5f4c-4e18-978f-cbddae202121 scheduled in block service with id: : \"a6f33dc0-5455-"},{"event":"cmd_output","timestamp":1607098232,"output":"4d79-9620-39587a3e5c2f\"\n\u001b[0m\u001b[22m\n16:10:32.930 [info] block_id: a6f33dc0-5455-4d79-9620-39587a3e5"},{"event":"cmd_output","timestamp":1607098232,"output":"c2f, type: BlockRequests, event: persisted build and sub_ppl details for block_request: a6f33dc0-545"},{"event":"cmd_output","timestamp":1607098232,"output":"5-4d79-9620-39587a3e5c2f, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build"},{"event":"cmd_output","timestamp":1607098232,"output":"/2(L41), \n\u001b[0m\u001b[22m\n16:10:32.931 [info] ppl_id: c47a6c5b-5f4c-4e18-978f-cbddae202121, type: PplBl"},{"event":"cmd_output","timestamp":1607098232,"output":"ocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loop"},{"event":"cmd_output","timestamp":1607098232,"output":"er.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.933 [info] block_id: a6f33dc0-5455-4d79-"},{"event":"cmd_output","timestamp":1607098232,"output":"9620-39587a3e5c2f, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Bl"},{"event":"cmd_output","timestamp":1607098232,"output":"ock.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:32.940 [info] block_id:"},{"event":"cmd_output","timestamp":1607098232,"output":" a6f33dc0-5455-4d79-9620-39587a3e5c2f, type: Blocks, state: running, event: exit_scheduling, recover"},{"event":"cmd_output","timestamp":1607098232,"output":"y_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.946 [info]"},{"event":"cmd_output","timestamp":1607098232,"output":" ppl_id: 19229cb7-c8ed-49ff-9108-cb147b957f1f, type: PplRequests, event: persisted definition for r"},{"event":"cmd_output","timestamp":1607098232,"output":"equest with request_token: 3b14720c-364b-11eb-93ba-5254005464e2, origin: Elixir.Ppl.PplRequests.Mode"},{"event":"cmd_output","timestamp":1607098232,"output":"l.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:32.946 [info] ppl_id: 3bb0af1f-a3"},{"event":"cmd_output","timestamp":1607098232,"output":"47-463e-abf1-40b45aadd842, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery"},{"event":"cmd_output","timestamp":1607098232,"output":"_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.958 [info] "},{"event":"cmd_output","timestamp":1607098232,"output":" Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">,"},{"event":"cmd_output","timestamp":1607098232,"output":" inserted_at: ~N[2020-12-04 16:10:32.951490], name: \"pull-request-1215-.semaphore/semaphore.yml\", or"},{"event":"cmd_output","timestamp":1607098232,"output":"ganization_id: \"1e0889a5-04ae-4843-8795-41912575b37e\", project_id: \"list_grouped_ks\", queue_id: \"9a3"},{"event":"cmd_output","timestamp":1607098232,"output":"2fbdc-ed5f-42b1-90a7-b9b2d920e1ee\", scope: \"project\", updated_at: ~N[2020-12-04 16:10:32.951504], us"},{"event":"cmd_output","timestamp":1607098232,"output":"er_generated: false}}\n\u001b[0m\u001b[22m\n16:10:32.964 [info] block_id: a6f33dc0-5455-4d79-9620-39587a3e5c2"},{"event":"cmd_output","timestamp":1607098232,"output":"f, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM"},{"event":"cmd_output","timestamp":1607098232,"output":".Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.967 [info] event: created, origin: Elixir.Ppl."},{"event":"cmd_output","timestamp":1607098232,"output":"PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:32.967 [info] ppl_id: 1"},{"event":"cmd_output","timestamp":1607098232,"output":"9229cb7-c8ed-49ff-9108-cb147b957f1f, type: PplBlocks, block_index: 0, state: initializing, event: cr"},{"event":"cmd_output","timestamp":1607098232,"output":"eated, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105)"},{"event":"cmd_output","timestamp":1607098232,"output":", \n\u001b[0m\u001b[22m\n16:10:32.973 [info] ppl_id: 19229cb7-c8ed-49ff-9108-cb147b957f1f, type: PplSubInits,"},{"event":"cmd_output","timestamp":1607098232,"output":" state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.I"},{"event":"cmd_output","timestamp":1607098232,"output":"mpl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:32.977 [info] ppl_id: f50e3d3c-2dfc-4506-8aa0-b5c8f"},{"event":"cmd_output","timestamp":1607098232,"output":"42e800b, type: PplRequests, event: persisted source_args for pipeline: f50e3d3c-2dfc-4506-8aa0-b5c8f"},{"event":"cmd_output","timestamp":1607098232,"output":"42e800b, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098232,"output":"16:10:32.980 [info] ppl_id: f50e3d3c-2dfc-4506-8aa0-b5c8f42e800b, type: PplSubInits, state: fetchin"},{"event":"cmd_output","timestamp":1607098232,"output":"g, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90)"},{"event":"cmd_output","timestamp":1607098232,"output":", \n\u001b[0m\u001b[22m\n16:10:32.993 [info] ppl_id: 19229cb7-c8ed-49ff-9108-cb147b957f1f, type: PplBlocks, b"},{"event":"cmd_output","timestamp":1607098232,"output":"lock_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM."},{"event":"cmd_output","timestamp":1607098233,"output":"Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:33.002 [info] block_id: b5008f04-4173-4abb-a4da-25"},{"event":"cmd_output","timestamp":1607098233,"output":"ff8f698db3, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loop"},{"event":"cmd_output","timestamp":1607098233,"output":"er.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:33.004 [info] ppl_id: 19229cb7-c8ed-49ff-91"},{"event":"cmd_output","timestamp":1607098233,"output":"08-cb147b957f1f, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098233,"output":"ir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:33.012 [info] block_id: b5008f04-417"},{"event":"cmd_output","timestamp":1607098233,"output":"3-4abb-a4da-25ff8f698db3, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098233,"output":"in: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:33.014 [info] ppl_id: f50e3d"},{"event":"cmd_output","timestamp":1607098233,"output":"3c-2dfc-4506-8aa0-b5c8f42e800b, type: PplSubInits, state: regular_init, event: exit_scheduling, reco"},{"event":"cmd_output","timestamp":1607098233,"output":"very_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:33.018 [in"},{"event":"cmd_output","timestamp":1607098233,"output":"fo] ppl_id: 19229cb7-c8ed-49ff-9108-cb147b957f1f, type: Ppls, state: queuing, event: exit_schedulin"},{"event":"cmd_output","timestamp":1607098233,"output":"g, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:33."},{"event":"cmd_output","timestamp":1607098233,"output":"027 [info] ppl_id: 3dfbf506-8b31-45a8-9a07-171cd6636cea, block_id: b5008f04-4173-4abb-a4da-25ff8f69"},{"event":"cmd_output","timestamp":1607098233,"output":"8db3, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery"},{"event":"cmd_output","timestamp":1607098233,"output":"_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:33.043 [info] "},{"event":"cmd_output","timestamp":1607098233,"output":" ppl_id: 19229cb7-c8ed-49ff-9108-cb147b957f1f, type: Ppls, state: running, event: exit_scheduling, r"},{"event":"cmd_output","timestamp":1607098233,"output":"ecovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:33.050 "},{"event":"cmd_output","timestamp":1607098233,"output":"[info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"19229cb7-c8ed-49ff-9108-cb1"},{"event":"cmd_output","timestamp":1607098233,"output":"47b957f1f\"\n\u001b[0m\u001b[22m\n16:10:33.057 [info] ppl_id: 3dfbf506-8b31-45a8-9a07-171cd6636cea, type: Ppls"},{"event":"cmd_output","timestamp":1607098233,"output":", state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM."},{"event":"cmd_output","timestamp":1607098233,"output":"Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:33.060 [info] block_id: 495b98d5-7c81-4a55-a97e-fe"},{"event":"cmd_output","timestamp":1607098233,"output":"476a419726, type: BlockRequests, event: persisted block run request from ppl 19229cb7-c8ed-49ff-9108"},{"event":"cmd_output","timestamp":1607098233,"output":"-cb147b957f1f for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_res"},{"event":"cmd_output","timestamp":1607098233,"output":"ponse/4(L35), \n\u001b[0m\u001b[22m\n16:10:33.063 [info] block_id: 495b98d5-7c81-4a55-a97e-fe476a419726, type"},{"event":"cmd_output","timestamp":1607098233,"output":": Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.M"},{"event":"cmd_output","timestamp":1607098233,"output":"odel.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:33.064 [info] ppl_id: f50e3d3c-2dfc-4506-8aa0-"},{"event":"cmd_output","timestamp":1607098233,"output":"b5c8f42e800b, type: PplRequests, event: persisted definition for request with request_token: 3b1cc92"},{"event":"cmd_output","timestamp":1607098233,"output":"a-364b-11eb-82d1-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_defini"},{"event":"cmd_output","timestamp":1607098233,"output":"tion/3(L76), \n\u001b[0m\u001b[22m\n16:10:33.066 [info] Block 0 of pipeline with id: 19229cb7-c8ed-49ff-9108-"},{"event":"cmd_output","timestamp":1607098233,"output":"cb147b957f1f scheduled in block service with id: : \"495b98d5-7c81-4a55-a97e-fe476a419726\"\n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098233,"output":"\n16:10:33.068 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metada"},{"event":"cmd_output","timestamp":1607098233,"output":"ta<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:10:33.066153], name: \"pull-request-1216-.semaph"},{"event":"cmd_output","timestamp":1607098233,"output":"ore/semaphore.yml\", organization_id: \"6739c179-a3ae-4d00-948c-77538236b1a7\", project_id: \"list_group"},{"event":"cmd_output","timestamp":1607098233,"output":"ed_ks\", queue_id: \"f2feac84-2972-4607-ae03-a81f55e294b0\", scope: \"project\", updated_at: ~N[2020-12-0"},{"event":"cmd_output","timestamp":1607098233,"output":"4 16:10:33.066163], user_generated: false}}\n\u001b[0m\u001b[22m\n16:10:33.069 [info] ppl_id: 19229cb7-c8ed-4"},{"event":"cmd_output","timestamp":1607098233,"output":"9ff-9108-cb147b957f1f, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, reco"},{"event":"cmd_output","timestamp":1607098233,"output":"very_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:33.071 [in"},{"event":"cmd_output","timestamp":1607098233,"output":"fo] block_id: 495b98d5-7c81-4a55-a97e-fe476a419726, type: BlockRequests, event: persisted build and"},{"event":"cmd_output","timestamp":1607098233,"output":" sub_ppl details for block_request: 495b98d5-7c81-4a55-a97e-fe476a419726, origin: Elixir.Block.Block"},{"event":"cmd_output","timestamp":1607098233,"output":"Requests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:33.073 [info] block_id:"},{"event":"cmd_output","timestamp":1607098233,"output":" 495b98d5-7c81-4a55-a97e-fe476a419726, type: Tasks, state: pending, event: created, recovery_count: "},{"event":"cmd_output","timestamp":1607098233,"output":"0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:33.0"},{"event":"cmd_output","timestamp":1607098233,"output":"74 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105"},{"event":"cmd_output","timestamp":1607098233,"output":"), \n\u001b[0m\u001b[22m\n16:10:33.074 [info] ppl_id: f50e3d3c-2dfc-4506-8aa0-b5c8f42e800b, type: PplBlocks, "},{"event":"cmd_output","timestamp":1607098233,"output":"block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubIni"},{"event":"cmd_output","timestamp":1607098233,"output":"ts.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:33.075 [info] block_id: 495b98d5"},{"event":"cmd_output","timestamp":1607098233,"output":"-7c81-4a55-a97e-fe476a419726, type: Blocks, state: running, event: exit_scheduling, recovery_count: "},{"event":"cmd_output","timestamp":1607098233,"output":"0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:33.076 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098233,"output":" f50e3d3c-2dfc-4506-8aa0-b5c8f42e800b, type: PplSubInits, state: done, result: passed, event: exit_s"},{"event":"cmd_output","timestamp":1607098233,"output":"cheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098233,"output":"6:10:33.087 [info] ppl_id: f50e3d3c-2dfc-4506-8aa0-b5c8f42e800b, type: PplBlocks, block_index: 0, s"},{"event":"cmd_output","timestamp":1607098233,"output":"tate: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098233,"output":"hange/1(L90), \n\u001b[0m\u001b[22m\n16:10:33.098 [info] ppl_id: f50e3d3c-2dfc-4506-8aa0-b5c8f42e800b, type: "},{"event":"cmd_output","timestamp":1607098233,"output":"Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_"},{"event":"cmd_output","timestamp":1607098233,"output":"state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:33.099 [info] block_id: 495b98d5-7c81-4a55-a97e-fe476a41972"},{"event":"cmd_output","timestamp":1607098233,"output":"6, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM"},{"event":"cmd_output","timestamp":1607098233,"output":".Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:33.106 [info] ppl_id: 7d08a45d-2e14-4bcb-b6f2-76c"},{"event":"cmd_output","timestamp":1607098233,"output":"101a6a72a, type: PplRequests, event: persisted source_args for pipeline: 7d08a45d-2e14-4bcb-b6f2-76c"},{"event":"cmd_output","timestamp":1607098233,"output":"101a6a72a, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098233,"output":"\n16:10:33.110 [info] ppl_id: 7d08a45d-2e14-4bcb-b6f2-76c101a6a72a, type: PplSubInits, state: fetch"},{"event":"cmd_output","timestamp":1607098233,"output":"ing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L9"},{"event":"cmd_output","timestamp":1607098233,"output":"0), \n\u001b[0m\u001b[22m\n16:10:33.113 [info] ppl_id: f50e3d3c-2dfc-4506-8aa0-b5c8f42e800b, type: Ppls, stat"},{"event":"cmd_output","timestamp":1607098233,"output":"e: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chan"},{"event":"cmd_output","timestamp":1607098233,"output":"ge/1(L90), \n\u001b[0m\u001b[22m\n16:10:33.125 [info] block_id: a6f33dc0-5455-4d79-9620-39587a3e5c2f, type: T"},{"event":"cmd_output","timestamp":1607098233,"output":"asks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_sta"},{"event":"cmd_output","timestamp":1607098233,"output":"te_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:33.131 [info] ppl_id: f50e3d3c-2dfc-4506-8aa0-b5c8f42e800b, ty"},{"event":"cmd_output","timestamp":1607098233,"output":"pe: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl."},{"event":"cmd_output","timestamp":1607098233,"output":"log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:33.136 [info] block_id: a6f33dc0-5455-4d79-9620-39587a3"},{"event":"cmd_output","timestamp":1607098233,"output":"e5c2f, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.S"},{"event":"cmd_output","timestamp":1607098233,"output":"TM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:33.146 [info] PplBlocks WaitingState STM is sch"},{"event":"cmd_output","timestamp":1607098233,"output":"eduling block 0 from pipeline: \"f50e3d3c-2dfc-4506-8aa0-b5c8f42e800b\"\n\u001b[0m\u001b[22m\n16:10:33.151 [info"},{"event":"cmd_output","timestamp":1607098233,"output":"] ppl_id: c47a6c5b-5f4c-4e18-978f-cbddae202121, block_id: a6f33dc0-5455-4d79-9620-39587a3e5c2f, typ"},{"event":"cmd_output","timestamp":1607098233,"output":"e: PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0"},{"event":"cmd_output","timestamp":1607098233,"output":", origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:33.154 [info] ppl_id: "},{"event":"cmd_output","timestamp":1607098233,"output":"7d08a45d-2e14-4bcb-b6f2-76c101a6a72a, type: PplSubInits, state: regular_init, event: exit_scheduling"},{"event":"cmd_output","timestamp":1607098233,"output":", recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:33.1"},{"event":"cmd_output","timestamp":1607098233,"output":"57 [info] block_id: 5b583069-cc08-4bc8-a9ec-9f41304b7ccc, type: BlockRequests, event: persisted blo"},{"event":"cmd_output","timestamp":1607098233,"output":"ck run request from ppl f50e3d3c-2dfc-4506-8aa0-b5c8f42e800b for block 0, origin: Elixir.Block.Block"},{"event":"cmd_output","timestamp":1607098233,"output":"Requests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:33.160 [info] block"},{"event":"cmd_output","timestamp":1607098233,"output":"_id: 5b583069-cc08-4bc8-a9ec-9f41304b7ccc, type: Blocks, state: initializing, event: initializing, r"},{"event":"cmd_output","timestamp":1607098233,"output":"ecovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:"},{"event":"cmd_output","timestamp":1607098233,"output":"33.162 [info] Block 0 of pipeline with id: f50e3d3c-2dfc-4506-8aa0-b5c8f42e800b scheduled in block "},{"event":"cmd_output","timestamp":1607098233,"output":"service with id: : \"5b583069-cc08-4bc8-a9ec-9f41304b7ccc\"\n\u001b[0m\u001b[22m\n16:10:33.165 [info] ppl_id: f"},{"event":"cmd_output","timestamp":1607098233,"output":"50e3d3c-2dfc-4506-8aa0-b5c8f42e800b, type: PplBlocks, block_index: 0, state: running, event: exit_sc"},{"event":"cmd_output","timestamp":1607098233,"output":"heduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098233,"output":":10:33.172 [info] block_id: 5b583069-cc08-4bc8-a9ec-9f41304b7ccc, type: BlockRequests, event: persi"},{"event":"cmd_output","timestamp":1607098233,"output":"sted build and sub_ppl details for block_request: 5b583069-cc08-4bc8-a9ec-9f41304b7ccc, origin: Elix"},{"event":"cmd_output","timestamp":1607098233,"output":"ir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:33.176 [in"},{"event":"cmd_output","timestamp":1607098233,"output":"fo] block_id: 5b583069-cc08-4bc8-a9ec-9f41304b7ccc, type: Tasks, state: pending, event: created, re"},{"event":"cmd_output","timestamp":1607098233,"output":"covery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098233,"output":"2m\n16:10:33.176 [info] ppl_id: c47a6c5b-5f4c-4e18-978f-cbddae202121, type: Ppls, state: done, resu"},{"event":"cmd_output","timestamp":1607098233,"output":"lt: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chan"},{"event":"cmd_output","timestamp":1607098233,"output":"ge/1(L90), \n\u001b[0m\u001b[22m\n16:10:33.179 [info] block_id: 5b583069-cc08-4bc8-a9ec-9f41304b7ccc, type: B"},{"event":"cmd_output","timestamp":1607098233,"output":"locks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098233,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:33.193 [info] ppl_id: 7d08a45d-2e14-4bcb-b6f2-76c101a6a72a"},{"event":"cmd_output","timestamp":1607098233,"output":", type: PplRequests, event: persisted definition for request with request_token: 3b2373ba-364b-11eb-"},{"event":"cmd_output","timestamp":1607098233,"output":"9d1e-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76),"},{"event":"cmd_output","timestamp":1607098233,"output":" \n\u001b[0m\u001b[22m\n16:10:33.197 [info] block_id: 5b583069-cc08-4bc8-a9ec-9f41304b7ccc, type: Tasks, stat"},{"event":"cmd_output","timestamp":1607098233,"output":"e: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chan"},{"event":"cmd_output","timestamp":1607098233,"output":"ge/1(L90), \n\u001b[0m\u001b[22m\n16:10:33.197 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta_"},{"event":"cmd_output","timestamp":1607098233,"output":"_: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:10:33.195632], name: \"pul"},{"event":"cmd_output","timestamp":1607098233,"output":"l-request-1217-.semaphore/semaphore.yml\", organization_id: \"845bdda1-9554-4a36-86d9-fdcad8e2a96c\", p"},{"event":"cmd_output","timestamp":1607098233,"output":"roject_id: \"list_grouped_ks\", queue_id: \"3947afae-968e-433a-8dc9-49062147c168\", scope: \"project\", up"},{"event":"cmd_output","timestamp":1607098233,"output":"dated_at: ~N[2020-12-04 16:10:33.195640], user_generated: false}}\n\u001b[0m\u001b[22m\n16:10:33.200 [info] e"},{"event":"cmd_output","timestamp":1607098233,"output":"vent: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098233,"output":"2m\n16:10:33.200 [info] ppl_id: 7d08a45d-2e14-4bcb-b6f2-76c101a6a72a, type: PplBlocks, block_index:"},{"event":"cmd_output","timestamp":1607098233,"output":" 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandle"},{"event":"cmd_output","timestamp":1607098233,"output":"r.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:33.204 [info] ppl_id: 7d08a45d-2e14-4bcb-b6f"},{"event":"cmd_output","timestamp":1607098233,"output":"2-76c101a6a72a, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_cou"},{"event":"cmd_output","timestamp":1607098233,"output":"nt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:33.210 [info] ppl"},{"event":"cmd_output","timestamp":1607098233,"output":"_id: 7d08a45d-2e14-4bcb-b6f2-76c101a6a72a, type: PplBlocks, block_index: 0, state: waiting, event: e"},{"event":"cmd_output","timestamp":1607098233,"output":"xit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098233,"output":"2m\n16:10:33.211 [info] ppl_id: 7d08a45d-2e14-4bcb-b6f2-76c101a6a72a, type: Ppls, state: pending, e"},{"event":"cmd_output","timestamp":1607098233,"output":"vent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n"},{"event":"cmd_output","timestamp":1607098233,"output":"\u001b[0m\u001b[22m\n16:10:33.218 [info] ppl_id: 7d08a45d-2e14-4bcb-b6f2-76c101a6a72a, type: Ppls, state: que"},{"event":"cmd_output","timestamp":1607098233,"output":"uing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098233,"output":"90), \n\u001b[0m\u001b[22m\n16:10:33.227 [info] ppl_id: 7d08a45d-2e14-4bcb-b6f2-76c101a6a72a, type: Ppls, sta"},{"event":"cmd_output","timestamp":1607098233,"output":"te: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_cha"},{"event":"cmd_output","timestamp":1607098233,"output":"nge/1(L90), \n\u001b[0m\u001b[22m\n16:10:33.235 [info] PplBlocks WaitingState STM is scheduling block 0 from "},{"event":"cmd_output","timestamp":1607098233,"output":"pipeline: \"7d08a45d-2e14-4bcb-b6f2-76c101a6a72a\"\n\u001b[0m\u001b[22m\n16:10:33.249 [info] block_id: 495b98d5"},{"event":"cmd_output","timestamp":1607098233,"output":"-7c81-4a55-a97e-fe476a419726, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098233,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:33.249 [info] block_id: 3"},{"event":"cmd_output","timestamp":1607098233,"output":"8e7c476-91ff-424d-afbc-8eeff829cc00, type: BlockRequests, event: persisted block run request from pp"},{"event":"cmd_output","timestamp":1607098233,"output":"l 7d08a45d-2e14-4bcb-b6f2-76c101a6a72a for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRe"},{"event":"cmd_output","timestamp":1607098233,"output":"questsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:33.252 [info] block_id: 38e7c476-91ff-424"},{"event":"cmd_output","timestamp":1607098233,"output":"d-afbc-8eeff829cc00, type: Blocks, state: initializing, event: initializing, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098233,"output":"in: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:33.254 [info] Block 0"},{"event":"cmd_output","timestamp":1607098233,"output":" of pipeline with id: 7d08a45d-2e14-4bcb-b6f2-76c101a6a72a scheduled in block service with id: : \"38"},{"event":"cmd_output","timestamp":1607098233,"output":"e7c476-91ff-424d-afbc-8eeff829cc00\"\n\u001b[0m\u001b[22m\n16:10:33.257 [info] ppl_id: 7d08a45d-2e14-4bcb-b6f2"},{"event":"cmd_output","timestamp":1607098233,"output":"-76c101a6a72a, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_cou"},{"event":"cmd_output","timestamp":1607098233,"output":"nt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:33.259 [info] blo"},{"event":"cmd_output","timestamp":1607098233,"output":"ck_id: 495b98d5-7c81-4a55-a97e-fe476a419726, type: Blocks, state: done, event: exit_scheduling, reco"},{"event":"cmd_output","timestamp":1607098233,"output":"very_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:33.260 [in"},{"event":"cmd_output","timestamp":1607098233,"output":"fo] block_id: 38e7c476-91ff-424d-afbc-8eeff829cc00, type: BlockRequests, event: persisted build and"},{"event":"cmd_output","timestamp":1607098233,"output":" sub_ppl details for block_request: 38e7c476-91ff-424d-afbc-8eeff829cc00, origin: Elixir.Block.Block"},{"event":"cmd_output","timestamp":1607098233,"output":"Requests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:33.262 [info] block_id:"},{"event":"cmd_output","timestamp":1607098233,"output":" 38e7c476-91ff-424d-afbc-8eeff829cc00, type: Tasks, state: pending, event: created, recovery_count: "},{"event":"cmd_output","timestamp":1607098233,"output":"0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:33.2"},{"event":"cmd_output","timestamp":1607098233,"output":"65 [info] block_id: 38e7c476-91ff-424d-afbc-8eeff829cc00, type: Blocks, state: running, event: exit"},{"event":"cmd_output","timestamp":1607098233,"output":"_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098233,"output":"\n16:10:33.272 [info] ppl_id: 19229cb7-c8ed-49ff-9108-cb147b957f1f, block_id: 495b98d5-7c81-4a55-a97"},{"event":"cmd_output","timestamp":1607098233,"output":"e-fe476a419726, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling"},{"event":"cmd_output","timestamp":1607098233,"output":", recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:33.2"},{"event":"cmd_output","timestamp":1607098233,"output":"85 [info] block_id: 38e7c476-91ff-424d-afbc-8eeff829cc00, type: Tasks, state: running, event: exit_"},{"event":"cmd_output","timestamp":1607098233,"output":"scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098233,"output":"16:10:33.289 [info] ppl_id: 19229cb7-c8ed-49ff-9108-cb147b957f1f, type: Ppls, state: done, result: "},{"event":"cmd_output","timestamp":1607098233,"output":"passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1"},{"event":"cmd_output","timestamp":1607098233,"output":"(L90), \n\u001b[0m\u001b[22m\n16:10:33.362 [info] block_id: 5b583069-cc08-4bc8-a9ec-9f41304b7ccc, type: Tasks"},{"event":"cmd_output","timestamp":1607098233,"output":", state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098233,"output":"hange/1(L90), \n\u001b[0m\u001b[22m\n16:10:33.370 [info] block_id: 5b583069-cc08-4bc8-a9ec-9f41304b7ccc, type"},{"event":"cmd_output","timestamp":1607098233,"output":": Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098233,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:33.380 [info] ppl_id: f50e3d3c-2dfc-4506-8aa0-b5c8f42e800b"},{"event":"cmd_output","timestamp":1607098233,"output":", block_id: 5b583069-cc08-4bc8-a9ec-9f41304b7ccc, type: PplBlocks, block_index: 0, state: done, resu"},{"event":"cmd_output","timestamp":1607098233,"output":"lt: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chan"},{"event":"cmd_output","timestamp":1607098233,"output":"ge/1(L90), \n\u001b[0m\u001b[22m\n16:10:33.393 [info] ppl_id: f50e3d3c-2dfc-4506-8aa0-b5c8f42e800b, type: Ppl"},{"event":"cmd_output","timestamp":1607098233,"output":"s, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM"},{"event":"cmd_output","timestamp":1607098233,"output":".Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:33.474 [info] block_id: 38e7c476-91ff-424d-afbc-8"},{"event":"cmd_output","timestamp":1607098233,"output":"eeff829cc00, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loo"},{"event":"cmd_output","timestamp":1607098233,"output":"per.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:33.482 [info] block_id: 38e7c476-91ff-424d"},{"event":"cmd_output","timestamp":1607098233,"output":"-afbc-8eeff829cc00, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098233,"output":"ixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:33.491 [info] ppl_id: 7d08a45d-2e1"},{"event":"cmd_output","timestamp":1607098233,"output":"4-4bcb-b6f2-76c101a6a72a, block_id: 38e7c476-91ff-424d-afbc-8eeff829cc00, type: PplBlocks, block_ind"},{"event":"cmd_output","timestamp":1607098233,"output":"ex: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper"},{"event":"cmd_output","timestamp":1607098233,"output":".STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:33.510 [info] ppl_id: 7d08a45d-2e14-4bcb-b6f2"},{"event":"cmd_output","timestamp":1607098233,"output":"-76c101a6a72a, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098233,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test gRPC list_grouped_ks() -"},{"event":"cmd_output","timestamp":1607098233,"output":" returns latest workflow per distinct label when given valid params (3777.7ms)\u001b[0m\n * test gRPC sc"},{"event":"cmd_output","timestamp":1607098233,"output":"hedule() - success (GitHub repo, non-default branch)\r * test gRPC schedule() - success (GitHub re"},{"event":"cmd_output","timestamp":1607098233,"output":"po, non-default branch) (skipped)\n * test gRPC list_grouped() - refuse request when there are to m"},{"event":"cmd_output","timestamp":1607098233,"output":"any unfinished ones\r * test gRPC list_grouped() - refuse request when there are to many unfinished "},{"event":"cmd_output","timestamp":1607098233,"output":"ones (skipped)\n * test gRPC list_grouped_ks() - fails when project_id is omitted\r * test gRPC lis"},{"event":"cmd_output","timestamp":1607098233,"output":"t_grouped_ks() - fails when project_id is omitted (skipped)\n * test gRPC list() - fails when crea"},{"event":"cmd_output","timestamp":1607098233,"output":"ted_after is after created_before\r * test gRPC list() - fails when created_after is after created_"},{"event":"cmd_output","timestamp":1607098233,"output":"before (skipped)\n * test gRPC create() - create workflow\r * test gRPC create() - create workflow "},{"event":"cmd_output","timestamp":1607098233,"output":"(skipped)\n * test gRPC list_latest_workflows() - refuse request when there are to many unfinished "},{"event":"cmd_output","timestamp":1607098233,"output":"ones\r * test gRPC list_latest_workflows() - refuse request when there are to many unfinished ones ("},{"event":"cmd_output","timestamp":1607098233,"output":"skipped)\n * test gRPC get_project_id() - failes when there is no workflow with given wf_id\r * tes"},{"event":"cmd_output","timestamp":1607098233,"output":"t gRPC get_project_id() - failes when there is no workflow with given wf_id (skipped)\n * test gRPC"},{"event":"cmd_output","timestamp":1607098233,"output":" list_labels() - refuse request when there are to many unfinished ones\r * test gRPC list_labels() -"},{"event":"cmd_output","timestamp":1607098233,"output":" refuse request when there are to many unfinished ones (skipped)\n * test gRPC list_labels() - reru"},{"event":"cmd_output","timestamp":1607098233,"output":"rns distinct label values when given valid params\r * test gRPC list_labels() - rerurns distinct lab"},{"event":"cmd_output","timestamp":1607098233,"output":"el values when given valid params (skipped)\n * test gRPC schedule() - empty request_token\r * test"},{"event":"cmd_output","timestamp":1607098233,"output":" gRPC schedule() - empty request_token (skipped)\n * test gRPC list() - filter by branch_name\r * t"},{"event":"cmd_output","timestamp":1607098233,"output":"est gRPC list() - filter by branch_name (skipped)\n * test gRPC list_grouped_ks() - successfully wa"},{"event":"cmd_output","timestamp":1607098233,"output":"lk the list in both directions\u001b[22m\n16:10:33.681 [info] Request: 'run: %{\"branch_id\" => \"9f4bdf23-"},{"event":"cmd_output","timestamp":1607098233,"output":"6d61-4824-a6b0-182579747ab0\", \"branch_name\" => \"master\", \"client_id\" => \"b6132054-dcbd-4f1b-8f02-76b"},{"event":"cmd_output","timestamp":1607098233,"output":"0ad09b95c\", \"commit_sha\" => \"75891a4469\", \"definition_file\" => \"\", \"hook_id\" => \"branch\", \"label\" =>"},{"event":"cmd_output","timestamp":1607098233,"output":" \"master-0\", \"organization_id\" => \"c702e632-3522-4db8-ba9c-aa1db5a1c76a\", \"owner\" => \"rt\", \"project_"},{"event":"cmd_output","timestamp":1607098233,"output":"id\" => \"list_grouped_ks\", \"repo_name\" => \"2_basic\", \"request_token\" => \"3ce0f4a2-364b-11eb-a9b8-5254"},{"event":"cmd_output","timestamp":1607098233,"output":"005464e2\", \"requester_id\" => \"69d4e7b7-e3e0-4dff-8ca1-4e40b86d3c37\", \"service\" => \"local\", \"snapshot"},{"event":"cmd_output","timestamp":1607098233,"output":"_id\" => \"\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"triggered_by\" => \"hook\", "},{"event":"cmd_output","timestamp":1607098233,"output":"\"wf_id\" => \"4fdb5557-5a42-4474-a38c-5ef59932dc62\"}\n\u001b[0m\u001b[22m\n16:10:33.711 [info] ppl_id: 5506b60b"},{"event":"cmd_output","timestamp":1607098233,"output":"-833c-4fd8-b2e9-a25d951ae2a8, type: PplRequests, event: persisted schedule request with request_toke"},{"event":"cmd_output","timestamp":1607098233,"output":"n: 3ce0f4a2-364b-11eb-a9b8-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.pro"},{"event":"cmd_output","timestamp":1607098233,"output":"cess_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:33.715 [info] ppl_id: 5506b60b-833c-4fd8-b2e9-a25d951ae2a8"},{"event":"cmd_output","timestamp":1607098233,"output":", type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.M"},{"event":"cmd_output","timestamp":1607098233,"output":"odel.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:33.721 [info] Project list_grouped_ks"},{"event":"cmd_output","timestamp":1607098233,"output":" and branch masterlatest_wf details updated: \"wf_id: 4fdb5557-5a42-4474-a38c-5ef59932dc62, wf_number"},{"event":"cmd_output","timestamp":1607098233,"output":": 1\"\n\u001b[0m\u001b[22m\n16:10:33.723 [info] Persisted ppl_sub_init for pipeline with ppl_id: 5506b60b-833c"},{"event":"cmd_output","timestamp":1607098233,"output":"-4fd8-b2e9-a25d951ae2a8: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded,"},{"event":"cmd_output","timestamp":1607098233,"output":" \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 80, in_scheduling: false, "},{"event":"cmd_output","timestamp":1607098233,"output":"init_type: \"regular\", inserted_at: ~N[2020-12-04 16:10:33.721183], pipeline_requests: #Ecto.Associat"},{"event":"cmd_output","timestamp":1607098233,"output":"ion.NotLoaded, ppl_id: \"5506b60b-833c-4fd8-b2e9-a25d95"},{"event":"cmd_output","timestamp":1607098233,"output":"1ae2a8\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: ni"},{"event":"cmd_output","timestamp":1607098233,"output":"l, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:33.721194]}\n\u001b[0m\u001b[22m\n16:10:33.733"},{"event":"cmd_output","timestamp":1607098233,"output":" [info] Request: 'run: %{\"branch_id\" => \"3d140d91-b99f-4196-af7c-8a192b44ecb9\", \"branch_name\" => \"m"},{"event":"cmd_output","timestamp":1607098233,"output":"aster\", \"client_id\" => \"6865de5e-ffaf-4911-a104-6c294fcf4028\", \"commit_sha\" => \"75891a4469\", \"defini"},{"event":"cmd_output","timestamp":1607098233,"output":"tion_file\" => \"\", \"hook_id\" => \"branch\", \"label\" => \"master-1\", \"organization_id\" => \"9d33cbf8-09ee-"},{"event":"cmd_output","timestamp":1607098233,"output":"4d90-a08d-32fe8b5196c1\", \"owner\" => \"rt\", \"project_id\" => \"list_grouped_ks\", \"repo_name\" => \"2_basic"},{"event":"cmd_output","timestamp":1607098233,"output":"\", \"request_token\" => \"3ce8fd50-364b-11eb-a031-5254005464e2\", \"requester_id\" => \"61be74db-98be-446a-"},{"event":"cmd_output","timestamp":1607098233,"output":"896e-70b3e8f5e741\", \"service\" => \"local\", \"snapshot_id\" => \"\", \"suppressed_attributes\" => [\"access_t"},{"event":"cmd_output","timestamp":1607098233,"output":"oken\", \"client_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"f24766b9-79e1-4ed5-bcfc-15390e48ca9c\""},{"event":"cmd_output","timestamp":1607098233,"output":"}\n\u001b[0m\u001b[22m\n16:10:33.778 [info] ppl_id: a973f903-0ded-4a12-82dd-9a0a1488beb0, type: PplRequests, "},{"event":"cmd_output","timestamp":1607098233,"output":"event: persisted schedule request with request_token: 3ce8fd50-364b-11eb-a031-5254005464e2, origin: "},{"event":"cmd_output","timestamp":1607098233,"output":"Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:33.782 ["},{"event":"cmd_output","timestamp":1607098233,"output":"info] ppl_id: a973f903-0ded-4a12-82dd-9a0a1488beb0, type: Ppls, state: initializing, event: initial"},{"event":"cmd_output","timestamp":1607098233,"output":"izing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098233,"output":"\u001b[22m\n16:10:33.785 [info] Project list_grouped_ks and branch masterlatest_wf details updated: \"wf_"},{"event":"cmd_output","timestamp":1607098233,"output":"id: f24766b9-79e1-4ed5-bcfc-15390e48ca9c, wf_number: 2\"\n\u001b[0m\u001b[22m\n16:10:33.788 [info] Persisted p"},{"event":"cmd_output","timestamp":1607098233,"output":"pl_sub_init for pipeline with ppl_id: a973f903-0ded-4a12-82dd-9a0a1488beb0: %Ppl.PplSubInits.Model.P"},{"event":"cmd_output","timestamp":1607098233,"output":"plSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, err"},{"event":"cmd_output","timestamp":1607098233,"output":"or_description: nil, id: 81, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 "},{"event":"cmd_output","timestamp":1607098233,"output":"16:10:33.786043], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"a973f903-0ded-4a12-82dd-9a0a1488beb0\", recovery_count: 0, result: nil, result_r"},{"event":"cmd_output","timestamp":1607098233,"output":"eason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[20"},{"event":"cmd_output","timestamp":1607098233,"output":"20-12-04 16:10:33.786053]}\n\u001b[0m\u001b[22m\n16:10:33.806 [info] Request: 'run: %{\"branch_id\" => \"f90e1e9"},{"event":"cmd_output","timestamp":1607098233,"output":"d-1c4b-4bdd-a13e-33b1200a359c\", \"branch_name\" => \"master\", \"client_id\" => \"f5065d8d-f714-4317-aacd-e"},{"event":"cmd_output","timestamp":1607098233,"output":"83e62079f1d\", \"commit_sha\" => \"75891a4469\", \"definition_file\" => \"\", \"hook_id\" => \"branch\", \"label\" "},{"event":"cmd_output","timestamp":1607098233,"output":"=> \"master-2\", \"organization_id\" => \"763c79be-7de4-4489-9f0b-757283357586\", \"owner\" => \"rt\", \"projec"},{"event":"cmd_output","timestamp":1607098233,"output":"t_id\" => \"list_grouped_ks\", \"repo_name\" => \"2_basic\", \"request_token\" => \"3cf323f2-364b-11eb-a41c-52"},{"event":"cmd_output","timestamp":1607098233,"output":"54005464e2\", \"requester_id\" => \"1fa993da-efc2-49eb-bb35-1ad498a41952\", \"service\" => \"local\", \"snapsh"},{"event":"cmd_output","timestamp":1607098233,"output":"ot_id\" => \"\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"triggered_by\" => \"hook\""},{"event":"cmd_output","timestamp":1607098233,"output":", \"wf_id\" => \"9da9c829-c3bf-410e-9b92-7e0ef5e685ff\"}\n\u001b[0m\u001b[22m\n16:10:33.847 [info] ppl_id: 328dba"},{"event":"cmd_output","timestamp":1607098233,"output":"5f-d505-4e3d-8b24-50ef232eeb51, type: PplRequests, event: persisted schedule request with request_to"},{"event":"cmd_output","timestamp":1607098233,"output":"ken: 3cf323f2-364b-11eb-a41c-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.p"},{"event":"cmd_output","timestamp":1607098233,"output":"rocess_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:33.851 [info] ppl_id: 328dba5f-d505-4e3d-8b24-50ef232eeb"},{"event":"cmd_output","timestamp":1607098233,"output":"51, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls"},{"event":"cmd_output","timestamp":1607098233,"output":".Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:33.854 [info] Project list_grouped_"},{"event":"cmd_output","timestamp":1607098233,"output":"ks and branch masterlatest_wf details updated: \"wf_id: 9da9c829-c3bf-410e-9b92-7e0ef5e685ff, wf_numb"},{"event":"cmd_output","timestamp":1607098233,"output":"er: 3\"\n\u001b[0m\u001b[22m\n16:10:33.857 [info] Persisted ppl_sub_init for pipeline with ppl_id: 328dba5f-d5"},{"event":"cmd_output","timestamp":1607098233,"output":"05-4e3d-8b24-50ef232eeb51: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loade"},{"event":"cmd_output","timestamp":1607098233,"output":"d, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 82, in_scheduling: false"},{"event":"cmd_output","timestamp":1607098233,"output":", init_type: \"regular\", inserted_at: ~N[2020-12-04 16:10:33.855043], pipeline_requests: #Ecto.Associ"},{"event":"cmd_output","timestamp":1607098233,"output":"ation.NotLoaded, ppl_id: \"328dba5f-d505-4e3d-8b24-50ef"},{"event":"cmd_output","timestamp":1607098233,"output":"232eeb51\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: "},{"event":"cmd_output","timestamp":1607098233,"output":"nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:33.855055]}\n\u001b[0m\u001b[22m\n16:10:33.8"},{"event":"cmd_output","timestamp":1607098233,"output":"70 [info] Request: 'run: %{\"branch_id\" => \"c9742a93-32e7-4bf4-bd52-6c4aa3619fb1\", \"branch_name\" => "},{"event":"cmd_output","timestamp":1607098233,"output":"\"master\", \"client_id\" => \"1cab82dd-a6f9-4758-a938-693c4d76f510\", \"commit_sha\" => \"75891a4469\", \"defi"},{"event":"cmd_output","timestamp":1607098233,"output":"nition_file\" => \"\", \"hook_id\" => \"branch\", \"label\" => \"master-3\", \"organization_id\" => \"d7e2ba5d-30e"},{"event":"cmd_output","timestamp":1607098233,"output":"7-4992-b15c-719f1be42bfa\", \"owner\" => \"rt\", \"project_id\" => \"list_grouped_ks\", \"repo_name\" => \"2_bas"},{"event":"cmd_output","timestamp":1607098233,"output":"ic\", \"request_token\" => \"3cfdce92-364b-11eb-8653-5254005464e2\", \"requester_id\" => \"43464261-55e4-498"},{"event":"cmd_output","timestamp":1607098233,"output":"f-8e47-3831839d7241\", \"service\" => \"local\", \"snapshot_id\" => \"\", \"suppressed_attributes\" => [\"access"},{"event":"cmd_output","timestamp":1607098233,"output":"_token\", \"client_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"be3e4cb2-4ade-434a-82a7-6dfe78842e3"},{"event":"cmd_output","timestamp":1607098233,"output":"7\"}\n\u001b[0m\u001b[22m\n16:10:33.915 [info] ppl_id: a5652339-427d-4d00-8eb6-93d37d7b15d7, type: PplRequests"},{"event":"cmd_output","timestamp":1607098233,"output":", event: persisted schedule request with request_token: 3cfdce92-364b-11eb-8653-5254005464e2, origin"},{"event":"cmd_output","timestamp":1607098233,"output":": Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:33.920"},{"event":"cmd_output","timestamp":1607098233,"output":" [info] ppl_id: a5652339-427d-4d00-8eb6-93d37d7b15d7, type: Ppls, state: initializing, event: initi"},{"event":"cmd_output","timestamp":1607098233,"output":"alizing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b["},{"event":"cmd_output","timestamp":1607098233,"output":"0m\u001b[22m\n16:10:33.925 [info] Project list_grouped_ks and branch masterlatest_wf details updated: \"w"},{"event":"cmd_output","timestamp":1607098233,"output":"f_id: be3e4cb2-4ade-434a-82a7-6dfe78842e37, wf_number: 4\"\n\u001b[0m\u001b[22m\n16:10:33.928 [info] Persisted"},{"event":"cmd_output","timestamp":1607098233,"output":" ppl_sub_init for pipeline with ppl_id: a5652339-427d-4d00-8eb6-93d37d7b15d7: %Ppl.PplSubInits.Model"},{"event":"cmd_output","timestamp":1607098233,"output":".PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, e"},{"event":"cmd_output","timestamp":1607098233,"output":"rror_description: nil, id: 83, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-0"},{"event":"cmd_output","timestamp":1607098233,"output":"4 16:10:33.925944], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"a5652339-427d-4d00-8eb6-93d37d7b15d7\", recovery_count: 0, result: nil, result"},{"event":"cmd_output","timestamp":1607098233,"output":"_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N["},{"event":"cmd_output","timestamp":1607098233,"output":"2020-12-04 16:10:33.925957]}\n\u001b[0m\u001b[22m\n16:10:33.949 [info] Request: 'run: %{\"branch_id\" => \"f9e4e"},{"event":"cmd_output","timestamp":1607098233,"output":"65a-4993-4dc4-a426-2cebfd69d822\", \"branch_name\" => \"master\", \"client_id\" => \"3aa85cf2-57a2-4c63-9ec7"},{"event":"cmd_output","timestamp":1607098233,"output":"-d6eb685c7d35\", \"commit_sha\" => \"75891a4469\", \"definition_file\" => \"\", \"hook_id\" => \"branch\", \"label"},{"event":"cmd_output","timestamp":1607098233,"output":"\" => \"master-4\", \"organization_id\" => \"b2e6f579-d7a1-4bc4-860c-c802b865dafe\", \"owner\" => \"rt\", \"proj"},{"event":"cmd_output","timestamp":1607098233,"output":"ect_id\" => \"list_grouped_ks\", \"repo_name\" => \"2_basic\", \"request_token\" => \"3d090df2-364b-11eb-ad83-"},{"event":"cmd_output","timestamp":1607098233,"output":"5254005464e2\", \"requester_id\" => \"b74a727a-a35c-4762-82a5-50961d62dfd9\", \"service\" => \"local\", \"snap"},{"event":"cmd_output","timestamp":1607098233,"output":"shot_id\" => \"\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"triggered_by\" => \"hoo"},{"event":"cmd_output","timestamp":1607098233,"output":"k\", \"wf_id\" => \"906b848f-5179-4b9f-8a1a-3557766471e2\"}\n\u001b[0m\u001b[22m\n16:10:33.982 [info] ppl_id: 98ce"},{"event":"cmd_output","timestamp":1607098233,"output":"822b-eac8-4236-803c-894b9978a3c3, type: PplRequests, event: persisted schedule request with request_"},{"event":"cmd_output","timestamp":1607098233,"output":"token: 3d090df2-364b-11eb-ad83-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries"},{"event":"cmd_output","timestamp":1607098233,"output":".process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:33.985 [info] ppl_id: 98ce822b-eac8-4236-803c-894b9978"},{"event":"cmd_output","timestamp":1607098233,"output":"a3c3, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Pp"},{"event":"cmd_output","timestamp":1607098233,"output":"ls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:33.989 [info] Project list_groupe"},{"event":"cmd_output","timestamp":1607098233,"output":"d_ks and branch masterlatest_wf details updated: \"wf_id: 906b848f-5179-4b9f-8a1a-3557766471e2, wf_nu"},{"event":"cmd_output","timestamp":1607098233,"output":"mber: 5\"\n\u001b[0m\u001b[22m\n16:10:33.991 [info] Persisted ppl_sub_init for pipeline with ppl_id: 98ce822b-"},{"event":"cmd_output","timestamp":1607098233,"output":"eac8-4236-803c-894b9978a3c3: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loa"},{"event":"cmd_output","timestamp":1607098233,"output":"ded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 84, in_scheduling: fal"},{"event":"cmd_output","timestamp":1607098233,"output":"se, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:10:33.989647], pipeline_requests: #Ecto.Asso"},{"event":"cmd_output","timestamp":1607098233,"output":"ciation.NotLoaded, ppl_id: \"98ce822b-eac8-4236-803c-89"},{"event":"cmd_output","timestamp":1607098233,"output":"4b9978a3c3\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request"},{"event":"cmd_output","timestamp":1607098234,"output":": nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:33.989660]}\n\u001b[0m\u001b[22m\n16:10:34"},{"event":"cmd_output","timestamp":1607098234,"output":".003 [info] Request: 'run: %{\"branch_id\" => \"e5947cde-2f86-4bb3-b025-05f1bd7a167f\", \"branch_name\" ="},{"event":"cmd_output","timestamp":1607098234,"output":"> \"master\", \"client_id\" => \"c19d3700-bbb0-4645-b84a-5ef3e3f08f7a\", \"commit_sha\" => \"75891a4469\", \"de"},{"event":"cmd_output","timestamp":1607098234,"output":"finition_file\" => \"\", \"hook_id\" => \"branch\", \"label\" => \"master-5\", \"organization_id\" => \"60b95f81-c"},{"event":"cmd_output","timestamp":1607098234,"output":"3eb-46d8-b972-2ae54ee6a868\", \"owner\" => \"rt\", \"project_id\" => \"list_grouped_ks\", \"repo_name\" => \"2_b"},{"event":"cmd_output","timestamp":1607098234,"output":"asic\", \"request_token\" => \"3d12531c-364b-11eb-b094-5254005464e2\", \"requester_id\" => \"bc13e008-f9d0-4"},{"event":"cmd_output","timestamp":1607098234,"output":"3b2-ac72-473a78bb5650\", \"service\" => \"local\", \"snapshot_id\" => \"\", \"suppressed_attributes\" => [\"acce"},{"event":"cmd_output","timestamp":1607098234,"output":"ss_token\", \"client_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"41d6ee87-2e19-4d6c-85ad-3ae6c24a8"},{"event":"cmd_output","timestamp":1607098234,"output":"462\"}\n\u001b[0m\u001b[22m\n16:10:34.036 [info] ppl_id: 0dbec12c-cbb1-4901-81fb-9fe26b2d121a, type: PplReques"},{"event":"cmd_output","timestamp":1607098234,"output":"ts, event: persisted schedule request with request_token: 3d12531c-364b-11eb-b094-5254005464e2, orig"},{"event":"cmd_output","timestamp":1607098234,"output":"in: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:34.0"},{"event":"cmd_output","timestamp":1607098234,"output":"39 [info] ppl_id: 0dbec12c-cbb1-4901-81fb-9fe26b2d121a, type: Ppls, state: initializing, event: ini"},{"event":"cmd_output","timestamp":1607098234,"output":"tializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n"},{"event":"cmd_output","timestamp":1607098234,"output":"\u001b[0m\u001b[22m\n16:10:34.043 [info] Project list_grouped_ks and branch masterlatest_wf details updated: "},{"event":"cmd_output","timestamp":1607098234,"output":"\"wf_id: 41d6ee87-2e19-4d6c-85ad-3ae6c24a8462, wf_number: 6\"\n\u001b[0m\u001b[22m\n16:10:34.045 [info] Persist"},{"event":"cmd_output","timestamp":1607098234,"output":"ed ppl_sub_init for pipeline with ppl_id: 0dbec12c-cbb1-4901-81fb-9fe26b2d121a: %Ppl.PplSubInits.Mod"},{"event":"cmd_output","timestamp":1607098234,"output":"el.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil,"},{"event":"cmd_output","timestamp":1607098234,"output":" error_description: nil, id: 85, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12"},{"event":"cmd_output","timestamp":1607098234,"output":"-04 16:10:34.043310], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"0dbec12c-cbb1-4901-81fb-9fe26b2d121a\", recovery_count: 0, result: nil, resu"},{"event":"cmd_output","timestamp":1607098234,"output":"lt_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~"},{"event":"cmd_output","timestamp":1607098234,"output":"N[2020-12-04 16:10:34.043321]}\n\u001b[0m\u001b[22m\n16:10:34.051 [info] Periodic from module Elixir.Ppl.Ppls"},{"event":"cmd_output","timestamp":1607098234,"output":".STMHandler.InitializingState with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 "},{"event":"cmd_output","timestamp":1607098234,"output":"ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args"},{"event":"cmd_output","timestamp":1607098234,"output":": %{allowed_states: [\"initializing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098234,"output":"s.Model.Ppls, observed_state: \"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMH"},{"event":"cmd_output","timestamp":1607098234,"output":"andler.InitializingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_"},{"event":"cmd_output","timestamp":1607098234,"output":"at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}"},{"event":"cmd_output","timestamp":1607098234,"output":"\n\u001b[0m\u001b[22m\n16:10:34.052 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingState with "},{"event":"cmd_output","timestamp":1607098234,"output":"name Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\""},{"event":"cmd_output","timestamp":1607098234,"output":", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"pending\", \"queuing\", \"r"},{"event":"cmd_output","timestamp":1607098234,"output":"unning\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\""},{"event":"cmd_output","timestamp":1607098234,"output":", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRep"},{"event":"cmd_output","timestamp":1607098234,"output":"o, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], sch"},{"event":"cmd_output","timestamp":1607098234,"output":"ema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:10:34.052 [info] Peri"},{"event":"cmd_output","timestamp":1607098234,"output":"odic from module Elixir.Ppl.Ppls.STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandler.Queuin"},{"event":"cmd_output","timestamp":1607098234,"output":"gState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]"},{"event":"cmd_output","timestamp":1607098234,"output":"}, recurring args: %{allowed_states: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, initial_q"},{"event":"cmd_output","timestamp":1607098234,"output":"uery: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.P"},{"event":"cmd_output","timestamp":1607098234,"output":"pls.STMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updat"},{"event":"cmd_output","timestamp":1607098234,"output":"ed_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :sk"},{"event":"cmd_output","timestamp":1607098234,"output":"ip}\n\u001b[0m\u001b[22m\n16:10:34.053 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.RunningState wi"},{"event":"cmd_output","timestamp":1607098234,"output":"th name Elixir.Ppl.Ppls.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_"},{"event":"cmd_output","timestamp":1607098234,"output":"up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\""},{"event":"cmd_output","timestamp":1607098234,"output":", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"running\", publ"},{"event":"cmd_output","timestamp":1607098234,"output":"isher_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, re"},{"event":"cmd_output","timestamp":1607098234,"output":"turning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: "},{"event":"cmd_output","timestamp":1607098234,"output":"Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:10:34.053 [info] Periodic "},{"event":"cmd_output","timestamp":1607098234,"output":"from module Elixir.Ppl.Ppls.STMHandler.StoppingState with name Elixir.Ppl.Ppls.STMHandler.StoppingSt"},{"event":"cmd_output","timestamp":1607098234,"output":"ate :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]},"},{"event":"cmd_output","timestamp":1607098234,"output":" recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Pp"},{"event":"cmd_output","timestamp":1607098234,"output":"ls.Model.Ppls, observed_state: \"stopping\", publisher_cb: #Function<0.71803493/1 in Ppl.Ppls.STMHandl"},{"event":"cmd_output","timestamp":1607098234,"output":"er.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :sta"},{"event":"cmd_output","timestamp":1607098234,"output":"te, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098234,"output":"22m\n16:10:34.053 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedState with n"},{"event":"cmd_output","timestamp":1607098234,"output":"ame Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.beholder-wa"},{"event":"cmd_output","timestamp":1607098234,"output":"ke_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args: %{allowed_states: [\"fetching\","},{"event":"cmd_output","timestamp":1607098234,"output":" \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"cr"},{"event":"cmd_output","timestamp":1607098234,"output":"eated\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :"},{"event":"cmd_output","timestamp":1607098234,"output":"state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_superviso"},{"event":"cmd_output","timestamp":1607098234,"output":"r: :skip}\n\u001b[0m\u001b[22m\n16:10:34.054 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.Fe"},{"event":"cmd_output","timestamp":1607098234,"output":"tchingState with name Elixir.Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 ms, metric_name"},{"event":"cmd_output","timestamp":1607098234,"output":": {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %{allowed_"},{"event":"cmd_output","timestamp":1607098234,"output":"states: [\"regular_init\", \"compilation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInit"},{"event":"cmd_output","timestamp":1607098234,"output":"s.Model.PplSubInits, observed_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning:"},{"event":"cmd_output","timestamp":1607098234,"output":" [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplS"},{"event":"cmd_output","timestamp":1607098234,"output":"ubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:34.054 [info] Periodic from mo"},{"event":"cmd_output","timestamp":1607098234,"output":"dule Elixir.Ppl.PplSubInits.STMHandler.CompilationState with name Elixir.Ppl.PplSubInits.STMHandler."},{"event":"cmd_output","timestamp":1607098234,"output":"CompilationState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandl"},{"event":"cmd_output","timestamp":1607098234,"output":"er-CompilationState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"stopping\""},{"event":"cmd_output","timestamp":1607098234,"output":", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \""},{"event":"cmd_output","timestamp":1607098234,"output":"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated"},{"event":"cmd_output","timestamp":1607098234,"output":"_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_sup"},{"event":"cmd_output","timestamp":1607098234,"output":"ervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:34.054 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHand"},{"event":"cmd_output","timestamp":1607098234,"output":"ler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period: 100 ms,"},{"event":"cmd_output","timestamp":1607098234,"output":" metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurring a"},{"event":"cmd_output","timestamp":1607098234,"output":"rgs: %{allowed_states: [\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubIni"},{"event":"cmd_output","timestamp":1607098234,"output":"ts, observed_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :termi"},{"event":"cmd_output","timestamp":1607098234,"output":"nate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model"},{"event":"cmd_output","timestamp":1607098234,"output":".PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:34.055 [info] Periodic from module Elixir.P"},{"event":"cmd_output","timestamp":1607098234,"output":"pl.PplBlocks.STMHandler.InitializingState with name Elixir.Ppl.PplBlocks.STMHandler.InitializingStat"},{"event":"cmd_output","timestamp":1607098234,"output":"e :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-InitializingSt"},{"event":"cmd_output","timestamp":1607098234,"output":"ate\"]}, recurring args: %{allowed_states: [\"initializing\", \"waiting\", \"done\"], cooling_time_sec: 0, "},{"event":"cmd_output","timestamp":1607098234,"output":"initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"initializing\", publisher_cb: :skip, r"},{"event":"cmd_output","timestamp":1607098234,"output":"epo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_coun"},{"event":"cmd_output","timestamp":1607098234,"output":"t, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098234,"output":"\n16:10:34.055 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.WaitingState with name E"},{"event":"cmd_output","timestamp":1607098234,"output":"lixir.Ppl.PplBlocks.STMHandler.WaitingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\""},{"event":"cmd_output","timestamp":1607098234,"output":", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurring args: %{allowed_states: [\"waiting\", \"running"},{"event":"cmd_output","timestamp":1607098234,"output":"\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"wait"},{"event":"cmd_output","timestamp":1607098234,"output":"ing\", publisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>, repo: Pp"},{"event":"cmd_output","timestamp":1607098234,"output":"l.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl"},{"event":"cmd_output","timestamp":1607098234,"output":"_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10"},{"event":"cmd_output","timestamp":1607098234,"output":":34.055 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.RunningState with name Elixir.P"},{"event":"cmd_output","timestamp":1607098234,"output":"pl.PplBlocks.STMHandler.RunningState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl"},{"event":"cmd_output","timestamp":1607098234,"output":"-PplBlocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"do"},{"event":"cmd_output","timestamp":1607098234,"output":"ne\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"running\","},{"event":"cmd_output","timestamp":1607098234,"output":" publisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0>, repo: Ppl.Ec"},{"event":"cmd_output","timestamp":1607098234,"output":"toRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id,"},{"event":"cmd_output","timestamp":1607098234,"output":" :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098234,"output":"\n16:10:34.055 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.StoppingState with name "},{"event":"cmd_output","timestamp":1607098234,"output":"Elixir.Ppl.PplBlocks.STMHandler.StoppingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_u"},{"event":"cmd_output","timestamp":1607098234,"output":"p\", [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"don"},{"event":"cmd_output","timestamp":1607098234,"output":"e\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"stopping\","},{"event":"cmd_output","timestamp":1607098234,"output":" publisher_cb: #Function<0.104215991/1 in Ppl.PplBlocks.STMHandler.StoppingState.args/0>, repo: Ppl."},{"event":"cmd_output","timestamp":1607098234,"output":"EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_i"},{"event":"cmd_output","timestamp":1607098234,"output":"d, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098234,"output":"2m\n16:10:34.055 [info] Periodic from module Elixir.Block.Blocks.STMHandler.InitializingState with "},{"event":"cmd_output","timestamp":1607098234,"output":"name Elixir.Block.Blocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder"},{"event":"cmd_output","timestamp":1607098234,"output":"-wake_up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"runni"},{"event":"cmd_output","timestamp":1607098234,"output":"ng\", \"done\"], cooling_time_sec: 0, initial_query: Block.Blocks.Model.Blocks, observed_state: \"initia"},{"event":"cmd_output","timestamp":1607098234,"output":"lizing\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at"},{"event":"cmd_output","timestamp":1607098234,"output":", :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b"},{"event":"cmd_output","timestamp":1607098234,"output":"[0m\u001b[22m\n16:10:34.055 [info] Periodic from module Elixir.Block.Blocks.STMHandler.RunningState with"},{"event":"cmd_output","timestamp":1607098234,"output":" name Elixir.Block.Blocks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wak"},{"event":"cmd_output","timestamp":1607098234,"output":"e_up\", [\"Block-Blocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"sto"},{"event":"cmd_output","timestamp":1607098234,"output":"pping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"ru"},{"event":"cmd_output","timestamp":1607098234,"output":"nning\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at,"},{"event":"cmd_output","timestamp":1607098234,"output":" :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b["},{"event":"cmd_output","timestamp":1607098234,"output":"0m\u001b[22m\n16:10:34.056 [info] Periodic from module Elixir.Block.Blocks.STMHandler.StoppingState with"},{"event":"cmd_output","timestamp":1607098234,"output":" name Elixir.Block.Blocks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wa"},{"event":"cmd_output","timestamp":1607098234,"output":"ke_up\", [\"Block-Blocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \""},{"event":"cmd_output","timestamp":1607098234,"output":"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"stopping\", "},{"event":"cmd_output","timestamp":1607098234,"output":"publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state,"},{"event":"cmd_output","timestamp":1607098234,"output":" :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098234,"output":"\n16:10:34.056 [info] Periodic from module Elixir.Block.Tasks.STMHandler.PendingState with name Elix"},{"event":"cmd_output","timestamp":1607098234,"output":"ir.Block.Tasks.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Bl"},{"event":"cmd_output","timestamp":1607098234,"output":"ock-Tasks-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling"},{"event":"cmd_output","timestamp":1607098234,"output":"_time_sec: 0, initial_query: Block.Tasks.Model.Tasks, observed_state: \"pending\", publisher_cb: :skip"},{"event":"cmd_output","timestamp":1607098234,"output":", repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :"},{"event":"cmd_output","timestamp":1607098234,"output":"block_id, :build_request_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098234,"output":"6:10:34.056 [info] Periodic from module Elixir.Block.Tasks.STMHandler.RunningState with name Elixir"},{"event":"cmd_output","timestamp":1607098234,"output":".Block.Tasks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Bloc"},{"event":"cmd_output","timestamp":1607098234,"output":"k-Tasks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\""},{"event":"cmd_output","timestamp":1607098234,"output":"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"running\", publishe"},{"event":"cmd_output","timestamp":1607098234,"output":"r_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recove"},{"event":"cmd_output","timestamp":1607098234,"output":"ry_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:34."},{"event":"cmd_output","timestamp":1607098234,"output":"056 [info] Periodic from module Elixir.Block.Tasks.STMHandler.StoppingState with name Elixir.Block."},{"event":"cmd_output","timestamp":1607098234,"output":"Tasks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Task"},{"event":"cmd_output","timestamp":1607098234,"output":"s-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_"},{"event":"cmd_output","timestamp":1607098234,"output":"sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"stopping\", publisher_cb: :skip, re"},{"event":"cmd_output","timestamp":1607098234,"output":"po: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :bloc"},{"event":"cmd_output","timestamp":1607098234,"output":"k_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:34.177 [info] ppl"},{"event":"cmd_output","timestamp":1607098234,"output":"_id: 5506b60b-833c-4fd8-b2e9-a25d951ae2a8, type: PplRequests, event: persisted source_args for pipel"},{"event":"cmd_output","timestamp":1607098234,"output":"ine: 5506b60b-833c-4fd8-b2e9-a25d951ae2a8, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.i"},{"event":"cmd_output","timestamp":1607098234,"output":"nsert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:34.181 [info] ppl_id: 5506b60b-833c-4fd8-b2e9-a25d951ae2a8,"},{"event":"cmd_output","timestamp":1607098234,"output":" type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loope"},{"event":"cmd_output","timestamp":1607098234,"output":"r.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:34.215 [info] ppl_id: 5506b60b-833c-4fd8-b2e"},{"event":"cmd_output","timestamp":1607098234,"output":"9-a25d951ae2a8, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098234,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:34.245 [info] ppl_id: 550"},{"event":"cmd_output","timestamp":1607098234,"output":"6b60b-833c-4fd8-b2e9-a25d951ae2a8, type: PplRequests, event: persisted definition for request with r"},{"event":"cmd_output","timestamp":1607098234,"output":"equest_token: 3ce0f4a2-364b-11eb-a9b8-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequests"},{"event":"cmd_output","timestamp":1607098234,"output":"Queries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:34.254 [info] Queue persisted: {:ok, %Ppl.Queu"},{"event":"cmd_output","timestamp":1607098234,"output":"es.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:10"},{"event":"cmd_output","timestamp":1607098234,"output":":34.252029], name: \"master-0-.semaphore/semaphore.yml\", organization_id: \"c702e632-3522-4db8-ba9c-aa"},{"event":"cmd_output","timestamp":1607098234,"output":"1db5a1c76a\", project_id: \"list_grouped_ks\", queue_id: \"6e6231e7-43d6-41ba-92a2-7392df2967dd\", scope:"},{"event":"cmd_output","timestamp":1607098234,"output":" \"project\", updated_at: ~N[2020-12-04 16:10:34.252043], user_generated: false}}\n\u001b[0m\u001b[22m\n16:10:34"},{"event":"cmd_output","timestamp":1607098234,"output":".261 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L1"},{"event":"cmd_output","timestamp":1607098234,"output":"05), \n\u001b[0m\u001b[22m\n16:10:34.261 [info] ppl_id: 5506b60b-833c-4fd8-b2e9-a25d951ae2a8, type: PplBlocks"},{"event":"cmd_output","timestamp":1607098234,"output":", block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubI"},{"event":"cmd_output","timestamp":1607098234,"output":"nits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:34.264 [info] ppl_id: 5506b60b"},{"event":"cmd_output","timestamp":1607098234,"output":"-833c-4fd8-b2e9-a25d951ae2a8, type: PplSubInits, state: done, result: passed, event: exit_scheduling"},{"event":"cmd_output","timestamp":1607098234,"output":", recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:34.2"},{"event":"cmd_output","timestamp":1607098234,"output":"81 [info] ppl_id: 5506b60b-833c-4fd8-b2e9-a25d951ae2a8, type: PplBlocks, block_index: 0, state: wai"},{"event":"cmd_output","timestamp":1607098234,"output":"ting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098234,"output":"90), \n\u001b[0m\u001b[22m\n16:10:34.286 [info] ppl_id: 5506b60b-833c-4fd8-b2e9-a25d951ae2a8, type: Ppls, sta"},{"event":"cmd_output","timestamp":1607098234,"output":"te: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_cha"},{"event":"cmd_output","timestamp":1607098234,"output":"nge/1(L90), \n\u001b[0m\u001b[22m\n16:10:34.300 [info] ppl_id: a973f903-0ded-4a12-82dd-9a0a1488beb0, type: Pp"},{"event":"cmd_output","timestamp":1607098234,"output":"lRequests, event: persisted source_args for pipeline: a973f903-0ded-4a12-82dd-9a0a1488beb0, origin: "},{"event":"cmd_output","timestamp":1607098234,"output":"Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:34.304 [inf"},{"event":"cmd_output","timestamp":1607098234,"output":"o] ppl_id: 5506b60b-833c-4fd8-b2e9-a25d951ae2a8, type: Ppls, state: queuing, event: exit_scheduling"},{"event":"cmd_output","timestamp":1607098234,"output":", recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:34.3"},{"event":"cmd_output","timestamp":1607098234,"output":"05 [info] ppl_id: a973f903-0ded-4a12-82dd-9a0a1488beb0, type: PplSubInits, state: fetching, event: "},{"event":"cmd_output","timestamp":1607098234,"output":"exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098234,"output":"22m\n16:10:34.323 [info] ppl_id: 5506b60b-833c-4fd8-b2e9-a25d951ae2a8, type: Ppls, state: running, "},{"event":"cmd_output","timestamp":1607098234,"output":"event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \r"},{"event":"cmd_output","timestamp":1607098234,"output":"\n\u001b[0m\u001b[22m\n16:10:34.332 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"55"},{"event":"cmd_output","timestamp":1607098234,"output":"06b60b-833c-4fd8-b2e9-a25d951ae2a8\"\n\u001b[0m\u001b[22m\n16:10:34.342 [info] block_id: de1530ef-66fe-44da-b6"},{"event":"cmd_output","timestamp":1607098234,"output":"df-03bb2aad8437, type: BlockRequests, event: persisted block run request from ppl 5506b60b-833c-4fd8"},{"event":"cmd_output","timestamp":1607098234,"output":"-b2e9-a25d951ae2a8 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.proces"},{"event":"cmd_output","timestamp":1607098234,"output":"s_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:34.346 [info] block_id: de1530ef-66fe-44da-b6df-03bb2aad8437,"},{"event":"cmd_output","timestamp":1607098234,"output":" type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blo"},{"event":"cmd_output","timestamp":1607098234,"output":"cks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:34.348 [info] ppl_id: a973f903-0ded-4a12-"},{"event":"cmd_output","timestamp":1607098234,"output":"82dd-9a0a1488beb0, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0"},{"event":"cmd_output","timestamp":1607098234,"output":", origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:34.352 [info] Block 0 "},{"event":"cmd_output","timestamp":1607098234,"output":"of pipeline with id: 5506b60b-833c-4fd8-b2e9-a25d951ae2a8 scheduled in block service with id: : \"de1"},{"event":"cmd_output","timestamp":1607098234,"output":"530ef-66fe-44da-b6df-03bb2aad8437\"\n\u001b[0m\u001b[22m\n16:10:34.358 [info] ppl_id: 5506b60b-833c-4fd8-b2e9-"},{"event":"cmd_output","timestamp":1607098234,"output":"a25d951ae2a8, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_coun"},{"event":"cmd_output","timestamp":1607098234,"output":"t: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:34.365 [info] bloc"},{"event":"cmd_output","timestamp":1607098234,"output":"k_id: de1530ef-66fe-44da-b6df-03bb2aad8437, type: BlockRequests, event: persisted build and sub_ppl "},{"event":"cmd_output","timestamp":1607098234,"output":"details for block_request: de1530ef-66fe-44da-b6df-03bb2aad8437, origin: Elixir.Block.BlockRequests."},{"event":"cmd_output","timestamp":1607098234,"output":"Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:34.374 [info] block_id: de1530ef"},{"event":"cmd_output","timestamp":1607098234,"output":"-66fe-44da-b6df-03bb2aad8437, type: Tasks, state: pending, event: created, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098234,"output":": Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:34.380 [info]"},{"event":"cmd_output","timestamp":1607098234,"output":" block_id: de1530ef-66fe-44da-b6df-03bb2aad8437, type: Blocks, state: running, event: exit_scheduli"},{"event":"cmd_output","timestamp":1607098234,"output":"ng, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:34"},{"event":"cmd_output","timestamp":1607098234,"output":".412 [info] ppl_id: a973f903-0ded-4a12-82dd-9a0a1488beb0, type: PplRequests, event: persisted defin"},{"event":"cmd_output","timestamp":1607098234,"output":"ition for request with request_token: 3ce8fd50-364b-11eb-a031-5254005464e2, origin: Elixir.Ppl.PplRe"},{"event":"cmd_output","timestamp":1607098234,"output":"quests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:34.417 [info] Queue pe"},{"event":"cmd_output","timestamp":1607098234,"output":"rsisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted"},{"event":"cmd_output","timestamp":1607098234,"output":"_at: ~N[2020-12-04 16:10:34.415584], name: \"master-1-.semaphore/semaphore.yml\", organization_id: \"9d"},{"event":"cmd_output","timestamp":1607098234,"output":"33cbf8-09ee-4d90-a08d-32fe8b5196c1\", project_id: \"list_grouped_ks\", queue_id: \"480d22dc-cde9-47a6-9a"},{"event":"cmd_output","timestamp":1607098234,"output":"0e-ed2944c54f98\", scope: \"project\", updated_at: ~N[2020-12-04 16:10:34.415597], user_generated: fals"},{"event":"cmd_output","timestamp":1607098234,"output":"e}}\n\u001b[0m\u001b[22m\n16:10:34.417 [info] block_id: de1530ef-66fe-44da-b6df-03bb2aad8437, type: Tasks, st"},{"event":"cmd_output","timestamp":1607098234,"output":"ate: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_ch"},{"event":"cmd_output","timestamp":1607098234,"output":"ange/1(L90), \n\u001b[0m\u001b[22m\n16:10:34.427 [info] ppl_id: 328dba5f-d505-4e3d-8b24-50ef232eeb51, type: P"},{"event":"cmd_output","timestamp":1607098234,"output":"plRequests, event: persisted source_args for pipeline: 328dba5f-d505-4e3d-8b24-50ef232eeb51, origin:"},{"event":"cmd_output","timestamp":1607098234,"output":" Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:34.428 [in"},{"event":"cmd_output","timestamp":1607098234,"output":"fo] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b"},{"event":"cmd_output","timestamp":1607098234,"output":"[0m\u001b[22m\n16:10:34.428 [info] ppl_id: a973f903-0ded-4a12-82dd-9a0a1488beb0, type: PplBlocks, block_"},{"event":"cmd_output","timestamp":1607098234,"output":"index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STM"},{"event":"cmd_output","timestamp":1607098234,"output":"Handler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:34.432 [info] ppl_id: a973f903-0ded-4a"},{"event":"cmd_output","timestamp":1607098234,"output":"12-82dd-9a0a1488beb0, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recove"},{"event":"cmd_output","timestamp":1607098234,"output":"ry_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:34.432 [info"},{"event":"cmd_output","timestamp":1607098234,"output":"] ppl_id: 328dba5f-d505-4e3d-8b24-50ef232eeb51, type: PplSubInits, state: fetching, event: exit_sch"},{"event":"cmd_output","timestamp":1607098234,"output":"eduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098234,"output":"10:34.447 [info] ppl_id: a973f903-0ded-4a12-82dd-9a0a1488beb0, type: PplBlocks, block_index: 0, sta"},{"event":"cmd_output","timestamp":1607098234,"output":"te: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_cha"},{"event":"cmd_output","timestamp":1607098234,"output":"nge/1(L90), \n\u001b[0m\u001b[22m\n16:10:34.450 [info] ppl_id: a973f903-0ded-4a12-82dd-9a0a1488beb0, type: Pp"},{"event":"cmd_output","timestamp":1607098234,"output":"ls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_st"},{"event":"cmd_output","timestamp":1607098234,"output":"ate_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:34.462 [info] ppl_id: a973f903-0ded-4a12-82dd-9a0a1488beb0, t"},{"event":"cmd_output","timestamp":1607098234,"output":"ype: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl"},{"event":"cmd_output","timestamp":1607098234,"output":".log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:34.473 [info] ppl_id: 328dba5f-d505-4e3d-8b24-50ef232e"},{"event":"cmd_output","timestamp":1607098234,"output":"eb51, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098234,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:34.479 [info] ppl_id: a973f903-0ded"},{"event":"cmd_output","timestamp":1607098234,"output":"-4a12-82dd-9a0a1488beb0, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098234,"output":"in: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:34.487 [info] PplBlocks Wait"},{"event":"cmd_output","timestamp":1607098234,"output":"ingState STM is scheduling block 0 from pipeline: \"a973f903-0ded-4a12-82dd-9a0a1488beb0\"\n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098234,"output":"\n16:10:34.502 [info] block_id: 74d16058-ae51-4182-b158-1a41d99611d0, type: BlockRequests, event: pe"},{"event":"cmd_output","timestamp":1607098234,"output":"rsisted block run request from ppl a973f903-0ded-4a12-82dd-9a0a1488beb0 for block 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098234,"output":"Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:34.512 [i"},{"event":"cmd_output","timestamp":1607098234,"output":"nfo] block_id: 74d16058-ae51-4182-b158-1a41d99611d0, type: Blocks, state: initializing, event: init"},{"event":"cmd_output","timestamp":1607098234,"output":"ializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098234,"output":"22m\n16:10:34.514 [info] block_id: de1530ef-66fe-44da-b6df-03bb2aad8437, type: Tasks, state: done, "},{"event":"cmd_output","timestamp":1607098234,"output":"event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \r"},{"event":"cmd_output","timestamp":1607098234,"output":"\n\u001b[0m\u001b[22m\n16:10:34.520 [info] Block 0 of pipeline with id: a973f903-0ded-4a12-82dd-9a0a1488beb0 s"},{"event":"cmd_output","timestamp":1607098234,"output":"cheduled in block service with id: : \"74d16058-ae51-4182-b158-1a41d99611d0\"\n\u001b[0m\u001b[22m\n16:10:34.526"},{"event":"cmd_output","timestamp":1607098234,"output":" [info] block_id: de1530ef-66fe-44da-b6df-03bb2aad8437, type: Blocks, state: done, event: exit_sche"},{"event":"cmd_output","timestamp":1607098234,"output":"duling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098234,"output":"0:34.527 [info] ppl_id: a973f903-0ded-4a12-82dd-9a0a1488beb0, type: PplBlocks, block_index: 0, stat"},{"event":"cmd_output","timestamp":1607098234,"output":"e: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chan"},{"event":"cmd_output","timestamp":1607098234,"output":"ge/1(L90), \n\u001b[0m\u001b[22m\n16:10:34.528 [info] block_id: 74d16058-ae51-4182-b158-1a41d99611d0, type: B"},{"event":"cmd_output","timestamp":1607098234,"output":"lockRequests, event: persisted build and sub_ppl details for block_request: 74d16058-ae51-4182-b158-"},{"event":"cmd_output","timestamp":1607098234,"output":"1a41d99611d0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b"},{"event":"cmd_output","timestamp":1607098234,"output":"[0m\u001b[22m\n16:10:34.532 [info] block_id: 74d16058-ae51-4182-b158-1a41d99611d0, type: Tasks, state: p"},{"event":"cmd_output","timestamp":1607098234,"output":"ending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState."},{"event":"cmd_output","timestamp":1607098234,"output":"all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:34.537 [info] block_id: 74d16058-ae51-4182-b158-1a41d99611d0, t"},{"event":"cmd_output","timestamp":1607098234,"output":"ype: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Im"},{"event":"cmd_output","timestamp":1607098234,"output":"pl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:34.552 [info] ppl_id: 328dba5f-d505-4e3d-8b24-50ef23"},{"event":"cmd_output","timestamp":1607098234,"output":"2eeb51, type: PplRequests, event: persisted definition for request with request_token: 3cf323f2-364b"},{"event":"cmd_output","timestamp":1607098234,"output":"-11eb-a41c-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3"},{"event":"cmd_output","timestamp":1607098234,"output":"(L76), \n\u001b[0m\u001b[22m\n16:10:34.559 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #"},{"event":"cmd_output","timestamp":1607098234,"output":"Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:10:34.556139], name: \"master-"},{"event":"cmd_output","timestamp":1607098234,"output":"2-.semaphore/semaphore.yml\", organization_id: \"763c79be-7de4-4489-9f0b-757283357586\", project_id: \"l"},{"event":"cmd_output","timestamp":1607098234,"output":"ist_grouped_ks\", queue_id: \"7ebc94b6-6bc8-4fb4-a33a-991b9ff6594d\", scope: \"project\", updated_at: ~N["},{"event":"cmd_output","timestamp":1607098234,"output":"2020-12-04 16:10:34.556152], user_generated: false}}\n\u001b[0m\u001b[22m\n16:10:34.563 [info] ppl_id: a56523"},{"event":"cmd_output","timestamp":1607098234,"output":"39-427d-4d00-8eb6-93d37d7b15d7, type: PplRequests, event: persisted source_args for pipeline: a56523"},{"event":"cmd_output","timestamp":1607098234,"output":"39-427d-4d00-8eb6-93d37d7b15d7, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_sourc"},{"event":"cmd_output","timestamp":1607098234,"output":"e/2(L89), \n\u001b[0m\u001b[22m\n16:10:34.569 [info] ppl_id: 5506b60b-833c-4fd8-b2e9-a25d951ae2a8, block_id: "},{"event":"cmd_output","timestamp":1607098234,"output":"de1530ef-66fe-44da-b6df-03bb2aad8437, type: PplBlocks, block_index: 0, state: done, result: passed, "},{"event":"cmd_output","timestamp":1607098234,"output":"event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \r"},{"event":"cmd_output","timestamp":1607098234,"output":"\n\u001b[0m\u001b[22m\n16:10:34.570 [info] ppl_id: a5652339-427d-4d00-8eb6-93d37d7b15d7, type: PplSubInits, st"},{"event":"cmd_output","timestamp":1607098234,"output":"ate: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098234,"output":"hange/1(L90), \n\u001b[0m\u001b[22m\n16:10:34.570 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHa"},{"event":"cmd_output","timestamp":1607098234,"output":"ndler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:34.570 [info] ppl_id: 328dba5f-d505-4e3d"},{"event":"cmd_output","timestamp":1607098234,"output":"-8b24-50ef232eeb51, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_c"},{"event":"cmd_output","timestamp":1607098234,"output":"ount: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098234,"output":":10:34.574 [info] ppl_id: 328dba5f-d505-4e3d-8b24-50ef232eeb51, type: PplSubInits, state: done, res"},{"event":"cmd_output","timestamp":1607098234,"output":"ult: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_cha"},{"event":"cmd_output","timestamp":1607098234,"output":"nge/1(L90), \n\u001b[0m\u001b[22m\n16:10:34.575 [info] block_id: 74d16058-ae51-4182-b158-1a41d99611d0, type: "},{"event":"cmd_output","timestamp":1607098234,"output":"Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098234,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:34.596 [info] ppl_id: 328dba5f-d505-4e3d-8b24-50ef232eeb51"},{"event":"cmd_output","timestamp":1607098234,"output":", type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098234,"output":": Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:34.600 [info] ppl_id: 328dba5f"},{"event":"cmd_output","timestamp":1607098234,"output":"-d505-4e3d-8b24-50ef232eeb51, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098234,"output":" origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:34.613 [info] ppl_id: 5"},{"event":"cmd_output","timestamp":1607098234,"output":"506b60b-833c-4fd8-b2e9-a25d951ae2a8, type: Ppls, state: done, result: passed, event: exit_scheduling"},{"event":"cmd_output","timestamp":1607098234,"output":", recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:34.6"},{"event":"cmd_output","timestamp":1607098234,"output":"23 [info] ppl_id: 328dba5f-d505-4e3d-8b24-50ef232eeb51, type: Ppls, state: queuing, event: exit_sch"},{"event":"cmd_output","timestamp":1607098234,"output":"eduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098234,"output":"10:34.636 [info] ppl_id: a5652339-427d-4d00-8eb6-93d37d7b15d7, type: PplSubInits, state: regular_in"},{"event":"cmd_output","timestamp":1607098234,"output":"it, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90"},{"event":"cmd_output","timestamp":1607098234,"output":"), \n\u001b[0m\u001b[22m\n16:10:34.645 [info] block_id: 74d16058-ae51-4182-b158-1a41d99611d0, type: Tasks, st"},{"event":"cmd_output","timestamp":1607098234,"output":"ate: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chang"},{"event":"cmd_output","timestamp":1607098234,"output":"e/1(L90), \n\u001b[0m\u001b[22m\n16:10:34.650 [info] ppl_id: 328dba5f-d505-4e3d-8b24-50ef232eeb51, type: Ppls"},{"event":"cmd_output","timestamp":1607098234,"output":", state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_stat"},{"event":"cmd_output","timestamp":1607098234,"output":"e_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:34.658 [info] block_id: 74d16058-ae51-4182-b158-1a41d99611d0, t"},{"event":"cmd_output","timestamp":1607098234,"output":"ype: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl."},{"event":"cmd_output","timestamp":1607098234,"output":"log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:34.666 [info] PplBlocks WaitingState STM is scheduling "},{"event":"cmd_output","timestamp":1607098234,"output":"block 0 from pipeline: \"328dba5f-d505-4e3d-8b24-50ef232eeb51\"\n\u001b[0m\u001b[22m\n16:10:34.683 [info] block"},{"event":"cmd_output","timestamp":1607098234,"output":"_id: 88442ef2-7cda-4d64-949d-c56556dee54f, type: BlockRequests, event: persisted block run request f"},{"event":"cmd_output","timestamp":1607098234,"output":"rom ppl 328dba5f-d505-4e3d-8b24-50ef232eeb51 for block 0, origin: Elixir.Block.BlockRequests.Model.B"},{"event":"cmd_output","timestamp":1607098234,"output":"lockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:34.684 [info] ppl_id: a973f903-0ded"},{"event":"cmd_output","timestamp":1607098234,"output":"-4a12-82dd-9a0a1488beb0, block_id: 74d16058-ae51-4182-b158-1a41d99611d0, type: PplBlocks, block_inde"},{"event":"cmd_output","timestamp":1607098234,"output":"x: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper."},{"event":"cmd_output","timestamp":1607098234,"output":"STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:34.687 [info] block_id: 88442ef2-7cda-4d64-949"},{"event":"cmd_output","timestamp":1607098234,"output":"d-c56556dee54f, type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: E"},{"event":"cmd_output","timestamp":1607098234,"output":"lixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:34.690 [info] Block 0 of p"},{"event":"cmd_output","timestamp":1607098234,"output":"ipeline with id: 328dba5f-d505-4e3d-8b24-50ef232eeb51 scheduled in block service with id: : \"88442ef"},{"event":"cmd_output","timestamp":1607098234,"output":"2-7cda-4d64-949d-c56556dee54f\"\n\u001b[0m\u001b[22m\n16:10:34.705 [info] ppl_id: 328dba5f-d505-4e3d-8b24-50ef"},{"event":"cmd_output","timestamp":1607098234,"output":"232eeb51, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0"},{"event":"cmd_output","timestamp":1607098234,"output":", origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:34.706 [info] ppl_id: "},{"event":"cmd_output","timestamp":1607098234,"output":"a5652339-427d-4d00-8eb6-93d37d7b15d7, type: PplRequests, event: persisted definition for request wit"},{"event":"cmd_output","timestamp":1607098234,"output":"h request_token: 3cfdce92-364b-11eb-8653-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplReque"},{"event":"cmd_output","timestamp":1607098234,"output":"stsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:34.712 [info] ppl_id: 98ce822b-eac8-4236-80"},{"event":"cmd_output","timestamp":1607098234,"output":"3c-894b9978a3c3, type: PplRequests, event: persisted source_args for pipeline: 98ce822b-eac8-4236-80"},{"event":"cmd_output","timestamp":1607098234,"output":"3c-894b9978a3c3, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098234,"output":"m\u001b[22m\n16:10:34.714 [info] block_id: 88442ef2-7cda-4d64-949d-c56556dee54f, type: BlockRequests, ev"},{"event":"cmd_output","timestamp":1607098234,"output":"ent: persisted build and sub_ppl details for block_request: 88442ef2-7cda-4d64-949d-c56556dee54f, or"},{"event":"cmd_output","timestamp":1607098234,"output":"igin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:"},{"event":"cmd_output","timestamp":1607098234,"output":"34.717 [info] block_id: 88442ef2-7cda-4d64-949d-c56556dee54f, type: Tasks, state: pending, event: c"},{"event":"cmd_output","timestamp":1607098234,"output":"reated, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167),"},{"event":"cmd_output","timestamp":1607098234,"output":" \n\u001b[0m\u001b[22m\n16:10:34.719 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.S"},{"event":"cmd_output","timestamp":1607098234,"output":"chema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:10:34.715782], name: \"master-3-.sem"},{"event":"cmd_output","timestamp":1607098234,"output":"aphore/semaphore.yml\", organization_id: \"d7e2ba5d-30e7-4992-b15c-719f1be42bfa\", project_id: \"list_gr"},{"event":"cmd_output","timestamp":1607098234,"output":"ouped_ks\", queue_id: \"0fbe19db-30d8-4fbe-8f05-12f8f246c765\", scope: \"project\", updated_at: ~N[2020-1"},{"event":"cmd_output","timestamp":1607098234,"output":"2-04 16:10:34.715790], user_generated: false}}\n\u001b[0m\u001b[22m\n16:10:34.719 [info] ppl_id: 98ce822b-eac"},{"event":"cmd_output","timestamp":1607098234,"output":"8-4236-803c-894b9978a3c3, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count"},{"event":"cmd_output","timestamp":1607098234,"output":": 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:34.721 [info] block"},{"event":"cmd_output","timestamp":1607098234,"output":"_id: 88442ef2-7cda-4d64-949d-c56556dee54f, type: Blocks, state: running, event: exit_scheduling, rec"},{"event":"cmd_output","timestamp":1607098234,"output":"overy_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:34.740 [i"},{"event":"cmd_output","timestamp":1607098234,"output":"nfo] ppl_id: a973f903-0ded-4a12-82dd-9a0a1488beb0, type: Ppls, state: done, result: passed, event: "},{"event":"cmd_output","timestamp":1607098234,"output":"exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098234,"output":"22m\n16:10:34.740 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState"},{"event":"cmd_output","timestamp":1607098234,"output":".all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:34.740 [info] ppl_id: a5652339-427d-4d00-8eb6-93d37d7b15d7, ty"},{"event":"cmd_output","timestamp":1607098234,"output":"pe: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098234,"output":"r.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:34.751 [info] ppl"},{"event":"cmd_output","timestamp":1607098234,"output":"_id: a5652339-427d-4d00-8eb6-93d37d7b15d7, type: PplSubInits, state: done, result: passed, event: ex"},{"event":"cmd_output","timestamp":1607098234,"output":"it_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098234,"output":"m\n16:10:34.759 [info] block_id: 88442ef2-7cda-4d64-949d-c56556dee54f, type: Tasks, state: running,"},{"event":"cmd_output","timestamp":1607098234,"output":" event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), "},{"event":"cmd_output","timestamp":1607098234,"output":"\n\u001b[0m\u001b[22m\n16:10:34.775 [info] ppl_id: a5652339-427d-4d00-8eb6-93d37d7b15d7, type: PplBlocks, blo"},{"event":"cmd_output","timestamp":1607098234,"output":"ck_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Im"},{"event":"cmd_output","timestamp":1607098234,"output":"pl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:34.784 [info] ppl_id: a5652339-427d-4d00-8eb6-93d37d"},{"event":"cmd_output","timestamp":1607098234,"output":"7b15d7, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper"},{"event":"cmd_output","timestamp":1607098234,"output":".STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:34.792 [info] block_id: 88442ef2-7cda-4d64-94"},{"event":"cmd_output","timestamp":1607098234,"output":"9d-c56556dee54f, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098234,"output":".Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:34.799 [info] ppl_id: 98ce822b-eac8-42"},{"event":"cmd_output","timestamp":1607098234,"output":"36-803c-894b9978a3c3, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count"},{"event":"cmd_output","timestamp":1607098234,"output":": 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:34.806 [info] block"},{"event":"cmd_output","timestamp":1607098234,"output":"_id: 88442ef2-7cda-4d64-949d-c56556dee54f, type: Blocks, state: done, event: exit_scheduling, recove"},{"event":"cmd_output","timestamp":1607098234,"output":"ry_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:34.808 [info"},{"event":"cmd_output","timestamp":1607098234,"output":"] ppl_id: a5652339-427d-4d00-8eb6-93d37d7b15d7, type: Ppls, state: queuing, event: exit_scheduling,"},{"event":"cmd_output","timestamp":1607098234,"output":" recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:34.83"},{"event":"cmd_output","timestamp":1607098234,"output":"4 [info] ppl_id: 328dba5f-d505-4e3d-8b24-50ef232eeb51, block_id: 88442ef2-7cda-4d64-949d-c56556dee5"},{"event":"cmd_output","timestamp":1607098234,"output":"4f, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098234,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:34.845 [info] p"},{"event":"cmd_output","timestamp":1607098234,"output":"pl_id: 0dbec12c-cbb1-4901-81fb-9fe26b2d121a, type: PplRequests, event: persisted source_args for pip"},{"event":"cmd_output","timestamp":1607098234,"output":"eline: 0dbec12c-cbb1-4901-81fb-9fe26b2d121a, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries"},{"event":"cmd_output","timestamp":1607098234,"output":".insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:34.850 [info] ppl_id: a5652339-427d-4d00-8eb6-93d37d7b15d"},{"event":"cmd_output","timestamp":1607098234,"output":"7, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM."},{"event":"cmd_output","timestamp":1607098234,"output":"Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:34.855 [info] ppl_id: 0dbec12c-cbb1-4901-81fb-9fe2"},{"event":"cmd_output","timestamp":1607098234,"output":"6b2d121a, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098234,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:34.870 [info] PplBlocks WaitingStat"},{"event":"cmd_output","timestamp":1607098234,"output":"e STM is scheduling block 0 from pipeline: \"a5652339-427d-4d00-8eb6-93d37d7b15d7\"\n\u001b[0m\u001b[22m\n16:10:"},{"event":"cmd_output","timestamp":1607098234,"output":"34.877 [info] ppl_id: 98ce822b-eac8-4236-803c-894b9978a3c3, type: PplRequests, event: persisted def"},{"event":"cmd_output","timestamp":1607098234,"output":"inition for request with request_token: 3d090df2-364b-11eb-ad83-5254005464e2, origin: Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098234,"output":"Requests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:34.878 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098234,"output":": 328dba5f-d505-4e3d-8b24-50ef232eeb51, type: Ppls, state: done, result: passed, event: exit_schedul"},{"event":"cmd_output","timestamp":1607098234,"output":"ing, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:3"},{"event":"cmd_output","timestamp":1607098234,"output":"4.881 [info] block_id: 1275d930-3181-4456-abf2-de8c6e88d828, type: BlockRequests, event: persisted "},{"event":"cmd_output","timestamp":1607098234,"output":"block run request from ppl a5652339-427d-4d00-8eb6-93d37d7b15d7 for block 0, origin: Elixir.Block.Bl"},{"event":"cmd_output","timestamp":1607098234,"output":"ockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:34.884 [info] bl"},{"event":"cmd_output","timestamp":1607098234,"output":"ock_id: 1275d930-3181-4456-abf2-de8c6e88d828, type: Blocks, state: initializing, event: initializing"},{"event":"cmd_output","timestamp":1607098234,"output":", recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098234,"output":"10:34.891 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:l"},{"event":"cmd_output","timestamp":1607098234,"output":"oaded, \"queues\">, inserted_at: ~N[2020-12-04 16:10:34.888340], name: \"master-4-.semaphore/semaphore."},{"event":"cmd_output","timestamp":1607098234,"output":"yml\", organization_id: \"b2e6f579-d7a1-4bc4-860c-c802b865dafe\", project_id: \"list_grouped_ks\", queue_"},{"event":"cmd_output","timestamp":1607098234,"output":"id: \"eb640db7-93a0-441f-9795-e9eded060fc9\", scope: \"project\", updated_at: ~N[2020-12-04 16:10:34.888"},{"event":"cmd_output","timestamp":1607098234,"output":"353], user_generated: false}}\n\u001b[0m\u001b[22m\n16:10:34.893 [info] Block 0 of pipeline with id: a5652339"},{"event":"cmd_output","timestamp":1607098234,"output":"-427d-4d00-8eb6-93d37d7b15d7 scheduled in block service with id: : \"1275d930-3181-4456-abf2-de8c6e88"},{"event":"cmd_output","timestamp":1607098234,"output":"d828\"\n\u001b[0m\u001b[22m\n16:10:34.898 [info] ppl_id: a5652339-427d-4d00-8eb6-93d37d7b15d7, type: PplBlocks"},{"event":"cmd_output","timestamp":1607098234,"output":", block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.S"},{"event":"cmd_output","timestamp":1607098234,"output":"TM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:34.904 [info] block_id: 1275d930-3181-4456-abf2"},{"event":"cmd_output","timestamp":1607098234,"output":"-de8c6e88d828, type: BlockRequests, event: persisted build and sub_ppl details for block_request: 12"},{"event":"cmd_output","timestamp":1607098234,"output":"75d930-3181-4456-abf2-de8c6e88d828, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.in"},{"event":"cmd_output","timestamp":1607098234,"output":"sert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:34.904 [info] event: created, origin: Elixir.Ppl.PplSubInits."},{"event":"cmd_output","timestamp":1607098234,"output":"STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:34.904 [info] ppl_id: 98ce822b-eac8"},{"event":"cmd_output","timestamp":1607098234,"output":"-4236-803c-894b9978a3c3, type: PplBlocks, block_index: 0, state: initializing, event: created, recov"},{"event":"cmd_output","timestamp":1607098234,"output":"ery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098234,"output":"m\n16:10:34.907 [info] ppl_id: 98ce822b-eac8-4236-803c-894b9978a3c3, type: PplSubInits, state: done"},{"event":"cmd_output","timestamp":1607098234,"output":", result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_stat"},{"event":"cmd_output","timestamp":1607098234,"output":"e_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:34.914 [info] block_id: 1275d930-3181-4456-abf2-de8c6e88d828, t"},{"event":"cmd_output","timestamp":1607098234,"output":"ype: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandle"},{"event":"cmd_output","timestamp":1607098234,"output":"r.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:34.923 [info] block_id: 1275d930-3181-4456-"},{"event":"cmd_output","timestamp":1607098234,"output":"abf2-de8c6e88d828, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098234,"output":"Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:34.923 [info] ppl_id: 0dbec12c-c"},{"event":"cmd_output","timestamp":1607098234,"output":"bb1-4901-81fb-9fe26b2d121a, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery"},{"event":"cmd_output","timestamp":1607098234,"output":"_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:34.925 [info] "},{"event":"cmd_output","timestamp":1607098234,"output":" ppl_id: 98ce822b-eac8-4236-803c-894b9978a3c3, type: PplBlocks, block_index: 0, state: waiting, even"},{"event":"cmd_output","timestamp":1607098234,"output":"t: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098234,"output":"m\u001b[22m\n16:10:34.945 [info] ppl_id: 98ce822b-eac8-4236-803c-894b9978a3c3, type: Ppls, state: pendin"},{"event":"cmd_output","timestamp":1607098234,"output":"g, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90)"},{"event":"cmd_output","timestamp":1607098234,"output":", \n\u001b[0m\u001b[22m\n16:10:34.964 [info] block_id: 1275d930-3181-4456-abf2-de8c6e88d828, type: Tasks, sta"},{"event":"cmd_output","timestamp":1607098234,"output":"te: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_cha"},{"event":"cmd_output","timestamp":1607098234,"output":"nge/1(L90), \n\u001b[0m\u001b[22m\n16:10:34.973 [info] ppl_id: 98ce822b-eac8-4236-803c-894b9978a3c3, type: Pp"},{"event":"cmd_output","timestamp":1607098234,"output":"ls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_st"},{"event":"cmd_output","timestamp":1607098234,"output":"ate_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:34.982 [info] ppl_id: 0dbec12c-cbb1-4901-81fb-9fe26b2d121a, t"},{"event":"cmd_output","timestamp":1607098234,"output":"ype: PplRequests, event: persisted definition for request with request_token: 3d12531c-364b-11eb-b09"},{"event":"cmd_output","timestamp":1607098234,"output":"4-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n"},{"event":"cmd_output","timestamp":1607098234,"output":"\u001b[0m\u001b[22m\n16:10:34.983 [info] ppl_id: 98ce822b-eac8-4236-803c-894b9978a3c3, type: Ppls, state: run"},{"event":"cmd_output","timestamp":1607098234,"output":"ning, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098234,"output":"90), \n\u001b[0m\u001b[22m\n16:10:34.990 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ec"},{"event":"cmd_output","timestamp":1607098234,"output":"to.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:10:34.986457], name: \"master-5-"},{"event":"cmd_output","timestamp":1607098234,"output":".semaphore/semaphore.yml\", organization_id: \"60b95f81-c3eb-46d8-b972-2ae54ee6a868\", project_id: \"lis"},{"event":"cmd_output","timestamp":1607098234,"output":"t_grouped_ks\", queue_id: \"ee0b1a08-bc79-41e6-a887-c0daf6e9170a\", scope: \"project\", updated_at: ~N[20"},{"event":"cmd_output","timestamp":1607098234,"output":"20-12-04 16:10:34.986470], user_generated: false}}\n\u001b[0m\u001b[22m\n16:10:34.995 [info] PplBlocks Waitin"},{"event":"cmd_output","timestamp":1607098234,"output":"gState STM is scheduling block 0 from pipeline: \"98ce822b-eac8-4236-803c-894b9978a3c3\"\n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098234,"output":"6:10:34.998 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_o"},{"event":"cmd_output","timestamp":1607098234,"output":"k?/1(L105), \n\u001b[0m\u001b[22m\n16:10:34.998 [info] ppl_id: 0dbec12c-cbb1-4901-81fb-9fe26b2d121a, type: Pp"},{"event":"cmd_output","timestamp":1607098234,"output":"lBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl."},{"event":"cmd_output","timestamp":1607098235,"output":"PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:35.002 [info] ppl_id: 0"},{"event":"cmd_output","timestamp":1607098235,"output":"dbec12c-cbb1-4901-81fb-9fe26b2d121a, type: PplSubInits, state: done, result: passed, event: exit_sch"},{"event":"cmd_output","timestamp":1607098235,"output":"eduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098235,"output":"10:35.008 [info] block_id: 32ed3c95-f556-4326-8ca2-112f4a602170, type: BlockRequests, event: persis"},{"event":"cmd_output","timestamp":1607098235,"output":"ted block run request from ppl 98ce822b-eac8-4236-803c-894b9978a3c3 for block 0, origin: Elixir.Bloc"},{"event":"cmd_output","timestamp":1607098235,"output":"k.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:35.015 [info]"},{"event":"cmd_output","timestamp":1607098235,"output":" ppl_id: 0dbec12c-cbb1-4901-81fb-9fe26b2d121a, type: Ppls, state: pending, event: exit_scheduling, "},{"event":"cmd_output","timestamp":1607098235,"output":"recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:35.021"},{"event":"cmd_output","timestamp":1607098235,"output":" [info] block_id: 32ed3c95-f556-4326-8ca2-112f4a602170, type: Blocks, state: initializing, event: i"},{"event":"cmd_output","timestamp":1607098235,"output":"nitializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098235,"output":"m\u001b[22m\n16:10:35.024 [info] block_id: 1275d930-3181-4456-abf2-de8c6e88d828, type: Tasks, state: don"},{"event":"cmd_output","timestamp":1607098235,"output":"e, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90)"},{"event":"cmd_output","timestamp":1607098235,"output":", \n\u001b[0m\u001b[22m\n16:10:35.027 [info] ppl_id: 0dbec12c-cbb1-4901-81fb-9fe26b2d121a, type: PplBlocks, b"},{"event":"cmd_output","timestamp":1607098235,"output":"lock_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM."},{"event":"cmd_output","timestamp":1607098235,"output":"Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:35.032 [info] Block 0 of pipeline with id: 98ce822"},{"event":"cmd_output","timestamp":1607098235,"output":"b-eac8-4236-803c-894b9978a3c3 scheduled in block service with id: : \"32ed3c95-f556-4326-8ca2-112f4a6"},{"event":"cmd_output","timestamp":1607098235,"output":"02170\"\n\u001b[0m\u001b[22m\n16:10:35.039 [info] ppl_id: 98ce822b-eac8-4236-803c-894b9978a3c3, type: PplBlock"},{"event":"cmd_output","timestamp":1607098235,"output":"s, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper."},{"event":"cmd_output","timestamp":1607098235,"output":"STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:35.040 [info] block_id: 32ed3c95-f556-4326-8ca"},{"event":"cmd_output","timestamp":1607098235,"output":"2-112f4a602170, type: BlockRequests, event: persisted build and sub_ppl details for block_request: 3"},{"event":"cmd_output","timestamp":1607098235,"output":"2ed3c95-f556-4326-8ca2-112f4a602170, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.i"},{"event":"cmd_output","timestamp":1607098235,"output":"nsert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:35.047 [info] block_id: 32ed3c95-f556-4326-8ca2-112f4a602170"},{"event":"cmd_output","timestamp":1607098235,"output":", type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHan"},{"event":"cmd_output","timestamp":1607098235,"output":"dler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:35.049 [info] ppl_id: 0dbec12c-cbb1-4901"},{"event":"cmd_output","timestamp":1607098235,"output":"-81fb-9fe26b2d121a, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: E"},{"event":"cmd_output","timestamp":1607098235,"output":"lixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:35.052 [info] block_id: 1275d930-"},{"event":"cmd_output","timestamp":1607098235,"output":"3181-4456-abf2-de8c6e88d828, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098235,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:35.055 [info] block_id: 3"},{"event":"cmd_output","timestamp":1607098235,"output":"2ed3c95-f556-4326-8ca2-112f4a602170, type: Blocks, state: running, event: exit_scheduling, recovery_"},{"event":"cmd_output","timestamp":1607098235,"output":"count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:35.080 [info] "},{"event":"cmd_output","timestamp":1607098235,"output":"ppl_id: a5652339-427d-4d00-8eb6-93d37d7b15d7, block_id: 1275d930-3181-4456-abf2-de8c6e88d828, type: "},{"event":"cmd_output","timestamp":1607098235,"output":"PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098235,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:35.082 [info] ppl_id: 0db"},{"event":"cmd_output","timestamp":1607098235,"output":"ec12c-cbb1-4901-81fb-9fe26b2d121a, type: Ppls, state: running, event: exit_scheduling, recovery_coun"},{"event":"cmd_output","timestamp":1607098235,"output":"t: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:35.086 [info] bloc"},{"event":"cmd_output","timestamp":1607098235,"output":"k_id: 32ed3c95-f556-4326-8ca2-112f4a602170, type: Tasks, state: running, event: exit_scheduling, rec"},{"event":"cmd_output","timestamp":1607098235,"output":"overy_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:35.093 [i"},{"event":"cmd_output","timestamp":1607098235,"output":"nfo] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"0dbec12c-cbb1-4901-81fb-9fe26"},{"event":"cmd_output","timestamp":1607098235,"output":"b2d121a\"\n\u001b[0m\u001b[22m\n16:10:35.103 [info] block_id: 8432a174-80e0-42d5-9f73-4f5201ba9752, type: Bloc"},{"event":"cmd_output","timestamp":1607098235,"output":"kRequests, event: persisted block run request from ppl 0dbec12c-cbb1-4901-81fb-9fe26b2d121a for bloc"},{"event":"cmd_output","timestamp":1607098235,"output":"k 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098235,"output":"22m\n16:10:35.106 [info] block_id: 8432a174-80e0-42d5-9f73-4f5201ba9752, type: Blocks, state: initi"},{"event":"cmd_output","timestamp":1607098235,"output":"alizing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.ins"},{"event":"cmd_output","timestamp":1607098235,"output":"ert/1(L43), \n\u001b[0m\u001b[22m\n16:10:35.108 [info] Block 0 of pipeline with id: 0dbec12c-cbb1-4901-81fb-9"},{"event":"cmd_output","timestamp":1607098235,"output":"fe26b2d121a scheduled in block service with id: : \"8432a174-80e0-42d5-9f73-4f5201ba9752\"\n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098235,"output":"\n16:10:35.111 [info] ppl_id: 0dbec12c-cbb1-4901-81fb-9fe26b2d121a, type: PplBlocks, block_index: 0,"},{"event":"cmd_output","timestamp":1607098235,"output":" state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state"},{"event":"cmd_output","timestamp":1607098235,"output":"_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:35.116 [info] ppl_id: a5652339-427d-4d00-8eb6-93d37d7b15d7, type"},{"event":"cmd_output","timestamp":1607098235,"output":": Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loope"},{"event":"cmd_output","timestamp":1607098235,"output":"r.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:35.118 [info] block_id: 8432a174-80e0-42d5-9"},{"event":"cmd_output","timestamp":1607098235,"output":"f73-4f5201ba9752, type: BlockRequests, event: persisted build and sub_ppl details for block_request:"},{"event":"cmd_output","timestamp":1607098235,"output":" 8432a174-80e0-42d5-9f73-4f5201ba9752, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries"},{"event":"cmd_output","timestamp":1607098235,"output":".insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:35.121 [info] block_id: 8432a174-80e0-42d5-9f73-4f5201ba97"},{"event":"cmd_output","timestamp":1607098235,"output":"52, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMH"},{"event":"cmd_output","timestamp":1607098235,"output":"andler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:35.124 [info] block_id: 8432a174-80e0-"},{"event":"cmd_output","timestamp":1607098235,"output":"42d5-9f73-4f5201ba9752, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098235,"output":"gin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:35.142 [info] block_id: 843"},{"event":"cmd_output","timestamp":1607098235,"output":"2a174-80e0-42d5-9f73-4f5201ba9752, type: Tasks, state: running, event: exit_scheduling, recovery_cou"},{"event":"cmd_output","timestamp":1607098235,"output":"nt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:35.150 [info] blo"},{"event":"cmd_output","timestamp":1607098235,"output":"ck_id: 32ed3c95-f556-4326-8ca2-112f4a602170, type: Tasks, state: done, event: exit_scheduling, recov"},{"event":"cmd_output","timestamp":1607098235,"output":"ery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:35.158 [inf"},{"event":"cmd_output","timestamp":1607098235,"output":"o] block_id: 32ed3c95-f556-4326-8ca2-112f4a602170, type: Blocks, state: done, event: exit_schedulin"},{"event":"cmd_output","timestamp":1607098235,"output":"g, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:35."},{"event":"cmd_output","timestamp":1607098235,"output":"167 [info] ppl_id: 98ce822b-eac8-4236-803c-894b9978a3c3, block_id: 32ed3c95-f556-4326-8ca2-112f4a60"},{"event":"cmd_output","timestamp":1607098235,"output":"2170, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery"},{"event":"cmd_output","timestamp":1607098235,"output":"_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:35.184 [info] "},{"event":"cmd_output","timestamp":1607098235,"output":" ppl_id: 98ce822b-eac8-4236-803c-894b9978a3c3, type: Ppls, state: done, result: passed, event: exit_"},{"event":"cmd_output","timestamp":1607098235,"output":"scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098235,"output":"16:10:35.262 [info] block_id: 8432a174-80e0-42d5-9f73-4f5201ba9752, type: Tasks, state: done, event"},{"event":"cmd_output","timestamp":1607098235,"output":": exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098235,"output":"\u001b[22m\n16:10:35.270 [info] block_id: 8432a174-80e0-42d5-9f73-4f5201ba9752, type: Blocks, state: don"},{"event":"cmd_output","timestamp":1607098235,"output":"e, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90)"},{"event":"cmd_output","timestamp":1607098235,"output":", \n\u001b[0m\u001b[22m\n16:10:35.280 [info] ppl_id: 0dbec12c-cbb1-4901-81fb-9fe26b2d121a, block_id: 8432a174"},{"event":"cmd_output","timestamp":1607098235,"output":"-80e0-42d5-9f73-4f5201ba9752, type: PplBlocks, block_index: 0, state: done, result: passed, event: e"},{"event":"cmd_output","timestamp":1607098235,"output":"xit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098235,"output":"2m\n16:10:35.296 [info] ppl_id: 0dbec12c-cbb1-4901-81fb-9fe26b2d121a, type: Ppls, state: done, resu"},{"event":"cmd_output","timestamp":1607098235,"output":"lt: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chan"},{"event":"cmd_output","timestamp":1607098235,"output":"ge/1(L90), \n\u001b[0m\u001b[32m\r * test gRPC list_grouped_ks() - successfully walk the list in both directio"},{"event":"cmd_output","timestamp":1607098235,"output":"ns (1774.5ms)\u001b[0m\n\nPpl.WorkflowQueries.Test\n * test get_workflows returns workflows for provided"},{"event":"cmd_output","timestamp":1607098235,"output":" IDs ordered in desc by inserted_at\r * test get_workflows returns workflows for provided IDs ordere"},{"event":"cmd_output","timestamp":1607098235,"output":"d in desc by inserted_at (skipped)\n * test list_keyset returns workflows for everyone's activity i"},{"event":"cmd_output","timestamp":1607098235,"output":"n organization\r * test list_keyset returns workflows for everyone's activity in organization (skipp"},{"event":"cmd_output","timestamp":1607098235,"output":"ed)\n * test list_keyset returns workflows for my work in organization\r * test list_keyset returns"},{"event":"cmd_output","timestamp":1607098235,"output":" workflows for my work in organization (skipped)\n * test list_latest_workflows returns latest work"},{"event":"cmd_output","timestamp":1607098235,"output":"flows for project per each branch\r * test list_latest_workflows returns latest workflows for projec"},{"event":"cmd_output","timestamp":1607098235,"output":"t per each branch (skipped)\n * test list_latest_workflows returns paginated workflows\r * test lis"},{"event":"cmd_output","timestamp":1607098235,"output":"t_latest_workflows returns paginated workflows (skipped)\n * test list_keyset returns workflows for"},{"event":"cmd_output","timestamp":1607098235,"output":" the branch page\r * test list_keyset returns workflows for the branch page (skipped)\n\nTest.Suppor"},{"event":"cmd_output","timestamp":1607098235,"output":"t.WorkflowBuilder.Test\n * test build workflow and get valid description\u001b[22m\n16:10:35.479 [info] "},{"event":"cmd_output","timestamp":1607098235,"output":" Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.STMHand"},{"event":"cmd_output","timestamp":1607098235,"output":"ler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler"},{"event":"cmd_output","timestamp":1607098235,"output":"-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], coolin"},{"event":"cmd_output","timestamp":1607098235,"output":"g_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher_cb: #Fu"},{"event":"cmd_output","timestamp":1607098235,"output":"nction<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, returning"},{"event":"cmd_output","timestamp":1607098235,"output":": [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098235,"output":"s.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:35.479 [info] Periodic from module Elixir.P"},{"event":"cmd_output","timestamp":1607098235,"output":"pl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 100 ms,"},{"event":"cmd_output","timestamp":1607098235,"output":" metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args: %{allo"},{"event":"cmd_output","timestamp":1607098235,"output":"wed_states: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls."},{"event":"cmd_output","timestamp":1607098235,"output":"Model.Ppls, observed_state: \"pending\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler.Pe"},{"event":"cmd_output","timestamp":1607098235,"output":"ndingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :r"},{"event":"cmd_output","timestamp":1607098235,"output":"esult, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\r"},{"event":"cmd_output","timestamp":1607098235,"output":"\n\u001b[0m\u001b[22m\n16:10:35.479 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.QueuingState with n"},{"event":"cmd_output","timestamp":1607098235,"output":"ame Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\","},{"event":"cmd_output","timestamp":1607098235,"output":" [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{allowed_states: [\"queuing\", \"running\", \"do"},{"event":"cmd_output","timestamp":1607098235,"output":"ne\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", publisher"},{"event":"cmd_output","timestamp":1607098235,"output":"_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, return"},{"event":"cmd_output","timestamp":1607098235,"output":"ing: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl."},{"event":"cmd_output","timestamp":1607098235,"output":"Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:35.480 [info] Periodic from module Elixi"},{"event":"cmd_output","timestamp":1607098235,"output":"r.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHandler.RunningState :: period: 100 "},{"event":"cmd_output","timestamp":1607098235,"output":"ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring args: %{a"},{"event":"cmd_output","timestamp":1607098235,"output":"llowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model."},{"event":"cmd_output","timestamp":1607098235,"output":"Ppls, observed_state: \"running\", publisher_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler.Running"},{"event":"cmd_output","timestamp":1607098235,"output":"State.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result"},{"event":"cmd_output","timestamp":1607098235,"output":", :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m"},{"event":"cmd_output","timestamp":1607098235,"output":"\u001b[22m\n16:10:35.480 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.StoppingState with name "},{"event":"cmd_output","timestamp":1607098235,"output":"Elixir.Ppl.Ppls.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\""},{"event":"cmd_output","timestamp":1607098235,"output":"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], coolin"},{"event":"cmd_output","timestamp":1607098235,"output":"g_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"stopping\", publisher_cb: #Funct"},{"event":"cmd_output","timestamp":1607098235,"output":"ion<0.71803493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, "},{"event":"cmd_output","timestamp":1607098235,"output":":terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model."},{"event":"cmd_output","timestamp":1607098235,"output":"Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:35.480 [info] Periodic from module Elixir.Ppl.PplSu"},{"event":"cmd_output","timestamp":1607098235,"output":"bInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 1"},{"event":"cmd_output","timestamp":1607098235,"output":"00 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring"},{"event":"cmd_output","timestamp":1607098235,"output":" args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.M"},{"event":"cmd_output","timestamp":1607098235,"output":"odel.PplSubInits, observed_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:i"},{"event":"cmd_output","timestamp":1607098235,"output":"d, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubIn"},{"event":"cmd_output","timestamp":1607098235,"output":"its.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:35.480 [info] Periodic from module"},{"event":"cmd_output","timestamp":1607098235,"output":" Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler.Fetchin"},{"event":"cmd_output","timestamp":1607098235,"output":"gState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-Fetchin"},{"event":"cmd_output","timestamp":1607098235,"output":"gState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"done\"], cooling_time_s"},{"event":"cmd_output","timestamp":1607098235,"output":"ec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fetching\", publisher_cb: "},{"event":"cmd_output","timestamp":1607098235,"output":":skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recov"},{"event":"cmd_output","timestamp":1607098235,"output":"ery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098235,"output":"16:10:35.481 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CompilationState with na"},{"event":"cmd_output","timestamp":1607098235,"output":"me Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 100 ms, metric_name: {\"Ppl.beholder"},{"event":"cmd_output","timestamp":1607098235,"output":"-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurring args: %{allowed_states: [\"reg"},{"event":"cmd_output","timestamp":1607098235,"output":"ular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits"},{"event":"cmd_output","timestamp":1607098235,"output":".Model.PplSubInits, observed_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returnin"},{"event":"cmd_output","timestamp":1607098235,"output":"g: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Pp"},{"event":"cmd_output","timestamp":1607098235,"output":"lSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:35.481 [info] Periodic from "},{"event":"cmd_output","timestamp":1607098235,"output":"module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHandle"},{"event":"cmd_output","timestamp":1607098235,"output":"r.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHan"},{"event":"cmd_output","timestamp":1607098235,"output":"dler-RegularInitState\"]}, recurring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, initial_q"},{"event":"cmd_output","timestamp":1607098235,"output":"uery: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_init\", publisher_cb: :skip, repo: "},{"event":"cmd_output","timestamp":1607098235,"output":"Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :p"},{"event":"cmd_output","timestamp":1607098235,"output":"pl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:35.481 "},{"event":"cmd_output","timestamp":1607098235,"output":"[info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.InitializingState with name Elixir.Ppl."},{"event":"cmd_output","timestamp":1607098235,"output":"PplBlocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Pp"},{"event":"cmd_output","timestamp":1607098235,"output":"l-PplBlocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"wai"},{"event":"cmd_output","timestamp":1607098235,"output":"ting\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \""},{"event":"cmd_output","timestamp":1607098235,"output":"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :update"},{"event":"cmd_output","timestamp":1607098235,"output":"d_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlock"},{"event":"cmd_output","timestamp":1607098235,"output":"s, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:35.481 [info] Periodic from module Elixir.Ppl.PplBlock"},{"event":"cmd_output","timestamp":1607098235,"output":"s.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler.WaitingState :: period: 1000 ms,"},{"event":"cmd_output","timestamp":1607098235,"output":" metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurring args: %"},{"event":"cmd_output","timestamp":1607098235,"output":"{allowed_states: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.M"},{"event":"cmd_output","timestamp":1607098235,"output":"odel.PplBlocks, observed_state: \"waiting\", publisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.STMH"},{"event":"cmd_output","timestamp":1607098235,"output":"andler.WaitingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :"},{"event":"cmd_output","timestamp":1607098235,"output":"state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task"},{"event":"cmd_output","timestamp":1607098235,"output":"_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:35.481 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHa"},{"event":"cmd_output","timestamp":1607098235,"output":"ndler.RunningState with name Elixir.Ppl.PplBlocks.STMHandler.RunningState :: period: 1000 ms, metric"},{"event":"cmd_output","timestamp":1607098235,"output":"_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, recurring args: %{allowe"},{"event":"cmd_output","timestamp":1607098235,"output":"d_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model."},{"event":"cmd_output","timestamp":1607098235,"output":"PplBlocks, observed_state: \"running\", publisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHandl"},{"event":"cmd_output","timestamp":1607098235,"output":"er.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :stat"},{"event":"cmd_output","timestamp":1607098235,"output":"e, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlock"},{"event":"cmd_output","timestamp":1607098235,"output":"s, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:35.482 [info] Periodic from module Elixir.Ppl.PplBlock"},{"event":"cmd_output","timestamp":1607098235,"output":"s.STMHandler.StoppingState with name Elixir.Ppl.PplBlocks.STMHandler.StoppingState :: period: 1000 m"},{"event":"cmd_output","timestamp":1607098235,"output":"s, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurring args"},{"event":"cmd_output","timestamp":1607098235,"output":": %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.P"},{"event":"cmd_output","timestamp":1607098235,"output":"plBlocks, observed_state: \"stopping\", publisher_cb: #Function<0.104215991/1 in Ppl.PplBlocks.STMHand"},{"event":"cmd_output","timestamp":1607098235,"output":"ler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :st"},{"event":"cmd_output","timestamp":1607098235,"output":"ate, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlo"},{"event":"cmd_output","timestamp":1607098235,"output":"cks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:35.482 [info] Periodic from module Elixir.Block.Bloc"},{"event":"cmd_output","timestamp":1607098235,"output":"ks.STMHandler.InitializingState with name Elixir.Block.Blocks.STMHandler.InitializingState :: period"},{"event":"cmd_output","timestamp":1607098235,"output":": 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, recu"},{"event":"cmd_output","timestamp":1607098235,"output":"rring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Blocks."},{"event":"cmd_output","timestamp":1607098235,"output":"Model.Blocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Block.EctoRepo, returning: "},{"event":"cmd_output","timestamp":1607098235,"output":"[:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Mod"},{"event":"cmd_output","timestamp":1607098235,"output":"el.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:35.483 [info] Periodic from module Elixir.Bloc"},{"event":"cmd_output","timestamp":1607098235,"output":"k.Blocks.STMHandler.RunningState with name Elixir.Block.Blocks.STMHandler.RunningState :: period: 10"},{"event":"cmd_output","timestamp":1607098235,"output":"0 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-RunningState\"]}, recurring arg"},{"event":"cmd_output","timestamp":1607098235,"output":"s: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blo"},{"event":"cmd_output","timestamp":1607098235,"output":"cks.Model.Blocks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: ["},{"event":"cmd_output","timestamp":1607098235,"output":":id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Mode"},{"event":"cmd_output","timestamp":1607098235,"output":"l.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:35.483 [info] Periodic from module Elixir.Block"},{"event":"cmd_output","timestamp":1607098235,"output":".Blocks.STMHandler.StoppingState with name Elixir.Block.Blocks.STMHandler.StoppingState :: period: 1"},{"event":"cmd_output","timestamp":1607098235,"output":"00 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-StoppingState\"]}, recurring a"},{"event":"cmd_output","timestamp":1607098235,"output":"rgs: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model"},{"event":"cmd_output","timestamp":1607098235,"output":".Blocks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :te"},{"event":"cmd_output","timestamp":1607098235,"output":"rminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks"},{"event":"cmd_output","timestamp":1607098235,"output":", task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:35.483 [info] Periodic from module Elixir.Block.Tasks.S"},{"event":"cmd_output","timestamp":1607098235,"output":"TMHandler.PendingState with name Elixir.Block.Tasks.STMHandler.PendingState :: period: 100 ms, metri"},{"event":"cmd_output","timestamp":1607098235,"output":"c_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingState\"]}, recurring args: %{allowed"},{"event":"cmd_output","timestamp":1607098235,"output":"_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Tasks.Model.Tasks, observed_"},{"event":"cmd_output","timestamp":1607098235,"output":"state: \"pending\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :u"},{"event":"cmd_output","timestamp":1607098235,"output":"pdated_at, :state, :recovery_count, :block_id, :build_request_id], schema: Block.Tasks.Model.Tasks, "},{"event":"cmd_output","timestamp":1607098235,"output":"task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:35.483 [info] Periodic from module Elixir.Block.Tasks.STM"},{"event":"cmd_output","timestamp":1607098235,"output":"Handler.RunningState with name Elixir.Block.Tasks.STMHandler.RunningState :: period: 100 ms, metric_"},{"event":"cmd_output","timestamp":1607098235,"output":"name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningState\"]}, recurring args: %{allowed_s"},{"event":"cmd_output","timestamp":1607098235,"output":"tates: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks"},{"event":"cmd_output","timestamp":1607098235,"output":", observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_"},{"event":"cmd_output","timestamp":1607098235,"output":"request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_sup"},{"event":"cmd_output","timestamp":1607098235,"output":"ervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:35.484 [info] Periodic from module Elixir.Block.Tasks.STMHandler."},{"event":"cmd_output","timestamp":1607098235,"output":"StoppingState with name Elixir.Block.Tasks.STMHandler.StoppingState :: period: 100 ms, metric_name: "},{"event":"cmd_output","timestamp":1607098235,"output":"{\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states"},{"event":"cmd_output","timestamp":1607098235,"output":": [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state"},{"event":"cmd_output","timestamp":1607098235,"output":": \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updat"},{"event":"cmd_output","timestamp":1607098235,"output":"ed_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}"},{"event":"cmd_output","timestamp":1607098235,"output":"\n\u001b[0m\u001b[22m\n16:10:35.498 [info] Request: 'run: %{\"branch_id\" => \"0067492c-c752-487a-83bd-83f728c0a"},{"event":"cmd_output","timestamp":1607098235,"output":"881\", \"branch_name\" => \"master\", \"client_id\" => \"f656973c-2b80-41d9-8225-10f9c1539a6b\", \"commit_sha\""},{"event":"cmd_output","timestamp":1607098235,"output":" => \"75891a4469\", \"definition_file\" => \"\", \"hook_id\" => \"3df50aae-364b-11eb-80de-5254005464e2\", \"lab"},{"event":"cmd_output","timestamp":1607098235,"output":"el\" => \"master\", \"organization_id\" => \"06ea8fd0-b2ca-405c-8f2f-1c1df07a164c\", \"owner\" => \"rt\", \"proj"},{"event":"cmd_output","timestamp":1607098235,"output":"ect_id\" => \"2abcdc77-1f38-4719-9d16-f619080758a5\", \"repo_name\" => \"20_workflow_builder\", \"request_to"},{"event":"cmd_output","timestamp":1607098235,"output":"ken\" => \"3df4fee2-364b-11eb-b6c6-5254005464e2\", \"requester_id\" => \"1fa85814-956a-428c-8bb7-119c22cfe"},{"event":"cmd_output","timestamp":1607098235,"output":"cbb\", \"service\" => \"local\", \"snapshot_id\" => \"\", \"suppressed_attributes\" => [\"access_token\", \"client"},{"event":"cmd_output","timestamp":1607098235,"output":"_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"5b8dfc92-d514-4db6-9453-46811748767e\"}\n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098235,"output":"16:10:35.526 [info] ppl_id: f121c029-eef7-40b6-acb8-cfbb452d1024, type: PplRequests, event: persist"},{"event":"cmd_output","timestamp":1607098235,"output":"ed schedule request with request_token: 3df4fee2-364b-11eb-b6c6-5254005464e2, origin: Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098235,"output":"Requests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:35.536 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098235,"output":" f121c029-eef7-40b6-acb8-cfbb452d1024, type: Ppls, state: initializing, event: initializing, recover"},{"event":"cmd_output","timestamp":1607098235,"output":"y_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:3"},{"event":"cmd_output","timestamp":1607098235,"output":"5.542 [info] Project 2abcdc77-1f38-4719-9d16-f619080758a5 and branch masterlatest_wf details update"},{"event":"cmd_output","timestamp":1607098235,"output":"d: \"wf_id: 5b8dfc92-d514-4db6-9453-46811748767e, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:10:35.545 [info] Pers"},{"event":"cmd_output","timestamp":1607098235,"output":"isted ppl_sub_init for pipeline with ppl_id: f121c029-eef7-40b6-acb8-cfbb452d1024: %Ppl.PplSubInits."},{"event":"cmd_output","timestamp":1607098235,"output":"Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: n"},{"event":"cmd_output","timestamp":1607098235,"output":"il, error_description: nil, id: 86, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020"},{"event":"cmd_output","timestamp":1607098235,"output":"-12-04 16:10:35.542463], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"f121c029-eef7-40b6-acb8-cfbb452d1024\", recovery_count: 0, result: nil, r"},{"event":"cmd_output","timestamp":1607098235,"output":"esult_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at"},{"event":"cmd_output","timestamp":1607098235,"output":": ~N[2020-12-04 16:10:35.542475]}\n\u001b[0m\u001b[22m\n16:10:35.570 [info] Request: 'run: %{\"auto_promoted\" "},{"event":"cmd_output","timestamp":1607098235,"output":"=> false, \"branch_id\" => \"0067492c-c752-487a-83bd-83f728c0a881\", \"branch_name\" => \"master\", \"client_"},{"event":"cmd_output","timestamp":1607098235,"output":"id\" => \"f656973c-2b80-41d9-8225-10f9c1539a6b\", \"commit_sha\" => \"75891a4469\", \"definition_file\" => \"\""},{"event":"cmd_output","timestamp":1607098235,"output":", \"env_vars\" => [], \"extension_of\" => \"f121c029-eef7-40b6-acb8-cfbb452d1024\", \"file_name\" => \"/foo/b"},{"event":"cmd_output","timestamp":1607098235,"output":"ar/test.yml\", \"hook_id\" => \"3df50aae-364b-11eb-80de-5254005464e2\", \"label\" => \"master\", \"organizatio"},{"event":"cmd_output","timestamp":1607098235,"output":"n_id\" => \"06ea8fd0-b2ca-405c-8f2f-1c1df07a164c\", \"owner\" => \"rt\", \"prev_ppl_artefact_ids\" => [\"f121c"},{"event":"cmd_output","timestamp":1607098235,"output":"029-eef7-40b6-acb8-cfbb452d1024\"], \"project_id\" => \"2abcdc77-1f38-4719-9d16-f619080758a5\", \"promoter"},{"event":"cmd_output","timestamp":1607098235,"output":"_id\" => \"\", \"repo_name\" => \"20_workflow_builder\", \"request_token\" => \"a675f1c8-c111-4064-b32e-c9a474"},{"event":"cmd_output","timestamp":1607098235,"output":"b82826\", \"requester_id\" => \"1fa85814-956a-428c-8bb7-119c22cfecbb\", \"service\" => \"local\", \"snapshot_i"},{"event":"cmd_output","timestamp":1607098235,"output":"d\" => \"\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"triggered_by\" => \"hook\", \"w"},{"event":"cmd_output","timestamp":1607098235,"output":"f_id\" => \"5b8dfc92-d514-4db6-9453-46811748767e\", \"wf_number\" => 1, \"working_dir\" => \".semaphore\"}\n\u001b"},{"event":"cmd_output","timestamp":1607098235,"output":"[0m\u001b[22m\n16:10:35.574 [info] ppl_id: 00953e87-5d4e-4930-86da-1f3750824697, type: PplRequests, even"},{"event":"cmd_output","timestamp":1607098235,"output":"t: persisted schedule request with request_token: a675f1c8-c111-4064-b32e-c9a474b82826, origin: Elix"},{"event":"cmd_output","timestamp":1607098235,"output":"ir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:35.579 [info"},{"event":"cmd_output","timestamp":1607098235,"output":"] ppl_id: 00953e87-5d4e-4930-86da-1f3750824697, type: Ppls, state: initializing, event: initializin"},{"event":"cmd_output","timestamp":1607098235,"output":"g, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098235,"output":"m\n16:10:35.582 [info] Persisted ppl_sub_init for pipeline with ppl_id: 00953e87-5d4e-4930-86da-1f3"},{"event":"cmd_output","timestamp":1607098235,"output":"750824697: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub"},{"event":"cmd_output","timestamp":1607098235,"output":"_inits\">, compile_task_id: nil, error_description: nil, id: 87, in_scheduling: false, init_type: \"re"},{"event":"cmd_output","timestamp":1607098235,"output":"gular\", inserted_at: ~N[2020-12-04 16:10:35.581164], pipeline_requests: #Ecto.Association.NotLoaded<"},{"event":"cmd_output","timestamp":1607098235,"output":"association :pipeline_requests is not loaded>, ppl_id: \"00953e87-5d4e-4930-86da-1f3750824697\", recov"},{"event":"cmd_output","timestamp":1607098235,"output":"ery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_r"},{"event":"cmd_output","timestamp":1607098235,"output":"equest_desc: nil, updated_at: ~N[2020-12-04 16:10:35.581176]}\n\u001b[0m\u001b[22m\n16:10:35.584 [info] ppl_i"},{"event":"cmd_output","timestamp":1607098235,"output":"d: f121c029-eef7-40b6-acb8-cfbb452d1024, type: PplRequests, event: persisted source_args for pipelin"},{"event":"cmd_output","timestamp":1607098235,"output":"e: f121c029-eef7-40b6-acb8-cfbb452d1024, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.ins"},{"event":"cmd_output","timestamp":1607098235,"output":"ert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:35.602 [info] ppl_id: f121c029-eef7-40b6-acb8-cfbb452d1024, t"},{"event":"cmd_output","timestamp":1607098235,"output":"ype: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper."},{"event":"cmd_output","timestamp":1607098235,"output":"STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:35.614 [info] ppl_id: 00953e87-5d4e-4930-86da-"},{"event":"cmd_output","timestamp":1607098235,"output":"1f3750824697, type: PplRequests, event: persisted source_args for pipeline: 00953e87-5d4e-4930-86da-"},{"event":"cmd_output","timestamp":1607098235,"output":"1f3750824697, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098235,"output":"22m\n16:10:35.617 [info] ppl_id: 00953e87-5d4e-4930-86da-1f3750824697, type: PplSubInits, state: fe"},{"event":"cmd_output","timestamp":1607098235,"output":"tching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1"},{"event":"cmd_output","timestamp":1607098235,"output":"(L90), \n\u001b[0m\u001b[22m\n16:10:35.640 [info] ppl_id: f121c029-eef7-40b6-acb8-cfbb452d1024, type: PplSubI"},{"event":"cmd_output","timestamp":1607098235,"output":"nits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl"},{"event":"cmd_output","timestamp":1607098235,"output":".log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:35.675 [info] ppl_id: 00953e87-5d4e-4930-86da-1f375082"},{"event":"cmd_output","timestamp":1607098235,"output":"4697, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098238,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[33m\n16:10:38.029 [warn] Elixir.Wormhole{#PID<"},{"event":"cmd_output","timestamp":1607098238,"output":"0.9763.0>}:: callback: {GoferClient.GrpcClient, :create_, [%InternalApi.Gofer.CreateRequest{branch_n"},{"event":"cmd_output","timestamp":1607098238,"output":"ame: \"master\", commit_range: \"1234...4567\", commit_sha: \"75891a4469\", git_ref_type: 0, label: \"maste"},{"event":"cmd_output","timestamp":1607098238,"output":"r\", pipeline_id: \"f121c029-eef7-40b6-acb8-cfbb452d1024\", pr_base: \"\", pr_sha: \"\", prev_ppl_artefact_"},{"event":"cmd_output","timestamp":1607098238,"output":"ids: [\"f121c029-eef7-40b6-acb8-cfbb452d1024\"], project_id: \"2abcdc77-1f38-4719-9d16-f619080758a5\", t"},{"event":"cmd_output","timestamp":1607098238,"output":"argets: [%InternalApi.Gofer.Target{auto_promote_when: \"\", auto_trigger_on: [], name: \"Extension ppl\""},{"event":"cmd_output","timestamp":1607098238,"output":", parameter_env_vars: [], pipeline_path: \"/foo/bar/test.yml\"}], working_dir: \".semaphore\", yml_file_"},{"event":"cmd_output","timestamp":1607098238,"output":"name: \"semaphore.yml\"}]}; reason: {:timeout, 2345}\n\u001b[0m\u001b[31m\n16:10:38.031 [error] ppl_id: not_avai"},{"event":"cmd_output","timestamp":1607098238,"output":"lable, event: exit_scheduling, context: {:error, :user_exit_function, {:error, {:timeout, 2345}}, %{"},{"event":"cmd_output","timestamp":1607098238,"output":"item: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_init"},{"event":"cmd_output","timestamp":1607098238,"output":"s\">, compile_task_id: nil, error_description: \"\", id: 86, in_scheduling: true, init_type: \"regular\","},{"event":"cmd_output","timestamp":1607098238,"output":" inserted_at: ~N[2020-12-04 16:10:35.542463], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"f121c029-eef7-40b6-acb8-cfbb452d1024\", recovery_cou"},{"event":"cmd_output","timestamp":1607098238,"output":"nt: 0, result: nil, result_reason: nil, state: \"regular_init\", terminate_request: nil, terminate_req"},{"event":"cmd_output","timestamp":1607098238,"output":"uest_desc: nil, updated_at: ~N[2020-12-04 16:10:35.642044]}}}, origin: Elixir.Looper.STM.Impl.log_st"},{"event":"cmd_output","timestamp":1607098238,"output":"ate_change/1(L96), \n\u001b[0m\u001b[31m\n16:10:38.032 [error] STM Elixir.Ppl.PplSubInits.STMHandler.RegularIn"},{"event":"cmd_output","timestamp":1607098238,"output":"itState FAILED: {:error, :user_exit_function, {:error, {:timeout, 2345}}, %{item: %Ppl.PplSubInits.M"},{"event":"cmd_output","timestamp":1607098238,"output":"odel.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: ni"},{"event":"cmd_output","timestamp":1607098238,"output":"l, error_description: \"\", id: 86, in_scheduling: true, init_type: \"regular\", inserted_at: ~N[2020-12"},{"event":"cmd_output","timestamp":1607098238,"output":"-04 16:10:35.542463], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"f121c029-eef7-40b6-acb8-cfbb452d1024\", recovery_count: 0, result: nil, resu"},{"event":"cmd_output","timestamp":1607098238,"output":"lt_reason: nil, state: \"regular_init\", terminate_request: nil, terminate_request_desc: nil, updated_"},{"event":"cmd_output","timestamp":1607098238,"output":"at: ~N[2020-12-04 16:10:35.642044]}}}\n\u001b[0m\u001b[22m\n16:10:38.064 [info] ppl_id: 00953e87-5d4e-4930-86"},{"event":"cmd_output","timestamp":1607098238,"output":"da-1f3750824697, type: PplRequests, event: persisted definition for request with request_token: a675"},{"event":"cmd_output","timestamp":1607098238,"output":"f1c8-c111-4064-b32e-c9a474b82826, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_def"},{"event":"cmd_output","timestamp":1607098238,"output":"inition/3(L76), \n\u001b[0m\u001b[22m\n16:10:38.067 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__"},{"event":"cmd_output","timestamp":1607098238,"output":"meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:10:38.066099], name:"},{"event":"cmd_output","timestamp":1607098238,"output":" \"master-/foo/bar/test.yml\", organization_id: \"06ea8fd0-b2ca-405c-8f2f-1c1df07a164c\", project_id: \"2"},{"event":"cmd_output","timestamp":1607098238,"output":"abcdc77-1f38-4719-9d16-f619080758a5\", queue_id: \"4f4f60c1-fc2b-46da-977f-a723f3695558\", scope: \"proj"},{"event":"cmd_output","timestamp":1607098238,"output":"ect\", updated_at: ~N[2020-12-04 16:10:38.066109], user_generated: false}}\n\u001b[0m\u001b[22m\n16:10:38.074 ["},{"event":"cmd_output","timestamp":1607098238,"output":"info] ppl_id: not_available, event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitS"},{"event":"cmd_output","timestamp":1607098238,"output":"tate.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:38.074 [info] event: created, origin: Elixir.Ppl.PplSubIni"},{"event":"cmd_output","timestamp":1607098238,"output":"ts.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:38.074 [info] ppl_id: 00953e87-5"},{"event":"cmd_output","timestamp":1607098238,"output":"d4e-4930-86da-1f3750824697, type: PplBlocks, block_index: 0, state: initializing, event: created, re"},{"event":"cmd_output","timestamp":1607098238,"output":"covery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098238,"output":"[22m\n16:10:38.074 [info] ppl_id: 00953e87-5d4e-4930-86da-1f3750824697, type: PplBlocks, block_inde"},{"event":"cmd_output","timestamp":1607098238,"output":"x: 1, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHand"},{"event":"cmd_output","timestamp":1607098238,"output":"ler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:38.080 [info] ppl_id: 00953e87-5d4e-4930-8"},{"event":"cmd_output","timestamp":1607098238,"output":"6da-1f3750824697, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098238,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:38.089 [info] p"},{"event":"cmd_output","timestamp":1607098238,"output":"pl_id: 00953e87-5d4e-4930-86da-1f3750824697, type: PplBlocks, block_index: 0, state: waiting, event:"},{"event":"cmd_output","timestamp":1607098238,"output":" exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098238,"output":"[22m\n16:10:38.096 [info] ppl_id: 00953e87-5d4e-4930-86da-1f3750824697, type: Ppls, state: pending,"},{"event":"cmd_output","timestamp":1607098238,"output":" event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), "},{"event":"cmd_output","timestamp":1607098238,"output":"\n\u001b[0m\u001b[22m\n16:10:38.113 [info] ppl_id: 00953e87-5d4e-4930-86da-1f3750824697, type: PplBlocks, blo"},{"event":"cmd_output","timestamp":1607098238,"output":"ck_index: 1, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Im"},{"event":"cmd_output","timestamp":1607098238,"output":"pl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:38.121 [info] ppl_id: 00953e87-5d4e-4930-86da-1f3750"},{"event":"cmd_output","timestamp":1607098238,"output":"824697, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper"},{"event":"cmd_output","timestamp":1607098238,"output":".STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:38.135 [info] ppl_id: 00953e87-5d4e-4930-86da"},{"event":"cmd_output","timestamp":1607098238,"output":"-1f3750824697, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098238,"output":".Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:38.143 [info] PplBlocks WaitingState S"},{"event":"cmd_output","timestamp":1607098238,"output":"TM is scheduling block 0 from pipeline: \"00953e87-5d4e-4930-86da-1f3750824697\"\n\u001b[0m\u001b[22m\n16:10:38."},{"event":"cmd_output","timestamp":1607098238,"output":"150 [info] block_id: 0f4bbe38-318c-4319-a618-d4b4134cb82b, type: BlockRequests, event: persisted bl"},{"event":"cmd_output","timestamp":1607098238,"output":"ock run request from ppl 00953e87-5d4e-4930-86da-1f3750824697 for block 0, origin: Elixir.Block.Bloc"},{"event":"cmd_output","timestamp":1607098238,"output":"kRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:38.153 [info] bloc"},{"event":"cmd_output","timestamp":1607098238,"output":"k_id: 0f4bbe38-318c-4319-a618-d4b4134cb82b, type: Blocks, state: initializing, event: initializing, "},{"event":"cmd_output","timestamp":1607098238,"output":"recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10"},{"event":"cmd_output","timestamp":1607098238,"output":":38.157 [info] Block 0 of pipeline with id: 00953e87-5d4e-4930-86da-1f3750824697 scheduled in block"},{"event":"cmd_output","timestamp":1607098238,"output":" service with id: : \"0f4bbe38-318c-4319-a618-d4b4134cb82b\"\n\u001b[0m\u001b[22m\n16:10:38.161 [info] block_id"},{"event":"cmd_output","timestamp":1607098238,"output":": 0f4bbe38-318c-4319-a618-d4b4134cb82b, type: BlockRequests, event: persisted build and sub_ppl deta"},{"event":"cmd_output","timestamp":1607098238,"output":"ils for block_request: 0f4bbe38-318c-4319-a618-d4b4134cb82b, origin: Elixir.Block.BlockRequests.Mode"},{"event":"cmd_output","timestamp":1607098238,"output":"l.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:38.163 [info] ppl_id: 00953e87-5d4e-"},{"event":"cmd_output","timestamp":1607098238,"output":"4930-86da-1f3750824697, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, rec"},{"event":"cmd_output","timestamp":1607098238,"output":"overy_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:38.165 [i"},{"event":"cmd_output","timestamp":1607098238,"output":"nfo] block_id: 0f4bbe38-318c-4319-a618-d4b4134cb82b, type: Tasks, state: pending, event: created, r"},{"event":"cmd_output","timestamp":1607098238,"output":"ecovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098238,"output":"22m\n16:10:38.169 [info] block_id: 0f4bbe38-318c-4319-a618-d4b4134cb82b, type: Blocks, state: runni"},{"event":"cmd_output","timestamp":1607098238,"output":"ng, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90"},{"event":"cmd_output","timestamp":1607098238,"output":"), \n\u001b[0m\u001b[22m\n16:10:38.198 [info] block_id: 0f4bbe38-318c-4319-a618-d4b4134cb82b, type: Tasks, st"},{"event":"cmd_output","timestamp":1607098238,"output":"ate: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_ch"},{"event":"cmd_output","timestamp":1607098238,"output":"ange/1(L90), \n\u001b[0m\u001b[22m\n16:10:38.299 [info] block_id: 0f4bbe38-318c-4319-a618-d4b4134cb82b, type:"},{"event":"cmd_output","timestamp":1607098238,"output":" Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_s"},{"event":"cmd_output","timestamp":1607098238,"output":"tate_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:38.308 [info] block_id: 0f4bbe38-318c-4319-a618-d4b4134cb82b"},{"event":"cmd_output","timestamp":1607098238,"output":", type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Im"},{"event":"cmd_output","timestamp":1607098238,"output":"pl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:38.319 [info] ppl_id: 00953e87-5d4e-4930-86da-1f3750"},{"event":"cmd_output","timestamp":1607098238,"output":"824697, block_id: 0f4bbe38-318c-4319-a618-d4b4134cb82b, type: PplBlocks, block_index: 0, state: done"},{"event":"cmd_output","timestamp":1607098238,"output":", result: failed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_stat"},{"event":"cmd_output","timestamp":1607098238,"output":"e_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:38.324 [info] PplBlocks WaitingState STM is scheduling block 1 "},{"event":"cmd_output","timestamp":1607098238,"output":"from pipeline: \"00953e87-5d4e-4930-86da-1f3750824697\"\n\u001b[0m\u001b[22m\n16:10:38.334 [info] ppl_id: 00953"},{"event":"cmd_output","timestamp":1607098238,"output":"e87-5d4e-4930-86da-1f3750824697, type: PplBlocks, block_index: 1, state: done, result: canceled, eve"},{"event":"cmd_output","timestamp":1607098238,"output":"nt: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b["},{"event":"cmd_output","timestamp":1607098238,"output":"0m\u001b[22m\n16:10:38.352 [info] ppl_id: 00953e87-5d4e-4930-86da-1f3750824697, type: Ppls, state: done,"},{"event":"cmd_output","timestamp":1607098238,"output":" result: failed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state"},{"event":"cmd_output","timestamp":1607098238,"output":"_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:38.388 [info] Request: 'partial_rebuild', request: %{ppl_id: \"00"},{"event":"cmd_output","timestamp":1607098238,"output":"953e87-5d4e-4930-86da-1f3750824697\", request_token: \"4c880d6c-5ef6-42cc-b0c5-af03a8eacdfc\", user_id:"},{"event":"cmd_output","timestamp":1607098238,"output":" \"\"}\n\u001b[0m\u001b[22m\n16:10:38.391 [info] ppl_id: cbde28c3-0ffd-4514-af76-82c62d36987f, type: PplRequest"},{"event":"cmd_output","timestamp":1607098238,"output":"s, event: persisted schedule request with request_token: 4c880d6c-5ef6-42cc-b0c5-af03a8eacdfc, origi"},{"event":"cmd_output","timestamp":1607098238,"output":"n: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:38.39"},{"event":"cmd_output","timestamp":1607098238,"output":"3 [info] ppl_id: cbde28c3-0ffd-4514-af76-82c62d36987f, type: Ppls, state: initializing, event: init"},{"event":"cmd_output","timestamp":1607098238,"output":"ializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b"},{"event":"cmd_output","timestamp":1607098238,"output":"[0m\u001b[22m\n16:10:38.395 [info] Persisted ppl_sub_init for pipeline with ppl_id: cbde28c3-0ffd-4514-a"},{"event":"cmd_output","timestamp":1607098238,"output":"f76-82c62d36987f: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipel"},{"event":"cmd_output","timestamp":1607098238,"output":"ine_sub_inits\">, compile_task_id: nil, error_description: nil, id: 88, in_scheduling: false, init_ty"},{"event":"cmd_output","timestamp":1607098238,"output":"pe: \"rebuild\", inserted_at: ~N[2020-12-04 16:10:38.395095], pipeline_requests: #Ecto.Association.Not"},{"event":"cmd_output","timestamp":1607098238,"output":"Loaded, ppl_id: \"cbde28c3-0ffd-4514-af76-82c62d36987f\""},{"event":"cmd_output","timestamp":1607098238,"output":", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, term"},{"event":"cmd_output","timestamp":1607098238,"output":"inate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:38.395104]}\n\u001b[0m\u001b[22m\n16:10:38.407 [info]"},{"event":"cmd_output","timestamp":1607098238,"output":" ppl_id: cbde28c3-0ffd-4514-af76-82c62d36987f, type: PplRequests, event: persisted source_args for "},{"event":"cmd_output","timestamp":1607098238,"output":"pipeline: cbde28c3-0ffd-4514-af76-82c62d36987f, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQuer"},{"event":"cmd_output","timestamp":1607098238,"output":"ies.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:38.409 [info] Request: 'run: %{\"auto_promoted\" => fals"},{"event":"cmd_output","timestamp":1607098238,"output":"e, \"branch_id\" => \"0067492c-c752-487a-83bd-83f728c0a881\", \"branch_name\" => \"master\", \"client_id\" => "},{"event":"cmd_output","timestamp":1607098238,"output":"\"f656973c-2b80-41d9-8225-10f9c1539a6b\", \"commit_sha\" => \"75891a4469\", \"definition_file\" => \"\", \"env_"},{"event":"cmd_output","timestamp":1607098238,"output":"vars\" => [], \"extension_of\" => \"f121c029-eef7-40b6-acb8-cfbb452d1024\", \"file_name\" => \"/foo/bar/test"},{"event":"cmd_output","timestamp":1607098238,"output":".yml\", \"hook_id\" => \"3df50aae-364b-11eb-80de-5254005464e2\", \"label\" => \"master\", \"organization_id\" ="},{"event":"cmd_output","timestamp":1607098238,"output":"> \"06ea8fd0-b2ca-405c-8f2f-1c1df07a164c\", \"owner\" => \"rt\", \"prev_ppl_artefact_ids\" => [\"f121c029-eef"},{"event":"cmd_output","timestamp":1607098238,"output":"7-40b6-acb8-cfbb452d1024\"], \"project_id\" => \"2abcdc77-1f38-4719-9d16-f619080758a5\", \"promoter_id\" =>"},{"event":"cmd_output","timestamp":1607098238,"output":" \"\", \"repo_name\" => \"20_workflow_builder\", \"request_token\" => \"085b3ef9-4688-4cf3-a7cd-df3bf226120b\""},{"event":"cmd_output","timestamp":1607098238,"output":", \"requester_id\" => \"1fa85814-956a-428c-8bb7-119c22cfecbb\", \"service\" => \"local\", \"snapshot_id\" => \""},{"event":"cmd_output","timestamp":1607098238,"output":"\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" ="},{"event":"cmd_output","timestamp":1607098238,"output":"> \"5b8dfc92-d514-4db6-9453-46811748767e\", \"wf_number\" => 1, \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098238,"output":"m\n16:10:38.410 [info] ppl_id: cbde28c3-0ffd-4514-af76-82c62d36987f, type: PplSubInits, state: fetc"},{"event":"cmd_output","timestamp":1607098238,"output":"hing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098238,"output":"90), \n\u001b[0m\u001b[22m\n16:10:38.412 [info] ppl_id: 4fb6bb0c-a78b-4901-ba3c-90d1ac35f833, type: PplReques"},{"event":"cmd_output","timestamp":1607098238,"output":"ts, event: persisted schedule request with request_token: 085b3ef9-4688-4cf3-a7cd-df3bf226120b, orig"},{"event":"cmd_output","timestamp":1607098238,"output":"in: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:38.4"},{"event":"cmd_output","timestamp":1607098238,"output":"16 [info] ppl_id: 4fb6bb0c-a78b-4901-ba3c-90d1ac35f833, type: Ppls, state: initializing, event: ini"},{"event":"cmd_output","timestamp":1607098238,"output":"tializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n"},{"event":"cmd_output","timestamp":1607098238,"output":"\u001b[0m\u001b[22m\n16:10:38.420 [info] Persisted ppl_sub_init for pipeline with ppl_id: 4fb6bb0c-a78b-4901-"},{"event":"cmd_output","timestamp":1607098238,"output":"ba3c-90d1ac35f833: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipe"},{"event":"cmd_output","timestamp":1607098238,"output":"line_sub_inits\">, compile_task_id: nil, error_description: nil, id: 89, in_scheduling: false, init_t"},{"event":"cmd_output","timestamp":1607098238,"output":"ype: \"regular\", inserted_at: ~N[2020-12-04 16:10:38.418882], pipeline_requests: #Ecto.Association.No"},{"event":"cmd_output","timestamp":1607098238,"output":"tLoaded, ppl_id: \"4fb6bb0c-a78b-4901-ba3c-90d1ac35f833"},{"event":"cmd_output","timestamp":1607098238,"output":"\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, ter"},{"event":"cmd_output","timestamp":1607098238,"output":"minate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:38.418892]}\n\u001b[0m\u001b[22m\n16:10:38.437 [info"},{"event":"cmd_output","timestamp":1607098238,"output":"] ppl_id: 4fb6bb0c-a78b-4901-ba3c-90d1ac35f833, type: PplRequests, event: persisted source_args for"},{"event":"cmd_output","timestamp":1607098238,"output":" pipeline: 4fb6bb0c-a78b-4901-ba3c-90d1ac35f833, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQue"},{"event":"cmd_output","timestamp":1607098238,"output":"ries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:38.443 [info] ppl_id: 4fb6bb0c-a78b-4901-ba3c-90d1ac3"},{"event":"cmd_output","timestamp":1607098238,"output":"5f833, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098238,"output":".Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:38.448 [info] ppl_id: cbde28c3-0ffd-45"},{"event":"cmd_output","timestamp":1607098238,"output":"14-af76-82c62d36987f, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count"},{"event":"cmd_output","timestamp":1607098238,"output":": 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:38.481 [info] ppl_i"},{"event":"cmd_output","timestamp":1607098238,"output":"d: 4fb6bb0c-a78b-4901-ba3c-90d1ac35f833, type: PplSubInits, state: regular_init, event: exit_schedul"},{"event":"cmd_output","timestamp":1607098238,"output":"ing, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:3"},{"event":"cmd_output","timestamp":1607098238,"output":"8.491 [info] ppl_id: cbde28c3-0ffd-4514-af76-82c62d36987f, type: PplRequests, event: persisted defi"},{"event":"cmd_output","timestamp":1607098238,"output":"nition for request with request_token: 4c880d6c-5ef6-42cc-b0c5-af03a8eacdfc, origin: Elixir.Ppl.PplR"},{"event":"cmd_output","timestamp":1607098238,"output":"equests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:38.498 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098238,"output":" not_available, event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1"},{"event":"cmd_output","timestamp":1607098238,"output":"(L105), \n\u001b[0m\u001b[22m\n16:10:38.498 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler."},{"event":"cmd_output","timestamp":1607098238,"output":"RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:38.498 [info] ppl_id: cbde28c3-0ffd-4514-af76-"},{"event":"cmd_output","timestamp":1607098238,"output":"82c62d36987f, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: "},{"event":"cmd_output","timestamp":1607098238,"output":"0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:38"},{"event":"cmd_output","timestamp":1607098238,"output":".498 [info] ppl_id: cbde28c3-0ffd-4514-af76-82c62d36987f, type: PplBlocks, block_index: 1, state: i"},{"event":"cmd_output","timestamp":1607098238,"output":"nitializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularIni"},{"event":"cmd_output","timestamp":1607098238,"output":"tState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:38.500 [info] ppl_id: cbde28c3-0ffd-4514-af76-82c62d3698"},{"event":"cmd_output","timestamp":1607098238,"output":"7f, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098238,"output":"n: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:38.512 [info] ppl_id: cbde28c"},{"event":"cmd_output","timestamp":1607098238,"output":"3-0ffd-4514-af76-82c62d36987f, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0"},{"event":"cmd_output","timestamp":1607098238,"output":", origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:38.518 [info] ppl_id: "},{"event":"cmd_output","timestamp":1607098238,"output":"cbde28c3-0ffd-4514-af76-82c62d36987f, type: PplBlocks, block_index: 0, state: waiting, event: exit_s"},{"event":"cmd_output","timestamp":1607098238,"output":"cheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098238,"output":"6:10:38.525 [info] ppl_id: cbde28c3-0ffd-4514-af76-82c62d36987f, type: Ppls, state: queuing, event:"},{"event":"cmd_output","timestamp":1607098238,"output":" exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098238,"output":"[22m\n16:10:38.528 [info] ppl_id: cbde28c3-0ffd-4514-af76-82c62d36987f, type: PplBlocks, block_inde"},{"event":"cmd_output","timestamp":1607098238,"output":"x: 1, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_"},{"event":"cmd_output","timestamp":1607098238,"output":"state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:38.539 [info] ppl_id: cbde28c3-0ffd-4514-af76-82c62d36987f,"},{"event":"cmd_output","timestamp":1607098238,"output":" type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Im"},{"event":"cmd_output","timestamp":1607098238,"output":"pl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:38.547 [info] PplBlocks WaitingState STM is scheduli"},{"event":"cmd_output","timestamp":1607098238,"output":"ng block 0 from pipeline: \"cbde28c3-0ffd-4514-af76-82c62d36987f\"\n\u001b[0m\u001b[22m\n16:10:38.553 [info] pp"},{"event":"cmd_output","timestamp":1607098238,"output":"l_id: 4fb6bb0c-a78b-4901-ba3c-90d1ac35f833, type: PplRequests, event: persisted definition for reque"},{"event":"cmd_output","timestamp":1607098238,"output":"st with request_token: 085b3ef9-4688-4cf3-a7cd-df3bf226120b, origin: Elixir.Ppl.PplRequests.Model.Pp"},{"event":"cmd_output","timestamp":1607098238,"output":"lRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:38.558 [info] block_id: 1b064a55-9466"},{"event":"cmd_output","timestamp":1607098238,"output":"-447b-84f9-4875d273339a, type: BlockRequests, event: persisted block run request from ppl cbde28c3-0"},{"event":"cmd_output","timestamp":1607098238,"output":"ffd-4514-af76-82c62d36987f for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQuerie"},{"event":"cmd_output","timestamp":1607098238,"output":"s.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:38.561 [info] block_id: 1b064a55-9466-447b-84f9-4875d"},{"event":"cmd_output","timestamp":1607098238,"output":"273339a, type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.B"},{"event":"cmd_output","timestamp":1607098238,"output":"lock.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:38.565 [info] Block 0 of pipeline"},{"event":"cmd_output","timestamp":1607098238,"output":" with id: cbde28c3-0ffd-4514-af76-82c62d36987f scheduled in block service with id: : \"1b064a55-9466-"},{"event":"cmd_output","timestamp":1607098238,"output":"447b-84f9-4875d273339a\"\n\u001b[0m\u001b[22m\n16:10:38.567 [info] ppl_id: cbde28c3-0ffd-4514-af76-82c62d36987"},{"event":"cmd_output","timestamp":1607098238,"output":"f, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098238,"output":"n: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:38.568 [info] ppl_id: not_ava"},{"event":"cmd_output","timestamp":1607098238,"output":"ilable, event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), "},{"event":"cmd_output","timestamp":1607098238,"output":"\n\u001b[0m\u001b[22m\n16:10:38.568 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularI"},{"event":"cmd_output","timestamp":1607098238,"output":"nitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:38.568 [info] ppl_id: 4fb6bb0c-a78b-4901-ba3c-90d1ac35"},{"event":"cmd_output","timestamp":1607098238,"output":"f833, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098238,"output":"n: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:38.568 [in"},{"event":"cmd_output","timestamp":1607098238,"output":"fo] ppl_id: 4fb6bb0c-a78b-4901-ba3c-90d1ac35f833, type: PplBlocks, block_index: 1, state: initializ"},{"event":"cmd_output","timestamp":1607098238,"output":"ing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.a"},{"event":"cmd_output","timestamp":1607098238,"output":"ll_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:38.572 [info] block_id: 1b064a55-9466-447b-84f9-4875d273339a, ty"},{"event":"cmd_output","timestamp":1607098238,"output":"pe: BlockRequests, event: persisted build and sub_ppl details for block_request: 1b064a55-9466-447b-"},{"event":"cmd_output","timestamp":1607098238,"output":"84f9-4875d273339a, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41)"},{"event":"cmd_output","timestamp":1607098238,"output":", \n\u001b[0m\u001b[22m\n16:10:38.573 [info] ppl_id: 4fb6bb0c-a78b-4901-ba3c-90d1ac35f833, type: PplSubInits,"},{"event":"cmd_output","timestamp":1607098238,"output":" state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.I"},{"event":"cmd_output","timestamp":1607098238,"output":"mpl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:38.577 [info] block_id: 1b064a55-9466-447b-84f9-487"},{"event":"cmd_output","timestamp":1607098238,"output":"5d273339a, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Bloc"},{"event":"cmd_output","timestamp":1607098238,"output":"ks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:38.580 [info] block_id: 1b064a5"},{"event":"cmd_output","timestamp":1607098238,"output":"5-9466-447b-84f9-4875d273339a, type: Blocks, state: running, event: exit_scheduling, recovery_count:"},{"event":"cmd_output","timestamp":1607098238,"output":" 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:38.590 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098238,"output":": 4fb6bb0c-a78b-4901-ba3c-90d1ac35f833, type: Ppls, state: pending, event: exit_scheduling, recovery"},{"event":"cmd_output","timestamp":1607098238,"output":"_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:38.597 [info] "},{"event":"cmd_output","timestamp":1607098238,"output":" ppl_id: 4fb6bb0c-a78b-4901-ba3c-90d1ac35f833, type: PplBlocks, block_index: 0, state: waiting, even"},{"event":"cmd_output","timestamp":1607098238,"output":"t: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098238,"output":"m\u001b[22m\n16:10:38.609 [info] ppl_id: 4fb6bb0c-a78b-4901-ba3c-90d1ac35f833, type: Ppls, state: queuin"},{"event":"cmd_output","timestamp":1607098238,"output":"g, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90)"},{"event":"cmd_output","timestamp":1607098238,"output":", \n\u001b[0m\u001b[22m\n16:10:38.615 [info] ppl_id: 4fb6bb0c-a78b-4901-ba3c-90d1ac35f833, type: PplBlocks, b"},{"event":"cmd_output","timestamp":1607098238,"output":"lock_index: 1, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM."},{"event":"cmd_output","timestamp":1607098238,"output":"Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:38.619 [info] block_id: 1b064a55-9466-447b-84f9-48"},{"event":"cmd_output","timestamp":1607098238,"output":"75d273339a, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098238,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:38.731 [info] block_id: 1b064a55-9466-44"},{"event":"cmd_output","timestamp":1607098238,"output":"7b-84f9-4875d273339a, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: E"},{"event":"cmd_output","timestamp":1607098238,"output":"lixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:38.738 [info] block_id: 1b064a55-"},{"event":"cmd_output","timestamp":1607098238,"output":"9466-447b-84f9-4875d273339a, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098238,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:38.754 [info] ppl_id: cbd"},{"event":"cmd_output","timestamp":1607098238,"output":"e28c3-0ffd-4514-af76-82c62d36987f, block_id: 1b064a55-9466-447b-84f9-4875d273339a, type: PplBlocks, "},{"event":"cmd_output","timestamp":1607098238,"output":"block_index: 0, state: done, result: failed, event: exit_scheduling, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098238,"output":"ir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:38.764 [info] PplBlocks WaitingState"},{"event":"cmd_output","timestamp":1607098238,"output":" STM is scheduling block 1 from pipeline: \"cbde28c3-0ffd-4514-af76-82c62d36987f\"\n\u001b[0m\u001b[22m\n16:10:3"},{"event":"cmd_output","timestamp":1607098238,"output":"8.774 [info] ppl_id: cbde28c3-0ffd-4514-af76-82c62d36987f, type: PplBlocks, block_index: 1, state: "},{"event":"cmd_output","timestamp":1607098238,"output":"done, result: canceled, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.lo"},{"event":"cmd_output","timestamp":1607098238,"output":"g_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:38.790 [info] ppl_id: cbde28c3-0ffd-4514-af76-82c62d36987"},{"event":"cmd_output","timestamp":1607098238,"output":"f, type: Ppls, state: done, result: failed, event: exit_scheduling, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098238,"output":"r.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:38.874 [info] ppl_id: 4fb6bb0c-a78b-4"},{"event":"cmd_output","timestamp":1607098238,"output":"901-ba3c-90d1ac35f833, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098238,"output":": Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:38.882 [info] PplBlocks Waitin"},{"event":"cmd_output","timestamp":1607098238,"output":"gState STM is scheduling block 0 from pipeline: \"4fb6bb0c-a78b-4901-ba3c-90d1ac35f833\"\n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098238,"output":"6:10:38.890 [info] block_id: b4e2d882-b884-4e4a-aa7d-04be4dc70a78, type: BlockRequests, event: pers"},{"event":"cmd_output","timestamp":1607098238,"output":"isted block run request from ppl 4fb6bb0c-a78b-4901-ba3c-90d1ac35f833 for block 0, origin: Elixir.Bl"},{"event":"cmd_output","timestamp":1607098238,"output":"ock.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:38.892 [inf"},{"event":"cmd_output","timestamp":1607098238,"output":"o] block_id: b4e2d882-b884-4e4a-aa7d-04be4dc70a78, type: Blocks, state: initializing, event: initia"},{"event":"cmd_output","timestamp":1607098238,"output":"lizing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098238,"output":"m\n16:10:38.894 [info] Block 0 of pipeline with id: 4fb6bb0c-a78b-4901-ba3c-90d1ac35f833 scheduled "},{"event":"cmd_output","timestamp":1607098238,"output":"in block service with id: : \"b4e2d882-b884-4e4a-aa7d-04be4dc70a78\"\n\u001b[0m\u001b[22m\n16:10:38.897 [info] "},{"event":"cmd_output","timestamp":1607098238,"output":"ppl_id: 4fb6bb0c-a78b-4901-ba3c-90d1ac35f833, type: PplBlocks, block_index: 0, state: running, event"},{"event":"cmd_output","timestamp":1607098238,"output":": exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098238,"output":"\u001b[22m\n16:10:38.901 [info] block_id: b4e2d882-b884-4e4a-aa7d-04be4dc70a78, type: BlockRequests, eve"},{"event":"cmd_output","timestamp":1607098238,"output":"nt: persisted build and sub_ppl details for block_request: b4e2d882-b884-4e4a-aa7d-04be4dc70a78, ori"},{"event":"cmd_output","timestamp":1607098238,"output":"gin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:3"},{"event":"cmd_output","timestamp":1607098238,"output":"8.903 [info] block_id: b4e2d882-b884-4e4a-aa7d-04be4dc70a78, type: Tasks, state: pending, event: cr"},{"event":"cmd_output","timestamp":1607098238,"output":"eated, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), "},{"event":"cmd_output","timestamp":1607098238,"output":"\n\u001b[0m\u001b[22m\n16:10:38.906 [info] block_id: b4e2d882-b884-4e4a-aa7d-04be4dc70a78, type: Blocks, stat"},{"event":"cmd_output","timestamp":1607098238,"output":"e: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chan"},{"event":"cmd_output","timestamp":1607098238,"output":"ge/1(L90), \n\u001b[0m\u001b[22m\n16:10:38.936 [info] block_id: b4e2d882-b884-4e4a-aa7d-04be4dc70a78, type: T"},{"event":"cmd_output","timestamp":1607098238,"output":"asks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_"},{"event":"cmd_output","timestamp":1607098238,"output":"state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:38.953 [info] block_id: b4e2d882-b884-4e4a-aa7d-04be4dc70a7"},{"event":"cmd_output","timestamp":1607098238,"output":"8, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Im"},{"event":"cmd_output","timestamp":1607098238,"output":"pl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:38.962 [info] block_id: b4e2d882-b884-4e4a-aa7d-04be"},{"event":"cmd_output","timestamp":1607098238,"output":"4dc70a78, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loope"},{"event":"cmd_output","timestamp":1607098238,"output":"r.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:38.972 [info] ppl_id: 4fb6bb0c-a78b-4901-ba3"},{"event":"cmd_output","timestamp":1607098238,"output":"c-90d1ac35f833, block_id: b4e2d882-b884-4e4a-aa7d-04be4dc70a78, type: PplBlocks, block_index: 0, sta"},{"event":"cmd_output","timestamp":1607098238,"output":"te: done, result: failed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl."},{"event":"cmd_output","timestamp":1607098238,"output":"log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:38.980 [info] PplBlocks WaitingState STM is scheduling "},{"event":"cmd_output","timestamp":1607098238,"output":"block 1 from pipeline: \"4fb6bb0c-a78b-4901-ba3c-90d1ac35f833\"\n\u001b[0m\u001b[22m\n16:10:38.991 [info] ppl_i"},{"event":"cmd_output","timestamp":1607098238,"output":"d: 4fb6bb0c-a78b-4901-ba3c-90d1ac35f833, type: PplBlocks, block_index: 1, state: done, result: cance"},{"event":"cmd_output","timestamp":1607098238,"output":"led, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L9"},{"event":"cmd_output","timestamp":1607098239,"output":"0), \n\u001b[0m\u001b[22m\n16:10:39.008 [info] ppl_id: 4fb6bb0c-a78b-4901-ba3c-90d1ac35f833, type: Ppls, stat"},{"event":"cmd_output","timestamp":1607098239,"output":"e: done, result: failed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.l"},{"event":"cmd_output","timestamp":1607098239,"output":"og_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:39.053 [info] Request: 'partial_rebuild', request: %{ppl"},{"event":"cmd_output","timestamp":1607098239,"output":"_id: \"4fb6bb0c-a78b-4901-ba3c-90d1ac35f833\", request_token: \"35faf9bc-704e-4837-b839-1a8e4d9f219e\", "},{"event":"cmd_output","timestamp":1607098239,"output":"user_id: \"\"}\n\u001b[0m\u001b[22m\n16:10:39.056 [info] ppl_id: d9fb36d9-eced-4720-b43e-aaaa5b7514fa, type: Pp"},{"event":"cmd_output","timestamp":1607098239,"output":"lRequests, event: persisted schedule request with request_token: 35faf9bc-704e-4837-b839-1a8e4d9f219"},{"event":"cmd_output","timestamp":1607098239,"output":"e, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098239,"output":"10:39.058 [info] ppl_id: d9fb36d9-eced-4720-b43e-aaaa5b7514fa, type: Ppls, state: initializing, eve"},{"event":"cmd_output","timestamp":1607098239,"output":"nt: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L1"},{"event":"cmd_output","timestamp":1607098239,"output":"24), \n\u001b[0m\u001b[22m\n16:10:39.061 [info] Persisted ppl_sub_init for pipeline with ppl_id: d9fb36d9-ece"},{"event":"cmd_output","timestamp":1607098239,"output":"d-4720-b43e-aaaa5b7514fa: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded"},{"event":"cmd_output","timestamp":1607098239,"output":", \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 90, in_scheduling: false,"},{"event":"cmd_output","timestamp":1607098239,"output":" init_type: \"rebuild\", inserted_at: ~N[2020-12-04 16:10:39.060643], pipeline_requests: #Ecto.Associa"},{"event":"cmd_output","timestamp":1607098239,"output":"tion.NotLoaded, ppl_id: \"d9fb36d9-eced-4720-b43e-aaaa5"},{"event":"cmd_output","timestamp":1607098239,"output":"b7514fa\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: n"},{"event":"cmd_output","timestamp":1607098239,"output":"il, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:39.060656]}\n\u001b[0m\u001b[22m\n16:10:39.07"},{"event":"cmd_output","timestamp":1607098239,"output":"4 [info] ppl_id: d9fb36d9-eced-4720-b43e-aaaa5b7514fa, type: PplRequests, event: persisted source_a"},{"event":"cmd_output","timestamp":1607098239,"output":"rgs for pipeline: d9fb36d9-eced-4720-b43e-aaaa5b7514fa, origin: Elixir.Ppl.PplRequests.Model.PplRequ"},{"event":"cmd_output","timestamp":1607098239,"output":"estsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:39.076 [info] Request: 'run: %{\"auto_promoted\""},{"event":"cmd_output","timestamp":1607098239,"output":" => false, \"branch_id\" => \"0067492c-c752-487a-83bd-83f728c0a881\", \"branch_name\" => \"master\", \"client"},{"event":"cmd_output","timestamp":1607098239,"output":"_id\" => \"f656973c-2b80-41d9-8225-10f9c1539a6b\", \"commit_sha\" => \"75891a4469\", \"definition_file\" => \""},{"event":"cmd_output","timestamp":1607098239,"output":"\", \"env_vars\" => [], \"extension_of\" => \"cbde28c3-0ffd-4514-af76-82c62d36987f\", \"file_name\" => \"/foo/"},{"event":"cmd_output","timestamp":1607098239,"output":"bar/test.yml\", \"hook_id\" => \"3df50aae-364b-11eb-80de-5254005464e2\", \"label\" => \"master\", \"organizati"},{"event":"cmd_output","timestamp":1607098239,"output":"on_id\" => \"06ea8fd0-b2ca-405c-8f2f-1c1df07a164c\", \"owner\" => \"rt\", \"partially_rerun_by\" => \"\", \"prev"},{"event":"cmd_output","timestamp":1607098239,"output":"_ppl_artefact_ids\" => [\"f121c029-eef7-40b6-acb8-cfbb452d1024\", \"00953e87-5d4e-4930-86da-1f3750824697"},{"event":"cmd_output","timestamp":1607098239,"output":"\"], \"project_id\" => \"2abcdc77-1f38-4719-9d16-f619080758a5\", \"promoter_id\" => \"\", \"repo_name\" => \"20_"},{"event":"cmd_output","timestamp":1607098239,"output":"workflow_builder\", \"request_token\" => \"4ae2f707-3b97-4c41-af90-e3bfb069458f\", \"requester_id\" => \"1fa"},{"event":"cmd_output","timestamp":1607098239,"output":"85814-956a-428c-8bb7-119c22cfecbb\", \"service\" => \"local\", \"snapshot_id\" => \"\", \"suppressed_attribute"},{"event":"cmd_output","timestamp":1607098239,"output":"s\" => [\"access_token\", \"client_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"5b8dfc92-d514-4db6-94"},{"event":"cmd_output","timestamp":1607098239,"output":"53-46811748767e\", \"wf_number\" => 1, \"working_dir\" => \"/foo/bar\"}\n\u001b[0m\u001b[22m\n16:10:39.077 [info] pp"},{"event":"cmd_output","timestamp":1607098239,"output":"l_id: d9fb36d9-eced-4720-b43e-aaaa5b7514fa, type: PplSubInits, state: fetching, event: exit_scheduli"},{"event":"cmd_output","timestamp":1607098239,"output":"ng, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:39"},{"event":"cmd_output","timestamp":1607098239,"output":".079 [info] ppl_id: 1f487847-9f40-4962-becb-9888ea2c4f72, type: PplRequests, event: persisted sched"},{"event":"cmd_output","timestamp":1607098239,"output":"ule request with request_token: 4ae2f707-3b97-4c41-af90-e3bfb069458f, origin: Elixir.Ppl.PplRequests"},{"event":"cmd_output","timestamp":1607098239,"output":".Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:39.083 [info] ppl_id: 1f48784"},{"event":"cmd_output","timestamp":1607098239,"output":"7-9f40-4962-becb-9888ea2c4f72, type: Ppls, state: initializing, event: initializing, recovery_count:"},{"event":"cmd_output","timestamp":1607098239,"output":" 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:39.086 [i"},{"event":"cmd_output","timestamp":1607098239,"output":"nfo] Persisted ppl_sub_init for pipeline with ppl_id: 1f487847-9f40-4962-becb-9888ea2c4f72: %Ppl.Pp"},{"event":"cmd_output","timestamp":1607098239,"output":"lSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_"},{"event":"cmd_output","timestamp":1607098239,"output":"task_id: nil, error_description: nil, id: 91, in_scheduling: false, init_type: \"regular\", inserted_a"},{"event":"cmd_output","timestamp":1607098239,"output":"t: ~N[2020-12-04 16:10:39.085432], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"1f487847-9f40-4962-becb-9888ea2c4f72\", recovery_count: 0, resu"},{"event":"cmd_output","timestamp":1607098239,"output":"lt: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, "},{"event":"cmd_output","timestamp":1607098239,"output":"updated_at: ~N[2020-12-04 16:10:39.085442]}\n\u001b[0m\u001b[32m\r * test build workflow and get valid descrip"},{"event":"cmd_output","timestamp":1607098239,"output":"tion (3735.2ms)\u001b[0m\n\nPlumber.WorkflowAPI.WfNumber.Test\n * test wf_number correctly set for all p"},{"event":"cmd_output","timestamp":1607098239,"output":"ipelines form workflows with different topology\u001b[22m\n16:10:39.202 [info] Periodic from module Elix"},{"event":"cmd_output","timestamp":1607098239,"output":"ir.Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: p"},{"event":"cmd_output","timestamp":1607098239,"output":"eriod: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, rec"},{"event":"cmd_output","timestamp":1607098239,"output":"urring args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_que"},{"event":"cmd_output","timestamp":1607098239,"output":"ry: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher_cb: #Function<0.125326080/1 in Pp"},{"event":"cmd_output","timestamp":1607098239,"output":"l.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request"},{"event":"cmd_output","timestamp":1607098239,"output":", :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervi"},{"event":"cmd_output","timestamp":1607098239,"output":"sor: :skip}\n\u001b[0m\u001b[22m\n16:10:39.203 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.Pending"},{"event":"cmd_output","timestamp":1607098239,"output":"State with name Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.behold"},{"event":"cmd_output","timestamp":1607098239,"output":"er-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"pending\", \"q"},{"event":"cmd_output","timestamp":1607098239,"output":"ueuing\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state"},{"event":"cmd_output","timestamp":1607098239,"output":": \"pending\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: "},{"event":"cmd_output","timestamp":1607098239,"output":"Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :p"},{"event":"cmd_output","timestamp":1607098239,"output":"pl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:10:39.203 ["},{"event":"cmd_output","timestamp":1607098239,"output":"info] Periodic from module Elixir.Ppl.Ppls.STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHan"},{"event":"cmd_output","timestamp":1607098239,"output":"dler.QueuingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Que"},{"event":"cmd_output","timestamp":1607098239,"output":"uingState\"]}, recurring args: %{allowed_states: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2"},{"event":"cmd_output","timestamp":1607098239,"output":", initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", publisher_cb: #Function<0.125102843"},{"event":"cmd_output","timestamp":1607098239,"output":"/1 in Ppl.Ppls.STMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_requ"},{"event":"cmd_output","timestamp":1607098239,"output":"est, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supe"},{"event":"cmd_output","timestamp":1607098239,"output":"rvisor: :skip}\n\u001b[0m\u001b[22m\n16:10:39.203 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.Runn"},{"event":"cmd_output","timestamp":1607098239,"output":"ingState with name Elixir.Ppl.Ppls.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beh"},{"event":"cmd_output","timestamp":1607098239,"output":"older-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\","},{"event":"cmd_output","timestamp":1607098239,"output":" \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"run"},{"event":"cmd_output","timestamp":1607098239,"output":"ning\", publisher_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler.RunningState.args/0>, repo: Ppl.E"},{"event":"cmd_output","timestamp":1607098239,"output":"ctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id"},{"event":"cmd_output","timestamp":1607098239,"output":"], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:10:39.203 [info]"},{"event":"cmd_output","timestamp":1607098239,"output":" Periodic from module Elixir.Ppl.Ppls.STMHandler.StoppingState with name Elixir.Ppl.Ppls.STMHandler"},{"event":"cmd_output","timestamp":1607098239,"output":".StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Stoppi"},{"event":"cmd_output","timestamp":1607098239,"output":"ngState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_qu"},{"event":"cmd_output","timestamp":1607098239,"output":"ery: Ppl.Ppls.Model.Ppls, observed_state: \"stopping\", publisher_cb: #Function<0.71803493/1 in Ppl.Pp"},{"event":"cmd_output","timestamp":1607098239,"output":"ls.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updat"},{"event":"cmd_output","timestamp":1607098239,"output":"ed_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :sk"},{"event":"cmd_output","timestamp":1607098239,"output":"ip}\n\u001b[0m\u001b[22m\n16:10:39.203 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedS"},{"event":"cmd_output","timestamp":1607098239,"output":"tate with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 100 ms, metric_name: {\"Ppl."},{"event":"cmd_output","timestamp":1607098239,"output":"beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args: %{allowed_states: ["},{"event":"cmd_output","timestamp":1607098239,"output":"\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed"},{"event":"cmd_output","timestamp":1607098239,"output":"_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :up"},{"event":"cmd_output","timestamp":1607098239,"output":"dated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, tas"},{"event":"cmd_output","timestamp":1607098239,"output":"k_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:39.204 [info] Periodic from module Elixir.Ppl.PplSubInits.ST"},{"event":"cmd_output","timestamp":1607098239,"output":"MHandler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 ms, "},{"event":"cmd_output","timestamp":1607098239,"output":"metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring args:"},{"event":"cmd_output","timestamp":1607098239,"output":" %{allowed_states: [\"regular_init\", \"compilation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl"},{"event":"cmd_output","timestamp":1607098239,"output":".PplSubInits.Model.PplSubInits, observed_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo,"},{"event":"cmd_output","timestamp":1607098239,"output":" returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schem"},{"event":"cmd_output","timestamp":1607098239,"output":"a: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:39.204 [info] Perio"},{"event":"cmd_output","timestamp":1607098239,"output":"dic from module Elixir.Ppl.PplSubInits.STMHandler.CompilationState with name Elixir.Ppl.PplSubInits."},{"event":"cmd_output","timestamp":1607098239,"output":"STMHandler.CompilationState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubIni"},{"event":"cmd_output","timestamp":1607098239,"output":"ts-STMHandler-CompilationState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\","},{"event":"cmd_output","timestamp":1607098239,"output":" \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observ"},{"event":"cmd_output","timestamp":1607098239,"output":"ed_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_reques"},{"event":"cmd_output","timestamp":1607098239,"output":"t, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInit"},{"event":"cmd_output","timestamp":1607098239,"output":"s, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:39.204 [info] Periodic from module Elixir.Ppl.PplSubIn"},{"event":"cmd_output","timestamp":1607098239,"output":"its.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: peri"},{"event":"cmd_output","timestamp":1607098239,"output":"od: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, "},{"event":"cmd_output","timestamp":1607098239,"output":"recurring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Mode"},{"event":"cmd_output","timestamp":1607098239,"output":"l.PplSubInits, observed_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: ["},{"event":"cmd_output","timestamp":1607098239,"output":":id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSub"},{"event":"cmd_output","timestamp":1607098239,"output":"Inits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:39.204 [info] Periodic from modu"},{"event":"cmd_output","timestamp":1607098239,"output":"le Elixir.Ppl.PplBlocks.STMHandler.InitializingState with name Elixir.Ppl.PplBlocks.STMHandler.Initi"},{"event":"cmd_output","timestamp":1607098239,"output":"alizingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-Ini"},{"event":"cmd_output","timestamp":1607098239,"output":"tializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"waiting\", \"done\"], cooling_ti"},{"event":"cmd_output","timestamp":1607098239,"output":"me_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"initializing\", publisher_c"},{"event":"cmd_output","timestamp":1607098239,"output":"b: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :re"},{"event":"cmd_output","timestamp":1607098239,"output":"covery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}"},{"event":"cmd_output","timestamp":1607098239,"output":"\n\u001b[0m\u001b[22m\n16:10:39.205 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.WaitingState "},{"event":"cmd_output","timestamp":1607098239,"output":"with name Elixir.Ppl.PplBlocks.STMHandler.WaitingState :: period: 1000 ms, metric_name: {\"Ppl.behold"},{"event":"cmd_output","timestamp":1607098239,"output":"er-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurring args: %{allowed_states: [\"waiting"},{"event":"cmd_output","timestamp":1607098239,"output":"\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_s"},{"event":"cmd_output","timestamp":1607098239,"output":"tate: \"waiting\", publisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0"},{"event":"cmd_output","timestamp":1607098239,"output":">, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_"},{"event":"cmd_output","timestamp":1607098239,"output":"count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098239,"output":"[22m\n16:10:39.205 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.RunningState with na"},{"event":"cmd_output","timestamp":1607098239,"output":"me Elixir.Ppl.PplBlocks.STMHandler.RunningState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake"},{"event":"cmd_output","timestamp":1607098239,"output":"_up\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"sto"},{"event":"cmd_output","timestamp":1607098239,"output":"pping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state:"},{"event":"cmd_output","timestamp":1607098239,"output":" \"running\", publisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0>, r"},{"event":"cmd_output","timestamp":1607098239,"output":"epo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_coun"},{"event":"cmd_output","timestamp":1607098239,"output":"t, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}"},{"event":"cmd_output","timestamp":1607098239,"output":"\n\u001b[0m\u001b[22m\n16:10:39.205 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.StoppingState"},{"event":"cmd_output","timestamp":1607098239,"output":" with name Elixir.Ppl.PplBlocks.STMHandler.StoppingState :: period: 1000 ms, metric_name: {\"Ppl.beho"},{"event":"cmd_output","timestamp":1607098239,"output":"lder-wake_up\", [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stop"},{"event":"cmd_output","timestamp":1607098239,"output":"ping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: "},{"event":"cmd_output","timestamp":1607098239,"output":"\"stopping\", publisher_cb: #Function<0.104215991/1 in Ppl.PplBlocks.STMHandler.StoppingState.args/0>,"},{"event":"cmd_output","timestamp":1607098239,"output":" repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_co"},{"event":"cmd_output","timestamp":1607098239,"output":"unt, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :ski"},{"event":"cmd_output","timestamp":1607098239,"output":"p}\n\u001b[0m\u001b[22m\n16:10:39.205 [info] Periodic from module Elixir.Block.Blocks.STMHandler.Initializing"},{"event":"cmd_output","timestamp":1607098239,"output":"State with name Elixir.Block.Blocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"P"},{"event":"cmd_output","timestamp":1607098239,"output":"pl.beholder-wake_up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_stat"},{"event":"cmd_output","timestamp":1607098239,"output":"es: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Blocks.Model.Blocks, observed_sta"},{"event":"cmd_output","timestamp":1607098239,"output":"te: \"initializing\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, "},{"event":"cmd_output","timestamp":1607098239,"output":":updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor"},{"event":"cmd_output","timestamp":1607098239,"output":": :skip}\n\u001b[0m\u001b[22m\n16:10:39.205 [info] Periodic from module Elixir.Block.Blocks.STMHandler.Runnin"},{"event":"cmd_output","timestamp":1607098239,"output":"gState with name Elixir.Block.Blocks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.b"},{"event":"cmd_output","timestamp":1607098239,"output":"eholder-wake_up\", [\"Block-Blocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"run"},{"event":"cmd_output","timestamp":1607098239,"output":"ning\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed"},{"event":"cmd_output","timestamp":1607098239,"output":"_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :"},{"event":"cmd_output","timestamp":1607098239,"output":"updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor:"},{"event":"cmd_output","timestamp":1607098239,"output":" :skip}\n\u001b[0m\u001b[22m\n16:10:39.206 [info] Periodic from module Elixir.Block.Blocks.STMHandler.Stoppin"},{"event":"cmd_output","timestamp":1607098239,"output":"gState with name Elixir.Block.Blocks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl."},{"event":"cmd_output","timestamp":1607098239,"output":"beholder-wake_up\", [\"Block-Blocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"s"},{"event":"cmd_output","timestamp":1607098239,"output":"topping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \""},{"event":"cmd_output","timestamp":1607098239,"output":"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_"},{"event":"cmd_output","timestamp":1607098239,"output":"at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\r"},{"event":"cmd_output","timestamp":1607098239,"output":"\n\u001b[0m\u001b[22m\n16:10:39.206 [info] Periodic from module Elixir.Block.Tasks.STMHandler.PendingState wit"},{"event":"cmd_output","timestamp":1607098239,"output":"h name Elixir.Block.Tasks.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wak"},{"event":"cmd_output","timestamp":1607098239,"output":"e_up\", [\"Block-Tasks-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"running\", \"done"},{"event":"cmd_output","timestamp":1607098239,"output":"\"], cooling_time_sec: 0, initial_query: Block.Tasks.Model.Tasks, observed_state: \"pending\", publishe"},{"event":"cmd_output","timestamp":1607098239,"output":"r_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recove"},{"event":"cmd_output","timestamp":1607098239,"output":"ry_count, :block_id, :build_request_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b"},{"event":"cmd_output","timestamp":1607098239,"output":"[0m\u001b[22m\n16:10:39.214 [info] Periodic from module Elixir.Block.Tasks.STMHandler.RunningState with "},{"event":"cmd_output","timestamp":1607098239,"output":"name Elixir.Block.Tasks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_"},{"event":"cmd_output","timestamp":1607098239,"output":"up\", [\"Block-Tasks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stoppi"},{"event":"cmd_output","timestamp":1607098239,"output":"ng\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"running"},{"event":"cmd_output","timestamp":1607098239,"output":"\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :sta"},{"event":"cmd_output","timestamp":1607098239,"output":"te, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098239,"output":"\n16:10:39.215 [info] Periodic from module Elixir.Block.Tasks.STMHandler.StoppingState with name El"},{"event":"cmd_output","timestamp":1607098239,"output":"ixir.Block.Tasks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", ["},{"event":"cmd_output","timestamp":1607098239,"output":"\"Block-Tasks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], co"},{"event":"cmd_output","timestamp":1607098239,"output":"oling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"stopping\", publisher_cb"},{"event":"cmd_output","timestamp":1607098239,"output":": :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_c"},{"event":"cmd_output","timestamp":1607098239,"output":"ount, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:39.226 "},{"event":"cmd_output","timestamp":1607098239,"output":"[info] Request: 'run: %{\"branch_id\" => \"7525e7c8-117b-4936-ad7a-093214a16782\", \"branch_name\" => \"ma"},{"event":"cmd_output","timestamp":1607098239,"output":"ster\", \"client_id\" => \"cdd3e52f-d2ef-4b91-8a7c-21c16b98af29\", \"commit_sha\" => \"75891a4469\", \"definit"},{"event":"cmd_output","timestamp":1607098239,"output":"ion_file\" => \"\", \"hook_id\" => \"402e8732-364b-11eb-a39b-5254005464e2\", \"label\" => \"master\", \"organiza"},{"event":"cmd_output","timestamp":1607098239,"output":"tion_id\" => \"f2e715b5-87e6-4ede-9512-de8dac0ff8ae\", \"owner\" => \"rt\", \"project_id\" => \"wf-number-test"},{"event":"cmd_output","timestamp":1607098239,"output":"-1\", \"repo_name\" => \"20_workflow_builder\", \"request_token\" => \"402e799a-364b-11eb-b1db-5254005464e2\""},{"event":"cmd_output","timestamp":1607098239,"output":", \"requester_id\" => \"f41455ea-c9be-4083-8bdb-a555149fc1ee\", \"service\" => \"local\", \"snapshot_id\" => \""},{"event":"cmd_output","timestamp":1607098239,"output":"\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" ="},{"event":"cmd_output","timestamp":1607098239,"output":"> \"6a04e0f8-3508-47ba-8f2c-6fd017581ca4\"}\n\u001b[0m\u001b[22m\n16:10:39.255 [info] ppl_id: 8fc7b9a0-a6fb-478"},{"event":"cmd_output","timestamp":1607098239,"output":"1-83ab-ee81457901dd, type: PplRequests, event: persisted schedule request with request_token: 402e79"},{"event":"cmd_output","timestamp":1607098239,"output":"9a-364b-11eb-b1db-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_resp"},{"event":"cmd_output","timestamp":1607098239,"output":"onse/2(L55), \n\u001b[0m\u001b[22m\n16:10:39.259 [info] ppl_id: 8fc7b9a0-a6fb-4781-83ab-ee81457901dd, type: P"},{"event":"cmd_output","timestamp":1607098239,"output":"pls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.Ppls"},{"event":"cmd_output","timestamp":1607098239,"output":"Queries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:39.264 [info] Project wf-number-test-1 and bra"},{"event":"cmd_output","timestamp":1607098239,"output":"nch masterlatest_wf details updated: \"wf_id: 6a04e0f8-3508-47ba-8f2c-6fd017581ca4, wf_number: 1\"\n\u001b["},{"event":"cmd_output","timestamp":1607098239,"output":"0m\u001b[22m\n16:10:39.267 [info] Persisted ppl_sub_init for pipeline with ppl_id: 8fc7b9a0-a6fb-4781-83"},{"event":"cmd_output","timestamp":1607098239,"output":"ab-ee81457901dd: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeli"},{"event":"cmd_output","timestamp":1607098239,"output":"ne_sub_inits\">, compile_task_id: nil, error_description: nil, id: 92, in_scheduling: false, init_typ"},{"event":"cmd_output","timestamp":1607098239,"output":"e: \"regular\", inserted_at: ~N[2020-12-04 16:10:39.265990], pipeline_requests: #Ecto.Association.NotL"},{"event":"cmd_output","timestamp":1607098239,"output":"oaded, ppl_id: \"8fc7b9a0-a6fb-4781-83ab-ee81457901dd\","},{"event":"cmd_output","timestamp":1607098239,"output":" recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, termi"},{"event":"cmd_output","timestamp":1607098239,"output":"nate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:39.266003]}\n\u001b[0m\u001b[22m\n16:10:39.287 [info] "},{"event":"cmd_output","timestamp":1607098239,"output":" ppl_id: 8fc7b9a0-a6fb-4781-83ab-ee81457901dd, type: PplRequests, event: persisted source_args for p"},{"event":"cmd_output","timestamp":1607098239,"output":"ipeline: 8fc7b9a0-a6fb-4781-83ab-ee81457901dd, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueri"},{"event":"cmd_output","timestamp":1607098239,"output":"es.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:39.292 [info] Request: 'run: %{\"auto_promoted\" => false"},{"event":"cmd_output","timestamp":1607098239,"output":", \"branch_id\" => \"7525e7c8-117b-4936-ad7a-093214a16782\", \"branch_name\" => \"master\", \"client_id\" => \""},{"event":"cmd_output","timestamp":1607098239,"output":"cdd3e52f-d2ef-4b91-8a7c-21c16b98af29\", \"commit_sha\" => \"75891a4469\", \"definition_file\" => \"\", \"env_v"},{"event":"cmd_output","timestamp":1607098239,"output":"ars\" => [], \"extension_of\" => \"8fc7b9a0-a6fb-4781-83ab-ee81457901dd\", \"file_name\" => \"/foo/bar/test."},{"event":"cmd_output","timestamp":1607098239,"output":"yml\", \"hook_id\" => \"402e8732-364b-11eb-a39b-5254005464e2\", \"label\" => \"master\", \"organization_id\" =>"},{"event":"cmd_output","timestamp":1607098239,"output":" \"f2e715b5-87e6-4ede-9512-de8dac0ff8ae\", \"owner\" => \"rt\", \"prev_ppl_artefact_ids\" => [\"8fc7b9a0-a6fb"},{"event":"cmd_output","timestamp":1607098239,"output":"-4781-83ab-ee81457901dd\"], \"project_id\" => \"wf-number-test-1\", \"promoter_id\" => \"\", \"repo_name\" => \""},{"event":"cmd_output","timestamp":1607098239,"output":"20_workflow_builder\", \"request_token\" => \"4b173de6-a966-44d9-a370-e6bd1f1e5d28\", \"requester_id\" => \""},{"event":"cmd_output","timestamp":1607098239,"output":"f41455ea-c9be-4083-8bdb-a555149fc1ee\", \"service\" => \"local\", \"snapshot_id\" => \"\", \"suppressed_attrib"},{"event":"cmd_output","timestamp":1607098239,"output":"utes\" => [\"access_token\", \"client_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"6a04e0f8-3508-47ba"},{"event":"cmd_output","timestamp":1607098239,"output":"-8f2c-6fd017581ca4\", \"wf_number\" => 1, \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:10:39.294 [info"},{"event":"cmd_output","timestamp":1607098239,"output":"] ppl_id: 8fc7b9a0-a6fb-4781-83ab-ee81457901dd, type: PplSubInits, state: fetching, event: exit_sch"},{"event":"cmd_output","timestamp":1607098239,"output":"eduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098239,"output":"10:39.296 [info] ppl_id: 27489c9b-56fb-41f7-93a1-d8d1b688f6c8, type: PplRequests, event: persisted "},{"event":"cmd_output","timestamp":1607098239,"output":"schedule request with request_token: 4b173de6-a966-44d9-a370-e6bd1f1e5d28, origin: Elixir.Ppl.PplReq"},{"event":"cmd_output","timestamp":1607098239,"output":"uests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:39.299 [info] ppl_id: 27"},{"event":"cmd_output","timestamp":1607098239,"output":"489c9b-56fb-41f7-93a1-d8d1b688f6c8, type: Ppls, state: initializing, event: initializing, recovery_c"},{"event":"cmd_output","timestamp":1607098239,"output":"ount: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:39.3"},{"event":"cmd_output","timestamp":1607098239,"output":"03 [info] Persisted ppl_sub_init for pipeline with ppl_id: 27489c9b-56fb-41f7-93a1-d8d1b688f6c8: %P"},{"event":"cmd_output","timestamp":1607098239,"output":"pl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, com"},{"event":"cmd_output","timestamp":1607098239,"output":"pile_task_id: nil, error_description: nil, id: 93, in_scheduling: false, init_type: \"regular\", inser"},{"event":"cmd_output","timestamp":1607098239,"output":"ted_at: ~N[2020-12-04 16:10:39.301110], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"27489c9b-56fb-41f7-93a1-d8d1b688f6c8\", recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098239,"output":" result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: "},{"event":"cmd_output","timestamp":1607098239,"output":"nil, updated_at: ~N[2020-12-04 16:10:39.301123]}\n\u001b[0m\u001b[22m\n16:10:39.338 [info] ppl_id: 27489c9b-5"},{"event":"cmd_output","timestamp":1607098239,"output":"6fb-41f7-93a1-d8d1b688f6c8, type: PplRequests, event: persisted source_args for pipeline: 27489c9b-5"},{"event":"cmd_output","timestamp":1607098239,"output":"6fb-41f7-93a1-d8d1b688f6c8, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2("},{"event":"cmd_output","timestamp":1607098239,"output":"L89), \n\u001b[0m\u001b[22m\n16:10:39.341 [info] Request: 'run: %{\"branch_id\" => \"5c73bddf-8e02-4c92-ac5e-c71"},{"event":"cmd_output","timestamp":1607098239,"output":"377eadeae\", \"branch_name\" => \"master\", \"client_id\" => \"0ec905ec-f755-4b76-b541-777fdfaca6c5\", \"commi"},{"event":"cmd_output","timestamp":1607098239,"output":"t_sha\" => \"75891a4469\", \"definition_file\" => \"\", \"hook_id\" => \"403ef5b8-364b-11eb-932a-5254005464e2\""},{"event":"cmd_output","timestamp":1607098239,"output":", \"label\" => \"master\", \"organization_id\" => \"eda93824-8999-4936-90a8-6367f24a16dd\", \"owner\" => \"rt\","},{"event":"cmd_output","timestamp":1607098239,"output":" \"project_id\" => \"wf-number-test-1\", \"repo_name\" => \"20_workflow_builder\", \"request_token\" => \"403ed"},{"event":"cmd_output","timestamp":1607098239,"output":"524-364b-11eb-b4d5-5254005464e2\", \"requester_id\" => \"63189e5a-75c1-4b30-87c6-0627dc1eb05f\", \"service"},{"event":"cmd_output","timestamp":1607098239,"output":"\" => \"local\", \"snapshot_id\" => \"\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"tr"},{"event":"cmd_output","timestamp":1607098239,"output":"iggered_by\" => \"hook\", \"wf_id\" => \"1f1752d1-3411-49c1-8bc7-e731913c8599\"}\n\u001b[0m\u001b[22m\n16:10:39.342 ["},{"event":"cmd_output","timestamp":1607098239,"output":"info] ppl_id: 27489c9b-56fb-41f7-93a1-d8d1b688f6c8, type: PplSubInits, state: fetching, event: exit"},{"event":"cmd_output","timestamp":1607098239,"output":"_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098239,"output":"\n16:10:39.349 [info] ppl_id: 8fc7b9a0-a6fb-4781-83ab-ee81457901dd, type: PplSubInits, state: regula"},{"event":"cmd_output","timestamp":1607098239,"output":"r_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1"},{"event":"cmd_output","timestamp":1607098239,"output":"(L90), \n\u001b[0m\u001b[22m\n16:10:39.385 [info] ppl_id: 58163827-b697-4c7b-8faf-bd62f7c7a2d9, type: PplRequ"},{"event":"cmd_output","timestamp":1607098239,"output":"ests, event: persisted schedule request with request_token: 403ed524-364b-11eb-b4d5-5254005464e2, or"},{"event":"cmd_output","timestamp":1607098239,"output":"igin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:39"},{"event":"cmd_output","timestamp":1607098239,"output":".390 [info] ppl_id: 58163827-b697-4c7b-8faf-bd62f7c7a2d9, type: Ppls, state: initializing, event: i"},{"event":"cmd_output","timestamp":1607098239,"output":"nitializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), "},{"event":"cmd_output","timestamp":1607098239,"output":"\n\u001b[0m\u001b[22m\n16:10:39.394 [info] Project wf-number-test-1 and branch masterlatest_wf details update"},{"event":"cmd_output","timestamp":1607098239,"output":"d: \"wf_id: 1f1752d1-3411-49c1-8bc7-e731913c8599, wf_number: 2\"\n\u001b[0m\u001b[22m\n16:10:39.396 [info] Pers"},{"event":"cmd_output","timestamp":1607098239,"output":"isted ppl_sub_init for pipeline with ppl_id: 58163827-b697-4c7b-8faf-bd62f7c7a2d9: %Ppl.PplSubInits."},{"event":"cmd_output","timestamp":1607098239,"output":"Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: n"},{"event":"cmd_output","timestamp":1607098239,"output":"il, error_description: nil, id: 94, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020"},{"event":"cmd_output","timestamp":1607098239,"output":"-12-04 16:10:39.394562], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"58163827-b697-4c7b-8faf-bd62f7c7a2d9\", recovery_count: 0, result: nil, r"},{"event":"cmd_output","timestamp":1607098239,"output":"esult_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at"},{"event":"cmd_output","timestamp":1607098239,"output":": ~N[2020-12-04 16:10:39.394574]}\n\u001b[0m\u001b[22m\n16:10:39.401 [info] ppl_id: 27489c9b-56fb-41f7-93a1-d"},{"event":"cmd_output","timestamp":1607098239,"output":"8d1b688f6c8, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098239,"output":"in: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:39.413 [info] ppl_id: 581638"},{"event":"cmd_output","timestamp":1607098239,"output":"27-b697-4c7b-8faf-bd62f7c7a2d9, type: PplRequests, event: persisted source_args for pipeline: 581638"},{"event":"cmd_output","timestamp":1607098239,"output":"27-b697-4c7b-8faf-bd62f7c7a2d9, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_sourc"},{"event":"cmd_output","timestamp":1607098239,"output":"e/2(L89), \n\u001b[0m\u001b[22m\n16:10:39.425 [info] ppl_id: 58163827-b697-4c7b-8faf-bd62f7c7a2d9, type: PplS"},{"event":"cmd_output","timestamp":1607098239,"output":"ubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl."},{"event":"cmd_output","timestamp":1607098239,"output":"log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:39.451 [info] ppl_id: 8fc7b9a0-a6fb-4781-83ab-ee8145790"},{"event":"cmd_output","timestamp":1607098239,"output":"1dd, type: PplRequests, event: persisted definition for request with request_token: 402e799a-364b-11"},{"event":"cmd_output","timestamp":1607098239,"output":"eb-b1db-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L7"},{"event":"cmd_output","timestamp":1607098239,"output":"6), \n\u001b[0m\u001b[22m\n16:10:39.457 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ect"},{"event":"cmd_output","timestamp":1607098239,"output":"o.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:10:39.455004], name: \"master-.se"},{"event":"cmd_output","timestamp":1607098239,"output":"maphore/semaphore.yml\", organization_id: \"f2e715b5-87e6-4ede-9512-de8dac0ff8ae\", project_id: \"wf-num"},{"event":"cmd_output","timestamp":1607098239,"output":"ber-test-1\", queue_id: \"bf1427ac-8ddc-46c3-82b4-1afd2e1f7066\", scope: \"project\", updated_at: ~N[2020"},{"event":"cmd_output","timestamp":1607098239,"output":"-12-04 16:10:39.455017], user_generated: false}}\n\u001b[0m\u001b[22m\n16:10:39.472 [info] ppl_id: not_availa"},{"event":"cmd_output","timestamp":1607098239,"output":"ble, event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b"},{"event":"cmd_output","timestamp":1607098239,"output":"[0m\u001b[22m\n16:10:39.472 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInit"},{"event":"cmd_output","timestamp":1607098239,"output":"State.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:39.472 [info] ppl_id: 8fc7b9a0-a6fb-4781-83ab-ee81457901d"},{"event":"cmd_output","timestamp":1607098239,"output":"d, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098239,"output":"Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:39.472 [info]"},{"event":"cmd_output","timestamp":1607098239,"output":" ppl_id: 8fc7b9a0-a6fb-4781-83ab-ee81457901dd, type: PplBlocks, block_index: 1, state: initializing"},{"event":"cmd_output","timestamp":1607098239,"output":", event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_"},{"event":"cmd_output","timestamp":1607098239,"output":"ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:39.476 [info] ppl_id: 8fc7b9a0-a6fb-4781-83ab-ee81457901dd, type: P"},{"event":"cmd_output","timestamp":1607098239,"output":"plSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098239,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:39.480 [info] ppl_id: 58163827-b697-4c7b"},{"event":"cmd_output","timestamp":1607098239,"output":"-8faf-bd62f7c7a2d9, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: "},{"event":"cmd_output","timestamp":1607098239,"output":"0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:39.489 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098239,"output":" 8fc7b9a0-a6fb-4781-83ab-ee81457901dd, type: PplBlocks, block_index: 0, state: waiting, event: exit_"},{"event":"cmd_output","timestamp":1607098239,"output":"scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098239,"output":"16:10:39.494 [info] ppl_id: 8fc7b9a0-a6fb-4781-83ab-ee81457901dd, type: Ppls, state: pending, event"},{"event":"cmd_output","timestamp":1607098239,"output":": exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098239,"output":"\u001b[22m\n16:10:39.508 [info] ppl_id: 8fc7b9a0-a6fb-4781-83ab-ee81457901dd, type: Ppls, state: queuing"},{"event":"cmd_output","timestamp":1607098239,"output":", event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90),"},{"event":"cmd_output","timestamp":1607098239,"output":" \n\u001b[0m\u001b[22m\n16:10:39.508 [info] ppl_id: 8fc7b9a0-a6fb-4781-83ab-ee81457901dd, type: PplBlocks, bl"},{"event":"cmd_output","timestamp":1607098239,"output":"ock_index: 1, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.I"},{"event":"cmd_output","timestamp":1607098239,"output":"mpl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:39.524 [info] ppl_id: 8fc7b9a0-a6fb-4781-83ab-ee814"},{"event":"cmd_output","timestamp":1607098239,"output":"57901dd, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loope"},{"event":"cmd_output","timestamp":1607098239,"output":"r.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:39.536 [info] ppl_id: 27489c9b-56fb-41f7-93a"},{"event":"cmd_output","timestamp":1607098239,"output":"1-d8d1b688f6c8, type: PplRequests, event: persisted definition for request with request_token: 4b173"},{"event":"cmd_output","timestamp":1607098239,"output":"de6-a966-44d9-a370-e6bd1f1e5d28, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_defi"},{"event":"cmd_output","timestamp":1607098239,"output":"nition/3(L76), \n\u001b[0m\u001b[22m\n16:10:39.541 [info] PplBlocks WaitingState STM is scheduling block 0 fr"},{"event":"cmd_output","timestamp":1607098239,"output":"om pipeline: \"8fc7b9a0-a6fb-4781-83ab-ee81457901dd\"\n\u001b[0m\u001b[22m\n16:10:39.548 [info] Queue persisted"},{"event":"cmd_output","timestamp":1607098239,"output":": {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N"},{"event":"cmd_output","timestamp":1607098239,"output":"[2020-12-04 16:10:39.546802], name: \"master-/foo/bar/test.yml\", organization_id: \"f2e715b5-87e6-4ede"},{"event":"cmd_output","timestamp":1607098239,"output":"-9512-de8dac0ff8ae\", project_id: \"wf-number-test-1\", queue_id: \"f17e9b57-b1ec-4436-88ff-a428e0be0621"},{"event":"cmd_output","timestamp":1607098239,"output":"\", scope: \"project\", updated_at: ~N[2020-12-04 16:10:39.546832], user_generated: false}}\n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098239,"output":"\n16:10:39.558 [info] block_id: 46dd9526-3715-424b-abbf-bd1242491bf3, type: BlockRequests, event: pe"},{"event":"cmd_output","timestamp":1607098239,"output":"rsisted block run request from ppl 8fc7b9a0-a6fb-4781-83ab-ee81457901dd for block 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098239,"output":"Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:39.563 [i"},{"event":"cmd_output","timestamp":1607098239,"output":"nfo] block_id: 46dd9526-3715-424b-abbf-bd1242491bf3, type: Blocks, state: initializing, event: init"},{"event":"cmd_output","timestamp":1607098239,"output":"ializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098239,"output":"22m\n16:10:39.563 [info] ppl_id: not_available, event: created, origin: Elixir.Ppl.PplSubInits.STMH"},{"event":"cmd_output","timestamp":1607098239,"output":"andler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:39.563 [info] event: created, origin: E"},{"event":"cmd_output","timestamp":1607098239,"output":"lixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:39.563 [info] "},{"event":"cmd_output","timestamp":1607098239,"output":" ppl_id: 27489c9b-56fb-41f7-93a1-d8d1b688f6c8, type: PplBlocks, block_index: 0, state: initializing,"},{"event":"cmd_output","timestamp":1607098239,"output":" event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_o"},{"event":"cmd_output","timestamp":1607098239,"output":"k?/1(L105), \n\u001b[0m\u001b[22m\n16:10:39.563 [info] ppl_id: 27489c9b-56fb-41f7-93a1-d8d1b688f6c8, type: Pp"},{"event":"cmd_output","timestamp":1607098239,"output":"lBlocks, block_index: 1, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl."},{"event":"cmd_output","timestamp":1607098239,"output":"PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:39.567 [info] Block 0 o"},{"event":"cmd_output","timestamp":1607098239,"output":"f pipeline with id: 8fc7b9a0-a6fb-4781-83ab-ee81457901dd scheduled in block service with id: : \"46dd"},{"event":"cmd_output","timestamp":1607098239,"output":"9526-3715-424b-abbf-bd1242491bf3\"\n\u001b[0m\u001b[22m\n16:10:39.568 [info] ppl_id: 27489c9b-56fb-41f7-93a1-d"},{"event":"cmd_output","timestamp":1607098239,"output":"8d1b688f6c8, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count:"},{"event":"cmd_output","timestamp":1607098239,"output":" 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:39.571 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098239,"output":": 8fc7b9a0-a6fb-4781-83ab-ee81457901dd, type: PplBlocks, block_index: 0, state: running, event: exit"},{"event":"cmd_output","timestamp":1607098239,"output":"_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098239,"output":"\n16:10:39.583 [info] block_id: 46dd9526-3715-424b-abbf-bd1242491bf3, type: BlockRequests, event: pe"},{"event":"cmd_output","timestamp":1607098239,"output":"rsisted build and sub_ppl details for block_request: 46dd9526-3715-424b-abbf-bd1242491bf3, origin: E"},{"event":"cmd_output","timestamp":1607098239,"output":"lixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:39.587 "},{"event":"cmd_output","timestamp":1607098239,"output":"[info] ppl_id: 27489c9b-56fb-41f7-93a1-d8d1b688f6c8, type: PplBlocks, block_index: 0, state: waitin"},{"event":"cmd_output","timestamp":1607098239,"output":"g, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90)"},{"event":"cmd_output","timestamp":1607098239,"output":", \n\u001b[0m\u001b[22m\n16:10:39.587 [info] block_id: 46dd9526-3715-424b-abbf-bd1242491bf3, type: Tasks, sta"},{"event":"cmd_output","timestamp":1607098239,"output":"te: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingS"},{"event":"cmd_output","timestamp":1607098239,"output":"tate.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:39.588 [info] ppl_id: 27489c9b-56fb-41f7-93a1-d8d1b688f6c8"},{"event":"cmd_output","timestamp":1607098239,"output":", type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.I"},{"event":"cmd_output","timestamp":1607098239,"output":"mpl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:39.594 [info] block_id: 46dd9526-3715-424b-abbf-bd1"},{"event":"cmd_output","timestamp":1607098239,"output":"242491bf3, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098239,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:39.602 [info] ppl_id: 27489c9b-56fb-41f7"},{"event":"cmd_output","timestamp":1607098239,"output":"-93a1-d8d1b688f6c8, type: PplBlocks, block_index: 1, state: waiting, event: exit_scheduling, recover"},{"event":"cmd_output","timestamp":1607098239,"output":"y_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:39.607 [info]"},{"event":"cmd_output","timestamp":1607098239,"output":" ppl_id: 27489c9b-56fb-41f7-93a1-d8d1b688f6c8, type: Ppls, state: queuing, event: exit_scheduling, "},{"event":"cmd_output","timestamp":1607098239,"output":"recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:39.627"},{"event":"cmd_output","timestamp":1607098239,"output":" [info] block_id: 46dd9526-3715-424b-abbf-bd1242491bf3, type: Tasks, state: running, event: exit_sc"},{"event":"cmd_output","timestamp":1607098239,"output":"heduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098239,"output":":10:39.631 [info] ppl_id: 27489c9b-56fb-41f7-93a1-d8d1b688f6c8, type: Ppls, state: running, event: "},{"event":"cmd_output","timestamp":1607098239,"output":"exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098239,"output":"22m\n16:10:39.636 [info] ppl_id: 58163827-b697-4c7b-8faf-bd62f7c7a2d9, type: PplRequests, event: pe"},{"event":"cmd_output","timestamp":1607098239,"output":"rsisted definition for request with request_token: 403ed524-364b-11eb-b4d5-5254005464e2, origin: Eli"},{"event":"cmd_output","timestamp":1607098239,"output":"xir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:39.647 [in"},{"event":"cmd_output","timestamp":1607098239,"output":"fo] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"27489c9b-56fb-41f7-93a1-d8d1b6"},{"event":"cmd_output","timestamp":1607098239,"output":"88f6c8\"\n\u001b[0m\u001b[22m\n16:10:39.650 [info] ppl_id: not_available, event: created, origin: Elixir.Ppl.P"},{"event":"cmd_output","timestamp":1607098239,"output":"plSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:39.650 [info] event: cre"},{"event":"cmd_output","timestamp":1607098239,"output":"ated, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10"},{"event":"cmd_output","timestamp":1607098239,"output":":39.650 [info] ppl_id: 58163827-b697-4c7b-8faf-bd62f7c7a2d9, type: PplBlocks, block_index: 0, state"},{"event":"cmd_output","timestamp":1607098239,"output":": initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.Regular"},{"event":"cmd_output","timestamp":1607098239,"output":"InitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:39.650 [info] ppl_id: 58163827-b697-4c7b-8faf-bd62f7c"},{"event":"cmd_output","timestamp":1607098239,"output":"7a2d9, type: PplBlocks, block_index: 1, state: initializing, event: created, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098239,"output":"in: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:39.659 [i"},{"event":"cmd_output","timestamp":1607098239,"output":"nfo] ppl_id: 58163827-b697-4c7b-8faf-bd62f7c7a2d9, type: PplSubInits, state: done, result: passed, "},{"event":"cmd_output","timestamp":1607098239,"output":"event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \r"},{"event":"cmd_output","timestamp":1607098239,"output":"\n\u001b[0m\u001b[22m\n16:10:39.668 [info] block_id: 46dd9526-3715-424b-abbf-bd1242491bf3, type: Tasks, state:"},{"event":"cmd_output","timestamp":1607098239,"output":" done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1("},{"event":"cmd_output","timestamp":1607098239,"output":"L90), \n\u001b[0m\u001b[22m\n16:10:39.671 [info] block_id: d5c81813-ecf3-4dba-ad05-71720d88a26d, type: BlockR"},{"event":"cmd_output","timestamp":1607098239,"output":"equests, event: persisted block run request from ppl 27489c9b-56fb-41f7-93a1-d8d1b688f6c8 for block "},{"event":"cmd_output","timestamp":1607098239,"output":"0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098239,"output":"m\n16:10:39.675 [info] ppl_id: 58163827-b697-4c7b-8faf-bd62f7c7a2d9, type: PplBlocks, block_index: "},{"event":"cmd_output","timestamp":1607098239,"output":"0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_sta"},{"event":"cmd_output","timestamp":1607098239,"output":"te_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:39.678 [info] block_id: d5c81813-ecf3-4dba-ad05-71720d88a26d, "},{"event":"cmd_output","timestamp":1607098239,"output":"type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Bloc"},{"event":"cmd_output","timestamp":1607098239,"output":"ks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:39.682 [info] ppl_id: 58163827-b697-4c7b-8"},{"event":"cmd_output","timestamp":1607098239,"output":"faf-bd62f7c7a2d9, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098239,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:39.682 [info] Block 0 of pipeline w"},{"event":"cmd_output","timestamp":1607098239,"output":"ith id: 27489c9b-56fb-41f7-93a1-d8d1b688f6c8 scheduled in block service with id: : \"d5c81813-ecf3-4d"},{"event":"cmd_output","timestamp":1607098239,"output":"ba-ad05-71720d88a26d\"\n\u001b[0m\u001b[22m\n16:10:39.691 [info] ppl_id: 58163827-b697-4c7b-8faf-bd62f7c7a2d9,"},{"event":"cmd_output","timestamp":1607098239,"output":" type: PplBlocks, block_index: 1, state: waiting, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098239,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:39.692 [info] block_id: 46dd952"},{"event":"cmd_output","timestamp":1607098239,"output":"6-3715-424b-abbf-bd1242491bf3, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098239,"output":" origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:39.697 [info] ppl_id: 2"},{"event":"cmd_output","timestamp":1607098239,"output":"7489c9b-56fb-41f7-93a1-d8d1b688f6c8, type: PplBlocks, block_index: 0, state: running, event: exit_sc"},{"event":"cmd_output","timestamp":1607098239,"output":"heduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098239,"output":":10:39.699 [info] block_id: d5c81813-ecf3-4dba-ad05-71720d88a26d, type: BlockRequests, event: persi"},{"event":"cmd_output","timestamp":1607098239,"output":"sted build and sub_ppl details for block_request: d5c81813-ecf3-4dba-ad05-71720d88a26d, origin: Elix"},{"event":"cmd_output","timestamp":1607098239,"output":"ir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:39.702 [in"},{"event":"cmd_output","timestamp":1607098239,"output":"fo] block_id: d5c81813-ecf3-4dba-ad05-71720d88a26d, type: Tasks, state: pending, event: created, re"},{"event":"cmd_output","timestamp":1607098239,"output":"covery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098239,"output":"2m\n16:10:39.710 [info] ppl_id: 58163827-b697-4c7b-8faf-bd62f7c7a2d9, type: Ppls, state: queuing, e"},{"event":"cmd_output","timestamp":1607098239,"output":"vent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n"},{"event":"cmd_output","timestamp":1607098239,"output":"\u001b[0m\u001b[22m\n16:10:39.710 [info] block_id: d5c81813-ecf3-4dba-ad05-71720d88a26d, type: Blocks, state:"},{"event":"cmd_output","timestamp":1607098239,"output":" running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change"},{"event":"cmd_output","timestamp":1607098239,"output":"/1(L90), \n\u001b[0m\u001b[22m\n16:10:39.711 [info] ppl_id: 8fc7b9a0-a6fb-4781-83ab-ee81457901dd, block_id: 4"},{"event":"cmd_output","timestamp":1607098239,"output":"6dd9526-3715-424b-abbf-bd1242491bf3, type: PplBlocks, block_index: 0, state: done, result: failed, e"},{"event":"cmd_output","timestamp":1607098239,"output":"vent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n"},{"event":"cmd_output","timestamp":1607098239,"output":"\u001b[0m\u001b[22m\n16:10:39.725 [info] PplBlocks WaitingState STM is scheduling block 1 from pipeline: \"8fc"},{"event":"cmd_output","timestamp":1607098239,"output":"7b9a0-a6fb-4781-83ab-ee81457901dd\"\n\u001b[0m\u001b[22m\n16:10:39.732 [info] ppl_id: 8fc7b9a0-a6fb-4781-83ab-"},{"event":"cmd_output","timestamp":1607098239,"output":"ee81457901dd, type: PplBlocks, block_index: 1, state: done, result: canceled, event: exit_scheduling"},{"event":"cmd_output","timestamp":1607098239,"output":", recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:39.7"},{"event":"cmd_output","timestamp":1607098239,"output":"52 [info] block_id: d5c81813-ecf3-4dba-ad05-71720d88a26d, type: Tasks, state: running, event: exit_"},{"event":"cmd_output","timestamp":1607098239,"output":"scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098239,"output":"16:10:39.756 [info] ppl_id: 8fc7b9a0-a6fb-4781-83ab-ee81457901dd, type: Ppls, state: done, result: "},{"event":"cmd_output","timestamp":1607098239,"output":"failed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1"},{"event":"cmd_output","timestamp":1607098239,"output":"(L90), \n\u001b[0m\u001b[22m\n16:10:39.782 [info] block_id: d5c81813-ecf3-4dba-ad05-71720d88a26d, type: Tasks"},{"event":"cmd_output","timestamp":1607098239,"output":", state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098239,"output":"hange/1(L90), \n\u001b[0m\u001b[22m\n16:10:39.792 [info] block_id: d5c81813-ecf3-4dba-ad05-71720d88a26d, type"},{"event":"cmd_output","timestamp":1607098239,"output":": Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098239,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:39.804 [info] ppl_id: 27489c9b-56fb-41f7-93a1-d8d1b688f6c8"},{"event":"cmd_output","timestamp":1607098239,"output":", block_id: d5c81813-ecf3-4dba-ad05-71720d88a26d, type: PplBlocks, block_index: 0, state: done, resu"},{"event":"cmd_output","timestamp":1607098239,"output":"lt: failed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chan"},{"event":"cmd_output","timestamp":1607098239,"output":"ge/1(L90), \n\u001b[0m\u001b[22m\n16:10:39.812 [info] PplBlocks WaitingState STM is scheduling block 1 from p"},{"event":"cmd_output","timestamp":1607098239,"output":"ipeline: \"27489c9b-56fb-41f7-93a1-d8d1b688f6c8\"\n\u001b[0m\u001b[22m\n16:10:39.821 [info] ppl_id: 27489c9b-56"},{"event":"cmd_output","timestamp":1607098239,"output":"fb-41f7-93a1-d8d1b688f6c8, type: PplBlocks, block_index: 1, state: done, result: canceled, event: ex"},{"event":"cmd_output","timestamp":1607098239,"output":"it_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098239,"output":"m\n16:10:39.831 [info] ppl_id: 27489c9b-56fb-41f7-93a1-d8d1b688f6c8, type: Ppls, state: done, resul"},{"event":"cmd_output","timestamp":1607098239,"output":"t: failed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chang"},{"event":"cmd_output","timestamp":1607098239,"output":"e/1(L90), \n\u001b[0m\u001b[22m\n16:10:39.866 [info] ppl_id: 58163827-b697-4c7b-8faf-bd62f7c7a2d9, type: Ppls"},{"event":"cmd_output","timestamp":1607098239,"output":", state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_stat"},{"event":"cmd_output","timestamp":1607098239,"output":"e_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:39.873 [info] PplBlocks WaitingState STM is scheduling block 0 "},{"event":"cmd_output","timestamp":1607098239,"output":"from pipeline: \"58163827-b697-4c7b-8faf-bd62f7c7a2d9\"\n\u001b[0m\u001b[22m\n16:10:39.878 [info] block_id: d94"},{"event":"cmd_output","timestamp":1607098239,"output":"8dc10-c7b4-4cdc-baa5-b304fd9588c2, type: BlockRequests, event: persisted block run request from ppl "},{"event":"cmd_output","timestamp":1607098239,"output":"58163827-b697-4c7b-8faf-bd62f7c7a2d9 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequ"},{"event":"cmd_output","timestamp":1607098239,"output":"estsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:39.880 [info] block_id: d948dc10-c7b4-4cdc-"},{"event":"cmd_output","timestamp":1607098239,"output":"baa5-b304fd9588c2, type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098239,"output":": Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:39.882 [info] Block 0 o"},{"event":"cmd_output","timestamp":1607098239,"output":"f pipeline with id: 58163827-b697-4c7b-8faf-bd62f7c7a2d9 scheduled in block service with id: : \"d948"},{"event":"cmd_output","timestamp":1607098239,"output":"dc10-c7b4-4cdc-baa5-b304fd9588c2\"\n\u001b[0m\u001b[22m\n16:10:39.886 [info] ppl_id: 58163827-b697-4c7b-8faf-b"},{"event":"cmd_output","timestamp":1607098239,"output":"d62f7c7a2d9, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count"},{"event":"cmd_output","timestamp":1607098239,"output":": 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:39.889 [info] block"},{"event":"cmd_output","timestamp":1607098239,"output":"_id: d948dc10-c7b4-4cdc-baa5-b304fd9588c2, type: BlockRequests, event: persisted build and sub_ppl d"},{"event":"cmd_output","timestamp":1607098239,"output":"etails for block_request: d948dc10-c7b4-4cdc-baa5-b304fd9588c2, origin: Elixir.Block.BlockRequests.M"},{"event":"cmd_output","timestamp":1607098239,"output":"odel.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:39.891 [info] block_id: d948dc10-"},{"event":"cmd_output","timestamp":1607098239,"output":"c7b4-4cdc-baa5-b304fd9588c2, type: Tasks, state: pending, event: created, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098239,"output":" Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:39.894 [info] "},{"event":"cmd_output","timestamp":1607098239,"output":" block_id: d948dc10-c7b4-4cdc-baa5-b304fd9588c2, type: Blocks, state: running, event: exit_schedulin"},{"event":"cmd_output","timestamp":1607098239,"output":"g, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:39."},{"event":"cmd_output","timestamp":1607098239,"output":"918 [info] block_id: d948dc10-c7b4-4cdc-baa5-b304fd9588c2, type: Tasks, state: running, event: exit"},{"event":"cmd_output","timestamp":1607098240,"output":"_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098240,"output":"\n16:10:40.000 [info] block_id: d948dc10-c7b4-4cdc-baa5-b304fd9588c2, type: Tasks, state: done, even"},{"event":"cmd_output","timestamp":1607098240,"output":"t: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098240,"output":"m\u001b[22m\n16:10:40.013 [info] block_id: d948dc10-c7b4-4cdc-baa5-b304fd9588c2, type: Blocks, state: do"},{"event":"cmd_output","timestamp":1607098240,"output":"ne, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90"},{"event":"cmd_output","timestamp":1607098240,"output":"), \n\u001b[0m\u001b[22m\n16:10:40.020 [info] ppl_id: 58163827-b697-4c7b-8faf-bd62f7c7a2d9, block_id: d948dc1"},{"event":"cmd_output","timestamp":1607098240,"output":"0-c7b4-4cdc-baa5-b304fd9588c2, type: PplBlocks, block_index: 0, state: done, result: failed, event: "},{"event":"cmd_output","timestamp":1607098240,"output":"exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098240,"output":"22m\n16:10:40.025 [info] PplBlocks WaitingState STM is scheduling block 1 from pipeline: \"58163827-"},{"event":"cmd_output","timestamp":1607098240,"output":"b697-4c7b-8faf-bd62f7c7a2d9\"\n\u001b[0m\u001b[22m\n16:10:40.032 [info] ppl_id: 58163827-b697-4c7b-8faf-bd62f7"},{"event":"cmd_output","timestamp":1607098240,"output":"c7a2d9, type: PplBlocks, block_index: 1, state: done, result: canceled, event: exit_scheduling, reco"},{"event":"cmd_output","timestamp":1607098240,"output":"very_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:40.048 [in"},{"event":"cmd_output","timestamp":1607098240,"output":"fo] ppl_id: 58163827-b697-4c7b-8faf-bd62f7c7a2d9, type: Ppls, state: done, result: failed, event: e"},{"event":"cmd_output","timestamp":1607098240,"output":"xit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098240,"output":"2m\n16:10:40.140 [info] Request: 'partial_rebuild', request: %{ppl_id: \"58163827-b697-4c7b-8faf-bd6"},{"event":"cmd_output","timestamp":1607098240,"output":"2f7c7a2d9\", request_token: \"a4cf9e93-44ea-4970-bb66-43cdd2767a3e\", user_id: \"\"}\n\u001b[0m\u001b[22m\n16:10:40"},{"event":"cmd_output","timestamp":1607098240,"output":".143 [info] ppl_id: 316b8600-0017-4651-81e4-8afa7f715e68, type: PplRequests, event: persisted sched"},{"event":"cmd_output","timestamp":1607098240,"output":"ule request with request_token: a4cf9e93-44ea-4970-bb66-43cdd2767a3e, origin: Elixir.Ppl.PplRequests"},{"event":"cmd_output","timestamp":1607098240,"output":".Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:40.145 [info] ppl_id: 316b860"},{"event":"cmd_output","timestamp":1607098240,"output":"0-0017-4651-81e4-8afa7f715e68, type: Ppls, state: initializing, event: initializing, recovery_count:"},{"event":"cmd_output","timestamp":1607098240,"output":" 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:40.149 [i"},{"event":"cmd_output","timestamp":1607098240,"output":"nfo] Persisted ppl_sub_init for pipeline with ppl_id: 316b8600-0017-4651-81e4-8afa7f715e68: %Ppl.Pp"},{"event":"cmd_output","timestamp":1607098240,"output":"lSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_"},{"event":"cmd_output","timestamp":1607098240,"output":"task_id: nil, error_description: nil, id: 95, in_scheduling: false, init_type: \"rebuild\", inserted_a"},{"event":"cmd_output","timestamp":1607098240,"output":"t: ~N[2020-12-04 16:10:40.148755], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"316b8600-0017-4651-81e4-8afa7f715e68\", recovery_count: 0, resu"},{"event":"cmd_output","timestamp":1607098240,"output":"lt: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, "},{"event":"cmd_output","timestamp":1607098240,"output":"updated_at: ~N[2020-12-04 16:10:40.148762]}\n\u001b[0m\u001b[22m\n16:10:40.163 [info] Request: 'run: %{\"branc"},{"event":"cmd_output","timestamp":1607098240,"output":"h_id\" => \"bafc3786-431d-4cf5-89a5-6627292fe1c2\", \"branch_name\" => \"master\", \"client_id\" => \"aeb9d82e"},{"event":"cmd_output","timestamp":1607098240,"output":"-f69e-42cd-8d5f-805575ed014e\", \"commit_sha\" => \"75891a4469\", \"definition_file\" => \"\", \"hook_id\" => \""},{"event":"cmd_output","timestamp":1607098240,"output":"40bd9800-364b-11eb-bb6f-5254005464e2\", \"label\" => \"master\", \"organization_id\" => \"e16db71c-662d-466a"},{"event":"cmd_output","timestamp":1607098240,"output":"-9cfa-d19381184205\", \"owner\" => \"rt\", \"project_id\" => \"wf-number-test-1\", \"repo_name\" => \"20_workflo"},{"event":"cmd_output","timestamp":1607098240,"output":"w_builder\", \"request_token\" => \"40bd8fae-364b-11eb-97a1-5254005464e2\", \"requester_id\" => \"56e63d6e-1"},{"event":"cmd_output","timestamp":1607098240,"output":"952-460e-be83-a25558fda975\", \"service\" => \"local\", \"snapshot_id\" => \"\", \"suppressed_attributes\" => ["},{"event":"cmd_output","timestamp":1607098240,"output":"\"access_token\", \"client_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"74156cb2-5e61-4896-88aa-2d3d"},{"event":"cmd_output","timestamp":1607098240,"output":"e4a559ec\"}\n\u001b[0m\u001b[22m\n16:10:40.166 [info] ppl_id: 316b8600-0017-4651-81e4-8afa7f715e68, type: PplR"},{"event":"cmd_output","timestamp":1607098240,"output":"equests, event: persisted source_args for pipeline: 316b8600-0017-4651-81e4-8afa7f715e68, origin: El"},{"event":"cmd_output","timestamp":1607098240,"output":"ixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:40.169 [info]"},{"event":"cmd_output","timestamp":1607098240,"output":" ppl_id: 316b8600-0017-4651-81e4-8afa7f715e68, type: PplSubInits, state: fetching, event: exit_sche"},{"event":"cmd_output","timestamp":1607098240,"output":"duling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098240,"output":"0:40.189 [info] ppl_id: 316b8600-0017-4651-81e4-8afa7f715e68, type: PplSubInits, state: regular_ini"},{"event":"cmd_output","timestamp":1607098240,"output":"t, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90)"},{"event":"cmd_output","timestamp":1607098240,"output":", \n\u001b[0m\u001b[22m\n16:10:40.207 [info] ppl_id: 7956799c-e6d0-4387-9717-500b725d96b9, type: PplRequests,"},{"event":"cmd_output","timestamp":1607098240,"output":" event: persisted schedule request with request_token: 40bd8fae-364b-11eb-97a1-5254005464e2, origin:"},{"event":"cmd_output","timestamp":1607098240,"output":" Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:40.212 "},{"event":"cmd_output","timestamp":1607098240,"output":"[info] ppl_id: 7956799c-e6d0-4387-9717-500b725d96b9, type: Ppls, state: initializing, event: initia"},{"event":"cmd_output","timestamp":1607098240,"output":"lizing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098240,"output":"m\u001b[22m\n16:10:40.215 [info] Project wf-number-test-1 and branch masterlatest_wf details updated: \"w"},{"event":"cmd_output","timestamp":1607098240,"output":"f_id: 74156cb2-5e61-4896-88aa-2d3de4a559ec, wf_number: 3\"\n\u001b[0m\u001b[22m\n16:10:40.216 [info] Persisted"},{"event":"cmd_output","timestamp":1607098240,"output":" ppl_sub_init for pipeline with ppl_id: 7956799c-e6d0-4387-9717-500b725d96b9: %Ppl.PplSubInits.Model"},{"event":"cmd_output","timestamp":1607098240,"output":".PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, e"},{"event":"cmd_output","timestamp":1607098240,"output":"rror_description: nil, id: 96, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-0"},{"event":"cmd_output","timestamp":1607098240,"output":"4 16:10:40.215276], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"7956799c-e6d0-4387-9717-500b725d96b9\", recovery_count: 0, result: nil, result"},{"event":"cmd_output","timestamp":1607098240,"output":"_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N["},{"event":"cmd_output","timestamp":1607098240,"output":"2020-12-04 16:10:40.215285]}\n\u001b[0m\u001b[22m\n16:10:40.219 [info] ppl_id: 316b8600-0017-4651-81e4-8afa7f"},{"event":"cmd_output","timestamp":1607098240,"output":"715e68, type: PplRequests, event: persisted definition for request with request_token: a4cf9e93-44ea"},{"event":"cmd_output","timestamp":1607098240,"output":"-4970-bb66-43cdd2767a3e, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3"},{"event":"cmd_output","timestamp":1607098240,"output":"(L76), \n\u001b[0m\u001b[22m\n16:10:40.227 [info] ppl_id: not_available, event: created, origin: Elixir.Ppl.P"},{"event":"cmd_output","timestamp":1607098240,"output":"plSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:40.227 [info] event: cre"},{"event":"cmd_output","timestamp":1607098240,"output":"ated, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10"},{"event":"cmd_output","timestamp":1607098240,"output":":40.227 [info] ppl_id: 316b8600-0017-4651-81e4-8afa7f715e68, type: PplBlocks, block_index: 0, state"},{"event":"cmd_output","timestamp":1607098240,"output":": initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.Regular"},{"event":"cmd_output","timestamp":1607098240,"output":"InitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:40.227 [info] ppl_id: 316b8600-0017-4651-81e4-8afa7f7"},{"event":"cmd_output","timestamp":1607098240,"output":"15e68, type: PplBlocks, block_index: 1, state: initializing, event: created, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098240,"output":"in: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:40.229 [i"},{"event":"cmd_output","timestamp":1607098240,"output":"nfo] ppl_id: 7956799c-e6d0-4387-9717-500b725d96b9, type: PplRequests, event: persisted source_args "},{"event":"cmd_output","timestamp":1607098240,"output":"for pipeline: 7956799c-e6d0-4387-9717-500b725d96b9, origin: Elixir.Ppl.PplRequests.Model.PplRequests"},{"event":"cmd_output","timestamp":1607098240,"output":"Queries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:40.231 [info] ppl_id: 7956799c-e6d0-4387-9717-500b"},{"event":"cmd_output","timestamp":1607098240,"output":"725d96b9, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098240,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:40.232 [info] ppl_id: 316b8600-0017"},{"event":"cmd_output","timestamp":1607098240,"output":"-4651-81e4-8afa7f715e68, type: PplSubInits, state: done, result: passed, event: exit_scheduling, rec"},{"event":"cmd_output","timestamp":1607098240,"output":"overy_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:40.233 [i"},{"event":"cmd_output","timestamp":1607098240,"output":"nfo] Request: 'run: %{\"auto_promoted\" => false, \"branch_id\" => \"bafc3786-431d-4cf5-89a5-6627292fe1c"},{"event":"cmd_output","timestamp":1607098240,"output":"2\", \"branch_name\" => \"master\", \"client_id\" => \"aeb9d82e-f69e-42cd-8d5f-805575ed014e\", \"commit_sha\" ="},{"event":"cmd_output","timestamp":1607098240,"output":"> \"75891a4469\", \"definition_file\" => \"\", \"env_vars\" => [], \"extension_of\" => \"7956799c-e6d0-4387-971"},{"event":"cmd_output","timestamp":1607098240,"output":"7-500b725d96b9\", \"file_name\" => \"/foo/bar/test.yml\", \"hook_id\" => \"40bd9800-364b-11eb-bb6f-525400546"},{"event":"cmd_output","timestamp":1607098240,"output":"4e2\", \"label\" => \"master\", \"organization_id\" => \"e16db71c-662d-466a-9cfa-d19381184205\", \"owner\" => \""},{"event":"cmd_output","timestamp":1607098240,"output":"rt\", \"prev_ppl_artefact_ids\" => [\"7956799c-e6d0-4387-9717-500b725d96b9\"], \"project_id\" => \"wf-number"},{"event":"cmd_output","timestamp":1607098240,"output":"-test-1\", \"promoter_id\" => \"\", \"repo_name\" => \"20_workflow_builder\", \"request_token\" => \"6fef0847-c7"},{"event":"cmd_output","timestamp":1607098240,"output":"8c-4cdc-b869-36f3f90fa3c0\", \"requester_id\" => \"56e63d6e-1952-460e-be83-a25558fda975\", \"service\" => \""},{"event":"cmd_output","timestamp":1607098240,"output":"local\", \"snapshot_id\" => \"\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"triggere"},{"event":"cmd_output","timestamp":1607098240,"output":"d_by\" => \"hook\", \"wf_id\" => \"74156cb2-5e61-4896-88aa-2d3de4a559ec\", \"wf_number\" => 3, \"working_dir\" "},{"event":"cmd_output","timestamp":1607098240,"output":"=> \".semaphore\"}\n\u001b[0m\u001b[22m\n16:10:40.235 [info] ppl_id: a6b78bd3-04a9-4d2e-9437-6038a7d6b4c8, type"},{"event":"cmd_output","timestamp":1607098240,"output":": PplRequests, event: persisted schedule request with request_token: 6fef0847-c78c-4cdc-b869-36f3f90"},{"event":"cmd_output","timestamp":1607098240,"output":"fa3c0, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098240,"output":"\n16:10:40.239 [info] ppl_id: a6b78bd3-04a9-4d2e-9437-6038a7d6b4c8, type: Ppls, state: initializing,"},{"event":"cmd_output","timestamp":1607098240,"output":" event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/"},{"event":"cmd_output","timestamp":1607098240,"output":"2(L124), \n\u001b[0m\u001b[22m\n16:10:40.241 [info] Persisted ppl_sub_init for pipeline with ppl_id: a6b78bd3"},{"event":"cmd_output","timestamp":1607098240,"output":"-04a9-4d2e-9437-6038a7d6b4c8: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:lo"},{"event":"cmd_output","timestamp":1607098240,"output":"aded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 97, in_scheduling: fa"},{"event":"cmd_output","timestamp":1607098240,"output":"lse, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:10:40.240194], pipeline_requests: #Ecto.Ass"},{"event":"cmd_output","timestamp":1607098240,"output":"ociation.NotLoaded, ppl_id: \"a6b78bd3-04a9-4d2e-9437-6"},{"event":"cmd_output","timestamp":1607098240,"output":"038a7d6b4c8\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_reques"},{"event":"cmd_output","timestamp":1607098240,"output":"t: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:40.240200]}\n\u001b[0m\u001b[22m\n16:10:4"},{"event":"cmd_output","timestamp":1607098240,"output":"0.245 [info] ppl_id: 316b8600-0017-4651-81e4-8afa7f715e68, type: Ppls, state: pending, event: exit_"},{"event":"cmd_output","timestamp":1607098240,"output":"scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098240,"output":"16:10:40.251 [info] ppl_id: 316b8600-0017-4651-81e4-8afa7f715e68, type: PplBlocks, block_index: 0, "},{"event":"cmd_output","timestamp":1607098240,"output":"state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_"},{"event":"cmd_output","timestamp":1607098240,"output":"change/1(L90), \n\u001b[0m\u001b[22m\n16:10:40.258 [info] ppl_id: 316b8600-0017-4651-81e4-8afa7f715e68, type:"},{"event":"cmd_output","timestamp":1607098240,"output":" Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098240,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:40.267 [info] ppl_id: 316b8600-0017-4651-81e4-8afa7f715e68"},{"event":"cmd_output","timestamp":1607098240,"output":", type: PplBlocks, block_index: 1, state: waiting, event: exit_scheduling, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098240,"output":": Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:40.268 [info] ppl_id: a6b78bd3"},{"event":"cmd_output","timestamp":1607098240,"output":"-04a9-4d2e-9437-6038a7d6b4c8, type: PplRequests, event: persisted source_args for pipeline: a6b78bd3"},{"event":"cmd_output","timestamp":1607098240,"output":"-04a9-4d2e-9437-6038a7d6b4c8, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/"},{"event":"cmd_output","timestamp":1607098240,"output":"2(L89), \n\u001b[0m\u001b[22m\n16:10:40.271 [info] ppl_id: 7956799c-e6d0-4387-9717-500b725d96b9, type: PplSub"},{"event":"cmd_output","timestamp":1607098240,"output":"Inits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Imp"},{"event":"cmd_output","timestamp":1607098240,"output":"l.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:40.275 [info] ppl_id: a6b78bd3-04a9-4d2e-9437-6038a7d"},{"event":"cmd_output","timestamp":1607098240,"output":"6b4c8, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098240,"output":".Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:40.278 [info] ppl_id: 316b8600-0017-46"},{"event":"cmd_output","timestamp":1607098240,"output":"51-81e4-8afa7f715e68, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098240,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:40.291 [info] PplBlocks Waiting"},{"event":"cmd_output","timestamp":1607098240,"output":"State STM is scheduling block 0 from pipeline: \"316b8600-0017-4651-81e4-8afa7f715e68\"\n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098240,"output":":10:40.301 [info] block_id: 905ac0ce-b9fc-4bba-b436-8f41d90dcd96, type: BlockRequests, event: persi"},{"event":"cmd_output","timestamp":1607098240,"output":"sted block run request from ppl 316b8600-0017-4651-81e4-8afa7f715e68 for block 0, origin: Elixir.Blo"},{"event":"cmd_output","timestamp":1607098240,"output":"ck.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:40.305 [info"},{"event":"cmd_output","timestamp":1607098240,"output":"] block_id: 905ac0ce-b9fc-4bba-b436-8f41d90dcd96, type: Blocks, state: initializing, event: initial"},{"event":"cmd_output","timestamp":1607098240,"output":"izing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098240,"output":"\n16:10:40.311 [info] Block 0 of pipeline with id: 316b8600-0017-4651-81e4-8afa7f715e68 scheduled i"},{"event":"cmd_output","timestamp":1607098240,"output":"n block service with id: : \"905ac0ce-b9fc-4bba-b436-8f41d90dcd96\"\n\u001b[0m\u001b[22m\n16:10:40.318 [info] p"},{"event":"cmd_output","timestamp":1607098240,"output":"pl_id: 316b8600-0017-4651-81e4-8afa7f715e68, type: PplBlocks, block_index: 0, state: running, event:"},{"event":"cmd_output","timestamp":1607098240,"output":" exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098240,"output":"[22m\n16:10:40.323 [info] block_id: 905ac0ce-b9fc-4bba-b436-8f41d90dcd96, type: BlockRequests, even"},{"event":"cmd_output","timestamp":1607098240,"output":"t: persisted build and sub_ppl details for block_request: 905ac0ce-b9fc-4bba-b436-8f41d90dcd96, orig"},{"event":"cmd_output","timestamp":1607098240,"output":"in: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:40"},{"event":"cmd_output","timestamp":1607098240,"output":".328 [info] block_id: 905ac0ce-b9fc-4bba-b436-8f41d90dcd96, type: Tasks, state: pending, event: cre"},{"event":"cmd_output","timestamp":1607098240,"output":"ated, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \r"},{"event":"cmd_output","timestamp":1607098240,"output":"\n\u001b[0m\u001b[22m\n16:10:40.332 [info] block_id: 905ac0ce-b9fc-4bba-b436-8f41d90dcd96, type: Blocks, state"},{"event":"cmd_output","timestamp":1607098240,"output":": running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chang"},{"event":"cmd_output","timestamp":1607098240,"output":"e/1(L90), \n\u001b[0m\u001b[22m\n16:10:40.335 [info] ppl_id: a6b78bd3-04a9-4d2e-9437-6038a7d6b4c8, type: PplS"},{"event":"cmd_output","timestamp":1607098240,"output":"ubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.I"},{"event":"cmd_output","timestamp":1607098240,"output":"mpl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:40.354 [info] ppl_id: 7956799c-e6d0-4387-9717-500b7"},{"event":"cmd_output","timestamp":1607098240,"output":"25d96b9, type: PplRequests, event: persisted definition for request with request_token: 40bd8fae-364"},{"event":"cmd_output","timestamp":1607098240,"output":"b-11eb-97a1-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/"},{"event":"cmd_output","timestamp":1607098240,"output":"3(L76), \n\u001b[0m\u001b[22m\n16:10:40.367 [info] block_id: 905ac0ce-b9fc-4bba-b436-8f41d90dcd96, type: Task"},{"event":"cmd_output","timestamp":1607098240,"output":"s, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_sta"},{"event":"cmd_output","timestamp":1607098240,"output":"te_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:40.371 [info] ppl_id: not_available, event: created, origin: E"},{"event":"cmd_output","timestamp":1607098240,"output":"lixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:40.371 [info] "},{"event":"cmd_output","timestamp":1607098240,"output":" event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098240,"output":"[22m\n16:10:40.371 [info] ppl_id: 7956799c-e6d0-4387-9717-500b725d96b9, type: PplBlocks, block_inde"},{"event":"cmd_output","timestamp":1607098240,"output":"x: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHand"},{"event":"cmd_output","timestamp":1607098240,"output":"ler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:40.372 [info] ppl_id: 7956799c-e6d0-4387-9"},{"event":"cmd_output","timestamp":1607098240,"output":"717-500b725d96b9, type: PplBlocks, block_index: 1, state: initializing, event: created, recovery_cou"},{"event":"cmd_output","timestamp":1607098240,"output":"nt: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098240,"output":"0:40.376 [info] ppl_id: 7956799c-e6d0-4387-9717-500b725d96b9, type: PplSubInits, state: done, resul"},{"event":"cmd_output","timestamp":1607098240,"output":"t: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chang"},{"event":"cmd_output","timestamp":1607098240,"output":"e/1(L90), \n\u001b[0m\u001b[22m\n16:10:40.392 [info] ppl_id: 7956799c-e6d0-4387-9717-500b725d96b9, type: Ppls"},{"event":"cmd_output","timestamp":1607098240,"output":", state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_stat"},{"event":"cmd_output","timestamp":1607098240,"output":"e_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:40.392 [info] ppl_id: 7956799c-e6d0-4387-9717-500b725d96b9, typ"},{"event":"cmd_output","timestamp":1607098240,"output":"e: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098240,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:40.407 [info] ppl_id: 7956799c-e6d0"},{"event":"cmd_output","timestamp":1607098240,"output":"-4387-9717-500b725d96b9, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098240,"output":"in: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:40.409 [info] ppl_id: 795679"},{"event":"cmd_output","timestamp":1607098240,"output":"9c-e6d0-4387-9717-500b725d96b9, type: PplBlocks, block_index: 1, state: waiting, event: exit_schedul"},{"event":"cmd_output","timestamp":1607098240,"output":"ing, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:4"},{"event":"cmd_output","timestamp":1607098240,"output":"0.429 [info] block_id: 905ac0ce-b9fc-4bba-b436-8f41d90dcd96, type: Tasks, state: done, event: exit_"},{"event":"cmd_output","timestamp":1607098240,"output":"scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098240,"output":"16:10:40.439 [info] block_id: 905ac0ce-b9fc-4bba-b436-8f41d90dcd96, type: Blocks, state: done, even"},{"event":"cmd_output","timestamp":1607098240,"output":"t: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098240,"output":"m\u001b[22m\n16:10:40.448 [info] ppl_id: a6b78bd3-04a9-4d2e-9437-6038a7d6b4c8, type: PplRequests, event:"},{"event":"cmd_output","timestamp":1607098240,"output":" persisted definition for request with request_token: 6fef0847-c78c-4cdc-b869-36f3f90fa3c0, origin: "},{"event":"cmd_output","timestamp":1607098240,"output":"Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:40.449 "},{"event":"cmd_output","timestamp":1607098240,"output":"[info] ppl_id: 316b8600-0017-4651-81e4-8afa7f715e68, block_id: 905ac0ce-b9fc-4bba-b436-8f41d90dcd96"},{"event":"cmd_output","timestamp":1607098240,"output":", type: PplBlocks, block_index: 0, state: done, result: failed, event: exit_scheduling, recovery_cou"},{"event":"cmd_output","timestamp":1607098240,"output":"nt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:40.460 [info] ppl"},{"event":"cmd_output","timestamp":1607098240,"output":"_id: not_available, event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_o"},{"event":"cmd_output","timestamp":1607098240,"output":"k?/1(L105), \n\u001b[0m\u001b[22m\n16:10:40.460 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHand"},{"event":"cmd_output","timestamp":1607098240,"output":"ler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:40.460 [info] ppl_id: a6b78bd3-04a9-4d2e-9"},{"event":"cmd_output","timestamp":1607098240,"output":"437-6038a7d6b4c8, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_cou"},{"event":"cmd_output","timestamp":1607098240,"output":"nt: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098240,"output":"0:40.460 [info] ppl_id: a6b78bd3-04a9-4d2e-9437-6038a7d6b4c8, type: PplBlocks, block_index: 1, stat"},{"event":"cmd_output","timestamp":1607098240,"output":"e: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.Regula"},{"event":"cmd_output","timestamp":1607098240,"output":"rInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:40.464 [info] PplBlocks WaitingState STM is scheduli"},{"event":"cmd_output","timestamp":1607098240,"output":"ng block 1 from pipeline: \"316b8600-0017-4651-81e4-8afa7f715e68\"\n\u001b[0m\u001b[22m\n16:10:40.468 [info] pp"},{"event":"cmd_output","timestamp":1607098240,"output":"l_id: a6b78bd3-04a9-4d2e-9437-6038a7d6b4c8, type: PplSubInits, state: done, result: passed, event: e"},{"event":"cmd_output","timestamp":1607098240,"output":"xit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098240,"output":"2m\n16:10:40.474 [info] ppl_id: 316b8600-0017-4651-81e4-8afa7f715e68, type: PplBlocks, block_index:"},{"event":"cmd_output","timestamp":1607098240,"output":" 1, state: done, result: canceled, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper."},{"event":"cmd_output","timestamp":1607098240,"output":"STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:40.483 [info] ppl_id: a6b78bd3-04a9-4d2e-9437-"},{"event":"cmd_output","timestamp":1607098240,"output":"6038a7d6b4c8, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098240,"output":"Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:40.485 [info] ppl_id: a6b78bd3-04a9-4d2"},{"event":"cmd_output","timestamp":1607098240,"output":"e-9437-6038a7d6b4c8, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recove"},{"event":"cmd_output","timestamp":1607098240,"output":"ry_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:40.496 [info"},{"event":"cmd_output","timestamp":1607098240,"output":"] ppl_id: a6b78bd3-04a9-4d2e-9437-6038a7d6b4c8, type: Ppls, state: queuing, event: exit_scheduling,"},{"event":"cmd_output","timestamp":1607098240,"output":" recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:40.49"},{"event":"cmd_output","timestamp":1607098240,"output":"7 [info] ppl_id: a6b78bd3-04a9-4d2e-9437-6038a7d6b4c8, type: PplBlocks, block_index: 1, state: wait"},{"event":"cmd_output","timestamp":1607098240,"output":"ing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L9"},{"event":"cmd_output","timestamp":1607098240,"output":"0), \n\u001b[0m\u001b[22m\n16:10:40.505 [info] ppl_id: 316b8600-0017-4651-81e4-8afa7f715e68, type: Ppls, stat"},{"event":"cmd_output","timestamp":1607098240,"output":"e: done, result: failed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.l"},{"event":"cmd_output","timestamp":1607098240,"output":"og_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:40.512 [info] ppl_id: a6b78bd3-04a9-4d2e-9437-6038a7d6b4"},{"event":"cmd_output","timestamp":1607098240,"output":"c8, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM"},{"event":"cmd_output","timestamp":1607098240,"output":".Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:40.520 [info] PplBlocks WaitingState STM is sched"},{"event":"cmd_output","timestamp":1607098240,"output":"uling block 0 from pipeline: \"a6b78bd3-04a9-4d2e-9437-6038a7d6b4c8\"\n\u001b[0m\u001b[22m\n16:10:40.528 [info] "},{"event":"cmd_output","timestamp":1607098240,"output":" block_id: a96c9f93-ca48-4e4b-9d91-098dcdc011e5, type: BlockRequests, event: persisted block run req"},{"event":"cmd_output","timestamp":1607098240,"output":"uest from ppl a6b78bd3-04a9-4d2e-9437-6038a7d6b4c8 for block 0, origin: Elixir.Block.BlockRequests.M"},{"event":"cmd_output","timestamp":1607098240,"output":"odel.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:40.531 [info] block_id: a96c9"},{"event":"cmd_output","timestamp":1607098240,"output":"f93-ca48-4e4b-9d91-098dcdc011e5, type: Blocks, state: initializing, event: initializing, recovery_co"},{"event":"cmd_output","timestamp":1607098240,"output":"unt: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:40.534 [in"},{"event":"cmd_output","timestamp":1607098240,"output":"fo] Block 0 of pipeline with id: a6b78bd3-04a9-4d2e-9437-6038a7d6b4c8 scheduled in block service wi"},{"event":"cmd_output","timestamp":1607098240,"output":"th id: : \"a96c9f93-ca48-4e4b-9d91-098dcdc011e5\"\n\u001b[0m\u001b[22m\n16:10:40.536 [info] ppl_id: 7956799c-e6"},{"event":"cmd_output","timestamp":1607098240,"output":"d0-4387-9717-500b725d96b9, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098240,"output":"igin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:40.538 [info] ppl_id: a6b7"},{"event":"cmd_output","timestamp":1607098240,"output":"8bd3-04a9-4d2e-9437-6038a7d6b4c8, type: PplBlocks, block_index: 0, state: running, event: exit_sched"},{"event":"cmd_output","timestamp":1607098240,"output":"uling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10"},{"event":"cmd_output","timestamp":1607098240,"output":":40.543 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"7956799c-e6d0-4387-"},{"event":"cmd_output","timestamp":1607098240,"output":"9717-500b725d96b9\"\n\u001b[0m\u001b[22m\n16:10:40.546 [info] block_id: a96c9f93-ca48-4e4b-9d91-098dcdc011e5, "},{"event":"cmd_output","timestamp":1607098240,"output":"type: BlockRequests, event: persisted build and sub_ppl details for block_request: a96c9f93-ca48-4e4"},{"event":"cmd_output","timestamp":1607098240,"output":"b-9d91-098dcdc011e5, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L4"},{"event":"cmd_output","timestamp":1607098240,"output":"1), \n\u001b[0m\u001b[22m\n16:10:40.550 [info] block_id: 5068a2af-6dd0-4065-bb0a-cad5de9f92e0, type: BlockReq"},{"event":"cmd_output","timestamp":1607098240,"output":"uests, event: persisted block run request from ppl 7956799c-e6d0-4387-9717-500b725d96b9 for block 0,"},{"event":"cmd_output","timestamp":1607098240,"output":" origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098240,"output":"\n16:10:40.550 [info] block_id: a96c9f93-ca48-4e4b-9d91-098dcdc011e5, type: Tasks, state: pending, e"},{"event":"cmd_output","timestamp":1607098240,"output":"vent: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1"},{"event":"cmd_output","timestamp":1607098240,"output":"(L167), \n\u001b[0m\u001b[22m\n16:10:40.553 [info] block_id: 5068a2af-6dd0-4065-bb0a-cad5de9f92e0, type: Bloc"},{"event":"cmd_output","timestamp":1607098240,"output":"ks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.B"},{"event":"cmd_output","timestamp":1607098240,"output":"locksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:40.555 [info] block_id: a96c9f93-ca48-4e4b-9d91-098d"},{"event":"cmd_output","timestamp":1607098240,"output":"cdc011e5, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Lo"},{"event":"cmd_output","timestamp":1607098240,"output":"oper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:40.555 [info] Block 0 of pipeline with id"},{"event":"cmd_output","timestamp":1607098240,"output":": 7956799c-e6d0-4387-9717-500b725d96b9 scheduled in block service with id: : \"5068a2af-6dd0-4065-bb0"},{"event":"cmd_output","timestamp":1607098240,"output":"a-cad5de9f92e0\"\n\u001b[0m\u001b[22m\n16:10:40.562 [info] ppl_id: 7956799c-e6d0-4387-9717-500b725d96b9, type:"},{"event":"cmd_output","timestamp":1607098240,"output":" PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098240,"output":"r.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:40.568 [info] block_id: 5068a2af-6dd0"},{"event":"cmd_output","timestamp":1607098240,"output":"-4065-bb0a-cad5de9f92e0, type: BlockRequests, event: persisted build and sub_ppl details for block_r"},{"event":"cmd_output","timestamp":1607098240,"output":"equest: 5068a2af-6dd0-4065-bb0a-cad5de9f92e0, origin: Elixir.Block.BlockRequests.Model.BlockRequests"},{"event":"cmd_output","timestamp":1607098240,"output":"Queries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:40.580 [info] block_id: 5068a2af-6dd0-4065-bb0a-cad"},{"event":"cmd_output","timestamp":1607098240,"output":"5de9f92e0, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Bloc"},{"event":"cmd_output","timestamp":1607098240,"output":"ks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:40.582 [info] block_id: a96c9f9"},{"event":"cmd_output","timestamp":1607098240,"output":"3-ca48-4e4b-9d91-098dcdc011e5, type: Tasks, state: running, event: exit_scheduling, recovery_count: "},{"event":"cmd_output","timestamp":1607098240,"output":"0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:40.589 [info] block_i"},{"event":"cmd_output","timestamp":1607098240,"output":"d: 5068a2af-6dd0-4065-bb0a-cad5de9f92e0, type: Blocks, state: running, event: exit_scheduling, recov"},{"event":"cmd_output","timestamp":1607098240,"output":"ery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:40.618 [inf"},{"event":"cmd_output","timestamp":1607098240,"output":"o] block_id: 5068a2af-6dd0-4065-bb0a-cad5de9f92e0, type: Tasks, state: running, event: exit_schedul"},{"event":"cmd_output","timestamp":1607098240,"output":"ing, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:4"},{"event":"cmd_output","timestamp":1607098240,"output":"0.647 [info] block_id: a96c9f93-ca48-4e4b-9d91-098dcdc011e5, type: Tasks, state: done, event: exit_"},{"event":"cmd_output","timestamp":1607098240,"output":"scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098240,"output":"16:10:40.655 [info] block_id: a96c9f93-ca48-4e4b-9d91-098dcdc011e5, type: Blocks, state: done, even"},{"event":"cmd_output","timestamp":1607098240,"output":"t: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098240,"output":"m\u001b[22m\n16:10:40.666 [info] ppl_id: a6b78bd3-04a9-4d2e-9437-6038a7d6b4c8, block_id: a96c9f93-ca48-4"},{"event":"cmd_output","timestamp":1607098240,"output":"e4b-9d91-098dcdc011e5, type: PplBlocks, block_index: 0, state: done, result: failed, event: exit_sch"},{"event":"cmd_output","timestamp":1607098240,"output":"eduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098240,"output":"10:40.678 [info] PplBlocks WaitingState STM is scheduling block 1 from pipeline: \"a6b78bd3-04a9-4d2"},{"event":"cmd_output","timestamp":1607098240,"output":"e-9437-6038a7d6b4c8\"\n\u001b[0m\u001b[22m\n16:10:40.684 [info] ppl_id: a6b78bd3-04a9-4d2e-9437-6038a7d6b4c8, "},{"event":"cmd_output","timestamp":1607098240,"output":"type: PplBlocks, block_index: 1, state: done, result: canceled, event: exit_scheduling, recovery_cou"},{"event":"cmd_output","timestamp":1607098240,"output":"nt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:40.701 [info] ppl"},{"event":"cmd_output","timestamp":1607098240,"output":"_id: a6b78bd3-04a9-4d2e-9437-6038a7d6b4c8, type: Ppls, state: done, result: failed, event: exit_sche"},{"event":"cmd_output","timestamp":1607098240,"output":"duling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098240,"output":"0:40.760 [info] block_id: 5068a2af-6dd0-4065-bb0a-cad5de9f92e0, type: Tasks, state: done, event: ex"},{"event":"cmd_output","timestamp":1607098240,"output":"it_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098240,"output":"m\n16:10:40.767 [info] block_id: 5068a2af-6dd0-4065-bb0a-cad5de9f92e0, type: Blocks, state: done, e"},{"event":"cmd_output","timestamp":1607098240,"output":"vent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n"},{"event":"cmd_output","timestamp":1607098240,"output":"\u001b[0m\u001b[22m\n16:10:40.776 [info] ppl_id: 7956799c-e6d0-4387-9717-500b725d96b9, block_id: 5068a2af-6dd"},{"event":"cmd_output","timestamp":1607098240,"output":"0-4065-bb0a-cad5de9f92e0, type: PplBlocks, block_index: 0, state: done, result: failed, event: exit_"},{"event":"cmd_output","timestamp":1607098240,"output":"scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098240,"output":"16:10:40.783 [info] PplBlocks WaitingState STM is scheduling block 1 from pipeline: \"7956799c-e6d0-"},{"event":"cmd_output","timestamp":1607098240,"output":"4387-9717-500b725d96b9\"\n\u001b[0m\u001b[22m\n16:10:40.788 [info] Request: 'partial_rebuild', request: %{ppl_"},{"event":"cmd_output","timestamp":1607098240,"output":"id: \"a6b78bd3-04a9-4d2e-9437-6038a7d6b4c8\", request_token: \"c45228dc-873d-423f-bc26-53603839fe56\", u"},{"event":"cmd_output","timestamp":1607098240,"output":"ser_id: \"\"}\n\u001b[0m\u001b[22m\n16:10:40.790 [info] ppl_id: 7956799c-e6d0-4387-9717-500b725d96b9, type: Ppl"},{"event":"cmd_output","timestamp":1607098240,"output":"Blocks, block_index: 1, state: done, result: canceled, event: exit_scheduling, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098240,"output":"igin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:40.800 [info] ppl_id: f4dc"},{"event":"cmd_output","timestamp":1607098240,"output":"cd51-3e11-4cc9-9e82-e57ef38b2cdb, type: PplRequests, event: persisted schedule request with request_"},{"event":"cmd_output","timestamp":1607098240,"output":"token: c45228dc-873d-423f-bc26-53603839fe56, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries"},{"event":"cmd_output","timestamp":1607098240,"output":".process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:40.804 [info] ppl_id: f4dccd51-3e11-4cc9-9e82-e57ef38b"},{"event":"cmd_output","timestamp":1607098240,"output":"2cdb, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Pp"},{"event":"cmd_output","timestamp":1607098240,"output":"ls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:40.807 [info] Persisted ppl_sub_i"},{"event":"cmd_output","timestamp":1607098240,"output":"nit for pipeline with ppl_id: f4dccd51-3e11-4cc9-9e82-e57ef38b2cdb: %Ppl.PplSubInits.Model.PplSubIni"},{"event":"cmd_output","timestamp":1607098240,"output":"ts{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_descr"},{"event":"cmd_output","timestamp":1607098240,"output":"iption: nil, id: 98, in_scheduling: false, init_type: \"rebuild\", inserted_at: ~N[2020-12-04 16:10:40"},{"event":"cmd_output","timestamp":1607098240,"output":".806518], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"f4dccd51-3e11-4cc9-9e82-e57ef38b2cdb\", recovery_count: 0, result: nil, result_reason: n"},{"event":"cmd_output","timestamp":1607098240,"output":"il, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04"},{"event":"cmd_output","timestamp":1607098240,"output":" 16:10:40.806530]}\n\u001b[0m\u001b[22m\n16:10:40.813 [info] ppl_id: 7956799c-e6d0-4387-9717-500b725d96b9, ty"},{"event":"cmd_output","timestamp":1607098240,"output":"pe: Ppls, state: done, result: failed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loo"},{"event":"cmd_output","timestamp":1607098240,"output":"per.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:40.825 [info] ppl_id: f4dccd51-3e11-4cc9-9"},{"event":"cmd_output","timestamp":1607098240,"output":"e82-e57ef38b2cdb, type: PplRequests, event: persisted source_args for pipeline: f4dccd51-3e11-4cc9-9"},{"event":"cmd_output","timestamp":1607098240,"output":"e82-e57ef38b2cdb, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b["},{"event":"cmd_output","timestamp":1607098240,"output":"0m\u001b[22m\n16:10:40.828 [info] Request: 'run: %{\"branch_id\" => \"22199ecf-2d13-4cc9-acfe-c933ee16701a\""},{"event":"cmd_output","timestamp":1607098240,"output":", \"branch_name\" => \"master\", \"client_id\" => \"9611dd40-8cb3-41f2-82f5-d0f585c13b4f\", \"commit_sha\" => "},{"event":"cmd_output","timestamp":1607098240,"output":"\"75891a4469\", \"definition_file\" => \"\", \"hook_id\" => \"41226e42-364b-11eb-bb0e-5254005464e2\", \"label\" "},{"event":"cmd_output","timestamp":1607098240,"output":"=> \"master\", \"organization_id\" => \"36352ac2-951f-4d5b-b67f-c7b9723caa61\", \"owner\" => \"rt\", \"project_"},{"event":"cmd_output","timestamp":1607098240,"output":"id\" => \"wf-number-test-1\", \"repo_name\" => \"20_workflow_builder\", \"request_token\" => \"41225f60-364b-1"},{"event":"cmd_output","timestamp":1607098240,"output":"1eb-9335-5254005464e2\", \"requester_id\" => \"c7f0886e-ba00-4dd7-b0bc-6a495df40673\", \"service\" => \"loca"},{"event":"cmd_output","timestamp":1607098240,"output":"l\", \"snapshot_id\" => \"\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"triggered_by"},{"event":"cmd_output","timestamp":1607098240,"output":"\" => \"hook\", \"wf_id\" => \"3ceb433c-86fd-4582-85d7-92b3d9c44744\"}\n\u001b[0m\u001b[22m\n16:10:40.830 [info] ppl"},{"event":"cmd_output","timestamp":1607098240,"output":"_id: f4dccd51-3e11-4cc9-9e82-e57ef38b2cdb, type: PplSubInits, state: fetching, event: exit_schedulin"},{"event":"cmd_output","timestamp":1607098240,"output":"g, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:40."},{"event":"cmd_output","timestamp":1607098240,"output":"873 [info] ppl_id: f4dccd51-3e11-4cc9-9e82-e57ef38b2cdb, type: PplSubInits, state: regular_init, ev"},{"event":"cmd_output","timestamp":1607098240,"output":"ent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b"},{"event":"cmd_output","timestamp":1607098240,"output":"[0m\u001b[22m\n16:10:40.886 [info] ppl_id: 58e399be-604b-4e4e-9a6a-fcb8ceb5d731, type: PplRequests, even"},{"event":"cmd_output","timestamp":1607098240,"output":"t: persisted schedule request with request_token: 41225f60-364b-11eb-9335-5254005464e2, origin: Elix"},{"event":"cmd_output","timestamp":1607098240,"output":"ir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:40.888 [info"},{"event":"cmd_output","timestamp":1607098240,"output":"] ppl_id: 58e399be-604b-4e4e-9a6a-fcb8ceb5d731, type: Ppls, state: initializing, event: initializin"},{"event":"cmd_output","timestamp":1607098240,"output":"g, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098240,"output":"m\n16:10:40.892 [info] Project wf-number-test-1 and branch masterlatest_wf details updated: \"wf_id:"},{"event":"cmd_output","timestamp":1607098240,"output":" 3ceb433c-86fd-4582-85d7-92b3d9c44744, wf_number: 4\"\n\u001b[0m\u001b[22m\n16:10:40.895 [info] Persisted ppl_"},{"event":"cmd_output","timestamp":1607098240,"output":"sub_init for pipeline with ppl_id: 58e399be-604b-4e4e-9a6a-fcb8ceb5d731: %Ppl.PplSubInits.Model.PplS"},{"event":"cmd_output","timestamp":1607098240,"output":"ubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_"},{"event":"cmd_output","timestamp":1607098240,"output":"description: nil, id: 99, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:"},{"event":"cmd_output","timestamp":1607098240,"output":"10:40.892959], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"58e399be-604b-4e4e-9a6a-fcb8ceb5d731\", recovery_count: 0, result: nil, result_reas"},{"event":"cmd_output","timestamp":1607098240,"output":"on: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-"},{"event":"cmd_output","timestamp":1607098240,"output":"12-04 16:10:40.892970]}\n\u001b[0m\u001b[22m\n16:10:40.915 [info] ppl_id: 58e399be-604b-4e4e-9a6a-fcb8ceb5d73"},{"event":"cmd_output","timestamp":1607098240,"output":"1, type: PplRequests, event: persisted source_args for pipeline: 58e399be-604b-4e4e-9a6a-fcb8ceb5d73"},{"event":"cmd_output","timestamp":1607098240,"output":"1, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:"},{"event":"cmd_output","timestamp":1607098240,"output":"40.918 [info] ppl_id: 58e399be-604b-4e4e-9a6a-fcb8ceb5d731, type: PplSubInits, state: fetching, eve"},{"event":"cmd_output","timestamp":1607098240,"output":"nt: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b["},{"event":"cmd_output","timestamp":1607098240,"output":"0m\u001b[22m\n16:10:40.923 [info] Request: 'run: %{\"auto_promoted\" => false, \"branch_id\" => \"22199ecf-2d"},{"event":"cmd_output","timestamp":1607098240,"output":"13-4cc9-acfe-c933ee16701a\", \"branch_name\" => \"master\", \"client_id\" => \"9611dd40-8cb3-41f2-82f5-d0f58"},{"event":"cmd_output","timestamp":1607098240,"output":"5c13b4f\", \"commit_sha\" => \"75891a4469\", \"definition_file\" => \"\", \"env_vars\" => [], \"extension_of\" =>"},{"event":"cmd_output","timestamp":1607098240,"output":" \"58e399be-604b-4e4e-9a6a-fcb8ceb5d731\", \"file_name\" => \"/foo/bar/test.yml\", \"hook_id\" => \"41226e42-"},{"event":"cmd_output","timestamp":1607098240,"output":"364b-11eb-bb0e-5254005464e2\", \"label\" => \"master\", \"organization_id\" => \"36352ac2-951f-4d5b-b67f-c7b"},{"event":"cmd_output","timestamp":1607098240,"output":"9723caa61\", \"owner\" => \"rt\", \"prev_ppl_artefact_ids\" => [\"58e399be-604b-4e4e-9a6a-fcb8ceb5d731\"], \"p"},{"event":"cmd_output","timestamp":1607098240,"output":"roject_id\" => \"wf-number-test-1\", \"promoter_id\" => \"\", \"repo_name\" => \"20_workflow_builder\", \"reques"},{"event":"cmd_output","timestamp":1607098240,"output":"t_token\" => \"f56d1e15-598c-4c8a-909c-4478015e5c04\", \"requester_id\" => \"c7f0886e-ba00-4dd7-b0bc-6a495"},{"event":"cmd_output","timestamp":1607098240,"output":"df40673\", \"service\" => \"local\", \"snapshot_id\" => \"\", \"suppressed_attributes\" => [\"access_token\", \"cl"},{"event":"cmd_output","timestamp":1607098240,"output":"ient_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"3ceb433c-86fd-4582-85d7-92b3d9c44744\", \"wf_numb"},{"event":"cmd_output","timestamp":1607098240,"output":"er\" => 4, \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:10:40.925 [info] ppl_id: d77c549d-64be-4f5a"},{"event":"cmd_output","timestamp":1607098240,"output":"-b8e1-6a43360ffa87, type: PplRequests, event: persisted schedule request with request_token: f56d1e1"},{"event":"cmd_output","timestamp":1607098240,"output":"5-598c-4c8a-909c-4478015e5c04, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_respo"},{"event":"cmd_output","timestamp":1607098240,"output":"nse/2(L55), \n\u001b[0m\u001b[22m\n16:10:40.928 [info] ppl_id: f4dccd51-3e11-4cc9-9e82-e57ef38b2cdb, type: Pp"},{"event":"cmd_output","timestamp":1607098240,"output":"lRequests, event: persisted definition for request with request_token: c45228dc-873d-423f-bc26-53603"},{"event":"cmd_output","timestamp":1607098240,"output":"839fe56, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098240,"output":"2m\n16:10:40.930 [info] ppl_id: d77c549d-64be-4f5a-b8e1-6a43360ffa87, type: Ppls, state: initializi"},{"event":"cmd_output","timestamp":1607098240,"output":"ng, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_respon"},{"event":"cmd_output","timestamp":1607098240,"output":"se/2(L124), \n\u001b[0m\u001b[22m\n16:10:40.933 [info] Persisted ppl_sub_init for pipeline with ppl_id: d77c5"},{"event":"cmd_output","timestamp":1607098240,"output":"49d-64be-4f5a-b8e1-6a43360ffa87: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<"},{"event":"cmd_output","timestamp":1607098240,"output":":loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 100, in_scheduling"},{"event":"cmd_output","timestamp":1607098240,"output":": false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:10:40.931439], pipeline_requests: #Ecto"},{"event":"cmd_output","timestamp":1607098240,"output":".Association.NotLoaded, ppl_id: \"d77c549d-64be-4f5a-b8"},{"event":"cmd_output","timestamp":1607098240,"output":"e1-6a43360ffa87\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_re"},{"event":"cmd_output","timestamp":1607098240,"output":"quest: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:40.931773]}\n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098240,"output":"10:40.944 [info] ppl_id: not_available, event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.R"},{"event":"cmd_output","timestamp":1607098240,"output":"egularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:40.944 [info] event: created, origin: Elixir.Pp"},{"event":"cmd_output","timestamp":1607098240,"output":"l.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:40.944 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098240,"output":" f4dccd51-3e11-4cc9-9e82-e57ef38b2cdb, type: PplBlocks, block_index: 0, state: initializing, event: "},{"event":"cmd_output","timestamp":1607098240,"output":"created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L10"},{"event":"cmd_output","timestamp":1607098240,"output":"5), \n\u001b[0m\u001b[22m\n16:10:40.944 [info] ppl_id: f4dccd51-3e11-4cc9-9e82-e57ef38b2cdb, type: PplBlocks,"},{"event":"cmd_output","timestamp":1607098240,"output":" block_index: 1, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubIn"},{"event":"cmd_output","timestamp":1607098240,"output":"its.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:40.948 [info] ppl_id: f4dccd51-"},{"event":"cmd_output","timestamp":1607098240,"output":"3e11-4cc9-9e82-e57ef38b2cdb, type: PplSubInits, state: done, result: passed, event: exit_scheduling,"},{"event":"cmd_output","timestamp":1607098240,"output":" recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:40.96"},{"event":"cmd_output","timestamp":1607098240,"output":"2 [info] ppl_id: 58e399be-604b-4e4e-9a6a-fcb8ceb5d731, type: PplSubInits, state: regular_init, even"},{"event":"cmd_output","timestamp":1607098240,"output":"t: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098240,"output":"m\u001b[22m\n16:10:40.971 [info] ppl_id: f4dccd51-3e11-4cc9-9e82-e57ef38b2cdb, type: PplBlocks, block_in"},{"event":"cmd_output","timestamp":1607098240,"output":"dex: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.lo"},{"event":"cmd_output","timestamp":1607098240,"output":"g_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:40.974 [info] ppl_id: d77c549d-64be-4f5a-b8e1-6a43360ffa8"},{"event":"cmd_output","timestamp":1607098240,"output":"7, type: PplRequests, event: persisted source_args for pipeline: d77c549d-64be-4f5a-b8e1-6a43360ffa8"},{"event":"cmd_output","timestamp":1607098240,"output":"7, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:"},{"event":"cmd_output","timestamp":1607098240,"output":"40.974 [info] ppl_id: f4dccd51-3e11-4cc9-9e82-e57ef38b2cdb, type: Ppls, state: pending, event: exit"},{"event":"cmd_output","timestamp":1607098240,"output":"_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098240,"output":"\n16:10:40.984 [info] ppl_id: d77c549d-64be-4f5a-b8e1-6a43360ffa87, type: PplSubInits, state: fetchi"},{"event":"cmd_output","timestamp":1607098240,"output":"ng, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90"},{"event":"cmd_output","timestamp":1607098240,"output":"), \n\u001b[0m\u001b[22m\n16:10:40.992 [info] ppl_id: f4dccd51-3e11-4cc9-9e82-e57ef38b2cdb, type: PplBlocks, "},{"event":"cmd_output","timestamp":1607098240,"output":"block_index: 1, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM"},{"event":"cmd_output","timestamp":1607098240,"output":".Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:40.997 [info] ppl_id: f4dccd51-3e11-4cc9-9e82-e57"},{"event":"cmd_output","timestamp":1607098240,"output":"ef38b2cdb, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loo"},{"event":"cmd_output","timestamp":1607098241,"output":"per.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:41.016 [info] ppl_id: f4dccd51-3e11-4cc9-9"},{"event":"cmd_output","timestamp":1607098241,"output":"e82-e57ef38b2cdb, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098241,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:41.027 [info] PplBlocks WaitingStat"},{"event":"cmd_output","timestamp":1607098241,"output":"e STM is scheduling block 0 from pipeline: \"f4dccd51-3e11-4cc9-9e82-e57ef38b2cdb\"\n\u001b[0m\u001b[22m\n16:10:"},{"event":"cmd_output","timestamp":1607098241,"output":"41.037 [info] block_id: bccb0d03-c1e5-4c9f-8a96-d2e66102a8e4, type: BlockRequests, event: persisted"},{"event":"cmd_output","timestamp":1607098241,"output":" block run request from ppl f4dccd51-3e11-4cc9-9e82-e57ef38b2cdb for block 0, origin: Elixir.Block.B"},{"event":"cmd_output","timestamp":1607098241,"output":"lockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:41.041 [info] b"},{"event":"cmd_output","timestamp":1607098241,"output":"lock_id: bccb0d03-c1e5-4c9f-8a96-d2e66102a8e4, type: Blocks, state: initializing, event: initializin"},{"event":"cmd_output","timestamp":1607098241,"output":"g, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098241,"output":":10:41.043 [info] ppl_id: 58e399be-604b-4e4e-9a6a-fcb8ceb5d731, type: PplRequests, event: persisted"},{"event":"cmd_output","timestamp":1607098241,"output":" definition for request with request_token: 41225f60-364b-11eb-9335-5254005464e2, origin: Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098241,"output":".PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:41.047 [info] Bl"},{"event":"cmd_output","timestamp":1607098241,"output":"ock 0 of pipeline with id: f4dccd51-3e11-4cc9-9e82-e57ef38b2cdb scheduled in block service with id: "},{"event":"cmd_output","timestamp":1607098241,"output":": \"bccb0d03-c1e5-4c9f-8a96-d2e66102a8e4\"\n\u001b[0m\u001b[22m\n16:10:41.053 [info] ppl_id: f4dccd51-3e11-4cc9"},{"event":"cmd_output","timestamp":1607098241,"output":"-9e82-e57ef38b2cdb, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recover"},{"event":"cmd_output","timestamp":1607098241,"output":"y_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:41.056 [info]"},{"event":"cmd_output","timestamp":1607098241,"output":" block_id: bccb0d03-c1e5-4c9f-8a96-d2e66102a8e4, type: BlockRequests, event: persisted build and su"},{"event":"cmd_output","timestamp":1607098241,"output":"b_ppl details for block_request: bccb0d03-c1e5-4c9f-8a96-d2e66102a8e4, origin: Elixir.Block.BlockReq"},{"event":"cmd_output","timestamp":1607098241,"output":"uests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:41.060 [info] ppl_id: d77c"},{"event":"cmd_output","timestamp":1607098241,"output":"549d-64be-4f5a-b8e1-6a43360ffa87, type: PplSubInits, state: regular_init, event: exit_scheduling, re"},{"event":"cmd_output","timestamp":1607098241,"output":"covery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:41.060 ["},{"event":"cmd_output","timestamp":1607098241,"output":"info] block_id: bccb0d03-c1e5-4c9f-8a96-d2e66102a8e4, type: Tasks, state: pending, event: created, "},{"event":"cmd_output","timestamp":1607098241,"output":"recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098241,"output":"[22m\n16:10:41.064 [info] ppl_id: not_available, event: created, origin: Elixir.Ppl.PplSubInits.STM"},{"event":"cmd_output","timestamp":1607098241,"output":"Handler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:41.064 [info] event: created, origin: "},{"event":"cmd_output","timestamp":1607098241,"output":"Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:41.064 [info]"},{"event":"cmd_output","timestamp":1607098241,"output":" ppl_id: 58e399be-604b-4e4e-9a6a-fcb8ceb5d731, type: PplBlocks, block_index: 0, state: initializing"},{"event":"cmd_output","timestamp":1607098241,"output":", event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_"},{"event":"cmd_output","timestamp":1607098241,"output":"ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:41.064 [info] ppl_id: 58e399be-604b-4e4e-9a6a-fcb8ceb5d731, type: P"},{"event":"cmd_output","timestamp":1607098241,"output":"plBlocks, block_index: 1, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098241,"output":".PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:41.068 [info] ppl_id: "},{"event":"cmd_output","timestamp":1607098241,"output":"58e399be-604b-4e4e-9a6a-fcb8ceb5d731, type: PplSubInits, state: done, result: passed, event: exit_sc"},{"event":"cmd_output","timestamp":1607098241,"output":"heduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098241,"output":":10:41.074 [info] block_id: bccb0d03-c1e5-4c9f-8a96-d2e66102a8e4, type: Blocks, state: running, eve"},{"event":"cmd_output","timestamp":1607098241,"output":"nt: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b["},{"event":"cmd_output","timestamp":1607098241,"output":"0m\u001b[22m\n16:10:41.083 [info] ppl_id: 58e399be-604b-4e4e-9a6a-fcb8ceb5d731, type: Ppls, state: pendi"},{"event":"cmd_output","timestamp":1607098241,"output":"ng, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90"},{"event":"cmd_output","timestamp":1607098241,"output":"), \n\u001b[0m\u001b[22m\n16:10:41.095 [info] ppl_id: 58e399be-604b-4e4e-9a6a-fcb8ceb5d731, type: PplBlocks, "},{"event":"cmd_output","timestamp":1607098241,"output":"block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM"},{"event":"cmd_output","timestamp":1607098241,"output":".Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:41.123 [info] ppl_id: 58e399be-604b-4e4e-9a6a-fcb"},{"event":"cmd_output","timestamp":1607098241,"output":"8ceb5d731, type: PplBlocks, block_index: 1, state: waiting, event: exit_scheduling, recovery_count: "},{"event":"cmd_output","timestamp":1607098241,"output":"0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:41.123 [info] block_i"},{"event":"cmd_output","timestamp":1607098241,"output":"d: bccb0d03-c1e5-4c9f-8a96-d2e66102a8e4, type: Tasks, state: running, event: exit_scheduling, recove"},{"event":"cmd_output","timestamp":1607098241,"output":"ry_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:41.130 [info"},{"event":"cmd_output","timestamp":1607098241,"output":"] ppl_id: 58e399be-604b-4e4e-9a6a-fcb8ceb5d731, type: Ppls, state: queuing, event: exit_scheduling,"},{"event":"cmd_output","timestamp":1607098241,"output":" recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:41.14"},{"event":"cmd_output","timestamp":1607098241,"output":"3 [info] ppl_id: 58e399be-604b-4e4e-9a6a-fcb8ceb5d731, type: Ppls, state: running, event: exit_sche"},{"event":"cmd_output","timestamp":1607098241,"output":"duling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098241,"output":"0:41.153 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"58e399be-604b-4e4e"},{"event":"cmd_output","timestamp":1607098241,"output":"-9a6a-fcb8ceb5d731\"\n\u001b[0m\u001b[22m\n16:10:41.162 [info] block_id: dae3c5e8-9bed-447d-9383-2e2a8bef0e28,"},{"event":"cmd_output","timestamp":1607098241,"output":" type: BlockRequests, event: persisted block run request from ppl 58e399be-604b-4e4e-9a6a-fcb8ceb5d7"},{"event":"cmd_output","timestamp":1607098241,"output":"31 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35"},{"event":"cmd_output","timestamp":1607098241,"output":"), \n\u001b[0m\u001b[22m\n16:10:41.163 [info] ppl_id: d77c549d-64be-4f5a-b8e1-6a43360ffa87, type: PplRequests"},{"event":"cmd_output","timestamp":1607098241,"output":", event: persisted definition for request with request_token: f56d1e15-598c-4c8a-909c-4478015e5c04, "},{"event":"cmd_output","timestamp":1607098241,"output":"origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10"},{"event":"cmd_output","timestamp":1607098241,"output":":41.167 [info] block_id: dae3c5e8-9bed-447d-9383-2e2a8bef0e28, type: Blocks, state: initializing, e"},{"event":"cmd_output","timestamp":1607098241,"output":"vent: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43)"},{"event":"cmd_output","timestamp":1607098241,"output":", \n\u001b[0m\u001b[22m\n16:10:41.172 [info] Block 0 of pipeline with id: 58e399be-604b-4e4e-9a6a-fcb8ceb5d73"},{"event":"cmd_output","timestamp":1607098241,"output":"1 scheduled in block service with id: : \"dae3c5e8-9bed-447d-9383-2e2a8bef0e28\"\n\u001b[0m\u001b[22m\n16:10:41."},{"event":"cmd_output","timestamp":1607098241,"output":"172 [info] ppl_id: not_available, event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.Regular"},{"event":"cmd_output","timestamp":1607098241,"output":"InitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:41.172 [info] event: created, origin: Elixir.Ppl.PplS"},{"event":"cmd_output","timestamp":1607098241,"output":"ubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:41.172 [info] ppl_id: d77c5"},{"event":"cmd_output","timestamp":1607098241,"output":"49d-64be-4f5a-b8e1-6a43360ffa87, type: PplBlocks, block_index: 0, state: initializing, event: create"},{"event":"cmd_output","timestamp":1607098241,"output":"d, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n"},{"event":"cmd_output","timestamp":1607098241,"output":"\u001b[0m\u001b[22m\n16:10:41.172 [info] ppl_id: d77c549d-64be-4f5a-b8e1-6a43360ffa87, type: PplBlocks, block"},{"event":"cmd_output","timestamp":1607098241,"output":"_index: 1, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.ST"},{"event":"cmd_output","timestamp":1607098241,"output":"MHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:41.177 [info] block_id: dae3c5e8-9bed"},{"event":"cmd_output","timestamp":1607098241,"output":"-447d-9383-2e2a8bef0e28, type: BlockRequests, event: persisted build and sub_ppl details for block_r"},{"event":"cmd_output","timestamp":1607098241,"output":"equest: dae3c5e8-9bed-447d-9383-2e2a8bef0e28, origin: Elixir.Block.BlockRequests.Model.BlockRequests"},{"event":"cmd_output","timestamp":1607098241,"output":"Queries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:41.177 [info] ppl_id: d77c549d-64be-4f5a-b8e1-6a433"},{"event":"cmd_output","timestamp":1607098241,"output":"60ffa87, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098241,"output":"origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:41.180 [info] ppl_id: 58"},{"event":"cmd_output","timestamp":1607098241,"output":"e399be-604b-4e4e-9a6a-fcb8ceb5d731, type: PplBlocks, block_index: 0, state: running, event: exit_sch"},{"event":"cmd_output","timestamp":1607098241,"output":"eduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098241,"output":"10:41.186 [info] block_id: dae3c5e8-9bed-447d-9383-2e2a8bef0e28, type: Tasks, state: pending, event"},{"event":"cmd_output","timestamp":1607098241,"output":": created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L16"},{"event":"cmd_output","timestamp":1607098241,"output":"7), \n\u001b[0m\u001b[22m\n16:10:41.191 [info] block_id: dae3c5e8-9bed-447d-9383-2e2a8bef0e28, type: Blocks, "},{"event":"cmd_output","timestamp":1607098241,"output":"state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_"},{"event":"cmd_output","timestamp":1607098241,"output":"change/1(L90), \n\u001b[0m\u001b[22m\n16:10:41.208 [info] ppl_id: d77c549d-64be-4f5a-b8e1-6a43360ffa87, type:"},{"event":"cmd_output","timestamp":1607098241,"output":" PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098241,"output":"r.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:41.208 [info] ppl_id: d77c549d-64be-4"},{"event":"cmd_output","timestamp":1607098241,"output":"f5a-b8e1-6a43360ffa87, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098241,"output":": Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:41.212 [info] block_id: bccb0d"},{"event":"cmd_output","timestamp":1607098241,"output":"03-c1e5-4c9f-8a96-d2e66102a8e4, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098241,"output":" origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:41.225 [info] block_id:"},{"event":"cmd_output","timestamp":1607098241,"output":" bccb0d03-c1e5-4c9f-8a96-d2e66102a8e4, type: Blocks, state: done, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098241,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:41.231 [info] p"},{"event":"cmd_output","timestamp":1607098241,"output":"pl_id: d77c549d-64be-4f5a-b8e1-6a43360ffa87, type: PplBlocks, block_index: 1, state: waiting, event:"},{"event":"cmd_output","timestamp":1607098241,"output":" exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098241,"output":"[22m\n16:10:41.250 [info] block_id: dae3c5e8-9bed-447d-9383-2e2a8bef0e28, type: Tasks, state: runni"},{"event":"cmd_output","timestamp":1607098241,"output":"ng, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90"},{"event":"cmd_output","timestamp":1607098241,"output":"), \n\u001b[0m\u001b[22m\n16:10:41.254 [info] ppl_id: f4dccd51-3e11-4cc9-9e82-e57ef38b2cdb, block_id: bccb0d0"},{"event":"cmd_output","timestamp":1607098241,"output":"3-c1e5-4c9f-8a96-d2e66102a8e4, type: PplBlocks, block_index: 0, state: done, result: failed, event: "},{"event":"cmd_output","timestamp":1607098241,"output":"exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098241,"output":"22m\n16:10:41.258 [info] ppl_id: d77c549d-64be-4f5a-b8e1-6a43360ffa87, type: Ppls, state: queuing, "},{"event":"cmd_output","timestamp":1607098241,"output":"event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \r"},{"event":"cmd_output","timestamp":1607098241,"output":"\n\u001b[0m\u001b[22m\n16:10:41.269 [info] PplBlocks WaitingState STM is scheduling block 1 from pipeline: \"f4"},{"event":"cmd_output","timestamp":1607098241,"output":"dccd51-3e11-4cc9-9e82-e57ef38b2cdb\"\n\u001b[0m\u001b[22m\n16:10:41.277 [info] ppl_id: f4dccd51-3e11-4cc9-9e82"},{"event":"cmd_output","timestamp":1607098241,"output":"-e57ef38b2cdb, type: PplBlocks, block_index: 1, state: done, result: canceled, event: exit_schedulin"},{"event":"cmd_output","timestamp":1607098241,"output":"g, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:41."},{"event":"cmd_output","timestamp":1607098241,"output":"286 [info] ppl_id: f4dccd51-3e11-4cc9-9e82-e57ef38b2cdb, type: Ppls, state: done, result: failed, e"},{"event":"cmd_output","timestamp":1607098241,"output":"vent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n"},{"event":"cmd_output","timestamp":1607098241,"output":"\u001b[0m\u001b[22m\n16:10:41.297 [info] ppl_id: d77c549d-64be-4f5a-b8e1-6a43360ffa87, type: Ppls, state: run"},{"event":"cmd_output","timestamp":1607098241,"output":"ning, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098241,"output":"90), \n\u001b[0m\u001b[22m\n16:10:41.305 [info] PplBlocks WaitingState STM is scheduling block 0 from pipelin"},{"event":"cmd_output","timestamp":1607098241,"output":"e: \"d77c549d-64be-4f5a-b8e1-6a43360ffa87\"\n\u001b[0m\u001b[22m\n16:10:41.313 [info] block_id: a1bbe151-e655-4"},{"event":"cmd_output","timestamp":1607098241,"output":"303-b502-80af5ce73577, type: BlockRequests, event: persisted block run request from ppl d77c549d-64b"},{"event":"cmd_output","timestamp":1607098241,"output":"e-4f5a-b8e1-6a43360ffa87 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries."},{"event":"cmd_output","timestamp":1607098241,"output":"process_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:41.315 [info] block_id: a1bbe151-e655-4303-b502-80af5ce"},{"event":"cmd_output","timestamp":1607098241,"output":"73577, type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Blo"},{"event":"cmd_output","timestamp":1607098241,"output":"ck.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:41.318 [info] Block 0 of pipeline w"},{"event":"cmd_output","timestamp":1607098241,"output":"ith id: d77c549d-64be-4f5a-b8e1-6a43360ffa87 scheduled in block service with id: : \"a1bbe151-e655-43"},{"event":"cmd_output","timestamp":1607098241,"output":"03-b502-80af5ce73577\"\n\u001b[0m\u001b[22m\n16:10:41.321 [info] ppl_id: d77c549d-64be-4f5a-b8e1-6a43360ffa87,"},{"event":"cmd_output","timestamp":1607098241,"output":" type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098241,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:41.326 [info] block_id: a1bbe15"},{"event":"cmd_output","timestamp":1607098241,"output":"1-e655-4303-b502-80af5ce73577, type: BlockRequests, event: persisted build and sub_ppl details for b"},{"event":"cmd_output","timestamp":1607098241,"output":"lock_request: a1bbe151-e655-4303-b502-80af5ce73577, origin: Elixir.Block.BlockRequests.Model.BlockRe"},{"event":"cmd_output","timestamp":1607098241,"output":"questsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:41.331 [info] block_id: a1bbe151-e655-4303-b5"},{"event":"cmd_output","timestamp":1607098241,"output":"02-80af5ce73577, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Bloc"},{"event":"cmd_output","timestamp":1607098241,"output":"k.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:41.335 [info] block_id: a"},{"event":"cmd_output","timestamp":1607098241,"output":"1bbe151-e655-4303-b502-80af5ce73577, type: Blocks, state: running, event: exit_scheduling, recovery_"},{"event":"cmd_output","timestamp":1607098241,"output":"count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:41.338 [info] "},{"event":"cmd_output","timestamp":1607098241,"output":"block_id: dae3c5e8-9bed-447d-9383-2e2a8bef0e28, type: Tasks, state: done, event: exit_scheduling, re"},{"event":"cmd_output","timestamp":1607098241,"output":"covery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:41.349 ["},{"event":"cmd_output","timestamp":1607098241,"output":"info] block_id: dae3c5e8-9bed-447d-9383-2e2a8bef0e28, type: Blocks, state: done, event: exit_schedu"},{"event":"cmd_output","timestamp":1607098241,"output":"ling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:"},{"event":"cmd_output","timestamp":1607098241,"output":"41.369 [info] block_id: a1bbe151-e655-4303-b502-80af5ce73577, type: Tasks, state: running, event: e"},{"event":"cmd_output","timestamp":1607098241,"output":"xit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098241,"output":"2m\n16:10:41.370 [info] ppl_id: 58e399be-604b-4e4e-9a6a-fcb8ceb5d731, block_id: dae3c5e8-9bed-447d-"},{"event":"cmd_output","timestamp":1607098241,"output":"9383-2e2a8bef0e28, type: PplBlocks, block_index: 0, state: done, result: failed, event: exit_schedul"},{"event":"cmd_output","timestamp":1607098241,"output":"ing, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:4"},{"event":"cmd_output","timestamp":1607098241,"output":"1.381 [info] PplBlocks WaitingState STM is scheduling block 1 from pipeline: \"58e399be-604b-4e4e-9a"},{"event":"cmd_output","timestamp":1607098241,"output":"6a-fcb8ceb5d731\"\n\u001b[0m\u001b[22m\n16:10:41.389 [info] ppl_id: 58e399be-604b-4e4e-9a6a-fcb8ceb5d731, type"},{"event":"cmd_output","timestamp":1607098241,"output":": PplBlocks, block_index: 1, state: done, result: canceled, event: exit_scheduling, recovery_count: "},{"event":"cmd_output","timestamp":1607098241,"output":"0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:41.400 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098241,"output":" 58e399be-604b-4e4e-9a6a-fcb8ceb5d731, type: Ppls, state: done, result: failed, event: exit_scheduli"},{"event":"cmd_output","timestamp":1607098241,"output":"ng, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:41"},{"event":"cmd_output","timestamp":1607098241,"output":".452 [info] block_id: a1bbe151-e655-4303-b502-80af5ce73577, type: Tasks, state: done, event: exit_s"},{"event":"cmd_output","timestamp":1607098241,"output":"cheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098241,"output":"6:10:41.460 [info] block_id: a1bbe151-e655-4303-b502-80af5ce73577, type: Blocks, state: done, event"},{"event":"cmd_output","timestamp":1607098241,"output":": exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098241,"output":"\u001b[22m\n16:10:41.470 [info] ppl_id: d77c549d-64be-4f5a-b8e1-6a43360ffa87, block_id: a1bbe151-e655-43"},{"event":"cmd_output","timestamp":1607098241,"output":"03-b502-80af5ce73577, type: PplBlocks, block_index: 0, state: done, result: failed, event: exit_sche"},{"event":"cmd_output","timestamp":1607098241,"output":"duling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098241,"output":"0:41.484 [info] PplBlocks WaitingState STM is scheduling block 1 from pipeline: \"d77c549d-64be-4f5a"},{"event":"cmd_output","timestamp":1607098241,"output":"-b8e1-6a43360ffa87\"\n\u001b[0m\u001b[22m\n16:10:41.484 [info] Request: 'partial_rebuild', request: %{ppl_id: "},{"event":"cmd_output","timestamp":1607098241,"output":"\"58e399be-604b-4e4e-9a6a-fcb8ceb5d731\", request_token: \"28e21738-7d59-49c7-abca-57acf11ddb97\", user_"},{"event":"cmd_output","timestamp":1607098241,"output":"id: \"\"}\n\u001b[0m\u001b[22m\n16:10:41.488 [info] ppl_id: b5560a54-2151-42c6-97af-f9955b5d1fcd, type: PplRequ"},{"event":"cmd_output","timestamp":1607098241,"output":"ests, event: persisted schedule request with request_token: 28e21738-7d59-49c7-abca-57acf11ddb97, or"},{"event":"cmd_output","timestamp":1607098241,"output":"igin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:41"},{"event":"cmd_output","timestamp":1607098241,"output":".494 [info] ppl_id: b5560a54-2151-42c6-97af-f9955b5d1fcd, type: Ppls, state: initializing, event: i"},{"event":"cmd_output","timestamp":1607098241,"output":"nitializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), "},{"event":"cmd_output","timestamp":1607098241,"output":"\n\u001b[0m\u001b[22m\n16:10:41.498 [info] ppl_id: d77c549d-64be-4f5a-b8e1-6a43360ffa87, type: PplBlocks, blo"},{"event":"cmd_output","timestamp":1607098241,"output":"ck_index: 1, state: done, result: canceled, event: exit_scheduling, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098241,"output":"r.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:41.500 [info] Persisted ppl_sub_init "},{"event":"cmd_output","timestamp":1607098241,"output":"for pipeline with ppl_id: b5560a54-2151-42c6-97af-f9955b5d1fcd: %Ppl.PplSubInits.Model.PplSubInits{_"},{"event":"cmd_output","timestamp":1607098241,"output":"_meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_descripti"},{"event":"cmd_output","timestamp":1607098241,"output":"on: nil, id: 101, in_scheduling: false, init_type: \"rebuild\", inserted_at: ~N[2020-12-04 16:10:41.49"},{"event":"cmd_output","timestamp":1607098241,"output":"8686], pipeline_requests: #Ecto.Association.NotLoaded,"},{"event":"cmd_output","timestamp":1607098241,"output":" ppl_id: \"b5560a54-2151-42c6-97af-f9955b5d1fcd\", recovery_count: 0, result: nil, result_reason: nil,"},{"event":"cmd_output","timestamp":1607098241,"output":" state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16"},{"event":"cmd_output","timestamp":1607098241,"output":":10:41.498693]}\n\u001b[0m\u001b[22m\n16:10:41.512 [info] ppl_id: d77c549d-64be-4f5a-b8e1-6a43360ffa87, type:"},{"event":"cmd_output","timestamp":1607098241,"output":" Ppls, state: done, result: failed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper"},{"event":"cmd_output","timestamp":1607098241,"output":".STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:41.519 [info] ppl_id: b5560a54-2151-42c6-97af"},{"event":"cmd_output","timestamp":1607098241,"output":"-f9955b5d1fcd, type: PplRequests, event: persisted source_args for pipeline: b5560a54-2151-42c6-97af"},{"event":"cmd_output","timestamp":1607098241,"output":"-f9955b5d1fcd, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098241,"output":"[22m\n16:10:41.523 [info] ppl_id: b5560a54-2151-42c6-97af-f9955b5d1fcd, type: PplSubInits, state: f"},{"event":"cmd_output","timestamp":1607098241,"output":"etching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/"},{"event":"cmd_output","timestamp":1607098241,"output":"1(L90), \n\u001b[0m\u001b[22m\n16:10:41.547 [info] ppl_id: b5560a54-2151-42c6-97af-f9955b5d1fcd, type: PplSub"},{"event":"cmd_output","timestamp":1607098241,"output":"Inits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Imp"},{"event":"cmd_output","timestamp":1607098241,"output":"l.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:41.578 [info] ppl_id: b5560a54-2151-42c6-97af-f9955b5"},{"event":"cmd_output","timestamp":1607098241,"output":"d1fcd, type: PplRequests, event: persisted definition for request with request_token: 28e21738-7d59-"},{"event":"cmd_output","timestamp":1607098241,"output":"49c7-abca-57acf11ddb97, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3("},{"event":"cmd_output","timestamp":1607098241,"output":"L76), \n\u001b[0m\u001b[22m\n16:10:41.586 [info] ppl_id: not_available, event: created, origin: Elixir.Ppl.Pp"},{"event":"cmd_output","timestamp":1607098241,"output":"lSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:41.586 [info] event: crea"},{"event":"cmd_output","timestamp":1607098241,"output":"ted, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:"},{"event":"cmd_output","timestamp":1607098241,"output":"41.586 [info] ppl_id: b5560a54-2151-42c6-97af-f9955b5d1fcd, type: PplBlocks, block_index: 0, state:"},{"event":"cmd_output","timestamp":1607098241,"output":" initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularI"},{"event":"cmd_output","timestamp":1607098241,"output":"nitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:41.586 [info] ppl_id: b5560a54-2151-42c6-97af-f9955b5d"},{"event":"cmd_output","timestamp":1607098241,"output":"1fcd, type: PplBlocks, block_index: 1, state: initializing, event: created, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098241,"output":"n: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:41.589 [in"},{"event":"cmd_output","timestamp":1607098241,"output":"fo] ppl_id: b5560a54-2151-42c6-97af-f9955b5d1fcd, type: PplSubInits, state: done, result: passed, e"},{"event":"cmd_output","timestamp":1607098241,"output":"vent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n"},{"event":"cmd_output","timestamp":1607098241,"output":"\u001b[0m\u001b[22m\n16:10:41.598 [info] ppl_id: b5560a54-2151-42c6-97af-f9955b5d1fcd, type: Ppls, state: pen"},{"event":"cmd_output","timestamp":1607098241,"output":"ding, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098241,"output":"90), \n\u001b[0m\u001b[22m\n16:10:41.600 [info] ppl_id: b5560a54-2151-42c6-97af-f9955b5d1fcd, type: PplBlocks"},{"event":"cmd_output","timestamp":1607098241,"output":", block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.S"},{"event":"cmd_output","timestamp":1607098241,"output":"TM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:41.609 [info] ppl_id: b5560a54-2151-42c6-97af-f"},{"event":"cmd_output","timestamp":1607098241,"output":"9955b5d1fcd, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098241,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:41.611 [info] ppl_id: b5560a54-2151-42c6"},{"event":"cmd_output","timestamp":1607098241,"output":"-97af-f9955b5d1fcd, type: PplBlocks, block_index: 1, state: waiting, event: exit_scheduling, recover"},{"event":"cmd_output","timestamp":1607098241,"output":"y_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:41.617 [info]"},{"event":"cmd_output","timestamp":1607098241,"output":" Request: 'partial_rebuild', request: %{ppl_id: \"d77c549d-64be-4f5a-b8e1-6a43360ffa87\", request_tok"},{"event":"cmd_output","timestamp":1607098241,"output":"en: \"c2201a30-fdc4-410b-b038-6f209f249666\", user_id: \"\"}\n\u001b[0m\u001b[22m\n16:10:41.620 [info] ppl_id: 82"},{"event":"cmd_output","timestamp":1607098241,"output":"b51ba2-277e-42fe-a100-ec86252c6db8, type: PplRequests, event: persisted schedule request with reques"},{"event":"cmd_output","timestamp":1607098241,"output":"t_token: c2201a30-fdc4-410b-b038-6f209f249666, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueri"},{"event":"cmd_output","timestamp":1607098241,"output":"es.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:41.621 [info] ppl_id: b5560a54-2151-42c6-97af-f9955b"},{"event":"cmd_output","timestamp":1607098241,"output":"5d1fcd, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper"},{"event":"cmd_output","timestamp":1607098241,"output":".STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:41.625 [info] ppl_id: 82b51ba2-277e-42fe-a100"},{"event":"cmd_output","timestamp":1607098241,"output":"-ec86252c6db8, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098241,"output":"ir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:41.628 [info] Persisted "},{"event":"cmd_output","timestamp":1607098241,"output":"ppl_sub_init for pipeline with ppl_id: 82b51ba2-277e-42fe-a100-ec86252c6db8: %Ppl.PplSubInits.Model."},{"event":"cmd_output","timestamp":1607098241,"output":"PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, er"},{"event":"cmd_output","timestamp":1607098241,"output":"ror_description: nil, id: 102, in_scheduling: false, init_type: \"rebuild\", inserted_at: ~N[2020-12-0"},{"event":"cmd_output","timestamp":1607098241,"output":"4 16:10:41.626477], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"82b51ba2-277e-42fe-a100-ec86252c6db8\", recovery_count: 0, result: nil, result"},{"event":"cmd_output","timestamp":1607098241,"output":"_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N["},{"event":"cmd_output","timestamp":1607098241,"output":"2020-12-04 16:10:41.626486]}\n\u001b[0m\u001b[22m\n16:10:41.633 [info] PplBlocks WaitingState STM is scheduli"},{"event":"cmd_output","timestamp":1607098241,"output":"ng block 0 from pipeline: \"b5560a54-2151-42c6-97af-f9955b5d1fcd\"\n\u001b[0m\u001b[22m\n16:10:41.643 [info] bl"},{"event":"cmd_output","timestamp":1607098241,"output":"ock_id: cd2ebfdb-c3a8-4015-94cd-f439273fb2cd, type: BlockRequests, event: persisted block run reques"},{"event":"cmd_output","timestamp":1607098241,"output":"t from ppl b5560a54-2151-42c6-97af-f9955b5d1fcd for block 0, origin: Elixir.Block.BlockRequests.Mode"},{"event":"cmd_output","timestamp":1607098241,"output":"l.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:41.649 [info] ppl_id: 82b51ba2-2"},{"event":"cmd_output","timestamp":1607098241,"output":"77e-42fe-a100-ec86252c6db8, type: PplRequests, event: persisted source_args for pipeline: 82b51ba2-2"},{"event":"cmd_output","timestamp":1607098241,"output":"77e-42fe-a100-ec86252c6db8, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2("},{"event":"cmd_output","timestamp":1607098241,"output":"L89), \n\u001b[0m\u001b[22m\n16:10:41.651 [info] block_id: cd2ebfdb-c3a8-4015-94cd-f439273fb2cd, type: Blocks"},{"event":"cmd_output","timestamp":1607098241,"output":", state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.Blo"},{"event":"cmd_output","timestamp":1607098241,"output":"cksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:41.651 [info] Request: 'run: %{\"branch_id\" => \"d900af1"},{"event":"cmd_output","timestamp":1607098241,"output":"7-206f-4cfb-9719-6dbc22ef8cdb\", \"branch_name\" => \"master\", \"client_id\" => \"d022ea23-0d14-4401-abd1-c"},{"event":"cmd_output","timestamp":1607098241,"output":"008028f6130\", \"commit_sha\" => \"75891a4469\", \"definition_file\" => \"\", \"hook_id\" => \"41a02558-364b-11e"},{"event":"cmd_output","timestamp":1607098241,"output":"b-bd29-5254005464e2\", \"label\" => \"master\", \"organization_id\" => \"9218dab2-785b-4989-8702-1fd57037c0a"},{"event":"cmd_output","timestamp":1607098241,"output":"7\", \"owner\" => \"rt\", \"project_id\" => \"wf-number-test-1\", \"repo_name\" => \"20_workflow_builder\", \"requ"},{"event":"cmd_output","timestamp":1607098241,"output":"est_token\" => \"41a00c80-364b-11eb-b7ac-5254005464e2\", \"requester_id\" => \"84265683-4fb4-489d-9da0-577"},{"event":"cmd_output","timestamp":1607098241,"output":"731365977\", \"service\" => \"local\", \"snapshot_id\" => \"\", \"suppressed_attributes\" => [\"access_token\", \""},{"event":"cmd_output","timestamp":1607098241,"output":"client_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"0dab33d3-ce4f-4b99-a39c-41e25b664245\"}\n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098241,"output":"[22m\n16:10:41.654 [info] ppl_id: 82b51ba2-277e-42fe-a100-ec86252c6db8, type: PplSubInits, state: f"},{"event":"cmd_output","timestamp":1607098241,"output":"etching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/"},{"event":"cmd_output","timestamp":1607098241,"output":"1(L90), \n\u001b[0m\u001b[22m\n16:10:41.659 [info] Block 0 of pipeline with id: b5560a54-2151-42c6-97af-f9955"},{"event":"cmd_output","timestamp":1607098241,"output":"b5d1fcd scheduled in block service with id: : \"cd2ebfdb-c3a8-4015-94cd-f439273fb2cd\"\n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098241,"output":"10:41.663 [info] block_id: cd2ebfdb-c3a8-4015-94cd-f439273fb2cd, type: BlockRequests, event: persis"},{"event":"cmd_output","timestamp":1607098241,"output":"ted build and sub_ppl details for block_request: cd2ebfdb-c3a8-4015-94cd-f439273fb2cd, origin: Elixi"},{"event":"cmd_output","timestamp":1607098241,"output":"r.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:41.668 [inf"},{"event":"cmd_output","timestamp":1607098241,"output":"o] ppl_id: b5560a54-2151-42c6-97af-f9955b5d1fcd, type: PplBlocks, block_index: 0, state: running, e"},{"event":"cmd_output","timestamp":1607098241,"output":"vent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n"},{"event":"cmd_output","timestamp":1607098241,"output":"\u001b[0m\u001b[22m\n16:10:41.671 [info] block_id: cd2ebfdb-c3a8-4015-94cd-f439273fb2cd, type: Tasks, state: "},{"event":"cmd_output","timestamp":1607098241,"output":"pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState"},{"event":"cmd_output","timestamp":1607098241,"output":".all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:41.680 [info] block_id: cd2ebfdb-c3a8-4015-94cd-f439273fb2cd, "},{"event":"cmd_output","timestamp":1607098241,"output":"type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.I"},{"event":"cmd_output","timestamp":1607098241,"output":"mpl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:41.693 [info] ppl_id: 82b51ba2-277e-42fe-a100-ec862"},{"event":"cmd_output","timestamp":1607098241,"output":"52c6db8, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098241,"output":"Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:41.716 [info] block_id: cd2ebfdb"},{"event":"cmd_output","timestamp":1607098241,"output":"-c3a8-4015-94cd-f439273fb2cd, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0"},{"event":"cmd_output","timestamp":1607098241,"output":", origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:41.756 [info] ppl_id: "},{"event":"cmd_output","timestamp":1607098241,"output":"22252918-f59a-4513-bc44-8adfea93d44b, type: PplRequests, event: persisted schedule request with requ"},{"event":"cmd_output","timestamp":1607098241,"output":"est_token: 41a00c80-364b-11eb-b7ac-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQue"},{"event":"cmd_output","timestamp":1607098241,"output":"ries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:41.760 [info] ppl_id: 22252918-f59a-4513-bc44-8adf"},{"event":"cmd_output","timestamp":1607098241,"output":"ea93d44b, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Pp"},{"event":"cmd_output","timestamp":1607098241,"output":"l.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:41.767 [info] ppl_id: 82b51ba"},{"event":"cmd_output","timestamp":1607098241,"output":"2-277e-42fe-a100-ec86252c6db8, type: PplRequests, event: persisted definition for request with reque"},{"event":"cmd_output","timestamp":1607098241,"output":"st_token: c2201a30-fdc4-410b-b038-6f209f249666, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQuer"},{"event":"cmd_output","timestamp":1607098241,"output":"ies.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:41.768 [info] Project wf-number-test-1 and branch "},{"event":"cmd_output","timestamp":1607098241,"output":"masterlatest_wf details updated: \"wf_id: 0dab33d3-ce4f-4b99-a39c-41e25b664245, wf_number: 5\"\n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098241,"output":"22m\n16:10:41.770 [info] Persisted ppl_sub_init for pipeline with ppl_id: 22252918-f59a-4513-bc44-8"},{"event":"cmd_output","timestamp":1607098241,"output":"adfea93d44b: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_s"},{"event":"cmd_output","timestamp":1607098241,"output":"ub_inits\">, compile_task_id: nil, error_description: nil, id: 103, in_scheduling: false, init_type: "},{"event":"cmd_output","timestamp":1607098241,"output":"\"regular\", inserted_at: ~N[2020-12-04 16:10:41.768220], pipeline_requests: #Ecto.Association.NotLoad"},{"event":"cmd_output","timestamp":1607098241,"output":"ed, ppl_id: \"22252918-f59a-4513-bc44-8adfea93d44b\", re"},{"event":"cmd_output","timestamp":1607098241,"output":"covery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminat"},{"event":"cmd_output","timestamp":1607098241,"output":"e_request_desc: nil, updated_at: ~N[2020-12-04 16:10:41.768231]}\n\u001b[0m\u001b[22m\n16:10:41.779 [info] bl"},{"event":"cmd_output","timestamp":1607098241,"output":"ock_id: cd2ebfdb-c3a8-4015-94cd-f439273fb2cd, type: Tasks, state: done, event: exit_scheduling, reco"},{"event":"cmd_output","timestamp":1607098241,"output":"very_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:41.785 [in"},{"event":"cmd_output","timestamp":1607098241,"output":"fo] ppl_id: not_available, event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitSta"},{"event":"cmd_output","timestamp":1607098241,"output":"te.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:41.785 [info] event: created, origin: Elixir.Ppl.PplSubInits"},{"event":"cmd_output","timestamp":1607098241,"output":".STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:41.785 [info] ppl_id: 82b51ba2-277"},{"event":"cmd_output","timestamp":1607098241,"output":"e-42fe-a100-ec86252c6db8, type: PplBlocks, block_index: 0, state: initializing, event: created, reco"},{"event":"cmd_output","timestamp":1607098241,"output":"very_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098241,"output":"2m\n16:10:41.785 [info] ppl_id: 82b51ba2-277e-42fe-a100-ec86252c6db8, type: PplBlocks, block_index:"},{"event":"cmd_output","timestamp":1607098241,"output":" 1, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandle"},{"event":"cmd_output","timestamp":1607098241,"output":"r.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:41.790 [info] ppl_id: 82b51ba2-277e-42fe-a10"},{"event":"cmd_output","timestamp":1607098241,"output":"0-ec86252c6db8, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_cou"},{"event":"cmd_output","timestamp":1607098241,"output":"nt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:41.796 [info] blo"},{"event":"cmd_output","timestamp":1607098241,"output":"ck_id: cd2ebfdb-c3a8-4015-94cd-f439273fb2cd, type: Blocks, state: done, event: exit_scheduling, reco"},{"event":"cmd_output","timestamp":1607098241,"output":"very_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:41.800 [in"},{"event":"cmd_output","timestamp":1607098241,"output":"fo] ppl_id: 22252918-f59a-4513-bc44-8adfea93d44b, type: PplRequests, event: persisted source_args f"},{"event":"cmd_output","timestamp":1607098241,"output":"or pipeline: 22252918-f59a-4513-bc44-8adfea93d44b, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQ"},{"event":"cmd_output","timestamp":1607098241,"output":"ueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:41.803 [info] ppl_id: 22252918-f59a-4513-bc44-8adfe"},{"event":"cmd_output","timestamp":1607098241,"output":"a93d44b, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098241,"output":"ir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:41.807 [info] Request: 'run: %{\"auto"},{"event":"cmd_output","timestamp":1607098241,"output":"_promoted\" => false, \"branch_id\" => \"d900af17-206f-4cfb-9719-6dbc22ef8cdb\", \"branch_name\" => \"master"},{"event":"cmd_output","timestamp":1607098241,"output":"\", \"client_id\" => \"d022ea23-0d14-4401-abd1-c008028f6130\", \"commit_sha\" => \"75891a4469\", \"definition_"},{"event":"cmd_output","timestamp":1607098241,"output":"file\" => \"\", \"env_vars\" => [], \"extension_of\" => \"22252918-f59a-4513-bc44-8adfea93d44b\", \"file_name\""},{"event":"cmd_output","timestamp":1607098241,"output":" => \"/foo/bar/test.yml\", \"hook_id\" => \"41a02558-364b-11eb-bd29-5254005464e2\", \"label\" => \"master\", \""},{"event":"cmd_output","timestamp":1607098241,"output":"organization_id\" => \"9218dab2-785b-4989-8702-1fd57037c0a7\", \"owner\" => \"rt\", \"prev_ppl_artefact_ids\""},{"event":"cmd_output","timestamp":1607098241,"output":" => [\"22252918-f59a-4513-bc44-8adfea93d44b\"], \"project_id\" => \"wf-number-test-1\", \"promoter_id\" => \""},{"event":"cmd_output","timestamp":1607098241,"output":"\", \"repo_name\" => \"20_workflow_builder\", \"request_token\" => \"55248294-7f72-4390-a3f3-9307b13fc8a2\", "},{"event":"cmd_output","timestamp":1607098241,"output":"\"requester_id\" => \"84265683-4fb4-489d-9da0-577731365977\", \"service\" => \"local\", \"snapshot_id\" => \"\","},{"event":"cmd_output","timestamp":1607098241,"output":" \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => "},{"event":"cmd_output","timestamp":1607098241,"output":"\"0dab33d3-ce4f-4b99-a39c-41e25b664245\", \"wf_number\" => 5, \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098241,"output":"\n16:10:41.812 [info] ppl_id: 3bc6aa1e-d7f2-479d-97b1-0d7b6357d051, type: PplRequests, event: persis"},{"event":"cmd_output","timestamp":1607098241,"output":"ted schedule request with request_token: 55248294-7f72-4390-a3f3-9307b13fc8a2, origin: Elixir.Ppl.Pp"},{"event":"cmd_output","timestamp":1607098241,"output":"lRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:41.814 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098241,"output":": 82b51ba2-277e-42fe-a100-ec86252c6db8, type: PplBlocks, block_index: 0, state: waiting, event: exit"},{"event":"cmd_output","timestamp":1607098241,"output":"_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098241,"output":"\n16:10:41.814 [info] ppl_id: 82b51ba2-277e-42fe-a100-ec86252c6db8, type: Ppls, state: pending, even"},{"event":"cmd_output","timestamp":1607098241,"output":"t: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098241,"output":"m\u001b[22m\n16:10:41.818 [info] ppl_id: 3bc6aa1e-d7f2-479d-97b1-0d7b6357d051, type: Ppls, state: initia"},{"event":"cmd_output","timestamp":1607098241,"output":"lizing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_re"},{"event":"cmd_output","timestamp":1607098241,"output":"sponse/2(L124), \n\u001b[0m\u001b[22m\n16:10:41.820 [info] Persisted ppl_sub_init for pipeline with ppl_id: 3"},{"event":"cmd_output","timestamp":1607098241,"output":"bc6aa1e-d7f2-479d-97b1-0d7b6357d051: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metad"},{"event":"cmd_output","timestamp":1607098241,"output":"ata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 104, in_schedu"},{"event":"cmd_output","timestamp":1607098241,"output":"ling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:10:41.819560], pipeline_requests: #"},{"event":"cmd_output","timestamp":1607098241,"output":"Ecto.Association.NotLoaded, ppl_id: \"3bc6aa1e-d7f2-479"},{"event":"cmd_output","timestamp":1607098241,"output":"d-97b1-0d7b6357d051\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminat"},{"event":"cmd_output","timestamp":1607098241,"output":"e_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:41.819572]}\n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098241,"output":"\n16:10:41.828 [info] ppl_id: b5560a54-2151-42c6-97af-f9955b5d1fcd, block_id: cd2ebfdb-c3a8-4015-94c"},{"event":"cmd_output","timestamp":1607098241,"output":"d-f439273fb2cd, type: PplBlocks, block_index: 0, state: done, result: failed, event: exit_scheduling"},{"event":"cmd_output","timestamp":1607098241,"output":", recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:41.8"},{"event":"cmd_output","timestamp":1607098241,"output":"40 [info] PplBlocks WaitingState STM is scheduling block 1 from pipeline: \"b5560a54-2151-42c6-97af-"},{"event":"cmd_output","timestamp":1607098241,"output":"f9955b5d1fcd\"\n\u001b[0m\u001b[22m\n16:10:41.854 [info] ppl_id: 82b51ba2-277e-42fe-a100-ec86252c6db8, type: P"},{"event":"cmd_output","timestamp":1607098241,"output":"pls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_s"},{"event":"cmd_output","timestamp":1607098241,"output":"tate_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:41.857 [info] ppl_id: 82b51ba2-277e-42fe-a100-ec86252c6db8, "},{"event":"cmd_output","timestamp":1607098241,"output":"type: PplBlocks, block_index: 1, state: waiting, event: exit_scheduling, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098241,"output":"Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:41.864 [info] ppl_id: b5560a54-2"},{"event":"cmd_output","timestamp":1607098241,"output":"151-42c6-97af-f9955b5d1fcd, type: PplBlocks, block_index: 1, state: done, result: canceled, event: e"},{"event":"cmd_output","timestamp":1607098241,"output":"xit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098241,"output":"2m\n16:10:41.871 [info] ppl_id: 3bc6aa1e-d7f2-479d-97b1-0d7b6357d051, type: PplRequests, event: per"},{"event":"cmd_output","timestamp":1607098241,"output":"sisted source_args for pipeline: 3bc6aa1e-d7f2-479d-97b1-0d7b6357d051, origin: Elixir.Ppl.PplRequest"},{"event":"cmd_output","timestamp":1607098241,"output":"s.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:41.874 [info] ppl_id: 3bc6aa1e-"},{"event":"cmd_output","timestamp":1607098241,"output":"d7f2-479d-97b1-0d7b6357d051, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_co"},{"event":"cmd_output","timestamp":1607098241,"output":"unt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:41.879 [info] pp"},{"event":"cmd_output","timestamp":1607098241,"output":"l_id: 82b51ba2-277e-42fe-a100-ec86252c6db8, type: Ppls, state: running, event: exit_scheduling, reco"},{"event":"cmd_output","timestamp":1607098241,"output":"very_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:41.888 [in"},{"event":"cmd_output","timestamp":1607098241,"output":"fo] ppl_id: 22252918-f59a-4513-bc44-8adfea93d44b, type: PplSubInits, state: regular_init, event: ex"},{"event":"cmd_output","timestamp":1607098241,"output":"it_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098241,"output":"m\n16:10:41.892 [info] ppl_id: b5560a54-2151-42c6-97af-f9955b5d1fcd, type: Ppls, state: done, resul"},{"event":"cmd_output","timestamp":1607098241,"output":"t: failed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chang"},{"event":"cmd_output","timestamp":1607098241,"output":"e/1(L90), \n\u001b[0m\u001b[22m\n16:10:41.902 [info] PplBlocks WaitingState STM is scheduling block 0 from pi"},{"event":"cmd_output","timestamp":1607098241,"output":"peline: \"82b51ba2-277e-42fe-a100-ec86252c6db8\"\n\u001b[0m\u001b[22m\n16:10:41.920 [info] block_id: d3930c21-0"},{"event":"cmd_output","timestamp":1607098241,"output":"d4f-4b9b-aaf4-2a1bf4458e11, type: BlockRequests, event: persisted block run request from ppl 82b51ba"},{"event":"cmd_output","timestamp":1607098241,"output":"2-277e-42fe-a100-ec86252c6db8 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQue"},{"event":"cmd_output","timestamp":1607098241,"output":"ries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:41.926 [info] block_id: d3930c21-0d4f-4b9b-aaf4-2a"},{"event":"cmd_output","timestamp":1607098241,"output":"1bf4458e11, type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098241,"output":"r.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:41.929 [info] Block 0 of pipel"},{"event":"cmd_output","timestamp":1607098241,"output":"ine with id: 82b51ba2-277e-42fe-a100-ec86252c6db8 scheduled in block service with id: : \"d3930c21-0d"},{"event":"cmd_output","timestamp":1607098241,"output":"4f-4b9b-aaf4-2a1bf4458e11\"\n\u001b[0m\u001b[22m\n16:10:41.937 [info] ppl_id: 82b51ba2-277e-42fe-a100-ec86252c"},{"event":"cmd_output","timestamp":1607098241,"output":"6db8, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098241,"output":"igin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:41.947 [info] block_id: d3"},{"event":"cmd_output","timestamp":1607098241,"output":"930c21-0d4f-4b9b-aaf4-2a1bf4458e11, type: BlockRequests, event: persisted build and sub_ppl details "},{"event":"cmd_output","timestamp":1607098241,"output":"for block_request: d3930c21-0d4f-4b9b-aaf4-2a1bf4458e11, origin: Elixir.Block.BlockRequests.Model.Bl"},{"event":"cmd_output","timestamp":1607098241,"output":"ockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:41.951 [info] block_id: d3930c21-0d4f-4b"},{"event":"cmd_output","timestamp":1607098241,"output":"9b-aaf4-2a1bf4458e11, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098241,"output":".Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:41.956 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098241,"output":": 3bc6aa1e-d7f2-479d-97b1-0d7b6357d051, type: PplSubInits, state: regular_init, event: exit_scheduli"},{"event":"cmd_output","timestamp":1607098241,"output":"ng, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:41"},{"event":"cmd_output","timestamp":1607098241,"output":".957 [info] block_id: d3930c21-0d4f-4b9b-aaf4-2a1bf4458e11, type: Blocks, state: running, event: ex"},{"event":"cmd_output","timestamp":1607098241,"output":"it_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098241,"output":"m\n16:10:41.974 [info] ppl_id: 22252918-f59a-4513-bc44-8adfea93d44b, type: PplRequests, event: pers"},{"event":"cmd_output","timestamp":1607098241,"output":"isted definition for request with request_token: 41a00c80-364b-11eb-b7ac-5254005464e2, origin: Elixi"},{"event":"cmd_output","timestamp":1607098241,"output":"r.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:41.986 [info"},{"event":"cmd_output","timestamp":1607098241,"output":"] ppl_id: not_available, event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState"},{"event":"cmd_output","timestamp":1607098241,"output":".all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:41.986 [info] event: created, origin: Elixir.Ppl.PplSubInits.S"},{"event":"cmd_output","timestamp":1607098241,"output":"TMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:41.986 [info] ppl_id: 22252918-f59a-"},{"event":"cmd_output","timestamp":1607098241,"output":"4513-bc44-8adfea93d44b, type: PplBlocks, block_index: 0, state: initializing, event: created, recove"},{"event":"cmd_output","timestamp":1607098241,"output":"ry_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098241,"output":"\n16:10:41.986 [info] ppl_id: 22252918-f59a-4513-bc44-8adfea93d44b, type: PplBlocks, block_index: 1"},{"event":"cmd_output","timestamp":1607098241,"output":", state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler."},{"event":"cmd_output","timestamp":1607098241,"output":"RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:41.992 [info] ppl_id: 22252918-f59a-4513-bc44-"},{"event":"cmd_output","timestamp":1607098241,"output":"8adfea93d44b, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count"},{"event":"cmd_output","timestamp":1607098241,"output":": 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:41.995 [info] block"},{"event":"cmd_output","timestamp":1607098241,"output":"_id: d3930c21-0d4f-4b9b-aaf4-2a1bf4458e11, type: Tasks, state: running, event: exit_scheduling, reco"},{"event":"cmd_output","timestamp":1607098242,"output":"very_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:42.017 [in"},{"event":"cmd_output","timestamp":1607098242,"output":"fo] ppl_id: 22252918-f59a-4513-bc44-8adfea93d44b, type: Ppls, state: pending, event: exit_schedulin"},{"event":"cmd_output","timestamp":1607098242,"output":"g, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:42."},{"event":"cmd_output","timestamp":1607098242,"output":"018 [info] ppl_id: 22252918-f59a-4513-bc44-8adfea93d44b, type: PplBlocks, block_index: 0, state: wa"},{"event":"cmd_output","timestamp":1607098242,"output":"iting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1("},{"event":"cmd_output","timestamp":1607098242,"output":"L90), \n\u001b[0m\u001b[22m\n16:10:42.020 [info] block_id: d3930c21-0d4f-4b9b-aaf4-2a1bf4458e11, type: Tasks,"},{"event":"cmd_output","timestamp":1607098242,"output":" state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_ch"},{"event":"cmd_output","timestamp":1607098242,"output":"ange/1(L90), \n\u001b[0m\u001b[22m\n16:10:42.036 [info] ppl_id: 22252918-f59a-4513-bc44-8adfea93d44b, type: P"},{"event":"cmd_output","timestamp":1607098242,"output":"pls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_s"},{"event":"cmd_output","timestamp":1607098242,"output":"tate_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:42.038 [info] ppl_id: 22252918-f59a-4513-bc44-8adfea93d44b, "},{"event":"cmd_output","timestamp":1607098242,"output":"type: PplBlocks, block_index: 1, state: waiting, event: exit_scheduling, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098242,"output":"Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:42.039 [info] block_id: d3930c21"},{"event":"cmd_output","timestamp":1607098242,"output":"-0d4f-4b9b-aaf4-2a1bf4458e11, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098242,"output":"origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:42.061 [info] ppl_id: 82"},{"event":"cmd_output","timestamp":1607098242,"output":"b51ba2-277e-42fe-a100-ec86252c6db8, block_id: d3930c21-0d4f-4b9b-aaf4-2a1bf4458e11, type: PplBlocks,"},{"event":"cmd_output","timestamp":1607098242,"output":" block_index: 0, state: done, result: failed, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098242,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:42.061 [info] ppl_id: 22252918-f59a"},{"event":"cmd_output","timestamp":1607098242,"output":"-4513-bc44-8adfea93d44b, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098242,"output":"in: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:42.072 [info] ppl_id: 3bc6aa"},{"event":"cmd_output","timestamp":1607098242,"output":"1e-d7f2-479d-97b1-0d7b6357d051, type: PplRequests, event: persisted definition for request with requ"},{"event":"cmd_output","timestamp":1607098242,"output":"est_token: 55248294-7f72-4390-a3f3-9307b13fc8a2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQue"},{"event":"cmd_output","timestamp":1607098242,"output":"ries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:42.075 [info] PplBlocks WaitingState STM is sched"},{"event":"cmd_output","timestamp":1607098242,"output":"uling block 0 from pipeline: \"22252918-f59a-4513-bc44-8adfea93d44b\"\n\u001b[0m\u001b[22m\n16:10:42.087 [info] "},{"event":"cmd_output","timestamp":1607098242,"output":" ppl_id: not_available, event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.a"},{"event":"cmd_output","timestamp":1607098242,"output":"ll_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:42.087 [info] event: created, origin: Elixir.Ppl.PplSubInits.STM"},{"event":"cmd_output","timestamp":1607098242,"output":"Handler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:42.087 [info] ppl_id: 3bc6aa1e-d7f2-47"},{"event":"cmd_output","timestamp":1607098242,"output":"9d-97b1-0d7b6357d051, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery"},{"event":"cmd_output","timestamp":1607098242,"output":"_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098242,"output":"16:10:42.087 [info] ppl_id: 3bc6aa1e-d7f2-479d-97b1-0d7b6357d051, type: PplBlocks, block_index: 1, "},{"event":"cmd_output","timestamp":1607098242,"output":"state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.Re"},{"event":"cmd_output","timestamp":1607098242,"output":"gularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:42.092 [info] ppl_id: 3bc6aa1e-d7f2-479d-97b1-0d"},{"event":"cmd_output","timestamp":1607098242,"output":"7b6357d051, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: "},{"event":"cmd_output","timestamp":1607098242,"output":"0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:42.096 [info] block_i"},{"event":"cmd_output","timestamp":1607098242,"output":"d: f2ddccf0-8b30-484a-a998-83437bb6f2c3, type: BlockRequests, event: persisted block run request fro"},{"event":"cmd_output","timestamp":1607098242,"output":"m ppl 22252918-f59a-4513-bc44-8adfea93d44b for block 0, origin: Elixir.Block.BlockRequests.Model.Blo"},{"event":"cmd_output","timestamp":1607098242,"output":"ckRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:42.098 [info] block_id: f2ddccf0-8b30"},{"event":"cmd_output","timestamp":1607098242,"output":"-484a-a998-83437bb6f2c3, type: Blocks, state: initializing, event: initializing, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098242,"output":"origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:42.103 [info] Blo"},{"event":"cmd_output","timestamp":1607098242,"output":"ck 0 of pipeline with id: 22252918-f59a-4513-bc44-8adfea93d44b scheduled in block service with id: :"},{"event":"cmd_output","timestamp":1607098242,"output":" \"f2ddccf0-8b30-484a-a998-83437bb6f2c3\"\n\u001b[0m\u001b[22m\n16:10:42.111 [info] ppl_id: 22252918-f59a-4513-"},{"event":"cmd_output","timestamp":1607098242,"output":"bc44-8adfea93d44b, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery"},{"event":"cmd_output","timestamp":1607098242,"output":"_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:42.116 [info] "},{"event":"cmd_output","timestamp":1607098242,"output":" ppl_id: 3bc6aa1e-d7f2-479d-97b1-0d7b6357d051, type: PplBlocks, block_index: 0, state: waiting, even"},{"event":"cmd_output","timestamp":1607098242,"output":"t: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098242,"output":"m\u001b[22m\n16:10:42.117 [info] block_id: f2ddccf0-8b30-484a-a998-83437bb6f2c3, type: BlockRequests, ev"},{"event":"cmd_output","timestamp":1607098242,"output":"ent: persisted build and sub_ppl details for block_request: f2ddccf0-8b30-484a-a998-83437bb6f2c3, or"},{"event":"cmd_output","timestamp":1607098242,"output":"igin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:"},{"event":"cmd_output","timestamp":1607098242,"output":"42.118 [info] ppl_id: 3bc6aa1e-d7f2-479d-97b1-0d7b6357d051, type: Ppls, state: pending, event: exit"},{"event":"cmd_output","timestamp":1607098242,"output":"_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098242,"output":"\n16:10:42.123 [info] PplBlocks WaitingState STM is scheduling block 1 from pipeline: \"82b51ba2-277e"},{"event":"cmd_output","timestamp":1607098242,"output":"-42fe-a100-ec86252c6db8\"\n\u001b[0m\u001b[22m\n16:10:42.129 [info] block_id: f2ddccf0-8b30-484a-a998-83437bb6"},{"event":"cmd_output","timestamp":1607098242,"output":"f2c3, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.ST"},{"event":"cmd_output","timestamp":1607098242,"output":"MHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:42.132 [info] ppl_id: 3bc6aa1e-d7f2-"},{"event":"cmd_output","timestamp":1607098242,"output":"479d-97b1-0d7b6357d051, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098242,"output":"n: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:42.132 [info] block_id: f2ddc"},{"event":"cmd_output","timestamp":1607098242,"output":"cf0-8b30-484a-a998-83437bb6f2c3, type: Blocks, state: running, event: exit_scheduling, recovery_coun"},{"event":"cmd_output","timestamp":1607098242,"output":"t: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:42.138 [info] ppl_"},{"event":"cmd_output","timestamp":1607098242,"output":"id: 82b51ba2-277e-42fe-a100-ec86252c6db8, type: PplBlocks, block_index: 1, state: done, result: canc"},{"event":"cmd_output","timestamp":1607098242,"output":"eled, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098242,"output":"90), \n\u001b[0m\u001b[22m\n16:10:42.138 [info] ppl_id: 3bc6aa1e-d7f2-479d-97b1-0d7b6357d051, type: PplBlocks"},{"event":"cmd_output","timestamp":1607098242,"output":", block_index: 1, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.S"},{"event":"cmd_output","timestamp":1607098242,"output":"TM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:42.170 [info] ppl_id: 82b51ba2-277e-42fe-a100-e"},{"event":"cmd_output","timestamp":1607098242,"output":"c86252c6db8, type: Ppls, state: done, result: failed, event: exit_scheduling, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098242,"output":"gin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:42.170 [info] block_id: f2d"},{"event":"cmd_output","timestamp":1607098242,"output":"dccf0-8b30-484a-a998-83437bb6f2c3, type: Tasks, state: running, event: exit_scheduling, recovery_cou"},{"event":"cmd_output","timestamp":1607098242,"output":"nt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:42.221 [info] ppl"},{"event":"cmd_output","timestamp":1607098242,"output":"_id: 3bc6aa1e-d7f2-479d-97b1-0d7b6357d051, type: Ppls, state: running, event: exit_scheduling, recov"},{"event":"cmd_output","timestamp":1607098242,"output":"ery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:42.232 [inf"},{"event":"cmd_output","timestamp":1607098242,"output":"o] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"3bc6aa1e-d7f2-479d-97b1-0d7b635"},{"event":"cmd_output","timestamp":1607098242,"output":"7d051\"\n\u001b[0m\u001b[22m\n16:10:42.240 [info] block_id: 4810e42a-8b8f-4958-9dda-74534efdc49b, type: BlockR"},{"event":"cmd_output","timestamp":1607098242,"output":"equests, event: persisted block run request from ppl 3bc6aa1e-d7f2-479d-97b1-0d7b6357d051 for block "},{"event":"cmd_output","timestamp":1607098242,"output":"0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098242,"output":"m\n16:10:42.247 [info] block_id: f2ddccf0-8b30-484a-a998-83437bb6f2c3, type: Tasks, state: done, ev"},{"event":"cmd_output","timestamp":1607098242,"output":"ent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b"},{"event":"cmd_output","timestamp":1607098242,"output":"[0m\u001b[22m\n16:10:42.250 [info] block_id: 4810e42a-8b8f-4958-9dda-74534efdc49b, type: Blocks, state: "},{"event":"cmd_output","timestamp":1607098242,"output":"initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQuerie"},{"event":"cmd_output","timestamp":1607098242,"output":"s.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:42.254 [info] Block 0 of pipeline with id: 3bc6aa1e-d7f2-479d-9"},{"event":"cmd_output","timestamp":1607098242,"output":"7b1-0d7b6357d051 scheduled in block service with id: : \"4810e42a-8b8f-4958-9dda-74534efdc49b\"\n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098242,"output":"[22m\n16:10:42.257 [info] ppl_id: 3bc6aa1e-d7f2-479d-97b1-0d7b6357d051, type: PplBlocks, block_inde"},{"event":"cmd_output","timestamp":1607098242,"output":"x: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_"},{"event":"cmd_output","timestamp":1607098242,"output":"state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:42.258 [info] block_id: 4810e42a-8b8f-4958-9dda-74534efdc49"},{"event":"cmd_output","timestamp":1607098242,"output":"b, type: BlockRequests, event: persisted build and sub_ppl details for block_request: 4810e42a-8b8f-"},{"event":"cmd_output","timestamp":1607098242,"output":"4958-9dda-74534efdc49b, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2"},{"event":"cmd_output","timestamp":1607098242,"output":"(L41), \n\u001b[0m\u001b[22m\n16:10:42.259 [info] block_id: f2ddccf0-8b30-484a-a998-83437bb6f2c3, type: Block"},{"event":"cmd_output","timestamp":1607098242,"output":"s, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_"},{"event":"cmd_output","timestamp":1607098242,"output":"change/1(L90), \n\u001b[0m\u001b[22m\n16:10:42.265 [info] block_id: 4810e42a-8b8f-4958-9dda-74534efdc49b, typ"},{"event":"cmd_output","timestamp":1607098242,"output":"e: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler."},{"event":"cmd_output","timestamp":1607098242,"output":"InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:42.270 [info] block_id: 4810e42a-8b8f-4958-9d"},{"event":"cmd_output","timestamp":1607098242,"output":"da-74534efdc49b, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098242,"output":"ixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:42.275 [info] ppl_id: 22252918-f59"},{"event":"cmd_output","timestamp":1607098242,"output":"a-4513-bc44-8adfea93d44b, block_id: f2ddccf0-8b30-484a-a998-83437bb6f2c3, type: PplBlocks, block_ind"},{"event":"cmd_output","timestamp":1607098242,"output":"ex: 0, state: done, result: failed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper"},{"event":"cmd_output","timestamp":1607098242,"output":".STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:42.296 [info] PplBlocks WaitingState STM is s"},{"event":"cmd_output","timestamp":1607098242,"output":"cheduling block 1 from pipeline: \"22252918-f59a-4513-bc44-8adfea93d44b\"\n\u001b[0m\u001b[22m\n16:10:42.309 [in"},{"event":"cmd_output","timestamp":1607098242,"output":"fo] block_id: 4810e42a-8b8f-4958-9dda-74534efdc49b, type: Tasks, state: running, event: exit_schedu"},{"event":"cmd_output","timestamp":1607098242,"output":"ling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:"},{"event":"cmd_output","timestamp":1607098242,"output":"42.311 [info] ppl_id: 22252918-f59a-4513-bc44-8adfea93d44b, type: PplBlocks, block_index: 1, state:"},{"event":"cmd_output","timestamp":1607098242,"output":" done, result: canceled, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.l"},{"event":"cmd_output","timestamp":1607098242,"output":"og_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:42.318 [info] ppl_id: 22252918-f59a-4513-bc44-8adfea93d4"},{"event":"cmd_output","timestamp":1607098242,"output":"4b, type: Ppls, state: done, result: failed, event: exit_scheduling, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098242,"output":"ir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:42.358 [info] block_id: 4810e42a-8b8"},{"event":"cmd_output","timestamp":1607098242,"output":"f-4958-9dda-74534efdc49b, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098242,"output":"n: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:42.365 [info] block_id: 4810e"},{"event":"cmd_output","timestamp":1607098242,"output":"42a-8b8f-4958-9dda-74534efdc49b, type: Blocks, state: done, event: exit_scheduling, recovery_count: "},{"event":"cmd_output","timestamp":1607098242,"output":"0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:42.375 [info] Request"},{"event":"cmd_output","timestamp":1607098242,"output":": 'partial_rebuild', request: %{ppl_id: \"22252918-f59a-4513-bc44-8adfea93d44b\", request_token: \"770e"},{"event":"cmd_output","timestamp":1607098242,"output":"f2e0-7712-4c10-846e-e54f79f90b03\", user_id: \"\"}\n\u001b[0m\u001b[22m\n16:10:42.375 [info] ppl_id: 3bc6aa1e-d7"},{"event":"cmd_output","timestamp":1607098242,"output":"f2-479d-97b1-0d7b6357d051, block_id: 4810e42a-8b8f-4958-9dda-74534efdc49b, type: PplBlocks, block_in"},{"event":"cmd_output","timestamp":1607098242,"output":"dex: 0, state: done, result: failed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loope"},{"event":"cmd_output","timestamp":1607098242,"output":"r.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:42.380 [info] ppl_id: daffd6b8-aa57-4b14-a5e"},{"event":"cmd_output","timestamp":1607098242,"output":"6-1106648772a2, type: PplRequests, event: persisted schedule request with request_token: 770ef2e0-77"},{"event":"cmd_output","timestamp":1607098242,"output":"12-4c10-846e-e54f79f90b03, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/"},{"event":"cmd_output","timestamp":1607098242,"output":"2(L55), \n\u001b[0m\u001b[22m\n16:10:42.381 [info] ppl_id: daffd6b8-aa57-4b14-a5e6-1106648772a2, type: Ppls, "},{"event":"cmd_output","timestamp":1607098242,"output":"state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueri"},{"event":"cmd_output","timestamp":1607098242,"output":"es.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:42.383 [info] PplBlocks WaitingState STM is schedul"},{"event":"cmd_output","timestamp":1607098242,"output":"ing block 1 from pipeline: \"3bc6aa1e-d7f2-479d-97b1-0d7b6357d051\"\n\u001b[0m\u001b[22m\n16:10:42.391 [info] P"},{"event":"cmd_output","timestamp":1607098242,"output":"ersisted ppl_sub_init for pipeline with ppl_id: daffd6b8-aa57-4b14-a5e6-1106648772a2: %Ppl.PplSubIni"},{"event":"cmd_output","timestamp":1607098242,"output":"ts.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id"},{"event":"cmd_output","timestamp":1607098242,"output":": nil, error_description: nil, id: 105, in_scheduling: false, init_type: \"rebuild\", inserted_at: ~N["},{"event":"cmd_output","timestamp":1607098242,"output":"2020-12-04 16:10:42.390105], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"daffd6b8-aa57-4b14-a5e6-1106648772a2\", recovery_count: 0, result: ni"},{"event":"cmd_output","timestamp":1607098242,"output":"l, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, update"},{"event":"cmd_output","timestamp":1607098242,"output":"d_at: ~N[2020-12-04 16:10:42.390117]}\n\u001b[0m\u001b[22m\n16:10:42.392 [info] ppl_id: 3bc6aa1e-d7f2-479d-97"},{"event":"cmd_output","timestamp":1607098242,"output":"b1-0d7b6357d051, type: PplBlocks, block_index: 1, state: done, result: canceled, event: exit_schedul"},{"event":"cmd_output","timestamp":1607098242,"output":"ing, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:4"},{"event":"cmd_output","timestamp":1607098242,"output":"2.411 [info] ppl_id: 3bc6aa1e-d7f2-479d-97b1-0d7b6357d051, type: Ppls, state: done, result: failed,"},{"event":"cmd_output","timestamp":1607098242,"output":" event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), "},{"event":"cmd_output","timestamp":1607098242,"output":"\n\u001b[0m\u001b[22m\n16:10:42.412 [info] ppl_id: daffd6b8-aa57-4b14-a5e6-1106648772a2, type: PplRequests, e"},{"event":"cmd_output","timestamp":1607098242,"output":"vent: persisted source_args for pipeline: daffd6b8-aa57-4b14-a5e6-1106648772a2, origin: Elixir.Ppl.P"},{"event":"cmd_output","timestamp":1607098242,"output":"plRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:42.414 [info] ppl_id: "},{"event":"cmd_output","timestamp":1607098242,"output":"daffd6b8-aa57-4b14-a5e6-1106648772a2, type: PplSubInits, state: fetching, event: exit_scheduling, re"},{"event":"cmd_output","timestamp":1607098242,"output":"covery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:42.424 ["},{"event":"cmd_output","timestamp":1607098242,"output":"info] Request: 'run: %{\"auto_promoted\" => false, \"branch_id\" => \"d900af17-206f-4cfb-9719-6dbc22ef8c"},{"event":"cmd_output","timestamp":1607098242,"output":"db\", \"branch_name\" => \"master\", \"client_id\" => \"d022ea23-0d14-4401-abd1-c008028f6130\", \"commit_sha\" "},{"event":"cmd_output","timestamp":1607098242,"output":"=> \"75891a4469\", \"definition_file\" => \"\", \"env_vars\" => [], \"extension_of\" => \"daffd6b8-aa57-4b14-a5"},{"event":"cmd_output","timestamp":1607098242,"output":"e6-1106648772a2\", \"file_name\" => \"/foo/bar/test.yml\", \"hook_id\" => \"41a02558-364b-11eb-bd29-52540054"},{"event":"cmd_output","timestamp":1607098242,"output":"64e2\", \"label\" => \"master\", \"organization_id\" => \"9218dab2-785b-4989-8702-1fd57037c0a7\", \"owner\" => "},{"event":"cmd_output","timestamp":1607098242,"output":"\"rt\", \"partially_rerun_by\" => \"\", \"prev_ppl_artefact_ids\" => [\"22252918-f59a-4513-bc44-8adfea93d44b\""},{"event":"cmd_output","timestamp":1607098242,"output":"], \"project_id\" => \"wf-number-test-1\", \"promoter_id\" => \"\", \"repo_name\" => \"20_workflow_builder\", \"r"},{"event":"cmd_output","timestamp":1607098242,"output":"equest_token\" => \"c65d51af-3459-4964-87d1-e63f6b690841\", \"requester_id\" => \"84265683-4fb4-489d-9da0-"},{"event":"cmd_output","timestamp":1607098242,"output":"577731365977\", \"service\" => \"local\", \"snapshot_id\" => \"\", \"suppressed_attributes\" => [\"access_token\""},{"event":"cmd_output","timestamp":1607098242,"output":", \"client_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"0dab33d3-ce4f-4b99-a39c-41e25b664245\", \"wf"},{"event":"cmd_output","timestamp":1607098242,"output":"_number\" => 5, \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:10:42.431 [info] ppl_id: 6049f900-d57b"},{"event":"cmd_output","timestamp":1607098242,"output":"-426f-b8f5-316dc7bd6799, type: PplRequests, event: persisted schedule request with request_token: c6"},{"event":"cmd_output","timestamp":1607098242,"output":"5d51af-3459-4964-87d1-e63f6b690841, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_"},{"event":"cmd_output","timestamp":1607098242,"output":"response/2(L55), \n\u001b[0m\u001b[22m\n16:10:42.442 [info] ppl_id: 6049f900-d57b-426f-b8f5-316dc7bd6799, typ"},{"event":"cmd_output","timestamp":1607098242,"output":"e: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model."},{"event":"cmd_output","timestamp":1607098242,"output":"PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:42.446 [info] Persisted ppl_sub_init for p"},{"event":"cmd_output","timestamp":1607098242,"output":"ipeline with ppl_id: 6049f900-d57b-426f-b8f5-316dc7bd6799: %Ppl.PplSubInits.Model.PplSubInits{__meta"},{"event":"cmd_output","timestamp":1607098242,"output":"__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: n"},{"event":"cmd_output","timestamp":1607098242,"output":"il, id: 106, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:10:42.444545]"},{"event":"cmd_output","timestamp":1607098242,"output":", pipeline_requests: #Ecto.Association.NotLoaded, ppl_"},{"event":"cmd_output","timestamp":1607098242,"output":"id: \"6049f900-d57b-426f-b8f5-316dc7bd6799\", recovery_count: 0, result: nil, result_reason: nil, stat"},{"event":"cmd_output","timestamp":1607098242,"output":"e: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:4"},{"event":"cmd_output","timestamp":1607098242,"output":"2.444554]}\n\u001b[0m\u001b[22m\n16:10:42.454 [info] ppl_id: daffd6b8-aa57-4b14-a5e6-1106648772a2, type: PplS"},{"event":"cmd_output","timestamp":1607098242,"output":"ubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.I"},{"event":"cmd_output","timestamp":1607098242,"output":"mpl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:42.463 [info] ppl_id: 6049f900-d57b-426f-b8f5-316dc"},{"event":"cmd_output","timestamp":1607098242,"output":"7bd6799, type: PplRequests, event: persisted source_args for pipeline: 6049f900-d57b-426f-b8f5-316dc"},{"event":"cmd_output","timestamp":1607098242,"output":"7bd6799, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098242,"output":"16:10:42.465 [info] ppl_id: 6049f900-d57b-426f-b8f5-316dc7bd6799, type: PplSubInits, state: fetchin"},{"event":"cmd_output","timestamp":1607098242,"output":"g, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90)"},{"event":"cmd_output","timestamp":1607098242,"output":", \n\u001b[0m\u001b[22m\n16:10:42.497 [info] ppl_id: 6049f900-d57b-426f-b8f5-316dc7bd6799, type: PplSubInits,"},{"event":"cmd_output","timestamp":1607098242,"output":" state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_"},{"event":"cmd_output","timestamp":1607098242,"output":"state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:42.510 [info] ppl_id: daffd6b8-aa57-4b14-a5e6-1106648772a2,"},{"event":"cmd_output","timestamp":1607098242,"output":" type: PplRequests, event: persisted definition for request with request_token: 770ef2e0-7712-4c10-8"},{"event":"cmd_output","timestamp":1607098242,"output":"46e-e54f79f90b03, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), "},{"event":"cmd_output","timestamp":1607098242,"output":"\n\u001b[0m\u001b[22m\n16:10:42.522 [info] ppl_id: not_available, event: created, origin: Elixir.Ppl.PplSubIn"},{"event":"cmd_output","timestamp":1607098242,"output":"its.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:42.522 [info] event: created, o"},{"event":"cmd_output","timestamp":1607098242,"output":"rigin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:42.522"},{"event":"cmd_output","timestamp":1607098242,"output":" [info] ppl_id: daffd6b8-aa57-4b14-a5e6-1106648772a2, type: PplBlocks, block_index: 0, state: initi"},{"event":"cmd_output","timestamp":1607098242,"output":"alizing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitSta"},{"event":"cmd_output","timestamp":1607098242,"output":"te.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:42.522 [info] ppl_id: daffd6b8-aa57-4b14-a5e6-1106648772a2, "},{"event":"cmd_output","timestamp":1607098242,"output":"type: PplBlocks, block_index: 1, state: initializing, event: created, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098242,"output":"xir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:42.526 [info] p"},{"event":"cmd_output","timestamp":1607098242,"output":"pl_id: daffd6b8-aa57-4b14-a5e6-1106648772a2, type: PplSubInits, state: done, result: passed, event: "},{"event":"cmd_output","timestamp":1607098242,"output":"exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098242,"output":"22m\n16:10:42.551 [info] ppl_id: daffd6b8-aa57-4b14-a5e6-1106648772a2, type: PplBlocks, block_index"},{"event":"cmd_output","timestamp":1607098242,"output":": 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_s"},{"event":"cmd_output","timestamp":1607098242,"output":"tate_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:42.551 [info] ppl_id: daffd6b8-aa57-4b14-a5e6-1106648772a2, "},{"event":"cmd_output","timestamp":1607098242,"output":"type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Imp"},{"event":"cmd_output","timestamp":1607098242,"output":"l.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:42.568 [info] ppl_id: daffd6b8-aa57-4b14-a5e6-1106648"},{"event":"cmd_output","timestamp":1607098242,"output":"772a2, type: PplBlocks, block_index: 1, state: waiting, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098242,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:42.570 [info] ppl_id: daf"},{"event":"cmd_output","timestamp":1607098242,"output":"fd6b8-aa57-4b14-a5e6-1106648772a2, type: Ppls, state: queuing, event: exit_scheduling, recovery_coun"},{"event":"cmd_output","timestamp":1607098242,"output":"t: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:42.584 [info] ppl_"},{"event":"cmd_output","timestamp":1607098242,"output":"id: daffd6b8-aa57-4b14-a5e6-1106648772a2, type: Ppls, state: running, event: exit_scheduling, recove"},{"event":"cmd_output","timestamp":1607098242,"output":"ry_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:42.592 [info"},{"event":"cmd_output","timestamp":1607098242,"output":"] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"daffd6b8-aa57-4b14-a5e6-11066487"},{"event":"cmd_output","timestamp":1607098242,"output":"72a2\"\n\u001b[0m\u001b[22m\n16:10:42.599 [info] block_id: fd45db69-f2b6-45be-9459-fc99b1b0391e, type: BlockRe"},{"event":"cmd_output","timestamp":1607098242,"output":"quests, event: persisted block run request from ppl daffd6b8-aa57-4b14-a5e6-1106648772a2 for block 0"},{"event":"cmd_output","timestamp":1607098242,"output":", origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098242,"output":"\n16:10:42.602 [info] block_id: fd45db69-f2b6-45be-9459-fc99b1b0391e, type: Blocks, state: initiali"},{"event":"cmd_output","timestamp":1607098242,"output":"zing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert"},{"event":"cmd_output","timestamp":1607098242,"output":"/1(L43), \n\u001b[0m\u001b[22m\n16:10:42.602 [info] ppl_id: 6049f900-d57b-426f-b8f5-316dc7bd6799, type: PplRe"},{"event":"cmd_output","timestamp":1607098242,"output":"quests, event: persisted definition for request with request_token: c65d51af-3459-4964-87d1-e63f6b69"},{"event":"cmd_output","timestamp":1607098242,"output":"0841, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098242,"output":"\n16:10:42.604 [info] Block 0 of pipeline with id: daffd6b8-aa57-4b14-a5e6-1106648772a2 scheduled in"},{"event":"cmd_output","timestamp":1607098242,"output":" block service with id: : \"fd45db69-f2b6-45be-9459-fc99b1b0391e\"\n\u001b[0m\u001b[22m\n16:10:42.607 [info] pp"},{"event":"cmd_output","timestamp":1607098242,"output":"l_id: daffd6b8-aa57-4b14-a5e6-1106648772a2, type: PplBlocks, block_index: 0, state: running, event: "},{"event":"cmd_output","timestamp":1607098242,"output":"exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098242,"output":"22m\n16:10:42.611 [info] block_id: fd45db69-f2b6-45be-9459-fc99b1b0391e, type: BlockRequests, event"},{"event":"cmd_output","timestamp":1607098242,"output":": persisted build and sub_ppl details for block_request: fd45db69-f2b6-45be-9459-fc99b1b0391e, origi"},{"event":"cmd_output","timestamp":1607098242,"output":"n: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:42."},{"event":"cmd_output","timestamp":1607098242,"output":"614 [info] block_id: fd45db69-f2b6-45be-9459-fc99b1b0391e, type: Tasks, state: pending, event: crea"},{"event":"cmd_output","timestamp":1607098242,"output":"ted, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n"},{"event":"cmd_output","timestamp":1607098242,"output":"\u001b[0m\u001b[22m\n16:10:42.619 [info] block_id: fd45db69-f2b6-45be-9459-fc99b1b0391e, type: Blocks, state:"},{"event":"cmd_output","timestamp":1607098242,"output":" running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change"},{"event":"cmd_output","timestamp":1607098242,"output":"/1(L90), \n\u001b[0m\u001b[22m\n16:10:42.620 [info] ppl_id: not_available, event: created, origin: Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098242,"output":".PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:42.620 [info] event: c"},{"event":"cmd_output","timestamp":1607098242,"output":"reated, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098242,"output":"10:42.620 [info] ppl_id: 6049f900-d57b-426f-b8f5-316dc7bd6799, type: PplBlocks, block_index: 0, sta"},{"event":"cmd_output","timestamp":1607098242,"output":"te: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.Regul"},{"event":"cmd_output","timestamp":1607098242,"output":"arInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:42.620 [info] ppl_id: 6049f900-d57b-426f-b8f5-316dc"},{"event":"cmd_output","timestamp":1607098242,"output":"7bd6799, type: PplBlocks, block_index: 1, state: initializing, event: created, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098242,"output":"igin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:42.626 "},{"event":"cmd_output","timestamp":1607098242,"output":"[info] ppl_id: 6049f900-d57b-426f-b8f5-316dc7bd6799, type: PplSubInits, state: done, result: passed"},{"event":"cmd_output","timestamp":1607098242,"output":", event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90),"},{"event":"cmd_output","timestamp":1607098242,"output":" \n\u001b[0m\u001b[22m\n16:10:42.646 [info] ppl_id: 6049f900-d57b-426f-b8f5-316dc7bd6799, type: Ppls, state: "},{"event":"cmd_output","timestamp":1607098242,"output":"pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/"},{"event":"cmd_output","timestamp":1607098242,"output":"1(L90), \n\u001b[0m\u001b[22m\n16:10:42.655 [info] ppl_id: 6049f900-d57b-426f-b8f5-316dc7bd6799, type: PplBlo"},{"event":"cmd_output","timestamp":1607098242,"output":"cks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loope"},{"event":"cmd_output","timestamp":1607098242,"output":"r.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:42.661 [info] block_id: fd45db69-f2b6-45be-9"},{"event":"cmd_output","timestamp":1607098242,"output":"459-fc99b1b0391e, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098242,"output":"ixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:42.673 [info] ppl_id: 6049f900-d57"},{"event":"cmd_output","timestamp":1607098242,"output":"b-426f-b8f5-316dc7bd6799, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098242,"output":"gin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:42.678 [info] ppl_id: 6049f"},{"event":"cmd_output","timestamp":1607098242,"output":"900-d57b-426f-b8f5-316dc7bd6799, type: PplBlocks, block_index: 1, state: waiting, event: exit_schedu"},{"event":"cmd_output","timestamp":1607098242,"output":"ling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:"},{"event":"cmd_output","timestamp":1607098242,"output":"42.689 [info] block_id: fd45db69-f2b6-45be-9459-fc99b1b0391e, type: Tasks, state: done, event: exit"},{"event":"cmd_output","timestamp":1607098242,"output":"_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098242,"output":"\n16:10:42.691 [info] ppl_id: 6049f900-d57b-426f-b8f5-316dc7bd6799, type: Ppls, state: running, even"},{"event":"cmd_output","timestamp":1607098242,"output":"t: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098242,"output":"m\u001b[22m\n16:10:42.701 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"6049f9"},{"event":"cmd_output","timestamp":1607098242,"output":"00-d57b-426f-b8f5-316dc7bd6799\"\n\u001b[0m\u001b[22m\n16:10:42.703 [info] block_id: fd45db69-f2b6-45be-9459-f"},{"event":"cmd_output","timestamp":1607098242,"output":"c99b1b0391e, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Lo"},{"event":"cmd_output","timestamp":1607098242,"output":"oper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:42.711 [info] block_id: 60d8eda5-982d-44d"},{"event":"cmd_output","timestamp":1607098242,"output":"1-b4fd-869e30ce4a5a, type: BlockRequests, event: persisted block run request from ppl 6049f900-d57b-"},{"event":"cmd_output","timestamp":1607098242,"output":"426f-b8f5-316dc7bd6799 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.pr"},{"event":"cmd_output","timestamp":1607098242,"output":"ocess_response/4(L35), \n\u001b[0m\u001b[22m\n16:10:42.714 [info] ppl_id: daffd6b8-aa57-4b14-a5e6-1106648772a"},{"event":"cmd_output","timestamp":1607098242,"output":"2, block_id: fd45db69-f2b6-45be-9459-fc99b1b0391e, type: PplBlocks, block_index: 0, state: done, res"},{"event":"cmd_output","timestamp":1607098242,"output":"ult: failed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_cha"},{"event":"cmd_output","timestamp":1607098242,"output":"nge/1(L90), \n\u001b[0m\u001b[22m\n16:10:42.714 [info] block_id: 60d8eda5-982d-44d1-b4fd-869e30ce4a5a, type: "},{"event":"cmd_output","timestamp":1607098242,"output":"Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Mod"},{"event":"cmd_output","timestamp":1607098242,"output":"el.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:42.719 [info] Block 0 of pipeline with id: 6049f"},{"event":"cmd_output","timestamp":1607098242,"output":"900-d57b-426f-b8f5-316dc7bd6799 scheduled in block service with id: : \"60d8eda5-982d-44d1-b4fd-869e3"},{"event":"cmd_output","timestamp":1607098242,"output":"0ce4a5a\"\n\u001b[0m\u001b[22m\n16:10:42.723 [info] ppl_id: 6049f900-d57b-426f-b8f5-316dc7bd6799, type: PplBlo"},{"event":"cmd_output","timestamp":1607098242,"output":"cks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loope"},{"event":"cmd_output","timestamp":1607098242,"output":"r.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:42.729 [info] block_id: 60d8eda5-982d-44d1-b"},{"event":"cmd_output","timestamp":1607098242,"output":"4fd-869e30ce4a5a, type: BlockRequests, event: persisted build and sub_ppl details for block_request:"},{"event":"cmd_output","timestamp":1607098242,"output":" 60d8eda5-982d-44d1-b4fd-869e30ce4a5a, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries"},{"event":"cmd_output","timestamp":1607098242,"output":".insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:42.732 [info] block_id: 60d8eda5-982d-44d1-b4fd-869e30ce4a"},{"event":"cmd_output","timestamp":1607098242,"output":"5a, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMH"},{"event":"cmd_output","timestamp":1607098242,"output":"andler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:42.733 [info] PplBlocks WaitingState S"},{"event":"cmd_output","timestamp":1607098242,"output":"TM is scheduling block 1 from pipeline: \"daffd6b8-aa57-4b14-a5e6-1106648772a2\"\n\u001b[0m\u001b[22m\n16:10:42."},{"event":"cmd_output","timestamp":1607098242,"output":"739 [info] block_id: 60d8eda5-982d-44d1-b4fd-869e30ce4a5a, type: Blocks, state: running, event: exi"},{"event":"cmd_output","timestamp":1607098242,"output":"t_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098242,"output":"\n16:10:42.742 [info] ppl_id: daffd6b8-aa57-4b14-a5e6-1106648772a2, type: PplBlocks, block_index: 1"},{"event":"cmd_output","timestamp":1607098242,"output":", state: done, result: canceled, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.ST"},{"event":"cmd_output","timestamp":1607098242,"output":"M.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:42.773 [info] block_id: 60d8eda5-982d-44d1-b4fd-"},{"event":"cmd_output","timestamp":1607098242,"output":"869e30ce4a5a, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098242,"output":".Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:42.781 [info] ppl_id: daffd6b8-aa57-4b"},{"event":"cmd_output","timestamp":1607098242,"output":"14-a5e6-1106648772a2, type: Ppls, state: done, result: failed, event: exit_scheduling, recovery_coun"},{"event":"cmd_output","timestamp":1607098242,"output":"t: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:42.806 [info] bloc"},{"event":"cmd_output","timestamp":1607098242,"output":"k_id: 60d8eda5-982d-44d1-b4fd-869e30ce4a5a, type: Tasks, state: done, event: exit_scheduling, recove"},{"event":"cmd_output","timestamp":1607098242,"output":"ry_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:42.813 [info"},{"event":"cmd_output","timestamp":1607098242,"output":"] block_id: 60d8eda5-982d-44d1-b4fd-869e30ce4a5a, type: Blocks, state: done, event: exit_scheduling"},{"event":"cmd_output","timestamp":1607098242,"output":", recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:42.8"},{"event":"cmd_output","timestamp":1607098242,"output":"23 [info] ppl_id: 6049f900-d57b-426f-b8f5-316dc7bd6799, block_id: 60d8eda5-982d-44d1-b4fd-869e30ce4"},{"event":"cmd_output","timestamp":1607098242,"output":"a5a, type: PplBlocks, block_index: 0, state: done, result: failed, event: exit_scheduling, recovery_"},{"event":"cmd_output","timestamp":1607098242,"output":"count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:42.833 [info] "},{"event":"cmd_output","timestamp":1607098242,"output":"PplBlocks WaitingState STM is scheduling block 1 from pipeline: \"6049f900-d57b-426f-b8f5-316dc7bd679"},{"event":"cmd_output","timestamp":1607098242,"output":"9\"\n\u001b[0m\u001b[22m\n16:10:42.840 [info] ppl_id: 6049f900-d57b-426f-b8f5-316dc7bd6799, type: PplBlocks, b"},{"event":"cmd_output","timestamp":1607098242,"output":"lock_index: 1, state: done, result: canceled, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098242,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:42.852 [info] ppl_id: 6049f900-d57b"},{"event":"cmd_output","timestamp":1607098242,"output":"-426f-b8f5-316dc7bd6799, type: Ppls, state: done, result: failed, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098242,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:42.890 [info] R"},{"event":"cmd_output","timestamp":1607098242,"output":"equest: 'run: %{\"branch_id\" => \"d900af17-206f-4cfb-9719-6dbc22ef8cdb\", \"branch_name\" => \"master\", \"c"},{"event":"cmd_output","timestamp":1607098242,"output":"lient_id\" => \"d022ea23-0d14-4401-abd1-c008028f6130\", \"commit_sha\" => \"75891a4469\", \"definition_file\""},{"event":"cmd_output","timestamp":1607098242,"output":" => \"\", \"file_name\" => \"semaphore.yml\", \"hook_id\" => \"41a02558-364b-11eb-bd29-5254005464e2\", \"label\""},{"event":"cmd_output","timestamp":1607098242,"output":" => \"master\", \"organization_id\" => \"9218dab2-785b-4989-8702-1fd57037c0a7\", \"owner\" => \"rt\", \"project"},{"event":"cmd_output","timestamp":1607098242,"output":"_id\" => \"wf-number-test-1\", \"repo_name\" => \"20_workflow_builder\", \"request_token\" => \"fe676c7e-c833-"},{"event":"cmd_output","timestamp":1607098242,"output":"4a3f-b0fb-c42adff62e78\", \"requester_id\" => \"\", \"service\" => \"local\", \"snapshot_id\" => \"\", \"suppresse"},{"event":"cmd_output","timestamp":1607098242,"output":"d_attributes\" => [\"access_token\", \"client_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"d9108b9d-f"},{"event":"cmd_output","timestamp":1607098242,"output":"c0b-4d75-b81e-9f574f053070\", \"wf_rebuild_of\" => \"0dab33d3-ce4f-4b99-a39c-41e25b664245\", \"working_dir"},{"event":"cmd_output","timestamp":1607098242,"output":"\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:10:42.896 [info] ppl_id: c5d00c4a-f6c8-4175-9f1a-2f5a74dce8bc, ty"},{"event":"cmd_output","timestamp":1607098242,"output":"pe: PplRequests, event: persisted schedule request with request_token: fe676c7e-c833-4a3f-b0fb-c42ad"},{"event":"cmd_output","timestamp":1607098242,"output":"ff62e78, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098242,"output":"m\n16:10:42.903 [info] ppl_id: c5d00c4a-f6c8-4175-9f1a-2f5a74dce8bc, type: Ppls, state: initializin"},{"event":"cmd_output","timestamp":1607098242,"output":"g, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_respons"},{"event":"cmd_output","timestamp":1607098242,"output":"e/2(L124), \n\u001b[0m\u001b[22m\n16:10:42.910 [info] Project wf-number-test-1 and branch masterlatest_wf det"},{"event":"cmd_output","timestamp":1607098242,"output":"ails updated: \"wf_id: d9108b9d-fc0b-4d75-b81e-9f574f053070, wf_number: 6\"\n\u001b[0m\u001b[22m\n16:10:42.911 ["},{"event":"cmd_output","timestamp":1607098242,"output":"info] Persisted ppl_sub_init for pipeline with ppl_id: c5d00c4a-f6c8-4175-9f1a-2f5a74dce8bc: %Ppl.P"},{"event":"cmd_output","timestamp":1607098242,"output":"plSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile"},{"event":"cmd_output","timestamp":1607098242,"output":"_task_id: nil, error_description: nil, id: 107, in_scheduling: false, init_type: \"regular\", inserted"},{"event":"cmd_output","timestamp":1607098242,"output":"_at: ~N[2020-12-04 16:10:42.910243], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"c5d00c4a-f6c8-4175-9f1a-2f5a74dce8bc\", recovery_count: 0, re"},{"event":"cmd_output","timestamp":1607098242,"output":"sult: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil"},{"event":"cmd_output","timestamp":1607098242,"output":", updated_at: ~N[2020-12-04 16:10:42.910259]}\n\u001b[0m\u001b[22m\n16:10:42.926 [info] ppl_id: c5d00c4a-f6c8"},{"event":"cmd_output","timestamp":1607098242,"output":"-4175-9f1a-2f5a74dce8bc, type: PplRequests, event: persisted source_args for pipeline: c5d00c4a-f6c8"},{"event":"cmd_output","timestamp":1607098242,"output":"-4175-9f1a-2f5a74dce8bc, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89"},{"event":"cmd_output","timestamp":1607098242,"output":"), \n\u001b[0m\u001b[22m\n16:10:42.929 [info] ppl_id: c5d00c4a-f6c8-4175-9f1a-2f5a74dce8bc, type: PplSubInits"},{"event":"cmd_output","timestamp":1607098242,"output":", state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_sta"},{"event":"cmd_output","timestamp":1607098242,"output":"te_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:42.956 [info] ppl_id: c5d00c4a-f6c8-4175-9f1a-2f5a74dce8bc, ty"},{"event":"cmd_output","timestamp":1607098242,"output":"pe: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loop"},{"event":"cmd_output","timestamp":1607098242,"output":"er.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:42.991 [info] ppl_id: c5d00c4a-f6c8-4175-9f"},{"event":"cmd_output","timestamp":1607098242,"output":"1a-2f5a74dce8bc, type: PplRequests, event: persisted definition for request with request_token: fe67"},{"event":"cmd_output","timestamp":1607098242,"output":"6c7e-c833-4a3f-b0fb-c42adff62e78, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_def"},{"event":"cmd_output","timestamp":1607098243,"output":"inition/3(L76), \n\u001b[0m\u001b[22m\n16:10:42.998 [info] ppl_id: not_available, event: created, origin: Eli"},{"event":"cmd_output","timestamp":1607098243,"output":"xir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:42.998 [info] e"},{"event":"cmd_output","timestamp":1607098243,"output":"vent: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098243,"output":"2m\n16:10:42.998 [info] ppl_id: c5d00c4a-f6c8-4175-9f1a-2f5a74dce8bc, type: PplBlocks, block_index:"},{"event":"cmd_output","timestamp":1607098243,"output":" 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandle"},{"event":"cmd_output","timestamp":1607098243,"output":"r.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:42.998 [info] ppl_id: c5d00c4a-f6c8-4175-9f1"},{"event":"cmd_output","timestamp":1607098243,"output":"a-2f5a74dce8bc, type: PplBlocks, block_index: 1, state: initializing, event: created, recovery_count"},{"event":"cmd_output","timestamp":1607098243,"output":": 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:"},{"event":"cmd_output","timestamp":1607098243,"output":"43.001 [info] ppl_id: c5d00c4a-f6c8-4175-9f1a-2f5a74dce8bc, type: PplSubInits, state: done, result:"},{"event":"cmd_output","timestamp":1607098243,"output":" passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/"},{"event":"cmd_output","timestamp":1607098243,"output":"1(L90), \n\u001b[0m\u001b[22m\n16:10:43.013 [info] ppl_id: c5d00c4a-f6c8-4175-9f1a-2f5a74dce8bc, type: PplBlo"},{"event":"cmd_output","timestamp":1607098243,"output":"cks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loope"},{"event":"cmd_output","timestamp":1607098243,"output":"r.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:43.017 [info] ppl_id: c5d00c4a-f6c8-4175-9f1"},{"event":"cmd_output","timestamp":1607098243,"output":"a-2f5a74dce8bc, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098243,"output":"r.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:43.022 [info] ppl_id: c5d00c4a-f6c8-4"},{"event":"cmd_output","timestamp":1607098243,"output":"175-9f1a-2f5a74dce8bc, type: PplBlocks, block_index: 1, state: waiting, event: exit_scheduling, reco"},{"event":"cmd_output","timestamp":1607098243,"output":"very_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:43.033 [in"},{"event":"cmd_output","timestamp":1607098243,"output":"fo] ppl_id: c5d00c4a-f6c8-4175-9f1a-2f5a74dce8bc, type: Ppls, state: queuing, event: exit_schedulin"},{"event":"cmd_output","timestamp":1607098243,"output":"g, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:43."},{"event":"cmd_output","timestamp":1607098243,"output":"047 [info] ppl_id: c5d00c4a-f6c8-4175-9f1a-2f5a74dce8bc, type: Ppls, state: running, event: exit_sc"},{"event":"cmd_output","timestamp":1607098243,"output":"heduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098243,"output":":10:43.056 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"c5d00c4a-f6c8-41"},{"event":"cmd_output","timestamp":1607098243,"output":"75-9f1a-2f5a74dce8bc\"\n\u001b[0m\u001b[22m\n16:10:43.069 [info] block_id: a4b5074b-09ce-4a9a-a5eb-cc0e2107b4b"},{"event":"cmd_output","timestamp":1607098243,"output":"8, type: BlockRequests, event: persisted block run request from ppl c5d00c4a-f6c8-4175-9f1a-2f5a74dc"},{"event":"cmd_output","timestamp":1607098243,"output":"e8bc for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L"},{"event":"cmd_output","timestamp":1607098243,"output":"35), \n\u001b[0m\u001b[22m\n16:10:43.072 [info] block_id: a4b5074b-09ce-4a9a-a5eb-cc0e2107b4b8, type: Blocks,"},{"event":"cmd_output","timestamp":1607098243,"output":" state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.Bloc"},{"event":"cmd_output","timestamp":1607098243,"output":"ksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:10:43.076 [info] Block 0 of pipeline with id: c5d00c4a-f6c"},{"event":"cmd_output","timestamp":1607098243,"output":"8-4175-9f1a-2f5a74dce8bc scheduled in block service with id: : \"a4b5074b-09ce-4a9a-a5eb-cc0e2107b4b8"},{"event":"cmd_output","timestamp":1607098243,"output":"\"\n\u001b[0m\u001b[22m\n16:10:43.080 [info] ppl_id: c5d00c4a-f6c8-4175-9f1a-2f5a74dce8bc, type: PplBlocks, bl"},{"event":"cmd_output","timestamp":1607098243,"output":"ock_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.I"},{"event":"cmd_output","timestamp":1607098243,"output":"mpl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:43.082 [info] block_id: a4b5074b-09ce-4a9a-a5eb-cc0"},{"event":"cmd_output","timestamp":1607098243,"output":"e2107b4b8, type: BlockRequests, event: persisted build and sub_ppl details for block_request: a4b507"},{"event":"cmd_output","timestamp":1607098243,"output":"4b-09ce-4a9a-a5eb-cc0e2107b4b8, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert"},{"event":"cmd_output","timestamp":1607098243,"output":"_build/2(L41), \n\u001b[0m\u001b[22m\n16:10:43.085 [info] block_id: a4b5074b-09ce-4a9a-a5eb-cc0e2107b4b8, typ"},{"event":"cmd_output","timestamp":1607098243,"output":"e: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler."},{"event":"cmd_output","timestamp":1607098243,"output":"InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:43.089 [info] block_id: a4b5074b-09ce-4a9a-a5"},{"event":"cmd_output","timestamp":1607098243,"output":"eb-cc0e2107b4b8, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098243,"output":"ixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:43.119 [info] block_id: a4b5074b-0"},{"event":"cmd_output","timestamp":1607098243,"output":"9ce-4a9a-a5eb-cc0e2107b4b8, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098243,"output":"origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:43.232 [info] block_id: "},{"event":"cmd_output","timestamp":1607098243,"output":"a4b5074b-09ce-4a9a-a5eb-cc0e2107b4b8, type: Tasks, state: done, event: exit_scheduling, recovery_cou"},{"event":"cmd_output","timestamp":1607098243,"output":"nt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:43.242 [info] blo"},{"event":"cmd_output","timestamp":1607098243,"output":"ck_id: a4b5074b-09ce-4a9a-a5eb-cc0e2107b4b8, type: Blocks, state: done, event: exit_scheduling, reco"},{"event":"cmd_output","timestamp":1607098243,"output":"very_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:43.250 [in"},{"event":"cmd_output","timestamp":1607098243,"output":"fo] ppl_id: c5d00c4a-f6c8-4175-9f1a-2f5a74dce8bc, block_id: a4b5074b-09ce-4a9a-a5eb-cc0e2107b4b8, t"},{"event":"cmd_output","timestamp":1607098243,"output":"ype: PplBlocks, block_index: 0, state: done, result: failed, event: exit_scheduling, recovery_count:"},{"event":"cmd_output","timestamp":1607098243,"output":" 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:43.257 [info] PplBlo"},{"event":"cmd_output","timestamp":1607098243,"output":"cks WaitingState STM is scheduling block 1 from pipeline: \"c5d00c4a-f6c8-4175-9f1a-2f5a74dce8bc\"\n\u001b["},{"event":"cmd_output","timestamp":1607098243,"output":"0m\u001b[22m\n16:10:43.264 [info] ppl_id: c5d00c4a-f6c8-4175-9f1a-2f5a74dce8bc, type: PplBlocks, block_i"},{"event":"cmd_output","timestamp":1607098243,"output":"ndex: 1, state: done, result: canceled, event: exit_scheduling, recovery_count: 0, origin: Elixir.Lo"},{"event":"cmd_output","timestamp":1607098243,"output":"oper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:43.277 [info] ppl_id: c5d00c4a-f6c8-4175-"},{"event":"cmd_output","timestamp":1607098243,"output":"9f1a-2f5a74dce8bc, type: Ppls, state: done, result: failed, event: exit_scheduling, recovery_count: "},{"event":"cmd_output","timestamp":1607098243,"output":"0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test wf_number correctly "},{"event":"cmd_output","timestamp":1607098243,"output":"set for all pipelines form workflows with different topology (4204.4ms)\u001b[0m\n\nPpl.UserClient.Test\n"},{"event":"cmd_output","timestamp":1607098243,"output":" * test when URL is invalid in describe call => timeout occures\r * test when URL is invalid in des"},{"event":"cmd_output","timestamp":1607098243,"output":"cribe call => timeout occures (skipped)\n * test when time-out occures in describe call => error is"},{"event":"cmd_output","timestamp":1607098243,"output":" returned\r * test when time-out occures in describe call => error is returned (skipped)\n * test w"},{"event":"cmd_output","timestamp":1607098243,"output":"hen client.describe is called => gRPC server response is processed correctly\r * test when client.de"},{"event":"cmd_output","timestamp":1607098243,"output":"scribe is called => gRPC server response is processed correctly (skipped)\n\nPpl.RepoProxyClient.Tes"},{"event":"cmd_output","timestamp":1607098243,"output":"t\n * test describe returns error when it is not possible to connect to repo proxy service\r * test"},{"event":"cmd_output","timestamp":1607098243,"output":" describe returns error when it is not possible to connect to repo proxy service (skipped)\n * test"},{"event":"cmd_output","timestamp":1607098246,"output":" describe correctly timeouts if repo proxy service takes to long to respond\u001b[33m\n16:10:46.334 [warn"},{"event":"cmd_output","timestamp":1607098246,"output":"] Elixir.Wormhole{#PID<0.13049.0>}:: callback: {Ppl.RepoProxyClient, :describe_hook, [\"timeout\"]}; "},{"event":"cmd_output","timestamp":1607098246,"output":"reason: {:timeout, 3000}\n\u001b[0m\u001b[32m\r * test describe correctly timeouts if repo proxy service takes"},{"event":"cmd_output","timestamp":1607098246,"output":" to long to respond (3000.8ms)\u001b[0m\n * test send invalid describe request and receive bad param res"},{"event":"cmd_output","timestamp":1607098246,"output":"ponsed\u001b[32m\r * test send invalid describe request and receive bad param responsed (3.2ms)\u001b[0m\n * "},{"event":"cmd_output","timestamp":1607098246,"output":"test send valid describe request and receive and unpach Hook properly\u001b[32m\r * test send valid descr"},{"event":"cmd_output","timestamp":1607098246,"output":"ibe request and receive and unpach Hook properly (2.5ms)\u001b[0m\n\nPpl.Queues.Model.Queues.Test\n * do"},{"event":"cmd_output","timestamp":1607098246,"output":"ctest Ppl.Queues.Model.Queues.changeset/2 (1)\r * doctest Ppl.Queues.Model.Queues.changeset/2 (1) (s"},{"event":"cmd_output","timestamp":1607098246,"output":"kipped)\n * doctest Ppl.Queues.Model.Queues.changeset/2 (2)\r * doctest Ppl.Queues.Model.Queues.cha"},{"event":"cmd_output","timestamp":1607098246,"output":"ngeset/2 (2) (skipped)\n\nPpl.Queues.Model.QueuesQueries.Test\n * test list() - given 'implicit + '"},{"event":"cmd_output","timestamp":1607098246,"output":"project_id' params valid page is returned\r * test list() - given 'implicit + 'project_id' params va"},{"event":"cmd_output","timestamp":1607098246,"output":"lid page is returned (skipped)\n * test list() - given 'all' + 'project_id' params valid page is re"},{"event":"cmd_output","timestamp":1607098246,"output":"turned\r * test list() - given 'all' + 'project_id' params valid page is returned (skipped)\n * tes"},{"event":"cmd_output","timestamp":1607098246,"output":"t get queue by name and organization_id retuns proper error when queue is not found\r * test get que"},{"event":"cmd_output","timestamp":1607098246,"output":"ue by name and organization_id retuns proper error when queue is not found (skipped)\n * test list("},{"event":"cmd_output","timestamp":1607098246,"output":") - given 'user_generated' + both ids params valid page is returned\r * test list() - given 'user_ge"},{"event":"cmd_output","timestamp":1607098246,"output":"nerated' + both ids params valid page is returned (skipped)\n * test get existing queue by name and"},{"event":"cmd_output","timestamp":1607098246,"output":" organization_id\r * test get existing queue by name and organization_id (skipped)\n * test insert "},{"event":"cmd_output","timestamp":1607098246,"output":"new queue with valid params\r * test insert new queue with valid params (skipped)\n * test list() -"},{"event":"cmd_output","timestamp":1607098246,"output":" given 'implicit + 'org_id' params nothing is found\r * test list() - given 'implicit + 'org_id' par"},{"event":"cmd_output","timestamp":1607098246,"output":"ams nothing is found (skipped)\n * test try to insert two queues with same name for same project\r "},{"event":"cmd_output","timestamp":1607098246,"output":"* test try to insert two queues with same name for same project (skipped)\n * test list() - given '"},{"event":"cmd_output","timestamp":1607098246,"output":"user_generated' + 'project_id' params valid page is returned\r * test list() - given 'user_generated"},{"event":"cmd_output","timestamp":1607098246,"output":"' + 'project_id' params valid page is returned (skipped)\n * test list() - given 'all' + both ids p"},{"event":"cmd_output","timestamp":1607098246,"output":"arams valid page is returned\r * test list() - given 'all' + both ids params valid page is returned "},{"event":"cmd_output","timestamp":1607098246,"output":"(skipped)\n * test get queue by name and project_id retuns proper error when queue is not found\r *"},{"event":"cmd_output","timestamp":1607098246,"output":" test get queue by name and project_id retuns proper error when queue is not found (skipped)\n * te"},{"event":"cmd_output","timestamp":1607098246,"output":"st list() - given 'user_generated' + 'org_id' params valid page is returned\r * test list() - given "},{"event":"cmd_output","timestamp":1607098246,"output":"'user_generated' + 'org_id' params valid page is returned (skipped)\n * test two project-scoped que"},{"event":"cmd_output","timestamp":1607098246,"output":"ues with same name can be inserted for same organization\r * test two project-scoped queues with sam"},{"event":"cmd_output","timestamp":1607098246,"output":"e name can be inserted for same organization (skipped)\n * test get_or_insert_queue() inserts new q"},{"event":"cmd_output","timestamp":1607098246,"output":"ueue when queue with same params is not found\r * test get_or_insert_queue() inserts new queue when "},{"event":"cmd_output","timestamp":1607098246,"output":"queue with same params is not found (skipped)\n * test try to insert two org-scoped queues with sam"},{"event":"cmd_output","timestamp":1607098246,"output":"e name from different projects for same organization\r * test try to insert two org-scoped queues wi"},{"event":"cmd_output","timestamp":1607098246,"output":"th same name from different projects for same organization (skipped)\n * test get_or_insert_queue()"},{"event":"cmd_output","timestamp":1607098246,"output":" returns existing queue if one exists with same params\r * test get_or_insert_queue() returns existi"},{"event":"cmd_output","timestamp":1607098246,"output":"ng queue if one exists with same params (skipped)\n * test get existing queue by name and project_i"},{"event":"cmd_output","timestamp":1607098246,"output":"d\r * test get existing queue by name and project_id (skipped)\n * test inserting new queue fails w"},{"event":"cmd_output","timestamp":1607098246,"output":"hen required param is not given\r * test inserting new queue fails when required param is not given "},{"event":"cmd_output","timestamp":1607098246,"output":"(skipped)\n\nPpl.Ppls.Termination.Test\n * test stop pipeline in pending state\u001b[22m\n16:10:46.422 ["},{"event":"cmd_output","timestamp":1607098246,"output":"info] ppl_id: b5cdf7d1-0645-439b-ae26-d8e9104ed464, type: PplRequests, event: persisted schedule re"},{"event":"cmd_output","timestamp":1607098246,"output":"quest with request_token: 4479acf4-364b-11eb-93d4-5254005464e2, origin: Elixir.Ppl.PplRequests.Model"},{"event":"cmd_output","timestamp":1607098246,"output":".PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:46.435 [info] ppl_id: b5cdf7d1-0645"},{"event":"cmd_output","timestamp":1607098246,"output":"-439b-ae26-d8e9104ed464, type: Ppls, state: initializing, event: initializing, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098246,"output":"igin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:46.438 [info] "},{"event":"cmd_output","timestamp":1607098246,"output":"Persisted ppl_sub_init for pipeline with ppl_id: b5cdf7d1-0645-439b-ae26-d8e9104ed464: %Ppl.PplSubIn"},{"event":"cmd_output","timestamp":1607098246,"output":"its.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_i"},{"event":"cmd_output","timestamp":1607098246,"output":"d: nil, error_description: nil, id: 108, in_scheduling: false, init_type: \"regular\", inserted_at: ~N"},{"event":"cmd_output","timestamp":1607098246,"output":"[2020-12-04 16:10:46.436627], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"b5cdf7d1-0645-439b-ae26-d8e9104ed464\", recovery_count: 0, result: n"},{"event":"cmd_output","timestamp":1607098246,"output":"il, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updat"},{"event":"cmd_output","timestamp":1607098246,"output":"ed_at: ~N[2020-12-04 16:10:46.436637]}\n\u001b[0m\u001b[22m\n16:10:46.441 [info] Periodic from module Elixir."},{"event":"cmd_output","timestamp":1607098246,"output":"Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: peri"},{"event":"cmd_output","timestamp":1607098246,"output":"od: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurr"},{"event":"cmd_output","timestamp":1607098246,"output":"ing args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query:"},{"event":"cmd_output","timestamp":1607098246,"output":" Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl.P"},{"event":"cmd_output","timestamp":1607098246,"output":"pls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :"},{"event":"cmd_output","timestamp":1607098246,"output":"updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor"},{"event":"cmd_output","timestamp":1607098246,"output":": :skip}\n\u001b[0m\u001b[22m\n16:10:46.441 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.Cre"},{"event":"cmd_output","timestamp":1607098246,"output":"atedState with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 100 ms, metric_name: {"},{"event":"cmd_output","timestamp":1607098246,"output":"\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args: %{allowed_stat"},{"event":"cmd_output","timestamp":1607098246,"output":"es: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, obs"},{"event":"cmd_output","timestamp":1607098246,"output":"erved_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request"},{"event":"cmd_output","timestamp":1607098246,"output":", :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits"},{"event":"cmd_output","timestamp":1607098246,"output":", task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:46.442 [info] Periodic from module Elixir.Ppl.PplSubIni"},{"event":"cmd_output","timestamp":1607098246,"output":"ts.STMHandler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler.FetchingState :: period: 100"},{"event":"cmd_output","timestamp":1607098246,"output":" ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring "},{"event":"cmd_output","timestamp":1607098246,"output":"args: %{allowed_states: [\"regular_init\", \"compilation\", \"done\"], cooling_time_sec: -2, initial_query"},{"event":"cmd_output","timestamp":1607098246,"output":": Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fetching\", publisher_cb: :skip, repo: Ppl.Ecto"},{"event":"cmd_output","timestamp":1607098246,"output":"Repo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], "},{"event":"cmd_output","timestamp":1607098246,"output":"schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:46.442 [info] "},{"event":"cmd_output","timestamp":1607098246,"output":"Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CompilationState with name Elixir.Ppl.PplSubI"},{"event":"cmd_output","timestamp":1607098246,"output":"nits.STMHandler.CompilationState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplS"},{"event":"cmd_output","timestamp":1607098246,"output":"ubInits-STMHandler-CompilationState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilat"},{"event":"cmd_output","timestamp":1607098246,"output":"ion\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, o"},{"event":"cmd_output","timestamp":1607098246,"output":"bserved_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_r"},{"event":"cmd_output","timestamp":1607098246,"output":"equest, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSu"},{"event":"cmd_output","timestamp":1607098246,"output":"bInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:46.442 [info] Periodic from module Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098246,"output":"SubInits.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState ::"},{"event":"cmd_output","timestamp":1607098246,"output":" period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState"},{"event":"cmd_output","timestamp":1607098246,"output":"\"]}, recurring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits"},{"event":"cmd_output","timestamp":1607098246,"output":".Model.PplSubInits, observed_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returni"},{"event":"cmd_output","timestamp":1607098246,"output":"ng: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.P"},{"event":"cmd_output","timestamp":1607098246,"output":"plSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:46.562 [info] ppl_id: b5cdf"},{"event":"cmd_output","timestamp":1607098246,"output":"7d1-0645-439b-ae26-d8e9104ed464, type: PplRequests, event: persisted source_args for pipeline: b5cdf"},{"event":"cmd_output","timestamp":1607098246,"output":"7d1-0645-439b-ae26-d8e9104ed464, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_sour"},{"event":"cmd_output","timestamp":1607098246,"output":"ce/2(L89), \n\u001b[0m\u001b[22m\n16:10:46.566 [info] ppl_id: b5cdf7d1-0645-439b-ae26-d8e9104ed464, type: Ppl"},{"event":"cmd_output","timestamp":1607098246,"output":"SubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl"},{"event":"cmd_output","timestamp":1607098246,"output":".log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:46.581 [info] ppl_id: b5cdf7d1-0645-439b-ae26-d8e9104e"},{"event":"cmd_output","timestamp":1607098246,"output":"d464, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098246,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:46.605 [info] ppl_id: b5cdf7d1-0645"},{"event":"cmd_output","timestamp":1607098246,"output":"-439b-ae26-d8e9104ed464, type: PplRequests, event: persisted definition for request with request_tok"},{"event":"cmd_output","timestamp":1607098246,"output":"en: 4479acf4-364b-11eb-93d4-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.in"},{"event":"cmd_output","timestamp":1607098246,"output":"sert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:46.611 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Q"},{"event":"cmd_output","timestamp":1607098246,"output":"ueues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:10:46.609787"},{"event":"cmd_output","timestamp":1607098246,"output":"], name: \"master-.semaphore/semaphore.yml\", organization_id: \"5590f3ec-8d5c-4237-a1c6-3a310fc122c5\","},{"event":"cmd_output","timestamp":1607098246,"output":" project_id: \"6dd5c4c5-ff5d-4e55-a2bc-8c114b603415\", queue_id: \"2c0e9406-c2f3-41b6-b933-fb051ae41f9f"},{"event":"cmd_output","timestamp":1607098246,"output":"\", scope: \"project\", updated_at: ~N[2020-12-04 16:10:46.609795], user_generated: false}}\n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098246,"output":"\n16:10:46.615 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all"},{"event":"cmd_output","timestamp":1607098246,"output":"_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:46.615 [info] ppl_id: b5cdf7d1-0645-439b-ae26-d8e9104ed464, type: "},{"event":"cmd_output","timestamp":1607098246,"output":"PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Pp"},{"event":"cmd_output","timestamp":1607098246,"output":"l.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:46.617 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098246,"output":" b5cdf7d1-0645-439b-ae26-d8e9104ed464, type: PplSubInits, state: done, result: passed, event: exit_s"},{"event":"cmd_output","timestamp":1607098246,"output":"cheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098246,"output":"6:10:46.633 [info] ppl_id: b5cdf7d1-0645-439b-ae26-d8e9104ed464, type: Ppls, state: pending, event:"},{"event":"cmd_output","timestamp":1607098246,"output":" exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098246,"output":"[22m\n16:10:46.955 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingState with name El"},{"event":"cmd_output","timestamp":1607098246,"output":"ixir.Ppl.Ppls.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl"},{"event":"cmd_output","timestamp":1607098246,"output":"-Ppls-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"pending\", \"queuing\", \"running\""},{"event":"cmd_output","timestamp":1607098246,"output":", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publi"},{"event":"cmd_output","timestamp":1607098246,"output":"sher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, retu"},{"event":"cmd_output","timestamp":1607098246,"output":"rning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Pp"},{"event":"cmd_output","timestamp":1607098247,"output":"l.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:10:47.064 [info] ppl_id: b5c"},{"event":"cmd_output","timestamp":1607098247,"output":"df7d1-0645-439b-ae26-d8e9104ed464, type: Ppls, state: done, result: canceled, event: exit_scheduling"},{"event":"cmd_output","timestamp":1607098247,"output":", recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test st"},{"event":"cmd_output","timestamp":1607098247,"output":"op pipeline in pending state (1125.5ms)\u001b[0m\n * test cancel pipeline in initializing state\r * test"},{"event":"cmd_output","timestamp":1607098247,"output":" cancel pipeline in initializing state (skipped)\n * test terminate ppl in init when SubInit is alr"},{"event":"cmd_output","timestamp":1607098247,"output":"eady done and blocks exist\u001b[22m\n16:10:47.536 [info] ppl_id: 1f849810-c9ae-41a4-a7dd-db4da5ca83c0, "},{"event":"cmd_output","timestamp":1607098247,"output":"type: PplRequests, event: persisted schedule request with request_token: 45238f12-364b-11eb-a4ce-525"},{"event":"cmd_output","timestamp":1607098247,"output":"4005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098247,"output":"22m\n16:10:47.542 [info] ppl_id: 1f849810-c9ae-41a4-a7dd-db4da5ca83c0, type: Ppls, state: initializ"},{"event":"cmd_output","timestamp":1607098247,"output":"ing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_respo"},{"event":"cmd_output","timestamp":1607098247,"output":"nse/2(L124), \n\u001b[0m\u001b[22m\n16:10:47.555 [info] Persisted ppl_sub_init for pipeline with ppl_id: 1f84"},{"event":"cmd_output","timestamp":1607098247,"output":"9810-c9ae-41a4-a7dd-db4da5ca83c0: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata"},{"event":"cmd_output","timestamp":1607098247,"output":"<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 109, in_schedulin"},{"event":"cmd_output","timestamp":1607098247,"output":"g: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:10:47.552985], pipeline_requests: #Ect"},{"event":"cmd_output","timestamp":1607098247,"output":"o.Association.NotLoaded, ppl_id: \"1f849810-c9ae-41a4-a"},{"event":"cmd_output","timestamp":1607098247,"output":"7dd-db4da5ca83c0\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_r"},{"event":"cmd_output","timestamp":1607098247,"output":"equest: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:47.552996]}\n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098247,"output":":10:47.558 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedState with name Eli"},{"event":"cmd_output","timestamp":1607098247,"output":"xir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\","},{"event":"cmd_output","timestamp":1607098247,"output":" [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args: %{allowed_states: [\"fetching\", \"done\""},{"event":"cmd_output","timestamp":1607098247,"output":"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"created\","},{"event":"cmd_output","timestamp":1607098247,"output":" publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, "},{"event":"cmd_output","timestamp":1607098247,"output":":result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :ski"},{"event":"cmd_output","timestamp":1607098247,"output":"p}\n\u001b[0m\u001b[22m\n16:10:47.558 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.FetchingS"},{"event":"cmd_output","timestamp":1607098247,"output":"tate with name Elixir.Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 ms, metric_name: {\"Ppl"},{"event":"cmd_output","timestamp":1607098247,"output":".beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %{allowed_states:"},{"event":"cmd_output","timestamp":1607098247,"output":" [\"regular_init\", \"compilation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model"},{"event":"cmd_output","timestamp":1607098247,"output":".PplSubInits, observed_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, "},{"event":"cmd_output","timestamp":1607098247,"output":":terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits"},{"event":"cmd_output","timestamp":1607098247,"output":".Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:47.559 [info] Periodic from module El"},{"event":"cmd_output","timestamp":1607098247,"output":"ixir.Ppl.PplSubInits.STMHandler.CompilationState with name Elixir.Ppl.PplSubInits.STMHandler.Compila"},{"event":"cmd_output","timestamp":1607098247,"output":"tionState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-Comp"},{"event":"cmd_output","timestamp":1607098247,"output":"ilationState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"stopping\", \"done"},{"event":"cmd_output","timestamp":1607098247,"output":"\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"compila"},{"event":"cmd_output","timestamp":1607098247,"output":"tion\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :s"},{"event":"cmd_output","timestamp":1607098247,"output":"tate, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor"},{"event":"cmd_output","timestamp":1607098247,"output":": :skip}\n\u001b[0m\u001b[22m\n16:10:47.559 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.Reg"},{"event":"cmd_output","timestamp":1607098247,"output":"ularInitState with name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period: 100 ms, metric"},{"event":"cmd_output","timestamp":1607098247,"output":"_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurring args: %{"},{"event":"cmd_output","timestamp":1607098247,"output":"allowed_states: [\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, obs"},{"event":"cmd_output","timestamp":1607098247,"output":"erved_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_re"},{"event":"cmd_output","timestamp":1607098247,"output":"quest, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSub"},{"event":"cmd_output","timestamp":1607098247,"output":"Inits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:47.672 [info] ppl_id: 1f849810-c9ae-41a4-a7dd-db4d"},{"event":"cmd_output","timestamp":1607098247,"output":"a5ca83c0, type: PplRequests, event: persisted source_args for pipeline: 1f849810-c9ae-41a4-a7dd-db4d"},{"event":"cmd_output","timestamp":1607098247,"output":"a5ca83c0, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098247,"output":"\n16:10:47.676 [info] ppl_id: 1f849810-c9ae-41a4-a7dd-db4da5ca83c0, type: PplSubInits, state: fetchi"},{"event":"cmd_output","timestamp":1607098247,"output":"ng, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90"},{"event":"cmd_output","timestamp":1607098247,"output":"), \n\u001b[0m\u001b[22m\n16:10:47.702 [info] ppl_id: 1f849810-c9ae-41a4-a7dd-db4da5ca83c0, type: PplSubInits"},{"event":"cmd_output","timestamp":1607098247,"output":", state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098247,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:47.735 [info] ppl_id: 1f849810-c9ae-41a4-a7dd-db4da5ca83c0"},{"event":"cmd_output","timestamp":1607098247,"output":", type: PplRequests, event: persisted definition for request with request_token: 45238f12-364b-11eb-"},{"event":"cmd_output","timestamp":1607098247,"output":"a4ce-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76),"},{"event":"cmd_output","timestamp":1607098247,"output":" \n\u001b[0m\u001b[22m\n16:10:47.743 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.S"},{"event":"cmd_output","timestamp":1607098247,"output":"chema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:10:47.741605], name: \"master-.semap"},{"event":"cmd_output","timestamp":1607098247,"output":"hore/semaphore.yml\", organization_id: \"1e9749b4-1aee-4524-be7f-650150df1a2e\", project_id: \"0c00a8c2-"},{"event":"cmd_output","timestamp":1607098247,"output":"d791-4dc0-ac0f-7d1bc964072a\", queue_id: \"504b8555-d081-481e-9f63-103872912a0d\", scope: \"project\", up"},{"event":"cmd_output","timestamp":1607098247,"output":"dated_at: ~N[2020-12-04 16:10:47.741618], user_generated: false}}\n\u001b[0m\u001b[22m\n16:10:47.748 [info] e"},{"event":"cmd_output","timestamp":1607098247,"output":"vent: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098247,"output":"2m\n16:10:47.748 [info] ppl_id: 1f849810-c9ae-41a4-a7dd-db4da5ca83c0, type: PplBlocks, block_index:"},{"event":"cmd_output","timestamp":1607098247,"output":" 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandle"},{"event":"cmd_output","timestamp":1607098247,"output":"r.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:47.750 [info] ppl_id: 1f849810-c9ae-41a4-a7d"},{"event":"cmd_output","timestamp":1607098247,"output":"d-db4da5ca83c0, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_cou"},{"event":"cmd_output","timestamp":1607098248,"output":"nt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:48.063 [info] Per"},{"event":"cmd_output","timestamp":1607098248,"output":"iodic from module Elixir.Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.STMHandler."},{"event":"cmd_output","timestamp":1607098248,"output":"InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Ini"},{"event":"cmd_output","timestamp":1607098248,"output":"tializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], cooling_ti"},{"event":"cmd_output","timestamp":1607098248,"output":"me_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher_cb: #Functi"},{"event":"cmd_output","timestamp":1607098248,"output":"on<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, returning: [:"},{"event":"cmd_output","timestamp":1607098248,"output":"id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Mo"},{"event":"cmd_output","timestamp":1607098248,"output":"del.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:48.183 [info] ppl_id: 1f849810-c9ae-41a4-a7dd-d"},{"event":"cmd_output","timestamp":1607098248,"output":"b4da5ca83c0, type: Ppls, state: done, result: canceled, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098248,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test terminate ppl in init wh"},{"event":"cmd_output","timestamp":1607098248,"output":"en SubInit is already done and blocks exist (1100.9ms)\u001b[0m\n * test cancel pipeline in pending stat"},{"event":"cmd_output","timestamp":1607098248,"output":"e\u001b[22m\n16:10:48.637 [info] ppl_id: d8034d8f-12a2-4ef3-8f0d-bce2504f549b, type: PplRequests, event:"},{"event":"cmd_output","timestamp":1607098248,"output":" persisted schedule request with request_token: 45cb7b0a-364b-11eb-b64c-5254005464e2, origin: Elixir"},{"event":"cmd_output","timestamp":1607098248,"output":".Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:48.646 [info] "},{"event":"cmd_output","timestamp":1607098248,"output":" ppl_id: d8034d8f-12a2-4ef3-8f0d-bce2504f549b, type: Ppls, state: initializing, event: initializing,"},{"event":"cmd_output","timestamp":1607098248,"output":" recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098248,"output":"\n16:10:48.651 [info] Persisted ppl_sub_init for pipeline with ppl_id: d8034d8f-12a2-4ef3-8f0d-bce25"},{"event":"cmd_output","timestamp":1607098248,"output":"04f549b: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_i"},{"event":"cmd_output","timestamp":1607098248,"output":"nits\">, compile_task_id: nil, error_description: nil, id: 110, in_scheduling: false, init_type: \"reg"},{"event":"cmd_output","timestamp":1607098248,"output":"ular\", inserted_at: ~N[2020-12-04 16:10:48.648656], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"d8034d8f-12a2-4ef3-8f0d-bce2504f549b\", recove"},{"event":"cmd_output","timestamp":1607098248,"output":"ry_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_re"},{"event":"cmd_output","timestamp":1607098248,"output":"quest_desc: nil, updated_at: ~N[2020-12-04 16:10:48.648670]}\n\u001b[0m\u001b[22m\n16:10:48.663 [info] Period"},{"event":"cmd_output","timestamp":1607098248,"output":"ic from module Elixir.Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.STMHandler.Ini"},{"event":"cmd_output","timestamp":1607098248,"output":"tializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Initia"},{"event":"cmd_output","timestamp":1607098248,"output":"lizingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], cooling_time_"},{"event":"cmd_output","timestamp":1607098248,"output":"sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher_cb: #Function<"},{"event":"cmd_output","timestamp":1607098248,"output":"0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, returning: [:id,"},{"event":"cmd_output","timestamp":1607098248,"output":" :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model"},{"event":"cmd_output","timestamp":1607098248,"output":".Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:48.664 [info] Periodic from module Elixir.Ppl.PplS"},{"event":"cmd_output","timestamp":1607098248,"output":"ubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: "},{"event":"cmd_output","timestamp":1607098248,"output":"100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurrin"},{"event":"cmd_output","timestamp":1607098248,"output":"g args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits."},{"event":"cmd_output","timestamp":1607098248,"output":"Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:"},{"event":"cmd_output","timestamp":1607098248,"output":"id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubI"},{"event":"cmd_output","timestamp":1607098248,"output":"nits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:48.665 [info] Periodic from modul"},{"event":"cmd_output","timestamp":1607098248,"output":"e Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler.Fetchi"},{"event":"cmd_output","timestamp":1607098248,"output":"ngState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-Fetchi"},{"event":"cmd_output","timestamp":1607098248,"output":"ngState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"done\"], cooling_time_"},{"event":"cmd_output","timestamp":1607098248,"output":"sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fetching\", publisher_cb:"},{"event":"cmd_output","timestamp":1607098248,"output":" :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :reco"},{"event":"cmd_output","timestamp":1607098248,"output":"very_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098248,"output":"\n16:10:48.666 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CompilationState with n"},{"event":"cmd_output","timestamp":1607098248,"output":"ame Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 100 ms, metric_name: {\"Ppl.beholde"},{"event":"cmd_output","timestamp":1607098248,"output":"r-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurring args: %{allowed_states: [\"re"},{"event":"cmd_output","timestamp":1607098248,"output":"gular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInit"},{"event":"cmd_output","timestamp":1607098248,"output":"s.Model.PplSubInits, observed_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returni"},{"event":"cmd_output","timestamp":1607098248,"output":"ng: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.P"},{"event":"cmd_output","timestamp":1607098248,"output":"plSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:48.667 [info] Periodic from"},{"event":"cmd_output","timestamp":1607098248,"output":" module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHandl"},{"event":"cmd_output","timestamp":1607098248,"output":"er.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHa"},{"event":"cmd_output","timestamp":1607098248,"output":"ndler-RegularInitState\"]}, recurring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, initial_"},{"event":"cmd_output","timestamp":1607098248,"output":"query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_init\", publisher_cb: :skip, repo:"},{"event":"cmd_output","timestamp":1607098248,"output":" Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :"},{"event":"cmd_output","timestamp":1607098248,"output":"ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:48.777"},{"event":"cmd_output","timestamp":1607098248,"output":" [info] ppl_id: d8034d8f-12a2-4ef3-8f0d-bce2504f549b, type: PplRequests, event: persisted source_ar"},{"event":"cmd_output","timestamp":1607098248,"output":"gs for pipeline: d8034d8f-12a2-4ef3-8f0d-bce2504f549b, origin: Elixir.Ppl.PplRequests.Model.PplReque"},{"event":"cmd_output","timestamp":1607098248,"output":"stsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:48.780 [info] ppl_id: d8034d8f-12a2-4ef3-8f0d-b"},{"event":"cmd_output","timestamp":1607098248,"output":"ce2504f549b, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098248,"output":"Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:48.799 [info] ppl_id: d8034d8f-1"},{"event":"cmd_output","timestamp":1607098248,"output":"2a2-4ef3-8f0d-bce2504f549b, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery"},{"event":"cmd_output","timestamp":1607098248,"output":"_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:48.825 [info] "},{"event":"cmd_output","timestamp":1607098248,"output":" ppl_id: d8034d8f-12a2-4ef3-8f0d-bce2504f549b, type: PplRequests, event: persisted definition for re"},{"event":"cmd_output","timestamp":1607098248,"output":"quest with request_token: 45cb7b0a-364b-11eb-b64c-5254005464e2, origin: Elixir.Ppl.PplRequests.Model"},{"event":"cmd_output","timestamp":1607098248,"output":".PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:48.830 [info] Queue persisted: {:o"},{"event":"cmd_output","timestamp":1607098248,"output":"k, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020"},{"event":"cmd_output","timestamp":1607098248,"output":"-12-04 16:10:48.828005], name: \"master-.semaphore/semaphore.yml\", organization_id: \"51cc334b-3685-4f"},{"event":"cmd_output","timestamp":1607098248,"output":"cb-82f1-0fba75e08725\", project_id: \"563e5688-34e4-43b1-b555-845779807f4e\", queue_id: \"a370a0a4-4731-"},{"event":"cmd_output","timestamp":1607098248,"output":"45c9-90e4-db4ad2e9b34b\", scope: \"project\", updated_at: ~N[2020-12-04 16:10:48.828039], user_generate"},{"event":"cmd_output","timestamp":1607098248,"output":"d: false}}\n\u001b[0m\u001b[22m\n16:10:48.837 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandle"},{"event":"cmd_output","timestamp":1607098248,"output":"r.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:48.837 [info] ppl_id: d8034d8f-12a2-4ef3-8f0"},{"event":"cmd_output","timestamp":1607098248,"output":"d-bce2504f549b, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count"},{"event":"cmd_output","timestamp":1607098248,"output":": 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:"},{"event":"cmd_output","timestamp":1607098248,"output":"48.847 [info] ppl_id: d8034d8f-12a2-4ef3-8f0d-bce2504f549b, type: PplSubInits, state: done, result:"},{"event":"cmd_output","timestamp":1607098248,"output":" passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/"},{"event":"cmd_output","timestamp":1607098248,"output":"1(L90), \n\u001b[0m\u001b[22m\n16:10:48.861 [info] ppl_id: d8034d8f-12a2-4ef3-8f0d-bce2504f549b, type: Ppls, "},{"event":"cmd_output","timestamp":1607098248,"output":"state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_"},{"event":"cmd_output","timestamp":1607098249,"output":"change/1(L90), \n\u001b[0m\u001b[22m\n16:10:49.173 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.Pen"},{"event":"cmd_output","timestamp":1607098249,"output":"dingState with name Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.be"},{"event":"cmd_output","timestamp":1607098249,"output":"holder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"pending\""},{"event":"cmd_output","timestamp":1607098249,"output":", \"queuing\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_s"},{"event":"cmd_output","timestamp":1607098249,"output":"tate: \"pending\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, re"},{"event":"cmd_output","timestamp":1607098249,"output":"po: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count"},{"event":"cmd_output","timestamp":1607098249,"output":", :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:10:49.2"},{"event":"cmd_output","timestamp":1607098249,"output":"86 [info] ppl_id: d8034d8f-12a2-4ef3-8f0d-bce2504f549b, type: Ppls, state: done, result: canceled, "},{"event":"cmd_output","timestamp":1607098249,"output":"event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \r"},{"event":"cmd_output","timestamp":1607098249,"output":"\n\u001b[0m\u001b[32m\r * test cancel pipeline in pending state (1110.6ms)\u001b[0m\n * test stop pipeline in runni"},{"event":"cmd_output","timestamp":1607098249,"output":"ng state\u001b[22m\n16:10:49.751 [info] ppl_id: 1722b23a-9c6b-4f51-a214-c362520c0d57, type: PplRequests,"},{"event":"cmd_output","timestamp":1607098249,"output":" event: persisted schedule request with request_token: 46759fa4-364b-11eb-96e2-5254005464e2, origin:"},{"event":"cmd_output","timestamp":1607098249,"output":" Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:49.759 "},{"event":"cmd_output","timestamp":1607098249,"output":"[info] ppl_id: 1722b23a-9c6b-4f51-a214-c362520c0d57, type: Ppls, state: initializing, event: initia"},{"event":"cmd_output","timestamp":1607098249,"output":"lizing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098249,"output":"m\u001b[22m\n16:10:49.765 [info] Persisted ppl_sub_init for pipeline with ppl_id: 1722b23a-9c6b-4f51-a21"},{"event":"cmd_output","timestamp":1607098249,"output":"4-c362520c0d57: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipelin"},{"event":"cmd_output","timestamp":1607098249,"output":"e_sub_inits\">, compile_task_id: nil, error_description: nil, id: 111, in_scheduling: false, init_typ"},{"event":"cmd_output","timestamp":1607098249,"output":"e: \"regular\", inserted_at: ~N[2020-12-04 16:10:49.760971], pipeline_requests: #Ecto.Association.NotL"},{"event":"cmd_output","timestamp":1607098249,"output":"oaded, ppl_id: \"1722b23a-9c6b-4f51-a214-c362520c0d57\","},{"event":"cmd_output","timestamp":1607098249,"output":" recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, termi"},{"event":"cmd_output","timestamp":1607098249,"output":"nate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:49.760982]}\n\u001b[0m\u001b[22m\n16:10:49.769 [info] "},{"event":"cmd_output","timestamp":1607098249,"output":" Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.STMHand"},{"event":"cmd_output","timestamp":1607098249,"output":"ler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler"},{"event":"cmd_output","timestamp":1607098249,"output":"-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], coolin"},{"event":"cmd_output","timestamp":1607098249,"output":"g_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher_cb: #Fu"},{"event":"cmd_output","timestamp":1607098249,"output":"nction<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, returning"},{"event":"cmd_output","timestamp":1607098249,"output":": [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098249,"output":"s.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:49.770 [info] Periodic from module Elixir.P"},{"event":"cmd_output","timestamp":1607098249,"output":"pl.PplSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: p"},{"event":"cmd_output","timestamp":1607098249,"output":"eriod: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, r"},{"event":"cmd_output","timestamp":1607098249,"output":"ecurring args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSu"},{"event":"cmd_output","timestamp":1607098249,"output":"bInits.Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, return"},{"event":"cmd_output","timestamp":1607098249,"output":"ing: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl."},{"event":"cmd_output","timestamp":1607098249,"output":"PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:49.771 [info] Periodic fro"},{"event":"cmd_output","timestamp":1607098249,"output":"m module Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler"},{"event":"cmd_output","timestamp":1607098249,"output":".FetchingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler"},{"event":"cmd_output","timestamp":1607098249,"output":"-FetchingState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"done\"], coolin"},{"event":"cmd_output","timestamp":1607098249,"output":"g_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fetching\", publis"},{"event":"cmd_output","timestamp":1607098249,"output":"her_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result"},{"event":"cmd_output","timestamp":1607098249,"output":", :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0"},{"event":"cmd_output","timestamp":1607098249,"output":"m\u001b[22m\n16:10:49.772 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CompilationState"},{"event":"cmd_output","timestamp":1607098249,"output":" with name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 100 ms, metric_name: {\"Ppl."},{"event":"cmd_output","timestamp":1607098249,"output":"beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurring args: %{allowed_state"},{"event":"cmd_output","timestamp":1607098249,"output":"s: [\"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098249,"output":"SubInits.Model.PplSubInits, observed_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, "},{"event":"cmd_output","timestamp":1607098249,"output":"returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema"},{"event":"cmd_output","timestamp":1607098249,"output":": Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:49.773 [info] Period"},{"event":"cmd_output","timestamp":1607098249,"output":"ic from module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.S"},{"event":"cmd_output","timestamp":1607098249,"output":"TMHandler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInit"},{"event":"cmd_output","timestamp":1607098249,"output":"s-STMHandler-RegularInitState\"]}, recurring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, i"},{"event":"cmd_output","timestamp":1607098249,"output":"nitial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_init\", publisher_cb: :skip"},{"event":"cmd_output","timestamp":1607098249,"output":", repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_c"},{"event":"cmd_output","timestamp":1607098249,"output":"ount, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10"},{"event":"cmd_output","timestamp":1607098249,"output":":49.881 [info] ppl_id: 1722b23a-9c6b-4f51-a214-c362520c0d57, type: PplRequests, event: persisted so"},{"event":"cmd_output","timestamp":1607098249,"output":"urce_args for pipeline: 1722b23a-9c6b-4f51-a214-c362520c0d57, origin: Elixir.Ppl.PplRequests.Model.P"},{"event":"cmd_output","timestamp":1607098249,"output":"plRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:49.884 [info] ppl_id: 1722b23a-9c6b-4f51"},{"event":"cmd_output","timestamp":1607098249,"output":"-a214-c362520c0d57, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098249,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:49.912 [info] ppl_id: 172"},{"event":"cmd_output","timestamp":1607098249,"output":"2b23a-9c6b-4f51-a214-c362520c0d57, type: PplSubInits, state: regular_init, event: exit_scheduling, r"},{"event":"cmd_output","timestamp":1607098249,"output":"ecovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:49.953 "},{"event":"cmd_output","timestamp":1607098249,"output":"[info] ppl_id: 1722b23a-9c6b-4f51-a214-c362520c0d57, type: PplRequests, event: persisted definition"},{"event":"cmd_output","timestamp":1607098249,"output":" for request with request_token: 46759fa4-364b-11eb-96e2-5254005464e2, origin: Elixir.Ppl.PplRequest"},{"event":"cmd_output","timestamp":1607098249,"output":"s.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:49.958 [info] Queue persist"},{"event":"cmd_output","timestamp":1607098249,"output":"ed: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: "},{"event":"cmd_output","timestamp":1607098249,"output":"~N[2020-12-04 16:10:49.956637], name: \"master-.semaphore/semaphore.yml\", organization_id: \"2199bd8f-"},{"event":"cmd_output","timestamp":1607098249,"output":"d996-4bc6-a899-9f5fdea74569\", project_id: \"0db815a9-b5ff-4041-84f2-962649cf59b8\", queue_id: \"3ca8c62"},{"event":"cmd_output","timestamp":1607098249,"output":"e-2d04-415f-927d-3a33c84f903d\", scope: \"project\", updated_at: ~N[2020-12-04 16:10:49.956650], user_g"},{"event":"cmd_output","timestamp":1607098249,"output":"enerated: false}}\n\u001b[0m\u001b[22m\n16:10:49.965 [info] event: created, origin: Elixir.Ppl.PplSubInits.ST"},{"event":"cmd_output","timestamp":1607098249,"output":"MHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:49.965 [info] ppl_id: 1722b23a-9c6b-4"},{"event":"cmd_output","timestamp":1607098249,"output":"f51-a214-c362520c0d57, type: PplBlocks, block_index: 0, state: initializing, event: created, recover"},{"event":"cmd_output","timestamp":1607098249,"output":"y_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098249,"output":"\n16:10:49.968 [info] ppl_id: 1722b23a-9c6b-4f51-a214-c362520c0d57, type: PplSubInits, state: done, "},{"event":"cmd_output","timestamp":1607098249,"output":"result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_"},{"event":"cmd_output","timestamp":1607098249,"output":"change/1(L90), \n\u001b[0m\u001b[22m\n16:10:49.980 [info] ppl_id: 1722b23a-9c6b-4f51-a214-c362520c0d57, type:"},{"event":"cmd_output","timestamp":1607098249,"output":" Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098250,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:50.275 [info] Periodic from module Elixir.Ppl.Ppls.STMHand"},{"event":"cmd_output","timestamp":1607098250,"output":"ler.PendingState with name Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 100 ms, metric_name: {"},{"event":"cmd_output","timestamp":1607098250,"output":"\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"p"},{"event":"cmd_output","timestamp":1607098250,"output":"ending\", \"queuing\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, obs"},{"event":"cmd_output","timestamp":1607098250,"output":"erved_state: \"pending\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler.PendingState.args"},{"event":"cmd_output","timestamp":1607098250,"output":"/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recover"},{"event":"cmd_output","timestamp":1607098250,"output":"y_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098250,"output":"10:50.276 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.QueuingState with name Elixir.Ppl."},{"event":"cmd_output","timestamp":1607098250,"output":"Ppls.STMHandler.QueuingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STM"},{"event":"cmd_output","timestamp":1607098250,"output":"Handler-QueuingState\"]}, recurring args: %{allowed_states: [\"queuing\", \"running\", \"done\"], cooling_t"},{"event":"cmd_output","timestamp":1607098250,"output":"ime_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", publisher_cb: #Function<"},{"event":"cmd_output","timestamp":1607098250,"output":"0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :ter"},{"event":"cmd_output","timestamp":1607098250,"output":"minate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls"},{"event":"cmd_output","timestamp":1607098250,"output":", task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:50.382 [info] ppl_id: 1722b23a-9c6b-4f51-a214-c362520c0"},{"event":"cmd_output","timestamp":1607098250,"output":"d57, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.ST"},{"event":"cmd_output","timestamp":1607098250,"output":"M.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:50.394 [info] ppl_id: 1722b23a-9c6b-4f51-a214-c3"},{"event":"cmd_output","timestamp":1607098250,"output":"62520c0d57, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Lo"},{"event":"cmd_output","timestamp":1607098250,"output":"oper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:50.781 [info] Periodic from module Elixir"},{"event":"cmd_output","timestamp":1607098250,"output":".Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHandler.RunningState :: period: 100 m"},{"event":"cmd_output","timestamp":1607098250,"output":"s, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring args: %{al"},{"event":"cmd_output","timestamp":1607098250,"output":"lowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.P"},{"event":"cmd_output","timestamp":1607098250,"output":"pls, observed_state: \"running\", publisher_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler.RunningS"},{"event":"cmd_output","timestamp":1607098250,"output":"tate.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result,"},{"event":"cmd_output","timestamp":1607098250,"output":" :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098250,"output":"[22m\n16:10:50.892 [info] ppl_id: 1722b23a-9c6b-4f51-a214-c362520c0d57, type: Ppls, state: stopping"},{"event":"cmd_output","timestamp":1607098250,"output":", event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90),"},{"event":"cmd_output","timestamp":1607098251,"output":" \n\u001b[0m\u001b[22m\n16:10:51.285 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.Initializing"},{"event":"cmd_output","timestamp":1607098251,"output":"State with name Elixir.Ppl.PplBlocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\""},{"event":"cmd_output","timestamp":1607098251,"output":"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_st"},{"event":"cmd_output","timestamp":1607098251,"output":"ates: [\"initializing\", \"waiting\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.P"},{"event":"cmd_output","timestamp":1607098251,"output":"plBlocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, "},{"event":"cmd_output","timestamp":1607098251,"output":":terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: P"},{"event":"cmd_output","timestamp":1607098251,"output":"pl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:51.286 [info] Periodic from"},{"event":"cmd_output","timestamp":1607098251,"output":" module Elixir.Ppl.PplBlocks.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler.Waiti"},{"event":"cmd_output","timestamp":1607098251,"output":"ngState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-Waiting"},{"event":"cmd_output","timestamp":1607098251,"output":"State\"]}, recurring args: %{allowed_states: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 0, ini"},{"event":"cmd_output","timestamp":1607098251,"output":"tial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"waiting\", publisher_cb: #Function<0.8975"},{"event":"cmd_output","timestamp":1607098251,"output":"022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :termin"},{"event":"cmd_output","timestamp":1607098251,"output":"ate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplB"},{"event":"cmd_output","timestamp":1607098251,"output":"locks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:51.287 [info] Periodic from module"},{"event":"cmd_output","timestamp":1607098251,"output":" Elixir.Ppl.Ppls.STMHandler.StoppingState with name Elixir.Ppl.Ppls.STMHandler.StoppingState :: peri"},{"event":"cmd_output","timestamp":1607098251,"output":"od: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring "},{"event":"cmd_output","timestamp":1607098251,"output":"args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Pp"},{"event":"cmd_output","timestamp":1607098251,"output":"ls, observed_state: \"stopping\", publisher_cb: #Function<0.71803493/1 in Ppl.Ppls.STMHandler.Stopping"},{"event":"cmd_output","timestamp":1607098251,"output":"State.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result"},{"event":"cmd_output","timestamp":1607098251,"output":", :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:"},{"event":"cmd_output","timestamp":1607098251,"output":"51.392 [info] ppl_id: 1722b23a-9c6b-4f51-a214-c362520c0d57, type: PplBlocks, block_index: 0, state:"},{"event":"cmd_output","timestamp":1607098251,"output":" done, result: canceled, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.l"},{"event":"cmd_output","timestamp":1607098251,"output":"og_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:51.399 [info] ppl_id: 1722b23a-9c6b-4f51-a214-c362520c0d"},{"event":"cmd_output","timestamp":1607098251,"output":"57, type: Ppls, state: done, result: stopped, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098251,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test stop pipeline in running state (21"},{"event":"cmd_output","timestamp":1607098251,"output":"11.9ms)\u001b[0m\n * test stop pipeline in initializing state\r * test stop pipeline in initializing sta"},{"event":"cmd_output","timestamp":1607098251,"output":"te (skipped)\n\nPpl.Looper.Ppls.StateTransition.Test\n * test Ppls looper transitions - validation "},{"event":"cmd_output","timestamp":1607098251,"output":"fail\u001b[22m\n16:10:51.880 [info] ppl_id: 3d5e28b4-7dd5-495f-a88c-4a3be692a5db, type: PplRequests, eve"},{"event":"cmd_output","timestamp":1607098251,"output":"nt: persisted schedule request with request_token: 47ba52d8-364b-11eb-a9c9-5254005464e2, origin: Eli"},{"event":"cmd_output","timestamp":1607098251,"output":"xir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:51.891 [inf"},{"event":"cmd_output","timestamp":1607098251,"output":"o] ppl_id: 16a7e88a-8014-4b69-a5ae-a550e6e4bb7b, type: PplRequests, event: persisted schedule reque"},{"event":"cmd_output","timestamp":1607098251,"output":"st with request_token: 47bbf016-364b-11eb-bf1f-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.Pp"},{"event":"cmd_output","timestamp":1607098251,"output":"lRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:51.907 [info] ppl_id: 16a7e88a-8014-4b"},{"event":"cmd_output","timestamp":1607098251,"output":"69-a5ae-a550e6e4bb7b, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098251,"output":"n: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:51.912 [info] Per"},{"event":"cmd_output","timestamp":1607098251,"output":"sisted ppl_sub_init for pipeline with ppl_id: 16a7e88a-8014-4b69-a5ae-a550e6e4bb7b: %Ppl.PplSubInits"},{"event":"cmd_output","timestamp":1607098251,"output":".Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: "},{"event":"cmd_output","timestamp":1607098251,"output":"nil, error_description: nil, id: 112, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[20"},{"event":"cmd_output","timestamp":1607098251,"output":"20-12-04 16:10:51.908714], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"16a7e88a-8014-4b69-a5ae-a550e6e4bb7b\", recovery_count: 0, result: nil,"},{"event":"cmd_output","timestamp":1607098251,"output":" result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_"},{"event":"cmd_output","timestamp":1607098251,"output":"at: ~N[2020-12-04 16:10:51.908729]}\n\u001b[0m\u001b[22m\n16:10:51.912 [info] Periodic from module Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098251,"output":".Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period:"},{"event":"cmd_output","timestamp":1607098251,"output":" 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring"},{"event":"cmd_output","timestamp":1607098251,"output":" args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Pp"},{"event":"cmd_output","timestamp":1607098251,"output":"l.Ppls.Model.Ppls, observed_state: \"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls"},{"event":"cmd_output","timestamp":1607098251,"output":".STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :upd"},{"event":"cmd_output","timestamp":1607098251,"output":"ated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :"},{"event":"cmd_output","timestamp":1607098251,"output":"skip}\n\u001b[0m\u001b[22m\n16:10:51.913 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.Create"},{"event":"cmd_output","timestamp":1607098251,"output":"dState with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 100 ms, metric_name: {\"Pp"},{"event":"cmd_output","timestamp":1607098251,"output":"l.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args: %{allowed_states:"},{"event":"cmd_output","timestamp":1607098251,"output":" [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observ"},{"event":"cmd_output","timestamp":1607098251,"output":"ed_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :"},{"event":"cmd_output","timestamp":1607098251,"output":"updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, t"},{"event":"cmd_output","timestamp":1607098251,"output":"ask_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:51.914 [info] Periodic from module Elixir.Ppl.PplSubInits."},{"event":"cmd_output","timestamp":1607098251,"output":"STMHandler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 ms"},{"event":"cmd_output","timestamp":1607098251,"output":", metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring arg"},{"event":"cmd_output","timestamp":1607098251,"output":"s: %{allowed_states: [\"regular_init\", \"compilation\", \"done\"], cooling_time_sec: -2, initial_query: P"},{"event":"cmd_output","timestamp":1607098251,"output":"pl.PplSubInits.Model.PplSubInits, observed_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRep"},{"event":"cmd_output","timestamp":1607098251,"output":"o, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], sch"},{"event":"cmd_output","timestamp":1607098251,"output":"ema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:51.917 [info] Per"},{"event":"cmd_output","timestamp":1607098251,"output":"iodic from module Elixir.Ppl.PplSubInits.STMHandler.CompilationState with name Elixir.Ppl.PplSubInit"},{"event":"cmd_output","timestamp":1607098251,"output":"s.STMHandler.CompilationState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubI"},{"event":"cmd_output","timestamp":1607098251,"output":"nits-STMHandler-CompilationState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation"},{"event":"cmd_output","timestamp":1607098251,"output":"\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, obse"},{"event":"cmd_output","timestamp":1607098251,"output":"rved_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_requ"},{"event":"cmd_output","timestamp":1607098251,"output":"est, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubIn"},{"event":"cmd_output","timestamp":1607098251,"output":"its, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:51.918 [info] Periodic from module Elixir.Ppl.PplSub"},{"event":"cmd_output","timestamp":1607098251,"output":"Inits.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: pe"},{"event":"cmd_output","timestamp":1607098251,"output":"riod: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}"},{"event":"cmd_output","timestamp":1607098251,"output":", recurring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Mo"},{"event":"cmd_output","timestamp":1607098251,"output":"del.PplSubInits, observed_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning:"},{"event":"cmd_output","timestamp":1607098251,"output":" [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplS"},{"event":"cmd_output","timestamp":1607098252,"output":"ubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:52.029 [info] ppl_id: 16a7e88a"},{"event":"cmd_output","timestamp":1607098252,"output":"-8014-4b69-a5ae-a550e6e4bb7b, type: PplRequests, event: persisted source_args for pipeline: 16a7e88a"},{"event":"cmd_output","timestamp":1607098252,"output":"-8014-4b69-a5ae-a550e6e4bb7b, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/"},{"event":"cmd_output","timestamp":1607098252,"output":"2(L89), \n\u001b[0m\u001b[22m\n16:10:52.031 [info] ppl_id: 16a7e88a-8014-4b69-a5ae-a550e6e4bb7b, type: PplSub"},{"event":"cmd_output","timestamp":1607098252,"output":"Inits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.lo"},{"event":"cmd_output","timestamp":1607098252,"output":"g_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:52.060 [info] ppl_id: 16a7e88a-8014-4b69-a5ae-a550e6e4bb7"},{"event":"cmd_output","timestamp":1607098252,"output":"b, type: PplSubInits, state: done, result: failed, event: exit_scheduling, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098252,"output":": Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:52.076 [info] ppl_id: 16a7e88a"},{"event":"cmd_output","timestamp":1607098252,"output":"-8014-4b69-a5ae-a550e6e4bb7b, type: Ppls, state: done, result: failed, event: exit_scheduling, recov"},{"event":"cmd_output","timestamp":1607098252,"output":"ery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test Ppls loop"},{"event":"cmd_output","timestamp":1607098252,"output":"er transitions - validation fail (627.8ms)\u001b[0m\n * test Ppls looper transitions - pass\u001b[22m\n16:10:"},{"event":"cmd_output","timestamp":1607098252,"output":"52.500 [info] ppl_id: 874532bc-ef2c-4d07-ba1d-fb51592d996b, type: PplRequests, event: persisted sch"},{"event":"cmd_output","timestamp":1607098252,"output":"edule request with request_token: 4818a644-364b-11eb-b4fe-5254005464e2, origin: Elixir.Ppl.PplReques"},{"event":"cmd_output","timestamp":1607098252,"output":"ts.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:52.510 [info] ppl_id: 1290f"},{"event":"cmd_output","timestamp":1607098252,"output":"372-9191-4a92-8309-eff9e417226f, type: PplRequests, event: persisted schedule request with request_t"},{"event":"cmd_output","timestamp":1607098252,"output":"oken: 481a1d26-364b-11eb-8405-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries."},{"event":"cmd_output","timestamp":1607098252,"output":"process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:52.518 [info] ppl_id: 874532bc-ef2c-4d07-ba1d-fb51592d9"},{"event":"cmd_output","timestamp":1607098252,"output":"96b, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098252,"output":"s.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:52.522 [info] Persisted ppl_sub_in"},{"event":"cmd_output","timestamp":1607098252,"output":"it for pipeline with ppl_id: 874532bc-ef2c-4d07-ba1d-fb51592d996b: %Ppl.PplSubInits.Model.PplSubInit"},{"event":"cmd_output","timestamp":1607098252,"output":"s{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_descri"},{"event":"cmd_output","timestamp":1607098252,"output":"ption: nil, id: 113, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:10:52"},{"event":"cmd_output","timestamp":1607098252,"output":".519748], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"874532bc-ef2c-4d07-ba1d-fb51592d996b\", recovery_count: 0, result: nil, result_reason: n"},{"event":"cmd_output","timestamp":1607098252,"output":"il, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04"},{"event":"cmd_output","timestamp":1607098252,"output":" 16:10:52.519762]}\n\u001b[0m\u001b[22m\n16:10:52.531 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHan"},{"event":"cmd_output","timestamp":1607098252,"output":"dler.InitializingState with name Elixir.Ppl.PplBlocks.STMHandler.InitializingState :: period: 100 ms"},{"event":"cmd_output","timestamp":1607098252,"output":", metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-InitializingState\"]}, recurring a"},{"event":"cmd_output","timestamp":1607098252,"output":"rgs: %{allowed_states: [\"initializing\", \"waiting\", \"done\"], cooling_time_sec: 0, initial_query: Ppl."},{"event":"cmd_output","timestamp":1607098252,"output":"PplBlocks.Model.PplBlocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, "},{"event":"cmd_output","timestamp":1607098252,"output":"returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_"},{"event":"cmd_output","timestamp":1607098252,"output":"index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:52.531 [inf"},{"event":"cmd_output","timestamp":1607098252,"output":"o] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks"},{"event":"cmd_output","timestamp":1607098252,"output":".STMHandler.WaitingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-S"},{"event":"cmd_output","timestamp":1607098252,"output":"TMHandler-WaitingState\"]}, recurring args: %{allowed_states: [\"waiting\", \"running\", \"done\"], cooling"},{"event":"cmd_output","timestamp":1607098252,"output":"_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"waiting\", publisher_cb:"},{"event":"cmd_output","timestamp":1607098252,"output":" #Function<0.8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, returni"},{"event":"cmd_output","timestamp":1607098252,"output":"ng: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index],"},{"event":"cmd_output","timestamp":1607098252,"output":" schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:52.532 [info] Per"},{"event":"cmd_output","timestamp":1607098252,"output":"iodic from module Elixir.Ppl.PplBlocks.STMHandler.RunningState with name Elixir.Ppl.PplBlocks.STMHan"},{"event":"cmd_output","timestamp":1607098252,"output":"dler.RunningState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandl"},{"event":"cmd_output","timestamp":1607098252,"output":"er-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_"},{"event":"cmd_output","timestamp":1607098252,"output":"sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"running\", publisher_cb: #Fun"},{"event":"cmd_output","timestamp":1607098252,"output":"ction<0.28166834/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: "},{"event":"cmd_output","timestamp":1607098252,"output":"[:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :blo"},{"event":"cmd_output","timestamp":1607098252,"output":"ck_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:52.532 [inf"},{"event":"cmd_output","timestamp":1607098252,"output":"o] Periodic from module Elixir.Block.Blocks.STMHandler.InitializingState with name Elixir.Block.Blo"},{"event":"cmd_output","timestamp":1607098252,"output":"cks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Bl"},{"event":"cmd_output","timestamp":1607098252,"output":"ocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling"},{"event":"cmd_output","timestamp":1607098252,"output":"_time_sec: 0, initial_query: Block.Blocks.Model.Blocks, observed_state: \"initializing\", publisher_cb"},{"event":"cmd_output","timestamp":1607098252,"output":": :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_c"},{"event":"cmd_output","timestamp":1607098252,"output":"ount, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:52.53"},{"event":"cmd_output","timestamp":1607098252,"output":"2 [info] Periodic from module Elixir.Block.Blocks.STMHandler.RunningState with name Elixir.Block.Bl"},{"event":"cmd_output","timestamp":1607098252,"output":"ocks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks"},{"event":"cmd_output","timestamp":1607098252,"output":"-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cool"},{"event":"cmd_output","timestamp":1607098252,"output":"ing_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"running\", publisher_cb:"},{"event":"cmd_output","timestamp":1607098252,"output":" :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_co"},{"event":"cmd_output","timestamp":1607098252,"output":"unt, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:52.532"},{"event":"cmd_output","timestamp":1607098252,"output":" [info] Periodic from module Elixir.Block.Tasks.STMHandler.PendingState with name Elixir.Block.Task"},{"event":"cmd_output","timestamp":1607098252,"output":"s.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STM"},{"event":"cmd_output","timestamp":1607098252,"output":"Handler-PendingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0,"},{"event":"cmd_output","timestamp":1607098252,"output":" initial_query: Block.Tasks.Model.Tasks, observed_state: \"pending\", publisher_cb: :skip, repo: Block"},{"event":"cmd_output","timestamp":1607098252,"output":".EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id, :bu"},{"event":"cmd_output","timestamp":1607098252,"output":"ild_request_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:52.533 ["},{"event":"cmd_output","timestamp":1607098252,"output":"info] Periodic from module Elixir.Block.Tasks.STMHandler.RunningState with name Elixir.Block.Tasks."},{"event":"cmd_output","timestamp":1607098252,"output":"STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHa"},{"event":"cmd_output","timestamp":1607098252,"output":"ndler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_ti"},{"event":"cmd_output","timestamp":1607098252,"output":"me_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"running\", publisher_cb: :skip, "},{"event":"cmd_output","timestamp":1607098252,"output":"repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :bl"},{"event":"cmd_output","timestamp":1607098252,"output":"ock_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:52.533 [info] P"},{"event":"cmd_output","timestamp":1607098252,"output":"eriodic from module Elixir.Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.STMHandle"},{"event":"cmd_output","timestamp":1607098252,"output":"r.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-I"},{"event":"cmd_output","timestamp":1607098252,"output":"nitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], cooling_"},{"event":"cmd_output","timestamp":1607098252,"output":"time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher_cb: #Func"},{"event":"cmd_output","timestamp":1607098252,"output":"tion<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, returning: "},{"event":"cmd_output","timestamp":1607098252,"output":"[:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls."},{"event":"cmd_output","timestamp":1607098252,"output":"Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:52.533 [info] Periodic from module Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098252,"output":".PplSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: per"},{"event":"cmd_output","timestamp":1607098252,"output":"iod: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, rec"},{"event":"cmd_output","timestamp":1607098252,"output":"urring args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubI"},{"event":"cmd_output","timestamp":1607098252,"output":"nits.Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returnin"},{"event":"cmd_output","timestamp":1607098252,"output":"g: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Pp"},{"event":"cmd_output","timestamp":1607098252,"output":"lSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:52.533 [info] Periodic from "},{"event":"cmd_output","timestamp":1607098252,"output":"module Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler.F"},{"event":"cmd_output","timestamp":1607098252,"output":"etchingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-F"},{"event":"cmd_output","timestamp":1607098252,"output":"etchingState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"done\"], cooling_"},{"event":"cmd_output","timestamp":1607098252,"output":"time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fetching\", publishe"},{"event":"cmd_output","timestamp":1607098252,"output":"r_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, "},{"event":"cmd_output","timestamp":1607098252,"output":":recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098252,"output":"[22m\n16:10:52.534 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CompilationState w"},{"event":"cmd_output","timestamp":1607098252,"output":"ith name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 100 ms, metric_name: {\"Ppl.be"},{"event":"cmd_output","timestamp":1607098252,"output":"holder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurring args: %{allowed_states:"},{"event":"cmd_output","timestamp":1607098252,"output":" [\"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSu"},{"event":"cmd_output","timestamp":1607098252,"output":"bInits.Model.PplSubInits, observed_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, re"},{"event":"cmd_output","timestamp":1607098252,"output":"turning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: "},{"event":"cmd_output","timestamp":1607098252,"output":"Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:52.534 [info] Periodic"},{"event":"cmd_output","timestamp":1607098252,"output":" from module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.STM"},{"event":"cmd_output","timestamp":1607098252,"output":"Handler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-"},{"event":"cmd_output","timestamp":1607098252,"output":"STMHandler-RegularInitState\"]}, recurring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, ini"},{"event":"cmd_output","timestamp":1607098252,"output":"tial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_init\", publisher_cb: :skip, "},{"event":"cmd_output","timestamp":1607098252,"output":"repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_cou"},{"event":"cmd_output","timestamp":1607098252,"output":"nt, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:5"},{"event":"cmd_output","timestamp":1607098252,"output":"2.647 [info] ppl_id: 874532bc-ef2c-4d07-ba1d-fb51592d996b, type: PplRequests, event: persisted sour"},{"event":"cmd_output","timestamp":1607098252,"output":"ce_args for pipeline: 874532bc-ef2c-4d07-ba1d-fb51592d996b, origin: Elixir.Ppl.PplRequests.Model.Ppl"},{"event":"cmd_output","timestamp":1607098252,"output":"RequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:52.650 [info] ppl_id: 874532bc-ef2c-4d07-b"},{"event":"cmd_output","timestamp":1607098252,"output":"a1d-fb51592d996b, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098252,"output":"gin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:52.680 [info] ppl_id: 87453"},{"event":"cmd_output","timestamp":1607098252,"output":"2bc-ef2c-4d07-ba1d-fb51592d996b, type: PplSubInits, state: regular_init, event: exit_scheduling, rec"},{"event":"cmd_output","timestamp":1607098252,"output":"overy_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:52.722 [i"},{"event":"cmd_output","timestamp":1607098252,"output":"nfo] ppl_id: 874532bc-ef2c-4d07-ba1d-fb51592d996b, type: PplRequests, event: persisted definition f"},{"event":"cmd_output","timestamp":1607098252,"output":"or request with request_token: 4818a644-364b-11eb-b4fe-5254005464e2, origin: Elixir.Ppl.PplRequests."},{"event":"cmd_output","timestamp":1607098252,"output":"Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:52.730 [info] Queue persisted"},{"event":"cmd_output","timestamp":1607098252,"output":": {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N"},{"event":"cmd_output","timestamp":1607098252,"output":"[2020-12-04 16:10:52.727093], name: \"master-.semaphore/semaphore.yml\", organization_id: \"39fa6eac-79"},{"event":"cmd_output","timestamp":1607098252,"output":"95-4130-b3a3-6fc9e4a36754\", project_id: \"53e186c3-60fa-4c7d-b4c2-dcdf763bb1d8\", queue_id: \"8c9753f5-"},{"event":"cmd_output","timestamp":1607098252,"output":"e57d-439a-9c93-ce12bffe54ef\", scope: \"project\", updated_at: ~N[2020-12-04 16:10:52.727107], user_gen"},{"event":"cmd_output","timestamp":1607098252,"output":"erated: false}}\n\u001b[0m\u001b[22m\n16:10:52.737 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMH"},{"event":"cmd_output","timestamp":1607098252,"output":"andler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:52.737 [info] ppl_id: 874532bc-ef2c-4d0"},{"event":"cmd_output","timestamp":1607098252,"output":"7-ba1d-fb51592d996b, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_"},{"event":"cmd_output","timestamp":1607098252,"output":"count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098252,"output":"6:10:52.742 [info] ppl_id: 874532bc-ef2c-4d07-ba1d-fb51592d996b, type: PplSubInits, state: done, re"},{"event":"cmd_output","timestamp":1607098252,"output":"sult: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_ch"},{"event":"cmd_output","timestamp":1607098252,"output":"ange/1(L90), \n\u001b[0m\u001b[22m\n16:10:52.758 [info] ppl_id: 874532bc-ef2c-4d07-ba1d-fb51592d996b, type: P"},{"event":"cmd_output","timestamp":1607098252,"output":"pls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_s"},{"event":"cmd_output","timestamp":1607098252,"output":"tate_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:52.759 [info] ppl_id: 874532bc-ef2c-4d07-ba1d-fb51592d996b, "},{"event":"cmd_output","timestamp":1607098252,"output":"type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098253,"output":"Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:53.038 [info] Periodic from modu"},{"event":"cmd_output","timestamp":1607098253,"output":"le Elixir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler.PendingState :: peri"},{"event":"cmd_output","timestamp":1607098253,"output":"od: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring a"},{"event":"cmd_output","timestamp":1607098253,"output":"rgs: %{allowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_sec: 0, initial_query"},{"event":"cmd_output","timestamp":1607098253,"output":": Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.ST"},{"event":"cmd_output","timestamp":1607098253,"output":"MHandler.PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at,"},{"event":"cmd_output","timestamp":1607098253,"output":" :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskS"},{"event":"cmd_output","timestamp":1607098253,"output":"upervisor}\n\u001b[0m\u001b[22m\n16:10:53.040 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.QueuingS"},{"event":"cmd_output","timestamp":1607098253,"output":"tate with name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, metric_name: {\"Ppl.beholde"},{"event":"cmd_output","timestamp":1607098253,"output":"r-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{allowed_states: [\"queuing\", \"ru"},{"event":"cmd_output","timestamp":1607098253,"output":"nning\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\""},{"event":"cmd_output","timestamp":1607098253,"output":", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.args/0>, repo: Ppl.EctoR"},{"event":"cmd_output","timestamp":1607098253,"output":"epo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], s"},{"event":"cmd_output","timestamp":1607098253,"output":"chema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:53.148 [info] ppl_id: 874532b"},{"event":"cmd_output","timestamp":1607098253,"output":"c-ef2c-4d07-ba1d-fb51592d996b, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0"},{"event":"cmd_output","timestamp":1607098253,"output":", origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:53.163 [info] ppl_id: "},{"event":"cmd_output","timestamp":1607098253,"output":"874532bc-ef2c-4d07-ba1d-fb51592d996b, type: Ppls, state: running, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098253,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:53.170 [info] P"},{"event":"cmd_output","timestamp":1607098253,"output":"plBlocks WaitingState STM is scheduling block 0 from pipeline: \"874532bc-ef2c-4d07-ba1d-fb51592d996b"},{"event":"cmd_output","timestamp":1607098253,"output":"\"\n\u001b[0m\u001b[22m\n16:10:53.176 [info] block_id: 6b29f299-99fe-4ef3-b904-c8455de5b433, type: BlockReques"},{"event":"cmd_output","timestamp":1607098253,"output":"ts, event: persisted block run request from ppl 874532bc-ef2c-4d07-ba1d-fb51592d996b for block 0, or"},{"event":"cmd_output","timestamp":1607098253,"output":"igin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098253,"output":":10:53.186 [info] block_id: 6b29f299-99fe-4ef3-b904-c8455de5b433, type: Blocks, state: initializing"},{"event":"cmd_output","timestamp":1607098253,"output":", event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L"},{"event":"cmd_output","timestamp":1607098253,"output":"43), \n\u001b[0m\u001b[22m\n16:10:53.192 [info] block_id: 6b29f299-99fe-4ef3-b904-c8455de5b433, type: BlockRe"},{"event":"cmd_output","timestamp":1607098253,"output":"quests, event: persisted build and sub_ppl details for block_request: 6b29f299-99fe-4ef3-b904-c8455d"},{"event":"cmd_output","timestamp":1607098253,"output":"e5b433, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098253,"output":"2m\n16:10:53.193 [info] Block 0 of pipeline with id: 874532bc-ef2c-4d07-ba1d-fb51592d996b scheduled"},{"event":"cmd_output","timestamp":1607098253,"output":" in block service with id: : \"6b29f299-99fe-4ef3-b904-c8455de5b433\"\n\u001b[0m\u001b[22m\n16:10:53.196 [info] "},{"event":"cmd_output","timestamp":1607098253,"output":" block_id: 6b29f299-99fe-4ef3-b904-c8455de5b433, type: Tasks, state: pending, event: created, recove"},{"event":"cmd_output","timestamp":1607098253,"output":"ry_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098253,"output":"16:10:53.198 [info] ppl_id: 874532bc-ef2c-4d07-ba1d-fb51592d996b, type: PplBlocks, block_index: 0, "},{"event":"cmd_output","timestamp":1607098253,"output":"state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_"},{"event":"cmd_output","timestamp":1607098253,"output":"change/1(L90), \n\u001b[0m\u001b[22m\n16:10:53.199 [info] block_id: 6b29f299-99fe-4ef3-b904-c8455de5b433, typ"},{"event":"cmd_output","timestamp":1607098253,"output":"e: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl"},{"event":"cmd_output","timestamp":1607098253,"output":".log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:53.222 [info] block_id: 6b29f299-99fe-4ef3-b904-c8455d"},{"event":"cmd_output","timestamp":1607098253,"output":"e5b433, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loope"},{"event":"cmd_output","timestamp":1607098253,"output":"r.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:53.280 [info] block_id: 6b29f299-99fe-4ef3-b"},{"event":"cmd_output","timestamp":1607098253,"output":"904-c8455de5b433, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098253,"output":"r.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:53.286 [info] block_id: 6b29f299-99fe"},{"event":"cmd_output","timestamp":1607098253,"output":"-4ef3-b904-c8455de5b433, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098253,"output":"n: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:53.295 [info] ppl_id: 874532b"},{"event":"cmd_output","timestamp":1607098253,"output":"c-ef2c-4d07-ba1d-fb51592d996b, block_id: 6b29f299-99fe-4ef3-b904-c8455de5b433, type: PplBlocks, bloc"},{"event":"cmd_output","timestamp":1607098253,"output":"k_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098253,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:53.548 [info] Periodic from module Elixi"},{"event":"cmd_output","timestamp":1607098253,"output":"r.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHandler.RunningState :: period: 100 "},{"event":"cmd_output","timestamp":1607098253,"output":"ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring args: %{a"},{"event":"cmd_output","timestamp":1607098253,"output":"llowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model."},{"event":"cmd_output","timestamp":1607098253,"output":"Ppls, observed_state: \"running\", publisher_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler.Running"},{"event":"cmd_output","timestamp":1607098253,"output":"State.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result"},{"event":"cmd_output","timestamp":1607098253,"output":", :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m"},{"event":"cmd_output","timestamp":1607098253,"output":"\u001b[22m\n16:10:53.663 [info] ppl_id: 874532bc-ef2c-4d07-ba1d-fb51592d996b, type: Ppls, state: done, r"},{"event":"cmd_output","timestamp":1607098253,"output":"esult: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098254,"output":"hange/1(L90), \n\u001b[0m\u001b[32m\r * test Ppls looper transitions - pass (1628.0ms)\u001b[0m\n * test Ppls loop"},{"event":"cmd_output","timestamp":1607098254,"output":"er transitions - pass and trace is set\u001b[22m\n16:10:54.123 [info] ppl_id: 6de08dd1-c0dc-4107-94ad-9b"},{"event":"cmd_output","timestamp":1607098254,"output":"fb22a67abf, type: PplRequests, event: persisted schedule request with request_token: 49106366-364b-1"},{"event":"cmd_output","timestamp":1607098254,"output":"1eb-b795-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L5"},{"event":"cmd_output","timestamp":1607098254,"output":"5), \n\u001b[0m\u001b[22m\n16:10:54.133 [info] ppl_id: 821a0424-288e-40b9-9163-536caaf377f1, type: PplRequest"},{"event":"cmd_output","timestamp":1607098254,"output":"s, event: persisted schedule request with request_token: 4912158a-364b-11eb-b082-5254005464e2, origi"},{"event":"cmd_output","timestamp":1607098254,"output":"n: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:54.14"},{"event":"cmd_output","timestamp":1607098254,"output":"6 [info] ppl_id: 6de08dd1-c0dc-4107-94ad-9bfb22a67abf, type: Ppls, state: initializing, event: init"},{"event":"cmd_output","timestamp":1607098254,"output":"ializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b"},{"event":"cmd_output","timestamp":1607098254,"output":"[0m\u001b[22m\n16:10:54.150 [info] Persisted ppl_sub_init for pipeline with ppl_id: 6de08dd1-c0dc-4107-9"},{"event":"cmd_output","timestamp":1607098254,"output":"4ad-9bfb22a67abf: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipel"},{"event":"cmd_output","timestamp":1607098254,"output":"ine_sub_inits\">, compile_task_id: nil, error_description: nil, id: 114, in_scheduling: false, init_t"},{"event":"cmd_output","timestamp":1607098254,"output":"ype: \"regular\", inserted_at: ~N[2020-12-04 16:10:54.148146], pipeline_requests: #Ecto.Association.No"},{"event":"cmd_output","timestamp":1607098254,"output":"tLoaded, ppl_id: \"6de08dd1-c0dc-4107-94ad-9bfb22a67abf"},{"event":"cmd_output","timestamp":1607098254,"output":"\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, ter"},{"event":"cmd_output","timestamp":1607098254,"output":"minate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:54.148162]}\n\u001b[0m\u001b[22m\n16:10:54.154 [info"},{"event":"cmd_output","timestamp":1607098254,"output":"] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.InitializingState with name Elixir.Ppl.PplBl"},{"event":"cmd_output","timestamp":1607098254,"output":"ocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppl"},{"event":"cmd_output","timestamp":1607098254,"output":"Blocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"waiting\""},{"event":"cmd_output","timestamp":1607098254,"output":", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"initi"},{"event":"cmd_output","timestamp":1607098254,"output":"alizing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at,"},{"event":"cmd_output","timestamp":1607098254,"output":" :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, ta"},{"event":"cmd_output","timestamp":1607098254,"output":"sk_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:54.155 [info] Periodic from module Elixir.Ppl.PplBlocks.STM"},{"event":"cmd_output","timestamp":1607098254,"output":"Handler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler.WaitingState :: period: 1000 ms, metr"},{"event":"cmd_output","timestamp":1607098254,"output":"ic_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurring args: %{allo"},{"event":"cmd_output","timestamp":1607098254,"output":"wed_states: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model."},{"event":"cmd_output","timestamp":1607098254,"output":"PplBlocks, observed_state: \"waiting\", publisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.STMHandle"},{"event":"cmd_output","timestamp":1607098254,"output":"r.WaitingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state"},{"event":"cmd_output","timestamp":1607098254,"output":", :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supe"},{"event":"cmd_output","timestamp":1607098254,"output":"rvisor: :skip}\n\u001b[0m\u001b[22m\n16:10:54.155 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler"},{"event":"cmd_output","timestamp":1607098254,"output":".RunningState with name Elixir.Ppl.PplBlocks.STMHandler.RunningState :: period: 1000 ms, metric_name"},{"event":"cmd_output","timestamp":1607098254,"output":": {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, recurring args: %{allowed_sta"},{"event":"cmd_output","timestamp":1607098254,"output":"tes: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBl"},{"event":"cmd_output","timestamp":1607098254,"output":"ocks, observed_state: \"running\", publisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHandler.Ru"},{"event":"cmd_output","timestamp":1607098254,"output":"nningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :r"},{"event":"cmd_output","timestamp":1607098254,"output":"esult, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, ta"},{"event":"cmd_output","timestamp":1607098254,"output":"sk_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:54.156 [info] Periodic from module Elixir.Block.Blocks.STMH"},{"event":"cmd_output","timestamp":1607098254,"output":"andler.InitializingState with name Elixir.Block.Blocks.STMHandler.InitializingState :: period: 100 m"},{"event":"cmd_output","timestamp":1607098254,"output":"s, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, recurring a"},{"event":"cmd_output","timestamp":1607098254,"output":"rgs: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Blocks.Model.B"},{"event":"cmd_output","timestamp":1607098254,"output":"locks, observed_state: \"initializing\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :"},{"event":"cmd_output","timestamp":1607098254,"output":"terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Bloc"},{"event":"cmd_output","timestamp":1607098254,"output":"ks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:54.157 [info] Periodic from module Elixir.Block.Block"},{"event":"cmd_output","timestamp":1607098254,"output":"s.STMHandler.RunningState with name Elixir.Block.Blocks.STMHandler.RunningState :: period: 100 ms, m"},{"event":"cmd_output","timestamp":1607098254,"output":"etric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-RunningState\"]}, recurring args: %{al"},{"event":"cmd_output","timestamp":1607098254,"output":"lowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Mod"},{"event":"cmd_output","timestamp":1607098254,"output":"el.Blocks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :t"},{"event":"cmd_output","timestamp":1607098254,"output":"erminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Block"},{"event":"cmd_output","timestamp":1607098254,"output":"s, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:54.158 [info] Periodic from module Elixir.Block.Tasks."},{"event":"cmd_output","timestamp":1607098254,"output":"STMHandler.PendingState with name Elixir.Block.Tasks.STMHandler.PendingState :: period: 100 ms, metr"},{"event":"cmd_output","timestamp":1607098254,"output":"ic_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingState\"]}, recurring args: %{allowe"},{"event":"cmd_output","timestamp":1607098254,"output":"d_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Tasks.Model.Tasks, observed"},{"event":"cmd_output","timestamp":1607098254,"output":"_state: \"pending\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :"},{"event":"cmd_output","timestamp":1607098254,"output":"updated_at, :state, :recovery_count, :block_id, :build_request_id], schema: Block.Tasks.Model.Tasks,"},{"event":"cmd_output","timestamp":1607098254,"output":" task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:54.158 [info] Periodic from module Elixir.Block.Tasks.ST"},{"event":"cmd_output","timestamp":1607098254,"output":"MHandler.RunningState with name Elixir.Block.Tasks.STMHandler.RunningState :: period: 100 ms, metric"},{"event":"cmd_output","timestamp":1607098254,"output":"_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningState\"]}, recurring args: %{allowed_"},{"event":"cmd_output","timestamp":1607098254,"output":"states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Task"},{"event":"cmd_output","timestamp":1607098254,"output":"s, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate"},{"event":"cmd_output","timestamp":1607098254,"output":"_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_su"},{"event":"cmd_output","timestamp":1607098254,"output":"pervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:54.159 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.In"},{"event":"cmd_output","timestamp":1607098254,"output":"itializingState with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms, metric_nam"},{"event":"cmd_output","timestamp":1607098254,"output":"e: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %{allowed_st"},{"event":"cmd_output","timestamp":1607098254,"output":"ates: [\"initializing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, "},{"event":"cmd_output","timestamp":1607098254,"output":"observed_state: \"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.Initial"},{"event":"cmd_output","timestamp":1607098254,"output":"izingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :r"},{"event":"cmd_output","timestamp":1607098254,"output":"esult, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098254,"output":"6:10:54.160 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Pp"},{"event":"cmd_output","timestamp":1607098254,"output":"l.Ppls.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-S"},{"event":"cmd_output","timestamp":1607098254,"output":"TMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"pending\", \"queuing\", \"running\", \"done"},{"event":"cmd_output","timestamp":1607098254,"output":"\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publisher_cb"},{"event":"cmd_output","timestamp":1607098254,"output":": #Function<0.8493005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, returning: "},{"event":"cmd_output","timestamp":1607098254,"output":"[:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls."},{"event":"cmd_output","timestamp":1607098254,"output":"Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:10:54.161 [info] Periodic from modu"},{"event":"cmd_output","timestamp":1607098254,"output":"le Elixir.Ppl.Ppls.STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandler.QueuingState :: peri"},{"event":"cmd_output","timestamp":1607098254,"output":"od: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring a"},{"event":"cmd_output","timestamp":1607098254,"output":"rgs: %{allowed_states: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls"},{"event":"cmd_output","timestamp":1607098254,"output":".Model.Ppls, observed_state: \"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler"},{"event":"cmd_output","timestamp":1607098254,"output":".QueuingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state,"},{"event":"cmd_output","timestamp":1607098254,"output":" :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098254,"output":"\n16:10:54.163 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.RunningState with name Elixir"},{"event":"cmd_output","timestamp":1607098254,"output":".Ppl.Ppls.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppl"},{"event":"cmd_output","timestamp":1607098254,"output":"s-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], coo"},{"event":"cmd_output","timestamp":1607098254,"output":"ling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"running\", publisher_cb: #Fun"},{"event":"cmd_output","timestamp":1607098254,"output":"ction<0.74670282/1 in Ppl.Ppls.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id,"},{"event":"cmd_output","timestamp":1607098254,"output":" :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model"},{"event":"cmd_output","timestamp":1607098254,"output":".Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:10:54.164 [info] Periodic from module El"},{"event":"cmd_output","timestamp":1607098254,"output":"ixir.Ppl.PplSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHandler.CreatedStat"},{"event":"cmd_output","timestamp":1607098254,"output":"e :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState"},{"event":"cmd_output","timestamp":1607098254,"output":"\"]}, recurring args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl"},{"event":"cmd_output","timestamp":1607098254,"output":".PplSubInits.Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, "},{"event":"cmd_output","timestamp":1607098254,"output":"returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema"},{"event":"cmd_output","timestamp":1607098254,"output":": Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:54.164 [info] Period"},{"event":"cmd_output","timestamp":1607098254,"output":"ic from module Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl.PplSubInits.STMH"},{"event":"cmd_output","timestamp":1607098254,"output":"andler.FetchingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMH"},{"event":"cmd_output","timestamp":1607098254,"output":"andler-FetchingState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"done\"], "},{"event":"cmd_output","timestamp":1607098254,"output":"cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fetching\", "},{"event":"cmd_output","timestamp":1607098254,"output":"publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :"},{"event":"cmd_output","timestamp":1607098254,"output":"result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip"},{"event":"cmd_output","timestamp":1607098254,"output":"}\n\u001b[0m\u001b[22m\n16:10:54.165 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.Compilatio"},{"event":"cmd_output","timestamp":1607098254,"output":"nState with name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 100 ms, metric_name: "},{"event":"cmd_output","timestamp":1607098254,"output":"{\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurring args: %{allowed"},{"event":"cmd_output","timestamp":1607098254,"output":"_states: [\"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: P"},{"event":"cmd_output","timestamp":1607098254,"output":"pl.PplSubInits.Model.PplSubInits, observed_state: \"compilation\", publisher_cb: :skip, repo: Ppl.Ecto"},{"event":"cmd_output","timestamp":1607098254,"output":"Repo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], "},{"event":"cmd_output","timestamp":1607098254,"output":"schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:54.165 [info] "},{"event":"cmd_output","timestamp":1607098254,"output":"Periodic from module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with name Elixir.Ppl.PplSubI"},{"event":"cmd_output","timestamp":1607098254,"output":"nits.STMHandler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplS"},{"event":"cmd_output","timestamp":1607098254,"output":"ubInits-STMHandler-RegularInitState\"]}, recurring args: %{allowed_states: [\"done\"], cooling_time_sec"},{"event":"cmd_output","timestamp":1607098254,"output":": 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_init\", publisher_cb:"},{"event":"cmd_output","timestamp":1607098254,"output":" :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :reco"},{"event":"cmd_output","timestamp":1607098254,"output":"very_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098254,"output":"\n16:10:54.276 [info] ppl_id: 6de08dd1-c0dc-4107-94ad-9bfb22a67abf, type: PplRequests, event: persis"},{"event":"cmd_output","timestamp":1607098254,"output":"ted source_args for pipeline: 6de08dd1-c0dc-4107-94ad-9bfb22a67abf, origin: Elixir.Ppl.PplRequests.M"},{"event":"cmd_output","timestamp":1607098254,"output":"odel.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:54.279 [info] ppl_id: 6de08dd1-c0d"},{"event":"cmd_output","timestamp":1607098254,"output":"c-4107-94ad-9bfb22a67abf, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count"},{"event":"cmd_output","timestamp":1607098254,"output":": 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:54.305 [info] ppl_i"},{"event":"cmd_output","timestamp":1607098254,"output":"d: 6de08dd1-c0dc-4107-94ad-9bfb22a67abf, type: PplSubInits, state: regular_init, event: exit_schedul"},{"event":"cmd_output","timestamp":1607098254,"output":"ing, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:5"},{"event":"cmd_output","timestamp":1607098254,"output":"4.323 [info] ppl_id: 6de08dd1-c0dc-4107-94ad-9bfb22a67abf, type: PplRequests, event: persisted defi"},{"event":"cmd_output","timestamp":1607098254,"output":"nition for request with request_token: 49106366-364b-11eb-b795-5254005464e2, origin: Elixir.Ppl.PplR"},{"event":"cmd_output","timestamp":1607098254,"output":"equests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:54.326 [info] Queue p"},{"event":"cmd_output","timestamp":1607098254,"output":"ersisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserte"},{"event":"cmd_output","timestamp":1607098254,"output":"d_at: ~N[2020-12-04 16:10:54.325458], name: \"master-.semaphore/semaphore.yml\", organization_id: \"d8e"},{"event":"cmd_output","timestamp":1607098254,"output":"7ac26-5458-4c85-9f33-c1121c8c327c\", project_id: \"39cf3a34-9f25-4192-93f5-7ea4c2882f06\", queue_id: \"c"},{"event":"cmd_output","timestamp":1607098254,"output":"2d37e4e-5795-46c6-b6c8-cec59b686803\", scope: \"project\", updated_at: ~N[2020-12-04 16:10:54.325467], "},{"event":"cmd_output","timestamp":1607098254,"output":"user_generated: false}}\n\u001b[0m\u001b[22m\n16:10:54.334 [info] event: created, origin: Elixir.Ppl.PplSubIn"},{"event":"cmd_output","timestamp":1607098254,"output":"its.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:54.334 [info] ppl_id: 6de08dd1-"},{"event":"cmd_output","timestamp":1607098254,"output":"c0dc-4107-94ad-9bfb22a67abf, type: PplBlocks, block_index: 0, state: initializing, event: created, r"},{"event":"cmd_output","timestamp":1607098254,"output":"ecovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098254,"output":"\u001b[22m\n16:10:54.335 [info] ppl_id: 6de08dd1-c0dc-4107-94ad-9bfb22a67abf, type: PplSubInits, state: "},{"event":"cmd_output","timestamp":1607098254,"output":"done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_"},{"event":"cmd_output","timestamp":1607098254,"output":"state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:54.341 [info] ppl_id: 6de08dd1-c0dc-4107-94ad-9bfb22a67abf,"},{"event":"cmd_output","timestamp":1607098254,"output":" type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098254,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:54.344 [info] ppl_id: 6de08dd1-"},{"event":"cmd_output","timestamp":1607098254,"output":"c0dc-4107-94ad-9bfb22a67abf, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098254,"output":"origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:54.359 [info] ppl_id: 6d"},{"event":"cmd_output","timestamp":1607098254,"output":"e08dd1-c0dc-4107-94ad-9bfb22a67abf, type: Ppls, state: queuing, event: exit_scheduling, recovery_cou"},{"event":"cmd_output","timestamp":1607098254,"output":"nt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:54.381 [info] ppl"},{"event":"cmd_output","timestamp":1607098254,"output":"_id: 6de08dd1-c0dc-4107-94ad-9bfb22a67abf, type: Ppls, state: running, event: exit_scheduling, recov"},{"event":"cmd_output","timestamp":1607098254,"output":"ery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:54.387 [inf"},{"event":"cmd_output","timestamp":1607098254,"output":"o] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"6de08dd1-c0dc-4107-94ad-9bfb22a"},{"event":"cmd_output","timestamp":1607098254,"output":"67abf\"\n\u001b[0m\u001b[22m\n16:10:54.394 [info] block_id: e72819d7-9b57-4583-b685-6230a4fad491, type: BlockR"},{"event":"cmd_output","timestamp":1607098254,"output":"equests, event: persisted block run request from ppl 6de08dd1-c0dc-4107-94ad-9bfb22a67abf for block "},{"event":"cmd_output","timestamp":1607098254,"output":"0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098254,"output":"m\n16:10:54.397 [info] block_id: e72819d7-9b57-4583-b685-6230a4fad491, type: Blocks, state: initial"},{"event":"cmd_output","timestamp":1607098254,"output":"izing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.inser"},{"event":"cmd_output","timestamp":1607098254,"output":"t/1(L43), \n\u001b[0m\u001b[22m\n16:10:54.401 [info] Block 0 of pipeline with id: 6de08dd1-c0dc-4107-94ad-9bf"},{"event":"cmd_output","timestamp":1607098254,"output":"b22a67abf scheduled in block service with id: : \"e72819d7-9b57-4583-b685-6230a4fad491\"\n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098254,"output":"6:10:54.404 [info] ppl_id: 6de08dd1-c0dc-4107-94ad-9bfb22a67abf, type: PplBlocks, block_index: 0, s"},{"event":"cmd_output","timestamp":1607098254,"output":"tate: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098254,"output":"hange/1(L90), \n\u001b[0m\u001b[22m\n16:10:54.404 [info] block_id: e72819d7-9b57-4583-b685-6230a4fad491, type"},{"event":"cmd_output","timestamp":1607098254,"output":": BlockRequests, event: persisted build and sub_ppl details for block_request: e72819d7-9b57-4583-b6"},{"event":"cmd_output","timestamp":1607098254,"output":"85-6230a4fad491, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), "},{"event":"cmd_output","timestamp":1607098254,"output":"\n\u001b[0m\u001b[22m\n16:10:54.408 [info] block_id: e72819d7-9b57-4583-b685-6230a4fad491, type: Tasks, state"},{"event":"cmd_output","timestamp":1607098254,"output":": pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingSta"},{"event":"cmd_output","timestamp":1607098254,"output":"te.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:54.411 [info] block_id: e72819d7-9b57-4583-b685-6230a4fad491"},{"event":"cmd_output","timestamp":1607098254,"output":", type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM"},{"event":"cmd_output","timestamp":1607098254,"output":".Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:54.425 [info] block_id: e72819d7-9b57-4583-b685-6"},{"event":"cmd_output","timestamp":1607098254,"output":"230a4fad491, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098254,"output":"Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:54.479 [info] block_id: e72819d7-9b57-4"},{"event":"cmd_output","timestamp":1607098254,"output":"583-b685-6230a4fad491, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098254,"output":"Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:54.488 [info] block_id: e72819d7"},{"event":"cmd_output","timestamp":1607098254,"output":"-9b57-4583-b685-6230a4fad491, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098254,"output":"origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:54.495 [info] ppl_id: 6d"},{"event":"cmd_output","timestamp":1607098254,"output":"e08dd1-c0dc-4107-94ad-9bfb22a67abf, block_id: e72819d7-9b57-4583-b685-6230a4fad491, type: PplBlocks,"},{"event":"cmd_output","timestamp":1607098254,"output":" block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098254,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:54.509 [info] ppl_id: 6de08dd1-c0dc"},{"event":"cmd_output","timestamp":1607098254,"output":"-4107-94ad-9bfb22a67abf, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098254,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test Ppls looper tr"},{"event":"cmd_output","timestamp":1607098254,"output":"ansitions - pass and trace is set (618.7ms)\u001b[0m\n * test Ppls looper transitions - execution fail\u001b["},{"event":"cmd_output","timestamp":1607098254,"output":"22m\n16:10:54.760 [info] ppl_id: adf16560-253d-4165-b387-493b18ef5baa, type: PplRequests, event: pe"},{"event":"cmd_output","timestamp":1607098254,"output":"rsisted schedule request with request_token: 4971cdfe-364b-11eb-9253-5254005464e2, origin: Elixir.Pp"},{"event":"cmd_output","timestamp":1607098254,"output":"l.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:54.772 [info] pp"},{"event":"cmd_output","timestamp":1607098254,"output":"l_id: 4fa0622b-a56e-45d4-a725-b4277aa3f8b5, type: PplRequests, event: persisted schedule request wit"},{"event":"cmd_output","timestamp":1607098254,"output":"h request_token: 4973bf74-364b-11eb-9f2d-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplReque"},{"event":"cmd_output","timestamp":1607098254,"output":"stsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:54.780 [info] Request: 'run: %{:file_name =>"},{"event":"cmd_output","timestamp":1607098254,"output":" \"failing_test.yml\", :repo_name => \"23_initializing_test\", \"branch_id\" => \"43753638-13f9-442c-9670-2"},{"event":"cmd_output","timestamp":1607098254,"output":"ac65afaa57c\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"semaphore.yml"},{"event":"cmd_output","timestamp":1607098254,"output":"\", \"hook_id\" => \"49750d84-364b-11eb-9dbf-5254005464e2\", \"label\" => \"master\", \"organization_id\" => \"4"},{"event":"cmd_output","timestamp":1607098254,"output":"8722bac-1406-4f3b-b063-f5dd34e12ec9\", \"owner\" => \"rt\", \"project_id\" => \"133186fd-9143-4387-8af1-0c6c"},{"event":"cmd_output","timestamp":1607098254,"output":"508e79c5\", \"repo_name\" => \"2_basic\", \"request_token\" => \"4974fcea-364b-11eb-8afd-5254005464e2\", \"req"},{"event":"cmd_output","timestamp":1607098254,"output":"uester_id\" => \"a8b2ee72-0c7d-44da-80d3-7649f1787347\", \"service\" => \"local\", \"suppressed_attributes\" "},{"event":"cmd_output","timestamp":1607098254,"output":"=> [\"access_token\", \"client_secret\"], \"wf_id\" => \"60676c47-7b8b-471d-b619-0e3569da74e5\", \"working_di"},{"event":"cmd_output","timestamp":1607098254,"output":"r\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:10:54.784 [info] ppl_id: 0639538a-0856-4618-bc1f-3ced4de44526, t"},{"event":"cmd_output","timestamp":1607098254,"output":"ype: PplRequests, event: persisted schedule request with request_token: 4974fcea-364b-11eb-8afd-5254"},{"event":"cmd_output","timestamp":1607098254,"output":"005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098254,"output":"2m\n16:10:54.800 [info] ppl_id: 0639538a-0856-4618-bc1f-3ced4de44526, type: Ppls, state: initializi"},{"event":"cmd_output","timestamp":1607098254,"output":"ng, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_respon"},{"event":"cmd_output","timestamp":1607098254,"output":"se/2(L124), \n\u001b[0m\u001b[22m\n16:10:54.806 [info] Project 133186fd-9143-4387-8af1-0c6c508e79c5 and branc"},{"event":"cmd_output","timestamp":1607098254,"output":"h masterlatest_wf details updated: \"wf_id: 60676c47-7b8b-471d-b619-0e3569da74e5, wf_number: 1\"\n\u001b[0m"},{"event":"cmd_output","timestamp":1607098254,"output":"\u001b[22m\n16:10:54.808 [info] Persisted ppl_sub_init for pipeline with ppl_id: 0639538a-0856-4618-bc1f"},{"event":"cmd_output","timestamp":1607098254,"output":"-3ced4de44526: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline"},{"event":"cmd_output","timestamp":1607098254,"output":"_sub_inits\">, compile_task_id: nil, error_description: nil, id: 115, in_scheduling: false, init_type"},{"event":"cmd_output","timestamp":1607098254,"output":": \"regular\", inserted_at: ~N[2020-12-04 16:10:54.806604], pipeline_requests: #Ecto.Association.NotLo"},{"event":"cmd_output","timestamp":1607098254,"output":"aded, ppl_id: \"0639538a-0856-4618-bc1f-3ced4de44526\", "},{"event":"cmd_output","timestamp":1607098254,"output":"recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, termin"},{"event":"cmd_output","timestamp":1607098254,"output":"ate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:54.806616]}\n\u001b[0m\u001b[22m\n16:10:54.814 [info] "},{"event":"cmd_output","timestamp":1607098254,"output":"Periodic from module Elixir.Ppl.PplBlocks.STMHandler.InitializingState with name Elixir.Ppl.PplBlock"},{"event":"cmd_output","timestamp":1607098254,"output":"s.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlo"},{"event":"cmd_output","timestamp":1607098254,"output":"cks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"waiting\", \""},{"event":"cmd_output","timestamp":1607098254,"output":"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"initiali"},{"event":"cmd_output","timestamp":1607098254,"output":"zing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :s"},{"event":"cmd_output","timestamp":1607098254,"output":"tate, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_"},{"event":"cmd_output","timestamp":1607098254,"output":"supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:54.816 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHan"},{"event":"cmd_output","timestamp":1607098254,"output":"dler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler.WaitingState :: period: 1000 ms, metric_"},{"event":"cmd_output","timestamp":1607098254,"output":"name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurring args: %{allowed"},{"event":"cmd_output","timestamp":1607098254,"output":"_states: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.Ppl"},{"event":"cmd_output","timestamp":1607098254,"output":"Blocks, observed_state: \"waiting\", publisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.STMHandler.W"},{"event":"cmd_output","timestamp":1607098254,"output":"aitingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :"},{"event":"cmd_output","timestamp":1607098254,"output":"result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervi"},{"event":"cmd_output","timestamp":1607098254,"output":"sor: :skip}\n\u001b[0m\u001b[22m\n16:10:54.817 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.Ru"},{"event":"cmd_output","timestamp":1607098254,"output":"nningState with name Elixir.Ppl.PplBlocks.STMHandler.RunningState :: period: 1000 ms, metric_name: {"},{"event":"cmd_output","timestamp":1607098254,"output":"\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states"},{"event":"cmd_output","timestamp":1607098254,"output":": [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlock"},{"event":"cmd_output","timestamp":1607098254,"output":"s, observed_state: \"running\", publisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHandler.Runni"},{"event":"cmd_output","timestamp":1607098254,"output":"ngState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :resu"},{"event":"cmd_output","timestamp":1607098254,"output":"lt, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_"},{"event":"cmd_output","timestamp":1607098254,"output":"supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:54.818 [info] Periodic from module Elixir.Block.Blocks.STMHand"},{"event":"cmd_output","timestamp":1607098254,"output":"ler.InitializingState with name Elixir.Block.Blocks.STMHandler.InitializingState :: period: 100 ms, "},{"event":"cmd_output","timestamp":1607098254,"output":"metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, recurring args"},{"event":"cmd_output","timestamp":1607098254,"output":": %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Blocks.Model.Bloc"},{"event":"cmd_output","timestamp":1607098254,"output":"ks, observed_state: \"initializing\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :ter"},{"event":"cmd_output","timestamp":1607098254,"output":"minate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks,"},{"event":"cmd_output","timestamp":1607098254,"output":" task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:54.819 [info] Periodic from module Elixir.Block.Blocks.S"},{"event":"cmd_output","timestamp":1607098254,"output":"TMHandler.RunningState with name Elixir.Block.Blocks.STMHandler.RunningState :: period: 100 ms, metr"},{"event":"cmd_output","timestamp":1607098254,"output":"ic_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-RunningState\"]}, recurring args: %{allow"},{"event":"cmd_output","timestamp":1607098254,"output":"ed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model."},{"event":"cmd_output","timestamp":1607098254,"output":"Blocks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :term"},{"event":"cmd_output","timestamp":1607098254,"output":"inate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, "},{"event":"cmd_output","timestamp":1607098254,"output":"task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:54.820 [info] Periodic from module Elixir.Block.Tasks.STM"},{"event":"cmd_output","timestamp":1607098254,"output":"Handler.PendingState with name Elixir.Block.Tasks.STMHandler.PendingState :: period: 100 ms, metric_"},{"event":"cmd_output","timestamp":1607098254,"output":"name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingState\"]}, recurring args: %{allowed_s"},{"event":"cmd_output","timestamp":1607098254,"output":"tates: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Tasks.Model.Tasks, observed_st"},{"event":"cmd_output","timestamp":1607098254,"output":"ate: \"pending\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :upd"},{"event":"cmd_output","timestamp":1607098254,"output":"ated_at, :state, :recovery_count, :block_id, :build_request_id], schema: Block.Tasks.Model.Tasks, ta"},{"event":"cmd_output","timestamp":1607098254,"output":"sk_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:54.821 [info] Periodic from module Elixir.Block.Tasks.STMHa"},{"event":"cmd_output","timestamp":1607098254,"output":"ndler.RunningState with name Elixir.Block.Tasks.STMHandler.RunningState :: period: 100 ms, metric_na"},{"event":"cmd_output","timestamp":1607098254,"output":"me: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningState\"]}, recurring args: %{allowed_sta"},{"event":"cmd_output","timestamp":1607098254,"output":"tes: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, "},{"event":"cmd_output","timestamp":1607098254,"output":"observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_re"},{"event":"cmd_output","timestamp":1607098254,"output":"quest, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_super"},{"event":"cmd_output","timestamp":1607098254,"output":"visor: :skip}\n\u001b[0m\u001b[22m\n16:10:54.823 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.Initi"},{"event":"cmd_output","timestamp":1607098254,"output":"alizingState with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms, metric_name: "},{"event":"cmd_output","timestamp":1607098254,"output":"{\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %{allowed_state"},{"event":"cmd_output","timestamp":1607098254,"output":"s: [\"initializing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, obs"},{"event":"cmd_output","timestamp":1607098254,"output":"erved_state: \"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.Initializi"},{"event":"cmd_output","timestamp":1607098254,"output":"ngState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :resu"},{"event":"cmd_output","timestamp":1607098254,"output":"lt, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098254,"output":"0:54.824 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.P"},{"event":"cmd_output","timestamp":1607098254,"output":"pls.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMH"},{"event":"cmd_output","timestamp":1607098254,"output":"andler-PendingState\"]}, recurring args: %{allowed_states: [\"pending\", \"queuing\", \"running\", \"done\"],"},{"event":"cmd_output","timestamp":1607098254,"output":" cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publisher_cb: #"},{"event":"cmd_output","timestamp":1607098254,"output":"Function<0.8493005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:i"},{"event":"cmd_output","timestamp":1607098254,"output":"d, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Mod"},{"event":"cmd_output","timestamp":1607098254,"output":"el.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:10:54.825 [info] Periodic from module "},{"event":"cmd_output","timestamp":1607098254,"output":"Elixir.Ppl.Ppls.STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period:"},{"event":"cmd_output","timestamp":1607098254,"output":" 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args"},{"event":"cmd_output","timestamp":1607098254,"output":": %{allowed_states: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Mo"},{"event":"cmd_output","timestamp":1607098254,"output":"del.Ppls, observed_state: \"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.Qu"},{"event":"cmd_output","timestamp":1607098254,"output":"euingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :r"},{"event":"cmd_output","timestamp":1607098254,"output":"esult, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098254,"output":"6:10:54.826 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.RunningState with name Elixir.Pp"},{"event":"cmd_output","timestamp":1607098254,"output":"l.Ppls.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-S"},{"event":"cmd_output","timestamp":1607098254,"output":"TMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], coolin"},{"event":"cmd_output","timestamp":1607098254,"output":"g_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"running\", publisher_cb: #Functi"},{"event":"cmd_output","timestamp":1607098254,"output":"on<0.74670282/1 in Ppl.Ppls.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :t"},{"event":"cmd_output","timestamp":1607098254,"output":"erminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Pp"},{"event":"cmd_output","timestamp":1607098254,"output":"ls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:10:54.828 [info] Periodic from module Elixi"},{"event":"cmd_output","timestamp":1607098254,"output":"r.Ppl.PplSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :"},{"event":"cmd_output","timestamp":1607098254,"output":": period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}"},{"event":"cmd_output","timestamp":1607098254,"output":", recurring args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Pp"},{"event":"cmd_output","timestamp":1607098254,"output":"lSubInits.Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, ret"},{"event":"cmd_output","timestamp":1607098254,"output":"urning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: P"},{"event":"cmd_output","timestamp":1607098254,"output":"pl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:54.829 [info] Periodic "},{"event":"cmd_output","timestamp":1607098254,"output":"from module Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl.PplSubInits.STMHand"},{"event":"cmd_output","timestamp":1607098254,"output":"ler.FetchingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHand"},{"event":"cmd_output","timestamp":1607098254,"output":"ler-FetchingState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"done\"], coo"},{"event":"cmd_output","timestamp":1607098254,"output":"ling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fetching\", pub"},{"event":"cmd_output","timestamp":1607098254,"output":"lisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :res"},{"event":"cmd_output","timestamp":1607098254,"output":"ult, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n"},{"event":"cmd_output","timestamp":1607098254,"output":"\u001b[0m\u001b[22m\n16:10:54.830 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CompilationSt"},{"event":"cmd_output","timestamp":1607098254,"output":"ate with name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 100 ms, metric_name: {\"P"},{"event":"cmd_output","timestamp":1607098254,"output":"pl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurring args: %{allowed_st"},{"event":"cmd_output","timestamp":1607098254,"output":"ates: [\"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl."},{"event":"cmd_output","timestamp":1607098254,"output":"PplSubInits.Model.PplSubInits, observed_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRep"},{"event":"cmd_output","timestamp":1607098254,"output":"o, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], sch"},{"event":"cmd_output","timestamp":1607098254,"output":"ema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:54.831 [info] Per"},{"event":"cmd_output","timestamp":1607098254,"output":"iodic from module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInit"},{"event":"cmd_output","timestamp":1607098254,"output":"s.STMHandler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubI"},{"event":"cmd_output","timestamp":1607098254,"output":"nits-STMHandler-RegularInitState\"]}, recurring args: %{allowed_states: [\"done\"], cooling_time_sec: 0"},{"event":"cmd_output","timestamp":1607098254,"output":", initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_init\", publisher_cb: :s"},{"event":"cmd_output","timestamp":1607098254,"output":"kip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recover"},{"event":"cmd_output","timestamp":1607098254,"output":"y_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098254,"output":":10:54.943 [info] ppl_id: 0639538a-0856-4618-bc1f-3ced4de44526, type: PplRequests, event: persisted"},{"event":"cmd_output","timestamp":1607098254,"output":" source_args for pipeline: 0639538a-0856-4618-bc1f-3ced4de44526, origin: Elixir.Ppl.PplRequests.Mode"},{"event":"cmd_output","timestamp":1607098254,"output":"l.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:54.954 [info] ppl_id: 0639538a-0856-4"},{"event":"cmd_output","timestamp":1607098254,"output":"618-bc1f-3ced4de44526, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0"},{"event":"cmd_output","timestamp":1607098254,"output":", origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:54.977 [info] ppl_id: "},{"event":"cmd_output","timestamp":1607098254,"output":"0639538a-0856-4618-bc1f-3ced4de44526, type: PplSubInits, state: regular_init, event: exit_scheduling"},{"event":"cmd_output","timestamp":1607098255,"output":", recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:55.0"},{"event":"cmd_output","timestamp":1607098255,"output":"10 [info] ppl_id: 0639538a-0856-4618-bc1f-3ced4de44526, type: PplRequests, event: persisted definit"},{"event":"cmd_output","timestamp":1607098255,"output":"ion for request with request_token: 4974fcea-364b-11eb-8afd-5254005464e2, origin: Elixir.Ppl.PplRequ"},{"event":"cmd_output","timestamp":1607098255,"output":"ests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:55.014 [info] Queue pers"},{"event":"cmd_output","timestamp":1607098255,"output":"isted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_a"},{"event":"cmd_output","timestamp":1607098255,"output":"t: ~N[2020-12-04 16:10:55.013185], name: \"master-.semaphore/semaphore.yml\", organization_id: \"48722b"},{"event":"cmd_output","timestamp":1607098255,"output":"ac-1406-4f3b-b063-f5dd34e12ec9\", project_id: \"133186fd-9143-4387-8af1-0c6c508e79c5\", queue_id: \"3b95"},{"event":"cmd_output","timestamp":1607098255,"output":"ddb4-44ab-4387-9ca7-e09f7d371a63\", scope: \"project\", updated_at: ~N[2020-12-04 16:10:55.013198], use"},{"event":"cmd_output","timestamp":1607098255,"output":"r_generated: false}}\n\u001b[0m\u001b[22m\n16:10:55.019 [info] event: created, origin: Elixir.Ppl.PplSubInits"},{"event":"cmd_output","timestamp":1607098255,"output":".STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:55.019 [info] ppl_id: 0639538a-085"},{"event":"cmd_output","timestamp":1607098255,"output":"6-4618-bc1f-3ced4de44526, type: PplBlocks, block_index: 0, state: initializing, event: created, reco"},{"event":"cmd_output","timestamp":1607098255,"output":"very_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098255,"output":"2m\n16:10:55.022 [info] ppl_id: 0639538a-0856-4618-bc1f-3ced4de44526, type: PplSubInits, state: don"},{"event":"cmd_output","timestamp":1607098255,"output":"e, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_sta"},{"event":"cmd_output","timestamp":1607098255,"output":"te_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:55.036 [info] ppl_id: 0639538a-0856-4618-bc1f-3ced4de44526, ty"},{"event":"cmd_output","timestamp":1607098255,"output":"pe: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098255,"output":"ixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:55.037 [info] ppl_id: 0639538a-085"},{"event":"cmd_output","timestamp":1607098255,"output":"6-4618-bc1f-3ced4de44526, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098255,"output":"gin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:55.047 [info] ppl_id: 06395"},{"event":"cmd_output","timestamp":1607098255,"output":"38a-0856-4618-bc1f-3ced4de44526, type: Ppls, state: queuing, event: exit_scheduling, recovery_count:"},{"event":"cmd_output","timestamp":1607098255,"output":" 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:55.059 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098255,"output":": 0639538a-0856-4618-bc1f-3ced4de44526, type: Ppls, state: running, event: exit_scheduling, recovery"},{"event":"cmd_output","timestamp":1607098255,"output":"_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:55.068 [info] "},{"event":"cmd_output","timestamp":1607098255,"output":" PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"0639538a-0856-4618-bc1f-3ced4de445"},{"event":"cmd_output","timestamp":1607098255,"output":"26\"\n\u001b[0m\u001b[22m\n16:10:55.075 [info] block_id: 1b8bb0e3-158c-4b13-905a-29ad66491ccc, type: BlockRequ"},{"event":"cmd_output","timestamp":1607098255,"output":"ests, event: persisted block run request from ppl 0639538a-0856-4618-bc1f-3ced4de44526 for block 0, "},{"event":"cmd_output","timestamp":1607098255,"output":"origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098255,"output":"16:10:55.077 [info] block_id: 1b8bb0e3-158c-4b13-905a-29ad66491ccc, type: Blocks, state: initializi"},{"event":"cmd_output","timestamp":1607098255,"output":"ng, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1"},{"event":"cmd_output","timestamp":1607098255,"output":"(L43), \n\u001b[0m\u001b[22m\n16:10:55.080 [info] Block 0 of pipeline with id: 0639538a-0856-4618-bc1f-3ced4d"},{"event":"cmd_output","timestamp":1607098255,"output":"e44526 scheduled in block service with id: : \"1b8bb0e3-158c-4b13-905a-29ad66491ccc\"\n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098255,"output":"0:55.085 [info] ppl_id: 0639538a-0856-4618-bc1f-3ced4de44526, type: PplBlocks, block_index: 0, stat"},{"event":"cmd_output","timestamp":1607098255,"output":"e: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chan"},{"event":"cmd_output","timestamp":1607098255,"output":"ge/1(L90), \n\u001b[0m\u001b[22m\n16:10:55.085 [info] block_id: 1b8bb0e3-158c-4b13-905a-29ad66491ccc, type: B"},{"event":"cmd_output","timestamp":1607098255,"output":"lockRequests, event: persisted build and sub_ppl details for block_request: 1b8bb0e3-158c-4b13-905a-"},{"event":"cmd_output","timestamp":1607098255,"output":"29ad66491ccc, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b"},{"event":"cmd_output","timestamp":1607098255,"output":"[0m\u001b[22m\n16:10:55.088 [info] block_id: 1b8bb0e3-158c-4b13-905a-29ad66491ccc, type: Tasks, state: p"},{"event":"cmd_output","timestamp":1607098255,"output":"ending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState."},{"event":"cmd_output","timestamp":1607098255,"output":"all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:10:55.090 [info] block_id: 1b8bb0e3-158c-4b13-905a-29ad66491ccc, t"},{"event":"cmd_output","timestamp":1607098255,"output":"ype: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Im"},{"event":"cmd_output","timestamp":1607098255,"output":"pl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:55.102 [info] block_id: 1b8bb0e3-158c-4b13-905a-29ad"},{"event":"cmd_output","timestamp":1607098255,"output":"66491ccc, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loo"},{"event":"cmd_output","timestamp":1607098255,"output":"per.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:55.149 [info] block_id: 1b8bb0e3-158c-4b13"},{"event":"cmd_output","timestamp":1607098255,"output":"-905a-29ad66491ccc, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098255,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:55.155 [info] block_id: 1b8bb0e3-15"},{"event":"cmd_output","timestamp":1607098255,"output":"8c-4b13-905a-29ad66491ccc, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098255,"output":"gin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:55.165 [info] ppl_id: 06395"},{"event":"cmd_output","timestamp":1607098255,"output":"38a-0856-4618-bc1f-3ced4de44526, block_id: 1b8bb0e3-158c-4b13-905a-29ad66491ccc, type: PplBlocks, bl"},{"event":"cmd_output","timestamp":1607098255,"output":"ock_index: 0, state: done, result: failed, event: exit_scheduling, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098255,"output":".Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:55.186 [info] ppl_id: 0639538a-0856-46"},{"event":"cmd_output","timestamp":1607098255,"output":"18-bc1f-3ced4de44526, type: Ppls, state: done, result: failed, event: exit_scheduling, recovery_coun"},{"event":"cmd_output","timestamp":1607098255,"output":"t: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test Ppls looper trans"},{"event":"cmd_output","timestamp":1607098255,"output":"itions - execution fail (664.9ms)\u001b[0m\n * test Ppls recovery counter is reset on transition out of "},{"event":"cmd_output","timestamp":1607098255,"output":"scheduling\u001b[22m\n16:10:55.400 [info] ppl_id: 05a1b3b4-acd4-460c-bdd7-3a6723d8095e, type: PplRequest"},{"event":"cmd_output","timestamp":1607098255,"output":"s, event: persisted schedule request with request_token: 49d3227a-364b-11eb-9834-5254005464e2, origi"},{"event":"cmd_output","timestamp":1607098255,"output":"n: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:55.40"},{"event":"cmd_output","timestamp":1607098255,"output":"8 [info] ppl_id: 482acfaf-0cbb-4a79-8c33-3781082a2f41, type: PplRequests, event: persisted schedule"},{"event":"cmd_output","timestamp":1607098255,"output":" request with request_token: 49d4adfc-364b-11eb-9c25-5254005464e2, origin: Elixir.Ppl.PplRequests.Mo"},{"event":"cmd_output","timestamp":1607098255,"output":"del.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:10:55.418 [info] ppl_id: 05a1b3b4-a"},{"event":"cmd_output","timestamp":1607098255,"output":"cd4-460c-bdd7-3a6723d8095e, type: Ppls, state: initializing, event: initializing, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098255,"output":" origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:10:55.422 [info"},{"event":"cmd_output","timestamp":1607098255,"output":"] Persisted ppl_sub_init for pipeline with ppl_id: 05a1b3b4-acd4-460c-bdd7-3a6723d8095e: %Ppl.PplSu"},{"event":"cmd_output","timestamp":1607098255,"output":"bInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_tas"},{"event":"cmd_output","timestamp":1607098255,"output":"k_id: nil, error_description: nil, id: 116, in_scheduling: false, init_type: \"regular\", inserted_at:"},{"event":"cmd_output","timestamp":1607098255,"output":" ~N[2020-12-04 16:10:55.419852], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"05a1b3b4-acd4-460c-bdd7-3a6723d8095e\", recovery_count: 0, result"},{"event":"cmd_output","timestamp":1607098255,"output":": nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, up"},{"event":"cmd_output","timestamp":1607098255,"output":"dated_at: ~N[2020-12-04 16:10:55.419864]}\n\u001b[0m\u001b[22m\n16:10:55.425 [info] Periodic from module Elix"},{"event":"cmd_output","timestamp":1607098255,"output":"ir.Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: p"},{"event":"cmd_output","timestamp":1607098255,"output":"eriod: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, rec"},{"event":"cmd_output","timestamp":1607098255,"output":"urring args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_que"},{"event":"cmd_output","timestamp":1607098255,"output":"ry: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher_cb: #Function<0.125326080/1 in Pp"},{"event":"cmd_output","timestamp":1607098255,"output":"l.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request"},{"event":"cmd_output","timestamp":1607098255,"output":", :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervi"},{"event":"cmd_output","timestamp":1607098255,"output":"sor: :skip}\n\u001b[0m\u001b[22m\n16:10:55.426 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler."},{"event":"cmd_output","timestamp":1607098255,"output":"CreatedState with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 100 ms, metric_name"},{"event":"cmd_output","timestamp":1607098255,"output":": {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args: %{allowed_s"},{"event":"cmd_output","timestamp":1607098255,"output":"tates: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, "},{"event":"cmd_output","timestamp":1607098255,"output":"observed_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_requ"},{"event":"cmd_output","timestamp":1607098255,"output":"est, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubIn"},{"event":"cmd_output","timestamp":1607098255,"output":"its, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:55.427 [info] Periodic from module Elixir.Ppl.PplSub"},{"event":"cmd_output","timestamp":1607098255,"output":"Inits.STMHandler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler.FetchingState :: period: "},{"event":"cmd_output","timestamp":1607098255,"output":"100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurri"},{"event":"cmd_output","timestamp":1607098255,"output":"ng args: %{allowed_states: [\"regular_init\", \"compilation\", \"done\"], cooling_time_sec: -2, initial_qu"},{"event":"cmd_output","timestamp":1607098255,"output":"ery: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fetching\", publisher_cb: :skip, repo: Ppl.E"},{"event":"cmd_output","timestamp":1607098255,"output":"ctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id"},{"event":"cmd_output","timestamp":1607098255,"output":"], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:55.429 [info"},{"event":"cmd_output","timestamp":1607098255,"output":"] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CompilationState with name Elixir.Ppl.PplS"},{"event":"cmd_output","timestamp":1607098255,"output":"ubInits.STMHandler.CompilationState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-P"},{"event":"cmd_output","timestamp":1607098255,"output":"plSubInits-STMHandler-CompilationState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compi"},{"event":"cmd_output","timestamp":1607098255,"output":"lation\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits"},{"event":"cmd_output","timestamp":1607098255,"output":", observed_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminat"},{"event":"cmd_output","timestamp":1607098255,"output":"e_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.Pp"},{"event":"cmd_output","timestamp":1607098255,"output":"lSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:55.430 [info] Periodic from module Elixir.Ppl."},{"event":"cmd_output","timestamp":1607098255,"output":"PplSubInits.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState"},{"event":"cmd_output","timestamp":1607098255,"output":" :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitSt"},{"event":"cmd_output","timestamp":1607098255,"output":"ate\"]}, recurring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubIn"},{"event":"cmd_output","timestamp":1607098255,"output":"its.Model.PplSubInits, observed_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, retu"},{"event":"cmd_output","timestamp":1607098255,"output":"rning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Pp"},{"event":"cmd_output","timestamp":1607098255,"output":"l.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:55.550 [info] ppl_id: 05"},{"event":"cmd_output","timestamp":1607098255,"output":"a1b3b4-acd4-460c-bdd7-3a6723d8095e, type: PplRequests, event: persisted source_args for pipeline: 05"},{"event":"cmd_output","timestamp":1607098255,"output":"a1b3b4-acd4-460c-bdd7-3a6723d8095e, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_s"},{"event":"cmd_output","timestamp":1607098255,"output":"ource/2(L89), \n\u001b[0m\u001b[22m\n16:10:55.553 [info] ppl_id: 05a1b3b4-acd4-460c-bdd7-3a6723d8095e, type: "},{"event":"cmd_output","timestamp":1607098255,"output":"PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.I"},{"event":"cmd_output","timestamp":1607098255,"output":"mpl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:55.578 [info] ppl_id: 05a1b3b4-acd4-460c-bdd7-3a672"},{"event":"cmd_output","timestamp":1607098255,"output":"3d8095e, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098255,"output":"Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:55.606 [info] ppl_id: 05a1b3b4-a"},{"event":"cmd_output","timestamp":1607098255,"output":"cd4-460c-bdd7-3a6723d8095e, type: PplRequests, event: persisted definition for request with request_"},{"event":"cmd_output","timestamp":1607098255,"output":"token: 49d3227a-364b-11eb-9834-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries"},{"event":"cmd_output","timestamp":1607098255,"output":".insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:55.611 [info] Queue persisted: {:ok, %Ppl.Queues.Mode"},{"event":"cmd_output","timestamp":1607098255,"output":"l.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:10:55.609"},{"event":"cmd_output","timestamp":1607098255,"output":"393], name: \"master-.semaphore/semaphore.yml\", organization_id: \"3c65a0b3-2bd9-40d9-b04a-322a62c3e08"},{"event":"cmd_output","timestamp":1607098255,"output":"0\", project_id: \"290ef860-306d-4def-9cf8-265e615edf67\", queue_id: \"38f3e272-13d6-42fd-a0fd-3c6ec808b"},{"event":"cmd_output","timestamp":1607098255,"output":"042\", scope: \"project\", updated_at: ~N[2020-12-04 16:10:55.609405], user_generated: false}}\n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098255,"output":"2m\n16:10:55.616 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState."},{"event":"cmd_output","timestamp":1607098255,"output":"all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:55.616 [info] ppl_id: 05a1b3b4-acd4-460c-bdd7-3a6723d8095e, typ"},{"event":"cmd_output","timestamp":1607098255,"output":"e: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098255,"output":".Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:55.620 [info] ppl_"},{"event":"cmd_output","timestamp":1607098255,"output":"id: 05a1b3b4-acd4-460c-bdd7-3a6723d8095e, type: PplSubInits, state: done, result: passed, event: exi"},{"event":"cmd_output","timestamp":1607098255,"output":"t_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098255,"output":"\n16:10:55.634 [info] ppl_id: 05a1b3b4-acd4-460c-bdd7-3a6723d8095e, type: Ppls, state: pending, eve"},{"event":"cmd_output","timestamp":1607098255,"output":"nt: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b["},{"event":"cmd_output","timestamp":1607098255,"output":"0m\u001b[32m\r * test Ppls recovery counter is reset on transition out of scheduling (597.6ms)\u001b[0m\n\nPpl"},{"event":"cmd_output","timestamp":1607098255,"output":".Ppls.STMHandler.Queuing.Test\n * test pipelines from same branch but different projects are not qu"},{"event":"cmd_output","timestamp":1607098255,"output":"euing\r * test pipelines from same branch but different projects are not queuing (skipped)\n * test"},{"event":"cmd_output","timestamp":1607098255,"output":" 30 ppls from same branch are scheduled in right order\r * test 30 ppls from same branch are schedul"},{"event":"cmd_output","timestamp":1607098255,"output":"ed in right order (skipped)\n\nPpl.Ppls.STMHandler.Initializing.Test\n * test additional fileds are"},{"event":"cmd_output","timestamp":1607098256,"output":" set when pipeline exits initializing\u001b[22m\n16:10:56.007 [info] Request: 'run: %{:file_name => \"add"},{"event":"cmd_output","timestamp":1607098256,"output":"itional_fileds.yml\", :repo_name => \"23_initializing_test\", \"branch_id\" => \"3935f648-2544-47ab-adfd-f"},{"event":"cmd_output","timestamp":1607098256,"output":"6cae1d057d7\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"semaphore.yml"},{"event":"cmd_output","timestamp":1607098256,"output":"\", \"hook_id\" => \"4a303f64-364b-11eb-b856-5254005464e2\", \"label\" => \"master\", \"organization_id\" => \"e"},{"event":"cmd_output","timestamp":1607098256,"output":"e354eaf-3c4e-4358-963b-5cd3db2ad893\", \"owner\" => \"rt\", \"project_id\" => \"8be07d1e-0910-41f4-8ac5-d007"},{"event":"cmd_output","timestamp":1607098256,"output":"81106baa\", \"repo_name\" => \"2_basic\", \"request_token\" => \"4a302c7c-364b-11eb-9c86-5254005464e2\", \"req"},{"event":"cmd_output","timestamp":1607098256,"output":"uester_id\" => \"cca5650a-cd89-4f55-80f0-02364e61aed3\", \"service\" => \"local\", \"suppressed_attributes\" "},{"event":"cmd_output","timestamp":1607098256,"output":"=> [\"access_token\", \"client_secret\"], \"wf_id\" => \"e3dcf824-f0d8-4a85-9d2e-2e0cefcf213a\", \"working_di"},{"event":"cmd_output","timestamp":1607098256,"output":"r\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:10:56.010 [info] ppl_id: cf9e7cbb-21a0-4a3f-b579-aedfeaa75634, t"},{"event":"cmd_output","timestamp":1607098256,"output":"ype: PplRequests, event: persisted schedule request with request_token: 4a302c7c-364b-11eb-9c86-5254"},{"event":"cmd_output","timestamp":1607098256,"output":"005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098256,"output":"2m\n16:10:56.013 [info] ppl_id: cf9e7cbb-21a0-4a3f-b579-aedfeaa75634, type: Ppls, state: initializi"},{"event":"cmd_output","timestamp":1607098256,"output":"ng, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_respon"},{"event":"cmd_output","timestamp":1607098256,"output":"se/2(L124), \n\u001b[0m\u001b[22m\n16:10:56.017 [info] Project 8be07d1e-0910-41f4-8ac5-d00781106baa and branc"},{"event":"cmd_output","timestamp":1607098256,"output":"h masterlatest_wf details updated: \"wf_id: e3dcf824-f0d8-4a85-9d2e-2e0cefcf213a, wf_number: 1\"\n\u001b[0m"},{"event":"cmd_output","timestamp":1607098256,"output":"\u001b[22m\n16:10:56.020 [info] Persisted ppl_sub_init for pipeline with ppl_id: cf9e7cbb-21a0-4a3f-b579"},{"event":"cmd_output","timestamp":1607098256,"output":"-aedfeaa75634: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline"},{"event":"cmd_output","timestamp":1607098256,"output":"_sub_inits\">, compile_task_id: nil, error_description: nil, id: 117, in_scheduling: false, init_type"},{"event":"cmd_output","timestamp":1607098256,"output":": \"regular\", inserted_at: ~N[2020-12-04 16:10:56.017921], pipeline_requests: #Ecto.Association.NotLo"},{"event":"cmd_output","timestamp":1607098256,"output":"aded, ppl_id: \"cf9e7cbb-21a0-4a3f-b579-aedfeaa75634\", "},{"event":"cmd_output","timestamp":1607098256,"output":"recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, termin"},{"event":"cmd_output","timestamp":1607098256,"output":"ate_request_desc: nil, updated_at: ~N[2020-12-04 16:10:56.017929]}\n\u001b[0m\u001b[22m\n16:10:56.029 [info] "},{"event":"cmd_output","timestamp":1607098256,"output":"Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.STMHandl"},{"event":"cmd_output","timestamp":1607098256,"output":"er.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-"},{"event":"cmd_output","timestamp":1607098256,"output":"InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], cooling"},{"event":"cmd_output","timestamp":1607098256,"output":"_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher_cb: #Fun"},{"event":"cmd_output","timestamp":1607098256,"output":"ction<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, returning:"},{"event":"cmd_output","timestamp":1607098256,"output":" [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls"},{"event":"cmd_output","timestamp":1607098256,"output":".Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:56.030 [info] Periodic from module Elixir.Pp"},{"event":"cmd_output","timestamp":1607098256,"output":"l.PplSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: pe"},{"event":"cmd_output","timestamp":1607098256,"output":"riod: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, re"},{"event":"cmd_output","timestamp":1607098256,"output":"curring args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSub"},{"event":"cmd_output","timestamp":1607098256,"output":"Inits.Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returni"},{"event":"cmd_output","timestamp":1607098256,"output":"ng: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.P"},{"event":"cmd_output","timestamp":1607098256,"output":"plSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:56.030 [info] Periodic from"},{"event":"cmd_output","timestamp":1607098256,"output":" module Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler."},{"event":"cmd_output","timestamp":1607098256,"output":"FetchingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-"},{"event":"cmd_output","timestamp":1607098256,"output":"FetchingState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"done\"], cooling"},{"event":"cmd_output","timestamp":1607098256,"output":"_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fetching\", publish"},{"event":"cmd_output","timestamp":1607098256,"output":"er_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result,"},{"event":"cmd_output","timestamp":1607098256,"output":" :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m"},{"event":"cmd_output","timestamp":1607098256,"output":"\u001b[22m\n16:10:56.031 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CompilationState "},{"event":"cmd_output","timestamp":1607098256,"output":"with name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 100 ms, metric_name: {\"Ppl.b"},{"event":"cmd_output","timestamp":1607098256,"output":"eholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurring args: %{allowed_states"},{"event":"cmd_output","timestamp":1607098256,"output":": [\"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplS"},{"event":"cmd_output","timestamp":1607098256,"output":"ubInits.Model.PplSubInits, observed_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, r"},{"event":"cmd_output","timestamp":1607098256,"output":"eturning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema:"},{"event":"cmd_output","timestamp":1607098256,"output":" Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:56.031 [info] Periodi"},{"event":"cmd_output","timestamp":1607098256,"output":"c from module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.ST"},{"event":"cmd_output","timestamp":1607098256,"output":"MHandler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits"},{"event":"cmd_output","timestamp":1607098256,"output":"-STMHandler-RegularInitState\"]}, recurring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, in"},{"event":"cmd_output","timestamp":1607098256,"output":"itial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_init\", publisher_cb: :skip,"},{"event":"cmd_output","timestamp":1607098256,"output":" repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_co"},{"event":"cmd_output","timestamp":1607098256,"output":"unt, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:10:"},{"event":"cmd_output","timestamp":1607098256,"output":"56.143 [info] ppl_id: cf9e7cbb-21a0-4a3f-b579-aedfeaa75634, type: PplRequests, event: persisted sou"},{"event":"cmd_output","timestamp":1607098256,"output":"rce_args for pipeline: cf9e7cbb-21a0-4a3f-b579-aedfeaa75634, origin: Elixir.Ppl.PplRequests.Model.Pp"},{"event":"cmd_output","timestamp":1607098256,"output":"lRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:10:56.147 [info] ppl_id: cf9e7cbb-21a0-4a3f-"},{"event":"cmd_output","timestamp":1607098256,"output":"b579-aedfeaa75634, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098256,"output":"igin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:56.177 [info] ppl_id: cf9e"},{"event":"cmd_output","timestamp":1607098256,"output":"7cbb-21a0-4a3f-b579-aedfeaa75634, type: PplSubInits, state: regular_init, event: exit_scheduling, re"},{"event":"cmd_output","timestamp":1607098256,"output":"covery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:10:56.210 ["},{"event":"cmd_output","timestamp":1607098256,"output":"info] ppl_id: cf9e7cbb-21a0-4a3f-b579-aedfeaa75634, type: PplRequests, event: persisted definition "},{"event":"cmd_output","timestamp":1607098256,"output":"for request with request_token: 4a302c7c-364b-11eb-9c86-5254005464e2, origin: Elixir.Ppl.PplRequests"},{"event":"cmd_output","timestamp":1607098256,"output":".Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:10:56.214 [info] Queue persiste"},{"event":"cmd_output","timestamp":1607098256,"output":"d: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~"},{"event":"cmd_output","timestamp":1607098256,"output":"N[2020-12-04 16:10:56.212544], name: \"master-.semaphore/semaphore.yml\", organization_id: \"ee354eaf-3"},{"event":"cmd_output","timestamp":1607098256,"output":"c4e-4358-963b-5cd3db2ad893\", project_id: \"8be07d1e-0910-41f4-8ac5-d00781106baa\", queue_id: \"589752f0"},{"event":"cmd_output","timestamp":1607098256,"output":"-a51d-4c70-a2dd-a0f2485a0083\", scope: \"project\", updated_at: ~N[2020-12-04 16:10:56.212555], user_ge"},{"event":"cmd_output","timestamp":1607098256,"output":"nerated: false}}\n\u001b[0m\u001b[22m\n16:10:56.219 [info] event: created, origin: Elixir.Ppl.PplSubInits.STM"},{"event":"cmd_output","timestamp":1607098256,"output":"Handler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:10:56.219 [info] ppl_id: cf9e7cbb-21a0-4a"},{"event":"cmd_output","timestamp":1607098256,"output":"3f-b579-aedfeaa75634, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery"},{"event":"cmd_output","timestamp":1607098256,"output":"_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098256,"output":"16:10:56.221 [info] ppl_id: cf9e7cbb-21a0-4a3f-b579-aedfeaa75634, type: PplSubInits, state: done, r"},{"event":"cmd_output","timestamp":1607098256,"output":"esult: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098256,"output":"hange/1(L90), \n\u001b[0m\u001b[22m\n16:10:56.235 [info] ppl_id: cf9e7cbb-21a0-4a3f-b579-aedfeaa75634, type: "},{"event":"cmd_output","timestamp":1607098256,"output":"Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_"},{"event":"cmd_output","timestamp":1607098261,"output":"state_change/1(L90), \n\u001b[0m\u001b[32m\r * test additional fileds are set when pipeline exits initializing"},{"event":"cmd_output","timestamp":1607098261,"output":" (5097.0ms)\u001b[0m\n * test default values for additional fields are set when pipeline without them in"},{"event":"cmd_output","timestamp":1607098261,"output":" yaml def exits initializing\u001b[22m\n16:11:01.109 [info] Request: 'run: %{:repo_name => \"23_initializ"},{"event":"cmd_output","timestamp":1607098261,"output":"ing_test\", \"branch_id\" => \"56828895-8e56-4a3f-9f86-5cab03311957\", \"branch_name\" => \"master\", \"commit"},{"event":"cmd_output","timestamp":1607098261,"output":"_sha\" => \"75891a4469\", \"file_name\" => \"semaphore.yml\", \"hook_id\" => \"4d3aa79e-364b-11eb-a852-5254005"},{"event":"cmd_output","timestamp":1607098261,"output":"464e2\", \"label\" => \"master\", \"organization_id\" => \"45edc912-2609-44bf-aa93-fcb9504d6814\", \"owner\" =>"},{"event":"cmd_output","timestamp":1607098261,"output":" \"rt\", \"project_id\" => \"067fd6b4-1cf5-4ff5-87a0-c8ebd0e879d6\", \"repo_name\" => \"2_basic\", \"request_to"},{"event":"cmd_output","timestamp":1607098261,"output":"ken\" => \"4d3a9a74-364b-11eb-8c83-5254005464e2\", \"requester_id\" => \"990a7f8e-b7d1-468f-b03e-9c36777c6"},{"event":"cmd_output","timestamp":1607098261,"output":"513\", \"service\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" =>"},{"event":"cmd_output","timestamp":1607098261,"output":" \"0adb5870-b816-4571-b30d-46f0761ce48b\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:11:01.112 [in"},{"event":"cmd_output","timestamp":1607098261,"output":"fo] ppl_id: 9b554c3b-2807-4f2c-8abd-ceb13fcf248d, type: PplRequests, event: persisted schedule requ"},{"event":"cmd_output","timestamp":1607098261,"output":"est with request_token: 4d3a9a74-364b-11eb-8c83-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.P"},{"event":"cmd_output","timestamp":1607098261,"output":"plRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:11:01.117 [info] ppl_id: 9b554c3b-2807-4"},{"event":"cmd_output","timestamp":1607098261,"output":"f2c-8abd-ceb13fcf248d, type: Ppls, state: initializing, event: initializing, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098261,"output":"in: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:11:01.122 [info] Pr"},{"event":"cmd_output","timestamp":1607098261,"output":"oject 067fd6b4-1cf5-4ff5-87a0-c8ebd0e879d6 and branch masterlatest_wf details updated: \"wf_id: 0adb5"},{"event":"cmd_output","timestamp":1607098261,"output":"870-b816-4571-b30d-46f0761ce48b, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:11:01.125 [info] Persisted ppl_sub_in"},{"event":"cmd_output","timestamp":1607098261,"output":"it for pipeline with ppl_id: 9b554c3b-2807-4f2c-8abd-ceb13fcf248d: %Ppl.PplSubInits.Model.PplSubInit"},{"event":"cmd_output","timestamp":1607098261,"output":"s{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_descri"},{"event":"cmd_output","timestamp":1607098261,"output":"ption: nil, id: 118, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:11:01"},{"event":"cmd_output","timestamp":1607098261,"output":".122589], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"9b554c3b-2807-4f2c-8abd-ceb13fcf248d\", recovery_count: 0, result: nil, result_reason: n"},{"event":"cmd_output","timestamp":1607098261,"output":"il, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04"},{"event":"cmd_output","timestamp":1607098261,"output":" 16:11:01.122597]}\n\u001b[0m\u001b[22m\n16:11:01.131 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler."},{"event":"cmd_output","timestamp":1607098261,"output":"InitializingState with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms, metric_n"},{"event":"cmd_output","timestamp":1607098261,"output":"ame: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %{allowed_"},{"event":"cmd_output","timestamp":1607098261,"output":"states: [\"initializing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls"},{"event":"cmd_output","timestamp":1607098261,"output":", observed_state: \"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.Initi"},{"event":"cmd_output","timestamp":1607098261,"output":"alizingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, "},{"event":"cmd_output","timestamp":1607098261,"output":":result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098261,"output":"\n16:11:01.131 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedState with name "},{"event":"cmd_output","timestamp":1607098261,"output":"Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_u"},{"event":"cmd_output","timestamp":1607098261,"output":"p\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args: %{allowed_states: [\"fetching\", \"do"},{"event":"cmd_output","timestamp":1607098261,"output":"ne\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"create"},{"event":"cmd_output","timestamp":1607098261,"output":"d\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :stat"},{"event":"cmd_output","timestamp":1607098261,"output":"e, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :"},{"event":"cmd_output","timestamp":1607098261,"output":"skip}\n\u001b[0m\u001b[22m\n16:11:01.132 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.Fetchi"},{"event":"cmd_output","timestamp":1607098261,"output":"ngState with name Elixir.Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 ms, metric_name: {\""},{"event":"cmd_output","timestamp":1607098261,"output":"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %{allowed_stat"},{"event":"cmd_output","timestamp":1607098261,"output":"es: [\"regular_init\", \"compilation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Mo"},{"event":"cmd_output","timestamp":1607098261,"output":"del.PplSubInits, observed_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:i"},{"event":"cmd_output","timestamp":1607098261,"output":"d, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubIn"},{"event":"cmd_output","timestamp":1607098261,"output":"its.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:01.133 [info] Periodic from module"},{"event":"cmd_output","timestamp":1607098261,"output":" Elixir.Ppl.PplSubInits.STMHandler.CompilationState with name Elixir.Ppl.PplSubInits.STMHandler.Comp"},{"event":"cmd_output","timestamp":1607098261,"output":"ilationState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-C"},{"event":"cmd_output","timestamp":1607098261,"output":"ompilationState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"stopping\", \"d"},{"event":"cmd_output","timestamp":1607098261,"output":"one\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"comp"},{"event":"cmd_output","timestamp":1607098261,"output":"ilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at,"},{"event":"cmd_output","timestamp":1607098261,"output":" :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervi"},{"event":"cmd_output","timestamp":1607098261,"output":"sor: :skip}\n\u001b[0m\u001b[22m\n16:11:01.134 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler."},{"event":"cmd_output","timestamp":1607098261,"output":"RegularInitState with name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period: 100 ms, met"},{"event":"cmd_output","timestamp":1607098261,"output":"ric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurring args:"},{"event":"cmd_output","timestamp":1607098261,"output":" %{allowed_states: [\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, "},{"event":"cmd_output","timestamp":1607098261,"output":"observed_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate"},{"event":"cmd_output","timestamp":1607098261,"output":"_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.Ppl"},{"event":"cmd_output","timestamp":1607098261,"output":"SubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:01.248 [info] ppl_id: 9b554c3b-2807-4f2c-8abd-c"},{"event":"cmd_output","timestamp":1607098261,"output":"eb13fcf248d, type: PplRequests, event: persisted source_args for pipeline: 9b554c3b-2807-4f2c-8abd-c"},{"event":"cmd_output","timestamp":1607098261,"output":"eb13fcf248d, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098261,"output":"2m\n16:11:01.251 [info] ppl_id: 9b554c3b-2807-4f2c-8abd-ceb13fcf248d, type: PplSubInits, state: fet"},{"event":"cmd_output","timestamp":1607098261,"output":"ching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1("},{"event":"cmd_output","timestamp":1607098261,"output":"L90), \n\u001b[0m\u001b[22m\n16:11:01.281 [info] ppl_id: 9b554c3b-2807-4f2c-8abd-ceb13fcf248d, type: PplSubIn"},{"event":"cmd_output","timestamp":1607098261,"output":"its, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl."},{"event":"cmd_output","timestamp":1607098261,"output":"log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:01.308 [info] ppl_id: 9b554c3b-2807-4f2c-8abd-ceb13fcf2"},{"event":"cmd_output","timestamp":1607098261,"output":"48d, type: PplRequests, event: persisted definition for request with request_token: 4d3a9a74-364b-11"},{"event":"cmd_output","timestamp":1607098261,"output":"eb-8c83-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L7"},{"event":"cmd_output","timestamp":1607098261,"output":"6), \n\u001b[0m\u001b[22m\n16:11:01.313 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ect"},{"event":"cmd_output","timestamp":1607098261,"output":"o.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:11:01.310990], name: \"master-.se"},{"event":"cmd_output","timestamp":1607098261,"output":"maphore/semaphore.yml\", organization_id: \"45edc912-2609-44bf-aa93-fcb9504d6814\", project_id: \"067fd6"},{"event":"cmd_output","timestamp":1607098261,"output":"b4-1cf5-4ff5-87a0-c8ebd0e879d6\", queue_id: \"4b59006e-fe38-4199-90d2-7ce796b6682b\", scope: \"project\","},{"event":"cmd_output","timestamp":1607098261,"output":" updated_at: ~N[2020-12-04 16:11:01.311003], user_generated: false}}\n\u001b[0m\u001b[22m\n16:11:01.320 [info]"},{"event":"cmd_output","timestamp":1607098261,"output":" event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098261,"output":"\u001b[22m\n16:11:01.320 [info] ppl_id: 9b554c3b-2807-4f2c-8abd-ceb13fcf248d, type: PplBlocks, block_ind"},{"event":"cmd_output","timestamp":1607098261,"output":"ex: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHan"},{"event":"cmd_output","timestamp":1607098261,"output":"dler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:11:01.331 [info] ppl_id: 9b554c3b-2807-4f2c-"},{"event":"cmd_output","timestamp":1607098261,"output":"8abd-ceb13fcf248d, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_"},{"event":"cmd_output","timestamp":1607098261,"output":"count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:01.342 [info] "},{"event":"cmd_output","timestamp":1607098261,"output":"ppl_id: 9b554c3b-2807-4f2c-8abd-ceb13fcf248d, type: Ppls, state: pending, event: exit_scheduling, re"},{"event":"cmd_output","timestamp":1607098264,"output":"covery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test defaul"},{"event":"cmd_output","timestamp":1607098264,"output":"t values for additional fields are set when pipeline without them in yaml def exits initializing (31"},{"event":"cmd_output","timestamp":1607098264,"output":"00.6ms)\u001b[0m\n * test gofer service is called with valid params and resulting switch_id is stored in"},{"event":"cmd_output","timestamp":1607098264,"output":" db\u001b[22m\n16:11:04.226 [info] Request: 'run: %{:file_name => \"promotions.yml\", :repo_name => \"23_in"},{"event":"cmd_output","timestamp":1607098264,"output":"itializing_test\", \"branch_id\" => \"e85c88ff-8b97-4da3-979b-fd0ee73f615c\", \"branch_name\" => \"master\", "},{"event":"cmd_output","timestamp":1607098264,"output":"\"commit_sha\" => \"75891a4469\", \"file_name\" => \"semaphore.yml\", \"hook_id\" => \"4f156a68-364b-11eb-b0f7-"},{"event":"cmd_output","timestamp":1607098264,"output":"5254005464e2\", \"label\" => \"master\", \"organization_id\" => \"b4a7bcbd-770e-49bc-b901-8e8ac6e841ae\", \"ow"},{"event":"cmd_output","timestamp":1607098264,"output":"ner\" => \"rt\", \"project_id\" => \"a0a7d5e4-b1c8-4004-9a6e-b6beaa4472e9\", \"repo_name\" => \"2_basic\", \"req"},{"event":"cmd_output","timestamp":1607098264,"output":"uest_token\" => \"4f155e6a-364b-11eb-9270-5254005464e2\", \"requester_id\" => \"62d05635-e1d6-49ed-8d23-00"},{"event":"cmd_output","timestamp":1607098264,"output":"06e7cb0344\", \"service\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf"},{"event":"cmd_output","timestamp":1607098264,"output":"_id\" => \"b6069066-8c81-473f-8512-c44cab7527fc\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:11:04."},{"event":"cmd_output","timestamp":1607098264,"output":"231 [info] ppl_id: 7800d364-dca5-4b98-8085-bce0fd9196e2, type: PplRequests, event: persisted schedu"},{"event":"cmd_output","timestamp":1607098264,"output":"le request with request_token: 4f155e6a-364b-11eb-9270-5254005464e2, origin: Elixir.Ppl.PplRequests."},{"event":"cmd_output","timestamp":1607098264,"output":"Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:11:04.235 [info] ppl_id: 7800d364"},{"event":"cmd_output","timestamp":1607098264,"output":"-dca5-4b98-8085-bce0fd9196e2, type: Ppls, state: initializing, event: initializing, recovery_count: "},{"event":"cmd_output","timestamp":1607098264,"output":"0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:11:04.242 [in"},{"event":"cmd_output","timestamp":1607098264,"output":"fo] Project a0a7d5e4-b1c8-4004-9a6e-b6beaa4472e9 and branch masterlatest_wf details updated: \"wf_id"},{"event":"cmd_output","timestamp":1607098264,"output":": b6069066-8c81-473f-8512-c44cab7527fc, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:11:04.244 [info] Persisted ppl"},{"event":"cmd_output","timestamp":1607098264,"output":"_sub_init for pipeline with ppl_id: 7800d364-dca5-4b98-8085-bce0fd9196e2: %Ppl.PplSubInits.Model.Ppl"},{"event":"cmd_output","timestamp":1607098264,"output":"SubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error"},{"event":"cmd_output","timestamp":1607098264,"output":"_description: nil, id: 119, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 1"},{"event":"cmd_output","timestamp":1607098264,"output":"6:11:04.243028], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"7800d364-dca5-4b98-8085-bce0fd9196e2\", recovery_count: 0, result: nil, result_re"},{"event":"cmd_output","timestamp":1607098264,"output":"ason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[202"},{"event":"cmd_output","timestamp":1607098264,"output":"0-12-04 16:11:04.243041]}\n\u001b[0m\u001b[22m\n16:11:04.251 [info] Periodic from module Elixir.Ppl.Ppls.STMH"},{"event":"cmd_output","timestamp":1607098264,"output":"andler.InitializingState with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms, m"},{"event":"cmd_output","timestamp":1607098264,"output":"etric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %{a"},{"event":"cmd_output","timestamp":1607098264,"output":"llowed_states: [\"initializing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Mod"},{"event":"cmd_output","timestamp":1607098264,"output":"el.Ppls, observed_state: \"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandle"},{"event":"cmd_output","timestamp":1607098264,"output":"r.InitializingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :"},{"event":"cmd_output","timestamp":1607098264,"output":"state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0"},{"event":"cmd_output","timestamp":1607098264,"output":"m\u001b[22m\n16:11:04.252 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedState wit"},{"event":"cmd_output","timestamp":1607098264,"output":"h name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.beholder"},{"event":"cmd_output","timestamp":1607098264,"output":"-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args: %{allowed_states: [\"fetchin"},{"event":"cmd_output","timestamp":1607098264,"output":"g\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: "},{"event":"cmd_output","timestamp":1607098264,"output":"\"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at"},{"event":"cmd_output","timestamp":1607098264,"output":", :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_superv"},{"event":"cmd_output","timestamp":1607098264,"output":"isor: :skip}\n\u001b[0m\u001b[22m\n16:11:04.253 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler"},{"event":"cmd_output","timestamp":1607098264,"output":".FetchingState with name Elixir.Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 ms, metric_n"},{"event":"cmd_output","timestamp":1607098264,"output":"ame: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %{allow"},{"event":"cmd_output","timestamp":1607098264,"output":"ed_states: [\"regular_init\", \"compilation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubI"},{"event":"cmd_output","timestamp":1607098264,"output":"nits.Model.PplSubInits, observed_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, returni"},{"event":"cmd_output","timestamp":1607098264,"output":"ng: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.P"},{"event":"cmd_output","timestamp":1607098264,"output":"plSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:04.254 [info] Periodic from"},{"event":"cmd_output","timestamp":1607098264,"output":" module Elixir.Ppl.PplSubInits.STMHandler.CompilationState with name Elixir.Ppl.PplSubInits.STMHandl"},{"event":"cmd_output","timestamp":1607098264,"output":"er.CompilationState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHa"},{"event":"cmd_output","timestamp":1607098264,"output":"ndler-CompilationState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"stoppi"},{"event":"cmd_output","timestamp":1607098264,"output":"ng\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state"},{"event":"cmd_output","timestamp":1607098264,"output":": \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :upda"},{"event":"cmd_output","timestamp":1607098264,"output":"ted_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_"},{"event":"cmd_output","timestamp":1607098264,"output":"supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:04.256 [info] Periodic from module Elixir.Ppl.PplSubInits.STMH"},{"event":"cmd_output","timestamp":1607098264,"output":"andler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period: 100 "},{"event":"cmd_output","timestamp":1607098264,"output":"ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurrin"},{"event":"cmd_output","timestamp":1607098264,"output":"g args: %{allowed_states: [\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSub"},{"event":"cmd_output","timestamp":1607098264,"output":"Inits, observed_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :te"},{"event":"cmd_output","timestamp":1607098264,"output":"rminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Mo"},{"event":"cmd_output","timestamp":1607098264,"output":"del.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:04.368 [info] ppl_id: 7800d364-dca5-4b98"},{"event":"cmd_output","timestamp":1607098264,"output":"-8085-bce0fd9196e2, type: PplRequests, event: persisted source_args for pipeline: 7800d364-dca5-4b98"},{"event":"cmd_output","timestamp":1607098264,"output":"-8085-bce0fd9196e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n"},{"event":"cmd_output","timestamp":1607098264,"output":"\u001b[0m\u001b[22m\n16:11:04.380 [info] ppl_id: 7800d364-dca5-4b98-8085-bce0fd9196e2, type: PplSubInits, sta"},{"event":"cmd_output","timestamp":1607098264,"output":"te: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_ch"},{"event":"cmd_output","timestamp":1607098264,"output":"ange/1(L90), \n\u001b[0m\u001b[22m\n16:11:04.404 [info] ppl_id: 7800d364-dca5-4b98-8085-bce0fd9196e2, type: P"},{"event":"cmd_output","timestamp":1607098264,"output":"plSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.ST"},{"event":"cmd_output","timestamp":1607098264,"output":"M.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:04.446 [info] ppl_id: 7800d364-dca5-4b98-8085-bc"},{"event":"cmd_output","timestamp":1607098264,"output":"e0fd9196e2, type: PplRequests, event: persisted definition for request with request_token: 4f155e6a-"},{"event":"cmd_output","timestamp":1607098264,"output":"364b-11eb-9270-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definiti"},{"event":"cmd_output","timestamp":1607098264,"output":"on/3(L76), \n\u001b[0m\u001b[22m\n16:11:04.451 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta_"},{"event":"cmd_output","timestamp":1607098264,"output":"_: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:11:04.449826], name: \"mas"},{"event":"cmd_output","timestamp":1607098264,"output":"ter-.semaphore/semaphore.yml\", organization_id: \"b4a7bcbd-770e-49bc-b901-8e8ac6e841ae\", project_id: "},{"event":"cmd_output","timestamp":1607098264,"output":"\"a0a7d5e4-b1c8-4004-9a6e-b6beaa4472e9\", queue_id: \"7a0cf636-d6c6-4144-ae69-1cd894247640\", scope: \"pr"},{"event":"cmd_output","timestamp":1607098264,"output":"oject\", updated_at: ~N[2020-12-04 16:11:04.449839], user_generated: false}}\n\u001b[0m\u001b[22m\n16:11:04.457"},{"event":"cmd_output","timestamp":1607098264,"output":" [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105),"},{"event":"cmd_output","timestamp":1607098264,"output":" \n\u001b[0m\u001b[22m\n16:11:04.457 [info] ppl_id: 7800d364-dca5-4b98-8085-bce0fd9196e2, type: PplBlocks, bl"},{"event":"cmd_output","timestamp":1607098264,"output":"ock_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits"},{"event":"cmd_output","timestamp":1607098264,"output":".STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:11:04.459 [info] ppl_id: 7800d364-dca"},{"event":"cmd_output","timestamp":1607098264,"output":"5-4b98-8085-bce0fd9196e2, type: PplSubInits, state: done, result: passed, event: exit_scheduling, re"},{"event":"cmd_output","timestamp":1607098264,"output":"covery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:04.472 ["},{"event":"cmd_output","timestamp":1607098264,"output":"info] ppl_id: 7800d364-dca5-4b98-8085-bce0fd9196e2, type: Ppls, state: pending, event: exit_schedul"},{"event":"cmd_output","timestamp":1607098264,"output":"ing, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test"},{"event":"cmd_output","timestamp":1607098264,"output":" gofer service is called with valid params and resulting switch_id is stored in db (434.0ms)\u001b[0m\n\n"},{"event":"cmd_output","timestamp":1607098264,"output":"Ppl.Ppls.STMHandler.DoneState.Test\n * test gofer service is called with valid params when ppl tran"},{"event":"cmd_output","timestamp":1607098264,"output":"sitions to done\u001b[22m\n16:11:04.640 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.Initializ"},{"event":"cmd_output","timestamp":1607098264,"output":"ingState with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Pp"},{"event":"cmd_output","timestamp":1607098264,"output":"l.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: ["},{"event":"cmd_output","timestamp":1607098264,"output":"\"initializing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observe"},{"event":"cmd_output","timestamp":1607098264,"output":"d_state: \"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingSt"},{"event":"cmd_output","timestamp":1607098264,"output":"ate.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, "},{"event":"cmd_output","timestamp":1607098264,"output":":recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:04"},{"event":"cmd_output","timestamp":1607098264,"output":".641 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls."},{"event":"cmd_output","timestamp":1607098264,"output":"STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandl"},{"event":"cmd_output","timestamp":1607098264,"output":"er-PendingState\"]}, recurring args: %{allowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], coo"},{"event":"cmd_output","timestamp":1607098264,"output":"ling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publisher_cb: #Func"},{"event":"cmd_output","timestamp":1607098264,"output":"tion<0.8493005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :"},{"event":"cmd_output","timestamp":1607098264,"output":"terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.P"},{"event":"cmd_output","timestamp":1607098264,"output":"pls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:11:04.641 [info] Periodic from module Elix"},{"event":"cmd_output","timestamp":1607098264,"output":"ir.Ppl.Ppls.STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100"},{"event":"cmd_output","timestamp":1607098264,"output":" ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{"},{"event":"cmd_output","timestamp":1607098264,"output":"allowed_states: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model."},{"event":"cmd_output","timestamp":1607098264,"output":"Ppls, observed_state: \"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.Queuin"},{"event":"cmd_output","timestamp":1607098264,"output":"gState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :resul"},{"event":"cmd_output","timestamp":1607098264,"output":"t, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11"},{"event":"cmd_output","timestamp":1607098264,"output":":04.641 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl.Pp"},{"event":"cmd_output","timestamp":1607098264,"output":"ls.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHa"},{"event":"cmd_output","timestamp":1607098264,"output":"ndler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_ti"},{"event":"cmd_output","timestamp":1607098264,"output":"me_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"running\", publisher_cb: #Function<0"},{"event":"cmd_output","timestamp":1607098264,"output":".74670282/1 in Ppl.Ppls.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :termi"},{"event":"cmd_output","timestamp":1607098264,"output":"nate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, "},{"event":"cmd_output","timestamp":1607098264,"output":"task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:11:04.641 [info] Periodic from module Elixir.Pp"},{"event":"cmd_output","timestamp":1607098264,"output":"l.PplSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: pe"},{"event":"cmd_output","timestamp":1607098264,"output":"riod: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, re"},{"event":"cmd_output","timestamp":1607098264,"output":"curring args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSub"},{"event":"cmd_output","timestamp":1607098264,"output":"Inits.Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returni"},{"event":"cmd_output","timestamp":1607098264,"output":"ng: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.P"},{"event":"cmd_output","timestamp":1607098264,"output":"plSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:04.641 [info] Periodic from"},{"event":"cmd_output","timestamp":1607098264,"output":" module Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler."},{"event":"cmd_output","timestamp":1607098264,"output":"FetchingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-"},{"event":"cmd_output","timestamp":1607098264,"output":"FetchingState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"done\"], cooling"},{"event":"cmd_output","timestamp":1607098264,"output":"_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fetching\", publish"},{"event":"cmd_output","timestamp":1607098264,"output":"er_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result,"},{"event":"cmd_output","timestamp":1607098264,"output":" :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m"},{"event":"cmd_output","timestamp":1607098264,"output":"\u001b[22m\n16:11:04.641 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CompilationState "},{"event":"cmd_output","timestamp":1607098264,"output":"with name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 100 ms, metric_name: {\"Ppl.b"},{"event":"cmd_output","timestamp":1607098264,"output":"eholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurring args: %{allowed_states"},{"event":"cmd_output","timestamp":1607098264,"output":": [\"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplS"},{"event":"cmd_output","timestamp":1607098264,"output":"ubInits.Model.PplSubInits, observed_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, r"},{"event":"cmd_output","timestamp":1607098264,"output":"eturning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema:"},{"event":"cmd_output","timestamp":1607098264,"output":" Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:04.641 [info] Periodi"},{"event":"cmd_output","timestamp":1607098264,"output":"c from module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.ST"},{"event":"cmd_output","timestamp":1607098264,"output":"MHandler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits"},{"event":"cmd_output","timestamp":1607098264,"output":"-STMHandler-RegularInitState\"]}, recurring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, in"},{"event":"cmd_output","timestamp":1607098264,"output":"itial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_init\", publisher_cb: :skip,"},{"event":"cmd_output","timestamp":1607098264,"output":" repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_co"},{"event":"cmd_output","timestamp":1607098264,"output":"unt, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:"},{"event":"cmd_output","timestamp":1607098264,"output":"04.651 [info] Request: 'run: %{:file_name => \"promotions.yml\", :repo_name => \"23_initializing_test\""},{"event":"cmd_output","timestamp":1607098264,"output":", \"branch_id\" => \"6fadd3af-89d1-4516-baf4-1b51f3b4480e\", \"branch_name\" => \"master\", \"commit_sha\" => "},{"event":"cmd_output","timestamp":1607098264,"output":"\"75891a4469\", \"file_name\" => \"semaphore.yml\", \"hook_id\" => \"4f56c0c6-364b-11eb-a419-5254005464e2\", \""},{"event":"cmd_output","timestamp":1607098264,"output":"label\" => \"master\", \"organization_id\" => \"214bb58c-6a85-45da-9502-5f1b19c7287a\", \"owner\" => \"rt\", \"p"},{"event":"cmd_output","timestamp":1607098264,"output":"roject_id\" => \"6e4e35ab-230c-4776-9694-132b0de9ed08\", \"repo_name\" => \"2_basic\", \"request_token\" => \""},{"event":"cmd_output","timestamp":1607098264,"output":"4f561cac-364b-11eb-b361-5254005464e2\", \"requester_id\" => \"89b72d68-fb0a-44d8-b092-6b48ffe2728c\", \"se"},{"event":"cmd_output","timestamp":1607098264,"output":"rvice\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"ed5c57b"},{"event":"cmd_output","timestamp":1607098264,"output":"a-2d42-4a65-9188-0eacf8c48b46\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:11:04.660 [info] ppl_"},{"event":"cmd_output","timestamp":1607098264,"output":"id: faf2022d-2571-48dd-8b34-7c9a57817d76, type: PplRequests, event: persisted schedule request with "},{"event":"cmd_output","timestamp":1607098264,"output":"request_token: 4f561cac-364b-11eb-b361-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequest"},{"event":"cmd_output","timestamp":1607098264,"output":"sQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:11:04.663 [info] ppl_id: faf2022d-2571-48dd-8b34-"},{"event":"cmd_output","timestamp":1607098264,"output":"7c9a57817d76, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098264,"output":"r.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:11:04.669 [info] Project 6e4"},{"event":"cmd_output","timestamp":1607098264,"output":"e35ab-230c-4776-9694-132b0de9ed08 and branch masterlatest_wf details updated: \"wf_id: ed5c57ba-2d42-"},{"event":"cmd_output","timestamp":1607098264,"output":"4a65-9188-0eacf8c48b46, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:11:04.673 [info] Persisted ppl_sub_init for pi"},{"event":"cmd_output","timestamp":1607098264,"output":"peline with ppl_id: faf2022d-2571-48dd-8b34-7c9a57817d76: %Ppl.PplSubInits.Model.PplSubInits{__meta_"},{"event":"cmd_output","timestamp":1607098264,"output":"_: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: ni"},{"event":"cmd_output","timestamp":1607098264,"output":"l, id: 120, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:11:04.670870],"},{"event":"cmd_output","timestamp":1607098264,"output":" pipeline_requests: #Ecto.Association.NotLoaded, ppl_i"},{"event":"cmd_output","timestamp":1607098264,"output":"d: \"faf2022d-2571-48dd-8b34-7c9a57817d76\", recovery_count: 0, result: nil, result_reason: nil, state"},{"event":"cmd_output","timestamp":1607098264,"output":": \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:11:04"},{"event":"cmd_output","timestamp":1607098264,"output":".670884]}\n\u001b[0m\u001b[22m\n16:11:04.692 [info] ppl_id: faf2022d-2571-48dd-8b34-7c9a57817d76, type: PplRe"},{"event":"cmd_output","timestamp":1607098264,"output":"quests, event: persisted source_args for pipeline: faf2022d-2571-48dd-8b34-7c9a57817d76, origin: Eli"},{"event":"cmd_output","timestamp":1607098264,"output":"xir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:11:04.694 [info] "},{"event":"cmd_output","timestamp":1607098264,"output":" ppl_id: faf2022d-2571-48dd-8b34-7c9a57817d76, type: PplSubInits, state: fetching, event: exit_sched"},{"event":"cmd_output","timestamp":1607098264,"output":"uling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11"},{"event":"cmd_output","timestamp":1607098264,"output":":04.716 [info] ppl_id: faf2022d-2571-48dd-8b34-7c9a57817d76, type: PplSubInits, state: regular_init"},{"event":"cmd_output","timestamp":1607098264,"output":", event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90),"},{"event":"cmd_output","timestamp":1607098264,"output":" \n\u001b[0m\u001b[22m\n16:11:04.754 [info] ppl_id: faf2022d-2571-48dd-8b34-7c9a57817d76, type: PplRequests, "},{"event":"cmd_output","timestamp":1607098264,"output":"event: persisted definition for request with request_token: 4f561cac-364b-11eb-b361-5254005464e2, or"},{"event":"cmd_output","timestamp":1607098264,"output":"igin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:11:0"},{"event":"cmd_output","timestamp":1607098264,"output":"4.768 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loade"},{"event":"cmd_output","timestamp":1607098264,"output":"d, \"queues\">, inserted_at: ~N[2020-12-04 16:11:04.767180], name: \"master-.semaphore/semaphore.yml\", "},{"event":"cmd_output","timestamp":1607098264,"output":"organization_id: \"214bb58c-6a85-45da-9502-5f1b19c7287a\", project_id: \"6e4e35ab-230c-4776-9694-132b0d"},{"event":"cmd_output","timestamp":1607098264,"output":"e9ed08\", queue_id: \"a4747260-b8a9-4227-bb47-03b9f8bef7cc\", scope: \"project\", updated_at: ~N[2020-12-"},{"event":"cmd_output","timestamp":1607098264,"output":"04 16:11:04.767190], user_generated: false}}\n\u001b[0m\u001b[22m\n16:11:04.772 [info] event: created, origin"},{"event":"cmd_output","timestamp":1607098264,"output":": Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:11:04.772 [inf"},{"event":"cmd_output","timestamp":1607098264,"output":"o] ppl_id: faf2022d-2571-48dd-8b34-7c9a57817d76, type: PplBlocks, block_index: 0, state: initializi"},{"event":"cmd_output","timestamp":1607098264,"output":"ng, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.al"},{"event":"cmd_output","timestamp":1607098264,"output":"l_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:11:04.775 [info] ppl_id: faf2022d-2571-48dd-8b34-7c9a57817d76, type:"},{"event":"cmd_output","timestamp":1607098264,"output":" PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098264,"output":".Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:04.790 [info] ppl_id: faf2022d-2571-48"},{"event":"cmd_output","timestamp":1607098264,"output":"dd-8b34-7c9a57817d76, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098264,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:04.798 [info] ppl_id: faf2022d-"},{"event":"cmd_output","timestamp":1607098264,"output":"2571-48dd-8b34-7c9a57817d76, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098264,"output":"origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:04.811 [info] ppl_id: fa"},{"event":"cmd_output","timestamp":1607098264,"output":"f2022d-2571-48dd-8b34-7c9a57817d76, type: Ppls, state: running, event: exit_scheduling, recovery_cou"},{"event":"cmd_output","timestamp":1607098269,"output":"nt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:09.795 [info] ppl"},{"event":"cmd_output","timestamp":1607098269,"output":"_id: faf2022d-2571-48dd-8b34-7c9a57817d76, type: Ppls, state: done, result: passed, event: exit_sche"},{"event":"cmd_output","timestamp":1607098269,"output":"duling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * t"},{"event":"cmd_output","timestamp":1607098269,"output":"est gofer service is called with valid params when ppl transitions to done (5319.7ms)\u001b[0m\n\nPpl.Loo"},{"event":"cmd_output","timestamp":1607098269,"output":"per.Ppls.STMHandler.ExecutionTimeLimit.Test\n * test pipeline is terminated when it is running for "},{"event":"cmd_output","timestamp":1607098269,"output":"longer than execution_time_limt\u001b[22m\n16:11:09.954 [info] Request: 'run: %{:repo_name => \"7_termina"},{"event":"cmd_output","timestamp":1607098269,"output":"tion\", \"branch_id\" => \"dfbf0996-4a14-4081-a441-7d19dbff3832\", \"branch_name\" => \"master\", \"commit_sha"},{"event":"cmd_output","timestamp":1607098269,"output":"\" => \"75891a4469\", \"file_name\" => \"semaphore.yml\", \"hook_id\" => \"52807e54-364b-11eb-a011-5254005464e"},{"event":"cmd_output","timestamp":1607098269,"output":"2\", \"label\" => \"master\", \"organization_id\" => \"b708a39d-ebea-4d3e-9656-c95d845bef29\", \"owner\" => \"rt"},{"event":"cmd_output","timestamp":1607098269,"output":"\", \"project_id\" => \"7843a585-b636-4300-b518-591a6ae54d27\", \"repo_name\" => \"2_basic\", \"request_token\""},{"event":"cmd_output","timestamp":1607098269,"output":" => \"52806ffe-364b-11eb-9d77-5254005464e2\", \"requester_id\" => \"b73854bd-58cc-4bdc-ba45-63171809bbd5\""},{"event":"cmd_output","timestamp":1607098269,"output":", \"service\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"a1"},{"event":"cmd_output","timestamp":1607098269,"output":"18b890-3fff-4935-8911-5cc73b6b9141\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:11:09.963 [info] "},{"event":"cmd_output","timestamp":1607098269,"output":" ppl_id: 12e51c6b-0589-41b8-a9fb-21bad6225a79, type: PplRequests, event: persisted schedule request "},{"event":"cmd_output","timestamp":1607098269,"output":"with request_token: 52806ffe-364b-11eb-9d77-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRe"},{"event":"cmd_output","timestamp":1607098269,"output":"questsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:11:09.966 [info] ppl_id: 12e51c6b-0589-41b8-"},{"event":"cmd_output","timestamp":1607098269,"output":"a9fb-21bad6225a79, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098269,"output":"Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:11:09.970 [info] Projec"},{"event":"cmd_output","timestamp":1607098269,"output":"t 7843a585-b636-4300-b518-591a6ae54d27 and branch masterlatest_wf details updated: \"wf_id: a118b890-"},{"event":"cmd_output","timestamp":1607098269,"output":"3fff-4935-8911-5cc73b6b9141, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:11:09.972 [info] Persisted ppl_sub_init f"},{"event":"cmd_output","timestamp":1607098269,"output":"or pipeline with ppl_id: 12e51c6b-0589-41b8-a9fb-21bad6225a79: %Ppl.PplSubInits.Model.PplSubInits{__"},{"event":"cmd_output","timestamp":1607098269,"output":"meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_descriptio"},{"event":"cmd_output","timestamp":1607098269,"output":"n: nil, id: 121, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:11:09.970"},{"event":"cmd_output","timestamp":1607098269,"output":"737], pipeline_requests: #Ecto.Association.NotLoaded, "},{"event":"cmd_output","timestamp":1607098269,"output":"ppl_id: \"12e51c6b-0589-41b8-a9fb-21bad6225a79\", recovery_count: 0, result: nil, result_reason: nil, "},{"event":"cmd_output","timestamp":1607098269,"output":"state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:"},{"event":"cmd_output","timestamp":1607098269,"output":"11:09.971139]}\n\u001b[0m\u001b[22m\n16:11:09.980 [info] ppl_id: 12e51c6b-0589-41b8-a9fb-21bad6225a79, type: "},{"event":"cmd_output","timestamp":1607098269,"output":"PplRequests, event: persisted definition for request with request_token: 52806ffe-364b-11eb-9d77-525"},{"event":"cmd_output","timestamp":1607098269,"output":"4005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098269,"output":"[22m\n16:11:09.980 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingState with na"},{"event":"cmd_output","timestamp":1607098269,"output":"me Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_"},{"event":"cmd_output","timestamp":1607098269,"output":"up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", "},{"event":"cmd_output","timestamp":1607098269,"output":"\"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"initia"},{"event":"cmd_output","timestamp":1607098269,"output":"lizing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, rep"},{"event":"cmd_output","timestamp":1607098269,"output":"o: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count,"},{"event":"cmd_output","timestamp":1607098269,"output":" :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:09.981 [info] Per"},{"event":"cmd_output","timestamp":1607098269,"output":"iodic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.ST"},{"event":"cmd_output","timestamp":1607098269,"output":"MHandler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STM"},{"event":"cmd_output","timestamp":1607098269,"output":"Handler-CreatedState\"]}, recurring args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0"},{"event":"cmd_output","timestamp":1607098269,"output":", initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip, "},{"event":"cmd_output","timestamp":1607098269,"output":"repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_cou"},{"event":"cmd_output","timestamp":1607098269,"output":"nt, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:0"},{"event":"cmd_output","timestamp":1607098269,"output":"9.981 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir."},{"event":"cmd_output","timestamp":1607098269,"output":"Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\""},{"event":"cmd_output","timestamp":1607098269,"output":"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"com"},{"event":"cmd_output","timestamp":1607098269,"output":"pilation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed"},{"event":"cmd_output","timestamp":1607098269,"output":"_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :u"},{"event":"cmd_output","timestamp":1607098269,"output":"pdated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, ta"},{"event":"cmd_output","timestamp":1607098269,"output":"sk_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:09.982 [info] Periodic from module Elixir.Ppl.PplSubInits.S"},{"event":"cmd_output","timestamp":1607098269,"output":"TMHandler.CompilationState with name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 1"},{"event":"cmd_output","timestamp":1607098269,"output":"00 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recur"},{"event":"cmd_output","timestamp":1607098269,"output":"ring args: %{allowed_states: [\"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: "},{"event":"cmd_output","timestamp":1607098269,"output":"-2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"compilation\", publisher_cb: :"},{"event":"cmd_output","timestamp":1607098269,"output":"skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recove"},{"event":"cmd_output","timestamp":1607098269,"output":"ry_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098269,"output":"6:11:09.982 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with nam"},{"event":"cmd_output","timestamp":1607098269,"output":"e Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-"},{"event":"cmd_output","timestamp":1607098269,"output":"wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurring args: %{allowed_states: [\"done"},{"event":"cmd_output","timestamp":1607098269,"output":"\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_"},{"event":"cmd_output","timestamp":1607098269,"output":"init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :s"},{"event":"cmd_output","timestamp":1607098269,"output":"tate, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor"},{"event":"cmd_output","timestamp":1607098270,"output":": :skip}\n\u001b[0m\u001b[22m\n16:11:10.096 [info] ppl_id: 12e51c6b-0589-41b8-a9fb-21bad6225a79, type: PplReq"},{"event":"cmd_output","timestamp":1607098270,"output":"uests, event: persisted source_args for pipeline: 12e51c6b-0589-41b8-a9fb-21bad6225a79, origin: Elix"},{"event":"cmd_output","timestamp":1607098270,"output":"ir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:11:10.099 [info] "},{"event":"cmd_output","timestamp":1607098270,"output":"ppl_id: 12e51c6b-0589-41b8-a9fb-21bad6225a79, type: PplSubInits, state: fetching, event: exit_schedu"},{"event":"cmd_output","timestamp":1607098270,"output":"ling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:"},{"event":"cmd_output","timestamp":1607098270,"output":"10.140 [info] ppl_id: 12e51c6b-0589-41b8-a9fb-21bad6225a79, type: PplSubInits, state: regular_init,"},{"event":"cmd_output","timestamp":1607098270,"output":" event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), "},{"event":"cmd_output","timestamp":1607098270,"output":"\n\u001b[0m\u001b[22m\n16:11:10.163 [info] ppl_id: 12e51c6b-0589-41b8-a9fb-21bad6225a79, type: PplRequests, e"},{"event":"cmd_output","timestamp":1607098270,"output":"vent: persisted definition for request with request_token: 52806ffe-364b-11eb-9d77-5254005464e2, ori"},{"event":"cmd_output","timestamp":1607098270,"output":"gin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:11:10"},{"event":"cmd_output","timestamp":1607098270,"output":".174 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded"},{"event":"cmd_output","timestamp":1607098270,"output":", \"queues\">, inserted_at: ~N[2020-12-04 16:11:10.165971], name: \"master-.semaphore/semaphore.yml\", o"},{"event":"cmd_output","timestamp":1607098270,"output":"rganization_id: \"b708a39d-ebea-4d3e-9656-c95d845bef29\", project_id: \"7843a585-b636-4300-b518-591a6ae"},{"event":"cmd_output","timestamp":1607098270,"output":"54d27\", queue_id: \"53e1f77e-5225-4ceb-a4d3-f5b16784b229\", scope: \"project\", updated_at: ~N[2020-12-0"},{"event":"cmd_output","timestamp":1607098270,"output":"4 16:11:10.165981], user_generated: false}}\n\u001b[0m\u001b[22m\n16:11:10.182 [info] ppl_id: not_available, "},{"event":"cmd_output","timestamp":1607098270,"output":"event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098270,"output":"22m\n16:11:10.182 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState"},{"event":"cmd_output","timestamp":1607098270,"output":".all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:11:10.183 [info] ppl_id: 12e51c6b-0589-41b8-a9fb-21bad6225a79, ty"},{"event":"cmd_output","timestamp":1607098270,"output":"pe: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098270,"output":"r.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:11:10.183 [info] ppl"},{"event":"cmd_output","timestamp":1607098270,"output":"_id: 12e51c6b-0589-41b8-a9fb-21bad6225a79, type: PplBlocks, block_index: 1, state: initializing, eve"},{"event":"cmd_output","timestamp":1607098270,"output":"nt: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1"},{"event":"cmd_output","timestamp":1607098270,"output":"(L105), \n\u001b[0m\u001b[22m\n16:11:10.186 [info] ppl_id: 12e51c6b-0589-41b8-a9fb-21bad6225a79, type: PplSub"},{"event":"cmd_output","timestamp":1607098270,"output":"Inits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper"},{"event":"cmd_output","timestamp":1607098270,"output":".STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:10.196 [info] ppl_id: 12e51c6b-0589-41b8-a9fb"},{"event":"cmd_output","timestamp":1607098270,"output":"-21bad6225a79, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098270,"output":".Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:10.486 [info] Periodic from module Eli"},{"event":"cmd_output","timestamp":1607098270,"output":"xir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 10"},{"event":"cmd_output","timestamp":1607098270,"output":"0 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args: %"},{"event":"cmd_output","timestamp":1607098270,"output":"{allowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl."},{"event":"cmd_output","timestamp":1607098270,"output":"Ppls.Model.Ppls, observed_state: \"pending\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandl"},{"event":"cmd_output","timestamp":1607098270,"output":"er.PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :stat"},{"event":"cmd_output","timestamp":1607098270,"output":"e, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervi"},{"event":"cmd_output","timestamp":1607098270,"output":"sor}\n\u001b[0m\u001b[22m\n16:11:10.487 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.QueuingState w"},{"event":"cmd_output","timestamp":1607098270,"output":"ith name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake"},{"event":"cmd_output","timestamp":1607098270,"output":"_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{allowed_states: [\"queuing\", \"running\""},{"event":"cmd_output","timestamp":1607098270,"output":", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", publ"},{"event":"cmd_output","timestamp":1607098270,"output":"isher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, r"},{"event":"cmd_output","timestamp":1607098270,"output":"eturning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema:"},{"event":"cmd_output","timestamp":1607098270,"output":" Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:10.487 [info] Periodic from module "},{"event":"cmd_output","timestamp":1607098270,"output":"Elixir.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHandler.RunningState :: period:"},{"event":"cmd_output","timestamp":1607098270,"output":" 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring args"},{"event":"cmd_output","timestamp":1607098270,"output":": %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.M"},{"event":"cmd_output","timestamp":1607098270,"output":"odel.Ppls, observed_state: \"running\", publisher_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler.Ru"},{"event":"cmd_output","timestamp":1607098270,"output":"nningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :r"},{"event":"cmd_output","timestamp":1607098270,"output":"esult, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\r"},{"event":"cmd_output","timestamp":1607098270,"output":"\n\u001b[0m\u001b[22m\n16:11:10.488 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.StoppingState with "},{"event":"cmd_output","timestamp":1607098270,"output":"name Elixir.Ppl.Ppls.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up"},{"event":"cmd_output","timestamp":1607098270,"output":"\", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], c"},{"event":"cmd_output","timestamp":1607098270,"output":"ooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"stopping\", publisher_cb: #"},{"event":"cmd_output","timestamp":1607098270,"output":"Function<0.71803493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: ["},{"event":"cmd_output","timestamp":1607098270,"output":":id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.M"},{"event":"cmd_output","timestamp":1607098270,"output":"odel.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:10.488 [info] Periodic from module Elixir.Ppl."},{"event":"cmd_output","timestamp":1607098270,"output":"PplBlocks.STMHandler.InitializingState with name Elixir.Ppl.PplBlocks.STMHandler.InitializingState :"},{"event":"cmd_output","timestamp":1607098270,"output":": period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-InitializingState"},{"event":"cmd_output","timestamp":1607098270,"output":"\"]}, recurring args: %{allowed_states: [\"initializing\", \"waiting\", \"done\"], cooling_time_sec: 0, ini"},{"event":"cmd_output","timestamp":1607098270,"output":"tial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"initializing\", publisher_cb: :skip, repo"},{"event":"cmd_output","timestamp":1607098270,"output":": Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, "},{"event":"cmd_output","timestamp":1607098270,"output":":ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098270,"output":"6:11:10.489 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.WaitingState with name Elix"},{"event":"cmd_output","timestamp":1607098270,"output":"ir.Ppl.PplBlocks.STMHandler.WaitingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", ["},{"event":"cmd_output","timestamp":1607098270,"output":"\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurring args: %{allowed_states: [\"waiting\", \"running\", "},{"event":"cmd_output","timestamp":1607098270,"output":"\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"waiting"},{"event":"cmd_output","timestamp":1607098270,"output":"\", publisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>, repo: Ppl.E"},{"event":"cmd_output","timestamp":1607098270,"output":"ctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id"},{"event":"cmd_output","timestamp":1607098270,"output":", :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:10"},{"event":"cmd_output","timestamp":1607098270,"output":".489 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.RunningState with name Elixir.Ppl."},{"event":"cmd_output","timestamp":1607098270,"output":"PplBlocks.STMHandler.RunningState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Pp"},{"event":"cmd_output","timestamp":1607098270,"output":"lBlocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\""},{"event":"cmd_output","timestamp":1607098270,"output":"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"running\", pu"},{"event":"cmd_output","timestamp":1607098270,"output":"blisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0>, repo: Ppl.EctoR"},{"event":"cmd_output","timestamp":1607098270,"output":"epo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :b"},{"event":"cmd_output","timestamp":1607098270,"output":"lock_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098270,"output":"6:11:10.490 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.StoppingState with name Eli"},{"event":"cmd_output","timestamp":1607098270,"output":"xir.Ppl.PplBlocks.STMHandler.StoppingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\","},{"event":"cmd_output","timestamp":1607098270,"output":" [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"]"},{"event":"cmd_output","timestamp":1607098270,"output":", cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"stopping\", pu"},{"event":"cmd_output","timestamp":1607098270,"output":"blisher_cb: #Function<0.104215991/1 in Ppl.PplBlocks.STMHandler.StoppingState.args/0>, repo: Ppl.Ect"},{"event":"cmd_output","timestamp":1607098270,"output":"oRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, "},{"event":"cmd_output","timestamp":1607098270,"output":":block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098270,"output":"\n16:11:10.490 [info] Periodic from module Elixir.Block.Blocks.STMHandler.InitializingState with nam"},{"event":"cmd_output","timestamp":1607098270,"output":"e Elixir.Block.Blocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wa"},{"event":"cmd_output","timestamp":1607098270,"output":"ke_up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"running\""},{"event":"cmd_output","timestamp":1607098270,"output":", \"done\"], cooling_time_sec: 0, initial_query: Block.Blocks.Model.Blocks, observed_state: \"initializ"},{"event":"cmd_output","timestamp":1607098270,"output":"ing\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :"},{"event":"cmd_output","timestamp":1607098270,"output":"state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m"},{"event":"cmd_output","timestamp":1607098270,"output":"\u001b[22m\n16:11:10.491 [info] Periodic from module Elixir.Block.Blocks.STMHandler.RunningState with na"},{"event":"cmd_output","timestamp":1607098270,"output":"me Elixir.Block.Blocks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_u"},{"event":"cmd_output","timestamp":1607098270,"output":"p\", [\"Block-Blocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stoppi"},{"event":"cmd_output","timestamp":1607098270,"output":"ng\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"runni"},{"event":"cmd_output","timestamp":1607098270,"output":"ng\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :s"},{"event":"cmd_output","timestamp":1607098270,"output":"tate, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098270,"output":"[22m\n16:11:10.491 [info] Periodic from module Elixir.Block.Blocks.STMHandler.StoppingState with na"},{"event":"cmd_output","timestamp":1607098270,"output":"me Elixir.Block.Blocks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_"},{"event":"cmd_output","timestamp":1607098270,"output":"up\", [\"Block-Blocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"don"},{"event":"cmd_output","timestamp":1607098270,"output":"e\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"stopping\", pub"},{"event":"cmd_output","timestamp":1607098270,"output":"lisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :r"},{"event":"cmd_output","timestamp":1607098270,"output":"ecovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098270,"output":":11:10.492 [info] Periodic from module Elixir.Block.Tasks.STMHandler.PendingState with name Elixir."},{"event":"cmd_output","timestamp":1607098270,"output":"Block.Tasks.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block"},{"event":"cmd_output","timestamp":1607098270,"output":"-Tasks-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_ti"},{"event":"cmd_output","timestamp":1607098270,"output":"me_sec: 0, initial_query: Block.Tasks.Model.Tasks, observed_state: \"pending\", publisher_cb: :skip, r"},{"event":"cmd_output","timestamp":1607098270,"output":"epo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :blo"},{"event":"cmd_output","timestamp":1607098270,"output":"ck_id, :build_request_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098270,"output":"1:10.492 [info] Periodic from module Elixir.Block.Tasks.STMHandler.RunningState with name Elixir.Bl"},{"event":"cmd_output","timestamp":1607098270,"output":"ock.Tasks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-T"},{"event":"cmd_output","timestamp":1607098270,"output":"asks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], "},{"event":"cmd_output","timestamp":1607098270,"output":"cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"running\", publisher_c"},{"event":"cmd_output","timestamp":1607098270,"output":"b: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_"},{"event":"cmd_output","timestamp":1607098270,"output":"count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:10.493"},{"event":"cmd_output","timestamp":1607098270,"output":" [info] Periodic from module Elixir.Block.Tasks.STMHandler.StoppingState with name Elixir.Block.Tas"},{"event":"cmd_output","timestamp":1607098270,"output":"ks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-S"},{"event":"cmd_output","timestamp":1607098270,"output":"TMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec"},{"event":"cmd_output","timestamp":1607098270,"output":": -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"stopping\", publisher_cb: :skip, repo:"},{"event":"cmd_output","timestamp":1607098270,"output":" Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_i"},{"event":"cmd_output","timestamp":1607098270,"output":"d], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:10.602 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098270,"output":": 12e51c6b-0589-41b8-a9fb-21bad6225a79, type: Ppls, state: queuing, event: exit_scheduling, recovery"},{"event":"cmd_output","timestamp":1607098270,"output":"_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:10.610 [info] "},{"event":"cmd_output","timestamp":1607098270,"output":" ppl_id: 12e51c6b-0589-41b8-a9fb-21bad6225a79, type: PplBlocks, block_index: 0, state: waiting, even"},{"event":"cmd_output","timestamp":1607098270,"output":"t: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098270,"output":"m\u001b[22m\n16:11:10.614 [info] ppl_id: 12e51c6b-0589-41b8-a9fb-21bad6225a79, type: Ppls, state: runnin"},{"event":"cmd_output","timestamp":1607098270,"output":"g, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90)"},{"event":"cmd_output","timestamp":1607098270,"output":", \n\u001b[0m\u001b[22m\n16:11:10.620 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: "},{"event":"cmd_output","timestamp":1607098270,"output":"\"12e51c6b-0589-41b8-a9fb-21bad6225a79\"\n\u001b[0m\u001b[22m\n16:11:10.624 [info] ppl_id: 12e51c6b-0589-41b8-a"},{"event":"cmd_output","timestamp":1607098270,"output":"9fb-21bad6225a79, type: PplBlocks, block_index: 1, state: waiting, event: exit_scheduling, recovery_"},{"event":"cmd_output","timestamp":1607098270,"output":"count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:10.634 [info] "},{"event":"cmd_output","timestamp":1607098270,"output":"block_id: 210c22c6-007f-413d-8b95-70c3095f2e16, type: BlockRequests, event: persisted block run requ"},{"event":"cmd_output","timestamp":1607098270,"output":"est from ppl 12e51c6b-0589-41b8-a9fb-21bad6225a79 for block 0, origin: Elixir.Block.BlockRequests.Mo"},{"event":"cmd_output","timestamp":1607098270,"output":"del.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:11:10.637 [info] block_id: 210c22"},{"event":"cmd_output","timestamp":1607098270,"output":"c6-007f-413d-8b95-70c3095f2e16, type: Blocks, state: initializing, event: initializing, recovery_cou"},{"event":"cmd_output","timestamp":1607098270,"output":"nt: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:11:10.640 [inf"},{"event":"cmd_output","timestamp":1607098270,"output":"o] Block 0 of pipeline with id: 12e51c6b-0589-41b8-a9fb-21bad6225a79 scheduled in block service wit"},{"event":"cmd_output","timestamp":1607098270,"output":"h id: : \"210c22c6-007f-413d-8b95-70c3095f2e16\"\n\u001b[0m\u001b[22m\n16:11:10.643 [info] ppl_id: 12e51c6b-058"},{"event":"cmd_output","timestamp":1607098270,"output":"9-41b8-a9fb-21bad6225a79, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, r"},{"event":"cmd_output","timestamp":1607098270,"output":"ecovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:10.648 "},{"event":"cmd_output","timestamp":1607098270,"output":"[info] block_id: 210c22c6-007f-413d-8b95-70c3095f2e16, type: BlockRequests, event: persisted build "},{"event":"cmd_output","timestamp":1607098270,"output":"and sub_ppl details for block_request: 210c22c6-007f-413d-8b95-70c3095f2e16, origin: Elixir.Block.Bl"},{"event":"cmd_output","timestamp":1607098270,"output":"ockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:11:10.660 [info] block_"},{"event":"cmd_output","timestamp":1607098270,"output":"id: 210c22c6-007f-413d-8b95-70c3095f2e16, type: Tasks, state: pending, event: created, recovery_coun"},{"event":"cmd_output","timestamp":1607098270,"output":"t: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:11:1"},{"event":"cmd_output","timestamp":1607098270,"output":"0.662 [info] block_id: 210c22c6-007f-413d-8b95-70c3095f2e16, type: Blocks, state: running, event: e"},{"event":"cmd_output","timestamp":1607098270,"output":"xit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098270,"output":"2m\n16:11:10.679 [info] block_id: 210c22c6-007f-413d-8b95-70c3095f2e16, type: Tasks, state: running"},{"event":"cmd_output","timestamp":1607098270,"output":", event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90),"},{"event":"cmd_output","timestamp":1607098271,"output":" \n\u001b[0m\u001b[22m\n16:11:11.161 [info] ppl_id: 12e51c6b-0589-41b8-a9fb-21bad6225a79, type: Ppls, state: "},{"event":"cmd_output","timestamp":1607098271,"output":"stopping, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change"},{"event":"cmd_output","timestamp":1607098271,"output":"/1(L90), \n\u001b[0m\u001b[22m\n16:11:11.170 [info] ppl_id: 12e51c6b-0589-41b8-a9fb-21bad6225a79, type: PplBl"},{"event":"cmd_output","timestamp":1607098271,"output":"ocks, block_index: 1, state: done, result: canceled, event: exit_scheduling, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098271,"output":"in: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:11.179 [info] ppl_id: 12e51c"},{"event":"cmd_output","timestamp":1607098271,"output":"6b-0589-41b8-a9fb-21bad6225a79, block_id: 210c22c6-007f-413d-8b95-70c3095f2e16, type: PplBlocks, blo"},{"event":"cmd_output","timestamp":1607098271,"output":"ck_index: 0, state: stopping, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.I"},{"event":"cmd_output","timestamp":1607098271,"output":"mpl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:11.195 [info] block_id: 210c22c6-007f-413d-8b95-70c"},{"event":"cmd_output","timestamp":1607098271,"output":"3095f2e16, type: Blocks, state: stopping, event: exit_scheduling, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098271,"output":"Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:11.216 [info] block_id: 210c22c6-007f-4"},{"event":"cmd_output","timestamp":1607098271,"output":"13d-8b95-70c3095f2e16, type: Tasks, state: stopping, event: exit_scheduling, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098280,"output":"in: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:20.758 [info] block_id: 210c"},{"event":"cmd_output","timestamp":1607098280,"output":"22c6-007f-413d-8b95-70c3095f2e16, type: Tasks, state: done, event: exit_scheduling, recovery_count: "},{"event":"cmd_output","timestamp":1607098280,"output":"0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:20.768 [info] block_i"},{"event":"cmd_output","timestamp":1607098280,"output":"d: 210c22c6-007f-413d-8b95-70c3095f2e16, type: Blocks, state: done, event: exit_scheduling, recovery"},{"event":"cmd_output","timestamp":1607098280,"output":"_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:20.778 [info] "},{"event":"cmd_output","timestamp":1607098280,"output":" ppl_id: 12e51c6b-0589-41b8-a9fb-21bad6225a79, block_id: 210c22c6-007f-413d-8b95-70c3095f2e16, type:"},{"event":"cmd_output","timestamp":1607098280,"output":" PplBlocks, block_index: 0, state: done, result: stopped, event: exit_scheduling, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098280,"output":" origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:20.796 [info] ppl_id: 1"},{"event":"cmd_output","timestamp":1607098280,"output":"2e51c6b-0589-41b8-a9fb-21bad6225a79, type: Ppls, state: done, result: stopped, event: exit_schedulin"},{"event":"cmd_output","timestamp":1607098281,"output":"g, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test p"},{"event":"cmd_output","timestamp":1607098281,"output":"ipeline is terminated when it is running for longer than execution_time_limt (11143.7ms)\u001b[0m\n\nPpl."},{"event":"cmd_output","timestamp":1607098281,"output":"Ppls.Model.PplsQueries.Test\n * test get pipeline in queuing and move it to scheduling\r * test get"},{"event":"cmd_output","timestamp":1607098281,"output":" pipeline in queuing and move it to scheduling (skipped)\n * test insert new pipeline event from lo"},{"event":"cmd_output","timestamp":1607098281,"output":"cal pipeline service\r * test insert new pipeline event from local pipeline service (skipped)\n * t"},{"event":"cmd_output","timestamp":1607098281,"output":"est move pipeline from pending to running\r * test move pipeline from pending to running (skipped)\n"},{"event":"cmd_output","timestamp":1607098281,"output":" * test get_details() returns correct values\r * test get_details() returns correct values (skipped"},{"event":"cmd_output","timestamp":1607098281,"output":")\n * test move pipeline from stopping to done\r * test move pipeline from stopping to done (skippe"},{"event":"cmd_output","timestamp":1607098281,"output":"d)\n * test move pipeline from initializing-scheduling to done\r * test move pipeline from initiali"},{"event":"cmd_output","timestamp":1607098281,"output":"zing-scheduling to done (skipped)\n * test move pipeline from running to stopping\r * test move pip"},{"event":"cmd_output","timestamp":1607098281,"output":"eline from running to stopping (skipped)\n * test list pipelines correctly handles no ppl found sit"},{"event":"cmd_output","timestamp":1607098281,"output":"uation \r * test list pipelines correctly handles no ppl found situation (skipped)\n * test list p"},{"event":"cmd_output","timestamp":1607098281,"output":"ipelines by git_ref_types and label\u001b[22m\n16:11:21.134 [info] ppl_id: 556b5733-0ba4-4004-9896-c5dac"},{"event":"cmd_output","timestamp":1607098281,"output":"f7ff2f2, type: PplRequests, event: persisted schedule request with request_token: 5929be5a-364b-11eb"},{"event":"cmd_output","timestamp":1607098281,"output":"-9611-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55),"},{"event":"cmd_output","timestamp":1607098281,"output":" \n\u001b[0m\u001b[22m\n16:11:21.137 [info] ppl_id: 556b5733-0ba4-4004-9896-c5dacf7ff2f2, type: PplRequests, "},{"event":"cmd_output","timestamp":1607098281,"output":"event: persisted definition for request with request_token: 5929be5a-364b-11eb-9611-5254005464e2, or"},{"event":"cmd_output","timestamp":1607098281,"output":"igin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:11:2"},{"event":"cmd_output","timestamp":1607098281,"output":"1.139 [info] ppl_id: a6049791-c63a-4e9f-886a-d08f5e014890, type: PplRequests, event: persisted sche"},{"event":"cmd_output","timestamp":1607098281,"output":"dule request with request_token: 2e3d680a-f0dd-44bc-8a46-3f4948ee9fa3, origin: Elixir.Ppl.PplRequest"},{"event":"cmd_output","timestamp":1607098281,"output":"s.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:11:21.142 [info] ppl_id: a60497"},{"event":"cmd_output","timestamp":1607098281,"output":"91-c63a-4e9f-886a-d08f5e014890, type: PplRequests, event: persisted definition for request with requ"},{"event":"cmd_output","timestamp":1607098281,"output":"est_token: 2e3d680a-f0dd-44bc-8a46-3f4948ee9fa3, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQue"},{"event":"cmd_output","timestamp":1607098281,"output":"ries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:11:21.145 [info] ppl_id: d8aa91c7-b84c-4ec3-9f92-b69"},{"event":"cmd_output","timestamp":1607098281,"output":"67fbaa6d9, type: PplRequests, event: persisted schedule request with request_token: 13e19ed5-12c9-42"},{"event":"cmd_output","timestamp":1607098281,"output":"8a-ad99-97bf52b52530, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55"},{"event":"cmd_output","timestamp":1607098281,"output":"), \n\u001b[0m\u001b[22m\n16:11:21.147 [info] ppl_id: d8aa91c7-b84c-4ec3-9f92-b6967fbaa6d9, type: PplRequests"},{"event":"cmd_output","timestamp":1607098281,"output":", event: persisted definition for request with request_token: 13e19ed5-12c9-428a-ad99-97bf52b52530, "},{"event":"cmd_output","timestamp":1607098281,"output":"origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:11"},{"event":"cmd_output","timestamp":1607098281,"output":":21.150 [info] ppl_id: d8aa91c7-b84c-4ec3-9f92-b6967fbaa6d9, type: Ppls, state: initializing, event"},{"event":"cmd_output","timestamp":1607098281,"output":": initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124"},{"event":"cmd_output","timestamp":1607098281,"output":"), \n\u001b[0m\u001b[22m\n16:11:21.157 [info] Persisted ppl_sub_init for pipeline with ppl_id: d8aa91c7-b84c-"},{"event":"cmd_output","timestamp":1607098281,"output":"4ec3-9f92-b6967fbaa6d9: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, "},{"event":"cmd_output","timestamp":1607098281,"output":"\"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 122, in_scheduling: false, "},{"event":"cmd_output","timestamp":1607098281,"output":"init_type: \"regular\", inserted_at: ~N[2020-12-04 16:11:21.154748], pipeline_requests: #Ecto.Associat"},{"event":"cmd_output","timestamp":1607098281,"output":"ion.NotLoaded, ppl_id: \"d8aa91c7-b84c-4ec3-9f92-b6967f"},{"event":"cmd_output","timestamp":1607098281,"output":"baa6d9\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: ni"},{"event":"cmd_output","timestamp":1607098281,"output":"l, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:11:21.154761]}\n\u001b[0m\u001b[22m\n16:11:21.166"},{"event":"cmd_output","timestamp":1607098281,"output":" [info] ppl_id: ee12bde3-d79a-4d88-9f41-9633f4ff3d50, type: PplRequests, event: persisted schedule "},{"event":"cmd_output","timestamp":1607098281,"output":"request with request_token: 717e5d49-9468-4319-9c61-3054dd5ef4a3, origin: Elixir.Ppl.PplRequests.Mod"},{"event":"cmd_output","timestamp":1607098281,"output":"el.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:11:21.167 [info] ppl_id: ee12bde3-d7"},{"event":"cmd_output","timestamp":1607098281,"output":"9a-4d88-9f41-9633f4ff3d50, type: PplRequests, event: persisted definition for request with request_t"},{"event":"cmd_output","timestamp":1607098281,"output":"oken: 717e5d49-9468-4319-9c61-3054dd5ef4a3, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries."},{"event":"cmd_output","timestamp":1607098281,"output":"insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:11:21.170 [info] ppl_id: ee12bde3-d79a-4d88-9f41-9633f4ff"},{"event":"cmd_output","timestamp":1607098281,"output":"3d50, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Pp"},{"event":"cmd_output","timestamp":1607098281,"output":"ls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:11:21.174 [info] Persisted ppl_sub_i"},{"event":"cmd_output","timestamp":1607098281,"output":"nit for pipeline with ppl_id: ee12bde3-d79a-4d88-9f41-9633f4ff3d50: %Ppl.PplSubInits.Model.PplSubIni"},{"event":"cmd_output","timestamp":1607098281,"output":"ts{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_descr"},{"event":"cmd_output","timestamp":1607098281,"output":"iption: nil, id: 123, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:11:2"},{"event":"cmd_output","timestamp":1607098281,"output":"1.173142], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"ee12bde3-d79a-4d88-9f41-9633f4ff3d50\", recovery_count: 0, result: nil, result_reason: "},{"event":"cmd_output","timestamp":1607098281,"output":"nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-0"},{"event":"cmd_output","timestamp":1607098281,"output":"4 16:11:21.173152]}\n\u001b[0m\u001b[22m\n16:11:21.178 [info] ppl_id: a727ad7f-9f08-434f-96da-a67df18ea0eb, t"},{"event":"cmd_output","timestamp":1607098281,"output":"ype: PplRequests, event: persisted schedule request with request_token: 91d13c3a-180a-49ee-b939-f9f4"},{"event":"cmd_output","timestamp":1607098281,"output":"de0a7161, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098281,"output":"2m\n16:11:21.180 [info] ppl_id: a727ad7f-9f08-434f-96da-a67df18ea0eb, type: PplRequests, event: per"},{"event":"cmd_output","timestamp":1607098281,"output":"sisted definition for request with request_token: 91d13c3a-180a-49ee-b939-f9f4de0a7161, origin: Elix"},{"event":"cmd_output","timestamp":1607098281,"output":"ir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:11:21.188 [inf"},{"event":"cmd_output","timestamp":1607098281,"output":"o] ppl_id: a727ad7f-9f08-434f-96da-a67df18ea0eb, type: Ppls, state: initializing, event: initializi"},{"event":"cmd_output","timestamp":1607098281,"output":"ng, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098281,"output":"2m\n16:11:21.192 [info] Persisted ppl_sub_init for pipeline with ppl_id: a727ad7f-9f08-434f-96da-a6"},{"event":"cmd_output","timestamp":1607098281,"output":"7df18ea0eb: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_su"},{"event":"cmd_output","timestamp":1607098281,"output":"b_inits\">, compile_task_id: nil, error_description: nil, id: 124, in_scheduling: false, init_type: \""},{"event":"cmd_output","timestamp":1607098281,"output":"regular\", inserted_at: ~N[2020-12-04 16:11:21.191050], pipeline_requests: #Ecto.Association.NotLoade"},{"event":"cmd_output","timestamp":1607098281,"output":"d, ppl_id: \"a727ad7f-9f08-434f-96da-a67df18ea0eb\", rec"},{"event":"cmd_output","timestamp":1607098281,"output":"overy_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate"},{"event":"cmd_output","timestamp":1607098281,"output":"_request_desc: nil, updated_at: ~N[2020-12-04 16:11:21.191060]}\n\u001b[0m\u001b[22m\n16:11:21.196 [info] ppl"},{"event":"cmd_output","timestamp":1607098281,"output":"_id: fff41c6d-21e9-4527-845d-b67107ebe7ed, type: PplRequests, event: persisted schedule request with"},{"event":"cmd_output","timestamp":1607098281,"output":" request_token: 191f251b-56c2-4445-a654-d6362d7a4524, origin: Elixir.Ppl.PplRequests.Model.PplReques"},{"event":"cmd_output","timestamp":1607098281,"output":"tsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:11:21.198 [info] ppl_id: fff41c6d-21e9-4527-845d"},{"event":"cmd_output","timestamp":1607098281,"output":"-b67107ebe7ed, type: PplRequests, event: persisted definition for request with request_token: 191f25"},{"event":"cmd_output","timestamp":1607098281,"output":"1b-56c2-4445-a654-d6362d7a4524, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_defin"},{"event":"cmd_output","timestamp":1607098281,"output":"ition/3(L76), \n\u001b[0m\u001b[22m\n16:11:21.201 [info] ppl_id: fff41c6d-21e9-4527-845d-b67107ebe7ed, type: "},{"event":"cmd_output","timestamp":1607098281,"output":"Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.Ppl"},{"event":"cmd_output","timestamp":1607098281,"output":"sQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:11:21.212 [info] Persisted ppl_sub_init for pipe"},{"event":"cmd_output","timestamp":1607098281,"output":"line with ppl_id: fff41c6d-21e9-4527-845d-b67107ebe7ed: %Ppl.PplSubInits.Model.PplSubInits{__meta__:"},{"event":"cmd_output","timestamp":1607098281,"output":" #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil,"},{"event":"cmd_output","timestamp":1607098281,"output":" id: 125, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:11:21.210803], p"},{"event":"cmd_output","timestamp":1607098281,"output":"ipeline_requests: #Ecto.Association.NotLoaded, ppl_id:"},{"event":"cmd_output","timestamp":1607098281,"output":" \"fff41c6d-21e9-4527-845d-b67107ebe7ed\", recovery_count: 0, result: nil, result_reason: nil, state: "},{"event":"cmd_output","timestamp":1607098281,"output":"\"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:11:21.2"},{"event":"cmd_output","timestamp":1607098281,"output":"10813]}\n\u001b[0m\u001b[22m\n16:11:21.217 [info] ppl_id: 414b2fb8-f809-4b88-9b0e-8c5dd19c0cba, type: PplRequ"},{"event":"cmd_output","timestamp":1607098281,"output":"ests, event: persisted schedule request with request_token: 9da14d8a-decb-49a5-8368-eba94217d6c1, or"},{"event":"cmd_output","timestamp":1607098281,"output":"igin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:11:21"},{"event":"cmd_output","timestamp":1607098281,"output":".219 [info] ppl_id: 414b2fb8-f809-4b88-9b0e-8c5dd19c0cba, type: PplRequests, event: persisted defin"},{"event":"cmd_output","timestamp":1607098281,"output":"ition for request with request_token: 9da14d8a-decb-49a5-8368-eba94217d6c1, origin: Elixir.Ppl.PplRe"},{"event":"cmd_output","timestamp":1607098281,"output":"quests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:11:21.223 [info] ppl_id: "},{"event":"cmd_output","timestamp":1607098281,"output":"414b2fb8-f809-4b88-9b0e-8c5dd19c0cba, type: Ppls, state: initializing, event: initializing, recovery"},{"event":"cmd_output","timestamp":1607098281,"output":"_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:11:21"},{"event":"cmd_output","timestamp":1607098281,"output":".227 [info] Persisted ppl_sub_init for pipeline with ppl_id: 414b2fb8-f809-4b88-9b0e-8c5dd19c0cba: "},{"event":"cmd_output","timestamp":1607098281,"output":"%Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, c"},{"event":"cmd_output","timestamp":1607098281,"output":"ompile_task_id: nil, error_description: nil, id: 126, in_scheduling: false, init_type: \"regular\", in"},{"event":"cmd_output","timestamp":1607098281,"output":"serted_at: ~N[2020-12-04 16:11:21.225720], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"414b2fb8-f809-4b88-9b0e-8c5dd19c0cba\", recovery_count:"},{"event":"cmd_output","timestamp":1607098281,"output":" 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_des"},{"event":"cmd_output","timestamp":1607098281,"output":"c: nil, updated_at: ~N[2020-12-04 16:11:21.225729]}\n\u001b[0m\u001b[22m\n16:11:21.231 [info] ppl_id: 3896791"},{"event":"cmd_output","timestamp":1607098281,"output":"1-160b-4392-b867-b83cb5692c2d, type: PplRequests, event: persisted schedule request with request_tok"},{"event":"cmd_output","timestamp":1607098281,"output":"en: ae71b015-5323-466e-b156-5cb528d18ebf, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.pr"},{"event":"cmd_output","timestamp":1607098281,"output":"ocess_response/2(L55), \n\u001b[0m\u001b[22m\n16:11:21.232 [info] ppl_id: 38967911-160b-4392-b867-b83cb5692c2"},{"event":"cmd_output","timestamp":1607098281,"output":"d, type: PplRequests, event: persisted definition for request with request_token: ae71b015-5323-466e"},{"event":"cmd_output","timestamp":1607098281,"output":"-b156-5cb528d18ebf, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76)"},{"event":"cmd_output","timestamp":1607098281,"output":", \n\u001b[0m\u001b[22m\n16:11:21.235 [info] ppl_id: 38967911-160b-4392-b867-b83cb5692c2d, type: Ppls, state:"},{"event":"cmd_output","timestamp":1607098281,"output":" initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.pro"},{"event":"cmd_output","timestamp":1607098281,"output":"cess_response/2(L124), \n\u001b[0m\u001b[22m\n16:11:21.244 [info] Persisted ppl_sub_init for pipeline with pp"},{"event":"cmd_output","timestamp":1607098281,"output":"l_id: 38967911-160b-4392-b867-b83cb5692c2d: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schem"},{"event":"cmd_output","timestamp":1607098281,"output":"a.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 127, in"},{"event":"cmd_output","timestamp":1607098281,"output":"_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:11:21.242927], pipeline_requ"},{"event":"cmd_output","timestamp":1607098281,"output":"ests: #Ecto.Association.NotLoaded, ppl_id: \"38967911-1"},{"event":"cmd_output","timestamp":1607098281,"output":"60b-4392-b867-b83cb5692c2d\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", t"},{"event":"cmd_output","timestamp":1607098281,"output":"erminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:11:21.242940]}\n\u001b[0"},{"event":"cmd_output","timestamp":1607098281,"output":"m\u001b[22m\n16:11:21.248 [info] ppl_id: 098cc909-7303-414e-a62e-b4ac3abf102a, type: PplRequests, event:"},{"event":"cmd_output","timestamp":1607098281,"output":" persisted schedule request with request_token: d586e149-796b-4ae1-9195-37ca632e2b00, origin: Elixir"},{"event":"cmd_output","timestamp":1607098281,"output":".Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:11:21.250 [info] "},{"event":"cmd_output","timestamp":1607098281,"output":" ppl_id: 098cc909-7303-414e-a62e-b4ac3abf102a, type: PplRequests, event: persisted definition for re"},{"event":"cmd_output","timestamp":1607098281,"output":"quest with request_token: d586e149-796b-4ae1-9195-37ca632e2b00, origin: Elixir.Ppl.PplRequests.Model"},{"event":"cmd_output","timestamp":1607098281,"output":".PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:11:21.253 [info] ppl_id: 098cc909-730"},{"event":"cmd_output","timestamp":1607098281,"output":"3-414e-a62e-b4ac3abf102a, type: Ppls, state: initializing, event: initializing, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098281,"output":"rigin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:11:21.256 [info] "},{"event":"cmd_output","timestamp":1607098281,"output":" Persisted ppl_sub_init for pipeline with ppl_id: 098cc909-7303-414e-a62e-b4ac3abf102a: %Ppl.PplSubI"},{"event":"cmd_output","timestamp":1607098281,"output":"nits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_"},{"event":"cmd_output","timestamp":1607098281,"output":"id: nil, error_description: nil, id: 128, in_scheduling: false, init_type: \"regular\", inserted_at: ~"},{"event":"cmd_output","timestamp":1607098281,"output":"N[2020-12-04 16:11:21.255211], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"098cc909-7303-414e-a62e-b4ac3abf102a\", recovery_count: 0, result: "},{"event":"cmd_output","timestamp":1607098281,"output":"nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, upda"},{"event":"cmd_output","timestamp":1607098281,"output":"ted_at: ~N[2020-12-04 16:11:21.255220]}\n\u001b[0m\u001b[22m\n16:11:21.261 [info] ppl_id: fa7ece35-5a4c-46ad-"},{"event":"cmd_output","timestamp":1607098281,"output":"ab9e-e0947b6f3395, type: PplRequests, event: persisted schedule request with request_token: 6805d06c"},{"event":"cmd_output","timestamp":1607098281,"output":"-0a96-44e4-a3f8-cc334bffc273, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_respon"},{"event":"cmd_output","timestamp":1607098281,"output":"se/2(L55), \n\u001b[0m\u001b[22m\n16:11:21.262 [info] ppl_id: fa7ece35-5a4c-46ad-ab9e-e0947b6f3395, type: Ppl"},{"event":"cmd_output","timestamp":1607098281,"output":"Requests, event: persisted definition for request with request_token: 6805d06c-0a96-44e4-a3f8-cc334b"},{"event":"cmd_output","timestamp":1607098281,"output":"ffc273, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098281,"output":"m\n16:11:21.265 [info] ppl_id: fa7ece35-5a4c-46ad-ab9e-e0947b6f3395, type: Ppls, state: initializin"},{"event":"cmd_output","timestamp":1607098281,"output":"g, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_respons"},{"event":"cmd_output","timestamp":1607098281,"output":"e/2(L124), \n\u001b[0m\u001b[22m\n16:11:21.268 [info] Persisted ppl_sub_init for pipeline with ppl_id: fa7ece"},{"event":"cmd_output","timestamp":1607098281,"output":"35-5a4c-46ad-ab9e-e0947b6f3395: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:"},{"event":"cmd_output","timestamp":1607098281,"output":"loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 129, in_scheduling:"},{"event":"cmd_output","timestamp":1607098281,"output":" false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:11:21.267085], pipeline_requests: #Ecto."},{"event":"cmd_output","timestamp":1607098281,"output":"Association.NotLoaded, ppl_id: \"fa7ece35-5a4c-46ad-ab9"},{"event":"cmd_output","timestamp":1607098281,"output":"e-e0947b6f3395\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_req"},{"event":"cmd_output","timestamp":1607098281,"output":"uest: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:11:21.267095]}\n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098281,"output":"1:21.283 [info] ppl_id: 69fe776b-e59b-44ee-bffc-d28977e90fb0, type: PplRequests, event: persisted s"},{"event":"cmd_output","timestamp":1607098281,"output":"chedule request with request_token: 48351784-3d4b-4adb-aecd-1d63f0c96256, origin: Elixir.Ppl.PplRequ"},{"event":"cmd_output","timestamp":1607098281,"output":"ests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:11:21.285 [info] ppl_id: 69f"},{"event":"cmd_output","timestamp":1607098281,"output":"e776b-e59b-44ee-bffc-d28977e90fb0, type: PplRequests, event: persisted definition for request with r"},{"event":"cmd_output","timestamp":1607098281,"output":"equest_token: 48351784-3d4b-4adb-aecd-1d63f0c96256, origin: Elixir.Ppl.PplRequests.Model.PplRequests"},{"event":"cmd_output","timestamp":1607098281,"output":"Queries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:11:21.288 [info] ppl_id: 69fe776b-e59b-44ee-bffc-"},{"event":"cmd_output","timestamp":1607098281,"output":"d28977e90fb0, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098281,"output":"r.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:11:21.291 [info] Persisted p"},{"event":"cmd_output","timestamp":1607098281,"output":"pl_sub_init for pipeline with ppl_id: 69fe776b-e59b-44ee-bffc-d28977e90fb0: %Ppl.PplSubInits.Model.P"},{"event":"cmd_output","timestamp":1607098281,"output":"plSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, err"},{"event":"cmd_output","timestamp":1607098281,"output":"or_description: nil, id: 130, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04"},{"event":"cmd_output","timestamp":1607098281,"output":" 16:11:21.289926], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"69fe776b-e59b-44ee-bffc-d28977e90fb0\", recovery_count: 0, result: nil, result_"},{"event":"cmd_output","timestamp":1607098281,"output":"reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2"},{"event":"cmd_output","timestamp":1607098281,"output":"020-12-04 16:11:21.289935]}\n\u001b[0m\u001b[22m\n16:11:21.295 [info] ppl_id: 1032fc89-c251-4201-870b-7c979c6"},{"event":"cmd_output","timestamp":1607098281,"output":"a05bf, type: PplRequests, event: persisted schedule request with request_token: d67e10d5-6c73-4e52-b"},{"event":"cmd_output","timestamp":1607098281,"output":"8e6-307d0265c618, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \r"},{"event":"cmd_output","timestamp":1607098281,"output":"\n\u001b[0m\u001b[22m\n16:11:21.297 [info] ppl_id: 1032fc89-c251-4201-870b-7c979c6a05bf, type: PplRequests, ev"},{"event":"cmd_output","timestamp":1607098281,"output":"ent: persisted definition for request with request_token: d67e10d5-6c73-4e52-b8e6-307d0265c618, orig"},{"event":"cmd_output","timestamp":1607098281,"output":"in: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:11:21."},{"event":"cmd_output","timestamp":1607098281,"output":"299 [info] ppl_id: 1032fc89-c251-4201-870b-7c979c6a05bf, type: Ppls, state: initializing, event: in"},{"event":"cmd_output","timestamp":1607098281,"output":"itializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \r"},{"event":"cmd_output","timestamp":1607098281,"output":"\n\u001b[0m\u001b[22m\n16:11:21.304 [info] Persisted ppl_sub_init for pipeline with ppl_id: 1032fc89-c251-4201"},{"event":"cmd_output","timestamp":1607098281,"output":"-870b-7c979c6a05bf: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pip"},{"event":"cmd_output","timestamp":1607098281,"output":"eline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 131, in_scheduling: false, init"},{"event":"cmd_output","timestamp":1607098281,"output":"_type: \"regular\", inserted_at: ~N[2020-12-04 16:11:21.303221], pipeline_requests: #Ecto.Association."},{"event":"cmd_output","timestamp":1607098281,"output":"NotLoaded, ppl_id: \"1032fc89-c251-4201-870b-7c979c6a05"},{"event":"cmd_output","timestamp":1607098281,"output":"bf\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, t"},{"event":"cmd_output","timestamp":1607098281,"output":"erminate_request_desc: nil, updated_at: ~N[2020-12-04 16:11:21.303232]}\n\u001b[0m\u001b[22m\n16:11:21.308 [in"},{"event":"cmd_output","timestamp":1607098281,"output":"fo] ppl_id: 0737d6a8-81b0-4c50-82ae-f288effd5e15, type: PplRequests, event: persisted schedule requ"},{"event":"cmd_output","timestamp":1607098281,"output":"est with request_token: 66b59e5d-e3da-4dca-aca8-fcc3f423c6a2, origin: Elixir.Ppl.PplRequests.Model.P"},{"event":"cmd_output","timestamp":1607098281,"output":"plRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:11:21.310 [info] ppl_id: 0737d6a8-81b0-4"},{"event":"cmd_output","timestamp":1607098281,"output":"c50-82ae-f288effd5e15, type: PplRequests, event: persisted definition for request with request_token"},{"event":"cmd_output","timestamp":1607098281,"output":": 66b59e5d-e3da-4dca-aca8-fcc3f423c6a2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.inse"},{"event":"cmd_output","timestamp":1607098281,"output":"rt_definition/3(L76), \n\u001b[0m\u001b[22m\n16:11:21.312 [info] ppl_id: 0737d6a8-81b0-4c50-82ae-f288effd5e15"},{"event":"cmd_output","timestamp":1607098281,"output":", type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.M"},{"event":"cmd_output","timestamp":1607098281,"output":"odel.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:11:21.317 [info] Persisted ppl_sub_init "},{"event":"cmd_output","timestamp":1607098281,"output":"for pipeline with ppl_id: 0737d6a8-81b0-4c50-82ae-f288effd5e15: %Ppl.PplSubInits.Model.PplSubInits{_"},{"event":"cmd_output","timestamp":1607098281,"output":"_meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_descripti"},{"event":"cmd_output","timestamp":1607098281,"output":"on: nil, id: 132, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:11:21.31"},{"event":"cmd_output","timestamp":1607098281,"output":"5658], pipeline_requests: #Ecto.Association.NotLoaded,"},{"event":"cmd_output","timestamp":1607098281,"output":" ppl_id: \"0737d6a8-81b0-4c50-82ae-f288effd5e15\", recovery_count: 0, result: nil, result_reason: nil,"},{"event":"cmd_output","timestamp":1607098281,"output":" state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16"},{"event":"cmd_output","timestamp":1607098281,"output":":11:21.315668]}\n\u001b[0m\u001b[22m\n16:11:21.322 [info] ppl_id: 22937567-604d-4e40-8762-51cad8d0b13a, type:"},{"event":"cmd_output","timestamp":1607098281,"output":" PplRequests, event: persisted schedule request with request_token: 3c4aa022-91ac-43c1-8fd3-aa2303d5"},{"event":"cmd_output","timestamp":1607098281,"output":"6603, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098281,"output":"16:11:21.324 [info] ppl_id: 22937567-604d-4e40-8762-51cad8d0b13a, type: PplRequests, event: persist"},{"event":"cmd_output","timestamp":1607098281,"output":"ed definition for request with request_token: 3c4aa022-91ac-43c1-8fd3-aa2303d56603, origin: Elixir.P"},{"event":"cmd_output","timestamp":1607098281,"output":"pl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:11:21.327 [info] "},{"event":"cmd_output","timestamp":1607098281,"output":"ppl_id: 22937567-604d-4e40-8762-51cad8d0b13a, type: Ppls, state: initializing, event: initializing, "},{"event":"cmd_output","timestamp":1607098281,"output":"recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098281,"output":"16:11:21.332 [info] Persisted ppl_sub_init for pipeline with ppl_id: 22937567-604d-4e40-8762-51cad8"},{"event":"cmd_output","timestamp":1607098281,"output":"d0b13a: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_in"},{"event":"cmd_output","timestamp":1607098281,"output":"its\">, compile_task_id: nil, error_description: nil, id: 133, in_scheduling: false, init_type: \"regu"},{"event":"cmd_output","timestamp":1607098281,"output":"lar\", inserted_at: ~N[2020-12-04 16:11:21.330771], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"22937567-604d-4e40-8762-51cad8d0b13a\", recover"},{"event":"cmd_output","timestamp":1607098281,"output":"y_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_req"},{"event":"cmd_output","timestamp":1607098281,"output":"uest_desc: nil, updated_at: ~N[2020-12-04 16:11:21.330784]}\n\u001b[0m\u001b[22m\n16:11:21.336 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098281,"output":" 30a17cb3-1a58-414a-982c-7dbbe9af3887, type: PplRequests, event: persisted schedule request with req"},{"event":"cmd_output","timestamp":1607098281,"output":"uest_token: 8ad926a4-d4da-4c83-a49f-1e2ef38f7c7d, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQu"},{"event":"cmd_output","timestamp":1607098281,"output":"eries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:11:21.339 [info] ppl_id: 30a17cb3-1a58-414a-982c-7db"},{"event":"cmd_output","timestamp":1607098281,"output":"be9af3887, type: PplRequests, event: persisted definition for request with request_token: 8ad926a4-d"},{"event":"cmd_output","timestamp":1607098281,"output":"4da-4c83-a49f-1e2ef38f7c7d, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definitio"},{"event":"cmd_output","timestamp":1607098281,"output":"n/3(L76), \n\u001b[0m\u001b[22m\n16:11:21.342 [info] ppl_id: 30a17cb3-1a58-414a-982c-7dbbe9af3887, type: Ppls"},{"event":"cmd_output","timestamp":1607098281,"output":", state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQue"},{"event":"cmd_output","timestamp":1607098281,"output":"ries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:11:21.348 [info] Persisted ppl_sub_init for pipeline"},{"event":"cmd_output","timestamp":1607098281,"output":" with ppl_id: 30a17cb3-1a58-414a-982c-7dbbe9af3887: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ec"},{"event":"cmd_output","timestamp":1607098281,"output":"to.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id:"},{"event":"cmd_output","timestamp":1607098281,"output":" 134, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:11:21.345974], pipel"},{"event":"cmd_output","timestamp":1607098281,"output":"ine_requests: #Ecto.Association.NotLoaded, ppl_id: \"30"},{"event":"cmd_output","timestamp":1607098281,"output":"a17cb3-1a58-414a-982c-7dbbe9af3887\", recovery_count: 0, result: nil, result_reason: nil, state: \"cre"},{"event":"cmd_output","timestamp":1607098281,"output":"ated\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:11:21.34598"},{"event":"cmd_output","timestamp":1607098281,"output":"6]}\n\u001b[0m\u001b[22m\n16:11:21.353 [info] ppl_id: 72e3db4e-ed5c-4ab6-bc61-ad875ad53ccf, type: PplRequests"},{"event":"cmd_output","timestamp":1607098281,"output":", event: persisted schedule request with request_token: bb5abbfb-b8fd-40f2-b856-a33583d3b201, origin"},{"event":"cmd_output","timestamp":1607098281,"output":": Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:11:21.356"},{"event":"cmd_output","timestamp":1607098281,"output":" [info] ppl_id: 72e3db4e-ed5c-4ab6-bc61-ad875ad53ccf, type: PplRequests, event: persisted definitio"},{"event":"cmd_output","timestamp":1607098281,"output":"n for request with request_token: bb5abbfb-b8fd-40f2-b856-a33583d3b201, origin: Elixir.Ppl.PplReques"},{"event":"cmd_output","timestamp":1607098281,"output":"ts.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:11:21.358 [info] ppl_id: 72e3"},{"event":"cmd_output","timestamp":1607098281,"output":"db4e-ed5c-4ab6-bc61-ad875ad53ccf, type: Ppls, state: initializing, event: initializing, recovery_cou"},{"event":"cmd_output","timestamp":1607098281,"output":"nt: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:11:21.362"},{"event":"cmd_output","timestamp":1607098281,"output":" [info] Persisted ppl_sub_init for pipeline with ppl_id: 72e3db4e-ed5c-4ab6-bc61-ad875ad53ccf: %Ppl"},{"event":"cmd_output","timestamp":1607098281,"output":".PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compi"},{"event":"cmd_output","timestamp":1607098281,"output":"le_task_id: nil, error_description: nil, id: 135, in_scheduling: false, init_type: \"regular\", insert"},{"event":"cmd_output","timestamp":1607098281,"output":"ed_at: ~N[2020-12-04 16:11:21.360686], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"72e3db4e-ed5c-4ab6-bc61-ad875ad53ccf\", recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098281,"output":"result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: n"},{"event":"cmd_output","timestamp":1607098281,"output":"il, updated_at: ~N[2020-12-04 16:11:21.360699]}\n\u001b[0m\u001b[22m\n16:11:21.367 [info] ppl_id: 5cc736ff-8e"},{"event":"cmd_output","timestamp":1607098281,"output":"4a-4347-a9dd-8754ca2e003c, type: PplRequests, event: persisted schedule request with request_token: "},{"event":"cmd_output","timestamp":1607098281,"output":"99bc43bd-34cc-4eb8-afd7-68215604c5d8, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.proces"},{"event":"cmd_output","timestamp":1607098281,"output":"s_response/2(L55), \n\u001b[0m\u001b[22m\n16:11:21.369 [info] ppl_id: 5cc736ff-8e4a-4347-a9dd-8754ca2e003c, t"},{"event":"cmd_output","timestamp":1607098281,"output":"ype: PplRequests, event: persisted definition for request with request_token: 99bc43bd-34cc-4eb8-afd"},{"event":"cmd_output","timestamp":1607098281,"output":"7-68215604c5d8, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n"},{"event":"cmd_output","timestamp":1607098281,"output":"\u001b[0m\u001b[22m\n16:11:21.373 [info] ppl_id: 5cc736ff-8e4a-4347-a9dd-8754ca2e003c, type: Ppls, state: ini"},{"event":"cmd_output","timestamp":1607098281,"output":"tializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process"},{"event":"cmd_output","timestamp":1607098281,"output":"_response/2(L124), \n\u001b[0m\u001b[22m\n16:11:21.382 [info] Persisted ppl_sub_init for pipeline with ppl_id"},{"event":"cmd_output","timestamp":1607098281,"output":": 5cc736ff-8e4a-4347-a9dd-8754ca2e003c: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Me"},{"event":"cmd_output","timestamp":1607098281,"output":"tadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 136, in_sch"},{"event":"cmd_output","timestamp":1607098281,"output":"eduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:11:21.376673], pipeline_requests"},{"event":"cmd_output","timestamp":1607098281,"output":": #Ecto.Association.NotLoaded, ppl_id: \"5cc736ff-8e4a-"},{"event":"cmd_output","timestamp":1607098281,"output":"4347-a9dd-8754ca2e003c\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", termi"},{"event":"cmd_output","timestamp":1607098281,"output":"nate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:11:21.376687]}\n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098281,"output":"2m\n16:11:21.385 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingState with name"},{"event":"cmd_output","timestamp":1607098281,"output":" Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up"},{"event":"cmd_output","timestamp":1607098281,"output":"\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"p"},{"event":"cmd_output","timestamp":1607098281,"output":"ending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"initiali"},{"event":"cmd_output","timestamp":1607098281,"output":"zing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, repo:"},{"event":"cmd_output","timestamp":1607098281,"output":" Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :"},{"event":"cmd_output","timestamp":1607098281,"output":"ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:21.386 [info] Perio"},{"event":"cmd_output","timestamp":1607098281,"output":"dic from module Elixir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler.Pending"},{"event":"cmd_output","timestamp":1607098281,"output":"State :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}"},{"event":"cmd_output","timestamp":1607098281,"output":", recurring args: %{allowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_sec: 0, "},{"event":"cmd_output","timestamp":1607098281,"output":"initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publisher_cb: #Function<0.8493005/1 i"},{"event":"cmd_output","timestamp":1607098281,"output":"n Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request,"},{"event":"cmd_output","timestamp":1607098281,"output":" :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervis"},{"event":"cmd_output","timestamp":1607098281,"output":"or: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:11:21.386 [info] Periodic from module Elixir.Ppl.Ppls.STMHan"},{"event":"cmd_output","timestamp":1607098281,"output":"dler.QueuingState with name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, metric_name: "},{"event":"cmd_output","timestamp":1607098281,"output":"{\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{allowed_states: [\""},{"event":"cmd_output","timestamp":1607098281,"output":"queuing\", \"running\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_sta"},{"event":"cmd_output","timestamp":1607098281,"output":"te: \"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.args/0>, re"},{"event":"cmd_output","timestamp":1607098281,"output":"po: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count"},{"event":"cmd_output","timestamp":1607098281,"output":", :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:21.387 [info] Pe"},{"event":"cmd_output","timestamp":1607098281,"output":"riodic from module Elixir.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHandler.Runn"},{"event":"cmd_output","timestamp":1607098281,"output":"ingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState"},{"event":"cmd_output","timestamp":1607098281,"output":"\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initia"},{"event":"cmd_output","timestamp":1607098281,"output":"l_query: Ppl.Ppls.Model.Ppls, observed_state: \"running\", publisher_cb: #Function<0.74670282/1 in Ppl"},{"event":"cmd_output","timestamp":1607098281,"output":".Ppls.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :upd"},{"event":"cmd_output","timestamp":1607098281,"output":"ated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: P"},{"event":"cmd_output","timestamp":1607098281,"output":"plsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:11:21.387 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler."},{"event":"cmd_output","timestamp":1607098281,"output":"StoppingState with name Elixir.Ppl.Ppls.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"P"},{"event":"cmd_output","timestamp":1607098281,"output":"pl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"st"},{"event":"cmd_output","timestamp":1607098281,"output":"opping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"stoppin"},{"event":"cmd_output","timestamp":1607098281,"output":"g\", publisher_cb: #Function<0.71803493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, repo: Ppl.Ect"},{"event":"cmd_output","timestamp":1607098281,"output":"oRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id],"},{"event":"cmd_output","timestamp":1607098281,"output":" schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:21.387 [info] Periodic from"},{"event":"cmd_output","timestamp":1607098281,"output":" module Elixir.Ppl.PplSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHandler.C"},{"event":"cmd_output","timestamp":1607098281,"output":"reatedState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-Cr"},{"event":"cmd_output","timestamp":1607098281,"output":"eatedState\"]}, recurring args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_"},{"event":"cmd_output","timestamp":1607098281,"output":"query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip, repo: Ppl."},{"event":"cmd_output","timestamp":1607098281,"output":"EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_i"},{"event":"cmd_output","timestamp":1607098281,"output":"d], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:21.388 [inf"},{"event":"cmd_output","timestamp":1607098281,"output":"o] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl.PplSub"},{"event":"cmd_output","timestamp":1607098281,"output":"Inits.STMHandler.FetchingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSub"},{"event":"cmd_output","timestamp":1607098281,"output":"Inits-STMHandler-FetchingState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\","},{"event":"cmd_output","timestamp":1607098281,"output":" \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"f"},{"event":"cmd_output","timestamp":1607098281,"output":"etching\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at,"},{"event":"cmd_output","timestamp":1607098281,"output":" :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervi"},{"event":"cmd_output","timestamp":1607098281,"output":"sor: :skip}\n\u001b[0m\u001b[22m\n16:11:21.389 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler."},{"event":"cmd_output","timestamp":1607098281,"output":"CompilationState with name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 100 ms, met"},{"event":"cmd_output","timestamp":1607098281,"output":"ric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurring args:"},{"event":"cmd_output","timestamp":1607098281,"output":" %{allowed_states: [\"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2, initia"},{"event":"cmd_output","timestamp":1607098281,"output":"l_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"compilation\", publisher_cb: :skip, repo"},{"event":"cmd_output","timestamp":1607098281,"output":": Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, "},{"event":"cmd_output","timestamp":1607098281,"output":":ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:21.38"},{"event":"cmd_output","timestamp":1607098281,"output":"9 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with name Elixir.P"},{"event":"cmd_output","timestamp":1607098281,"output":"pl.PplSubInits.STMHandler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", "},{"event":"cmd_output","timestamp":1607098281,"output":"[\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurring args: %{allowed_states: [\"done\"], coolin"},{"event":"cmd_output","timestamp":1607098281,"output":"g_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_init\", pub"},{"event":"cmd_output","timestamp":1607098281,"output":"lisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :res"},{"event":"cmd_output","timestamp":1607098281,"output":"ult, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n"},{"event":"cmd_output","timestamp":1607098281,"output":"\u001b[0m\u001b[22m\n16:11:21.389 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.InitializingSta"},{"event":"cmd_output","timestamp":1607098281,"output":"te with name Elixir.Ppl.PplBlocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl"},{"event":"cmd_output","timestamp":1607098281,"output":".beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_state"},{"event":"cmd_output","timestamp":1607098281,"output":"s: [\"initializing\", \"waiting\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplB"},{"event":"cmd_output","timestamp":1607098281,"output":"locks, observed_state: \"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :te"},{"event":"cmd_output","timestamp":1607098281,"output":"rminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl."},{"event":"cmd_output","timestamp":1607098281,"output":"PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:21.389 [info] Periodic from mo"},{"event":"cmd_output","timestamp":1607098281,"output":"dule Elixir.Ppl.PplBlocks.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler.WaitingS"},{"event":"cmd_output","timestamp":1607098281,"output":"tate :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingSta"},{"event":"cmd_output","timestamp":1607098281,"output":"te\"]}, recurring args: %{allowed_states: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 0, initia"},{"event":"cmd_output","timestamp":1607098281,"output":"l_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"waiting\", publisher_cb: #Function<0.8975022"},{"event":"cmd_output","timestamp":1607098281,"output":"/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate"},{"event":"cmd_output","timestamp":1607098281,"output":"_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBloc"},{"event":"cmd_output","timestamp":1607098281,"output":"ks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:21.390 [info] Periodic from module El"},{"event":"cmd_output","timestamp":1607098281,"output":"ixir.Ppl.PplBlocks.STMHandler.RunningState with name Elixir.Ppl.PplBlocks.STMHandler.RunningState ::"},{"event":"cmd_output","timestamp":1607098281,"output":" period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, "},{"event":"cmd_output","timestamp":1607098281,"output":"recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_que"},{"event":"cmd_output","timestamp":1607098281,"output":"ry: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"running\", publisher_cb: #Function<0.28166834/1 i"},{"event":"cmd_output","timestamp":1607098281,"output":"n Ppl.PplBlocks.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_req"},{"event":"cmd_output","timestamp":1607098281,"output":"uest, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl."},{"event":"cmd_output","timestamp":1607098281,"output":"PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:21.391 [info] Periodic from mo"},{"event":"cmd_output","timestamp":1607098281,"output":"dule Elixir.Ppl.PplBlocks.STMHandler.StoppingState with name Elixir.Ppl.PplBlocks.STMHandler.Stoppin"},{"event":"cmd_output","timestamp":1607098281,"output":"gState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-Stopping"},{"event":"cmd_output","timestamp":1607098281,"output":"State\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_quer"},{"event":"cmd_output","timestamp":1607098281,"output":"y: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"stopping\", publisher_cb: #Function<0.104215991/1 "},{"event":"cmd_output","timestamp":1607098281,"output":"in Ppl.PplBlocks.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_r"},{"event":"cmd_output","timestamp":1607098281,"output":"equest, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Pp"},{"event":"cmd_output","timestamp":1607098281,"output":"l.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:21.391 [info] Periodic from "},{"event":"cmd_output","timestamp":1607098281,"output":"module Elixir.Block.Blocks.STMHandler.InitializingState with name Elixir.Block.Blocks.STMHandler.Ini"},{"event":"cmd_output","timestamp":1607098281,"output":"tializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-In"},{"event":"cmd_output","timestamp":1607098281,"output":"itializingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, init"},{"event":"cmd_output","timestamp":1607098281,"output":"ial_query: Block.Blocks.Model.Blocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Blo"},{"event":"cmd_output","timestamp":1607098281,"output":"ck.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], "},{"event":"cmd_output","timestamp":1607098281,"output":"schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:21.391 [info] Periodic"},{"event":"cmd_output","timestamp":1607098281,"output":" from module Elixir.Block.Blocks.STMHandler.RunningState with name Elixir.Block.Blocks.STMHandler.Ru"},{"event":"cmd_output","timestamp":1607098281,"output":"nningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-Runnin"},{"event":"cmd_output","timestamp":1607098281,"output":"gState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, "},{"event":"cmd_output","timestamp":1607098281,"output":"initial_query: Block.Blocks.Model.Blocks, observed_state: \"running\", publisher_cb: :skip, repo: Bloc"},{"event":"cmd_output","timestamp":1607098281,"output":"k.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], s"},{"event":"cmd_output","timestamp":1607098281,"output":"chema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:21.391 [info] Periodic "},{"event":"cmd_output","timestamp":1607098281,"output":"from module Elixir.Block.Blocks.STMHandler.StoppingState with name Elixir.Block.Blocks.STMHandler.St"},{"event":"cmd_output","timestamp":1607098281,"output":"oppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-Stopp"},{"event":"cmd_output","timestamp":1607098281,"output":"ingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_q"},{"event":"cmd_output","timestamp":1607098281,"output":"uery: Block.Blocks.Model.Blocks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRe"},{"event":"cmd_output","timestamp":1607098281,"output":"po, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: B"},{"event":"cmd_output","timestamp":1607098281,"output":"lock.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:21.391 [info] Periodic from mod"},{"event":"cmd_output","timestamp":1607098281,"output":"ule Elixir.Block.Tasks.STMHandler.PendingState with name Elixir.Block.Tasks.STMHandler.PendingState "},{"event":"cmd_output","timestamp":1607098281,"output":":: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingState\"]}, r"},{"event":"cmd_output","timestamp":1607098281,"output":"ecurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Task"},{"event":"cmd_output","timestamp":1607098281,"output":"s.Model.Tasks, observed_state: \"pending\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id"},{"event":"cmd_output","timestamp":1607098281,"output":", :terminate_request, :updated_at, :state, :recovery_count, :block_id, :build_request_id], schema: B"},{"event":"cmd_output","timestamp":1607098281,"output":"lock.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:21.392 [info] Periodic from modul"},{"event":"cmd_output","timestamp":1607098281,"output":"e Elixir.Block.Tasks.STMHandler.RunningState with name Elixir.Block.Tasks.STMHandler.RunningState ::"},{"event":"cmd_output","timestamp":1607098281,"output":" period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningState\"]}, rec"},{"event":"cmd_output","timestamp":1607098281,"output":"urring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query:"},{"event":"cmd_output","timestamp":1607098281,"output":" Block.Tasks.Model.Tasks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, retu"},{"event":"cmd_output","timestamp":1607098281,"output":"rning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tas"},{"event":"cmd_output","timestamp":1607098281,"output":"ks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:21.392 [info] Periodic from module Elixir"},{"event":"cmd_output","timestamp":1607098281,"output":".Block.Tasks.STMHandler.StoppingState with name Elixir.Block.Tasks.STMHandler.StoppingState :: perio"},{"event":"cmd_output","timestamp":1607098281,"output":"d: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]}, recurrin"},{"event":"cmd_output","timestamp":1607098281,"output":"g args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Mod"},{"event":"cmd_output","timestamp":1607098281,"output":"el.Tasks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :t"},{"event":"cmd_output","timestamp":1607098281,"output":"erminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks,"},{"event":"cmd_output","timestamp":1607098281,"output":" task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:21.506 [info] ppl_id: d8aa91c7-b84c-4ec3-9f92-b6967fbaa6"},{"event":"cmd_output","timestamp":1607098281,"output":"d9, type: PplRequests, event: persisted source_args for pipeline: d8aa91c7-b84c-4ec3-9f92-b6967fbaa6"},{"event":"cmd_output","timestamp":1607098281,"output":"d9, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:11"},{"event":"cmd_output","timestamp":1607098281,"output":":21.509 [info] ppl_id: d8aa91c7-b84c-4ec3-9f92-b6967fbaa6d9, type: PplSubInits, state: fetching, ev"},{"event":"cmd_output","timestamp":1607098281,"output":"ent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b"},{"event":"cmd_output","timestamp":1607098281,"output":"[0m\u001b[22m\n16:11:21.538 [info] ppl_id: d8aa91c7-b84c-4ec3-9f92-b6967fbaa6d9, type: PplSubInits, stat"},{"event":"cmd_output","timestamp":1607098281,"output":"e: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state"},{"event":"cmd_output","timestamp":1607098281,"output":"_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:21.565 [info] ppl_id: d8aa91c7-b84c-4ec3-9f92-b6967fbaa6d9, type"},{"event":"cmd_output","timestamp":1607098281,"output":": PplRequests, event: persisted definition for request with request_token: 13e19ed5-12c9-428a-ad99-9"},{"event":"cmd_output","timestamp":1607098281,"output":"7bf52b52530, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098281,"output":"m\u001b[22m\n16:11:21.570 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema."},{"event":"cmd_output","timestamp":1607098281,"output":"Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:11:21.568114], name: \"master-.semaphore/s"},{"event":"cmd_output","timestamp":1607098281,"output":"emaphore.yml\", organization_id: \"abc\", project_id: \"123\", queue_id: \"7e560a91-f689-4143-8625-a5dc26c"},{"event":"cmd_output","timestamp":1607098281,"output":"1f700\", scope: \"project\", updated_at: ~N[2020-12-04 16:11:21.568124], user_generated: false}}\n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098281,"output":"[22m\n16:11:21.574 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitStat"},{"event":"cmd_output","timestamp":1607098281,"output":"e.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:11:21.574 [info] ppl_id: d8aa91c7-b84c-4ec3-9f92-b6967fbaa6d9, t"},{"event":"cmd_output","timestamp":1607098281,"output":"ype: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098281,"output":"ir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:11:21.577 [info] pp"},{"event":"cmd_output","timestamp":1607098281,"output":"l_id: d8aa91c7-b84c-4ec3-9f92-b6967fbaa6d9, type: PplSubInits, state: done, result: passed, event: e"},{"event":"cmd_output","timestamp":1607098281,"output":"xit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098281,"output":"2m\n16:11:21.585 [info] ppl_id: d8aa91c7-b84c-4ec3-9f92-b6967fbaa6d9, type: Ppls, state: pending, e"},{"event":"cmd_output","timestamp":1607098281,"output":"vent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n"},{"event":"cmd_output","timestamp":1607098281,"output":"\u001b[0m\u001b[22m\n16:11:21.585 [info] ppl_id: d8aa91c7-b84c-4ec3-9f92-b6967fbaa6d9, type: PplBlocks, block"},{"event":"cmd_output","timestamp":1607098281,"output":"_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl"},{"event":"cmd_output","timestamp":1607098281,"output":".log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:21.596 [info] ppl_id: d8aa91c7-b84c-4ec3-9f92-b6967fba"},{"event":"cmd_output","timestamp":1607098281,"output":"a6d9, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.S"},{"event":"cmd_output","timestamp":1607098281,"output":"TM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:21.610 [info] ppl_id: d8aa91c7-b84c-4ec3-9f92-b"},{"event":"cmd_output","timestamp":1607098281,"output":"6967fbaa6d9, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098281,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:21.618 [info] ppl_id: ee12bde3-d79a-4d88"},{"event":"cmd_output","timestamp":1607098281,"output":"-9f41-9633f4ff3d50, type: PplRequests, event: persisted source_args for pipeline: ee12bde3-d79a-4d88"},{"event":"cmd_output","timestamp":1607098281,"output":"-9f41-9633f4ff3d50, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n"},{"event":"cmd_output","timestamp":1607098281,"output":"\u001b[0m\u001b[22m\n16:11:21.619 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"d8a"},{"event":"cmd_output","timestamp":1607098281,"output":"a91c7-b84c-4ec3-9f92-b6967fbaa6d9\"\n\u001b[0m\u001b[22m\n16:11:21.622 [info] ppl_id: ee12bde3-d79a-4d88-9f41-"},{"event":"cmd_output","timestamp":1607098281,"output":"9633f4ff3d50, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098281,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:21.626 [info] block_id: a084806"},{"event":"cmd_output","timestamp":1607098281,"output":"f-d524-459e-a5be-6103fe5ceb69, type: BlockRequests, event: persisted block run request from ppl d8aa"},{"event":"cmd_output","timestamp":1607098281,"output":"91c7-b84c-4ec3-9f92-b6967fbaa6d9 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequests"},{"event":"cmd_output","timestamp":1607098281,"output":"Queries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:11:21.630 [info] block_id: a084806f-d524-459e-a5be"},{"event":"cmd_output","timestamp":1607098281,"output":"-6103fe5ceb69, type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098281,"output":"ixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:11:21.637 [info] Block 0 of pi"},{"event":"cmd_output","timestamp":1607098281,"output":"peline with id: d8aa91c7-b84c-4ec3-9f92-b6967fbaa6d9 scheduled in block service with id: : \"a084806f"},{"event":"cmd_output","timestamp":1607098281,"output":"-d524-459e-a5be-6103fe5ceb69\"\n\u001b[0m\u001b[22m\n16:11:21.639 [info] block_id: a084806f-d524-459e-a5be-610"},{"event":"cmd_output","timestamp":1607098281,"output":"3fe5ceb69, type: BlockRequests, event: persisted build and sub_ppl details for block_request: a08480"},{"event":"cmd_output","timestamp":1607098281,"output":"6f-d524-459e-a5be-6103fe5ceb69, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert"},{"event":"cmd_output","timestamp":1607098281,"output":"_build/2(L41), \n\u001b[0m\u001b[22m\n16:11:21.642 [info] block_id: a084806f-d524-459e-a5be-6103fe5ceb69, typ"},{"event":"cmd_output","timestamp":1607098281,"output":"e: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler."},{"event":"cmd_output","timestamp":1607098281,"output":"InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:11:21.647 [info] ppl_id: d8aa91c7-b84c-4ec3-9f92"},{"event":"cmd_output","timestamp":1607098281,"output":"-b6967fbaa6d9, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_cou"},{"event":"cmd_output","timestamp":1607098281,"output":"nt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:21.647 [info] blo"},{"event":"cmd_output","timestamp":1607098281,"output":"ck_id: a084806f-d524-459e-a5be-6103fe5ceb69, type: Blocks, state: running, event: exit_scheduling, r"},{"event":"cmd_output","timestamp":1607098281,"output":"ecovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:21.659 "},{"event":"cmd_output","timestamp":1607098281,"output":"[info] ppl_id: ee12bde3-d79a-4d88-9f41-9633f4ff3d50, type: PplSubInits, state: regular_init, event:"},{"event":"cmd_output","timestamp":1607098281,"output":" exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098281,"output":"[22m\n16:11:21.665 [info] block_id: a084806f-d524-459e-a5be-6103fe5ceb69, type: Tasks, state: runni"},{"event":"cmd_output","timestamp":1607098281,"output":"ng, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90"},{"event":"cmd_output","timestamp":1607098281,"output":"), \n\u001b[0m\u001b[22m\n16:11:21.684 [info] ppl_id: ee12bde3-d79a-4d88-9f41-9633f4ff3d50, type: PplRequests"},{"event":"cmd_output","timestamp":1607098281,"output":", event: persisted definition for request with request_token: 717e5d49-9468-4319-9c61-3054dd5ef4a3, "},{"event":"cmd_output","timestamp":1607098281,"output":"origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:11"},{"event":"cmd_output","timestamp":1607098281,"output":":21.689 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1"},{"event":"cmd_output","timestamp":1607098281,"output":"(L105), \n\u001b[0m\u001b[22m\n16:11:21.689 [info] ppl_id: ee12bde3-d79a-4d88-9f41-9633f4ff3d50, type: PplBlo"},{"event":"cmd_output","timestamp":1607098281,"output":"cks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplS"},{"event":"cmd_output","timestamp":1607098281,"output":"ubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:11:21.692 [info] ppl_id: ee12b"},{"event":"cmd_output","timestamp":1607098281,"output":"de3-d79a-4d88-9f41-9633f4ff3d50, type: PplSubInits, state: done, result: passed, event: exit_schedul"},{"event":"cmd_output","timestamp":1607098281,"output":"ing, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:2"},{"event":"cmd_output","timestamp":1607098281,"output":"1.709 [info] ppl_id: ee12bde3-d79a-4d88-9f41-9633f4ff3d50, type: PplBlocks, block_index: 0, state: "},{"event":"cmd_output","timestamp":1607098281,"output":"waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/"},{"event":"cmd_output","timestamp":1607098281,"output":"1(L90), \n\u001b[0m\u001b[22m\n16:11:21.710 [info] ppl_id: ee12bde3-d79a-4d88-9f41-9633f4ff3d50, type: Ppls, "},{"event":"cmd_output","timestamp":1607098281,"output":"state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_"},{"event":"cmd_output","timestamp":1607098281,"output":"change/1(L90), \n\u001b[0m\u001b[22m\n16:11:21.727 [info] ppl_id: ee12bde3-d79a-4d88-9f41-9633f4ff3d50, type:"},{"event":"cmd_output","timestamp":1607098281,"output":" Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098281,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:21.733 [info] block_id: a084806f-d524-459e-a5be-6103fe5ceb"},{"event":"cmd_output","timestamp":1607098281,"output":"69, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.I"},{"event":"cmd_output","timestamp":1607098281,"output":"mpl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:21.740 [info] ppl_id: a727ad7f-9f08-434f-96da-a67df"},{"event":"cmd_output","timestamp":1607098281,"output":"18ea0eb, type: PplRequests, event: persisted source_args for pipeline: a727ad7f-9f08-434f-96da-a67df"},{"event":"cmd_output","timestamp":1607098281,"output":"18ea0eb, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098281,"output":"16:11:21.741 [info] block_id: a084806f-d524-459e-a5be-6103fe5ceb69, type: Blocks, state: done, even"},{"event":"cmd_output","timestamp":1607098281,"output":"t: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098281,"output":"m\u001b[22m\n16:11:21.743 [info] ppl_id: a727ad7f-9f08-434f-96da-a67df18ea0eb, type: PplSubInits, state:"},{"event":"cmd_output","timestamp":1607098281,"output":" fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chang"},{"event":"cmd_output","timestamp":1607098281,"output":"e/1(L90), \n\u001b[0m\u001b[22m\n16:11:21.751 [info] ppl_id: d8aa91c7-b84c-4ec3-9f92-b6967fbaa6d9, block_id: "},{"event":"cmd_output","timestamp":1607098281,"output":"a084806f-d524-459e-a5be-6103fe5ceb69, type: PplBlocks, block_index: 0, state: done, result: passed, "},{"event":"cmd_output","timestamp":1607098281,"output":"event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \r"},{"event":"cmd_output","timestamp":1607098281,"output":"\n\u001b[0m\u001b[22m\n16:11:21.768 [info] ppl_id: d8aa91c7-b84c-4ec3-9f92-b6967fbaa6d9, type: Ppls, state: do"},{"event":"cmd_output","timestamp":1607098281,"output":"ne, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_st"},{"event":"cmd_output","timestamp":1607098281,"output":"ate_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:21.775 [info] ppl_id: a727ad7f-9f08-434f-96da-a67df18ea0eb, t"},{"event":"cmd_output","timestamp":1607098281,"output":"ype: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loo"},{"event":"cmd_output","timestamp":1607098281,"output":"per.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:21.798 [info] ppl_id: a727ad7f-9f08-434f-9"},{"event":"cmd_output","timestamp":1607098281,"output":"6da-a67df18ea0eb, type: PplRequests, event: persisted definition for request with request_token: 91d"},{"event":"cmd_output","timestamp":1607098281,"output":"13c3a-180a-49ee-b939-f9f4de0a7161, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_de"},{"event":"cmd_output","timestamp":1607098281,"output":"finition/3(L76), \n\u001b[0m\u001b[22m\n16:11:21.815 [info] event: created, origin: Elixir.Ppl.PplSubInits.ST"},{"event":"cmd_output","timestamp":1607098281,"output":"MHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:11:21.815 [info] ppl_id: a727ad7f-9f08-4"},{"event":"cmd_output","timestamp":1607098281,"output":"34f-96da-a67df18ea0eb, type: PplBlocks, block_index: 0, state: initializing, event: created, recover"},{"event":"cmd_output","timestamp":1607098281,"output":"y_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098281,"output":"\n16:11:21.819 [info] ppl_id: a727ad7f-9f08-434f-96da-a67df18ea0eb, type: PplSubInits, state: done, "},{"event":"cmd_output","timestamp":1607098281,"output":"result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_"},{"event":"cmd_output","timestamp":1607098281,"output":"change/1(L90), \n\u001b[0m\u001b[22m\n16:11:21.826 [info] ppl_id: ee12bde3-d79a-4d88-9f41-9633f4ff3d50, type:"},{"event":"cmd_output","timestamp":1607098281,"output":" Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098281,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:21.831 [info] ppl_id: a727ad7f-9f08-434f-96da-a67df18ea0eb"},{"event":"cmd_output","timestamp":1607098281,"output":", type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098281,"output":": Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:21.832 [info] PplBlocks Waitin"},{"event":"cmd_output","timestamp":1607098281,"output":"gState STM is scheduling block 0 from pipeline: \"ee12bde3-d79a-4d88-9f41-9633f4ff3d50\"\n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098281,"output":"6:11:21.835 [info] ppl_id: a727ad7f-9f08-434f-96da-a67df18ea0eb, type: Ppls, state: pending, event:"},{"event":"cmd_output","timestamp":1607098281,"output":" exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098281,"output":"[22m\n16:11:21.841 [info] block_id: b057ad7e-b65e-4d16-acf5-5aa00d46f4ed, type: BlockRequests, even"},{"event":"cmd_output","timestamp":1607098281,"output":"t: persisted block run request from ppl ee12bde3-d79a-4d88-9f41-9633f4ff3d50 for block 0, origin: El"},{"event":"cmd_output","timestamp":1607098281,"output":"ixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:11:21.8"},{"event":"cmd_output","timestamp":1607098281,"output":"46 [info] block_id: b057ad7e-b65e-4d16-acf5-5aa00d46f4ed, type: Blocks, state: initializing, event:"},{"event":"cmd_output","timestamp":1607098281,"output":" initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b"},{"event":"cmd_output","timestamp":1607098281,"output":"[0m\u001b[22m\n16:11:21.850 [info] Block 0 of pipeline with id: ee12bde3-d79a-4d88-9f41-9633f4ff3d50 sch"},{"event":"cmd_output","timestamp":1607098281,"output":"eduled in block service with id: : \"b057ad7e-b65e-4d16-acf5-5aa00d46f4ed\"\n\u001b[0m\u001b[22m\n16:11:21.854 ["},{"event":"cmd_output","timestamp":1607098281,"output":"info] ppl_id: a727ad7f-9f08-434f-96da-a67df18ea0eb, type: Ppls, state: queuing, event: exit_schedul"},{"event":"cmd_output","timestamp":1607098281,"output":"ing, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:2"},{"event":"cmd_output","timestamp":1607098281,"output":"1.854 [info] ppl_id: ee12bde3-d79a-4d88-9f41-9633f4ff3d50, type: PplBlocks, block_index: 0, state: "},{"event":"cmd_output","timestamp":1607098281,"output":"running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/"},{"event":"cmd_output","timestamp":1607098281,"output":"1(L90), \n\u001b[0m\u001b[22m\n16:11:21.857 [info] block_id: b057ad7e-b65e-4d16-acf5-5aa00d46f4ed, type: Bloc"},{"event":"cmd_output","timestamp":1607098281,"output":"kRequests, event: persisted build and sub_ppl details for block_request: b057ad7e-b65e-4d16-acf5-5aa"},{"event":"cmd_output","timestamp":1607098281,"output":"00d46f4ed, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098281,"output":"\u001b[22m\n16:11:21.860 [info] ppl_id: fff41c6d-21e9-4527-845d-b67107ebe7ed, type: PplRequests, event: "},{"event":"cmd_output","timestamp":1607098281,"output":"persisted source_args for pipeline: fff41c6d-21e9-4527-845d-b67107ebe7ed, origin: Elixir.Ppl.PplRequ"},{"event":"cmd_output","timestamp":1607098281,"output":"ests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:11:21.863 [info] block_id: b057"},{"event":"cmd_output","timestamp":1607098281,"output":"ad7e-b65e-4d16-acf5-5aa00d46f4ed, type: Tasks, state: pending, event: created, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098281,"output":"igin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:11:21.864 [i"},{"event":"cmd_output","timestamp":1607098281,"output":"nfo] ppl_id: fff41c6d-21e9-4527-845d-b67107ebe7ed, type: PplSubInits, state: fetching, event: exit_"},{"event":"cmd_output","timestamp":1607098281,"output":"scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098281,"output":"16:11:21.865 [info] block_id: b057ad7e-b65e-4d16-acf5-5aa00d46f4ed, type: Blocks, state: running, e"},{"event":"cmd_output","timestamp":1607098281,"output":"vent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n"},{"event":"cmd_output","timestamp":1607098281,"output":"\u001b[0m\u001b[22m\n16:11:21.883 [info] block_id: b057ad7e-b65e-4d16-acf5-5aa00d46f4ed, type: Tasks, state: "},{"event":"cmd_output","timestamp":1607098281,"output":"running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/"},{"event":"cmd_output","timestamp":1607098281,"output":"1(L90), \n\u001b[0m\u001b[22m\n16:11:21.893 [info] ppl_id: fff41c6d-21e9-4527-845d-b67107ebe7ed, type: PplSub"},{"event":"cmd_output","timestamp":1607098281,"output":"Inits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Imp"},{"event":"cmd_output","timestamp":1607098281,"output":"l.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:21.913 [info] ppl_id: fff41c6d-21e9-4527-845d-b67107e"},{"event":"cmd_output","timestamp":1607098281,"output":"be7ed, type: PplRequests, event: persisted definition for request with request_token: 191f251b-56c2-"},{"event":"cmd_output","timestamp":1607098281,"output":"4445-a654-d6362d7a4524, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3("},{"event":"cmd_output","timestamp":1607098281,"output":"L76), \n\u001b[0m\u001b[22m\n16:11:21.920 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.Re"},{"event":"cmd_output","timestamp":1607098281,"output":"gularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:11:21.920 [info] ppl_id: fff41c6d-21e9-4527-845d-b6"},{"event":"cmd_output","timestamp":1607098281,"output":"7107ebe7ed, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098281,"output":" origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:11:21.9"},{"event":"cmd_output","timestamp":1607098281,"output":"22 [info] ppl_id: fff41c6d-21e9-4527-845d-b67107ebe7ed, type: PplSubInits, state: done, result: pas"},{"event":"cmd_output","timestamp":1607098281,"output":"sed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L9"},{"event":"cmd_output","timestamp":1607098281,"output":"0), \n\u001b[0m\u001b[22m\n16:11:21.936 [info] ppl_id: fff41c6d-21e9-4527-845d-b67107ebe7ed, type: PplBlocks,"},{"event":"cmd_output","timestamp":1607098281,"output":" block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.ST"},{"event":"cmd_output","timestamp":1607098281,"output":"M.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:21.938 [info] ppl_id: fff41c6d-21e9-4527-845d-b6"},{"event":"cmd_output","timestamp":1607098281,"output":"7107ebe7ed, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Lo"},{"event":"cmd_output","timestamp":1607098281,"output":"oper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:21.949 [info] block_id: b057ad7e-b65e-4d1"},{"event":"cmd_output","timestamp":1607098281,"output":"6-acf5-5aa00d46f4ed, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098281,"output":"ixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:21.952 [info] ppl_id: fff41c6d-21e"},{"event":"cmd_output","timestamp":1607098281,"output":"9-4527-845d-b67107ebe7ed, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098281,"output":"gin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:21.958 [info] block_id: b05"},{"event":"cmd_output","timestamp":1607098281,"output":"7ad7e-b65e-4d16-acf5-5aa00d46f4ed, type: Blocks, state: done, event: exit_scheduling, recovery_count"},{"event":"cmd_output","timestamp":1607098281,"output":": 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:21.968 [info] ppl_i"},{"event":"cmd_output","timestamp":1607098281,"output":"d: ee12bde3-d79a-4d88-9f41-9633f4ff3d50, block_id: b057ad7e-b65e-4d16-acf5-5aa00d46f4ed, type: PplBl"},{"event":"cmd_output","timestamp":1607098281,"output":"ocks, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098281,"output":": Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:21.977 [info] ppl_id: 414b2fb8"},{"event":"cmd_output","timestamp":1607098281,"output":"-f809-4b88-9b0e-8c5dd19c0cba, type: PplRequests, event: persisted source_args for pipeline: 414b2fb8"},{"event":"cmd_output","timestamp":1607098281,"output":"-f809-4b88-9b0e-8c5dd19c0cba, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/"},{"event":"cmd_output","timestamp":1607098281,"output":"2(L89), \n\u001b[0m\u001b[22m\n16:11:21.982 [info] ppl_id: 414b2fb8-f809-4b88-9b0e-8c5dd19c0cba, type: PplSub"},{"event":"cmd_output","timestamp":1607098281,"output":"Inits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.lo"},{"event":"cmd_output","timestamp":1607098281,"output":"g_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:21.989 [info] ppl_id: ee12bde3-d79a-4d88-9f41-9633f4ff3d5"},{"event":"cmd_output","timestamp":1607098281,"output":"0, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098282,"output":"r.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.005 [info] ppl_id: 414b2fb8-f809-4"},{"event":"cmd_output","timestamp":1607098282,"output":"b88-9b0e-8c5dd19c0cba, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_coun"},{"event":"cmd_output","timestamp":1607098282,"output":"t: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.038 [info] ppl_"},{"event":"cmd_output","timestamp":1607098282,"output":"id: 414b2fb8-f809-4b88-9b0e-8c5dd19c0cba, type: PplRequests, event: persisted definition for request"},{"event":"cmd_output","timestamp":1607098282,"output":" with request_token: 9da14d8a-decb-49a5-8368-eba94217d6c1, origin: Elixir.Ppl.PplRequests.Model.PplR"},{"event":"cmd_output","timestamp":1607098282,"output":"equestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:11:22.048 [info] ppl_id: a727ad7f-9f08-434"},{"event":"cmd_output","timestamp":1607098282,"output":"f-96da-a67df18ea0eb, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098282,"output":"Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.051 [info] event: created, or"},{"event":"cmd_output","timestamp":1607098282,"output":"igin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:11:22.051 "},{"event":"cmd_output","timestamp":1607098282,"output":"[info] ppl_id: 414b2fb8-f809-4b88-9b0e-8c5dd19c0cba, type: PplBlocks, block_index: 0, state: initia"},{"event":"cmd_output","timestamp":1607098282,"output":"lizing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitStat"},{"event":"cmd_output","timestamp":1607098282,"output":"e.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:11:22.055 [info] PplBlocks WaitingState STM is scheduling block "},{"event":"cmd_output","timestamp":1607098282,"output":"0 from pipeline: \"a727ad7f-9f08-434f-96da-a67df18ea0eb\"\n\u001b[0m\u001b[22m\n16:11:22.057 [info] ppl_id: 414"},{"event":"cmd_output","timestamp":1607098282,"output":"b2fb8-f809-4b88-9b0e-8c5dd19c0cba, type: PplSubInits, state: done, result: passed, event: exit_sched"},{"event":"cmd_output","timestamp":1607098282,"output":"uling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11"},{"event":"cmd_output","timestamp":1607098282,"output":":22.064 [info] block_id: a972a5e1-5ede-40e4-b055-62083bcfd435, type: BlockRequests, event: persiste"},{"event":"cmd_output","timestamp":1607098282,"output":"d block run request from ppl a727ad7f-9f08-434f-96da-a67df18ea0eb for block 0, origin: Elixir.Block."},{"event":"cmd_output","timestamp":1607098282,"output":"BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:11:22.067 [info] "},{"event":"cmd_output","timestamp":1607098282,"output":"block_id: a972a5e1-5ede-40e4-b055-62083bcfd435, type: Blocks, state: initializing, event: initializi"},{"event":"cmd_output","timestamp":1607098282,"output":"ng, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098282,"output":"6:11:22.068 [info] ppl_id: 414b2fb8-f809-4b88-9b0e-8c5dd19c0cba, type: PplBlocks, block_index: 0, s"},{"event":"cmd_output","timestamp":1607098282,"output":"tate: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098282,"output":"hange/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.068 [info] ppl_id: 414b2fb8-f809-4b88-9b0e-8c5dd19c0cba, type: "},{"event":"cmd_output","timestamp":1607098282,"output":"Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_"},{"event":"cmd_output","timestamp":1607098282,"output":"state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.070 [info] Block 0 of pipeline with id: a727ad7f-9f08-43"},{"event":"cmd_output","timestamp":1607098282,"output":"4f-96da-a67df18ea0eb scheduled in block service with id: : \"a972a5e1-5ede-40e4-b055-62083bcfd435\"\n\u001b"},{"event":"cmd_output","timestamp":1607098282,"output":"[0m\u001b[22m\n16:11:22.074 [info] ppl_id: a727ad7f-9f08-434f-96da-a67df18ea0eb, type: PplBlocks, block_"},{"event":"cmd_output","timestamp":1607098282,"output":"index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl."},{"event":"cmd_output","timestamp":1607098282,"output":"log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.076 [info] block_id: a972a5e1-5ede-40e4-b055-62083bc"},{"event":"cmd_output","timestamp":1607098282,"output":"fd435, type: BlockRequests, event: persisted build and sub_ppl details for block_request: a972a5e1-5"},{"event":"cmd_output","timestamp":1607098282,"output":"ede-40e4-b055-62083bcfd435, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_bui"},{"event":"cmd_output","timestamp":1607098282,"output":"ld/2(L41), \n\u001b[0m\u001b[22m\n16:11:22.080 [info] block_id: a972a5e1-5ede-40e4-b055-62083bcfd435, type: T"},{"event":"cmd_output","timestamp":1607098282,"output":"asks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.Init"},{"event":"cmd_output","timestamp":1607098282,"output":"ializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:11:22.081 [info] ppl_id: 414b2fb8-f809-4b88-9b0e-8c5"},{"event":"cmd_output","timestamp":1607098282,"output":"dd19c0cba, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loo"},{"event":"cmd_output","timestamp":1607098282,"output":"per.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.083 [info] block_id: a972a5e1-5ede-40e4"},{"event":"cmd_output","timestamp":1607098282,"output":"-b055-62083bcfd435, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098282,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.092 [info] ppl_id: 38967911-"},{"event":"cmd_output","timestamp":1607098282,"output":"160b-4392-b867-b83cb5692c2d, type: PplRequests, event: persisted source_args for pipeline: 38967911-"},{"event":"cmd_output","timestamp":1607098282,"output":"160b-4392-b867-b83cb5692c2d, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2"},{"event":"cmd_output","timestamp":1607098282,"output":"(L89), \n\u001b[0m\u001b[22m\n16:11:22.095 [info] ppl_id: 38967911-160b-4392-b867-b83cb5692c2d, type: PplSubI"},{"event":"cmd_output","timestamp":1607098282,"output":"nits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098282,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.101 [info] block_id: a972a5e1-5ede-40e4-b055-62083bcfd4"},{"event":"cmd_output","timestamp":1607098282,"output":"35, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.ST"},{"event":"cmd_output","timestamp":1607098282,"output":"M.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.120 [info] ppl_id: 38967911-160b-4392-b867-b8"},{"event":"cmd_output","timestamp":1607098282,"output":"3cb5692c2d, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098282,"output":"n: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.140 [info] ppl_id: 3896791"},{"event":"cmd_output","timestamp":1607098282,"output":"1-160b-4392-b867-b83cb5692c2d, type: PplRequests, event: persisted definition for request with reque"},{"event":"cmd_output","timestamp":1607098282,"output":"st_token: ae71b015-5323-466e-b156-5cb528d18ebf, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQuer"},{"event":"cmd_output","timestamp":1607098282,"output":"ies.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:11:22.144 [info] Queue persisted: {:ok, %Ppl.Queues.M"},{"event":"cmd_output","timestamp":1607098282,"output":"odel.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:11:22."},{"event":"cmd_output","timestamp":1607098282,"output":"142463], name: \"v1.0.2-.semaphore/semaphore.yml\", organization_id: \"abc\", project_id: \"123\", queue_i"},{"event":"cmd_output","timestamp":1607098282,"output":"d: \"797511cf-3fcf-459a-90f9-bd8f3c4830e3\", scope: \"project\", updated_at: ~N[2020-12-04 16:11:22.1424"},{"event":"cmd_output","timestamp":1607098282,"output":"75], user_generated: false}}\n\u001b[0m\u001b[22m\n16:11:22.147 [info] event: created, origin: Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098282,"output":"SubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:11:22.147 [info] ppl_id: 3896"},{"event":"cmd_output","timestamp":1607098282,"output":"7911-160b-4392-b867-b83cb5692c2d, type: PplBlocks, block_index: 0, state: initializing, event: creat"},{"event":"cmd_output","timestamp":1607098282,"output":"ed, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \r"},{"event":"cmd_output","timestamp":1607098282,"output":"\n\u001b[0m\u001b[22m\n16:11:22.151 [info] ppl_id: 38967911-160b-4392-b867-b83cb5692c2d, type: PplSubInits, st"},{"event":"cmd_output","timestamp":1607098282,"output":"ate: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl"},{"event":"cmd_output","timestamp":1607098282,"output":".log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.154 [info] ppl_id: 38967911-160b-4392-b867-b83cb569"},{"event":"cmd_output","timestamp":1607098282,"output":"2c2d, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098282,"output":"igin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.160 [info] ppl_id: 3896"},{"event":"cmd_output","timestamp":1607098282,"output":"7911-160b-4392-b867-b83cb5692c2d, type: Ppls, state: pending, event: exit_scheduling, recovery_count"},{"event":"cmd_output","timestamp":1607098282,"output":": 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.168 [info] block"},{"event":"cmd_output","timestamp":1607098282,"output":"_id: a972a5e1-5ede-40e4-b055-62083bcfd435, type: Tasks, state: done, event: exit_scheduling, recover"},{"event":"cmd_output","timestamp":1607098282,"output":"y_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.172 [info]"},{"event":"cmd_output","timestamp":1607098282,"output":" ppl_id: 38967911-160b-4392-b867-b83cb5692c2d, type: Ppls, state: queuing, event: exit_scheduling, "},{"event":"cmd_output","timestamp":1607098282,"output":"recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.177"},{"event":"cmd_output","timestamp":1607098282,"output":" [info] block_id: a972a5e1-5ede-40e4-b055-62083bcfd435, type: Blocks, state: done, event: exit_sche"},{"event":"cmd_output","timestamp":1607098282,"output":"duling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098282,"output":"1:22.183 [info] ppl_id: 38967911-160b-4392-b867-b83cb5692c2d, type: Ppls, state: running, event: ex"},{"event":"cmd_output","timestamp":1607098282,"output":"it_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098282,"output":"m\n16:11:22.187 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"38967911-16"},{"event":"cmd_output","timestamp":1607098282,"output":"0b-4392-b867-b83cb5692c2d\"\n\u001b[0m\u001b[22m\n16:11:22.190 [info] ppl_id: a727ad7f-9f08-434f-96da-a67df18e"},{"event":"cmd_output","timestamp":1607098282,"output":"a0eb, block_id: a972a5e1-5ede-40e4-b055-62083bcfd435, type: PplBlocks, block_index: 0, state: done, "},{"event":"cmd_output","timestamp":1607098282,"output":"result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_"},{"event":"cmd_output","timestamp":1607098282,"output":"change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.194 [info] block_id: fd344149-aca9-4706-a238-1a174367f21b, typ"},{"event":"cmd_output","timestamp":1607098282,"output":"e: BlockRequests, event: persisted block run request from ppl 38967911-160b-4392-b867-b83cb5692c2d f"},{"event":"cmd_output","timestamp":1607098282,"output":"or block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \r"},{"event":"cmd_output","timestamp":1607098282,"output":"\n\u001b[0m\u001b[22m\n16:11:22.197 [info] block_id: fd344149-aca9-4706-a238-1a174367f21b, type: Blocks, state"},{"event":"cmd_output","timestamp":1607098282,"output":": initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQuer"},{"event":"cmd_output","timestamp":1607098282,"output":"ies.insert/1(L43), \n\u001b[0m\u001b[22m\n16:11:22.200 [info] Block 0 of pipeline with id: 38967911-160b-4392"},{"event":"cmd_output","timestamp":1607098282,"output":"-b867-b83cb5692c2d scheduled in block service with id: : \"fd344149-aca9-4706-a238-1a174367f21b\"\n\u001b[0"},{"event":"cmd_output","timestamp":1607098282,"output":"m\u001b[22m\n16:11:22.204 [info] ppl_id: 38967911-160b-4392-b867-b83cb5692c2d, type: PplBlocks, block_in"},{"event":"cmd_output","timestamp":1607098282,"output":"dex: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.lo"},{"event":"cmd_output","timestamp":1607098282,"output":"g_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.207 [info] block_id: fd344149-aca9-4706-a238-1a174367f"},{"event":"cmd_output","timestamp":1607098282,"output":"21b, type: BlockRequests, event: persisted build and sub_ppl details for block_request: fd344149-aca"},{"event":"cmd_output","timestamp":1607098282,"output":"9-4706-a238-1a174367f21b, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build"},{"event":"cmd_output","timestamp":1607098282,"output":"/2(L41), \n\u001b[0m\u001b[22m\n16:11:22.209 [info] ppl_id: a727ad7f-9f08-434f-96da-a67df18ea0eb, type: Ppls,"},{"event":"cmd_output","timestamp":1607098282,"output":" state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.I"},{"event":"cmd_output","timestamp":1607098282,"output":"mpl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.211 [info] block_id: fd344149-aca9-4706-a238-1a1"},{"event":"cmd_output","timestamp":1607098282,"output":"74367f21b, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Bloc"},{"event":"cmd_output","timestamp":1607098282,"output":"ks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:11:22.215 [info] block_id: fd34414"},{"event":"cmd_output","timestamp":1607098282,"output":"9-aca9-4706-a238-1a174367f21b, type: Blocks, state: running, event: exit_scheduling, recovery_count:"},{"event":"cmd_output","timestamp":1607098282,"output":" 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.221 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098282,"output":": 098cc909-7303-414e-a62e-b4ac3abf102a, type: PplRequests, event: persisted source_args for pipeline"},{"event":"cmd_output","timestamp":1607098282,"output":": 098cc909-7303-414e-a62e-b4ac3abf102a, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.inse"},{"event":"cmd_output","timestamp":1607098282,"output":"rt_source/2(L89), \n\u001b[0m\u001b[22m\n16:11:22.224 [info] ppl_id: 098cc909-7303-414e-a62e-b4ac3abf102a, ty"},{"event":"cmd_output","timestamp":1607098282,"output":"pe: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.S"},{"event":"cmd_output","timestamp":1607098282,"output":"TM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.237 [info] block_id: fd344149-aca9-4706-a238"},{"event":"cmd_output","timestamp":1607098282,"output":"-1a174367f21b, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098282,"output":"r.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.259 [info] ppl_id: 098cc909-7303-4"},{"event":"cmd_output","timestamp":1607098282,"output":"14e-a62e-b4ac3abf102a, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_coun"},{"event":"cmd_output","timestamp":1607098282,"output":"t: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.281 [info] ppl_"},{"event":"cmd_output","timestamp":1607098282,"output":"id: fff41c6d-21e9-4527-845d-b67107ebe7ed, type: Ppls, state: running, event: exit_scheduling, recove"},{"event":"cmd_output","timestamp":1607098282,"output":"ry_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.293 [info"},{"event":"cmd_output","timestamp":1607098282,"output":"] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"fff41c6d-21e9-4527-845d-b67107eb"},{"event":"cmd_output","timestamp":1607098282,"output":"e7ed\"\n\u001b[0m\u001b[22m\n16:11:22.296 [info] ppl_id: 098cc909-7303-414e-a62e-b4ac3abf102a, type: PplReques"},{"event":"cmd_output","timestamp":1607098282,"output":"ts, event: persisted definition for request with request_token: d586e149-796b-4ae1-9195-37ca632e2b00"},{"event":"cmd_output","timestamp":1607098282,"output":", origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098282,"output":"11:22.300 [info] block_id: fd344149-aca9-4706-a238-1a174367f21b, type: Tasks, state: done, event: e"},{"event":"cmd_output","timestamp":1607098282,"output":"xit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098282,"output":"2m\n16:11:22.307 [info] block_id: d93714b6-5342-4d33-a3e9-524b2a20a3a7, type: BlockRequests, event:"},{"event":"cmd_output","timestamp":1607098282,"output":" persisted block run request from ppl fff41c6d-21e9-4527-845d-b67107ebe7ed for block 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098282,"output":"ir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:11:22.308"},{"event":"cmd_output","timestamp":1607098282,"output":" [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105),"},{"event":"cmd_output","timestamp":1607098282,"output":" \n\u001b[0m\u001b[22m\n16:11:22.308 [info] ppl_id: 098cc909-7303-414e-a62e-b4ac3abf102a, type: PplBlocks, bl"},{"event":"cmd_output","timestamp":1607098282,"output":"ock_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits"},{"event":"cmd_output","timestamp":1607098282,"output":".STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:11:22.312 [info] block_id: fd344149-a"},{"event":"cmd_output","timestamp":1607098282,"output":"ca9-4706-a238-1a174367f21b, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098282,"output":"igin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.312 [info] ppl_id: 098c"},{"event":"cmd_output","timestamp":1607098282,"output":"c909-7303-414e-a62e-b4ac3abf102a, type: PplSubInits, state: done, result: passed, event: exit_schedu"},{"event":"cmd_output","timestamp":1607098282,"output":"ling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:"},{"event":"cmd_output","timestamp":1607098282,"output":"22.313 [info] block_id: d93714b6-5342-4d33-a3e9-524b2a20a3a7, type: Blocks, state: initializing, ev"},{"event":"cmd_output","timestamp":1607098282,"output":"ent: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43),"},{"event":"cmd_output","timestamp":1607098282,"output":" \n\u001b[0m\u001b[22m\n16:11:22.318 [info] Block 0 of pipeline with id: fff41c6d-21e9-4527-845d-b67107ebe7ed"},{"event":"cmd_output","timestamp":1607098282,"output":" scheduled in block service with id: : \"d93714b6-5342-4d33-a3e9-524b2a20a3a7\"\n\u001b[0m\u001b[22m\n16:11:22.3"},{"event":"cmd_output","timestamp":1607098282,"output":"24 [info] ppl_id: fff41c6d-21e9-4527-845d-b67107ebe7ed, type: PplBlocks, block_index: 0, state: run"},{"event":"cmd_output","timestamp":1607098282,"output":"ning, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098282,"output":"90), \n\u001b[0m\u001b[22m\n16:11:22.330 [info] ppl_id: 38967911-160b-4392-b867-b83cb5692c2d, block_id: fd344"},{"event":"cmd_output","timestamp":1607098282,"output":"149-aca9-4706-a238-1a174367f21b, type: PplBlocks, block_index: 0, state: done, result: passed, event"},{"event":"cmd_output","timestamp":1607098282,"output":": exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098282,"output":"\u001b[22m\n16:11:22.332 [info] block_id: d93714b6-5342-4d33-a3e9-524b2a20a3a7, type: BlockRequests, eve"},{"event":"cmd_output","timestamp":1607098282,"output":"nt: persisted build and sub_ppl details for block_request: d93714b6-5342-4d33-a3e9-524b2a20a3a7, ori"},{"event":"cmd_output","timestamp":1607098282,"output":"gin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:11:2"},{"event":"cmd_output","timestamp":1607098282,"output":"2.333 [info] ppl_id: 098cc909-7303-414e-a62e-b4ac3abf102a, type: PplBlocks, block_index: 0, state: "},{"event":"cmd_output","timestamp":1607098282,"output":"waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/"},{"event":"cmd_output","timestamp":1607098282,"output":"1(L90), \n\u001b[0m\u001b[22m\n16:11:22.335 [info] ppl_id: 098cc909-7303-414e-a62e-b4ac3abf102a, type: Ppls, "},{"event":"cmd_output","timestamp":1607098282,"output":"state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_"},{"event":"cmd_output","timestamp":1607098282,"output":"change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.342 [info] block_id: d93714b6-5342-4d33-a3e9-524b2a20a3a7, typ"},{"event":"cmd_output","timestamp":1607098282,"output":"e: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler."},{"event":"cmd_output","timestamp":1607098282,"output":"InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:11:22.348 [info] block_id: d93714b6-5342-4d33-a3"},{"event":"cmd_output","timestamp":1607098282,"output":"e9-524b2a20a3a7, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098282,"output":"ixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.351 [info] ppl_id: fa7ece35-5a4"},{"event":"cmd_output","timestamp":1607098282,"output":"c-46ad-ab9e-e0947b6f3395, type: PplRequests, event: persisted source_args for pipeline: fa7ece35-5a4"},{"event":"cmd_output","timestamp":1607098282,"output":"c-46ad-ab9e-e0947b6f3395, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L8"},{"event":"cmd_output","timestamp":1607098282,"output":"9), \n\u001b[0m\u001b[22m\n16:11:22.353 [info] ppl_id: 098cc909-7303-414e-a62e-b4ac3abf102a, type: Ppls, stat"},{"event":"cmd_output","timestamp":1607098282,"output":"e: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chan"},{"event":"cmd_output","timestamp":1607098282,"output":"ge/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.357 [info] ppl_id: fa7ece35-5a4c-46ad-ab9e-e0947b6f3395, type: Ppl"},{"event":"cmd_output","timestamp":1607098282,"output":"SubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl"},{"event":"cmd_output","timestamp":1607098282,"output":".log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.361 [info] ppl_id: 38967911-160b-4392-b867-b83cb569"},{"event":"cmd_output","timestamp":1607098282,"output":"2c2d, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098282,"output":"ixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.374 [info] block_id: d93714b6-5"},{"event":"cmd_output","timestamp":1607098282,"output":"342-4d33-a3e9-524b2a20a3a7, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098282,"output":"origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.382 [info] ppl_id: 09"},{"event":"cmd_output","timestamp":1607098282,"output":"8cc909-7303-414e-a62e-b4ac3abf102a, type: Ppls, state: running, event: exit_scheduling, recovery_cou"},{"event":"cmd_output","timestamp":1607098282,"output":"nt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.391 [info] Ppl"},{"event":"cmd_output","timestamp":1607098282,"output":"Blocks WaitingState STM is scheduling block 0 from pipeline: \"098cc909-7303-414e-a62e-b4ac3abf102a\"\r"},{"event":"cmd_output","timestamp":1607098282,"output":"\n\u001b[0m\u001b[22m\n16:11:22.399 [info] block_id: 75acb925-88a4-4ff8-afdc-a93de968eaa8, type: BlockRequests"},{"event":"cmd_output","timestamp":1607098282,"output":", event: persisted block run request from ppl 098cc909-7303-414e-a62e-b4ac3abf102a for block 0, orig"},{"event":"cmd_output","timestamp":1607098282,"output":"in: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098282,"output":"1:22.400 [info] ppl_id: fa7ece35-5a4c-46ad-ab9e-e0947b6f3395, type: PplSubInits, state: regular_ini"},{"event":"cmd_output","timestamp":1607098282,"output":"t, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90)"},{"event":"cmd_output","timestamp":1607098282,"output":", \n\u001b[0m\u001b[22m\n16:11:22.407 [info] block_id: 75acb925-88a4-4ff8-afdc-a93de968eaa8, type: Blocks, st"},{"event":"cmd_output","timestamp":1607098282,"output":"ate: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQ"},{"event":"cmd_output","timestamp":1607098282,"output":"ueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:11:22.414 [info] Block 0 of pipeline with id: 098cc909-7303-4"},{"event":"cmd_output","timestamp":1607098282,"output":"14e-a62e-b4ac3abf102a scheduled in block service with id: : \"75acb925-88a4-4ff8-afdc-a93de968eaa8\"\n"},{"event":"cmd_output","timestamp":1607098282,"output":"\u001b[0m\u001b[22m\n16:11:22.424 [info] ppl_id: 098cc909-7303-414e-a62e-b4ac3abf102a, type: PplBlocks, block"},{"event":"cmd_output","timestamp":1607098282,"output":"_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl"},{"event":"cmd_output","timestamp":1607098282,"output":".log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.426 [info] block_id: d93714b6-5342-4d33-a3e9-524b2a"},{"event":"cmd_output","timestamp":1607098282,"output":"20a3a7, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.S"},{"event":"cmd_output","timestamp":1607098282,"output":"TM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.429 [info] block_id: 75acb925-88a4-4ff8-afdc"},{"event":"cmd_output","timestamp":1607098282,"output":"-a93de968eaa8, type: BlockRequests, event: persisted build and sub_ppl details for block_request: 75"},{"event":"cmd_output","timestamp":1607098282,"output":"acb925-88a4-4ff8-afdc-a93de968eaa8, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.in"},{"event":"cmd_output","timestamp":1607098282,"output":"sert_build/2(L41), \n\u001b[0m\u001b[22m\n16:11:22.437 [info] block_id: 75acb925-88a4-4ff8-afdc-a93de968eaa8,"},{"event":"cmd_output","timestamp":1607098282,"output":" type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHand"},{"event":"cmd_output","timestamp":1607098282,"output":"ler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:11:22.440 [info] ppl_id: fa7ece35-5a4c-46ad-"},{"event":"cmd_output","timestamp":1607098282,"output":"ab9e-e0947b6f3395, type: PplRequests, event: persisted definition for request with request_token: 68"},{"event":"cmd_output","timestamp":1607098282,"output":"05d06c-0a96-44e4-a3f8-cc334bffc273, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_d"},{"event":"cmd_output","timestamp":1607098282,"output":"efinition/3(L76), \n\u001b[0m\u001b[22m\n16:11:22.441 [info] block_id: d93714b6-5342-4d33-a3e9-524b2a20a3a7, "},{"event":"cmd_output","timestamp":1607098282,"output":"type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl"},{"event":"cmd_output","timestamp":1607098282,"output":".log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.442 [info] block_id: 75acb925-88a4-4ff8-afdc-a93de9"},{"event":"cmd_output","timestamp":1607098282,"output":"68eaa8, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loop"},{"event":"cmd_output","timestamp":1607098282,"output":"er.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.455 [info] ppl_id: fff41c6d-21e9-4527-84"},{"event":"cmd_output","timestamp":1607098282,"output":"5d-b67107ebe7ed, block_id: d93714b6-5342-4d33-a3e9-524b2a20a3a7, type: PplBlocks, block_index: 0, st"},{"event":"cmd_output","timestamp":1607098282,"output":"ate: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl"},{"event":"cmd_output","timestamp":1607098282,"output":".log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.458 [info] event: created, origin: Elixir.Ppl.PplSu"},{"event":"cmd_output","timestamp":1607098282,"output":"bInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:11:22.458 [info] ppl_id: fa7ece"},{"event":"cmd_output","timestamp":1607098282,"output":"35-5a4c-46ad-ab9e-e0947b6f3395, type: PplBlocks, block_index: 0, state: initializing, event: created"},{"event":"cmd_output","timestamp":1607098282,"output":", recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b"},{"event":"cmd_output","timestamp":1607098282,"output":"[0m\u001b[22m\n16:11:22.462 [info] ppl_id: fa7ece35-5a4c-46ad-ab9e-e0947b6f3395, type: PplSubInits, stat"},{"event":"cmd_output","timestamp":1607098282,"output":"e: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.l"},{"event":"cmd_output","timestamp":1607098282,"output":"og_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.467 [info] block_id: 75acb925-88a4-4ff8-afdc-a93de968"},{"event":"cmd_output","timestamp":1607098282,"output":"eaa8, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper."},{"event":"cmd_output","timestamp":1607098282,"output":"STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.476 [info] ppl_id: 69fe776b-e59b-44ee-bffc-"},{"event":"cmd_output","timestamp":1607098282,"output":"d28977e90fb0, type: PplRequests, event: persisted source_args for pipeline: 69fe776b-e59b-44ee-bffc-"},{"event":"cmd_output","timestamp":1607098282,"output":"d28977e90fb0, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098282,"output":"22m\n16:11:22.479 [info] ppl_id: fa7ece35-5a4c-46ad-ab9e-e0947b6f3395, type: Ppls, state: pending, "},{"event":"cmd_output","timestamp":1607098282,"output":"event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \r"},{"event":"cmd_output","timestamp":1607098282,"output":"\n\u001b[0m\u001b[22m\n16:11:22.481 [info] ppl_id: fff41c6d-21e9-4527-845d-b67107ebe7ed, type: Ppls, state: do"},{"event":"cmd_output","timestamp":1607098282,"output":"ne, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_st"},{"event":"cmd_output","timestamp":1607098282,"output":"ate_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.483 [info] ppl_id: 69fe776b-e59b-44ee-bffc-d28977e90fb0, t"},{"event":"cmd_output","timestamp":1607098282,"output":"ype: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper."},{"event":"cmd_output","timestamp":1607098282,"output":"STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.485 [info] ppl_id: fa7ece35-5a4c-46ad-ab9e-"},{"event":"cmd_output","timestamp":1607098282,"output":"e0947b6f3395, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_coun"},{"event":"cmd_output","timestamp":1607098282,"output":"t: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.492 [info] ppl_"},{"event":"cmd_output","timestamp":1607098282,"output":"id: fa7ece35-5a4c-46ad-ab9e-e0947b6f3395, type: Ppls, state: queuing, event: exit_scheduling, recove"},{"event":"cmd_output","timestamp":1607098282,"output":"ry_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.501 [info"},{"event":"cmd_output","timestamp":1607098282,"output":"] ppl_id: 414b2fb8-f809-4b88-9b0e-8c5dd19c0cba, type: Ppls, state: running, event: exit_scheduling,"},{"event":"cmd_output","timestamp":1607098282,"output":" recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.51"},{"event":"cmd_output","timestamp":1607098282,"output":"0 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"414b2fb8-f809-4b88-9b0e-8"},{"event":"cmd_output","timestamp":1607098282,"output":"c5dd19c0cba\"\n\u001b[0m\u001b[22m\n16:11:22.518 [info] block_id: c1d47968-6f3e-4f02-8fdb-bbe4bfc69f1b, type: "},{"event":"cmd_output","timestamp":1607098282,"output":"BlockRequests, event: persisted block run request from ppl 414b2fb8-f809-4b88-9b0e-8c5dd19c0cba for "},{"event":"cmd_output","timestamp":1607098282,"output":"block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b["},{"event":"cmd_output","timestamp":1607098282,"output":"0m\u001b[22m\n16:11:22.518 [info] ppl_id: 69fe776b-e59b-44ee-bffc-d28977e90fb0, type: PplSubInits, state"},{"event":"cmd_output","timestamp":1607098282,"output":": regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_"},{"event":"cmd_output","timestamp":1607098282,"output":"change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.522 [info] block_id: c1d47968-6f3e-4f02-8fdb-bbe4bfc69f1b, typ"},{"event":"cmd_output","timestamp":1607098282,"output":"e: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks."},{"event":"cmd_output","timestamp":1607098282,"output":"Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:11:22.525 [info] Block 0 of pipeline with id: 41"},{"event":"cmd_output","timestamp":1607098282,"output":"4b2fb8-f809-4b88-9b0e-8c5dd19c0cba scheduled in block service with id: : \"c1d47968-6f3e-4f02-8fdb-bb"},{"event":"cmd_output","timestamp":1607098282,"output":"e4bfc69f1b\"\n\u001b[0m\u001b[22m\n16:11:22.530 [info] ppl_id: 414b2fb8-f809-4b88-9b0e-8c5dd19c0cba, type: Ppl"},{"event":"cmd_output","timestamp":1607098282,"output":"Blocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Lo"},{"event":"cmd_output","timestamp":1607098282,"output":"oper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.534 [info] block_id: c1d47968-6f3e-4f0"},{"event":"cmd_output","timestamp":1607098282,"output":"2-8fdb-bbe4bfc69f1b, type: BlockRequests, event: persisted build and sub_ppl details for block_reque"},{"event":"cmd_output","timestamp":1607098282,"output":"st: c1d47968-6f3e-4f02-8fdb-bbe4bfc69f1b, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQuer"},{"event":"cmd_output","timestamp":1607098282,"output":"ies.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:11:22.537 [info] block_id: c1d47968-6f3e-4f02-8fdb-bbe4bfc"},{"event":"cmd_output","timestamp":1607098282,"output":"69f1b, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.S"},{"event":"cmd_output","timestamp":1607098282,"output":"TMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:11:22.543 [info] block_id: c1d47968-6f"},{"event":"cmd_output","timestamp":1607098282,"output":"3e-4f02-8fdb-bbe4bfc69f1b, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098282,"output":"origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.559 [info] block_id: "},{"event":"cmd_output","timestamp":1607098282,"output":"75acb925-88a4-4ff8-afdc-a93de968eaa8, type: Tasks, state: done, event: exit_scheduling, recovery_cou"},{"event":"cmd_output","timestamp":1607098282,"output":"nt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.580 [info] blo"},{"event":"cmd_output","timestamp":1607098282,"output":"ck_id: 75acb925-88a4-4ff8-afdc-a93de968eaa8, type: Blocks, state: done, event: exit_scheduling, reco"},{"event":"cmd_output","timestamp":1607098282,"output":"very_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.582 [in"},{"event":"cmd_output","timestamp":1607098282,"output":"fo] block_id: c1d47968-6f3e-4f02-8fdb-bbe4bfc69f1b, type: Tasks, state: running, event: exit_schedu"},{"event":"cmd_output","timestamp":1607098282,"output":"ling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:"},{"event":"cmd_output","timestamp":1607098282,"output":"22.590 [info] ppl_id: 69fe776b-e59b-44ee-bffc-d28977e90fb0, type: PplRequests, event: persisted def"},{"event":"cmd_output","timestamp":1607098282,"output":"inition for request with request_token: 48351784-3d4b-4adb-aecd-1d63f0c96256, origin: Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098282,"output":"Requests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:11:22.596 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098282,"output":": 098cc909-7303-414e-a62e-b4ac3abf102a, block_id: 75acb925-88a4-4ff8-afdc-a93de968eaa8, type: PplBlo"},{"event":"cmd_output","timestamp":1607098282,"output":"cks, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098282,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.600 [info] event: created, o"},{"event":"cmd_output","timestamp":1607098282,"output":"rigin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:11:22.600"},{"event":"cmd_output","timestamp":1607098282,"output":" [info] ppl_id: 69fe776b-e59b-44ee-bffc-d28977e90fb0, type: PplBlocks, block_index: 0, state: initi"},{"event":"cmd_output","timestamp":1607098282,"output":"alizing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitSta"},{"event":"cmd_output","timestamp":1607098282,"output":"te.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:11:22.601 [info] ppl_id: 1032fc89-c251-4201-870b-7c979c6a05bf, "},{"event":"cmd_output","timestamp":1607098282,"output":"type: PplRequests, event: persisted source_args for pipeline: 1032fc89-c251-4201-870b-7c979c6a05bf, "},{"event":"cmd_output","timestamp":1607098282,"output":"origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:11:22."},{"event":"cmd_output","timestamp":1607098282,"output":"604 [info] ppl_id: 69fe776b-e59b-44ee-bffc-d28977e90fb0, type: PplSubInits, state: done, result: pa"},{"event":"cmd_output","timestamp":1607098282,"output":"ssed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098282,"output":"90), \n\u001b[0m\u001b[22m\n16:11:22.610 [info] ppl_id: 1032fc89-c251-4201-870b-7c979c6a05bf, type: PplSubIni"},{"event":"cmd_output","timestamp":1607098282,"output":"ts, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_s"},{"event":"cmd_output","timestamp":1607098282,"output":"tate_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.624 [info] ppl_id: 69fe776b-e59b-44ee-bffc-d28977e90fb0, "},{"event":"cmd_output","timestamp":1607098282,"output":"type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098282,"output":"Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.626 [info] ppl_id: 69fe776b-e"},{"event":"cmd_output","timestamp":1607098282,"output":"59b-44ee-bffc-d28977e90fb0, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098282,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.630 [info] ppl_id: 098"},{"event":"cmd_output","timestamp":1607098282,"output":"cc909-7303-414e-a62e-b4ac3abf102a, type: Ppls, state: done, result: passed, event: exit_scheduling, "},{"event":"cmd_output","timestamp":1607098282,"output":"recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.645"},{"event":"cmd_output","timestamp":1607098282,"output":" [info] ppl_id: 69fe776b-e59b-44ee-bffc-d28977e90fb0, type: Ppls, state: queuing, event: exit_sched"},{"event":"cmd_output","timestamp":1607098282,"output":"uling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11"},{"event":"cmd_output","timestamp":1607098282,"output":":22.659 [info] ppl_id: 1032fc89-c251-4201-870b-7c979c6a05bf, type: PplSubInits, state: regular_init"},{"event":"cmd_output","timestamp":1607098282,"output":", event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90),"},{"event":"cmd_output","timestamp":1607098282,"output":" \n\u001b[0m\u001b[22m\n16:11:22.662 [info] ppl_id: fa7ece35-5a4c-46ad-ab9e-e0947b6f3395, type: Ppls, state: "},{"event":"cmd_output","timestamp":1607098282,"output":"running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/"},{"event":"cmd_output","timestamp":1607098282,"output":"1(L90), \n\u001b[0m\u001b[22m\n16:11:22.673 [info] PplBlocks WaitingState STM is scheduling block 0 from pipe"},{"event":"cmd_output","timestamp":1607098282,"output":"line: \"fa7ece35-5a4c-46ad-ab9e-e0947b6f3395\"\n\u001b[0m\u001b[22m\n16:11:22.685 [info] block_id: c1d47968-6f3"},{"event":"cmd_output","timestamp":1607098282,"output":"e-4f02-8fdb-bbe4bfc69f1b, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098282,"output":"n: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.689 [info] block_id: b182b"},{"event":"cmd_output","timestamp":1607098282,"output":"78e-0fb5-4d71-a7da-425dbc0dc3fd, type: BlockRequests, event: persisted block run request from ppl fa"},{"event":"cmd_output","timestamp":1607098282,"output":"7ece35-5a4c-46ad-ab9e-e0947b6f3395 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockReques"},{"event":"cmd_output","timestamp":1607098282,"output":"tsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:11:22.694 [info] block_id: b182b78e-0fb5-4d71-a7"},{"event":"cmd_output","timestamp":1607098282,"output":"da-425dbc0dc3fd, type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098282,"output":"Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:11:22.698 [info] Block 0 of "},{"event":"cmd_output","timestamp":1607098282,"output":"pipeline with id: fa7ece35-5a4c-46ad-ab9e-e0947b6f3395 scheduled in block service with id: : \"b182b7"},{"event":"cmd_output","timestamp":1607098282,"output":"8e-0fb5-4d71-a7da-425dbc0dc3fd\"\n\u001b[0m\u001b[22m\n16:11:22.704 [info] block_id: c1d47968-6f3e-4f02-8fdb-b"},{"event":"cmd_output","timestamp":1607098282,"output":"be4bfc69f1b, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Lo"},{"event":"cmd_output","timestamp":1607098282,"output":"oper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.705 [info] ppl_id: fa7ece35-5a4c-46ad-"},{"event":"cmd_output","timestamp":1607098282,"output":"ab9e-e0947b6f3395, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery"},{"event":"cmd_output","timestamp":1607098282,"output":"_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.710 [info] "},{"event":"cmd_output","timestamp":1607098282,"output":" block_id: b182b78e-0fb5-4d71-a7da-425dbc0dc3fd, type: BlockRequests, event: persisted build and sub"},{"event":"cmd_output","timestamp":1607098282,"output":"_ppl details for block_request: b182b78e-0fb5-4d71-a7da-425dbc0dc3fd, origin: Elixir.Block.BlockRequ"},{"event":"cmd_output","timestamp":1607098282,"output":"ests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:11:22.715 [info] ppl_id: 1032f"},{"event":"cmd_output","timestamp":1607098282,"output":"c89-c251-4201-870b-7c979c6a05bf, type: PplRequests, event: persisted definition for request with req"},{"event":"cmd_output","timestamp":1607098282,"output":"uest_token: d67e10d5-6c73-4e52-b8e6-307d0265c618, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQu"},{"event":"cmd_output","timestamp":1607098282,"output":"eries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:11:22.716 [info] block_id: b182b78e-0fb5-4d71-a7da-"},{"event":"cmd_output","timestamp":1607098282,"output":"425dbc0dc3fd, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.B"},{"event":"cmd_output","timestamp":1607098282,"output":"locks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:11:22.720 [info] block_id: b182"},{"event":"cmd_output","timestamp":1607098282,"output":"b78e-0fb5-4d71-a7da-425dbc0dc3fd, type: Blocks, state: running, event: exit_scheduling, recovery_cou"},{"event":"cmd_output","timestamp":1607098282,"output":"nt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.721 [info] ppl"},{"event":"cmd_output","timestamp":1607098282,"output":"_id: 414b2fb8-f809-4b88-9b0e-8c5dd19c0cba, block_id: c1d47968-6f3e-4f02-8fdb-bbe4bfc69f1b, type: Ppl"},{"event":"cmd_output","timestamp":1607098282,"output":"Blocks, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098282,"output":"in: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.730 [info] event: created"},{"event":"cmd_output","timestamp":1607098282,"output":", origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:11:22."},{"event":"cmd_output","timestamp":1607098282,"output":"730 [info] ppl_id: 1032fc89-c251-4201-870b-7c979c6a05bf, type: PplBlocks, block_index: 0, state: in"},{"event":"cmd_output","timestamp":1607098282,"output":"itializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInit"},{"event":"cmd_output","timestamp":1607098282,"output":"State.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:11:22.732 [info] ppl_id: 1032fc89-c251-4201-870b-7c979c6a05b"},{"event":"cmd_output","timestamp":1607098282,"output":"f, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098282,"output":": Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.736 [info] ppl_id: 0737d6a8"},{"event":"cmd_output","timestamp":1607098282,"output":"-81b0-4c50-82ae-f288effd5e15, type: PplRequests, event: persisted source_args for pipeline: 0737d6a8"},{"event":"cmd_output","timestamp":1607098282,"output":"-81b0-4c50-82ae-f288effd5e15, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/"},{"event":"cmd_output","timestamp":1607098282,"output":"2(L89), \n\u001b[0m\u001b[22m\n16:11:22.742 [info] ppl_id: 0737d6a8-81b0-4c50-82ae-f288effd5e15, type: PplSub"},{"event":"cmd_output","timestamp":1607098282,"output":"Inits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.lo"},{"event":"cmd_output","timestamp":1607098282,"output":"g_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.746 [info] ppl_id: 1032fc89-c251-4201-870b-7c979c6a05b"},{"event":"cmd_output","timestamp":1607098282,"output":"f, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM."},{"event":"cmd_output","timestamp":1607098282,"output":"Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.752 [info] ppl_id: 1032fc89-c251-4201-870b-7c97"},{"event":"cmd_output","timestamp":1607098282,"output":"9c6a05bf, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0"},{"event":"cmd_output","timestamp":1607098282,"output":", origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.759 [info] block_id"},{"event":"cmd_output","timestamp":1607098282,"output":": b182b78e-0fb5-4d71-a7da-425dbc0dc3fd, type: Tasks, state: running, event: exit_scheduling, recover"},{"event":"cmd_output","timestamp":1607098282,"output":"y_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.762 [info]"},{"event":"cmd_output","timestamp":1607098282,"output":" ppl_id: 1032fc89-c251-4201-870b-7c979c6a05bf, type: Ppls, state: queuing, event: exit_scheduling, "},{"event":"cmd_output","timestamp":1607098282,"output":"recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.764"},{"event":"cmd_output","timestamp":1607098282,"output":" [info] ppl_id: 414b2fb8-f809-4b88-9b0e-8c5dd19c0cba, type: Ppls, state: done, result: passed, even"},{"event":"cmd_output","timestamp":1607098282,"output":"t: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098282,"output":"m\u001b[22m\n16:11:22.781 [info] ppl_id: 0737d6a8-81b0-4c50-82ae-f288effd5e15, type: PplSubInits, state:"},{"event":"cmd_output","timestamp":1607098282,"output":" regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098282,"output":"hange/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.796 [info] block_id: b182b78e-0fb5-4d71-a7da-425dbc0dc3fd, type"},{"event":"cmd_output","timestamp":1607098282,"output":": Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_"},{"event":"cmd_output","timestamp":1607098282,"output":"state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.804 [info] block_id: b182b78e-0fb5-4d71-a7da-425dbc0dc3f"},{"event":"cmd_output","timestamp":1607098282,"output":"d, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.I"},{"event":"cmd_output","timestamp":1607098282,"output":"mpl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.817 [info] ppl_id: fa7ece35-5a4c-46ad-ab9e-e0947"},{"event":"cmd_output","timestamp":1607098282,"output":"b6f3395, block_id: b182b78e-0fb5-4d71-a7da-425dbc0dc3fd, type: PplBlocks, block_index: 0, state: don"},{"event":"cmd_output","timestamp":1607098282,"output":"e, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_sta"},{"event":"cmd_output","timestamp":1607098282,"output":"te_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.821 [info] ppl_id: 0737d6a8-81b0-4c50-82ae-f288effd5e15, ty"},{"event":"cmd_output","timestamp":1607098282,"output":"pe: PplRequests, event: persisted definition for request with request_token: 66b59e5d-e3da-4dca-aca8"},{"event":"cmd_output","timestamp":1607098282,"output":"-fcc3f423c6a2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b"},{"event":"cmd_output","timestamp":1607098282,"output":"[0m\u001b[22m\n16:11:22.827 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schem"},{"event":"cmd_output","timestamp":1607098282,"output":"a.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:11:22.825577], name: \"123-.semaphore/se"},{"event":"cmd_output","timestamp":1607098282,"output":"maphore.yml\", organization_id: \"abc\", project_id: \"123\", queue_id: \"109546c6-e0ba-4ba4-8192-73adb6af"},{"event":"cmd_output","timestamp":1607098282,"output":"9d2f\", scope: \"project\", updated_at: ~N[2020-12-04 16:11:22.825586], user_generated: false}}\n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098282,"output":"22m\n16:11:22.831 [info] ppl_id: fa7ece35-5a4c-46ad-ab9e-e0947b6f3395, type: Ppls, state: done, res"},{"event":"cmd_output","timestamp":1607098282,"output":"ult: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_cha"},{"event":"cmd_output","timestamp":1607098282,"output":"nge/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.834 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHand"},{"event":"cmd_output","timestamp":1607098282,"output":"ler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:11:22.834 [info] ppl_id: 0737d6a8-81b0-4c50-8"},{"event":"cmd_output","timestamp":1607098282,"output":"2ae-f288effd5e15, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_cou"},{"event":"cmd_output","timestamp":1607098282,"output":"nt: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098282,"output":"1:22.836 [info] ppl_id: 0737d6a8-81b0-4c50-82ae-f288effd5e15, type: PplSubInits, state: done, resul"},{"event":"cmd_output","timestamp":1607098282,"output":"t: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chang"},{"event":"cmd_output","timestamp":1607098282,"output":"e/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.838 [info] ppl_id: 69fe776b-e59b-44ee-bffc-d28977e90fb0, type: Ppls"},{"event":"cmd_output","timestamp":1607098282,"output":", state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_stat"},{"event":"cmd_output","timestamp":1607098282,"output":"e_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.844 [info] PplBlocks WaitingState STM is scheduling block 0 "},{"event":"cmd_output","timestamp":1607098282,"output":"from pipeline: \"69fe776b-e59b-44ee-bffc-d28977e90fb0\"\n\u001b[0m\u001b[22m\n16:11:22.844 [info] ppl_id: 0737d"},{"event":"cmd_output","timestamp":1607098282,"output":"6a8-81b0-4c50-82ae-f288effd5e15, type: PplBlocks, block_index: 0, state: waiting, event: exit_schedu"},{"event":"cmd_output","timestamp":1607098282,"output":"ling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:"},{"event":"cmd_output","timestamp":1607098282,"output":"22.850 [info] ppl_id: 0737d6a8-81b0-4c50-82ae-f288effd5e15, type: Ppls, state: pending, event: exit"},{"event":"cmd_output","timestamp":1607098282,"output":"_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098282,"output":"\n16:11:22.852 [info] block_id: 6a77f762-0a8d-4dc9-8108-78214ffff209, type: BlockRequests, event: pe"},{"event":"cmd_output","timestamp":1607098282,"output":"rsisted block run request from ppl 69fe776b-e59b-44ee-bffc-d28977e90fb0 for block 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098282,"output":"Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:11:22.856 [i"},{"event":"cmd_output","timestamp":1607098282,"output":"nfo] block_id: 6a77f762-0a8d-4dc9-8108-78214ffff209, type: Blocks, state: initializing, event: init"},{"event":"cmd_output","timestamp":1607098282,"output":"ializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098282,"output":"22m\n16:11:22.860 [info] Block 0 of pipeline with id: 69fe776b-e59b-44ee-bffc-d28977e90fb0 schedule"},{"event":"cmd_output","timestamp":1607098282,"output":"d in block service with id: : \"6a77f762-0a8d-4dc9-8108-78214ffff209\"\n\u001b[0m\u001b[22m\n16:11:22.861 [info]"},{"event":"cmd_output","timestamp":1607098282,"output":" ppl_id: 22937567-604d-4e40-8762-51cad8d0b13a, type: PplRequests, event: persisted source_args for "},{"event":"cmd_output","timestamp":1607098282,"output":"pipeline: 22937567-604d-4e40-8762-51cad8d0b13a, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQuer"},{"event":"cmd_output","timestamp":1607098282,"output":"ies.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:11:22.864 [info] ppl_id: 22937567-604d-4e40-8762-51cad8d0"},{"event":"cmd_output","timestamp":1607098282,"output":"b13a, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098282,"output":"Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.866 [info] ppl_id: 69fe776b-e59b-44e"},{"event":"cmd_output","timestamp":1607098282,"output":"e-bffc-d28977e90fb0, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recove"},{"event":"cmd_output","timestamp":1607098282,"output":"ry_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.869 [info"},{"event":"cmd_output","timestamp":1607098282,"output":"] block_id: 6a77f762-0a8d-4dc9-8108-78214ffff209, type: BlockRequests, event: persisted build and s"},{"event":"cmd_output","timestamp":1607098282,"output":"ub_ppl details for block_request: 6a77f762-0a8d-4dc9-8108-78214ffff209, origin: Elixir.Block.BlockRe"},{"event":"cmd_output","timestamp":1607098282,"output":"quests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:11:22.869 [info] ppl_id: 073"},{"event":"cmd_output","timestamp":1607098282,"output":"7d6a8-81b0-4c50-82ae-f288effd5e15, type: Ppls, state: queuing, event: exit_scheduling, recovery_coun"},{"event":"cmd_output","timestamp":1607098282,"output":"t: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.874 [info] bloc"},{"event":"cmd_output","timestamp":1607098282,"output":"k_id: 6a77f762-0a8d-4dc9-8108-78214ffff209, type: Tasks, state: pending, event: created, recovery_co"},{"event":"cmd_output","timestamp":1607098282,"output":"unt: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:11"},{"event":"cmd_output","timestamp":1607098282,"output":":22.876 [info] block_id: 6a77f762-0a8d-4dc9-8108-78214ffff209, type: Blocks, state: running, event:"},{"event":"cmd_output","timestamp":1607098282,"output":" exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098282,"output":"[22m\n16:11:22.888 [info] ppl_id: 0737d6a8-81b0-4c50-82ae-f288effd5e15, type: Ppls, state: running,"},{"event":"cmd_output","timestamp":1607098282,"output":" event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), "},{"event":"cmd_output","timestamp":1607098282,"output":"\n\u001b[0m\u001b[22m\n16:11:22.902 [info] block_id: 6a77f762-0a8d-4dc9-8108-78214ffff209, type: Tasks, state"},{"event":"cmd_output","timestamp":1607098282,"output":": running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chang"},{"event":"cmd_output","timestamp":1607098282,"output":"e/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.904 [info] PplBlocks WaitingState STM is scheduling block 0 from pi"},{"event":"cmd_output","timestamp":1607098282,"output":"peline: \"0737d6a8-81b0-4c50-82ae-f288effd5e15\"\n\u001b[0m\u001b[22m\n16:11:22.912 [info] ppl_id: 22937567-604"},{"event":"cmd_output","timestamp":1607098282,"output":"d-4e40-8762-51cad8d0b13a, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098282,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.918 [info] b"},{"event":"cmd_output","timestamp":1607098282,"output":"lock_id: 4f1347a7-2880-4890-96b0-830360a6a47f, type: BlockRequests, event: persisted block run reque"},{"event":"cmd_output","timestamp":1607098282,"output":"st from ppl 0737d6a8-81b0-4c50-82ae-f288effd5e15 for block 0, origin: Elixir.Block.BlockRequests.Mod"},{"event":"cmd_output","timestamp":1607098282,"output":"el.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:11:22.919 [info] block_id: 6a77f76"},{"event":"cmd_output","timestamp":1607098282,"output":"2-0a8d-4dc9-8108-78214ffff209, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098282,"output":"origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.921 [info] block_id: "},{"event":"cmd_output","timestamp":1607098282,"output":"4f1347a7-2880-4890-96b0-830360a6a47f, type: Blocks, state: initializing, event: initializing, recove"},{"event":"cmd_output","timestamp":1607098282,"output":"ry_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:11:22.92"},{"event":"cmd_output","timestamp":1607098282,"output":"6 [info] Block 0 of pipeline with id: 0737d6a8-81b0-4c50-82ae-f288effd5e15 scheduled in block servi"},{"event":"cmd_output","timestamp":1607098282,"output":"ce with id: : \"4f1347a7-2880-4890-96b0-830360a6a47f\"\n\u001b[0m\u001b[22m\n16:11:22.931 [info] ppl_id: 0737d6"},{"event":"cmd_output","timestamp":1607098282,"output":"a8-81b0-4c50-82ae-f288effd5e15, type: PplBlocks, block_index: 0, state: running, event: exit_schedul"},{"event":"cmd_output","timestamp":1607098282,"output":"ing, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:2"},{"event":"cmd_output","timestamp":1607098282,"output":"2.934 [info] block_id: 6a77f762-0a8d-4dc9-8108-78214ffff209, type: Blocks, state: done, event: exit"},{"event":"cmd_output","timestamp":1607098282,"output":"_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098282,"output":"\n16:11:22.937 [info] block_id: 4f1347a7-2880-4890-96b0-830360a6a47f, type: BlockRequests, event: pe"},{"event":"cmd_output","timestamp":1607098282,"output":"rsisted build and sub_ppl details for block_request: 4f1347a7-2880-4890-96b0-830360a6a47f, origin: E"},{"event":"cmd_output","timestamp":1607098282,"output":"lixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:11:22.941 "},{"event":"cmd_output","timestamp":1607098282,"output":"[info] block_id: 4f1347a7-2880-4890-96b0-830360a6a47f, type: Tasks, state: pending, event: created,"},{"event":"cmd_output","timestamp":1607098282,"output":" recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098282,"output":"\u001b[22m\n16:11:22.948 [info] block_id: 4f1347a7-2880-4890-96b0-830360a6a47f, type: Blocks, state: run"},{"event":"cmd_output","timestamp":1607098282,"output":"ning, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098282,"output":"90), \n\u001b[0m\u001b[22m\n16:11:22.959 [info] ppl_id: 69fe776b-e59b-44ee-bffc-d28977e90fb0, block_id: 6a77f"},{"event":"cmd_output","timestamp":1607098282,"output":"762-0a8d-4dc9-8108-78214ffff209, type: PplBlocks, block_index: 0, state: done, result: passed, event"},{"event":"cmd_output","timestamp":1607098282,"output":": exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098282,"output":"\u001b[22m\n16:11:22.978 [info] ppl_id: 22937567-604d-4e40-8762-51cad8d0b13a, type: PplRequests, event: "},{"event":"cmd_output","timestamp":1607098282,"output":"persisted definition for request with request_token: 3c4aa022-91ac-43c1-8fd3-aa2303d56603, origin: E"},{"event":"cmd_output","timestamp":1607098282,"output":"lixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:11:22.980 ["},{"event":"cmd_output","timestamp":1607098282,"output":"info] block_id: 4f1347a7-2880-4890-96b0-830360a6a47f, type: Tasks, state: running, event: exit_sche"},{"event":"cmd_output","timestamp":1607098282,"output":"duling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098282,"output":"1:22.987 [info] ppl_id: 30a17cb3-1a58-414a-982c-7dbbe9af3887, type: PplRequests, event: persisted s"},{"event":"cmd_output","timestamp":1607098282,"output":"ource_args for pipeline: 30a17cb3-1a58-414a-982c-7dbbe9af3887, origin: Elixir.Ppl.PplRequests.Model."},{"event":"cmd_output","timestamp":1607098282,"output":"PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:11:22.991 [info] ppl_id: 69fe776b-e59b-44e"},{"event":"cmd_output","timestamp":1607098282,"output":"e-bffc-d28977e90fb0, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count"},{"event":"cmd_output","timestamp":1607098282,"output":": 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.991 [info] event"},{"event":"cmd_output","timestamp":1607098282,"output":": created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098282,"output":"16:11:22.991 [info] ppl_id: 22937567-604d-4e40-8762-51cad8d0b13a, type: PplBlocks, block_index: 0, "},{"event":"cmd_output","timestamp":1607098282,"output":"state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.Re"},{"event":"cmd_output","timestamp":1607098282,"output":"gularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:11:22.995 [info] ppl_id: 22937567-604d-4e40-8762-51"},{"event":"cmd_output","timestamp":1607098282,"output":"cad8d0b13a, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: "},{"event":"cmd_output","timestamp":1607098282,"output":"0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:22.995 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098282,"output":" 30a17cb3-1a58-414a-982c-7dbbe9af3887, type: PplSubInits, state: fetching, event: exit_scheduling, r"},{"event":"cmd_output","timestamp":1607098283,"output":"ecovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:23.005 "},{"event":"cmd_output","timestamp":1607098283,"output":"[info] ppl_id: 22937567-604d-4e40-8762-51cad8d0b13a, type: PplBlocks, block_index: 0, state: waitin"},{"event":"cmd_output","timestamp":1607098283,"output":"g, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90)"},{"event":"cmd_output","timestamp":1607098283,"output":", \n\u001b[0m\u001b[22m\n16:11:23.015 [info] ppl_id: 22937567-604d-4e40-8762-51cad8d0b13a, type: Ppls, state:"},{"event":"cmd_output","timestamp":1607098283,"output":" pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change"},{"event":"cmd_output","timestamp":1607098283,"output":"/1(L90), \n\u001b[0m\u001b[22m\n16:11:23.029 [info] ppl_id: 22937567-604d-4e40-8762-51cad8d0b13a, type: Ppls,"},{"event":"cmd_output","timestamp":1607098283,"output":" state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state"},{"event":"cmd_output","timestamp":1607098283,"output":"_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:23.031 [info] ppl_id: 30a17cb3-1a58-414a-982c-7dbbe9af3887, type"},{"event":"cmd_output","timestamp":1607098283,"output":": PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper"},{"event":"cmd_output","timestamp":1607098283,"output":".STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:23.039 [info] block_id: 4f1347a7-2880-4890-96"},{"event":"cmd_output","timestamp":1607098283,"output":"b0-830360a6a47f, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098283,"output":".Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:23.045 [info] ppl_id: 1032fc89-c251-42"},{"event":"cmd_output","timestamp":1607098283,"output":"01-870b-7c979c6a05bf, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098283,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:23.050 [info] block_id: 4f1347a"},{"event":"cmd_output","timestamp":1607098283,"output":"7-2880-4890-96b0-830360a6a47f, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098283,"output":" origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:23.060 [info] PplBlocks"},{"event":"cmd_output","timestamp":1607098283,"output":" WaitingState STM is scheduling block 0 from pipeline: \"1032fc89-c251-4201-870b-7c979c6a05bf\"\n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098283,"output":"[22m\n16:11:23.073 [info] ppl_id: 30a17cb3-1a58-414a-982c-7dbbe9af3887, type: PplRequests, event: p"},{"event":"cmd_output","timestamp":1607098283,"output":"ersisted definition for request with request_token: 8ad926a4-d4da-4c83-a49f-1e2ef38f7c7d, origin: El"},{"event":"cmd_output","timestamp":1607098283,"output":"ixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:11:23.075 [i"},{"event":"cmd_output","timestamp":1607098283,"output":"nfo] block_id: d10e694e-07b7-4ecf-8a5e-216ecf56bcc5, type: BlockRequests, event: persisted block ru"},{"event":"cmd_output","timestamp":1607098283,"output":"n request from ppl 1032fc89-c251-4201-870b-7c979c6a05bf for block 0, origin: Elixir.Block.BlockReque"},{"event":"cmd_output","timestamp":1607098283,"output":"sts.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:11:23.080 [info] block_id: "},{"event":"cmd_output","timestamp":1607098283,"output":"d10e694e-07b7-4ecf-8a5e-216ecf56bcc5, type: Blocks, state: initializing, event: initializing, recove"},{"event":"cmd_output","timestamp":1607098283,"output":"ry_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:11:23.08"},{"event":"cmd_output","timestamp":1607098283,"output":"0 [info] ppl_id: 0737d6a8-81b0-4c50-82ae-f288effd5e15, block_id: 4f1347a7-2880-4890-96b0-830360a6a4"},{"event":"cmd_output","timestamp":1607098283,"output":"7f, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098283,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:23.083 [info] e"},{"event":"cmd_output","timestamp":1607098283,"output":"vent: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098283,"output":"2m\n16:11:23.083 [info] ppl_id: 30a17cb3-1a58-414a-982c-7dbbe9af3887, type: PplBlocks, block_index:"},{"event":"cmd_output","timestamp":1607098283,"output":" 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandle"},{"event":"cmd_output","timestamp":1607098283,"output":"r.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:11:23.087 [info] ppl_id: 30a17cb3-1a58-414a-982"},{"event":"cmd_output","timestamp":1607098283,"output":"c-7dbbe9af3887, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_cou"},{"event":"cmd_output","timestamp":1607098283,"output":"nt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:23.089 [info] Blo"},{"event":"cmd_output","timestamp":1607098283,"output":"ck 0 of pipeline with id: 1032fc89-c251-4201-870b-7c979c6a05bf scheduled in block service with id: :"},{"event":"cmd_output","timestamp":1607098283,"output":" \"d10e694e-07b7-4ecf-8a5e-216ecf56bcc5\"\n\u001b[0m\u001b[22m\n16:11:23.093 [info] block_id: d10e694e-07b7-4ec"},{"event":"cmd_output","timestamp":1607098283,"output":"f-8a5e-216ecf56bcc5, type: BlockRequests, event: persisted build and sub_ppl details for block_reque"},{"event":"cmd_output","timestamp":1607098283,"output":"st: d10e694e-07b7-4ecf-8a5e-216ecf56bcc5, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQuer"},{"event":"cmd_output","timestamp":1607098283,"output":"ies.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:11:23.097 [info] ppl_id: 1032fc89-c251-4201-870b-7c979c6a0"},{"event":"cmd_output","timestamp":1607098283,"output":"5bf, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098283,"output":"gin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:23.099 [info] ppl_id: 30a17"},{"event":"cmd_output","timestamp":1607098283,"output":"cb3-1a58-414a-982c-7dbbe9af3887, type: Ppls, state: pending, event: exit_scheduling, recovery_count:"},{"event":"cmd_output","timestamp":1607098283,"output":" 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:23.100 [info] block_"},{"event":"cmd_output","timestamp":1607098283,"output":"id: d10e694e-07b7-4ecf-8a5e-216ecf56bcc5, type: Tasks, state: pending, event: created, recovery_coun"},{"event":"cmd_output","timestamp":1607098283,"output":"t: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:11:2"},{"event":"cmd_output","timestamp":1607098283,"output":"3.109 [info] block_id: d10e694e-07b7-4ecf-8a5e-216ecf56bcc5, type: Blocks, state: running, event: e"},{"event":"cmd_output","timestamp":1607098283,"output":"xit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098283,"output":"2m\n16:11:23.118 [info] ppl_id: 30a17cb3-1a58-414a-982c-7dbbe9af3887, type: PplBlocks, block_index:"},{"event":"cmd_output","timestamp":1607098283,"output":" 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_st"},{"event":"cmd_output","timestamp":1607098283,"output":"ate_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:23.119 [info] ppl_id: 30a17cb3-1a58-414a-982c-7dbbe9af3887, t"},{"event":"cmd_output","timestamp":1607098283,"output":"ype: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl"},{"event":"cmd_output","timestamp":1607098283,"output":".log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:23.122 [info] ppl_id: 72e3db4e-ed5c-4ab6-bc61-ad875ad5"},{"event":"cmd_output","timestamp":1607098283,"output":"3ccf, type: PplRequests, event: persisted source_args for pipeline: 72e3db4e-ed5c-4ab6-bc61-ad875ad5"},{"event":"cmd_output","timestamp":1607098283,"output":"3ccf, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098283,"output":"11:23.132 [info] ppl_id: 72e3db4e-ed5c-4ab6-bc61-ad875ad53ccf, type: PplSubInits, state: fetching, "},{"event":"cmd_output","timestamp":1607098283,"output":"event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \r"},{"event":"cmd_output","timestamp":1607098283,"output":"\n\u001b[0m\u001b[22m\n16:11:23.139 [info] ppl_id: 0737d6a8-81b0-4c50-82ae-f288effd5e15, type: Ppls, state: do"},{"event":"cmd_output","timestamp":1607098283,"output":"ne, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_st"},{"event":"cmd_output","timestamp":1607098283,"output":"ate_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:23.141 [info] block_id: d10e694e-07b7-4ecf-8a5e-216ecf56bcc5,"},{"event":"cmd_output","timestamp":1607098283,"output":" type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.I"},{"event":"cmd_output","timestamp":1607098283,"output":"mpl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:23.155 [info] block_id: d10e694e-07b7-4ecf-8a5e-216"},{"event":"cmd_output","timestamp":1607098283,"output":"ecf56bcc5, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loope"},{"event":"cmd_output","timestamp":1607098283,"output":"r.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:23.169 [info] block_id: d10e694e-07b7-4ecf-8"},{"event":"cmd_output","timestamp":1607098283,"output":"a5e-216ecf56bcc5, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098283,"output":"ir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:23.172 [info] ppl_id: 22937567-604d-"},{"event":"cmd_output","timestamp":1607098283,"output":"4e40-8762-51cad8d0b13a, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098283,"output":"n: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:23.175 [info] ppl_id: 72e3db4"},{"event":"cmd_output","timestamp":1607098283,"output":"e-ed5c-4ab6-bc61-ad875ad53ccf, type: PplSubInits, state: regular_init, event: exit_scheduling, recov"},{"event":"cmd_output","timestamp":1607098283,"output":"ery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:23.184 [inf"},{"event":"cmd_output","timestamp":1607098283,"output":"o] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"22937567-604d-4e40-8762-51cad8d"},{"event":"cmd_output","timestamp":1607098283,"output":"0b13a\"\n\u001b[0m\u001b[22m\n16:11:23.189 [info] ppl_id: 1032fc89-c251-4201-870b-7c979c6a05bf, block_id: d10e"},{"event":"cmd_output","timestamp":1607098283,"output":"694e-07b7-4ecf-8a5e-216ecf56bcc5, type: PplBlocks, block_index: 0, state: done, result: passed, even"},{"event":"cmd_output","timestamp":1607098283,"output":"t: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098283,"output":"m\u001b[22m\n16:11:23.197 [info] block_id: 18723312-343f-424d-923f-761a51861069, type: BlockRequests, ev"},{"event":"cmd_output","timestamp":1607098283,"output":"ent: persisted block run request from ppl 22937567-604d-4e40-8762-51cad8d0b13a for block 0, origin: "},{"event":"cmd_output","timestamp":1607098283,"output":"Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:11:23"},{"event":"cmd_output","timestamp":1607098283,"output":".204 [info] block_id: 18723312-343f-424d-923f-761a51861069, type: Blocks, state: initializing, even"},{"event":"cmd_output","timestamp":1607098283,"output":"t: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \r"},{"event":"cmd_output","timestamp":1607098283,"output":"\n\u001b[0m\u001b[22m\n16:11:23.210 [info] ppl_id: 1032fc89-c251-4201-870b-7c979c6a05bf, type: Ppls, state: do"},{"event":"cmd_output","timestamp":1607098283,"output":"ne, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_st"},{"event":"cmd_output","timestamp":1607098283,"output":"ate_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:23.212 [info] Block 0 of pipeline with id: 22937567-604d-4e40"},{"event":"cmd_output","timestamp":1607098283,"output":"-8762-51cad8d0b13a scheduled in block service with id: : \"18723312-343f-424d-923f-761a51861069\"\n\u001b[0"},{"event":"cmd_output","timestamp":1607098283,"output":"m\u001b[22m\n16:11:23.217 [info] ppl_id: 22937567-604d-4e40-8762-51cad8d0b13a, type: PplBlocks, block_in"},{"event":"cmd_output","timestamp":1607098283,"output":"dex: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.lo"},{"event":"cmd_output","timestamp":1607098283,"output":"g_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:23.220 [info] block_id: 18723312-343f-424d-923f-761a51861"},{"event":"cmd_output","timestamp":1607098283,"output":"069, type: BlockRequests, event: persisted build and sub_ppl details for block_request: 18723312-343"},{"event":"cmd_output","timestamp":1607098283,"output":"f-424d-923f-761a51861069, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build"},{"event":"cmd_output","timestamp":1607098283,"output":"/2(L41), \n\u001b[0m\u001b[22m\n16:11:23.233 [info] block_id: 18723312-343f-424d-923f-761a51861069, type: Tas"},{"event":"cmd_output","timestamp":1607098283,"output":"ks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.Initia"},{"event":"cmd_output","timestamp":1607098283,"output":"lizingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:11:23.240 [info] block_id: 18723312-343f-424d-923f-761"},{"event":"cmd_output","timestamp":1607098283,"output":"a51861069, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098283,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:23.245 [info] ppl_id: 72e3db4e-ed5c-4ab6"},{"event":"cmd_output","timestamp":1607098283,"output":"-bc61-ad875ad53ccf, type: PplRequests, event: persisted definition for request with request_token: b"},{"event":"cmd_output","timestamp":1607098283,"output":"b5abbfb-b8fd-40f2-b856-a33583d3b201, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_"},{"event":"cmd_output","timestamp":1607098283,"output":"definition/3(L76), \n\u001b[0m\u001b[22m\n16:11:23.254 [info] ppl_id: 5cc736ff-8e4a-4347-a9dd-8754ca2e003c, t"},{"event":"cmd_output","timestamp":1607098283,"output":"ype: PplRequests, event: persisted source_args for pipeline: 5cc736ff-8e4a-4347-a9dd-8754ca2e003c, o"},{"event":"cmd_output","timestamp":1607098283,"output":"rigin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:11:23.2"},{"event":"cmd_output","timestamp":1607098283,"output":"57 [info] ppl_id: 5cc736ff-8e4a-4347-a9dd-8754ca2e003c, type: PplSubInits, state: fetching, event: "},{"event":"cmd_output","timestamp":1607098283,"output":"exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098283,"output":"22m\n16:11:23.267 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState"},{"event":"cmd_output","timestamp":1607098283,"output":".all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:11:23.267 [info] ppl_id: 72e3db4e-ed5c-4ab6-bc61-ad875ad53ccf, ty"},{"event":"cmd_output","timestamp":1607098283,"output":"pe: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098283,"output":"r.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:11:23.274 [info] ppl"},{"event":"cmd_output","timestamp":1607098283,"output":"_id: 72e3db4e-ed5c-4ab6-bc61-ad875ad53ccf, type: PplSubInits, state: done, result: passed, event: ex"},{"event":"cmd_output","timestamp":1607098283,"output":"it_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098283,"output":"m\n16:11:23.276 [info] block_id: 18723312-343f-424d-923f-761a51861069, type: Tasks, state: running,"},{"event":"cmd_output","timestamp":1607098283,"output":" event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), "},{"event":"cmd_output","timestamp":1607098283,"output":"\n\u001b[0m\u001b[22m\n16:11:23.293 [info] ppl_id: 72e3db4e-ed5c-4ab6-bc61-ad875ad53ccf, type: PplBlocks, blo"},{"event":"cmd_output","timestamp":1607098283,"output":"ck_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Im"},{"event":"cmd_output","timestamp":1607098283,"output":"pl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:23.299 [info] ppl_id: 72e3db4e-ed5c-4ab6-bc61-ad875a"},{"event":"cmd_output","timestamp":1607098283,"output":"d53ccf, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper"},{"event":"cmd_output","timestamp":1607098283,"output":".STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:23.304 [info] ppl_id: 5cc736ff-8e4a-4347-a9dd"},{"event":"cmd_output","timestamp":1607098283,"output":"-8754ca2e003c, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098283,"output":"igin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:23.316 [info] ppl_id: 72e3"},{"event":"cmd_output","timestamp":1607098283,"output":"db4e-ed5c-4ab6-bc61-ad875ad53ccf, type: Ppls, state: queuing, event: exit_scheduling, recovery_count"},{"event":"cmd_output","timestamp":1607098283,"output":": 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:23.344 [info] ppl_i"},{"event":"cmd_output","timestamp":1607098283,"output":"d: 5cc736ff-8e4a-4347-a9dd-8754ca2e003c, type: PplRequests, event: persisted definition for request "},{"event":"cmd_output","timestamp":1607098283,"output":"with request_token: 99bc43bd-34cc-4eb8-afd7-68215604c5d8, origin: Elixir.Ppl.PplRequests.Model.PplRe"},{"event":"cmd_output","timestamp":1607098283,"output":"questsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:11:23.351 [info] event: created, origin: El"},{"event":"cmd_output","timestamp":1607098283,"output":"ixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:11:23.351 [info] "},{"event":"cmd_output","timestamp":1607098283,"output":"ppl_id: 5cc736ff-8e4a-4347-a9dd-8754ca2e003c, type: PplBlocks, block_index: 0, state: initializing, "},{"event":"cmd_output","timestamp":1607098283,"output":"event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok"},{"event":"cmd_output","timestamp":1607098283,"output":"?/1(L105), \n\u001b[0m\u001b[22m\n16:11:23.354 [info] ppl_id: 5cc736ff-8e4a-4347-a9dd-8754ca2e003c, type: Ppl"},{"event":"cmd_output","timestamp":1607098283,"output":"SubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loo"},{"event":"cmd_output","timestamp":1607098283,"output":"per.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:23.363 [info] ppl_id: 5cc736ff-8e4a-4347-a"},{"event":"cmd_output","timestamp":1607098283,"output":"9dd-8754ca2e003c, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_"},{"event":"cmd_output","timestamp":1607098283,"output":"count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:23.366 [info] "},{"event":"cmd_output","timestamp":1607098283,"output":"ppl_id: 5cc736ff-8e4a-4347-a9dd-8754ca2e003c, type: Ppls, state: pending, event: exit_scheduling, re"},{"event":"cmd_output","timestamp":1607098283,"output":"covery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:23.379 ["},{"event":"cmd_output","timestamp":1607098283,"output":"info] ppl_id: 5cc736ff-8e4a-4347-a9dd-8754ca2e003c, type: Ppls, state: queuing, event: exit_schedul"},{"event":"cmd_output","timestamp":1607098283,"output":"ing, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:2"},{"event":"cmd_output","timestamp":1607098283,"output":"3.382 [info] block_id: 18723312-343f-424d-923f-761a51861069, type: Tasks, state: done, event: exit_"},{"event":"cmd_output","timestamp":1607098283,"output":"scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098283,"output":"16:11:23.390 [info] block_id: 18723312-343f-424d-923f-761a51861069, type: Blocks, state: done, even"},{"event":"cmd_output","timestamp":1607098283,"output":"t: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098283,"output":"m\u001b[22m\n16:11:23.398 [info] ppl_id: 22937567-604d-4e40-8762-51cad8d0b13a, block_id: 18723312-343f-4"},{"event":"cmd_output","timestamp":1607098283,"output":"24d-923f-761a51861069, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_sch"},{"event":"cmd_output","timestamp":1607098283,"output":"eduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098283,"output":"11:23.414 [info] ppl_id: 22937567-604d-4e40-8762-51cad8d0b13a, type: Ppls, state: done, result: pas"},{"event":"cmd_output","timestamp":1607098283,"output":"sed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L9"},{"event":"cmd_output","timestamp":1607098283,"output":"0), \n\u001b[0m\u001b[22m\n16:11:23.500 [info] ppl_id: 30a17cb3-1a58-414a-982c-7dbbe9af3887, type: Ppls, stat"},{"event":"cmd_output","timestamp":1607098283,"output":"e: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chan"},{"event":"cmd_output","timestamp":1607098283,"output":"ge/1(L90), \n\u001b[0m\u001b[22m\n16:11:23.508 [info] PplBlocks WaitingState STM is scheduling block 0 from p"},{"event":"cmd_output","timestamp":1607098283,"output":"ipeline: \"30a17cb3-1a58-414a-982c-7dbbe9af3887\"\n\u001b[0m\u001b[22m\n16:11:23.513 [info] block_id: 4d22a563-"},{"event":"cmd_output","timestamp":1607098283,"output":"959f-4974-9589-38f509a0ed4e, type: BlockRequests, event: persisted block run request from ppl 30a17c"},{"event":"cmd_output","timestamp":1607098283,"output":"b3-1a58-414a-982c-7dbbe9af3887 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQu"},{"event":"cmd_output","timestamp":1607098283,"output":"eries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:11:23.515 [info] block_id: 4d22a563-959f-4974-9589-3"},{"event":"cmd_output","timestamp":1607098283,"output":"8f509a0ed4e, type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098283,"output":"ir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:11:23.517 [info] Block 0 of pipe"},{"event":"cmd_output","timestamp":1607098283,"output":"line with id: 30a17cb3-1a58-414a-982c-7dbbe9af3887 scheduled in block service with id: : \"4d22a563-9"},{"event":"cmd_output","timestamp":1607098283,"output":"59f-4974-9589-38f509a0ed4e\"\n\u001b[0m\u001b[22m\n16:11:23.520 [info] ppl_id: 30a17cb3-1a58-414a-982c-7dbbe9a"},{"event":"cmd_output","timestamp":1607098283,"output":"f3887, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098283,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:23.524 [info] block_id: 4"},{"event":"cmd_output","timestamp":1607098283,"output":"d22a563-959f-4974-9589-38f509a0ed4e, type: BlockRequests, event: persisted build and sub_ppl details"},{"event":"cmd_output","timestamp":1607098283,"output":" for block_request: 4d22a563-959f-4974-9589-38f509a0ed4e, origin: Elixir.Block.BlockRequests.Model.B"},{"event":"cmd_output","timestamp":1607098283,"output":"lockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:11:23.533 [info] block_id: 4d22a563-959f-4"},{"event":"cmd_output","timestamp":1607098283,"output":"974-9589-38f509a0ed4e, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098283,"output":"r.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:11:23.535 [info] block"},{"event":"cmd_output","timestamp":1607098283,"output":"_id: 4d22a563-959f-4974-9589-38f509a0ed4e, type: Blocks, state: running, event: exit_scheduling, rec"},{"event":"cmd_output","timestamp":1607098283,"output":"overy_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:23.550 [i"},{"event":"cmd_output","timestamp":1607098283,"output":"nfo] block_id: 4d22a563-959f-4974-9589-38f509a0ed4e, type: Tasks, state: running, event: exit_sched"},{"event":"cmd_output","timestamp":1607098283,"output":"uling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11"},{"event":"cmd_output","timestamp":1607098283,"output":":23.597 [info] block_id: 4d22a563-959f-4974-9589-38f509a0ed4e, type: Tasks, state: done, event: exi"},{"event":"cmd_output","timestamp":1607098283,"output":"t_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098283,"output":"\n16:11:23.605 [info] block_id: 4d22a563-959f-4974-9589-38f509a0ed4e, type: Blocks, state: done, ev"},{"event":"cmd_output","timestamp":1607098283,"output":"ent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b"},{"event":"cmd_output","timestamp":1607098283,"output":"[0m\u001b[22m\n16:11:23.615 [info] ppl_id: 30a17cb3-1a58-414a-982c-7dbbe9af3887, block_id: 4d22a563-959f"},{"event":"cmd_output","timestamp":1607098283,"output":"-4974-9589-38f509a0ed4e, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_s"},{"event":"cmd_output","timestamp":1607098283,"output":"cheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098283,"output":"6:11:23.639 [info] ppl_id: 30a17cb3-1a58-414a-982c-7dbbe9af3887, type: Ppls, state: done, result: p"},{"event":"cmd_output","timestamp":1607098283,"output":"assed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1("},{"event":"cmd_output","timestamp":1607098283,"output":"L90), \n\u001b[0m\u001b[22m\n16:11:23.722 [info] ppl_id: 72e3db4e-ed5c-4ab6-bc61-ad875ad53ccf, type: Ppls, st"},{"event":"cmd_output","timestamp":1607098283,"output":"ate: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_ch"},{"event":"cmd_output","timestamp":1607098283,"output":"ange/1(L90), \n\u001b[0m\u001b[22m\n16:11:23.730 [info] PplBlocks WaitingState STM is scheduling block 0 from"},{"event":"cmd_output","timestamp":1607098283,"output":" pipeline: \"72e3db4e-ed5c-4ab6-bc61-ad875ad53ccf\"\n\u001b[0m\u001b[22m\n16:11:23.736 [info] block_id: d4a51b8"},{"event":"cmd_output","timestamp":1607098283,"output":"d-05ee-46ae-a9e9-ed8d6411860f, type: BlockRequests, event: persisted block run request from ppl 72e3"},{"event":"cmd_output","timestamp":1607098283,"output":"db4e-ed5c-4ab6-bc61-ad875ad53ccf for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequests"},{"event":"cmd_output","timestamp":1607098283,"output":"Queries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:11:23.738 [info] block_id: d4a51b8d-05ee-46ae-a9e9"},{"event":"cmd_output","timestamp":1607098283,"output":"-ed8d6411860f, type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098283,"output":"ixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:11:23.741 [info] Block 0 of pi"},{"event":"cmd_output","timestamp":1607098283,"output":"peline with id: 72e3db4e-ed5c-4ab6-bc61-ad875ad53ccf scheduled in block service with id: : \"d4a51b8d"},{"event":"cmd_output","timestamp":1607098283,"output":"-05ee-46ae-a9e9-ed8d6411860f\"\n\u001b[0m\u001b[22m\n16:11:23.746 [info] ppl_id: 72e3db4e-ed5c-4ab6-bc61-ad875"},{"event":"cmd_output","timestamp":1607098283,"output":"ad53ccf, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098283,"output":" origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:23.748 [info] block_id:"},{"event":"cmd_output","timestamp":1607098283,"output":" d4a51b8d-05ee-46ae-a9e9-ed8d6411860f, type: BlockRequests, event: persisted build and sub_ppl detai"},{"event":"cmd_output","timestamp":1607098283,"output":"ls for block_request: d4a51b8d-05ee-46ae-a9e9-ed8d6411860f, origin: Elixir.Block.BlockRequests.Model"},{"event":"cmd_output","timestamp":1607098283,"output":".BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:11:23.752 [info] block_id: d4a51b8d-05ee"},{"event":"cmd_output","timestamp":1607098283,"output":"-46ae-a9e9-ed8d6411860f, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098283,"output":"xir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:11:23.755 [info] blo"},{"event":"cmd_output","timestamp":1607098283,"output":"ck_id: d4a51b8d-05ee-46ae-a9e9-ed8d6411860f, type: Blocks, state: running, event: exit_scheduling, r"},{"event":"cmd_output","timestamp":1607098283,"output":"ecovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:23.776 "},{"event":"cmd_output","timestamp":1607098283,"output":"[info] block_id: d4a51b8d-05ee-46ae-a9e9-ed8d6411860f, type: Tasks, state: running, event: exit_sch"},{"event":"cmd_output","timestamp":1607098283,"output":"eduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098283,"output":"11:23.810 [info] block_id: d4a51b8d-05ee-46ae-a9e9-ed8d6411860f, type: Tasks, state: done, event: e"},{"event":"cmd_output","timestamp":1607098283,"output":"xit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098283,"output":"2m\n16:11:23.820 [info] block_id: d4a51b8d-05ee-46ae-a9e9-ed8d6411860f, type: Blocks, state: done, "},{"event":"cmd_output","timestamp":1607098283,"output":"event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \r"},{"event":"cmd_output","timestamp":1607098283,"output":"\n\u001b[0m\u001b[22m\n16:11:23.835 [info] ppl_id: 72e3db4e-ed5c-4ab6-bc61-ad875ad53ccf, block_id: d4a51b8d-05"},{"event":"cmd_output","timestamp":1607098283,"output":"ee-46ae-a9e9-ed8d6411860f, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit"},{"event":"cmd_output","timestamp":1607098283,"output":"_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098283,"output":"\n16:11:23.849 [info] ppl_id: 72e3db4e-ed5c-4ab6-bc61-ad875ad53ccf, type: Ppls, state: done, result:"},{"event":"cmd_output","timestamp":1607098283,"output":" passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/"},{"event":"cmd_output","timestamp":1607098283,"output":"1(L90), \n\u001b[0m\u001b[22m\n16:11:23.940 [info] ppl_id: 5cc736ff-8e4a-4347-a9dd-8754ca2e003c, type: Ppls, "},{"event":"cmd_output","timestamp":1607098283,"output":"state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_"},{"event":"cmd_output","timestamp":1607098283,"output":"change/1(L90), \n\u001b[0m\u001b[22m\n16:11:23.944 [info] PplBlocks WaitingState STM is scheduling block 0 fr"},{"event":"cmd_output","timestamp":1607098283,"output":"om pipeline: \"5cc736ff-8e4a-4347-a9dd-8754ca2e003c\"\n\u001b[0m\u001b[22m\n16:11:23.954 [info] block_id: 47872"},{"event":"cmd_output","timestamp":1607098283,"output":"4c2-b506-474a-9e5c-6a7ee2230eae, type: BlockRequests, event: persisted block run request from ppl 5c"},{"event":"cmd_output","timestamp":1607098283,"output":"c736ff-8e4a-4347-a9dd-8754ca2e003c for block 0, origin: Elixir.Block.BlockRequests.Model.BlockReques"},{"event":"cmd_output","timestamp":1607098283,"output":"tsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:11:23.955 [info] block_id: 478724c2-b506-474a-9e"},{"event":"cmd_output","timestamp":1607098283,"output":"5c-6a7ee2230eae, type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098283,"output":"Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:11:23.957 [info] Block 0 of "},{"event":"cmd_output","timestamp":1607098283,"output":"pipeline with id: 5cc736ff-8e4a-4347-a9dd-8754ca2e003c scheduled in block service with id: : \"478724"},{"event":"cmd_output","timestamp":1607098283,"output":"c2-b506-474a-9e5c-6a7ee2230eae\"\n\u001b[0m\u001b[22m\n16:11:23.959 [info] ppl_id: 5cc736ff-8e4a-4347-a9dd-875"},{"event":"cmd_output","timestamp":1607098283,"output":"4ca2e003c, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: "},{"event":"cmd_output","timestamp":1607098283,"output":"0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:23.960 [info] block_i"},{"event":"cmd_output","timestamp":1607098283,"output":"d: 478724c2-b506-474a-9e5c-6a7ee2230eae, type: BlockRequests, event: persisted build and sub_ppl det"},{"event":"cmd_output","timestamp":1607098283,"output":"ails for block_request: 478724c2-b506-474a-9e5c-6a7ee2230eae, origin: Elixir.Block.BlockRequests.Mod"},{"event":"cmd_output","timestamp":1607098283,"output":"el.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:11:23.961 [info] block_id: 478724c2-b5"},{"event":"cmd_output","timestamp":1607098283,"output":"06-474a-9e5c-6a7ee2230eae, type: Tasks, state: pending, event: created, recovery_count: 0, origin: E"},{"event":"cmd_output","timestamp":1607098283,"output":"lixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:11:23.962 [info] b"},{"event":"cmd_output","timestamp":1607098283,"output":"lock_id: 478724c2-b506-474a-9e5c-6a7ee2230eae, type: Blocks, state: running, event: exit_scheduling,"},{"event":"cmd_output","timestamp":1607098283,"output":" recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:23.97"},{"event":"cmd_output","timestamp":1607098283,"output":"5 [info] block_id: 478724c2-b506-474a-9e5c-6a7ee2230eae, type: Tasks, state: running, event: exit_s"},{"event":"cmd_output","timestamp":1607098284,"output":"cheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098284,"output":"6:11:24.020 [info] block_id: 478724c2-b506-474a-9e5c-6a7ee2230eae, type: Tasks, state: done, event:"},{"event":"cmd_output","timestamp":1607098284,"output":" exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098284,"output":"[22m\n16:11:24.025 [info] block_id: 478724c2-b506-474a-9e5c-6a7ee2230eae, type: Blocks, state: done"},{"event":"cmd_output","timestamp":1607098284,"output":", event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90),"},{"event":"cmd_output","timestamp":1607098284,"output":" \n\u001b[0m\u001b[22m\n16:11:24.032 [info] ppl_id: 5cc736ff-8e4a-4347-a9dd-8754ca2e003c, block_id: 478724c2-"},{"event":"cmd_output","timestamp":1607098284,"output":"b506-474a-9e5c-6a7ee2230eae, type: PplBlocks, block_index: 0, state: done, result: passed, event: ex"},{"event":"cmd_output","timestamp":1607098284,"output":"it_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098284,"output":"m\n16:11:24.042 [info] ppl_id: 5cc736ff-8e4a-4347-a9dd-8754ca2e003c, type: Ppls, state: done, resul"},{"event":"cmd_output","timestamp":1607098284,"output":"t: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chang"},{"event":"cmd_output","timestamp":1607098284,"output":"e/1(L90), \n\u001b[0m\u001b[32m\r * test list pipelines by git_ref_types and label (3055.1ms)\u001b[0m\n * test ge"},{"event":"cmd_output","timestamp":1607098284,"output":"t pipeline in running and move it to scheduling\r * test get pipeline in running and move it to sche"},{"event":"cmd_output","timestamp":1607098284,"output":"duling (skipped)\n * test ppls_from_same_queue_in_states() only looks for ppls from same queue\u001b[22m"},{"event":"cmd_output","timestamp":1607098284,"output":"\n16:11:24.179 [info] ppl_id: 5803187f-92ac-44b6-8591-9e6ac89e057f, type: PplRequests, event: persi"},{"event":"cmd_output","timestamp":1607098284,"output":"sted schedule request with request_token: 5afad50c-364b-11eb-a67b-5254005464e2, origin: Elixir.Ppl.P"},{"event":"cmd_output","timestamp":1607098284,"output":"plRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:11:24.183 [info] ppl_i"},{"event":"cmd_output","timestamp":1607098284,"output":"d: 5803187f-92ac-44b6-8591-9e6ac89e057f, type: PplRequests, event: persisted definition for request "},{"event":"cmd_output","timestamp":1607098284,"output":"with request_token: 5afad50c-364b-11eb-a67b-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRe"},{"event":"cmd_output","timestamp":1607098284,"output":"questsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:11:24.186 [info] ppl_id: e16844f9-f5bd-425b"},{"event":"cmd_output","timestamp":1607098284,"output":"-b368-ddb00b6f88f2, type: PplRequests, event: persisted schedule request with request_token: b430d73"},{"event":"cmd_output","timestamp":1607098284,"output":"5-ee54-4f98-963a-89e51bbff91c, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_respo"},{"event":"cmd_output","timestamp":1607098284,"output":"nse/2(L55), \n\u001b[0m\u001b[22m\n16:11:24.189 [info] ppl_id: e16844f9-f5bd-425b-b368-ddb00b6f88f2, type: Pp"},{"event":"cmd_output","timestamp":1607098284,"output":"lRequests, event: persisted definition for request with request_token: b430d735-ee54-4f98-963a-89e51"},{"event":"cmd_output","timestamp":1607098284,"output":"bbff91c, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098284,"output":"2m\n16:11:24.189 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingState with name"},{"event":"cmd_output","timestamp":1607098284,"output":" Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up"},{"event":"cmd_output","timestamp":1607098284,"output":"\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"p"},{"event":"cmd_output","timestamp":1607098284,"output":"ending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"initiali"},{"event":"cmd_output","timestamp":1607098284,"output":"zing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, repo:"},{"event":"cmd_output","timestamp":1607098284,"output":" Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :"},{"event":"cmd_output","timestamp":1607098284,"output":"ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:24.190 [info] Perio"},{"event":"cmd_output","timestamp":1607098284,"output":"dic from module Elixir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler.Pending"},{"event":"cmd_output","timestamp":1607098284,"output":"State :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}"},{"event":"cmd_output","timestamp":1607098284,"output":", recurring args: %{allowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_sec: 0, "},{"event":"cmd_output","timestamp":1607098284,"output":"initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publisher_cb: #Function<0.8493005/1 i"},{"event":"cmd_output","timestamp":1607098284,"output":"n Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request,"},{"event":"cmd_output","timestamp":1607098284,"output":" :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervis"},{"event":"cmd_output","timestamp":1607098284,"output":"or: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:11:24.190 [info] Periodic from module Elixir.Ppl.Ppls.STMHan"},{"event":"cmd_output","timestamp":1607098284,"output":"dler.QueuingState with name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, metric_name: "},{"event":"cmd_output","timestamp":1607098284,"output":"{\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{allowed_states: [\""},{"event":"cmd_output","timestamp":1607098284,"output":"queuing\", \"running\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_sta"},{"event":"cmd_output","timestamp":1607098284,"output":"te: \"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.args/0>, re"},{"event":"cmd_output","timestamp":1607098284,"output":"po: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count"},{"event":"cmd_output","timestamp":1607098284,"output":", :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:24.191 [info] Pe"},{"event":"cmd_output","timestamp":1607098284,"output":"riodic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.S"},{"event":"cmd_output","timestamp":1607098284,"output":"TMHandler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-ST"},{"event":"cmd_output","timestamp":1607098284,"output":"MHandler-CreatedState\"]}, recurring args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: "},{"event":"cmd_output","timestamp":1607098284,"output":"0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip,"},{"event":"cmd_output","timestamp":1607098284,"output":" repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_co"},{"event":"cmd_output","timestamp":1607098284,"output":"unt, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:"},{"event":"cmd_output","timestamp":1607098284,"output":"24.192 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir"},{"event":"cmd_output","timestamp":1607098284,"output":".Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", ["},{"event":"cmd_output","timestamp":1607098284,"output":"\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"co"},{"event":"cmd_output","timestamp":1607098284,"output":"mpilation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observe"},{"event":"cmd_output","timestamp":1607098284,"output":"d_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :"},{"event":"cmd_output","timestamp":1607098284,"output":"updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, t"},{"event":"cmd_output","timestamp":1607098284,"output":"ask_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:24.193 [info] Periodic from module Elixir.Ppl.PplSubInits."},{"event":"cmd_output","timestamp":1607098284,"output":"STMHandler.CompilationState with name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: "},{"event":"cmd_output","timestamp":1607098284,"output":"100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recu"},{"event":"cmd_output","timestamp":1607098284,"output":"rring args: %{allowed_states: [\"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec:"},{"event":"cmd_output","timestamp":1607098284,"output":" -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"compilation\", publisher_cb: "},{"event":"cmd_output","timestamp":1607098284,"output":":skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recov"},{"event":"cmd_output","timestamp":1607098284,"output":"ery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098284,"output":"16:11:24.194 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with na"},{"event":"cmd_output","timestamp":1607098284,"output":"me Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder"},{"event":"cmd_output","timestamp":1607098284,"output":"-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurring args: %{allowed_states: [\"don"},{"event":"cmd_output","timestamp":1607098284,"output":"e\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular"},{"event":"cmd_output","timestamp":1607098284,"output":"_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :"},{"event":"cmd_output","timestamp":1607098284,"output":"state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_superviso"},{"event":"cmd_output","timestamp":1607098284,"output":"r: :skip}\n\u001b[0m\u001b[22m\n16:11:24.198 [info] Request: 'run: %{\"branch_id\" => \"63782614-5bfd-4362-92bf-"},{"event":"cmd_output","timestamp":1607098284,"output":"972eb059b18d\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"semaphore.ym"},{"event":"cmd_output","timestamp":1607098284,"output":"l\", \"hook_id\" => \"5afd995e-364b-11eb-ba8d-5254005464e2\", \"label\" => \"master\", \"organization_id\" => \""},{"event":"cmd_output","timestamp":1607098284,"output":"b5eb5268-256b-4df0-842e-4f53af07fd81\", \"owner\" => \"rt\", \"project_id\" => \"123\", \"repo_name\" => \"2_bas"},{"event":"cmd_output","timestamp":1607098284,"output":"ic\", \"request_token\" => \"5afd912a-364b-11eb-a828-5254005464e2\", \"requester_id\" => \"13d84db0-30d5-4ca"},{"event":"cmd_output","timestamp":1607098284,"output":"c-84bc-e86aa8b9a8b2\", \"service\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secr"},{"event":"cmd_output","timestamp":1607098284,"output":"et\"], \"wf_id\" => \"7c9264b5-28a6-4b1d-8711-75f6a72d4796\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098284,"output":"16:11:24.201 [info] ppl_id: 52ffd7c0-7f3c-4630-931c-d6d6b216a075, type: PplRequests, event: persist"},{"event":"cmd_output","timestamp":1607098284,"output":"ed schedule request with request_token: 5afd912a-364b-11eb-a828-5254005464e2, origin: Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098284,"output":"Requests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:11:24.205 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098284,"output":" 52ffd7c0-7f3c-4630-931c-d6d6b216a075, type: Ppls, state: initializing, event: initializing, recover"},{"event":"cmd_output","timestamp":1607098284,"output":"y_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:11:2"},{"event":"cmd_output","timestamp":1607098284,"output":"4.212 [info] Project 123 and branch masterlatest_wf details updated: \"wf_id: 7c9264b5-28a6-4b1d-871"},{"event":"cmd_output","timestamp":1607098284,"output":"1-75f6a72d4796, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:11:24.214 [info] Persisted ppl_sub_init for pipeline w"},{"event":"cmd_output","timestamp":1607098284,"output":"ith ppl_id: 52ffd7c0-7f3c-4630-931c-d6d6b216a075: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto"},{"event":"cmd_output","timestamp":1607098284,"output":".Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 1"},{"event":"cmd_output","timestamp":1607098284,"output":"37, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:11:24.212119], pipelin"},{"event":"cmd_output","timestamp":1607098284,"output":"e_requests: #Ecto.Association.NotLoaded, ppl_id: \"52ff"},{"event":"cmd_output","timestamp":1607098284,"output":"d7c0-7f3c-4630-931c-d6d6b216a075\", recovery_count: 0, result: nil, result_reason: nil, state: \"creat"},{"event":"cmd_output","timestamp":1607098284,"output":"ed\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:11:24.212127]"},{"event":"cmd_output","timestamp":1607098284,"output":"}\n\u001b[0m\u001b[22m\n16:11:24.227 [info] ppl_id: 52ffd7c0-7f3c-4630-931c-d6d6b216a075, type: PplRequests, "},{"event":"cmd_output","timestamp":1607098284,"output":"event: persisted source_args for pipeline: 52ffd7c0-7f3c-4630-931c-d6d6b216a075, origin: Elixir.Ppl."},{"event":"cmd_output","timestamp":1607098284,"output":"PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:11:24.230 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098284,"output":" 52ffd7c0-7f3c-4630-931c-d6d6b216a075, type: PplSubInits, state: fetching, event: exit_scheduling, r"},{"event":"cmd_output","timestamp":1607098284,"output":"ecovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:24.252 "},{"event":"cmd_output","timestamp":1607098284,"output":"[info] ppl_id: 52ffd7c0-7f3c-4630-931c-d6d6b216a075, type: PplSubInits, state: regular_init, event:"},{"event":"cmd_output","timestamp":1607098284,"output":" exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098284,"output":"[22m\n16:11:24.276 [info] ppl_id: 52ffd7c0-7f3c-4630-931c-d6d6b216a075, type: PplRequests, event: p"},{"event":"cmd_output","timestamp":1607098284,"output":"ersisted definition for request with request_token: 5afd912a-364b-11eb-a828-5254005464e2, origin: El"},{"event":"cmd_output","timestamp":1607098284,"output":"ixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:11:24.282 [i"},{"event":"cmd_output","timestamp":1607098284,"output":"nfo] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queu"},{"event":"cmd_output","timestamp":1607098284,"output":"es\">, inserted_at: ~N[2020-12-04 16:11:24.280149], name: \"master-.semaphore/semaphore.yml\", organiza"},{"event":"cmd_output","timestamp":1607098284,"output":"tion_id: \"b5eb5268-256b-4df0-842e-4f53af07fd81\", project_id: \"123\", queue_id: \"a9ce4ff1-36e6-43b8-85"},{"event":"cmd_output","timestamp":1607098284,"output":"2c-9306e16d22c0\", scope: \"project\", updated_at: ~N[2020-12-04 16:11:24.280161], user_generated: fals"},{"event":"cmd_output","timestamp":1607098284,"output":"e}}\n\u001b[0m\u001b[22m\n16:11:24.287 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.Regul"},{"event":"cmd_output","timestamp":1607098284,"output":"arInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:11:24.287 [info] ppl_id: 52ffd7c0-7f3c-4630-931c-d6d6b"},{"event":"cmd_output","timestamp":1607098284,"output":"216a075, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098284,"output":"igin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:11:24.289 "},{"event":"cmd_output","timestamp":1607098284,"output":"[info] ppl_id: 52ffd7c0-7f3c-4630-931c-d6d6b216a075, type: PplSubInits, state: done, result: passed"},{"event":"cmd_output","timestamp":1607098284,"output":", event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90),"},{"event":"cmd_output","timestamp":1607098284,"output":" \n\u001b[0m\u001b[22m\n16:11:24.304 [info] ppl_id: 52ffd7c0-7f3c-4630-931c-d6d6b216a075, type: Ppls, state: "},{"event":"cmd_output","timestamp":1607098284,"output":"pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/"},{"event":"cmd_output","timestamp":1607098284,"output":"1(L90), \n\u001b[0m\u001b[22m\n16:11:24.325 [info] ppl_id: 52ffd7c0-7f3c-4630-931c-d6d6b216a075, type: Ppls, "},{"event":"cmd_output","timestamp":1607098284,"output":"state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_"},{"event":"cmd_output","timestamp":1607098284,"output":"change/1(L90), \n\u001b[0m\u001b[22m\n16:11:24.340 [info] ppl_id: 52ffd7c0-7f3c-4630-931c-d6d6b216a075, type:"},{"event":"cmd_output","timestamp":1607098284,"output":" Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098284,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:24.430 [info] Request: 'run: %{\"branch_id\" => \"7e1a379c-3f"},{"event":"cmd_output","timestamp":1607098284,"output":"a5-4ee3-a938-7655f385cd92\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469\", \"file_name\" => "},{"event":"cmd_output","timestamp":1607098284,"output":"\"semaphore.yml\", \"hook_id\" => \"5b215272-364b-11eb-b58c-5254005464e2\", \"label\" => \"dev\", \"organizatio"},{"event":"cmd_output","timestamp":1607098284,"output":"n_id\" => \"895c1e9f-a982-484e-934c-74c10e7ebc64\", \"owner\" => \"rt\", \"project_id\" => \"123\", \"repo_name\""},{"event":"cmd_output","timestamp":1607098284,"output":" => \"2_basic\", \"request_token\" => \"5b214584-364b-11eb-8f39-5254005464e2\", \"requester_id\" => \"fd54747"},{"event":"cmd_output","timestamp":1607098284,"output":"0-4a30-4422-90d6-37079357b27e\", \"service\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"c"},{"event":"cmd_output","timestamp":1607098284,"output":"lient_secret\"], \"wf_id\" => \"792ecbf9-e959-47d4-a56b-20b5405bd757\", \"working_dir\" => \".semaphore\"}\n\u001b"},{"event":"cmd_output","timestamp":1607098284,"output":"[0m\u001b[22m\n16:11:24.433 [info] ppl_id: 032500cd-9849-4398-a777-bdfe804af94e, type: PplRequests, even"},{"event":"cmd_output","timestamp":1607098284,"output":"t: persisted schedule request with request_token: 5b214584-364b-11eb-8f39-5254005464e2, origin: Elix"},{"event":"cmd_output","timestamp":1607098284,"output":"ir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:11:24.436 [info"},{"event":"cmd_output","timestamp":1607098284,"output":"] ppl_id: 032500cd-9849-4398-a777-bdfe804af94e, type: Ppls, state: initializing, event: initializin"},{"event":"cmd_output","timestamp":1607098284,"output":"g, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098284,"output":"m\n16:11:24.439 [info] Project 123 and branch masterlatest_wf details updated: \"wf_id: 792ecbf9-e95"},{"event":"cmd_output","timestamp":1607098284,"output":"9-47d4-a56b-20b5405bd757, wf_number: 2\"\n\u001b[0m\u001b[22m\n16:11:24.442 [info] Persisted ppl_sub_init for "},{"event":"cmd_output","timestamp":1607098284,"output":"pipeline with ppl_id: 032500cd-9849-4398-a777-bdfe804af94e: %Ppl.PplSubInits.Model.PplSubInits{__met"},{"event":"cmd_output","timestamp":1607098284,"output":"a__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: "},{"event":"cmd_output","timestamp":1607098284,"output":"nil, id: 138, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:11:24.439792"},{"event":"cmd_output","timestamp":1607098284,"output":"], pipeline_requests: #Ecto.Association.NotLoaded, ppl"},{"event":"cmd_output","timestamp":1607098284,"output":"_id: \"032500cd-9849-4398-a777-bdfe804af94e\", recovery_count: 0, result: nil, result_reason: nil, sta"},{"event":"cmd_output","timestamp":1607098284,"output":"te: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:11:"},{"event":"cmd_output","timestamp":1607098284,"output":"24.439803]}\n\u001b[0m\u001b[22m\n16:11:24.455 [info] ppl_id: 032500cd-9849-4398-a777-bdfe804af94e, type: Ppl"},{"event":"cmd_output","timestamp":1607098284,"output":"Requests, event: persisted source_args for pipeline: 032500cd-9849-4398-a777-bdfe804af94e, origin: E"},{"event":"cmd_output","timestamp":1607098284,"output":"lixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:11:24.457 [info"},{"event":"cmd_output","timestamp":1607098284,"output":"] ppl_id: 032500cd-9849-4398-a777-bdfe804af94e, type: PplSubInits, state: fetching, event: exit_sch"},{"event":"cmd_output","timestamp":1607098284,"output":"eduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098284,"output":"11:24.483 [info] ppl_id: 032500cd-9849-4398-a777-bdfe804af94e, type: PplSubInits, state: regular_in"},{"event":"cmd_output","timestamp":1607098284,"output":"it, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90"},{"event":"cmd_output","timestamp":1607098284,"output":"), \n\u001b[0m\u001b[22m\n16:11:24.506 [info] ppl_id: 032500cd-9849-4398-a777-bdfe804af94e, type: PplRequests"},{"event":"cmd_output","timestamp":1607098284,"output":", event: persisted definition for request with request_token: 5b214584-364b-11eb-8f39-5254005464e2, "},{"event":"cmd_output","timestamp":1607098284,"output":"origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:11"},{"event":"cmd_output","timestamp":1607098284,"output":":24.509 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loa"},{"event":"cmd_output","timestamp":1607098284,"output":"ded, \"queues\">, inserted_at: ~N[2020-12-04 16:11:24.508057], name: \"dev-.semaphore/semaphore.yml\", o"},{"event":"cmd_output","timestamp":1607098284,"output":"rganization_id: \"895c1e9f-a982-484e-934c-74c10e7ebc64\", project_id: \"123\", queue_id: \"0990318f-0b58-"},{"event":"cmd_output","timestamp":1607098284,"output":"4b08-b614-bd22fdba1892\", scope: \"project\", updated_at: ~N[2020-12-04 16:11:24.508070], user_generate"},{"event":"cmd_output","timestamp":1607098284,"output":"d: false}}\n\u001b[0m\u001b[22m\n16:11:24.517 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandle"},{"event":"cmd_output","timestamp":1607098284,"output":"r.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:11:24.517 [info] ppl_id: 032500cd-9849-4398-a77"},{"event":"cmd_output","timestamp":1607098284,"output":"7-bdfe804af94e, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count"},{"event":"cmd_output","timestamp":1607098284,"output":": 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:11:"},{"event":"cmd_output","timestamp":1607098284,"output":"24.519 [info] ppl_id: 032500cd-9849-4398-a777-bdfe804af94e, type: PplSubInits, state: done, result:"},{"event":"cmd_output","timestamp":1607098284,"output":" passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/"},{"event":"cmd_output","timestamp":1607098284,"output":"1(L90), \n\u001b[0m\u001b[22m\n16:11:24.539 [info] ppl_id: 032500cd-9849-4398-a777-bdfe804af94e, type: Ppls, "},{"event":"cmd_output","timestamp":1607098284,"output":"state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_"},{"event":"cmd_output","timestamp":1607098284,"output":"change/1(L90), \n\u001b[0m\u001b[22m\n16:11:24.549 [info] ppl_id: 032500cd-9849-4398-a777-bdfe804af94e, type:"},{"event":"cmd_output","timestamp":1607098284,"output":" Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098284,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:24.561 [info] ppl_id: 032500cd-9849-4398-a777-bdfe804af94e"},{"event":"cmd_output","timestamp":1607098284,"output":", type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.I"},{"event":"cmd_output","timestamp":1607098284,"output":"mpl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:24.658 [info] Request: 'run: %{\"branch_id\" => \"64da"},{"event":"cmd_output","timestamp":1607098284,"output":"dea4-ea64-4bd6-bc29-7faeaa079112\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469\", \"file_na"},{"event":"cmd_output","timestamp":1607098284,"output":"me\" => \"semaphore.yml\", \"hook_id\" => \"5b4401dc-364b-11eb-8261-5254005464e2\", \"label\" => \"dev\", \"orga"},{"event":"cmd_output","timestamp":1607098284,"output":"nization_id\" => \"157ce0df-1346-47ca-853f-e795c89314ef\", \"owner\" => \"rt\", \"project_id\" => \"123\", \"rep"},{"event":"cmd_output","timestamp":1607098284,"output":"o_name\" => \"2_basic\", \"request_token\" => \"5b43f4d0-364b-11eb-989f-5254005464e2\", \"requester_id\" => \""},{"event":"cmd_output","timestamp":1607098284,"output":"5687e77e-0267-4f6e-9e7f-9284d988243c\", \"service\" => \"local\", \"suppressed_attributes\" => [\"access_tok"},{"event":"cmd_output","timestamp":1607098284,"output":"en\", \"client_secret\"], \"wf_id\" => \"3017e44f-815b-455b-94c2-bc9046b8d371\", \"working_dir\" => \".semapho"},{"event":"cmd_output","timestamp":1607098284,"output":"re\"}\n\u001b[0m\u001b[22m\n16:11:24.660 [info] ppl_id: 1e3647ae-9f22-4b38-8ef1-ebc659820315, type: PplRequest"},{"event":"cmd_output","timestamp":1607098284,"output":"s, event: persisted schedule request with request_token: 5b43f4d0-364b-11eb-989f-5254005464e2, origi"},{"event":"cmd_output","timestamp":1607098284,"output":"n: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:11:24.66"},{"event":"cmd_output","timestamp":1607098284,"output":"3 [info] ppl_id: 1e3647ae-9f22-4b38-8ef1-ebc659820315, type: Ppls, state: initializing, event: init"},{"event":"cmd_output","timestamp":1607098284,"output":"ializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b"},{"event":"cmd_output","timestamp":1607098284,"output":"[0m\u001b[22m\n16:11:24.666 [info] Project 123 and branch masterlatest_wf details updated: \"wf_id: 3017e"},{"event":"cmd_output","timestamp":1607098284,"output":"44f-815b-455b-94c2-bc9046b8d371, wf_number: 3\"\n\u001b[0m\u001b[22m\n16:11:24.668 [info] Persisted ppl_sub_in"},{"event":"cmd_output","timestamp":1607098284,"output":"it for pipeline with ppl_id: 1e3647ae-9f22-4b38-8ef1-ebc659820315: %Ppl.PplSubInits.Model.PplSubInit"},{"event":"cmd_output","timestamp":1607098284,"output":"s{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_descri"},{"event":"cmd_output","timestamp":1607098284,"output":"ption: nil, id: 139, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:11:24"},{"event":"cmd_output","timestamp":1607098284,"output":".666567], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"1e3647ae-9f22-4b38-8ef1-ebc659820315\", recovery_count: 0, result: nil, result_reason: n"},{"event":"cmd_output","timestamp":1607098284,"output":"il, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04"},{"event":"cmd_output","timestamp":1607098284,"output":" 16:11:24.666578]}\n\u001b[0m\u001b[22m\n16:11:24.685 [info] ppl_id: 1e3647ae-9f22-4b38-8ef1-ebc659820315, ty"},{"event":"cmd_output","timestamp":1607098284,"output":"pe: PplRequests, event: persisted source_args for pipeline: 1e3647ae-9f22-4b38-8ef1-ebc659820315, or"},{"event":"cmd_output","timestamp":1607098284,"output":"igin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:11:24.68"},{"event":"cmd_output","timestamp":1607098284,"output":"8 [info] ppl_id: 1e3647ae-9f22-4b38-8ef1-ebc659820315, type: PplSubInits, state: fetching, event: e"},{"event":"cmd_output","timestamp":1607098284,"output":"xit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098284,"output":"2m\n16:11:24.713 [info] ppl_id: 1e3647ae-9f22-4b38-8ef1-ebc659820315, type: PplSubInits, state: reg"},{"event":"cmd_output","timestamp":1607098284,"output":"ular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chang"},{"event":"cmd_output","timestamp":1607098284,"output":"e/1(L90), \n\u001b[0m\u001b[22m\n16:11:24.743 [info] ppl_id: 1e3647ae-9f22-4b38-8ef1-ebc659820315, type: PplR"},{"event":"cmd_output","timestamp":1607098284,"output":"equests, event: persisted definition for request with request_token: 5b43f4d0-364b-11eb-989f-5254005"},{"event":"cmd_output","timestamp":1607098284,"output":"464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098284,"output":"\n16:11:24.748 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.al"},{"event":"cmd_output","timestamp":1607098284,"output":"l_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:11:24.748 [info] ppl_id: 1e3647ae-9f22-4b38-8ef1-ebc659820315, type:"},{"event":"cmd_output","timestamp":1607098284,"output":" PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.P"},{"event":"cmd_output","timestamp":1607098284,"output":"pl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:11:24.750 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098284,"output":": 1e3647ae-9f22-4b38-8ef1-ebc659820315, type: PplSubInits, state: done, result: passed, event: exit_"},{"event":"cmd_output","timestamp":1607098284,"output":"scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098284,"output":"16:11:24.763 [info] ppl_id: 1e3647ae-9f22-4b38-8ef1-ebc659820315, type: Ppls, state: pending, event"},{"event":"cmd_output","timestamp":1607098284,"output":": exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098284,"output":"\u001b[22m\n16:11:24.777 [info] ppl_id: 1e3647ae-9f22-4b38-8ef1-ebc659820315, type: Ppls, state: queuing"},{"event":"cmd_output","timestamp":1607098284,"output":", event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90),"},{"event":"cmd_output","timestamp":1607098284,"output":" \n\u001b[0m\u001b[32m\r * test ppls_from_same_queue_in_states() only looks for ppls from same queue (786.3ms)"},{"event":"cmd_output","timestamp":1607098284,"output":"\u001b[0m\n * test get pipeline in stopping and move it to scheduling\r * test get pipeline in stopping "},{"event":"cmd_output","timestamp":1607098284,"output":"and move it to scheduling (skipped)\n * test move pipeline from pending to queuing\r * test move pi"},{"event":"cmd_output","timestamp":1607098284,"output":"peline from pending to queuing (skipped)\n * test set termination flags for all pipelines from give"},{"event":"cmd_output","timestamp":1607098284,"output":"n organization\r * test set termination flags for all pipelines from given organization (skipped)\n "},{"event":"cmd_output","timestamp":1607098284,"output":" * test set termination flags for all pipelines from given branch of given project\r * test set term"},{"event":"cmd_output","timestamp":1607098284,"output":"ination flags for all pipelines from given branch of given project (skipped)\n * test move pipeline"},{"event":"cmd_output","timestamp":1607098284,"output":" from running to done\r * test move pipeline from running to done (skipped)\n * test move pipeline "},{"event":"cmd_output","timestamp":1607098284,"output":"from initializing-scheduling to pending\r * test move pipeline from initializing-scheduling to pendi"},{"event":"cmd_output","timestamp":1607098284,"output":"ng (skipped)\n * test get pipeline in pending and move it to scheduling\r * test get pipeline in pe"},{"event":"cmd_output","timestamp":1607098284,"output":"nding and move it to scheduling (skipped)\n * test insert new pipeline from github pipeline service"},{"event":"cmd_output","timestamp":1607098284,"output":"\r * test insert new pipeline from github pipeline service (skipped)\n * test list pipelines from g"},{"event":"cmd_output","timestamp":1607098284,"output":"iven branch on given project and receive paginated result\r * test list pipelines from given branch "},{"event":"cmd_output","timestamp":1607098284,"output":"on given project and receive paginated result (skipped)\n * test list pipelines result is paginated"},{"event":"cmd_output","timestamp":1607098284,"output":" and orderd by desc creation time\r * test list pipelines result is paginated and orderd by desc cre"},{"event":"cmd_output","timestamp":1607098284,"output":"ation time (skipped)\n * test recover pipelines stuck in scheduling\r * test recover pipelines stuc"},{"event":"cmd_output","timestamp":1607098284,"output":"k in scheduling (skipped)\n * test get pipeline in initializing and move it to scheduling\r * test "},{"event":"cmd_output","timestamp":1607098284,"output":"get pipeline in initializing and move it to scheduling (skipped)\n * test updated_at change on upda"},{"event":"cmd_output","timestamp":1607098284,"output":"te_all() call\r * test updated_at change on update_all() call (skipped)\n * test insert new pipelin"},{"event":"cmd_output","timestamp":1607098284,"output":"e for non-existent pipeline service\r * test insert new pipeline for non-existent pipeline service ("},{"event":"cmd_output","timestamp":1607098284,"output":"skipped)\n * test pipeline insert is idempotent operation in regard to ppl_id\r * test pipeline ins"},{"event":"cmd_output","timestamp":1607098284,"output":"ert is idempotent operation in regard to ppl_id (skipped)\n * test move pipeline from queuing to ru"},{"event":"cmd_output","timestamp":1607098284,"output":"nning\r * test move pipeline from queuing to running (skipped)\n * test get running pipeline from s"},{"event":"cmd_output","timestamp":1607098284,"output":"ame queue\u001b[22m\n16:11:24.973 [info] ppl_id: 038b5ca9-07d9-4413-a0e0-42bbba9c20c5, type: PplRequests"},{"event":"cmd_output","timestamp":1607098284,"output":", event: persisted schedule request with request_token: 5b73f68a-364b-11eb-b157-5254005464e2, origin"},{"event":"cmd_output","timestamp":1607098284,"output":": Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:11:24.977"},{"event":"cmd_output","timestamp":1607098284,"output":" [info] ppl_id: 038b5ca9-07d9-4413-a0e0-42bbba9c20c5, type: PplRequests, event: persisted definitio"},{"event":"cmd_output","timestamp":1607098284,"output":"n for request with request_token: 5b73f68a-364b-11eb-b157-5254005464e2, origin: Elixir.Ppl.PplReques"},{"event":"cmd_output","timestamp":1607098284,"output":"ts.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:11:24.980 [info] ppl_id: 1229"},{"event":"cmd_output","timestamp":1607098284,"output":"7834-6634-4061-ae95-ab6c12e653d8, type: PplRequests, event: persisted schedule request with request_"},{"event":"cmd_output","timestamp":1607098284,"output":"token: 15cf70e0-1832-4f62-8c37-a0da4382833c, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries"},{"event":"cmd_output","timestamp":1607098284,"output":".process_response/2(L55), \n\u001b[0m\u001b[22m\n16:11:24.982 [info] ppl_id: 12297834-6634-4061-ae95-ab6c12e6"},{"event":"cmd_output","timestamp":1607098284,"output":"53d8, type: PplRequests, event: persisted definition for request with request_token: 15cf70e0-1832-4"},{"event":"cmd_output","timestamp":1607098284,"output":"f62-8c37-a0da4382833c, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L"},{"event":"cmd_output","timestamp":1607098284,"output":"76), \n\u001b[0m\u001b[22m\n16:11:24.982 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingS"},{"event":"cmd_output","timestamp":1607098284,"output":"tate with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.be"},{"event":"cmd_output","timestamp":1607098284,"output":"holder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"ini"},{"event":"cmd_output","timestamp":1607098284,"output":"tializing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_st"},{"event":"cmd_output","timestamp":1607098284,"output":"ate: \"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState."},{"event":"cmd_output","timestamp":1607098284,"output":"args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :rec"},{"event":"cmd_output","timestamp":1607098284,"output":"overy_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:24.983"},{"event":"cmd_output","timestamp":1607098284,"output":" [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMH"},{"event":"cmd_output","timestamp":1607098284,"output":"andler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-P"},{"event":"cmd_output","timestamp":1607098284,"output":"endingState\"]}, recurring args: %{allowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], cooling"},{"event":"cmd_output","timestamp":1607098284,"output":"_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publisher_cb: #Function"},{"event":"cmd_output","timestamp":1607098284,"output":"<0.8493005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :term"},{"event":"cmd_output","timestamp":1607098284,"output":"inate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls,"},{"event":"cmd_output","timestamp":1607098284,"output":" task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:11:24.983 [info] Periodic from module Elixir.P"},{"event":"cmd_output","timestamp":1607098284,"output":"pl.Ppls.STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms,"},{"event":"cmd_output","timestamp":1607098284,"output":" metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{allo"},{"event":"cmd_output","timestamp":1607098284,"output":"wed_states: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls"},{"event":"cmd_output","timestamp":1607098284,"output":", observed_state: \"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingSta"},{"event":"cmd_output","timestamp":1607098284,"output":"te.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :"},{"event":"cmd_output","timestamp":1607098284,"output":"recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:24."},{"event":"cmd_output","timestamp":1607098284,"output":"983 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedState with name Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098284,"output":".PplSubInits.STMHandler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-"},{"event":"cmd_output","timestamp":1607098284,"output":"PplSubInits-STMHandler-CreatedState\"]}, recurring args: %{allowed_states: [\"fetching\", \"done\"], cool"},{"event":"cmd_output","timestamp":1607098284,"output":"ing_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"created\", publis"},{"event":"cmd_output","timestamp":1607098284,"output":"her_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result"},{"event":"cmd_output","timestamp":1607098284,"output":", :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0"},{"event":"cmd_output","timestamp":1607098284,"output":"m\u001b[22m\n16:11:24.983 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.FetchingState wi"},{"event":"cmd_output","timestamp":1607098284,"output":"th name Elixir.Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 ms, metric_name: {\"Ppl.behold"},{"event":"cmd_output","timestamp":1607098284,"output":"er-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %{allowed_states: [\"regu"},{"event":"cmd_output","timestamp":1607098284,"output":"lar_init\", \"compilation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSub"},{"event":"cmd_output","timestamp":1607098284,"output":"Inits, observed_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :termin"},{"event":"cmd_output","timestamp":1607098284,"output":"ate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model."},{"event":"cmd_output","timestamp":1607098284,"output":"PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:24.983 [info] Periodic from module Elixir.Pp"},{"event":"cmd_output","timestamp":1607098284,"output":"l.PplSubInits.STMHandler.CompilationState with name Elixir.Ppl.PplSubInits.STMHandler.CompilationSta"},{"event":"cmd_output","timestamp":1607098284,"output":"te :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-Compilation"},{"event":"cmd_output","timestamp":1607098284,"output":"State\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"stopping\", \"done\"], coo"},{"event":"cmd_output","timestamp":1607098284,"output":"ling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"compilation\", "},{"event":"cmd_output","timestamp":1607098284,"output":"publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :"},{"event":"cmd_output","timestamp":1607098284,"output":"result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip"},{"event":"cmd_output","timestamp":1607098284,"output":"}\n\u001b[0m\u001b[22m\n16:11:24.983 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.RegularIni"},{"event":"cmd_output","timestamp":1607098284,"output":"tState with name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period: 100 ms, metric_name: "},{"event":"cmd_output","timestamp":1607098284,"output":"{\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurring args: %{allowed"},{"event":"cmd_output","timestamp":1607098284,"output":"_states: [\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_s"},{"event":"cmd_output","timestamp":1607098284,"output":"tate: \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, "},{"event":"cmd_output","timestamp":1607098284,"output":":updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, "},{"event":"cmd_output","timestamp":1607098284,"output":"task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:24.989 [info] Request: 'run: %{\"branch_id\" => \"23310e9c-e"},{"event":"cmd_output","timestamp":1607098284,"output":"05a-4b5d-bbe6-795cd34913f4\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469\", \"file_name\" =>"},{"event":"cmd_output","timestamp":1607098284,"output":" \"semaphore.yml\", \"hook_id\" => \"5b762d38-364b-11eb-8110-5254005464e2\", \"label\" => \"master\", \"organiz"},{"event":"cmd_output","timestamp":1607098284,"output":"ation_id\" => \"de872741-2fc4-47d1-b676-28fbb7a756bc\", \"owner\" => \"rt\", \"project_id\" => \"123\", \"repo_n"},{"event":"cmd_output","timestamp":1607098284,"output":"ame\" => \"2_basic\", \"request_token\" => \"5b76228e-364b-11eb-ba14-5254005464e2\", \"requester_id\" => \"6f6"},{"event":"cmd_output","timestamp":1607098284,"output":"0e53d-fea9-43bc-930f-7ac299d0aa54\", \"service\" => \"local\", \"suppressed_attributes\" => [\"access_token\""},{"event":"cmd_output","timestamp":1607098284,"output":", \"client_secret\"], \"wf_id\" => \"e57bf6f0-74f6-4fe0-82f3-fec4613d8433\", \"working_dir\" => \".semaphore\""},{"event":"cmd_output","timestamp":1607098284,"output":"}\n\u001b[0m\u001b[22m\n16:11:24.991 [info] ppl_id: cfbcb7db-9565-49a7-8a8e-59b2594f640e, type: PplRequests, "},{"event":"cmd_output","timestamp":1607098284,"output":"event: persisted schedule request with request_token: 5b76228e-364b-11eb-ba14-5254005464e2, origin: "},{"event":"cmd_output","timestamp":1607098284,"output":"Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:11:24.995 ["},{"event":"cmd_output","timestamp":1607098284,"output":"info] ppl_id: cfbcb7db-9565-49a7-8a8e-59b2594f640e, type: Ppls, state: initializing, event: initial"},{"event":"cmd_output","timestamp":1607098284,"output":"izing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098285,"output":"\u001b[22m\n16:11:25.002 [info] Project 123 and branch masterlatest_wf details updated: \"wf_id: e57bf6f0"},{"event":"cmd_output","timestamp":1607098285,"output":"-74f6-4fe0-82f3-fec4613d8433, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:11:25.005 [info] Persisted ppl_sub_init "},{"event":"cmd_output","timestamp":1607098285,"output":"for pipeline with ppl_id: cfbcb7db-9565-49a7-8a8e-59b2594f640e: %Ppl.PplSubInits.Model.PplSubInits{_"},{"event":"cmd_output","timestamp":1607098285,"output":"_meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_descripti"},{"event":"cmd_output","timestamp":1607098285,"output":"on: nil, id: 140, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:11:25.00"},{"event":"cmd_output","timestamp":1607098285,"output":"2259], pipeline_requests: #Ecto.Association.NotLoaded,"},{"event":"cmd_output","timestamp":1607098285,"output":" ppl_id: \"cfbcb7db-9565-49a7-8a8e-59b2594f640e\", recovery_count: 0, result: nil, result_reason: nil,"},{"event":"cmd_output","timestamp":1607098285,"output":" state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16"},{"event":"cmd_output","timestamp":1607098285,"output":":11:25.002271]}\n\u001b[0m\u001b[22m\n16:11:25.025 [info] ppl_id: cfbcb7db-9565-49a7-8a8e-59b2594f640e, type:"},{"event":"cmd_output","timestamp":1607098285,"output":" PplRequests, event: persisted source_args for pipeline: cfbcb7db-9565-49a7-8a8e-59b2594f640e, origi"},{"event":"cmd_output","timestamp":1607098285,"output":"n: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:11:25.033 ["},{"event":"cmd_output","timestamp":1607098285,"output":"info] ppl_id: cfbcb7db-9565-49a7-8a8e-59b2594f640e, type: PplSubInits, state: fetching, event: exit"},{"event":"cmd_output","timestamp":1607098285,"output":"_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098285,"output":"\n16:11:25.057 [info] ppl_id: cfbcb7db-9565-49a7-8a8e-59b2594f640e, type: PplSubInits, state: regula"},{"event":"cmd_output","timestamp":1607098285,"output":"r_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1"},{"event":"cmd_output","timestamp":1607098285,"output":"(L90), \n\u001b[0m\u001b[22m\n16:11:25.094 [info] ppl_id: cfbcb7db-9565-49a7-8a8e-59b2594f640e, type: PplRequ"},{"event":"cmd_output","timestamp":1607098285,"output":"ests, event: persisted definition for request with request_token: 5b76228e-364b-11eb-ba14-5254005464"},{"event":"cmd_output","timestamp":1607098285,"output":"e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098285,"output":"6:11:25.100 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<"},{"event":"cmd_output","timestamp":1607098285,"output":":loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:11:25.098857], name: \"master-.semaphore/semaphore."},{"event":"cmd_output","timestamp":1607098285,"output":"yml\", organization_id: \"de872741-2fc4-47d1-b676-28fbb7a756bc\", project_id: \"123\", queue_id: \"8f26c3d"},{"event":"cmd_output","timestamp":1607098285,"output":"b-e339-4d80-9098-5b8f923a6cd4\", scope: \"project\", updated_at: ~N[2020-12-04 16:11:25.098869], user_g"},{"event":"cmd_output","timestamp":1607098285,"output":"enerated: false}}\n\u001b[0m\u001b[22m\n16:11:25.110 [info] event: created, origin: Elixir.Ppl.PplSubInits.ST"},{"event":"cmd_output","timestamp":1607098285,"output":"MHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:11:25.110 [info] ppl_id: cfbcb7db-9565-4"},{"event":"cmd_output","timestamp":1607098285,"output":"9a7-8a8e-59b2594f640e, type: PplBlocks, block_index: 0, state: initializing, event: created, recover"},{"event":"cmd_output","timestamp":1607098285,"output":"y_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098285,"output":"\n16:11:25.113 [info] ppl_id: cfbcb7db-9565-49a7-8a8e-59b2594f640e, type: PplSubInits, state: done, "},{"event":"cmd_output","timestamp":1607098285,"output":"result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_"},{"event":"cmd_output","timestamp":1607098285,"output":"change/1(L90), \n\u001b[0m\u001b[22m\n16:11:25.123 [info] ppl_id: cfbcb7db-9565-49a7-8a8e-59b2594f640e, type:"},{"event":"cmd_output","timestamp":1607098285,"output":" Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098285,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:25.131 [info] ppl_id: cfbcb7db-9565-49a7-8a8e-59b2594f640e"},{"event":"cmd_output","timestamp":1607098285,"output":", type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.I"},{"event":"cmd_output","timestamp":1607098285,"output":"mpl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:25.139 [info] ppl_id: cfbcb7db-9565-49a7-8a8e-59b25"},{"event":"cmd_output","timestamp":1607098285,"output":"94f640e, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loope"},{"event":"cmd_output","timestamp":1607098285,"output":"r.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:25.223 [info] Request: 'run: %{\"branch_id\" ="},{"event":"cmd_output","timestamp":1607098285,"output":"> \"2555a142-0220-4929-aea9-7e2b46d59661\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469\", \""},{"event":"cmd_output","timestamp":1607098285,"output":"file_name\" => \"semaphore.yml\", \"hook_id\" => \"5b9a1ef0-364b-11eb-82f6-5254005464e2\", \"label\" => \"mast"},{"event":"cmd_output","timestamp":1607098285,"output":"er\", \"organization_id\" => \"6b3066ea-de85-4a65-bb12-2a9b43af5551\", \"owner\" => \"rt\", \"project_id\" => \""},{"event":"cmd_output","timestamp":1607098285,"output":"123\", \"repo_name\" => \"2_basic\", \"request_token\" => \"5b9a1126-364b-11eb-92bf-5254005464e2\", \"requeste"},{"event":"cmd_output","timestamp":1607098285,"output":"r_id\" => \"692395b7-23a8-4e5b-b105-d40ac9da22ab\", \"service\" => \"local\", \"suppressed_attributes\" => [\""},{"event":"cmd_output","timestamp":1607098285,"output":"access_token\", \"client_secret\"], \"wf_id\" => \"4d9626a3-f1ef-4c65-a0cc-720c63348c54\", \"working_dir\" =>"},{"event":"cmd_output","timestamp":1607098285,"output":" \".semaphore\"}\n\u001b[0m\u001b[22m\n16:11:25.225 [info] ppl_id: 16a23700-a7ae-42b7-a0ac-f722be53ec28, type: "},{"event":"cmd_output","timestamp":1607098285,"output":"PplRequests, event: persisted schedule request with request_token: 5b9a1126-364b-11eb-92bf-525400546"},{"event":"cmd_output","timestamp":1607098285,"output":"4e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098285,"output":"6:11:25.227 [info] ppl_id: 16a23700-a7ae-42b7-a0ac-f722be53ec28, type: Ppls, state: initializing, e"},{"event":"cmd_output","timestamp":1607098285,"output":"vent: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2("},{"event":"cmd_output","timestamp":1607098285,"output":"L124), \n\u001b[0m\u001b[22m\n16:11:25.231 [info] Project 123 and branch masterlatest_wf details updated: \"wf"},{"event":"cmd_output","timestamp":1607098285,"output":"_id: 4d9626a3-f1ef-4c65-a0cc-720c63348c54, wf_number: 2\"\n\u001b[0m\u001b[22m\n16:11:25.233 [info] Persisted "},{"event":"cmd_output","timestamp":1607098285,"output":"ppl_sub_init for pipeline with ppl_id: 16a23700-a7ae-42b7-a0ac-f722be53ec28: %Ppl.PplSubInits.Model."},{"event":"cmd_output","timestamp":1607098285,"output":"PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, er"},{"event":"cmd_output","timestamp":1607098285,"output":"ror_description: nil, id: 141, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-0"},{"event":"cmd_output","timestamp":1607098285,"output":"4 16:11:25.231481], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"16a23700-a7ae-42b7-a0ac-f722be53ec28\", recovery_count: 0, result: nil, result"},{"event":"cmd_output","timestamp":1607098285,"output":"_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N["},{"event":"cmd_output","timestamp":1607098285,"output":"2020-12-04 16:11:25.231492]}\n\u001b[0m\u001b[22m\n16:11:25.257 [info] ppl_id: 16a23700-a7ae-42b7-a0ac-f722be"},{"event":"cmd_output","timestamp":1607098285,"output":"53ec28, type: PplRequests, event: persisted source_args for pipeline: 16a23700-a7ae-42b7-a0ac-f722be"},{"event":"cmd_output","timestamp":1607098285,"output":"53ec28, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098285,"output":"6:11:25.260 [info] ppl_id: 16a23700-a7ae-42b7-a0ac-f722be53ec28, type: PplSubInits, state: fetching"},{"event":"cmd_output","timestamp":1607098285,"output":", event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90),"},{"event":"cmd_output","timestamp":1607098285,"output":" \n\u001b[0m\u001b[22m\n16:11:25.282 [info] ppl_id: 16a23700-a7ae-42b7-a0ac-f722be53ec28, type: PplSubInits, "},{"event":"cmd_output","timestamp":1607098285,"output":"state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_s"},{"event":"cmd_output","timestamp":1607098285,"output":"tate_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:25.302 [info] ppl_id: 16a23700-a7ae-42b7-a0ac-f722be53ec28, "},{"event":"cmd_output","timestamp":1607098285,"output":"type: PplRequests, event: persisted definition for request with request_token: 5b9a1126-364b-11eb-92"},{"event":"cmd_output","timestamp":1607098285,"output":"bf-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \r"},{"event":"cmd_output","timestamp":1607098285,"output":"\n\u001b[0m\u001b[22m\n16:11:25.310 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularIn"},{"event":"cmd_output","timestamp":1607098285,"output":"itState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:11:25.310 [info] ppl_id: 16a23700-a7ae-42b7-a0ac-f722be53e"},{"event":"cmd_output","timestamp":1607098285,"output":"c28, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098285,"output":": Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:11:25.311 [inf"},{"event":"cmd_output","timestamp":1607098285,"output":"o] ppl_id: 16a23700-a7ae-42b7-a0ac-f722be53ec28, type: PplSubInits, state: done, result: passed, ev"},{"event":"cmd_output","timestamp":1607098285,"output":"ent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b"},{"event":"cmd_output","timestamp":1607098285,"output":"[0m\u001b[22m\n16:11:25.318 [info] ppl_id: 16a23700-a7ae-42b7-a0ac-f722be53ec28, type: Ppls, state: pend"},{"event":"cmd_output","timestamp":1607098285,"output":"ing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L9"},{"event":"cmd_output","timestamp":1607098285,"output":"0), \n\u001b[0m\u001b[22m\n16:11:25.336 [info] ppl_id: 16a23700-a7ae-42b7-a0ac-f722be53ec28, type: Ppls, stat"},{"event":"cmd_output","timestamp":1607098285,"output":"e: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chan"},{"event":"cmd_output","timestamp":1607098285,"output":"ge/1(L90), \n\u001b[0m\u001b[32m\r * test get running pipeline from same queue (459.4ms)\u001b[0m\n\nPpl.Ppls.STMHa"},{"event":"cmd_output","timestamp":1607098285,"output":"ndler.EventPublishing.Test\n * test all events are emmited for passed pipeline\u001b[22m\n16:11:25.470 ["},{"event":"cmd_output","timestamp":1607098285,"output":"info] Opening new connection {:ok, %AMQP.Connection{pid: #PID<0.20188.0>}} for id: default\n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098285,"output":"2m\n16:11:25.487 [info] Binding 'test.initializing' to 'pipeline_state_exchange' with 'initializing"},{"event":"cmd_output","timestamp":1607098285,"output":"' routing keys\n\u001b[0m\u001b[22m\n16:11:25.493 [info] Creating queue 'test.initializing'\n\u001b[0m\u001b[22m\n16:11"},{"event":"cmd_output","timestamp":1607098285,"output":":25.494 [info] Creating dead queue 'test.initializing.dead'\n\u001b[0m\u001b[22m\n16:11:25.498 [info] Creati"},{"event":"cmd_output","timestamp":1607098285,"output":"ng delay queue 'test.initializing.delay.10'\n\u001b[0m\u001b[22m\n16:11:25.502 [info] Binding 'test.initializ"},{"event":"cmd_output","timestamp":1607098285,"output":"ing' to 'test.initializing' with 'initializing' routing keys\n\u001b[0m\u001b[22m\n16:11:25.509 [info] Openin"},{"event":"cmd_output","timestamp":1607098285,"output":"g new connection {:ok, %AMQP.Connection{pid: #PID<0.20203.0>}} for id: default\n\u001b[0m\u001b[22m\n16:11:25."},{"event":"cmd_output","timestamp":1607098285,"output":"513 [info] Binding 'test.pending' to 'pipeline_state_exchange' with 'pending' routing keys\n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098285,"output":"2m\n16:11:25.515 [info] Creating queue 'test.pending'\n\u001b[0m\u001b[22m\n16:11:25.516 [info] Creating dea"},{"event":"cmd_output","timestamp":1607098285,"output":"d queue 'test.pending.dead'\n\u001b[0m\u001b[22m\n16:11:25.520 [info] Creating delay queue 'test.pending.dela"},{"event":"cmd_output","timestamp":1607098285,"output":"y.10'\n\u001b[0m\u001b[22m\n16:11:25.524 [info] Binding 'test.pending' to 'test.pending' with 'pending' routi"},{"event":"cmd_output","timestamp":1607098285,"output":"ng keys\n\u001b[0m\u001b[22m\n16:11:25.530 [info] Opening new connection {:ok, %AMQP.Connection{pid: #PID<0.2"},{"event":"cmd_output","timestamp":1607098285,"output":"0218.0>}} for id: default\n\u001b[0m\u001b[22m\n16:11:25.534 [info] Binding 'test.queuing' to 'pipeline_state"},{"event":"cmd_output","timestamp":1607098285,"output":"_exchange' with 'queuing' routing keys\n\u001b[0m\u001b[22m\n16:11:25.536 [info] Creating queue 'test.queuing"},{"event":"cmd_output","timestamp":1607098285,"output":"'\n\u001b[0m\u001b[22m\n16:11:25.536 [info] Creating dead queue 'test.queuing.dead'\n\u001b[0m\u001b[22m\n16:11:25.539 "},{"event":"cmd_output","timestamp":1607098285,"output":"[info] Creating delay queue 'test.queuing.delay.10'\n\u001b[0m\u001b[22m\n16:11:25.543 [info] Binding 'test."},{"event":"cmd_output","timestamp":1607098285,"output":"queuing' to 'test.queuing' with 'queuing' routing keys\n\u001b[0m\u001b[22m\n16:11:25.550 [info] Opening new "},{"event":"cmd_output","timestamp":1607098285,"output":"connection {:ok, %AMQP.Connection{pid: #PID<0.20233.0>}} for id: default\n\u001b[0m\u001b[22m\n16:11:25.554 [i"},{"event":"cmd_output","timestamp":1607098285,"output":"nfo] Binding 'test.running' to 'pipeline_state_exchange' with 'running' routing keys\n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098285,"output":":11:25.557 [info] Creating queue 'test.running'\n\u001b[0m\u001b[22m\n16:11:25.558 [info] Creating dead queu"},{"event":"cmd_output","timestamp":1607098285,"output":"e 'test.running.dead'\n\u001b[0m\u001b[22m\n16:11:25.560 [info] Creating delay queue 'test.running.delay.10'\r"},{"event":"cmd_output","timestamp":1607098285,"output":"\n\u001b[0m\u001b[22m\n16:11:25.567 [info] Binding 'test.running' to 'test.running' with 'running' routing key"},{"event":"cmd_output","timestamp":1607098285,"output":"s\n\u001b[0m\u001b[22m\n16:11:25.574 [info] Opening new connection {:ok, %AMQP.Connection{pid: #PID<0.20248.0"},{"event":"cmd_output","timestamp":1607098285,"output":">}} for id: default\n\u001b[0m\u001b[22m\n16:11:25.577 [info] Binding 'test.stopping' to 'pipeline_state_exch"},{"event":"cmd_output","timestamp":1607098285,"output":"ange' with 'stopping' routing keys\n\u001b[0m\u001b[22m\n16:11:25.579 [info] Creating queue 'test.stopping'\n"},{"event":"cmd_output","timestamp":1607098285,"output":"\u001b[0m\u001b[22m\n16:11:25.580 [info] Creating dead queue 'test.stopping.dead'\n\u001b[0m\u001b[22m\n16:11:25.582 [i"},{"event":"cmd_output","timestamp":1607098285,"output":"nfo] Creating delay queue 'test.stopping.delay.10'\n\u001b[0m\u001b[22m\n16:11:25.585 [info] Binding 'test.s"},{"event":"cmd_output","timestamp":1607098285,"output":"topping' to 'test.stopping' with 'stopping' routing keys\n\u001b[0m\u001b[22m\n16:11:25.590 [info] Opening ne"},{"event":"cmd_output","timestamp":1607098285,"output":"w connection {:ok, %AMQP.Connection{pid: #PID<0.20263.0>}} for id: default\n\u001b[0m\u001b[22m\n16:11:25.593 "},{"event":"cmd_output","timestamp":1607098285,"output":"[info] Binding 'test.done' to 'pipeline_state_exchange' with 'done' routing keys\n\u001b[0m\u001b[22m\n16:11:"},{"event":"cmd_output","timestamp":1607098285,"output":"25.595 [info] Creating queue 'test.done'\n\u001b[0m\u001b[22m\n16:11:25.596 [info] Creating dead queue 'test"},{"event":"cmd_output","timestamp":1607098285,"output":".done.dead'\n\u001b[0m\u001b[22m\n16:11:25.598 [info] Creating delay queue 'test.done.delay.10'\n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098285,"output":"6:11:25.601 [info] Binding 'test.done' to 'test.done' with 'done' routing keys\n\u001b[0m\u001b[22m\n16:11:25"},{"event":"cmd_output","timestamp":1607098285,"output":".606 [info] Request: 'run: %{\"branch_id\" => \"1960e8f2-1fc8-4087-b2ec-d4cf38527b9d\", \"branch_name\" ="},{"event":"cmd_output","timestamp":1607098285,"output":"> \"master\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"semaphore.yml\", \"hook_id\" => \"5bd4b5d8-364"},{"event":"cmd_output","timestamp":1607098285,"output":"b-11eb-bc34-5254005464e2\", \"label\" => \"master\", \"organization_id\" => \"2f77bd79-a7ab-43bd-959f-b68c7c"},{"event":"cmd_output","timestamp":1607098285,"output":"3d770f\", \"owner\" => \"rt\", \"project_id\" => \"070c120e-aa41-4ad1-bbac-bc16ba108ae8\", \"repo_name\" => \"5_"},{"event":"cmd_output","timestamp":1607098285,"output":"v1_full\", \"request_token\" => \"5bd4abd8-364b-11eb-8ace-5254005464e2\", \"requester_id\" => \"9c0e930e-f67"},{"event":"cmd_output","timestamp":1607098285,"output":"6-45ef-ab85-0967a0a9a9d2\", \"service\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"client"},{"event":"cmd_output","timestamp":1607098285,"output":"_secret\"], \"wf_id\" => \"64bad681-22ba-48fd-8480-a94a81840710\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098285,"output":"22m\n16:11:25.620 [info] ppl_id: bc75553a-3f48-4d85-88f8-b5ffd2fab26c, type: PplRequests, event: pe"},{"event":"cmd_output","timestamp":1607098285,"output":"rsisted schedule request with request_token: 5bd4abd8-364b-11eb-8ace-5254005464e2, origin: Elixir.Pp"},{"event":"cmd_output","timestamp":1607098285,"output":"l.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:11:25.623 [info] pp"},{"event":"cmd_output","timestamp":1607098285,"output":"l_id: bc75553a-3f48-4d85-88f8-b5ffd2fab26c, type: Ppls, state: initializing, event: initializing, re"},{"event":"cmd_output","timestamp":1607098285,"output":"covery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098285,"output":":11:25.630 [info] Project 070c120e-aa41-4ad1-bbac-bc16ba108ae8 and branch masterlatest_wf details u"},{"event":"cmd_output","timestamp":1607098285,"output":"pdated: \"wf_id: 64bad681-22ba-48fd-8480-a94a81840710, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:11:25.632 [info] "},{"event":"cmd_output","timestamp":1607098285,"output":" Persisted ppl_sub_init for pipeline with ppl_id: bc75553a-3f48-4d85-88f8-b5ffd2fab26c: %Ppl.PplSubI"},{"event":"cmd_output","timestamp":1607098285,"output":"nits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_"},{"event":"cmd_output","timestamp":1607098285,"output":"id: nil, error_description: nil, id: 142, in_scheduling: false, init_type: \"regular\", inserted_at: ~"},{"event":"cmd_output","timestamp":1607098285,"output":"N[2020-12-04 16:11:25.631558], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"bc75553a-3f48-4d85-88f8-b5ffd2fab26c\", recovery_count: 0, result: "},{"event":"cmd_output","timestamp":1607098285,"output":"nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, upda"},{"event":"cmd_output","timestamp":1607098285,"output":"ted_at: ~N[2020-12-04 16:11:25.631569]}\n\u001b[0m\u001b[22m\n16:11:25.641 [info] Periodic from module Elixir"},{"event":"cmd_output","timestamp":1607098285,"output":".Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: per"},{"event":"cmd_output","timestamp":1607098285,"output":"iod: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recur"},{"event":"cmd_output","timestamp":1607098285,"output":"ring args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query"},{"event":"cmd_output","timestamp":1607098285,"output":": Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl."},{"event":"cmd_output","timestamp":1607098285,"output":"Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, "},{"event":"cmd_output","timestamp":1607098285,"output":":updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_superviso"},{"event":"cmd_output","timestamp":1607098285,"output":"r: :skip}\n\u001b[0m\u001b[22m\n16:11:25.641 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingSt"},{"event":"cmd_output","timestamp":1607098285,"output":"ate with name Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder"},{"event":"cmd_output","timestamp":1607098285,"output":"-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"pending\", \"que"},{"event":"cmd_output","timestamp":1607098285,"output":"uing\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: "},{"event":"cmd_output","timestamp":1607098285,"output":"\"pending\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Pp"},{"event":"cmd_output","timestamp":1607098285,"output":"l.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl"},{"event":"cmd_output","timestamp":1607098285,"output":"_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:11:25.642 [in"},{"event":"cmd_output","timestamp":1607098285,"output":"fo] Periodic from module Elixir.Ppl.Ppls.STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandl"},{"event":"cmd_output","timestamp":1607098285,"output":"er.QueuingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Queui"},{"event":"cmd_output","timestamp":1607098285,"output":"ngState\"]}, recurring args: %{allowed_states: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, "},{"event":"cmd_output","timestamp":1607098285,"output":"initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", publisher_cb: #Function<0.125102843/1"},{"event":"cmd_output","timestamp":1607098285,"output":" in Ppl.Ppls.STMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_reques"},{"event":"cmd_output","timestamp":1607098285,"output":"t, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_superv"},{"event":"cmd_output","timestamp":1607098285,"output":"isor: :skip}\n\u001b[0m\u001b[22m\n16:11:25.642 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.Runnin"},{"event":"cmd_output","timestamp":1607098285,"output":"gState with name Elixir.Ppl.Ppls.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.behol"},{"event":"cmd_output","timestamp":1607098285,"output":"der-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \""},{"event":"cmd_output","timestamp":1607098285,"output":"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"runni"},{"event":"cmd_output","timestamp":1607098285,"output":"ng\", publisher_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler.RunningState.args/0>, repo: Ppl.Ect"},{"event":"cmd_output","timestamp":1607098285,"output":"oRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id],"},{"event":"cmd_output","timestamp":1607098285,"output":" schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:11:25.643 [info] "},{"event":"cmd_output","timestamp":1607098285,"output":"Periodic from module Elixir.Ppl.Ppls.STMHandler.StoppingState with name Elixir.Ppl.Ppls.STMHandler.S"},{"event":"cmd_output","timestamp":1607098285,"output":"toppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Stopping"},{"event":"cmd_output","timestamp":1607098285,"output":"State\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_quer"},{"event":"cmd_output","timestamp":1607098285,"output":"y: Ppl.Ppls.Model.Ppls, observed_state: \"stopping\", publisher_cb: #Function<0.71803493/1 in Ppl.Ppls"},{"event":"cmd_output","timestamp":1607098285,"output":".STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated"},{"event":"cmd_output","timestamp":1607098285,"output":"_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip"},{"event":"cmd_output","timestamp":1607098285,"output":"}\n\u001b[0m\u001b[22m\n16:11:25.643 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedSta"},{"event":"cmd_output","timestamp":1607098285,"output":"te with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.be"},{"event":"cmd_output","timestamp":1607098285,"output":"holder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args: %{allowed_states: [\"f"},{"event":"cmd_output","timestamp":1607098285,"output":"etching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_s"},{"event":"cmd_output","timestamp":1607098285,"output":"tate: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :upda"},{"event":"cmd_output","timestamp":1607098285,"output":"ted_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_"},{"event":"cmd_output","timestamp":1607098285,"output":"supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:25.643 [info] Periodic from module Elixir.Ppl.PplSubInits.STMH"},{"event":"cmd_output","timestamp":1607098285,"output":"andler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 ms, me"},{"event":"cmd_output","timestamp":1607098285,"output":"tric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %"},{"event":"cmd_output","timestamp":1607098285,"output":"{allowed_states: [\"regular_init\", \"compilation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.P"},{"event":"cmd_output","timestamp":1607098285,"output":"plSubInits.Model.PplSubInits, observed_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, r"},{"event":"cmd_output","timestamp":1607098285,"output":"eturning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema:"},{"event":"cmd_output","timestamp":1607098285,"output":" Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:25.644 [info] Periodi"},{"event":"cmd_output","timestamp":1607098285,"output":"c from module Elixir.Ppl.PplSubInits.STMHandler.CompilationState with name Elixir.Ppl.PplSubInits.ST"},{"event":"cmd_output","timestamp":1607098285,"output":"MHandler.CompilationState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits"},{"event":"cmd_output","timestamp":1607098285,"output":"-STMHandler-CompilationState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \""},{"event":"cmd_output","timestamp":1607098285,"output":"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed"},{"event":"cmd_output","timestamp":1607098285,"output":"_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request,"},{"event":"cmd_output","timestamp":1607098285,"output":" :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits,"},{"event":"cmd_output","timestamp":1607098285,"output":" task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:25.644 [info] Periodic from module Elixir.Ppl.PplSubInit"},{"event":"cmd_output","timestamp":1607098285,"output":"s.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period"},{"event":"cmd_output","timestamp":1607098285,"output":": 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, re"},{"event":"cmd_output","timestamp":1607098285,"output":"curring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model."},{"event":"cmd_output","timestamp":1607098285,"output":"PplSubInits, observed_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:i"},{"event":"cmd_output","timestamp":1607098285,"output":"d, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubIn"},{"event":"cmd_output","timestamp":1607098285,"output":"its.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:25.644 [info] Periodic from module"},{"event":"cmd_output","timestamp":1607098285,"output":" Elixir.Ppl.PplBlocks.STMHandler.InitializingState with name Elixir.Ppl.PplBlocks.STMHandler.Initial"},{"event":"cmd_output","timestamp":1607098285,"output":"izingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-Initi"},{"event":"cmd_output","timestamp":1607098285,"output":"alizingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"waiting\", \"done\"], cooling_time"},{"event":"cmd_output","timestamp":1607098285,"output":"_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"initializing\", publisher_cb:"},{"event":"cmd_output","timestamp":1607098285,"output":" :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :reco"},{"event":"cmd_output","timestamp":1607098285,"output":"very_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n"},{"event":"cmd_output","timestamp":1607098285,"output":"\u001b[0m\u001b[22m\n16:11:25.645 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.WaitingState wi"},{"event":"cmd_output","timestamp":1607098285,"output":"th name Elixir.Ppl.PplBlocks.STMHandler.WaitingState :: period: 1000 ms, metric_name: {\"Ppl.beholder"},{"event":"cmd_output","timestamp":1607098285,"output":"-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurring args: %{allowed_states: [\"waiting\","},{"event":"cmd_output","timestamp":1607098285,"output":" \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_sta"},{"event":"cmd_output","timestamp":1607098285,"output":"te: \"waiting\", publisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>,"},{"event":"cmd_output","timestamp":1607098285,"output":" repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_co"},{"event":"cmd_output","timestamp":1607098285,"output":"unt, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098285,"output":"2m\n16:11:25.645 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.RunningState with name"},{"event":"cmd_output","timestamp":1607098285,"output":" Elixir.Ppl.PplBlocks.STMHandler.RunningState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_u"},{"event":"cmd_output","timestamp":1607098285,"output":"p\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopp"},{"event":"cmd_output","timestamp":1607098285,"output":"ing\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \""},{"event":"cmd_output","timestamp":1607098285,"output":"running\", publisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0>, rep"},{"event":"cmd_output","timestamp":1607098285,"output":"o: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count,"},{"event":"cmd_output","timestamp":1607098285,"output":" :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n"},{"event":"cmd_output","timestamp":1607098285,"output":"\u001b[0m\u001b[22m\n16:11:25.646 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.StoppingState w"},{"event":"cmd_output","timestamp":1607098285,"output":"ith name Elixir.Ppl.PplBlocks.STMHandler.StoppingState :: period: 1000 ms, metric_name: {\"Ppl.behold"},{"event":"cmd_output","timestamp":1607098285,"output":"er-wake_up\", [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stoppi"},{"event":"cmd_output","timestamp":1607098285,"output":"ng\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"s"},{"event":"cmd_output","timestamp":1607098285,"output":"topping\", publisher_cb: #Function<0.104215991/1 in Ppl.PplBlocks.STMHandler.StoppingState.args/0>, r"},{"event":"cmd_output","timestamp":1607098285,"output":"epo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_coun"},{"event":"cmd_output","timestamp":1607098285,"output":"t, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}"},{"event":"cmd_output","timestamp":1607098285,"output":"\n\u001b[0m\u001b[22m\n16:11:25.646 [info] Periodic from module Elixir.Block.Blocks.STMHandler.InitializingSt"},{"event":"cmd_output","timestamp":1607098285,"output":"ate with name Elixir.Block.Blocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl"},{"event":"cmd_output","timestamp":1607098285,"output":".beholder-wake_up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states"},{"event":"cmd_output","timestamp":1607098285,"output":": [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Blocks.Model.Blocks, observed_state"},{"event":"cmd_output","timestamp":1607098285,"output":": \"initializing\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :u"},{"event":"cmd_output","timestamp":1607098285,"output":"pdated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: "},{"event":"cmd_output","timestamp":1607098285,"output":":skip}\n\u001b[0m\u001b[22m\n16:11:25.647 [info] Periodic from module Elixir.Block.Blocks.STMHandler.RunningS"},{"event":"cmd_output","timestamp":1607098285,"output":"tate with name Elixir.Block.Blocks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beh"},{"event":"cmd_output","timestamp":1607098285,"output":"older-wake_up\", [\"Block-Blocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"runni"},{"event":"cmd_output","timestamp":1607098285,"output":"ng\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_s"},{"event":"cmd_output","timestamp":1607098285,"output":"tate: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :up"},{"event":"cmd_output","timestamp":1607098285,"output":"dated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :"},{"event":"cmd_output","timestamp":1607098285,"output":"skip}\n\u001b[0m\u001b[22m\n16:11:25.648 [info] Periodic from module Elixir.Block.Blocks.STMHandler.StoppingS"},{"event":"cmd_output","timestamp":1607098285,"output":"tate with name Elixir.Block.Blocks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.be"},{"event":"cmd_output","timestamp":1607098285,"output":"holder-wake_up\", [\"Block-Blocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"sto"},{"event":"cmd_output","timestamp":1607098285,"output":"pping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"st"},{"event":"cmd_output","timestamp":1607098285,"output":"opping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at"},{"event":"cmd_output","timestamp":1607098285,"output":", :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b"},{"event":"cmd_output","timestamp":1607098285,"output":"[0m\u001b[22m\n16:11:25.648 [info] Periodic from module Elixir.Block.Tasks.STMHandler.PendingState with "},{"event":"cmd_output","timestamp":1607098285,"output":"name Elixir.Block.Tasks.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_"},{"event":"cmd_output","timestamp":1607098285,"output":"up\", [\"Block-Tasks-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"]"},{"event":"cmd_output","timestamp":1607098285,"output":", cooling_time_sec: 0, initial_query: Block.Tasks.Model.Tasks, observed_state: \"pending\", publisher_"},{"event":"cmd_output","timestamp":1607098285,"output":"cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery"},{"event":"cmd_output","timestamp":1607098285,"output":"_count, :block_id, :build_request_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0"},{"event":"cmd_output","timestamp":1607098285,"output":"m\u001b[22m\n16:11:25.648 [info] Periodic from module Elixir.Block.Tasks.STMHandler.RunningState with na"},{"event":"cmd_output","timestamp":1607098285,"output":"me Elixir.Block.Tasks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up"},{"event":"cmd_output","timestamp":1607098285,"output":"\", [\"Block-Tasks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping"},{"event":"cmd_output","timestamp":1607098285,"output":"\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"running\","},{"event":"cmd_output","timestamp":1607098285,"output":" publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state"},{"event":"cmd_output","timestamp":1607098285,"output":", :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098285,"output":"16:11:25.649 [info] Periodic from module Elixir.Block.Tasks.STMHandler.StoppingState with name Elix"},{"event":"cmd_output","timestamp":1607098285,"output":"ir.Block.Tasks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"B"},{"event":"cmd_output","timestamp":1607098285,"output":"lock-Tasks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cool"},{"event":"cmd_output","timestamp":1607098285,"output":"ing_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"stopping\", publisher_cb: "},{"event":"cmd_output","timestamp":1607098285,"output":":skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_cou"},{"event":"cmd_output","timestamp":1607098285,"output":"nt, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:25.782 [i"},{"event":"cmd_output","timestamp":1607098285,"output":"nfo] ppl_id: bc75553a-3f48-4d85-88f8-b5ffd2fab26c, type: PplRequests, event: persisted source_args "},{"event":"cmd_output","timestamp":1607098285,"output":"for pipeline: bc75553a-3f48-4d85-88f8-b5ffd2fab26c, origin: Elixir.Ppl.PplRequests.Model.PplRequests"},{"event":"cmd_output","timestamp":1607098285,"output":"Queries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:11:25.785 [info] ppl_id: bc75553a-3f48-4d85-88f8-b5ff"},{"event":"cmd_output","timestamp":1607098285,"output":"d2fab26c, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098285,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:25.814 [info] ppl_id: bc75553a-3f48"},{"event":"cmd_output","timestamp":1607098285,"output":"-4d85-88f8-b5ffd2fab26c, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_co"},{"event":"cmd_output","timestamp":1607098285,"output":"unt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:25.904 [info] pp"},{"event":"cmd_output","timestamp":1607098285,"output":"l_id: bc75553a-3f48-4d85-88f8-b5ffd2fab26c, type: PplRequests, event: persisted definition for reque"},{"event":"cmd_output","timestamp":1607098285,"output":"st with request_token: 5bd4abd8-364b-11eb-8ace-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.Pp"},{"event":"cmd_output","timestamp":1607098285,"output":"lRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:11:25.909 [info] Queue persisted: {:ok, "},{"event":"cmd_output","timestamp":1607098285,"output":"%Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12"},{"event":"cmd_output","timestamp":1607098285,"output":"-04 16:11:25.907323], name: \"master-.semaphore/semaphore.yml\", organization_id: \"2f77bd79-a7ab-43bd-"},{"event":"cmd_output","timestamp":1607098285,"output":"959f-b68c7c3d770f\", project_id: \"070c120e-aa41-4ad1-bbac-bc16ba108ae8\", queue_id: \"9eff0eee-6536-41d"},{"event":"cmd_output","timestamp":1607098285,"output":"1-93d2-9dc530046102\", scope: \"project\", updated_at: ~N[2020-12-04 16:11:25.907337], user_generated: "},{"event":"cmd_output","timestamp":1607098285,"output":"false}}\n\u001b[0m\u001b[22m\n16:11:25.916 [info] ppl_id: not_available, event: created, origin: Elixir.Ppl.P"},{"event":"cmd_output","timestamp":1607098285,"output":"plSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:11:25.916 [info] event: cre"},{"event":"cmd_output","timestamp":1607098285,"output":"ated, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:11"},{"event":"cmd_output","timestamp":1607098285,"output":":25.916 [info] ppl_id: bc75553a-3f48-4d85-88f8-b5ffd2fab26c, type: PplBlocks, block_index: 0, state"},{"event":"cmd_output","timestamp":1607098285,"output":": initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.Regular"},{"event":"cmd_output","timestamp":1607098285,"output":"InitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:11:25.916 [info] ppl_id: bc75553a-3f48-4d85-88f8-b5ffd2f"},{"event":"cmd_output","timestamp":1607098285,"output":"ab26c, type: PplBlocks, block_index: 1, state: initializing, event: created, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098285,"output":"in: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:11:25.920 [i"},{"event":"cmd_output","timestamp":1607098285,"output":"nfo] ppl_id: bc75553a-3f48-4d85-88f8-b5ffd2fab26c, type: PplSubInits, state: done, result: passed, "},{"event":"cmd_output","timestamp":1607098285,"output":"event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \r"},{"event":"cmd_output","timestamp":1607098285,"output":"\n\u001b[0m\u001b[22m\n16:11:25.931 [info] ppl_id: bc75553a-3f48-4d85-88f8-b5ffd2fab26c, type: Ppls, state: pe"},{"event":"cmd_output","timestamp":1607098285,"output":"nding, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1("},{"event":"cmd_output","timestamp":1607098285,"output":"L90), \n\u001b[0m\u001b[22m\n16:11:25.934 [info] ppl_id: bc75553a-3f48-4d85-88f8-b5ffd2fab26c, type: PplBlock"},{"event":"cmd_output","timestamp":1607098285,"output":"s, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper."},{"event":"cmd_output","timestamp":1607098285,"output":"STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:25.945 [info] ppl_id: bc75553a-3f48-4d85-88f8-"},{"event":"cmd_output","timestamp":1607098285,"output":"b5ffd2fab26c, type: PplBlocks, block_index: 1, state: waiting, event: exit_scheduling, recovery_coun"},{"event":"cmd_output","timestamp":1607098285,"output":"t: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:25.947 [info] ppl_"},{"event":"cmd_output","timestamp":1607098285,"output":"id: bc75553a-3f48-4d85-88f8-b5ffd2fab26c, type: Ppls, state: queuing, event: exit_scheduling, recove"},{"event":"cmd_output","timestamp":1607098285,"output":"ry_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:25.965 [info"},{"event":"cmd_output","timestamp":1607098285,"output":"] ppl_id: bc75553a-3f48-4d85-88f8-b5ffd2fab26c, type: Ppls, state: running, event: exit_scheduling,"},{"event":"cmd_output","timestamp":1607098285,"output":" recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:25.97"},{"event":"cmd_output","timestamp":1607098285,"output":"8 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"bc75553a-3f48-4d85-88f8-b"},{"event":"cmd_output","timestamp":1607098285,"output":"5ffd2fab26c\"\n\u001b[0m\u001b[22m\n16:11:25.991 [info] block_id: d976cfce-0db3-4552-b1be-d28158f0f806, type: "},{"event":"cmd_output","timestamp":1607098285,"output":"BlockRequests, event: persisted block run request from ppl bc75553a-3f48-4d85-88f8-b5ffd2fab26c for "},{"event":"cmd_output","timestamp":1607098285,"output":"block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b["},{"event":"cmd_output","timestamp":1607098286,"output":"0m\u001b[22m\n16:11:26.003 [info] block_id: d976cfce-0db3-4552-b1be-d28158f0f806, type: Blocks, state: i"},{"event":"cmd_output","timestamp":1607098286,"output":"nitializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries"},{"event":"cmd_output","timestamp":1607098286,"output":".insert/1(L43), \n\u001b[0m\u001b[22m\n16:11:26.005 [info] Block 0 of pipeline with id: bc75553a-3f48-4d85-88"},{"event":"cmd_output","timestamp":1607098286,"output":"f8-b5ffd2fab26c scheduled in block service with id: : \"d976cfce-0db3-4552-b1be-d28158f0f806\"\n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098286,"output":"22m\n16:11:26.009 [info] ppl_id: bc75553a-3f48-4d85-88f8-b5ffd2fab26c, type: PplBlocks, block_index"},{"event":"cmd_output","timestamp":1607098286,"output":": 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_s"},{"event":"cmd_output","timestamp":1607098286,"output":"tate_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:26.025 [info] block_id: d976cfce-0db3-4552-b1be-d28158f0f806"},{"event":"cmd_output","timestamp":1607098286,"output":", type: BlockRequests, event: persisted build and sub_ppl details for block_request: d976cfce-0db3-4"},{"event":"cmd_output","timestamp":1607098286,"output":"552-b1be-d28158f0f806, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2("},{"event":"cmd_output","timestamp":1607098286,"output":"L41), \n\u001b[0m\u001b[22m\n16:11:26.030 [info] block_id: d976cfce-0db3-4552-b1be-d28158f0f806, type: Tasks,"},{"event":"cmd_output","timestamp":1607098286,"output":" state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.Initializ"},{"event":"cmd_output","timestamp":1607098286,"output":"ingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:11:26.033 [info] block_id: d976cfce-0db3-4552-b1be-d28158"},{"event":"cmd_output","timestamp":1607098286,"output":"f0f806, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loop"},{"event":"cmd_output","timestamp":1607098286,"output":"er.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:26.101 [info] block_id: d976cfce-0db3-4552-"},{"event":"cmd_output","timestamp":1607098286,"output":"b1be-d28158f0f806, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: E"},{"event":"cmd_output","timestamp":1607098286,"output":"lixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:26.337 [info] block_id: d976cfce-"},{"event":"cmd_output","timestamp":1607098286,"output":"0db3-4552-b1be-d28158f0f806, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098286,"output":"igin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:26.345 [info] block_id: d9"},{"event":"cmd_output","timestamp":1607098286,"output":"76cfce-0db3-4552-b1be-d28158f0f806, type: Blocks, state: done, event: exit_scheduling, recovery_coun"},{"event":"cmd_output","timestamp":1607098286,"output":"t: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:26.356 [info] ppl_"},{"event":"cmd_output","timestamp":1607098286,"output":"id: bc75553a-3f48-4d85-88f8-b5ffd2fab26c, block_id: d976cfce-0db3-4552-b1be-d28158f0f806, type: PplB"},{"event":"cmd_output","timestamp":1607098286,"output":"locks, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098286,"output":"n: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:26.367 [info] PplBlocks Waiti"},{"event":"cmd_output","timestamp":1607098286,"output":"ngState STM is scheduling block 1 from pipeline: \"bc75553a-3f48-4d85-88f8-b5ffd2fab26c\"\n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098286,"output":"16:11:26.377 [info] block_id: eb13adc1-ca75-4b38-8938-79414a91368c, type: BlockRequests, event: per"},{"event":"cmd_output","timestamp":1607098286,"output":"sisted block run request from ppl bc75553a-3f48-4d85-88f8-b5ffd2fab26c for block 1, origin: Elixir.B"},{"event":"cmd_output","timestamp":1607098286,"output":"lock.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:11:26.380 [in"},{"event":"cmd_output","timestamp":1607098286,"output":"fo] block_id: eb13adc1-ca75-4b38-8938-79414a91368c, type: Blocks, state: initializing, event: initi"},{"event":"cmd_output","timestamp":1607098286,"output":"alizing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098286,"output":"2m\n16:11:26.380 [info] Block 1 of pipeline with id: bc75553a-3f48-4d85-88f8-b5ffd2fab26c scheduled"},{"event":"cmd_output","timestamp":1607098286,"output":" in block service with id: : \"eb13adc1-ca75-4b38-8938-79414a91368c\"\n\u001b[0m\u001b[22m\n16:11:26.385 [info] "},{"event":"cmd_output","timestamp":1607098286,"output":" ppl_id: bc75553a-3f48-4d85-88f8-b5ffd2fab26c, type: PplBlocks, block_index: 1, state: running, even"},{"event":"cmd_output","timestamp":1607098286,"output":"t: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098286,"output":"m\u001b[22m\n16:11:26.394 [info] block_id: eb13adc1-ca75-4b38-8938-79414a91368c, type: BlockRequests, ev"},{"event":"cmd_output","timestamp":1607098286,"output":"ent: persisted build and sub_ppl details for block_request: eb13adc1-ca75-4b38-8938-79414a91368c, or"},{"event":"cmd_output","timestamp":1607098286,"output":"igin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:11:"},{"event":"cmd_output","timestamp":1607098286,"output":"26.397 [info] block_id: eb13adc1-ca75-4b38-8938-79414a91368c, type: Tasks, state: pending, event: c"},{"event":"cmd_output","timestamp":1607098286,"output":"reated, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167),"},{"event":"cmd_output","timestamp":1607098286,"output":" \n\u001b[0m\u001b[22m\n16:11:26.400 [info] block_id: eb13adc1-ca75-4b38-8938-79414a91368c, type: Blocks, sta"},{"event":"cmd_output","timestamp":1607098286,"output":"te: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_cha"},{"event":"cmd_output","timestamp":1607098286,"output":"nge/1(L90), \n\u001b[0m\u001b[22m\n16:11:26.420 [info] block_id: eb13adc1-ca75-4b38-8938-79414a91368c, type: "},{"event":"cmd_output","timestamp":1607098286,"output":"Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098286,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:26.456 [info] block_id: eb13adc1-ca75-4b38-8938-79414a9136"},{"event":"cmd_output","timestamp":1607098286,"output":"8c, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.I"},{"event":"cmd_output","timestamp":1607098286,"output":"mpl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:26.463 [info] block_id: eb13adc1-ca75-4b38-8938-794"},{"event":"cmd_output","timestamp":1607098286,"output":"14a91368c, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loop"},{"event":"cmd_output","timestamp":1607098286,"output":"er.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:26.473 [info] ppl_id: bc75553a-3f48-4d85-88"},{"event":"cmd_output","timestamp":1607098286,"output":"f8-b5ffd2fab26c, block_id: eb13adc1-ca75-4b38-8938-79414a91368c, type: PplBlocks, block_index: 1, st"},{"event":"cmd_output","timestamp":1607098286,"output":"ate: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl"},{"event":"cmd_output","timestamp":1607098286,"output":".log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:26.491 [info] ppl_id: bc75553a-3f48-4d85-88f8-b5ffd2fa"},{"event":"cmd_output","timestamp":1607098286,"output":"b26c, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098287,"output":"ixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test all events are emmited for passed"},{"event":"cmd_output","timestamp":1607098287,"output":" pipeline (1811.3ms)\u001b[0m\n\nPpl.Ppls.Model.Ppls.Test\n * doctest Ppl.Ppls.Model.Ppls.changeset/3 (1"},{"event":"cmd_output","timestamp":1607098287,"output":")\r * doctest Ppl.Ppls.Model.Ppls.changeset/3 (1) (skipped)\n * doctest Ppl.Ppls.Model.Ppls.changes"},{"event":"cmd_output","timestamp":1607098287,"output":"et/3 (2)\r * doctest Ppl.Ppls.Model.Ppls.changeset/3 (2) (skipped)\n\nPpl.Ppls.Model.PplsQueuingTest"},{"event":"cmd_output","timestamp":1607098287,"output":"\n * test select if terminate_request is set\r * test select if terminate_request is set (skipped)\r"},{"event":"cmd_output","timestamp":1607098287,"output":"\n * test get oldest row in queuing state\r * test get oldest row in queuing state (skipped)\n * te"},{"event":"cmd_output","timestamp":1607098287,"output":"st do not select younger if older is in scheduling\r * test do not select younger if older is in sch"},{"event":"cmd_output","timestamp":1607098287,"output":"eduling (skipped)\n * test Update in_scheduling\r * test Update in_scheduling (skipped)\n * test N"},{"event":"cmd_output","timestamp":1607098287,"output":"othing to update\r * test Nothing to update (skipped)\n\nPpl.Ppls.Beholder.Test\n * test recovery c"},{"event":"cmd_output","timestamp":1607098287,"output":"ounter is incremented when pipeline is recovered from stuck\r * test recovery counter is incremented"},{"event":"cmd_output","timestamp":1607098287,"output":" when pipeline is recovered from stuck (skipped)\n * test pipeline is terminated when recovery coun"},{"event":"cmd_output","timestamp":1607098287,"output":"ter reaches threshold\r * test pipeline is terminated when recovery counter reaches threshold (skipp"},{"event":"cmd_output","timestamp":1607098287,"output":"ed)\n * test child_spec accepts 1 arg and returns a map\r * test child_spec accepts 1 arg and retur"},{"event":"cmd_output","timestamp":1607098287,"output":"ns a map (skipped)\n * test PplBlocks are terminated when ppl is stuck-aborted\u001b[22m\n16:11:27.223 ["},{"event":"cmd_output","timestamp":1607098287,"output":"info] Request: 'run: %{:repo_name => \"13_free_topology\", \"branch_id\" => \"7840aaad-97f0-49c4-b387-1b"},{"event":"cmd_output","timestamp":1607098287,"output":"8ddf585fed\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"semaphore.yml\""},{"event":"cmd_output","timestamp":1607098287,"output":", \"hook_id\" => \"5ccb63c4-364b-11eb-b974-5254005464e2\", \"label\" => \"master\", \"organization_id\" => \"dd"},{"event":"cmd_output","timestamp":1607098287,"output":"2c6a28-3638-48f2-81ba-041cb12ec81e\", \"owner\" => \"rt\", \"project_id\" => \"7c9efb31-ad27-42ca-a71c-87a8a"},{"event":"cmd_output","timestamp":1607098287,"output":"2e5eac0\", \"repo_name\" => \"2_basic\", \"request_token\" => \"5ccb53fc-364b-11eb-8a49-5254005464e2\", \"requ"},{"event":"cmd_output","timestamp":1607098287,"output":"ester_id\" => \"dcc2703c-f85d-4edb-879c-7c29901c932b\", \"service\" => \"local\", \"suppressed_attributes\" ="},{"event":"cmd_output","timestamp":1607098287,"output":"> [\"access_token\", \"client_secret\"], \"wf_id\" => \"b8ef95d7-d20f-49a2-bb91-b4b18bf1ad95\", \"working_dir"},{"event":"cmd_output","timestamp":1607098287,"output":"\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:11:27.227 [info] ppl_id: 2e76f0e6-3298-4e26-b132-ad1e60d1f9a6, ty"},{"event":"cmd_output","timestamp":1607098287,"output":"pe: PplRequests, event: persisted schedule request with request_token: 5ccb53fc-364b-11eb-8a49-52540"},{"event":"cmd_output","timestamp":1607098287,"output":"05464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098287,"output":"m\n16:11:27.229 [info] ppl_id: 2e76f0e6-3298-4e26-b132-ad1e60d1f9a6, type: Ppls, state: initializin"},{"event":"cmd_output","timestamp":1607098287,"output":"g, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_respons"},{"event":"cmd_output","timestamp":1607098287,"output":"e/2(L124), \n\u001b[0m\u001b[22m\n16:11:27.234 [info] Project 7c9efb31-ad27-42ca-a71c-87a8a2e5eac0 and branch"},{"event":"cmd_output","timestamp":1607098287,"output":" masterlatest_wf details updated: \"wf_id: b8ef95d7-d20f-49a2-bb91-b4b18bf1ad95, wf_number: 1\"\n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098287,"output":"[22m\n16:11:27.236 [info] Persisted ppl_sub_init for pipeline with ppl_id: 2e76f0e6-3298-4e26-b132-"},{"event":"cmd_output","timestamp":1607098287,"output":"ad1e60d1f9a6: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_"},{"event":"cmd_output","timestamp":1607098287,"output":"sub_inits\">, compile_task_id: nil, error_description: nil, id: 143, in_scheduling: false, init_type:"},{"event":"cmd_output","timestamp":1607098287,"output":" \"regular\", inserted_at: ~N[2020-12-04 16:11:27.235054], pipeline_requests: #Ecto.Association.NotLoa"},{"event":"cmd_output","timestamp":1607098287,"output":"ded, ppl_id: \"2e76f0e6-3298-4e26-b132-ad1e60d1f9a6\", r"},{"event":"cmd_output","timestamp":1607098287,"output":"ecovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, termina"},{"event":"cmd_output","timestamp":1607098287,"output":"te_request_desc: nil, updated_at: ~N[2020-12-04 16:11:27.235064]}\n\u001b[0m\u001b[22m\n16:11:27.254 [info] P"},{"event":"cmd_output","timestamp":1607098287,"output":"eriodic from module Elixir.Ppl.Ppls.Beholder with name Elixir.Ppl.Ppls.Beholder :: period: 1000 ms, "},{"event":"cmd_output","timestamp":1607098287,"output":"metric_name: {\"Beholder\", [\"Ppl-Ppls-Beholder\", \"wake_up\"]}, recurring args: %{callback: #Function<0"},{"event":"cmd_output","timestamp":1607098287,"output":".82153164/1 in Ppl.Ppls.Beholder.args/0>, excluded_states: [\"done\"], id: Ppl.Ppls.Beholder, query: P"},{"event":"cmd_output","timestamp":1607098287,"output":"pl.Ppls.Model.Ppls, repo: Ppl.EctoRepo, result_on_abort: \"failed\", result_reason_on_abort: \"stuck\", "},{"event":"cmd_output","timestamp":1607098287,"output":"terminal_state: \"done\", threshold_count: 5, threshold_sec: -2}\n\u001b[0m\u001b[22m\n16:11:27.255 [info] Peri"},{"event":"cmd_output","timestamp":1607098287,"output":"odic from module Elixir.Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.STMHandler.I"},{"event":"cmd_output","timestamp":1607098287,"output":"nitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Init"},{"event":"cmd_output","timestamp":1607098287,"output":"ializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], cooling_tim"},{"event":"cmd_output","timestamp":1607098287,"output":"e_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher_cb: #Functio"},{"event":"cmd_output","timestamp":1607098287,"output":"n<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, returning: [:i"},{"event":"cmd_output","timestamp":1607098287,"output":"d, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Mod"},{"event":"cmd_output","timestamp":1607098287,"output":"el.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:27.255 [info] Periodic from module Elixir.Ppl.Pp"},{"event":"cmd_output","timestamp":1607098287,"output":"ls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 100 ms, metr"},{"event":"cmd_output","timestamp":1607098287,"output":"ic_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args: %{allowed_s"},{"event":"cmd_output","timestamp":1607098287,"output":"tates: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model"},{"event":"cmd_output","timestamp":1607098287,"output":".Ppls, observed_state: \"pending\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler.Pending"},{"event":"cmd_output","timestamp":1607098287,"output":"State.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result"},{"event":"cmd_output","timestamp":1607098287,"output":", :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m"},{"event":"cmd_output","timestamp":1607098287,"output":"\u001b[22m\n16:11:27.256 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.QueuingState with name E"},{"event":"cmd_output","timestamp":1607098287,"output":"lixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Pp"},{"event":"cmd_output","timestamp":1607098287,"output":"l-Ppls-STMHandler-QueuingState\"]}, recurring args: %{allowed_states: [\"queuing\", \"running\", \"done\"],"},{"event":"cmd_output","timestamp":1607098287,"output":" cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", publisher_cb: "},{"event":"cmd_output","timestamp":1607098287,"output":"#Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, returning: "},{"event":"cmd_output","timestamp":1607098287,"output":"[:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls."},{"event":"cmd_output","timestamp":1607098287,"output":"Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:27.256 [info] Periodic from module Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098287,"output":".Ppls.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHandler.RunningState :: period: 100 ms, m"},{"event":"cmd_output","timestamp":1607098287,"output":"etric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring args: %{allowe"},{"event":"cmd_output","timestamp":1607098287,"output":"d_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls,"},{"event":"cmd_output","timestamp":1607098287,"output":" observed_state: \"running\", publisher_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler.RunningState"},{"event":"cmd_output","timestamp":1607098287,"output":".args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :re"},{"event":"cmd_output","timestamp":1607098287,"output":"covery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098287,"output":"\n16:11:27.256 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.StoppingState with name Elixi"},{"event":"cmd_output","timestamp":1607098287,"output":"r.Ppl.Ppls.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-P"},{"event":"cmd_output","timestamp":1607098287,"output":"pls-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_tim"},{"event":"cmd_output","timestamp":1607098287,"output":"e_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"stopping\", publisher_cb: #Function<0"},{"event":"cmd_output","timestamp":1607098287,"output":".71803493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :term"},{"event":"cmd_output","timestamp":1607098287,"output":"inate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls,"},{"event":"cmd_output","timestamp":1607098287,"output":" task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:27.257 [info] Periodic from module Elixir.Ppl.PplSubInit"},{"event":"cmd_output","timestamp":1607098287,"output":"s.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 100 ms"},{"event":"cmd_output","timestamp":1607098287,"output":", metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args"},{"event":"cmd_output","timestamp":1607098287,"output":": %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model."},{"event":"cmd_output","timestamp":1607098287,"output":"PplSubInits, observed_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :t"},{"event":"cmd_output","timestamp":1607098287,"output":"erminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.M"},{"event":"cmd_output","timestamp":1607098287,"output":"odel.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:27.257 [info] Periodic from module Elix"},{"event":"cmd_output","timestamp":1607098287,"output":"ir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler.FetchingStat"},{"event":"cmd_output","timestamp":1607098287,"output":"e :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingStat"},{"event":"cmd_output","timestamp":1607098287,"output":"e\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"done\"], cooling_time_sec: -"},{"event":"cmd_output","timestamp":1607098287,"output":"2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fetching\", publisher_cb: :skip"},{"event":"cmd_output","timestamp":1607098287,"output":", repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_c"},{"event":"cmd_output","timestamp":1607098287,"output":"ount, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11"},{"event":"cmd_output","timestamp":1607098287,"output":":27.257 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CompilationState with name El"},{"event":"cmd_output","timestamp":1607098287,"output":"ixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake"},{"event":"cmd_output","timestamp":1607098287,"output":"_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurring args: %{allowed_states: [\"regular_"},{"event":"cmd_output","timestamp":1607098287,"output":"init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Mode"},{"event":"cmd_output","timestamp":1607098287,"output":"l.PplSubInits, observed_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:"},{"event":"cmd_output","timestamp":1607098287,"output":"id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubI"},{"event":"cmd_output","timestamp":1607098287,"output":"nits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:27.257 [info] Periodic from modul"},{"event":"cmd_output","timestamp":1607098287,"output":"e Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHandler.Reg"},{"event":"cmd_output","timestamp":1607098287,"output":"ularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-"},{"event":"cmd_output","timestamp":1607098287,"output":"RegularInitState\"]}, recurring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, initial_query:"},{"event":"cmd_output","timestamp":1607098287,"output":" Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.E"},{"event":"cmd_output","timestamp":1607098287,"output":"ctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id"},{"event":"cmd_output","timestamp":1607098287,"output":"], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:27.258 [info"},{"event":"cmd_output","timestamp":1607098287,"output":"] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.InitializingState with name Elixir.Ppl.PplBl"},{"event":"cmd_output","timestamp":1607098287,"output":"ocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppl"},{"event":"cmd_output","timestamp":1607098287,"output":"Blocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"waiting\""},{"event":"cmd_output","timestamp":1607098287,"output":", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"initi"},{"event":"cmd_output","timestamp":1607098287,"output":"alizing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at,"},{"event":"cmd_output","timestamp":1607098287,"output":" :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, ta"},{"event":"cmd_output","timestamp":1607098287,"output":"sk_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:27.258 [info] Periodic from module Elixir.Ppl.PplBlocks.STM"},{"event":"cmd_output","timestamp":1607098287,"output":"Handler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler.WaitingState :: period: 1000 ms, metr"},{"event":"cmd_output","timestamp":1607098287,"output":"ic_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurring args: %{allo"},{"event":"cmd_output","timestamp":1607098287,"output":"wed_states: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model."},{"event":"cmd_output","timestamp":1607098287,"output":"PplBlocks, observed_state: \"waiting\", publisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.STMHandle"},{"event":"cmd_output","timestamp":1607098287,"output":"r.WaitingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state"},{"event":"cmd_output","timestamp":1607098287,"output":", :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supe"},{"event":"cmd_output","timestamp":1607098287,"output":"rvisor: :skip}\n\u001b[0m\u001b[22m\n16:11:27.258 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler"},{"event":"cmd_output","timestamp":1607098287,"output":".RunningState with name Elixir.Ppl.PplBlocks.STMHandler.RunningState :: period: 1000 ms, metric_name"},{"event":"cmd_output","timestamp":1607098287,"output":": {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, recurring args: %{allowed_sta"},{"event":"cmd_output","timestamp":1607098287,"output":"tes: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBl"},{"event":"cmd_output","timestamp":1607098287,"output":"ocks, observed_state: \"running\", publisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHandler.Ru"},{"event":"cmd_output","timestamp":1607098287,"output":"nningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :r"},{"event":"cmd_output","timestamp":1607098287,"output":"esult, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, ta"},{"event":"cmd_output","timestamp":1607098287,"output":"sk_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:27.259 [info] Periodic from module Elixir.Ppl.PplBlocks.STM"},{"event":"cmd_output","timestamp":1607098287,"output":"Handler.StoppingState with name Elixir.Ppl.PplBlocks.STMHandler.StoppingState :: period: 1000 ms, me"},{"event":"cmd_output","timestamp":1607098287,"output":"tric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurring args: %{a"},{"event":"cmd_output","timestamp":1607098287,"output":"llowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlo"},{"event":"cmd_output","timestamp":1607098287,"output":"cks, observed_state: \"stopping\", publisher_cb: #Function<0.104215991/1 in Ppl.PplBlocks.STMHandler.S"},{"event":"cmd_output","timestamp":1607098287,"output":"toppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, "},{"event":"cmd_output","timestamp":1607098287,"output":":result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, "},{"event":"cmd_output","timestamp":1607098287,"output":"task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:27.259 [info] Periodic from module Elixir.Block.Blocks.ST"},{"event":"cmd_output","timestamp":1607098287,"output":"MHandler.InitializingState with name Elixir.Block.Blocks.STMHandler.InitializingState :: period: 100"},{"event":"cmd_output","timestamp":1607098287,"output":" ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, recurring"},{"event":"cmd_output","timestamp":1607098287,"output":" args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Blocks.Model"},{"event":"cmd_output","timestamp":1607098287,"output":".Blocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id,"},{"event":"cmd_output","timestamp":1607098287,"output":" :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Bl"},{"event":"cmd_output","timestamp":1607098287,"output":"ocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:27.259 [info] Periodic from module Elixir.Block.Blo"},{"event":"cmd_output","timestamp":1607098287,"output":"cks.STMHandler.RunningState with name Elixir.Block.Blocks.STMHandler.RunningState :: period: 100 ms,"},{"event":"cmd_output","timestamp":1607098287,"output":" metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-RunningState\"]}, recurring args: %{"},{"event":"cmd_output","timestamp":1607098287,"output":"allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.M"},{"event":"cmd_output","timestamp":1607098287,"output":"odel.Blocks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, "},{"event":"cmd_output","timestamp":1607098287,"output":":terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blo"},{"event":"cmd_output","timestamp":1607098287,"output":"cks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:27.259 [info] Periodic from module Elixir.Block.Bloc"},{"event":"cmd_output","timestamp":1607098287,"output":"ks.STMHandler.StoppingState with name Elixir.Block.Blocks.STMHandler.StoppingState :: period: 100 ms"},{"event":"cmd_output","timestamp":1607098287,"output":", metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-StoppingState\"]}, recurring args: "},{"event":"cmd_output","timestamp":1607098287,"output":"%{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Bloc"},{"event":"cmd_output","timestamp":1607098287,"output":"ks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :termina"},{"event":"cmd_output","timestamp":1607098287,"output":"te_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, tas"},{"event":"cmd_output","timestamp":1607098287,"output":"k_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:27.260 [info] Periodic from module Elixir.Block.Tasks.STMHan"},{"event":"cmd_output","timestamp":1607098287,"output":"dler.PendingState with name Elixir.Block.Tasks.STMHandler.PendingState :: period: 100 ms, metric_nam"},{"event":"cmd_output","timestamp":1607098287,"output":"e: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingState\"]}, recurring args: %{allowed_stat"},{"event":"cmd_output","timestamp":1607098287,"output":"es: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Tasks.Model.Tasks, observed_state"},{"event":"cmd_output","timestamp":1607098287,"output":": \"pending\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :update"},{"event":"cmd_output","timestamp":1607098287,"output":"d_at, :state, :recovery_count, :block_id, :build_request_id], schema: Block.Tasks.Model.Tasks, task_"},{"event":"cmd_output","timestamp":1607098287,"output":"supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:27.260 [info] Periodic from module Elixir.Block.Tasks.STMHandl"},{"event":"cmd_output","timestamp":1607098287,"output":"er.RunningState with name Elixir.Block.Tasks.STMHandler.RunningState :: period: 100 ms, metric_name:"},{"event":"cmd_output","timestamp":1607098287,"output":" {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningState\"]}, recurring args: %{allowed_states"},{"event":"cmd_output","timestamp":1607098287,"output":": [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, obs"},{"event":"cmd_output","timestamp":1607098287,"output":"erved_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_reque"},{"event":"cmd_output","timestamp":1607098287,"output":"st, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervis"},{"event":"cmd_output","timestamp":1607098287,"output":"or: :skip}\n\u001b[0m\u001b[22m\n16:11:27.260 [info] Periodic from module Elixir.Block.Tasks.STMHandler.Stopp"},{"event":"cmd_output","timestamp":1607098287,"output":"ingState with name Elixir.Block.Tasks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl"},{"event":"cmd_output","timestamp":1607098287,"output":".beholder-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"s"},{"event":"cmd_output","timestamp":1607098287,"output":"topping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"st"},{"event":"cmd_output","timestamp":1607098287,"output":"opping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at"},{"event":"cmd_output","timestamp":1607098287,"output":", :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0"},{"event":"cmd_output","timestamp":1607098287,"output":"m\u001b[22m\n16:11:27.377 [info] ppl_id: 2e76f0e6-3298-4e26-b132-ad1e60d1f9a6, type: PplRequests, event:"},{"event":"cmd_output","timestamp":1607098287,"output":" persisted source_args for pipeline: 2e76f0e6-3298-4e26-b132-ad1e60d1f9a6, origin: Elixir.Ppl.PplReq"},{"event":"cmd_output","timestamp":1607098287,"output":"uests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:11:27.379 [info] ppl_id: 2e76f"},{"event":"cmd_output","timestamp":1607098287,"output":"0e6-3298-4e26-b132-ad1e60d1f9a6, type: PplSubInits, state: fetching, event: exit_scheduling, recover"},{"event":"cmd_output","timestamp":1607098287,"output":"y_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:27.410 [info]"},{"event":"cmd_output","timestamp":1607098287,"output":" ppl_id: 2e76f0e6-3298-4e26-b132-ad1e60d1f9a6, type: PplSubInits, state: regular_init, event: exit_"},{"event":"cmd_output","timestamp":1607098287,"output":"scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098287,"output":"16:11:27.445 [info] ppl_id: 2e76f0e6-3298-4e26-b132-ad1e60d1f9a6, type: PplRequests, event: persist"},{"event":"cmd_output","timestamp":1607098287,"output":"ed definition for request with request_token: 5ccb53fc-364b-11eb-8a49-5254005464e2, origin: Elixir.P"},{"event":"cmd_output","timestamp":1607098287,"output":"pl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:11:27.449 [info] "},{"event":"cmd_output","timestamp":1607098287,"output":"Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, "},{"event":"cmd_output","timestamp":1607098287,"output":"inserted_at: ~N[2020-12-04 16:11:27.448315], name: \"master-.semaphore/semaphore.yml\", organization_i"},{"event":"cmd_output","timestamp":1607098287,"output":"d: \"dd2c6a28-3638-48f2-81ba-041cb12ec81e\", project_id: \"7c9efb31-ad27-42ca-a71c-87a8a2e5eac0\", queue"},{"event":"cmd_output","timestamp":1607098287,"output":"_id: \"69244632-7d8f-4062-8cd6-84dadc62f5be\", scope: \"project\", updated_at: ~N[2020-12-04 16:11:27.44"},{"event":"cmd_output","timestamp":1607098287,"output":"8328], user_generated: false}}\n\u001b[0m\u001b[22m\n16:11:27.463 [info] ppl_id: not_available, event: create"},{"event":"cmd_output","timestamp":1607098287,"output":"d, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:11:27"},{"event":"cmd_output","timestamp":1607098287,"output":".463 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L1"},{"event":"cmd_output","timestamp":1607098287,"output":"05), \n\u001b[0m\u001b[22m\n16:11:27.464 [info] ppl_id: 2e76f0e6-3298-4e26-b132-ad1e60d1f9a6, type: PplBlocks"},{"event":"cmd_output","timestamp":1607098287,"output":", block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubI"},{"event":"cmd_output","timestamp":1607098287,"output":"nits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:11:27.464 [info] ppl_id: 2e76f0e6"},{"event":"cmd_output","timestamp":1607098287,"output":"-3298-4e26-b132-ad1e60d1f9a6, type: PplBlocks, block_index: 1, state: initializing, event: created, "},{"event":"cmd_output","timestamp":1607098287,"output":"recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098287,"output":"m\u001b[22m\n16:11:27.464 [info] ppl_id: 2e76f0e6-3298-4e26-b132-ad1e60d1f9a6, type: PplBlocks, block_in"},{"event":"cmd_output","timestamp":1607098287,"output":"dex: 2, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHa"},{"event":"cmd_output","timestamp":1607098287,"output":"ndler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:11:27.464 [info] ppl_id: 2e76f0e6-3298-4e26"},{"event":"cmd_output","timestamp":1607098287,"output":"-b132-ad1e60d1f9a6, type: PplBlocks, block_index: 3, state: initializing, event: created, recovery_c"},{"event":"cmd_output","timestamp":1607098287,"output":"ount: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098287,"output":":11:27.464 [info] ppl_id: 2e76f0e6-3298-4e26-b132-ad1e60d1f9a6, type: PplBlocks, block_index: 4, st"},{"event":"cmd_output","timestamp":1607098287,"output":"ate: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.Regu"},{"event":"cmd_output","timestamp":1607098287,"output":"larInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:11:27.469 [info] ppl_id: 2e76f0e6-3298-4e26-b132-ad1e"},{"event":"cmd_output","timestamp":1607098287,"output":"60d1f9a6, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098287,"output":" origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:27.484 [info] ppl_id: 2"},{"event":"cmd_output","timestamp":1607098287,"output":"e76f0e6-3298-4e26-b132-ad1e60d1f9a6, type: PplBlocks, block_index: 0, state: waiting, event: exit_sc"},{"event":"cmd_output","timestamp":1607098287,"output":"heduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098287,"output":":11:27.491 [info] ppl_id: 2e76f0e6-3298-4e26-b132-ad1e60d1f9a6, type: PplBlocks, block_index: 1, st"},{"event":"cmd_output","timestamp":1607098287,"output":"ate: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_ch"},{"event":"cmd_output","timestamp":1607098287,"output":"ange/1(L90), \n\u001b[0m\u001b[22m\n16:11:27.500 [info] ppl_id: 2e76f0e6-3298-4e26-b132-ad1e60d1f9a6, type: P"},{"event":"cmd_output","timestamp":1607098287,"output":"plBlocks, block_index: 2, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098287,"output":"Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:27.517 [info] ppl_id: 2e76f0e6-3298-4e2"},{"event":"cmd_output","timestamp":1607098287,"output":"6-b132-ad1e60d1f9a6, type: PplBlocks, block_index: 3, state: waiting, event: exit_scheduling, recove"},{"event":"cmd_output","timestamp":1607098287,"output":"ry_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:27.527 [info"},{"event":"cmd_output","timestamp":1607098287,"output":"] ppl_id: 2e76f0e6-3298-4e26-b132-ad1e60d1f9a6, type: PplBlocks, block_index: 4, state: waiting, ev"},{"event":"cmd_output","timestamp":1607098287,"output":"ent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b"},{"event":"cmd_output","timestamp":1607098288,"output":"[0m\u001b[33m\n16:11:28.267 [warn] ppl_id: 2e76f0e6-3298-4e26-b132-ad1e60d1f9a6, type: Ppls, state: done"},{"event":"cmd_output","timestamp":1607098288,"output":", result: failed, result_reason: stuck, event: stuck item aborted, recovery_count: 100, origin: Elix"},{"event":"cmd_output","timestamp":1607098289,"output":"ir.Looper.Beholder.Impl.log/2(L88), \n\u001b[0m\u001b[22m\n16:11:29.277 [info] ppl_id: 2e76f0e6-3298-4e26-b13"},{"event":"cmd_output","timestamp":1607098289,"output":"2-ad1e60d1f9a6, type: PplBlocks, block_index: 4, state: done, result: canceled, event: exit_scheduli"},{"event":"cmd_output","timestamp":1607098290,"output":"ng, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:30"},{"event":"cmd_output","timestamp":1607098290,"output":".285 [info] ppl_id: 2e76f0e6-3298-4e26-b132-ad1e60d1f9a6, type: PplBlocks, block_index: 3, state: d"},{"event":"cmd_output","timestamp":1607098290,"output":"one, result: canceled, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098291,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:31.293 [info] ppl_id: 2e76f0e6-3298-4e26-b132-ad1e60d1f9a6"},{"event":"cmd_output","timestamp":1607098291,"output":", type: PplBlocks, block_index: 2, state: done, result: canceled, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098292,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:32.305 [info] p"},{"event":"cmd_output","timestamp":1607098292,"output":"pl_id: 2e76f0e6-3298-4e26-b132-ad1e60d1f9a6, type: PplBlocks, block_index: 1, state: done, result: c"},{"event":"cmd_output","timestamp":1607098292,"output":"anceled, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/"},{"event":"cmd_output","timestamp":1607098293,"output":"1(L90), \n\u001b[0m\u001b[22m\n16:11:33.313 [info] ppl_id: 2e76f0e6-3298-4e26-b132-ad1e60d1f9a6, type: PplBlo"},{"event":"cmd_output","timestamp":1607098293,"output":"cks, block_index: 0, state: done, result: canceled, event: exit_scheduling, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098293,"output":"n: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test PplBlocks are terminated whe"},{"event":"cmd_output","timestamp":1607098293,"output":"n ppl is stuck-aborted (6221.6ms)\u001b[0m\n\nPpl.PplTraces.Model.PplTracesQueries.Test\n * test insert "},{"event":"cmd_output","timestamp":1607098293,"output":"two pipeline traces for same pipeline fails\r * test insert two pipeline traces for same pipeline fa"},{"event":"cmd_output","timestamp":1607098293,"output":"ils (skipped)\n * test insert new pipeline trace for existing pipeline\r * test insert new pipeline"},{"event":"cmd_output","timestamp":1607098293,"output":" trace for existing pipeline (skipped)\n * test insert new pipeline trace for non-existing pipeline"},{"event":"cmd_output","timestamp":1607098293,"output":" fails\r * test insert new pipeline trace for non-existing pipeline fails (skipped)\n * test set ti"},{"event":"cmd_output","timestamp":1607098293,"output":"mestamps value works for all supported timestamps\r * test set timestamps value works for all suppor"},{"event":"cmd_output","timestamp":1607098293,"output":"ted timestamps (skipped)\n * test set value for unsupported timestamp fails\r * test set value for "},{"event":"cmd_output","timestamp":1607098293,"output":"unsupported timestamp fails (skipped)\n\nPpl.PplTraces.Model.PplTraces.Test\n * doctest Ppl.PplTrac"},{"event":"cmd_output","timestamp":1607098293,"output":"es.Model.PplTraces.changeset_insert/2 (1)\r * doctest Ppl.PplTraces.Model.PplTraces.changeset_insert"},{"event":"cmd_output","timestamp":1607098293,"output":"/2 (1) (skipped)\n * doctest Ppl.PplTraces.Model.PplTraces.changeset_insert/2 (2)\r * doctest Ppl.P"},{"event":"cmd_output","timestamp":1607098293,"output":"plTraces.Model.PplTraces.changeset_insert/2 (2) (skipped)\n\nPpl.PplSubInits.STMHandler.StoppingStat"},{"event":"cmd_output","timestamp":1607098293,"output":"e.Test\n * test when pipeline is terminated while compilation task is running => sub init goes trou"},{"event":"cmd_output","timestamp":1607098293,"output":"gh stopping state\u001b[22m\n16:11:33.445 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.Initial"},{"event":"cmd_output","timestamp":1607098293,"output":"izingState with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms, metric_name: {\""},{"event":"cmd_output","timestamp":1607098293,"output":"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %{allowed_states:"},{"event":"cmd_output","timestamp":1607098293,"output":" [\"initializing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, obser"},{"event":"cmd_output","timestamp":1607098293,"output":"ved_state: \"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.Initializing"},{"event":"cmd_output","timestamp":1607098293,"output":"State.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result"},{"event":"cmd_output","timestamp":1607098293,"output":", :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:"},{"event":"cmd_output","timestamp":1607098293,"output":"33.446 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098293,"output":"s.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHan"},{"event":"cmd_output","timestamp":1607098293,"output":"dler-PendingState\"]}, recurring args: %{allowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], c"},{"event":"cmd_output","timestamp":1607098293,"output":"ooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publisher_cb: #Fu"},{"event":"cmd_output","timestamp":1607098293,"output":"nction<0.8493005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id,"},{"event":"cmd_output","timestamp":1607098293,"output":" :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model"},{"event":"cmd_output","timestamp":1607098293,"output":".Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:11:33.447 [info] Periodic from module El"},{"event":"cmd_output","timestamp":1607098293,"output":"ixir.Ppl.PplSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHandler.CreatedStat"},{"event":"cmd_output","timestamp":1607098293,"output":"e :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState"},{"event":"cmd_output","timestamp":1607098293,"output":"\"]}, recurring args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl"},{"event":"cmd_output","timestamp":1607098293,"output":".PplSubInits.Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, "},{"event":"cmd_output","timestamp":1607098293,"output":"returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema"},{"event":"cmd_output","timestamp":1607098293,"output":": Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:33.448 [info] Period"},{"event":"cmd_output","timestamp":1607098293,"output":"ic from module Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl.PplSubInits.STMH"},{"event":"cmd_output","timestamp":1607098293,"output":"andler.FetchingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMH"},{"event":"cmd_output","timestamp":1607098293,"output":"andler-FetchingState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"done\"], "},{"event":"cmd_output","timestamp":1607098293,"output":"cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fetching\", "},{"event":"cmd_output","timestamp":1607098293,"output":"publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :"},{"event":"cmd_output","timestamp":1607098293,"output":"result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip"},{"event":"cmd_output","timestamp":1607098293,"output":"}\n\u001b[0m\u001b[22m\n16:11:33.448 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.RegularIni"},{"event":"cmd_output","timestamp":1607098293,"output":"tState with name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period: 100 ms, metric_name: "},{"event":"cmd_output","timestamp":1607098293,"output":"{\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurring args: %{allowed"},{"event":"cmd_output","timestamp":1607098293,"output":"_states: [\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_s"},{"event":"cmd_output","timestamp":1607098293,"output":"tate: \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, "},{"event":"cmd_output","timestamp":1607098293,"output":":updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, "},{"event":"cmd_output","timestamp":1607098293,"output":"task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:33.453 [info] Request: 'run: %{\"branch_id\" => \"1093f312-a"},{"event":"cmd_output","timestamp":1607098293,"output":"ca2-40a0-b2c6-501d2d98499b\", \"branch_name\" => \"one_path\", \"commit_sha\" => \"75891a4469\", \"file_name\" "},{"event":"cmd_output","timestamp":1607098293,"output":"=> \"one_path.yml\", \"hook_id\" => \"60820400-364b-11eb-bc8d-5254005464e2\", \"label\" => \"one_path\", \"orga"},{"event":"cmd_output","timestamp":1607098293,"output":"nization_id\" => \"cfc539cb-c16b-449a-a009-af5ba5505b1d\", \"owner\" => \"rt\", \"project_id\" => \"9047f9d7-4"},{"event":"cmd_output","timestamp":1607098293,"output":"c06-4865-9abc-4c8d5bd14a53\", \"repo_name\" => \"22_skip_block\", \"request_token\" => \"6081e984-364b-11eb-"},{"event":"cmd_output","timestamp":1607098293,"output":"92a1-5254005464e2\", \"requester_id\" => \"80cd86e7-d442-4ff9-87a5-0b4209387cb9\", \"service\" => \"local\", "},{"event":"cmd_output","timestamp":1607098293,"output":"\"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"bf4c65cf-51a3-4721-980b-8d"},{"event":"cmd_output","timestamp":1607098293,"output":"6b52550206\", \"working_dir\" => \".semaphore/change_in\"}\n\u001b[0m\u001b[22m\n16:11:33.456 [info] ppl_id: 10aef"},{"event":"cmd_output","timestamp":1607098293,"output":"851-d256-44c5-ae9b-78b3604da375, type: PplRequests, event: persisted schedule request with request_t"},{"event":"cmd_output","timestamp":1607098293,"output":"oken: 6081e984-364b-11eb-92a1-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries."},{"event":"cmd_output","timestamp":1607098293,"output":"process_response/2(L55), \n\u001b[0m\u001b[22m\n16:11:33.460 [info] ppl_id: 10aef851-d256-44c5-ae9b-78b3604da"},{"event":"cmd_output","timestamp":1607098293,"output":"375, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098293,"output":"s.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:11:33.465 [info] Project 9047f9d7-4c0"},{"event":"cmd_output","timestamp":1607098293,"output":"6-4865-9abc-4c8d5bd14a53 and branch one_pathlatest_wf details updated: \"wf_id: bf4c65cf-51a3-4721-98"},{"event":"cmd_output","timestamp":1607098293,"output":"0b-8d6b52550206, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:11:33.468 [info] Persisted ppl_sub_init for pipeline "},{"event":"cmd_output","timestamp":1607098293,"output":"with ppl_id: 10aef851-d256-44c5-ae9b-78b3604da375: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ect"},{"event":"cmd_output","timestamp":1607098293,"output":"o.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: "},{"event":"cmd_output","timestamp":1607098293,"output":"144, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:11:33.466028], pipeli"},{"event":"cmd_output","timestamp":1607098293,"output":"ne_requests: #Ecto.Association.NotLoaded, ppl_id: \"10a"},{"event":"cmd_output","timestamp":1607098293,"output":"ef851-d256-44c5-ae9b-78b3604da375\", recovery_count: 0, result: nil, result_reason: nil, state: \"crea"},{"event":"cmd_output","timestamp":1607098293,"output":"ted\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:11:33.466041"},{"event":"cmd_output","timestamp":1607098293,"output":"]}\n\u001b[0m\u001b[22m\n16:11:33.490 [info] ppl_id: 10aef851-d256-44c5-ae9b-78b3604da375, type: PplRequests,"},{"event":"cmd_output","timestamp":1607098293,"output":" event: persisted source_args for pipeline: 10aef851-d256-44c5-ae9b-78b3604da375, origin: Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098293,"output":".PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:11:33.494 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098293,"output":": 10aef851-d256-44c5-ae9b-78b3604da375, type: PplSubInits, state: fetching, event: exit_scheduling, "},{"event":"cmd_output","timestamp":1607098293,"output":"recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:33.538"},{"event":"cmd_output","timestamp":1607098293,"output":" [info] ppl_id: 10aef851-d256-44c5-ae9b-78b3604da375, type: PplSubInits, state: compilation, event:"},{"event":"cmd_output","timestamp":1607098295,"output":" exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098295,"output":"[22m\n16:11:35.478 [info] Request: 'terminate', request: %{\"ppl_id\" => \"10aef851-d256-44c5-ae9b-78b"},{"event":"cmd_output","timestamp":1607098295,"output":"3604da375\", \"requester_id\" => \"user_id\"}\n\u001b[0m\u001b[22m\n16:11:35.484 [info] Periodic from module Elixi"},{"event":"cmd_output","timestamp":1607098295,"output":"r.Ppl.PplSubInits.STMHandler.CompilationState with name Elixir.Ppl.PplSubInits.STMHandler.Compilatio"},{"event":"cmd_output","timestamp":1607098295,"output":"nState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-Compila"},{"event":"cmd_output","timestamp":1607098295,"output":"tionState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"stopping\", \"done\"],"},{"event":"cmd_output","timestamp":1607098295,"output":" cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"compilatio"},{"event":"cmd_output","timestamp":1607098295,"output":"n\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :stat"},{"event":"cmd_output","timestamp":1607098295,"output":"e, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :"},{"event":"cmd_output","timestamp":1607098295,"output":"skip}\n\u001b[0m\u001b[22m\n16:11:35.517 [info] ppl_id: 10aef851-d256-44c5-ae9b-78b3604da375, type: Ppls, sta"},{"event":"cmd_output","timestamp":1607098295,"output":"te: done, result: canceled, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Imp"},{"event":"cmd_output","timestamp":1607098295,"output":"l.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:35.602 [info] ppl_id: 10aef851-d256-44c5-ae9b-78b3604"},{"event":"cmd_output","timestamp":1607098295,"output":"da375, type: PplSubInits, state: stopping, event: exit_scheduling, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098297,"output":".Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:37.498 [info] Periodic from module Eli"},{"event":"cmd_output","timestamp":1607098297,"output":"xir.Ppl.PplSubInits.STMHandler.StoppingState with name Elixir.Ppl.PplSubInits.STMHandler.StoppingSta"},{"event":"cmd_output","timestamp":1607098297,"output":"te :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-StoppingSta"},{"event":"cmd_output","timestamp":1607098297,"output":"te\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: "},{"event":"cmd_output","timestamp":1607098297,"output":"Ppl.PplSubInits.Model.PplSubInits, observed_state: \"stopping\", publisher_cb: :skip, repo: Ppl.EctoRe"},{"event":"cmd_output","timestamp":1607098297,"output":"po, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], sc"},{"event":"cmd_output","timestamp":1607098297,"output":"hema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:37.608 [info] pp"},{"event":"cmd_output","timestamp":1607098297,"output":"l_id: 10aef851-d256-44c5-ae9b-78b3604da375, type: PplSubInits, state: done, result: stopped, event: "},{"event":"cmd_output","timestamp":1607098298,"output":"exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098298,"output":"32m\r * test when pipeline is terminated while compilation task is running => sub init goes trough s"},{"event":"cmd_output","timestamp":1607098298,"output":"topping state (4618.3ms)\u001b[0m\n\nPpl.PplSubInits.STMHandler.FetchingState.Test\n * test when pipelin"},{"event":"cmd_output","timestamp":1607098298,"output":"e does not need compilation => sub_init goes to regular_init stat\u001b[22m\n16:11:38.050 [info] Periodi"},{"event":"cmd_output","timestamp":1607098298,"output":"c from module Elixir.Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.STMHandler.Init"},{"event":"cmd_output","timestamp":1607098298,"output":"ializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Initial"},{"event":"cmd_output","timestamp":1607098298,"output":"izingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], cooling_time_s"},{"event":"cmd_output","timestamp":1607098298,"output":"ec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher_cb: #Function<0"},{"event":"cmd_output","timestamp":1607098298,"output":".125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, "},{"event":"cmd_output","timestamp":1607098298,"output":":terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model."},{"event":"cmd_output","timestamp":1607098298,"output":"Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:38.050 [info] Periodic from module Elixir.Ppl.Ppls."},{"event":"cmd_output","timestamp":1607098298,"output":"STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 100 ms, metric_"},{"event":"cmd_output","timestamp":1607098298,"output":"name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args: %{allowed_stat"},{"event":"cmd_output","timestamp":1607098298,"output":"es: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Pp"},{"event":"cmd_output","timestamp":1607098298,"output":"ls, observed_state: \"pending\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler.PendingSta"},{"event":"cmd_output","timestamp":1607098298,"output":"te.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :"},{"event":"cmd_output","timestamp":1607098298,"output":"recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098298,"output":"2m\n16:11:38.051 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedState with na"},{"event":"cmd_output","timestamp":1607098298,"output":"me Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.beholder-wak"},{"event":"cmd_output","timestamp":1607098298,"output":"e_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args: %{allowed_states: [\"fetching\", "},{"event":"cmd_output","timestamp":1607098298,"output":"\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"cre"},{"event":"cmd_output","timestamp":1607098298,"output":"ated\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :s"},{"event":"cmd_output","timestamp":1607098298,"output":"tate, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor"},{"event":"cmd_output","timestamp":1607098298,"output":": :skip}\n\u001b[0m\u001b[22m\n16:11:38.052 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.Reg"},{"event":"cmd_output","timestamp":1607098298,"output":"ularInitState with name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period: 100 ms, metric"},{"event":"cmd_output","timestamp":1607098298,"output":"_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurring args: %{"},{"event":"cmd_output","timestamp":1607098298,"output":"allowed_states: [\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, obs"},{"event":"cmd_output","timestamp":1607098298,"output":"erved_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_re"},{"event":"cmd_output","timestamp":1607098298,"output":"quest, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSub"},{"event":"cmd_output","timestamp":1607098298,"output":"Inits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:38.056 [info] Request: 'run: %{\"branch_id\" => \"1b1"},{"event":"cmd_output","timestamp":1607098298,"output":"d2534-53af-480a-b821-36a468b65b41\", \"branch_name\" => \"one_path\", \"commit_sha\" => \"75891a4469\", \"file"},{"event":"cmd_output","timestamp":1607098298,"output":"_name\" => \"one_path.yml\", \"hook_id\" => \"63406b6e-364b-11eb-8a5d-5254005464e2\", \"label\" => \"one_path\""},{"event":"cmd_output","timestamp":1607098298,"output":", \"organization_id\" => \"c33bd823-c89c-4221-967a-263c241d6c54\", \"owner\" => \"rt\", \"project_id\" => \"28e"},{"event":"cmd_output","timestamp":1607098298,"output":"92095-7acb-46d4-a11b-ce1400a299e6\", \"repo_name\" => \"22_skip_block\", \"request_token\" => \"63405822-364"},{"event":"cmd_output","timestamp":1607098298,"output":"b-11eb-81c9-5254005464e2\", \"requester_id\" => \"6560799e-a03e-41f8-8c60-efc1fadc5239\", \"service\" => \"l"},{"event":"cmd_output","timestamp":1607098298,"output":"ocal\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"e2e6890d-15fb-4aa4-"},{"event":"cmd_output","timestamp":1607098298,"output":"9cb8-0232ffedb3bc\", \"working_dir\" => \".semaphore/change_in\"}\n\u001b[0m\u001b[22m\n16:11:38.058 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098298,"output":": 13ded833-f5fb-45ad-8300-cec788c94e0c, type: PplRequests, event: persisted schedule request with re"},{"event":"cmd_output","timestamp":1607098298,"output":"quest_token: 63405822-364b-11eb-81c9-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQ"},{"event":"cmd_output","timestamp":1607098298,"output":"ueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:11:38.061 [info] ppl_id: 13ded833-f5fb-45ad-8300-ce"},{"event":"cmd_output","timestamp":1607098298,"output":"c788c94e0c, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098298,"output":"Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:11:38.065 [info] Project 28e92"},{"event":"cmd_output","timestamp":1607098298,"output":"095-7acb-46d4-a11b-ce1400a299e6 and branch one_pathlatest_wf details updated: \"wf_id: e2e6890d-15fb-"},{"event":"cmd_output","timestamp":1607098298,"output":"4aa4-9cb8-0232ffedb3bc, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:11:38.071 [info] Persisted ppl_sub_init for pi"},{"event":"cmd_output","timestamp":1607098298,"output":"peline with ppl_id: 13ded833-f5fb-45ad-8300-cec788c94e0c: %Ppl.PplSubInits.Model.PplSubInits{__meta_"},{"event":"cmd_output","timestamp":1607098298,"output":"_: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: ni"},{"event":"cmd_output","timestamp":1607098298,"output":"l, id: 145, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:11:38.065540],"},{"event":"cmd_output","timestamp":1607098298,"output":" pipeline_requests: #Ecto.Association.NotLoaded, ppl_i"},{"event":"cmd_output","timestamp":1607098298,"output":"d: \"13ded833-f5fb-45ad-8300-cec788c94e0c\", recovery_count: 0, result: nil, result_reason: nil, state"},{"event":"cmd_output","timestamp":1607098298,"output":": \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:11:38"},{"event":"cmd_output","timestamp":1607098298,"output":".065548]}\n\u001b[0m\u001b[22m\n16:11:38.082 [info] ppl_id: 13ded833-f5fb-45ad-8300-cec788c94e0c, type: PplRe"},{"event":"cmd_output","timestamp":1607098298,"output":"quests, event: persisted source_args for pipeline: 13ded833-f5fb-45ad-8300-cec788c94e0c, origin: Eli"},{"event":"cmd_output","timestamp":1607098298,"output":"xir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:11:38.091 [info] "},{"event":"cmd_output","timestamp":1607098298,"output":" ppl_id: 13ded833-f5fb-45ad-8300-cec788c94e0c, type: PplSubInits, state: fetching, event: exit_sched"},{"event":"cmd_output","timestamp":1607098300,"output":"uling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * te"},{"event":"cmd_output","timestamp":1607098300,"output":"st when pipeline does not need compilation => sub_init goes to regular_init stat (2099.6ms)\u001b[0m\n *"},{"event":"cmd_output","timestamp":1607098300,"output":" test when pipeline needs compilation => pipeline goes to compilationa and task is started\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098300,"output":"11:40.182 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingState with name Elixir"},{"event":"cmd_output","timestamp":1607098300,"output":".Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Pp"},{"event":"cmd_output","timestamp":1607098300,"output":"l-Ppls-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"pending\""},{"event":"cmd_output","timestamp":1607098300,"output":", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", "},{"event":"cmd_output","timestamp":1607098300,"output":"publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.Ec"},{"event":"cmd_output","timestamp":1607098300,"output":"toRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id]"},{"event":"cmd_output","timestamp":1607098300,"output":", schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:40.182 [info] Periodic fro"},{"event":"cmd_output","timestamp":1607098300,"output":"m module Elixir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler.PendingState :"},{"event":"cmd_output","timestamp":1607098300,"output":": period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recur"},{"event":"cmd_output","timestamp":1607098300,"output":"ring args: %{allowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_sec: 0, initial"},{"event":"cmd_output","timestamp":1607098300,"output":"_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publisher_cb: #Function<0.8493005/1 in Ppl.P"},{"event":"cmd_output","timestamp":1607098300,"output":"pls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updat"},{"event":"cmd_output","timestamp":1607098300,"output":"ed_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: Ppl"},{"event":"cmd_output","timestamp":1607098300,"output":"sTaskSupervisor}\n\u001b[0m\u001b[22m\n16:11:40.185 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHan"},{"event":"cmd_output","timestamp":1607098300,"output":"dler.CreatedState with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 100 ms, metric"},{"event":"cmd_output","timestamp":1607098300,"output":"_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args: %{allo"},{"event":"cmd_output","timestamp":1607098300,"output":"wed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubIn"},{"event":"cmd_output","timestamp":1607098300,"output":"its, observed_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate"},{"event":"cmd_output","timestamp":1607098300,"output":"_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.Ppl"},{"event":"cmd_output","timestamp":1607098300,"output":"SubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:40.185 [info] Periodic from module Elixir.Ppl.P"},{"event":"cmd_output","timestamp":1607098300,"output":"plSubInits.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState "},{"event":"cmd_output","timestamp":1607098300,"output":":: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitSta"},{"event":"cmd_output","timestamp":1607098300,"output":"te\"]}, recurring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubIni"},{"event":"cmd_output","timestamp":1607098300,"output":"ts.Model.PplSubInits, observed_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, retur"},{"event":"cmd_output","timestamp":1607098300,"output":"ning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl"},{"event":"cmd_output","timestamp":1607098300,"output":".PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:40.190 [info] Request: 'r"},{"event":"cmd_output","timestamp":1607098300,"output":"un: %{\"branch_id\" => \"c378e37d-1170-4a24-8155-0f60fa8529f8\", \"branch_name\" => \"one_path\", \"commit_sh"},{"event":"cmd_output","timestamp":1607098300,"output":"a\" => \"75891a4469\", \"file_name\" => \"one_path.yml\", \"hook_id\" => \"6485a840-364b-11eb-8abf-5254005464e"},{"event":"cmd_output","timestamp":1607098300,"output":"2\", \"label\" => \"one_path\", \"organization_id\" => \"ffd415e8-4d45-4ab2-be28-897856ca2068\", \"owner\" => \""},{"event":"cmd_output","timestamp":1607098300,"output":"rt\", \"project_id\" => \"9047f9d7-4c06-4865-9abc-4c8d5bd14a53\", \"repo_name\" => \"22_skip_block\", \"reques"},{"event":"cmd_output","timestamp":1607098300,"output":"t_token\" => \"64859efe-364b-11eb-b589-5254005464e2\", \"requester_id\" => \"922c297e-3b95-4119-95a9-d8028"},{"event":"cmd_output","timestamp":1607098300,"output":"9e592d0\", \"service\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id"},{"event":"cmd_output","timestamp":1607098300,"output":"\" => \"085b7a7e-649c-49fa-a235-7ea5f5b84041\", \"working_dir\" => \".semaphore/change_in\"}\n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098300,"output":":11:40.201 [info] ppl_id: 301ba2fc-a676-4bdc-a754-7a09a94ff11c, type: PplRequests, event: persisted"},{"event":"cmd_output","timestamp":1607098300,"output":" schedule request with request_token: 64859efe-364b-11eb-b589-5254005464e2, origin: Elixir.Ppl.PplRe"},{"event":"cmd_output","timestamp":1607098300,"output":"quests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:11:40.205 [info] ppl_id: 3"},{"event":"cmd_output","timestamp":1607098300,"output":"01ba2fc-a676-4bdc-a754-7a09a94ff11c, type: Ppls, state: initializing, event: initializing, recovery_"},{"event":"cmd_output","timestamp":1607098300,"output":"count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:11:40."},{"event":"cmd_output","timestamp":1607098300,"output":"211 [info] Project 9047f9d7-4c06-4865-9abc-4c8d5bd14a53 and branch one_pathlatest_wf details update"},{"event":"cmd_output","timestamp":1607098300,"output":"d: \"wf_id: 085b7a7e-649c-49fa-a235-7ea5f5b84041, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:11:40.214 [info] Pers"},{"event":"cmd_output","timestamp":1607098300,"output":"isted ppl_sub_init for pipeline with ppl_id: 301ba2fc-a676-4bdc-a754-7a09a94ff11c: %Ppl.PplSubInits."},{"event":"cmd_output","timestamp":1607098300,"output":"Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: n"},{"event":"cmd_output","timestamp":1607098300,"output":"il, error_description: nil, id: 146, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[202"},{"event":"cmd_output","timestamp":1607098300,"output":"0-12-04 16:11:40.211260], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"301ba2fc-a676-4bdc-a754-7a09a94ff11c\", recovery_count: 0, result: nil, "},{"event":"cmd_output","timestamp":1607098300,"output":"result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_a"},{"event":"cmd_output","timestamp":1607098300,"output":"t: ~N[2020-12-04 16:11:40.211271]}\n\u001b[0m\u001b[22m\n16:11:40.240 [info] ppl_id: 301ba2fc-a676-4bdc-a754-"},{"event":"cmd_output","timestamp":1607098300,"output":"7a09a94ff11c, type: PplRequests, event: persisted source_args for pipeline: 301ba2fc-a676-4bdc-a754-"},{"event":"cmd_output","timestamp":1607098300,"output":"7a09a94ff11c, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098300,"output":"22m\n16:11:40.243 [info] ppl_id: 301ba2fc-a676-4bdc-a754-7a09a94ff11c, type: PplSubInits, state: fe"},{"event":"cmd_output","timestamp":1607098300,"output":"tching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1"},{"event":"cmd_output","timestamp":1607098304,"output":"(L90), \n\u001b[0m\u001b[32m\r * test when pipeline needs compilation => pipeline goes to compilationa and tas"},{"event":"cmd_output","timestamp":1607098304,"output":"k is started (4146.2ms)\u001b[0m\n\nPpl.PplSubInits.STMHandler.Compilation.TaskClient.Test\n * test when"},{"event":"cmd_output","timestamp":1607098304,"output":" time-out occures in schedule call => error is returned\r * test when time-out occures in schedule c"},{"event":"cmd_output","timestamp":1607098304,"output":"all => error is returned (skipped)\n * test when URL is invalid in terminate call => timeout occure"},{"event":"cmd_output","timestamp":1607098304,"output":"s\r * test when URL is invalid in terminate call => timeout occures (skipped)\n * test when URL is "},{"event":"cmd_output","timestamp":1607098304,"output":"invalid in schedule call => timeout occures\r * test when URL is invalid in schedule call => timeout"},{"event":"cmd_output","timestamp":1607098304,"output":" occures (skipped)\n * test when time-out occures in describe call => error is returned\r * test wh"},{"event":"cmd_output","timestamp":1607098304,"output":"en time-out occures in describe call => error is returned (skipped)\n * test when schedule is calle"},{"event":"cmd_output","timestamp":1607098304,"output":"d => gRPC server response is processed correctly\u001b[32m\r * test when schedule is called => gRPC serve"},{"event":"cmd_output","timestamp":1607098304,"output":"r response is processed correctly (8.6ms)\u001b[0m\n * test when describe is called => gRPC server respo"},{"event":"cmd_output","timestamp":1607098305,"output":"nse is processed correctly\u001b[32m\r * test when describe is called => gRPC server response is processe"},{"event":"cmd_output","timestamp":1607098305,"output":"d correctly (1014.4ms)\u001b[0m\n * test when time-out occures in terminate call => error is returned\r "},{"event":"cmd_output","timestamp":1607098305,"output":"* test when time-out occures in terminate call => error is returned (skipped)\n * test when termina"},{"event":"cmd_output","timestamp":1607098305,"output":"te is called => gRPC server response is processed correctly\u001b[32m\r * test when terminate is called ="},{"event":"cmd_output","timestamp":1607098305,"output":"> gRPC server response is processed correctly (19.8ms)\u001b[0m\n * test when URL is invalid in describe"},{"event":"cmd_output","timestamp":1607098305,"output":" call => timeout occures\r * test when URL is invalid in describe call => timeout occures (skipped)\r"},{"event":"cmd_output","timestamp":1607098305,"output":"\n\nPpl.PplSubInits.STMHandler.CompilationState.Test\n * test when compilation task passes => yaml i"},{"event":"cmd_output","timestamp":1607098305,"output":"s fetched and stored and sub_init goes to regular_ini\u001b[22m\n16:11:45.361 [info] Periodic from modul"},{"event":"cmd_output","timestamp":1607098305,"output":"e Elixir.Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.STMHandler.InitializingStat"},{"event":"cmd_output","timestamp":1607098305,"output":"e :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]"},{"event":"cmd_output","timestamp":1607098305,"output":"}, recurring args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], cooling_time_sec: 0, initi"},{"event":"cmd_output","timestamp":1607098305,"output":"al_query: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher_cb: #Function<0.125326080/1"},{"event":"cmd_output","timestamp":1607098305,"output":" in Ppl.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_r"},{"event":"cmd_output","timestamp":1607098305,"output":"equest, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_s"},{"event":"cmd_output","timestamp":1607098305,"output":"upervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:45.362 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.P"},{"event":"cmd_output","timestamp":1607098305,"output":"endingState with name Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl."},{"event":"cmd_output","timestamp":1607098305,"output":"beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"pendin"},{"event":"cmd_output","timestamp":1607098305,"output":"g\", \"queuing\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed"},{"event":"cmd_output","timestamp":1607098305,"output":"_state: \"pending\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, "},{"event":"cmd_output","timestamp":1607098305,"output":"repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_cou"},{"event":"cmd_output","timestamp":1607098305,"output":"nt, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:11:45"},{"event":"cmd_output","timestamp":1607098305,"output":".362 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedState with name Elixir.Pp"},{"event":"cmd_output","timestamp":1607098305,"output":"l.PplSubInits.STMHandler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl"},{"event":"cmd_output","timestamp":1607098305,"output":"-PplSubInits-STMHandler-CreatedState\"]}, recurring args: %{allowed_states: [\"fetching\", \"done\"], coo"},{"event":"cmd_output","timestamp":1607098305,"output":"ling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"created\", publi"},{"event":"cmd_output","timestamp":1607098305,"output":"sher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :resul"},{"event":"cmd_output","timestamp":1607098305,"output":"t, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b["},{"event":"cmd_output","timestamp":1607098305,"output":"0m\u001b[22m\n16:11:45.363 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.FetchingState w"},{"event":"cmd_output","timestamp":1607098305,"output":"ith name Elixir.Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 ms, metric_name: {\"Ppl.behol"},{"event":"cmd_output","timestamp":1607098305,"output":"der-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %{allowed_states: [\"reg"},{"event":"cmd_output","timestamp":1607098305,"output":"ular_init\", \"compilation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSu"},{"event":"cmd_output","timestamp":1607098305,"output":"bInits, observed_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :termi"},{"event":"cmd_output","timestamp":1607098305,"output":"nate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model"},{"event":"cmd_output","timestamp":1607098305,"output":".PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:45.364 [info] Periodic from module Elixir.P"},{"event":"cmd_output","timestamp":1607098305,"output":"pl.PplSubInits.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHandler.RegularInitSt"},{"event":"cmd_output","timestamp":1607098305,"output":"ate :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularIni"},{"event":"cmd_output","timestamp":1607098305,"output":"tState\"]}, recurring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSu"},{"event":"cmd_output","timestamp":1607098305,"output":"bInits.Model.PplSubInits, observed_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, r"},{"event":"cmd_output","timestamp":1607098305,"output":"eturning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema:"},{"event":"cmd_output","timestamp":1607098305,"output":" Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:45.378 [info] Request"},{"event":"cmd_output","timestamp":1607098305,"output":": 'run: %{\"branch_id\" => \"deb675f3-0d89-41d4-afec-67aa78bf81fc\", \"branch_name\" => \"one_path\", \"commi"},{"event":"cmd_output","timestamp":1607098305,"output":"t_sha\" => \"75891a4469\", \"file_name\" => \"one_path.yml\", \"hook_id\" => \"679c18ac-364b-11eb-8a80-5254005"},{"event":"cmd_output","timestamp":1607098305,"output":"464e2\", \"label\" => \"one_path\", \"organization_id\" => \"336f7324-addd-4e2e-bfe2-69a934a24c15\", \"owner\" "},{"event":"cmd_output","timestamp":1607098305,"output":"=> \"rt\", \"project_id\" => \"9047f9d7-4c06-4865-9abc-4c8d5bd14a53\", \"repo_name\" => \"22_skip_block\", \"re"},{"event":"cmd_output","timestamp":1607098305,"output":"quest_token\" => \"679bf71e-364b-11eb-a565-5254005464e2\", \"requester_id\" => \"7fa4470e-1b64-48df-a7b1-d"},{"event":"cmd_output","timestamp":1607098305,"output":"2fec3aeab49\", \"service\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"w"},{"event":"cmd_output","timestamp":1607098305,"output":"f_id\" => \"a2109fc0-5d71-4447-8111-6f9345972c36\", \"working_dir\" => \".semaphore/change_in\"}\n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098305,"output":"\n16:11:45.382 [info] ppl_id: 0c6d490c-e701-48e2-bf50-aa61cd6216fa, type: PplRequests, event: persi"},{"event":"cmd_output","timestamp":1607098305,"output":"sted schedule request with request_token: 679bf71e-364b-11eb-a565-5254005464e2, origin: Elixir.Ppl.P"},{"event":"cmd_output","timestamp":1607098305,"output":"plRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:11:45.386 [info] ppl_i"},{"event":"cmd_output","timestamp":1607098305,"output":"d: 0c6d490c-e701-48e2-bf50-aa61cd6216fa, type: Ppls, state: initializing, event: initializing, recov"},{"event":"cmd_output","timestamp":1607098305,"output":"ery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:11"},{"event":"cmd_output","timestamp":1607098305,"output":":45.392 [info] Project 9047f9d7-4c06-4865-9abc-4c8d5bd14a53 and branch one_pathlatest_wf details up"},{"event":"cmd_output","timestamp":1607098305,"output":"dated: \"wf_id: a2109fc0-5d71-4447-8111-6f9345972c36, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:11:45.395 [info] "},{"event":"cmd_output","timestamp":1607098305,"output":"Persisted ppl_sub_init for pipeline with ppl_id: 0c6d490c-e701-48e2-bf50-aa61cd6216fa: %Ppl.PplSubIn"},{"event":"cmd_output","timestamp":1607098305,"output":"its.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_i"},{"event":"cmd_output","timestamp":1607098305,"output":"d: nil, error_description: nil, id: 147, in_scheduling: false, init_type: \"regular\", inserted_at: ~N"},{"event":"cmd_output","timestamp":1607098305,"output":"[2020-12-04 16:11:45.392778], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"0c6d490c-e701-48e2-bf50-aa61cd6216fa\", recovery_count: 0, result: n"},{"event":"cmd_output","timestamp":1607098305,"output":"il, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updat"},{"event":"cmd_output","timestamp":1607098305,"output":"ed_at: ~N[2020-12-04 16:11:45.392789]}\n\u001b[0m\u001b[22m\n16:11:45.422 [info] ppl_id: 0c6d490c-e701-48e2-b"},{"event":"cmd_output","timestamp":1607098305,"output":"f50-aa61cd6216fa, type: PplRequests, event: persisted source_args for pipeline: 0c6d490c-e701-48e2-b"},{"event":"cmd_output","timestamp":1607098305,"output":"f50-aa61cd6216fa, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b["},{"event":"cmd_output","timestamp":1607098305,"output":"0m\u001b[22m\n16:11:45.427 [info] ppl_id: 0c6d490c-e701-48e2-bf50-aa61cd6216fa, type: PplSubInits, state"},{"event":"cmd_output","timestamp":1607098305,"output":": fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chan"},{"event":"cmd_output","timestamp":1607098305,"output":"ge/1(L90), \n\u001b[0m\u001b[22m\n16:11:45.477 [info] ppl_id: 0c6d490c-e701-48e2-bf50-aa61cd6216fa, type: Ppl"},{"event":"cmd_output","timestamp":1607098305,"output":"SubInits, state: compilation, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.I"},{"event":"cmd_output","timestamp":1607098308,"output":"mpl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test when compilation task passes => yaml is fetched an"},{"event":"cmd_output","timestamp":1607098308,"output":"d stored and sub_init goes to regular_ini (3267.6ms)\u001b[0m\n\nPpl.PplSubInits.STMHandler.Compilation.D"},{"event":"cmd_output","timestamp":1607098308,"output":"efinition.Test\n * test when in test environment => simple definition is used\r * test when in test"},{"event":"cmd_output","timestamp":1607098308,"output":" environment => simple definition is used (skipped)\n * test when in prod environment => return com"},{"event":"cmd_output","timestamp":1607098308,"output":"pilation definition with proper env vars set\u001b[22m\n16:11:48.623 [info] Request: 'run: %{\"branch_id\""},{"event":"cmd_output","timestamp":1607098308,"output":" => \"90c8fb6a-cd56-4a10-9d60-feab199fb71f\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469\","},{"event":"cmd_output","timestamp":1607098308,"output":" \"file_name\" => \"semaphore.yml\", \"hook_id\" => \"698cbb30-364b-11eb-b37c-5254005464e2\", \"label\" => \"ma"},{"event":"cmd_output","timestamp":1607098308,"output":"ster\", \"organization_id\" => \"bfeb9884-9d59-4ee8-8aa8-763f1bd9ebd1\", \"owner\" => \"rt\", \"project_id\" =>"},{"event":"cmd_output","timestamp":1607098308,"output":" \"b681bcec-f6bd-4742-80ad-0e3e003e6ad1\", \"repo_name\" => \"2_basic\", \"request_token\" => \"698cb3ec-364b"},{"event":"cmd_output","timestamp":1607098308,"output":"-11eb-99f1-5254005464e2\", \"requester_id\" => \"8df0a8f4-c0b1-4e12-8204-50d42cee20df\", \"service\" => \"lo"},{"event":"cmd_output","timestamp":1607098308,"output":"cal\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"e53e872d-c92e-44a9-8"},{"event":"cmd_output","timestamp":1607098308,"output":"25b-d3bb1ede3558\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:11:48.630 [info] ppl_id: a2d26f94-"},{"event":"cmd_output","timestamp":1607098308,"output":"7fa2-4f2e-a813-91165cc5b66f, type: PplRequests, event: persisted schedule request with request_token"},{"event":"cmd_output","timestamp":1607098308,"output":": 698cb3ec-364b-11eb-99f1-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.proc"},{"event":"cmd_output","timestamp":1607098308,"output":"ess_response/2(L55), \n\u001b[0m\u001b[22m\n16:11:48.633 [info] ppl_id: a2d26f94-7fa2-4f2e-a813-91165cc5b66f,"},{"event":"cmd_output","timestamp":1607098308,"output":" type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Mo"},{"event":"cmd_output","timestamp":1607098308,"output":"del.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:11:48.639 [info] Project b681bcec-f6bd-47"},{"event":"cmd_output","timestamp":1607098308,"output":"42-80ad-0e3e003e6ad1 and branch masterlatest_wf details updated: \"wf_id: e53e872d-c92e-44a9-825b-d3b"},{"event":"cmd_output","timestamp":1607098308,"output":"b1ede3558, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:11:48.643 [info] Persisted ppl_sub_init for pipeline with p"},{"event":"cmd_output","timestamp":1607098308,"output":"pl_id: a2d26f94-7fa2-4f2e-a813-91165cc5b66f: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Sche"},{"event":"cmd_output","timestamp":1607098308,"output":"ma.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 148, i"},{"event":"cmd_output","timestamp":1607098308,"output":"n_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:11:48.639670], pipeline_req"},{"event":"cmd_output","timestamp":1607098308,"output":"uests: #Ecto.Association.NotLoaded, ppl_id: \"a2d26f94-"},{"event":"cmd_output","timestamp":1607098308,"output":"7fa2-4f2e-a813-91165cc5b66f\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", "},{"event":"cmd_output","timestamp":1607098308,"output":"terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:11:48.639678]}\n\u001b["},{"event":"cmd_output","timestamp":1607098308,"output":"0m\u001b[22m\n16:11:48.650 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingState with"},{"event":"cmd_output","timestamp":1607098308,"output":" name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wa"},{"event":"cmd_output","timestamp":1607098308,"output":"ke_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing"},{"event":"cmd_output","timestamp":1607098308,"output":"\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"ini"},{"event":"cmd_output","timestamp":1607098308,"output":"tializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, "},{"event":"cmd_output","timestamp":1607098308,"output":"repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_cou"},{"event":"cmd_output","timestamp":1607098308,"output":"nt, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:48.650 [info] "},{"event":"cmd_output","timestamp":1607098308,"output":"Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler.Pe"},{"event":"cmd_output","timestamp":1607098308,"output":"ndingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingSta"},{"event":"cmd_output","timestamp":1607098308,"output":"te\"]}, recurring args: %{allowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_sec"},{"event":"cmd_output","timestamp":1607098308,"output":": 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publisher_cb: #Function<0.849300"},{"event":"cmd_output","timestamp":1607098308,"output":"5/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_req"},{"event":"cmd_output","timestamp":1607098308,"output":"uest, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_sup"},{"event":"cmd_output","timestamp":1607098308,"output":"ervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:11:48.650 [info] Periodic from module Elixir.Ppl.Ppls.S"},{"event":"cmd_output","timestamp":1607098308,"output":"TMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, metric_n"},{"event":"cmd_output","timestamp":1607098308,"output":"ame: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{allowed_state"},{"event":"cmd_output","timestamp":1607098308,"output":"s: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observe"},{"event":"cmd_output","timestamp":1607098308,"output":"d_state: \"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.args/0"},{"event":"cmd_output","timestamp":1607098308,"output":">, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_"},{"event":"cmd_output","timestamp":1607098308,"output":"count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:48.651 [info"},{"event":"cmd_output","timestamp":1607098308,"output":"] Periodic from module Elixir.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHandler"},{"event":"cmd_output","timestamp":1607098308,"output":".RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Running"},{"event":"cmd_output","timestamp":1607098308,"output":"State\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, i"},{"event":"cmd_output","timestamp":1607098308,"output":"nitial_query: Ppl.Ppls.Model.Ppls, observed_state: \"running\", publisher_cb: #Function<0.74670282/1 i"},{"event":"cmd_output","timestamp":1607098308,"output":"n Ppl.Ppls.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request,"},{"event":"cmd_output","timestamp":1607098308,"output":" :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervis"},{"event":"cmd_output","timestamp":1607098308,"output":"or: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:11:48.652 [info] Periodic from module Elixir.Ppl.Ppls.STMHan"},{"event":"cmd_output","timestamp":1607098308,"output":"dler.StoppingState with name Elixir.Ppl.Ppls.STMHandler.StoppingState :: period: 100 ms, metric_name"},{"event":"cmd_output","timestamp":1607098308,"output":": {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring args: %{allowed_states:"},{"event":"cmd_output","timestamp":1607098308,"output":" [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"st"},{"event":"cmd_output","timestamp":1607098308,"output":"opping\", publisher_cb: #Function<0.71803493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, repo: Pp"},{"event":"cmd_output","timestamp":1607098308,"output":"l.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl"},{"event":"cmd_output","timestamp":1607098308,"output":"_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:48.652 [info] Periodic"},{"event":"cmd_output","timestamp":1607098308,"output":" from module Elixir.Ppl.PplSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHand"},{"event":"cmd_output","timestamp":1607098308,"output":"ler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandl"},{"event":"cmd_output","timestamp":1607098308,"output":"er-CreatedState\"]}, recurring args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, ini"},{"event":"cmd_output","timestamp":1607098308,"output":"tial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip, repo:"},{"event":"cmd_output","timestamp":1607098308,"output":" Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :"},{"event":"cmd_output","timestamp":1607098308,"output":"ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:48.652"},{"event":"cmd_output","timestamp":1607098308,"output":" [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl.P"},{"event":"cmd_output","timestamp":1607098308,"output":"plSubInits.STMHandler.FetchingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-P"},{"event":"cmd_output","timestamp":1607098308,"output":"plSubInits-STMHandler-FetchingState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilat"},{"event":"cmd_output","timestamp":1607098308,"output":"ion\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_stat"},{"event":"cmd_output","timestamp":1607098308,"output":"e: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :update"},{"event":"cmd_output","timestamp":1607098308,"output":"d_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_su"},{"event":"cmd_output","timestamp":1607098308,"output":"pervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:48.653 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHan"},{"event":"cmd_output","timestamp":1607098308,"output":"dler.CompilationState with name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 100 ms"},{"event":"cmd_output","timestamp":1607098308,"output":", metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurring "},{"event":"cmd_output","timestamp":1607098308,"output":"args: %{allowed_states: [\"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2, i"},{"event":"cmd_output","timestamp":1607098308,"output":"nitial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"compilation\", publisher_cb: :skip,"},{"event":"cmd_output","timestamp":1607098308,"output":" repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_co"},{"event":"cmd_output","timestamp":1607098308,"output":"unt, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:"},{"event":"cmd_output","timestamp":1607098308,"output":"48.653 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with name Eli"},{"event":"cmd_output","timestamp":1607098308,"output":"xir.Ppl.PplSubInits.STMHandler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_"},{"event":"cmd_output","timestamp":1607098308,"output":"up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurring args: %{allowed_states: [\"done\"], c"},{"event":"cmd_output","timestamp":1607098308,"output":"ooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_init\""},{"event":"cmd_output","timestamp":1607098308,"output":", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state,"},{"event":"cmd_output","timestamp":1607098308,"output":" :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :sk"},{"event":"cmd_output","timestamp":1607098308,"output":"ip}\n\u001b[0m\u001b[22m\n16:11:48.654 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.Initializi"},{"event":"cmd_output","timestamp":1607098308,"output":"ngState with name Elixir.Ppl.PplBlocks.STMHandler.InitializingState :: period: 100 ms, metric_name: "},{"event":"cmd_output","timestamp":1607098308,"output":"{\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_"},{"event":"cmd_output","timestamp":1607098308,"output":"states: [\"initializing\", \"waiting\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model"},{"event":"cmd_output","timestamp":1607098308,"output":".PplBlocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id"},{"event":"cmd_output","timestamp":1607098308,"output":", :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema:"},{"event":"cmd_output","timestamp":1607098308,"output":" Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:48.654 [info] Periodic fr"},{"event":"cmd_output","timestamp":1607098308,"output":"om module Elixir.Ppl.PplBlocks.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler.Wai"},{"event":"cmd_output","timestamp":1607098308,"output":"tingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-Waiti"},{"event":"cmd_output","timestamp":1607098308,"output":"ngState\"]}, recurring args: %{allowed_states: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 0, i"},{"event":"cmd_output","timestamp":1607098308,"output":"nitial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"waiting\", publisher_cb: #Function<0.89"},{"event":"cmd_output","timestamp":1607098308,"output":"75022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :term"},{"event":"cmd_output","timestamp":1607098308,"output":"inate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.Pp"},{"event":"cmd_output","timestamp":1607098308,"output":"lBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:48.654 [info] Periodic from modu"},{"event":"cmd_output","timestamp":1607098308,"output":"le Elixir.Ppl.PplBlocks.STMHandler.RunningState with name Elixir.Ppl.PplBlocks.STMHandler.RunningSta"},{"event":"cmd_output","timestamp":1607098308,"output":"te :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningState"},{"event":"cmd_output","timestamp":1607098308,"output":"\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initia"},{"event":"cmd_output","timestamp":1607098308,"output":"l_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"running\", publisher_cb: #Function<0.2816683"},{"event":"cmd_output","timestamp":1607098308,"output":"4/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminat"},{"event":"cmd_output","timestamp":1607098308,"output":"e_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema:"},{"event":"cmd_output","timestamp":1607098308,"output":" Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:48.655 [info] Periodic fr"},{"event":"cmd_output","timestamp":1607098308,"output":"om module Elixir.Ppl.PplBlocks.STMHandler.StoppingState with name Elixir.Ppl.PplBlocks.STMHandler.St"},{"event":"cmd_output","timestamp":1607098308,"output":"oppingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-Sto"},{"event":"cmd_output","timestamp":1607098308,"output":"ppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial"},{"event":"cmd_output","timestamp":1607098308,"output":"_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"stopping\", publisher_cb: #Function<0.1042159"},{"event":"cmd_output","timestamp":1607098308,"output":"91/1 in Ppl.PplBlocks.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :termin"},{"event":"cmd_output","timestamp":1607098308,"output":"ate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schem"},{"event":"cmd_output","timestamp":1607098308,"output":"a: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:48.655 [info] Periodic "},{"event":"cmd_output","timestamp":1607098308,"output":"from module Elixir.Block.Blocks.STMHandler.InitializingState with name Elixir.Block.Blocks.STMHandle"},{"event":"cmd_output","timestamp":1607098308,"output":"r.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandl"},{"event":"cmd_output","timestamp":1607098308,"output":"er-InitializingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0,"},{"event":"cmd_output","timestamp":1607098308,"output":" initial_query: Block.Blocks.Model.Blocks, observed_state: \"initializing\", publisher_cb: :skip, repo"},{"event":"cmd_output","timestamp":1607098308,"output":": Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_"},{"event":"cmd_output","timestamp":1607098308,"output":"id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:48.655 [info] Per"},{"event":"cmd_output","timestamp":1607098308,"output":"iodic from module Elixir.Block.Blocks.STMHandler.RunningState with name Elixir.Block.Blocks.STMHandl"},{"event":"cmd_output","timestamp":1607098308,"output":"er.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-R"},{"event":"cmd_output","timestamp":1607098308,"output":"unningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec:"},{"event":"cmd_output","timestamp":1607098308,"output":" -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"running\", publisher_cb: :skip, repo:"},{"event":"cmd_output","timestamp":1607098308,"output":" Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_i"},{"event":"cmd_output","timestamp":1607098308,"output":"d], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:48.656 [info] Peri"},{"event":"cmd_output","timestamp":1607098308,"output":"odic from module Elixir.Block.Blocks.STMHandler.StoppingState with name Elixir.Block.Blocks.STMHandl"},{"event":"cmd_output","timestamp":1607098308,"output":"er.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-"},{"event":"cmd_output","timestamp":1607098308,"output":"StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, init"},{"event":"cmd_output","timestamp":1607098308,"output":"ial_query: Block.Blocks.Model.Blocks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.E"},{"event":"cmd_output","timestamp":1607098308,"output":"ctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], sche"},{"event":"cmd_output","timestamp":1607098308,"output":"ma: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:48.656 [info] Periodic fro"},{"event":"cmd_output","timestamp":1607098308,"output":"m module Elixir.Block.Tasks.STMHandler.PendingState with name Elixir.Block.Tasks.STMHandler.PendingS"},{"event":"cmd_output","timestamp":1607098308,"output":"tate :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingState\""},{"event":"cmd_output","timestamp":1607098308,"output":"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block"},{"event":"cmd_output","timestamp":1607098308,"output":".Tasks.Model.Tasks, observed_state: \"pending\", publisher_cb: :skip, repo: Block.EctoRepo, returning:"},{"event":"cmd_output","timestamp":1607098308,"output":" [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id, :build_request_id], sche"},{"event":"cmd_output","timestamp":1607098308,"output":"ma: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:48.656 [info] Periodic from "},{"event":"cmd_output","timestamp":1607098308,"output":"module Elixir.Block.Tasks.STMHandler.RunningState with name Elixir.Block.Tasks.STMHandler.RunningSta"},{"event":"cmd_output","timestamp":1607098308,"output":"te :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningState\"]}"},{"event":"cmd_output","timestamp":1607098308,"output":", recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_q"},{"event":"cmd_output","timestamp":1607098308,"output":"uery: Block.Tasks.Model.Tasks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo,"},{"event":"cmd_output","timestamp":1607098308,"output":" returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Bloc"},{"event":"cmd_output","timestamp":1607098308,"output":"k.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:48.657 [info] Periodic from module E"},{"event":"cmd_output","timestamp":1607098308,"output":"lixir.Block.Tasks.STMHandler.StoppingState with name Elixir.Block.Tasks.STMHandler.StoppingState :: "},{"event":"cmd_output","timestamp":1607098308,"output":"period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]}, rec"},{"event":"cmd_output","timestamp":1607098308,"output":"urring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Task"},{"event":"cmd_output","timestamp":1607098308,"output":"s.Model.Tasks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:i"},{"event":"cmd_output","timestamp":1607098308,"output":"d, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.T"},{"event":"cmd_output","timestamp":1607098308,"output":"asks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:48.770 [info] ppl_id: a2d26f94-7fa2-4f2e-a813-91165"},{"event":"cmd_output","timestamp":1607098308,"output":"cc5b66f, type: PplRequests, event: persisted source_args for pipeline: a2d26f94-7fa2-4f2e-a813-91165"},{"event":"cmd_output","timestamp":1607098308,"output":"cc5b66f, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098308,"output":"16:11:48.773 [info] ppl_id: a2d26f94-7fa2-4f2e-a813-91165cc5b66f, type: PplSubInits, state: fetchin"},{"event":"cmd_output","timestamp":1607098308,"output":"g, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90)"},{"event":"cmd_output","timestamp":1607098308,"output":", \n\u001b[0m\u001b[22m\n16:11:48.795 [info] ppl_id: a2d26f94-7fa2-4f2e-a813-91165cc5b66f, type: PplSubInits,"},{"event":"cmd_output","timestamp":1607098308,"output":" state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_"},{"event":"cmd_output","timestamp":1607098308,"output":"state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:48.822 [info] ppl_id: a2d26f94-7fa2-4f2e-a813-91165cc5b66f,"},{"event":"cmd_output","timestamp":1607098308,"output":" type: PplRequests, event: persisted definition for request with request_token: 698cb3ec-364b-11eb-9"},{"event":"cmd_output","timestamp":1607098308,"output":"9f1-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), "},{"event":"cmd_output","timestamp":1607098308,"output":"\n\u001b[0m\u001b[22m\n16:11:48.825 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Sc"},{"event":"cmd_output","timestamp":1607098308,"output":"hema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:11:48.823880], name: \"master-.semaph"},{"event":"cmd_output","timestamp":1607098308,"output":"ore/semaphore.yml\", organization_id: \"bfeb9884-9d59-4ee8-8aa8-763f1bd9ebd1\", project_id: \"b681bcec-f"},{"event":"cmd_output","timestamp":1607098308,"output":"6bd-4742-80ad-0e3e003e6ad1\", queue_id: \"5d33b085-27e9-42e8-b603-b90fbeda1afd\", scope: \"project\", upd"},{"event":"cmd_output","timestamp":1607098308,"output":"ated_at: ~N[2020-12-04 16:11:48.823891], user_generated: false}}\n\u001b[0m\u001b[22m\n16:11:48.830 [info] ev"},{"event":"cmd_output","timestamp":1607098308,"output":"ent: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098308,"output":"m\n16:11:48.830 [info] ppl_id: a2d26f94-7fa2-4f2e-a813-91165cc5b66f, type: PplBlocks, block_index: "},{"event":"cmd_output","timestamp":1607098308,"output":"0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler"},{"event":"cmd_output","timestamp":1607098308,"output":".RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:11:48.832 [info] ppl_id: a2d26f94-7fa2-4f2e-a813"},{"event":"cmd_output","timestamp":1607098308,"output":"-91165cc5b66f, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_coun"},{"event":"cmd_output","timestamp":1607098308,"output":"t: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:48.843 [info] ppl_"},{"event":"cmd_output","timestamp":1607098308,"output":"id: a2d26f94-7fa2-4f2e-a813-91165cc5b66f, type: PplBlocks, block_index: 0, state: waiting, event: ex"},{"event":"cmd_output","timestamp":1607098308,"output":"it_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098308,"output":"m\n16:11:48.843 [info] ppl_id: a2d26f94-7fa2-4f2e-a813-91165cc5b66f, type: Ppls, state: pending, ev"},{"event":"cmd_output","timestamp":1607098308,"output":"ent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b"},{"event":"cmd_output","timestamp":1607098308,"output":"[0m\u001b[22m\n16:11:48.854 [info] ppl_id: a2d26f94-7fa2-4f2e-a813-91165cc5b66f, type: Ppls, state: queu"},{"event":"cmd_output","timestamp":1607098308,"output":"ing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L9"},{"event":"cmd_output","timestamp":1607098308,"output":"0), \n\u001b[0m\u001b[22m\n16:11:48.864 [info] ppl_id: a2d26f94-7fa2-4f2e-a813-91165cc5b66f, type: Ppls, stat"},{"event":"cmd_output","timestamp":1607098308,"output":"e: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chan"},{"event":"cmd_output","timestamp":1607098308,"output":"ge/1(L90), \n\u001b[0m\u001b[22m\n16:11:48.874 [info] PplBlocks WaitingState STM is scheduling block 0 from p"},{"event":"cmd_output","timestamp":1607098308,"output":"ipeline: \"a2d26f94-7fa2-4f2e-a813-91165cc5b66f\"\n\u001b[0m\u001b[22m\n16:11:48.880 [info] block_id: d4cfa8cf-"},{"event":"cmd_output","timestamp":1607098308,"output":"243f-42e4-88f0-aa2458af460d, type: BlockRequests, event: persisted block run request from ppl a2d26f"},{"event":"cmd_output","timestamp":1607098308,"output":"94-7fa2-4f2e-a813-91165cc5b66f for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQu"},{"event":"cmd_output","timestamp":1607098308,"output":"eries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:11:48.889 [info] block_id: d4cfa8cf-243f-42e4-88f0-a"},{"event":"cmd_output","timestamp":1607098308,"output":"a2458af460d, type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098308,"output":"ir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:11:48.893 [info] Block 0 of pipe"},{"event":"cmd_output","timestamp":1607098308,"output":"line with id: a2d26f94-7fa2-4f2e-a813-91165cc5b66f scheduled in block service with id: : \"d4cfa8cf-2"},{"event":"cmd_output","timestamp":1607098308,"output":"43f-42e4-88f0-aa2458af460d\"\n\u001b[0m\u001b[22m\n16:11:48.895 [info] block_id: d4cfa8cf-243f-42e4-88f0-aa245"},{"event":"cmd_output","timestamp":1607098308,"output":"8af460d, type: BlockRequests, event: persisted build and sub_ppl details for block_request: d4cfa8cf"},{"event":"cmd_output","timestamp":1607098308,"output":"-243f-42e4-88f0-aa2458af460d, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_b"},{"event":"cmd_output","timestamp":1607098308,"output":"uild/2(L41), \n\u001b[0m\u001b[22m\n16:11:48.896 [info] ppl_id: a2d26f94-7fa2-4f2e-a813-91165cc5b66f, type: P"},{"event":"cmd_output","timestamp":1607098308,"output":"plBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098308,"output":"Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:48.897 [info] block_id: d4cfa8cf-243f-4"},{"event":"cmd_output","timestamp":1607098308,"output":"2e4-88f0-aa2458af460d, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098308,"output":"r.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:11:48.899 [info] block"},{"event":"cmd_output","timestamp":1607098308,"output":"_id: d4cfa8cf-243f-42e4-88f0-aa2458af460d, type: Blocks, state: running, event: exit_scheduling, rec"},{"event":"cmd_output","timestamp":1607098308,"output":"overy_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:48.914 [i"},{"event":"cmd_output","timestamp":1607098308,"output":"nfo] block_id: d4cfa8cf-243f-42e4-88f0-aa2458af460d, type: Tasks, state: running, event: exit_sched"},{"event":"cmd_output","timestamp":1607098308,"output":"uling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11"},{"event":"cmd_output","timestamp":1607098308,"output":":48.984 [info] block_id: d4cfa8cf-243f-42e4-88f0-aa2458af460d, type: Tasks, state: done, event: exi"},{"event":"cmd_output","timestamp":1607098308,"output":"t_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098308,"output":"\n16:11:48.991 [info] block_id: d4cfa8cf-243f-42e4-88f0-aa2458af460d, type: Blocks, state: done, ev"},{"event":"cmd_output","timestamp":1607098308,"output":"ent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b"},{"event":"cmd_output","timestamp":1607098309,"output":"[0m\u001b[22m\n16:11:48.999 [info] ppl_id: a2d26f94-7fa2-4f2e-a813-91165cc5b66f, block_id: d4cfa8cf-243f"},{"event":"cmd_output","timestamp":1607098309,"output":"-42e4-88f0-aa2458af460d, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_s"},{"event":"cmd_output","timestamp":1607098309,"output":"cheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098309,"output":"6:11:49.012 [info] ppl_id: a2d26f94-7fa2-4f2e-a813-91165cc5b66f, type: Ppls, state: done, result: p"},{"event":"cmd_output","timestamp":1607098309,"output":"assed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1("},{"event":"cmd_output","timestamp":1607098309,"output":"L90), \n\u001b[0m\u001b[32m\r * test when in prod environment => return compilation definition with proper env"},{"event":"cmd_output","timestamp":1607098309,"output":" vars set (514.9ms)\u001b[0m\n\nPpl.PplsReviser.Test\n * test if implicit queue already exists new one i"},{"event":"cmd_output","timestamp":1607098309,"output":"s not created\r * test if implicit queue already exists new one is not created (skipped)\n * test w"},{"event":"cmd_output","timestamp":1607098309,"output":"hen multiple queue defintions are provided, first one which condition is met is used\r * test when m"},{"event":"cmd_output","timestamp":1607098309,"output":"ultiple queue defintions are provided, first one which condition is met is used (skipped)\n * test "},{"event":"cmd_output","timestamp":1607098309,"output":"when there is no queue def in yml spec, implicit queue is set\r * test when there is no queue def in"},{"event":"cmd_output","timestamp":1607098309,"output":" yml spec, implicit queue is set (skipped)\n * test if user generated project queue already exists "},{"event":"cmd_output","timestamp":1607098309,"output":"new one is not created\r * test if user generated project queue already exists new one is not create"},{"event":"cmd_output","timestamp":1607098309,"output":"d (skipped)\n * test just queue name in yml spec -> project scoped user queue is set\r * test just "},{"event":"cmd_output","timestamp":1607098309,"output":"queue name in yml spec -> project scoped user queue is set (skipped)\n * test if user generated org"},{"event":"cmd_output","timestamp":1607098309,"output":"anization queue already exists new one is not created\r * test if user generated organization queue "},{"event":"cmd_output","timestamp":1607098309,"output":"already exists new one is not created (skipped)\n * test when multiple queue defintions are provide"},{"event":"cmd_output","timestamp":1607098309,"output":"d but non of the conditons is met, implicit queue is used\r * test when multiple queue defintions ar"},{"event":"cmd_output","timestamp":1607098309,"output":"e provided but non of the conditons is met, implicit queue is used (skipped)\n * test if only proce"},{"event":"cmd_output","timestamp":1607098309,"output":"ssing type is set in queue def, implicit queue is used\r * test if only processing type is set in qu"},{"event":"cmd_output","timestamp":1607098309,"output":"eue def, implicit queue is used (skipped)\n * test organization scoped queue from yml spec is prope"},{"event":"cmd_output","timestamp":1607098309,"output":"rly created in DB\r * test organization scoped queue from yml spec is properly created in DB (skippe"},{"event":"cmd_output","timestamp":1607098309,"output":"d)\n\nPpl.PplSubInits.STMHandler.Compilation.AtifactsClient.Test\n * test when time-out occures in "},{"event":"cmd_output","timestamp":1607098309,"output":"get_signed_url call => error is returned\r * test when time-out occures in get_signed_url call => er"},{"event":"cmd_output","timestamp":1607098309,"output":"ror is returned (skipped)\n * test when ARTIFACTHUB URL is invalid in get_signed_url call => timeou"},{"event":"cmd_output","timestamp":1607098309,"output":"t occures\r * test when ARTIFACTHUB URL is invalid in get_signed_url call => timeout occures (skippe"},{"event":"cmd_output","timestamp":1607098309,"output":"d)\n * test when get_signed_url is called => ArtifactHub's response is processed correctly\r * test"},{"event":"cmd_output","timestamp":1607098309,"output":" when get_signed_url is called => ArtifactHub's response is processed correctly (skipped)\n * test "},{"event":"cmd_output","timestamp":1607098309,"output":"when YAML file is fetched correctly => acquire_definition() returns definition map\r * test when YAM"},{"event":"cmd_output","timestamp":1607098309,"output":"L file is fetched correctly => acquire_definition() returns definition map (skipped)\n\nPpl.PplReque"},{"event":"cmd_output","timestamp":1607098309,"output":"sts.Model.PplRequestsQueries.Test\n * test insert pipeline request\r * test insert pipeline request"},{"event":"cmd_output","timestamp":1607098309,"output":" (skipped)\n * test get by id\r * test get by id (skipped)\n * test latest_ppl_from_subtree()\r * "},{"event":"cmd_output","timestamp":1607098309,"output":"test latest_ppl_from_subtree() (skipped)\n * test client_secret and access_token fields are encrypt"},{"event":"cmd_output","timestamp":1607098309,"output":"ed in DB\r * test client_secret and access_token fields are encrypted in DB (skipped)\n * test can "},{"event":"cmd_output","timestamp":1607098309,"output":"not insert pipeline request without request_token\r * test can not insert pipeline request without r"},{"event":"cmd_output","timestamp":1607098309,"output":"equest_token (skipped)\n * test delete_pipeline() deletes pipeline and all other related structures"},{"event":"cmd_output","timestamp":1607098309,"output":"\r * test delete_pipeline() deletes pipeline and all other related structures (skipped)\n * test ge"},{"event":"cmd_output","timestamp":1607098309,"output":"t by request_token - success\r * test get by request_token - success (skipped)\n * test get by requ"},{"event":"cmd_output","timestamp":1607098309,"output":"est_token - failure: not found\r * test get by request_token - failure: not found (skipped)\n * tes"},{"event":"cmd_output","timestamp":1607098309,"output":"t cannot insert 2 pipeline requests with the same request_token\r * test cannot insert 2 pipeline re"},{"event":"cmd_output","timestamp":1607098309,"output":"quests with the same request_token (skipped)\n\nPpl.PplRequests.Model.PplRequests.Test\n * doctest "},{"event":"cmd_output","timestamp":1607098309,"output":"Ppl.PplRequests.Model.PplRequests.changeset_definition/2 (1)\r * doctest Ppl.PplRequests.Model.PplRe"},{"event":"cmd_output","timestamp":1607098309,"output":"quests.changeset_definition/2 (1) (skipped)\n * doctest Ppl.PplRequests.Model.PplRequests.changeset"},{"event":"cmd_output","timestamp":1607098309,"output":"_source/2 (6)\r * doctest Ppl.PplRequests.Model.PplRequests.changeset_source/2 (6) (skipped)\n * te"},{"event":"cmd_output","timestamp":1607098309,"output":"st valid pipeline request is stored in DB and can be fetched by id\r * test valid pipeline request is "},{"event":"cmd_output","timestamp":1607098309,"output":"stored in DB and can be fetched by id (skipped)\n * doctest Ppl.PplRequests.Model.PplRequests.chang"},{"event":"cmd_output","timestamp":1607098309,"output":"eset_request/2 (5)\r * doctest Ppl.PplRequests.Model.PplRequests.changeset_request/2 (5) (skipped)\n"},{"event":"cmd_output","timestamp":1607098309,"output":" * test request_token cannot be empty string\r * test request_token cannot be empty string (skipped"},{"event":"cmd_output","timestamp":1607098309,"output":")\n * doctest Ppl.PplRequests.Model.PplRequests.changeset_definition/2 (2)\r * doctest Ppl.PplReque"},{"event":"cmd_output","timestamp":1607098309,"output":"sts.Model.PplRequests.changeset_definition/2 (2) (skipped)\n * doctest Ppl.PplRequests.Model.PplReq"},{"event":"cmd_output","timestamp":1607098309,"output":"uests.changeset_request/2 (3)\r * doctest Ppl.PplRequests.Model.PplRequests.changeset_request/2 (3) "},{"event":"cmd_output","timestamp":1607098309,"output":"(skipped)\n * doctest Ppl.PplRequests.Model.PplRequests.changeset_source/2 (7)\r * doctest Ppl.PplR"},{"event":"cmd_output","timestamp":1607098309,"output":"equests.Model.PplRequests.changeset_source/2 (7) (skipped)\n * test request_token is required\r * t"},{"event":"cmd_output","timestamp":1607098309,"output":"est request_token is required (skipped)\n * doctest Ppl.PplRequests.Model.PplRequests.changeset_req"},{"event":"cmd_output","timestamp":1607098309,"output":"uest/2 (4)\r * doctest Ppl.PplRequests.Model.PplRequests.changeset_request/2 (4) (skipped)\n * test"},{"event":"cmd_output","timestamp":1607098309,"output":" pipeline request without 'blocks' is invalid\r * test pipeline request without 'blocks' is invalid (s"},{"event":"cmd_output","timestamp":1607098309,"output":"kipped)\n * test pipeline request with empty 'blocks' list is invalid\r * test pipeline request with "},{"event":"cmd_output","timestamp":1607098309,"output":"empty 'blocks' list is invalid (skipped)\n * test request_token can be any non empty string\r * tes"},{"event":"cmd_output","timestamp":1607098309,"output":"t request_token can be any non empty string (skipped)\n\nPpl.PplOrigins.Model.PplOrigins.Test\n * d"},{"event":"cmd_output","timestamp":1607098309,"output":"octest Ppl.PplOrigins.Model.PplOrigins.changeset/2 (2)\r * doctest Ppl.PplOrigins.Model.PplOrigins.c"},{"event":"cmd_output","timestamp":1607098309,"output":"hangeset/2 (2) (skipped)\n * doctest Ppl.PplOrigins.Model.PplOrigins.changeset/2 (1)\r * doctest Pp"},{"event":"cmd_output","timestamp":1607098309,"output":"l.PplOrigins.Model.PplOrigins.changeset/2 (1) (skipped)\n * doctest Ppl.PplOrigins.Model.PplOrigins"},{"event":"cmd_output","timestamp":1607098309,"output":".changeset_definition/2 (3)\r * doctest Ppl.PplOrigins.Model.PplOrigins.changeset_definition/2 (3) ("},{"event":"cmd_output","timestamp":1607098309,"output":"skipped)\n * doctest Ppl.PplOrigins.Model.PplOrigins.changeset_definition/2 (4)\r * doctest Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098309,"output":"Origins.Model.PplOrigins.changeset_definition/2 (4) (skipped)\n\nPpl.PplOrigins.Model.PplOriginsQuer"},{"event":"cmd_output","timestamp":1607098309,"output":"ies.Test\n * test insert fails when pipeline does not exist\r * test insert fails when pipeline doe"},{"event":"cmd_output","timestamp":1607098309,"output":"s not exist (skipped)\n * test insert passes when pipeline exists\r * test insert passes when pipel"},{"event":"cmd_output","timestamp":1607098309,"output":"ine exists (skipped)\n * test insert is idempotent in regeard to ppl_id\r * test insert is idempote"},{"event":"cmd_output","timestamp":1607098309,"output":"nt in regeard to ppl_id (skipped)\n * test save_definition passes when given valid params\r * test "},{"event":"cmd_output","timestamp":1607098309,"output":"save_definition passes when given valid params (skipped)\n\nPpl.PplBlocks.Termination.Test\n * test"},{"event":"cmd_output","timestamp":1607098309,"output":" stop ppl-blk in waiting state\r * test stop ppl-blk in waiting state (skipped)\n * test cancel ppl"},{"event":"cmd_output","timestamp":1607098309,"output":"-blk in waiting state\r * test cancel ppl-blk in waiting state (skipped)\n * test stop ppl-blk in r"},{"event":"cmd_output","timestamp":1607098309,"output":"unning state\u001b[22m\n16:11:49.139 [info] ppl_id: 6d849f30-bdb2-4b05-af37-237b55110e48, type: PplReque"},{"event":"cmd_output","timestamp":1607098309,"output":"sts, event: persisted schedule request with request_token: 69db8a94-364b-11eb-9109-5254005464e2, ori"},{"event":"cmd_output","timestamp":1607098309,"output":"gin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:11:49."},{"event":"cmd_output","timestamp":1607098309,"output":"143 [info] ppl_id: 6d849f30-bdb2-4b05-af37-237b55110e48, type: PplRequests, event: persisted defini"},{"event":"cmd_output","timestamp":1607098309,"output":"tion for request with request_token: 69db8a94-364b-11eb-9109-5254005464e2, origin: Elixir.Ppl.PplReq"},{"event":"cmd_output","timestamp":1607098309,"output":"uests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:11:49.149 [info] ppl_id: 6"},{"event":"cmd_output","timestamp":1607098309,"output":"d849f30-bdb2-4b05-af37-237b55110e48, type: Ppls, state: initializing, event: initializing, recovery_"},{"event":"cmd_output","timestamp":1607098309,"output":"count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:11:49."},{"event":"cmd_output","timestamp":1607098309,"output":"155 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.WaitingState with name Elixir.Ppl.P"},{"event":"cmd_output","timestamp":1607098309,"output":"plBlocks.STMHandler.WaitingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppl"},{"event":"cmd_output","timestamp":1607098309,"output":"Blocks-STMHandler-WaitingState\"]}, recurring args: %{allowed_states: [\"waiting\", \"running\", \"done\"],"},{"event":"cmd_output","timestamp":1607098309,"output":" cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"waiting\", publi"},{"event":"cmd_output","timestamp":1607098309,"output":"sher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>, repo: Ppl.EctoRepo,"},{"event":"cmd_output","timestamp":1607098309,"output":" returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block"},{"event":"cmd_output","timestamp":1607098310,"output":"_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:50.160 [in"},{"event":"cmd_output","timestamp":1607098310,"output":"fo] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"6d849f30-bdb2-4b05-af37-237b55"},{"event":"cmd_output","timestamp":1607098310,"output":"110e48\"\n\u001b[0m\u001b[22m\n16:11:50.172 [info] block_id: 6f0afc08-3d13-4d88-9276-038d06fd843a, type: Block"},{"event":"cmd_output","timestamp":1607098310,"output":"Requests, event: persisted block run request from ppl 6d849f30-bdb2-4b05-af37-237b55110e48 for block"},{"event":"cmd_output","timestamp":1607098310,"output":" 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098310,"output":"2m\n16:11:50.175 [info] block_id: 6f0afc08-3d13-4d88-9276-038d06fd843a, type: Blocks, state: initia"},{"event":"cmd_output","timestamp":1607098310,"output":"lizing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.inse"},{"event":"cmd_output","timestamp":1607098310,"output":"rt/1(L43), \n\u001b[0m\u001b[22m\n16:11:50.177 [info] Block 0 of pipeline with id: 6d849f30-bdb2-4b05-af37-23"},{"event":"cmd_output","timestamp":1607098310,"output":"7b55110e48 scheduled in block service with id: : \"6f0afc08-3d13-4d88-9276-038d06fd843a\"\n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098310,"output":"16:11:50.180 [info] ppl_id: 6d849f30-bdb2-4b05-af37-237b55110e48, type: PplBlocks, block_index: 0, "},{"event":"cmd_output","timestamp":1607098310,"output":"state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_"},{"event":"cmd_output","timestamp":1607098310,"output":"change/1(L90), \n\u001b[0m\u001b[22m\n16:11:50.666 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandle"},{"event":"cmd_output","timestamp":1607098310,"output":"r.RunningState with name Elixir.Ppl.PplBlocks.STMHandler.RunningState :: period: 1000 ms, metric_nam"},{"event":"cmd_output","timestamp":1607098310,"output":"e: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, recurring args: %{allowed_st"},{"event":"cmd_output","timestamp":1607098310,"output":"ates: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplB"},{"event":"cmd_output","timestamp":1607098310,"output":"locks, observed_state: \"running\", publisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHandler.R"},{"event":"cmd_output","timestamp":1607098310,"output":"unningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :"},{"event":"cmd_output","timestamp":1607098310,"output":"result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, t"},{"event":"cmd_output","timestamp":1607098311,"output":"ask_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:51.675 [info] ppl_id: 6d849f30-bdb2-4b05-af37-237b55110e48"},{"event":"cmd_output","timestamp":1607098311,"output":", block_id: 6f0afc08-3d13-4d88-9276-038d06fd843a, type: PplBlocks, block_index: 0, state: stopping, "},{"event":"cmd_output","timestamp":1607098311,"output":"event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \r"},{"event":"cmd_output","timestamp":1607098312,"output":"\n\u001b[0m\u001b[22m\n16:11:52.171 [info] Periodic from module Elixir.Block.Blocks.STMHandler.InitializingSta"},{"event":"cmd_output","timestamp":1607098312,"output":"te with name Elixir.Block.Blocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl."},{"event":"cmd_output","timestamp":1607098312,"output":"beholder-wake_up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states:"},{"event":"cmd_output","timestamp":1607098312,"output":" [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Blocks.Model.Blocks, observed_state:"},{"event":"cmd_output","timestamp":1607098312,"output":" \"initializing\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :up"},{"event":"cmd_output","timestamp":1607098312,"output":"dated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :"},{"event":"cmd_output","timestamp":1607098312,"output":"skip}\n\u001b[0m\u001b[22m\n16:11:52.172 [info] Periodic from module Elixir.Block.Blocks.STMHandler.RunningSt"},{"event":"cmd_output","timestamp":1607098312,"output":"ate with name Elixir.Block.Blocks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beho"},{"event":"cmd_output","timestamp":1607098312,"output":"lder-wake_up\", [\"Block-Blocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"runnin"},{"event":"cmd_output","timestamp":1607098312,"output":"g\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_st"},{"event":"cmd_output","timestamp":1607098312,"output":"ate: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :upd"},{"event":"cmd_output","timestamp":1607098312,"output":"ated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :s"},{"event":"cmd_output","timestamp":1607098312,"output":"kip}\n\u001b[0m\u001b[22m\n16:11:52.174 [info] Periodic from module Elixir.Block.Blocks.STMHandler.StoppingSt"},{"event":"cmd_output","timestamp":1607098312,"output":"ate with name Elixir.Block.Blocks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beh"},{"event":"cmd_output","timestamp":1607098312,"output":"older-wake_up\", [\"Block-Blocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stop"},{"event":"cmd_output","timestamp":1607098312,"output":"ping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"sto"},{"event":"cmd_output","timestamp":1607098312,"output":"pping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at,"},{"event":"cmd_output","timestamp":1607098312,"output":" :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b["},{"event":"cmd_output","timestamp":1607098312,"output":"0m\u001b[22m\n16:11:52.175 [info] Periodic from module Elixir.Block.Tasks.STMHandler.PendingState with n"},{"event":"cmd_output","timestamp":1607098312,"output":"ame Elixir.Block.Tasks.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_u"},{"event":"cmd_output","timestamp":1607098312,"output":"p\", [\"Block-Tasks-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"],"},{"event":"cmd_output","timestamp":1607098312,"output":" cooling_time_sec: 0, initial_query: Block.Tasks.Model.Tasks, observed_state: \"pending\", publisher_c"},{"event":"cmd_output","timestamp":1607098312,"output":"b: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_"},{"event":"cmd_output","timestamp":1607098312,"output":"count, :block_id, :build_request_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m"},{"event":"cmd_output","timestamp":1607098312,"output":"\u001b[22m\n16:11:52.177 [info] Periodic from module Elixir.Block.Tasks.STMHandler.RunningState with nam"},{"event":"cmd_output","timestamp":1607098312,"output":"e Elixir.Block.Tasks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\""},{"event":"cmd_output","timestamp":1607098312,"output":", [\"Block-Tasks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\""},{"event":"cmd_output","timestamp":1607098312,"output":", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"running\", "},{"event":"cmd_output","timestamp":1607098312,"output":"publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state,"},{"event":"cmd_output","timestamp":1607098312,"output":" :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098312,"output":"6:11:52.178 [info] Periodic from module Elixir.Block.Tasks.STMHandler.StoppingState with name Elixi"},{"event":"cmd_output","timestamp":1607098312,"output":"r.Block.Tasks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Bl"},{"event":"cmd_output","timestamp":1607098312,"output":"ock-Tasks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooli"},{"event":"cmd_output","timestamp":1607098312,"output":"ng_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"stopping\", publisher_cb: :"},{"event":"cmd_output","timestamp":1607098312,"output":"skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_coun"},{"event":"cmd_output","timestamp":1607098312,"output":"t, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:52.180 [in"},{"event":"cmd_output","timestamp":1607098312,"output":"fo] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.StoppingState with name Elixir.Ppl.PplBloc"},{"event":"cmd_output","timestamp":1607098312,"output":"ks.STMHandler.StoppingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlock"},{"event":"cmd_output","timestamp":1607098312,"output":"s-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_"},{"event":"cmd_output","timestamp":1607098312,"output":"sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"stopping\", publisher_cb: #Fu"},{"event":"cmd_output","timestamp":1607098312,"output":"nction<0.104215991/1 in Ppl.PplBlocks.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returnin"},{"event":"cmd_output","timestamp":1607098312,"output":"g: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :"},{"event":"cmd_output","timestamp":1607098312,"output":"block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:52.285 ["},{"event":"cmd_output","timestamp":1607098312,"output":"info] block_id: 6f0afc08-3d13-4d88-9276-038d06fd843a, type: Blocks, state: done, event: exit_schedu"},{"event":"cmd_output","timestamp":1607098312,"output":"ling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:"},{"event":"cmd_output","timestamp":1607098312,"output":"52.294 [info] ppl_id: 6d849f30-bdb2-4b05-af37-237b55110e48, block_id: 6f0afc08-3d13-4d88-9276-038d0"},{"event":"cmd_output","timestamp":1607098312,"output":"6fd843a, type: PplBlocks, block_index: 0, state: done, result: stopped, event: exit_scheduling, reco"},{"event":"cmd_output","timestamp":1607098312,"output":"very_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test stop ppl"},{"event":"cmd_output","timestamp":1607098312,"output":"-blk in running state (3600.9ms)\u001b[0m\n\nPpl.Looper.PplBlocks.StateTransition.Test\n * test PplBlock"},{"event":"cmd_output","timestamp":1607098312,"output":"s looper transitions\u001b[22m\n16:11:52.767 [info] Request: 'run: %{\"branch_id\" => \"f6c2a832-9549-4e04-"},{"event":"cmd_output","timestamp":1607098312,"output":"a0a1-e20c86a9b269\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"semapho"},{"event":"cmd_output","timestamp":1607098312,"output":"re.yml\", \"hook_id\" => \"6c051d58-364b-11eb-af66-5254005464e2\", \"label\" => \"master\", \"organization_id\""},{"event":"cmd_output","timestamp":1607098312,"output":" => \"d4defb82-505f-4ad4-b9c2-037e6a23617b\", \"owner\" => \"rt\", \"project_id\" => \"89721964-ff3c-484f-92d"},{"event":"cmd_output","timestamp":1607098312,"output":"4-6d15de9851fa\", \"repo_name\" => \"2_basic\", \"request_token\" => \"6c050caa-364b-11eb-812f-5254005464e2\""},{"event":"cmd_output","timestamp":1607098312,"output":", \"requester_id\" => \"72478eba-fdf1-4671-9b0f-67f4d8ebe396\", \"service\" => \"local\", \"suppressed_attrib"},{"event":"cmd_output","timestamp":1607098312,"output":"utes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"6a413b30-9e66-4ccd-b96f-bc8e6f72a6ba\", \"work"},{"event":"cmd_output","timestamp":1607098312,"output":"ing_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:11:52.777 [info] ppl_id: 6208dfb0-c6a0-47d3-873b-c1e5f31f2"},{"event":"cmd_output","timestamp":1607098312,"output":"b24, type: PplRequests, event: persisted schedule request with request_token: 6c050caa-364b-11eb-812"},{"event":"cmd_output","timestamp":1607098312,"output":"f-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b"},{"event":"cmd_output","timestamp":1607098312,"output":"[0m\u001b[22m\n16:11:52.781 [info] ppl_id: 6208dfb0-c6a0-47d3-873b-c1e5f31f2b24, type: Ppls, state: init"},{"event":"cmd_output","timestamp":1607098312,"output":"ializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_"},{"event":"cmd_output","timestamp":1607098312,"output":"response/2(L124), \n\u001b[0m\u001b[22m\n16:11:52.787 [info] Project 89721964-ff3c-484f-92d4-6d15de9851fa and"},{"event":"cmd_output","timestamp":1607098312,"output":" branch masterlatest_wf details updated: \"wf_id: 6a413b30-9e66-4ccd-b96f-bc8e6f72a6ba, wf_number: 1\""},{"event":"cmd_output","timestamp":1607098312,"output":"\n\u001b[0m\u001b[22m\n16:11:52.791 [info] Persisted ppl_sub_init for pipeline with ppl_id: 6208dfb0-c6a0-47d"},{"event":"cmd_output","timestamp":1607098312,"output":"3-873b-c1e5f31f2b24: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pi"},{"event":"cmd_output","timestamp":1607098312,"output":"peline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 149, in_scheduling: false, ini"},{"event":"cmd_output","timestamp":1607098312,"output":"t_type: \"regular\", inserted_at: ~N[2020-12-04 16:11:52.787492], pipeline_requests: #Ecto.Association"},{"event":"cmd_output","timestamp":1607098312,"output":".NotLoaded, ppl_id: \"6208dfb0-c6a0-47d3-873b-c1e5f31f2"},{"event":"cmd_output","timestamp":1607098312,"output":"b24\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, "},{"event":"cmd_output","timestamp":1607098312,"output":"terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:11:52.787501]}\n\u001b[0m\u001b[22m\n16:11:52.819 [i"},{"event":"cmd_output","timestamp":1607098312,"output":"nfo] ppl_id: 6208dfb0-c6a0-47d3-873b-c1e5f31f2b24, type: PplRequests, event: persisted definition f"},{"event":"cmd_output","timestamp":1607098312,"output":"or request with request_token: 6c050caa-364b-11eb-812f-5254005464e2, origin: Elixir.Ppl.PplRequests."},{"event":"cmd_output","timestamp":1607098312,"output":"Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:11:52.821 [info] ppl_id: 6208dfb"},{"event":"cmd_output","timestamp":1607098312,"output":"0-c6a0-47d3-873b-c1e5f31f2b24, type: PplRequests, event: persisted source_args for pipeline: 6208dfb"},{"event":"cmd_output","timestamp":1607098312,"output":"0-c6a0-47d3-873b-c1e5f31f2b24, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source"},{"event":"cmd_output","timestamp":1607098312,"output":"/2(L89), \n\u001b[0m\u001b[22m\n16:11:52.832 [info] Periodic from module Elixir.Block.Blocks.STMHandler.Initi"},{"event":"cmd_output","timestamp":1607098312,"output":"alizingState with name Elixir.Block.Blocks.STMHandler.InitializingState :: period: 100 ms, metric_na"},{"event":"cmd_output","timestamp":1607098312,"output":"me: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, recurring args: %{allow"},{"event":"cmd_output","timestamp":1607098312,"output":"ed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Blocks.Model.Blocks, obser"},{"event":"cmd_output","timestamp":1607098312,"output":"ved_state: \"initializing\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_re"},{"event":"cmd_output","timestamp":1607098312,"output":"quest, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_sup"},{"event":"cmd_output","timestamp":1607098312,"output":"ervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:52.833 [info] Periodic from module Elixir.Block.Blocks.STMHandler"},{"event":"cmd_output","timestamp":1607098312,"output":".RunningState with name Elixir.Block.Blocks.STMHandler.RunningState :: period: 100 ms, metric_name: "},{"event":"cmd_output","timestamp":1607098312,"output":"{\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states"},{"event":"cmd_output","timestamp":1607098312,"output":": [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, o"},{"event":"cmd_output","timestamp":1607098312,"output":"bserved_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_req"},{"event":"cmd_output","timestamp":1607098312,"output":"uest, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supe"},{"event":"cmd_output","timestamp":1607098312,"output":"rvisor: :skip}\n\u001b[0m\u001b[22m\n16:11:52.834 [info] Periodic from module Elixir.Block.Tasks.STMHandler.P"},{"event":"cmd_output","timestamp":1607098312,"output":"endingState with name Elixir.Block.Tasks.STMHandler.PendingState :: period: 100 ms, metric_name: {\"P"},{"event":"cmd_output","timestamp":1607098312,"output":"pl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\""},{"event":"cmd_output","timestamp":1607098312,"output":"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Tasks.Model.Tasks, observed_state: \"pen"},{"event":"cmd_output","timestamp":1607098312,"output":"ding\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, "},{"event":"cmd_output","timestamp":1607098312,"output":":state, :recovery_count, :block_id, :build_request_id], schema: Block.Tasks.Model.Tasks, task_superv"},{"event":"cmd_output","timestamp":1607098312,"output":"isor: :skip}\n\u001b[0m\u001b[22m\n16:11:52.835 [info] Periodic from module Elixir.Block.Tasks.STMHandler.Run"},{"event":"cmd_output","timestamp":1607098312,"output":"ningState with name Elixir.Block.Tasks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl"},{"event":"cmd_output","timestamp":1607098312,"output":".beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"ru"},{"event":"cmd_output","timestamp":1607098312,"output":"nning\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_"},{"event":"cmd_output","timestamp":1607098312,"output":"state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :u"},{"event":"cmd_output","timestamp":1607098312,"output":"pdated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :s"},{"event":"cmd_output","timestamp":1607098312,"output":"kip}\n\u001b[0m\u001b[22m\n16:11:52.835 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.WaitingSt"},{"event":"cmd_output","timestamp":1607098312,"output":"ate with name Elixir.Ppl.PplBlocks.STMHandler.WaitingState :: period: 1000 ms, metric_name: {\"Ppl.be"},{"event":"cmd_output","timestamp":1607098312,"output":"holder-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurring args: %{allowed_states: [\"wai"},{"event":"cmd_output","timestamp":1607098312,"output":"ting\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observ"},{"event":"cmd_output","timestamp":1607098312,"output":"ed_state: \"waiting\", publisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.ar"},{"event":"cmd_output","timestamp":1607098312,"output":"gs/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recov"},{"event":"cmd_output","timestamp":1607098312,"output":"ery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b"},{"event":"cmd_output","timestamp":1607098313,"output":"[0m\u001b[22m\n16:11:53.840 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"6208"},{"event":"cmd_output","timestamp":1607098313,"output":"dfb0-c6a0-47d3-873b-c1e5f31f2b24\"\n\u001b[0m\u001b[22m\n16:11:53.859 [info] block_id: 1905bf76-38fb-497c-a960"},{"event":"cmd_output","timestamp":1607098313,"output":"-0b62f5921782, type: BlockRequests, event: persisted block run request from ppl 6208dfb0-c6a0-47d3-8"},{"event":"cmd_output","timestamp":1607098313,"output":"73b-c1e5f31f2b24 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_"},{"event":"cmd_output","timestamp":1607098313,"output":"response/4(L35), \n\u001b[0m\u001b[22m\n16:11:53.864 [info] block_id: 1905bf76-38fb-497c-a960-0b62f5921782, t"},{"event":"cmd_output","timestamp":1607098313,"output":"ype: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Block"},{"event":"cmd_output","timestamp":1607098313,"output":"s.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:11:53.866 [info] Block 0 of pipeline with id: "},{"event":"cmd_output","timestamp":1607098313,"output":"6208dfb0-c6a0-47d3-873b-c1e5f31f2b24 scheduled in block service with id: : \"1905bf76-38fb-497c-a960-"},{"event":"cmd_output","timestamp":1607098313,"output":"0b62f5921782\"\n\u001b[0m\u001b[22m\n16:11:53.869 [info] ppl_id: 6208dfb0-c6a0-47d3-873b-c1e5f31f2b24, type: P"},{"event":"cmd_output","timestamp":1607098313,"output":"plBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098313,"output":"Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:53.871 [info] block_id: 1905bf76-38fb-4"},{"event":"cmd_output","timestamp":1607098313,"output":"97c-a960-0b62f5921782, type: BlockRequests, event: persisted build and sub_ppl details for block_req"},{"event":"cmd_output","timestamp":1607098313,"output":"uest: 1905bf76-38fb-497c-a960-0b62f5921782, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQu"},{"event":"cmd_output","timestamp":1607098313,"output":"eries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:11:53.874 [info] block_id: 1905bf76-38fb-497c-a960-0b62f"},{"event":"cmd_output","timestamp":1607098313,"output":"5921782, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks"},{"event":"cmd_output","timestamp":1607098313,"output":".STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:11:53.876 [info] block_id: 1905bf76-"},{"event":"cmd_output","timestamp":1607098313,"output":"38fb-497c-a960-0b62f5921782, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0"},{"event":"cmd_output","timestamp":1607098313,"output":", origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:53.898 [info] block_id"},{"event":"cmd_output","timestamp":1607098313,"output":": 1905bf76-38fb-497c-a960-0b62f5921782, type: Tasks, state: running, event: exit_scheduling, recover"},{"event":"cmd_output","timestamp":1607098313,"output":"y_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:53.976 [info]"},{"event":"cmd_output","timestamp":1607098313,"output":" block_id: 1905bf76-38fb-497c-a960-0b62f5921782, type: Tasks, state: done, event: exit_scheduling, "},{"event":"cmd_output","timestamp":1607098313,"output":"recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:53.983"},{"event":"cmd_output","timestamp":1607098313,"output":" [info] block_id: 1905bf76-38fb-497c-a960-0b62f5921782, type: Blocks, state: done, event: exit_sche"},{"event":"cmd_output","timestamp":1607098314,"output":"duling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098314,"output":"1:54.355 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.RunningState with name Elixir."},{"event":"cmd_output","timestamp":1607098314,"output":"Ppl.PplBlocks.STMHandler.RunningState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Pp"},{"event":"cmd_output","timestamp":1607098314,"output":"l-PplBlocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"d"},{"event":"cmd_output","timestamp":1607098314,"output":"one\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"running\""},{"event":"cmd_output","timestamp":1607098314,"output":", publisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0>, repo: Ppl.E"},{"event":"cmd_output","timestamp":1607098314,"output":"ctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id"},{"event":"cmd_output","timestamp":1607098315,"output":", :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098315,"output":"m\n16:11:55.365 [info] ppl_id: 6208dfb0-c6a0-47d3-873b-c1e5f31f2b24, block_id: 1905bf76-38fb-497c-a"},{"event":"cmd_output","timestamp":1607098315,"output":"960-0b62f5921782, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduli"},{"event":"cmd_output","timestamp":1607098315,"output":"ng, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:55"},{"event":"cmd_output","timestamp":1607098315,"output":".862 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.WaitingState with name Elixir.Ppl."},{"event":"cmd_output","timestamp":1607098315,"output":"PplBlocks.STMHandler.WaitingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Pp"},{"event":"cmd_output","timestamp":1607098315,"output":"lBlocks-STMHandler-WaitingState\"]}, recurring args: %{allowed_states: [\"waiting\", \"running\", \"done\"]"},{"event":"cmd_output","timestamp":1607098315,"output":", cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"waiting\", publ"},{"event":"cmd_output","timestamp":1607098315,"output":"isher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>, repo: Ppl.EctoRepo"},{"event":"cmd_output","timestamp":1607098315,"output":", returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :bloc"},{"event":"cmd_output","timestamp":1607098316,"output":"k_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:56.875 [i"},{"event":"cmd_output","timestamp":1607098316,"output":"nfo] PplBlocks WaitingState STM is scheduling block 1 from pipeline: \"6208dfb0-c6a0-47d3-873b-c1e5f"},{"event":"cmd_output","timestamp":1607098316,"output":"31f2b24\"\n\u001b[0m\u001b[22m\n16:11:56.884 [info] block_id: 2da32161-95df-4ba1-b59c-1d2eaa4bf5af, type: Bloc"},{"event":"cmd_output","timestamp":1607098316,"output":"kRequests, event: persisted block run request from ppl 6208dfb0-c6a0-47d3-873b-c1e5f31f2b24 for bloc"},{"event":"cmd_output","timestamp":1607098316,"output":"k 1, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098316,"output":"22m\n16:11:56.894 [info] block_id: 2da32161-95df-4ba1-b59c-1d2eaa4bf5af, type: Blocks, state: initi"},{"event":"cmd_output","timestamp":1607098316,"output":"alizing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.ins"},{"event":"cmd_output","timestamp":1607098316,"output":"ert/1(L43), \n\u001b[0m\u001b[22m\n16:11:56.894 [info] Block 1 of pipeline with id: 6208dfb0-c6a0-47d3-873b-c"},{"event":"cmd_output","timestamp":1607098316,"output":"1e5f31f2b24 scheduled in block service with id: : \"2da32161-95df-4ba1-b59c-1d2eaa4bf5af\"\n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098316,"output":"\n16:11:56.900 [info] ppl_id: 6208dfb0-c6a0-47d3-873b-c1e5f31f2b24, type: PplBlocks, block_index: 1,"},{"event":"cmd_output","timestamp":1607098316,"output":" state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state"},{"event":"cmd_output","timestamp":1607098316,"output":"_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:56.904 [info] block_id: 2da32161-95df-4ba1-b59c-1d2eaa4bf5af, ty"},{"event":"cmd_output","timestamp":1607098316,"output":"pe: BlockRequests, event: persisted build and sub_ppl details for block_request: 2da32161-95df-4ba1-"},{"event":"cmd_output","timestamp":1607098316,"output":"b59c-1d2eaa4bf5af, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41)"},{"event":"cmd_output","timestamp":1607098316,"output":", \n\u001b[0m\u001b[22m\n16:11:56.914 [info] block_id: 2da32161-95df-4ba1-b59c-1d2eaa4bf5af, type: Tasks, sta"},{"event":"cmd_output","timestamp":1607098316,"output":"te: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingS"},{"event":"cmd_output","timestamp":1607098316,"output":"tate.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:11:56.917 [info] block_id: 2da32161-95df-4ba1-b59c-1d2eaa4bf5"},{"event":"cmd_output","timestamp":1607098316,"output":"af, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.S"},{"event":"cmd_output","timestamp":1607098316,"output":"TM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:56.939 [info] block_id: 2da32161-95df-4ba1-b59c"},{"event":"cmd_output","timestamp":1607098316,"output":"-1d2eaa4bf5af, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098317,"output":"r.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:57.083 [info] block_id: 2da32161-95df"},{"event":"cmd_output","timestamp":1607098317,"output":"-4ba1-b59c-1d2eaa4bf5af, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098317,"output":": Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:57.092 [info] block_id: 2da321"},{"event":"cmd_output","timestamp":1607098317,"output":"61-95df-4ba1-b59c-1d2eaa4bf5af, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0"},{"event":"cmd_output","timestamp":1607098317,"output":", origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:11:57.370 [info] Periodic"},{"event":"cmd_output","timestamp":1607098317,"output":" from module Elixir.Ppl.PplBlocks.STMHandler.RunningState with name Elixir.Ppl.PplBlocks.STMHandler."},{"event":"cmd_output","timestamp":1607098317,"output":"RunningState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-Ru"},{"event":"cmd_output","timestamp":1607098317,"output":"nningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: "},{"event":"cmd_output","timestamp":1607098317,"output":"-2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"running\", publisher_cb: #Function"},{"event":"cmd_output","timestamp":1607098317,"output":"<0.28166834/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id,"},{"event":"cmd_output","timestamp":1607098317,"output":" :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id"},{"event":"cmd_output","timestamp":1607098318,"output":"], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:58.378 [info] p"},{"event":"cmd_output","timestamp":1607098318,"output":"pl_id: 6208dfb0-c6a0-47d3-873b-c1e5f31f2b24, block_id: 2da32161-95df-4ba1-b59c-1d2eaa4bf5af, type: P"},{"event":"cmd_output","timestamp":1607098318,"output":"plBlocks, block_index: 1, state: done, result: passed, event: exit_scheduling, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098318,"output":"igin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test PplBlocks looper transiti"},{"event":"cmd_output","timestamp":1607098318,"output":"ons (6190.0ms)\u001b[0m\n * test PplBlocks recovery counter is reset on transition out of scheduling\u001b[22"},{"event":"cmd_output","timestamp":1607098318,"output":"m\n16:11:58.943 [info] Request: 'run: %{\"branch_id\" => \"78ee43a1-1ead-4f5e-8245-cf8fa9632513\", \"bra"},{"event":"cmd_output","timestamp":1607098318,"output":"nch_name\" => \"master\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"semaphore.yml\", \"hook_id\" => \"6"},{"event":"cmd_output","timestamp":1607098318,"output":"fb392e0-364b-11eb-9a98-5254005464e2\", \"label\" => \"master\", \"organization_id\" => \"00fc8e83-27cb-4f23-"},{"event":"cmd_output","timestamp":1607098318,"output":"9185-2f1520741827\", \"owner\" => \"rt\", \"project_id\" => \"a6f915a7-2914-4af4-bff0-e280a5971cfb\", \"repo_n"},{"event":"cmd_output","timestamp":1607098318,"output":"ame\" => \"2_basic\", \"request_token\" => \"6fb389a8-364b-11eb-aa92-5254005464e2\", \"requester_id\" => \"a29"},{"event":"cmd_output","timestamp":1607098318,"output":"4b7e3-7b4d-4770-a042-0801904ab19b\", \"service\" => \"local\", \"suppressed_attributes\" => [\"access_token\""},{"event":"cmd_output","timestamp":1607098318,"output":", \"client_secret\"], \"wf_id\" => \"c30f98e3-ac34-484f-969a-6710c8cefe5b\", \"working_dir\" => \".semaphore\""},{"event":"cmd_output","timestamp":1607098318,"output":"}\n\u001b[0m\u001b[22m\n16:11:58.950 [info] ppl_id: 9714c299-55d2-47b5-93f8-2a1983ead917, type: PplRequests, "},{"event":"cmd_output","timestamp":1607098318,"output":"event: persisted schedule request with request_token: 6fb389a8-364b-11eb-aa92-5254005464e2, origin: "},{"event":"cmd_output","timestamp":1607098318,"output":"Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:11:58.954 ["},{"event":"cmd_output","timestamp":1607098318,"output":"info] ppl_id: 9714c299-55d2-47b5-93f8-2a1983ead917, type: Ppls, state: initializing, event: initial"},{"event":"cmd_output","timestamp":1607098318,"output":"izing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098318,"output":"\u001b[22m\n16:11:58.961 [info] Project a6f915a7-2914-4af4-bff0-e280a5971cfb and branch masterlatest_wf "},{"event":"cmd_output","timestamp":1607098318,"output":"details updated: \"wf_id: c30f98e3-ac34-484f-969a-6710c8cefe5b, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:11:58.96"},{"event":"cmd_output","timestamp":1607098318,"output":"3 [info] Persisted ppl_sub_init for pipeline with ppl_id: 9714c299-55d2-47b5-93f8-2a1983ead917: %Pp"},{"event":"cmd_output","timestamp":1607098318,"output":"l.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, comp"},{"event":"cmd_output","timestamp":1607098318,"output":"ile_task_id: nil, error_description: nil, id: 150, in_scheduling: false, init_type: \"regular\", inser"},{"event":"cmd_output","timestamp":1607098318,"output":"ted_at: ~N[2020-12-04 16:11:58.961282], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"9714c299-55d2-47b5-93f8-2a1983ead917\", recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098318,"output":" result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: "},{"event":"cmd_output","timestamp":1607098318,"output":"nil, updated_at: ~N[2020-12-04 16:11:58.961323]}\n\u001b[0m\u001b[22m\n16:11:58.996 [info] ppl_id: 9714c299-5"},{"event":"cmd_output","timestamp":1607098318,"output":"5d2-47b5-93f8-2a1983ead917, type: PplRequests, event: persisted definition for request with request_"},{"event":"cmd_output","timestamp":1607098318,"output":"token: 6fb389a8-364b-11eb-aa92-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries"},{"event":"cmd_output","timestamp":1607098319,"output":".insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:11:59.000 [info] ppl_id: 9714c299-55d2-47b5-93f8-2a1983e"},{"event":"cmd_output","timestamp":1607098319,"output":"ad917, type: PplRequests, event: persisted source_args for pipeline: 9714c299-55d2-47b5-93f8-2a1983e"},{"event":"cmd_output","timestamp":1607098319,"output":"ad917, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098319,"output":":11:59.013 [info] Periodic from module Elixir.Block.Blocks.STMHandler.InitializingState with name E"},{"event":"cmd_output","timestamp":1607098319,"output":"lixir.Block.Blocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_"},{"event":"cmd_output","timestamp":1607098319,"output":"up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"running\", \""},{"event":"cmd_output","timestamp":1607098319,"output":"done\"], cooling_time_sec: 0, initial_query: Block.Blocks.Model.Blocks, observed_state: \"initializing"},{"event":"cmd_output","timestamp":1607098319,"output":"\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :sta"},{"event":"cmd_output","timestamp":1607098319,"output":"te, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098319,"output":"2m\n16:11:59.015 [info] Periodic from module Elixir.Block.Blocks.STMHandler.RunningState with name "},{"event":"cmd_output","timestamp":1607098319,"output":"Elixir.Block.Blocks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\","},{"event":"cmd_output","timestamp":1607098319,"output":" [\"Block-Blocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\""},{"event":"cmd_output","timestamp":1607098319,"output":", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"running\""},{"event":"cmd_output","timestamp":1607098319,"output":", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :stat"},{"event":"cmd_output","timestamp":1607098319,"output":"e, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098319,"output":"m\n16:11:59.016 [info] Periodic from module Elixir.Block.Tasks.STMHandler.PendingState with name El"},{"event":"cmd_output","timestamp":1607098319,"output":"ixir.Block.Tasks.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\""},{"event":"cmd_output","timestamp":1607098319,"output":"Block-Tasks-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooli"},{"event":"cmd_output","timestamp":1607098319,"output":"ng_time_sec: 0, initial_query: Block.Tasks.Model.Tasks, observed_state: \"pending\", publisher_cb: :sk"},{"event":"cmd_output","timestamp":1607098319,"output":"ip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count,"},{"event":"cmd_output","timestamp":1607098319,"output":" :block_id, :build_request_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098319,"output":"\n16:11:59.017 [info] Periodic from module Elixir.Block.Tasks.STMHandler.RunningState with name Elix"},{"event":"cmd_output","timestamp":1607098319,"output":"ir.Block.Tasks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Bl"},{"event":"cmd_output","timestamp":1607098319,"output":"ock-Tasks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"don"},{"event":"cmd_output","timestamp":1607098319,"output":"e\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"running\", publis"},{"event":"cmd_output","timestamp":1607098319,"output":"her_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :reco"},{"event":"cmd_output","timestamp":1607098319,"output":"very_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:11:5"},{"event":"cmd_output","timestamp":1607098319,"output":"9.018 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.WaitingState with name Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098319,"output":".PplBlocks.STMHandler.WaitingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-P"},{"event":"cmd_output","timestamp":1607098319,"output":"plBlocks-STMHandler-WaitingState\"]}, recurring args: %{allowed_states: [\"waiting\", \"running\", \"done\""},{"event":"cmd_output","timestamp":1607098319,"output":"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"waiting\", pub"},{"event":"cmd_output","timestamp":1607098319,"output":"lisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>, repo: Ppl.EctoRep"},{"event":"cmd_output","timestamp":1607098319,"output":"o, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :blo"},{"event":"cmd_output","timestamp":1607098320,"output":"ck_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:00.025 ["},{"event":"cmd_output","timestamp":1607098320,"output":"info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"9714c299-55d2-47b5-93f8-2a19"},{"event":"cmd_output","timestamp":1607098320,"output":"83ead917\"\n\u001b[0m\u001b[22m\n16:12:00.034 [info] block_id: 4daeeb0f-5101-423c-8e59-b74777a2b6c9, type: Blo"},{"event":"cmd_output","timestamp":1607098320,"output":"ckRequests, event: persisted block run request from ppl 9714c299-55d2-47b5-93f8-2a1983ead917 for blo"},{"event":"cmd_output","timestamp":1607098320,"output":"ck 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098320,"output":"[22m\n16:12:00.040 [info] block_id: 4daeeb0f-5101-423c-8e59-b74777a2b6c9, type: Blocks, state: init"},{"event":"cmd_output","timestamp":1607098320,"output":"ializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.in"},{"event":"cmd_output","timestamp":1607098320,"output":"sert/1(L43), \n\u001b[0m\u001b[22m\n16:12:00.042 [info] Block 0 of pipeline with id: 9714c299-55d2-47b5-93f8-"},{"event":"cmd_output","timestamp":1607098320,"output":"2a1983ead917 scheduled in block service with id: : \"4daeeb0f-5101-423c-8e59-b74777a2b6c9\"\n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098320,"output":"\n16:12:00.047 [info] ppl_id: 9714c299-55d2-47b5-93f8-2a1983ead917, type: PplBlocks, block_index: 0"},{"event":"cmd_output","timestamp":1607098320,"output":", state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_stat"},{"event":"cmd_output","timestamp":1607098320,"output":"e_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:00.062 [info] block_id: 4daeeb0f-5101-423c-8e59-b74777a2b6c9, t"},{"event":"cmd_output","timestamp":1607098320,"output":"ype: BlockRequests, event: persisted build and sub_ppl details for block_request: 4daeeb0f-5101-423c"},{"event":"cmd_output","timestamp":1607098320,"output":"-8e59-b74777a2b6c9, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41"},{"event":"cmd_output","timestamp":1607098320,"output":"), \n\u001b[0m\u001b[22m\n16:12:00.067 [info] block_id: 4daeeb0f-5101-423c-8e59-b74777a2b6c9, type: Tasks, st"},{"event":"cmd_output","timestamp":1607098320,"output":"ate: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.Initializing"},{"event":"cmd_output","timestamp":1607098320,"output":"State.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:00.070 [info] block_id: 4daeeb0f-5101-423c-8e59-b74777a2b"},{"event":"cmd_output","timestamp":1607098320,"output":"6c9, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper."},{"event":"cmd_output","timestamp":1607098320,"output":"STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:00.102 [info] block_id: 4daeeb0f-5101-423c-8e5"},{"event":"cmd_output","timestamp":1607098320,"output":"9-b74777a2b6c9, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098320,"output":"ir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:00.179 [info] block_id: 4daeeb0f-510"},{"event":"cmd_output","timestamp":1607098320,"output":"1-423c-8e59-b74777a2b6c9, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098320,"output":"n: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:00.193 [info] block_id: 4daee"},{"event":"cmd_output","timestamp":1607098320,"output":"b0f-5101-423c-8e59-b74777a2b6c9, type: Blocks, state: done, event: exit_scheduling, recovery_count: "},{"event":"cmd_output","timestamp":1607098320,"output":"0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test PplBlocks recovery c"},{"event":"cmd_output","timestamp":1607098320,"output":"ounter is reset on transition out of scheduling (1647.9ms)\u001b[0m\n\nPpl.Looper.PplBlocks.STMHandler.Sk"},{"event":"cmd_output","timestamp":1607098320,"output":"ipBlock.Test\n * test skip-when condition is true for given tag - block skipped\u001b[22m\n16:12:00.604 "},{"event":"cmd_output","timestamp":1607098320,"output":"[info] Request: 'run: %{\"branch_id\" => \"1562fbef-2911-4ce3-b7a0-672c8ad81bba\", \"branch_name\" => \"ma"},{"event":"cmd_output","timestamp":1607098320,"output":"ster\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"skip_block.yml\", \"hook_id\" => \"tag\", \"label\" =>"},{"event":"cmd_output","timestamp":1607098320,"output":" \"v0.9\", \"organization_id\" => \"6d7e49a1-326d-48d0-94d1-211f99ff3246\", \"owner\" => \"rt\", \"project_id\" "},{"event":"cmd_output","timestamp":1607098320,"output":"=> \"1103078c-3650-475c-9fef-e1ac0812003c\", \"repo_name\" => \"22_skip_block\", \"request_token\" => \"70b0e"},{"event":"cmd_output","timestamp":1607098320,"output":"f9e-364b-11eb-b193-5254005464e2\", \"requester_id\" => \"c89966ba-81b5-4d2f-8444-3c6364bad70a\", \"service"},{"event":"cmd_output","timestamp":1607098320,"output":"\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"85c61007-a3f"},{"event":"cmd_output","timestamp":1607098320,"output":"8-43cb-bf14-16044a4b2908\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:12:00.608 [info] ppl_id: b"},{"event":"cmd_output","timestamp":1607098320,"output":"47915de-bd33-453b-a1c5-76526ebab08b, type: PplRequests, event: persisted schedule request with reque"},{"event":"cmd_output","timestamp":1607098320,"output":"st_token: 70b0ef9e-364b-11eb-b193-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQuer"},{"event":"cmd_output","timestamp":1607098320,"output":"ies.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:00.612 [info] ppl_id: b47915de-bd33-453b-a1c5-76526"},{"event":"cmd_output","timestamp":1607098320,"output":"ebab08b, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098320,"output":".Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:00.618 [info] Project 1103078c"},{"event":"cmd_output","timestamp":1607098320,"output":"-3650-475c-9fef-e1ac0812003c and branch masterlatest_wf details updated: \"wf_id: 85c61007-a3f8-43cb-"},{"event":"cmd_output","timestamp":1607098320,"output":"bf14-16044a4b2908, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:12:00.621 [info] Persisted ppl_sub_init for pipelin"},{"event":"cmd_output","timestamp":1607098320,"output":"e with ppl_id: b47915de-bd33-453b-a1c5-76526ebab08b: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #E"},{"event":"cmd_output","timestamp":1607098320,"output":"cto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id"},{"event":"cmd_output","timestamp":1607098320,"output":": 151, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:00.619113], pipe"},{"event":"cmd_output","timestamp":1607098320,"output":"line_requests: #Ecto.Association.NotLoaded, ppl_id: \"b"},{"event":"cmd_output","timestamp":1607098320,"output":"47915de-bd33-453b-a1c5-76526ebab08b\", recovery_count: 0, result: nil, result_reason: nil, state: \"cr"},{"event":"cmd_output","timestamp":1607098320,"output":"eated\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:00.6191"},{"event":"cmd_output","timestamp":1607098320,"output":"26]}\n\u001b[0m\u001b[22m\n16:12:00.627 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingSt"},{"event":"cmd_output","timestamp":1607098320,"output":"ate with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beh"},{"event":"cmd_output","timestamp":1607098320,"output":"older-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"init"},{"event":"cmd_output","timestamp":1607098320,"output":"ializing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_sta"},{"event":"cmd_output","timestamp":1607098320,"output":"te: \"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.a"},{"event":"cmd_output","timestamp":1607098320,"output":"rgs/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :reco"},{"event":"cmd_output","timestamp":1607098320,"output":"very_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:00.627 "},{"event":"cmd_output","timestamp":1607098320,"output":"[info] Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHa"},{"event":"cmd_output","timestamp":1607098320,"output":"ndler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Pe"},{"event":"cmd_output","timestamp":1607098320,"output":"ndingState\"]}, recurring args: %{allowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_"},{"event":"cmd_output","timestamp":1607098320,"output":"time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publisher_cb: #Function<"},{"event":"cmd_output","timestamp":1607098320,"output":"0.8493005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :termi"},{"event":"cmd_output","timestamp":1607098320,"output":"nate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, "},{"event":"cmd_output","timestamp":1607098320,"output":"task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:12:00.627 [info] Periodic from module Elixir.Pp"},{"event":"cmd_output","timestamp":1607098320,"output":"l.Ppls.STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, "},{"event":"cmd_output","timestamp":1607098320,"output":"metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{allow"},{"event":"cmd_output","timestamp":1607098320,"output":"ed_states: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls,"},{"event":"cmd_output","timestamp":1607098320,"output":" observed_state: \"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingStat"},{"event":"cmd_output","timestamp":1607098320,"output":"e.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :r"},{"event":"cmd_output","timestamp":1607098320,"output":"ecovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:00.6"},{"event":"cmd_output","timestamp":1607098320,"output":"29 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl.Ppls.ST"},{"event":"cmd_output","timestamp":1607098320,"output":"MHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler"},{"event":"cmd_output","timestamp":1607098320,"output":"-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_se"},{"event":"cmd_output","timestamp":1607098320,"output":"c: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"running\", publisher_cb: #Function<0.7467"},{"event":"cmd_output","timestamp":1607098320,"output":"0282/1 in Ppl.Ppls.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_"},{"event":"cmd_output","timestamp":1607098320,"output":"request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_"},{"event":"cmd_output","timestamp":1607098320,"output":"supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:12:00.630 [info] Periodic from module Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098320,"output":"s.STMHandler.StoppingState with name Elixir.Ppl.Ppls.STMHandler.StoppingState :: period: 100 ms, met"},{"event":"cmd_output","timestamp":1607098320,"output":"ric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring args: %{allowed"},{"event":"cmd_output","timestamp":1607098320,"output":"_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_st"},{"event":"cmd_output","timestamp":1607098320,"output":"ate: \"stopping\", publisher_cb: #Function<0.71803493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, "},{"event":"cmd_output","timestamp":1607098320,"output":"repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_cou"},{"event":"cmd_output","timestamp":1607098320,"output":"nt, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:00.631 [info] "},{"event":"cmd_output","timestamp":1607098320,"output":"Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits"},{"event":"cmd_output","timestamp":1607098320,"output":".STMHandler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-"},{"event":"cmd_output","timestamp":1607098320,"output":"STMHandler-CreatedState\"]}, recurring args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec"},{"event":"cmd_output","timestamp":1607098320,"output":": 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"created\", publisher_cb: :ski"},{"event":"cmd_output","timestamp":1607098320,"output":"p, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_"},{"event":"cmd_output","timestamp":1607098320,"output":"count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098320,"output":"2:00.632 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elix"},{"event":"cmd_output","timestamp":1607098320,"output":"ir.Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\","},{"event":"cmd_output","timestamp":1607098320,"output":" [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %{allowed_states: [\"regular_init\", \""},{"event":"cmd_output","timestamp":1607098320,"output":"compilation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, obser"},{"event":"cmd_output","timestamp":1607098320,"output":"ved_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request,"},{"event":"cmd_output","timestamp":1607098320,"output":" :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits,"},{"event":"cmd_output","timestamp":1607098320,"output":" task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:00.633 [info] Periodic from module Elixir.Ppl.PplSubInit"},{"event":"cmd_output","timestamp":1607098320,"output":"s.STMHandler.CompilationState with name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period"},{"event":"cmd_output","timestamp":1607098320,"output":": 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, re"},{"event":"cmd_output","timestamp":1607098320,"output":"curring args: %{allowed_states: [\"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_se"},{"event":"cmd_output","timestamp":1607098320,"output":"c: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"compilation\", publisher_cb"},{"event":"cmd_output","timestamp":1607098320,"output":": :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :rec"},{"event":"cmd_output","timestamp":1607098320,"output":"overy_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098320,"output":"\n16:12:00.634 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with "},{"event":"cmd_output","timestamp":1607098320,"output":"name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.behold"},{"event":"cmd_output","timestamp":1607098320,"output":"er-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurring args: %{allowed_states: [\"d"},{"event":"cmd_output","timestamp":1607098320,"output":"one\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regul"},{"event":"cmd_output","timestamp":1607098320,"output":"ar_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at,"},{"event":"cmd_output","timestamp":1607098320,"output":" :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervi"},{"event":"cmd_output","timestamp":1607098320,"output":"sor: :skip}\n\u001b[0m\u001b[22m\n16:12:00.635 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.In"},{"event":"cmd_output","timestamp":1607098320,"output":"itializingState with name Elixir.Ppl.PplBlocks.STMHandler.InitializingState :: period: 100 ms, metri"},{"event":"cmd_output","timestamp":1607098320,"output":"c_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-InitializingState\"]}, recurring args: %{"},{"event":"cmd_output","timestamp":1607098320,"output":"allowed_states: [\"initializing\", \"waiting\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBloc"},{"event":"cmd_output","timestamp":1607098320,"output":"ks.Model.PplBlocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returni"},{"event":"cmd_output","timestamp":1607098320,"output":"ng: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index],"},{"event":"cmd_output","timestamp":1607098320,"output":" schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:00.636 [info] Per"},{"event":"cmd_output","timestamp":1607098320,"output":"iodic from module Elixir.Ppl.PplBlocks.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks.STMHan"},{"event":"cmd_output","timestamp":1607098320,"output":"dler.WaitingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandl"},{"event":"cmd_output","timestamp":1607098320,"output":"er-WaitingState\"]}, recurring args: %{allowed_states: [\"waiting\", \"running\", \"done\"], cooling_time_s"},{"event":"cmd_output","timestamp":1607098320,"output":"ec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"waiting\", publisher_cb: #Funct"},{"event":"cmd_output","timestamp":1607098320,"output":"ion<0.8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, returning: [:i"},{"event":"cmd_output","timestamp":1607098320,"output":"d, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema"},{"event":"cmd_output","timestamp":1607098320,"output":": Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:00.637 [info] Periodic f"},{"event":"cmd_output","timestamp":1607098320,"output":"rom module Elixir.Ppl.PplBlocks.STMHandler.RunningState with name Elixir.Ppl.PplBlocks.STMHandler.Ru"},{"event":"cmd_output","timestamp":1607098320,"output":"nningState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-Runn"},{"event":"cmd_output","timestamp":1607098320,"output":"ingState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2"},{"event":"cmd_output","timestamp":1607098320,"output":", initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"running\", publisher_cb: #Function<0"},{"event":"cmd_output","timestamp":1607098320,"output":".28166834/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :"},{"event":"cmd_output","timestamp":1607098320,"output":"terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id],"},{"event":"cmd_output","timestamp":1607098320,"output":" schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:00.638 [info] Per"},{"event":"cmd_output","timestamp":1607098320,"output":"iodic from module Elixir.Ppl.PplBlocks.STMHandler.StoppingState with name Elixir.Ppl.PplBlocks.STMHa"},{"event":"cmd_output","timestamp":1607098320,"output":"ndler.StoppingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHan"},{"event":"cmd_output","timestamp":1607098320,"output":"dler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2,"},{"event":"cmd_output","timestamp":1607098320,"output":" initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"stopping\", publisher_cb: #Function<0"},{"event":"cmd_output","timestamp":1607098320,"output":".104215991/1 in Ppl.PplBlocks.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id,"},{"event":"cmd_output","timestamp":1607098320,"output":" :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id"},{"event":"cmd_output","timestamp":1607098320,"output":"], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:00.639 [info] P"},{"event":"cmd_output","timestamp":1607098320,"output":"eriodic from module Elixir.Block.Blocks.STMHandler.InitializingState with name Elixir.Block.Blocks.S"},{"event":"cmd_output","timestamp":1607098320,"output":"TMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-"},{"event":"cmd_output","timestamp":1607098320,"output":"STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time"},{"event":"cmd_output","timestamp":1607098320,"output":"_sec: 0, initial_query: Block.Blocks.Model.Blocks, observed_state: \"initializing\", publisher_cb: :sk"},{"event":"cmd_output","timestamp":1607098320,"output":"ip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count,"},{"event":"cmd_output","timestamp":1607098320,"output":" :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:00.640 [in"},{"event":"cmd_output","timestamp":1607098320,"output":"fo] Periodic from module Elixir.Block.Blocks.STMHandler.RunningState with name Elixir.Block.Blocks."},{"event":"cmd_output","timestamp":1607098320,"output":"STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMH"},{"event":"cmd_output","timestamp":1607098320,"output":"andler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_t"},{"event":"cmd_output","timestamp":1607098320,"output":"ime_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"running\", publisher_cb: :ski"},{"event":"cmd_output","timestamp":1607098320,"output":"p, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, "},{"event":"cmd_output","timestamp":1607098320,"output":":block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:00.641 [inf"},{"event":"cmd_output","timestamp":1607098320,"output":"o] Periodic from module Elixir.Block.Blocks.STMHandler.StoppingState with name Elixir.Block.Blocks."},{"event":"cmd_output","timestamp":1607098320,"output":"STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STM"},{"event":"cmd_output","timestamp":1607098320,"output":"Handler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: "},{"event":"cmd_output","timestamp":1607098320,"output":"-2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"stopping\", publisher_cb: :skip, repo:"},{"event":"cmd_output","timestamp":1607098320,"output":" Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_i"},{"event":"cmd_output","timestamp":1607098320,"output":"d], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:00.642 [info] Peri"},{"event":"cmd_output","timestamp":1607098320,"output":"odic from module Elixir.Block.Tasks.STMHandler.PendingState with name Elixir.Block.Tasks.STMHandler."},{"event":"cmd_output","timestamp":1607098320,"output":"PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-Pendi"},{"event":"cmd_output","timestamp":1607098320,"output":"ngState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_quer"},{"event":"cmd_output","timestamp":1607098320,"output":"y: Block.Tasks.Model.Tasks, observed_state: \"pending\", publisher_cb: :skip, repo: Block.EctoRepo, re"},{"event":"cmd_output","timestamp":1607098320,"output":"turning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id, :build_request_i"},{"event":"cmd_output","timestamp":1607098320,"output":"d], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:00.643 [info] Period"},{"event":"cmd_output","timestamp":1607098320,"output":"ic from module Elixir.Block.Tasks.STMHandler.RunningState with name Elixir.Block.Tasks.STMHandler.Ru"},{"event":"cmd_output","timestamp":1607098320,"output":"nningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-Running"},{"event":"cmd_output","timestamp":1607098320,"output":"State\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, i"},{"event":"cmd_output","timestamp":1607098320,"output":"nitial_query: Block.Tasks.Model.Tasks, observed_state: \"running\", publisher_cb: :skip, repo: Block.E"},{"event":"cmd_output","timestamp":1607098320,"output":"ctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], sche"},{"event":"cmd_output","timestamp":1607098320,"output":"ma: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:00.644 [info] Periodic from "},{"event":"cmd_output","timestamp":1607098320,"output":"module Elixir.Block.Tasks.STMHandler.StoppingState with name Elixir.Block.Tasks.STMHandler.StoppingS"},{"event":"cmd_output","timestamp":1607098320,"output":"tate :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-StoppingState"},{"event":"cmd_output","timestamp":1607098320,"output":"\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Bl"},{"event":"cmd_output","timestamp":1607098320,"output":"ock.Tasks.Model.Tasks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, return"},{"event":"cmd_output","timestamp":1607098320,"output":"ing: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks"},{"event":"cmd_output","timestamp":1607098320,"output":".Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:00.752 [info] ppl_id: b47915de-bd33-453b-a1"},{"event":"cmd_output","timestamp":1607098320,"output":"c5-76526ebab08b, type: PplRequests, event: persisted source_args for pipeline: b47915de-bd33-453b-a1"},{"event":"cmd_output","timestamp":1607098320,"output":"c5-76526ebab08b, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098320,"output":"m\u001b[22m\n16:12:00.755 [info] ppl_id: b47915de-bd33-453b-a1c5-76526ebab08b, type: PplSubInits, state:"},{"event":"cmd_output","timestamp":1607098320,"output":" fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chang"},{"event":"cmd_output","timestamp":1607098320,"output":"e/1(L90), \n\u001b[0m\u001b[22m\n16:12:00.803 [info] ppl_id: b47915de-bd33-453b-a1c5-76526ebab08b, type: PplS"},{"event":"cmd_output","timestamp":1607098320,"output":"ubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.I"},{"event":"cmd_output","timestamp":1607098320,"output":"mpl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:00.838 [info] ppl_id: b47915de-bd33-453b-a1c5-76526"},{"event":"cmd_output","timestamp":1607098320,"output":"ebab08b, type: PplRequests, event: persisted definition for request with request_token: 70b0ef9e-364"},{"event":"cmd_output","timestamp":1607098320,"output":"b-11eb-b193-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/"},{"event":"cmd_output","timestamp":1607098320,"output":"3(L76), \n\u001b[0m\u001b[22m\n16:12:00.842 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: "},{"event":"cmd_output","timestamp":1607098320,"output":"#Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:12:00.840586], name: \"v0.9-."},{"event":"cmd_output","timestamp":1607098320,"output":"semaphore/skip_block.yml\", organization_id: \"6d7e49a1-326d-48d0-94d1-211f99ff3246\", project_id: \"110"},{"event":"cmd_output","timestamp":1607098320,"output":"3078c-3650-475c-9fef-e1ac0812003c\", queue_id: \"ef009fe9-f0fd-4e94-9fa5-d5388ff5c723\", scope: \"projec"},{"event":"cmd_output","timestamp":1607098320,"output":"t\", updated_at: ~N[2020-12-04 16:12:00.840600], user_generated: false}}\n\u001b[0m\u001b[22m\n16:12:00.851 [in"},{"event":"cmd_output","timestamp":1607098320,"output":"fo] ppl_id: not_available, event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitSta"},{"event":"cmd_output","timestamp":1607098320,"output":"te.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:00.851 [info] event: created, origin: Elixir.Ppl.PplSubInits"},{"event":"cmd_output","timestamp":1607098320,"output":".STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:00.851 [info] ppl_id: b47915de-bd3"},{"event":"cmd_output","timestamp":1607098320,"output":"3-453b-a1c5-76526ebab08b, type: PplBlocks, block_index: 0, state: initializing, event: created, reco"},{"event":"cmd_output","timestamp":1607098320,"output":"very_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098320,"output":"2m\n16:12:00.851 [info] ppl_id: b47915de-bd33-453b-a1c5-76526ebab08b, type: PplBlocks, block_index:"},{"event":"cmd_output","timestamp":1607098320,"output":" 1, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandle"},{"event":"cmd_output","timestamp":1607098320,"output":"r.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:00.856 [info] ppl_id: b47915de-bd33-453b-a1c"},{"event":"cmd_output","timestamp":1607098320,"output":"5-76526ebab08b, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_cou"},{"event":"cmd_output","timestamp":1607098320,"output":"nt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:00.877 [info] ppl"},{"event":"cmd_output","timestamp":1607098320,"output":"_id: b47915de-bd33-453b-a1c5-76526ebab08b, type: PplBlocks, block_index: 0, state: waiting, event: e"},{"event":"cmd_output","timestamp":1607098320,"output":"xit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098320,"output":"2m\n16:12:00.878 [info] ppl_id: b47915de-bd33-453b-a1c5-76526ebab08b, type: Ppls, state: pending, e"},{"event":"cmd_output","timestamp":1607098320,"output":"vent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n"},{"event":"cmd_output","timestamp":1607098320,"output":"\u001b[0m\u001b[22m\n16:12:00.887 [info] ppl_id: b47915de-bd33-453b-a1c5-76526ebab08b, type: PplBlocks, block"},{"event":"cmd_output","timestamp":1607098320,"output":"_index: 1, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl"},{"event":"cmd_output","timestamp":1607098320,"output":".log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:00.892 [info] ppl_id: b47915de-bd33-453b-a1c5-76526eba"},{"event":"cmd_output","timestamp":1607098320,"output":"b08b, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.S"},{"event":"cmd_output","timestamp":1607098320,"output":"TM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:00.903 [info] ppl_id: b47915de-bd33-453b-a1c5-7"},{"event":"cmd_output","timestamp":1607098320,"output":"6526ebab08b, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098320,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:00.911 [info] PplBlocks WaitingState STM"},{"event":"cmd_output","timestamp":1607098320,"output":" is scheduling block 0 from pipeline: \"b47915de-bd33-453b-a1c5-76526ebab08b\"\n\u001b[0m\u001b[22m\n16:12:00.91"},{"event":"cmd_output","timestamp":1607098320,"output":"7 [info] block_id: aed497da-a9f2-434d-9485-699b97ff5db5, type: BlockRequests, event: persisted bloc"},{"event":"cmd_output","timestamp":1607098320,"output":"k run request from ppl b47915de-bd33-453b-a1c5-76526ebab08b for block 0, origin: Elixir.Block.BlockR"},{"event":"cmd_output","timestamp":1607098320,"output":"equests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:00.925 [info] block_"},{"event":"cmd_output","timestamp":1607098320,"output":"id: aed497da-a9f2-434d-9485-699b97ff5db5, type: Blocks, state: initializing, event: initializing, re"},{"event":"cmd_output","timestamp":1607098320,"output":"covery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:0"},{"event":"cmd_output","timestamp":1607098320,"output":"0.930 [info] Block 0 of pipeline with id: b47915de-bd33-453b-a1c5-76526ebab08b scheduled in block s"},{"event":"cmd_output","timestamp":1607098320,"output":"ervice with id: : \"aed497da-a9f2-434d-9485-699b97ff5db5\"\n\u001b[0m\u001b[22m\n16:12:00.933 [info] ppl_id: b4"},{"event":"cmd_output","timestamp":1607098320,"output":"7915de-bd33-453b-a1c5-76526ebab08b, type: PplBlocks, block_index: 0, state: running, event: exit_sch"},{"event":"cmd_output","timestamp":1607098320,"output":"eduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098320,"output":"12:00.935 [info] block_id: aed497da-a9f2-434d-9485-699b97ff5db5, type: BlockRequests, event: persis"},{"event":"cmd_output","timestamp":1607098320,"output":"ted build and sub_ppl details for block_request: aed497da-a9f2-434d-9485-699b97ff5db5, origin: Elixi"},{"event":"cmd_output","timestamp":1607098320,"output":"r.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:00.946 [inf"},{"event":"cmd_output","timestamp":1607098320,"output":"o] block_id: aed497da-a9f2-434d-9485-699b97ff5db5, type: Tasks, state: pending, event: created, rec"},{"event":"cmd_output","timestamp":1607098320,"output":"overy_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098320,"output":"m\n16:12:00.949 [info] block_id: aed497da-a9f2-434d-9485-699b97ff5db5, type: Blocks, state: running"},{"event":"cmd_output","timestamp":1607098320,"output":", event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90),"},{"event":"cmd_output","timestamp":1607098320,"output":" \n\u001b[0m\u001b[22m\n16:12:00.975 [info] block_id: aed497da-a9f2-434d-9485-699b97ff5db5, type: Tasks, stat"},{"event":"cmd_output","timestamp":1607098320,"output":"e: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chan"},{"event":"cmd_output","timestamp":1607098320,"output":"ge/1(L90), \n\u001b[0m\u001b[22m\n16:12:00.992 [info] block_id: aed497da-a9f2-434d-9485-699b97ff5db5, type: T"},{"event":"cmd_output","timestamp":1607098320,"output":"asks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_sta"},{"event":"cmd_output","timestamp":1607098321,"output":"te_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:01.002 [info] block_id: aed497da-a9f2-434d-9485-699b97ff5db5, "},{"event":"cmd_output","timestamp":1607098321,"output":"type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl"},{"event":"cmd_output","timestamp":1607098321,"output":".log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:01.017 [info] ppl_id: b47915de-bd33-453b-a1c5-76526eba"},{"event":"cmd_output","timestamp":1607098321,"output":"b08b, block_id: aed497da-a9f2-434d-9485-699b97ff5db5, type: PplBlocks, block_index: 0, state: done, "},{"event":"cmd_output","timestamp":1607098321,"output":"result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_"},{"event":"cmd_output","timestamp":1607098321,"output":"change/1(L90), \n\u001b[0m\u001b[22m\n16:12:01.044 [info] PplBlocks WaitingState STM is scheduling block 1 fr"},{"event":"cmd_output","timestamp":1607098321,"output":"om pipeline: \"b47915de-bd33-453b-a1c5-76526ebab08b\"\n\u001b[0m\u001b[22m\n16:12:01.057 [info] ppl_id: b47915d"},{"event":"cmd_output","timestamp":1607098321,"output":"e-bd33-453b-a1c5-76526ebab08b, type: PplBlocks, block_index: 1, state: done, result: passed, event: "},{"event":"cmd_output","timestamp":1607098321,"output":"exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098321,"output":"22m\n16:12:01.082 [info] ppl_id: b47915de-bd33-453b-a1c5-76526ebab08b, type: Ppls, state: done, res"},{"event":"cmd_output","timestamp":1607098321,"output":"ult: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_cha"},{"event":"cmd_output","timestamp":1607098321,"output":"nge/1(L90), \n\u001b[0m\u001b[32m\r * test skip-when condition is true for given tag - block skipped (658.1ms)"},{"event":"cmd_output","timestamp":1607098321,"output":"\u001b[0m\n * test skip-when condition is false for given tag - block executed\u001b[22m\n16:12:01.259 [info]"},{"event":"cmd_output","timestamp":1607098321,"output":" Request: 'run: %{\"branch_id\" => \"4a1223fd-fc44-4656-a28e-4252e2e36526\", \"branch_name\" => \"master\","},{"event":"cmd_output","timestamp":1607098321,"output":" \"commit_sha\" => \"75891a4469\", \"file_name\" => \"skip_block.yml\", \"hook_id\" => \"tag\", \"label\" => \"v1.0"},{"event":"cmd_output","timestamp":1607098321,"output":"\", \"organization_id\" => \"03a37b5f-0895-4eed-bf26-4c3551132bcb\", \"owner\" => \"rt\", \"project_id\" => \"2b"},{"event":"cmd_output","timestamp":1607098321,"output":"aa2abb-94c0-4ebb-8a11-ae14b0903b37\", \"repo_name\" => \"22_skip_block\", \"request_token\" => \"7114b3b2-36"},{"event":"cmd_output","timestamp":1607098321,"output":"4b-11eb-9608-5254005464e2\", \"requester_id\" => \"70ad77b1-7dfc-4be3-8e83-4e6c41d569bf\", \"service\" => \""},{"event":"cmd_output","timestamp":1607098321,"output":"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"bc5eb58a-75ee-4e56"},{"event":"cmd_output","timestamp":1607098321,"output":"-ba9b-5f96d5c0fd6c\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:12:01.263 [info] ppl_id: 0f9438b"},{"event":"cmd_output","timestamp":1607098321,"output":"f-d695-45c4-9237-584a6971c5b9, type: PplRequests, event: persisted schedule request with request_tok"},{"event":"cmd_output","timestamp":1607098321,"output":"en: 7114b3b2-364b-11eb-9608-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.pr"},{"event":"cmd_output","timestamp":1607098321,"output":"ocess_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:01.267 [info] ppl_id: 0f9438bf-d695-45c4-9237-584a6971c5b"},{"event":"cmd_output","timestamp":1607098321,"output":"9, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls."},{"event":"cmd_output","timestamp":1607098321,"output":"Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:01.275 [info] Project 2baa2abb-94c0-"},{"event":"cmd_output","timestamp":1607098321,"output":"4ebb-8a11-ae14b0903b37 and branch masterlatest_wf details updated: \"wf_id: bc5eb58a-75ee-4e56-ba9b-5"},{"event":"cmd_output","timestamp":1607098321,"output":"f96d5c0fd6c, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:12:01.278 [info] Persisted ppl_sub_init for pipeline with"},{"event":"cmd_output","timestamp":1607098321,"output":" ppl_id: 0f9438bf-d695-45c4-9237-584a6971c5b9: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Sc"},{"event":"cmd_output","timestamp":1607098321,"output":"hema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 152,"},{"event":"cmd_output","timestamp":1607098321,"output":" in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:01.276805], pipeline_r"},{"event":"cmd_output","timestamp":1607098321,"output":"equests: #Ecto.Association.NotLoaded, ppl_id: \"0f9438b"},{"event":"cmd_output","timestamp":1607098321,"output":"f-d695-45c4-9237-584a6971c5b9\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\""},{"event":"cmd_output","timestamp":1607098321,"output":", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:01.276818]}\n"},{"event":"cmd_output","timestamp":1607098321,"output":"\u001b[0m\u001b[22m\n16:12:01.288 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingState wi"},{"event":"cmd_output","timestamp":1607098321,"output":"th name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-"},{"event":"cmd_output","timestamp":1607098321,"output":"wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializi"},{"event":"cmd_output","timestamp":1607098321,"output":"ng\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"i"},{"event":"cmd_output","timestamp":1607098321,"output":"nitializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>"},{"event":"cmd_output","timestamp":1607098321,"output":", repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_c"},{"event":"cmd_output","timestamp":1607098321,"output":"ount, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:01.289 [info]"},{"event":"cmd_output","timestamp":1607098321,"output":" Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler."},{"event":"cmd_output","timestamp":1607098321,"output":"PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingS"},{"event":"cmd_output","timestamp":1607098321,"output":"tate\"]}, recurring args: %{allowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_s"},{"event":"cmd_output","timestamp":1607098321,"output":"ec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publisher_cb: #Function<0.8493"},{"event":"cmd_output","timestamp":1607098321,"output":"005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_r"},{"event":"cmd_output","timestamp":1607098321,"output":"equest, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_s"},{"event":"cmd_output","timestamp":1607098321,"output":"upervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:12:01.290 [info] Periodic from module Elixir.Ppl.Ppls"},{"event":"cmd_output","timestamp":1607098321,"output":".STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, metric"},{"event":"cmd_output","timestamp":1607098321,"output":"_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{allowed_sta"},{"event":"cmd_output","timestamp":1607098321,"output":"tes: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, obser"},{"event":"cmd_output","timestamp":1607098321,"output":"ved_state: \"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.args"},{"event":"cmd_output","timestamp":1607098321,"output":"/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recover"},{"event":"cmd_output","timestamp":1607098321,"output":"y_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:01.291 [in"},{"event":"cmd_output","timestamp":1607098321,"output":"fo] Periodic from module Elixir.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHandl"},{"event":"cmd_output","timestamp":1607098321,"output":"er.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Runni"},{"event":"cmd_output","timestamp":1607098321,"output":"ngState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2,"},{"event":"cmd_output","timestamp":1607098321,"output":" initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"running\", publisher_cb: #Function<0.74670282/1"},{"event":"cmd_output","timestamp":1607098321,"output":" in Ppl.Ppls.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_reques"},{"event":"cmd_output","timestamp":1607098321,"output":"t, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_superv"},{"event":"cmd_output","timestamp":1607098321,"output":"isor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:12:01.292 [info] Periodic from module Elixir.Ppl.Ppls.STMH"},{"event":"cmd_output","timestamp":1607098321,"output":"andler.StoppingState with name Elixir.Ppl.Ppls.STMHandler.StoppingState :: period: 100 ms, metric_na"},{"event":"cmd_output","timestamp":1607098321,"output":"me: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring args: %{allowed_state"},{"event":"cmd_output","timestamp":1607098321,"output":"s: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \""},{"event":"cmd_output","timestamp":1607098321,"output":"stopping\", publisher_cb: #Function<0.71803493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, repo: "},{"event":"cmd_output","timestamp":1607098321,"output":"Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :p"},{"event":"cmd_output","timestamp":1607098321,"output":"pl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:01.293 [info] Period"},{"event":"cmd_output","timestamp":1607098321,"output":"ic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHa"},{"event":"cmd_output","timestamp":1607098321,"output":"ndler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHan"},{"event":"cmd_output","timestamp":1607098321,"output":"dler-CreatedState\"]}, recurring args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, i"},{"event":"cmd_output","timestamp":1607098321,"output":"nitial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip, rep"},{"event":"cmd_output","timestamp":1607098321,"output":"o: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count,"},{"event":"cmd_output","timestamp":1607098321,"output":" :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:01.2"},{"event":"cmd_output","timestamp":1607098321,"output":"94 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098321,"output":".PplSubInits.STMHandler.FetchingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl"},{"event":"cmd_output","timestamp":1607098321,"output":"-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compil"},{"event":"cmd_output","timestamp":1607098321,"output":"ation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_st"},{"event":"cmd_output","timestamp":1607098321,"output":"ate: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :upda"},{"event":"cmd_output","timestamp":1607098321,"output":"ted_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_"},{"event":"cmd_output","timestamp":1607098321,"output":"supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:01.294 [info] Periodic from module Elixir.Ppl.PplSubInits.STMH"},{"event":"cmd_output","timestamp":1607098321,"output":"andler.CompilationState with name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 100 "},{"event":"cmd_output","timestamp":1607098321,"output":"ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurrin"},{"event":"cmd_output","timestamp":1607098321,"output":"g args: %{allowed_states: [\"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2,"},{"event":"cmd_output","timestamp":1607098321,"output":" initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"compilation\", publisher_cb: :ski"},{"event":"cmd_output","timestamp":1607098321,"output":"p, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_"},{"event":"cmd_output","timestamp":1607098321,"output":"count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098321,"output":"2:01.295 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with name E"},{"event":"cmd_output","timestamp":1607098321,"output":"lixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wak"},{"event":"cmd_output","timestamp":1607098321,"output":"e_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurring args: %{allowed_states: [\"done\"],"},{"event":"cmd_output","timestamp":1607098321,"output":" cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_ini"},{"event":"cmd_output","timestamp":1607098321,"output":"t\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :stat"},{"event":"cmd_output","timestamp":1607098321,"output":"e, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :"},{"event":"cmd_output","timestamp":1607098321,"output":"skip}\n\u001b[0m\u001b[22m\n16:12:01.296 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.Initiali"},{"event":"cmd_output","timestamp":1607098321,"output":"zingState with name Elixir.Ppl.PplBlocks.STMHandler.InitializingState :: period: 100 ms, metric_name"},{"event":"cmd_output","timestamp":1607098321,"output":": {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-InitializingState\"]}, recurring args: %{allowe"},{"event":"cmd_output","timestamp":1607098321,"output":"d_states: [\"initializing\", \"waiting\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Mod"},{"event":"cmd_output","timestamp":1607098321,"output":"el.PplBlocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:"},{"event":"cmd_output","timestamp":1607098321,"output":"id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schem"},{"event":"cmd_output","timestamp":1607098321,"output":"a: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:01.297 [info] Periodic "},{"event":"cmd_output","timestamp":1607098321,"output":"from module Elixir.Ppl.PplBlocks.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler.W"},{"event":"cmd_output","timestamp":1607098321,"output":"aitingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-Wai"},{"event":"cmd_output","timestamp":1607098321,"output":"tingState\"]}, recurring args: %{allowed_states: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 0,"},{"event":"cmd_output","timestamp":1607098321,"output":" initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"waiting\", publisher_cb: #Function<0."},{"event":"cmd_output","timestamp":1607098321,"output":"8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :te"},{"event":"cmd_output","timestamp":1607098321,"output":"rminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl."},{"event":"cmd_output","timestamp":1607098321,"output":"PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:01.298 [info] Periodic from mo"},{"event":"cmd_output","timestamp":1607098321,"output":"dule Elixir.Ppl.PplBlocks.STMHandler.RunningState with name Elixir.Ppl.PplBlocks.STMHandler.RunningS"},{"event":"cmd_output","timestamp":1607098321,"output":"tate :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningSta"},{"event":"cmd_output","timestamp":1607098321,"output":"te\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, init"},{"event":"cmd_output","timestamp":1607098321,"output":"ial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"running\", publisher_cb: #Function<0.28166"},{"event":"cmd_output","timestamp":1607098321,"output":"834/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :termin"},{"event":"cmd_output","timestamp":1607098321,"output":"ate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schem"},{"event":"cmd_output","timestamp":1607098321,"output":"a: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:01.298 [info] Periodic "},{"event":"cmd_output","timestamp":1607098321,"output":"from module Elixir.Ppl.PplBlocks.STMHandler.StoppingState with name Elixir.Ppl.PplBlocks.STMHandler."},{"event":"cmd_output","timestamp":1607098321,"output":"StoppingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-S"},{"event":"cmd_output","timestamp":1607098321,"output":"toppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initi"},{"event":"cmd_output","timestamp":1607098321,"output":"al_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"stopping\", publisher_cb: #Function<0.10421"},{"event":"cmd_output","timestamp":1607098321,"output":"5991/1 in Ppl.PplBlocks.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :term"},{"event":"cmd_output","timestamp":1607098321,"output":"inate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], sch"},{"event":"cmd_output","timestamp":1607098321,"output":"ema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:01.299 [info] Periodi"},{"event":"cmd_output","timestamp":1607098321,"output":"c from module Elixir.Block.Blocks.STMHandler.InitializingState with name Elixir.Block.Blocks.STMHand"},{"event":"cmd_output","timestamp":1607098321,"output":"ler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHan"},{"event":"cmd_output","timestamp":1607098321,"output":"dler-InitializingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: "},{"event":"cmd_output","timestamp":1607098321,"output":"0, initial_query: Block.Blocks.Model.Blocks, observed_state: \"initializing\", publisher_cb: :skip, re"},{"event":"cmd_output","timestamp":1607098321,"output":"po: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :bloc"},{"event":"cmd_output","timestamp":1607098321,"output":"k_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:01.300 [info] P"},{"event":"cmd_output","timestamp":1607098321,"output":"eriodic from module Elixir.Block.Blocks.STMHandler.RunningState with name Elixir.Block.Blocks.STMHan"},{"event":"cmd_output","timestamp":1607098321,"output":"dler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler"},{"event":"cmd_output","timestamp":1607098321,"output":"-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_se"},{"event":"cmd_output","timestamp":1607098321,"output":"c: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"running\", publisher_cb: :skip, rep"},{"event":"cmd_output","timestamp":1607098321,"output":"o: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block"},{"event":"cmd_output","timestamp":1607098321,"output":"_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:01.301 [info] Pe"},{"event":"cmd_output","timestamp":1607098321,"output":"riodic from module Elixir.Block.Blocks.STMHandler.StoppingState with name Elixir.Block.Blocks.STMHan"},{"event":"cmd_output","timestamp":1607098321,"output":"dler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandle"},{"event":"cmd_output","timestamp":1607098321,"output":"r-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, in"},{"event":"cmd_output","timestamp":1607098321,"output":"itial_query: Block.Blocks.Model.Blocks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block"},{"event":"cmd_output","timestamp":1607098321,"output":".EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], sc"},{"event":"cmd_output","timestamp":1607098321,"output":"hema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:01.302 [info] Periodic f"},{"event":"cmd_output","timestamp":1607098321,"output":"rom module Elixir.Block.Tasks.STMHandler.PendingState with name Elixir.Block.Tasks.STMHandler.Pendin"},{"event":"cmd_output","timestamp":1607098321,"output":"gState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingStat"},{"event":"cmd_output","timestamp":1607098321,"output":"e\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Blo"},{"event":"cmd_output","timestamp":1607098321,"output":"ck.Tasks.Model.Tasks, observed_state: \"pending\", publisher_cb: :skip, repo: Block.EctoRepo, returnin"},{"event":"cmd_output","timestamp":1607098321,"output":"g: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id, :build_request_id], sc"},{"event":"cmd_output","timestamp":1607098321,"output":"hema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:01.303 [info] Periodic fro"},{"event":"cmd_output","timestamp":1607098321,"output":"m module Elixir.Block.Tasks.STMHandler.RunningState with name Elixir.Block.Tasks.STMHandler.RunningS"},{"event":"cmd_output","timestamp":1607098321,"output":"tate :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningState\""},{"event":"cmd_output","timestamp":1607098321,"output":"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial"},{"event":"cmd_output","timestamp":1607098321,"output":"_query: Block.Tasks.Model.Tasks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRep"},{"event":"cmd_output","timestamp":1607098321,"output":"o, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Bl"},{"event":"cmd_output","timestamp":1607098321,"output":"ock.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:01.305 [info] Periodic from module"},{"event":"cmd_output","timestamp":1607098321,"output":" Elixir.Block.Tasks.STMHandler.StoppingState with name Elixir.Block.Tasks.STMHandler.StoppingState :"},{"event":"cmd_output","timestamp":1607098321,"output":": period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]}, r"},{"event":"cmd_output","timestamp":1607098321,"output":"ecurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Ta"},{"event":"cmd_output","timestamp":1607098321,"output":"sks.Model.Tasks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: ["},{"event":"cmd_output","timestamp":1607098321,"output":":id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model"},{"event":"cmd_output","timestamp":1607098321,"output":".Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:01.419 [info] ppl_id: 0f9438bf-d695-45c4-9237-584"},{"event":"cmd_output","timestamp":1607098321,"output":"a6971c5b9, type: PplRequests, event: persisted source_args for pipeline: 0f9438bf-d695-45c4-9237-584"},{"event":"cmd_output","timestamp":1607098321,"output":"a6971c5b9, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098321,"output":"\n16:12:01.425 [info] ppl_id: 0f9438bf-d695-45c4-9237-584a6971c5b9, type: PplSubInits, state: fetch"},{"event":"cmd_output","timestamp":1607098321,"output":"ing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L9"},{"event":"cmd_output","timestamp":1607098321,"output":"0), \n\u001b[0m\u001b[22m\n16:12:01.461 [info] ppl_id: 0f9438bf-d695-45c4-9237-584a6971c5b9, type: PplSubInit"},{"event":"cmd_output","timestamp":1607098321,"output":"s, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.lo"},{"event":"cmd_output","timestamp":1607098321,"output":"g_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:01.488 [info] ppl_id: 0f9438bf-d695-45c4-9237-584a6971c5b"},{"event":"cmd_output","timestamp":1607098321,"output":"9, type: PplRequests, event: persisted definition for request with request_token: 7114b3b2-364b-11eb"},{"event":"cmd_output","timestamp":1607098321,"output":"-9608-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76)"},{"event":"cmd_output","timestamp":1607098321,"output":", \n\u001b[0m\u001b[22m\n16:12:01.493 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto."},{"event":"cmd_output","timestamp":1607098321,"output":"Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:12:01.491567], name: \"v1.0-.semaph"},{"event":"cmd_output","timestamp":1607098321,"output":"ore/skip_block.yml\", organization_id: \"03a37b5f-0895-4eed-bf26-4c3551132bcb\", project_id: \"2baa2abb-"},{"event":"cmd_output","timestamp":1607098321,"output":"94c0-4ebb-8a11-ae14b0903b37\", queue_id: \"7efa8dbc-7ea5-494c-b3e0-e636876579e2\", scope: \"project\", up"},{"event":"cmd_output","timestamp":1607098321,"output":"dated_at: ~N[2020-12-04 16:12:01.491577], user_generated: false}}\n\u001b[0m\u001b[22m\n16:12:01.499 [info] p"},{"event":"cmd_output","timestamp":1607098321,"output":"pl_id: not_available, event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all"},{"event":"cmd_output","timestamp":1607098321,"output":"_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:01.499 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHa"},{"event":"cmd_output","timestamp":1607098321,"output":"ndler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:01.500 [info] ppl_id: 0f9438bf-d695-45c4"},{"event":"cmd_output","timestamp":1607098321,"output":"-9237-584a6971c5b9, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_c"},{"event":"cmd_output","timestamp":1607098321,"output":"ount: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098321,"output":":12:01.500 [info] ppl_id: 0f9438bf-d695-45c4-9237-584a6971c5b9, type: PplBlocks, block_index: 1, st"},{"event":"cmd_output","timestamp":1607098321,"output":"ate: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.Regu"},{"event":"cmd_output","timestamp":1607098321,"output":"larInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:01.503 [info] ppl_id: 0f9438bf-d695-45c4-9237-584a"},{"event":"cmd_output","timestamp":1607098321,"output":"6971c5b9, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098321,"output":" origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:01.524 [info] ppl_id: 0"},{"event":"cmd_output","timestamp":1607098321,"output":"f9438bf-d695-45c4-9237-584a6971c5b9, type: Ppls, state: pending, event: exit_scheduling, recovery_co"},{"event":"cmd_output","timestamp":1607098321,"output":"unt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:01.536 [info] pp"},{"event":"cmd_output","timestamp":1607098321,"output":"l_id: 0f9438bf-d695-45c4-9237-584a6971c5b9, type: PplBlocks, block_index: 0, state: waiting, event: "},{"event":"cmd_output","timestamp":1607098321,"output":"exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098321,"output":"22m\n16:12:01.541 [info] ppl_id: 0f9438bf-d695-45c4-9237-584a6971c5b9, type: Ppls, state: queuing, "},{"event":"cmd_output","timestamp":1607098321,"output":"event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \r"},{"event":"cmd_output","timestamp":1607098321,"output":"\n\u001b[0m\u001b[22m\n16:12:01.546 [info] ppl_id: 0f9438bf-d695-45c4-9237-584a6971c5b9, type: PplBlocks, bloc"},{"event":"cmd_output","timestamp":1607098321,"output":"k_index: 1, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Imp"},{"event":"cmd_output","timestamp":1607098321,"output":"l.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:01.555 [info] ppl_id: 0f9438bf-d695-45c4-9237-584a697"},{"event":"cmd_output","timestamp":1607098321,"output":"1c5b9, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper."},{"event":"cmd_output","timestamp":1607098321,"output":"STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:01.562 [info] PplBlocks WaitingState STM is sc"},{"event":"cmd_output","timestamp":1607098321,"output":"heduling block 0 from pipeline: \"0f9438bf-d695-45c4-9237-584a6971c5b9\"\n\u001b[0m\u001b[22m\n16:12:01.576 [inf"},{"event":"cmd_output","timestamp":1607098321,"output":"o] block_id: d8c6ff55-6e83-4d11-9009-12feb03ab9f1, type: BlockRequests, event: persisted block run "},{"event":"cmd_output","timestamp":1607098321,"output":"request from ppl 0f9438bf-d695-45c4-9237-584a6971c5b9 for block 0, origin: Elixir.Block.BlockRequest"},{"event":"cmd_output","timestamp":1607098321,"output":"s.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:01.579 [info] block_id: d8"},{"event":"cmd_output","timestamp":1607098321,"output":"c6ff55-6e83-4d11-9009-12feb03ab9f1, type: Blocks, state: initializing, event: initializing, recovery"},{"event":"cmd_output","timestamp":1607098321,"output":"_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:01.586 "},{"event":"cmd_output","timestamp":1607098321,"output":"[info] Block 0 of pipeline with id: 0f9438bf-d695-45c4-9237-584a6971c5b9 scheduled in block service"},{"event":"cmd_output","timestamp":1607098321,"output":" with id: : \"d8c6ff55-6e83-4d11-9009-12feb03ab9f1\"\n\u001b[0m\u001b[22m\n16:12:01.593 [info] ppl_id: 0f9438bf"},{"event":"cmd_output","timestamp":1607098321,"output":"-d695-45c4-9237-584a6971c5b9, type: PplBlocks, block_index: 0, state: running, event: exit_schedulin"},{"event":"cmd_output","timestamp":1607098321,"output":"g, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:01."},{"event":"cmd_output","timestamp":1607098321,"output":"594 [info] block_id: d8c6ff55-6e83-4d11-9009-12feb03ab9f1, type: BlockRequests, event: persisted bu"},{"event":"cmd_output","timestamp":1607098321,"output":"ild and sub_ppl details for block_request: d8c6ff55-6e83-4d11-9009-12feb03ab9f1, origin: Elixir.Bloc"},{"event":"cmd_output","timestamp":1607098321,"output":"k.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:01.600 [info] bl"},{"event":"cmd_output","timestamp":1607098321,"output":"ock_id: d8c6ff55-6e83-4d11-9009-12feb03ab9f1, type: Tasks, state: pending, event: created, recovery_"},{"event":"cmd_output","timestamp":1607098321,"output":"count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098321,"output":"12:01.604 [info] block_id: d8c6ff55-6e83-4d11-9009-12feb03ab9f1, type: Blocks, state: running, even"},{"event":"cmd_output","timestamp":1607098321,"output":"t: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098321,"output":"m\u001b[22m\n16:12:01.624 [info] block_id: d8c6ff55-6e83-4d11-9009-12feb03ab9f1, type: Tasks, state: run"},{"event":"cmd_output","timestamp":1607098321,"output":"ning, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098321,"output":"90), \n\u001b[0m\u001b[22m\n16:12:01.647 [info] block_id: d8c6ff55-6e83-4d11-9009-12feb03ab9f1, type: Tasks, "},{"event":"cmd_output","timestamp":1607098321,"output":"state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_cha"},{"event":"cmd_output","timestamp":1607098321,"output":"nge/1(L90), \n\u001b[0m\u001b[22m\n16:12:01.656 [info] block_id: d8c6ff55-6e83-4d11-9009-12feb03ab9f1, type: "},{"event":"cmd_output","timestamp":1607098321,"output":"Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_s"},{"event":"cmd_output","timestamp":1607098321,"output":"tate_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:01.667 [info] ppl_id: 0f9438bf-d695-45c4-9237-584a6971c5b9, "},{"event":"cmd_output","timestamp":1607098321,"output":"block_id: d8c6ff55-6e83-4d11-9009-12feb03ab9f1, type: PplBlocks, block_index: 0, state: done, result"},{"event":"cmd_output","timestamp":1607098321,"output":": passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change"},{"event":"cmd_output","timestamp":1607098321,"output":"/1(L90), \n\u001b[0m\u001b[22m\n16:12:01.678 [info] PplBlocks WaitingState STM is scheduling block 1 from pip"},{"event":"cmd_output","timestamp":1607098321,"output":"eline: \"0f9438bf-d695-45c4-9237-584a6971c5b9\"\n\u001b[0m\u001b[22m\n16:12:01.690 [info] block_id: bf2a0e7d-7d"},{"event":"cmd_output","timestamp":1607098321,"output":"e6-46fb-92d4-d508bb42123a, type: BlockRequests, event: persisted block run request from ppl 0f9438bf"},{"event":"cmd_output","timestamp":1607098321,"output":"-d695-45c4-9237-584a6971c5b9 for block 1, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQuer"},{"event":"cmd_output","timestamp":1607098321,"output":"ies.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:01.692 [info] block_id: bf2a0e7d-7de6-46fb-92d4-d50"},{"event":"cmd_output","timestamp":1607098321,"output":"8bb42123a, type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098321,"output":".Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:01.692 [info] Block 1 of pipeli"},{"event":"cmd_output","timestamp":1607098321,"output":"ne with id: 0f9438bf-d695-45c4-9237-584a6971c5b9 scheduled in block service with id: : \"bf2a0e7d-7de"},{"event":"cmd_output","timestamp":1607098321,"output":"6-46fb-92d4-d508bb42123a\"\n\u001b[0m\u001b[22m\n16:12:01.697 [info] ppl_id: 0f9438bf-d695-45c4-9237-584a6971c"},{"event":"cmd_output","timestamp":1607098321,"output":"5b9, type: PplBlocks, block_index: 1, state: running, event: exit_scheduling, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098321,"output":"gin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:01.703 [info] block_id: bf2"},{"event":"cmd_output","timestamp":1607098321,"output":"a0e7d-7de6-46fb-92d4-d508bb42123a, type: BlockRequests, event: persisted build and sub_ppl details f"},{"event":"cmd_output","timestamp":1607098321,"output":"or block_request: bf2a0e7d-7de6-46fb-92d4-d508bb42123a, origin: Elixir.Block.BlockRequests.Model.Blo"},{"event":"cmd_output","timestamp":1607098321,"output":"ckRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:01.706 [info] block_id: bf2a0e7d-7de6-46f"},{"event":"cmd_output","timestamp":1607098321,"output":"b-92d4-d508bb42123a, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098321,"output":"Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:01.708 [info] block_i"},{"event":"cmd_output","timestamp":1607098321,"output":"d: bf2a0e7d-7de6-46fb-92d4-d508bb42123a, type: Blocks, state: running, event: exit_scheduling, recov"},{"event":"cmd_output","timestamp":1607098321,"output":"ery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:01.723 [inf"},{"event":"cmd_output","timestamp":1607098321,"output":"o] block_id: bf2a0e7d-7de6-46fb-92d4-d508bb42123a, type: Tasks, state: running, event: exit_schedul"},{"event":"cmd_output","timestamp":1607098321,"output":"ing, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:0"},{"event":"cmd_output","timestamp":1607098321,"output":"1.762 [info] block_id: bf2a0e7d-7de6-46fb-92d4-d508bb42123a, type: Tasks, state: done, event: exit_"},{"event":"cmd_output","timestamp":1607098321,"output":"scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098321,"output":"16:12:01.768 [info] block_id: bf2a0e7d-7de6-46fb-92d4-d508bb42123a, type: Blocks, state: done, even"},{"event":"cmd_output","timestamp":1607098321,"output":"t: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098321,"output":"m\u001b[22m\n16:12:01.777 [info] ppl_id: 0f9438bf-d695-45c4-9237-584a6971c5b9, block_id: bf2a0e7d-7de6-4"},{"event":"cmd_output","timestamp":1607098321,"output":"6fb-92d4-d508bb42123a, type: PplBlocks, block_index: 1, state: done, result: failed, event: exit_sch"},{"event":"cmd_output","timestamp":1607098321,"output":"eduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098321,"output":"12:01.797 [info] ppl_id: 0f9438bf-d695-45c4-9237-584a6971c5b9, type: Ppls, state: done, result: fai"},{"event":"cmd_output","timestamp":1607098321,"output":"led, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L9"},{"event":"cmd_output","timestamp":1607098321,"output":"0), \n\u001b[0m\u001b[32m\r * test skip-when condition is false for given tag - block executed (657.5ms)\u001b[0m\n"},{"event":"cmd_output","timestamp":1607098321,"output":" * test skip-when condition is true for given branch - block skipped\u001b[22m\n16:12:01.920 [info] Req"},{"event":"cmd_output","timestamp":1607098321,"output":"uest: 'run: %{\"branch_id\" => \"c775ffc8-f997-4a63-9e4c-12232c5df343\", \"branch_name\" => \"master\", \"com"},{"event":"cmd_output","timestamp":1607098321,"output":"mit_sha\" => \"75891a4469\", \"file_name\" => \"skip_block.yml\", \"hook_id\" => \"7179b8e8-364b-11eb-961d-525"},{"event":"cmd_output","timestamp":1607098321,"output":"4005464e2\", \"label\" => \"dev-test\", \"organization_id\" => \"f1f41043-0bbc-4f5f-a024-51d4b242c599\", \"own"},{"event":"cmd_output","timestamp":1607098321,"output":"er\" => \"rt\", \"project_id\" => \"a4d15d5b-4e68-47f3-a706-ac2e6bbb330d\", \"repo_name\" => \"22_skip_block\","},{"event":"cmd_output","timestamp":1607098321,"output":" \"request_token\" => \"7179ae5c-364b-11eb-ab79-5254005464e2\", \"requester_id\" => \"69a9516e-d06f-4fe0-83"},{"event":"cmd_output","timestamp":1607098321,"output":"ff-a1f0181a0776\", \"service\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"]"},{"event":"cmd_output","timestamp":1607098321,"output":", \"wf_id\" => \"b5e89cd3-9c1e-4ae8-913e-3e19f1813d8e\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098321,"output":"2:01.924 [info] ppl_id: 8fe875c9-1874-4dac-9041-b08753eb763b, type: PplRequests, event: persisted s"},{"event":"cmd_output","timestamp":1607098321,"output":"chedule request with request_token: 7179ae5c-364b-11eb-ab79-5254005464e2, origin: Elixir.Ppl.PplRequ"},{"event":"cmd_output","timestamp":1607098321,"output":"ests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:01.928 [info] ppl_id: 8fe"},{"event":"cmd_output","timestamp":1607098321,"output":"875c9-1874-4dac-9041-b08753eb763b, type: Ppls, state: initializing, event: initializing, recovery_co"},{"event":"cmd_output","timestamp":1607098321,"output":"unt: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:01.93"},{"event":"cmd_output","timestamp":1607098321,"output":"4 [info] Project a4d15d5b-4e68-47f3-a706-ac2e6bbb330d and branch masterlatest_wf details updated: \""},{"event":"cmd_output","timestamp":1607098321,"output":"wf_id: b5e89cd3-9c1e-4ae8-913e-3e19f1813d8e, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:12:01.936 [info] Persiste"},{"event":"cmd_output","timestamp":1607098321,"output":"d ppl_sub_init for pipeline with ppl_id: 8fe875c9-1874-4dac-9041-b08753eb763b: %Ppl.PplSubInits.Mode"},{"event":"cmd_output","timestamp":1607098321,"output":"l.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, "},{"event":"cmd_output","timestamp":1607098321,"output":"error_description: nil, id: 153, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12"},{"event":"cmd_output","timestamp":1607098321,"output":"-04 16:12:01.934584], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"8fe875c9-1874-4dac-9041-b08753eb763b\", recovery_count: 0, result: nil, resu"},{"event":"cmd_output","timestamp":1607098321,"output":"lt_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~"},{"event":"cmd_output","timestamp":1607098321,"output":"N[2020-12-04 16:12:01.934593]}\n\u001b[0m\u001b[22m\n16:12:01.942 [info] Periodic from module Elixir.Ppl.Ppls"},{"event":"cmd_output","timestamp":1607098321,"output":".STMHandler.InitializingState with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 "},{"event":"cmd_output","timestamp":1607098321,"output":"ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args"},{"event":"cmd_output","timestamp":1607098321,"output":": %{allowed_states: [\"initializing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098321,"output":"s.Model.Ppls, observed_state: \"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMH"},{"event":"cmd_output","timestamp":1607098321,"output":"andler.InitializingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_"},{"event":"cmd_output","timestamp":1607098321,"output":"at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}"},{"event":"cmd_output","timestamp":1607098321,"output":"\n\u001b[0m\u001b[22m\n16:12:01.942 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingState with "},{"event":"cmd_output","timestamp":1607098321,"output":"name Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\""},{"event":"cmd_output","timestamp":1607098321,"output":", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"pending\", \"queuing\", \"r"},{"event":"cmd_output","timestamp":1607098321,"output":"unning\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\""},{"event":"cmd_output","timestamp":1607098321,"output":", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRep"},{"event":"cmd_output","timestamp":1607098321,"output":"o, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], sch"},{"event":"cmd_output","timestamp":1607098321,"output":"ema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:12:01.942 [info] Peri"},{"event":"cmd_output","timestamp":1607098321,"output":"odic from module Elixir.Ppl.Ppls.STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandler.Queuin"},{"event":"cmd_output","timestamp":1607098321,"output":"gState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]"},{"event":"cmd_output","timestamp":1607098321,"output":"}, recurring args: %{allowed_states: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, initial_q"},{"event":"cmd_output","timestamp":1607098321,"output":"uery: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.P"},{"event":"cmd_output","timestamp":1607098321,"output":"pls.STMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updat"},{"event":"cmd_output","timestamp":1607098321,"output":"ed_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :sk"},{"event":"cmd_output","timestamp":1607098321,"output":"ip}\n\u001b[0m\u001b[22m\n16:12:01.943 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.RunningState wi"},{"event":"cmd_output","timestamp":1607098321,"output":"th name Elixir.Ppl.Ppls.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_"},{"event":"cmd_output","timestamp":1607098321,"output":"up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\""},{"event":"cmd_output","timestamp":1607098321,"output":", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"running\", publ"},{"event":"cmd_output","timestamp":1607098321,"output":"isher_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, re"},{"event":"cmd_output","timestamp":1607098321,"output":"turning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: "},{"event":"cmd_output","timestamp":1607098321,"output":"Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:12:01.943 [info] Periodic "},{"event":"cmd_output","timestamp":1607098321,"output":"from module Elixir.Ppl.Ppls.STMHandler.StoppingState with name Elixir.Ppl.Ppls.STMHandler.StoppingSt"},{"event":"cmd_output","timestamp":1607098321,"output":"ate :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]},"},{"event":"cmd_output","timestamp":1607098321,"output":" recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Pp"},{"event":"cmd_output","timestamp":1607098321,"output":"ls.Model.Ppls, observed_state: \"stopping\", publisher_cb: #Function<0.71803493/1 in Ppl.Ppls.STMHandl"},{"event":"cmd_output","timestamp":1607098321,"output":"er.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :sta"},{"event":"cmd_output","timestamp":1607098321,"output":"te, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098321,"output":"22m\n16:12:01.943 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedState with n"},{"event":"cmd_output","timestamp":1607098321,"output":"ame Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.beholder-wa"},{"event":"cmd_output","timestamp":1607098321,"output":"ke_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args: %{allowed_states: [\"fetching\","},{"event":"cmd_output","timestamp":1607098321,"output":" \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"cr"},{"event":"cmd_output","timestamp":1607098321,"output":"eated\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :"},{"event":"cmd_output","timestamp":1607098321,"output":"state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_superviso"},{"event":"cmd_output","timestamp":1607098321,"output":"r: :skip}\n\u001b[0m\u001b[22m\n16:12:01.943 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.Fe"},{"event":"cmd_output","timestamp":1607098321,"output":"tchingState with name Elixir.Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 ms, metric_name"},{"event":"cmd_output","timestamp":1607098321,"output":": {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %{allowed_"},{"event":"cmd_output","timestamp":1607098321,"output":"states: [\"regular_init\", \"compilation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInit"},{"event":"cmd_output","timestamp":1607098321,"output":"s.Model.PplSubInits, observed_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning:"},{"event":"cmd_output","timestamp":1607098321,"output":" [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplS"},{"event":"cmd_output","timestamp":1607098321,"output":"ubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:01.943 [info] Periodic from mo"},{"event":"cmd_output","timestamp":1607098321,"output":"dule Elixir.Ppl.PplSubInits.STMHandler.CompilationState with name Elixir.Ppl.PplSubInits.STMHandler."},{"event":"cmd_output","timestamp":1607098321,"output":"CompilationState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandl"},{"event":"cmd_output","timestamp":1607098321,"output":"er-CompilationState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"stopping\""},{"event":"cmd_output","timestamp":1607098321,"output":", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \""},{"event":"cmd_output","timestamp":1607098321,"output":"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated"},{"event":"cmd_output","timestamp":1607098321,"output":"_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_sup"},{"event":"cmd_output","timestamp":1607098321,"output":"ervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:01.943 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHand"},{"event":"cmd_output","timestamp":1607098321,"output":"ler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period: 100 ms,"},{"event":"cmd_output","timestamp":1607098321,"output":" metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurring a"},{"event":"cmd_output","timestamp":1607098321,"output":"rgs: %{allowed_states: [\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubIni"},{"event":"cmd_output","timestamp":1607098321,"output":"ts, observed_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :termi"},{"event":"cmd_output","timestamp":1607098321,"output":"nate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model"},{"event":"cmd_output","timestamp":1607098321,"output":".PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:01.943 [info] Periodic from module Elixir.P"},{"event":"cmd_output","timestamp":1607098321,"output":"pl.PplBlocks.STMHandler.InitializingState with name Elixir.Ppl.PplBlocks.STMHandler.InitializingStat"},{"event":"cmd_output","timestamp":1607098321,"output":"e :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-InitializingSt"},{"event":"cmd_output","timestamp":1607098321,"output":"ate\"]}, recurring args: %{allowed_states: [\"initializing\", \"waiting\", \"done\"], cooling_time_sec: 0, "},{"event":"cmd_output","timestamp":1607098321,"output":"initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"initializing\", publisher_cb: :skip, r"},{"event":"cmd_output","timestamp":1607098321,"output":"epo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_coun"},{"event":"cmd_output","timestamp":1607098321,"output":"t, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098321,"output":"\n16:12:01.944 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.WaitingState with name E"},{"event":"cmd_output","timestamp":1607098321,"output":"lixir.Ppl.PplBlocks.STMHandler.WaitingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\""},{"event":"cmd_output","timestamp":1607098321,"output":", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurring args: %{allowed_states: [\"waiting\", \"running"},{"event":"cmd_output","timestamp":1607098321,"output":"\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"wait"},{"event":"cmd_output","timestamp":1607098321,"output":"ing\", publisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>, repo: Pp"},{"event":"cmd_output","timestamp":1607098321,"output":"l.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl"},{"event":"cmd_output","timestamp":1607098321,"output":"_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12"},{"event":"cmd_output","timestamp":1607098321,"output":":01.944 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.RunningState with name Elixir.P"},{"event":"cmd_output","timestamp":1607098321,"output":"pl.PplBlocks.STMHandler.RunningState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl"},{"event":"cmd_output","timestamp":1607098321,"output":"-PplBlocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"do"},{"event":"cmd_output","timestamp":1607098321,"output":"ne\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"running\","},{"event":"cmd_output","timestamp":1607098321,"output":" publisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0>, repo: Ppl.Ec"},{"event":"cmd_output","timestamp":1607098321,"output":"toRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id,"},{"event":"cmd_output","timestamp":1607098321,"output":" :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098321,"output":"\n16:12:01.944 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.StoppingState with name "},{"event":"cmd_output","timestamp":1607098321,"output":"Elixir.Ppl.PplBlocks.STMHandler.StoppingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_u"},{"event":"cmd_output","timestamp":1607098321,"output":"p\", [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"don"},{"event":"cmd_output","timestamp":1607098321,"output":"e\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"stopping\","},{"event":"cmd_output","timestamp":1607098321,"output":" publisher_cb: #Function<0.104215991/1 in Ppl.PplBlocks.STMHandler.StoppingState.args/0>, repo: Ppl."},{"event":"cmd_output","timestamp":1607098321,"output":"EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_i"},{"event":"cmd_output","timestamp":1607098321,"output":"d, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098321,"output":"2m\n16:12:01.944 [info] Periodic from module Elixir.Block.Blocks.STMHandler.InitializingState with "},{"event":"cmd_output","timestamp":1607098321,"output":"name Elixir.Block.Blocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder"},{"event":"cmd_output","timestamp":1607098321,"output":"-wake_up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"runni"},{"event":"cmd_output","timestamp":1607098321,"output":"ng\", \"done\"], cooling_time_sec: 0, initial_query: Block.Blocks.Model.Blocks, observed_state: \"initia"},{"event":"cmd_output","timestamp":1607098321,"output":"lizing\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at"},{"event":"cmd_output","timestamp":1607098321,"output":", :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b"},{"event":"cmd_output","timestamp":1607098321,"output":"[0m\u001b[22m\n16:12:01.944 [info] Periodic from module Elixir.Block.Blocks.STMHandler.RunningState with"},{"event":"cmd_output","timestamp":1607098321,"output":" name Elixir.Block.Blocks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wak"},{"event":"cmd_output","timestamp":1607098321,"output":"e_up\", [\"Block-Blocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"sto"},{"event":"cmd_output","timestamp":1607098321,"output":"pping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"ru"},{"event":"cmd_output","timestamp":1607098321,"output":"nning\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at,"},{"event":"cmd_output","timestamp":1607098321,"output":" :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b["},{"event":"cmd_output","timestamp":1607098321,"output":"0m\u001b[22m\n16:12:01.944 [info] Periodic from module Elixir.Block.Blocks.STMHandler.StoppingState with"},{"event":"cmd_output","timestamp":1607098321,"output":" name Elixir.Block.Blocks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wa"},{"event":"cmd_output","timestamp":1607098321,"output":"ke_up\", [\"Block-Blocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \""},{"event":"cmd_output","timestamp":1607098321,"output":"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"stopping\", "},{"event":"cmd_output","timestamp":1607098321,"output":"publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state,"},{"event":"cmd_output","timestamp":1607098321,"output":" :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098321,"output":"\n16:12:01.945 [info] Periodic from module Elixir.Block.Tasks.STMHandler.PendingState with name Elix"},{"event":"cmd_output","timestamp":1607098321,"output":"ir.Block.Tasks.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Bl"},{"event":"cmd_output","timestamp":1607098321,"output":"ock-Tasks-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling"},{"event":"cmd_output","timestamp":1607098321,"output":"_time_sec: 0, initial_query: Block.Tasks.Model.Tasks, observed_state: \"pending\", publisher_cb: :skip"},{"event":"cmd_output","timestamp":1607098321,"output":", repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :"},{"event":"cmd_output","timestamp":1607098321,"output":"block_id, :build_request_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098321,"output":"6:12:01.945 [info] Periodic from module Elixir.Block.Tasks.STMHandler.RunningState with name Elixir"},{"event":"cmd_output","timestamp":1607098321,"output":".Block.Tasks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Bloc"},{"event":"cmd_output","timestamp":1607098321,"output":"k-Tasks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\""},{"event":"cmd_output","timestamp":1607098321,"output":"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"running\", publishe"},{"event":"cmd_output","timestamp":1607098321,"output":"r_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recove"},{"event":"cmd_output","timestamp":1607098321,"output":"ry_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:01."},{"event":"cmd_output","timestamp":1607098321,"output":"945 [info] Periodic from module Elixir.Block.Tasks.STMHandler.StoppingState with name Elixir.Block."},{"event":"cmd_output","timestamp":1607098321,"output":"Tasks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Task"},{"event":"cmd_output","timestamp":1607098321,"output":"s-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_"},{"event":"cmd_output","timestamp":1607098321,"output":"sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"stopping\", publisher_cb: :skip, re"},{"event":"cmd_output","timestamp":1607098321,"output":"po: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :bloc"},{"event":"cmd_output","timestamp":1607098322,"output":"k_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:02.071 [info] ppl"},{"event":"cmd_output","timestamp":1607098322,"output":"_id: 8fe875c9-1874-4dac-9041-b08753eb763b, type: PplRequests, event: persisted source_args for pipel"},{"event":"cmd_output","timestamp":1607098322,"output":"ine: 8fe875c9-1874-4dac-9041-b08753eb763b, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.i"},{"event":"cmd_output","timestamp":1607098322,"output":"nsert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:02.079 [info] ppl_id: 8fe875c9-1874-4dac-9041-b08753eb763b,"},{"event":"cmd_output","timestamp":1607098322,"output":" type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loope"},{"event":"cmd_output","timestamp":1607098322,"output":"r.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:02.097 [info] ppl_id: 8fe875c9-1874-4dac-904"},{"event":"cmd_output","timestamp":1607098322,"output":"1-b08753eb763b, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098322,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:02.121 [info] ppl_id: 8fe"},{"event":"cmd_output","timestamp":1607098322,"output":"875c9-1874-4dac-9041-b08753eb763b, type: PplRequests, event: persisted definition for request with r"},{"event":"cmd_output","timestamp":1607098322,"output":"equest_token: 7179ae5c-364b-11eb-ab79-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequests"},{"event":"cmd_output","timestamp":1607098322,"output":"Queries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:02.125 [info] Queue persisted: {:ok, %Ppl.Queu"},{"event":"cmd_output","timestamp":1607098322,"output":"es.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:12"},{"event":"cmd_output","timestamp":1607098322,"output":":02.124268], name: \"dev-test-.semaphore/skip_block.yml\", organization_id: \"f1f41043-0bbc-4f5f-a024-5"},{"event":"cmd_output","timestamp":1607098322,"output":"1d4b242c599\", project_id: \"a4d15d5b-4e68-47f3-a706-ac2e6bbb330d\", queue_id: \"b8bb818c-e22b-4d00-8ba0"},{"event":"cmd_output","timestamp":1607098322,"output":"-954c6e2ba566\", scope: \"project\", updated_at: ~N[2020-12-04 16:12:02.124278], user_generated: false}"},{"event":"cmd_output","timestamp":1607098322,"output":"}\n\u001b[0m\u001b[22m\n16:12:02.132 [info] ppl_id: not_available, event: created, origin: Elixir.Ppl.PplSubI"},{"event":"cmd_output","timestamp":1607098322,"output":"nits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:02.132 [info] event: created, "},{"event":"cmd_output","timestamp":1607098322,"output":"origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:02.13"},{"event":"cmd_output","timestamp":1607098322,"output":"2 [info] ppl_id: 8fe875c9-1874-4dac-9041-b08753eb763b, type: PplBlocks, block_index: 0, state: init"},{"event":"cmd_output","timestamp":1607098322,"output":"ializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitSt"},{"event":"cmd_output","timestamp":1607098322,"output":"ate.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:02.132 [info] ppl_id: 8fe875c9-1874-4dac-9041-b08753eb763b,"},{"event":"cmd_output","timestamp":1607098322,"output":" type: PplBlocks, block_index: 1, state: initializing, event: created, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098322,"output":"ixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:02.134 [info] "},{"event":"cmd_output","timestamp":1607098322,"output":"ppl_id: 8fe875c9-1874-4dac-9041-b08753eb763b, type: PplSubInits, state: done, result: passed, event:"},{"event":"cmd_output","timestamp":1607098322,"output":" exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098322,"output":"[22m\n16:12:02.144 [info] ppl_id: 8fe875c9-1874-4dac-9041-b08753eb763b, type: Ppls, state: pending,"},{"event":"cmd_output","timestamp":1607098322,"output":" event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), "},{"event":"cmd_output","timestamp":1607098322,"output":"\n\u001b[0m\u001b[22m\n16:12:02.145 [info] ppl_id: 8fe875c9-1874-4dac-9041-b08753eb763b, type: PplBlocks, blo"},{"event":"cmd_output","timestamp":1607098322,"output":"ck_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Im"},{"event":"cmd_output","timestamp":1607098322,"output":"pl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:02.156 [info] ppl_id: 8fe875c9-1874-4dac-9041-b08753"},{"event":"cmd_output","timestamp":1607098322,"output":"eb763b, type: PplBlocks, block_index: 1, state: waiting, event: exit_scheduling, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098322,"output":"origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:02.158 [info] ppl_id: 8f"},{"event":"cmd_output","timestamp":1607098322,"output":"e875c9-1874-4dac-9041-b08753eb763b, type: Ppls, state: queuing, event: exit_scheduling, recovery_cou"},{"event":"cmd_output","timestamp":1607098322,"output":"nt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:02.174 [info] ppl"},{"event":"cmd_output","timestamp":1607098322,"output":"_id: 8fe875c9-1874-4dac-9041-b08753eb763b, type: Ppls, state: running, event: exit_scheduling, recov"},{"event":"cmd_output","timestamp":1607098322,"output":"ery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:02.183 [inf"},{"event":"cmd_output","timestamp":1607098322,"output":"o] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"8fe875c9-1874-4dac-9041-b08753e"},{"event":"cmd_output","timestamp":1607098322,"output":"b763b\"\n\u001b[0m\u001b[22m\n16:12:02.189 [info] block_id: 946109e3-66d6-4703-a713-0860d1c6c3b9, type: BlockR"},{"event":"cmd_output","timestamp":1607098322,"output":"equests, event: persisted block run request from ppl 8fe875c9-1874-4dac-9041-b08753eb763b for block "},{"event":"cmd_output","timestamp":1607098322,"output":"0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098322,"output":"m\n16:12:02.200 [info] block_id: 946109e3-66d6-4703-a713-0860d1c6c3b9, type: Blocks, state: initial"},{"event":"cmd_output","timestamp":1607098322,"output":"izing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.inser"},{"event":"cmd_output","timestamp":1607098322,"output":"t/1(L43), \n\u001b[0m\u001b[22m\n16:12:02.203 [info] Block 0 of pipeline with id: 8fe875c9-1874-4dac-9041-b08"},{"event":"cmd_output","timestamp":1607098322,"output":"753eb763b scheduled in block service with id: : \"946109e3-66d6-4703-a713-0860d1c6c3b9\"\n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098322,"output":"6:12:02.209 [info] block_id: 946109e3-66d6-4703-a713-0860d1c6c3b9, type: BlockRequests, event: pers"},{"event":"cmd_output","timestamp":1607098322,"output":"isted build and sub_ppl details for block_request: 946109e3-66d6-4703-a713-0860d1c6c3b9, origin: Eli"},{"event":"cmd_output","timestamp":1607098322,"output":"xir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:02.210 [i"},{"event":"cmd_output","timestamp":1607098322,"output":"nfo] ppl_id: 8fe875c9-1874-4dac-9041-b08753eb763b, type: PplBlocks, block_index: 0, state: running,"},{"event":"cmd_output","timestamp":1607098322,"output":" event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), "},{"event":"cmd_output","timestamp":1607098322,"output":"\n\u001b[0m\u001b[22m\n16:12:02.215 [info] block_id: 946109e3-66d6-4703-a713-0860d1c6c3b9, type: Tasks, state"},{"event":"cmd_output","timestamp":1607098322,"output":": pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingSta"},{"event":"cmd_output","timestamp":1607098322,"output":"te.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:02.219 [info] block_id: 946109e3-66d6-4703-a713-0860d1c6c3b9"},{"event":"cmd_output","timestamp":1607098322,"output":", type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM"},{"event":"cmd_output","timestamp":1607098322,"output":".Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:02.237 [info] block_id: 946109e3-66d6-4703-a713-0"},{"event":"cmd_output","timestamp":1607098322,"output":"860d1c6c3b9, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098322,"output":"Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:02.283 [info] block_id: 946109e3-66d6-4"},{"event":"cmd_output","timestamp":1607098322,"output":"703-a713-0860d1c6c3b9, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098322,"output":"Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:02.294 [info] block_id: 946109e3"},{"event":"cmd_output","timestamp":1607098322,"output":"-66d6-4703-a713-0860d1c6c3b9, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098322,"output":"origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:02.310 [info] ppl_id: 8f"},{"event":"cmd_output","timestamp":1607098322,"output":"e875c9-1874-4dac-9041-b08753eb763b, block_id: 946109e3-66d6-4703-a713-0860d1c6c3b9, type: PplBlocks,"},{"event":"cmd_output","timestamp":1607098322,"output":" block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098322,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:02.319 [info] PplBlocks WaitingStat"},{"event":"cmd_output","timestamp":1607098322,"output":"e STM is scheduling block 1 from pipeline: \"8fe875c9-1874-4dac-9041-b08753eb763b\"\n\u001b[0m\u001b[22m\n16:12:"},{"event":"cmd_output","timestamp":1607098322,"output":"02.326 [info] ppl_id: 8fe875c9-1874-4dac-9041-b08753eb763b, type: PplBlocks, block_index: 1, state:"},{"event":"cmd_output","timestamp":1607098322,"output":" done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098322,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:02.336 [info] ppl_id: 8fe875c9-1874-4dac-9041-b08753eb763b"},{"event":"cmd_output","timestamp":1607098322,"output":", type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098322,"output":".Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test skip-when condition is true for given"},{"event":"cmd_output","timestamp":1607098322,"output":" branch - block skipped (534.2ms)\u001b[0m\n * test skip-when condition is false for given pr - block ex"},{"event":"cmd_output","timestamp":1607098322,"output":"ecuted\u001b[22m\n16:12:02.451 [info] Request: 'run: %{\"branch_id\" => \"ce0e8668-e8c0-4830-b7f7-c9165eeaf"},{"event":"cmd_output","timestamp":1607098322,"output":"afc\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"skip_block.yml\", \"hoo"},{"event":"cmd_output","timestamp":1607098322,"output":"k_id\" => \"pr\", \"label\" => \"456\", \"organization_id\" => \"cea8f8f5-c0c3-443a-8672-75c573f999ed\", \"owner"},{"event":"cmd_output","timestamp":1607098322,"output":"\" => \"rt\", \"project_id\" => \"5cce575a-c41c-4368-8884-8df346544b99\", \"repo_name\" => \"22_skip_block\", \""},{"event":"cmd_output","timestamp":1607098322,"output":"request_token\" => \"71ca9d76-364b-11eb-bf9e-5254005464e2\", \"requester_id\" => \"bc5f1800-586d-439b-a4a7"},{"event":"cmd_output","timestamp":1607098322,"output":"-8ed7fe8acb4a\", \"service\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], "},{"event":"cmd_output","timestamp":1607098322,"output":"\"wf_id\" => \"8d050c01-3d4f-420a-8a06-d917b96ed4db\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:12:"},{"event":"cmd_output","timestamp":1607098322,"output":"02.460 [info] ppl_id: 20298134-64c9-460b-9168-e1481af7bd1f, type: PplRequests, event: persisted sch"},{"event":"cmd_output","timestamp":1607098322,"output":"edule request with request_token: 71ca9d76-364b-11eb-bf9e-5254005464e2, origin: Elixir.Ppl.PplReques"},{"event":"cmd_output","timestamp":1607098322,"output":"ts.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:02.464 [info] ppl_id: 20298"},{"event":"cmd_output","timestamp":1607098322,"output":"134-64c9-460b-9168-e1481af7bd1f, type: Ppls, state: initializing, event: initializing, recovery_coun"},{"event":"cmd_output","timestamp":1607098322,"output":"t: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:02.476 "},{"event":"cmd_output","timestamp":1607098322,"output":"[info] Project 5cce575a-c41c-4368-8884-8df346544b99 and branch masterlatest_wf details updated: \"wf"},{"event":"cmd_output","timestamp":1607098322,"output":"_id: 8d050c01-3d4f-420a-8a06-d917b96ed4db, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:12:02.478 [info] Persisted "},{"event":"cmd_output","timestamp":1607098322,"output":"ppl_sub_init for pipeline with ppl_id: 20298134-64c9-460b-9168-e1481af7bd1f: %Ppl.PplSubInits.Model."},{"event":"cmd_output","timestamp":1607098322,"output":"PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, er"},{"event":"cmd_output","timestamp":1607098322,"output":"ror_description: nil, id: 154, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-0"},{"event":"cmd_output","timestamp":1607098322,"output":"4 16:12:02.476460], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"20298134-64c9-460b-9168-e1481af7bd1f\", recovery_count: 0, result: nil, result"},{"event":"cmd_output","timestamp":1607098322,"output":"_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N["},{"event":"cmd_output","timestamp":1607098322,"output":"2020-12-04 16:12:02.476472]}\n\u001b[0m\u001b[22m\n16:12:02.486 [info] Periodic from module Elixir.Ppl.Ppls.S"},{"event":"cmd_output","timestamp":1607098322,"output":"TMHandler.InitializingState with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms"},{"event":"cmd_output","timestamp":1607098322,"output":", metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: "},{"event":"cmd_output","timestamp":1607098322,"output":"%{allowed_states: [\"initializing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls."},{"event":"cmd_output","timestamp":1607098322,"output":"Model.Ppls, observed_state: \"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHan"},{"event":"cmd_output","timestamp":1607098322,"output":"dler.InitializingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at"},{"event":"cmd_output","timestamp":1607098322,"output":", :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n"},{"event":"cmd_output","timestamp":1607098322,"output":"\u001b[0m\u001b[22m\n16:12:02.487 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingState with na"},{"event":"cmd_output","timestamp":1607098322,"output":"me Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", "},{"event":"cmd_output","timestamp":1607098322,"output":"[\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"pending\", \"queuing\", \"run"},{"event":"cmd_output","timestamp":1607098322,"output":"ning\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", "},{"event":"cmd_output","timestamp":1607098322,"output":"publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo,"},{"event":"cmd_output","timestamp":1607098322,"output":" returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schem"},{"event":"cmd_output","timestamp":1607098322,"output":"a: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:12:02.488 [info] Period"},{"event":"cmd_output","timestamp":1607098322,"output":"ic from module Elixir.Ppl.Ppls.STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandler.QueuingS"},{"event":"cmd_output","timestamp":1607098322,"output":"tate :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]},"},{"event":"cmd_output","timestamp":1607098322,"output":" recurring args: %{allowed_states: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, initial_que"},{"event":"cmd_output","timestamp":1607098322,"output":"ry: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098322,"output":"s.STMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated"},{"event":"cmd_output","timestamp":1607098322,"output":"_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip"},{"event":"cmd_output","timestamp":1607098322,"output":"}\n\u001b[0m\u001b[22m\n16:12:02.488 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.RunningState with"},{"event":"cmd_output","timestamp":1607098322,"output":" name Elixir.Ppl.Ppls.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up"},{"event":"cmd_output","timestamp":1607098322,"output":"\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", "},{"event":"cmd_output","timestamp":1607098322,"output":"\"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"running\", publis"},{"event":"cmd_output","timestamp":1607098322,"output":"her_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, retu"},{"event":"cmd_output","timestamp":1607098322,"output":"rning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Pp"},{"event":"cmd_output","timestamp":1607098322,"output":"l.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:12:02.489 [info] Periodic fr"},{"event":"cmd_output","timestamp":1607098322,"output":"om module Elixir.Ppl.Ppls.STMHandler.StoppingState with name Elixir.Ppl.Ppls.STMHandler.StoppingStat"},{"event":"cmd_output","timestamp":1607098322,"output":"e :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, r"},{"event":"cmd_output","timestamp":1607098322,"output":"ecurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls"},{"event":"cmd_output","timestamp":1607098322,"output":".Model.Ppls, observed_state: \"stopping\", publisher_cb: #Function<0.71803493/1 in Ppl.Ppls.STMHandler"},{"event":"cmd_output","timestamp":1607098322,"output":".StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state"},{"event":"cmd_output","timestamp":1607098322,"output":", :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098322,"output":"m\n16:12:02.490 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedState with nam"},{"event":"cmd_output","timestamp":1607098322,"output":"e Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake"},{"event":"cmd_output","timestamp":1607098322,"output":"_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args: %{allowed_states: [\"fetching\", \""},{"event":"cmd_output","timestamp":1607098322,"output":"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"crea"},{"event":"cmd_output","timestamp":1607098322,"output":"ted\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :st"},{"event":"cmd_output","timestamp":1607098322,"output":"ate, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor:"},{"event":"cmd_output","timestamp":1607098322,"output":" :skip}\n\u001b[0m\u001b[22m\n16:12:02.491 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.Fetc"},{"event":"cmd_output","timestamp":1607098322,"output":"hingState with name Elixir.Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 ms, metric_name: "},{"event":"cmd_output","timestamp":1607098322,"output":"{\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %{allowed_st"},{"event":"cmd_output","timestamp":1607098322,"output":"ates: [\"regular_init\", \"compilation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits."},{"event":"cmd_output","timestamp":1607098322,"output":"Model.PplSubInits, observed_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: ["},{"event":"cmd_output","timestamp":1607098322,"output":":id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSub"},{"event":"cmd_output","timestamp":1607098322,"output":"Inits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:02.491 [info] Periodic from modu"},{"event":"cmd_output","timestamp":1607098322,"output":"le Elixir.Ppl.PplSubInits.STMHandler.CompilationState with name Elixir.Ppl.PplSubInits.STMHandler.Co"},{"event":"cmd_output","timestamp":1607098322,"output":"mpilationState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler"},{"event":"cmd_output","timestamp":1607098322,"output":"-CompilationState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"stopping\", "},{"event":"cmd_output","timestamp":1607098322,"output":"\"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"co"},{"event":"cmd_output","timestamp":1607098322,"output":"mpilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_a"},{"event":"cmd_output","timestamp":1607098322,"output":"t, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_super"},{"event":"cmd_output","timestamp":1607098322,"output":"visor: :skip}\n\u001b[0m\u001b[22m\n16:12:02.492 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandle"},{"event":"cmd_output","timestamp":1607098322,"output":"r.RegularInitState with name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period: 100 ms, m"},{"event":"cmd_output","timestamp":1607098322,"output":"etric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurring arg"},{"event":"cmd_output","timestamp":1607098322,"output":"s: %{allowed_states: [\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits"},{"event":"cmd_output","timestamp":1607098322,"output":", observed_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :termina"},{"event":"cmd_output","timestamp":1607098322,"output":"te_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.P"},{"event":"cmd_output","timestamp":1607098322,"output":"plSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:02.493 [info] Periodic from module Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098322,"output":".PplBlocks.STMHandler.InitializingState with name Elixir.Ppl.PplBlocks.STMHandler.InitializingState "},{"event":"cmd_output","timestamp":1607098322,"output":":: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-InitializingStat"},{"event":"cmd_output","timestamp":1607098322,"output":"e\"]}, recurring args: %{allowed_states: [\"initializing\", \"waiting\", \"done\"], cooling_time_sec: 0, in"},{"event":"cmd_output","timestamp":1607098322,"output":"itial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"initializing\", publisher_cb: :skip, rep"},{"event":"cmd_output","timestamp":1607098322,"output":"o: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count,"},{"event":"cmd_output","timestamp":1607098322,"output":" :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098322,"output":"16:12:02.494 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.WaitingState with name Eli"},{"event":"cmd_output","timestamp":1607098322,"output":"xir.Ppl.PplBlocks.STMHandler.WaitingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", "},{"event":"cmd_output","timestamp":1607098322,"output":"[\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurring args: %{allowed_states: [\"waiting\", \"running\","},{"event":"cmd_output","timestamp":1607098322,"output":" \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"waitin"},{"event":"cmd_output","timestamp":1607098322,"output":"g\", publisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>, repo: Ppl."},{"event":"cmd_output","timestamp":1607098322,"output":"EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_i"},{"event":"cmd_output","timestamp":1607098322,"output":"d, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:0"},{"event":"cmd_output","timestamp":1607098322,"output":"2.495 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.RunningState with name Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098322,"output":".PplBlocks.STMHandler.RunningState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-P"},{"event":"cmd_output","timestamp":1607098322,"output":"plBlocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done"},{"event":"cmd_output","timestamp":1607098322,"output":"\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"running\", p"},{"event":"cmd_output","timestamp":1607098322,"output":"ublisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0>, repo: Ppl.Ecto"},{"event":"cmd_output","timestamp":1607098322,"output":"Repo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :"},{"event":"cmd_output","timestamp":1607098322,"output":"block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098322,"output":"16:12:02.496 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.StoppingState with name El"},{"event":"cmd_output","timestamp":1607098322,"output":"ixir.Ppl.PplBlocks.STMHandler.StoppingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\""},{"event":"cmd_output","timestamp":1607098322,"output":", [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\""},{"event":"cmd_output","timestamp":1607098322,"output":"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"stopping\", p"},{"event":"cmd_output","timestamp":1607098322,"output":"ublisher_cb: #Function<0.104215991/1 in Ppl.PplBlocks.STMHandler.StoppingState.args/0>, repo: Ppl.Ec"},{"event":"cmd_output","timestamp":1607098322,"output":"toRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id,"},{"event":"cmd_output","timestamp":1607098322,"output":" :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098322,"output":"\n16:12:02.497 [info] Periodic from module Elixir.Block.Blocks.STMHandler.InitializingState with na"},{"event":"cmd_output","timestamp":1607098322,"output":"me Elixir.Block.Blocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-w"},{"event":"cmd_output","timestamp":1607098322,"output":"ake_up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"running"},{"event":"cmd_output","timestamp":1607098322,"output":"\", \"done\"], cooling_time_sec: 0, initial_query: Block.Blocks.Model.Blocks, observed_state: \"initiali"},{"event":"cmd_output","timestamp":1607098322,"output":"zing\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, "},{"event":"cmd_output","timestamp":1607098322,"output":":state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0"},{"event":"cmd_output","timestamp":1607098322,"output":"m\u001b[22m\n16:12:02.497 [info] Periodic from module Elixir.Block.Blocks.STMHandler.RunningState with n"},{"event":"cmd_output","timestamp":1607098322,"output":"ame Elixir.Block.Blocks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_"},{"event":"cmd_output","timestamp":1607098322,"output":"up\", [\"Block-Blocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopp"},{"event":"cmd_output","timestamp":1607098322,"output":"ing\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"runn"},{"event":"cmd_output","timestamp":1607098322,"output":"ing\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :"},{"event":"cmd_output","timestamp":1607098322,"output":"state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m"},{"event":"cmd_output","timestamp":1607098322,"output":"\u001b[22m\n16:12:02.498 [info] Periodic from module Elixir.Block.Blocks.STMHandler.StoppingState with n"},{"event":"cmd_output","timestamp":1607098322,"output":"ame Elixir.Block.Blocks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake"},{"event":"cmd_output","timestamp":1607098322,"output":"_up\", [\"Block-Blocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"do"},{"event":"cmd_output","timestamp":1607098322,"output":"ne\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"stopping\", pu"},{"event":"cmd_output","timestamp":1607098322,"output":"blisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :"},{"event":"cmd_output","timestamp":1607098322,"output":"recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098322,"output":"6:12:02.499 [info] Periodic from module Elixir.Block.Tasks.STMHandler.PendingState with name Elixir"},{"event":"cmd_output","timestamp":1607098322,"output":".Block.Tasks.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Bloc"},{"event":"cmd_output","timestamp":1607098322,"output":"k-Tasks-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_t"},{"event":"cmd_output","timestamp":1607098322,"output":"ime_sec: 0, initial_query: Block.Tasks.Model.Tasks, observed_state: \"pending\", publisher_cb: :skip, "},{"event":"cmd_output","timestamp":1607098322,"output":"repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :bl"},{"event":"cmd_output","timestamp":1607098322,"output":"ock_id, :build_request_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098322,"output":"12:02.500 [info] Periodic from module Elixir.Block.Tasks.STMHandler.RunningState with name Elixir.B"},{"event":"cmd_output","timestamp":1607098322,"output":"lock.Tasks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-"},{"event":"cmd_output","timestamp":1607098322,"output":"Tasks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"],"},{"event":"cmd_output","timestamp":1607098322,"output":" cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"running\", publisher_"},{"event":"cmd_output","timestamp":1607098322,"output":"cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery"},{"event":"cmd_output","timestamp":1607098322,"output":"_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:02.50"},{"event":"cmd_output","timestamp":1607098322,"output":"1 [info] Periodic from module Elixir.Block.Tasks.STMHandler.StoppingState with name Elixir.Block.Ta"},{"event":"cmd_output","timestamp":1607098322,"output":"sks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-"},{"event":"cmd_output","timestamp":1607098322,"output":"STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_se"},{"event":"cmd_output","timestamp":1607098322,"output":"c: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"stopping\", publisher_cb: :skip, repo"},{"event":"cmd_output","timestamp":1607098322,"output":": Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_"},{"event":"cmd_output","timestamp":1607098322,"output":"id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:02.620 [info] ppl_i"},{"event":"cmd_output","timestamp":1607098322,"output":"d: 20298134-64c9-460b-9168-e1481af7bd1f, type: PplRequests, event: persisted source_args for pipelin"},{"event":"cmd_output","timestamp":1607098322,"output":"e: 20298134-64c9-460b-9168-e1481af7bd1f, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.ins"},{"event":"cmd_output","timestamp":1607098322,"output":"ert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:02.624 [info] ppl_id: 20298134-64c9-460b-9168-e1481af7bd1f, t"},{"event":"cmd_output","timestamp":1607098322,"output":"ype: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper."},{"event":"cmd_output","timestamp":1607098322,"output":"STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:02.662 [info] ppl_id: 20298134-64c9-460b-9168-"},{"event":"cmd_output","timestamp":1607098322,"output":"e1481af7bd1f, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098322,"output":"gin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:02.698 [info] ppl_id: 20298"},{"event":"cmd_output","timestamp":1607098322,"output":"134-64c9-460b-9168-e1481af7bd1f, type: PplRequests, event: persisted definition for request with req"},{"event":"cmd_output","timestamp":1607098322,"output":"uest_token: 71ca9d76-364b-11eb-bf9e-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQu"},{"event":"cmd_output","timestamp":1607098322,"output":"eries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:02.709 [info] Queue persisted: {:ok, %Ppl.Queues"},{"event":"cmd_output","timestamp":1607098322,"output":".Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:12:0"},{"event":"cmd_output","timestamp":1607098322,"output":"2.706744], name: \"456-.semaphore/skip_block.yml\", organization_id: \"cea8f8f5-c0c3-443a-8672-75c573f9"},{"event":"cmd_output","timestamp":1607098322,"output":"99ed\", project_id: \"5cce575a-c41c-4368-8884-8df346544b99\", queue_id: \"a5852eb4-3042-4a65-9206-9a8cff"},{"event":"cmd_output","timestamp":1607098322,"output":"5fbd39\", scope: \"project\", updated_at: ~N[2020-12-04 16:12:02.706758], user_generated: false}}\n\u001b[0m"},{"event":"cmd_output","timestamp":1607098322,"output":"\u001b[22m\n16:12:02.724 [info] ppl_id: not_available, event: created, origin: Elixir.Ppl.PplSubInits.ST"},{"event":"cmd_output","timestamp":1607098322,"output":"MHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:02.724 [info] event: created, origin:"},{"event":"cmd_output","timestamp":1607098322,"output":" Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:02.724 [info"},{"event":"cmd_output","timestamp":1607098322,"output":"] ppl_id: 20298134-64c9-460b-9168-e1481af7bd1f, type: PplBlocks, block_index: 0, state: initializin"},{"event":"cmd_output","timestamp":1607098322,"output":"g, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all"},{"event":"cmd_output","timestamp":1607098322,"output":"_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:02.724 [info] ppl_id: 20298134-64c9-460b-9168-e1481af7bd1f, type: "},{"event":"cmd_output","timestamp":1607098322,"output":"PplBlocks, block_index: 1, state: initializing, event: created, recovery_count: 0, origin: Elixir.Pp"},{"event":"cmd_output","timestamp":1607098322,"output":"l.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:02.728 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098322,"output":" 20298134-64c9-460b-9168-e1481af7bd1f, type: PplSubInits, state: done, result: passed, event: exit_s"},{"event":"cmd_output","timestamp":1607098322,"output":"cheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098322,"output":"6:12:02.739 [info] ppl_id: 20298134-64c9-460b-9168-e1481af7bd1f, type: Ppls, state: pending, event:"},{"event":"cmd_output","timestamp":1607098322,"output":" exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098322,"output":"[22m\n16:12:02.741 [info] ppl_id: 20298134-64c9-460b-9168-e1481af7bd1f, type: PplBlocks, block_inde"},{"event":"cmd_output","timestamp":1607098322,"output":"x: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_"},{"event":"cmd_output","timestamp":1607098322,"output":"state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:02.754 [info] ppl_id: 20298134-64c9-460b-9168-e1481af7bd1f,"},{"event":"cmd_output","timestamp":1607098322,"output":" type: PplBlocks, block_index: 1, state: waiting, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098322,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:02.761 [info] ppl_id: 20298134-"},{"event":"cmd_output","timestamp":1607098322,"output":"64c9-460b-9168-e1481af7bd1f, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098322,"output":"origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:02.774 [info] ppl_id: 20"},{"event":"cmd_output","timestamp":1607098322,"output":"298134-64c9-460b-9168-e1481af7bd1f, type: Ppls, state: running, event: exit_scheduling, recovery_cou"},{"event":"cmd_output","timestamp":1607098322,"output":"nt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:02.790 [info] Ppl"},{"event":"cmd_output","timestamp":1607098322,"output":"Blocks WaitingState STM is scheduling block 0 from pipeline: \"20298134-64c9-460b-9168-e1481af7bd1f\"\r"},{"event":"cmd_output","timestamp":1607098322,"output":"\n\u001b[0m\u001b[22m\n16:12:02.800 [info] block_id: 167f5bde-c0b4-4cfd-82ed-4f54e6f6333f, type: BlockRequests"},{"event":"cmd_output","timestamp":1607098322,"output":", event: persisted block run request from ppl 20298134-64c9-460b-9168-e1481af7bd1f for block 0, orig"},{"event":"cmd_output","timestamp":1607098322,"output":"in: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098322,"output":"2:02.803 [info] block_id: 167f5bde-c0b4-4cfd-82ed-4f54e6f6333f, type: Blocks, state: initializing, "},{"event":"cmd_output","timestamp":1607098322,"output":"event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43"},{"event":"cmd_output","timestamp":1607098322,"output":"), \n\u001b[0m\u001b[22m\n16:12:02.808 [info] Block 0 of pipeline with id: 20298134-64c9-460b-9168-e1481af7bd"},{"event":"cmd_output","timestamp":1607098322,"output":"1f scheduled in block service with id: : \"167f5bde-c0b4-4cfd-82ed-4f54e6f6333f\"\n\u001b[0m\u001b[22m\n16:12:02"},{"event":"cmd_output","timestamp":1607098322,"output":".812 [info] ppl_id: 20298134-64c9-460b-9168-e1481af7bd1f, type: PplBlocks, block_index: 0, state: r"},{"event":"cmd_output","timestamp":1607098322,"output":"unning, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1"},{"event":"cmd_output","timestamp":1607098322,"output":"(L90), \n\u001b[0m\u001b[22m\n16:12:02.816 [info] block_id: 167f5bde-c0b4-4cfd-82ed-4f54e6f6333f, type: Block"},{"event":"cmd_output","timestamp":1607098322,"output":"Requests, event: persisted build and sub_ppl details for block_request: 167f5bde-c0b4-4cfd-82ed-4f54"},{"event":"cmd_output","timestamp":1607098322,"output":"e6f6333f, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098322,"output":"[22m\n16:12:02.826 [info] block_id: 167f5bde-c0b4-4cfd-82ed-4f54e6f6333f, type: Tasks, state: pendi"},{"event":"cmd_output","timestamp":1607098322,"output":"ng, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_"},{"event":"cmd_output","timestamp":1607098322,"output":"ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:02.830 [info] block_id: 167f5bde-c0b4-4cfd-82ed-4f54e6f6333f, type:"},{"event":"cmd_output","timestamp":1607098322,"output":" Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.l"},{"event":"cmd_output","timestamp":1607098322,"output":"og_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:02.855 [info] block_id: 167f5bde-c0b4-4cfd-82ed-4f54e6f6"},{"event":"cmd_output","timestamp":1607098322,"output":"333f, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper."},{"event":"cmd_output","timestamp":1607098322,"output":"STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:02.949 [info] block_id: 167f5bde-c0b4-4cfd-82e"},{"event":"cmd_output","timestamp":1607098322,"output":"d-4f54e6f6333f, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098322,"output":"Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:02.959 [info] block_id: 167f5bde-c0b4-4"},{"event":"cmd_output","timestamp":1607098322,"output":"cfd-82ed-4f54e6f6333f, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098322,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:02.972 [info] ppl_id: 20298134-"},{"event":"cmd_output","timestamp":1607098322,"output":"64c9-460b-9168-e1481af7bd1f, block_id: 167f5bde-c0b4-4cfd-82ed-4f54e6f6333f, type: PplBlocks, block_"},{"event":"cmd_output","timestamp":1607098322,"output":"index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loo"},{"event":"cmd_output","timestamp":1607098322,"output":"per.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:02.987 [info] PplBlocks WaitingState STM i"},{"event":"cmd_output","timestamp":1607098323,"output":"s scheduling block 1 from pipeline: \"20298134-64c9-460b-9168-e1481af7bd1f\"\n\u001b[0m\u001b[22m\n16:12:03.003 "},{"event":"cmd_output","timestamp":1607098323,"output":"[info] block_id: 726b0ccc-6963-4521-b1f8-23d327668838, type: BlockRequests, event: persisted block "},{"event":"cmd_output","timestamp":1607098323,"output":"run request from ppl 20298134-64c9-460b-9168-e1481af7bd1f for block 1, origin: Elixir.Block.BlockReq"},{"event":"cmd_output","timestamp":1607098323,"output":"uests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:03.006 [info] block_id"},{"event":"cmd_output","timestamp":1607098323,"output":": 726b0ccc-6963-4521-b1f8-23d327668838, type: Blocks, state: initializing, event: initializing, reco"},{"event":"cmd_output","timestamp":1607098323,"output":"very_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:03."},{"event":"cmd_output","timestamp":1607098323,"output":"006 [info] Block 1 of pipeline with id: 20298134-64c9-460b-9168-e1481af7bd1f scheduled in block ser"},{"event":"cmd_output","timestamp":1607098323,"output":"vice with id: : \"726b0ccc-6963-4521-b1f8-23d327668838\"\n\u001b[0m\u001b[22m\n16:12:03.010 [info] ppl_id: 2029"},{"event":"cmd_output","timestamp":1607098323,"output":"8134-64c9-460b-9168-e1481af7bd1f, type: PplBlocks, block_index: 1, state: running, event: exit_sched"},{"event":"cmd_output","timestamp":1607098323,"output":"uling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12"},{"event":"cmd_output","timestamp":1607098323,"output":":03.016 [info] block_id: 726b0ccc-6963-4521-b1f8-23d327668838, type: BlockRequests, event: persiste"},{"event":"cmd_output","timestamp":1607098323,"output":"d build and sub_ppl details for block_request: 726b0ccc-6963-4521-b1f8-23d327668838, origin: Elixir."},{"event":"cmd_output","timestamp":1607098323,"output":"Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:03.019 [info]"},{"event":"cmd_output","timestamp":1607098323,"output":" block_id: 726b0ccc-6963-4521-b1f8-23d327668838, type: Tasks, state: pending, event: created, recov"},{"event":"cmd_output","timestamp":1607098323,"output":"ery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098323,"output":"\n16:12:03.022 [info] block_id: 726b0ccc-6963-4521-b1f8-23d327668838, type: Blocks, state: running, "},{"event":"cmd_output","timestamp":1607098323,"output":"event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \r"},{"event":"cmd_output","timestamp":1607098323,"output":"\n\u001b[0m\u001b[22m\n16:12:03.041 [info] block_id: 726b0ccc-6963-4521-b1f8-23d327668838, type: Tasks, state:"},{"event":"cmd_output","timestamp":1607098323,"output":" running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change"},{"event":"cmd_output","timestamp":1607098323,"output":"/1(L90), \n\u001b[0m\u001b[22m\n16:12:03.064 [info] block_id: 726b0ccc-6963-4521-b1f8-23d327668838, type: Tas"},{"event":"cmd_output","timestamp":1607098323,"output":"ks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state"},{"event":"cmd_output","timestamp":1607098323,"output":"_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:03.073 [info] block_id: 726b0ccc-6963-4521-b1f8-23d327668838, ty"},{"event":"cmd_output","timestamp":1607098323,"output":"pe: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.l"},{"event":"cmd_output","timestamp":1607098323,"output":"og_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:03.087 [info] ppl_id: 20298134-64c9-460b-9168-e1481af7bd"},{"event":"cmd_output","timestamp":1607098323,"output":"1f, block_id: 726b0ccc-6963-4521-b1f8-23d327668838, type: PplBlocks, block_index: 1, state: done, re"},{"event":"cmd_output","timestamp":1607098323,"output":"sult: failed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_ch"},{"event":"cmd_output","timestamp":1607098323,"output":"ange/1(L90), \n\u001b[0m\u001b[22m\n16:12:03.108 [info] ppl_id: 20298134-64c9-460b-9168-e1481af7bd1f, type: P"},{"event":"cmd_output","timestamp":1607098323,"output":"pls, state: done, result: failed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.S"},{"event":"cmd_output","timestamp":1607098323,"output":"TM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test skip-when condition is false for given pr - bl"},{"event":"cmd_output","timestamp":1607098323,"output":"ock executed (773.4ms)\u001b[0m\n * test skip-when condition is true for given pull_request - block skip"},{"event":"cmd_output","timestamp":1607098323,"output":"ped\u001b[22m\n16:12:03.235 [info] Request: 'run: %{\"branch_id\" => \"fa23e67b-639c-434a-bca3-2572ecbcde57"},{"event":"cmd_output","timestamp":1607098323,"output":"\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"skip_block.yml\", \"hook_i"},{"event":"cmd_output","timestamp":1607098323,"output":"d\" => \"pr\", \"label\" => \"123\", \"organization_id\" => \"38175963-b728-4bbd-80a4-53bc37e95a0a\", \"owner\" ="},{"event":"cmd_output","timestamp":1607098323,"output":"> \"rt\", \"project_id\" => \"e4a46b5c-405c-42d3-9abf-44c606226c66\", \"repo_name\" => \"22_skip_block\", \"req"},{"event":"cmd_output","timestamp":1607098323,"output":"uest_token\" => \"7242560e-364b-11eb-8d14-5254005464e2\", \"requester_id\" => \"fbd4c15f-8f92-4196-a7ab-2f"},{"event":"cmd_output","timestamp":1607098323,"output":"0afeabfa22\", \"service\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf"},{"event":"cmd_output","timestamp":1607098323,"output":"_id\" => \"fec8023f-722a-4efd-bda6-6f12f9906198\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:12:03."},{"event":"cmd_output","timestamp":1607098323,"output":"240 [info] ppl_id: 036f6ef2-4d97-4aa1-b79f-451f8c3b0150, type: PplRequests, event: persisted schedu"},{"event":"cmd_output","timestamp":1607098323,"output":"le request with request_token: 7242560e-364b-11eb-8d14-5254005464e2, origin: Elixir.Ppl.PplRequests."},{"event":"cmd_output","timestamp":1607098323,"output":"Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:03.246 [info] ppl_id: 036f6ef2"},{"event":"cmd_output","timestamp":1607098323,"output":"-4d97-4aa1-b79f-451f8c3b0150, type: Ppls, state: initializing, event: initializing, recovery_count: "},{"event":"cmd_output","timestamp":1607098323,"output":"0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:03.253 [in"},{"event":"cmd_output","timestamp":1607098323,"output":"fo] Project e4a46b5c-405c-42d3-9abf-44c606226c66 and branch masterlatest_wf details updated: \"wf_id"},{"event":"cmd_output","timestamp":1607098323,"output":": fec8023f-722a-4efd-bda6-6f12f9906198, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:12:03.256 [info] Persisted ppl"},{"event":"cmd_output","timestamp":1607098323,"output":"_sub_init for pipeline with ppl_id: 036f6ef2-4d97-4aa1-b79f-451f8c3b0150: %Ppl.PplSubInits.Model.Ppl"},{"event":"cmd_output","timestamp":1607098323,"output":"SubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error"},{"event":"cmd_output","timestamp":1607098323,"output":"_description: nil, id: 155, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 1"},{"event":"cmd_output","timestamp":1607098323,"output":"6:12:03.253312], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"036f6ef2-4d97-4aa1-b79f-451f8c3b0150\", recovery_count: 0, result: nil, result_re"},{"event":"cmd_output","timestamp":1607098323,"output":"ason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[202"},{"event":"cmd_output","timestamp":1607098323,"output":"0-12-04 16:12:03.253324]}\n\u001b[0m\u001b[22m\n16:12:03.262 [info] Periodic from module Elixir.Ppl.Ppls.STMH"},{"event":"cmd_output","timestamp":1607098323,"output":"andler.InitializingState with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms, m"},{"event":"cmd_output","timestamp":1607098323,"output":"etric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %{a"},{"event":"cmd_output","timestamp":1607098323,"output":"llowed_states: [\"initializing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Mod"},{"event":"cmd_output","timestamp":1607098323,"output":"el.Ppls, observed_state: \"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandle"},{"event":"cmd_output","timestamp":1607098323,"output":"r.InitializingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :"},{"event":"cmd_output","timestamp":1607098323,"output":"state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0"},{"event":"cmd_output","timestamp":1607098323,"output":"m\u001b[22m\n16:12:03.262 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingState with name "},{"event":"cmd_output","timestamp":1607098323,"output":"Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"P"},{"event":"cmd_output","timestamp":1607098323,"output":"pl-Ppls-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"pending\", \"queuing\", \"runnin"},{"event":"cmd_output","timestamp":1607098323,"output":"g\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", pub"},{"event":"cmd_output","timestamp":1607098323,"output":"lisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, re"},{"event":"cmd_output","timestamp":1607098323,"output":"turning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: "},{"event":"cmd_output","timestamp":1607098323,"output":"Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:12:03.263 [info] Periodic "},{"event":"cmd_output","timestamp":1607098323,"output":"from module Elixir.Ppl.Ppls.STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandler.QueuingStat"},{"event":"cmd_output","timestamp":1607098323,"output":"e :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, re"},{"event":"cmd_output","timestamp":1607098323,"output":"curring args: %{allowed_states: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, initial_query:"},{"event":"cmd_output","timestamp":1607098323,"output":" Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.S"},{"event":"cmd_output","timestamp":1607098323,"output":"TMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at"},{"event":"cmd_output","timestamp":1607098323,"output":", :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n"},{"event":"cmd_output","timestamp":1607098323,"output":"\u001b[0m\u001b[22m\n16:12:03.263 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.RunningState with na"},{"event":"cmd_output","timestamp":1607098323,"output":"me Elixir.Ppl.Ppls.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", "},{"event":"cmd_output","timestamp":1607098323,"output":"[\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"do"},{"event":"cmd_output","timestamp":1607098323,"output":"ne\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"running\", publisher"},{"event":"cmd_output","timestamp":1607098323,"output":"_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returni"},{"event":"cmd_output","timestamp":1607098323,"output":"ng: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.P"},{"event":"cmd_output","timestamp":1607098323,"output":"pls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:12:03.263 [info] Periodic from "},{"event":"cmd_output","timestamp":1607098323,"output":"module Elixir.Ppl.Ppls.STMHandler.StoppingState with name Elixir.Ppl.Ppls.STMHandler.StoppingState :"},{"event":"cmd_output","timestamp":1607098323,"output":": period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recu"},{"event":"cmd_output","timestamp":1607098323,"output":"rring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Mo"},{"event":"cmd_output","timestamp":1607098323,"output":"del.Ppls, observed_state: \"stopping\", publisher_cb: #Function<0.71803493/1 in Ppl.Ppls.STMHandler.St"},{"event":"cmd_output","timestamp":1607098323,"output":"oppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :"},{"event":"cmd_output","timestamp":1607098323,"output":"result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098323,"output":"16:12:03.263 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedState with name E"},{"event":"cmd_output","timestamp":1607098323,"output":"lixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up"},{"event":"cmd_output","timestamp":1607098323,"output":"\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args: %{allowed_states: [\"fetching\", \"don"},{"event":"cmd_output","timestamp":1607098323,"output":"e\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"created"},{"event":"cmd_output","timestamp":1607098323,"output":"\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state"},{"event":"cmd_output","timestamp":1607098323,"output":", :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :s"},{"event":"cmd_output","timestamp":1607098323,"output":"kip}\n\u001b[0m\u001b[22m\n16:12:03.263 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.Fetchin"},{"event":"cmd_output","timestamp":1607098323,"output":"gState with name Elixir.Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 ms, metric_name: {\"P"},{"event":"cmd_output","timestamp":1607098323,"output":"pl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %{allowed_state"},{"event":"cmd_output","timestamp":1607098323,"output":"s: [\"regular_init\", \"compilation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Mod"},{"event":"cmd_output","timestamp":1607098323,"output":"el.PplSubInits, observed_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id"},{"event":"cmd_output","timestamp":1607098323,"output":", :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubIni"},{"event":"cmd_output","timestamp":1607098323,"output":"ts.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:03.264 [info] Periodic from module "},{"event":"cmd_output","timestamp":1607098323,"output":"Elixir.Ppl.PplSubInits.STMHandler.CompilationState with name Elixir.Ppl.PplSubInits.STMHandler.Compi"},{"event":"cmd_output","timestamp":1607098323,"output":"lationState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-Co"},{"event":"cmd_output","timestamp":1607098323,"output":"mpilationState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"stopping\", \"do"},{"event":"cmd_output","timestamp":1607098323,"output":"ne\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"compi"},{"event":"cmd_output","timestamp":1607098323,"output":"lation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, "},{"event":"cmd_output","timestamp":1607098323,"output":":state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervis"},{"event":"cmd_output","timestamp":1607098323,"output":"or: :skip}\n\u001b[0m\u001b[22m\n16:12:03.264 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.R"},{"event":"cmd_output","timestamp":1607098323,"output":"egularInitState with name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period: 100 ms, metr"},{"event":"cmd_output","timestamp":1607098323,"output":"ic_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurring args: "},{"event":"cmd_output","timestamp":1607098323,"output":"%{allowed_states: [\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, o"},{"event":"cmd_output","timestamp":1607098323,"output":"bserved_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_"},{"event":"cmd_output","timestamp":1607098323,"output":"request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplS"},{"event":"cmd_output","timestamp":1607098323,"output":"ubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:03.264 [info] Periodic from module Elixir.Ppl.Pp"},{"event":"cmd_output","timestamp":1607098323,"output":"lBlocks.STMHandler.InitializingState with name Elixir.Ppl.PplBlocks.STMHandler.InitializingState :: "},{"event":"cmd_output","timestamp":1607098323,"output":"period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-InitializingState\"]"},{"event":"cmd_output","timestamp":1607098323,"output":"}, recurring args: %{allowed_states: [\"initializing\", \"waiting\", \"done\"], cooling_time_sec: 0, initi"},{"event":"cmd_output","timestamp":1607098323,"output":"al_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"initializing\", publisher_cb: :skip, repo: "},{"event":"cmd_output","timestamp":1607098323,"output":"Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :p"},{"event":"cmd_output","timestamp":1607098323,"output":"pl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098323,"output":"12:03.264 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.WaitingState with name Elixir"},{"event":"cmd_output","timestamp":1607098323,"output":".Ppl.PplBlocks.STMHandler.WaitingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"P"},{"event":"cmd_output","timestamp":1607098323,"output":"pl-PplBlocks-STMHandler-WaitingState\"]}, recurring args: %{allowed_states: [\"waiting\", \"running\", \"d"},{"event":"cmd_output","timestamp":1607098323,"output":"one\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"waiting\","},{"event":"cmd_output","timestamp":1607098323,"output":" publisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>, repo: Ppl.Ect"},{"event":"cmd_output","timestamp":1607098323,"output":"oRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, "},{"event":"cmd_output","timestamp":1607098323,"output":":block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:03.2"},{"event":"cmd_output","timestamp":1607098323,"output":"64 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.RunningState with name Elixir.Ppl.Pp"},{"event":"cmd_output","timestamp":1607098323,"output":"lBlocks.STMHandler.RunningState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplB"},{"event":"cmd_output","timestamp":1607098323,"output":"locks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"],"},{"event":"cmd_output","timestamp":1607098323,"output":" cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"running\", publ"},{"event":"cmd_output","timestamp":1607098323,"output":"isher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0>, repo: Ppl.EctoRep"},{"event":"cmd_output","timestamp":1607098323,"output":"o, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :blo"},{"event":"cmd_output","timestamp":1607098323,"output":"ck_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098323,"output":"12:03.265 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.StoppingState with name Elixi"},{"event":"cmd_output","timestamp":1607098323,"output":"r.Ppl.PplBlocks.STMHandler.StoppingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", ["},{"event":"cmd_output","timestamp":1607098323,"output":"\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], "},{"event":"cmd_output","timestamp":1607098323,"output":"cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"stopping\", publ"},{"event":"cmd_output","timestamp":1607098323,"output":"isher_cb: #Function<0.104215991/1 in Ppl.PplBlocks.STMHandler.StoppingState.args/0>, repo: Ppl.EctoR"},{"event":"cmd_output","timestamp":1607098323,"output":"epo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :b"},{"event":"cmd_output","timestamp":1607098323,"output":"lock_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098323,"output":"6:12:03.265 [info] Periodic from module Elixir.Block.Blocks.STMHandler.InitializingState with name "},{"event":"cmd_output","timestamp":1607098323,"output":"Elixir.Block.Blocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake"},{"event":"cmd_output","timestamp":1607098323,"output":"_up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"running\", "},{"event":"cmd_output","timestamp":1607098323,"output":"\"done\"], cooling_time_sec: 0, initial_query: Block.Blocks.Model.Blocks, observed_state: \"initializin"},{"event":"cmd_output","timestamp":1607098323,"output":"g\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :st"},{"event":"cmd_output","timestamp":1607098323,"output":"ate, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098323,"output":"22m\n16:12:03.265 [info] Periodic from module Elixir.Block.Blocks.STMHandler.RunningState with name"},{"event":"cmd_output","timestamp":1607098323,"output":" Elixir.Block.Blocks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\""},{"event":"cmd_output","timestamp":1607098323,"output":", [\"Block-Blocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping"},{"event":"cmd_output","timestamp":1607098323,"output":"\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"running"},{"event":"cmd_output","timestamp":1607098323,"output":"\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :sta"},{"event":"cmd_output","timestamp":1607098323,"output":"te, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098323,"output":"2m\n16:12:03.265 [info] Periodic from module Elixir.Block.Blocks.STMHandler.StoppingState with name"},{"event":"cmd_output","timestamp":1607098323,"output":" Elixir.Block.Blocks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up"},{"event":"cmd_output","timestamp":1607098323,"output":"\", [\"Block-Blocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\""},{"event":"cmd_output","timestamp":1607098323,"output":"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"stopping\", publi"},{"event":"cmd_output","timestamp":1607098323,"output":"sher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :rec"},{"event":"cmd_output","timestamp":1607098323,"output":"overy_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098323,"output":"2:03.266 [info] Periodic from module Elixir.Block.Tasks.STMHandler.PendingState with name Elixir.Bl"},{"event":"cmd_output","timestamp":1607098323,"output":"ock.Tasks.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-T"},{"event":"cmd_output","timestamp":1607098323,"output":"asks-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time"},{"event":"cmd_output","timestamp":1607098323,"output":"_sec: 0, initial_query: Block.Tasks.Model.Tasks, observed_state: \"pending\", publisher_cb: :skip, rep"},{"event":"cmd_output","timestamp":1607098323,"output":"o: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block"},{"event":"cmd_output","timestamp":1607098323,"output":"_id, :build_request_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:"},{"event":"cmd_output","timestamp":1607098323,"output":"03.266 [info] Periodic from module Elixir.Block.Tasks.STMHandler.RunningState with name Elixir.Bloc"},{"event":"cmd_output","timestamp":1607098323,"output":"k.Tasks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tas"},{"event":"cmd_output","timestamp":1607098323,"output":"ks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], co"},{"event":"cmd_output","timestamp":1607098323,"output":"oling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"running\", publisher_cb:"},{"event":"cmd_output","timestamp":1607098323,"output":" :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_co"},{"event":"cmd_output","timestamp":1607098323,"output":"unt, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:03.266 ["},{"event":"cmd_output","timestamp":1607098323,"output":"info] Periodic from module Elixir.Block.Tasks.STMHandler.StoppingState with name Elixir.Block.Tasks"},{"event":"cmd_output","timestamp":1607098323,"output":".STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STM"},{"event":"cmd_output","timestamp":1607098323,"output":"Handler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: "},{"event":"cmd_output","timestamp":1607098323,"output":"-2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"stopping\", publisher_cb: :skip, repo: B"},{"event":"cmd_output","timestamp":1607098323,"output":"lock.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id]"},{"event":"cmd_output","timestamp":1607098323,"output":", schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:03.394 [info] ppl_id: "},{"event":"cmd_output","timestamp":1607098323,"output":"036f6ef2-4d97-4aa1-b79f-451f8c3b0150, type: PplRequests, event: persisted source_args for pipeline: "},{"event":"cmd_output","timestamp":1607098323,"output":"036f6ef2-4d97-4aa1-b79f-451f8c3b0150, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert"},{"event":"cmd_output","timestamp":1607098323,"output":"_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:03.404 [info] ppl_id: 036f6ef2-4d97-4aa1-b79f-451f8c3b0150, type"},{"event":"cmd_output","timestamp":1607098323,"output":": PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM"},{"event":"cmd_output","timestamp":1607098323,"output":".Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:03.430 [info] ppl_id: 036f6ef2-4d97-4aa1-b79f-451"},{"event":"cmd_output","timestamp":1607098323,"output":"f8c3b0150, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098323,"output":": Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:03.455 [info] ppl_id: 036f6ef2"},{"event":"cmd_output","timestamp":1607098323,"output":"-4d97-4aa1-b79f-451f8c3b0150, type: PplRequests, event: persisted definition for request with reques"},{"event":"cmd_output","timestamp":1607098323,"output":"t_token: 7242560e-364b-11eb-8d14-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueri"},{"event":"cmd_output","timestamp":1607098323,"output":"es.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:03.460 [info] Queue persisted: {:ok, %Ppl.Queues.Mo"},{"event":"cmd_output","timestamp":1607098323,"output":"del.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:12:03.4"},{"event":"cmd_output","timestamp":1607098323,"output":"58797], name: \"123-.semaphore/skip_block.yml\", organization_id: \"38175963-b728-4bbd-80a4-53bc37e95a0"},{"event":"cmd_output","timestamp":1607098323,"output":"a\", project_id: \"e4a46b5c-405c-42d3-9abf-44c606226c66\", queue_id: \"edfe8e6d-81ca-4b84-9dbc-9b2b1f937"},{"event":"cmd_output","timestamp":1607098323,"output":"608\", scope: \"project\", updated_at: ~N[2020-12-04 16:12:03.458809], user_generated: false}}\n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098323,"output":"2m\n16:12:03.478 [info] ppl_id: not_available, event: created, origin: Elixir.Ppl.PplSubInits.STMHa"},{"event":"cmd_output","timestamp":1607098323,"output":"ndler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:03.478 [info] event: created, origin: El"},{"event":"cmd_output","timestamp":1607098323,"output":"ixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:03.478 [info] "},{"event":"cmd_output","timestamp":1607098323,"output":"ppl_id: 036f6ef2-4d97-4aa1-b79f-451f8c3b0150, type: PplBlocks, block_index: 0, state: initializing, "},{"event":"cmd_output","timestamp":1607098323,"output":"event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok"},{"event":"cmd_output","timestamp":1607098323,"output":"?/1(L105), \n\u001b[0m\u001b[22m\n16:12:03.478 [info] ppl_id: 036f6ef2-4d97-4aa1-b79f-451f8c3b0150, type: Ppl"},{"event":"cmd_output","timestamp":1607098323,"output":"Blocks, block_index: 1, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.P"},{"event":"cmd_output","timestamp":1607098323,"output":"plSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:03.483 [info] ppl_id: 03"},{"event":"cmd_output","timestamp":1607098323,"output":"6f6ef2-4d97-4aa1-b79f-451f8c3b0150, type: PplSubInits, state: done, result: passed, event: exit_sche"},{"event":"cmd_output","timestamp":1607098323,"output":"duling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098323,"output":"2:03.501 [info] ppl_id: 036f6ef2-4d97-4aa1-b79f-451f8c3b0150, type: Ppls, state: pending, event: ex"},{"event":"cmd_output","timestamp":1607098323,"output":"it_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098323,"output":"m\n16:12:03.509 [info] ppl_id: 036f6ef2-4d97-4aa1-b79f-451f8c3b0150, type: PplBlocks, block_index: "},{"event":"cmd_output","timestamp":1607098323,"output":"0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_sta"},{"event":"cmd_output","timestamp":1607098323,"output":"te_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:03.514 [info] ppl_id: 036f6ef2-4d97-4aa1-b79f-451f8c3b0150, ty"},{"event":"cmd_output","timestamp":1607098323,"output":"pe: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl."},{"event":"cmd_output","timestamp":1607098323,"output":"log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:03.523 [info] ppl_id: 036f6ef2-4d97-4aa1-b79f-451f8c3b0"},{"event":"cmd_output","timestamp":1607098323,"output":"150, type: PplBlocks, block_index: 1, state: waiting, event: exit_scheduling, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098323,"output":"gin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:03.528 [info] ppl_id: 036f6"},{"event":"cmd_output","timestamp":1607098323,"output":"ef2-4d97-4aa1-b79f-451f8c3b0150, type: Ppls, state: running, event: exit_scheduling, recovery_count:"},{"event":"cmd_output","timestamp":1607098323,"output":" 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:03.535 [info] PplBlo"},{"event":"cmd_output","timestamp":1607098323,"output":"cks WaitingState STM is scheduling block 0 from pipeline: \"036f6ef2-4d97-4aa1-b79f-451f8c3b0150\"\n\u001b["},{"event":"cmd_output","timestamp":1607098323,"output":"0m\u001b[22m\n16:12:03.546 [info] block_id: 6b5611d9-87f6-464f-840c-24917344aaee, type: BlockRequests, e"},{"event":"cmd_output","timestamp":1607098323,"output":"vent: persisted block run request from ppl 036f6ef2-4d97-4aa1-b79f-451f8c3b0150 for block 0, origin:"},{"event":"cmd_output","timestamp":1607098323,"output":" Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:0"},{"event":"cmd_output","timestamp":1607098323,"output":"3.550 [info] block_id: 6b5611d9-87f6-464f-840c-24917344aaee, type: Blocks, state: initializing, eve"},{"event":"cmd_output","timestamp":1607098323,"output":"nt: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), "},{"event":"cmd_output","timestamp":1607098323,"output":"\n\u001b[0m\u001b[22m\n16:12:03.552 [info] Block 0 of pipeline with id: 036f6ef2-4d97-4aa1-b79f-451f8c3b0150 "},{"event":"cmd_output","timestamp":1607098323,"output":"scheduled in block service with id: : \"6b5611d9-87f6-464f-840c-24917344aaee\"\n\u001b[0m\u001b[22m\n16:12:03.56"},{"event":"cmd_output","timestamp":1607098323,"output":"0 [info] ppl_id: 036f6ef2-4d97-4aa1-b79f-451f8c3b0150, type: PplBlocks, block_index: 0, state: runn"},{"event":"cmd_output","timestamp":1607098323,"output":"ing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L9"},{"event":"cmd_output","timestamp":1607098323,"output":"0), \n\u001b[0m\u001b[22m\n16:12:03.563 [info] block_id: 6b5611d9-87f6-464f-840c-24917344aaee, type: BlockReq"},{"event":"cmd_output","timestamp":1607098323,"output":"uests, event: persisted build and sub_ppl details for block_request: 6b5611d9-87f6-464f-840c-2491734"},{"event":"cmd_output","timestamp":1607098323,"output":"4aaee, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098323,"output":"m\n16:12:03.566 [info] block_id: 6b5611d9-87f6-464f-840c-24917344aaee, type: Tasks, state: pending,"},{"event":"cmd_output","timestamp":1607098323,"output":" event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?"},{"event":"cmd_output","timestamp":1607098323,"output":"/1(L167), \n\u001b[0m\u001b[22m\n16:12:03.568 [info] block_id: 6b5611d9-87f6-464f-840c-24917344aaee, type: Bl"},{"event":"cmd_output","timestamp":1607098323,"output":"ocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_"},{"event":"cmd_output","timestamp":1607098323,"output":"state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:03.591 [info] block_id: 6b5611d9-87f6-464f-840c-24917344aae"},{"event":"cmd_output","timestamp":1607098323,"output":"e, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM"},{"event":"cmd_output","timestamp":1607098323,"output":".Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:03.623 [info] block_id: 6b5611d9-87f6-464f-840c-2"},{"event":"cmd_output","timestamp":1607098323,"output":"4917344aaee, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loo"},{"event":"cmd_output","timestamp":1607098323,"output":"per.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:03.631 [info] block_id: 6b5611d9-87f6-464f"},{"event":"cmd_output","timestamp":1607098323,"output":"-840c-24917344aaee, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098323,"output":"ixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:03.641 [info] ppl_id: 036f6ef2-4d9"},{"event":"cmd_output","timestamp":1607098323,"output":"7-4aa1-b79f-451f8c3b0150, block_id: 6b5611d9-87f6-464f-840c-24917344aaee, type: PplBlocks, block_ind"},{"event":"cmd_output","timestamp":1607098323,"output":"ex: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper"},{"event":"cmd_output","timestamp":1607098323,"output":".STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:03.653 [info] PplBlocks WaitingState STM is s"},{"event":"cmd_output","timestamp":1607098323,"output":"cheduling block 1 from pipeline: \"036f6ef2-4d97-4aa1-b79f-451f8c3b0150\"\n\u001b[0m\u001b[22m\n16:12:03.659 [in"},{"event":"cmd_output","timestamp":1607098323,"output":"fo] ppl_id: 036f6ef2-4d97-4aa1-b79f-451f8c3b0150, type: PplBlocks, block_index: 1, state: done, res"},{"event":"cmd_output","timestamp":1607098323,"output":"ult: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_cha"},{"event":"cmd_output","timestamp":1607098323,"output":"nge/1(L90), \n\u001b[0m\u001b[22m\n16:12:03.677 [info] ppl_id: 036f6ef2-4d97-4aa1-b79f-451f8c3b0150, type: Pp"},{"event":"cmd_output","timestamp":1607098323,"output":"ls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.ST"},{"event":"cmd_output","timestamp":1607098323,"output":"M.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test skip-when condition is true for given pull_requ"},{"event":"cmd_output","timestamp":1607098323,"output":"est - block skipped (542.4ms)\u001b[0m\n * test skip-when condition false for given branch - block execu"},{"event":"cmd_output","timestamp":1607098323,"output":"ted\u001b[22m\n16:12:03.785 [info] Request: 'run: %{\"branch_id\" => \"5a82a41a-45b8-4116-9a4b-d07ebb7223e4"},{"event":"cmd_output","timestamp":1607098323,"output":"\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"skip_block.yml\", \"hook_i"},{"event":"cmd_output","timestamp":1607098323,"output":"d\" => \"7296446c-364b-11eb-b99c-5254005464e2\", \"label\" => \"master\", \"organization_id\" => \"7bdf6a7f-7b"},{"event":"cmd_output","timestamp":1607098323,"output":"ea-494a-b71f-c4432be7a349\", \"owner\" => \"rt\", \"project_id\" => \"c60dfcf5-d28d-476a-9876-f50a9ac576f8\","},{"event":"cmd_output","timestamp":1607098323,"output":" \"repo_name\" => \"22_skip_block\", \"request_token\" => \"72963904-364b-11eb-ac2e-5254005464e2\", \"request"},{"event":"cmd_output","timestamp":1607098323,"output":"er_id\" => \"c66d3e0c-150e-4f3a-9ae7-58a072bf60c1\", \"service\" => \"local\", \"suppressed_attributes\" => ["},{"event":"cmd_output","timestamp":1607098323,"output":"\"access_token\", \"client_secret\"], \"wf_id\" => \"13cd577a-9f7a-40d2-b980-3a84384061e8\", \"working_dir\" ="},{"event":"cmd_output","timestamp":1607098323,"output":"> \".semaphore\"}\n\u001b[0m\u001b[22m\n16:12:03.790 [info] ppl_id: b3dbcda4-0128-48cf-a6a0-47abb439deb5, type:"},{"event":"cmd_output","timestamp":1607098323,"output":" PplRequests, event: persisted schedule request with request_token: 72963904-364b-11eb-ac2e-52540054"},{"event":"cmd_output","timestamp":1607098323,"output":"64e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098323,"output":"16:12:03.794 [info] ppl_id: b3dbcda4-0128-48cf-a6a0-47abb439deb5, type: Ppls, state: initializing, "},{"event":"cmd_output","timestamp":1607098323,"output":"event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2"},{"event":"cmd_output","timestamp":1607098323,"output":"(L124), \n\u001b[0m\u001b[22m\n16:12:03.800 [info] Project c60dfcf5-d28d-476a-9876-f50a9ac576f8 and branch ma"},{"event":"cmd_output","timestamp":1607098323,"output":"sterlatest_wf details updated: \"wf_id: 13cd577a-9f7a-40d2-b980-3a84384061e8, wf_number: 1\"\n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098323,"output":"m\n16:12:03.803 [info] Persisted ppl_sub_init for pipeline with ppl_id: b3dbcda4-0128-48cf-a6a0-47a"},{"event":"cmd_output","timestamp":1607098323,"output":"bb439deb5: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub"},{"event":"cmd_output","timestamp":1607098323,"output":"_inits\">, compile_task_id: nil, error_description: nil, id: 156, in_scheduling: false, init_type: \"r"},{"event":"cmd_output","timestamp":1607098323,"output":"egular\", inserted_at: ~N[2020-12-04 16:12:03.800997], pipeline_requests: #Ecto.Association.NotLoaded"},{"event":"cmd_output","timestamp":1607098323,"output":", ppl_id: \"b3dbcda4-0128-48cf-a6a0-47abb439deb5\", reco"},{"event":"cmd_output","timestamp":1607098323,"output":"very_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_"},{"event":"cmd_output","timestamp":1607098323,"output":"request_desc: nil, updated_at: ~N[2020-12-04 16:12:03.801007]}\n\u001b[0m\u001b[22m\n16:12:03.809 [info] Peri"},{"event":"cmd_output","timestamp":1607098323,"output":"odic from module Elixir.Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.STMHandler.I"},{"event":"cmd_output","timestamp":1607098323,"output":"nitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Init"},{"event":"cmd_output","timestamp":1607098323,"output":"ializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], cooling_tim"},{"event":"cmd_output","timestamp":1607098323,"output":"e_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher_cb: #Functio"},{"event":"cmd_output","timestamp":1607098323,"output":"n<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, returning: [:i"},{"event":"cmd_output","timestamp":1607098323,"output":"d, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Mod"},{"event":"cmd_output","timestamp":1607098323,"output":"el.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:03.810 [info] Periodic from module Elixir.Ppl.Pp"},{"event":"cmd_output","timestamp":1607098323,"output":"ls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 100 ms, metr"},{"event":"cmd_output","timestamp":1607098323,"output":"ic_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args: %{allowed_s"},{"event":"cmd_output","timestamp":1607098323,"output":"tates: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model"},{"event":"cmd_output","timestamp":1607098323,"output":".Ppls, observed_state: \"pending\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler.Pending"},{"event":"cmd_output","timestamp":1607098323,"output":"State.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result"},{"event":"cmd_output","timestamp":1607098323,"output":", :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m"},{"event":"cmd_output","timestamp":1607098323,"output":"\u001b[22m\n16:12:03.810 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.QueuingState with name E"},{"event":"cmd_output","timestamp":1607098323,"output":"lixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Pp"},{"event":"cmd_output","timestamp":1607098323,"output":"l-Ppls-STMHandler-QueuingState\"]}, recurring args: %{allowed_states: [\"queuing\", \"running\", \"done\"],"},{"event":"cmd_output","timestamp":1607098323,"output":" cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", publisher_cb: "},{"event":"cmd_output","timestamp":1607098323,"output":"#Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, returning: "},{"event":"cmd_output","timestamp":1607098323,"output":"[:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls."},{"event":"cmd_output","timestamp":1607098323,"output":"Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:03.811 [info] Periodic from module Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098323,"output":".Ppls.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHandler.RunningState :: period: 100 ms, m"},{"event":"cmd_output","timestamp":1607098323,"output":"etric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring args: %{allowe"},{"event":"cmd_output","timestamp":1607098323,"output":"d_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls,"},{"event":"cmd_output","timestamp":1607098323,"output":" observed_state: \"running\", publisher_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler.RunningState"},{"event":"cmd_output","timestamp":1607098323,"output":".args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :re"},{"event":"cmd_output","timestamp":1607098323,"output":"covery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098323,"output":"\n16:12:03.811 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.StoppingState with name Elixi"},{"event":"cmd_output","timestamp":1607098323,"output":"r.Ppl.Ppls.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-P"},{"event":"cmd_output","timestamp":1607098323,"output":"pls-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_tim"},{"event":"cmd_output","timestamp":1607098323,"output":"e_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"stopping\", publisher_cb: #Function<0"},{"event":"cmd_output","timestamp":1607098323,"output":".71803493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :term"},{"event":"cmd_output","timestamp":1607098323,"output":"inate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls,"},{"event":"cmd_output","timestamp":1607098323,"output":" task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:03.812 [info] Periodic from module Elixir.Ppl.PplSubInit"},{"event":"cmd_output","timestamp":1607098323,"output":"s.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 100 ms"},{"event":"cmd_output","timestamp":1607098323,"output":", metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args"},{"event":"cmd_output","timestamp":1607098323,"output":": %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model."},{"event":"cmd_output","timestamp":1607098323,"output":"PplSubInits, observed_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :t"},{"event":"cmd_output","timestamp":1607098323,"output":"erminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.M"},{"event":"cmd_output","timestamp":1607098323,"output":"odel.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:03.812 [info] Periodic from module Elix"},{"event":"cmd_output","timestamp":1607098323,"output":"ir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler.FetchingStat"},{"event":"cmd_output","timestamp":1607098323,"output":"e :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingStat"},{"event":"cmd_output","timestamp":1607098323,"output":"e\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"done\"], cooling_time_sec: -"},{"event":"cmd_output","timestamp":1607098323,"output":"2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fetching\", publisher_cb: :skip"},{"event":"cmd_output","timestamp":1607098323,"output":", repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_c"},{"event":"cmd_output","timestamp":1607098323,"output":"ount, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12"},{"event":"cmd_output","timestamp":1607098323,"output":":03.813 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CompilationState with name El"},{"event":"cmd_output","timestamp":1607098323,"output":"ixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake"},{"event":"cmd_output","timestamp":1607098323,"output":"_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurring args: %{allowed_states: [\"regular_"},{"event":"cmd_output","timestamp":1607098323,"output":"init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Mode"},{"event":"cmd_output","timestamp":1607098323,"output":"l.PplSubInits, observed_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:"},{"event":"cmd_output","timestamp":1607098323,"output":"id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubI"},{"event":"cmd_output","timestamp":1607098323,"output":"nits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:03.813 [info] Periodic from modul"},{"event":"cmd_output","timestamp":1607098323,"output":"e Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHandler.Reg"},{"event":"cmd_output","timestamp":1607098323,"output":"ularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-"},{"event":"cmd_output","timestamp":1607098323,"output":"RegularInitState\"]}, recurring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, initial_query:"},{"event":"cmd_output","timestamp":1607098323,"output":" Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.E"},{"event":"cmd_output","timestamp":1607098323,"output":"ctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id"},{"event":"cmd_output","timestamp":1607098323,"output":"], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:03.814 [info"},{"event":"cmd_output","timestamp":1607098323,"output":"] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.InitializingState with name Elixir.Ppl.PplBl"},{"event":"cmd_output","timestamp":1607098323,"output":"ocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppl"},{"event":"cmd_output","timestamp":1607098323,"output":"Blocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"waiting\""},{"event":"cmd_output","timestamp":1607098323,"output":", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"initi"},{"event":"cmd_output","timestamp":1607098323,"output":"alizing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at,"},{"event":"cmd_output","timestamp":1607098323,"output":" :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, ta"},{"event":"cmd_output","timestamp":1607098323,"output":"sk_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:03.814 [info] Periodic from module Elixir.Ppl.PplBlocks.STM"},{"event":"cmd_output","timestamp":1607098323,"output":"Handler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler.WaitingState :: period: 1000 ms, metr"},{"event":"cmd_output","timestamp":1607098323,"output":"ic_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurring args: %{allo"},{"event":"cmd_output","timestamp":1607098323,"output":"wed_states: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model."},{"event":"cmd_output","timestamp":1607098323,"output":"PplBlocks, observed_state: \"waiting\", publisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.STMHandle"},{"event":"cmd_output","timestamp":1607098323,"output":"r.WaitingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state"},{"event":"cmd_output","timestamp":1607098323,"output":", :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supe"},{"event":"cmd_output","timestamp":1607098323,"output":"rvisor: :skip}\n\u001b[0m\u001b[22m\n16:12:03.814 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler"},{"event":"cmd_output","timestamp":1607098323,"output":".RunningState with name Elixir.Ppl.PplBlocks.STMHandler.RunningState :: period: 1000 ms, metric_name"},{"event":"cmd_output","timestamp":1607098323,"output":": {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, recurring args: %{allowed_sta"},{"event":"cmd_output","timestamp":1607098323,"output":"tes: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBl"},{"event":"cmd_output","timestamp":1607098323,"output":"ocks, observed_state: \"running\", publisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHandler.Ru"},{"event":"cmd_output","timestamp":1607098323,"output":"nningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :r"},{"event":"cmd_output","timestamp":1607098323,"output":"esult, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, ta"},{"event":"cmd_output","timestamp":1607098323,"output":"sk_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:03.815 [info] Periodic from module Elixir.Ppl.PplBlocks.STM"},{"event":"cmd_output","timestamp":1607098323,"output":"Handler.StoppingState with name Elixir.Ppl.PplBlocks.STMHandler.StoppingState :: period: 1000 ms, me"},{"event":"cmd_output","timestamp":1607098323,"output":"tric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurring args: %{a"},{"event":"cmd_output","timestamp":1607098323,"output":"llowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlo"},{"event":"cmd_output","timestamp":1607098323,"output":"cks, observed_state: \"stopping\", publisher_cb: #Function<0.104215991/1 in Ppl.PplBlocks.STMHandler.S"},{"event":"cmd_output","timestamp":1607098323,"output":"toppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, "},{"event":"cmd_output","timestamp":1607098323,"output":":result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, "},{"event":"cmd_output","timestamp":1607098323,"output":"task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:03.815 [info] Periodic from module Elixir.Block.Blocks.ST"},{"event":"cmd_output","timestamp":1607098323,"output":"MHandler.InitializingState with name Elixir.Block.Blocks.STMHandler.InitializingState :: period: 100"},{"event":"cmd_output","timestamp":1607098323,"output":" ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, recurring"},{"event":"cmd_output","timestamp":1607098323,"output":" args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Blocks.Model"},{"event":"cmd_output","timestamp":1607098323,"output":".Blocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id,"},{"event":"cmd_output","timestamp":1607098323,"output":" :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Bl"},{"event":"cmd_output","timestamp":1607098323,"output":"ocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:03.816 [info] Periodic from module Elixir.Block.Blo"},{"event":"cmd_output","timestamp":1607098323,"output":"cks.STMHandler.RunningState with name Elixir.Block.Blocks.STMHandler.RunningState :: period: 100 ms,"},{"event":"cmd_output","timestamp":1607098323,"output":" metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-RunningState\"]}, recurring args: %{"},{"event":"cmd_output","timestamp":1607098323,"output":"allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.M"},{"event":"cmd_output","timestamp":1607098323,"output":"odel.Blocks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, "},{"event":"cmd_output","timestamp":1607098323,"output":":terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blo"},{"event":"cmd_output","timestamp":1607098323,"output":"cks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:03.816 [info] Periodic from module Elixir.Block.Bloc"},{"event":"cmd_output","timestamp":1607098323,"output":"ks.STMHandler.StoppingState with name Elixir.Block.Blocks.STMHandler.StoppingState :: period: 100 ms"},{"event":"cmd_output","timestamp":1607098323,"output":", metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-StoppingState\"]}, recurring args: "},{"event":"cmd_output","timestamp":1607098323,"output":"%{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Bloc"},{"event":"cmd_output","timestamp":1607098323,"output":"ks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :termina"},{"event":"cmd_output","timestamp":1607098323,"output":"te_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, tas"},{"event":"cmd_output","timestamp":1607098323,"output":"k_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:03.817 [info] Periodic from module Elixir.Block.Tasks.STMHan"},{"event":"cmd_output","timestamp":1607098323,"output":"dler.PendingState with name Elixir.Block.Tasks.STMHandler.PendingState :: period: 100 ms, metric_nam"},{"event":"cmd_output","timestamp":1607098323,"output":"e: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingState\"]}, recurring args: %{allowed_stat"},{"event":"cmd_output","timestamp":1607098323,"output":"es: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Tasks.Model.Tasks, observed_state"},{"event":"cmd_output","timestamp":1607098323,"output":": \"pending\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :update"},{"event":"cmd_output","timestamp":1607098323,"output":"d_at, :state, :recovery_count, :block_id, :build_request_id], schema: Block.Tasks.Model.Tasks, task_"},{"event":"cmd_output","timestamp":1607098323,"output":"supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:03.817 [info] Periodic from module Elixir.Block.Tasks.STMHandl"},{"event":"cmd_output","timestamp":1607098323,"output":"er.RunningState with name Elixir.Block.Tasks.STMHandler.RunningState :: period: 100 ms, metric_name:"},{"event":"cmd_output","timestamp":1607098323,"output":" {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningState\"]}, recurring args: %{allowed_states"},{"event":"cmd_output","timestamp":1607098323,"output":": [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, obs"},{"event":"cmd_output","timestamp":1607098323,"output":"erved_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_reque"},{"event":"cmd_output","timestamp":1607098323,"output":"st, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervis"},{"event":"cmd_output","timestamp":1607098323,"output":"or: :skip}\n\u001b[0m\u001b[22m\n16:12:03.817 [info] Periodic from module Elixir.Block.Tasks.STMHandler.Stopp"},{"event":"cmd_output","timestamp":1607098323,"output":"ingState with name Elixir.Block.Tasks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl"},{"event":"cmd_output","timestamp":1607098323,"output":".beholder-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"s"},{"event":"cmd_output","timestamp":1607098323,"output":"topping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"st"},{"event":"cmd_output","timestamp":1607098323,"output":"opping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at"},{"event":"cmd_output","timestamp":1607098323,"output":", :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0"},{"event":"cmd_output","timestamp":1607098323,"output":"m\u001b[22m\n16:12:03.937 [info] ppl_id: b3dbcda4-0128-48cf-a6a0-47abb439deb5, type: PplRequests, event:"},{"event":"cmd_output","timestamp":1607098323,"output":" persisted source_args for pipeline: b3dbcda4-0128-48cf-a6a0-47abb439deb5, origin: Elixir.Ppl.PplReq"},{"event":"cmd_output","timestamp":1607098323,"output":"uests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:03.941 [info] ppl_id: b3dbc"},{"event":"cmd_output","timestamp":1607098323,"output":"da4-0128-48cf-a6a0-47abb439deb5, type: PplSubInits, state: fetching, event: exit_scheduling, recover"},{"event":"cmd_output","timestamp":1607098323,"output":"y_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:03.964 [info]"},{"event":"cmd_output","timestamp":1607098323,"output":" ppl_id: b3dbcda4-0128-48cf-a6a0-47abb439deb5, type: PplSubInits, state: regular_init, event: exit_"},{"event":"cmd_output","timestamp":1607098323,"output":"scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098323,"output":"16:12:03.994 [info] ppl_id: b3dbcda4-0128-48cf-a6a0-47abb439deb5, type: PplRequests, event: persist"},{"event":"cmd_output","timestamp":1607098323,"output":"ed definition for request with request_token: 72963904-364b-11eb-ac2e-5254005464e2, origin: Elixir.P"},{"event":"cmd_output","timestamp":1607098324,"output":"pl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:03.999 [info] "},{"event":"cmd_output","timestamp":1607098324,"output":"Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, "},{"event":"cmd_output","timestamp":1607098324,"output":"inserted_at: ~N[2020-12-04 16:12:03.997397], name: \"master-.semaphore/skip_block.yml\", organization_"},{"event":"cmd_output","timestamp":1607098324,"output":"id: \"7bdf6a7f-7bea-494a-b71f-c4432be7a349\", project_id: \"c60dfcf5-d28d-476a-9876-f50a9ac576f8\", queu"},{"event":"cmd_output","timestamp":1607098324,"output":"e_id: \"b786e6ef-403b-4ede-8719-1b4904c82c48\", scope: \"project\", updated_at: ~N[2020-12-04 16:12:03.9"},{"event":"cmd_output","timestamp":1607098324,"output":"97406], user_generated: false}}\n\u001b[0m\u001b[22m\n16:12:04.006 [info] ppl_id: not_available, event: creat"},{"event":"cmd_output","timestamp":1607098324,"output":"ed, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:0"},{"event":"cmd_output","timestamp":1607098324,"output":"4.006 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L"},{"event":"cmd_output","timestamp":1607098324,"output":"105), \n\u001b[0m\u001b[22m\n16:12:04.006 [info] ppl_id: b3dbcda4-0128-48cf-a6a0-47abb439deb5, type: PplBlock"},{"event":"cmd_output","timestamp":1607098324,"output":"s, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSub"},{"event":"cmd_output","timestamp":1607098324,"output":"Inits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:04.006 [info] ppl_id: b3dbcda"},{"event":"cmd_output","timestamp":1607098324,"output":"4-0128-48cf-a6a0-47abb439deb5, type: PplBlocks, block_index: 1, state: initializing, event: created,"},{"event":"cmd_output","timestamp":1607098324,"output":" recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b["},{"event":"cmd_output","timestamp":1607098324,"output":"0m\u001b[22m\n16:12:04.008 [info] ppl_id: b3dbcda4-0128-48cf-a6a0-47abb439deb5, type: PplSubInits, state"},{"event":"cmd_output","timestamp":1607098324,"output":": done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.lo"},{"event":"cmd_output","timestamp":1607098324,"output":"g_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:04.018 [info] ppl_id: b3dbcda4-0128-48cf-a6a0-47abb439deb"},{"event":"cmd_output","timestamp":1607098324,"output":"5, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM."},{"event":"cmd_output","timestamp":1607098324,"output":"Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:04.018 [info] ppl_id: b3dbcda4-0128-48cf-a6a0-47ab"},{"event":"cmd_output","timestamp":1607098324,"output":"b439deb5, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0"},{"event":"cmd_output","timestamp":1607098324,"output":", origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:04.032 [info] ppl_id: "},{"event":"cmd_output","timestamp":1607098324,"output":"b3dbcda4-0128-48cf-a6a0-47abb439deb5, type: Ppls, state: queuing, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098324,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:04.034 [info] p"},{"event":"cmd_output","timestamp":1607098324,"output":"pl_id: b3dbcda4-0128-48cf-a6a0-47abb439deb5, type: PplBlocks, block_index: 1, state: waiting, event:"},{"event":"cmd_output","timestamp":1607098324,"output":" exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098324,"output":"[22m\n16:12:04.052 [info] ppl_id: b3dbcda4-0128-48cf-a6a0-47abb439deb5, type: Ppls, state: running,"},{"event":"cmd_output","timestamp":1607098324,"output":" event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), "},{"event":"cmd_output","timestamp":1607098324,"output":"\n\u001b[0m\u001b[22m\n16:12:04.064 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"b"},{"event":"cmd_output","timestamp":1607098324,"output":"3dbcda4-0128-48cf-a6a0-47abb439deb5\"\n\u001b[0m\u001b[22m\n16:12:04.071 [info] block_id: 66291be9-cf0b-432f-9"},{"event":"cmd_output","timestamp":1607098324,"output":"ee0-5f73365ba7f1, type: BlockRequests, event: persisted block run request from ppl b3dbcda4-0128-48c"},{"event":"cmd_output","timestamp":1607098324,"output":"f-a6a0-47abb439deb5 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.proce"},{"event":"cmd_output","timestamp":1607098324,"output":"ss_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:04.079 [info] block_id: 66291be9-cf0b-432f-9ee0-5f73365ba7f1"},{"event":"cmd_output","timestamp":1607098324,"output":", type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Bl"},{"event":"cmd_output","timestamp":1607098324,"output":"ocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:04.082 [info] Block 0 of pipeline with i"},{"event":"cmd_output","timestamp":1607098324,"output":"d: b3dbcda4-0128-48cf-a6a0-47abb439deb5 scheduled in block service with id: : \"66291be9-cf0b-432f-9e"},{"event":"cmd_output","timestamp":1607098324,"output":"e0-5f73365ba7f1\"\n\u001b[0m\u001b[22m\n16:12:04.086 [info] ppl_id: b3dbcda4-0128-48cf-a6a0-47abb439deb5, type"},{"event":"cmd_output","timestamp":1607098324,"output":": PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098324,"output":"ir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:04.091 [info] block_id: 66291be9-cf0"},{"event":"cmd_output","timestamp":1607098324,"output":"b-432f-9ee0-5f73365ba7f1, type: BlockRequests, event: persisted build and sub_ppl details for block_"},{"event":"cmd_output","timestamp":1607098324,"output":"request: 66291be9-cf0b-432f-9ee0-5f73365ba7f1, origin: Elixir.Block.BlockRequests.Model.BlockRequest"},{"event":"cmd_output","timestamp":1607098324,"output":"sQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:04.094 [info] block_id: 66291be9-cf0b-432f-9ee0-5f"},{"event":"cmd_output","timestamp":1607098324,"output":"73365ba7f1, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blo"},{"event":"cmd_output","timestamp":1607098324,"output":"cks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:04.097 [info] block_id: 66291b"},{"event":"cmd_output","timestamp":1607098324,"output":"e9-cf0b-432f-9ee0-5f73365ba7f1, type: Blocks, state: running, event: exit_scheduling, recovery_count"},{"event":"cmd_output","timestamp":1607098324,"output":": 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:04.113 [info] block"},{"event":"cmd_output","timestamp":1607098324,"output":"_id: 66291be9-cf0b-432f-9ee0-5f73365ba7f1, type: Tasks, state: running, event: exit_scheduling, reco"},{"event":"cmd_output","timestamp":1607098324,"output":"very_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:04.154 [in"},{"event":"cmd_output","timestamp":1607098324,"output":"fo] block_id: 66291be9-cf0b-432f-9ee0-5f73365ba7f1, type: Tasks, state: done, event: exit_schedulin"},{"event":"cmd_output","timestamp":1607098324,"output":"g, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:04."},{"event":"cmd_output","timestamp":1607098324,"output":"166 [info] block_id: 66291be9-cf0b-432f-9ee0-5f73365ba7f1, type: Blocks, state: done, event: exit_s"},{"event":"cmd_output","timestamp":1607098324,"output":"cheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098324,"output":"6:12:04.176 [info] ppl_id: b3dbcda4-0128-48cf-a6a0-47abb439deb5, block_id: 66291be9-cf0b-432f-9ee0-"},{"event":"cmd_output","timestamp":1607098324,"output":"5f73365ba7f1, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, "},{"event":"cmd_output","timestamp":1607098324,"output":"recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:04.185"},{"event":"cmd_output","timestamp":1607098324,"output":" [info] PplBlocks WaitingState STM is scheduling block 1 from pipeline: \"b3dbcda4-0128-48cf-a6a0-47"},{"event":"cmd_output","timestamp":1607098324,"output":"abb439deb5\"\n\u001b[0m\u001b[22m\n16:12:04.193 [info] block_id: 601984c6-a71c-4dcd-8c1e-02da98248fc3, type: B"},{"event":"cmd_output","timestamp":1607098324,"output":"lockRequests, event: persisted block run request from ppl b3dbcda4-0128-48cf-a6a0-47abb439deb5 for b"},{"event":"cmd_output","timestamp":1607098324,"output":"lock 1, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098324,"output":"m\u001b[22m\n16:12:04.196 [info] block_id: 601984c6-a71c-4dcd-8c1e-02da98248fc3, type: Blocks, state: in"},{"event":"cmd_output","timestamp":1607098324,"output":"itializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries."},{"event":"cmd_output","timestamp":1607098324,"output":"insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:04.196 [info] Block 1 of pipeline with id: b3dbcda4-0128-48cf-a6a"},{"event":"cmd_output","timestamp":1607098324,"output":"0-47abb439deb5 scheduled in block service with id: : \"601984c6-a71c-4dcd-8c1e-02da98248fc3\"\n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098324,"output":"2m\n16:12:04.200 [info] ppl_id: b3dbcda4-0128-48cf-a6a0-47abb439deb5, type: PplBlocks, block_index:"},{"event":"cmd_output","timestamp":1607098324,"output":" 1, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_st"},{"event":"cmd_output","timestamp":1607098324,"output":"ate_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:04.207 [info] block_id: 601984c6-a71c-4dcd-8c1e-02da98248fc3,"},{"event":"cmd_output","timestamp":1607098324,"output":" type: BlockRequests, event: persisted build and sub_ppl details for block_request: 601984c6-a71c-4d"},{"event":"cmd_output","timestamp":1607098324,"output":"cd-8c1e-02da98248fc3, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L"},{"event":"cmd_output","timestamp":1607098324,"output":"41), \n\u001b[0m\u001b[22m\n16:12:04.209 [info] block_id: 601984c6-a71c-4dcd-8c1e-02da98248fc3, type: Tasks, "},{"event":"cmd_output","timestamp":1607098324,"output":"state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.Initializi"},{"event":"cmd_output","timestamp":1607098324,"output":"ngState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:04.212 [info] block_id: 601984c6-a71c-4dcd-8c1e-02da982"},{"event":"cmd_output","timestamp":1607098324,"output":"48fc3, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loope"},{"event":"cmd_output","timestamp":1607098324,"output":"r.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:04.236 [info] block_id: 601984c6-a71c-4dcd-8"},{"event":"cmd_output","timestamp":1607098324,"output":"c1e-02da98248fc3, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098324,"output":"ixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:04.272 [info] block_id: 601984c6-a"},{"event":"cmd_output","timestamp":1607098324,"output":"71c-4dcd-8c1e-02da98248fc3, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098324,"output":"gin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:04.284 [info] block_id: 601"},{"event":"cmd_output","timestamp":1607098324,"output":"984c6-a71c-4dcd-8c1e-02da98248fc3, type: Blocks, state: done, event: exit_scheduling, recovery_count"},{"event":"cmd_output","timestamp":1607098324,"output":": 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:04.293 [info] ppl_i"},{"event":"cmd_output","timestamp":1607098324,"output":"d: b3dbcda4-0128-48cf-a6a0-47abb439deb5, block_id: 601984c6-a71c-4dcd-8c1e-02da98248fc3, type: PplBl"},{"event":"cmd_output","timestamp":1607098324,"output":"ocks, block_index: 1, state: done, result: failed, event: exit_scheduling, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098324,"output":": Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:04.313 [info] ppl_id: b3dbcda4"},{"event":"cmd_output","timestamp":1607098324,"output":"-0128-48cf-a6a0-47abb439deb5, type: Ppls, state: done, result: failed, event: exit_scheduling, recov"},{"event":"cmd_output","timestamp":1607098324,"output":"ery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test skip-when"},{"event":"cmd_output","timestamp":1607098324,"output":" condition false for given branch - block executed (642.3ms)\u001b[0m\n\nPpl.PplBlocks.STMHandler.Waiting"},{"event":"cmd_output","timestamp":1607098324,"output":"State.Test\n * test PplBlocks run looper runs block without dependencies\r * test PplBlocks run loo"},{"event":"cmd_output","timestamp":1607098324,"output":"per runs block without dependencies (skipped)\n * test PplBlocks run looper runs block if dependenc"},{"event":"cmd_output","timestamp":1607098324,"output":"y passed\r * test PplBlocks run looper runs block if dependency passed (skipped)\n * test PplBlocks"},{"event":"cmd_output","timestamp":1607098324,"output":" run looper cancels block if dependency failed\r * test PplBlocks run looper cancels block if depend"},{"event":"cmd_output","timestamp":1607098324,"output":"ency failed (skipped)\n\nPpl.Grpc.Server.Test\n * test gRPC list_grouped() - both scopes user-gene"},{"event":"cmd_output","timestamp":1607098324,"output":"rated queues\u001b[22m\n16:12:04.407 [info] ppl_id: a4dcfce5-4b1f-4e7f-b605-ae1004e1a4b0, type: PplReque"},{"event":"cmd_output","timestamp":1607098324,"output":"sts, event: persisted schedule request with request_token: 3ae974a1-cbe9-4dd9-a3ef-aa53b9fccce6, ori"},{"event":"cmd_output","timestamp":1607098324,"output":"gin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:04."},{"event":"cmd_output","timestamp":1607098324,"output":"411 [info] ppl_id: a4dcfce5-4b1f-4e7f-b605-ae1004e1a4b0, type: PplRequests, event: persisted defini"},{"event":"cmd_output","timestamp":1607098324,"output":"tion for request with request_token: 3ae974a1-cbe9-4dd9-a3ef-aa53b9fccce6, origin: Elixir.Ppl.PplReq"},{"event":"cmd_output","timestamp":1607098324,"output":"uests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:04.416 [info] ppl_id: a"},{"event":"cmd_output","timestamp":1607098324,"output":"4dcfce5-4b1f-4e7f-b605-ae1004e1a4b0, type: Ppls, state: initializing, event: initializing, recovery_"},{"event":"cmd_output","timestamp":1607098324,"output":"count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:04."},{"event":"cmd_output","timestamp":1607098324,"output":"423 [info] Persisted ppl_sub_init for pipeline with ppl_id: a4dcfce5-4b1f-4e7f-b605-ae1004e1a4b0: %"},{"event":"cmd_output","timestamp":1607098324,"output":"Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, co"},{"event":"cmd_output","timestamp":1607098324,"output":"mpile_task_id: nil, error_description: nil, id: 157, in_scheduling: false, init_type: \"regular\", ins"},{"event":"cmd_output","timestamp":1607098324,"output":"erted_at: ~N[2020-12-04 16:12:04.421018], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"a4dcfce5-4b1f-4e7f-b605-ae1004e1a4b0\", recovery_count: "},{"event":"cmd_output","timestamp":1607098324,"output":"0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc"},{"event":"cmd_output","timestamp":1607098324,"output":": nil, updated_at: ~N[2020-12-04 16:12:04.421029]}\n\u001b[0m\u001b[22m\n16:12:04.429 [info] ppl_id: d07db697"},{"event":"cmd_output","timestamp":1607098324,"output":"-96b9-40db-8370-c7e39f6377a8, type: PplRequests, event: persisted schedule request with request_toke"},{"event":"cmd_output","timestamp":1607098324,"output":"n: 4e3c1053-1a21-40f0-864e-712cd94098a4, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.pro"},{"event":"cmd_output","timestamp":1607098324,"output":"cess_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:04.431 [info] ppl_id: d07db697-96b9-40db-8370-c7e39f6377a8"},{"event":"cmd_output","timestamp":1607098324,"output":", type: PplRequests, event: persisted definition for request with request_token: 4e3c1053-1a21-40f0-"},{"event":"cmd_output","timestamp":1607098324,"output":"864e-712cd94098a4, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76),"},{"event":"cmd_output","timestamp":1607098324,"output":" \n\u001b[0m\u001b[22m\n16:12:04.436 [info] ppl_id: d07db697-96b9-40db-8370-c7e39f6377a8, type: Ppls, state: "},{"event":"cmd_output","timestamp":1607098324,"output":"initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.proc"},{"event":"cmd_output","timestamp":1607098324,"output":"ess_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:04.443 [info] Persisted ppl_sub_init for pipeline with ppl"},{"event":"cmd_output","timestamp":1607098324,"output":"_id: d07db697-96b9-40db-8370-c7e39f6377a8: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema"},{"event":"cmd_output","timestamp":1607098324,"output":".Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 158, in_"},{"event":"cmd_output","timestamp":1607098324,"output":"scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:04.441108], pipeline_reque"},{"event":"cmd_output","timestamp":1607098324,"output":"sts: #Ecto.Association.NotLoaded, ppl_id: \"d07db697-96"},{"event":"cmd_output","timestamp":1607098324,"output":"b9-40db-8370-c7e39f6377a8\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", te"},{"event":"cmd_output","timestamp":1607098324,"output":"rminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:04.441151]}\n\u001b[0m"},{"event":"cmd_output","timestamp":1607098324,"output":"\u001b[22m\n16:12:04.450 [info] ppl_id: 706d2d37-096c-43b6-b3cd-bc4c1c6f402f, type: PplRequests, event: "},{"event":"cmd_output","timestamp":1607098324,"output":"persisted schedule request with request_token: 3b895083-2394-4673-a2fb-7deb36afa666, origin: Elixir."},{"event":"cmd_output","timestamp":1607098324,"output":"Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:04.452 [info] "},{"event":"cmd_output","timestamp":1607098324,"output":"ppl_id: 706d2d37-096c-43b6-b3cd-bc4c1c6f402f, type: PplRequests, event: persisted definition for req"},{"event":"cmd_output","timestamp":1607098324,"output":"uest with request_token: 3b895083-2394-4673-a2fb-7deb36afa666, origin: Elixir.Ppl.PplRequests.Model."},{"event":"cmd_output","timestamp":1607098324,"output":"PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:04.457 [info] ppl_id: 706d2d37-096c"},{"event":"cmd_output","timestamp":1607098324,"output":"-43b6-b3cd-bc4c1c6f402f, type: Ppls, state: initializing, event: initializing, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098324,"output":"igin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:04.462 [info] "},{"event":"cmd_output","timestamp":1607098324,"output":"Persisted ppl_sub_init for pipeline with ppl_id: 706d2d37-096c-43b6-b3cd-bc4c1c6f402f: %Ppl.PplSubIn"},{"event":"cmd_output","timestamp":1607098324,"output":"its.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_i"},{"event":"cmd_output","timestamp":1607098324,"output":"d: nil, error_description: nil, id: 159, in_scheduling: false, init_type: \"regular\", inserted_at: ~N"},{"event":"cmd_output","timestamp":1607098324,"output":"[2020-12-04 16:12:04.460524], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"706d2d37-096c-43b6-b3cd-bc4c1c6f402f\", recovery_count: 0, result: n"},{"event":"cmd_output","timestamp":1607098324,"output":"il, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updat"},{"event":"cmd_output","timestamp":1607098324,"output":"ed_at: ~N[2020-12-04 16:12:04.460537]}\n\u001b[0m\u001b[22m\n16:12:04.469 [info] ppl_id: b05c8b11-ba45-4ff9-9"},{"event":"cmd_output","timestamp":1607098324,"output":"46b-0c1b9a1b7071, type: PplRequests, event: persisted schedule request with request_token: 6b33668e-"},{"event":"cmd_output","timestamp":1607098324,"output":"836c-4824-8f0d-92da28aecf35, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_respons"},{"event":"cmd_output","timestamp":1607098324,"output":"e/2(L55), \n\u001b[0m\u001b[22m\n16:12:04.472 [info] ppl_id: b05c8b11-ba45-4ff9-946b-0c1b9a1b7071, type: PplR"},{"event":"cmd_output","timestamp":1607098324,"output":"equests, event: persisted definition for request with request_token: 6b33668e-836c-4824-8f0d-92da28a"},{"event":"cmd_output","timestamp":1607098324,"output":"ecf35, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098324,"output":"\n16:12:04.477 [info] ppl_id: b05c8b11-ba45-4ff9-946b-0c1b9a1b7071, type: Ppls, state: initializing"},{"event":"cmd_output","timestamp":1607098324,"output":", event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response"},{"event":"cmd_output","timestamp":1607098324,"output":"/2(L124), \n\u001b[0m\u001b[22m\n16:12:04.483 [info] Persisted ppl_sub_init for pipeline with ppl_id: b05c8b1"},{"event":"cmd_output","timestamp":1607098324,"output":"1-ba45-4ff9-946b-0c1b9a1b7071: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:l"},{"event":"cmd_output","timestamp":1607098324,"output":"oaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 160, in_scheduling: "},{"event":"cmd_output","timestamp":1607098324,"output":"false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:04.481177], pipeline_requests: #Ecto.A"},{"event":"cmd_output","timestamp":1607098324,"output":"ssociation.NotLoaded, ppl_id: \"b05c8b11-ba45-4ff9-946b"},{"event":"cmd_output","timestamp":1607098324,"output":"-0c1b9a1b7071\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_requ"},{"event":"cmd_output","timestamp":1607098324,"output":"est: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:04.481191]}\n\u001b[0m\u001b[22m\n16:12"},{"event":"cmd_output","timestamp":1607098324,"output":":04.489 [info] ppl_id: c6c7bf89-bdf9-433b-b8a4-4357bd9f7c1a, type: PplRequests, event: persisted sc"},{"event":"cmd_output","timestamp":1607098324,"output":"hedule request with request_token: 5a00b601-601f-425e-b169-8955baf9c806, origin: Elixir.Ppl.PplReque"},{"event":"cmd_output","timestamp":1607098324,"output":"sts.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:04.492 [info] ppl_id: c6c7"},{"event":"cmd_output","timestamp":1607098324,"output":"bf89-bdf9-433b-b8a4-4357bd9f7c1a, type: PplRequests, event: persisted definition for request with re"},{"event":"cmd_output","timestamp":1607098324,"output":"quest_token: 5a00b601-601f-425e-b169-8955baf9c806, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQ"},{"event":"cmd_output","timestamp":1607098324,"output":"ueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:04.497 [info] ppl_id: c6c7bf89-bdf9-433b-b8a4-4"},{"event":"cmd_output","timestamp":1607098324,"output":"357bd9f7c1a, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098324,"output":".Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:04.503 [info] Persisted pp"},{"event":"cmd_output","timestamp":1607098324,"output":"l_sub_init for pipeline with ppl_id: c6c7bf89-bdf9-433b-b8a4-4357bd9f7c1a: %Ppl.PplSubInits.Model.Pp"},{"event":"cmd_output","timestamp":1607098324,"output":"lSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, erro"},{"event":"cmd_output","timestamp":1607098324,"output":"r_description: nil, id: 161, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 "},{"event":"cmd_output","timestamp":1607098324,"output":"16:12:04.500803], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"c6c7bf89-bdf9-433b-b8a4-4357bd9f7c1a\", recovery_count: 0, result: nil, result_r"},{"event":"cmd_output","timestamp":1607098324,"output":"eason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[20"},{"event":"cmd_output","timestamp":1607098324,"output":"20-12-04 16:12:04.500841]}\n\u001b[0m\u001b[22m\n16:12:04.510 [info] ppl_id: 0531d42a-3eee-431d-aae5-34c9254c"},{"event":"cmd_output","timestamp":1607098324,"output":"a946, type: PplRequests, event: persisted schedule request with request_token: 3d42c780-d0a0-424c-98"},{"event":"cmd_output","timestamp":1607098324,"output":"85-243c37bd5b65, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n"},{"event":"cmd_output","timestamp":1607098324,"output":"\u001b[0m\u001b[22m\n16:12:04.512 [info] ppl_id: 0531d42a-3eee-431d-aae5-34c9254ca946, type: PplRequests, eve"},{"event":"cmd_output","timestamp":1607098324,"output":"nt: persisted definition for request with request_token: 3d42c780-d0a0-424c-9885-243c37bd5b65, origi"},{"event":"cmd_output","timestamp":1607098324,"output":"n: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:04.5"},{"event":"cmd_output","timestamp":1607098324,"output":"17 [info] ppl_id: 0531d42a-3eee-431d-aae5-34c9254ca946, type: Ppls, state: initializing, event: ini"},{"event":"cmd_output","timestamp":1607098324,"output":"tializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n"},{"event":"cmd_output","timestamp":1607098324,"output":"\u001b[0m\u001b[22m\n16:12:04.523 [info] Persisted ppl_sub_init for pipeline with ppl_id: 0531d42a-3eee-431d-"},{"event":"cmd_output","timestamp":1607098324,"output":"aae5-34c9254ca946: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipe"},{"event":"cmd_output","timestamp":1607098324,"output":"line_sub_inits\">, compile_task_id: nil, error_description: nil, id: 162, in_scheduling: false, init_"},{"event":"cmd_output","timestamp":1607098324,"output":"type: \"regular\", inserted_at: ~N[2020-12-04 16:12:04.522022], pipeline_requests: #Ecto.Association.N"},{"event":"cmd_output","timestamp":1607098324,"output":"otLoaded, ppl_id: \"0531d42a-3eee-431d-aae5-34c9254ca94"},{"event":"cmd_output","timestamp":1607098324,"output":"6\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, te"},{"event":"cmd_output","timestamp":1607098324,"output":"rminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:04.522036]}\n\u001b[0m\u001b[22m\n16:12:04.529 [inf"},{"event":"cmd_output","timestamp":1607098324,"output":"o] ppl_id: 69257f51-5d70-4717-bfae-596de5a30818, type: PplRequests, event: persisted schedule reque"},{"event":"cmd_output","timestamp":1607098324,"output":"st with request_token: 600293c3-18ae-490c-b8f7-f87c2338ec9f, origin: Elixir.Ppl.PplRequests.Model.Pp"},{"event":"cmd_output","timestamp":1607098324,"output":"lRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:04.531 [info] ppl_id: 69257f51-5d70-47"},{"event":"cmd_output","timestamp":1607098324,"output":"17-bfae-596de5a30818, type: PplRequests, event: persisted definition for request with request_token:"},{"event":"cmd_output","timestamp":1607098324,"output":" 600293c3-18ae-490c-b8f7-f87c2338ec9f, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.inser"},{"event":"cmd_output","timestamp":1607098324,"output":"t_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:04.535 [info] ppl_id: 69257f51-5d70-4717-bfae-596de5a30818,"},{"event":"cmd_output","timestamp":1607098324,"output":" type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Mo"},{"event":"cmd_output","timestamp":1607098324,"output":"del.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:04.542 [info] Persisted ppl_sub_init f"},{"event":"cmd_output","timestamp":1607098324,"output":"or pipeline with ppl_id: 69257f51-5d70-4717-bfae-596de5a30818: %Ppl.PplSubInits.Model.PplSubInits{__"},{"event":"cmd_output","timestamp":1607098324,"output":"meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_descriptio"},{"event":"cmd_output","timestamp":1607098324,"output":"n: nil, id: 163, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:04.540"},{"event":"cmd_output","timestamp":1607098324,"output":"737], pipeline_requests: #Ecto.Association.NotLoaded, "},{"event":"cmd_output","timestamp":1607098324,"output":"ppl_id: \"69257f51-5d70-4717-bfae-596de5a30818\", recovery_count: 0, result: nil, result_reason: nil, "},{"event":"cmd_output","timestamp":1607098324,"output":"state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:"},{"event":"cmd_output","timestamp":1607098324,"output":"12:04.540750]}\n\u001b[0m\u001b[22m\n16:12:04.549 [info] ppl_id: fa64ebfd-81b0-45f0-a462-f587e0dc6664, type: "},{"event":"cmd_output","timestamp":1607098324,"output":"PplRequests, event: persisted schedule request with request_token: 534e4b7c-ae61-400a-a6e1-aa1c3f9b1"},{"event":"cmd_output","timestamp":1607098324,"output":"010, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098324,"output":"6:12:04.552 [info] ppl_id: fa64ebfd-81b0-45f0-a462-f587e0dc6664, type: PplRequests, event: persiste"},{"event":"cmd_output","timestamp":1607098324,"output":"d definition for request with request_token: 534e4b7c-ae61-400a-a6e1-aa1c3f9b1010, origin: Elixir.Pp"},{"event":"cmd_output","timestamp":1607098324,"output":"l.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:04.555 [info] p"},{"event":"cmd_output","timestamp":1607098324,"output":"pl_id: fa64ebfd-81b0-45f0-a462-f587e0dc6664, type: Ppls, state: initializing, event: initializing, r"},{"event":"cmd_output","timestamp":1607098324,"output":"ecovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098324,"output":"6:12:04.559 [info] Persisted ppl_sub_init for pipeline with ppl_id: fa64ebfd-81b0-45f0-a462-f587e0d"},{"event":"cmd_output","timestamp":1607098324,"output":"c6664: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_ini"},{"event":"cmd_output","timestamp":1607098324,"output":"ts\">, compile_task_id: nil, error_description: nil, id: 164, in_scheduling: false, init_type: \"regul"},{"event":"cmd_output","timestamp":1607098324,"output":"ar\", inserted_at: ~N[2020-12-04 16:12:04.558235], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"fa64ebfd-81b0-45f0-a462-f587e0dc6664\", recovery"},{"event":"cmd_output","timestamp":1607098324,"output":"_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_requ"},{"event":"cmd_output","timestamp":1607098324,"output":"est_desc: nil, updated_at: ~N[2020-12-04 16:12:04.558248]}\n\u001b[0m\u001b[22m\n16:12:04.562 [info] Periodic"},{"event":"cmd_output","timestamp":1607098324,"output":" from module Elixir.Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.STMHandler.Initi"},{"event":"cmd_output","timestamp":1607098324,"output":"alizingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Initiali"},{"event":"cmd_output","timestamp":1607098324,"output":"zingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], cooling_time_se"},{"event":"cmd_output","timestamp":1607098324,"output":"c: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher_cb: #Function<0."},{"event":"cmd_output","timestamp":1607098324,"output":"125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :"},{"event":"cmd_output","timestamp":1607098324,"output":"terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.P"},{"event":"cmd_output","timestamp":1607098324,"output":"pls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:04.562 [info] Periodic from module Elixir.Ppl.Ppls.S"},{"event":"cmd_output","timestamp":1607098324,"output":"TMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 100 ms, metric_n"},{"event":"cmd_output","timestamp":1607098324,"output":"ame: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args: %{allowed_state"},{"event":"cmd_output","timestamp":1607098324,"output":"s: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppl"},{"event":"cmd_output","timestamp":1607098324,"output":"s, observed_state: \"pending\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler.PendingStat"},{"event":"cmd_output","timestamp":1607098324,"output":"e.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :r"},{"event":"cmd_output","timestamp":1607098324,"output":"ecovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098324,"output":"m\n16:12:04.563 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.QueuingState with name Elixi"},{"event":"cmd_output","timestamp":1607098324,"output":"r.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Pp"},{"event":"cmd_output","timestamp":1607098324,"output":"ls-STMHandler-QueuingState\"]}, recurring args: %{allowed_states: [\"queuing\", \"running\", \"done\"], coo"},{"event":"cmd_output","timestamp":1607098324,"output":"ling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", publisher_cb: #Fun"},{"event":"cmd_output","timestamp":1607098324,"output":"ction<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, returning: [:id"},{"event":"cmd_output","timestamp":1607098324,"output":", :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Mode"},{"event":"cmd_output","timestamp":1607098324,"output":"l.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:04.563 [info] Periodic from module Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098324,"output":"s.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHandler.RunningState :: period: 100 ms, metri"},{"event":"cmd_output","timestamp":1607098324,"output":"c_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring args: %{allowed_st"},{"event":"cmd_output","timestamp":1607098324,"output":"ates: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, obs"},{"event":"cmd_output","timestamp":1607098324,"output":"erved_state: \"running\", publisher_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler.RunningState.arg"},{"event":"cmd_output","timestamp":1607098324,"output":"s/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recove"},{"event":"cmd_output","timestamp":1607098324,"output":"ry_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098324,"output":":12:04.563 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.StoppingState with name Elixir.Pp"},{"event":"cmd_output","timestamp":1607098324,"output":"l.Ppls.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-"},{"event":"cmd_output","timestamp":1607098324,"output":"STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_se"},{"event":"cmd_output","timestamp":1607098324,"output":"c: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"stopping\", publisher_cb: #Function<0.718"},{"event":"cmd_output","timestamp":1607098324,"output":"03493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminat"},{"event":"cmd_output","timestamp":1607098324,"output":"e_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, tas"},{"event":"cmd_output","timestamp":1607098324,"output":"k_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:04.563 [info] Periodic from module Elixir.Ppl.PplSubInits.ST"},{"event":"cmd_output","timestamp":1607098324,"output":"MHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 100 ms, me"},{"event":"cmd_output","timestamp":1607098324,"output":"tric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args: %{"},{"event":"cmd_output","timestamp":1607098324,"output":"allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplS"},{"event":"cmd_output","timestamp":1607098324,"output":"ubInits, observed_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :termi"},{"event":"cmd_output","timestamp":1607098324,"output":"nate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model"},{"event":"cmd_output","timestamp":1607098324,"output":".PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:04.563 [info] Periodic from module Elixir.P"},{"event":"cmd_output","timestamp":1607098324,"output":"pl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler.FetchingState ::"},{"event":"cmd_output","timestamp":1607098324,"output":" period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}"},{"event":"cmd_output","timestamp":1607098324,"output":", recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"done\"], cooling_time_sec: -2, i"},{"event":"cmd_output","timestamp":1607098324,"output":"nitial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fetching\", publisher_cb: :skip, re"},{"event":"cmd_output","timestamp":1607098324,"output":"po: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count"},{"event":"cmd_output","timestamp":1607098324,"output":", :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:04."},{"event":"cmd_output","timestamp":1607098324,"output":"564 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CompilationState with name Elixir"},{"event":"cmd_output","timestamp":1607098324,"output":".Ppl.PplSubInits.STMHandler.CompilationState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\""},{"event":"cmd_output","timestamp":1607098324,"output":", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurring args: %{allowed_states: [\"regular_init"},{"event":"cmd_output","timestamp":1607098324,"output":"\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.Pp"},{"event":"cmd_output","timestamp":1607098324,"output":"lSubInits, observed_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, "},{"event":"cmd_output","timestamp":1607098324,"output":":terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits"},{"event":"cmd_output","timestamp":1607098324,"output":".Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:04.564 [info] Periodic from module El"},{"event":"cmd_output","timestamp":1607098324,"output":"ixir.Ppl.PplSubInits.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHandler.Regular"},{"event":"cmd_output","timestamp":1607098324,"output":"InitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-Regu"},{"event":"cmd_output","timestamp":1607098324,"output":"larInitState\"]}, recurring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, initial_query: Ppl"},{"event":"cmd_output","timestamp":1607098324,"output":".PplSubInits.Model.PplSubInits, observed_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoR"},{"event":"cmd_output","timestamp":1607098324,"output":"epo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], s"},{"event":"cmd_output","timestamp":1607098324,"output":"chema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:04.564 [info] P"},{"event":"cmd_output","timestamp":1607098324,"output":"eriodic from module Elixir.Ppl.PplBlocks.STMHandler.InitializingState with name Elixir.Ppl.PplBlocks"},{"event":"cmd_output","timestamp":1607098324,"output":".STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBloc"},{"event":"cmd_output","timestamp":1607098324,"output":"ks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"waiting\", \"d"},{"event":"cmd_output","timestamp":1607098324,"output":"one\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"initializ"},{"event":"cmd_output","timestamp":1607098324,"output":"ing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :st"},{"event":"cmd_output","timestamp":1607098324,"output":"ate, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_s"},{"event":"cmd_output","timestamp":1607098324,"output":"upervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:04.564 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHand"},{"event":"cmd_output","timestamp":1607098324,"output":"ler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler.WaitingState :: period: 1000 ms, metric_n"},{"event":"cmd_output","timestamp":1607098324,"output":"ame: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurring args: %{allowed_"},{"event":"cmd_output","timestamp":1607098324,"output":"states: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplB"},{"event":"cmd_output","timestamp":1607098324,"output":"locks, observed_state: \"waiting\", publisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.STMHandler.Wa"},{"event":"cmd_output","timestamp":1607098324,"output":"itingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :r"},{"event":"cmd_output","timestamp":1607098324,"output":"esult, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervis"},{"event":"cmd_output","timestamp":1607098324,"output":"or: :skip}\n\u001b[0m\u001b[22m\n16:12:04.565 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.Run"},{"event":"cmd_output","timestamp":1607098324,"output":"ningState with name Elixir.Ppl.PplBlocks.STMHandler.RunningState :: period: 1000 ms, metric_name: {\""},{"event":"cmd_output","timestamp":1607098324,"output":"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states:"},{"event":"cmd_output","timestamp":1607098324,"output":" [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks"},{"event":"cmd_output","timestamp":1607098324,"output":", observed_state: \"running\", publisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHandler.Runnin"},{"event":"cmd_output","timestamp":1607098324,"output":"gState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :resul"},{"event":"cmd_output","timestamp":1607098324,"output":"t, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_s"},{"event":"cmd_output","timestamp":1607098324,"output":"upervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:04.565 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHand"},{"event":"cmd_output","timestamp":1607098324,"output":"ler.StoppingState with name Elixir.Ppl.PplBlocks.STMHandler.StoppingState :: period: 1000 ms, metric"},{"event":"cmd_output","timestamp":1607098324,"output":"_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurring args: %{allow"},{"event":"cmd_output","timestamp":1607098324,"output":"ed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks,"},{"event":"cmd_output","timestamp":1607098324,"output":" observed_state: \"stopping\", publisher_cb: #Function<0.104215991/1 in Ppl.PplBlocks.STMHandler.Stopp"},{"event":"cmd_output","timestamp":1607098324,"output":"ingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :res"},{"event":"cmd_output","timestamp":1607098324,"output":"ult, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task"},{"event":"cmd_output","timestamp":1607098324,"output":"_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:04.565 [info] Periodic from module Elixir.Block.Blocks.STMHan"},{"event":"cmd_output","timestamp":1607098324,"output":"dler.InitializingState with name Elixir.Block.Blocks.STMHandler.InitializingState :: period: 100 ms,"},{"event":"cmd_output","timestamp":1607098324,"output":" metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, recurring arg"},{"event":"cmd_output","timestamp":1607098324,"output":"s: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Blocks.Model.Blo"},{"event":"cmd_output","timestamp":1607098324,"output":"cks, observed_state: \"initializing\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :te"},{"event":"cmd_output","timestamp":1607098324,"output":"rminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks"},{"event":"cmd_output","timestamp":1607098324,"output":", task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:04.565 [info] Periodic from module Elixir.Block.Blocks."},{"event":"cmd_output","timestamp":1607098324,"output":"STMHandler.RunningState with name Elixir.Block.Blocks.STMHandler.RunningState :: period: 100 ms, met"},{"event":"cmd_output","timestamp":1607098324,"output":"ric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-RunningState\"]}, recurring args: %{allo"},{"event":"cmd_output","timestamp":1607098324,"output":"wed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model"},{"event":"cmd_output","timestamp":1607098324,"output":".Blocks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :ter"},{"event":"cmd_output","timestamp":1607098324,"output":"minate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks,"},{"event":"cmd_output","timestamp":1607098324,"output":" task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:04.565 [info] Periodic from module Elixir.Block.Blocks.S"},{"event":"cmd_output","timestamp":1607098324,"output":"TMHandler.StoppingState with name Elixir.Block.Blocks.STMHandler.StoppingState :: period: 100 ms, me"},{"event":"cmd_output","timestamp":1607098324,"output":"tric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-StoppingState\"]}, recurring args: %{al"},{"event":"cmd_output","timestamp":1607098324,"output":"lowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, "},{"event":"cmd_output","timestamp":1607098324,"output":"observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_r"},{"event":"cmd_output","timestamp":1607098324,"output":"equest, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_su"},{"event":"cmd_output","timestamp":1607098324,"output":"pervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:04.566 [info] Periodic from module Elixir.Block.Tasks.STMHandler"},{"event":"cmd_output","timestamp":1607098324,"output":".PendingState with name Elixir.Block.Tasks.STMHandler.PendingState :: period: 100 ms, metric_name: {"},{"event":"cmd_output","timestamp":1607098324,"output":"\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingState\"]}, recurring args: %{allowed_states: "},{"event":"cmd_output","timestamp":1607098324,"output":"[\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Tasks.Model.Tasks, observed_state: \"p"},{"event":"cmd_output","timestamp":1607098324,"output":"ending\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at"},{"event":"cmd_output","timestamp":1607098324,"output":", :state, :recovery_count, :block_id, :build_request_id], schema: Block.Tasks.Model.Tasks, task_supe"},{"event":"cmd_output","timestamp":1607098324,"output":"rvisor: :skip}\n\u001b[0m\u001b[22m\n16:12:04.566 [info] Periodic from module Elixir.Block.Tasks.STMHandler.R"},{"event":"cmd_output","timestamp":1607098324,"output":"unningState with name Elixir.Block.Tasks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"P"},{"event":"cmd_output","timestamp":1607098324,"output":"pl.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\""},{"event":"cmd_output","timestamp":1607098324,"output":"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observe"},{"event":"cmd_output","timestamp":1607098324,"output":"d_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, "},{"event":"cmd_output","timestamp":1607098324,"output":":updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: "},{"event":"cmd_output","timestamp":1607098324,"output":":skip}\n\u001b[0m\u001b[22m\n16:12:04.566 [info] Periodic from module Elixir.Block.Tasks.STMHandler.StoppingS"},{"event":"cmd_output","timestamp":1607098324,"output":"tate with name Elixir.Block.Tasks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beh"},{"event":"cmd_output","timestamp":1607098324,"output":"older-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopp"},{"event":"cmd_output","timestamp":1607098324,"output":"ing\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"stoppi"},{"event":"cmd_output","timestamp":1607098324,"output":"ng\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :s"},{"event":"cmd_output","timestamp":1607098324,"output":"tate, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098324,"output":"2m\n16:12:04.687 [info] ppl_id: a4dcfce5-4b1f-4e7f-b605-ae1004e1a4b0, type: PplRequests, event: per"},{"event":"cmd_output","timestamp":1607098324,"output":"sisted source_args for pipeline: a4dcfce5-4b1f-4e7f-b605-ae1004e1a4b0, origin: Elixir.Ppl.PplRequest"},{"event":"cmd_output","timestamp":1607098324,"output":"s.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:04.691 [info] ppl_id: a4dcfce5-"},{"event":"cmd_output","timestamp":1607098324,"output":"4b1f-4e7f-b605-ae1004e1a4b0, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_co"},{"event":"cmd_output","timestamp":1607098324,"output":"unt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:04.715 [info] pp"},{"event":"cmd_output","timestamp":1607098324,"output":"l_id: a4dcfce5-4b1f-4e7f-b605-ae1004e1a4b0, type: PplSubInits, state: regular_init, event: exit_sche"},{"event":"cmd_output","timestamp":1607098324,"output":"duling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098324,"output":"2:04.742 [info] ppl_id: a4dcfce5-4b1f-4e7f-b605-ae1004e1a4b0, type: PplRequests, event: persisted d"},{"event":"cmd_output","timestamp":1607098324,"output":"efinition for request with request_token: 3ae974a1-cbe9-4dd9-a3ef-aa53b9fccce6, origin: Elixir.Ppl.P"},{"event":"cmd_output","timestamp":1607098324,"output":"plRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:04.747 [info] Queu"},{"event":"cmd_output","timestamp":1607098324,"output":"e persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inse"},{"event":"cmd_output","timestamp":1607098324,"output":"rted_at: ~N[2020-12-04 16:12:04.745188], name: \"master-.semaphore/semaphore.yml\", organization_id: \""},{"event":"cmd_output","timestamp":1607098324,"output":"c169bcc9-1ce8-4b57-897a-808d928239f9\", project_id: \"123\", queue_id: \"9d2eb7e9-0bf9-48ef-b3f9-3c18705"},{"event":"cmd_output","timestamp":1607098324,"output":"1aff6\", scope: \"project\", updated_at: ~N[2020-12-04 16:12:04.745199], user_generated: false}}\n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098324,"output":"[22m\n16:12:04.752 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitStat"},{"event":"cmd_output","timestamp":1607098324,"output":"e.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:04.752 [info] ppl_id: a4dcfce5-4b1f-4e7f-b605-ae1004e1a4b0, t"},{"event":"cmd_output","timestamp":1607098324,"output":"ype: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098324,"output":"ir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:04.763 [info] pp"},{"event":"cmd_output","timestamp":1607098324,"output":"l_id: a4dcfce5-4b1f-4e7f-b605-ae1004e1a4b0, type: PplSubInits, state: done, result: passed, event: e"},{"event":"cmd_output","timestamp":1607098324,"output":"xit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098324,"output":"2m\n16:12:04.770 [info] ppl_id: a4dcfce5-4b1f-4e7f-b605-ae1004e1a4b0, type: PplBlocks, block_index:"},{"event":"cmd_output","timestamp":1607098324,"output":" 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_st"},{"event":"cmd_output","timestamp":1607098324,"output":"ate_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:04.774 [info] ppl_id: a4dcfce5-4b1f-4e7f-b605-ae1004e1a4b0, t"},{"event":"cmd_output","timestamp":1607098324,"output":"ype: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl"},{"event":"cmd_output","timestamp":1607098324,"output":".log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:04.790 [info] ppl_id: a4dcfce5-4b1f-4e7f-b605-ae1004e1"},{"event":"cmd_output","timestamp":1607098324,"output":"a4b0, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.S"},{"event":"cmd_output","timestamp":1607098324,"output":"TM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:04.804 [info] ppl_id: a4dcfce5-4b1f-4e7f-b605-a"},{"event":"cmd_output","timestamp":1607098324,"output":"e1004e1a4b0, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098324,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:04.805 [info] ppl_id: d07db697-96b9-40db"},{"event":"cmd_output","timestamp":1607098324,"output":"-8370-c7e39f6377a8, type: PplRequests, event: persisted source_args for pipeline: d07db697-96b9-40db"},{"event":"cmd_output","timestamp":1607098324,"output":"-8370-c7e39f6377a8, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n"},{"event":"cmd_output","timestamp":1607098324,"output":"\u001b[0m\u001b[22m\n16:12:04.809 [info] ppl_id: d07db697-96b9-40db-8370-c7e39f6377a8, type: PplSubInits, sta"},{"event":"cmd_output","timestamp":1607098324,"output":"te: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_ch"},{"event":"cmd_output","timestamp":1607098324,"output":"ange/1(L90), \n\u001b[0m\u001b[22m\n16:12:04.816 [info] PplBlocks WaitingState STM is scheduling block 0 from"},{"event":"cmd_output","timestamp":1607098324,"output":" pipeline: \"a4dcfce5-4b1f-4e7f-b605-ae1004e1a4b0\"\n\u001b[0m\u001b[22m\n16:12:04.827 [info] block_id: 1c70911"},{"event":"cmd_output","timestamp":1607098324,"output":"a-735c-4d46-bbc6-f995091e2c7d, type: BlockRequests, event: persisted block run request from ppl a4dc"},{"event":"cmd_output","timestamp":1607098324,"output":"fce5-4b1f-4e7f-b605-ae1004e1a4b0 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequests"},{"event":"cmd_output","timestamp":1607098324,"output":"Queries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:04.830 [info] block_id: 1c70911a-735c-4d46-bbc6"},{"event":"cmd_output","timestamp":1607098324,"output":"-f995091e2c7d, type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098324,"output":"ixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:04.835 [info] Block 0 of pi"},{"event":"cmd_output","timestamp":1607098324,"output":"peline with id: a4dcfce5-4b1f-4e7f-b605-ae1004e1a4b0 scheduled in block service with id: : \"1c70911a"},{"event":"cmd_output","timestamp":1607098324,"output":"-735c-4d46-bbc6-f995091e2c7d\"\n\u001b[0m\u001b[22m\n16:12:04.839 [info] block_id: 1c70911a-735c-4d46-bbc6-f99"},{"event":"cmd_output","timestamp":1607098324,"output":"5091e2c7d, type: BlockRequests, event: persisted build and sub_ppl details for block_request: 1c7091"},{"event":"cmd_output","timestamp":1607098324,"output":"1a-735c-4d46-bbc6-f995091e2c7d, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert"},{"event":"cmd_output","timestamp":1607098324,"output":"_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:04.840 [info] ppl_id: a4dcfce5-4b1f-4e7f-b605-ae1004e1a4b0, type:"},{"event":"cmd_output","timestamp":1607098324,"output":" PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098324,"output":"r.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:04.844 [info] block_id: 1c70911a-735c"},{"event":"cmd_output","timestamp":1607098324,"output":"-4d46-bbc6-f995091e2c7d, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098324,"output":"xir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:04.846 [info] ppl"},{"event":"cmd_output","timestamp":1607098324,"output":"_id: d07db697-96b9-40db-8370-c7e39f6377a8, type: PplSubInits, state: regular_init, event: exit_sched"},{"event":"cmd_output","timestamp":1607098324,"output":"uling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12"},{"event":"cmd_output","timestamp":1607098324,"output":":04.848 [info] block_id: 1c70911a-735c-4d46-bbc6-f995091e2c7d, type: Blocks, state: running, event:"},{"event":"cmd_output","timestamp":1607098324,"output":" exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098324,"output":"[22m\n16:12:04.867 [info] block_id: 1c70911a-735c-4d46-bbc6-f995091e2c7d, type: Tasks, state: runni"},{"event":"cmd_output","timestamp":1607098324,"output":"ng, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90"},{"event":"cmd_output","timestamp":1607098324,"output":"), \n\u001b[0m\u001b[22m\n16:12:04.882 [info] ppl_id: d07db697-96b9-40db-8370-c7e39f6377a8, type: PplRequests"},{"event":"cmd_output","timestamp":1607098324,"output":", event: persisted definition for request with request_token: 4e3c1053-1a21-40f0-864e-712cd94098a4, "},{"event":"cmd_output","timestamp":1607098324,"output":"origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12"},{"event":"cmd_output","timestamp":1607098324,"output":":04.895 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1"},{"event":"cmd_output","timestamp":1607098324,"output":"(L105), \n\u001b[0m\u001b[22m\n16:12:04.895 [info] ppl_id: d07db697-96b9-40db-8370-c7e39f6377a8, type: PplBlo"},{"event":"cmd_output","timestamp":1607098324,"output":"cks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplS"},{"event":"cmd_output","timestamp":1607098324,"output":"ubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:04.899 [info] ppl_id: d07db"},{"event":"cmd_output","timestamp":1607098324,"output":"697-96b9-40db-8370-c7e39f6377a8, type: PplSubInits, state: done, result: passed, event: exit_schedul"},{"event":"cmd_output","timestamp":1607098324,"output":"ing, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:0"},{"event":"cmd_output","timestamp":1607098324,"output":"4.910 [info] block_id: 1c70911a-735c-4d46-bbc6-f995091e2c7d, type: Tasks, state: done, event: exit_"},{"event":"cmd_output","timestamp":1607098324,"output":"scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098324,"output":"16:12:04.921 [info] ppl_id: d07db697-96b9-40db-8370-c7e39f6377a8, type: PplBlocks, block_index: 0, "},{"event":"cmd_output","timestamp":1607098324,"output":"state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_"},{"event":"cmd_output","timestamp":1607098324,"output":"change/1(L90), \n\u001b[0m\u001b[22m\n16:12:04.923 [info] block_id: 1c70911a-735c-4d46-bbc6-f995091e2c7d, typ"},{"event":"cmd_output","timestamp":1607098324,"output":"e: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.lo"},{"event":"cmd_output","timestamp":1607098324,"output":"g_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:04.923 [info] ppl_id: 706d2d37-096c-43b6-b3cd-bc4c1c6f402"},{"event":"cmd_output","timestamp":1607098324,"output":"f, type: PplRequests, event: persisted source_args for pipeline: 706d2d37-096c-43b6-b3cd-bc4c1c6f402"},{"event":"cmd_output","timestamp":1607098324,"output":"f, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:"},{"event":"cmd_output","timestamp":1607098324,"output":"04.923 [info] ppl_id: d07db697-96b9-40db-8370-c7e39f6377a8, type: Ppls, state: pending, event: exit"},{"event":"cmd_output","timestamp":1607098324,"output":"_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098324,"output":"\n16:12:04.927 [info] ppl_id: 706d2d37-096c-43b6-b3cd-bc4c1c6f402f, type: PplSubInits, state: fetchi"},{"event":"cmd_output","timestamp":1607098324,"output":"ng, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90"},{"event":"cmd_output","timestamp":1607098324,"output":"), \n\u001b[0m\u001b[22m\n16:12:04.940 [info] ppl_id: d07db697-96b9-40db-8370-c7e39f6377a8, type: Ppls, state"},{"event":"cmd_output","timestamp":1607098324,"output":": queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chang"},{"event":"cmd_output","timestamp":1607098324,"output":"e/1(L90), \n\u001b[0m\u001b[22m\n16:12:04.945 [info] ppl_id: a4dcfce5-4b1f-4e7f-b605-ae1004e1a4b0, block_id: "},{"event":"cmd_output","timestamp":1607098324,"output":"1c70911a-735c-4d46-bbc6-f995091e2c7d, type: PplBlocks, block_index: 0, state: done, result: passed, "},{"event":"cmd_output","timestamp":1607098324,"output":"event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \r"},{"event":"cmd_output","timestamp":1607098324,"output":"\n\u001b[0m\u001b[22m\n16:12:04.969 [info] ppl_id: a4dcfce5-4b1f-4e7f-b605-ae1004e1a4b0, type: Ppls, state: do"},{"event":"cmd_output","timestamp":1607098324,"output":"ne, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_st"},{"event":"cmd_output","timestamp":1607098324,"output":"ate_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:04.975 [info] ppl_id: 706d2d37-096c-43b6-b3cd-bc4c1c6f402f, t"},{"event":"cmd_output","timestamp":1607098324,"output":"ype: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loo"},{"event":"cmd_output","timestamp":1607098325,"output":"per.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:05.012 [info] ppl_id: 706d2d37-096c-43b6-b"},{"event":"cmd_output","timestamp":1607098325,"output":"3cd-bc4c1c6f402f, type: PplRequests, event: persisted definition for request with request_token: 3b8"},{"event":"cmd_output","timestamp":1607098325,"output":"95083-2394-4673-a2fb-7deb36afa666, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_de"},{"event":"cmd_output","timestamp":1607098325,"output":"finition/3(L76), \n\u001b[0m\u001b[22m\n16:12:05.023 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{_"},{"event":"cmd_output","timestamp":1607098325,"output":"_meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:12:05.016862], name"},{"event":"cmd_output","timestamp":1607098325,"output":": \"master-.semaphore/semaphore.yml\", organization_id: \"bb36fa3f-af59-4fe2-a9ce-6aacb08c1ff2\", projec"},{"event":"cmd_output","timestamp":1607098325,"output":"t_id: \"456\", queue_id: \"ecf0cb51-9897-44c5-a3e7-50255b5a7346\", scope: \"project\", updated_at: ~N[2020"},{"event":"cmd_output","timestamp":1607098325,"output":"-12-04 16:12:05.016874], user_generated: false}}\n\u001b[0m\u001b[22m\n16:12:05.031 [info] event: created, or"},{"event":"cmd_output","timestamp":1607098325,"output":"igin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:05.031 "},{"event":"cmd_output","timestamp":1607098325,"output":"[info] ppl_id: 706d2d37-096c-43b6-b3cd-bc4c1c6f402f, type: PplBlocks, block_index: 0, state: initia"},{"event":"cmd_output","timestamp":1607098325,"output":"lizing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitStat"},{"event":"cmd_output","timestamp":1607098325,"output":"e.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:05.038 [info] ppl_id: 706d2d37-096c-43b6-b3cd-bc4c1c6f402f, t"},{"event":"cmd_output","timestamp":1607098325,"output":"ype: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098325,"output":"ixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:05.038 [info] ppl_id: d07db697-96b"},{"event":"cmd_output","timestamp":1607098325,"output":"9-40db-8370-c7e39f6377a8, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098325,"output":"gin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:05.050 [info] PplBlocks Wai"},{"event":"cmd_output","timestamp":1607098325,"output":"tingState STM is scheduling block 0 from pipeline: \"d07db697-96b9-40db-8370-c7e39f6377a8\"\n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098325,"output":"\n16:12:05.051 [info] ppl_id: b05c8b11-ba45-4ff9-946b-0c1b9a1b7071, type: PplRequests, event: persi"},{"event":"cmd_output","timestamp":1607098325,"output":"sted source_args for pipeline: b05c8b11-ba45-4ff9-946b-0c1b9a1b7071, origin: Elixir.Ppl.PplRequests."},{"event":"cmd_output","timestamp":1607098325,"output":"Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:05.052 [info] ppl_id: 706d2d37-09"},{"event":"cmd_output","timestamp":1607098325,"output":"6c-43b6-b3cd-bc4c1c6f402f, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, "},{"event":"cmd_output","timestamp":1607098325,"output":"recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:05.056"},{"event":"cmd_output","timestamp":1607098325,"output":" [info] ppl_id: b05c8b11-ba45-4ff9-946b-0c1b9a1b7071, type: PplSubInits, state: fetching, event: ex"},{"event":"cmd_output","timestamp":1607098325,"output":"it_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098325,"output":"m\n16:12:05.060 [info] block_id: 926ce34b-6184-46f2-9b4a-341f74019ae5, type: BlockRequests, event: "},{"event":"cmd_output","timestamp":1607098325,"output":"persisted block run request from ppl d07db697-96b9-40db-8370-c7e39f6377a8 for block 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098325,"output":"r.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:05.062 "},{"event":"cmd_output","timestamp":1607098325,"output":"[info] ppl_id: 706d2d37-096c-43b6-b3cd-bc4c1c6f402f, type: Ppls, state: pending, event: exit_schedu"},{"event":"cmd_output","timestamp":1607098325,"output":"ling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:"},{"event":"cmd_output","timestamp":1607098325,"output":"05.066 [info] block_id: 926ce34b-6184-46f2-9b4a-341f74019ae5, type: Blocks, state: initializing, ev"},{"event":"cmd_output","timestamp":1607098325,"output":"ent: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43),"},{"event":"cmd_output","timestamp":1607098325,"output":" \n\u001b[0m\u001b[22m\n16:12:05.070 [info] Block 0 of pipeline with id: d07db697-96b9-40db-8370-c7e39f6377a8"},{"event":"cmd_output","timestamp":1607098325,"output":" scheduled in block service with id: : \"926ce34b-6184-46f2-9b4a-341f74019ae5\"\n\u001b[0m\u001b[22m\n16:12:05.0"},{"event":"cmd_output","timestamp":1607098325,"output":"73 [info] ppl_id: d07db697-96b9-40db-8370-c7e39f6377a8, type: PplBlocks, block_index: 0, state: run"},{"event":"cmd_output","timestamp":1607098325,"output":"ning, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098325,"output":"90), \n\u001b[0m\u001b[22m\n16:12:05.078 [info] ppl_id: 706d2d37-096c-43b6-b3cd-bc4c1c6f402f, type: Ppls, sta"},{"event":"cmd_output","timestamp":1607098325,"output":"te: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_cha"},{"event":"cmd_output","timestamp":1607098325,"output":"nge/1(L90), \n\u001b[0m\u001b[22m\n16:12:05.085 [info] block_id: 926ce34b-6184-46f2-9b4a-341f74019ae5, type: "},{"event":"cmd_output","timestamp":1607098325,"output":"BlockRequests, event: persisted build and sub_ppl details for block_request: 926ce34b-6184-46f2-9b4a"},{"event":"cmd_output","timestamp":1607098325,"output":"-341f74019ae5, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n"},{"event":"cmd_output","timestamp":1607098325,"output":"\u001b[0m\u001b[22m\n16:12:05.089 [info] block_id: 926ce34b-6184-46f2-9b4a-341f74019ae5, type: Tasks, state: "},{"event":"cmd_output","timestamp":1607098325,"output":"pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState"},{"event":"cmd_output","timestamp":1607098325,"output":".all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:05.095 [info] ppl_id: 706d2d37-096c-43b6-b3cd-bc4c1c6f402f, ty"},{"event":"cmd_output","timestamp":1607098325,"output":"pe: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl."},{"event":"cmd_output","timestamp":1607098325,"output":"log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:05.096 [info] block_id: 926ce34b-6184-46f2-9b4a-341f740"},{"event":"cmd_output","timestamp":1607098325,"output":"19ae5, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loope"},{"event":"cmd_output","timestamp":1607098325,"output":"r.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:05.105 [info] ppl_id: b05c8b11-ba45-4ff9-946"},{"event":"cmd_output","timestamp":1607098325,"output":"b-0c1b9a1b7071, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098325,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:05.107 [info] PplBlocks W"},{"event":"cmd_output","timestamp":1607098325,"output":"aitingState STM is scheduling block 0 from pipeline: \"706d2d37-096c-43b6-b3cd-bc4c1c6f402f\"\n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098325,"output":"2m\n16:12:05.125 [info] block_id: 5085d705-a926-4d97-b514-5199500de24b, type: BlockRequests, event:"},{"event":"cmd_output","timestamp":1607098325,"output":" persisted block run request from ppl 706d2d37-096c-43b6-b3cd-bc4c1c6f402f for block 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098325,"output":"ir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:05.130"},{"event":"cmd_output","timestamp":1607098325,"output":" [info] block_id: 926ce34b-6184-46f2-9b4a-341f74019ae5, type: Tasks, state: running, event: exit_sc"},{"event":"cmd_output","timestamp":1607098325,"output":"heduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098325,"output":":12:05.132 [info] block_id: 5085d705-a926-4d97-b514-5199500de24b, type: Blocks, state: initializing"},{"event":"cmd_output","timestamp":1607098325,"output":", event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L"},{"event":"cmd_output","timestamp":1607098325,"output":"43), \n\u001b[0m\u001b[22m\n16:12:05.140 [info] Block 0 of pipeline with id: 706d2d37-096c-43b6-b3cd-bc4c1c6f"},{"event":"cmd_output","timestamp":1607098325,"output":"402f scheduled in block service with id: : \"5085d705-a926-4d97-b514-5199500de24b\"\n\u001b[0m\u001b[22m\n16:12:"},{"event":"cmd_output","timestamp":1607098325,"output":"05.147 [info] ppl_id: 706d2d37-096c-43b6-b3cd-bc4c1c6f402f, type: PplBlocks, block_index: 0, state:"},{"event":"cmd_output","timestamp":1607098325,"output":" running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change"},{"event":"cmd_output","timestamp":1607098325,"output":"/1(L90), \n\u001b[0m\u001b[22m\n16:12:05.159 [info] block_id: 5085d705-a926-4d97-b514-5199500de24b, type: Blo"},{"event":"cmd_output","timestamp":1607098325,"output":"ckRequests, event: persisted build and sub_ppl details for block_request: 5085d705-a926-4d97-b514-51"},{"event":"cmd_output","timestamp":1607098325,"output":"99500de24b, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098325,"output":"m\u001b[22m\n16:12:05.159 [info] block_id: 926ce34b-6184-46f2-9b4a-341f74019ae5, type: Tasks, state: don"},{"event":"cmd_output","timestamp":1607098325,"output":"e, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90)"},{"event":"cmd_output","timestamp":1607098325,"output":", \n\u001b[0m\u001b[22m\n16:12:05.167 [info] block_id: 5085d705-a926-4d97-b514-5199500de24b, type: Tasks, sta"},{"event":"cmd_output","timestamp":1607098325,"output":"te: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingS"},{"event":"cmd_output","timestamp":1607098325,"output":"tate.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:05.169 [info] block_id: 5085d705-a926-4d97-b514-5199500de2"},{"event":"cmd_output","timestamp":1607098325,"output":"4b, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.S"},{"event":"cmd_output","timestamp":1607098325,"output":"TM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:05.172 [info] ppl_id: b05c8b11-ba45-4ff9-946b-0"},{"event":"cmd_output","timestamp":1607098325,"output":"c1b9a1b7071, type: PplRequests, event: persisted definition for request with request_token: 6b33668e"},{"event":"cmd_output","timestamp":1607098325,"output":"-836c-4824-8f0d-92da28aecf35, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definit"},{"event":"cmd_output","timestamp":1607098325,"output":"ion/3(L76), \n\u001b[0m\u001b[22m\n16:12:05.180 [info] ppl_id: c6c7bf89-bdf9-433b-b8a4-4357bd9f7c1a, type: Pp"},{"event":"cmd_output","timestamp":1607098325,"output":"lRequests, event: persisted source_args for pipeline: c6c7bf89-bdf9-433b-b8a4-4357bd9f7c1a, origin: "},{"event":"cmd_output","timestamp":1607098325,"output":"Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:05.180 [inf"},{"event":"cmd_output","timestamp":1607098325,"output":"o] block_id: 926ce34b-6184-46f2-9b4a-341f74019ae5, type: Blocks, state: done, event: exit_schedulin"},{"event":"cmd_output","timestamp":1607098325,"output":"g, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:05."},{"event":"cmd_output","timestamp":1607098325,"output":"189 [info] ppl_id: c6c7bf89-bdf9-433b-b8a4-4357bd9f7c1a, type: PplSubInits, state: fetching, event:"},{"event":"cmd_output","timestamp":1607098325,"output":" exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098325,"output":"[22m\n16:12:05.196 [info] ppl_id: d07db697-96b9-40db-8370-c7e39f6377a8, block_id: 926ce34b-6184-46f"},{"event":"cmd_output","timestamp":1607098325,"output":"2-9b4a-341f74019ae5, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_sched"},{"event":"cmd_output","timestamp":1607098325,"output":"uling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12"},{"event":"cmd_output","timestamp":1607098325,"output":":05.203 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1"},{"event":"cmd_output","timestamp":1607098325,"output":"(L105), \n\u001b[0m\u001b[22m\n16:12:05.203 [info] ppl_id: b05c8b11-ba45-4ff9-946b-0c1b9a1b7071, type: PplBlo"},{"event":"cmd_output","timestamp":1607098325,"output":"cks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplS"},{"event":"cmd_output","timestamp":1607098325,"output":"ubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:05.204 [info] block_id: 508"},{"event":"cmd_output","timestamp":1607098325,"output":"5d705-a926-4d97-b514-5199500de24b, type: Tasks, state: running, event: exit_scheduling, recovery_cou"},{"event":"cmd_output","timestamp":1607098325,"output":"nt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:05.207 [info] ppl"},{"event":"cmd_output","timestamp":1607098325,"output":"_id: b05c8b11-ba45-4ff9-946b-0c1b9a1b7071, type: PplSubInits, state: done, result: passed, event: ex"},{"event":"cmd_output","timestamp":1607098325,"output":"it_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098325,"output":"m\n16:12:05.219 [info] ppl_id: b05c8b11-ba45-4ff9-946b-0c1b9a1b7071, type: PplBlocks, block_index: "},{"event":"cmd_output","timestamp":1607098325,"output":"0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_sta"},{"event":"cmd_output","timestamp":1607098325,"output":"te_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:05.231 [info] ppl_id: b05c8b11-ba45-4ff9-946b-0c1b9a1b7071, ty"},{"event":"cmd_output","timestamp":1607098325,"output":"pe: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl."},{"event":"cmd_output","timestamp":1607098325,"output":"log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:05.233 [info] ppl_id: d07db697-96b9-40db-8370-c7e39f637"},{"event":"cmd_output","timestamp":1607098325,"output":"7a8, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098325,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:05.243 [info] ppl_id: b05c8b11-ba45"},{"event":"cmd_output","timestamp":1607098325,"output":"-4ff9-946b-0c1b9a1b7071, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098325,"output":"in: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:05.252 [info] ppl_id: c6c7bf"},{"event":"cmd_output","timestamp":1607098325,"output":"89-bdf9-433b-b8a4-4357bd9f7c1a, type: PplSubInits, state: regular_init, event: exit_scheduling, reco"},{"event":"cmd_output","timestamp":1607098325,"output":"very_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:05.278 [in"},{"event":"cmd_output","timestamp":1607098325,"output":"fo] block_id: 5085d705-a926-4d97-b514-5199500de24b, type: Tasks, state: done, event: exit_schedulin"},{"event":"cmd_output","timestamp":1607098325,"output":"g, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:05."},{"event":"cmd_output","timestamp":1607098325,"output":"286 [info] block_id: 5085d705-a926-4d97-b514-5199500de24b, type: Blocks, state: done, event: exit_s"},{"event":"cmd_output","timestamp":1607098325,"output":"cheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098325,"output":"6:12:05.293 [info] ppl_id: c6c7bf89-bdf9-433b-b8a4-4357bd9f7c1a, type: PplRequests, event: persiste"},{"event":"cmd_output","timestamp":1607098325,"output":"d definition for request with request_token: 5a00b601-601f-425e-b169-8955baf9c806, origin: Elixir.Pp"},{"event":"cmd_output","timestamp":1607098325,"output":"l.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:05.302 [info] Q"},{"event":"cmd_output","timestamp":1607098325,"output":"ueue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, i"},{"event":"cmd_output","timestamp":1607098325,"output":"nserted_at: ~N[2020-12-04 16:12:05.297107], name: \"dev-.semaphore/semaphore.yml\", organization_id: \""},{"event":"cmd_output","timestamp":1607098325,"output":"b578ff0f-3758-448e-a619-1242ce45ec25\", project_id: \"123\", queue_id: \"108138c2-b718-400f-bfe7-92b155a"},{"event":"cmd_output","timestamp":1607098325,"output":"3315b\", scope: \"project\", updated_at: ~N[2020-12-04 16:12:05.297119], user_generated: false}}\n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098325,"output":"[22m\n16:12:05.303 [info] ppl_id: 706d2d37-096c-43b6-b3cd-bc4c1c6f402f, block_id: 5085d705-a926-4d9"},{"event":"cmd_output","timestamp":1607098325,"output":"7-b514-5199500de24b, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_sched"},{"event":"cmd_output","timestamp":1607098325,"output":"uling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12"},{"event":"cmd_output","timestamp":1607098325,"output":":05.307 [info] ppl_id: 0531d42a-3eee-431d-aae5-34c9254ca946, type: PplRequests, event: persisted so"},{"event":"cmd_output","timestamp":1607098325,"output":"urce_args for pipeline: 0531d42a-3eee-431d-aae5-34c9254ca946, origin: Elixir.Ppl.PplRequests.Model.P"},{"event":"cmd_output","timestamp":1607098325,"output":"plRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:05.308 [info] event: created, origin: El"},{"event":"cmd_output","timestamp":1607098325,"output":"ixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:05.308 [info] "},{"event":"cmd_output","timestamp":1607098325,"output":"ppl_id: c6c7bf89-bdf9-433b-b8a4-4357bd9f7c1a, type: PplBlocks, block_index: 0, state: initializing, "},{"event":"cmd_output","timestamp":1607098325,"output":"event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok"},{"event":"cmd_output","timestamp":1607098325,"output":"?/1(L105), \n\u001b[0m\u001b[22m\n16:12:05.311 [info] ppl_id: c6c7bf89-bdf9-433b-b8a4-4357bd9f7c1a, type: Ppl"},{"event":"cmd_output","timestamp":1607098325,"output":"SubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loo"},{"event":"cmd_output","timestamp":1607098325,"output":"per.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:05.317 [info] ppl_id: 0531d42a-3eee-431d-a"},{"event":"cmd_output","timestamp":1607098325,"output":"ae5-34c9254ca946, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098325,"output":"gin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:05.331 [info] ppl_id: c6c7b"},{"event":"cmd_output","timestamp":1607098325,"output":"f89-bdf9-433b-b8a4-4357bd9f7c1a, type: Ppls, state: pending, event: exit_scheduling, recovery_count:"},{"event":"cmd_output","timestamp":1607098325,"output":" 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:05.332 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098325,"output":": c6c7bf89-bdf9-433b-b8a4-4357bd9f7c1a, type: PplBlocks, block_index: 0, state: waiting, event: exit"},{"event":"cmd_output","timestamp":1607098325,"output":"_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098325,"output":"\n16:12:05.336 [info] ppl_id: 706d2d37-096c-43b6-b3cd-bc4c1c6f402f, type: Ppls, state: done, result:"},{"event":"cmd_output","timestamp":1607098325,"output":" passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/"},{"event":"cmd_output","timestamp":1607098325,"output":"1(L90), \n\u001b[0m\u001b[22m\n16:12:05.342 [info] ppl_id: c6c7bf89-bdf9-433b-b8a4-4357bd9f7c1a, type: Ppls, "},{"event":"cmd_output","timestamp":1607098325,"output":"state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_"},{"event":"cmd_output","timestamp":1607098325,"output":"change/1(L90), \n\u001b[0m\u001b[22m\n16:12:05.353 [info] ppl_id: c6c7bf89-bdf9-433b-b8a4-4357bd9f7c1a, type:"},{"event":"cmd_output","timestamp":1607098325,"output":" Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098325,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:05.360 [info] PplBlocks WaitingState STM is scheduling blo"},{"event":"cmd_output","timestamp":1607098325,"output":"ck 0 from pipeline: \"c6c7bf89-bdf9-433b-b8a4-4357bd9f7c1a\"\n\u001b[0m\u001b[22m\n16:12:05.362 [info] ppl_id: "},{"event":"cmd_output","timestamp":1607098325,"output":"0531d42a-3eee-431d-aae5-34c9254ca946, type: PplSubInits, state: regular_init, event: exit_scheduling"},{"event":"cmd_output","timestamp":1607098325,"output":", recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:05.3"},{"event":"cmd_output","timestamp":1607098325,"output":"71 [info] block_id: a7c2bf7a-3767-48f8-920d-cdb38adbb8c7, type: BlockRequests, event: persisted blo"},{"event":"cmd_output","timestamp":1607098325,"output":"ck run request from ppl c6c7bf89-bdf9-433b-b8a4-4357bd9f7c1a for block 0, origin: Elixir.Block.Block"},{"event":"cmd_output","timestamp":1607098325,"output":"Requests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:05.373 [info] block"},{"event":"cmd_output","timestamp":1607098325,"output":"_id: a7c2bf7a-3767-48f8-920d-cdb38adbb8c7, type: Blocks, state: initializing, event: initializing, r"},{"event":"cmd_output","timestamp":1607098325,"output":"ecovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:"},{"event":"cmd_output","timestamp":1607098325,"output":"05.376 [info] Block 0 of pipeline with id: c6c7bf89-bdf9-433b-b8a4-4357bd9f7c1a scheduled in block "},{"event":"cmd_output","timestamp":1607098325,"output":"service with id: : \"a7c2bf7a-3767-48f8-920d-cdb38adbb8c7\"\n\u001b[0m\u001b[22m\n16:12:05.381 [info] ppl_id: b"},{"event":"cmd_output","timestamp":1607098325,"output":"05c8b11-ba45-4ff9-946b-0c1b9a1b7071, type: Ppls, state: running, event: exit_scheduling, recovery_co"},{"event":"cmd_output","timestamp":1607098325,"output":"unt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:05.384 [info] bl"},{"event":"cmd_output","timestamp":1607098325,"output":"ock_id: a7c2bf7a-3767-48f8-920d-cdb38adbb8c7, type: BlockRequests, event: persisted build and sub_pp"},{"event":"cmd_output","timestamp":1607098325,"output":"l details for block_request: a7c2bf7a-3767-48f8-920d-cdb38adbb8c7, origin: Elixir.Block.BlockRequest"},{"event":"cmd_output","timestamp":1607098325,"output":"s.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:05.387 [info] ppl_id: c6c7bf89"},{"event":"cmd_output","timestamp":1607098325,"output":"-bdf9-433b-b8a4-4357bd9f7c1a, type: PplBlocks, block_index: 0, state: running, event: exit_schedulin"},{"event":"cmd_output","timestamp":1607098325,"output":"g, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:05."},{"event":"cmd_output","timestamp":1607098325,"output":"396 [info] block_id: a7c2bf7a-3767-48f8-920d-cdb38adbb8c7, type: Tasks, state: pending, event: crea"},{"event":"cmd_output","timestamp":1607098325,"output":"ted, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n"},{"event":"cmd_output","timestamp":1607098325,"output":"\u001b[0m\u001b[22m\n16:12:05.397 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"b05"},{"event":"cmd_output","timestamp":1607098325,"output":"c8b11-ba45-4ff9-946b-0c1b9a1b7071\"\n\u001b[0m\u001b[22m\n16:12:05.401 [info] block_id: a7c2bf7a-3767-48f8-920"},{"event":"cmd_output","timestamp":1607098325,"output":"d-cdb38adbb8c7, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098325,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:05.405 [info] ppl_id: 0531d42a-3eee"},{"event":"cmd_output","timestamp":1607098325,"output":"-431d-aae5-34c9254ca946, type: PplRequests, event: persisted definition for request with request_tok"},{"event":"cmd_output","timestamp":1607098325,"output":"en: 3d42c780-d0a0-424c-9885-243c37bd5b65, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.in"},{"event":"cmd_output","timestamp":1607098325,"output":"sert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:05.409 [info] block_id: ae0d430e-4f09-4896-a3eb-e84f1f62"},{"event":"cmd_output","timestamp":1607098325,"output":"5ce5, type: BlockRequests, event: persisted block run request from ppl b05c8b11-ba45-4ff9-946b-0c1b9"},{"event":"cmd_output","timestamp":1607098325,"output":"a1b7071 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/"},{"event":"cmd_output","timestamp":1607098325,"output":"4(L35), \n\u001b[0m\u001b[22m\n16:12:05.412 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler."},{"event":"cmd_output","timestamp":1607098325,"output":"RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:05.412 [info] ppl_id: 0531d42a-3eee-431d-aae5-"},{"event":"cmd_output","timestamp":1607098325,"output":"34c9254ca946, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: "},{"event":"cmd_output","timestamp":1607098325,"output":"0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:05"},{"event":"cmd_output","timestamp":1607098325,"output":".414 [info] ppl_id: 0531d42a-3eee-431d-aae5-34c9254ca946, type: PplSubInits, state: done, result: p"},{"event":"cmd_output","timestamp":1607098325,"output":"assed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1("},{"event":"cmd_output","timestamp":1607098325,"output":"L90), \n\u001b[0m\u001b[22m\n16:12:05.418 [info] block_id: ae0d430e-4f09-4896-a3eb-e84f1f625ce5, type: Blocks"},{"event":"cmd_output","timestamp":1607098325,"output":", state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.Blo"},{"event":"cmd_output","timestamp":1607098325,"output":"cksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:05.422 [info] Block 0 of pipeline with id: b05c8b11-ba"},{"event":"cmd_output","timestamp":1607098325,"output":"45-4ff9-946b-0c1b9a1b7071 scheduled in block service with id: : \"ae0d430e-4f09-4896-a3eb-e84f1f625ce"},{"event":"cmd_output","timestamp":1607098325,"output":"5\"\n\u001b[0m\u001b[22m\n16:12:05.426 [info] ppl_id: b05c8b11-ba45-4ff9-946b-0c1b9a1b7071, type: PplBlocks, b"},{"event":"cmd_output","timestamp":1607098325,"output":"lock_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM."},{"event":"cmd_output","timestamp":1607098325,"output":"Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:05.433 [info] block_id: ae0d430e-4f09-4896-a3eb-e8"},{"event":"cmd_output","timestamp":1607098325,"output":"4f1f625ce5, type: BlockRequests, event: persisted build and sub_ppl details for block_request: ae0d4"},{"event":"cmd_output","timestamp":1607098325,"output":"30e-4f09-4896-a3eb-e84f1f625ce5, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.inser"},{"event":"cmd_output","timestamp":1607098325,"output":"t_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:05.439 [info] block_id: ae0d430e-4f09-4896-a3eb-e84f1f625ce5, ty"},{"event":"cmd_output","timestamp":1607098325,"output":"pe: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler"},{"event":"cmd_output","timestamp":1607098325,"output":".InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:05.440 [info] block_id: a7c2bf7a-3767-48f8-9"},{"event":"cmd_output","timestamp":1607098325,"output":"20d-cdb38adbb8c7, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098325,"output":"ixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:05.441 [info] block_id: ae0d430e-4"},{"event":"cmd_output","timestamp":1607098325,"output":"f09-4896-a3eb-e84f1f625ce5, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098325,"output":" origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:05.443 [info] ppl_id: 0"},{"event":"cmd_output","timestamp":1607098325,"output":"531d42a-3eee-431d-aae5-34c9254ca946, type: PplBlocks, block_index: 0, state: waiting, event: exit_sc"},{"event":"cmd_output","timestamp":1607098325,"output":"heduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098325,"output":":12:05.453 [info] ppl_id: 0531d42a-3eee-431d-aae5-34c9254ca946, type: Ppls, state: pending, event: "},{"event":"cmd_output","timestamp":1607098325,"output":"exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098325,"output":"22m\n16:12:05.454 [info] ppl_id: 69257f51-5d70-4717-bfae-596de5a30818, type: PplRequests, event: pe"},{"event":"cmd_output","timestamp":1607098325,"output":"rsisted source_args for pipeline: 69257f51-5d70-4717-bfae-596de5a30818, origin: Elixir.Ppl.PplReques"},{"event":"cmd_output","timestamp":1607098325,"output":"ts.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:05.458 [info] ppl_id: 69257f51"},{"event":"cmd_output","timestamp":1607098325,"output":"-5d70-4717-bfae-596de5a30818, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098325,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:05.471 [info] p"},{"event":"cmd_output","timestamp":1607098325,"output":"pl_id: 0531d42a-3eee-431d-aae5-34c9254ca946, type: Ppls, state: queuing, event: exit_scheduling, rec"},{"event":"cmd_output","timestamp":1607098325,"output":"overy_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:05.482 [i"},{"event":"cmd_output","timestamp":1607098325,"output":"nfo] block_id: ae0d430e-4f09-4896-a3eb-e84f1f625ce5, type: Tasks, state: running, event: exit_sched"},{"event":"cmd_output","timestamp":1607098325,"output":"uling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12"},{"event":"cmd_output","timestamp":1607098325,"output":":05.493 [info] block_id: a7c2bf7a-3767-48f8-920d-cdb38adbb8c7, type: Tasks, state: done, event: exi"},{"event":"cmd_output","timestamp":1607098325,"output":"t_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098325,"output":"\n16:12:05.498 [info] ppl_id: 69257f51-5d70-4717-bfae-596de5a30818, type: PplSubInits, state: regul"},{"event":"cmd_output","timestamp":1607098325,"output":"ar_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/"},{"event":"cmd_output","timestamp":1607098325,"output":"1(L90), \n\u001b[0m\u001b[22m\n16:12:05.500 [info] block_id: a7c2bf7a-3767-48f8-920d-cdb38adbb8c7, type: Bloc"},{"event":"cmd_output","timestamp":1607098325,"output":"ks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state"},{"event":"cmd_output","timestamp":1607098325,"output":"_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:05.507 [info] ppl_id: c6c7bf89-bdf9-433b-b8a4-4357bd9f7c1a, bloc"},{"event":"cmd_output","timestamp":1607098325,"output":"k_id: a7c2bf7a-3767-48f8-920d-cdb38adbb8c7, type: PplBlocks, block_index: 0, state: done, result: pa"},{"event":"cmd_output","timestamp":1607098325,"output":"ssed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098325,"output":"90), \n\u001b[0m\u001b[22m\n16:12:05.523 [info] ppl_id: 69257f51-5d70-4717-bfae-596de5a30818, type: PplReques"},{"event":"cmd_output","timestamp":1607098325,"output":"ts, event: persisted definition for request with request_token: 600293c3-18ae-490c-b8f7-f87c2338ec9f"},{"event":"cmd_output","timestamp":1607098325,"output":", origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098325,"output":"12:05.528 [info] ppl_id: c6c7bf89-bdf9-433b-b8a4-4357bd9f7c1a, type: Ppls, state: done, result: pas"},{"event":"cmd_output","timestamp":1607098325,"output":"sed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L9"},{"event":"cmd_output","timestamp":1607098325,"output":"0), \n\u001b[0m\u001b[22m\n16:12:05.529 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ect"},{"event":"cmd_output","timestamp":1607098325,"output":"o.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:12:05.525958], name: \"dev-.semap"},{"event":"cmd_output","timestamp":1607098325,"output":"hore/semaphore.yml\", organization_id: \"f74e584a-5aae-4ffe-9f59-9b727dde500e\", project_id: \"456\", que"},{"event":"cmd_output","timestamp":1607098325,"output":"ue_id: \"6eb71cdc-98bf-4fb2-9526-885b8d59958b\", scope: \"project\", updated_at: ~N[2020-12-04 16:12:05."},{"event":"cmd_output","timestamp":1607098325,"output":"525967], user_generated: false}}\n\u001b[0m\u001b[22m\n16:12:05.534 [info] event: created, origin: Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098325,"output":".PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:05.534 [info] ppl_id: "},{"event":"cmd_output","timestamp":1607098325,"output":"69257f51-5d70-4717-bfae-596de5a30818, type: PplBlocks, block_index: 0, state: initializing, event: c"},{"event":"cmd_output","timestamp":1607098325,"output":"reated, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105"},{"event":"cmd_output","timestamp":1607098325,"output":"), \n\u001b[0m\u001b[22m\n16:12:05.536 [info] ppl_id: 69257f51-5d70-4717-bfae-596de5a30818, type: PplSubInits"},{"event":"cmd_output","timestamp":1607098325,"output":", state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM."},{"event":"cmd_output","timestamp":1607098325,"output":"Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:05.542 [info] ppl_id: 69257f51-5d70-4717-bfae-596d"},{"event":"cmd_output","timestamp":1607098325,"output":"e5a30818, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0"},{"event":"cmd_output","timestamp":1607098325,"output":", origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:05.546 [info] ppl_id: "},{"event":"cmd_output","timestamp":1607098325,"output":"69257f51-5d70-4717-bfae-596de5a30818, type: Ppls, state: pending, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098325,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:05.553 [info] p"},{"event":"cmd_output","timestamp":1607098325,"output":"pl_id: 69257f51-5d70-4717-bfae-596de5a30818, type: Ppls, state: queuing, event: exit_scheduling, rec"},{"event":"cmd_output","timestamp":1607098325,"output":"overy_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:05.560 [i"},{"event":"cmd_output","timestamp":1607098325,"output":"nfo] ppl_id: 0531d42a-3eee-431d-aae5-34c9254ca946, type: Ppls, state: running, event: exit_scheduli"},{"event":"cmd_output","timestamp":1607098325,"output":"ng, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:05"},{"event":"cmd_output","timestamp":1607098325,"output":".565 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"0531d42a-3eee-431d-aae"},{"event":"cmd_output","timestamp":1607098325,"output":"5-34c9254ca946\"\n\u001b[0m\u001b[22m\n16:12:05.571 [info] ppl_id: fa64ebfd-81b0-45f0-a462-f587e0dc6664, type:"},{"event":"cmd_output","timestamp":1607098325,"output":" PplRequests, event: persisted source_args for pipeline: fa64ebfd-81b0-45f0-a462-f587e0dc6664, origi"},{"event":"cmd_output","timestamp":1607098325,"output":"n: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:05.572 ["},{"event":"cmd_output","timestamp":1607098325,"output":"info] block_id: 8b8bcf2d-dd75-4492-9896-e2dc264af123, type: BlockRequests, event: persisted block r"},{"event":"cmd_output","timestamp":1607098325,"output":"un request from ppl 0531d42a-3eee-431d-aae5-34c9254ca946 for block 0, origin: Elixir.Block.BlockRequ"},{"event":"cmd_output","timestamp":1607098325,"output":"ests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:05.574 [info] block_id:"},{"event":"cmd_output","timestamp":1607098325,"output":" 8b8bcf2d-dd75-4492-9896-e2dc264af123, type: Blocks, state: initializing, event: initializing, recov"},{"event":"cmd_output","timestamp":1607098325,"output":"ery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:05.5"},{"event":"cmd_output","timestamp":1607098325,"output":"76 [info] ppl_id: fa64ebfd-81b0-45f0-a462-f587e0dc6664, type: PplSubInits, state: fetching, event: "},{"event":"cmd_output","timestamp":1607098325,"output":"exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098325,"output":"22m\n16:12:05.576 [info] Block 0 of pipeline with id: 0531d42a-3eee-431d-aae5-34c9254ca946 schedule"},{"event":"cmd_output","timestamp":1607098325,"output":"d in block service with id: : \"8b8bcf2d-dd75-4492-9896-e2dc264af123\"\n\u001b[0m\u001b[22m\n16:12:05.579 [info]"},{"event":"cmd_output","timestamp":1607098325,"output":" ppl_id: 0531d42a-3eee-431d-aae5-34c9254ca946, type: PplBlocks, block_index: 0, state: running, eve"},{"event":"cmd_output","timestamp":1607098325,"output":"nt: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b["},{"event":"cmd_output","timestamp":1607098325,"output":"0m\u001b[22m\n16:12:05.583 [info] block_id: 8b8bcf2d-dd75-4492-9896-e2dc264af123, type: BlockRequests, e"},{"event":"cmd_output","timestamp":1607098325,"output":"vent: persisted build and sub_ppl details for block_request: 8b8bcf2d-dd75-4492-9896-e2dc264af123, o"},{"event":"cmd_output","timestamp":1607098325,"output":"rigin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12"},{"event":"cmd_output","timestamp":1607098325,"output":":05.586 [info] block_id: 8b8bcf2d-dd75-4492-9896-e2dc264af123, type: Tasks, state: pending, event: "},{"event":"cmd_output","timestamp":1607098325,"output":"created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167)"},{"event":"cmd_output","timestamp":1607098325,"output":", \n\u001b[0m\u001b[22m\n16:12:05.588 [info] block_id: 8b8bcf2d-dd75-4492-9896-e2dc264af123, type: Blocks, st"},{"event":"cmd_output","timestamp":1607098325,"output":"ate: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_ch"},{"event":"cmd_output","timestamp":1607098325,"output":"ange/1(L90), \n\u001b[0m\u001b[22m\n16:12:05.601 [info] block_id: 8b8bcf2d-dd75-4492-9896-e2dc264af123, type:"},{"event":"cmd_output","timestamp":1607098325,"output":" Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.lo"},{"event":"cmd_output","timestamp":1607098325,"output":"g_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:05.605 [info] ppl_id: fa64ebfd-81b0-45f0-a462-f587e0dc666"},{"event":"cmd_output","timestamp":1607098325,"output":"4, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098325,"output":".Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:05.612 [info] ppl_id: 69257f51-5d70-47"},{"event":"cmd_output","timestamp":1607098325,"output":"17-bfae-596de5a30818, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098325,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:05.617 [info] block_id: ae0d430"},{"event":"cmd_output","timestamp":1607098325,"output":"e-4f09-4896-a3eb-e84f1f625ce5, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098325,"output":"origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:05.620 [info] PplBlocks "},{"event":"cmd_output","timestamp":1607098325,"output":"WaitingState STM is scheduling block 0 from pipeline: \"69257f51-5d70-4717-bfae-596de5a30818\"\n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098325,"output":"22m\n16:12:05.627 [info] block_id: ae0d430e-4f09-4896-a3eb-e84f1f625ce5, type: Blocks, state: done,"},{"event":"cmd_output","timestamp":1607098325,"output":" event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), "},{"event":"cmd_output","timestamp":1607098325,"output":"\n\u001b[0m\u001b[22m\n16:12:05.635 [info] block_id: 177a3a52-5676-469b-a475-05af549cbde3, type: BlockRequest"},{"event":"cmd_output","timestamp":1607098325,"output":"s, event: persisted block run request from ppl 69257f51-5d70-4717-bfae-596de5a30818 for block 0, ori"},{"event":"cmd_output","timestamp":1607098325,"output":"gin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098325,"output":"12:05.638 [info] ppl_id: fa64ebfd-81b0-45f0-a462-f587e0dc6664, type: PplRequests, event: persisted "},{"event":"cmd_output","timestamp":1607098325,"output":"definition for request with request_token: 534e4b7c-ae61-400a-a6e1-aa1c3f9b1010, origin: Elixir.Ppl."},{"event":"cmd_output","timestamp":1607098325,"output":"PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:05.639 [info] blo"},{"event":"cmd_output","timestamp":1607098325,"output":"ck_id: 177a3a52-5676-469b-a475-05af549cbde3, type: Blocks, state: initializing, event: initializing,"},{"event":"cmd_output","timestamp":1607098325,"output":" recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098325,"output":"2:05.643 [info] Block 0 of pipeline with id: 69257f51-5d70-4717-bfae-596de5a30818 scheduled in bloc"},{"event":"cmd_output","timestamp":1607098325,"output":"k service with id: : \"177a3a52-5676-469b-a475-05af549cbde3\"\n\u001b[0m\u001b[22m\n16:12:05.644 [info] event: "},{"event":"cmd_output","timestamp":1607098325,"output":"created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098325,"output":":12:05.644 [info] ppl_id: fa64ebfd-81b0-45f0-a462-f587e0dc6664, type: PplBlocks, block_index: 0, st"},{"event":"cmd_output","timestamp":1607098325,"output":"ate: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.Regu"},{"event":"cmd_output","timestamp":1607098325,"output":"larInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:05.648 [info] ppl_id: fa64ebfd-81b0-45f0-a462-f587"},{"event":"cmd_output","timestamp":1607098325,"output":"e0dc6664, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098325,"output":" origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:05.649 [info] block_id:"},{"event":"cmd_output","timestamp":1607098325,"output":" 177a3a52-5676-469b-a475-05af549cbde3, type: BlockRequests, event: persisted build and sub_ppl detai"},{"event":"cmd_output","timestamp":1607098325,"output":"ls for block_request: 177a3a52-5676-469b-a475-05af549cbde3, origin: Elixir.Block.BlockRequests.Model"},{"event":"cmd_output","timestamp":1607098325,"output":".BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:05.649 [info] ppl_id: 69257f51-5d70-4"},{"event":"cmd_output","timestamp":1607098325,"output":"717-bfae-596de5a30818, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, reco"},{"event":"cmd_output","timestamp":1607098325,"output":"very_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:05.652 [in"},{"event":"cmd_output","timestamp":1607098325,"output":"fo] ppl_id: b05c8b11-ba45-4ff9-946b-0c1b9a1b7071, block_id: ae0d430e-4f09-4896-a3eb-e84f1f625ce5, t"},{"event":"cmd_output","timestamp":1607098325,"output":"ype: PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count:"},{"event":"cmd_output","timestamp":1607098325,"output":" 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:05.653 [info] block_"},{"event":"cmd_output","timestamp":1607098325,"output":"id: 177a3a52-5676-469b-a475-05af549cbde3, type: Tasks, state: pending, event: created, recovery_coun"},{"event":"cmd_output","timestamp":1607098325,"output":"t: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:0"},{"event":"cmd_output","timestamp":1607098325,"output":"5.654 [info] ppl_id: fa64ebfd-81b0-45f0-a462-f587e0dc6664, type: Ppls, state: pending, event: exit_"},{"event":"cmd_output","timestamp":1607098325,"output":"scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098325,"output":"16:12:05.659 [info] block_id: 177a3a52-5676-469b-a475-05af549cbde3, type: Blocks, state: running, e"},{"event":"cmd_output","timestamp":1607098325,"output":"vent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n"},{"event":"cmd_output","timestamp":1607098325,"output":"\u001b[0m\u001b[22m\n16:12:05.664 [info] ppl_id: fa64ebfd-81b0-45f0-a462-f587e0dc6664, type: PplBlocks, block"},{"event":"cmd_output","timestamp":1607098325,"output":"_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl"},{"event":"cmd_output","timestamp":1607098325,"output":".log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:05.669 [info] ppl_id: fa64ebfd-81b0-45f0-a462-f587e0dc"},{"event":"cmd_output","timestamp":1607098325,"output":"6664, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.S"},{"event":"cmd_output","timestamp":1607098325,"output":"TM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:05.677 [info] ppl_id: b05c8b11-ba45-4ff9-946b-0"},{"event":"cmd_output","timestamp":1607098325,"output":"c1b9a1b7071, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098325,"output":"gin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:05.687 [info] block_id: 177"},{"event":"cmd_output","timestamp":1607098325,"output":"a3a52-5676-469b-a475-05af549cbde3, type: Tasks, state: running, event: exit_scheduling, recovery_cou"},{"event":"cmd_output","timestamp":1607098325,"output":"nt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:05.729 [info] blo"},{"event":"cmd_output","timestamp":1607098325,"output":"ck_id: 8b8bcf2d-dd75-4492-9896-e2dc264af123, type: Tasks, state: done, event: exit_scheduling, recov"},{"event":"cmd_output","timestamp":1607098325,"output":"ery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:05.736 [inf"},{"event":"cmd_output","timestamp":1607098325,"output":"o] block_id: 8b8bcf2d-dd75-4492-9896-e2dc264af123, type: Blocks, state: done, event: exit_schedulin"},{"event":"cmd_output","timestamp":1607098325,"output":"g, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:05."},{"event":"cmd_output","timestamp":1607098325,"output":"743 [info] ppl_id: 0531d42a-3eee-431d-aae5-34c9254ca946, block_id: 8b8bcf2d-dd75-4492-9896-e2dc264a"},{"event":"cmd_output","timestamp":1607098325,"output":"f123, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery"},{"event":"cmd_output","timestamp":1607098325,"output":"_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:05.755 [info] "},{"event":"cmd_output","timestamp":1607098325,"output":" ppl_id: 0531d42a-3eee-431d-aae5-34c9254ca946, type: Ppls, state: done, result: passed, event: exit_"},{"event":"cmd_output","timestamp":1607098325,"output":"scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098325,"output":"16:12:05.840 [info] block_id: 177a3a52-5676-469b-a475-05af549cbde3, type: Tasks, state: done, event"},{"event":"cmd_output","timestamp":1607098325,"output":": exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098325,"output":"\u001b[22m\n16:12:05.847 [info] block_id: 177a3a52-5676-469b-a475-05af549cbde3, type: Blocks, state: don"},{"event":"cmd_output","timestamp":1607098325,"output":"e, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90)"},{"event":"cmd_output","timestamp":1607098325,"output":", \n\u001b[0m\u001b[22m\n16:12:05.855 [info] ppl_id: 69257f51-5d70-4717-bfae-596de5a30818, block_id: 177a3a52"},{"event":"cmd_output","timestamp":1607098325,"output":"-5676-469b-a475-05af549cbde3, type: PplBlocks, block_index: 0, state: done, result: passed, event: e"},{"event":"cmd_output","timestamp":1607098325,"output":"xit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098325,"output":"2m\n16:12:05.868 [info] ppl_id: 69257f51-5d70-4717-bfae-596de5a30818, type: Ppls, state: done, resu"},{"event":"cmd_output","timestamp":1607098325,"output":"lt: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chan"},{"event":"cmd_output","timestamp":1607098325,"output":"ge/1(L90), \n\u001b[0m\u001b[22m\n16:12:05.931 [info] ppl_id: fa64ebfd-81b0-45f0-a462-f587e0dc6664, type: Ppl"},{"event":"cmd_output","timestamp":1607098325,"output":"s, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_sta"},{"event":"cmd_output","timestamp":1607098325,"output":"te_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:05.937 [info] PplBlocks WaitingState STM is scheduling block 0"},{"event":"cmd_output","timestamp":1607098325,"output":" from pipeline: \"fa64ebfd-81b0-45f0-a462-f587e0dc6664\"\n\u001b[0m\u001b[22m\n16:12:05.947 [info] block_id: 3b"},{"event":"cmd_output","timestamp":1607098325,"output":"92cf99-d453-43f3-954e-10ff84bda641, type: BlockRequests, event: persisted block run request from ppl"},{"event":"cmd_output","timestamp":1607098325,"output":" fa64ebfd-81b0-45f0-a462-f587e0dc6664 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockReq"},{"event":"cmd_output","timestamp":1607098325,"output":"uestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:05.949 [info] block_id: 3b92cf99-d453-43f3"},{"event":"cmd_output","timestamp":1607098325,"output":"-954e-10ff84bda641, type: Blocks, state: initializing, event: initializing, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098325,"output":"n: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:05.952 [info] Block 0 "},{"event":"cmd_output","timestamp":1607098325,"output":"of pipeline with id: fa64ebfd-81b0-45f0-a462-f587e0dc6664 scheduled in block service with id: : \"3b9"},{"event":"cmd_output","timestamp":1607098325,"output":"2cf99-d453-43f3-954e-10ff84bda641\"\n\u001b[0m\u001b[22m\n16:12:05.955 [info] ppl_id: fa64ebfd-81b0-45f0-a462-"},{"event":"cmd_output","timestamp":1607098325,"output":"f587e0dc6664, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_coun"},{"event":"cmd_output","timestamp":1607098325,"output":"t: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:05.956 [info] bloc"},{"event":"cmd_output","timestamp":1607098325,"output":"k_id: 3b92cf99-d453-43f3-954e-10ff84bda641, type: BlockRequests, event: persisted build and sub_ppl "},{"event":"cmd_output","timestamp":1607098325,"output":"details for block_request: 3b92cf99-d453-43f3-954e-10ff84bda641, origin: Elixir.Block.BlockRequests."},{"event":"cmd_output","timestamp":1607098325,"output":"Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:05.959 [info] block_id: 3b92cf99"},{"event":"cmd_output","timestamp":1607098325,"output":"-d453-43f3-954e-10ff84bda641, type: Tasks, state: pending, event: created, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098325,"output":": Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:05.962 [info]"},{"event":"cmd_output","timestamp":1607098325,"output":" block_id: 3b92cf99-d453-43f3-954e-10ff84bda641, type: Blocks, state: running, event: exit_scheduli"},{"event":"cmd_output","timestamp":1607098325,"output":"ng, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:05"},{"event":"cmd_output","timestamp":1607098325,"output":".976 [info] block_id: 3b92cf99-d453-43f3-954e-10ff84bda641, type: Tasks, state: running, event: exi"},{"event":"cmd_output","timestamp":1607098326,"output":"t_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098326,"output":"\n16:12:06.053 [info] block_id: 3b92cf99-d453-43f3-954e-10ff84bda641, type: Tasks, state: done, eve"},{"event":"cmd_output","timestamp":1607098326,"output":"nt: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b["},{"event":"cmd_output","timestamp":1607098326,"output":"0m\u001b[22m\n16:12:06.058 [info] block_id: 3b92cf99-d453-43f3-954e-10ff84bda641, type: Blocks, state: d"},{"event":"cmd_output","timestamp":1607098326,"output":"one, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L9"},{"event":"cmd_output","timestamp":1607098326,"output":"0), \n\u001b[0m\u001b[22m\n16:12:06.067 [info] ppl_id: fa64ebfd-81b0-45f0-a462-f587e0dc6664, block_id: 3b92cf"},{"event":"cmd_output","timestamp":1607098326,"output":"99-d453-43f3-954e-10ff84bda641, type: PplBlocks, block_index: 0, state: done, result: passed, event:"},{"event":"cmd_output","timestamp":1607098326,"output":" exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098326,"output":"[22m\n16:12:06.073 [info] ppl_id: fa64ebfd-81b0-45f0-a462-f587e0dc6664, type: Ppls, state: done, re"},{"event":"cmd_output","timestamp":1607098326,"output":"sult: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_ch"},{"event":"cmd_output","timestamp":1607098326,"output":"ange/1(L90), \n\u001b[0m\u001b[32m\r * test gRPC list_grouped() - both scopes user-generated queues (1848.8ms"},{"event":"cmd_output","timestamp":1607098326,"output":")\u001b[0m\n * test gRPC list() - fails when given timestamps are wrong (done before created etc.)\r * "},{"event":"cmd_output","timestamp":1607098326,"output":"test gRPC list() - fails when given timestamps are wrong (done before created etc.) (skipped)\n * "},{"event":"cmd_output","timestamp":1607098326,"output":"test gRPC partial_rebuild() - fails when ppl_id not found\r * test gRPC partial_rebuild() - fails wh"},{"event":"cmd_output","timestamp":1607098326,"output":"en ppl_id not found (skipped)\n * test gRPC describe_topology() - malformed pipeline\u001b[22m\n16:12:06"},{"event":"cmd_output","timestamp":1607098326,"output":".272 [info] Request: 'run: %{:repo_name => \"12_failing_deps\", \"branch_id\" => \"31f7bbd7-d8e7-423a-83"},{"event":"cmd_output","timestamp":1607098326,"output":"38-5ef12c5449e5\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"semaphore"},{"event":"cmd_output","timestamp":1607098326,"output":".yml\", \"hook_id\" => \"7411c0d2-364b-11eb-8748-5254005464e2\", \"label\" => \"master\", \"organization_id\" ="},{"event":"cmd_output","timestamp":1607098326,"output":"> \"f19c751a-b697-4d56-85c0-6d3f591c6991\", \"owner\" => \"rt\", \"project_id\" => \"0ac87546-9844-413c-9d6c-"},{"event":"cmd_output","timestamp":1607098326,"output":"fe02ee89dd28\", \"repo_name\" => \"2_basic\", \"request_token\" => \"7411b43e-364b-11eb-9830-5254005464e2\", "},{"event":"cmd_output","timestamp":1607098326,"output":"\"requester_id\" => \"185a6366-c7b5-4cad-a9c2-bc6c95674831\", \"service\" => \"local\", \"suppressed_attribut"},{"event":"cmd_output","timestamp":1607098326,"output":"es\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"ba58cb16-923a-43e5-a4ef-2e1a90cdd6a1\", \"workin"},{"event":"cmd_output","timestamp":1607098326,"output":"g_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:12:06.283 [info] ppl_id: 8b761b42-c54c-4b50-a33b-74174b0c5be"},{"event":"cmd_output","timestamp":1607098326,"output":"f, type: PplRequests, event: persisted schedule request with request_token: 7411b43e-364b-11eb-9830-"},{"event":"cmd_output","timestamp":1607098326,"output":"5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098326,"output":"m\u001b[22m\n16:12:06.287 [info] ppl_id: 8b761b42-c54c-4b50-a33b-74174b0c5bef, type: Ppls, state: initia"},{"event":"cmd_output","timestamp":1607098326,"output":"lizing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_re"},{"event":"cmd_output","timestamp":1607098326,"output":"sponse/2(L124), \n\u001b[0m\u001b[22m\n16:12:06.292 [info] Project 0ac87546-9844-413c-9d6c-fe02ee89dd28 and b"},{"event":"cmd_output","timestamp":1607098326,"output":"ranch masterlatest_wf details updated: \"wf_id: ba58cb16-923a-43e5-a4ef-2e1a90cdd6a1, wf_number: 1\"\n"},{"event":"cmd_output","timestamp":1607098326,"output":"\u001b[0m\u001b[22m\n16:12:06.294 [info] Persisted ppl_sub_init for pipeline with ppl_id: 8b761b42-c54c-4b50-"},{"event":"cmd_output","timestamp":1607098326,"output":"a33b-74174b0c5bef: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipe"},{"event":"cmd_output","timestamp":1607098326,"output":"line_sub_inits\">, compile_task_id: nil, error_description: nil, id: 165, in_scheduling: false, init_"},{"event":"cmd_output","timestamp":1607098326,"output":"type: \"regular\", inserted_at: ~N[2020-12-04 16:12:06.292917], pipeline_requests: #Ecto.Association.N"},{"event":"cmd_output","timestamp":1607098326,"output":"otLoaded, ppl_id: \"8b761b42-c54c-4b50-a33b-74174b0c5be"},{"event":"cmd_output","timestamp":1607098326,"output":"f\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, te"},{"event":"cmd_output","timestamp":1607098326,"output":"rminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:06.292929]}\n\u001b[0m\u001b[22m\n16:12:06.300 [inf"},{"event":"cmd_output","timestamp":1607098326,"output":"o] Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.STMH"},{"event":"cmd_output","timestamp":1607098326,"output":"andler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHand"},{"event":"cmd_output","timestamp":1607098326,"output":"ler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], coo"},{"event":"cmd_output","timestamp":1607098326,"output":"ling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher_cb: "},{"event":"cmd_output","timestamp":1607098326,"output":"#Function<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, return"},{"event":"cmd_output","timestamp":1607098326,"output":"ing: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl."},{"event":"cmd_output","timestamp":1607098326,"output":"Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:06.300 [info] Periodic from module Elixi"},{"event":"cmd_output","timestamp":1607098326,"output":"r.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 100 "},{"event":"cmd_output","timestamp":1607098326,"output":"ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args: %{a"},{"event":"cmd_output","timestamp":1607098326,"output":"llowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Pp"},{"event":"cmd_output","timestamp":1607098326,"output":"ls.Model.Ppls, observed_state: \"pending\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler"},{"event":"cmd_output","timestamp":1607098326,"output":".PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state,"},{"event":"cmd_output","timestamp":1607098326,"output":" :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSuperviso"},{"event":"cmd_output","timestamp":1607098326,"output":"r}\n\u001b[0m\u001b[22m\n16:12:06.302 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.QueuingState wit"},{"event":"cmd_output","timestamp":1607098326,"output":"h name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_u"},{"event":"cmd_output","timestamp":1607098326,"output":"p\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{allowed_states: [\"queuing\", \"running\", "},{"event":"cmd_output","timestamp":1607098326,"output":"\"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", publis"},{"event":"cmd_output","timestamp":1607098326,"output":"her_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, ret"},{"event":"cmd_output","timestamp":1607098326,"output":"urning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: P"},{"event":"cmd_output","timestamp":1607098326,"output":"pl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:06.303 [info] Periodic from module El"},{"event":"cmd_output","timestamp":1607098326,"output":"ixir.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHandler.RunningState :: period: 1"},{"event":"cmd_output","timestamp":1607098326,"output":"00 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring args: "},{"event":"cmd_output","timestamp":1607098326,"output":"%{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Mod"},{"event":"cmd_output","timestamp":1607098326,"output":"el.Ppls, observed_state: \"running\", publisher_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler.Runn"},{"event":"cmd_output","timestamp":1607098326,"output":"ingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :res"},{"event":"cmd_output","timestamp":1607098326,"output":"ult, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b"},{"event":"cmd_output","timestamp":1607098326,"output":"[0m\u001b[22m\n16:12:06.304 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.StoppingState with na"},{"event":"cmd_output","timestamp":1607098326,"output":"me Elixir.Ppl.Ppls.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\","},{"event":"cmd_output","timestamp":1607098326,"output":" [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], coo"},{"event":"cmd_output","timestamp":1607098326,"output":"ling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"stopping\", publisher_cb: #Fu"},{"event":"cmd_output","timestamp":1607098326,"output":"nction<0.71803493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:i"},{"event":"cmd_output","timestamp":1607098326,"output":"d, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Mod"},{"event":"cmd_output","timestamp":1607098326,"output":"el.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:06.305 [info] Periodic from module Elixir.Ppl.Pp"},{"event":"cmd_output","timestamp":1607098326,"output":"lSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period"},{"event":"cmd_output","timestamp":1607098326,"output":": 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurr"},{"event":"cmd_output","timestamp":1607098326,"output":"ing args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInit"},{"event":"cmd_output","timestamp":1607098326,"output":"s.Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: "},{"event":"cmd_output","timestamp":1607098326,"output":"[:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSu"},{"event":"cmd_output","timestamp":1607098326,"output":"bInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:06.306 [info] Periodic from mod"},{"event":"cmd_output","timestamp":1607098326,"output":"ule Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler.Fetc"},{"event":"cmd_output","timestamp":1607098326,"output":"hingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-Fetc"},{"event":"cmd_output","timestamp":1607098326,"output":"hingState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"done\"], cooling_tim"},{"event":"cmd_output","timestamp":1607098326,"output":"e_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fetching\", publisher_c"},{"event":"cmd_output","timestamp":1607098326,"output":"b: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :re"},{"event":"cmd_output","timestamp":1607098326,"output":"covery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098326,"output":"m\n16:12:06.308 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CompilationState with"},{"event":"cmd_output","timestamp":1607098326,"output":" name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 100 ms, metric_name: {\"Ppl.behol"},{"event":"cmd_output","timestamp":1607098326,"output":"der-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurring args: %{allowed_states: [\""},{"event":"cmd_output","timestamp":1607098326,"output":"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubIn"},{"event":"cmd_output","timestamp":1607098326,"output":"its.Model.PplSubInits, observed_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, retur"},{"event":"cmd_output","timestamp":1607098326,"output":"ning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl"},{"event":"cmd_output","timestamp":1607098326,"output":".PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:06.309 [info] Periodic fr"},{"event":"cmd_output","timestamp":1607098326,"output":"om module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHan"},{"event":"cmd_output","timestamp":1607098326,"output":"dler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STM"},{"event":"cmd_output","timestamp":1607098326,"output":"Handler-RegularInitState\"]}, recurring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, initia"},{"event":"cmd_output","timestamp":1607098326,"output":"l_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_init\", publisher_cb: :skip, rep"},{"event":"cmd_output","timestamp":1607098326,"output":"o: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count,"},{"event":"cmd_output","timestamp":1607098326,"output":" :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:06.3"},{"event":"cmd_output","timestamp":1607098326,"output":"10 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.InitializingState with name Elixir.P"},{"event":"cmd_output","timestamp":1607098326,"output":"pl.PplBlocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", ["},{"event":"cmd_output","timestamp":1607098326,"output":"\"Ppl-PplBlocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \""},{"event":"cmd_output","timestamp":1607098326,"output":"waiting\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state"},{"event":"cmd_output","timestamp":1607098326,"output":": \"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :upd"},{"event":"cmd_output","timestamp":1607098326,"output":"ated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBl"},{"event":"cmd_output","timestamp":1607098326,"output":"ocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:06.311 [info] Periodic from module Elixir.Ppl.PplBl"},{"event":"cmd_output","timestamp":1607098326,"output":"ocks.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler.WaitingState :: period: 1000 "},{"event":"cmd_output","timestamp":1607098326,"output":"ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurring args"},{"event":"cmd_output","timestamp":1607098326,"output":": %{allowed_states: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlock"},{"event":"cmd_output","timestamp":1607098326,"output":"s.Model.PplBlocks, observed_state: \"waiting\", publisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.S"},{"event":"cmd_output","timestamp":1607098326,"output":"TMHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at"},{"event":"cmd_output","timestamp":1607098326,"output":", :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, t"},{"event":"cmd_output","timestamp":1607098326,"output":"ask_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:06.313 [info] Periodic from module Elixir.Ppl.PplBlocks.ST"},{"event":"cmd_output","timestamp":1607098326,"output":"MHandler.RunningState with name Elixir.Ppl.PplBlocks.STMHandler.RunningState :: period: 1000 ms, met"},{"event":"cmd_output","timestamp":1607098326,"output":"ric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, recurring args: %{all"},{"event":"cmd_output","timestamp":1607098326,"output":"owed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Mod"},{"event":"cmd_output","timestamp":1607098326,"output":"el.PplBlocks, observed_state: \"running\", publisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHa"},{"event":"cmd_output","timestamp":1607098326,"output":"ndler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :s"},{"event":"cmd_output","timestamp":1607098326,"output":"tate, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBl"},{"event":"cmd_output","timestamp":1607098326,"output":"ocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:06.314 [info] Periodic from module Elixir.Ppl.PplBl"},{"event":"cmd_output","timestamp":1607098326,"output":"ocks.STMHandler.StoppingState with name Elixir.Ppl.PplBlocks.STMHandler.StoppingState :: period: 100"},{"event":"cmd_output","timestamp":1607098326,"output":"0 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurring a"},{"event":"cmd_output","timestamp":1607098326,"output":"rgs: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Mode"},{"event":"cmd_output","timestamp":1607098326,"output":"l.PplBlocks, observed_state: \"stopping\", publisher_cb: #Function<0.104215991/1 in Ppl.PplBlocks.STMH"},{"event":"cmd_output","timestamp":1607098326,"output":"andler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, "},{"event":"cmd_output","timestamp":1607098326,"output":":state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.Ppl"},{"event":"cmd_output","timestamp":1607098326,"output":"Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:06.314 [info] Periodic from module Elixir.Block.B"},{"event":"cmd_output","timestamp":1607098326,"output":"locks.STMHandler.InitializingState with name Elixir.Block.Blocks.STMHandler.InitializingState :: per"},{"event":"cmd_output","timestamp":1607098326,"output":"iod: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, r"},{"event":"cmd_output","timestamp":1607098326,"output":"ecurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Bloc"},{"event":"cmd_output","timestamp":1607098326,"output":"ks.Model.Blocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Block.EctoRepo, returnin"},{"event":"cmd_output","timestamp":1607098326,"output":"g: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks."},{"event":"cmd_output","timestamp":1607098326,"output":"Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:06.315 [info] Periodic from module Elixir.B"},{"event":"cmd_output","timestamp":1607098326,"output":"lock.Blocks.STMHandler.RunningState with name Elixir.Block.Blocks.STMHandler.RunningState :: period:"},{"event":"cmd_output","timestamp":1607098326,"output":" 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-RunningState\"]}, recurring "},{"event":"cmd_output","timestamp":1607098326,"output":"args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block."},{"event":"cmd_output","timestamp":1607098326,"output":"Blocks.Model.Blocks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning"},{"event":"cmd_output","timestamp":1607098326,"output":": [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.M"},{"event":"cmd_output","timestamp":1607098326,"output":"odel.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:06.315 [info] Periodic from module Elixir.Bl"},{"event":"cmd_output","timestamp":1607098326,"output":"ock.Blocks.STMHandler.StoppingState with name Elixir.Block.Blocks.STMHandler.StoppingState :: period"},{"event":"cmd_output","timestamp":1607098326,"output":": 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-StoppingState\"]}, recurrin"},{"event":"cmd_output","timestamp":1607098326,"output":"g args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Mo"},{"event":"cmd_output","timestamp":1607098326,"output":"del.Blocks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, "},{"event":"cmd_output","timestamp":1607098326,"output":":terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blo"},{"event":"cmd_output","timestamp":1607098326,"output":"cks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:06.316 [info] Periodic from module Elixir.Block.Task"},{"event":"cmd_output","timestamp":1607098326,"output":"s.STMHandler.PendingState with name Elixir.Block.Tasks.STMHandler.PendingState :: period: 100 ms, me"},{"event":"cmd_output","timestamp":1607098326,"output":"tric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingState\"]}, recurring args: %{allo"},{"event":"cmd_output","timestamp":1607098326,"output":"wed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Tasks.Model.Tasks, observ"},{"event":"cmd_output","timestamp":1607098326,"output":"ed_state: \"pending\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request,"},{"event":"cmd_output","timestamp":1607098326,"output":" :updated_at, :state, :recovery_count, :block_id, :build_request_id], schema: Block.Tasks.Model.Task"},{"event":"cmd_output","timestamp":1607098326,"output":"s, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:06.316 [info] Periodic from module Elixir.Block.Tasks."},{"event":"cmd_output","timestamp":1607098326,"output":"STMHandler.RunningState with name Elixir.Block.Tasks.STMHandler.RunningState :: period: 100 ms, metr"},{"event":"cmd_output","timestamp":1607098326,"output":"ic_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningState\"]}, recurring args: %{allowe"},{"event":"cmd_output","timestamp":1607098326,"output":"d_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Ta"},{"event":"cmd_output","timestamp":1607098326,"output":"sks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :termina"},{"event":"cmd_output","timestamp":1607098326,"output":"te_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_"},{"event":"cmd_output","timestamp":1607098326,"output":"supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:06.317 [info] Periodic from module Elixir.Block.Tasks.STMHandl"},{"event":"cmd_output","timestamp":1607098326,"output":"er.StoppingState with name Elixir.Block.Tasks.STMHandler.StoppingState :: period: 100 ms, metric_nam"},{"event":"cmd_output","timestamp":1607098326,"output":"e: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]}, recurring args: %{allowed_sta"},{"event":"cmd_output","timestamp":1607098326,"output":"tes: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_st"},{"event":"cmd_output","timestamp":1607098326,"output":"ate: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :up"},{"event":"cmd_output","timestamp":1607098326,"output":"dated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :sk"},{"event":"cmd_output","timestamp":1607098326,"output":"ip}\n\u001b[0m\u001b[22m\n16:12:06.425 [info] ppl_id: 8b761b42-c54c-4b50-a33b-74174b0c5bef, type: PplRequests"},{"event":"cmd_output","timestamp":1607098326,"output":", event: persisted source_args for pipeline: 8b761b42-c54c-4b50-a33b-74174b0c5bef, origin: Elixir.Pp"},{"event":"cmd_output","timestamp":1607098326,"output":"l.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:06.428 [info] ppl_i"},{"event":"cmd_output","timestamp":1607098326,"output":"d: 8b761b42-c54c-4b50-a33b-74174b0c5bef, type: PplSubInits, state: fetching, event: exit_scheduling,"},{"event":"cmd_output","timestamp":1607098326,"output":" recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:06.45"},{"event":"cmd_output","timestamp":1607098326,"output":"5 [info] ppl_id: 8b761b42-c54c-4b50-a33b-74174b0c5bef, type: PplSubInits, state: done, result: fail"},{"event":"cmd_output","timestamp":1607098326,"output":"ed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90"},{"event":"cmd_output","timestamp":1607098326,"output":"), \n\u001b[0m\u001b[22m\n16:12:06.469 [info] ppl_id: 8b761b42-c54c-4b50-a33b-74174b0c5bef, type: Ppls, state"},{"event":"cmd_output","timestamp":1607098326,"output":": done, result: failed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.lo"},{"event":"cmd_output","timestamp":1607098326,"output":"g_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test gRPC describe_topology() - malformed pipeline (350.4ms)\u001b"},{"event":"cmd_output","timestamp":1607098326,"output":"[0m\n * test gRPC list() - error when called without project_id or wf_id\r * test gRPC list() - err"},{"event":"cmd_output","timestamp":1607098326,"output":"or when called without project_id or wf_id (skipped)\n * test describe_many returns error when one "},{"event":"cmd_output","timestamp":1607098326,"output":"of ids is not a valid uuid\r * test describe_many returns error when one of ids is not a valid uuid "},{"event":"cmd_output","timestamp":1607098326,"output":"(skipped)\n * test gRPC validate_yaml() - valid yaml definition, refuse ppls scheduling if project"},{"event":"cmd_output","timestamp":1607098326,"output":" deletion was requested\r * test gRPC validate_yaml() - valid yaml definition, refuse ppls scheduli"},{"event":"cmd_output","timestamp":1607098326,"output":"ng if project deletion was requested (skipped)\n * test gRPC describe() - refuse request when there"},{"event":"cmd_output","timestamp":1607098326,"output":" are to many unfinished ones\r * test gRPC describe() - refuse request when there are to many unfini"},{"event":"cmd_output","timestamp":1607098326,"output":"shed ones (skipped)\n * test gRPC validate_yaml() - valid yaml definition, ppl scheduled\r * test g"},{"event":"cmd_output","timestamp":1607098326,"output":"RPC validate_yaml() - valid yaml definition, ppl scheduled (skipped)\n * test gRPC partial_rebuild("},{"event":"cmd_output","timestamp":1607098326,"output":") is idempotent\u001b[22m\n16:12:06.658 [info] Request: 'run: %{\"branch_id\" => \"c5d08cb5-0d38-4b85-8cfe-"},{"event":"cmd_output","timestamp":1607098326,"output":"61574fff879a\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"semaphore.ym"},{"event":"cmd_output","timestamp":1607098326,"output":"l\", \"hook_id\" => \"744c9f90-364b-11eb-a941-5254005464e2\", \"label\" => \"master\", \"organization_id\" => \""},{"event":"cmd_output","timestamp":1607098326,"output":"525c1075-defe-489f-932c-2aec51356bf5\", \"owner\" => \"rt\", \"project_id\" => \"50861ede-c88c-44e7-8973-d85"},{"event":"cmd_output","timestamp":1607098326,"output":"4dad8bde4\", \"repo_name\" => \"14_free_topology_failing_block\", \"request_token\" => \"744c91b2-364b-11eb-"},{"event":"cmd_output","timestamp":1607098326,"output":"8563-5254005464e2\", \"requester_id\" => \"2606383e-2111-42a7-8839-c08f5996d195\", \"service\" => \"local\", "},{"event":"cmd_output","timestamp":1607098326,"output":"\"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"33581241-6dcb-4c24-8920-75"},{"event":"cmd_output","timestamp":1607098326,"output":"d9678b8e2d\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:12:06.667 [info] ppl_id: 7c44d7ea-5e3d-4"},{"event":"cmd_output","timestamp":1607098326,"output":"9e4-bdfa-bbe92cca2b9b, type: PplRequests, event: persisted schedule request with request_token: 744c"},{"event":"cmd_output","timestamp":1607098326,"output":"91b2-364b-11eb-8563-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_re"},{"event":"cmd_output","timestamp":1607098326,"output":"sponse/2(L55), \n\u001b[0m\u001b[22m\n16:12:06.673 [info] ppl_id: 7c44d7ea-5e3d-49e4-bdfa-bbe92cca2b9b, type:"},{"event":"cmd_output","timestamp":1607098326,"output":" Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.Pp"},{"event":"cmd_output","timestamp":1607098326,"output":"lsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:06.681 [info] Project 50861ede-c88c-44e7-897"},{"event":"cmd_output","timestamp":1607098326,"output":"3-d854dad8bde4 and branch masterlatest_wf details updated: \"wf_id: 33581241-6dcb-4c24-8920-75d9678b8"},{"event":"cmd_output","timestamp":1607098326,"output":"e2d, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:12:06.684 [info] Persisted ppl_sub_init for pipeline with ppl_id:"},{"event":"cmd_output","timestamp":1607098326,"output":" 7c44d7ea-5e3d-49e4-bdfa-bbe92cca2b9b: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Met"},{"event":"cmd_output","timestamp":1607098326,"output":"adata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 166, in_sche"},{"event":"cmd_output","timestamp":1607098326,"output":"duling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:06.682034], pipeline_requests:"},{"event":"cmd_output","timestamp":1607098326,"output":" #Ecto.Association.NotLoaded, ppl_id: \"7c44d7ea-5e3d-4"},{"event":"cmd_output","timestamp":1607098326,"output":"9e4-bdfa-bbe92cca2b9b\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", termin"},{"event":"cmd_output","timestamp":1607098326,"output":"ate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:06.682047]}\n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098326,"output":"m\n16:12:06.691 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingState with name "},{"event":"cmd_output","timestamp":1607098326,"output":"Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\""},{"event":"cmd_output","timestamp":1607098326,"output":", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"pe"},{"event":"cmd_output","timestamp":1607098326,"output":"nding\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"initializ"},{"event":"cmd_output","timestamp":1607098326,"output":"ing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, repo: "},{"event":"cmd_output","timestamp":1607098326,"output":"Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :p"},{"event":"cmd_output","timestamp":1607098326,"output":"pl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:06.692 [info] Period"},{"event":"cmd_output","timestamp":1607098326,"output":"ic from module Elixir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler.PendingS"},{"event":"cmd_output","timestamp":1607098326,"output":"tate :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]},"},{"event":"cmd_output","timestamp":1607098326,"output":" recurring args: %{allowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_sec: 0, i"},{"event":"cmd_output","timestamp":1607098326,"output":"nitial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publisher_cb: #Function<0.8493005/1 in"},{"event":"cmd_output","timestamp":1607098326,"output":" Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, "},{"event":"cmd_output","timestamp":1607098326,"output":":updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_superviso"},{"event":"cmd_output","timestamp":1607098326,"output":"r: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:12:06.692 [info] Periodic from module Elixir.Ppl.Ppls.STMHand"},{"event":"cmd_output","timestamp":1607098326,"output":"ler.QueuingState with name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, metric_name: {"},{"event":"cmd_output","timestamp":1607098326,"output":"\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{allowed_states: [\"q"},{"event":"cmd_output","timestamp":1607098326,"output":"ueuing\", \"running\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_stat"},{"event":"cmd_output","timestamp":1607098326,"output":"e: \"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.args/0>, rep"},{"event":"cmd_output","timestamp":1607098326,"output":"o: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count,"},{"event":"cmd_output","timestamp":1607098326,"output":" :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:06.694 [info] Per"},{"event":"cmd_output","timestamp":1607098326,"output":"iodic from module Elixir.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHandler.Runni"},{"event":"cmd_output","timestamp":1607098326,"output":"ngState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\""},{"event":"cmd_output","timestamp":1607098326,"output":"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial"},{"event":"cmd_output","timestamp":1607098326,"output":"_query: Ppl.Ppls.Model.Ppls, observed_state: \"running\", publisher_cb: #Function<0.74670282/1 in Ppl."},{"event":"cmd_output","timestamp":1607098326,"output":"Ppls.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :upda"},{"event":"cmd_output","timestamp":1607098326,"output":"ted_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: Pp"},{"event":"cmd_output","timestamp":1607098326,"output":"lsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:12:06.695 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.S"},{"event":"cmd_output","timestamp":1607098326,"output":"toppingState with name Elixir.Ppl.Ppls.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Pp"},{"event":"cmd_output","timestamp":1607098326,"output":"l.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"sto"},{"event":"cmd_output","timestamp":1607098326,"output":"pping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"stopping"},{"event":"cmd_output","timestamp":1607098326,"output":"\", publisher_cb: #Function<0.71803493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, repo: Ppl.Ecto"},{"event":"cmd_output","timestamp":1607098326,"output":"Repo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], "},{"event":"cmd_output","timestamp":1607098326,"output":"schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:06.697 [info] Periodic from "},{"event":"cmd_output","timestamp":1607098326,"output":"module Elixir.Ppl.PplSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHandler.Cr"},{"event":"cmd_output","timestamp":1607098326,"output":"eatedState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-Cre"},{"event":"cmd_output","timestamp":1607098326,"output":"atedState\"]}, recurring args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_q"},{"event":"cmd_output","timestamp":1607098326,"output":"uery: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip, repo: Ppl.E"},{"event":"cmd_output","timestamp":1607098326,"output":"ctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id"},{"event":"cmd_output","timestamp":1607098326,"output":"], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:06.697 [info"},{"event":"cmd_output","timestamp":1607098326,"output":"] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl.PplSubI"},{"event":"cmd_output","timestamp":1607098326,"output":"nits.STMHandler.FetchingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubI"},{"event":"cmd_output","timestamp":1607098326,"output":"nits-STMHandler-FetchingState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", "},{"event":"cmd_output","timestamp":1607098326,"output":"\"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fe"},{"event":"cmd_output","timestamp":1607098326,"output":"tching\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, "},{"event":"cmd_output","timestamp":1607098326,"output":":state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervis"},{"event":"cmd_output","timestamp":1607098326,"output":"or: :skip}\n\u001b[0m\u001b[22m\n16:12:06.699 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.C"},{"event":"cmd_output","timestamp":1607098326,"output":"ompilationState with name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 100 ms, metr"},{"event":"cmd_output","timestamp":1607098326,"output":"ic_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurring args: "},{"event":"cmd_output","timestamp":1607098326,"output":"%{allowed_states: [\"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2, initial"},{"event":"cmd_output","timestamp":1607098326,"output":"_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"compilation\", publisher_cb: :skip, repo:"},{"event":"cmd_output","timestamp":1607098326,"output":" Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :"},{"event":"cmd_output","timestamp":1607098326,"output":"ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:06.700"},{"event":"cmd_output","timestamp":1607098326,"output":" [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with name Elixir.Pp"},{"event":"cmd_output","timestamp":1607098326,"output":"l.PplSubInits.STMHandler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", ["},{"event":"cmd_output","timestamp":1607098326,"output":"\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurring args: %{allowed_states: [\"done\"], cooling"},{"event":"cmd_output","timestamp":1607098326,"output":"_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_init\", publ"},{"event":"cmd_output","timestamp":1607098326,"output":"isher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :resu"},{"event":"cmd_output","timestamp":1607098326,"output":"lt, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b"},{"event":"cmd_output","timestamp":1607098326,"output":"[0m\u001b[22m\n16:12:06.701 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.InitializingStat"},{"event":"cmd_output","timestamp":1607098326,"output":"e with name Elixir.Ppl.PplBlocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl."},{"event":"cmd_output","timestamp":1607098326,"output":"beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states"},{"event":"cmd_output","timestamp":1607098326,"output":": [\"initializing\", \"waiting\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBl"},{"event":"cmd_output","timestamp":1607098326,"output":"ocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :ter"},{"event":"cmd_output","timestamp":1607098326,"output":"minate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.P"},{"event":"cmd_output","timestamp":1607098326,"output":"plBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:06.701 [info] Periodic from mod"},{"event":"cmd_output","timestamp":1607098326,"output":"ule Elixir.Ppl.PplBlocks.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler.WaitingSt"},{"event":"cmd_output","timestamp":1607098326,"output":"ate :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingStat"},{"event":"cmd_output","timestamp":1607098326,"output":"e\"]}, recurring args: %{allowed_states: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 0, initial"},{"event":"cmd_output","timestamp":1607098326,"output":"_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"waiting\", publisher_cb: #Function<0.8975022/"},{"event":"cmd_output","timestamp":1607098326,"output":"1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_"},{"event":"cmd_output","timestamp":1607098326,"output":"request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlock"},{"event":"cmd_output","timestamp":1607098326,"output":"s.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:06.703 [info] Periodic from module Eli"},{"event":"cmd_output","timestamp":1607098326,"output":"xir.Ppl.PplBlocks.STMHandler.RunningState with name Elixir.Ppl.PplBlocks.STMHandler.RunningState :: "},{"event":"cmd_output","timestamp":1607098326,"output":"period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, r"},{"event":"cmd_output","timestamp":1607098326,"output":"ecurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_quer"},{"event":"cmd_output","timestamp":1607098326,"output":"y: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"running\", publisher_cb: #Function<0.28166834/1 in"},{"event":"cmd_output","timestamp":1607098326,"output":" Ppl.PplBlocks.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_requ"},{"event":"cmd_output","timestamp":1607098326,"output":"est, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.P"},{"event":"cmd_output","timestamp":1607098326,"output":"plBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:06.704 [info] Periodic from mod"},{"event":"cmd_output","timestamp":1607098326,"output":"ule Elixir.Ppl.PplBlocks.STMHandler.StoppingState with name Elixir.Ppl.PplBlocks.STMHandler.Stopping"},{"event":"cmd_output","timestamp":1607098326,"output":"State :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-StoppingS"},{"event":"cmd_output","timestamp":1607098326,"output":"tate\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query"},{"event":"cmd_output","timestamp":1607098326,"output":": Ppl.PplBlocks.Model.PplBlocks, observed_state: \"stopping\", publisher_cb: #Function<0.104215991/1 i"},{"event":"cmd_output","timestamp":1607098326,"output":"n Ppl.PplBlocks.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_re"},{"event":"cmd_output","timestamp":1607098326,"output":"quest, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl"},{"event":"cmd_output","timestamp":1607098326,"output":".PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:06.705 [info] Periodic from m"},{"event":"cmd_output","timestamp":1607098326,"output":"odule Elixir.Block.Blocks.STMHandler.InitializingState with name Elixir.Block.Blocks.STMHandler.Init"},{"event":"cmd_output","timestamp":1607098326,"output":"ializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-Ini"},{"event":"cmd_output","timestamp":1607098326,"output":"tializingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initi"},{"event":"cmd_output","timestamp":1607098326,"output":"al_query: Block.Blocks.Model.Blocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Bloc"},{"event":"cmd_output","timestamp":1607098326,"output":"k.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], s"},{"event":"cmd_output","timestamp":1607098326,"output":"chema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:06.706 [info] Periodic "},{"event":"cmd_output","timestamp":1607098326,"output":"from module Elixir.Block.Blocks.STMHandler.RunningState with name Elixir.Block.Blocks.STMHandler.Run"},{"event":"cmd_output","timestamp":1607098326,"output":"ningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-Running"},{"event":"cmd_output","timestamp":1607098326,"output":"State\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, i"},{"event":"cmd_output","timestamp":1607098326,"output":"nitial_query: Block.Blocks.Model.Blocks, observed_state: \"running\", publisher_cb: :skip, repo: Block"},{"event":"cmd_output","timestamp":1607098326,"output":".EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], sc"},{"event":"cmd_output","timestamp":1607098326,"output":"hema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:06.707 [info] Periodic f"},{"event":"cmd_output","timestamp":1607098326,"output":"rom module Elixir.Block.Blocks.STMHandler.StoppingState with name Elixir.Block.Blocks.STMHandler.Sto"},{"event":"cmd_output","timestamp":1607098326,"output":"ppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-Stoppi"},{"event":"cmd_output","timestamp":1607098326,"output":"ngState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_qu"},{"event":"cmd_output","timestamp":1607098326,"output":"ery: Block.Blocks.Model.Blocks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRep"},{"event":"cmd_output","timestamp":1607098326,"output":"o, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Bl"},{"event":"cmd_output","timestamp":1607098326,"output":"ock.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:06.707 [info] Periodic from modu"},{"event":"cmd_output","timestamp":1607098326,"output":"le Elixir.Block.Tasks.STMHandler.PendingState with name Elixir.Block.Tasks.STMHandler.PendingState :"},{"event":"cmd_output","timestamp":1607098326,"output":": period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingState\"]}, re"},{"event":"cmd_output","timestamp":1607098326,"output":"curring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Tasks"},{"event":"cmd_output","timestamp":1607098326,"output":".Model.Tasks, observed_state: \"pending\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id,"},{"event":"cmd_output","timestamp":1607098326,"output":" :terminate_request, :updated_at, :state, :recovery_count, :block_id, :build_request_id], schema: Bl"},{"event":"cmd_output","timestamp":1607098326,"output":"ock.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:06.708 [info] Periodic from module"},{"event":"cmd_output","timestamp":1607098326,"output":" Elixir.Block.Tasks.STMHandler.RunningState with name Elixir.Block.Tasks.STMHandler.RunningState :: "},{"event":"cmd_output","timestamp":1607098326,"output":"period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningState\"]}, recu"},{"event":"cmd_output","timestamp":1607098326,"output":"rring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: "},{"event":"cmd_output","timestamp":1607098326,"output":"Block.Tasks.Model.Tasks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, retur"},{"event":"cmd_output","timestamp":1607098326,"output":"ning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Task"},{"event":"cmd_output","timestamp":1607098326,"output":"s.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:06.708 [info] Periodic from module Elixir."},{"event":"cmd_output","timestamp":1607098326,"output":"Block.Tasks.STMHandler.StoppingState with name Elixir.Block.Tasks.STMHandler.StoppingState :: period"},{"event":"cmd_output","timestamp":1607098326,"output":": 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]}, recurring"},{"event":"cmd_output","timestamp":1607098326,"output":" args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Mode"},{"event":"cmd_output","timestamp":1607098326,"output":"l.Tasks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :te"},{"event":"cmd_output","timestamp":1607098326,"output":"rminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, "},{"event":"cmd_output","timestamp":1607098326,"output":"task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:06.818 [info] ppl_id: 7c44d7ea-5e3d-49e4-bdfa-bbe92cca2b9"},{"event":"cmd_output","timestamp":1607098326,"output":"b, type: PplRequests, event: persisted source_args for pipeline: 7c44d7ea-5e3d-49e4-bdfa-bbe92cca2b9"},{"event":"cmd_output","timestamp":1607098326,"output":"b, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:"},{"event":"cmd_output","timestamp":1607098326,"output":"06.823 [info] ppl_id: 7c44d7ea-5e3d-49e4-bdfa-bbe92cca2b9b, type: PplSubInits, state: fetching, eve"},{"event":"cmd_output","timestamp":1607098326,"output":"nt: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b["},{"event":"cmd_output","timestamp":1607098326,"output":"0m\u001b[22m\n16:12:06.851 [info] ppl_id: 7c44d7ea-5e3d-49e4-bdfa-bbe92cca2b9b, type: PplSubInits, state"},{"event":"cmd_output","timestamp":1607098326,"output":": regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_"},{"event":"cmd_output","timestamp":1607098326,"output":"change/1(L90), \n\u001b[0m\u001b[22m\n16:12:06.881 [info] ppl_id: 7c44d7ea-5e3d-49e4-bdfa-bbe92cca2b9b, type:"},{"event":"cmd_output","timestamp":1607098326,"output":" PplRequests, event: persisted definition for request with request_token: 744c91b2-364b-11eb-8563-52"},{"event":"cmd_output","timestamp":1607098326,"output":"54005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098326,"output":"\u001b[22m\n16:12:06.886 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.M"},{"event":"cmd_output","timestamp":1607098326,"output":"etadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:12:06.884024], name: \"master-.semaphore/se"},{"event":"cmd_output","timestamp":1607098326,"output":"maphore.yml\", organization_id: \"525c1075-defe-489f-932c-2aec51356bf5\", project_id: \"50861ede-c88c-44"},{"event":"cmd_output","timestamp":1607098326,"output":"e7-8973-d854dad8bde4\", queue_id: \"a1825a99-2ec1-4692-a6e0-a32ce84442d1\", scope: \"project\", updated_a"},{"event":"cmd_output","timestamp":1607098326,"output":"t: ~N[2020-12-04 16:12:06.884036], user_generated: false}}\n\u001b[0m\u001b[22m\n16:12:06.904 [info] ppl_id: "},{"event":"cmd_output","timestamp":1607098326,"output":"not_available, event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1("},{"event":"cmd_output","timestamp":1607098326,"output":"L105), \n\u001b[0m\u001b[22m\n16:12:06.904 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.R"},{"event":"cmd_output","timestamp":1607098326,"output":"egularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:06.904 [info] ppl_id: 7c44d7ea-5e3d-49e4-bdfa-b"},{"event":"cmd_output","timestamp":1607098326,"output":"be92cca2b9b, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0"},{"event":"cmd_output","timestamp":1607098326,"output":", origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:06."},{"event":"cmd_output","timestamp":1607098326,"output":"904 [info] ppl_id: 7c44d7ea-5e3d-49e4-bdfa-bbe92cca2b9b, type: PplBlocks, block_index: 1, state: in"},{"event":"cmd_output","timestamp":1607098326,"output":"itializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInit"},{"event":"cmd_output","timestamp":1607098326,"output":"State.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:06.904 [info] ppl_id: 7c44d7ea-5e3d-49e4-bdfa-bbe92cca2b9"},{"event":"cmd_output","timestamp":1607098326,"output":"b, type: PplBlocks, block_index: 2, state: initializing, event: created, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098326,"output":"Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:06.904 [info]"},{"event":"cmd_output","timestamp":1607098326,"output":" ppl_id: 7c44d7ea-5e3d-49e4-bdfa-bbe92cca2b9b, type: PplBlocks, block_index: 3, state: initializing"},{"event":"cmd_output","timestamp":1607098326,"output":", event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_"},{"event":"cmd_output","timestamp":1607098326,"output":"ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:06.904 [info] ppl_id: 7c44d7ea-5e3d-49e4-bdfa-bbe92cca2b9b, type: P"},{"event":"cmd_output","timestamp":1607098326,"output":"plBlocks, block_index: 4, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098326,"output":".PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:06.909 [info] ppl_id: "},{"event":"cmd_output","timestamp":1607098326,"output":"7c44d7ea-5e3d-49e4-bdfa-bbe92cca2b9b, type: PplSubInits, state: done, result: passed, event: exit_sc"},{"event":"cmd_output","timestamp":1607098326,"output":"heduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098326,"output":":12:06.930 [info] ppl_id: 7c44d7ea-5e3d-49e4-bdfa-bbe92cca2b9b, type: PplBlocks, block_index: 0, st"},{"event":"cmd_output","timestamp":1607098326,"output":"ate: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_ch"},{"event":"cmd_output","timestamp":1607098326,"output":"ange/1(L90), \n\u001b[0m\u001b[22m\n16:12:06.932 [info] ppl_id: 7c44d7ea-5e3d-49e4-bdfa-bbe92cca2b9b, type: P"},{"event":"cmd_output","timestamp":1607098326,"output":"pls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_s"},{"event":"cmd_output","timestamp":1607098326,"output":"tate_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:06.939 [info] ppl_id: 7c44d7ea-5e3d-49e4-bdfa-bbe92cca2b9b, "},{"event":"cmd_output","timestamp":1607098326,"output":"type: PplBlocks, block_index: 1, state: waiting, event: exit_scheduling, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098326,"output":"Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:06.946 [info] ppl_id: 7c44d7ea-5"},{"event":"cmd_output","timestamp":1607098326,"output":"e3d-49e4-bdfa-bbe92cca2b9b, type: PplBlocks, block_index: 2, state: waiting, event: exit_scheduling,"},{"event":"cmd_output","timestamp":1607098326,"output":" recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:06.94"},{"event":"cmd_output","timestamp":1607098326,"output":"9 [info] ppl_id: 7c44d7ea-5e3d-49e4-bdfa-bbe92cca2b9b, type: Ppls, state: queuing, event: exit_sche"},{"event":"cmd_output","timestamp":1607098326,"output":"duling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098326,"output":"2:06.954 [info] ppl_id: 7c44d7ea-5e3d-49e4-bdfa-bbe92cca2b9b, type: PplBlocks, block_index: 3, stat"},{"event":"cmd_output","timestamp":1607098326,"output":"e: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chan"},{"event":"cmd_output","timestamp":1607098326,"output":"ge/1(L90), \n\u001b[0m\u001b[22m\n16:12:06.960 [info] ppl_id: 7c44d7ea-5e3d-49e4-bdfa-bbe92cca2b9b, type: Ppl"},{"event":"cmd_output","timestamp":1607098326,"output":"s, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_sta"},{"event":"cmd_output","timestamp":1607098326,"output":"te_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:06.965 [info] ppl_id: 7c44d7ea-5e3d-49e4-bdfa-bbe92cca2b9b, ty"},{"event":"cmd_output","timestamp":1607098326,"output":"pe: PplBlocks, block_index: 4, state: waiting, event: exit_scheduling, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098326,"output":"ixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:06.967 [info] PplBlocks WaitingSta"},{"event":"cmd_output","timestamp":1607098326,"output":"te STM is scheduling block 3 from pipeline: \"7c44d7ea-5e3d-49e4-bdfa-bbe92cca2b9b\"\n\u001b[0m\u001b[22m\n16:12"},{"event":"cmd_output","timestamp":1607098326,"output":":06.978 [info] block_id: 59cda0ef-261a-47fe-9ab0-33348b2e0e23, type: BlockRequests, event: persiste"},{"event":"cmd_output","timestamp":1607098326,"output":"d block run request from ppl 7c44d7ea-5e3d-49e4-bdfa-bbe92cca2b9b for block 3, origin: Elixir.Block."},{"event":"cmd_output","timestamp":1607098326,"output":"BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:06.981 [info] "},{"event":"cmd_output","timestamp":1607098326,"output":"block_id: 59cda0ef-261a-47fe-9ab0-33348b2e0e23, type: Blocks, state: initializing, event: initializi"},{"event":"cmd_output","timestamp":1607098326,"output":"ng, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098326,"output":"6:12:06.985 [info] Block 3 of pipeline with id: 7c44d7ea-5e3d-49e4-bdfa-bbe92cca2b9b scheduled in b"},{"event":"cmd_output","timestamp":1607098326,"output":"lock service with id: : \"59cda0ef-261a-47fe-9ab0-33348b2e0e23\"\n\u001b[0m\u001b[22m\n16:12:06.989 [info] bloc"},{"event":"cmd_output","timestamp":1607098326,"output":"k_id: 59cda0ef-261a-47fe-9ab0-33348b2e0e23, type: BlockRequests, event: persisted build and sub_ppl "},{"event":"cmd_output","timestamp":1607098326,"output":"details for block_request: 59cda0ef-261a-47fe-9ab0-33348b2e0e23, origin: Elixir.Block.BlockRequests."},{"event":"cmd_output","timestamp":1607098326,"output":"Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:06.989 [info] ppl_id: 7c44d7ea-5"},{"event":"cmd_output","timestamp":1607098326,"output":"e3d-49e4-bdfa-bbe92cca2b9b, type: PplBlocks, block_index: 3, state: running, event: exit_scheduling,"},{"event":"cmd_output","timestamp":1607098326,"output":" recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:06.99"},{"event":"cmd_output","timestamp":1607098326,"output":"4 [info] block_id: 59cda0ef-261a-47fe-9ab0-33348b2e0e23, type: Tasks, state: pending, event: create"},{"event":"cmd_output","timestamp":1607098326,"output":"d, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b["},{"event":"cmd_output","timestamp":1607098326,"output":"0m\u001b[22m\n16:12:06.997 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"7c44d"},{"event":"cmd_output","timestamp":1607098326,"output":"7ea-5e3d-49e4-bdfa-bbe92cca2b9b\"\n\u001b[0m\u001b[22m\n16:12:06.998 [info] block_id: 59cda0ef-261a-47fe-9ab0-"},{"event":"cmd_output","timestamp":1607098326,"output":"33348b2e0e23, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098327,"output":"r.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:07.006 [info] block_id: 1cd86980-0337"},{"event":"cmd_output","timestamp":1607098327,"output":"-4530-aa85-b4287f358aa5, type: BlockRequests, event: persisted block run request from ppl 7c44d7ea-5"},{"event":"cmd_output","timestamp":1607098327,"output":"e3d-49e4-bdfa-bbe92cca2b9b for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQuerie"},{"event":"cmd_output","timestamp":1607098327,"output":"s.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:07.013 [info] block_id: 1cd86980-0337-4530-aa85-b4287"},{"event":"cmd_output","timestamp":1607098327,"output":"f358aa5, type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.B"},{"event":"cmd_output","timestamp":1607098327,"output":"lock.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:07.017 [info] Block 0 of pipeline"},{"event":"cmd_output","timestamp":1607098327,"output":" with id: 7c44d7ea-5e3d-49e4-bdfa-bbe92cca2b9b scheduled in block service with id: : \"1cd86980-0337-"},{"event":"cmd_output","timestamp":1607098327,"output":"4530-aa85-b4287f358aa5\"\n\u001b[0m\u001b[22m\n16:12:07.024 [info] block_id: 59cda0ef-261a-47fe-9ab0-33348b2e0"},{"event":"cmd_output","timestamp":1607098327,"output":"e23, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.S"},{"event":"cmd_output","timestamp":1607098327,"output":"TM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:07.031 [info] ppl_id: 7c44d7ea-5e3d-49e4-bdfa-b"},{"event":"cmd_output","timestamp":1607098327,"output":"be92cca2b9b, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count"},{"event":"cmd_output","timestamp":1607098327,"output":": 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:07.040 [info] block"},{"event":"cmd_output","timestamp":1607098327,"output":"_id: 1cd86980-0337-4530-aa85-b4287f358aa5, type: BlockRequests, event: persisted build and sub_ppl d"},{"event":"cmd_output","timestamp":1607098327,"output":"etails for block_request: 1cd86980-0337-4530-aa85-b4287f358aa5, origin: Elixir.Block.BlockRequests.M"},{"event":"cmd_output","timestamp":1607098327,"output":"odel.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:07.052 [info] block_id: 1cd86980-"},{"event":"cmd_output","timestamp":1607098327,"output":"0337-4530-aa85-b4287f358aa5, type: Tasks, state: pending, event: created, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098327,"output":" Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:07.054 [info] "},{"event":"cmd_output","timestamp":1607098327,"output":" block_id: 1cd86980-0337-4530-aa85-b4287f358aa5, type: Blocks, state: running, event: exit_schedulin"},{"event":"cmd_output","timestamp":1607098327,"output":"g, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:07."},{"event":"cmd_output","timestamp":1607098327,"output":"077 [info] block_id: 1cd86980-0337-4530-aa85-b4287f358aa5, type: Tasks, state: running, event: exit"},{"event":"cmd_output","timestamp":1607098328,"output":"_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098328,"output":"\n16:12:08.063 [info] block_id: 59cda0ef-261a-47fe-9ab0-33348b2e0e23, type: Tasks, state: done, even"},{"event":"cmd_output","timestamp":1607098328,"output":"t: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098328,"output":"m\u001b[22m\n16:12:08.085 [info] block_id: 59cda0ef-261a-47fe-9ab0-33348b2e0e23, type: Blocks, state: do"},{"event":"cmd_output","timestamp":1607098328,"output":"ne, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90"},{"event":"cmd_output","timestamp":1607098328,"output":"), \n\u001b[0m\u001b[22m\n16:12:08.098 [info] ppl_id: 7c44d7ea-5e3d-49e4-bdfa-bbe92cca2b9b, block_id: 59cda0e"},{"event":"cmd_output","timestamp":1607098328,"output":"f-261a-47fe-9ab0-33348b2e0e23, type: PplBlocks, block_index: 3, state: done, result: failed, event: "},{"event":"cmd_output","timestamp":1607098328,"output":"exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098328,"output":"22m\n16:12:08.175 [info] block_id: 1cd86980-0337-4530-aa85-b4287f358aa5, type: Tasks, state: done, "},{"event":"cmd_output","timestamp":1607098328,"output":"event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \r"},{"event":"cmd_output","timestamp":1607098328,"output":"\n\u001b[0m\u001b[22m\n16:12:08.186 [info] block_id: 1cd86980-0337-4530-aa85-b4287f358aa5, type: Blocks, state"},{"event":"cmd_output","timestamp":1607098328,"output":": done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1"},{"event":"cmd_output","timestamp":1607098328,"output":"(L90), \n\u001b[0m\u001b[22m\n16:12:08.196 [info] ppl_id: 7c44d7ea-5e3d-49e4-bdfa-bbe92cca2b9b, block_id: 1cd"},{"event":"cmd_output","timestamp":1607098328,"output":"86980-0337-4530-aa85-b4287f358aa5, type: PplBlocks, block_index: 0, state: done, result: passed, eve"},{"event":"cmd_output","timestamp":1607098328,"output":"nt: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b["},{"event":"cmd_output","timestamp":1607098328,"output":"0m\u001b[22m\n16:12:08.207 [info] PplBlocks WaitingState STM is scheduling block 1 from pipeline: \"7c44d"},{"event":"cmd_output","timestamp":1607098328,"output":"7ea-5e3d-49e4-bdfa-bbe92cca2b9b\"\n\u001b[0m\u001b[22m\n16:12:08.218 [info] ppl_id: 7c44d7ea-5e3d-49e4-bdfa-bb"},{"event":"cmd_output","timestamp":1607098328,"output":"e92cca2b9b, type: PplBlocks, block_index: 1, state: done, result: canceled, event: exit_scheduling, "},{"event":"cmd_output","timestamp":1607098328,"output":"recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:08.223"},{"event":"cmd_output","timestamp":1607098328,"output":" [info] PplBlocks WaitingState STM is scheduling block 4 from pipeline: \"7c44d7ea-5e3d-49e4-bdfa-bb"},{"event":"cmd_output","timestamp":1607098328,"output":"e92cca2b9b\"\n\u001b[0m\u001b[22m\n16:12:08.230 [info] ppl_id: 7c44d7ea-5e3d-49e4-bdfa-bbe92cca2b9b, type: Ppl"},{"event":"cmd_output","timestamp":1607098328,"output":"Blocks, block_index: 4, state: done, result: canceled, event: exit_scheduling, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098328,"output":"igin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:08.235 [info] PplBlocks Wa"},{"event":"cmd_output","timestamp":1607098328,"output":"itingState STM is scheduling block 2 from pipeline: \"7c44d7ea-5e3d-49e4-bdfa-bbe92cca2b9b\"\n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098328,"output":"m\n16:12:08.239 [info] ppl_id: 7c44d7ea-5e3d-49e4-bdfa-bbe92cca2b9b, type: PplBlocks, block_index: "},{"event":"cmd_output","timestamp":1607098328,"output":"2, state: done, result: canceled, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.S"},{"event":"cmd_output","timestamp":1607098328,"output":"TM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:08.258 [info] ppl_id: 7c44d7ea-5e3d-49e4-bdfa-b"},{"event":"cmd_output","timestamp":1607098328,"output":"be92cca2b9b, type: Ppls, state: done, result: failed, event: exit_scheduling, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098328,"output":"gin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:08.287 [info] Request: 'par"},{"event":"cmd_output","timestamp":1607098328,"output":"tial_rebuild', request: %{ppl_id: \"7c44d7ea-5e3d-49e4-bdfa-bbe92cca2b9b\", request_token: \"e57a9f9e-6"},{"event":"cmd_output","timestamp":1607098328,"output":"eb8-4e01-bf60-684c06f46d28\", user_id: \"rebuild_user\"}\n\u001b[0m\u001b[22m\n16:12:08.290 [info] ppl_id: 0587e"},{"event":"cmd_output","timestamp":1607098328,"output":"87f-cc66-4058-8a61-4854740eb1fb, type: PplRequests, event: persisted schedule request with request_t"},{"event":"cmd_output","timestamp":1607098328,"output":"oken: e57a9f9e-6eb8-4e01-bf60-684c06f46d28, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries."},{"event":"cmd_output","timestamp":1607098328,"output":"process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:08.293 [info] ppl_id: 0587e87f-cc66-4058-8a61-4854740eb"},{"event":"cmd_output","timestamp":1607098328,"output":"1fb, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098328,"output":"s.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:08.300 [info] Persisted ppl_sub_in"},{"event":"cmd_output","timestamp":1607098328,"output":"it for pipeline with ppl_id: 0587e87f-cc66-4058-8a61-4854740eb1fb: %Ppl.PplSubInits.Model.PplSubInit"},{"event":"cmd_output","timestamp":1607098328,"output":"s{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_descri"},{"event":"cmd_output","timestamp":1607098328,"output":"ption: nil, id: 167, in_scheduling: false, init_type: \"rebuild\", inserted_at: ~N[2020-12-04 16:12:08"},{"event":"cmd_output","timestamp":1607098328,"output":".299761], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"0587e87f-cc66-4058-8a61-4854740eb1fb\", recovery_count: 0, result: nil, result_reason: n"},{"event":"cmd_output","timestamp":1607098328,"output":"il, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04"},{"event":"cmd_output","timestamp":1607098328,"output":" 16:12:08.299773]}\n\u001b[0m\u001b[22m\n16:12:08.316 [info] Request: 'partial_rebuild', request: %{ppl_id: \""},{"event":"cmd_output","timestamp":1607098328,"output":"7c44d7ea-5e3d-49e4-bdfa-bbe92cca2b9b\", request_token: \"e57a9f9e-6eb8-4e01-bf60-684c06f46d28\", user_i"},{"event":"cmd_output","timestamp":1607098328,"output":"d: \"rebuild_user\"}\n\u001b[0m\u001b[22m\n16:12:08.334 [info] PplRequestsQueries.insert_request() - There is a"},{"event":"cmd_output","timestamp":1607098328,"output":"lready pipeline request with request_token: : \"e57a9f9e-6eb8-4e01-bf60-684c06f46d28\"\n\u001b[0m\u001b[32m\r * "},{"event":"cmd_output","timestamp":1607098328,"output":"test gRPC partial_rebuild() is idempotent (1800.1ms)\u001b[0m\n * test gRPC validate_yaml() - only valid"},{"event":"cmd_output","timestamp":1607098328,"output":" yaml definition passed\r * test gRPC validate_yaml() - only valid yaml definition passed (skipped)\r"},{"event":"cmd_output","timestamp":1607098328,"output":"\n * test gRPC schedule_extension() GitHub - succedes when given valid params\u001b[22m\n16:12:08.421 [in"},{"event":"cmd_output","timestamp":1607098328,"output":"fo] Request: 'run: %{\"branch_id\" => \"76fbc9e6-05db-4376-bbd6-ea329b3983af\", \"branch_name\" => \"maste"},{"event":"cmd_output","timestamp":1607098328,"output":"r\", \"client_id\" => \"328c742132e5407abd7d\", \"commit_sha\" => \"eea1377\", \"file_name\" => \"semaphore.yml\""},{"event":"cmd_output","timestamp":1607098328,"output":", \"hook_id\" => \"f9a8fa5d-96ac-4bcd-ac58-56b656bd9c86\", \"label\" => \"schedule_extension\", \"organizatio"},{"event":"cmd_output","timestamp":1607098328,"output":"n_id\" => \"cf6df702-245b-42d3-ace9-7e6ff73fbaf7\", \"owner\" => \"renderedtext\", \"project_id\" => \"123\", \""},{"event":"cmd_output","timestamp":1607098328,"output":"repo_name\" => \"pipelines-test-repo-auto-call\", \"request_token\" => \"7559abd0-364b-11eb-95d5-525400546"},{"event":"cmd_output","timestamp":1607098328,"output":"4e2\", \"requester_id\" => \"8cc5eaa6-65e8-4f9c-b63e-2ca3367a7d8c\", \"service\" => \"git_hub\", \"suppressed_"},{"event":"cmd_output","timestamp":1607098328,"output":"attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"6afb43c3-29c3-477b-a101-0e483a0a68e5\","},{"event":"cmd_output","timestamp":1607098328,"output":" \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:12:08.456 [info] ppl_id: 9b16c5ea-7709-4ccb-b0bb-647"},{"event":"cmd_output","timestamp":1607098328,"output":"9c15455ff, type: PplRequests, event: persisted schedule request with request_token: 7559abd0-364b-11"},{"event":"cmd_output","timestamp":1607098328,"output":"eb-95d5-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55"},{"event":"cmd_output","timestamp":1607098328,"output":"), \n\u001b[0m\u001b[22m\n16:12:08.463 [info] ppl_id: 9b16c5ea-7709-4ccb-b0bb-6479c15455ff, type: Ppls, state"},{"event":"cmd_output","timestamp":1607098328,"output":": initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.pr"},{"event":"cmd_output","timestamp":1607098328,"output":"ocess_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:08.472 [info] Project 123 and branch masterlatest_wf det"},{"event":"cmd_output","timestamp":1607098328,"output":"ails updated: \"wf_id: 6afb43c3-29c3-477b-a101-0e483a0a68e5, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:12:08.476 ["},{"event":"cmd_output","timestamp":1607098328,"output":"info] Persisted ppl_sub_init for pipeline with ppl_id: 9b16c5ea-7709-4ccb-b0bb-6479c15455ff: %Ppl.P"},{"event":"cmd_output","timestamp":1607098328,"output":"plSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile"},{"event":"cmd_output","timestamp":1607098328,"output":"_task_id: nil, error_description: nil, id: 168, in_scheduling: false, init_type: \"regular\", inserted"},{"event":"cmd_output","timestamp":1607098328,"output":"_at: ~N[2020-12-04 16:12:08.474138], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"9b16c5ea-7709-4ccb-b0bb-6479c15455ff\", recovery_count: 0, re"},{"event":"cmd_output","timestamp":1607098328,"output":"sult: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil"},{"event":"cmd_output","timestamp":1607098328,"output":", updated_at: ~N[2020-12-04 16:12:08.474154]}\n\u001b[0m\u001b[22m\n16:12:08.485 [info] Periodic from module "},{"event":"cmd_output","timestamp":1607098328,"output":"Elixir.Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.STMHandler.InitializingState "},{"event":"cmd_output","timestamp":1607098328,"output":":: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]},"},{"event":"cmd_output","timestamp":1607098328,"output":" recurring args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], cooling_time_sec: 0, initial"},{"event":"cmd_output","timestamp":1607098328,"output":"_query: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher_cb: #Function<0.125326080/1 i"},{"event":"cmd_output","timestamp":1607098328,"output":"n Ppl.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_req"},{"event":"cmd_output","timestamp":1607098328,"output":"uest, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_sup"},{"event":"cmd_output","timestamp":1607098328,"output":"ervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:08.485 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.Pen"},{"event":"cmd_output","timestamp":1607098328,"output":"dingState with name Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.be"},{"event":"cmd_output","timestamp":1607098328,"output":"holder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"pending\""},{"event":"cmd_output","timestamp":1607098328,"output":", \"queuing\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_s"},{"event":"cmd_output","timestamp":1607098328,"output":"tate: \"pending\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, re"},{"event":"cmd_output","timestamp":1607098328,"output":"po: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count"},{"event":"cmd_output","timestamp":1607098328,"output":", :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:12:08.4"},{"event":"cmd_output","timestamp":1607098328,"output":"88 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.QueuingState with name Elixir.Ppl.Ppls.ST"},{"event":"cmd_output","timestamp":1607098328,"output":"MHandler.QueuingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler"},{"event":"cmd_output","timestamp":1607098328,"output":"-QueuingState\"]}, recurring args: %{allowed_states: [\"queuing\", \"running\", \"done\"], cooling_time_sec"},{"event":"cmd_output","timestamp":1607098328,"output":": -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", publisher_cb: #Function<0.12510"},{"event":"cmd_output","timestamp":1607098328,"output":"2843/1 in Ppl.Ppls.STMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_"},{"event":"cmd_output","timestamp":1607098328,"output":"request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_"},{"event":"cmd_output","timestamp":1607098328,"output":"supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:08.490 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler."},{"event":"cmd_output","timestamp":1607098328,"output":"RunningState with name Elixir.Ppl.Ppls.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl"},{"event":"cmd_output","timestamp":1607098328,"output":".beholder-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"runni"},{"event":"cmd_output","timestamp":1607098328,"output":"ng\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: "},{"event":"cmd_output","timestamp":1607098328,"output":"\"running\", publisher_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler.RunningState.args/0>, repo: P"},{"event":"cmd_output","timestamp":1607098328,"output":"pl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :pp"},{"event":"cmd_output","timestamp":1607098328,"output":"l_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:12:08.491 [i"},{"event":"cmd_output","timestamp":1607098328,"output":"nfo] Periodic from module Elixir.Ppl.Ppls.STMHandler.StoppingState with name Elixir.Ppl.Ppls.STMHan"},{"event":"cmd_output","timestamp":1607098328,"output":"dler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-St"},{"event":"cmd_output","timestamp":1607098328,"output":"oppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initia"},{"event":"cmd_output","timestamp":1607098328,"output":"l_query: Ppl.Ppls.Model.Ppls, observed_state: \"stopping\", publisher_cb: #Function<0.71803493/1 in Pp"},{"event":"cmd_output","timestamp":1607098328,"output":"l.Ppls.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :u"},{"event":"cmd_output","timestamp":1607098328,"output":"pdated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor:"},{"event":"cmd_output","timestamp":1607098328,"output":" :skip}\n\u001b[0m\u001b[22m\n16:12:08.493 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.Crea"},{"event":"cmd_output","timestamp":1607098328,"output":"tedState with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 100 ms, metric_name: {\""},{"event":"cmd_output","timestamp":1607098328,"output":"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args: %{allowed_state"},{"event":"cmd_output","timestamp":1607098328,"output":"s: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, obse"},{"event":"cmd_output","timestamp":1607098328,"output":"rved_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request,"},{"event":"cmd_output","timestamp":1607098328,"output":" :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits,"},{"event":"cmd_output","timestamp":1607098328,"output":" task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:08.494 [info] Periodic from module Elixir.Ppl.PplSubInit"},{"event":"cmd_output","timestamp":1607098328,"output":"s.STMHandler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 "},{"event":"cmd_output","timestamp":1607098328,"output":"ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring a"},{"event":"cmd_output","timestamp":1607098328,"output":"rgs: %{allowed_states: [\"regular_init\", \"compilation\", \"done\"], cooling_time_sec: -2, initial_query:"},{"event":"cmd_output","timestamp":1607098328,"output":" Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoR"},{"event":"cmd_output","timestamp":1607098328,"output":"epo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], s"},{"event":"cmd_output","timestamp":1607098328,"output":"chema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:08.496 [info] P"},{"event":"cmd_output","timestamp":1607098328,"output":"eriodic from module Elixir.Ppl.PplSubInits.STMHandler.CompilationState with name Elixir.Ppl.PplSubIn"},{"event":"cmd_output","timestamp":1607098328,"output":"its.STMHandler.CompilationState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSu"},{"event":"cmd_output","timestamp":1607098328,"output":"bInits-STMHandler-CompilationState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilati"},{"event":"cmd_output","timestamp":1607098328,"output":"on\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, ob"},{"event":"cmd_output","timestamp":1607098328,"output":"served_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_re"},{"event":"cmd_output","timestamp":1607098328,"output":"quest, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSub"},{"event":"cmd_output","timestamp":1607098328,"output":"Inits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:08.497 [info] Periodic from module Elixir.Ppl.PplS"},{"event":"cmd_output","timestamp":1607098328,"output":"ubInits.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: "},{"event":"cmd_output","timestamp":1607098328,"output":"period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\""},{"event":"cmd_output","timestamp":1607098328,"output":"]}, recurring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits."},{"event":"cmd_output","timestamp":1607098328,"output":"Model.PplSubInits, observed_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returnin"},{"event":"cmd_output","timestamp":1607098328,"output":"g: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Pp"},{"event":"cmd_output","timestamp":1607098328,"output":"lSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:08.499 [info] Periodic from "},{"event":"cmd_output","timestamp":1607098328,"output":"module Elixir.Ppl.PplBlocks.STMHandler.InitializingState with name Elixir.Ppl.PplBlocks.STMHandler.I"},{"event":"cmd_output","timestamp":1607098328,"output":"nitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler"},{"event":"cmd_output","timestamp":1607098328,"output":"-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"waiting\", \"done\"], coolin"},{"event":"cmd_output","timestamp":1607098328,"output":"g_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"initializing\", publish"},{"event":"cmd_output","timestamp":1607098328,"output":"er_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result,"},{"event":"cmd_output","timestamp":1607098328,"output":" :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :s"},{"event":"cmd_output","timestamp":1607098328,"output":"kip}\n\u001b[0m\u001b[22m\n16:12:08.500 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.WaitingSt"},{"event":"cmd_output","timestamp":1607098328,"output":"ate with name Elixir.Ppl.PplBlocks.STMHandler.WaitingState :: period: 1000 ms, metric_name: {\"Ppl.be"},{"event":"cmd_output","timestamp":1607098328,"output":"holder-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurring args: %{allowed_states: [\"wai"},{"event":"cmd_output","timestamp":1607098328,"output":"ting\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observ"},{"event":"cmd_output","timestamp":1607098328,"output":"ed_state: \"waiting\", publisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.ar"},{"event":"cmd_output","timestamp":1607098328,"output":"gs/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recov"},{"event":"cmd_output","timestamp":1607098328,"output":"ery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b"},{"event":"cmd_output","timestamp":1607098328,"output":"[0m\u001b[22m\n16:12:08.501 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.RunningState wit"},{"event":"cmd_output","timestamp":1607098328,"output":"h name Elixir.Ppl.PplBlocks.STMHandler.RunningState :: period: 1000 ms, metric_name: {\"Ppl.beholder-"},{"event":"cmd_output","timestamp":1607098328,"output":"wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", "},{"event":"cmd_output","timestamp":1607098328,"output":"\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_st"},{"event":"cmd_output","timestamp":1607098328,"output":"ate: \"running\", publisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0"},{"event":"cmd_output","timestamp":1607098328,"output":">, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_"},{"event":"cmd_output","timestamp":1607098328,"output":"count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :s"},{"event":"cmd_output","timestamp":1607098328,"output":"kip}\n\u001b[0m\u001b[22m\n16:12:08.503 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.StoppingS"},{"event":"cmd_output","timestamp":1607098328,"output":"tate with name Elixir.Ppl.PplBlocks.STMHandler.StoppingState :: period: 1000 ms, metric_name: {\"Ppl."},{"event":"cmd_output","timestamp":1607098328,"output":"beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\""},{"event":"cmd_output","timestamp":1607098328,"output":"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_sta"},{"event":"cmd_output","timestamp":1607098328,"output":"te: \"stopping\", publisher_cb: #Function<0.104215991/1 in Ppl.PplBlocks.STMHandler.StoppingState.args"},{"event":"cmd_output","timestamp":1607098328,"output":"/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recover"},{"event":"cmd_output","timestamp":1607098328,"output":"y_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: "},{"event":"cmd_output","timestamp":1607098328,"output":":skip}\n\u001b[0m\u001b[22m\n16:12:08.504 [info] Periodic from module Elixir.Block.Blocks.STMHandler.Initiali"},{"event":"cmd_output","timestamp":1607098328,"output":"zingState with name Elixir.Block.Blocks.STMHandler.InitializingState :: period: 100 ms, metric_name:"},{"event":"cmd_output","timestamp":1607098328,"output":" {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_"},{"event":"cmd_output","timestamp":1607098328,"output":"states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Blocks.Model.Blocks, observed"},{"event":"cmd_output","timestamp":1607098328,"output":"_state: \"initializing\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_reque"},{"event":"cmd_output","timestamp":1607098328,"output":"st, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_superv"},{"event":"cmd_output","timestamp":1607098328,"output":"isor: :skip}\n\u001b[0m\u001b[22m\n16:12:08.505 [info] Periodic from module Elixir.Block.Blocks.STMHandler.Ru"},{"event":"cmd_output","timestamp":1607098328,"output":"nningState with name Elixir.Block.Blocks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"P"},{"event":"cmd_output","timestamp":1607098328,"output":"pl.beholder-wake_up\", [\"Block-Blocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: ["},{"event":"cmd_output","timestamp":1607098328,"output":"\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, obse"},{"event":"cmd_output","timestamp":1607098328,"output":"rved_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_reques"},{"event":"cmd_output","timestamp":1607098328,"output":"t, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervi"},{"event":"cmd_output","timestamp":1607098328,"output":"sor: :skip}\n\u001b[0m\u001b[22m\n16:12:08.506 [info] Periodic from module Elixir.Block.Blocks.STMHandler.Sto"},{"event":"cmd_output","timestamp":1607098328,"output":"ppingState with name Elixir.Block.Blocks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\""},{"event":"cmd_output","timestamp":1607098328,"output":"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states:"},{"event":"cmd_output","timestamp":1607098328,"output":" [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_stat"},{"event":"cmd_output","timestamp":1607098328,"output":"e: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :upda"},{"event":"cmd_output","timestamp":1607098328,"output":"ted_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :sk"},{"event":"cmd_output","timestamp":1607098328,"output":"ip}\n\u001b[0m\u001b[22m\n16:12:08.508 [info] Periodic from module Elixir.Block.Tasks.STMHandler.PendingState"},{"event":"cmd_output","timestamp":1607098328,"output":" with name Elixir.Block.Tasks.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder"},{"event":"cmd_output","timestamp":1607098328,"output":"-wake_up\", [\"Block-Tasks-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"running\", \""},{"event":"cmd_output","timestamp":1607098328,"output":"done\"], cooling_time_sec: 0, initial_query: Block.Tasks.Model.Tasks, observed_state: \"pending\", publ"},{"event":"cmd_output","timestamp":1607098328,"output":"isher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :re"},{"event":"cmd_output","timestamp":1607098328,"output":"covery_count, :block_id, :build_request_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip"},{"event":"cmd_output","timestamp":1607098328,"output":"}\n\u001b[0m\u001b[22m\n16:12:08.509 [info] Periodic from module Elixir.Block.Tasks.STMHandler.RunningState w"},{"event":"cmd_output","timestamp":1607098328,"output":"ith name Elixir.Block.Tasks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-w"},{"event":"cmd_output","timestamp":1607098328,"output":"ake_up\", [\"Block-Tasks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"st"},{"event":"cmd_output","timestamp":1607098328,"output":"opping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"run"},{"event":"cmd_output","timestamp":1607098328,"output":"ning\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, "},{"event":"cmd_output","timestamp":1607098328,"output":":state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098328,"output":"[22m\n16:12:08.510 [info] Periodic from module Elixir.Block.Tasks.STMHandler.StoppingState with nam"},{"event":"cmd_output","timestamp":1607098328,"output":"e Elixir.Block.Tasks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up"},{"event":"cmd_output","timestamp":1607098328,"output":"\", [\"Block-Tasks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"]"},{"event":"cmd_output","timestamp":1607098328,"output":", cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"stopping\", publishe"},{"event":"cmd_output","timestamp":1607098328,"output":"r_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recove"},{"event":"cmd_output","timestamp":1607098328,"output":"ry_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:08."},{"event":"cmd_output","timestamp":1607098328,"output":"608 [info] ppl_id: 9b16c5ea-7709-4ccb-b0bb-6479c15455ff, type: PplRequests, event: persisted source"},{"event":"cmd_output","timestamp":1607098328,"output":"_args for pipeline: 9b16c5ea-7709-4ccb-b0bb-6479c15455ff, origin: Elixir.Ppl.PplRequests.Model.PplRe"},{"event":"cmd_output","timestamp":1607098328,"output":"questsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:08.614 [info] ppl_id: 9b16c5ea-7709-4ccb-b0b"},{"event":"cmd_output","timestamp":1607098328,"output":"b-6479c15455ff, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098329,"output":"n: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:09.308 [info] ppl_id: 9b16c5e"},{"event":"cmd_output","timestamp":1607098329,"output":"a-7709-4ccb-b0bb-6479c15455ff, type: PplSubInits, state: regular_init, event: exit_scheduling, recov"},{"event":"cmd_output","timestamp":1607098329,"output":"ery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:09.345 [inf"},{"event":"cmd_output","timestamp":1607098329,"output":"o] ppl_id: 9b16c5ea-7709-4ccb-b0bb-6479c15455ff, type: PplRequests, event: persisted definition for"},{"event":"cmd_output","timestamp":1607098329,"output":" request with request_token: 7559abd0-364b-11eb-95d5-5254005464e2, origin: Elixir.Ppl.PplRequests.Mo"},{"event":"cmd_output","timestamp":1607098329,"output":"del.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:09.353 [info] Queue persisted: "},{"event":"cmd_output","timestamp":1607098329,"output":"{:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2"},{"event":"cmd_output","timestamp":1607098329,"output":"020-12-04 16:12:09.351888], name: \"schedule_extension-.semaphore/semaphore.yml\", organization_id: \"c"},{"event":"cmd_output","timestamp":1607098329,"output":"f6df702-245b-42d3-ace9-7e6ff73fbaf7\", project_id: \"123\", queue_id: \"55d9372d-24bf-4eff-82a0-937df9c5"},{"event":"cmd_output","timestamp":1607098329,"output":"358c\", scope: \"project\", updated_at: ~N[2020-12-04 16:12:09.351902], user_generated: false}}\n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098329,"output":"22m\n16:12:09.366 [info] ppl_id: not_available, event: created, origin: Elixir.Ppl.PplSubInits.STMH"},{"event":"cmd_output","timestamp":1607098329,"output":"andler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:09.366 [info] event: created, origin: E"},{"event":"cmd_output","timestamp":1607098329,"output":"lixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:09.366 [info] "},{"event":"cmd_output","timestamp":1607098329,"output":" ppl_id: 9b16c5ea-7709-4ccb-b0bb-6479c15455ff, type: PplBlocks, block_index: 0, state: initializing,"},{"event":"cmd_output","timestamp":1607098329,"output":" event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_o"},{"event":"cmd_output","timestamp":1607098329,"output":"k?/1(L105), \n\u001b[0m\u001b[22m\n16:12:09.366 [info] ppl_id: 9b16c5ea-7709-4ccb-b0bb-6479c15455ff, type: Pp"},{"event":"cmd_output","timestamp":1607098329,"output":"lBlocks, block_index: 1, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl."},{"event":"cmd_output","timestamp":1607098329,"output":"PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:09.369 [info] ppl_id: 9"},{"event":"cmd_output","timestamp":1607098329,"output":"b16c5ea-7709-4ccb-b0bb-6479c15455ff, type: PplSubInits, state: done, result: passed, event: exit_sch"},{"event":"cmd_output","timestamp":1607098329,"output":"eduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098329,"output":"12:09.383 [info] ppl_id: 9b16c5ea-7709-4ccb-b0bb-6479c15455ff, type: Ppls, state: pending, event: e"},{"event":"cmd_output","timestamp":1607098329,"output":"xit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098329,"output":"2m\n16:12:09.384 [info] ppl_id: 9b16c5ea-7709-4ccb-b0bb-6479c15455ff, type: PplBlocks, block_index:"},{"event":"cmd_output","timestamp":1607098329,"output":" 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_st"},{"event":"cmd_output","timestamp":1607098329,"output":"ate_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:09.396 [info] ppl_id: 9b16c5ea-7709-4ccb-b0bb-6479c15455ff, t"},{"event":"cmd_output","timestamp":1607098329,"output":"ype: PplBlocks, block_index: 1, state: waiting, event: exit_scheduling, recovery_count: 0, origin: E"},{"event":"cmd_output","timestamp":1607098329,"output":"lixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:09.397 [info] ppl_id: 9b16c5ea-77"},{"event":"cmd_output","timestamp":1607098329,"output":"09-4ccb-b0bb-6479c15455ff, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098329,"output":"igin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:09.416 [info] ppl_id: 9b16"},{"event":"cmd_output","timestamp":1607098329,"output":"c5ea-7709-4ccb-b0bb-6479c15455ff, type: Ppls, state: running, event: exit_scheduling, recovery_count"},{"event":"cmd_output","timestamp":1607098329,"output":": 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:09.427 [info] PplBl"},{"event":"cmd_output","timestamp":1607098329,"output":"ocks WaitingState STM is scheduling block 0 from pipeline: \"9b16c5ea-7709-4ccb-b0bb-6479c15455ff\"\n\u001b"},{"event":"cmd_output","timestamp":1607098329,"output":"[0m\u001b[22m\n16:12:09.439 [info] block_id: 62c5793f-6d20-4471-a122-87724eead2fe, type: BlockRequests, "},{"event":"cmd_output","timestamp":1607098329,"output":"event: persisted block run request from ppl 9b16c5ea-7709-4ccb-b0bb-6479c15455ff for block 0, origin"},{"event":"cmd_output","timestamp":1607098329,"output":": Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:"},{"event":"cmd_output","timestamp":1607098329,"output":"09.444 [info] block_id: 62c5793f-6d20-4471-a122-87724eead2fe, type: Blocks, state: initializing, ev"},{"event":"cmd_output","timestamp":1607098329,"output":"ent: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43),"},{"event":"cmd_output","timestamp":1607098329,"output":" \n\u001b[0m\u001b[22m\n16:12:09.449 [info] Block 0 of pipeline with id: 9b16c5ea-7709-4ccb-b0bb-6479c15455ff"},{"event":"cmd_output","timestamp":1607098329,"output":" scheduled in block service with id: : \"62c5793f-6d20-4471-a122-87724eead2fe\"\n\u001b[0m\u001b[22m\n16:12:09.4"},{"event":"cmd_output","timestamp":1607098329,"output":"52 [info] ppl_id: 9b16c5ea-7709-4ccb-b0bb-6479c15455ff, type: PplBlocks, block_index: 0, state: run"},{"event":"cmd_output","timestamp":1607098329,"output":"ning, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098329,"output":"90), \n\u001b[0m\u001b[22m\n16:12:09.454 [info] block_id: 62c5793f-6d20-4471-a122-87724eead2fe, type: BlockRe"},{"event":"cmd_output","timestamp":1607098329,"output":"quests, event: persisted build and sub_ppl details for block_request: 62c5793f-6d20-4471-a122-87724e"},{"event":"cmd_output","timestamp":1607098329,"output":"ead2fe, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098329,"output":"2m\n16:12:09.457 [info] block_id: 62c5793f-6d20-4471-a122-87724eead2fe, type: Tasks, state: pending"},{"event":"cmd_output","timestamp":1607098329,"output":", event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok"},{"event":"cmd_output","timestamp":1607098329,"output":"?/1(L167), \n\u001b[0m\u001b[22m\n16:12:09.461 [info] block_id: 62c5793f-6d20-4471-a122-87724eead2fe, type: B"},{"event":"cmd_output","timestamp":1607098329,"output":"locks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098329,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:09.481 [info] block_id: 62c5793f-6d20-4471-a122-87724eead2"},{"event":"cmd_output","timestamp":1607098329,"output":"fe, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.ST"},{"event":"cmd_output","timestamp":1607098329,"output":"M.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:09.560 [info] block_id: 62c5793f-6d20-4471-a122-"},{"event":"cmd_output","timestamp":1607098329,"output":"87724eead2fe, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Lo"},{"event":"cmd_output","timestamp":1607098329,"output":"oper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:09.568 [info] block_id: 62c5793f-6d20-447"},{"event":"cmd_output","timestamp":1607098329,"output":"1-a122-87724eead2fe, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: E"},{"event":"cmd_output","timestamp":1607098329,"output":"lixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:09.579 [info] ppl_id: 9b16c5ea-77"},{"event":"cmd_output","timestamp":1607098329,"output":"09-4ccb-b0bb-6479c15455ff, block_id: 62c5793f-6d20-4471-a122-87724eead2fe, type: PplBlocks, block_in"},{"event":"cmd_output","timestamp":1607098329,"output":"dex: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loope"},{"event":"cmd_output","timestamp":1607098329,"output":"r.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:09.592 [info] PplBlocks WaitingState STM is "},{"event":"cmd_output","timestamp":1607098329,"output":"scheduling block 1 from pipeline: \"9b16c5ea-7709-4ccb-b0bb-6479c15455ff\"\n\u001b[0m\u001b[22m\n16:12:09.602 [i"},{"event":"cmd_output","timestamp":1607098329,"output":"nfo] block_id: 41f82f21-e829-4da6-910e-8092b707c48c, type: BlockRequests, event: persisted block ru"},{"event":"cmd_output","timestamp":1607098329,"output":"n request from ppl 9b16c5ea-7709-4ccb-b0bb-6479c15455ff for block 1, origin: Elixir.Block.BlockReque"},{"event":"cmd_output","timestamp":1607098329,"output":"sts.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:09.608 [info] block_id: "},{"event":"cmd_output","timestamp":1607098329,"output":"41f82f21-e829-4da6-910e-8092b707c48c, type: Blocks, state: initializing, event: initializing, recove"},{"event":"cmd_output","timestamp":1607098329,"output":"ry_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:09.60"},{"event":"cmd_output","timestamp":1607098329,"output":"8 [info] Block 1 of pipeline with id: 9b16c5ea-7709-4ccb-b0bb-6479c15455ff scheduled in block servi"},{"event":"cmd_output","timestamp":1607098329,"output":"ce with id: : \"41f82f21-e829-4da6-910e-8092b707c48c\"\n\u001b[0m\u001b[22m\n16:12:09.614 [info] ppl_id: 9b16c5"},{"event":"cmd_output","timestamp":1607098329,"output":"ea-7709-4ccb-b0bb-6479c15455ff, type: PplBlocks, block_index: 1, state: running, event: exit_schedul"},{"event":"cmd_output","timestamp":1607098329,"output":"ing, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:0"},{"event":"cmd_output","timestamp":1607098329,"output":"9.617 [info] block_id: 41f82f21-e829-4da6-910e-8092b707c48c, type: BlockRequests, event: persisted "},{"event":"cmd_output","timestamp":1607098329,"output":"build and sub_ppl details for block_request: 41f82f21-e829-4da6-910e-8092b707c48c, origin: Elixir.Bl"},{"event":"cmd_output","timestamp":1607098329,"output":"ock.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:09.621 [info] "},{"event":"cmd_output","timestamp":1607098329,"output":"block_id: 41f82f21-e829-4da6-910e-8092b707c48c, type: Tasks, state: pending, event: created, recover"},{"event":"cmd_output","timestamp":1607098329,"output":"y_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098329,"output":"6:12:09.624 [info] block_id: 41f82f21-e829-4da6-910e-8092b707c48c, type: Blocks, state: running, ev"},{"event":"cmd_output","timestamp":1607098329,"output":"ent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b"},{"event":"cmd_output","timestamp":1607098329,"output":"[0m\u001b[22m\n16:12:09.645 [info] block_id: 41f82f21-e829-4da6-910e-8092b707c48c, type: Tasks, state: r"},{"event":"cmd_output","timestamp":1607098329,"output":"unning, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1"},{"event":"cmd_output","timestamp":1607098329,"output":"(L90), \n\u001b[0m\u001b[22m\n16:12:09.685 [info] block_id: 41f82f21-e829-4da6-910e-8092b707c48c, type: Tasks"},{"event":"cmd_output","timestamp":1607098329,"output":", state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098329,"output":"hange/1(L90), \n\u001b[0m\u001b[22m\n16:12:09.692 [info] block_id: 41f82f21-e829-4da6-910e-8092b707c48c, type"},{"event":"cmd_output","timestamp":1607098329,"output":": Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098329,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:09.701 [info] ppl_id: 9b16c5ea-7709-4ccb-b0bb-6479c15455ff"},{"event":"cmd_output","timestamp":1607098329,"output":", block_id: 41f82f21-e829-4da6-910e-8092b707c48c, type: PplBlocks, block_index: 1, state: done, resu"},{"event":"cmd_output","timestamp":1607098329,"output":"lt: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chan"},{"event":"cmd_output","timestamp":1607098329,"output":"ge/1(L90), \n\u001b[0m\u001b[22m\n16:12:09.720 [info] ppl_id: 9b16c5ea-7709-4ccb-b0bb-6479c15455ff, type: Ppl"},{"event":"cmd_output","timestamp":1607098329,"output":"s, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM"},{"event":"cmd_output","timestamp":1607098330,"output":".Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:10.537 [info] Request: 'run: %{\"auto_promoted\" =>"},{"event":"cmd_output","timestamp":1607098330,"output":" false, \"branch_id\" => \"76fbc9e6-05db-4376-bbd6-ea329b3983af\", \"branch_name\" => \"master\", \"client_id"},{"event":"cmd_output","timestamp":1607098330,"output":"\" => \"328c742132e5407abd7d\", \"commit_sha\" => \"eea1377\", \"env_vars\" => [], \"extension_of\" => \"9b16c5e"},{"event":"cmd_output","timestamp":1607098330,"output":"a-7709-4ccb-b0bb-6479c15455ff\", \"file_name\" => \"/foo/bar/test.yml\", \"hook_id\" => \"f9a8fa5d-96ac-4bcd"},{"event":"cmd_output","timestamp":1607098330,"output":"-ac58-56b656bd9c86\", \"label\" => \"schedule_extension\", \"organization_id\" => \"cf6df702-245b-42d3-ace9-"},{"event":"cmd_output","timestamp":1607098330,"output":"7e6ff73fbaf7\", \"owner\" => \"renderedtext\", \"prev_ppl_artefact_ids\" => [\"9b16c5ea-7709-4ccb-b0bb-6479c"},{"event":"cmd_output","timestamp":1607098330,"output":"15455ff\"], \"project_id\" => \"123\", \"promoter_id\" => \"\", \"repo_name\" => \"pipelines-test-repo-auto-call"},{"event":"cmd_output","timestamp":1607098330,"output":"\", \"request_token\" => \"1d5eeb15-f36c-4aea-9cc0-fdfb7fba12e3\", \"requester_id\" => \"8cc5eaa6-65e8-4f9c-"},{"event":"cmd_output","timestamp":1607098330,"output":"b63e-2ca3367a7d8c\", \"service\" => \"git_hub\", \"suppressed_attributes\" => [\"access_token\", \"client_secr"},{"event":"cmd_output","timestamp":1607098330,"output":"et\"], \"wf_id\" => \"6afb43c3-29c3-477b-a101-0e483a0a68e5\", \"wf_number\" => 1, \"working_dir\" => \".semaph"},{"event":"cmd_output","timestamp":1607098330,"output":"ore\"}\n\u001b[0m\u001b[22m\n16:12:10.540 [info] ppl_id: c7f16fa5-7e62-4a37-a5a9-c06d359d1eb8, type: PplReques"},{"event":"cmd_output","timestamp":1607098330,"output":"ts, event: persisted schedule request with request_token: 1d5eeb15-f36c-4aea-9cc0-fdfb7fba12e3, orig"},{"event":"cmd_output","timestamp":1607098330,"output":"in: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:10.5"},{"event":"cmd_output","timestamp":1607098330,"output":"43 [info] ppl_id: c7f16fa5-7e62-4a37-a5a9-c06d359d1eb8, type: Ppls, state: initializing, event: ini"},{"event":"cmd_output","timestamp":1607098330,"output":"tializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n"},{"event":"cmd_output","timestamp":1607098330,"output":"\u001b[0m\u001b[22m\n16:12:10.546 [info] Persisted ppl_sub_init for pipeline with ppl_id: c7f16fa5-7e62-4a37-"},{"event":"cmd_output","timestamp":1607098330,"output":"a5a9-c06d359d1eb8: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipe"},{"event":"cmd_output","timestamp":1607098330,"output":"line_sub_inits\">, compile_task_id: nil, error_description: nil, id: 169, in_scheduling: false, init_"},{"event":"cmd_output","timestamp":1607098330,"output":"type: \"regular\", inserted_at: ~N[2020-12-04 16:12:10.545013], pipeline_requests: #Ecto.Association.N"},{"event":"cmd_output","timestamp":1607098330,"output":"otLoaded, ppl_id: \"c7f16fa5-7e62-4a37-a5a9-c06d359d1eb"},{"event":"cmd_output","timestamp":1607098330,"output":"8\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, te"},{"event":"cmd_output","timestamp":1607098330,"output":"rminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:10.545024]}\n\u001b[0m\u001b[22m\n16:12:10.551 [inf"},{"event":"cmd_output","timestamp":1607098330,"output":"o] Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.STMH"},{"event":"cmd_output","timestamp":1607098330,"output":"andler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHand"},{"event":"cmd_output","timestamp":1607098330,"output":"ler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], coo"},{"event":"cmd_output","timestamp":1607098330,"output":"ling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher_cb: "},{"event":"cmd_output","timestamp":1607098330,"output":"#Function<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, return"},{"event":"cmd_output","timestamp":1607098330,"output":"ing: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl."},{"event":"cmd_output","timestamp":1607098330,"output":"Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:10.551 [info] Periodic from module Elixi"},{"event":"cmd_output","timestamp":1607098330,"output":"r.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 100 "},{"event":"cmd_output","timestamp":1607098330,"output":"ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args: %{a"},{"event":"cmd_output","timestamp":1607098330,"output":"llowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Pp"},{"event":"cmd_output","timestamp":1607098330,"output":"ls.Model.Ppls, observed_state: \"pending\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler"},{"event":"cmd_output","timestamp":1607098330,"output":".PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state,"},{"event":"cmd_output","timestamp":1607098330,"output":" :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSuperviso"},{"event":"cmd_output","timestamp":1607098330,"output":"r}\n\u001b[0m\u001b[22m\n16:12:10.552 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.QueuingState wit"},{"event":"cmd_output","timestamp":1607098330,"output":"h name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_u"},{"event":"cmd_output","timestamp":1607098330,"output":"p\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{allowed_states: [\"queuing\", \"running\", "},{"event":"cmd_output","timestamp":1607098330,"output":"\"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", publis"},{"event":"cmd_output","timestamp":1607098330,"output":"her_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, ret"},{"event":"cmd_output","timestamp":1607098330,"output":"urning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: P"},{"event":"cmd_output","timestamp":1607098330,"output":"pl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:10.552 [info] Periodic from module El"},{"event":"cmd_output","timestamp":1607098330,"output":"ixir.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHandler.RunningState :: period: 1"},{"event":"cmd_output","timestamp":1607098330,"output":"00 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring args: "},{"event":"cmd_output","timestamp":1607098330,"output":"%{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Mod"},{"event":"cmd_output","timestamp":1607098330,"output":"el.Ppls, observed_state: \"running\", publisher_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler.Runn"},{"event":"cmd_output","timestamp":1607098330,"output":"ingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :res"},{"event":"cmd_output","timestamp":1607098330,"output":"ult, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b"},{"event":"cmd_output","timestamp":1607098330,"output":"[0m\u001b[22m\n16:12:10.552 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.StoppingState with na"},{"event":"cmd_output","timestamp":1607098330,"output":"me Elixir.Ppl.Ppls.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\","},{"event":"cmd_output","timestamp":1607098330,"output":" [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], coo"},{"event":"cmd_output","timestamp":1607098330,"output":"ling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"stopping\", publisher_cb: #Fu"},{"event":"cmd_output","timestamp":1607098330,"output":"nction<0.71803493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:i"},{"event":"cmd_output","timestamp":1607098330,"output":"d, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Mod"},{"event":"cmd_output","timestamp":1607098330,"output":"el.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:10.553 [info] Periodic from module Elixir.Ppl.Pp"},{"event":"cmd_output","timestamp":1607098330,"output":"lSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period"},{"event":"cmd_output","timestamp":1607098330,"output":": 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurr"},{"event":"cmd_output","timestamp":1607098330,"output":"ing args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInit"},{"event":"cmd_output","timestamp":1607098330,"output":"s.Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: "},{"event":"cmd_output","timestamp":1607098330,"output":"[:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSu"},{"event":"cmd_output","timestamp":1607098330,"output":"bInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:10.553 [info] Periodic from mod"},{"event":"cmd_output","timestamp":1607098330,"output":"ule Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler.Fetc"},{"event":"cmd_output","timestamp":1607098330,"output":"hingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-Fetc"},{"event":"cmd_output","timestamp":1607098330,"output":"hingState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"done\"], cooling_tim"},{"event":"cmd_output","timestamp":1607098330,"output":"e_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fetching\", publisher_c"},{"event":"cmd_output","timestamp":1607098330,"output":"b: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :re"},{"event":"cmd_output","timestamp":1607098330,"output":"covery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098330,"output":"m\n16:12:10.553 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CompilationState with"},{"event":"cmd_output","timestamp":1607098330,"output":" name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 100 ms, metric_name: {\"Ppl.behol"},{"event":"cmd_output","timestamp":1607098330,"output":"der-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurring args: %{allowed_states: [\""},{"event":"cmd_output","timestamp":1607098330,"output":"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubIn"},{"event":"cmd_output","timestamp":1607098330,"output":"its.Model.PplSubInits, observed_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, retur"},{"event":"cmd_output","timestamp":1607098330,"output":"ning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl"},{"event":"cmd_output","timestamp":1607098330,"output":".PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:10.554 [info] Periodic fr"},{"event":"cmd_output","timestamp":1607098330,"output":"om module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHan"},{"event":"cmd_output","timestamp":1607098330,"output":"dler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STM"},{"event":"cmd_output","timestamp":1607098330,"output":"Handler-RegularInitState\"]}, recurring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, initia"},{"event":"cmd_output","timestamp":1607098330,"output":"l_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_init\", publisher_cb: :skip, rep"},{"event":"cmd_output","timestamp":1607098330,"output":"o: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count,"},{"event":"cmd_output","timestamp":1607098330,"output":" :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:10.5"},{"event":"cmd_output","timestamp":1607098330,"output":"54 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.InitializingState with name Elixir.P"},{"event":"cmd_output","timestamp":1607098330,"output":"pl.PplBlocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", ["},{"event":"cmd_output","timestamp":1607098330,"output":"\"Ppl-PplBlocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \""},{"event":"cmd_output","timestamp":1607098330,"output":"waiting\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state"},{"event":"cmd_output","timestamp":1607098330,"output":": \"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :upd"},{"event":"cmd_output","timestamp":1607098330,"output":"ated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBl"},{"event":"cmd_output","timestamp":1607098330,"output":"ocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:10.554 [info] Periodic from module Elixir.Ppl.PplBl"},{"event":"cmd_output","timestamp":1607098330,"output":"ocks.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler.WaitingState :: period: 1000 "},{"event":"cmd_output","timestamp":1607098330,"output":"ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurring args"},{"event":"cmd_output","timestamp":1607098330,"output":": %{allowed_states: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlock"},{"event":"cmd_output","timestamp":1607098330,"output":"s.Model.PplBlocks, observed_state: \"waiting\", publisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.S"},{"event":"cmd_output","timestamp":1607098330,"output":"TMHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at"},{"event":"cmd_output","timestamp":1607098330,"output":", :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, t"},{"event":"cmd_output","timestamp":1607098330,"output":"ask_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:10.555 [info] Periodic from module Elixir.Ppl.PplBlocks.ST"},{"event":"cmd_output","timestamp":1607098330,"output":"MHandler.RunningState with name Elixir.Ppl.PplBlocks.STMHandler.RunningState :: period: 1000 ms, met"},{"event":"cmd_output","timestamp":1607098330,"output":"ric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, recurring args: %{all"},{"event":"cmd_output","timestamp":1607098330,"output":"owed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Mod"},{"event":"cmd_output","timestamp":1607098330,"output":"el.PplBlocks, observed_state: \"running\", publisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHa"},{"event":"cmd_output","timestamp":1607098330,"output":"ndler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :s"},{"event":"cmd_output","timestamp":1607098330,"output":"tate, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBl"},{"event":"cmd_output","timestamp":1607098330,"output":"ocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:10.555 [info] Periodic from module Elixir.Ppl.PplBl"},{"event":"cmd_output","timestamp":1607098330,"output":"ocks.STMHandler.StoppingState with name Elixir.Ppl.PplBlocks.STMHandler.StoppingState :: period: 100"},{"event":"cmd_output","timestamp":1607098330,"output":"0 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurring a"},{"event":"cmd_output","timestamp":1607098330,"output":"rgs: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Mode"},{"event":"cmd_output","timestamp":1607098330,"output":"l.PplBlocks, observed_state: \"stopping\", publisher_cb: #Function<0.104215991/1 in Ppl.PplBlocks.STMH"},{"event":"cmd_output","timestamp":1607098330,"output":"andler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, "},{"event":"cmd_output","timestamp":1607098330,"output":":state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.Ppl"},{"event":"cmd_output","timestamp":1607098330,"output":"Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:10.555 [info] Periodic from module Elixir.Block.B"},{"event":"cmd_output","timestamp":1607098330,"output":"locks.STMHandler.InitializingState with name Elixir.Block.Blocks.STMHandler.InitializingState :: per"},{"event":"cmd_output","timestamp":1607098330,"output":"iod: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, r"},{"event":"cmd_output","timestamp":1607098330,"output":"ecurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Bloc"},{"event":"cmd_output","timestamp":1607098330,"output":"ks.Model.Blocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Block.EctoRepo, returnin"},{"event":"cmd_output","timestamp":1607098330,"output":"g: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks."},{"event":"cmd_output","timestamp":1607098330,"output":"Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:10.556 [info] Periodic from module Elixir.B"},{"event":"cmd_output","timestamp":1607098330,"output":"lock.Blocks.STMHandler.RunningState with name Elixir.Block.Blocks.STMHandler.RunningState :: period:"},{"event":"cmd_output","timestamp":1607098330,"output":" 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-RunningState\"]}, recurring "},{"event":"cmd_output","timestamp":1607098330,"output":"args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block."},{"event":"cmd_output","timestamp":1607098330,"output":"Blocks.Model.Blocks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning"},{"event":"cmd_output","timestamp":1607098330,"output":": [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.M"},{"event":"cmd_output","timestamp":1607098330,"output":"odel.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:10.556 [info] Periodic from module Elixir.Bl"},{"event":"cmd_output","timestamp":1607098330,"output":"ock.Blocks.STMHandler.StoppingState with name Elixir.Block.Blocks.STMHandler.StoppingState :: period"},{"event":"cmd_output","timestamp":1607098330,"output":": 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-StoppingState\"]}, recurrin"},{"event":"cmd_output","timestamp":1607098330,"output":"g args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Mo"},{"event":"cmd_output","timestamp":1607098330,"output":"del.Blocks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, "},{"event":"cmd_output","timestamp":1607098330,"output":":terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blo"},{"event":"cmd_output","timestamp":1607098330,"output":"cks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:10.556 [info] Periodic from module Elixir.Block.Task"},{"event":"cmd_output","timestamp":1607098330,"output":"s.STMHandler.PendingState with name Elixir.Block.Tasks.STMHandler.PendingState :: period: 100 ms, me"},{"event":"cmd_output","timestamp":1607098330,"output":"tric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingState\"]}, recurring args: %{allo"},{"event":"cmd_output","timestamp":1607098330,"output":"wed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Tasks.Model.Tasks, observ"},{"event":"cmd_output","timestamp":1607098330,"output":"ed_state: \"pending\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request,"},{"event":"cmd_output","timestamp":1607098330,"output":" :updated_at, :state, :recovery_count, :block_id, :build_request_id], schema: Block.Tasks.Model.Task"},{"event":"cmd_output","timestamp":1607098330,"output":"s, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:10.556 [info] Periodic from module Elixir.Block.Tasks."},{"event":"cmd_output","timestamp":1607098330,"output":"STMHandler.RunningState with name Elixir.Block.Tasks.STMHandler.RunningState :: period: 100 ms, metr"},{"event":"cmd_output","timestamp":1607098330,"output":"ic_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningState\"]}, recurring args: %{allowe"},{"event":"cmd_output","timestamp":1607098330,"output":"d_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Ta"},{"event":"cmd_output","timestamp":1607098330,"output":"sks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :termina"},{"event":"cmd_output","timestamp":1607098330,"output":"te_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_"},{"event":"cmd_output","timestamp":1607098330,"output":"supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:10.556 [info] Periodic from module Elixir.Block.Tasks.STMHandl"},{"event":"cmd_output","timestamp":1607098330,"output":"er.StoppingState with name Elixir.Block.Tasks.STMHandler.StoppingState :: period: 100 ms, metric_nam"},{"event":"cmd_output","timestamp":1607098330,"output":"e: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]}, recurring args: %{allowed_sta"},{"event":"cmd_output","timestamp":1607098330,"output":"tes: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_st"},{"event":"cmd_output","timestamp":1607098330,"output":"ate: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :up"},{"event":"cmd_output","timestamp":1607098330,"output":"dated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :sk"},{"event":"cmd_output","timestamp":1607098330,"output":"ip}\n\u001b[0m\u001b[22m\n16:12:10.666 [info] ppl_id: c7f16fa5-7e62-4a37-a5a9-c06d359d1eb8, type: PplRequests"},{"event":"cmd_output","timestamp":1607098330,"output":", event: persisted source_args for pipeline: c7f16fa5-7e62-4a37-a5a9-c06d359d1eb8, origin: Elixir.Pp"},{"event":"cmd_output","timestamp":1607098330,"output":"l.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:10.669 [info] ppl_i"},{"event":"cmd_output","timestamp":1607098330,"output":"d: c7f16fa5-7e62-4a37-a5a9-c06d359d1eb8, type: PplSubInits, state: fetching, event: exit_scheduling,"},{"event":"cmd_output","timestamp":1607098330,"output":" recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:10.90"},{"event":"cmd_output","timestamp":1607098330,"output":"0 [info] ppl_id: c7f16fa5-7e62-4a37-a5a9-c06d359d1eb8, type: PplSubInits, state: regular_init, even"},{"event":"cmd_output","timestamp":1607098330,"output":"t: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098330,"output":"m\u001b[22m\n16:12:10.927 [info] ppl_id: c7f16fa5-7e62-4a37-a5a9-c06d359d1eb8, type: PplRequests, event:"},{"event":"cmd_output","timestamp":1607098330,"output":" persisted definition for request with request_token: 1d5eeb15-f36c-4aea-9cc0-fdfb7fba12e3, origin: "},{"event":"cmd_output","timestamp":1607098330,"output":"Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:10.930 "},{"event":"cmd_output","timestamp":1607098330,"output":"[info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"qu"},{"event":"cmd_output","timestamp":1607098330,"output":"eues\">, inserted_at: ~N[2020-12-04 16:12:10.929528], name: \"schedule_extension-/foo/bar/test.yml\", o"},{"event":"cmd_output","timestamp":1607098330,"output":"rganization_id: \"cf6df702-245b-42d3-ace9-7e6ff73fbaf7\", project_id: \"123\", queue_id: \"5689c595-b4f5-"},{"event":"cmd_output","timestamp":1607098330,"output":"4dd2-9634-592142bd1487\", scope: \"project\", updated_at: ~N[2020-12-04 16:12:10.929537], user_generate"},{"event":"cmd_output","timestamp":1607098330,"output":"d: false}}\n\u001b[0m\u001b[22m\n16:12:10.935 [info] ppl_id: not_available, event: created, origin: Elixir.Pp"},{"event":"cmd_output","timestamp":1607098330,"output":"l.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:10.935 [info] event: "},{"event":"cmd_output","timestamp":1607098330,"output":"created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098330,"output":":12:10.935 [info] ppl_id: c7f16fa5-7e62-4a37-a5a9-c06d359d1eb8, type: PplBlocks, block_index: 0, st"},{"event":"cmd_output","timestamp":1607098330,"output":"ate: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.Regu"},{"event":"cmd_output","timestamp":1607098330,"output":"larInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:10.935 [info] ppl_id: c7f16fa5-7e62-4a37-a5a9-c06d"},{"event":"cmd_output","timestamp":1607098330,"output":"359d1eb8, type: PplBlocks, block_index: 1, state: initializing, event: created, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098330,"output":"rigin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:10.937"},{"event":"cmd_output","timestamp":1607098330,"output":" [info] ppl_id: c7f16fa5-7e62-4a37-a5a9-c06d359d1eb8, type: PplSubInits, state: done, result: passe"},{"event":"cmd_output","timestamp":1607098330,"output":"d, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90)"},{"event":"cmd_output","timestamp":1607098330,"output":", \n\u001b[0m\u001b[22m\n16:12:10.944 [info] ppl_id: c7f16fa5-7e62-4a37-a5a9-c06d359d1eb8, type: PplBlocks, b"},{"event":"cmd_output","timestamp":1607098330,"output":"lock_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM."},{"event":"cmd_output","timestamp":1607098330,"output":"Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:10.947 [info] ppl_id: c7f16fa5-7e62-4a37-a5a9-c06d"},{"event":"cmd_output","timestamp":1607098330,"output":"359d1eb8, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loop"},{"event":"cmd_output","timestamp":1607098330,"output":"er.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:10.952 [info] ppl_id: c7f16fa5-7e62-4a37-a5"},{"event":"cmd_output","timestamp":1607098330,"output":"a9-c06d359d1eb8, type: PplBlocks, block_index: 1, state: waiting, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098330,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:10.963 [info] p"},{"event":"cmd_output","timestamp":1607098330,"output":"pl_id: c7f16fa5-7e62-4a37-a5a9-c06d359d1eb8, type: Ppls, state: queuing, event: exit_scheduling, rec"},{"event":"cmd_output","timestamp":1607098330,"output":"overy_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:10.973 [i"},{"event":"cmd_output","timestamp":1607098330,"output":"nfo] ppl_id: c7f16fa5-7e62-4a37-a5a9-c06d359d1eb8, type: Ppls, state: running, event: exit_scheduli"},{"event":"cmd_output","timestamp":1607098330,"output":"ng, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:10"},{"event":"cmd_output","timestamp":1607098330,"output":".980 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"c7f16fa5-7e62-4a37-a5a"},{"event":"cmd_output","timestamp":1607098330,"output":"9-c06d359d1eb8\"\n\u001b[0m\u001b[22m\n16:12:10.988 [info] block_id: 4642ad65-63a1-416e-bad7-92f6036c5df5, typ"},{"event":"cmd_output","timestamp":1607098330,"output":"e: BlockRequests, event: persisted block run request from ppl c7f16fa5-7e62-4a37-a5a9-c06d359d1eb8 f"},{"event":"cmd_output","timestamp":1607098330,"output":"or block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \r"},{"event":"cmd_output","timestamp":1607098330,"output":"\n\u001b[0m\u001b[22m\n16:12:10.990 [info] block_id: 4642ad65-63a1-416e-bad7-92f6036c5df5, type: Blocks, state"},{"event":"cmd_output","timestamp":1607098330,"output":": initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQuer"},{"event":"cmd_output","timestamp":1607098330,"output":"ies.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:10.992 [info] Block 0 of pipeline with id: c7f16fa5-7e62-4a37"},{"event":"cmd_output","timestamp":1607098330,"output":"-a5a9-c06d359d1eb8 scheduled in block service with id: : \"4642ad65-63a1-416e-bad7-92f6036c5df5\"\n\u001b[0"},{"event":"cmd_output","timestamp":1607098330,"output":"m\u001b[22m\n16:12:10.994 [info] ppl_id: c7f16fa5-7e62-4a37-a5a9-c06d359d1eb8, type: PplBlocks, block_in"},{"event":"cmd_output","timestamp":1607098330,"output":"dex: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.lo"},{"event":"cmd_output","timestamp":1607098330,"output":"g_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:10.996 [info] block_id: 4642ad65-63a1-416e-bad7-92f6036c5"},{"event":"cmd_output","timestamp":1607098330,"output":"df5, type: BlockRequests, event: persisted build and sub_ppl details for block_request: 4642ad65-63a"},{"event":"cmd_output","timestamp":1607098330,"output":"1-416e-bad7-92f6036c5df5, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build"},{"event":"cmd_output","timestamp":1607098330,"output":"/2(L41), \n\u001b[0m\u001b[22m\n16:12:10.998 [info] block_id: 4642ad65-63a1-416e-bad7-92f6036c5df5, type: Tas"},{"event":"cmd_output","timestamp":1607098330,"output":"ks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.Initia"},{"event":"cmd_output","timestamp":1607098331,"output":"lizingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:11.001 [info] block_id: 4642ad65-63a1-416e-bad7-92f"},{"event":"cmd_output","timestamp":1607098331,"output":"6036c5df5, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098331,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:11.030 [info] block_id: 4642ad65-63a1-41"},{"event":"cmd_output","timestamp":1607098331,"output":"6e-bad7-92f6036c5df5, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098331,"output":": Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:11.090 [info] block_id: 4642ad"},{"event":"cmd_output","timestamp":1607098331,"output":"65-63a1-416e-bad7-92f6036c5df5, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098331,"output":" origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:11.098 [info] block_id:"},{"event":"cmd_output","timestamp":1607098331,"output":" 4642ad65-63a1-416e-bad7-92f6036c5df5, type: Blocks, state: done, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098331,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:11.106 [info] p"},{"event":"cmd_output","timestamp":1607098331,"output":"pl_id: c7f16fa5-7e62-4a37-a5a9-c06d359d1eb8, block_id: 4642ad65-63a1-416e-bad7-92f6036c5df5, type: P"},{"event":"cmd_output","timestamp":1607098331,"output":"plBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098331,"output":"igin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:11.115 [info] PplBlocks Wa"},{"event":"cmd_output","timestamp":1607098331,"output":"itingState STM is scheduling block 1 from pipeline: \"c7f16fa5-7e62-4a37-a5a9-c06d359d1eb8\"\n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098331,"output":"m\n16:12:11.123 [info] block_id: a3c4f2fe-079b-4f15-9225-ffdf67f10b8c, type: BlockRequests, event: "},{"event":"cmd_output","timestamp":1607098331,"output":"persisted block run request from ppl c7f16fa5-7e62-4a37-a5a9-c06d359d1eb8 for block 1, origin: Elixi"},{"event":"cmd_output","timestamp":1607098331,"output":"r.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:11.126 "},{"event":"cmd_output","timestamp":1607098331,"output":"[info] block_id: a3c4f2fe-079b-4f15-9225-ffdf67f10b8c, type: Blocks, state: initializing, event: in"},{"event":"cmd_output","timestamp":1607098331,"output":"itializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098331,"output":"\u001b[22m\n16:12:11.126 [info] Block 1 of pipeline with id: c7f16fa5-7e62-4a37-a5a9-c06d359d1eb8 schedu"},{"event":"cmd_output","timestamp":1607098331,"output":"led in block service with id: : \"a3c4f2fe-079b-4f15-9225-ffdf67f10b8c\"\n\u001b[0m\u001b[22m\n16:12:11.129 [inf"},{"event":"cmd_output","timestamp":1607098331,"output":"o] ppl_id: c7f16fa5-7e62-4a37-a5a9-c06d359d1eb8, type: PplBlocks, block_index: 1, state: running, e"},{"event":"cmd_output","timestamp":1607098331,"output":"vent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n"},{"event":"cmd_output","timestamp":1607098331,"output":"\u001b[0m\u001b[22m\n16:12:11.133 [info] block_id: a3c4f2fe-079b-4f15-9225-ffdf67f10b8c, type: BlockRequests,"},{"event":"cmd_output","timestamp":1607098331,"output":" event: persisted build and sub_ppl details for block_request: a3c4f2fe-079b-4f15-9225-ffdf67f10b8c,"},{"event":"cmd_output","timestamp":1607098331,"output":" origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098331,"output":"12:11.138 [info] block_id: a3c4f2fe-079b-4f15-9225-ffdf67f10b8c, type: Tasks, state: pending, event"},{"event":"cmd_output","timestamp":1607098331,"output":": created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L16"},{"event":"cmd_output","timestamp":1607098331,"output":"7), \n\u001b[0m\u001b[22m\n16:12:11.140 [info] block_id: a3c4f2fe-079b-4f15-9225-ffdf67f10b8c, type: Blocks, "},{"event":"cmd_output","timestamp":1607098331,"output":"state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_"},{"event":"cmd_output","timestamp":1607098331,"output":"change/1(L90), \n\u001b[0m\u001b[22m\n16:12:11.164 [info] block_id: a3c4f2fe-079b-4f15-9225-ffdf67f10b8c, typ"},{"event":"cmd_output","timestamp":1607098331,"output":"e: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl."},{"event":"cmd_output","timestamp":1607098331,"output":"log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:11.205 [info] block_id: a3c4f2fe-079b-4f15-9225-ffdf67f"},{"event":"cmd_output","timestamp":1607098331,"output":"10b8c, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.ST"},{"event":"cmd_output","timestamp":1607098331,"output":"M.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:11.220 [info] block_id: a3c4f2fe-079b-4f15-9225-"},{"event":"cmd_output","timestamp":1607098331,"output":"ffdf67f10b8c, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098331,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:11.232 [info] ppl_id: c7f16fa5-7e62-4a37"},{"event":"cmd_output","timestamp":1607098331,"output":"-a5a9-c06d359d1eb8, block_id: a3c4f2fe-079b-4f15-9225-ffdf67f10b8c, type: PplBlocks, block_index: 1,"},{"event":"cmd_output","timestamp":1607098331,"output":" state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.I"},{"event":"cmd_output","timestamp":1607098331,"output":"mpl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:11.247 [info] ppl_id: c7f16fa5-7e62-4a37-a5a9-c06d3"},{"event":"cmd_output","timestamp":1607098331,"output":"59d1eb8, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098331,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test gRPC schedule_extension() GitH"},{"event":"cmd_output","timestamp":1607098331,"output":"ub - succedes when given valid params (3226.2ms)\u001b[0m\n * test gRPC partial_rebuild() - fails when g"},{"event":"cmd_output","timestamp":1607098331,"output":"iven pipeline is passed\u001b[22m\n16:12:11.643 [info] Request: 'run: %{\"branch_id\" => \"1c4e051e-5bff-44"},{"event":"cmd_output","timestamp":1607098331,"output":"77-9070-6daf71f98d05\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"sema"},{"event":"cmd_output","timestamp":1607098331,"output":"phore.yml\", \"hook_id\" => \"7744aa44-364b-11eb-a84c-5254005464e2\", \"label\" => \"master\", \"organization_"},{"event":"cmd_output","timestamp":1607098331,"output":"id\" => \"4372b116-b937-41fa-b81e-a0b84837c773\", \"owner\" => \"rt\", \"project_id\" => \"54bcc1d3-f8a2-4397-"},{"event":"cmd_output","timestamp":1607098331,"output":"9982-9190551709a9\", \"repo_name\" => \"5_v1_full\", \"request_token\" => \"7744a076-364b-11eb-942d-52540054"},{"event":"cmd_output","timestamp":1607098331,"output":"64e2\", \"requester_id\" => \"bf21cce0-80ea-4282-a079-721be3338065\", \"service\" => \"local\", \"suppressed_a"},{"event":"cmd_output","timestamp":1607098331,"output":"ttributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"5dcb951b-d4da-4e6f-b270-9903524c4d51\", "},{"event":"cmd_output","timestamp":1607098331,"output":"\"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:12:11.646 [info] ppl_id: efe30e31-aa94-446a-a24e-fdc3"},{"event":"cmd_output","timestamp":1607098331,"output":"37c8246c, type: PplRequests, event: persisted schedule request with request_token: 7744a076-364b-11e"},{"event":"cmd_output","timestamp":1607098331,"output":"b-942d-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55)"},{"event":"cmd_output","timestamp":1607098331,"output":", \n\u001b[0m\u001b[22m\n16:12:11.650 [info] ppl_id: efe30e31-aa94-446a-a24e-fdc337c8246c, type: Ppls, state:"},{"event":"cmd_output","timestamp":1607098331,"output":" initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.pro"},{"event":"cmd_output","timestamp":1607098331,"output":"cess_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:11.655 [info] Project 54bcc1d3-f8a2-4397-9982-9190551709a"},{"event":"cmd_output","timestamp":1607098331,"output":"9 and branch masterlatest_wf details updated: \"wf_id: 5dcb951b-d4da-4e6f-b270-9903524c4d51, wf_numbe"},{"event":"cmd_output","timestamp":1607098331,"output":"r: 1\"\n\u001b[0m\u001b[22m\n16:12:11.657 [info] Persisted ppl_sub_init for pipeline with ppl_id: efe30e31-aa9"},{"event":"cmd_output","timestamp":1607098331,"output":"4-446a-a24e-fdc337c8246c: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded"},{"event":"cmd_output","timestamp":1607098331,"output":", \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 170, in_scheduling: false"},{"event":"cmd_output","timestamp":1607098331,"output":", init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:11.655893], pipeline_requests: #Ecto.Associ"},{"event":"cmd_output","timestamp":1607098331,"output":"ation.NotLoaded, ppl_id: \"efe30e31-aa94-446a-a24e-fdc3"},{"event":"cmd_output","timestamp":1607098331,"output":"37c8246c\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: "},{"event":"cmd_output","timestamp":1607098331,"output":"nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:11.655939]}\n\u001b[0m\u001b[22m\n16:12:11.6"},{"event":"cmd_output","timestamp":1607098331,"output":"62 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Pp"},{"event":"cmd_output","timestamp":1607098331,"output":"ls.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-"},{"event":"cmd_output","timestamp":1607098331,"output":"STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"pending\", \"done"},{"event":"cmd_output","timestamp":1607098331,"output":"\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publish"},{"event":"cmd_output","timestamp":1607098331,"output":"er_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo,"},{"event":"cmd_output","timestamp":1607098331,"output":" returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schem"},{"event":"cmd_output","timestamp":1607098331,"output":"a: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:11.662 [info] Periodic from modul"},{"event":"cmd_output","timestamp":1607098331,"output":"e Elixir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler.PendingState :: perio"},{"event":"cmd_output","timestamp":1607098331,"output":"d: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring ar"},{"event":"cmd_output","timestamp":1607098331,"output":"gs: %{allowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_sec: 0, initial_query:"},{"event":"cmd_output","timestamp":1607098331,"output":" Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STM"},{"event":"cmd_output","timestamp":1607098331,"output":"Handler.PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, "},{"event":"cmd_output","timestamp":1607098331,"output":":state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSu"},{"event":"cmd_output","timestamp":1607098331,"output":"pervisor}\n\u001b[0m\u001b[22m\n16:12:11.663 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.QueuingSt"},{"event":"cmd_output","timestamp":1607098331,"output":"ate with name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, metric_name: {\"Ppl.beholder"},{"event":"cmd_output","timestamp":1607098331,"output":"-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{allowed_states: [\"queuing\", \"run"},{"event":"cmd_output","timestamp":1607098331,"output":"ning\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\","},{"event":"cmd_output","timestamp":1607098331,"output":" publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.args/0>, repo: Ppl.EctoRe"},{"event":"cmd_output","timestamp":1607098331,"output":"po, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], sc"},{"event":"cmd_output","timestamp":1607098331,"output":"hema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:11.663 [info] Periodic from mo"},{"event":"cmd_output","timestamp":1607098331,"output":"dule Elixir.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHandler.RunningState :: pe"},{"event":"cmd_output","timestamp":1607098331,"output":"riod: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring"},{"event":"cmd_output","timestamp":1607098331,"output":" args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.P"},{"event":"cmd_output","timestamp":1607098331,"output":"pls.Model.Ppls, observed_state: \"running\", publisher_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandl"},{"event":"cmd_output","timestamp":1607098331,"output":"er.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :stat"},{"event":"cmd_output","timestamp":1607098331,"output":"e, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervi"},{"event":"cmd_output","timestamp":1607098331,"output":"sor}\n\u001b[0m\u001b[22m\n16:12:11.664 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.StoppingState "},{"event":"cmd_output","timestamp":1607098331,"output":"with name Elixir.Ppl.Ppls.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wa"},{"event":"cmd_output","timestamp":1607098331,"output":"ke_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done"},{"event":"cmd_output","timestamp":1607098331,"output":"\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"stopping\", publisher_"},{"event":"cmd_output","timestamp":1607098331,"output":"cb: #Function<0.71803493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returni"},{"event":"cmd_output","timestamp":1607098331,"output":"ng: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.P"},{"event":"cmd_output","timestamp":1607098331,"output":"pls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:11.664 [info] Periodic from module Elixir"},{"event":"cmd_output","timestamp":1607098331,"output":".Ppl.PplSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState ::"},{"event":"cmd_output","timestamp":1607098331,"output":" period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]},"},{"event":"cmd_output","timestamp":1607098331,"output":" recurring args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098331,"output":"SubInits.Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, retu"},{"event":"cmd_output","timestamp":1607098331,"output":"rning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Pp"},{"event":"cmd_output","timestamp":1607098331,"output":"l.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:11.664 [info] Periodic f"},{"event":"cmd_output","timestamp":1607098331,"output":"rom module Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandl"},{"event":"cmd_output","timestamp":1607098331,"output":"er.FetchingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandl"},{"event":"cmd_output","timestamp":1607098331,"output":"er-FetchingState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"done\"], cool"},{"event":"cmd_output","timestamp":1607098331,"output":"ing_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fetching\", publ"},{"event":"cmd_output","timestamp":1607098331,"output":"isher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :resu"},{"event":"cmd_output","timestamp":1607098331,"output":"lt, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b"},{"event":"cmd_output","timestamp":1607098331,"output":"[0m\u001b[22m\n16:12:11.665 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CompilationSta"},{"event":"cmd_output","timestamp":1607098331,"output":"te with name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 100 ms, metric_name: {\"Pp"},{"event":"cmd_output","timestamp":1607098331,"output":"l.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurring args: %{allowed_sta"},{"event":"cmd_output","timestamp":1607098331,"output":"tes: [\"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.P"},{"event":"cmd_output","timestamp":1607098331,"output":"plSubInits.Model.PplSubInits, observed_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo"},{"event":"cmd_output","timestamp":1607098331,"output":", returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], sche"},{"event":"cmd_output","timestamp":1607098331,"output":"ma: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:11.665 [info] Peri"},{"event":"cmd_output","timestamp":1607098331,"output":"odic from module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits"},{"event":"cmd_output","timestamp":1607098331,"output":".STMHandler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubIn"},{"event":"cmd_output","timestamp":1607098331,"output":"its-STMHandler-RegularInitState\"]}, recurring args: %{allowed_states: [\"done\"], cooling_time_sec: 0,"},{"event":"cmd_output","timestamp":1607098331,"output":" initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_init\", publisher_cb: :sk"},{"event":"cmd_output","timestamp":1607098331,"output":"ip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery"},{"event":"cmd_output","timestamp":1607098331,"output":"_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098331,"output":"12:11.665 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.InitializingState with name E"},{"event":"cmd_output","timestamp":1607098331,"output":"lixir.Ppl.PplBlocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake"},{"event":"cmd_output","timestamp":1607098331,"output":"_up\", [\"Ppl-PplBlocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializ"},{"event":"cmd_output","timestamp":1607098331,"output":"ing\", \"waiting\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observe"},{"event":"cmd_output","timestamp":1607098331,"output":"d_state: \"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_reques"},{"event":"cmd_output","timestamp":1607098331,"output":"t, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Mode"},{"event":"cmd_output","timestamp":1607098331,"output":"l.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:11.666 [info] Periodic from module Elixir.Pp"},{"event":"cmd_output","timestamp":1607098331,"output":"l.PplBlocks.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler.WaitingState :: period"},{"event":"cmd_output","timestamp":1607098331,"output":": 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurri"},{"event":"cmd_output","timestamp":1607098331,"output":"ng args: %{allowed_states: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.P"},{"event":"cmd_output","timestamp":1607098331,"output":"plBlocks.Model.PplBlocks, observed_state: \"waiting\", publisher_cb: #Function<0.8975022/1 in Ppl.PplB"},{"event":"cmd_output","timestamp":1607098331,"output":"locks.STMHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :upd"},{"event":"cmd_output","timestamp":1607098331,"output":"ated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBl"},{"event":"cmd_output","timestamp":1607098331,"output":"ocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:11.666 [info] Periodic from module Elixir.Ppl.PplBl"},{"event":"cmd_output","timestamp":1607098331,"output":"ocks.STMHandler.RunningState with name Elixir.Ppl.PplBlocks.STMHandler.RunningState :: period: 1000 "},{"event":"cmd_output","timestamp":1607098331,"output":"ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, recurring args"},{"event":"cmd_output","timestamp":1607098331,"output":": %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlo"},{"event":"cmd_output","timestamp":1607098331,"output":"cks.Model.PplBlocks, observed_state: \"running\", publisher_cb: #Function<0.28166834/1 in Ppl.PplBlock"},{"event":"cmd_output","timestamp":1607098331,"output":"s.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated"},{"event":"cmd_output","timestamp":1607098331,"output":"_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Mode"},{"event":"cmd_output","timestamp":1607098331,"output":"l.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:11.667 [info] Periodic from module Elixir.Pp"},{"event":"cmd_output","timestamp":1607098331,"output":"l.PplBlocks.STMHandler.StoppingState with name Elixir.Ppl.PplBlocks.STMHandler.StoppingState :: peri"},{"event":"cmd_output","timestamp":1607098331,"output":"od: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recu"},{"event":"cmd_output","timestamp":1607098331,"output":"rring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBloc"},{"event":"cmd_output","timestamp":1607098331,"output":"ks.Model.PplBlocks, observed_state: \"stopping\", publisher_cb: #Function<0.104215991/1 in Ppl.PplBloc"},{"event":"cmd_output","timestamp":1607098331,"output":"ks.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updat"},{"event":"cmd_output","timestamp":1607098331,"output":"ed_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Mo"},{"event":"cmd_output","timestamp":1607098331,"output":"del.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:11.667 [info] Periodic from module Elixir."},{"event":"cmd_output","timestamp":1607098331,"output":"Block.Blocks.STMHandler.InitializingState with name Elixir.Block.Blocks.STMHandler.InitializingState"},{"event":"cmd_output","timestamp":1607098331,"output":" :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-InitializingStat"},{"event":"cmd_output","timestamp":1607098331,"output":"e\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Blo"},{"event":"cmd_output","timestamp":1607098331,"output":"ck.Blocks.Model.Blocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Block.EctoRepo, r"},{"event":"cmd_output","timestamp":1607098331,"output":"eturning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block."},{"event":"cmd_output","timestamp":1607098331,"output":"Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:11.668 [info] Periodic from module E"},{"event":"cmd_output","timestamp":1607098331,"output":"lixir.Block.Blocks.STMHandler.RunningState with name Elixir.Block.Blocks.STMHandler.RunningState :: "},{"event":"cmd_output","timestamp":1607098331,"output":"period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-RunningState\"]}, rec"},{"event":"cmd_output","timestamp":1607098331,"output":"urring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query:"},{"event":"cmd_output","timestamp":1607098331,"output":" Block.Blocks.Model.Blocks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, re"},{"event":"cmd_output","timestamp":1607098331,"output":"turning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.B"},{"event":"cmd_output","timestamp":1607098331,"output":"locks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:11.671 [info] Periodic from module El"},{"event":"cmd_output","timestamp":1607098331,"output":"ixir.Block.Blocks.STMHandler.StoppingState with name Elixir.Block.Blocks.STMHandler.StoppingState ::"},{"event":"cmd_output","timestamp":1607098331,"output":" period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-StoppingState\"]}, r"},{"event":"cmd_output","timestamp":1607098331,"output":"ecurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Bl"},{"event":"cmd_output","timestamp":1607098331,"output":"ocks.Model.Blocks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning:"},{"event":"cmd_output","timestamp":1607098331,"output":" [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Mo"},{"event":"cmd_output","timestamp":1607098331,"output":"del.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:11.672 [info] Periodic from module Elixir.Blo"},{"event":"cmd_output","timestamp":1607098331,"output":"ck.Tasks.STMHandler.PendingState with name Elixir.Block.Tasks.STMHandler.PendingState :: period: 100"},{"event":"cmd_output","timestamp":1607098331,"output":" ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingState\"]}, recurring args:"},{"event":"cmd_output","timestamp":1607098331,"output":" %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Tasks.Model.Tasks,"},{"event":"cmd_output","timestamp":1607098331,"output":" observed_state: \"pending\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_r"},{"event":"cmd_output","timestamp":1607098331,"output":"equest, :updated_at, :state, :recovery_count, :block_id, :build_request_id], schema: Block.Tasks.Mod"},{"event":"cmd_output","timestamp":1607098331,"output":"el.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:11.672 [info] Periodic from module Elixir.Block"},{"event":"cmd_output","timestamp":1607098331,"output":".Tasks.STMHandler.RunningState with name Elixir.Block.Tasks.STMHandler.RunningState :: period: 100 m"},{"event":"cmd_output","timestamp":1607098331,"output":"s, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningState\"]}, recurring args: %"},{"event":"cmd_output","timestamp":1607098331,"output":"{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.M"},{"event":"cmd_output","timestamp":1607098331,"output":"odel.Tasks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :"},{"event":"cmd_output","timestamp":1607098331,"output":"terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks"},{"event":"cmd_output","timestamp":1607098331,"output":", task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:11.673 [info] Periodic from module Elixir.Block.Tasks.S"},{"event":"cmd_output","timestamp":1607098331,"output":"TMHandler.StoppingState with name Elixir.Block.Tasks.STMHandler.StoppingState :: period: 100 ms, met"},{"event":"cmd_output","timestamp":1607098331,"output":"ric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]}, recurring args: %{allo"},{"event":"cmd_output","timestamp":1607098331,"output":"wed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, obse"},{"event":"cmd_output","timestamp":1607098331,"output":"rved_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_reque"},{"event":"cmd_output","timestamp":1607098331,"output":"st, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervis"},{"event":"cmd_output","timestamp":1607098331,"output":"or: :skip}\n\u001b[0m\u001b[22m\n16:12:11.782 [info] ppl_id: efe30e31-aa94-446a-a24e-fdc337c8246c, type: PplR"},{"event":"cmd_output","timestamp":1607098331,"output":"equests, event: persisted source_args for pipeline: efe30e31-aa94-446a-a24e-fdc337c8246c, origin: El"},{"event":"cmd_output","timestamp":1607098331,"output":"ixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:11.785 [info]"},{"event":"cmd_output","timestamp":1607098331,"output":" ppl_id: efe30e31-aa94-446a-a24e-fdc337c8246c, type: PplSubInits, state: fetching, event: exit_sche"},{"event":"cmd_output","timestamp":1607098331,"output":"duling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098331,"output":"2:11.814 [info] ppl_id: efe30e31-aa94-446a-a24e-fdc337c8246c, type: PplSubInits, state: regular_ini"},{"event":"cmd_output","timestamp":1607098331,"output":"t, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90)"},{"event":"cmd_output","timestamp":1607098331,"output":", \n\u001b[0m\u001b[22m\n16:12:11.842 [info] ppl_id: efe30e31-aa94-446a-a24e-fdc337c8246c, type: PplRequests,"},{"event":"cmd_output","timestamp":1607098331,"output":" event: persisted definition for request with request_token: 7744a076-364b-11eb-942d-5254005464e2, o"},{"event":"cmd_output","timestamp":1607098331,"output":"rigin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:"},{"event":"cmd_output","timestamp":1607098331,"output":"11.846 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:load"},{"event":"cmd_output","timestamp":1607098331,"output":"ed, \"queues\">, inserted_at: ~N[2020-12-04 16:12:11.844738], name: \"master-.semaphore/semaphore.yml\","},{"event":"cmd_output","timestamp":1607098331,"output":" organization_id: \"4372b116-b937-41fa-b81e-a0b84837c773\", project_id: \"54bcc1d3-f8a2-4397-9982-91905"},{"event":"cmd_output","timestamp":1607098331,"output":"51709a9\", queue_id: \"22122626-67c8-4568-8f49-6375735139bc\", scope: \"project\", updated_at: ~N[2020-12"},{"event":"cmd_output","timestamp":1607098331,"output":"-04 16:12:11.844748], user_generated: false}}\n\u001b[0m\u001b[22m\n16:12:11.851 [info] ppl_id: not_available"},{"event":"cmd_output","timestamp":1607098331,"output":", event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098331,"output":"\u001b[22m\n16:12:11.851 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitSta"},{"event":"cmd_output","timestamp":1607098331,"output":"te.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:11.851 [info] ppl_id: efe30e31-aa94-446a-a24e-fdc337c8246c, "},{"event":"cmd_output","timestamp":1607098331,"output":"type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098331,"output":"xir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:11.851 [info] p"},{"event":"cmd_output","timestamp":1607098331,"output":"pl_id: efe30e31-aa94-446a-a24e-fdc337c8246c, type: PplBlocks, block_index: 1, state: initializing, e"},{"event":"cmd_output","timestamp":1607098331,"output":"vent: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?"},{"event":"cmd_output","timestamp":1607098331,"output":"/1(L105), \n\u001b[0m\u001b[22m\n16:12:11.857 [info] ppl_id: efe30e31-aa94-446a-a24e-fdc337c8246c, type: PplS"},{"event":"cmd_output","timestamp":1607098331,"output":"ubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loop"},{"event":"cmd_output","timestamp":1607098331,"output":"er.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:11.864 [info] ppl_id: efe30e31-aa94-446a-a2"},{"event":"cmd_output","timestamp":1607098331,"output":"4e-fdc337c8246c, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098331,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:11.871 [info] p"},{"event":"cmd_output","timestamp":1607098331,"output":"pl_id: efe30e31-aa94-446a-a24e-fdc337c8246c, type: Ppls, state: pending, event: exit_scheduling, rec"},{"event":"cmd_output","timestamp":1607098331,"output":"overy_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:11.872 [i"},{"event":"cmd_output","timestamp":1607098331,"output":"nfo] ppl_id: efe30e31-aa94-446a-a24e-fdc337c8246c, type: PplBlocks, block_index: 1, state: waiting,"},{"event":"cmd_output","timestamp":1607098331,"output":" event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), "},{"event":"cmd_output","timestamp":1607098331,"output":"\n\u001b[0m\u001b[22m\n16:12:11.881 [info] ppl_id: efe30e31-aa94-446a-a24e-fdc337c8246c, type: Ppls, state: q"},{"event":"cmd_output","timestamp":1607098331,"output":"ueuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1"},{"event":"cmd_output","timestamp":1607098331,"output":"(L90), \n\u001b[0m\u001b[22m\n16:12:11.893 [info] ppl_id: efe30e31-aa94-446a-a24e-fdc337c8246c, type: Ppls, s"},{"event":"cmd_output","timestamp":1607098331,"output":"tate: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098331,"output":"hange/1(L90), \n\u001b[0m\u001b[22m\n16:12:11.899 [info] PplBlocks WaitingState STM is scheduling block 0 fro"},{"event":"cmd_output","timestamp":1607098331,"output":"m pipeline: \"efe30e31-aa94-446a-a24e-fdc337c8246c\"\n\u001b[0m\u001b[22m\n16:12:11.906 [info] block_id: e51b45"},{"event":"cmd_output","timestamp":1607098331,"output":"3f-5e00-4be1-b333-fe73c6f74253, type: BlockRequests, event: persisted block run request from ppl efe"},{"event":"cmd_output","timestamp":1607098331,"output":"30e31-aa94-446a-a24e-fdc337c8246c for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequest"},{"event":"cmd_output","timestamp":1607098331,"output":"sQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:11.918 [info] block_id: e51b453f-5e00-4be1-b33"},{"event":"cmd_output","timestamp":1607098331,"output":"3-fe73c6f74253, type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: E"},{"event":"cmd_output","timestamp":1607098331,"output":"lixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:11.922 [info] Block 0 of p"},{"event":"cmd_output","timestamp":1607098331,"output":"ipeline with id: efe30e31-aa94-446a-a24e-fdc337c8246c scheduled in block service with id: : \"e51b453"},{"event":"cmd_output","timestamp":1607098331,"output":"f-5e00-4be1-b333-fe73c6f74253\"\n\u001b[0m\u001b[22m\n16:12:11.927 [info] ppl_id: efe30e31-aa94-446a-a24e-fdc3"},{"event":"cmd_output","timestamp":1607098331,"output":"37c8246c, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0"},{"event":"cmd_output","timestamp":1607098331,"output":", origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:11.929 [info] block_id"},{"event":"cmd_output","timestamp":1607098331,"output":": e51b453f-5e00-4be1-b333-fe73c6f74253, type: BlockRequests, event: persisted build and sub_ppl deta"},{"event":"cmd_output","timestamp":1607098331,"output":"ils for block_request: e51b453f-5e00-4be1-b333-fe73c6f74253, origin: Elixir.Block.BlockRequests.Mode"},{"event":"cmd_output","timestamp":1607098331,"output":"l.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:11.934 [info] block_id: e51b453f-5e0"},{"event":"cmd_output","timestamp":1607098331,"output":"0-4be1-b333-fe73c6f74253, type: Tasks, state: pending, event: created, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098331,"output":"ixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:11.936 [info] bl"},{"event":"cmd_output","timestamp":1607098331,"output":"ock_id: e51b453f-5e00-4be1-b333-fe73c6f74253, type: Blocks, state: running, event: exit_scheduling, "},{"event":"cmd_output","timestamp":1607098331,"output":"recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:11.969"},{"event":"cmd_output","timestamp":1607098331,"output":" [info] block_id: e51b453f-5e00-4be1-b333-fe73c6f74253, type: Tasks, state: running, event: exit_sc"},{"event":"cmd_output","timestamp":1607098332,"output":"heduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098332,"output":":12:12.250 [info] block_id: e51b453f-5e00-4be1-b333-fe73c6f74253, type: Tasks, state: done, event: "},{"event":"cmd_output","timestamp":1607098332,"output":"exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098332,"output":"22m\n16:12:12.264 [info] block_id: e51b453f-5e00-4be1-b333-fe73c6f74253, type: Blocks, state: done,"},{"event":"cmd_output","timestamp":1607098332,"output":" event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), "},{"event":"cmd_output","timestamp":1607098332,"output":"\n\u001b[0m\u001b[22m\n16:12:12.275 [info] ppl_id: efe30e31-aa94-446a-a24e-fdc337c8246c, block_id: e51b453f-5"},{"event":"cmd_output","timestamp":1607098332,"output":"e00-4be1-b333-fe73c6f74253, type: PplBlocks, block_index: 0, state: done, result: passed, event: exi"},{"event":"cmd_output","timestamp":1607098332,"output":"t_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098332,"output":"\n16:12:12.285 [info] PplBlocks WaitingState STM is scheduling block 1 from pipeline: \"efe30e31-aa9"},{"event":"cmd_output","timestamp":1607098332,"output":"4-446a-a24e-fdc337c8246c\"\n\u001b[0m\u001b[22m\n16:12:12.296 [info] block_id: 2ad2542e-8088-431e-87bb-75e906b"},{"event":"cmd_output","timestamp":1607098332,"output":"e07c8, type: BlockRequests, event: persisted block run request from ppl efe30e31-aa94-446a-a24e-fdc3"},{"event":"cmd_output","timestamp":1607098332,"output":"37c8246c for block 1, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response"},{"event":"cmd_output","timestamp":1607098332,"output":"/4(L35), \n\u001b[0m\u001b[22m\n16:12:12.300 [info] block_id: 2ad2542e-8088-431e-87bb-75e906be07c8, type: Blo"},{"event":"cmd_output","timestamp":1607098332,"output":"cks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model."},{"event":"cmd_output","timestamp":1607098332,"output":"BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:12.300 [info] Block 1 of pipeline with id: efe30e31"},{"event":"cmd_output","timestamp":1607098332,"output":"-aa94-446a-a24e-fdc337c8246c scheduled in block service with id: : \"2ad2542e-8088-431e-87bb-75e906be"},{"event":"cmd_output","timestamp":1607098332,"output":"07c8\"\n\u001b[0m\u001b[22m\n16:12:12.304 [info] ppl_id: efe30e31-aa94-446a-a24e-fdc337c8246c, type: PplBlocks"},{"event":"cmd_output","timestamp":1607098332,"output":", block_index: 1, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.S"},{"event":"cmd_output","timestamp":1607098332,"output":"TM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:12.312 [info] block_id: 2ad2542e-8088-431e-87bb"},{"event":"cmd_output","timestamp":1607098332,"output":"-75e906be07c8, type: BlockRequests, event: persisted build and sub_ppl details for block_request: 2a"},{"event":"cmd_output","timestamp":1607098332,"output":"d2542e-8088-431e-87bb-75e906be07c8, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.in"},{"event":"cmd_output","timestamp":1607098332,"output":"sert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:12.315 [info] block_id: 2ad2542e-8088-431e-87bb-75e906be07c8,"},{"event":"cmd_output","timestamp":1607098332,"output":" type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHand"},{"event":"cmd_output","timestamp":1607098332,"output":"ler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:12.318 [info] block_id: 2ad2542e-8088-431"},{"event":"cmd_output","timestamp":1607098332,"output":"e-87bb-75e906be07c8, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098332,"output":": Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:12.344 [info] block_id: 2ad254"},{"event":"cmd_output","timestamp":1607098332,"output":"2e-8088-431e-87bb-75e906be07c8, type: Tasks, state: running, event: exit_scheduling, recovery_count:"},{"event":"cmd_output","timestamp":1607098332,"output":" 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:12.367 [info] block_"},{"event":"cmd_output","timestamp":1607098332,"output":"id: 2ad2542e-8088-431e-87bb-75e906be07c8, type: Tasks, state: done, event: exit_scheduling, recovery"},{"event":"cmd_output","timestamp":1607098332,"output":"_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:12.375 [info] "},{"event":"cmd_output","timestamp":1607098332,"output":" block_id: 2ad2542e-8088-431e-87bb-75e906be07c8, type: Blocks, state: done, event: exit_scheduling, "},{"event":"cmd_output","timestamp":1607098332,"output":"recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:12.384"},{"event":"cmd_output","timestamp":1607098332,"output":" [info] ppl_id: efe30e31-aa94-446a-a24e-fdc337c8246c, block_id: 2ad2542e-8088-431e-87bb-75e906be07c"},{"event":"cmd_output","timestamp":1607098332,"output":"8, type: PplBlocks, block_index: 1, state: done, result: passed, event: exit_scheduling, recovery_co"},{"event":"cmd_output","timestamp":1607098332,"output":"unt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:12.409 [info] pp"},{"event":"cmd_output","timestamp":1607098332,"output":"l_id: efe30e31-aa94-446a-a24e-fdc337c8246c, type: Ppls, state: done, result: passed, event: exit_sch"},{"event":"cmd_output","timestamp":1607098332,"output":"eduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * "},{"event":"cmd_output","timestamp":1607098332,"output":"test gRPC partial_rebuild() - fails when given pipeline is passed (945.1ms)\u001b[0m\n * test gRPC list_"},{"event":"cmd_output","timestamp":1607098332,"output":"grouped() - project scoped implicit queues\u001b[22m\n16:12:12.571 [info] ppl_id: 2f03e514-d7ee-4233-b0"},{"event":"cmd_output","timestamp":1607098332,"output":"ff-c20a93b26c93, type: PplRequests, event: persisted schedule request with request_token: 28eacd58-c"},{"event":"cmd_output","timestamp":1607098332,"output":"61d-4bc3-bd77-5a52108a1b4c, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response"},{"event":"cmd_output","timestamp":1607098332,"output":"/2(L55), \n\u001b[0m\u001b[22m\n16:12:12.574 [info] ppl_id: 2f03e514-d7ee-4233-b0ff-c20a93b26c93, type: PplRe"},{"event":"cmd_output","timestamp":1607098332,"output":"quests, event: persisted definition for request with request_token: 28eacd58-c61d-4bc3-bd77-5a52108a"},{"event":"cmd_output","timestamp":1607098332,"output":"1b4c, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098332,"output":"\n16:12:12.578 [info] ppl_id: 2f03e514-d7ee-4233-b0ff-c20a93b26c93, type: Ppls, state: initializing,"},{"event":"cmd_output","timestamp":1607098332,"output":" event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/"},{"event":"cmd_output","timestamp":1607098332,"output":"2(L124), \n\u001b[0m\u001b[22m\n16:12:12.589 [info] Persisted ppl_sub_init for pipeline with ppl_id: 2f03e514"},{"event":"cmd_output","timestamp":1607098332,"output":"-d7ee-4233-b0ff-c20a93b26c93: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:lo"},{"event":"cmd_output","timestamp":1607098332,"output":"aded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 171, in_scheduling: f"},{"event":"cmd_output","timestamp":1607098332,"output":"alse, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:12.582850], pipeline_requests: #Ecto.As"},{"event":"cmd_output","timestamp":1607098332,"output":"sociation.NotLoaded, ppl_id: \"2f03e514-d7ee-4233-b0ff-"},{"event":"cmd_output","timestamp":1607098332,"output":"c20a93b26c93\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_reque"},{"event":"cmd_output","timestamp":1607098332,"output":"st: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:12.582862]}\n\u001b[0m\u001b[22m\n16:12:"},{"event":"cmd_output","timestamp":1607098332,"output":"12.596 [info] ppl_id: b16ba897-fd73-4807-8a0c-9906757826c7, type: PplRequests, event: persisted sch"},{"event":"cmd_output","timestamp":1607098332,"output":"edule request with request_token: 02e0e8b2-1e85-4c49-8ea6-6ff958ea2e21, origin: Elixir.Ppl.PplReques"},{"event":"cmd_output","timestamp":1607098332,"output":"ts.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:12.598 [info] ppl_id: b16ba"},{"event":"cmd_output","timestamp":1607098332,"output":"897-fd73-4807-8a0c-9906757826c7, type: PplRequests, event: persisted definition for request with req"},{"event":"cmd_output","timestamp":1607098332,"output":"uest_token: 02e0e8b2-1e85-4c49-8ea6-6ff958ea2e21, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQu"},{"event":"cmd_output","timestamp":1607098332,"output":"eries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:12.602 [info] ppl_id: b16ba897-fd73-4807-8a0c-99"},{"event":"cmd_output","timestamp":1607098332,"output":"06757826c7, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098332,"output":"Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:12.608 [info] Persisted ppl"},{"event":"cmd_output","timestamp":1607098332,"output":"_sub_init for pipeline with ppl_id: b16ba897-fd73-4807-8a0c-9906757826c7: %Ppl.PplSubInits.Model.Ppl"},{"event":"cmd_output","timestamp":1607098332,"output":"SubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error"},{"event":"cmd_output","timestamp":1607098332,"output":"_description: nil, id: 172, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 1"},{"event":"cmd_output","timestamp":1607098332,"output":"6:12:12.606306], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"b16ba897-fd73-4807-8a0c-9906757826c7\", recovery_count: 0, result: nil, result_re"},{"event":"cmd_output","timestamp":1607098332,"output":"ason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[202"},{"event":"cmd_output","timestamp":1607098332,"output":"0-12-04 16:12:12.606319]}\n\u001b[0m\u001b[22m\n16:12:12.614 [info] ppl_id: 461da51c-7fb6-4fea-ae26-7badf5d5b"},{"event":"cmd_output","timestamp":1607098332,"output":"2ea, type: PplRequests, event: persisted schedule request with request_token: 38d4f3b1-8f4f-4975-b9b"},{"event":"cmd_output","timestamp":1607098332,"output":"5-045115f903b1, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b"},{"event":"cmd_output","timestamp":1607098332,"output":"[0m\u001b[22m\n16:12:12.616 [info] ppl_id: 461da51c-7fb6-4fea-ae26-7badf5d5b2ea, type: PplRequests, even"},{"event":"cmd_output","timestamp":1607098332,"output":"t: persisted definition for request with request_token: 38d4f3b1-8f4f-4975-b9b5-045115f903b1, origin"},{"event":"cmd_output","timestamp":1607098332,"output":": Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:12.62"},{"event":"cmd_output","timestamp":1607098332,"output":"1 [info] ppl_id: 461da51c-7fb6-4fea-ae26-7badf5d5b2ea, type: Ppls, state: initializing, event: init"},{"event":"cmd_output","timestamp":1607098332,"output":"ializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b"},{"event":"cmd_output","timestamp":1607098332,"output":"[0m\u001b[22m\n16:12:12.626 [info] Persisted ppl_sub_init for pipeline with ppl_id: 461da51c-7fb6-4fea-a"},{"event":"cmd_output","timestamp":1607098332,"output":"e26-7badf5d5b2ea: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipel"},{"event":"cmd_output","timestamp":1607098332,"output":"ine_sub_inits\">, compile_task_id: nil, error_description: nil, id: 173, in_scheduling: false, init_t"},{"event":"cmd_output","timestamp":1607098332,"output":"ype: \"regular\", inserted_at: ~N[2020-12-04 16:12:12.624205], pipeline_requests: #Ecto.Association.No"},{"event":"cmd_output","timestamp":1607098332,"output":"tLoaded, ppl_id: \"461da51c-7fb6-4fea-ae26-7badf5d5b2ea"},{"event":"cmd_output","timestamp":1607098332,"output":"\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, ter"},{"event":"cmd_output","timestamp":1607098332,"output":"minate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:12.624214]}\n\u001b[0m\u001b[22m\n16:12:12.631 [info"},{"event":"cmd_output","timestamp":1607098332,"output":"] ppl_id: f8ae9054-a14f-4255-a24c-efb7c98bb181, type: PplRequests, event: persisted schedule reques"},{"event":"cmd_output","timestamp":1607098332,"output":"t with request_token: 1d505c6c-0295-40e6-a07a-2b6c3f9f1289, origin: Elixir.Ppl.PplRequests.Model.Ppl"},{"event":"cmd_output","timestamp":1607098332,"output":"RequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:12.633 [info] ppl_id: f8ae9054-a14f-425"},{"event":"cmd_output","timestamp":1607098332,"output":"5-a24c-efb7c98bb181, type: PplRequests, event: persisted definition for request with request_token: "},{"event":"cmd_output","timestamp":1607098332,"output":"1d505c6c-0295-40e6-a07a-2b6c3f9f1289, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert"},{"event":"cmd_output","timestamp":1607098332,"output":"_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:12.636 [info] ppl_id: f8ae9054-a14f-4255-a24c-efb7c98bb181, "},{"event":"cmd_output","timestamp":1607098332,"output":"type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Mod"},{"event":"cmd_output","timestamp":1607098332,"output":"el.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:12.641 [info] Persisted ppl_sub_init fo"},{"event":"cmd_output","timestamp":1607098332,"output":"r pipeline with ppl_id: f8ae9054-a14f-4255-a24c-efb7c98bb181: %Ppl.PplSubInits.Model.PplSubInits{__m"},{"event":"cmd_output","timestamp":1607098332,"output":"eta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description"},{"event":"cmd_output","timestamp":1607098332,"output":": nil, id: 174, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:12.6398"},{"event":"cmd_output","timestamp":1607098332,"output":"02], pipeline_requests: #Ecto.Association.NotLoaded, p"},{"event":"cmd_output","timestamp":1607098332,"output":"pl_id: \"f8ae9054-a14f-4255-a24c-efb7c98bb181\", recovery_count: 0, result: nil, result_reason: nil, s"},{"event":"cmd_output","timestamp":1607098332,"output":"tate: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:1"},{"event":"cmd_output","timestamp":1607098332,"output":"2:12.639815]}\n\u001b[0m\u001b[22m\n16:12:12.648 [info] ppl_id: c9bc04fa-7912-45ba-b2c7-7b05e0ba04c4, type: P"},{"event":"cmd_output","timestamp":1607098332,"output":"plRequests, event: persisted schedule request with request_token: e1a0ad25-aec5-4d18-8dc6-d89000ade2"},{"event":"cmd_output","timestamp":1607098332,"output":"4d, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098332,"output":":12:12.650 [info] ppl_id: c9bc04fa-7912-45ba-b2c7-7b05e0ba04c4, type: PplRequests, event: persisted"},{"event":"cmd_output","timestamp":1607098332,"output":" definition for request with request_token: e1a0ad25-aec5-4d18-8dc6-d89000ade24d, origin: Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098332,"output":".PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:12.657 [info] pp"},{"event":"cmd_output","timestamp":1607098332,"output":"l_id: c9bc04fa-7912-45ba-b2c7-7b05e0ba04c4, type: Ppls, state: initializing, event: initializing, re"},{"event":"cmd_output","timestamp":1607098332,"output":"covery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098332,"output":":12:12.662 [info] Persisted ppl_sub_init for pipeline with ppl_id: c9bc04fa-7912-45ba-b2c7-7b05e0ba"},{"event":"cmd_output","timestamp":1607098332,"output":"04c4: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_init"},{"event":"cmd_output","timestamp":1607098332,"output":"s\">, compile_task_id: nil, error_description: nil, id: 175, in_scheduling: false, init_type: \"regula"},{"event":"cmd_output","timestamp":1607098332,"output":"r\", inserted_at: ~N[2020-12-04 16:12:12.660524], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"c9bc04fa-7912-45ba-b2c7-7b05e0ba04c4\", recovery_"},{"event":"cmd_output","timestamp":1607098332,"output":"count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_reque"},{"event":"cmd_output","timestamp":1607098332,"output":"st_desc: nil, updated_at: ~N[2020-12-04 16:12:12.660536]}\n\u001b[0m\u001b[22m\n16:12:12.668 [info] ppl_id: b"},{"event":"cmd_output","timestamp":1607098332,"output":"de73561-8a20-43d2-9b3c-42fab53b730c, type: PplRequests, event: persisted schedule request with reque"},{"event":"cmd_output","timestamp":1607098332,"output":"st_token: 95972b5a-fd63-4c16-92fe-464858020587, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQuer"},{"event":"cmd_output","timestamp":1607098332,"output":"ies.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:12.670 [info] ppl_id: bde73561-8a20-43d2-9b3c-42fab"},{"event":"cmd_output","timestamp":1607098332,"output":"53b730c, type: PplRequests, event: persisted definition for request with request_token: 95972b5a-fd6"},{"event":"cmd_output","timestamp":1607098332,"output":"3-4c16-92fe-464858020587, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/"},{"event":"cmd_output","timestamp":1607098332,"output":"3(L76), \n\u001b[0m\u001b[22m\n16:12:12.676 [info] ppl_id: bde73561-8a20-43d2-9b3c-42fab53b730c, type: Ppls, "},{"event":"cmd_output","timestamp":1607098332,"output":"state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueri"},{"event":"cmd_output","timestamp":1607098332,"output":"es.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:12.681 [info] Persisted ppl_sub_init for pipeline w"},{"event":"cmd_output","timestamp":1607098332,"output":"ith ppl_id: bde73561-8a20-43d2-9b3c-42fab53b730c: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto"},{"event":"cmd_output","timestamp":1607098332,"output":".Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 1"},{"event":"cmd_output","timestamp":1607098332,"output":"76, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:12.680044], pipelin"},{"event":"cmd_output","timestamp":1607098332,"output":"e_requests: #Ecto.Association.NotLoaded, ppl_id: \"bde7"},{"event":"cmd_output","timestamp":1607098332,"output":"3561-8a20-43d2-9b3c-42fab53b730c\", recovery_count: 0, result: nil, result_reason: nil, state: \"creat"},{"event":"cmd_output","timestamp":1607098332,"output":"ed\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:12.680056]"},{"event":"cmd_output","timestamp":1607098332,"output":"}\n\u001b[0m\u001b[22m\n16:12:12.687 [info] ppl_id: ae0f1d96-3bea-43dd-8078-d7f07c07c257, type: PplRequests, "},{"event":"cmd_output","timestamp":1607098332,"output":"event: persisted schedule request with request_token: 69d07a9c-a8aa-4c5f-b76e-26146f443496, origin: "},{"event":"cmd_output","timestamp":1607098332,"output":"Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:12.689 ["},{"event":"cmd_output","timestamp":1607098332,"output":"info] ppl_id: ae0f1d96-3bea-43dd-8078-d7f07c07c257, type: PplRequests, event: persisted definition "},{"event":"cmd_output","timestamp":1607098332,"output":"for request with request_token: 69d07a9c-a8aa-4c5f-b76e-26146f443496, origin: Elixir.Ppl.PplRequests"},{"event":"cmd_output","timestamp":1607098332,"output":".Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:12.692 [info] ppl_id: ae0f1d"},{"event":"cmd_output","timestamp":1607098332,"output":"96-3bea-43dd-8078-d7f07c07c257, type: Ppls, state: initializing, event: initializing, recovery_count"},{"event":"cmd_output","timestamp":1607098332,"output":": 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:12.696 ["},{"event":"cmd_output","timestamp":1607098332,"output":"info] Persisted ppl_sub_init for pipeline with ppl_id: ae0f1d96-3bea-43dd-8078-d7f07c07c257: %Ppl.P"},{"event":"cmd_output","timestamp":1607098332,"output":"plSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile"},{"event":"cmd_output","timestamp":1607098332,"output":"_task_id: nil, error_description: nil, id: 177, in_scheduling: false, init_type: \"regular\", inserted"},{"event":"cmd_output","timestamp":1607098332,"output":"_at: ~N[2020-12-04 16:12:12.695201], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"ae0f1d96-3bea-43dd-8078-d7f07c07c257\", recovery_count: 0, re"},{"event":"cmd_output","timestamp":1607098332,"output":"sult: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil"},{"event":"cmd_output","timestamp":1607098332,"output":", updated_at: ~N[2020-12-04 16:12:12.695213]}\n\u001b[0m\u001b[22m\n16:12:12.704 [info] ppl_id: e06554e5-e9d5"},{"event":"cmd_output","timestamp":1607098332,"output":"-4e22-b778-efe0bdcf2091, type: PplRequests, event: persisted schedule request with request_token: 60"},{"event":"cmd_output","timestamp":1607098332,"output":"da5ef1-f9e0-4b53-a8ba-d85a47ed50c0, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_"},{"event":"cmd_output","timestamp":1607098332,"output":"response/2(L55), \n\u001b[0m\u001b[22m\n16:12:12.709 [info] ppl_id: e06554e5-e9d5-4e22-b778-efe0bdcf2091, typ"},{"event":"cmd_output","timestamp":1607098332,"output":"e: PplRequests, event: persisted definition for request with request_token: 60da5ef1-f9e0-4b53-a8ba-"},{"event":"cmd_output","timestamp":1607098332,"output":"d85a47ed50c0, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b["},{"event":"cmd_output","timestamp":1607098332,"output":"0m\u001b[22m\n16:12:12.717 [info] ppl_id: e06554e5-e9d5-4e22-b778-efe0bdcf2091, type: Ppls, state: initi"},{"event":"cmd_output","timestamp":1607098332,"output":"alizing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_r"},{"event":"cmd_output","timestamp":1607098332,"output":"esponse/2(L124), \n\u001b[0m\u001b[22m\n16:12:12.722 [info] Persisted ppl_sub_init for pipeline with ppl_id: "},{"event":"cmd_output","timestamp":1607098332,"output":"e06554e5-e9d5-4e22-b778-efe0bdcf2091: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Meta"},{"event":"cmd_output","timestamp":1607098332,"output":"data<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 178, in_sched"},{"event":"cmd_output","timestamp":1607098332,"output":"uling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:12.720031], pipeline_requests: "},{"event":"cmd_output","timestamp":1607098332,"output":"#Ecto.Association.NotLoaded, ppl_id: \"e06554e5-e9d5-4e"},{"event":"cmd_output","timestamp":1607098332,"output":"22-b778-efe0bdcf2091\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", termina"},{"event":"cmd_output","timestamp":1607098332,"output":"te_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:12.720043]}\n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098332,"output":"\n16:12:12.725 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingState with name E"},{"event":"cmd_output","timestamp":1607098332,"output":"lixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\","},{"event":"cmd_output","timestamp":1607098332,"output":" [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"pen"},{"event":"cmd_output","timestamp":1607098332,"output":"ding\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"initializi"},{"event":"cmd_output","timestamp":1607098332,"output":"ng\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, repo: P"},{"event":"cmd_output","timestamp":1607098332,"output":"pl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :pp"},{"event":"cmd_output","timestamp":1607098332,"output":"l_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:12.725 [info] Periodi"},{"event":"cmd_output","timestamp":1607098332,"output":"c from module Elixir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler.PendingSt"},{"event":"cmd_output","timestamp":1607098332,"output":"ate :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, "},{"event":"cmd_output","timestamp":1607098332,"output":"recurring args: %{allowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_sec: 0, in"},{"event":"cmd_output","timestamp":1607098332,"output":"itial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publisher_cb: #Function<0.8493005/1 in "},{"event":"cmd_output","timestamp":1607098332,"output":"Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :"},{"event":"cmd_output","timestamp":1607098332,"output":"updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor"},{"event":"cmd_output","timestamp":1607098332,"output":": PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:12:12.725 [info] Periodic from module Elixir.Ppl.Ppls.STMHandl"},{"event":"cmd_output","timestamp":1607098332,"output":"er.QueuingState with name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, metric_name: {\""},{"event":"cmd_output","timestamp":1607098332,"output":"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{allowed_states: [\"qu"},{"event":"cmd_output","timestamp":1607098332,"output":"euing\", \"running\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state"},{"event":"cmd_output","timestamp":1607098332,"output":": \"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.args/0>, repo"},{"event":"cmd_output","timestamp":1607098332,"output":": Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, "},{"event":"cmd_output","timestamp":1607098332,"output":":ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:12.726 [info] Peri"},{"event":"cmd_output","timestamp":1607098332,"output":"odic from module Elixir.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHandler.Runnin"},{"event":"cmd_output","timestamp":1607098332,"output":"gState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]"},{"event":"cmd_output","timestamp":1607098332,"output":"}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_"},{"event":"cmd_output","timestamp":1607098332,"output":"query: Ppl.Ppls.Model.Ppls, observed_state: \"running\", publisher_cb: #Function<0.74670282/1 in Ppl.P"},{"event":"cmd_output","timestamp":1607098332,"output":"pls.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updat"},{"event":"cmd_output","timestamp":1607098332,"output":"ed_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: Ppl"},{"event":"cmd_output","timestamp":1607098332,"output":"sTaskSupervisor}\n\u001b[0m\u001b[22m\n16:12:12.726 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.St"},{"event":"cmd_output","timestamp":1607098332,"output":"oppingState with name Elixir.Ppl.Ppls.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl"},{"event":"cmd_output","timestamp":1607098332,"output":".beholder-wake_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stop"},{"event":"cmd_output","timestamp":1607098332,"output":"ping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"stopping\""},{"event":"cmd_output","timestamp":1607098332,"output":", publisher_cb: #Function<0.71803493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, repo: Ppl.EctoR"},{"event":"cmd_output","timestamp":1607098332,"output":"epo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], s"},{"event":"cmd_output","timestamp":1607098332,"output":"chema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:12.726 [info] Periodic from m"},{"event":"cmd_output","timestamp":1607098332,"output":"odule Elixir.Ppl.PplSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHandler.Cre"},{"event":"cmd_output","timestamp":1607098332,"output":"atedState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-Crea"},{"event":"cmd_output","timestamp":1607098332,"output":"tedState\"]}, recurring args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_qu"},{"event":"cmd_output","timestamp":1607098332,"output":"ery: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip, repo: Ppl.Ec"},{"event":"cmd_output","timestamp":1607098332,"output":"toRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id]"},{"event":"cmd_output","timestamp":1607098332,"output":", schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:12.726 [info]"},{"event":"cmd_output","timestamp":1607098332,"output":" Periodic from module Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl.PplSubIn"},{"event":"cmd_output","timestamp":1607098332,"output":"its.STMHandler.FetchingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubIn"},{"event":"cmd_output","timestamp":1607098332,"output":"its-STMHandler-FetchingState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \""},{"event":"cmd_output","timestamp":1607098332,"output":"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fet"},{"event":"cmd_output","timestamp":1607098332,"output":"ching\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :"},{"event":"cmd_output","timestamp":1607098332,"output":"state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_superviso"},{"event":"cmd_output","timestamp":1607098332,"output":"r: :skip}\n\u001b[0m\u001b[22m\n16:12:12.726 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.Co"},{"event":"cmd_output","timestamp":1607098332,"output":"mpilationState with name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 100 ms, metri"},{"event":"cmd_output","timestamp":1607098332,"output":"c_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurring args: %"},{"event":"cmd_output","timestamp":1607098332,"output":"{allowed_states: [\"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_"},{"event":"cmd_output","timestamp":1607098332,"output":"query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"compilation\", publisher_cb: :skip, repo: "},{"event":"cmd_output","timestamp":1607098332,"output":"Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :p"},{"event":"cmd_output","timestamp":1607098332,"output":"pl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:12.727 "},{"event":"cmd_output","timestamp":1607098332,"output":"[info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with name Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098332,"output":".PplSubInits.STMHandler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\""},{"event":"cmd_output","timestamp":1607098332,"output":"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurring args: %{allowed_states: [\"done\"], cooling_"},{"event":"cmd_output","timestamp":1607098332,"output":"time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_init\", publi"},{"event":"cmd_output","timestamp":1607098332,"output":"sher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :resul"},{"event":"cmd_output","timestamp":1607098332,"output":"t, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b["},{"event":"cmd_output","timestamp":1607098332,"output":"0m\u001b[22m\n16:12:12.727 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.InitializingState"},{"event":"cmd_output","timestamp":1607098332,"output":" with name Elixir.Ppl.PplBlocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.b"},{"event":"cmd_output","timestamp":1607098332,"output":"eholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states:"},{"event":"cmd_output","timestamp":1607098332,"output":" [\"initializing\", \"waiting\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlo"},{"event":"cmd_output","timestamp":1607098332,"output":"cks, observed_state: \"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :term"},{"event":"cmd_output","timestamp":1607098332,"output":"inate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.Pp"},{"event":"cmd_output","timestamp":1607098332,"output":"lBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:12.727 [info] Periodic from modu"},{"event":"cmd_output","timestamp":1607098332,"output":"le Elixir.Ppl.PplBlocks.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler.WaitingSta"},{"event":"cmd_output","timestamp":1607098332,"output":"te :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState"},{"event":"cmd_output","timestamp":1607098332,"output":"\"]}, recurring args: %{allowed_states: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 0, initial_"},{"event":"cmd_output","timestamp":1607098332,"output":"query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"waiting\", publisher_cb: #Function<0.8975022/1"},{"event":"cmd_output","timestamp":1607098332,"output":" in Ppl.PplBlocks.STMHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_r"},{"event":"cmd_output","timestamp":1607098332,"output":"equest, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks"},{"event":"cmd_output","timestamp":1607098332,"output":".Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:12.727 [info] Periodic from module Elix"},{"event":"cmd_output","timestamp":1607098332,"output":"ir.Ppl.PplBlocks.STMHandler.RunningState with name Elixir.Ppl.PplBlocks.STMHandler.RunningState :: p"},{"event":"cmd_output","timestamp":1607098332,"output":"eriod: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, re"},{"event":"cmd_output","timestamp":1607098332,"output":"curring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query"},{"event":"cmd_output","timestamp":1607098332,"output":": Ppl.PplBlocks.Model.PplBlocks, observed_state: \"running\", publisher_cb: #Function<0.28166834/1 in "},{"event":"cmd_output","timestamp":1607098332,"output":"Ppl.PplBlocks.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_reque"},{"event":"cmd_output","timestamp":1607098332,"output":"st, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.Pp"},{"event":"cmd_output","timestamp":1607098332,"output":"lBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:12.727 [info] Periodic from modu"},{"event":"cmd_output","timestamp":1607098332,"output":"le Elixir.Ppl.PplBlocks.STMHandler.StoppingState with name Elixir.Ppl.PplBlocks.STMHandler.StoppingS"},{"event":"cmd_output","timestamp":1607098332,"output":"tate :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-StoppingSt"},{"event":"cmd_output","timestamp":1607098332,"output":"ate\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query:"},{"event":"cmd_output","timestamp":1607098332,"output":" Ppl.PplBlocks.Model.PplBlocks, observed_state: \"stopping\", publisher_cb: #Function<0.104215991/1 in"},{"event":"cmd_output","timestamp":1607098332,"output":" Ppl.PplBlocks.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_req"},{"event":"cmd_output","timestamp":1607098332,"output":"uest, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl."},{"event":"cmd_output","timestamp":1607098332,"output":"PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:12.727 [info] Periodic from mo"},{"event":"cmd_output","timestamp":1607098332,"output":"dule Elixir.Block.Blocks.STMHandler.InitializingState with name Elixir.Block.Blocks.STMHandler.Initi"},{"event":"cmd_output","timestamp":1607098332,"output":"alizingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-Init"},{"event":"cmd_output","timestamp":1607098332,"output":"ializingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initia"},{"event":"cmd_output","timestamp":1607098332,"output":"l_query: Block.Blocks.Model.Blocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Block"},{"event":"cmd_output","timestamp":1607098332,"output":".EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], sc"},{"event":"cmd_output","timestamp":1607098332,"output":"hema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:12.727 [info] Periodic f"},{"event":"cmd_output","timestamp":1607098332,"output":"rom module Elixir.Block.Blocks.STMHandler.RunningState with name Elixir.Block.Blocks.STMHandler.Runn"},{"event":"cmd_output","timestamp":1607098332,"output":"ingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-RunningS"},{"event":"cmd_output","timestamp":1607098332,"output":"tate\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, in"},{"event":"cmd_output","timestamp":1607098332,"output":"itial_query: Block.Blocks.Model.Blocks, observed_state: \"running\", publisher_cb: :skip, repo: Block."},{"event":"cmd_output","timestamp":1607098332,"output":"EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], sch"},{"event":"cmd_output","timestamp":1607098332,"output":"ema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:12.727 [info] Periodic fr"},{"event":"cmd_output","timestamp":1607098332,"output":"om module Elixir.Block.Blocks.STMHandler.StoppingState with name Elixir.Block.Blocks.STMHandler.Stop"},{"event":"cmd_output","timestamp":1607098332,"output":"pingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-Stoppin"},{"event":"cmd_output","timestamp":1607098332,"output":"gState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_que"},{"event":"cmd_output","timestamp":1607098332,"output":"ry: Block.Blocks.Model.Blocks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo"},{"event":"cmd_output","timestamp":1607098332,"output":", returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Blo"},{"event":"cmd_output","timestamp":1607098332,"output":"ck.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:12.728 [info] Periodic from modul"},{"event":"cmd_output","timestamp":1607098332,"output":"e Elixir.Block.Tasks.STMHandler.PendingState with name Elixir.Block.Tasks.STMHandler.PendingState ::"},{"event":"cmd_output","timestamp":1607098332,"output":" period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingState\"]}, rec"},{"event":"cmd_output","timestamp":1607098332,"output":"urring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Tasks."},{"event":"cmd_output","timestamp":1607098332,"output":"Model.Tasks, observed_state: \"pending\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, "},{"event":"cmd_output","timestamp":1607098332,"output":":terminate_request, :updated_at, :state, :recovery_count, :block_id, :build_request_id], schema: Blo"},{"event":"cmd_output","timestamp":1607098332,"output":"ck.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:12.728 [info] Periodic from module "},{"event":"cmd_output","timestamp":1607098332,"output":"Elixir.Block.Tasks.STMHandler.RunningState with name Elixir.Block.Tasks.STMHandler.RunningState :: p"},{"event":"cmd_output","timestamp":1607098332,"output":"eriod: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningState\"]}, recur"},{"event":"cmd_output","timestamp":1607098332,"output":"ring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: B"},{"event":"cmd_output","timestamp":1607098332,"output":"lock.Tasks.Model.Tasks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, return"},{"event":"cmd_output","timestamp":1607098332,"output":"ing: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks"},{"event":"cmd_output","timestamp":1607098332,"output":".Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:12.728 [info] Periodic from module Elixir.B"},{"event":"cmd_output","timestamp":1607098332,"output":"lock.Tasks.STMHandler.StoppingState with name Elixir.Block.Tasks.STMHandler.StoppingState :: period:"},{"event":"cmd_output","timestamp":1607098332,"output":" 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]}, recurring "},{"event":"cmd_output","timestamp":1607098332,"output":"args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model"},{"event":"cmd_output","timestamp":1607098332,"output":".Tasks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :ter"},{"event":"cmd_output","timestamp":1607098332,"output":"minate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, t"},{"event":"cmd_output","timestamp":1607098332,"output":"ask_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:12.852 [info] ppl_id: 2f03e514-d7ee-4233-b0ff-c20a93b26c93"},{"event":"cmd_output","timestamp":1607098332,"output":", type: PplRequests, event: persisted source_args for pipeline: 2f03e514-d7ee-4233-b0ff-c20a93b26c93"},{"event":"cmd_output","timestamp":1607098332,"output":", origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:1"},{"event":"cmd_output","timestamp":1607098332,"output":"2.856 [info] ppl_id: 2f03e514-d7ee-4233-b0ff-c20a93b26c93, type: PplSubInits, state: fetching, even"},{"event":"cmd_output","timestamp":1607098332,"output":"t: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098332,"output":"m\u001b[22m\n16:12:12.888 [info] ppl_id: 2f03e514-d7ee-4233-b0ff-c20a93b26c93, type: PplSubInits, state:"},{"event":"cmd_output","timestamp":1607098332,"output":" regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098332,"output":"hange/1(L90), \n\u001b[0m\u001b[22m\n16:12:12.924 [info] ppl_id: 2f03e514-d7ee-4233-b0ff-c20a93b26c93, type: "},{"event":"cmd_output","timestamp":1607098332,"output":"PplRequests, event: persisted definition for request with request_token: 28eacd58-c61d-4bc3-bd77-5a5"},{"event":"cmd_output","timestamp":1607098332,"output":"2108a1b4c, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098332,"output":"[22m\n16:12:12.928 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Me"},{"event":"cmd_output","timestamp":1607098332,"output":"tadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:12:12.926641], name: \"master-.semaphore/sem"},{"event":"cmd_output","timestamp":1607098332,"output":"aphore.yml\", organization_id: \"8cbd16ad-f7d0-48ae-ac75-4850402aae91\", project_id: \"123\", queue_id: \""},{"event":"cmd_output","timestamp":1607098332,"output":"2a86a5af-2a6b-42bc-b7d6-df5bac6d437a\", scope: \"project\", updated_at: ~N[2020-12-04 16:12:12.926653],"},{"event":"cmd_output","timestamp":1607098332,"output":" user_generated: false}}\n\u001b[0m\u001b[22m\n16:12:12.934 [info] event: created, origin: Elixir.Ppl.PplSubI"},{"event":"cmd_output","timestamp":1607098332,"output":"nits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:12.934 [info] ppl_id: 2f03e514"},{"event":"cmd_output","timestamp":1607098332,"output":"-d7ee-4233-b0ff-c20a93b26c93, type: PplBlocks, block_index: 0, state: initializing, event: created, "},{"event":"cmd_output","timestamp":1607098332,"output":"recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098332,"output":"m\u001b[22m\n16:12:12.938 [info] ppl_id: 2f03e514-d7ee-4233-b0ff-c20a93b26c93, type: PplSubInits, state:"},{"event":"cmd_output","timestamp":1607098332,"output":" done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098332,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:12.952 [info] ppl_id: 2f03e514-d7ee-4233-b0ff-c20a93b26c93"},{"event":"cmd_output","timestamp":1607098332,"output":", type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.I"},{"event":"cmd_output","timestamp":1607098332,"output":"mpl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:12.964 [info] ppl_id: 2f03e514-d7ee-4233-b0ff-c20a9"},{"event":"cmd_output","timestamp":1607098332,"output":"3b26c93, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098332,"output":" origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:12.971 [info] ppl_id: b"},{"event":"cmd_output","timestamp":1607098332,"output":"16ba897-fd73-4807-8a0c-9906757826c7, type: PplRequests, event: persisted source_args for pipeline: b"},{"event":"cmd_output","timestamp":1607098332,"output":"16ba897-fd73-4807-8a0c-9906757826c7, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_"},{"event":"cmd_output","timestamp":1607098332,"output":"source/2(L89), \n\u001b[0m\u001b[22m\n16:12:12.975 [info] ppl_id: b16ba897-fd73-4807-8a0c-9906757826c7, type:"},{"event":"cmd_output","timestamp":1607098332,"output":" PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM."},{"event":"cmd_output","timestamp":1607098332,"output":"Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:12.977 [info] ppl_id: 2f03e514-d7ee-4233-b0ff-c20a"},{"event":"cmd_output","timestamp":1607098332,"output":"93b26c93, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loop"},{"event":"cmd_output","timestamp":1607098332,"output":"er.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:12.994 [info] ppl_id: 2f03e514-d7ee-4233-b0"},{"event":"cmd_output","timestamp":1607098332,"output":"ff-c20a93b26c93, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098333,"output":"ir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.006 [info] PplBlocks WaitingState"},{"event":"cmd_output","timestamp":1607098333,"output":" STM is scheduling block 0 from pipeline: \"2f03e514-d7ee-4233-b0ff-c20a93b26c93\"\n\u001b[0m\u001b[22m\n16:12:1"},{"event":"cmd_output","timestamp":1607098333,"output":"3.007 [info] ppl_id: b16ba897-fd73-4807-8a0c-9906757826c7, type: PplSubInits, state: regular_init, "},{"event":"cmd_output","timestamp":1607098333,"output":"event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \r"},{"event":"cmd_output","timestamp":1607098333,"output":"\n\u001b[0m\u001b[22m\n16:12:13.012 [info] block_id: 10881fd4-2ab1-4908-bb59-aa842189f343, type: BlockRequests"},{"event":"cmd_output","timestamp":1607098333,"output":", event: persisted block run request from ppl 2f03e514-d7ee-4233-b0ff-c20a93b26c93 for block 0, orig"},{"event":"cmd_output","timestamp":1607098333,"output":"in: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098333,"output":"2:13.016 [info] block_id: 10881fd4-2ab1-4908-bb59-aa842189f343, type: Blocks, state: initializing, "},{"event":"cmd_output","timestamp":1607098333,"output":"event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43"},{"event":"cmd_output","timestamp":1607098333,"output":"), \n\u001b[0m\u001b[22m\n16:12:13.020 [info] Block 0 of pipeline with id: 2f03e514-d7ee-4233-b0ff-c20a93b26c"},{"event":"cmd_output","timestamp":1607098333,"output":"93 scheduled in block service with id: : \"10881fd4-2ab1-4908-bb59-aa842189f343\"\n\u001b[0m\u001b[22m\n16:12:13"},{"event":"cmd_output","timestamp":1607098333,"output":".023 [info] ppl_id: 2f03e514-d7ee-4233-b0ff-c20a93b26c93, type: PplBlocks, block_index: 0, state: r"},{"event":"cmd_output","timestamp":1607098333,"output":"unning, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1"},{"event":"cmd_output","timestamp":1607098333,"output":"(L90), \n\u001b[0m\u001b[22m\n16:12:13.029 [info] block_id: 10881fd4-2ab1-4908-bb59-aa842189f343, type: Block"},{"event":"cmd_output","timestamp":1607098333,"output":"Requests, event: persisted build and sub_ppl details for block_request: 10881fd4-2ab1-4908-bb59-aa84"},{"event":"cmd_output","timestamp":1607098333,"output":"2189f343, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098333,"output":"[22m\n16:12:13.032 [info] block_id: 10881fd4-2ab1-4908-bb59-aa842189f343, type: Tasks, state: pendi"},{"event":"cmd_output","timestamp":1607098333,"output":"ng, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_"},{"event":"cmd_output","timestamp":1607098333,"output":"ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:13.035 [info] block_id: 10881fd4-2ab1-4908-bb59-aa842189f343, type:"},{"event":"cmd_output","timestamp":1607098333,"output":" Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.l"},{"event":"cmd_output","timestamp":1607098333,"output":"og_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.061 [info] block_id: 10881fd4-2ab1-4908-bb59-aa842189"},{"event":"cmd_output","timestamp":1607098333,"output":"f343, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper."},{"event":"cmd_output","timestamp":1607098333,"output":"STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.064 [info] ppl_id: b16ba897-fd73-4807-8a0c-"},{"event":"cmd_output","timestamp":1607098333,"output":"9906757826c7, type: PplRequests, event: persisted definition for request with request_token: 02e0e8b"},{"event":"cmd_output","timestamp":1607098333,"output":"2-1e85-4c49-8ea6-6ff958ea2e21, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_defini"},{"event":"cmd_output","timestamp":1607098333,"output":"tion/3(L76), \n\u001b[0m\u001b[22m\n16:12:13.076 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHan"},{"event":"cmd_output","timestamp":1607098333,"output":"dler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:13.076 [info] ppl_id: b16ba897-fd73-4807-"},{"event":"cmd_output","timestamp":1607098333,"output":"8a0c-9906757826c7, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_co"},{"event":"cmd_output","timestamp":1607098333,"output":"unt: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098333,"output":"12:13.083 [info] ppl_id: b16ba897-fd73-4807-8a0c-9906757826c7, type: PplSubInits, state: done, resu"},{"event":"cmd_output","timestamp":1607098333,"output":"lt: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chan"},{"event":"cmd_output","timestamp":1607098333,"output":"ge/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.095 [info] ppl_id: 461da51c-7fb6-4fea-ae26-7badf5d5b2ea, type: Ppl"},{"event":"cmd_output","timestamp":1607098333,"output":"Requests, event: persisted source_args for pipeline: 461da51c-7fb6-4fea-ae26-7badf5d5b2ea, origin: E"},{"event":"cmd_output","timestamp":1607098333,"output":"lixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:13.098 [info"},{"event":"cmd_output","timestamp":1607098333,"output":"] ppl_id: b16ba897-fd73-4807-8a0c-9906757826c7, type: PplBlocks, block_index: 0, state: waiting, ev"},{"event":"cmd_output","timestamp":1607098333,"output":"ent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b"},{"event":"cmd_output","timestamp":1607098333,"output":"[0m\u001b[22m\n16:12:13.102 [info] ppl_id: 461da51c-7fb6-4fea-ae26-7badf5d5b2ea, type: PplSubInits, stat"},{"event":"cmd_output","timestamp":1607098333,"output":"e: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_cha"},{"event":"cmd_output","timestamp":1607098333,"output":"nge/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.103 [info] ppl_id: b16ba897-fd73-4807-8a0c-9906757826c7, type: Pp"},{"event":"cmd_output","timestamp":1607098333,"output":"ls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_st"},{"event":"cmd_output","timestamp":1607098333,"output":"ate_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.114 [info] ppl_id: b16ba897-fd73-4807-8a0c-9906757826c7, t"},{"event":"cmd_output","timestamp":1607098333,"output":"ype: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl"},{"event":"cmd_output","timestamp":1607098333,"output":".log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.139 [info] ppl_id: 461da51c-7fb6-4fea-ae26-7badf5d5"},{"event":"cmd_output","timestamp":1607098333,"output":"b2ea, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098333,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.161 [info] block_id: 10881fd4-2a"},{"event":"cmd_output","timestamp":1607098333,"output":"b1-4908-bb59-aa842189f343, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098333,"output":"in: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.180 [info] block_id: 1088"},{"event":"cmd_output","timestamp":1607098333,"output":"1fd4-2ab1-4908-bb59-aa842189f343, type: Blocks, state: done, event: exit_scheduling, recovery_count:"},{"event":"cmd_output","timestamp":1607098333,"output":" 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.190 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098333,"output":": 461da51c-7fb6-4fea-ae26-7badf5d5b2ea, type: PplRequests, event: persisted definition for request w"},{"event":"cmd_output","timestamp":1607098333,"output":"ith request_token: 38d4f3b1-8f4f-4975-b9b5-045115f903b1, origin: Elixir.Ppl.PplRequests.Model.PplReq"},{"event":"cmd_output","timestamp":1607098333,"output":"uestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:13.196 [info] Queue persisted: {:ok, %Ppl"},{"event":"cmd_output","timestamp":1607098333,"output":".Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 "},{"event":"cmd_output","timestamp":1607098333,"output":"16:12:13.193300], name: \"master-.semaphore/semaphore.yml\", organization_id: \"8fe12f16-a190-48ad-8e9d"},{"event":"cmd_output","timestamp":1607098333,"output":"-eb9f4fccb78a\", project_id: \"456\", queue_id: \"2f112728-80e9-4a97-819a-958448c2fa72\", scope: \"project"},{"event":"cmd_output","timestamp":1607098333,"output":"\", updated_at: ~N[2020-12-04 16:12:13.193310], user_generated: false}}\n\u001b[0m\u001b[22m\n16:12:13.202 [inf"},{"event":"cmd_output","timestamp":1607098333,"output":"o] ppl_id: 2f03e514-d7ee-4233-b0ff-c20a93b26c93, block_id: 10881fd4-2ab1-4908-bb59-aa842189f343, ty"},{"event":"cmd_output","timestamp":1607098333,"output":"pe: PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: "},{"event":"cmd_output","timestamp":1607098333,"output":"0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.207 [info] event: "},{"event":"cmd_output","timestamp":1607098333,"output":"created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098333,"output":":12:13.207 [info] ppl_id: 461da51c-7fb6-4fea-ae26-7badf5d5b2ea, type: PplBlocks, block_index: 0, st"},{"event":"cmd_output","timestamp":1607098333,"output":"ate: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.Regu"},{"event":"cmd_output","timestamp":1607098333,"output":"larInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:13.223 [info] ppl_id: 461da51c-7fb6-4fea-ae26-7bad"},{"event":"cmd_output","timestamp":1607098333,"output":"f5d5b2ea, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098333,"output":" origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.239 [info] ppl_id: f"},{"event":"cmd_output","timestamp":1607098333,"output":"8ae9054-a14f-4255-a24c-efb7c98bb181, type: PplRequests, event: persisted source_args for pipeline: f"},{"event":"cmd_output","timestamp":1607098333,"output":"8ae9054-a14f-4255-a24c-efb7c98bb181, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_"},{"event":"cmd_output","timestamp":1607098333,"output":"source/2(L89), \n\u001b[0m\u001b[22m\n16:12:13.244 [info] ppl_id: 461da51c-7fb6-4fea-ae26-7badf5d5b2ea, type:"},{"event":"cmd_output","timestamp":1607098333,"output":" Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098333,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.246 [info] ppl_id: 461da51c-7fb6-4fea-ae26-7badf5d5b2ea"},{"event":"cmd_output","timestamp":1607098333,"output":", type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098333,"output":": Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.253 [info] ppl_id: f8ae9054"},{"event":"cmd_output","timestamp":1607098333,"output":"-a14f-4255-a24c-efb7c98bb181, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098333,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.257 [info] p"},{"event":"cmd_output","timestamp":1607098333,"output":"pl_id: 2f03e514-d7ee-4233-b0ff-c20a93b26c93, type: Ppls, state: done, result: passed, event: exit_sc"},{"event":"cmd_output","timestamp":1607098333,"output":"heduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098333,"output":":12:13.265 [info] ppl_id: 461da51c-7fb6-4fea-ae26-7badf5d5b2ea, type: Ppls, state: queuing, event: "},{"event":"cmd_output","timestamp":1607098333,"output":"exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098333,"output":"22m\n16:12:13.283 [info] ppl_id: b16ba897-fd73-4807-8a0c-9906757826c7, type: Ppls, state: running, "},{"event":"cmd_output","timestamp":1607098333,"output":"event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \r"},{"event":"cmd_output","timestamp":1607098333,"output":"\n\u001b[0m\u001b[22m\n16:12:13.291 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"b1"},{"event":"cmd_output","timestamp":1607098333,"output":"6ba897-fd73-4807-8a0c-9906757826c7\"\n\u001b[0m\u001b[22m\n16:12:13.300 [info] block_id: edf337f2-40b7-4699-b2"},{"event":"cmd_output","timestamp":1607098333,"output":"70-64d00d1e7ac6, type: BlockRequests, event: persisted block run request from ppl b16ba897-fd73-4807"},{"event":"cmd_output","timestamp":1607098333,"output":"-8a0c-9906757826c7 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.proces"},{"event":"cmd_output","timestamp":1607098333,"output":"s_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:13.304 [info] block_id: edf337f2-40b7-4699-b270-64d00d1e7ac6,"},{"event":"cmd_output","timestamp":1607098333,"output":" type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blo"},{"event":"cmd_output","timestamp":1607098333,"output":"cks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:13.308 [info] ppl_id: f8ae9054-a14f-4255-"},{"event":"cmd_output","timestamp":1607098333,"output":"a24c-efb7c98bb181, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0"},{"event":"cmd_output","timestamp":1607098333,"output":", origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.310 [info] Block 0 "},{"event":"cmd_output","timestamp":1607098333,"output":"of pipeline with id: b16ba897-fd73-4807-8a0c-9906757826c7 scheduled in block service with id: : \"edf"},{"event":"cmd_output","timestamp":1607098333,"output":"337f2-40b7-4699-b270-64d00d1e7ac6\"\n\u001b[0m\u001b[22m\n16:12:13.318 [info] ppl_id: b16ba897-fd73-4807-8a0c-"},{"event":"cmd_output","timestamp":1607098333,"output":"9906757826c7, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_coun"},{"event":"cmd_output","timestamp":1607098333,"output":"t: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.324 [info] bloc"},{"event":"cmd_output","timestamp":1607098333,"output":"k_id: edf337f2-40b7-4699-b270-64d00d1e7ac6, type: BlockRequests, event: persisted build and sub_ppl "},{"event":"cmd_output","timestamp":1607098333,"output":"details for block_request: edf337f2-40b7-4699-b270-64d00d1e7ac6, origin: Elixir.Block.BlockRequests."},{"event":"cmd_output","timestamp":1607098333,"output":"Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:13.324 [info] ppl_id: 461da51c-7"},{"event":"cmd_output","timestamp":1607098333,"output":"fb6-4fea-ae26-7badf5d5b2ea, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098333,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.330 [info] PplBlocks W"},{"event":"cmd_output","timestamp":1607098333,"output":"aitingState STM is scheduling block 0 from pipeline: \"461da51c-7fb6-4fea-ae26-7badf5d5b2ea\"\n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098333,"output":"2m\n16:12:13.333 [info] block_id: edf337f2-40b7-4699-b270-64d00d1e7ac6, type: Tasks, state: pending"},{"event":"cmd_output","timestamp":1607098333,"output":", event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok"},{"event":"cmd_output","timestamp":1607098333,"output":"?/1(L167), \n\u001b[0m\u001b[22m\n16:12:13.337 [info] block_id: edf337f2-40b7-4699-b270-64d00d1e7ac6, type: B"},{"event":"cmd_output","timestamp":1607098333,"output":"locks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098333,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.346 [info] block_id: 6c3aef22-3a29-4262-9e1a-4d3e18c14c"},{"event":"cmd_output","timestamp":1607098333,"output":"14, type: BlockRequests, event: persisted block run request from ppl 461da51c-7fb6-4fea-ae26-7badf5d"},{"event":"cmd_output","timestamp":1607098333,"output":"5b2ea for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4("},{"event":"cmd_output","timestamp":1607098333,"output":"L35), \n\u001b[0m\u001b[22m\n16:12:13.349 [info] block_id: 6c3aef22-3a29-4262-9e1a-4d3e18c14c14, type: Blocks"},{"event":"cmd_output","timestamp":1607098333,"output":", state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.Blo"},{"event":"cmd_output","timestamp":1607098333,"output":"cksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:13.353 [info] Block 0 of pipeline with id: 461da51c-7f"},{"event":"cmd_output","timestamp":1607098333,"output":"b6-4fea-ae26-7badf5d5b2ea scheduled in block service with id: : \"6c3aef22-3a29-4262-9e1a-4d3e18c14c1"},{"event":"cmd_output","timestamp":1607098333,"output":"4\"\n\u001b[0m\u001b[22m\n16:12:13.361 [info] block_id: edf337f2-40b7-4699-b270-64d00d1e7ac6, type: Tasks, sta"},{"event":"cmd_output","timestamp":1607098333,"output":"te: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_cha"},{"event":"cmd_output","timestamp":1607098333,"output":"nge/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.363 [info] ppl_id: 461da51c-7fb6-4fea-ae26-7badf5d5b2ea, type: Pp"},{"event":"cmd_output","timestamp":1607098333,"output":"lBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098333,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.366 [info] block_id: 6c3aef22-3a29-42"},{"event":"cmd_output","timestamp":1607098333,"output":"62-9e1a-4d3e18c14c14, type: BlockRequests, event: persisted build and sub_ppl details for block_requ"},{"event":"cmd_output","timestamp":1607098333,"output":"est: 6c3aef22-3a29-4262-9e1a-4d3e18c14c14, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQue"},{"event":"cmd_output","timestamp":1607098333,"output":"ries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:13.370 [info] block_id: 6c3aef22-3a29-4262-9e1a-4d3e18"},{"event":"cmd_output","timestamp":1607098333,"output":"c14c14, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks."},{"event":"cmd_output","timestamp":1607098333,"output":"STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:13.375 [info] block_id: 6c3aef22-3"},{"event":"cmd_output","timestamp":1607098333,"output":"a29-4262-9e1a-4d3e18c14c14, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098333,"output":" origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.385 [info] ppl_id: c"},{"event":"cmd_output","timestamp":1607098333,"output":"9bc04fa-7912-45ba-b2c7-7b05e0ba04c4, type: PplRequests, event: persisted source_args for pipeline: c"},{"event":"cmd_output","timestamp":1607098333,"output":"9bc04fa-7912-45ba-b2c7-7b05e0ba04c4, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_"},{"event":"cmd_output","timestamp":1607098333,"output":"source/2(L89), \n\u001b[0m\u001b[22m\n16:12:13.386 [info] block_id: edf337f2-40b7-4699-b270-64d00d1e7ac6, typ"},{"event":"cmd_output","timestamp":1607098333,"output":"e: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098333,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.395 [info] ppl_id: f8ae9054-a14f-4255-a24c-efb7c98bb181"},{"event":"cmd_output","timestamp":1607098333,"output":", type: PplRequests, event: persisted definition for request with request_token: 1d505c6c-0295-40e6-"},{"event":"cmd_output","timestamp":1607098333,"output":"a07a-2b6c3f9f1289, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76),"},{"event":"cmd_output","timestamp":1607098333,"output":" \n\u001b[0m\u001b[22m\n16:12:13.397 [info] ppl_id: c9bc04fa-7912-45ba-b2c7-7b05e0ba04c4, type: PplSubInits, "},{"event":"cmd_output","timestamp":1607098333,"output":"state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state"},{"event":"cmd_output","timestamp":1607098333,"output":"_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.404 [info] block_id: edf337f2-40b7-4699-b270-64d00d1e7ac6, ty"},{"event":"cmd_output","timestamp":1607098333,"output":"pe: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.l"},{"event":"cmd_output","timestamp":1607098333,"output":"og_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.404 [info] block_id: 6c3aef22-3a29-4262-9e1a-4d3e18c1"},{"event":"cmd_output","timestamp":1607098333,"output":"4c14, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper."},{"event":"cmd_output","timestamp":1607098333,"output":"STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.415 [info] event: created, origin: Elixir.P"},{"event":"cmd_output","timestamp":1607098333,"output":"pl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:13.415 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098333,"output":": f8ae9054-a14f-4255-a24c-efb7c98bb181, type: PplBlocks, block_index: 0, state: initializing, event:"},{"event":"cmd_output","timestamp":1607098333,"output":" created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L1"},{"event":"cmd_output","timestamp":1607098333,"output":"05), \n\u001b[0m\u001b[22m\n16:12:13.420 [info] ppl_id: f8ae9054-a14f-4255-a24c-efb7c98bb181, type: PplSubIni"},{"event":"cmd_output","timestamp":1607098333,"output":"ts, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.ST"},{"event":"cmd_output","timestamp":1607098333,"output":"M.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.426 [info] ppl_id: b16ba897-fd73-4807-8a0c-99"},{"event":"cmd_output","timestamp":1607098333,"output":"06757826c7, block_id: edf337f2-40b7-4699-b270-64d00d1e7ac6, type: PplBlocks, block_index: 0, state: "},{"event":"cmd_output","timestamp":1607098333,"output":"done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_"},{"event":"cmd_output","timestamp":1607098333,"output":"state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.438 [info] ppl_id: f8ae9054-a14f-4255-a24c-efb7c98bb181,"},{"event":"cmd_output","timestamp":1607098333,"output":" type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098333,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.443 [info] ppl_id: c9bc04fa-"},{"event":"cmd_output","timestamp":1607098333,"output":"7912-45ba-b2c7-7b05e0ba04c4, type: PplSubInits, state: regular_init, event: exit_scheduling, recover"},{"event":"cmd_output","timestamp":1607098333,"output":"y_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.450 [info]"},{"event":"cmd_output","timestamp":1607098333,"output":" ppl_id: f8ae9054-a14f-4255-a24c-efb7c98bb181, type: Ppls, state: pending, event: exit_scheduling, "},{"event":"cmd_output","timestamp":1607098333,"output":"recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.456"},{"event":"cmd_output","timestamp":1607098333,"output":" [info] ppl_id: b16ba897-fd73-4807-8a0c-9906757826c7, type: Ppls, state: done, result: passed, even"},{"event":"cmd_output","timestamp":1607098333,"output":"t: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098333,"output":"m\u001b[22m\n16:12:13.467 [info] ppl_id: f8ae9054-a14f-4255-a24c-efb7c98bb181, type: Ppls, state: queuin"},{"event":"cmd_output","timestamp":1607098333,"output":"g, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90)"},{"event":"cmd_output","timestamp":1607098333,"output":", \n\u001b[0m\u001b[22m\n16:12:13.486 [info] ppl_id: c9bc04fa-7912-45ba-b2c7-7b05e0ba04c4, type: PplRequests,"},{"event":"cmd_output","timestamp":1607098333,"output":" event: persisted definition for request with request_token: e1a0ad25-aec5-4d18-8dc6-d89000ade24d, o"},{"event":"cmd_output","timestamp":1607098333,"output":"rigin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:"},{"event":"cmd_output","timestamp":1607098333,"output":"13.492 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:load"},{"event":"cmd_output","timestamp":1607098333,"output":"ed, \"queues\">, inserted_at: ~N[2020-12-04 16:12:13.488601], name: \"dev-.semaphore/semaphore.yml\", or"},{"event":"cmd_output","timestamp":1607098333,"output":"ganization_id: \"c7d7263a-1b0b-48a0-97e6-57ad6c42c297\", project_id: \"123\", queue_id: \"2cf6bcbd-821a-4"},{"event":"cmd_output","timestamp":1607098333,"output":"922-8986-1addf94e2140\", scope: \"project\", updated_at: ~N[2020-12-04 16:12:13.488614], user_generated"},{"event":"cmd_output","timestamp":1607098333,"output":": false}}\n\u001b[0m\u001b[22m\n16:12:13.498 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler"},{"event":"cmd_output","timestamp":1607098333,"output":".RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:13.498 [info] ppl_id: c9bc04fa-7912-45ba-b2c7"},{"event":"cmd_output","timestamp":1607098333,"output":"-7b05e0ba04c4, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count:"},{"event":"cmd_output","timestamp":1607098333,"output":" 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:1"},{"event":"cmd_output","timestamp":1607098333,"output":"3.503 [info] ppl_id: c9bc04fa-7912-45ba-b2c7-7b05e0ba04c4, type: PplSubInits, state: done, result: "},{"event":"cmd_output","timestamp":1607098333,"output":"passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1"},{"event":"cmd_output","timestamp":1607098333,"output":"(L90), \n\u001b[0m\u001b[22m\n16:12:13.508 [info] block_id: 6c3aef22-3a29-4262-9e1a-4d3e18c14c14, type: Tasks"},{"event":"cmd_output","timestamp":1607098333,"output":", state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098333,"output":"hange/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.519 [info] ppl_id: c9bc04fa-7912-45ba-b2c7-7b05e0ba04c4, type: "},{"event":"cmd_output","timestamp":1607098333,"output":"PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098333,"output":".Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.521 [info] ppl_id: bde73561-8a20-43"},{"event":"cmd_output","timestamp":1607098333,"output":"d2-9b3c-42fab53b730c, type: PplRequests, event: persisted source_args for pipeline: bde73561-8a20-43"},{"event":"cmd_output","timestamp":1607098333,"output":"d2-9b3c-42fab53b730c, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), "},{"event":"cmd_output","timestamp":1607098333,"output":"\n\u001b[0m\u001b[22m\n16:12:13.526 [info] ppl_id: c9bc04fa-7912-45ba-b2c7-7b05e0ba04c4, type: Ppls, state: p"},{"event":"cmd_output","timestamp":1607098333,"output":"ending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1"},{"event":"cmd_output","timestamp":1607098333,"output":"(L90), \n\u001b[0m\u001b[22m\n16:12:13.527 [info] block_id: 6c3aef22-3a29-4262-9e1a-4d3e18c14c14, type: Block"},{"event":"cmd_output","timestamp":1607098333,"output":"s, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_"},{"event":"cmd_output","timestamp":1607098333,"output":"change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.531 [info] ppl_id: bde73561-8a20-43d2-9b3c-42fab53b730c, type:"},{"event":"cmd_output","timestamp":1607098333,"output":" PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM."},{"event":"cmd_output","timestamp":1607098333,"output":"Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.547 [info] ppl_id: 461da51c-7fb6-4fea-ae26-7bad"},{"event":"cmd_output","timestamp":1607098333,"output":"f5d5b2ea, block_id: 6c3aef22-3a29-4262-9e1a-4d3e18c14c14, type: PplBlocks, block_index: 0, state: do"},{"event":"cmd_output","timestamp":1607098333,"output":"ne, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_st"},{"event":"cmd_output","timestamp":1607098333,"output":"ate_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.547 [info] ppl_id: c9bc04fa-7912-45ba-b2c7-7b05e0ba04c4, t"},{"event":"cmd_output","timestamp":1607098333,"output":"ype: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl"},{"event":"cmd_output","timestamp":1607098333,"output":".log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.577 [info] ppl_id: c9bc04fa-7912-45ba-b2c7-7b05e0ba"},{"event":"cmd_output","timestamp":1607098333,"output":"04c4, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.S"},{"event":"cmd_output","timestamp":1607098333,"output":"TM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.579 [info] ppl_id: 461da51c-7fb6-4fea-ae26-7"},{"event":"cmd_output","timestamp":1607098333,"output":"badf5d5b2ea, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098333,"output":"gin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.593 [info] ppl_id: bde73"},{"event":"cmd_output","timestamp":1607098333,"output":"561-8a20-43d2-9b3c-42fab53b730c, type: PplSubInits, state: regular_init, event: exit_scheduling, rec"},{"event":"cmd_output","timestamp":1607098333,"output":"overy_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.595 [i"},{"event":"cmd_output","timestamp":1607098333,"output":"nfo] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"c9bc04fa-7912-45ba-b2c7-7b05e"},{"event":"cmd_output","timestamp":1607098333,"output":"0ba04c4\"\n\u001b[0m\u001b[22m\n16:12:13.605 [info] block_id: 794c223d-e8ca-4b1d-b1b7-a7b0529c50fe, type: Bloc"},{"event":"cmd_output","timestamp":1607098333,"output":"kRequests, event: persisted block run request from ppl c9bc04fa-7912-45ba-b2c7-7b05e0ba04c4 for bloc"},{"event":"cmd_output","timestamp":1607098333,"output":"k 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098333,"output":"22m\n16:12:13.608 [info] block_id: 794c223d-e8ca-4b1d-b1b7-a7b0529c50fe, type: Blocks, state: initi"},{"event":"cmd_output","timestamp":1607098333,"output":"alizing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.ins"},{"event":"cmd_output","timestamp":1607098333,"output":"ert/1(L43), \n\u001b[0m\u001b[22m\n16:12:13.612 [info] Block 0 of pipeline with id: c9bc04fa-7912-45ba-b2c7-7"},{"event":"cmd_output","timestamp":1607098333,"output":"b05e0ba04c4 scheduled in block service with id: : \"794c223d-e8ca-4b1d-b1b7-a7b0529c50fe\"\n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098333,"output":"\n16:12:13.617 [info] block_id: 794c223d-e8ca-4b1d-b1b7-a7b0529c50fe, type: BlockRequests, event: pe"},{"event":"cmd_output","timestamp":1607098333,"output":"rsisted build and sub_ppl details for block_request: 794c223d-e8ca-4b1d-b1b7-a7b0529c50fe, origin: E"},{"event":"cmd_output","timestamp":1607098333,"output":"lixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:13.621 "},{"event":"cmd_output","timestamp":1607098333,"output":"[info] block_id: 794c223d-e8ca-4b1d-b1b7-a7b0529c50fe, type: Tasks, state: pending, event: created,"},{"event":"cmd_output","timestamp":1607098333,"output":" recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098333,"output":"\u001b[22m\n16:12:13.621 [info] ppl_id: c9bc04fa-7912-45ba-b2c7-7b05e0ba04c4, type: PplBlocks, block_ind"},{"event":"cmd_output","timestamp":1607098333,"output":"ex: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098333,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.625 [info] block_id: 794c223d-e8ca-4b1d-b1b7-a7b0529c50"},{"event":"cmd_output","timestamp":1607098333,"output":"fe, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.S"},{"event":"cmd_output","timestamp":1607098333,"output":"TM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.649 [info] block_id: 794c223d-e8ca-4b1d-b1b7"},{"event":"cmd_output","timestamp":1607098333,"output":"-a7b0529c50fe, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098333,"output":"r.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.649 [info] ppl_id: ae0f1d96-3bea-4"},{"event":"cmd_output","timestamp":1607098333,"output":"3dd-8078-d7f07c07c257, type: PplRequests, event: persisted source_args for pipeline: ae0f1d96-3bea-4"},{"event":"cmd_output","timestamp":1607098333,"output":"3dd-8078-d7f07c07c257, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89),"},{"event":"cmd_output","timestamp":1607098333,"output":" \n\u001b[0m\u001b[22m\n16:12:13.655 [info] ppl_id: bde73561-8a20-43d2-9b3c-42fab53b730c, type: PplRequests, "},{"event":"cmd_output","timestamp":1607098333,"output":"event: persisted definition for request with request_token: 95972b5a-fd63-4c16-92fe-464858020587, or"},{"event":"cmd_output","timestamp":1607098333,"output":"igin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:1"},{"event":"cmd_output","timestamp":1607098333,"output":"3.661 [info] ppl_id: ae0f1d96-3bea-43dd-8078-d7f07c07c257, type: PplSubInits, state: fetching, even"},{"event":"cmd_output","timestamp":1607098333,"output":"t: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098333,"output":"m\u001b[22m\n16:12:13.663 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitSt"},{"event":"cmd_output","timestamp":1607098333,"output":"ate.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:13.663 [info] ppl_id: bde73561-8a20-43d2-9b3c-42fab53b730c,"},{"event":"cmd_output","timestamp":1607098333,"output":" type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098333,"output":"ixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:13.668 [info] "},{"event":"cmd_output","timestamp":1607098333,"output":"ppl_id: f8ae9054-a14f-4255-a24c-efb7c98bb181, type: Ppls, state: running, event: exit_scheduling, re"},{"event":"cmd_output","timestamp":1607098333,"output":"covery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.668 ["},{"event":"cmd_output","timestamp":1607098333,"output":"info] ppl_id: bde73561-8a20-43d2-9b3c-42fab53b730c, type: PplSubInits, state: done, result: passed,"},{"event":"cmd_output","timestamp":1607098333,"output":" event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), "},{"event":"cmd_output","timestamp":1607098333,"output":"\n\u001b[0m\u001b[22m\n16:12:13.676 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"f"},{"event":"cmd_output","timestamp":1607098333,"output":"8ae9054-a14f-4255-a24c-efb7c98bb181\"\n\u001b[0m\u001b[22m\n16:12:13.684 [info] ppl_id: bde73561-8a20-43d2-9b3"},{"event":"cmd_output","timestamp":1607098333,"output":"c-42fab53b730c, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098333,"output":"r.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.689 [info] block_id: bd2f8586-558c"},{"event":"cmd_output","timestamp":1607098333,"output":"-427d-8af2-71ea0a1f3956, type: BlockRequests, event: persisted block run request from ppl f8ae9054-a"},{"event":"cmd_output","timestamp":1607098333,"output":"14f-4255-a24c-efb7c98bb181 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQuerie"},{"event":"cmd_output","timestamp":1607098333,"output":"s.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:13.694 [info] ppl_id: bde73561-8a20-43d2-9b3c-42fab53"},{"event":"cmd_output","timestamp":1607098333,"output":"b730c, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098333,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.699 [info] block_id: b"},{"event":"cmd_output","timestamp":1607098333,"output":"d2f8586-558c-427d-8af2-71ea0a1f3956, type: Blocks, state: initializing, event: initializing, recover"},{"event":"cmd_output","timestamp":1607098333,"output":"y_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:13.700"},{"event":"cmd_output","timestamp":1607098333,"output":" [info] ppl_id: bde73561-8a20-43d2-9b3c-42fab53b730c, type: Ppls, state: queuing, event: exit_sched"},{"event":"cmd_output","timestamp":1607098333,"output":"uling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12"},{"event":"cmd_output","timestamp":1607098333,"output":":13.708 [info] Block 0 of pipeline with id: f8ae9054-a14f-4255-a24c-efb7c98bb181 scheduled in block"},{"event":"cmd_output","timestamp":1607098333,"output":" service with id: : \"bd2f8586-558c-427d-8af2-71ea0a1f3956\"\n\u001b[0m\u001b[22m\n16:12:13.712 [info] block_id"},{"event":"cmd_output","timestamp":1607098333,"output":": bd2f8586-558c-427d-8af2-71ea0a1f3956, type: BlockRequests, event: persisted build and sub_ppl deta"},{"event":"cmd_output","timestamp":1607098333,"output":"ils for block_request: bd2f8586-558c-427d-8af2-71ea0a1f3956, origin: Elixir.Block.BlockRequests.Mode"},{"event":"cmd_output","timestamp":1607098333,"output":"l.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:13.717 [info] ppl_id: f8ae9054-a14f-"},{"event":"cmd_output","timestamp":1607098333,"output":"4255-a24c-efb7c98bb181, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, rec"},{"event":"cmd_output","timestamp":1607098333,"output":"overy_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.724 [i"},{"event":"cmd_output","timestamp":1607098333,"output":"nfo] ppl_id: ae0f1d96-3bea-43dd-8078-d7f07c07c257, type: PplSubInits, state: regular_init, event: e"},{"event":"cmd_output","timestamp":1607098333,"output":"xit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098333,"output":"2m\n16:12:13.726 [info] block_id: bd2f8586-558c-427d-8af2-71ea0a1f3956, type: Tasks, state: pending"},{"event":"cmd_output","timestamp":1607098333,"output":", event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok"},{"event":"cmd_output","timestamp":1607098333,"output":"?/1(L167), \n\u001b[0m\u001b[22m\n16:12:13.734 [info] block_id: bd2f8586-558c-427d-8af2-71ea0a1f3956, type: B"},{"event":"cmd_output","timestamp":1607098333,"output":"locks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098333,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.757 [info] block_id: bd2f8586-558c-427d-8af2-71ea0a1f39"},{"event":"cmd_output","timestamp":1607098333,"output":"56, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.ST"},{"event":"cmd_output","timestamp":1607098333,"output":"M.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.764 [info] block_id: 794c223d-e8ca-4b1d-b1b7-"},{"event":"cmd_output","timestamp":1607098333,"output":"a7b0529c50fe, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Lo"},{"event":"cmd_output","timestamp":1607098333,"output":"oper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.778 [info] block_id: 794c223d-e8ca-4b1"},{"event":"cmd_output","timestamp":1607098333,"output":"d-b1b7-a7b0529c50fe, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: E"},{"event":"cmd_output","timestamp":1607098333,"output":"lixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.781 [info] ppl_id: e06554e5-e9"},{"event":"cmd_output","timestamp":1607098333,"output":"d5-4e22-b778-efe0bdcf2091, type: PplRequests, event: persisted source_args for pipeline: e06554e5-e9"},{"event":"cmd_output","timestamp":1607098333,"output":"d5-4e22-b778-efe0bdcf2091, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L"},{"event":"cmd_output","timestamp":1607098333,"output":"89), \n\u001b[0m\u001b[22m\n16:12:13.790 [info] ppl_id: e06554e5-e9d5-4e22-b778-efe0bdcf2091, type: PplSubIni"},{"event":"cmd_output","timestamp":1607098333,"output":"ts, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_s"},{"event":"cmd_output","timestamp":1607098333,"output":"tate_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.797 [info] ppl_id: c9bc04fa-7912-45ba-b2c7-7b05e0ba04c4, "},{"event":"cmd_output","timestamp":1607098333,"output":"block_id: 794c223d-e8ca-4b1d-b1b7-a7b0529c50fe, type: PplBlocks, block_index: 0, state: done, result"},{"event":"cmd_output","timestamp":1607098333,"output":": passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change"},{"event":"cmd_output","timestamp":1607098333,"output":"/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.799 [info] ppl_id: ae0f1d96-3bea-43dd-8078-d7f07c07c257, type: PplRe"},{"event":"cmd_output","timestamp":1607098333,"output":"quests, event: persisted definition for request with request_token: 69d07a9c-a8aa-4c5f-b76e-26146f44"},{"event":"cmd_output","timestamp":1607098333,"output":"3496, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098333,"output":"\n16:12:13.815 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadat"},{"event":"cmd_output","timestamp":1607098333,"output":"a<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:12:13.808959], name: \"dev-.semaphore/semaphore.y"},{"event":"cmd_output","timestamp":1607098333,"output":"ml\", organization_id: \"798f9659-86a3-48fa-bd7a-a84fc9515b69\", project_id: \"456\", queue_id: \"75a2ff91"},{"event":"cmd_output","timestamp":1607098333,"output":"-a546-4ee5-be3d-114c22d0476a\", scope: \"project\", updated_at: ~N[2020-12-04 16:12:13.808968], user_ge"},{"event":"cmd_output","timestamp":1607098333,"output":"nerated: false}}\n\u001b[0m\u001b[22m\n16:12:13.826 [info] event: created, origin: Elixir.Ppl.PplSubInits.STM"},{"event":"cmd_output","timestamp":1607098333,"output":"Handler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:13.826 [info] ppl_id: ae0f1d96-3bea-43"},{"event":"cmd_output","timestamp":1607098333,"output":"dd-8078-d7f07c07c257, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery"},{"event":"cmd_output","timestamp":1607098333,"output":"_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098333,"output":"16:12:13.828 [info] ppl_id: ae0f1d96-3bea-43dd-8078-d7f07c07c257, type: PplSubInits, state: done, r"},{"event":"cmd_output","timestamp":1607098333,"output":"esult: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098333,"output":"hange/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.838 [info] ppl_id: c9bc04fa-7912-45ba-b2c7-7b05e0ba04c4, type: "},{"event":"cmd_output","timestamp":1607098333,"output":"Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper."},{"event":"cmd_output","timestamp":1607098333,"output":"STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.845 [info] ppl_id: ae0f1d96-3bea-43dd-8078-"},{"event":"cmd_output","timestamp":1607098333,"output":"d7f07c07c257, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_coun"},{"event":"cmd_output","timestamp":1607098333,"output":"t: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.846 [info] ppl_"},{"event":"cmd_output","timestamp":1607098333,"output":"id: ae0f1d96-3bea-43dd-8078-d7f07c07c257, type: Ppls, state: pending, event: exit_scheduling, recove"},{"event":"cmd_output","timestamp":1607098333,"output":"ry_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.848 [info"},{"event":"cmd_output","timestamp":1607098333,"output":"] ppl_id: e06554e5-e9d5-4e22-b778-efe0bdcf2091, type: PplSubInits, state: regular_init, event: exit"},{"event":"cmd_output","timestamp":1607098333,"output":"_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098333,"output":"\n16:12:13.861 [info] ppl_id: ae0f1d96-3bea-43dd-8078-d7f07c07c257, type: Ppls, state: queuing, even"},{"event":"cmd_output","timestamp":1607098333,"output":"t: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098333,"output":"m\u001b[22m\n16:12:13.878 [info] ppl_id: bde73561-8a20-43d2-9b3c-42fab53b730c, type: Ppls, state: runnin"},{"event":"cmd_output","timestamp":1607098333,"output":"g, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90)"},{"event":"cmd_output","timestamp":1607098333,"output":", \n\u001b[0m\u001b[22m\n16:12:13.892 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: "},{"event":"cmd_output","timestamp":1607098333,"output":"\"bde73561-8a20-43d2-9b3c-42fab53b730c\"\n\u001b[0m\u001b[22m\n16:12:13.896 [info] block_id: bd2f8586-558c-427d"},{"event":"cmd_output","timestamp":1607098333,"output":"-8af2-71ea0a1f3956, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098333,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.898 [info] ppl_id: e06554e5-e9d5"},{"event":"cmd_output","timestamp":1607098333,"output":"-4e22-b778-efe0bdcf2091, type: PplRequests, event: persisted definition for request with request_tok"},{"event":"cmd_output","timestamp":1607098333,"output":"en: 60da5ef1-f9e0-4b53-a8ba-d85a47ed50c0, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.in"},{"event":"cmd_output","timestamp":1607098333,"output":"sert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:13.906 [info] block_id: bd2f8586-558c-427d-8af2-71ea0a1f"},{"event":"cmd_output","timestamp":1607098333,"output":"3956, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.ST"},{"event":"cmd_output","timestamp":1607098333,"output":"M.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.906 [info] block_id: 34679ca7-4957-460b-bc51-"},{"event":"cmd_output","timestamp":1607098333,"output":"95b022fa74f8, type: BlockRequests, event: persisted block run request from ppl bde73561-8a20-43d2-9b"},{"event":"cmd_output","timestamp":1607098333,"output":"3c-42fab53b730c for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_r"},{"event":"cmd_output","timestamp":1607098333,"output":"esponse/4(L35), \n\u001b[0m\u001b[22m\n16:12:13.913 [info] block_id: 34679ca7-4957-460b-bc51-95b022fa74f8, ty"},{"event":"cmd_output","timestamp":1607098333,"output":"pe: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks"},{"event":"cmd_output","timestamp":1607098333,"output":".Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:13.915 [info] ppl_id: ae0f1d96-3bea-43dd-807"},{"event":"cmd_output","timestamp":1607098333,"output":"8-d7f07c07c257, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098333,"output":"r.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.917 [info] Block 0 of pipeline wit"},{"event":"cmd_output","timestamp":1607098333,"output":"h id: bde73561-8a20-43d2-9b3c-42fab53b730c scheduled in block service with id: : \"34679ca7-4957-460b"},{"event":"cmd_output","timestamp":1607098333,"output":"-bc51-95b022fa74f8\"\n\u001b[0m\u001b[22m\n16:12:13.919 [info] event: created, origin: Elixir.Ppl.PplSubInits."},{"event":"cmd_output","timestamp":1607098333,"output":"STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:13.919 [info] ppl_id: e06554e5-e9d5"},{"event":"cmd_output","timestamp":1607098333,"output":"-4e22-b778-efe0bdcf2091, type: PplBlocks, block_index: 0, state: initializing, event: created, recov"},{"event":"cmd_output","timestamp":1607098333,"output":"ery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098333,"output":"m\n16:12:13.924 [info] ppl_id: e06554e5-e9d5-4e22-b778-efe0bdcf2091, type: PplSubInits, state: done"},{"event":"cmd_output","timestamp":1607098333,"output":", result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_stat"},{"event":"cmd_output","timestamp":1607098333,"output":"e_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.927 [info] ppl_id: bde73561-8a20-43d2-9b3c-42fab53b730c, typ"},{"event":"cmd_output","timestamp":1607098333,"output":"e: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098333,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.930 [info] ppl_id: f8ae9054-a14f"},{"event":"cmd_output","timestamp":1607098333,"output":"-4255-a24c-efb7c98bb181, block_id: bd2f8586-558c-427d-8af2-71ea0a1f3956, type: PplBlocks, block_inde"},{"event":"cmd_output","timestamp":1607098333,"output":"x: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper."},{"event":"cmd_output","timestamp":1607098333,"output":"STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.935 [info] block_id: 34679ca7-4957-460b-bc5"},{"event":"cmd_output","timestamp":1607098333,"output":"1-95b022fa74f8, type: BlockRequests, event: persisted build and sub_ppl details for block_request: 3"},{"event":"cmd_output","timestamp":1607098333,"output":"4679ca7-4957-460b-bc51-95b022fa74f8, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.i"},{"event":"cmd_output","timestamp":1607098333,"output":"nsert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:13.935 [info] PplBlocks WaitingState STM is scheduling block"},{"event":"cmd_output","timestamp":1607098333,"output":" 0 from pipeline: \"ae0f1d96-3bea-43dd-8078-d7f07c07c257\"\n\u001b[0m\u001b[22m\n16:12:13.941 [info] block_id: "},{"event":"cmd_output","timestamp":1607098333,"output":"34679ca7-4957-460b-bc51-95b022fa74f8, type: Tasks, state: pending, event: created, recovery_count: 0"},{"event":"cmd_output","timestamp":1607098333,"output":", origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:13.94"},{"event":"cmd_output","timestamp":1607098333,"output":"6 [info] block_id: 34679ca7-4957-460b-bc51-95b022fa74f8, type: Blocks, state: running, event: exit_"},{"event":"cmd_output","timestamp":1607098333,"output":"scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098333,"output":"16:12:13.950 [info] ppl_id: e06554e5-e9d5-4e22-b778-efe0bdcf2091, type: PplBlocks, block_index: 0, "},{"event":"cmd_output","timestamp":1607098333,"output":"state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_"},{"event":"cmd_output","timestamp":1607098333,"output":"change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.954 [info] block_id: 7518e9ad-e6b0-4f9c-bcb0-608f4c5a5804, typ"},{"event":"cmd_output","timestamp":1607098333,"output":"e: BlockRequests, event: persisted block run request from ppl ae0f1d96-3bea-43dd-8078-d7f07c07c257 f"},{"event":"cmd_output","timestamp":1607098333,"output":"or block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \r"},{"event":"cmd_output","timestamp":1607098333,"output":"\n\u001b[0m\u001b[22m\n16:12:13.960 [info] block_id: 7518e9ad-e6b0-4f9c-bcb0-608f4c5a5804, type: Blocks, state"},{"event":"cmd_output","timestamp":1607098333,"output":": initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQuer"},{"event":"cmd_output","timestamp":1607098333,"output":"ies.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:13.964 [info] Block 0 of pipeline with id: ae0f1d96-3bea-43dd"},{"event":"cmd_output","timestamp":1607098333,"output":"-8078-d7f07c07c257 scheduled in block service with id: : \"7518e9ad-e6b0-4f9c-bcb0-608f4c5a5804\"\n\u001b[0"},{"event":"cmd_output","timestamp":1607098333,"output":"m\u001b[22m\n16:12:13.964 [info] ppl_id: e06554e5-e9d5-4e22-b778-efe0bdcf2091, type: Ppls, state: pendin"},{"event":"cmd_output","timestamp":1607098333,"output":"g, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90)"},{"event":"cmd_output","timestamp":1607098333,"output":", \n\u001b[0m\u001b[22m\n16:12:13.964 [info] ppl_id: f8ae9054-a14f-4255-a24c-efb7c98bb181, type: Ppls, state:"},{"event":"cmd_output","timestamp":1607098333,"output":" done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098333,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.968 [info] ppl_id: ae0f1d96-3bea-43dd-8078-d7f07c07c257"},{"event":"cmd_output","timestamp":1607098333,"output":", type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098333,"output":": Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.977 [info] block_id: 7518e9"},{"event":"cmd_output","timestamp":1607098333,"output":"ad-e6b0-4f9c-bcb0-608f4c5a5804, type: BlockRequests, event: persisted build and sub_ppl details for "},{"event":"cmd_output","timestamp":1607098333,"output":"block_request: 7518e9ad-e6b0-4f9c-bcb0-608f4c5a5804, origin: Elixir.Block.BlockRequests.Model.BlockR"},{"event":"cmd_output","timestamp":1607098333,"output":"equestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:13.983 [info] block_id: 34679ca7-4957-460b-b"},{"event":"cmd_output","timestamp":1607098333,"output":"c51-95b022fa74f8, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098333,"output":"ixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.986 [info] block_id: 7518e9ad-e"},{"event":"cmd_output","timestamp":1607098333,"output":"6b0-4f9c-bcb0-608f4c5a5804, type: Tasks, state: pending, event: created, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098333,"output":"Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:13.989 [info] "},{"event":"cmd_output","timestamp":1607098333,"output":"block_id: 7518e9ad-e6b0-4f9c-bcb0-608f4c5a5804, type: Blocks, state: running, event: exit_scheduling"},{"event":"cmd_output","timestamp":1607098333,"output":", recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:13.9"},{"event":"cmd_output","timestamp":1607098333,"output":"92 [info] ppl_id: e06554e5-e9d5-4e22-b778-efe0bdcf2091, type: Ppls, state: queuing, event: exit_sch"},{"event":"cmd_output","timestamp":1607098334,"output":"eduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098334,"output":"12:14.014 [info] block_id: 7518e9ad-e6b0-4f9c-bcb0-608f4c5a5804, type: Tasks, state: running, event"},{"event":"cmd_output","timestamp":1607098334,"output":": exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098334,"output":"\u001b[22m\n16:12:14.021 [info] block_id: 34679ca7-4957-460b-bc51-95b022fa74f8, type: Tasks, state: done"},{"event":"cmd_output","timestamp":1607098334,"output":", event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90),"},{"event":"cmd_output","timestamp":1607098334,"output":" \n\u001b[0m\u001b[22m\n16:12:14.025 [info] block_id: 34679ca7-4957-460b-bc51-95b022fa74f8, type: Blocks, sta"},{"event":"cmd_output","timestamp":1607098334,"output":"te: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change"},{"event":"cmd_output","timestamp":1607098334,"output":"/1(L90), \n\u001b[0m\u001b[22m\n16:12:14.034 [info] ppl_id: bde73561-8a20-43d2-9b3c-42fab53b730c, block_id: 3"},{"event":"cmd_output","timestamp":1607098334,"output":"4679ca7-4957-460b-bc51-95b022fa74f8, type: PplBlocks, block_index: 0, state: done, result: passed, e"},{"event":"cmd_output","timestamp":1607098334,"output":"vent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n"},{"event":"cmd_output","timestamp":1607098334,"output":"\u001b[0m\u001b[22m\n16:12:14.048 [info] ppl_id: bde73561-8a20-43d2-9b3c-42fab53b730c, type: Ppls, state: don"},{"event":"cmd_output","timestamp":1607098334,"output":"e, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_sta"},{"event":"cmd_output","timestamp":1607098334,"output":"te_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:14.139 [info] block_id: 7518e9ad-e6b0-4f9c-bcb0-608f4c5a5804, "},{"event":"cmd_output","timestamp":1607098334,"output":"type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl."},{"event":"cmd_output","timestamp":1607098334,"output":"log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:14.147 [info] block_id: 7518e9ad-e6b0-4f9c-bcb0-608f4c5"},{"event":"cmd_output","timestamp":1607098334,"output":"a5804, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.S"},{"event":"cmd_output","timestamp":1607098334,"output":"TM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:14.154 [info] ppl_id: ae0f1d96-3bea-43dd-8078-d"},{"event":"cmd_output","timestamp":1607098334,"output":"7f07c07c257, block_id: 7518e9ad-e6b0-4f9c-bcb0-608f4c5a5804, type: PplBlocks, block_index: 0, state:"},{"event":"cmd_output","timestamp":1607098334,"output":" done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098334,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:14.174 [info] ppl_id: ae0f1d96-3bea-43dd-8078-d7f07c07c257"},{"event":"cmd_output","timestamp":1607098334,"output":", type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098334,"output":".Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:14.245 [info] ppl_id: e06554e5-e9d5-4e"},{"event":"cmd_output","timestamp":1607098334,"output":"22-b778-efe0bdcf2091, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098334,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:14.250 [info] PplBlocks Waiting"},{"event":"cmd_output","timestamp":1607098334,"output":"State STM is scheduling block 0 from pipeline: \"e06554e5-e9d5-4e22-b778-efe0bdcf2091\"\n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098334,"output":":12:14.262 [info] block_id: 20cb5751-99b3-4d6c-87f0-13c9e7ac7bf8, type: BlockRequests, event: persi"},{"event":"cmd_output","timestamp":1607098334,"output":"sted block run request from ppl e06554e5-e9d5-4e22-b778-efe0bdcf2091 for block 0, origin: Elixir.Blo"},{"event":"cmd_output","timestamp":1607098334,"output":"ck.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:14.264 [info"},{"event":"cmd_output","timestamp":1607098334,"output":"] block_id: 20cb5751-99b3-4d6c-87f0-13c9e7ac7bf8, type: Blocks, state: initializing, event: initial"},{"event":"cmd_output","timestamp":1607098334,"output":"izing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098334,"output":"\n16:12:14.265 [info] Block 0 of pipeline with id: e06554e5-e9d5-4e22-b778-efe0bdcf2091 scheduled i"},{"event":"cmd_output","timestamp":1607098334,"output":"n block service with id: : \"20cb5751-99b3-4d6c-87f0-13c9e7ac7bf8\"\n\u001b[0m\u001b[22m\n16:12:14.267 [info] p"},{"event":"cmd_output","timestamp":1607098334,"output":"pl_id: e06554e5-e9d5-4e22-b778-efe0bdcf2091, type: PplBlocks, block_index: 0, state: running, event:"},{"event":"cmd_output","timestamp":1607098334,"output":" exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098334,"output":"[22m\n16:12:14.269 [info] block_id: 20cb5751-99b3-4d6c-87f0-13c9e7ac7bf8, type: BlockRequests, even"},{"event":"cmd_output","timestamp":1607098334,"output":"t: persisted build and sub_ppl details for block_request: 20cb5751-99b3-4d6c-87f0-13c9e7ac7bf8, orig"},{"event":"cmd_output","timestamp":1607098334,"output":"in: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:14"},{"event":"cmd_output","timestamp":1607098334,"output":".271 [info] block_id: 20cb5751-99b3-4d6c-87f0-13c9e7ac7bf8, type: Tasks, state: pending, event: cre"},{"event":"cmd_output","timestamp":1607098334,"output":"ated, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \r"},{"event":"cmd_output","timestamp":1607098334,"output":"\n\u001b[0m\u001b[22m\n16:12:14.273 [info] block_id: 20cb5751-99b3-4d6c-87f0-13c9e7ac7bf8, type: Blocks, state"},{"event":"cmd_output","timestamp":1607098334,"output":": running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chang"},{"event":"cmd_output","timestamp":1607098334,"output":"e/1(L90), \n\u001b[0m\u001b[22m\n16:12:14.289 [info] block_id: 20cb5751-99b3-4d6c-87f0-13c9e7ac7bf8, type: Ta"},{"event":"cmd_output","timestamp":1607098334,"output":"sks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_s"},{"event":"cmd_output","timestamp":1607098334,"output":"tate_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:14.357 [info] block_id: 20cb5751-99b3-4d6c-87f0-13c9e7ac7bf8"},{"event":"cmd_output","timestamp":1607098334,"output":", type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Imp"},{"event":"cmd_output","timestamp":1607098334,"output":"l.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:14.365 [info] block_id: 20cb5751-99b3-4d6c-87f0-13c9e"},{"event":"cmd_output","timestamp":1607098334,"output":"7ac7bf8, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper"},{"event":"cmd_output","timestamp":1607098334,"output":".STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:14.381 [info] ppl_id: e06554e5-e9d5-4e22-b778"},{"event":"cmd_output","timestamp":1607098334,"output":"-efe0bdcf2091, block_id: 20cb5751-99b3-4d6c-87f0-13c9e7ac7bf8, type: PplBlocks, block_index: 0, stat"},{"event":"cmd_output","timestamp":1607098334,"output":"e: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.l"},{"event":"cmd_output","timestamp":1607098334,"output":"og_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:14.395 [info] ppl_id: e06554e5-e9d5-4e22-b778-efe0bdcf20"},{"event":"cmd_output","timestamp":1607098334,"output":"91, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098334,"output":"ir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test gRPC list_grouped() - project scop"},{"event":"cmd_output","timestamp":1607098334,"output":"ed implicit queues (1892.0ms)\u001b[0m\n * test gRPC list_keyset() - fails when given timestamps are wr"},{"event":"cmd_output","timestamp":1607098334,"output":"ong (done before created etc.)\r * test gRPC list_keyset() - fails when given timestamps are wrong "},{"event":"cmd_output","timestamp":1607098334,"output":"(done before created etc.) (skipped)\n * test gRPC list_activity() - valid request => paginated res"},{"event":"cmd_output","timestamp":1607098334,"output":"ults returned\u001b[22m\n16:12:14.465 [info] Request: 'run: %{\"branch_id\" => \"341baf85-f13e-4059-b8fe-a1"},{"event":"cmd_output","timestamp":1607098334,"output":"cebab0f7d5\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"semaphore.yml\""},{"event":"cmd_output","timestamp":1607098334,"output":", \"hook_id\" => \"78f3ff66-364b-11eb-9d0d-5254005464e2\", \"label\" => \"master\", \"organization_id\" => \"12"},{"event":"cmd_output","timestamp":1607098334,"output":"3\", \"owner\" => \"rt\", \"project_id\" => \"0987\", \"repo_name\" => \"7_termination\", \"request_token\" => \"78f"},{"event":"cmd_output","timestamp":1607098334,"output":"3f71e-364b-11eb-830f-5254005464e2\", \"requester_id\" => \"1661b5e0-c457-4426-8104-b2bd87aa227f\", \"servi"},{"event":"cmd_output","timestamp":1607098334,"output":"ce\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"744491dc-b"},{"event":"cmd_output","timestamp":1607098334,"output":"4f7-400d-9d55-3e248bdbc01e\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:12:14.469 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098334,"output":" 5305db1f-762d-4531-a91d-26dbbe611917, type: PplRequests, event: persisted schedule request with req"},{"event":"cmd_output","timestamp":1607098334,"output":"uest_token: 78f3f71e-364b-11eb-830f-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQu"},{"event":"cmd_output","timestamp":1607098334,"output":"eries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:14.472 [info] ppl_id: 5305db1f-762d-4531-a91d-26d"},{"event":"cmd_output","timestamp":1607098334,"output":"bbe611917, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.P"},{"event":"cmd_output","timestamp":1607098334,"output":"pl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:14.479 [info] Project 0987 a"},{"event":"cmd_output","timestamp":1607098334,"output":"nd branch masterlatest_wf details updated: \"wf_id: 744491dc-b4f7-400d-9d55-3e248bdbc01e, wf_number: "},{"event":"cmd_output","timestamp":1607098334,"output":"1\"\n\u001b[0m\u001b[22m\n16:12:14.482 [info] Persisted ppl_sub_init for pipeline with ppl_id: 5305db1f-762d-4"},{"event":"cmd_output","timestamp":1607098334,"output":"531-a91d-26dbbe611917: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \""},{"event":"cmd_output","timestamp":1607098334,"output":"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 179, in_scheduling: false, i"},{"event":"cmd_output","timestamp":1607098334,"output":"nit_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:14.479362], pipeline_requests: #Ecto.Associati"},{"event":"cmd_output","timestamp":1607098334,"output":"on.NotLoaded, ppl_id: \"5305db1f-762d-4531-a91d-26dbbe6"},{"event":"cmd_output","timestamp":1607098334,"output":"11917\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil"},{"event":"cmd_output","timestamp":1607098334,"output":", terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:14.479371]}\n\u001b[0m\u001b[22m\n16:12:14.489 "},{"event":"cmd_output","timestamp":1607098334,"output":"[info] Request: 'run: %{\"branch_id\" => \"5c4ebff7-6cdd-497a-89c1-24d7478cec79\", \"branch_name\" => \"ma"},{"event":"cmd_output","timestamp":1607098334,"output":"ster\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"semaphore.yml\", \"hook_id\" => \"78f7a972-364b-11e"},{"event":"cmd_output","timestamp":1607098334,"output":"b-809c-5254005464e2\", \"label\" => \"dev\", \"organization_id\" => \"123\", \"owner\" => \"rt\", \"project_id\" =>"},{"event":"cmd_output","timestamp":1607098334,"output":" \"0987\", \"repo_name\" => \"7_termination\", \"request_token\" => \"78f79d2e-364b-11eb-814e-5254005464e2\", "},{"event":"cmd_output","timestamp":1607098334,"output":"\"requester_id\" => \"697847d5-11b1-4f19-9dc1-d293f1c1fbdf\", \"service\" => \"local\", \"suppressed_attribut"},{"event":"cmd_output","timestamp":1607098334,"output":"es\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"9194d034-005d-4114-8c5a-1cf9fae230d4\", \"workin"},{"event":"cmd_output","timestamp":1607098334,"output":"g_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:12:14.493 [info] ppl_id: 51ae9f8d-f676-4e5e-9e68-901e036723a"},{"event":"cmd_output","timestamp":1607098334,"output":"1, type: PplRequests, event: persisted schedule request with request_token: 78f79d2e-364b-11eb-814e-"},{"event":"cmd_output","timestamp":1607098334,"output":"5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098334,"output":"m\u001b[22m\n16:12:14.496 [info] ppl_id: 51ae9f8d-f676-4e5e-9e68-901e036723a1, type: Ppls, state: initia"},{"event":"cmd_output","timestamp":1607098334,"output":"lizing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_re"},{"event":"cmd_output","timestamp":1607098334,"output":"sponse/2(L124), \n\u001b[0m\u001b[22m\n16:12:14.500 [info] Project 0987 and branch masterlatest_wf details up"},{"event":"cmd_output","timestamp":1607098334,"output":"dated: \"wf_id: 9194d034-005d-4114-8c5a-1cf9fae230d4, wf_number: 2\"\n\u001b[0m\u001b[22m\n16:12:14.502 [info] "},{"event":"cmd_output","timestamp":1607098334,"output":"Persisted ppl_sub_init for pipeline with ppl_id: 51ae9f8d-f676-4e5e-9e68-901e036723a1: %Ppl.PplSubIn"},{"event":"cmd_output","timestamp":1607098334,"output":"its.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_i"},{"event":"cmd_output","timestamp":1607098334,"output":"d: nil, error_description: nil, id: 180, in_scheduling: false, init_type: \"regular\", inserted_at: ~N"},{"event":"cmd_output","timestamp":1607098334,"output":"[2020-12-04 16:12:14.500749], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"51ae9f8d-f676-4e5e-9e68-901e036723a1\", recovery_count: 0, result: n"},{"event":"cmd_output","timestamp":1607098334,"output":"il, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updat"},{"event":"cmd_output","timestamp":1607098334,"output":"ed_at: ~N[2020-12-04 16:12:14.500757]}\n\u001b[0m\u001b[22m\n16:12:14.510 [info] Request: 'run: %{\"branch_id\""},{"event":"cmd_output","timestamp":1607098334,"output":" => \"b3efa69e-9702-45fa-82c2-214b90493b04\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469\","},{"event":"cmd_output","timestamp":1607098334,"output":" \"file_name\" => \"semaphore.yml\", \"hook_id\" => \"78fabf7c-364b-11eb-9792-5254005464e2\", \"label\" => \"st"},{"event":"cmd_output","timestamp":1607098334,"output":"g\", \"organization_id\" => \"123\", \"owner\" => \"rt\", \"project_id\" => \"0987\", \"repo_name\" => \"7_terminati"},{"event":"cmd_output","timestamp":1607098334,"output":"on\", \"request_token\" => \"78fab54a-364b-11eb-828b-5254005464e2\", \"requester_id\" => \"81404154-d74e-4ef"},{"event":"cmd_output","timestamp":1607098334,"output":"9-be58-e3e4cf8b5261\", \"service\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secr"},{"event":"cmd_output","timestamp":1607098334,"output":"et\"], \"wf_id\" => \"255ab32f-3584-4354-bf79-6814ef9b6267\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098334,"output":"16:12:14.512 [info] ppl_id: f45126d7-b733-43f6-8d89-7a57e8e786ab, type: PplRequests, event: persist"},{"event":"cmd_output","timestamp":1607098334,"output":"ed schedule request with request_token: 78fab54a-364b-11eb-828b-5254005464e2, origin: Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098334,"output":"Requests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:14.515 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098334,"output":" f45126d7-b733-43f6-8d89-7a57e8e786ab, type: Ppls, state: initializing, event: initializing, recover"},{"event":"cmd_output","timestamp":1607098334,"output":"y_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:1"},{"event":"cmd_output","timestamp":1607098334,"output":"4.518 [info] Project 0987 and branch masterlatest_wf details updated: \"wf_id: 255ab32f-3584-4354-bf"},{"event":"cmd_output","timestamp":1607098334,"output":"79-6814ef9b6267, wf_number: 3\"\n\u001b[0m\u001b[22m\n16:12:14.519 [info] Persisted ppl_sub_init for pipeline "},{"event":"cmd_output","timestamp":1607098334,"output":"with ppl_id: f45126d7-b733-43f6-8d89-7a57e8e786ab: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ect"},{"event":"cmd_output","timestamp":1607098334,"output":"o.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: "},{"event":"cmd_output","timestamp":1607098334,"output":"181, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:14.518109], pipeli"},{"event":"cmd_output","timestamp":1607098334,"output":"ne_requests: #Ecto.Association.NotLoaded, ppl_id: \"f45"},{"event":"cmd_output","timestamp":1607098334,"output":"126d7-b733-43f6-8d89-7a57e8e786ab\", recovery_count: 0, result: nil, result_reason: nil, state: \"crea"},{"event":"cmd_output","timestamp":1607098334,"output":"ted\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:14.518118"},{"event":"cmd_output","timestamp":1607098334,"output":"]}\n\u001b[0m\u001b[22m\n16:12:14.528 [info] Request: 'run: %{\"branch_id\" => \"62885afa-d8a8-4aa4-81dc-fca1547"},{"event":"cmd_output","timestamp":1607098334,"output":"328a1\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"semaphore.yml\", \"ho"},{"event":"cmd_output","timestamp":1607098334,"output":"ok_id\" => \"78fd7276-364b-11eb-b683-5254005464e2\", \"label\" => \"asdf\", \"organization_id\" => \"456\", \"ow"},{"event":"cmd_output","timestamp":1607098334,"output":"ner\" => \"rt\", \"project_id\" => \"0987\", \"repo_name\" => \"7_termination\", \"request_token\" => \"78fd63d0-3"},{"event":"cmd_output","timestamp":1607098334,"output":"64b-11eb-bc67-5254005464e2\", \"requester_id\" => \"e9f6d88f-1196-4325-b9a1-f73b767bb060\", \"service\" => "},{"event":"cmd_output","timestamp":1607098334,"output":"\"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"5798e42c-3bb8-425"},{"event":"cmd_output","timestamp":1607098334,"output":"3-9807-04c7ed736ce6\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:12:14.531 [info] ppl_id: 41e875"},{"event":"cmd_output","timestamp":1607098334,"output":"f1-4f79-4695-94cf-0bcaaf085a42, type: PplRequests, event: persisted schedule request with request_to"},{"event":"cmd_output","timestamp":1607098334,"output":"ken: 78fd63d0-364b-11eb-bc67-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.p"},{"event":"cmd_output","timestamp":1607098334,"output":"rocess_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:14.534 [info] ppl_id: 41e875f1-4f79-4695-94cf-0bcaaf085a"},{"event":"cmd_output","timestamp":1607098334,"output":"42, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls"},{"event":"cmd_output","timestamp":1607098334,"output":".Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:14.536 [info] Project 0987 and bran"},{"event":"cmd_output","timestamp":1607098334,"output":"ch masterlatest_wf details updated: \"wf_id: 5798e42c-3bb8-4253-9807-04c7ed736ce6, wf_number: 4\"\n\u001b[0"},{"event":"cmd_output","timestamp":1607098334,"output":"m\u001b[22m\n16:12:14.538 [info] Persisted ppl_sub_init for pipeline with ppl_id: 41e875f1-4f79-4695-94c"},{"event":"cmd_output","timestamp":1607098334,"output":"f-0bcaaf085a42: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipelin"},{"event":"cmd_output","timestamp":1607098334,"output":"e_sub_inits\">, compile_task_id: nil, error_description: nil, id: 182, in_scheduling: false, init_typ"},{"event":"cmd_output","timestamp":1607098334,"output":"e: \"regular\", inserted_at: ~N[2020-12-04 16:12:14.536858], pipeline_requests: #Ecto.Association.NotL"},{"event":"cmd_output","timestamp":1607098334,"output":"oaded, ppl_id: \"41e875f1-4f79-4695-94cf-0bcaaf085a42\","},{"event":"cmd_output","timestamp":1607098334,"output":" recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, termi"},{"event":"cmd_output","timestamp":1607098334,"output":"nate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:14.537310]}\n\u001b[0m\u001b[22m\n16:12:14.544 [info] "},{"event":"cmd_output","timestamp":1607098334,"output":" Request: 'run: %{\"branch_id\" => \"13859b6f-8bdd-4b38-ba6a-ed2af408efce\", \"branch_name\" => \"master\", "},{"event":"cmd_output","timestamp":1607098334,"output":"\"commit_sha\" => \"75891a4469\", \"file_name\" => \"semaphore.yml\", \"hook_id\" => \"790021e2-364b-11eb-abae-"},{"event":"cmd_output","timestamp":1607098334,"output":"5254005464e2\", \"label\" => \"asdf\", \"organization_id\" => \"456\", \"owner\" => \"rt\", \"project_id\" => \"0987"},{"event":"cmd_output","timestamp":1607098334,"output":"\", \"repo_name\" => \"7_termination\", \"request_token\" => \"790013c8-364b-11eb-a8c5-5254005464e2\", \"reque"},{"event":"cmd_output","timestamp":1607098334,"output":"ster_id\" => \"33ec8d2f-910f-4722-8fee-46908388f9c1\", \"service\" => \"local\", \"suppressed_attributes\" =>"},{"event":"cmd_output","timestamp":1607098334,"output":" [\"access_token\", \"client_secret\"], \"wf_id\" => \"a7dbd934-5673-4d42-beff-130eb7f19dd6\", \"working_dir\""},{"event":"cmd_output","timestamp":1607098334,"output":" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:12:14.552 [info] ppl_id: 00b0bd50-0660-4b13-9b33-cd4d5cd2ec49, typ"},{"event":"cmd_output","timestamp":1607098334,"output":"e: PplRequests, event: persisted schedule request with request_token: 790013c8-364b-11eb-a8c5-525400"},{"event":"cmd_output","timestamp":1607098334,"output":"5464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098334,"output":"\n16:12:14.555 [info] ppl_id: 00b0bd50-0660-4b13-9b33-cd4d5cd2ec49, type: Ppls, state: initializing"},{"event":"cmd_output","timestamp":1607098334,"output":", event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response"},{"event":"cmd_output","timestamp":1607098334,"output":"/2(L124), \n\u001b[0m\u001b[22m\n16:12:14.558 [info] Project 0987 and branch masterlatest_wf details updated:"},{"event":"cmd_output","timestamp":1607098334,"output":" \"wf_id: a7dbd934-5673-4d42-beff-130eb7f19dd6, wf_number: 5\"\n\u001b[0m\u001b[22m\n16:12:14.560 [info] Persis"},{"event":"cmd_output","timestamp":1607098334,"output":"ted ppl_sub_init for pipeline with ppl_id: 00b0bd50-0660-4b13-9b33-cd4d5cd2ec49: %Ppl.PplSubInits.Mo"},{"event":"cmd_output","timestamp":1607098334,"output":"del.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil"},{"event":"cmd_output","timestamp":1607098334,"output":", error_description: nil, id: 183, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-"},{"event":"cmd_output","timestamp":1607098334,"output":"12-04 16:12:14.558548], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"00b0bd50-0660-4b13-9b33-cd4d5cd2ec49\", recovery_count: 0, result: nil, re"},{"event":"cmd_output","timestamp":1607098334,"output":"sult_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at:"},{"event":"cmd_output","timestamp":1607098334,"output":" ~N[2020-12-04 16:12:14.558556]}\n\u001b[0m\u001b[22m\n16:12:14.565 [info] Periodic from module Elixir.Ppl.Pp"},{"event":"cmd_output","timestamp":1607098334,"output":"ls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 10"},{"event":"cmd_output","timestamp":1607098334,"output":"0 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring ar"},{"event":"cmd_output","timestamp":1607098334,"output":"gs: %{allowed_states: [\"initializing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.P"},{"event":"cmd_output","timestamp":1607098334,"output":"pls.Model.Ppls, observed_state: \"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.ST"},{"event":"cmd_output","timestamp":1607098334,"output":"MHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :update"},{"event":"cmd_output","timestamp":1607098334,"output":"d_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :ski"},{"event":"cmd_output","timestamp":1607098334,"output":"p}\n\u001b[0m\u001b[22m\n16:12:14.565 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingState wit"},{"event":"cmd_output","timestamp":1607098334,"output":"h name Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_u"},{"event":"cmd_output","timestamp":1607098334,"output":"p\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"pending\", \"queuing\", "},{"event":"cmd_output","timestamp":1607098334,"output":"\"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pendin"},{"event":"cmd_output","timestamp":1607098334,"output":"g\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoR"},{"event":"cmd_output","timestamp":1607098334,"output":"epo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], s"},{"event":"cmd_output","timestamp":1607098334,"output":"chema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:12:14.566 [info] Pe"},{"event":"cmd_output","timestamp":1607098334,"output":"riodic from module Elixir.Ppl.Ppls.STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandler.Queu"},{"event":"cmd_output","timestamp":1607098334,"output":"ingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState"},{"event":"cmd_output","timestamp":1607098334,"output":"\"]}, recurring args: %{allowed_states: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, initial"},{"event":"cmd_output","timestamp":1607098334,"output":"_query: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl"},{"event":"cmd_output","timestamp":1607098334,"output":".Ppls.STMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :upd"},{"event":"cmd_output","timestamp":1607098334,"output":"ated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :"},{"event":"cmd_output","timestamp":1607098334,"output":"skip}\n\u001b[0m\u001b[22m\n16:12:14.566 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.Create"},{"event":"cmd_output","timestamp":1607098334,"output":"dState with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 100 ms, metric_name: {\"Pp"},{"event":"cmd_output","timestamp":1607098334,"output":"l.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args: %{allowed_states:"},{"event":"cmd_output","timestamp":1607098334,"output":" [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observ"},{"event":"cmd_output","timestamp":1607098334,"output":"ed_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :"},{"event":"cmd_output","timestamp":1607098334,"output":"updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, t"},{"event":"cmd_output","timestamp":1607098334,"output":"ask_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:14.567 [info] Periodic from module Elixir.Ppl.PplSubInits."},{"event":"cmd_output","timestamp":1607098334,"output":"STMHandler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 ms"},{"event":"cmd_output","timestamp":1607098334,"output":", metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring arg"},{"event":"cmd_output","timestamp":1607098334,"output":"s: %{allowed_states: [\"regular_init\", \"compilation\", \"done\"], cooling_time_sec: -2, initial_query: P"},{"event":"cmd_output","timestamp":1607098334,"output":"pl.PplSubInits.Model.PplSubInits, observed_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRep"},{"event":"cmd_output","timestamp":1607098334,"output":"o, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], sch"},{"event":"cmd_output","timestamp":1607098334,"output":"ema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:14.567 [info] Per"},{"event":"cmd_output","timestamp":1607098334,"output":"iodic from module Elixir.Ppl.PplSubInits.STMHandler.CompilationState with name Elixir.Ppl.PplSubInit"},{"event":"cmd_output","timestamp":1607098334,"output":"s.STMHandler.CompilationState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubI"},{"event":"cmd_output","timestamp":1607098334,"output":"nits-STMHandler-CompilationState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation"},{"event":"cmd_output","timestamp":1607098334,"output":"\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, obse"},{"event":"cmd_output","timestamp":1607098334,"output":"rved_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_requ"},{"event":"cmd_output","timestamp":1607098334,"output":"est, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubIn"},{"event":"cmd_output","timestamp":1607098334,"output":"its, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:14.567 [info] Periodic from module Elixir.Ppl.PplSub"},{"event":"cmd_output","timestamp":1607098334,"output":"Inits.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: pe"},{"event":"cmd_output","timestamp":1607098334,"output":"riod: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}"},{"event":"cmd_output","timestamp":1607098334,"output":", recurring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Mo"},{"event":"cmd_output","timestamp":1607098334,"output":"del.PplSubInits, observed_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning:"},{"event":"cmd_output","timestamp":1607098334,"output":" [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplS"},{"event":"cmd_output","timestamp":1607098334,"output":"ubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:14.568 [info] Periodic from mo"},{"event":"cmd_output","timestamp":1607098334,"output":"dule Elixir.Ppl.PplBlocks.STMHandler.InitializingState with name Elixir.Ppl.PplBlocks.STMHandler.Ini"},{"event":"cmd_output","timestamp":1607098334,"output":"tializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-I"},{"event":"cmd_output","timestamp":1607098334,"output":"nitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"waiting\", \"done\"], cooling_"},{"event":"cmd_output","timestamp":1607098334,"output":"time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"initializing\", publisher"},{"event":"cmd_output","timestamp":1607098334,"output":"_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :"},{"event":"cmd_output","timestamp":1607098334,"output":"recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :ski"},{"event":"cmd_output","timestamp":1607098334,"output":"p}\n\u001b[0m\u001b[22m\n16:12:14.568 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.WaitingStat"},{"event":"cmd_output","timestamp":1607098334,"output":"e with name Elixir.Ppl.PplBlocks.STMHandler.WaitingState :: period: 1000 ms, metric_name: {\"Ppl.beho"},{"event":"cmd_output","timestamp":1607098334,"output":"lder-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurring args: %{allowed_states: [\"waiti"},{"event":"cmd_output","timestamp":1607098334,"output":"ng\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed"},{"event":"cmd_output","timestamp":1607098334,"output":"_state: \"waiting\", publisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args"},{"event":"cmd_output","timestamp":1607098334,"output":"/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recover"},{"event":"cmd_output","timestamp":1607098334,"output":"y_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0"},{"event":"cmd_output","timestamp":1607098334,"output":"m\u001b[22m\n16:12:14.569 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.RunningState with "},{"event":"cmd_output","timestamp":1607098334,"output":"name Elixir.Ppl.PplBlocks.STMHandler.RunningState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wa"},{"event":"cmd_output","timestamp":1607098334,"output":"ke_up\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"s"},{"event":"cmd_output","timestamp":1607098334,"output":"topping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_stat"},{"event":"cmd_output","timestamp":1607098334,"output":"e: \"running\", publisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0>,"},{"event":"cmd_output","timestamp":1607098334,"output":" repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_co"},{"event":"cmd_output","timestamp":1607098334,"output":"unt, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :ski"},{"event":"cmd_output","timestamp":1607098334,"output":"p}\n\u001b[0m\u001b[22m\n16:12:14.569 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.StoppingSta"},{"event":"cmd_output","timestamp":1607098334,"output":"te with name Elixir.Ppl.PplBlocks.STMHandler.StoppingState :: period: 1000 ms, metric_name: {\"Ppl.be"},{"event":"cmd_output","timestamp":1607098334,"output":"holder-wake_up\", [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"st"},{"event":"cmd_output","timestamp":1607098334,"output":"opping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state"},{"event":"cmd_output","timestamp":1607098334,"output":": \"stopping\", publisher_cb: #Function<0.104215991/1 in Ppl.PplBlocks.STMHandler.StoppingState.args/0"},{"event":"cmd_output","timestamp":1607098334,"output":">, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_"},{"event":"cmd_output","timestamp":1607098334,"output":"count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :s"},{"event":"cmd_output","timestamp":1607098334,"output":"kip}\n\u001b[0m\u001b[22m\n16:12:14.679 [info] ppl_id: 5305db1f-762d-4531-a91d-26dbbe611917, type: PplRequest"},{"event":"cmd_output","timestamp":1607098334,"output":"s, event: persisted source_args for pipeline: 5305db1f-762d-4531-a91d-26dbbe611917, origin: Elixir.P"},{"event":"cmd_output","timestamp":1607098334,"output":"pl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:14.681 [info] ppl_"},{"event":"cmd_output","timestamp":1607098334,"output":"id: 5305db1f-762d-4531-a91d-26dbbe611917, type: PplSubInits, state: fetching, event: exit_scheduling"},{"event":"cmd_output","timestamp":1607098334,"output":", recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:14.7"},{"event":"cmd_output","timestamp":1607098334,"output":"04 [info] ppl_id: 5305db1f-762d-4531-a91d-26dbbe611917, type: PplSubInits, state: regular_init, eve"},{"event":"cmd_output","timestamp":1607098334,"output":"nt: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b["},{"event":"cmd_output","timestamp":1607098334,"output":"0m\u001b[22m\n16:12:14.723 [info] ppl_id: 5305db1f-762d-4531-a91d-26dbbe611917, type: PplRequests, event"},{"event":"cmd_output","timestamp":1607098334,"output":": persisted definition for request with request_token: 78f3f71e-364b-11eb-830f-5254005464e2, origin:"},{"event":"cmd_output","timestamp":1607098334,"output":" Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:14.728"},{"event":"cmd_output","timestamp":1607098334,"output":" [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"q"},{"event":"cmd_output","timestamp":1607098334,"output":"ueues\">, inserted_at: ~N[2020-12-04 16:12:14.726723], name: \"master-.semaphore/semaphore.yml\", organ"},{"event":"cmd_output","timestamp":1607098334,"output":"ization_id: \"123\", project_id: \"0987\", queue_id: \"ee119ca0-97fb-4699-a902-d78fe8b65a83\", scope: \"pro"},{"event":"cmd_output","timestamp":1607098334,"output":"ject\", updated_at: ~N[2020-12-04 16:12:14.726732], user_generated: false}}\n\u001b[0m\u001b[22m\n16:12:14.734 "},{"event":"cmd_output","timestamp":1607098334,"output":"[info] ppl_id: not_available, event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInit"},{"event":"cmd_output","timestamp":1607098334,"output":"State.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:14.734 [info] event: created, origin: Elixir.Ppl.PplSubIn"},{"event":"cmd_output","timestamp":1607098334,"output":"its.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:14.734 [info] ppl_id: 5305db1f-"},{"event":"cmd_output","timestamp":1607098334,"output":"762d-4531-a91d-26dbbe611917, type: PplBlocks, block_index: 0, state: initializing, event: created, r"},{"event":"cmd_output","timestamp":1607098334,"output":"ecovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098334,"output":"\u001b[22m\n16:12:14.734 [info] ppl_id: 5305db1f-762d-4531-a91d-26dbbe611917, type: PplBlocks, block_ind"},{"event":"cmd_output","timestamp":1607098334,"output":"ex: 1, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHan"},{"event":"cmd_output","timestamp":1607098334,"output":"dler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:14.736 [info] ppl_id: 5305db1f-762d-4531-"},{"event":"cmd_output","timestamp":1607098334,"output":"a91d-26dbbe611917, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_"},{"event":"cmd_output","timestamp":1607098334,"output":"count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:14.743 [info] "},{"event":"cmd_output","timestamp":1607098334,"output":"ppl_id: 5305db1f-762d-4531-a91d-26dbbe611917, type: Ppls, state: pending, event: exit_scheduling, re"},{"event":"cmd_output","timestamp":1607098334,"output":"covery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:14.746 ["},{"event":"cmd_output","timestamp":1607098334,"output":"info] ppl_id: 5305db1f-762d-4531-a91d-26dbbe611917, type: PplBlocks, block_index: 0, state: waiting"},{"event":"cmd_output","timestamp":1607098334,"output":", event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90),"},{"event":"cmd_output","timestamp":1607098334,"output":" \n\u001b[0m\u001b[22m\n16:12:14.753 [info] ppl_id: 5305db1f-762d-4531-a91d-26dbbe611917, type: Ppls, state: "},{"event":"cmd_output","timestamp":1607098334,"output":"queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/"},{"event":"cmd_output","timestamp":1607098334,"output":"1(L90), \n\u001b[0m\u001b[22m\n16:12:14.754 [info] ppl_id: 5305db1f-762d-4531-a91d-26dbbe611917, type: PplBlo"},{"event":"cmd_output","timestamp":1607098334,"output":"cks, block_index: 1, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loope"},{"event":"cmd_output","timestamp":1607098334,"output":"r.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:14.762 [info] ppl_id: 5305db1f-762d-4531-a91"},{"event":"cmd_output","timestamp":1607098334,"output":"d-26dbbe611917, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098334,"output":"r.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:14.769 [info] PplBlocks WaitingState "},{"event":"cmd_output","timestamp":1607098334,"output":"STM is scheduling block 0 from pipeline: \"5305db1f-762d-4531-a91d-26dbbe611917\"\n\u001b[0m\u001b[22m\n16:12:14"},{"event":"cmd_output","timestamp":1607098334,"output":".776 [info] block_id: 5479eca1-ebbb-44e7-8b9c-44937ea5ff45, type: BlockRequests, event: persisted b"},{"event":"cmd_output","timestamp":1607098334,"output":"lock run request from ppl 5305db1f-762d-4531-a91d-26dbbe611917 for block 0, origin: Elixir.Block.Blo"},{"event":"cmd_output","timestamp":1607098334,"output":"ckRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:14.779 [info] blo"},{"event":"cmd_output","timestamp":1607098334,"output":"ck_id: 5479eca1-ebbb-44e7-8b9c-44937ea5ff45, type: Blocks, state: initializing, event: initializing,"},{"event":"cmd_output","timestamp":1607098334,"output":" recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098334,"output":"2:14.782 [info] Block 0 of pipeline with id: 5305db1f-762d-4531-a91d-26dbbe611917 scheduled in bloc"},{"event":"cmd_output","timestamp":1607098334,"output":"k service with id: : \"5479eca1-ebbb-44e7-8b9c-44937ea5ff45\"\n\u001b[0m\u001b[22m\n16:12:14.785 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098334,"output":" 5305db1f-762d-4531-a91d-26dbbe611917, type: PplBlocks, block_index: 0, state: running, event: exit_"},{"event":"cmd_output","timestamp":1607098334,"output":"scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098334,"output":"16:12:14.791 [info] ppl_id: 51ae9f8d-f676-4e5e-9e68-901e036723a1, type: PplRequests, event: persist"},{"event":"cmd_output","timestamp":1607098334,"output":"ed source_args for pipeline: 51ae9f8d-f676-4e5e-9e68-901e036723a1, origin: Elixir.Ppl.PplRequests.Mo"},{"event":"cmd_output","timestamp":1607098334,"output":"del.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:14.794 [info] ppl_id: 51ae9f8d-f676"},{"event":"cmd_output","timestamp":1607098334,"output":"-4e5e-9e68-901e036723a1, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count:"},{"event":"cmd_output","timestamp":1607098334,"output":" 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:14.810 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098334,"output":": 51ae9f8d-f676-4e5e-9e68-901e036723a1, type: PplSubInits, state: regular_init, event: exit_scheduli"},{"event":"cmd_output","timestamp":1607098334,"output":"ng, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:14"},{"event":"cmd_output","timestamp":1607098334,"output":".837 [info] ppl_id: 51ae9f8d-f676-4e5e-9e68-901e036723a1, type: PplRequests, event: persisted defin"},{"event":"cmd_output","timestamp":1607098334,"output":"ition for request with request_token: 78f79d2e-364b-11eb-814e-5254005464e2, origin: Elixir.Ppl.PplRe"},{"event":"cmd_output","timestamp":1607098334,"output":"quests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:14.840 [info] Queue pe"},{"event":"cmd_output","timestamp":1607098334,"output":"rsisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted"},{"event":"cmd_output","timestamp":1607098334,"output":"_at: ~N[2020-12-04 16:12:14.839207], name: \"dev-.semaphore/semaphore.yml\", organization_id: \"123\", p"},{"event":"cmd_output","timestamp":1607098334,"output":"roject_id: \"0987\", queue_id: \"0d773292-c660-4d2f-a4c1-255ff7e6d5e0\", scope: \"project\", updated_at: ~"},{"event":"cmd_output","timestamp":1607098334,"output":"N[2020-12-04 16:12:14.839217], user_generated: false}}\n\u001b[0m\u001b[22m\n16:12:14.846 [info] ppl_id: not_"},{"event":"cmd_output","timestamp":1607098334,"output":"available, event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105"},{"event":"cmd_output","timestamp":1607098334,"output":"), \n\u001b[0m\u001b[22m\n16:12:14.846 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.Regul"},{"event":"cmd_output","timestamp":1607098334,"output":"arInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:14.846 [info] ppl_id: 51ae9f8d-f676-4e5e-9e68-901e0"},{"event":"cmd_output","timestamp":1607098334,"output":"36723a1, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098334,"output":"igin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:14.846 "},{"event":"cmd_output","timestamp":1607098334,"output":"[info] ppl_id: 51ae9f8d-f676-4e5e-9e68-901e036723a1, type: PplBlocks, block_index: 1, state: initia"},{"event":"cmd_output","timestamp":1607098334,"output":"lizing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitStat"},{"event":"cmd_output","timestamp":1607098334,"output":"e.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:14.848 [info] ppl_id: 51ae9f8d-f676-4e5e-9e68-901e036723a1, t"},{"event":"cmd_output","timestamp":1607098334,"output":"ype: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098334,"output":"ixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:14.856 [info] ppl_id: 51ae9f8d-f67"},{"event":"cmd_output","timestamp":1607098334,"output":"6-4e5e-9e68-901e036723a1, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098334,"output":"gin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:14.857 [info] ppl_id: 51ae9"},{"event":"cmd_output","timestamp":1607098334,"output":"f8d-f676-4e5e-9e68-901e036723a1, type: PplBlocks, block_index: 0, state: waiting, event: exit_schedu"},{"event":"cmd_output","timestamp":1607098334,"output":"ling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:"},{"event":"cmd_output","timestamp":1607098334,"output":"14.865 [info] ppl_id: 51ae9f8d-f676-4e5e-9e68-901e036723a1, type: PplBlocks, block_index: 1, state:"},{"event":"cmd_output","timestamp":1607098334,"output":" waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change"},{"event":"cmd_output","timestamp":1607098334,"output":"/1(L90), \n\u001b[0m\u001b[22m\n16:12:14.866 [info] ppl_id: 51ae9f8d-f676-4e5e-9e68-901e036723a1, type: Ppls,"},{"event":"cmd_output","timestamp":1607098334,"output":" state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state"},{"event":"cmd_output","timestamp":1607098334,"output":"_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:14.875 [info] ppl_id: 51ae9f8d-f676-4e5e-9e68-901e036723a1, type"},{"event":"cmd_output","timestamp":1607098334,"output":": Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.lo"},{"event":"cmd_output","timestamp":1607098334,"output":"g_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:14.888 [info] PplBlocks WaitingState STM is scheduling bl"},{"event":"cmd_output","timestamp":1607098334,"output":"ock 0 from pipeline: \"51ae9f8d-f676-4e5e-9e68-901e036723a1\"\n\u001b[0m\u001b[22m\n16:12:14.895 [info] block_i"},{"event":"cmd_output","timestamp":1607098334,"output":"d: 843380ce-11c0-488c-b870-2164fd2b2512, type: BlockRequests, event: persisted block run request fro"},{"event":"cmd_output","timestamp":1607098334,"output":"m ppl 51ae9f8d-f676-4e5e-9e68-901e036723a1 for block 0, origin: Elixir.Block.BlockRequests.Model.Blo"},{"event":"cmd_output","timestamp":1607098334,"output":"ckRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:14.899 [info] block_id: 843380ce-11c0"},{"event":"cmd_output","timestamp":1607098334,"output":"-488c-b870-2164fd2b2512, type: Blocks, state: initializing, event: initializing, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098334,"output":"origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:14.901 [info] Blo"},{"event":"cmd_output","timestamp":1607098334,"output":"ck 0 of pipeline with id: 51ae9f8d-f676-4e5e-9e68-901e036723a1 scheduled in block service with id: :"},{"event":"cmd_output","timestamp":1607098334,"output":" \"843380ce-11c0-488c-b870-2164fd2b2512\"\n\u001b[0m\u001b[22m\n16:12:14.905 [info] ppl_id: 51ae9f8d-f676-4e5e-"},{"event":"cmd_output","timestamp":1607098334,"output":"9e68-901e036723a1, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery"},{"event":"cmd_output","timestamp":1607098334,"output":"_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:14.906 [info] "},{"event":"cmd_output","timestamp":1607098334,"output":" ppl_id: f45126d7-b733-43f6-8d89-7a57e8e786ab, type: PplRequests, event: persisted source_args for p"},{"event":"cmd_output","timestamp":1607098334,"output":"ipeline: f45126d7-b733-43f6-8d89-7a57e8e786ab, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueri"},{"event":"cmd_output","timestamp":1607098334,"output":"es.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:14.909 [info] ppl_id: f45126d7-b733-43f6-8d89-7a57e8e78"},{"event":"cmd_output","timestamp":1607098334,"output":"6ab, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098334,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:14.933 [info] ppl_id: f45126d7-b733-43f6"},{"event":"cmd_output","timestamp":1607098334,"output":"-8d89-7a57e8e786ab, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: "},{"event":"cmd_output","timestamp":1607098334,"output":"0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:14.957 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098334,"output":" f45126d7-b733-43f6-8d89-7a57e8e786ab, type: PplRequests, event: persisted definition for request wi"},{"event":"cmd_output","timestamp":1607098334,"output":"th request_token: 78fab54a-364b-11eb-828b-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequ"},{"event":"cmd_output","timestamp":1607098334,"output":"estsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:14.960 [info] Queue persisted: {:ok, %Ppl."},{"event":"cmd_output","timestamp":1607098334,"output":"Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 1"},{"event":"cmd_output","timestamp":1607098334,"output":"6:12:14.959557], name: \"stg-.semaphore/semaphore.yml\", organization_id: \"123\", project_id: \"0987\", q"},{"event":"cmd_output","timestamp":1607098334,"output":"ueue_id: \"ece6fb68-2ddd-45f0-bffc-2fa5d2b417c8\", scope: \"project\", updated_at: ~N[2020-12-04 16:12:1"},{"event":"cmd_output","timestamp":1607098334,"output":"4.959567], user_generated: false}}\n\u001b[0m\u001b[22m\n16:12:14.964 [info] ppl_id: not_available, event: cr"},{"event":"cmd_output","timestamp":1607098334,"output":"eated, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098334,"output":"2:14.964 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/"},{"event":"cmd_output","timestamp":1607098334,"output":"1(L105), \n\u001b[0m\u001b[22m\n16:12:14.964 [info] ppl_id: f45126d7-b733-43f6-8d89-7a57e8e786ab, type: PplBl"},{"event":"cmd_output","timestamp":1607098334,"output":"ocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098334,"output":"SubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:14.964 [info] ppl_id: f451"},{"event":"cmd_output","timestamp":1607098334,"output":"26d7-b733-43f6-8d89-7a57e8e786ab, type: PplBlocks, block_index: 1, state: initializing, event: creat"},{"event":"cmd_output","timestamp":1607098334,"output":"ed, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \r"},{"event":"cmd_output","timestamp":1607098334,"output":"\n\u001b[0m\u001b[22m\n16:12:14.966 [info] ppl_id: f45126d7-b733-43f6-8d89-7a57e8e786ab, type: PplSubInits, st"},{"event":"cmd_output","timestamp":1607098334,"output":"ate: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl"},{"event":"cmd_output","timestamp":1607098334,"output":".log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:14.973 [info] ppl_id: f45126d7-b733-43f6-8d89-7a57e8e7"},{"event":"cmd_output","timestamp":1607098334,"output":"86ab, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098334,"output":"igin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:14.975 [info] ppl_id: f451"},{"event":"cmd_output","timestamp":1607098334,"output":"26d7-b733-43f6-8d89-7a57e8e786ab, type: Ppls, state: pending, event: exit_scheduling, recovery_count"},{"event":"cmd_output","timestamp":1607098334,"output":": 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:14.983 [info] ppl_i"},{"event":"cmd_output","timestamp":1607098334,"output":"d: f45126d7-b733-43f6-8d89-7a57e8e786ab, type: PplBlocks, block_index: 1, state: waiting, event: exi"},{"event":"cmd_output","timestamp":1607098334,"output":"t_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098334,"output":"\n16:12:14.986 [info] ppl_id: f45126d7-b733-43f6-8d89-7a57e8e786ab, type: Ppls, state: queuing, eve"},{"event":"cmd_output","timestamp":1607098334,"output":"nt: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b["},{"event":"cmd_output","timestamp":1607098334,"output":"0m\u001b[22m\n16:12:14.994 [info] ppl_id: f45126d7-b733-43f6-8d89-7a57e8e786ab, type: Ppls, state: runni"},{"event":"cmd_output","timestamp":1607098334,"output":"ng, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90"},{"event":"cmd_output","timestamp":1607098335,"output":"), \n\u001b[0m\u001b[22m\n16:12:15.000 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline:"},{"event":"cmd_output","timestamp":1607098335,"output":" \"f45126d7-b733-43f6-8d89-7a57e8e786ab\"\n\u001b[0m\u001b[22m\n16:12:15.007 [info] block_id: 75756cdd-45c3-4d1"},{"event":"cmd_output","timestamp":1607098335,"output":"6-b5b3-bfa901e5151a, type: BlockRequests, event: persisted block run request from ppl f45126d7-b733-"},{"event":"cmd_output","timestamp":1607098335,"output":"43f6-8d89-7a57e8e786ab for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.pr"},{"event":"cmd_output","timestamp":1607098335,"output":"ocess_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:15.010 [info] block_id: 75756cdd-45c3-4d16-b5b3-bfa901e51"},{"event":"cmd_output","timestamp":1607098335,"output":"51a, type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block"},{"event":"cmd_output","timestamp":1607098335,"output":".Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:15.012 [info] Block 0 of pipeline wit"},{"event":"cmd_output","timestamp":1607098335,"output":"h id: f45126d7-b733-43f6-8d89-7a57e8e786ab scheduled in block service with id: : \"75756cdd-45c3-4d16"},{"event":"cmd_output","timestamp":1607098335,"output":"-b5b3-bfa901e5151a\"\n\u001b[0m\u001b[22m\n16:12:15.018 [info] ppl_id: f45126d7-b733-43f6-8d89-7a57e8e786ab, t"},{"event":"cmd_output","timestamp":1607098335,"output":"ype: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: E"},{"event":"cmd_output","timestamp":1607098335,"output":"lixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:15.020 [info] ppl_id: 41e875f1-4f"},{"event":"cmd_output","timestamp":1607098335,"output":"79-4695-94cf-0bcaaf085a42, type: PplRequests, event: persisted source_args for pipeline: 41e875f1-4f"},{"event":"cmd_output","timestamp":1607098335,"output":"79-4695-94cf-0bcaaf085a42, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L"},{"event":"cmd_output","timestamp":1607098335,"output":"89), \n\u001b[0m\u001b[22m\n16:12:15.024 [info] ppl_id: 41e875f1-4f79-4695-94cf-0bcaaf085a42, type: PplSubIni"},{"event":"cmd_output","timestamp":1607098335,"output":"ts, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_s"},{"event":"cmd_output","timestamp":1607098335,"output":"tate_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:15.048 [info] ppl_id: 41e875f1-4f79-4695-94cf-0bcaaf085a42, "},{"event":"cmd_output","timestamp":1607098335,"output":"type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Lo"},{"event":"cmd_output","timestamp":1607098335,"output":"oper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:15.076 [info] ppl_id: 41e875f1-4f79-4695-"},{"event":"cmd_output","timestamp":1607098335,"output":"94cf-0bcaaf085a42, type: PplRequests, event: persisted definition for request with request_token: 78"},{"event":"cmd_output","timestamp":1607098335,"output":"fd63d0-364b-11eb-bc67-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_d"},{"event":"cmd_output","timestamp":1607098335,"output":"efinition/3(L76), \n\u001b[0m\u001b[22m\n16:12:15.080 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{"},{"event":"cmd_output","timestamp":1607098335,"output":"__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:12:15.078106], nam"},{"event":"cmd_output","timestamp":1607098335,"output":"e: \"asdf-.semaphore/semaphore.yml\", organization_id: \"456\", project_id: \"0987\", queue_id: \"a2c31ff2-"},{"event":"cmd_output","timestamp":1607098335,"output":"9bc3-45fc-9899-988311260228\", scope: \"project\", updated_at: ~N[2020-12-04 16:12:15.078118], user_gen"},{"event":"cmd_output","timestamp":1607098335,"output":"erated: false}}\n\u001b[0m\u001b[22m\n16:12:15.086 [info] ppl_id: not_available, event: created, origin: Elix"},{"event":"cmd_output","timestamp":1607098335,"output":"ir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:15.086 [info] ev"},{"event":"cmd_output","timestamp":1607098335,"output":"ent: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098335,"output":"m\n16:12:15.086 [info] ppl_id: 41e875f1-4f79-4695-94cf-0bcaaf085a42, type: PplBlocks, block_index: "},{"event":"cmd_output","timestamp":1607098335,"output":"0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler"},{"event":"cmd_output","timestamp":1607098335,"output":".RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:15.086 [info] ppl_id: 41e875f1-4f79-4695-94cf"},{"event":"cmd_output","timestamp":1607098335,"output":"-0bcaaf085a42, type: PplBlocks, block_index: 1, state: initializing, event: created, recovery_count:"},{"event":"cmd_output","timestamp":1607098335,"output":" 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:1"},{"event":"cmd_output","timestamp":1607098335,"output":"5.089 [info] ppl_id: 41e875f1-4f79-4695-94cf-0bcaaf085a42, type: PplSubInits, state: done, result: "},{"event":"cmd_output","timestamp":1607098335,"output":"passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1"},{"event":"cmd_output","timestamp":1607098335,"output":"(L90), \n\u001b[0m\u001b[22m\n16:12:15.101 [info] ppl_id: 41e875f1-4f79-4695-94cf-0bcaaf085a42, type: Ppls, s"},{"event":"cmd_output","timestamp":1607098335,"output":"tate: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098335,"output":"hange/1(L90), \n\u001b[0m\u001b[22m\n16:12:15.108 [info] ppl_id: 41e875f1-4f79-4695-94cf-0bcaaf085a42, type: "},{"event":"cmd_output","timestamp":1607098335,"output":"PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098335,"output":".Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:15.122 [info] ppl_id: 41e875f1-4f79-46"},{"event":"cmd_output","timestamp":1607098335,"output":"95-94cf-0bcaaf085a42, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098335,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:15.127 [info] ppl_id: 41e875f1-"},{"event":"cmd_output","timestamp":1607098335,"output":"4f79-4695-94cf-0bcaaf085a42, type: PplBlocks, block_index: 1, state: waiting, event: exit_scheduling"},{"event":"cmd_output","timestamp":1607098335,"output":", recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:15.1"},{"event":"cmd_output","timestamp":1607098335,"output":"37 [info] ppl_id: 00b0bd50-0660-4b13-9b33-cd4d5cd2ec49, type: PplRequests, event: persisted source_"},{"event":"cmd_output","timestamp":1607098335,"output":"args for pipeline: 00b0bd50-0660-4b13-9b33-cd4d5cd2ec49, origin: Elixir.Ppl.PplRequests.Model.PplReq"},{"event":"cmd_output","timestamp":1607098335,"output":"uestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:15.138 [info] ppl_id: 41e875f1-4f79-4695-94cf"},{"event":"cmd_output","timestamp":1607098335,"output":"-0bcaaf085a42, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098335,"output":".Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:15.140 [info] ppl_id: 00b0bd50-0660-4b"},{"event":"cmd_output","timestamp":1607098335,"output":"13-9b33-cd4d5cd2ec49, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098335,"output":" origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:15.146 [info] PplBlocks"},{"event":"cmd_output","timestamp":1607098335,"output":" WaitingState STM is scheduling block 0 from pipeline: \"41e875f1-4f79-4695-94cf-0bcaaf085a42\"\n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098335,"output":"[22m\n16:12:15.153 [info] block_id: 751c7ac1-d18e-423d-9f9b-841a3d20176a, type: BlockRequests, even"},{"event":"cmd_output","timestamp":1607098335,"output":"t: persisted block run request from ppl 41e875f1-4f79-4695-94cf-0bcaaf085a42 for block 0, origin: El"},{"event":"cmd_output","timestamp":1607098335,"output":"ixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:15.1"},{"event":"cmd_output","timestamp":1607098335,"output":"56 [info] block_id: 751c7ac1-d18e-423d-9f9b-841a3d20176a, type: Blocks, state: initializing, event:"},{"event":"cmd_output","timestamp":1607098335,"output":" initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b"},{"event":"cmd_output","timestamp":1607098335,"output":"[0m\u001b[22m\n16:12:15.159 [info] Block 0 of pipeline with id: 41e875f1-4f79-4695-94cf-0bcaaf085a42 sch"},{"event":"cmd_output","timestamp":1607098335,"output":"eduled in block service with id: : \"751c7ac1-d18e-423d-9f9b-841a3d20176a\"\n\u001b[0m\u001b[22m\n16:12:15.163 ["},{"event":"cmd_output","timestamp":1607098335,"output":"info] ppl_id: 41e875f1-4f79-4695-94cf-0bcaaf085a42, type: PplBlocks, block_index: 0, state: running"},{"event":"cmd_output","timestamp":1607098335,"output":", event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90),"},{"event":"cmd_output","timestamp":1607098335,"output":" \n\u001b[0m\u001b[22m\n16:12:15.166 [info] ppl_id: 00b0bd50-0660-4b13-9b33-cd4d5cd2ec49, type: PplSubInits, "},{"event":"cmd_output","timestamp":1607098335,"output":"state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_s"},{"event":"cmd_output","timestamp":1607098335,"output":"tate_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:15.196 [info] ppl_id: 00b0bd50-0660-4b13-9b33-cd4d5cd2ec49, "},{"event":"cmd_output","timestamp":1607098335,"output":"type: PplRequests, event: persisted definition for request with request_token: 790013c8-364b-11eb-a8"},{"event":"cmd_output","timestamp":1607098335,"output":"c5-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \r"},{"event":"cmd_output","timestamp":1607098335,"output":"\n\u001b[0m\u001b[22m\n16:12:15.202 [info] ppl_id: not_available, event: created, origin: Elixir.Ppl.PplSubIni"},{"event":"cmd_output","timestamp":1607098335,"output":"ts.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:15.202 [info] event: created, or"},{"event":"cmd_output","timestamp":1607098335,"output":"igin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:15.203 "},{"event":"cmd_output","timestamp":1607098335,"output":"[info] ppl_id: 00b0bd50-0660-4b13-9b33-cd4d5cd2ec49, type: PplBlocks, block_index: 0, state: initia"},{"event":"cmd_output","timestamp":1607098335,"output":"lizing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitStat"},{"event":"cmd_output","timestamp":1607098335,"output":"e.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:15.203 [info] ppl_id: 00b0bd50-0660-4b13-9b33-cd4d5cd2ec49, t"},{"event":"cmd_output","timestamp":1607098335,"output":"ype: PplBlocks, block_index: 1, state: initializing, event: created, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098335,"output":"ir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:15.205 [info] pp"},{"event":"cmd_output","timestamp":1607098335,"output":"l_id: 00b0bd50-0660-4b13-9b33-cd4d5cd2ec49, type: PplSubInits, state: done, result: passed, event: e"},{"event":"cmd_output","timestamp":1607098335,"output":"xit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098335,"output":"2m\n16:12:15.212 [info] ppl_id: 00b0bd50-0660-4b13-9b33-cd4d5cd2ec49, type: PplBlocks, block_index:"},{"event":"cmd_output","timestamp":1607098335,"output":" 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_st"},{"event":"cmd_output","timestamp":1607098335,"output":"ate_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:15.213 [info] ppl_id: 00b0bd50-0660-4b13-9b33-cd4d5cd2ec49, t"},{"event":"cmd_output","timestamp":1607098335,"output":"ype: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl"},{"event":"cmd_output","timestamp":1607098335,"output":".log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:15.222 [info] ppl_id: 00b0bd50-0660-4b13-9b33-cd4d5cd2"},{"event":"cmd_output","timestamp":1607098335,"output":"ec49, type: PplBlocks, block_index: 1, state: waiting, event: exit_scheduling, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098335,"output":"igin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:15.224 [info] ppl_id: 00b0"},{"event":"cmd_output","timestamp":1607098335,"output":"bd50-0660-4b13-9b33-cd4d5cd2ec49, type: Ppls, state: queuing, event: exit_scheduling, recovery_count"},{"event":"cmd_output","timestamp":1607098335,"output":": 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test gRPC list_activity"},{"event":"cmd_output","timestamp":1607098335,"output":"() - valid request => paginated results returned (960.4ms)\u001b[0m\n * test gRPC list_grouped() - both"},{"event":"cmd_output","timestamp":1607098335,"output":" scopes, both queue types\u001b[22m\n16:12:15.431 [info] ppl_id: 0c4a4d38-35b4-4c23-a217-d60bf8cf457b, t"},{"event":"cmd_output","timestamp":1607098335,"output":"ype: PplRequests, event: persisted schedule request with request_token: 2b92140f-8005-4217-9a05-1ebf"},{"event":"cmd_output","timestamp":1607098335,"output":"23c8bd7e, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098335,"output":"2m\n16:12:15.434 [info] ppl_id: 0c4a4d38-35b4-4c23-a217-d60bf8cf457b, type: PplRequests, event: per"},{"event":"cmd_output","timestamp":1607098335,"output":"sisted definition for request with request_token: 2b92140f-8005-4217-9a05-1ebf23c8bd7e, origin: Elix"},{"event":"cmd_output","timestamp":1607098335,"output":"ir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:15.442 [inf"},{"event":"cmd_output","timestamp":1607098335,"output":"o] ppl_id: 0c4a4d38-35b4-4c23-a217-d60bf8cf457b, type: Ppls, state: initializing, event: initializi"},{"event":"cmd_output","timestamp":1607098335,"output":"ng, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098335,"output":"2m\n16:12:15.450 [info] Persisted ppl_sub_init for pipeline with ppl_id: 0c4a4d38-35b4-4c23-a217-d6"},{"event":"cmd_output","timestamp":1607098335,"output":"0bf8cf457b: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_su"},{"event":"cmd_output","timestamp":1607098335,"output":"b_inits\">, compile_task_id: nil, error_description: nil, id: 184, in_scheduling: false, init_type: \""},{"event":"cmd_output","timestamp":1607098335,"output":"regular\", inserted_at: ~N[2020-12-04 16:12:15.447955], pipeline_requests: #Ecto.Association.NotLoade"},{"event":"cmd_output","timestamp":1607098335,"output":"d, ppl_id: \"0c4a4d38-35b4-4c23-a217-d60bf8cf457b\", rec"},{"event":"cmd_output","timestamp":1607098335,"output":"overy_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate"},{"event":"cmd_output","timestamp":1607098335,"output":"_request_desc: nil, updated_at: ~N[2020-12-04 16:12:15.447966]}\n\u001b[0m\u001b[22m\n16:12:15.459 [info] ppl"},{"event":"cmd_output","timestamp":1607098335,"output":"_id: 59e26e96-52bb-497b-8775-8274bf3bcb86, type: PplRequests, event: persisted schedule request with"},{"event":"cmd_output","timestamp":1607098335,"output":" request_token: 864287cf-221c-482b-9325-f80fff3c12ec, origin: Elixir.Ppl.PplRequests.Model.PplReques"},{"event":"cmd_output","timestamp":1607098335,"output":"tsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:15.463 [info] ppl_id: 59e26e96-52bb-497b-8775"},{"event":"cmd_output","timestamp":1607098335,"output":"-8274bf3bcb86, type: PplRequests, event: persisted definition for request with request_token: 864287"},{"event":"cmd_output","timestamp":1607098335,"output":"cf-221c-482b-9325-f80fff3c12ec, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_defin"},{"event":"cmd_output","timestamp":1607098335,"output":"ition/3(L76), \n\u001b[0m\u001b[22m\n16:12:15.467 [info] ppl_id: 59e26e96-52bb-497b-8775-8274bf3bcb86, type: "},{"event":"cmd_output","timestamp":1607098335,"output":"Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.Ppl"},{"event":"cmd_output","timestamp":1607098335,"output":"sQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:15.473 [info] Persisted ppl_sub_init for pipe"},{"event":"cmd_output","timestamp":1607098335,"output":"line with ppl_id: 59e26e96-52bb-497b-8775-8274bf3bcb86: %Ppl.PplSubInits.Model.PplSubInits{__meta__:"},{"event":"cmd_output","timestamp":1607098335,"output":" #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil,"},{"event":"cmd_output","timestamp":1607098335,"output":" id: 185, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:15.471724], p"},{"event":"cmd_output","timestamp":1607098335,"output":"ipeline_requests: #Ecto.Association.NotLoaded, ppl_id:"},{"event":"cmd_output","timestamp":1607098335,"output":" \"59e26e96-52bb-497b-8775-8274bf3bcb86\", recovery_count: 0, result: nil, result_reason: nil, state: "},{"event":"cmd_output","timestamp":1607098335,"output":"\"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:15.4"},{"event":"cmd_output","timestamp":1607098335,"output":"71756]}\n\u001b[0m\u001b[22m\n16:12:15.480 [info] ppl_id: 0e081064-8f37-4a11-8398-bcfacca6b578, type: PplRequ"},{"event":"cmd_output","timestamp":1607098335,"output":"ests, event: persisted schedule request with request_token: 6e381721-fd25-42bc-919a-631d943f8858, or"},{"event":"cmd_output","timestamp":1607098335,"output":"igin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:15"},{"event":"cmd_output","timestamp":1607098335,"output":".486 [info] ppl_id: 0e081064-8f37-4a11-8398-bcfacca6b578, type: PplRequests, event: persisted defin"},{"event":"cmd_output","timestamp":1607098335,"output":"ition for request with request_token: 6e381721-fd25-42bc-919a-631d943f8858, origin: Elixir.Ppl.PplRe"},{"event":"cmd_output","timestamp":1607098335,"output":"quests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:15.490 [info] ppl_id: "},{"event":"cmd_output","timestamp":1607098335,"output":"0e081064-8f37-4a11-8398-bcfacca6b578, type: Ppls, state: initializing, event: initializing, recovery"},{"event":"cmd_output","timestamp":1607098335,"output":"_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:15"},{"event":"cmd_output","timestamp":1607098335,"output":".495 [info] Persisted ppl_sub_init for pipeline with ppl_id: 0e081064-8f37-4a11-8398-bcfacca6b578: "},{"event":"cmd_output","timestamp":1607098335,"output":"%Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, c"},{"event":"cmd_output","timestamp":1607098335,"output":"ompile_task_id: nil, error_description: nil, id: 186, in_scheduling: false, init_type: \"regular\", in"},{"event":"cmd_output","timestamp":1607098335,"output":"serted_at: ~N[2020-12-04 16:12:15.493094], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"0e081064-8f37-4a11-8398-bcfacca6b578\", recovery_count:"},{"event":"cmd_output","timestamp":1607098335,"output":" 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_des"},{"event":"cmd_output","timestamp":1607098335,"output":"c: nil, updated_at: ~N[2020-12-04 16:12:15.493106]}\n\u001b[0m\u001b[22m\n16:12:15.499 [info] ppl_id: e2aac0d"},{"event":"cmd_output","timestamp":1607098335,"output":"4-9248-48cd-8539-63dd59ebde04, type: PplRequests, event: persisted schedule request with request_tok"},{"event":"cmd_output","timestamp":1607098335,"output":"en: ede73935-b9dc-4e5e-b0c4-6dea08824c59, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.pr"},{"event":"cmd_output","timestamp":1607098335,"output":"ocess_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:15.502 [info] ppl_id: e2aac0d4-9248-48cd-8539-63dd59ebde0"},{"event":"cmd_output","timestamp":1607098335,"output":"4, type: PplRequests, event: persisted definition for request with request_token: ede73935-b9dc-4e5e"},{"event":"cmd_output","timestamp":1607098335,"output":"-b0c4-6dea08824c59, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76)"},{"event":"cmd_output","timestamp":1607098335,"output":", \n\u001b[0m\u001b[22m\n16:12:15.506 [info] ppl_id: e2aac0d4-9248-48cd-8539-63dd59ebde04, type: Ppls, state:"},{"event":"cmd_output","timestamp":1607098335,"output":" initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.pro"},{"event":"cmd_output","timestamp":1607098335,"output":"cess_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:15.513 [info] Persisted ppl_sub_init for pipeline with pp"},{"event":"cmd_output","timestamp":1607098335,"output":"l_id: e2aac0d4-9248-48cd-8539-63dd59ebde04: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schem"},{"event":"cmd_output","timestamp":1607098335,"output":"a.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 187, in"},{"event":"cmd_output","timestamp":1607098335,"output":"_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:15.511562], pipeline_requ"},{"event":"cmd_output","timestamp":1607098335,"output":"ests: #Ecto.Association.NotLoaded, ppl_id: \"e2aac0d4-9"},{"event":"cmd_output","timestamp":1607098335,"output":"248-48cd-8539-63dd59ebde04\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", t"},{"event":"cmd_output","timestamp":1607098335,"output":"erminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:15.511575]}\n\u001b[0"},{"event":"cmd_output","timestamp":1607098335,"output":"m\u001b[22m\n16:12:15.518 [info] ppl_id: 9c97a8b9-f12a-4958-8bda-09797ceb03b2, type: PplRequests, event:"},{"event":"cmd_output","timestamp":1607098335,"output":" persisted schedule request with request_token: c0d5a39c-79b2-4266-abc4-c8a37617659a, origin: Elixir"},{"event":"cmd_output","timestamp":1607098335,"output":".Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:15.520 [info] "},{"event":"cmd_output","timestamp":1607098335,"output":" ppl_id: 9c97a8b9-f12a-4958-8bda-09797ceb03b2, type: PplRequests, event: persisted definition for re"},{"event":"cmd_output","timestamp":1607098335,"output":"quest with request_token: c0d5a39c-79b2-4266-abc4-c8a37617659a, origin: Elixir.Ppl.PplRequests.Model"},{"event":"cmd_output","timestamp":1607098335,"output":".PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:15.523 [info] ppl_id: 9c97a8b9-f12"},{"event":"cmd_output","timestamp":1607098335,"output":"a-4958-8bda-09797ceb03b2, type: Ppls, state: initializing, event: initializing, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098335,"output":"rigin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:15.533 [info] "},{"event":"cmd_output","timestamp":1607098335,"output":" Persisted ppl_sub_init for pipeline with ppl_id: 9c97a8b9-f12a-4958-8bda-09797ceb03b2: %Ppl.PplSubI"},{"event":"cmd_output","timestamp":1607098335,"output":"nits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_"},{"event":"cmd_output","timestamp":1607098335,"output":"id: nil, error_description: nil, id: 188, in_scheduling: false, init_type: \"regular\", inserted_at: ~"},{"event":"cmd_output","timestamp":1607098335,"output":"N[2020-12-04 16:12:15.531484], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"9c97a8b9-f12a-4958-8bda-09797ceb03b2\", recovery_count: 0, result: "},{"event":"cmd_output","timestamp":1607098335,"output":"nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, upda"},{"event":"cmd_output","timestamp":1607098335,"output":"ted_at: ~N[2020-12-04 16:12:15.531497]}\n\u001b[0m\u001b[22m\n16:12:15.539 [info] ppl_id: 1807f765-d430-431f-"},{"event":"cmd_output","timestamp":1607098335,"output":"bc59-4af5f2f31bf3, type: PplRequests, event: persisted schedule request with request_token: 2eee40da"},{"event":"cmd_output","timestamp":1607098335,"output":"-845e-4261-af04-9e544cd65ac5, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_respon"},{"event":"cmd_output","timestamp":1607098335,"output":"se/2(L55), \n\u001b[0m\u001b[22m\n16:12:15.540 [info] ppl_id: 1807f765-d430-431f-bc59-4af5f2f31bf3, type: Ppl"},{"event":"cmd_output","timestamp":1607098335,"output":"Requests, event: persisted definition for request with request_token: 2eee40da-845e-4261-af04-9e544c"},{"event":"cmd_output","timestamp":1607098335,"output":"d65ac5, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098335,"output":"m\n16:12:15.545 [info] ppl_id: 1807f765-d430-431f-bc59-4af5f2f31bf3, type: Ppls, state: initializin"},{"event":"cmd_output","timestamp":1607098335,"output":"g, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_respons"},{"event":"cmd_output","timestamp":1607098335,"output":"e/2(L124), \n\u001b[0m\u001b[22m\n16:12:15.549 [info] Persisted ppl_sub_init for pipeline with ppl_id: 1807f7"},{"event":"cmd_output","timestamp":1607098335,"output":"65-d430-431f-bc59-4af5f2f31bf3: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:"},{"event":"cmd_output","timestamp":1607098335,"output":"loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 189, in_scheduling:"},{"event":"cmd_output","timestamp":1607098335,"output":" false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:15.547570], pipeline_requests: #Ecto."},{"event":"cmd_output","timestamp":1607098335,"output":"Association.NotLoaded, ppl_id: \"1807f765-d430-431f-bc5"},{"event":"cmd_output","timestamp":1607098335,"output":"9-4af5f2f31bf3\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_req"},{"event":"cmd_output","timestamp":1607098335,"output":"uest: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:15.547598]}\n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098335,"output":"2:15.554 [info] ppl_id: 44bf22d5-ba00-4ff8-93ba-b92f9276e89e, type: PplRequests, event: persisted s"},{"event":"cmd_output","timestamp":1607098335,"output":"chedule request with request_token: 993877e0-ffae-40cc-b08d-fa7f8c5c76fa, origin: Elixir.Ppl.PplRequ"},{"event":"cmd_output","timestamp":1607098335,"output":"ests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:15.560 [info] ppl_id: 44b"},{"event":"cmd_output","timestamp":1607098335,"output":"f22d5-ba00-4ff8-93ba-b92f9276e89e, type: PplRequests, event: persisted definition for request with r"},{"event":"cmd_output","timestamp":1607098335,"output":"equest_token: 993877e0-ffae-40cc-b08d-fa7f8c5c76fa, origin: Elixir.Ppl.PplRequests.Model.PplRequests"},{"event":"cmd_output","timestamp":1607098335,"output":"Queries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:15.563 [info] ppl_id: 44bf22d5-ba00-4ff8-93ba-"},{"event":"cmd_output","timestamp":1607098335,"output":"b92f9276e89e, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098335,"output":"r.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:15.567 [info] Persisted p"},{"event":"cmd_output","timestamp":1607098335,"output":"pl_sub_init for pipeline with ppl_id: 44bf22d5-ba00-4ff8-93ba-b92f9276e89e: %Ppl.PplSubInits.Model.P"},{"event":"cmd_output","timestamp":1607098335,"output":"plSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, err"},{"event":"cmd_output","timestamp":1607098335,"output":"or_description: nil, id: 190, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04"},{"event":"cmd_output","timestamp":1607098335,"output":" 16:12:15.565894], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"44bf22d5-ba00-4ff8-93ba-b92f9276e89e\", recovery_count: 0, result: nil, result_"},{"event":"cmd_output","timestamp":1607098335,"output":"reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2"},{"event":"cmd_output","timestamp":1607098335,"output":"020-12-04 16:12:15.565906]}\n\u001b[0m\u001b[22m\n16:12:15.574 [info] ppl_id: 67613c39-77d5-47a3-bfb9-1a5a33e"},{"event":"cmd_output","timestamp":1607098335,"output":"e6390, type: PplRequests, event: persisted schedule request with request_token: 68106a5e-ede4-4309-9"},{"event":"cmd_output","timestamp":1607098335,"output":"851-23ecedd90998, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \r"},{"event":"cmd_output","timestamp":1607098335,"output":"\n\u001b[0m\u001b[22m\n16:12:15.576 [info] ppl_id: 67613c39-77d5-47a3-bfb9-1a5a33ee6390, type: PplRequests, ev"},{"event":"cmd_output","timestamp":1607098335,"output":"ent: persisted definition for request with request_token: 68106a5e-ede4-4309-9851-23ecedd90998, orig"},{"event":"cmd_output","timestamp":1607098335,"output":"in: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:15."},{"event":"cmd_output","timestamp":1607098335,"output":"578 [info] ppl_id: 67613c39-77d5-47a3-bfb9-1a5a33ee6390, type: Ppls, state: initializing, event: in"},{"event":"cmd_output","timestamp":1607098335,"output":"itializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \r"},{"event":"cmd_output","timestamp":1607098335,"output":"\n\u001b[0m\u001b[22m\n16:12:15.582 [info] Persisted ppl_sub_init for pipeline with ppl_id: 67613c39-77d5-47a3"},{"event":"cmd_output","timestamp":1607098335,"output":"-bfb9-1a5a33ee6390: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pip"},{"event":"cmd_output","timestamp":1607098335,"output":"eline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 191, in_scheduling: false, init"},{"event":"cmd_output","timestamp":1607098335,"output":"_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:15.580975], pipeline_requests: #Ecto.Association."},{"event":"cmd_output","timestamp":1607098335,"output":"NotLoaded, ppl_id: \"67613c39-77d5-47a3-bfb9-1a5a33ee63"},{"event":"cmd_output","timestamp":1607098335,"output":"90\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, t"},{"event":"cmd_output","timestamp":1607098335,"output":"erminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:15.580985]}\n\u001b[0m\u001b[22m\n16:12:15.584 [in"},{"event":"cmd_output","timestamp":1607098335,"output":"fo] Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.STM"},{"event":"cmd_output","timestamp":1607098335,"output":"Handler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHan"},{"event":"cmd_output","timestamp":1607098335,"output":"dler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], co"},{"event":"cmd_output","timestamp":1607098335,"output":"oling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher_cb:"},{"event":"cmd_output","timestamp":1607098335,"output":" #Function<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, retur"},{"event":"cmd_output","timestamp":1607098335,"output":"ning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl"},{"event":"cmd_output","timestamp":1607098335,"output":".Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:15.585 [info] Periodic from module Elix"},{"event":"cmd_output","timestamp":1607098335,"output":"ir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 100"},{"event":"cmd_output","timestamp":1607098335,"output":" ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args: %{"},{"event":"cmd_output","timestamp":1607098335,"output":"allowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.P"},{"event":"cmd_output","timestamp":1607098335,"output":"pls.Model.Ppls, observed_state: \"pending\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandle"},{"event":"cmd_output","timestamp":1607098335,"output":"r.PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state"},{"event":"cmd_output","timestamp":1607098335,"output":", :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervis"},{"event":"cmd_output","timestamp":1607098335,"output":"or}\n\u001b[0m\u001b[22m\n16:12:15.586 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.QueuingState wi"},{"event":"cmd_output","timestamp":1607098335,"output":"th name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_"},{"event":"cmd_output","timestamp":1607098335,"output":"up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{allowed_states: [\"queuing\", \"running\","},{"event":"cmd_output","timestamp":1607098335,"output":" \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", publi"},{"event":"cmd_output","timestamp":1607098335,"output":"sher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, re"},{"event":"cmd_output","timestamp":1607098335,"output":"turning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: "},{"event":"cmd_output","timestamp":1607098335,"output":"Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:15.587 [info] Periodic from module E"},{"event":"cmd_output","timestamp":1607098335,"output":"lixir.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHandler.RunningState :: period: "},{"event":"cmd_output","timestamp":1607098335,"output":"100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring args:"},{"event":"cmd_output","timestamp":1607098335,"output":" %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Mo"},{"event":"cmd_output","timestamp":1607098335,"output":"del.Ppls, observed_state: \"running\", publisher_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler.Run"},{"event":"cmd_output","timestamp":1607098335,"output":"ningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :re"},{"event":"cmd_output","timestamp":1607098335,"output":"sult, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n"},{"event":"cmd_output","timestamp":1607098335,"output":"\u001b[0m\u001b[22m\n16:12:15.588 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.StoppingState with n"},{"event":"cmd_output","timestamp":1607098335,"output":"ame Elixir.Ppl.Ppls.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\""},{"event":"cmd_output","timestamp":1607098335,"output":", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], co"},{"event":"cmd_output","timestamp":1607098335,"output":"oling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"stopping\", publisher_cb: #F"},{"event":"cmd_output","timestamp":1607098335,"output":"unction<0.71803493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:"},{"event":"cmd_output","timestamp":1607098335,"output":"id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Mo"},{"event":"cmd_output","timestamp":1607098335,"output":"del.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:15.590 [info] Periodic from module Elixir.Ppl.P"},{"event":"cmd_output","timestamp":1607098335,"output":"plSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: perio"},{"event":"cmd_output","timestamp":1607098335,"output":"d: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recur"},{"event":"cmd_output","timestamp":1607098335,"output":"ring args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubIni"},{"event":"cmd_output","timestamp":1607098335,"output":"ts.Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning:"},{"event":"cmd_output","timestamp":1607098335,"output":" [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplS"},{"event":"cmd_output","timestamp":1607098335,"output":"ubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:15.591 [info] Periodic from mo"},{"event":"cmd_output","timestamp":1607098335,"output":"dule Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler.Fet"},{"event":"cmd_output","timestamp":1607098335,"output":"chingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-Fet"},{"event":"cmd_output","timestamp":1607098335,"output":"chingState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"done\"], cooling_ti"},{"event":"cmd_output","timestamp":1607098335,"output":"me_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fetching\", publisher_"},{"event":"cmd_output","timestamp":1607098335,"output":"cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :r"},{"event":"cmd_output","timestamp":1607098335,"output":"ecovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098335,"output":"2m\n16:12:15.592 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CompilationState wit"},{"event":"cmd_output","timestamp":1607098335,"output":"h name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 100 ms, metric_name: {\"Ppl.beho"},{"event":"cmd_output","timestamp":1607098335,"output":"lder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurring args: %{allowed_states: ["},{"event":"cmd_output","timestamp":1607098335,"output":"\"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubI"},{"event":"cmd_output","timestamp":1607098335,"output":"nits.Model.PplSubInits, observed_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, retu"},{"event":"cmd_output","timestamp":1607098335,"output":"rning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Pp"},{"event":"cmd_output","timestamp":1607098335,"output":"l.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:15.593 [info] Periodic f"},{"event":"cmd_output","timestamp":1607098335,"output":"rom module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHa"},{"event":"cmd_output","timestamp":1607098335,"output":"ndler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-ST"},{"event":"cmd_output","timestamp":1607098335,"output":"MHandler-RegularInitState\"]}, recurring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, initi"},{"event":"cmd_output","timestamp":1607098335,"output":"al_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_init\", publisher_cb: :skip, re"},{"event":"cmd_output","timestamp":1607098335,"output":"po: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count"},{"event":"cmd_output","timestamp":1607098335,"output":", :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:15."},{"event":"cmd_output","timestamp":1607098335,"output":"594 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.InitializingState with name Elixir."},{"event":"cmd_output","timestamp":1607098335,"output":"Ppl.PplBlocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", "},{"event":"cmd_output","timestamp":1607098335,"output":"[\"Ppl-PplBlocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", "},{"event":"cmd_output","timestamp":1607098335,"output":"\"waiting\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_stat"},{"event":"cmd_output","timestamp":1607098335,"output":"e: \"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :up"},{"event":"cmd_output","timestamp":1607098335,"output":"dated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplB"},{"event":"cmd_output","timestamp":1607098335,"output":"locks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:15.595 [info] Periodic from module Elixir.Ppl.PplB"},{"event":"cmd_output","timestamp":1607098335,"output":"locks.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler.WaitingState :: period: 1000"},{"event":"cmd_output","timestamp":1607098335,"output":" ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurring arg"},{"event":"cmd_output","timestamp":1607098335,"output":"s: %{allowed_states: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBloc"},{"event":"cmd_output","timestamp":1607098335,"output":"ks.Model.PplBlocks, observed_state: \"waiting\", publisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks."},{"event":"cmd_output","timestamp":1607098335,"output":"STMHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_a"},{"event":"cmd_output","timestamp":1607098335,"output":"t, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, "},{"event":"cmd_output","timestamp":1607098335,"output":"task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:15.596 [info] Periodic from module Elixir.Ppl.PplBlocks.S"},{"event":"cmd_output","timestamp":1607098335,"output":"TMHandler.RunningState with name Elixir.Ppl.PplBlocks.STMHandler.RunningState :: period: 1000 ms, me"},{"event":"cmd_output","timestamp":1607098335,"output":"tric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, recurring args: %{al"},{"event":"cmd_output","timestamp":1607098335,"output":"lowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Mo"},{"event":"cmd_output","timestamp":1607098335,"output":"del.PplBlocks, observed_state: \"running\", publisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMH"},{"event":"cmd_output","timestamp":1607098335,"output":"andler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :"},{"event":"cmd_output","timestamp":1607098335,"output":"state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplB"},{"event":"cmd_output","timestamp":1607098335,"output":"locks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:15.597 [info] Periodic from module Elixir.Ppl.PplB"},{"event":"cmd_output","timestamp":1607098335,"output":"locks.STMHandler.StoppingState with name Elixir.Ppl.PplBlocks.STMHandler.StoppingState :: period: 10"},{"event":"cmd_output","timestamp":1607098335,"output":"00 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurring "},{"event":"cmd_output","timestamp":1607098335,"output":"args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Mod"},{"event":"cmd_output","timestamp":1607098335,"output":"el.PplBlocks, observed_state: \"stopping\", publisher_cb: #Function<0.104215991/1 in Ppl.PplBlocks.STM"},{"event":"cmd_output","timestamp":1607098335,"output":"Handler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at,"},{"event":"cmd_output","timestamp":1607098335,"output":" :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.Pp"},{"event":"cmd_output","timestamp":1607098335,"output":"lBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:15.599 [info] Periodic from module Elixir.Block."},{"event":"cmd_output","timestamp":1607098335,"output":"Blocks.STMHandler.InitializingState with name Elixir.Block.Blocks.STMHandler.InitializingState :: pe"},{"event":"cmd_output","timestamp":1607098335,"output":"riod: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, "},{"event":"cmd_output","timestamp":1607098335,"output":"recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Blo"},{"event":"cmd_output","timestamp":1607098335,"output":"cks.Model.Blocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Block.EctoRepo, returni"},{"event":"cmd_output","timestamp":1607098335,"output":"ng: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks"},{"event":"cmd_output","timestamp":1607098335,"output":".Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:15.600 [info] Periodic from module Elixir."},{"event":"cmd_output","timestamp":1607098335,"output":"Block.Blocks.STMHandler.RunningState with name Elixir.Block.Blocks.STMHandler.RunningState :: period"},{"event":"cmd_output","timestamp":1607098335,"output":": 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-RunningState\"]}, recurring"},{"event":"cmd_output","timestamp":1607098335,"output":" args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block"},{"event":"cmd_output","timestamp":1607098335,"output":".Blocks.Model.Blocks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returnin"},{"event":"cmd_output","timestamp":1607098335,"output":"g: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks."},{"event":"cmd_output","timestamp":1607098335,"output":"Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:15.601 [info] Periodic from module Elixir.B"},{"event":"cmd_output","timestamp":1607098335,"output":"lock.Blocks.STMHandler.StoppingState with name Elixir.Block.Blocks.STMHandler.StoppingState :: perio"},{"event":"cmd_output","timestamp":1607098335,"output":"d: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-StoppingState\"]}, recurri"},{"event":"cmd_output","timestamp":1607098335,"output":"ng args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.M"},{"event":"cmd_output","timestamp":1607098335,"output":"odel.Blocks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id,"},{"event":"cmd_output","timestamp":1607098335,"output":" :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Bl"},{"event":"cmd_output","timestamp":1607098335,"output":"ocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:15.602 [info] Periodic from module Elixir.Block.Tas"},{"event":"cmd_output","timestamp":1607098335,"output":"ks.STMHandler.PendingState with name Elixir.Block.Tasks.STMHandler.PendingState :: period: 100 ms, m"},{"event":"cmd_output","timestamp":1607098335,"output":"etric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingState\"]}, recurring args: %{all"},{"event":"cmd_output","timestamp":1607098335,"output":"owed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Tasks.Model.Tasks, obser"},{"event":"cmd_output","timestamp":1607098335,"output":"ved_state: \"pending\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request"},{"event":"cmd_output","timestamp":1607098335,"output":", :updated_at, :state, :recovery_count, :block_id, :build_request_id], schema: Block.Tasks.Model.Tas"},{"event":"cmd_output","timestamp":1607098335,"output":"ks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:15.603 [info] Periodic from module Elixir.Block.Tasks"},{"event":"cmd_output","timestamp":1607098335,"output":".STMHandler.RunningState with name Elixir.Block.Tasks.STMHandler.RunningState :: period: 100 ms, met"},{"event":"cmd_output","timestamp":1607098335,"output":"ric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningState\"]}, recurring args: %{allow"},{"event":"cmd_output","timestamp":1607098335,"output":"ed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.T"},{"event":"cmd_output","timestamp":1607098335,"output":"asks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :termin"},{"event":"cmd_output","timestamp":1607098335,"output":"ate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task"},{"event":"cmd_output","timestamp":1607098335,"output":"_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:15.604 [info] Periodic from module Elixir.Block.Tasks.STMHand"},{"event":"cmd_output","timestamp":1607098335,"output":"ler.StoppingState with name Elixir.Block.Tasks.STMHandler.StoppingState :: period: 100 ms, metric_na"},{"event":"cmd_output","timestamp":1607098335,"output":"me: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]}, recurring args: %{allowed_st"},{"event":"cmd_output","timestamp":1607098335,"output":"ates: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_s"},{"event":"cmd_output","timestamp":1607098335,"output":"tate: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :u"},{"event":"cmd_output","timestamp":1607098335,"output":"pdated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :s"},{"event":"cmd_output","timestamp":1607098335,"output":"kip}\n\u001b[0m\u001b[22m\n16:12:15.706 [info] ppl_id: 0c4a4d38-35b4-4c23-a217-d60bf8cf457b, type: PplRequest"},{"event":"cmd_output","timestamp":1607098335,"output":"s, event: persisted source_args for pipeline: 0c4a4d38-35b4-4c23-a217-d60bf8cf457b, origin: Elixir.P"},{"event":"cmd_output","timestamp":1607098335,"output":"pl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:15.712 [info] ppl_"},{"event":"cmd_output","timestamp":1607098335,"output":"id: 0c4a4d38-35b4-4c23-a217-d60bf8cf457b, type: PplSubInits, state: fetching, event: exit_scheduling"},{"event":"cmd_output","timestamp":1607098335,"output":", recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:15.7"},{"event":"cmd_output","timestamp":1607098335,"output":"41 [info] ppl_id: 0c4a4d38-35b4-4c23-a217-d60bf8cf457b, type: PplSubInits, state: regular_init, eve"},{"event":"cmd_output","timestamp":1607098335,"output":"nt: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b["},{"event":"cmd_output","timestamp":1607098335,"output":"0m\u001b[22m\n16:12:15.762 [info] ppl_id: 0c4a4d38-35b4-4c23-a217-d60bf8cf457b, type: PplRequests, event"},{"event":"cmd_output","timestamp":1607098335,"output":": persisted definition for request with request_token: 2b92140f-8005-4217-9a05-1ebf23c8bd7e, origin:"},{"event":"cmd_output","timestamp":1607098335,"output":" Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:15.772"},{"event":"cmd_output","timestamp":1607098335,"output":" [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"q"},{"event":"cmd_output","timestamp":1607098335,"output":"ueues\">, inserted_at: ~N[2020-12-04 16:12:15.770780], name: \"master-.semaphore/semaphore.yml\", organ"},{"event":"cmd_output","timestamp":1607098335,"output":"ization_id: \"1807d46e-417f-43dc-9985-6bbaf038c5f4\", project_id: \"123\", queue_id: \"fc11df91-3109-43f5"},{"event":"cmd_output","timestamp":1607098335,"output":"-97de-c429ff6e3e86\", scope: \"project\", updated_at: ~N[2020-12-04 16:12:15.770793], user_generated: f"},{"event":"cmd_output","timestamp":1607098335,"output":"alse}}\n\u001b[0m\u001b[22m\n16:12:15.777 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.Re"},{"event":"cmd_output","timestamp":1607098335,"output":"gularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:15.777 [info] ppl_id: 0c4a4d38-35b4-4c23-a217-d6"},{"event":"cmd_output","timestamp":1607098335,"output":"0bf8cf457b, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098335,"output":" origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:15.7"},{"event":"cmd_output","timestamp":1607098335,"output":"79 [info] ppl_id: 0c4a4d38-35b4-4c23-a217-d60bf8cf457b, type: PplSubInits, state: done, result: pas"},{"event":"cmd_output","timestamp":1607098335,"output":"sed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L9"},{"event":"cmd_output","timestamp":1607098335,"output":"0), \n\u001b[0m\u001b[22m\n16:12:15.788 [info] ppl_id: 0c4a4d38-35b4-4c23-a217-d60bf8cf457b, type: PplBlocks,"},{"event":"cmd_output","timestamp":1607098335,"output":" block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.ST"},{"event":"cmd_output","timestamp":1607098335,"output":"M.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:15.794 [info] ppl_id: 0c4a4d38-35b4-4c23-a217-d6"},{"event":"cmd_output","timestamp":1607098335,"output":"0bf8cf457b, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Lo"},{"event":"cmd_output","timestamp":1607098335,"output":"oper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:15.806 [info] ppl_id: 0c4a4d38-35b4-4c23-"},{"event":"cmd_output","timestamp":1607098335,"output":"a217-d60bf8cf457b, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098335,"output":"ixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:15.820 [info] ppl_id: 0c4a4d38-35b"},{"event":"cmd_output","timestamp":1607098335,"output":"4-4c23-a217-d60bf8cf457b, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098335,"output":"gin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:15.826 [info] ppl_id: 59e26"},{"event":"cmd_output","timestamp":1607098335,"output":"e96-52bb-497b-8775-8274bf3bcb86, type: PplRequests, event: persisted source_args for pipeline: 59e26"},{"event":"cmd_output","timestamp":1607098335,"output":"e96-52bb-497b-8775-8274bf3bcb86, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_sour"},{"event":"cmd_output","timestamp":1607098335,"output":"ce/2(L89), \n\u001b[0m\u001b[22m\n16:12:15.828 [info] PplBlocks WaitingState STM is scheduling block 0 from p"},{"event":"cmd_output","timestamp":1607098335,"output":"ipeline: \"0c4a4d38-35b4-4c23-a217-d60bf8cf457b\"\n\u001b[0m\u001b[22m\n16:12:15.830 [info] ppl_id: 59e26e96-52"},{"event":"cmd_output","timestamp":1607098335,"output":"bb-497b-8775-8274bf3bcb86, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_coun"},{"event":"cmd_output","timestamp":1607098335,"output":"t: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:15.833 [info] bloc"},{"event":"cmd_output","timestamp":1607098335,"output":"k_id: e98edc9a-4b97-4699-b7f8-61b8a84dd8c6, type: BlockRequests, event: persisted block run request "},{"event":"cmd_output","timestamp":1607098335,"output":"from ppl 0c4a4d38-35b4-4c23-a217-d60bf8cf457b for block 0, origin: Elixir.Block.BlockRequests.Model."},{"event":"cmd_output","timestamp":1607098335,"output":"BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:15.836 [info] block_id: e98edc9a-4"},{"event":"cmd_output","timestamp":1607098335,"output":"b97-4699-b7f8-61b8a84dd8c6, type: Blocks, state: initializing, event: initializing, recovery_count: "},{"event":"cmd_output","timestamp":1607098335,"output":"0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:15.841 [info] "},{"event":"cmd_output","timestamp":1607098335,"output":"Block 0 of pipeline with id: 0c4a4d38-35b4-4c23-a217-d60bf8cf457b scheduled in block service with id"},{"event":"cmd_output","timestamp":1607098335,"output":": : \"e98edc9a-4b97-4699-b7f8-61b8a84dd8c6\"\n\u001b[0m\u001b[22m\n16:12:15.843 [info] ppl_id: 0c4a4d38-35b4-4c"},{"event":"cmd_output","timestamp":1607098335,"output":"23-a217-d60bf8cf457b, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recov"},{"event":"cmd_output","timestamp":1607098335,"output":"ery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:15.844 [inf"},{"event":"cmd_output","timestamp":1607098335,"output":"o] block_id: e98edc9a-4b97-4699-b7f8-61b8a84dd8c6, type: BlockRequests, event: persisted build and "},{"event":"cmd_output","timestamp":1607098335,"output":"sub_ppl details for block_request: e98edc9a-4b97-4699-b7f8-61b8a84dd8c6, origin: Elixir.Block.BlockR"},{"event":"cmd_output","timestamp":1607098335,"output":"equests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:15.846 [info] block_id: "},{"event":"cmd_output","timestamp":1607098335,"output":"e98edc9a-4b97-4699-b7f8-61b8a84dd8c6, type: Tasks, state: pending, event: created, recovery_count: 0"},{"event":"cmd_output","timestamp":1607098335,"output":", origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:15.84"},{"event":"cmd_output","timestamp":1607098335,"output":"8 [info] block_id: e98edc9a-4b97-4699-b7f8-61b8a84dd8c6, type: Blocks, state: running, event: exit_"},{"event":"cmd_output","timestamp":1607098335,"output":"scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098335,"output":"16:12:15.859 [info] ppl_id: 59e26e96-52bb-497b-8775-8274bf3bcb86, type: PplSubInits, state: regular"},{"event":"cmd_output","timestamp":1607098335,"output":"_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1("},{"event":"cmd_output","timestamp":1607098335,"output":"L90), \n\u001b[0m\u001b[22m\n16:12:15.866 [info] block_id: e98edc9a-4b97-4699-b7f8-61b8a84dd8c6, type: Tasks,"},{"event":"cmd_output","timestamp":1607098335,"output":" state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state"},{"event":"cmd_output","timestamp":1607098335,"output":"_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:15.894 [info] ppl_id: 59e26e96-52bb-497b-8775-8274bf3bcb86, type"},{"event":"cmd_output","timestamp":1607098335,"output":": PplRequests, event: persisted definition for request with request_token: 864287cf-221c-482b-9325-f"},{"event":"cmd_output","timestamp":1607098335,"output":"80fff3c12ec, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098335,"output":"m\u001b[22m\n16:12:15.903 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitSt"},{"event":"cmd_output","timestamp":1607098335,"output":"ate.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:15.903 [info] ppl_id: 59e26e96-52bb-497b-8775-8274bf3bcb86,"},{"event":"cmd_output","timestamp":1607098335,"output":" type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098335,"output":"ixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:15.906 [info] "},{"event":"cmd_output","timestamp":1607098335,"output":"ppl_id: 59e26e96-52bb-497b-8775-8274bf3bcb86, type: PplSubInits, state: done, result: passed, event:"},{"event":"cmd_output","timestamp":1607098335,"output":" exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098335,"output":"[22m\n16:12:15.916 [info] ppl_id: 59e26e96-52bb-497b-8775-8274bf3bcb86, type: PplBlocks, block_inde"},{"event":"cmd_output","timestamp":1607098335,"output":"x: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_"},{"event":"cmd_output","timestamp":1607098335,"output":"state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:15.920 [info] ppl_id: 59e26e96-52bb-497b-8775-8274bf3bcb86,"},{"event":"cmd_output","timestamp":1607098335,"output":" type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Im"},{"event":"cmd_output","timestamp":1607098335,"output":"pl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:15.932 [info] ppl_id: 59e26e96-52bb-497b-8775-8274bf"},{"event":"cmd_output","timestamp":1607098335,"output":"3bcb86, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper"},{"event":"cmd_output","timestamp":1607098335,"output":".STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:15.934 [info] block_id: e98edc9a-4b97-4699-b7"},{"event":"cmd_output","timestamp":1607098335,"output":"f8-61b8a84dd8c6, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098335,"output":".Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:15.941 [info] ppl_id: 0e081064-8f37-4a"},{"event":"cmd_output","timestamp":1607098335,"output":"11-8398-bcfacca6b578, type: PplRequests, event: persisted source_args for pipeline: 0e081064-8f37-4a"},{"event":"cmd_output","timestamp":1607098335,"output":"11-8398-bcfacca6b578, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), "},{"event":"cmd_output","timestamp":1607098335,"output":"\n\u001b[0m\u001b[22m\n16:12:15.944 [info] ppl_id: 0e081064-8f37-4a11-8398-bcfacca6b578, type: PplSubInits, s"},{"event":"cmd_output","timestamp":1607098335,"output":"tate: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_"},{"event":"cmd_output","timestamp":1607098335,"output":"change/1(L90), \n\u001b[0m\u001b[22m\n16:12:15.944 [info] block_id: e98edc9a-4b97-4699-b7f8-61b8a84dd8c6, typ"},{"event":"cmd_output","timestamp":1607098335,"output":"e: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.lo"},{"event":"cmd_output","timestamp":1607098335,"output":"g_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:15.956 [info] ppl_id: 0c4a4d38-35b4-4c23-a217-d60bf8cf457"},{"event":"cmd_output","timestamp":1607098335,"output":"b, block_id: e98edc9a-4b97-4699-b7f8-61b8a84dd8c6, type: PplBlocks, block_index: 0, state: done, res"},{"event":"cmd_output","timestamp":1607098335,"output":"ult: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_cha"},{"event":"cmd_output","timestamp":1607098335,"output":"nge/1(L90), \n\u001b[0m\u001b[22m\n16:12:15.969 [info] ppl_id: 0e081064-8f37-4a11-8398-bcfacca6b578, type: Pp"},{"event":"cmd_output","timestamp":1607098335,"output":"lSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM"},{"event":"cmd_output","timestamp":1607098335,"output":".Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:15.973 [info] ppl_id: 0c4a4d38-35b4-4c23-a217-d60"},{"event":"cmd_output","timestamp":1607098335,"output":"bf8cf457b, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098335,"output":"n: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:15.991 [info] ppl_id: 0e08106"},{"event":"cmd_output","timestamp":1607098335,"output":"4-8f37-4a11-8398-bcfacca6b578, type: PplRequests, event: persisted definition for request with reque"},{"event":"cmd_output","timestamp":1607098335,"output":"st_token: 6e381721-fd25-42bc-919a-631d943f8858, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQuer"},{"event":"cmd_output","timestamp":1607098336,"output":"ies.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:16.003 [info] Queue persisted: {:ok, %Ppl.Queues.M"},{"event":"cmd_output","timestamp":1607098336,"output":"odel.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:12:16."},{"event":"cmd_output","timestamp":1607098336,"output":"002058], name: \"master-.semaphore/semaphore.yml\", organization_id: \"09538c4c-2ee8-45d3-8f5b-b3c55977"},{"event":"cmd_output","timestamp":1607098336,"output":"dcd0\", project_id: \"456\", queue_id: \"fe9198a0-6741-4d2b-8ef5-3c2e4b33b1fd\", scope: \"project\", update"},{"event":"cmd_output","timestamp":1607098336,"output":"d_at: ~N[2020-12-04 16:12:16.002068], user_generated: false}}\n\u001b[0m\u001b[22m\n16:12:16.010 [info] event"},{"event":"cmd_output","timestamp":1607098336,"output":": created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098336,"output":"16:12:16.010 [info] ppl_id: 0e081064-8f37-4a11-8398-bcfacca6b578, type: PplBlocks, block_index: 0, "},{"event":"cmd_output","timestamp":1607098336,"output":"state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.Re"},{"event":"cmd_output","timestamp":1607098336,"output":"gularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:16.015 [info] ppl_id: 0e081064-8f37-4a11-8398-bc"},{"event":"cmd_output","timestamp":1607098336,"output":"facca6b578, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: "},{"event":"cmd_output","timestamp":1607098336,"output":"0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.016 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098336,"output":" 59e26e96-52bb-497b-8775-8274bf3bcb86, type: Ppls, state: running, event: exit_scheduling, recovery_"},{"event":"cmd_output","timestamp":1607098336,"output":"count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.025 [info] "},{"event":"cmd_output","timestamp":1607098336,"output":"PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"59e26e96-52bb-497b-8775-8274bf3bcb8"},{"event":"cmd_output","timestamp":1607098336,"output":"6\"\n\u001b[0m\u001b[22m\n16:12:16.027 [info] ppl_id: 0e081064-8f37-4a11-8398-bcfacca6b578, type: Ppls, state:"},{"event":"cmd_output","timestamp":1607098336,"output":" pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change"},{"event":"cmd_output","timestamp":1607098336,"output":"/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.035 [info] ppl_id: 0e081064-8f37-4a11-8398-bcfacca6b578, type: PplBl"},{"event":"cmd_output","timestamp":1607098336,"output":"ocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loop"},{"event":"cmd_output","timestamp":1607098336,"output":"er.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.040 [info] block_id: b2182b0e-5a1b-445b-"},{"event":"cmd_output","timestamp":1607098336,"output":"92e7-def81e2894ba, type: BlockRequests, event: persisted block run request from ppl 59e26e96-52bb-49"},{"event":"cmd_output","timestamp":1607098336,"output":"7b-8775-8274bf3bcb86 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.proc"},{"event":"cmd_output","timestamp":1607098336,"output":"ess_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:16.042 [info] block_id: b2182b0e-5a1b-445b-92e7-def81e2894b"},{"event":"cmd_output","timestamp":1607098336,"output":"a, type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.B"},{"event":"cmd_output","timestamp":1607098336,"output":"locks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:16.045 [info] ppl_id: 0e081064-8f37-4a1"},{"event":"cmd_output","timestamp":1607098336,"output":"1-8398-bcfacca6b578, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098336,"output":"Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.047 [info] Block 0 of pipelin"},{"event":"cmd_output","timestamp":1607098336,"output":"e with id: 59e26e96-52bb-497b-8775-8274bf3bcb86 scheduled in block service with id: : \"b2182b0e-5a1b"},{"event":"cmd_output","timestamp":1607098336,"output":"-445b-92e7-def81e2894ba\"\n\u001b[0m\u001b[22m\n16:12:16.051 [info] block_id: b2182b0e-5a1b-445b-92e7-def81e28"},{"event":"cmd_output","timestamp":1607098336,"output":"94ba, type: BlockRequests, event: persisted build and sub_ppl details for block_request: b2182b0e-5a"},{"event":"cmd_output","timestamp":1607098336,"output":"1b-445b-92e7-def81e2894ba, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_buil"},{"event":"cmd_output","timestamp":1607098336,"output":"d/2(L41), \n\u001b[0m\u001b[22m\n16:12:16.053 [info] ppl_id: 59e26e96-52bb-497b-8775-8274bf3bcb86, type: PplB"},{"event":"cmd_output","timestamp":1607098336,"output":"locks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loo"},{"event":"cmd_output","timestamp":1607098336,"output":"per.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.058 [info] block_id: b2182b0e-5a1b-445b"},{"event":"cmd_output","timestamp":1607098336,"output":"-92e7-def81e2894ba, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.B"},{"event":"cmd_output","timestamp":1607098336,"output":"lock.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:16.059 [info] ppl_id: "},{"event":"cmd_output","timestamp":1607098336,"output":"e2aac0d4-9248-48cd-8539-63dd59ebde04, type: PplRequests, event: persisted source_args for pipeline: "},{"event":"cmd_output","timestamp":1607098336,"output":"e2aac0d4-9248-48cd-8539-63dd59ebde04, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert"},{"event":"cmd_output","timestamp":1607098336,"output":"_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:16.061 [info] block_id: b2182b0e-5a1b-445b-92e7-def81e2894ba, ty"},{"event":"cmd_output","timestamp":1607098336,"output":"pe: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Imp"},{"event":"cmd_output","timestamp":1607098336,"output":"l.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.063 [info] ppl_id: e2aac0d4-9248-48cd-8539-63dd59e"},{"event":"cmd_output","timestamp":1607098336,"output":"bde04, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098336,"output":".Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.063 [info] ppl_id: 0e081064-8f37-4a"},{"event":"cmd_output","timestamp":1607098336,"output":"11-8398-bcfacca6b578, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098336,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.071 [info] PplBlocks Waiting"},{"event":"cmd_output","timestamp":1607098336,"output":"State STM is scheduling block 0 from pipeline: \"0e081064-8f37-4a11-8398-bcfacca6b578\"\n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098336,"output":":12:16.087 [info] block_id: f5af6fa6-10ad-4f64-a36f-2958b17f00a1, type: BlockRequests, event: persi"},{"event":"cmd_output","timestamp":1607098336,"output":"sted block run request from ppl 0e081064-8f37-4a11-8398-bcfacca6b578 for block 0, origin: Elixir.Blo"},{"event":"cmd_output","timestamp":1607098336,"output":"ck.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:16.087 [info"},{"event":"cmd_output","timestamp":1607098336,"output":"] block_id: b2182b0e-5a1b-445b-92e7-def81e2894ba, type: Tasks, state: running, event: exit_scheduli"},{"event":"cmd_output","timestamp":1607098336,"output":"ng, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:16"},{"event":"cmd_output","timestamp":1607098336,"output":".092 [info] block_id: f5af6fa6-10ad-4f64-a36f-2958b17f00a1, type: Blocks, state: initializing, even"},{"event":"cmd_output","timestamp":1607098336,"output":"t: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \r"},{"event":"cmd_output","timestamp":1607098336,"output":"\n\u001b[0m\u001b[22m\n16:12:16.096 [info] Block 0 of pipeline with id: 0e081064-8f37-4a11-8398-bcfacca6b578 s"},{"event":"cmd_output","timestamp":1607098336,"output":"cheduled in block service with id: : \"f5af6fa6-10ad-4f64-a36f-2958b17f00a1\"\n\u001b[0m\u001b[22m\n16:12:16.099"},{"event":"cmd_output","timestamp":1607098336,"output":" [info] ppl_id: 0e081064-8f37-4a11-8398-bcfacca6b578, type: PplBlocks, block_index: 0, state: runni"},{"event":"cmd_output","timestamp":1607098336,"output":"ng, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90"},{"event":"cmd_output","timestamp":1607098336,"output":"), \n\u001b[0m\u001b[22m\n16:12:16.102 [info] block_id: f5af6fa6-10ad-4f64-a36f-2958b17f00a1, type: BlockRequ"},{"event":"cmd_output","timestamp":1607098336,"output":"ests, event: persisted build and sub_ppl details for block_request: f5af6fa6-10ad-4f64-a36f-2958b17f"},{"event":"cmd_output","timestamp":1607098336,"output":"00a1, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098336,"output":"\n16:12:16.104 [info] block_id: f5af6fa6-10ad-4f64-a36f-2958b17f00a1, type: Tasks, state: pending, "},{"event":"cmd_output","timestamp":1607098336,"output":"event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/"},{"event":"cmd_output","timestamp":1607098336,"output":"1(L167), \n\u001b[0m\u001b[22m\n16:12:16.107 [info] block_id: f5af6fa6-10ad-4f64-a36f-2958b17f00a1, type: Blo"},{"event":"cmd_output","timestamp":1607098336,"output":"cks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_s"},{"event":"cmd_output","timestamp":1607098336,"output":"tate_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.111 [info] ppl_id: e2aac0d4-9248-48cd-8539-63dd59ebde04, "},{"event":"cmd_output","timestamp":1607098336,"output":"type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Lo"},{"event":"cmd_output","timestamp":1607098336,"output":"oper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.128 [info] block_id: f5af6fa6-10ad-4f6"},{"event":"cmd_output","timestamp":1607098336,"output":"4-a36f-2958b17f00a1, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098336,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.155 [info] ppl_id: e2aac0d4-"},{"event":"cmd_output","timestamp":1607098336,"output":"9248-48cd-8539-63dd59ebde04, type: PplRequests, event: persisted definition for request with request"},{"event":"cmd_output","timestamp":1607098336,"output":"_token: ede73935-b9dc-4e5e-b0c4-6dea08824c59, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQuerie"},{"event":"cmd_output","timestamp":1607098336,"output":"s.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:16.159 [info] block_id: b2182b0e-5a1b-445b-92e7-def8"},{"event":"cmd_output","timestamp":1607098336,"output":"1e2894ba, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper"},{"event":"cmd_output","timestamp":1607098336,"output":".STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.166 [info] event: created, origin: Elixir."},{"event":"cmd_output","timestamp":1607098336,"output":"Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:16.166 [info] block"},{"event":"cmd_output","timestamp":1607098336,"output":"_id: b2182b0e-5a1b-445b-92e7-def81e2894ba, type: Blocks, state: done, event: exit_scheduling, recove"},{"event":"cmd_output","timestamp":1607098336,"output":"ry_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.166 [info"},{"event":"cmd_output","timestamp":1607098336,"output":"] ppl_id: e2aac0d4-9248-48cd-8539-63dd59ebde04, type: PplBlocks, block_index: 0, state: initializin"},{"event":"cmd_output","timestamp":1607098336,"output":"g, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all"},{"event":"cmd_output","timestamp":1607098336,"output":"_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:16.169 [info] ppl_id: e2aac0d4-9248-48cd-8539-63dd59ebde04, type: "},{"event":"cmd_output","timestamp":1607098336,"output":"PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098336,"output":"Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.179 [info] ppl_id: 9c97a8b9-f12a-495"},{"event":"cmd_output","timestamp":1607098336,"output":"8-8bda-09797ceb03b2, type: PplRequests, event: persisted source_args for pipeline: 9c97a8b9-f12a-495"},{"event":"cmd_output","timestamp":1607098336,"output":"8-8bda-09797ceb03b2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \r"},{"event":"cmd_output","timestamp":1607098336,"output":"\n\u001b[0m\u001b[22m\n16:12:16.180 [info] ppl_id: e2aac0d4-9248-48cd-8539-63dd59ebde04, type: Ppls, state: pe"},{"event":"cmd_output","timestamp":1607098336,"output":"nding, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1("},{"event":"cmd_output","timestamp":1607098336,"output":"L90), \n\u001b[0m\u001b[22m\n16:12:16.185 [info] ppl_id: 9c97a8b9-f12a-4958-8bda-09797ceb03b2, type: PplSubIn"},{"event":"cmd_output","timestamp":1607098336,"output":"its, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_"},{"event":"cmd_output","timestamp":1607098336,"output":"state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.187 [info] ppl_id: 59e26e96-52bb-497b-8775-8274bf3bcb86,"},{"event":"cmd_output","timestamp":1607098336,"output":" block_id: b2182b0e-5a1b-445b-92e7-def81e2894ba, type: PplBlocks, block_index: 0, state: done, resul"},{"event":"cmd_output","timestamp":1607098336,"output":"t: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chang"},{"event":"cmd_output","timestamp":1607098336,"output":"e/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.189 [info] ppl_id: e2aac0d4-9248-48cd-8539-63dd59ebde04, type: PplB"},{"event":"cmd_output","timestamp":1607098336,"output":"locks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loo"},{"event":"cmd_output","timestamp":1607098336,"output":"per.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.199 [info] ppl_id: e2aac0d4-9248-48cd-8"},{"event":"cmd_output","timestamp":1607098336,"output":"539-63dd59ebde04, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098336,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.208 [info] ppl_id: 59e26e96-52bb"},{"event":"cmd_output","timestamp":1607098336,"output":"-497b-8775-8274bf3bcb86, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098336,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.221 [info] p"},{"event":"cmd_output","timestamp":1607098336,"output":"pl_id: 9c97a8b9-f12a-4958-8bda-09797ceb03b2, type: PplSubInits, state: regular_init, event: exit_sch"},{"event":"cmd_output","timestamp":1607098336,"output":"eduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098336,"output":"12:16.251 [info] ppl_id: 9c97a8b9-f12a-4958-8bda-09797ceb03b2, type: PplRequests, event: persisted "},{"event":"cmd_output","timestamp":1607098336,"output":"definition for request with request_token: c0d5a39c-79b2-4266-abc4-c8a37617659a, origin: Elixir.Ppl."},{"event":"cmd_output","timestamp":1607098336,"output":"PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:16.254 [info] Que"},{"event":"cmd_output","timestamp":1607098336,"output":"ue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, ins"},{"event":"cmd_output","timestamp":1607098336,"output":"erted_at: ~N[2020-12-04 16:12:16.253466], name: \"dev-.semaphore/semaphore.yml\", organization_id: \"fb"},{"event":"cmd_output","timestamp":1607098336,"output":"0e5bae-b316-4417-8c4c-15fffb10b5f6\", project_id: \"123\", queue_id: \"ad6159a5-1e65-420b-983d-c03126af9"},{"event":"cmd_output","timestamp":1607098336,"output":"036\", scope: \"project\", updated_at: ~N[2020-12-04 16:12:16.253489], user_generated: false}}\n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098336,"output":"2m\n16:12:16.264 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState."},{"event":"cmd_output","timestamp":1607098336,"output":"all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:16.264 [info] ppl_id: 9c97a8b9-f12a-4958-8bda-09797ceb03b2, typ"},{"event":"cmd_output","timestamp":1607098336,"output":"e: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098336,"output":".Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:16.267 [info] ppl_"},{"event":"cmd_output","timestamp":1607098336,"output":"id: 9c97a8b9-f12a-4958-8bda-09797ceb03b2, type: PplSubInits, state: done, result: passed, event: exi"},{"event":"cmd_output","timestamp":1607098336,"output":"t_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098336,"output":"\n16:12:16.277 [info] block_id: f5af6fa6-10ad-4f64-a36f-2958b17f00a1, type: Tasks, state: done, eve"},{"event":"cmd_output","timestamp":1607098336,"output":"nt: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b["},{"event":"cmd_output","timestamp":1607098336,"output":"0m\u001b[22m\n16:12:16.281 [info] ppl_id: 9c97a8b9-f12a-4958-8bda-09797ceb03b2, type: Ppls, state: pendi"},{"event":"cmd_output","timestamp":1607098336,"output":"ng, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90"},{"event":"cmd_output","timestamp":1607098336,"output":"), \n\u001b[0m\u001b[22m\n16:12:16.284 [info] ppl_id: 9c97a8b9-f12a-4958-8bda-09797ceb03b2, type: PplBlocks, "},{"event":"cmd_output","timestamp":1607098336,"output":"block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM"},{"event":"cmd_output","timestamp":1607098336,"output":".Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.289 [info] block_id: f5af6fa6-10ad-4f64-a36f-2"},{"event":"cmd_output","timestamp":1607098336,"output":"958b17f00a1, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Lo"},{"event":"cmd_output","timestamp":1607098336,"output":"oper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.292 [info] ppl_id: 9c97a8b9-f12a-4958-"},{"event":"cmd_output","timestamp":1607098336,"output":"8bda-09797ceb03b2, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098336,"output":"ixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.300 [info] ppl_id: 0e081064-8f3"},{"event":"cmd_output","timestamp":1607098336,"output":"7-4a11-8398-bcfacca6b578, block_id: f5af6fa6-10ad-4f64-a36f-2958b17f00a1, type: PplBlocks, block_ind"},{"event":"cmd_output","timestamp":1607098336,"output":"ex: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper"},{"event":"cmd_output","timestamp":1607098336,"output":".STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.301 [info] ppl_id: 1807f765-d430-431f-bc59"},{"event":"cmd_output","timestamp":1607098336,"output":"-4af5f2f31bf3, type: PplRequests, event: persisted source_args for pipeline: 1807f765-d430-431f-bc59"},{"event":"cmd_output","timestamp":1607098336,"output":"-4af5f2f31bf3, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098336,"output":"[22m\n16:12:16.304 [info] ppl_id: 1807f765-d430-431f-bc59-4af5f2f31bf3, type: PplSubInits, state: f"},{"event":"cmd_output","timestamp":1607098336,"output":"etching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/"},{"event":"cmd_output","timestamp":1607098336,"output":"1(L90), \n\u001b[0m\u001b[22m\n16:12:16.309 [info] ppl_id: 9c97a8b9-f12a-4958-8bda-09797ceb03b2, type: Ppls, "},{"event":"cmd_output","timestamp":1607098336,"output":"state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_"},{"event":"cmd_output","timestamp":1607098336,"output":"change/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.311 [info] PplBlocks WaitingState STM is scheduling block 0 fr"},{"event":"cmd_output","timestamp":1607098336,"output":"om pipeline: \"9c97a8b9-f12a-4958-8bda-09797ceb03b2\"\n\u001b[0m\u001b[22m\n16:12:16.321 [info] block_id: de4e2"},{"event":"cmd_output","timestamp":1607098336,"output":"f96-21b8-4adf-9783-a185daa283bb, type: BlockRequests, event: persisted block run request from ppl 9c"},{"event":"cmd_output","timestamp":1607098336,"output":"97a8b9-f12a-4958-8bda-09797ceb03b2 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockReques"},{"event":"cmd_output","timestamp":1607098336,"output":"tsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:16.324 [info] block_id: de4e2f96-21b8-4adf-97"},{"event":"cmd_output","timestamp":1607098336,"output":"83-a185daa283bb, type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098336,"output":"Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:16.327 [info] Block 0 of "},{"event":"cmd_output","timestamp":1607098336,"output":"pipeline with id: 9c97a8b9-f12a-4958-8bda-09797ceb03b2 scheduled in block service with id: : \"de4e2f"},{"event":"cmd_output","timestamp":1607098336,"output":"96-21b8-4adf-9783-a185daa283bb\"\n\u001b[0m\u001b[22m\n16:12:16.330 [info] ppl_id: 0e081064-8f37-4a11-8398-bcf"},{"event":"cmd_output","timestamp":1607098336,"output":"acca6b578, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098336,"output":"n: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.331 [info] ppl_id: 9c97a8b"},{"event":"cmd_output","timestamp":1607098336,"output":"9-f12a-4958-8bda-09797ceb03b2, type: PplBlocks, block_index: 0, state: running, event: exit_scheduli"},{"event":"cmd_output","timestamp":1607098336,"output":"ng, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:16"},{"event":"cmd_output","timestamp":1607098336,"output":".339 [info] block_id: de4e2f96-21b8-4adf-9783-a185daa283bb, type: BlockRequests, event: persisted b"},{"event":"cmd_output","timestamp":1607098336,"output":"uild and sub_ppl details for block_request: de4e2f96-21b8-4adf-9783-a185daa283bb, origin: Elixir.Blo"},{"event":"cmd_output","timestamp":1607098336,"output":"ck.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:16.346 [info] b"},{"event":"cmd_output","timestamp":1607098336,"output":"lock_id: de4e2f96-21b8-4adf-9783-a185daa283bb, type: Tasks, state: pending, event: created, recovery"},{"event":"cmd_output","timestamp":1607098336,"output":"_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098336,"output":":12:16.349 [info] ppl_id: 1807f765-d430-431f-bc59-4af5f2f31bf3, type: PplSubInits, state: regular_i"},{"event":"cmd_output","timestamp":1607098336,"output":"nit, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L9"},{"event":"cmd_output","timestamp":1607098336,"output":"0), \n\u001b[0m\u001b[22m\n16:12:16.353 [info] block_id: de4e2f96-21b8-4adf-9783-a185daa283bb, type: Blocks, "},{"event":"cmd_output","timestamp":1607098336,"output":"state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_"},{"event":"cmd_output","timestamp":1607098336,"output":"change/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.358 [info] ppl_id: e2aac0d4-9248-48cd-8539-63dd59ebde04, type:"},{"event":"cmd_output","timestamp":1607098336,"output":" Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098336,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.376 [info] PplBlocks WaitingState STM is scheduling blo"},{"event":"cmd_output","timestamp":1607098336,"output":"ck 0 from pipeline: \"e2aac0d4-9248-48cd-8539-63dd59ebde04\"\n\u001b[0m\u001b[22m\n16:12:16.384 [info] block_id"},{"event":"cmd_output","timestamp":1607098336,"output":": de4e2f96-21b8-4adf-9783-a185daa283bb, type: Tasks, state: running, event: exit_scheduling, recover"},{"event":"cmd_output","timestamp":1607098336,"output":"y_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.395 [info]"},{"event":"cmd_output","timestamp":1607098336,"output":" block_id: 184ee5e7-fc40-4962-9c30-d2f269b5d4bc, type: BlockRequests, event: persisted block run re"},{"event":"cmd_output","timestamp":1607098336,"output":"quest from ppl e2aac0d4-9248-48cd-8539-63dd59ebde04 for block 0, origin: Elixir.Block.BlockRequests."},{"event":"cmd_output","timestamp":1607098336,"output":"Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:16.398 [info] block_id: 184e"},{"event":"cmd_output","timestamp":1607098336,"output":"e5e7-fc40-4962-9c30-d2f269b5d4bc, type: Blocks, state: initializing, event: initializing, recovery_c"},{"event":"cmd_output","timestamp":1607098336,"output":"ount: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:16.400 [i"},{"event":"cmd_output","timestamp":1607098336,"output":"nfo] block_id: de4e2f96-21b8-4adf-9783-a185daa283bb, type: Tasks, state: done, event: exit_scheduli"},{"event":"cmd_output","timestamp":1607098336,"output":"ng, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:16"},{"event":"cmd_output","timestamp":1607098336,"output":".401 [info] ppl_id: 1807f765-d430-431f-bc59-4af5f2f31bf3, type: PplRequests, event: persisted defin"},{"event":"cmd_output","timestamp":1607098336,"output":"ition for request with request_token: 2eee40da-845e-4261-af04-9e544cd65ac5, origin: Elixir.Ppl.PplRe"},{"event":"cmd_output","timestamp":1607098336,"output":"quests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:16.404 [info] Block 0 "},{"event":"cmd_output","timestamp":1607098336,"output":"of pipeline with id: e2aac0d4-9248-48cd-8539-63dd59ebde04 scheduled in block service with id: : \"184"},{"event":"cmd_output","timestamp":1607098336,"output":"ee5e7-fc40-4962-9c30-d2f269b5d4bc\"\n\u001b[0m\u001b[22m\n16:12:16.407 [info] ppl_id: e2aac0d4-9248-48cd-8539-"},{"event":"cmd_output","timestamp":1607098336,"output":"63dd59ebde04, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_coun"},{"event":"cmd_output","timestamp":1607098336,"output":"t: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.408 [info] bloc"},{"event":"cmd_output","timestamp":1607098336,"output":"k_id: de4e2f96-21b8-4adf-9783-a185daa283bb, type: Blocks, state: done, event: exit_scheduling, recov"},{"event":"cmd_output","timestamp":1607098336,"output":"ery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.409 [inf"},{"event":"cmd_output","timestamp":1607098336,"output":"o] block_id: 184ee5e7-fc40-4962-9c30-d2f269b5d4bc, type: BlockRequests, event: persisted build and "},{"event":"cmd_output","timestamp":1607098336,"output":"sub_ppl details for block_request: 184ee5e7-fc40-4962-9c30-d2f269b5d4bc, origin: Elixir.Block.BlockR"},{"event":"cmd_output","timestamp":1607098336,"output":"equests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:16.413 [info] event: cre"},{"event":"cmd_output","timestamp":1607098336,"output":"ated, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12"},{"event":"cmd_output","timestamp":1607098336,"output":":16.413 [info] ppl_id: 1807f765-d430-431f-bc59-4af5f2f31bf3, type: PplBlocks, block_index: 0, state"},{"event":"cmd_output","timestamp":1607098336,"output":": initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.Regular"},{"event":"cmd_output","timestamp":1607098336,"output":"InitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:16.413 [info] block_id: 184ee5e7-fc40-4962-9c30-d2f26"},{"event":"cmd_output","timestamp":1607098336,"output":"9b5d4bc, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks"},{"event":"cmd_output","timestamp":1607098336,"output":".STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:16.416 [info] ppl_id: 1807f765-d4"},{"event":"cmd_output","timestamp":1607098336,"output":"30-431f-bc59-4af5f2f31bf3, type: PplSubInits, state: done, result: passed, event: exit_scheduling, r"},{"event":"cmd_output","timestamp":1607098336,"output":"ecovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.420 "},{"event":"cmd_output","timestamp":1607098336,"output":"[info] block_id: 184ee5e7-fc40-4962-9c30-d2f269b5d4bc, type: Blocks, state: running, event: exit_sc"},{"event":"cmd_output","timestamp":1607098336,"output":"heduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098336,"output":":12:16.423 [info] ppl_id: 44bf22d5-ba00-4ff8-93ba-b92f9276e89e, type: PplRequests, event: persisted"},{"event":"cmd_output","timestamp":1607098336,"output":" source_args for pipeline: 44bf22d5-ba00-4ff8-93ba-b92f9276e89e, origin: Elixir.Ppl.PplRequests.Mode"},{"event":"cmd_output","timestamp":1607098336,"output":"l.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:16.427 [info] ppl_id: 44bf22d5-ba00-4"},{"event":"cmd_output","timestamp":1607098336,"output":"ff8-93ba-b92f9276e89e, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0"},{"event":"cmd_output","timestamp":1607098336,"output":", origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.430 [info] ppl_id: "},{"event":"cmd_output","timestamp":1607098336,"output":"1807f765-d430-431f-bc59-4af5f2f31bf3, type: PplBlocks, block_index: 0, state: waiting, event: exit_s"},{"event":"cmd_output","timestamp":1607098336,"output":"cheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098336,"output":"6:12:16.433 [info] ppl_id: 9c97a8b9-f12a-4958-8bda-09797ceb03b2, block_id: de4e2f96-21b8-4adf-9783-"},{"event":"cmd_output","timestamp":1607098336,"output":"a185daa283bb, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, "},{"event":"cmd_output","timestamp":1607098336,"output":"recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.443"},{"event":"cmd_output","timestamp":1607098336,"output":" [info] ppl_id: 1807f765-d430-431f-bc59-4af5f2f31bf3, type: Ppls, state: pending, event: exit_sched"},{"event":"cmd_output","timestamp":1607098336,"output":"uling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12"},{"event":"cmd_output","timestamp":1607098336,"output":":16.449 [info] block_id: 184ee5e7-fc40-4962-9c30-d2f269b5d4bc, type: Tasks, state: running, event: "},{"event":"cmd_output","timestamp":1607098336,"output":"exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098336,"output":"22m\n16:12:16.463 [info] ppl_id: 1807f765-d430-431f-bc59-4af5f2f31bf3, type: Ppls, state: queuing, "},{"event":"cmd_output","timestamp":1607098336,"output":"event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \r"},{"event":"cmd_output","timestamp":1607098336,"output":"\n\u001b[0m\u001b[22m\n16:12:16.468 [info] ppl_id: 9c97a8b9-f12a-4958-8bda-09797ceb03b2, type: Ppls, state: do"},{"event":"cmd_output","timestamp":1607098336,"output":"ne, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_st"},{"event":"cmd_output","timestamp":1607098336,"output":"ate_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.475 [info] ppl_id: 44bf22d5-ba00-4ff8-93ba-b92f9276e89e, t"},{"event":"cmd_output","timestamp":1607098336,"output":"ype: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loo"},{"event":"cmd_output","timestamp":1607098336,"output":"per.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.479 [info] ppl_id: 1807f765-d430-431f-b"},{"event":"cmd_output","timestamp":1607098336,"output":"c59-4af5f2f31bf3, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098336,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.488 [info] PplBlocks WaitingStat"},{"event":"cmd_output","timestamp":1607098336,"output":"e STM is scheduling block 0 from pipeline: \"1807f765-d430-431f-bc59-4af5f2f31bf3\"\n\u001b[0m\u001b[22m\n16:12:"},{"event":"cmd_output","timestamp":1607098336,"output":"16.496 [info] block_id: 69fd5a3c-ad3a-465d-b87b-fc60528ca960, type: BlockRequests, event: persisted"},{"event":"cmd_output","timestamp":1607098336,"output":" block run request from ppl 1807f765-d430-431f-bc59-4af5f2f31bf3 for block 0, origin: Elixir.Block.B"},{"event":"cmd_output","timestamp":1607098336,"output":"lockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:16.499 [info] b"},{"event":"cmd_output","timestamp":1607098336,"output":"lock_id: 69fd5a3c-ad3a-465d-b87b-fc60528ca960, type: Blocks, state: initializing, event: initializin"},{"event":"cmd_output","timestamp":1607098336,"output":"g, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098336,"output":":12:16.502 [info] Block 0 of pipeline with id: 1807f765-d430-431f-bc59-4af5f2f31bf3 scheduled in bl"},{"event":"cmd_output","timestamp":1607098336,"output":"ock service with id: : \"69fd5a3c-ad3a-465d-b87b-fc60528ca960\"\n\u001b[0m\u001b[22m\n16:12:16.511 [info] ppl_i"},{"event":"cmd_output","timestamp":1607098336,"output":"d: 1807f765-d430-431f-bc59-4af5f2f31bf3, type: PplBlocks, block_index: 0, state: running, event: exi"},{"event":"cmd_output","timestamp":1607098336,"output":"t_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098336,"output":"\n16:12:16.511 [info] block_id: 69fd5a3c-ad3a-465d-b87b-fc60528ca960, type: BlockRequests, event: p"},{"event":"cmd_output","timestamp":1607098336,"output":"ersisted build and sub_ppl details for block_request: 69fd5a3c-ad3a-465d-b87b-fc60528ca960, origin: "},{"event":"cmd_output","timestamp":1607098336,"output":"Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:16.515"},{"event":"cmd_output","timestamp":1607098336,"output":" [info] block_id: 69fd5a3c-ad3a-465d-b87b-fc60528ca960, type: Tasks, state: pending, event: created"},{"event":"cmd_output","timestamp":1607098336,"output":", recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098336,"output":"m\u001b[22m\n16:12:16.521 [info] block_id: 69fd5a3c-ad3a-465d-b87b-fc60528ca960, type: Blocks, state: ru"},{"event":"cmd_output","timestamp":1607098336,"output":"nning, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1("},{"event":"cmd_output","timestamp":1607098336,"output":"L90), \n\u001b[0m\u001b[22m\n16:12:16.529 [info] block_id: 184ee5e7-fc40-4962-9c30-d2f269b5d4bc, type: Tasks,"},{"event":"cmd_output","timestamp":1607098336,"output":" state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_ch"},{"event":"cmd_output","timestamp":1607098336,"output":"ange/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.533 [info] ppl_id: 44bf22d5-ba00-4ff8-93ba-b92f9276e89e, type: P"},{"event":"cmd_output","timestamp":1607098336,"output":"plRequests, event: persisted definition for request with request_token: 993877e0-ffae-40cc-b08d-fa7f"},{"event":"cmd_output","timestamp":1607098336,"output":"8c5c76fa, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098336,"output":"22m\n16:12:16.541 [info] block_id: 184ee5e7-fc40-4962-9c30-d2f269b5d4bc, type: Blocks, state: done,"},{"event":"cmd_output","timestamp":1607098336,"output":" event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), "},{"event":"cmd_output","timestamp":1607098336,"output":"\n\u001b[0m\u001b[22m\n16:12:16.545 [info] ppl_id: 67613c39-77d5-47a3-bfb9-1a5a33ee6390, type: PplRequests, e"},{"event":"cmd_output","timestamp":1607098336,"output":"vent: persisted source_args for pipeline: 67613c39-77d5-47a3-bfb9-1a5a33ee6390, origin: Elixir.Ppl.P"},{"event":"cmd_output","timestamp":1607098336,"output":"plRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:16.548 [info] Queue pe"},{"event":"cmd_output","timestamp":1607098336,"output":"rsisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted"},{"event":"cmd_output","timestamp":1607098336,"output":"_at: ~N[2020-12-04 16:12:16.538345], name: \"dev-.semaphore/semaphore.yml\", organization_id: \"aa09754"},{"event":"cmd_output","timestamp":1607098336,"output":"8-ed4a-480d-9b0e-697a1ea0b94a\", project_id: \"456\", queue_id: \"4ac6756b-6661-4525-9fae-a90a90241aa4\","},{"event":"cmd_output","timestamp":1607098336,"output":" scope: \"project\", updated_at: ~N[2020-12-04 16:12:16.538358], user_generated: false}}\n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098336,"output":"6:12:16.552 [info] block_id: 69fd5a3c-ad3a-465d-b87b-fc60528ca960, type: Tasks, state: running, eve"},{"event":"cmd_output","timestamp":1607098336,"output":"nt: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b["},{"event":"cmd_output","timestamp":1607098336,"output":"0m\u001b[22m\n16:12:16.557 [info] ppl_id: 67613c39-77d5-47a3-bfb9-1a5a33ee6390, type: PplSubInits, state"},{"event":"cmd_output","timestamp":1607098336,"output":": fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chan"},{"event":"cmd_output","timestamp":1607098336,"output":"ge/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.567 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandl"},{"event":"cmd_output","timestamp":1607098336,"output":"er.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:16.567 [info] ppl_id: 44bf22d5-ba00-4ff8-93"},{"event":"cmd_output","timestamp":1607098336,"output":"ba-b92f9276e89e, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_coun"},{"event":"cmd_output","timestamp":1607098336,"output":"t: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12"},{"event":"cmd_output","timestamp":1607098336,"output":":16.571 [info] ppl_id: e2aac0d4-9248-48cd-8539-63dd59ebde04, block_id: 184ee5e7-fc40-4962-9c30-d2f2"},{"event":"cmd_output","timestamp":1607098336,"output":"69b5d4bc, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, reco"},{"event":"cmd_output","timestamp":1607098336,"output":"very_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.572 [in"},{"event":"cmd_output","timestamp":1607098336,"output":"fo] ppl_id: 44bf22d5-ba00-4ff8-93ba-b92f9276e89e, type: PplSubInits, state: done, result: passed, e"},{"event":"cmd_output","timestamp":1607098336,"output":"vent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n"},{"event":"cmd_output","timestamp":1607098336,"output":"\u001b[0m\u001b[22m\n16:12:16.596 [info] ppl_id: 44bf22d5-ba00-4ff8-93ba-b92f9276e89e, type: PplBlocks, block"},{"event":"cmd_output","timestamp":1607098336,"output":"_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl"},{"event":"cmd_output","timestamp":1607098336,"output":".log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.598 [info] ppl_id: 44bf22d5-ba00-4ff8-93ba-b92f9276"},{"event":"cmd_output","timestamp":1607098336,"output":"e89e, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.S"},{"event":"cmd_output","timestamp":1607098336,"output":"TM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.605 [info] ppl_id: 67613c39-77d5-47a3-bfb9-1"},{"event":"cmd_output","timestamp":1607098336,"output":"a5a33ee6390, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098336,"output":"in: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.610 [info] ppl_id: e2aac0"},{"event":"cmd_output","timestamp":1607098336,"output":"d4-9248-48cd-8539-63dd59ebde04, type: Ppls, state: done, result: passed, event: exit_scheduling, rec"},{"event":"cmd_output","timestamp":1607098336,"output":"overy_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.622 [i"},{"event":"cmd_output","timestamp":1607098336,"output":"nfo] ppl_id: 44bf22d5-ba00-4ff8-93ba-b92f9276e89e, type: Ppls, state: queuing, event: exit_scheduli"},{"event":"cmd_output","timestamp":1607098336,"output":"ng, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:16"},{"event":"cmd_output","timestamp":1607098336,"output":".642 [info] ppl_id: 44bf22d5-ba00-4ff8-93ba-b92f9276e89e, type: Ppls, state: running, event: exit_s"},{"event":"cmd_output","timestamp":1607098336,"output":"cheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098336,"output":"6:12:16.653 [info] block_id: 69fd5a3c-ad3a-465d-b87b-fc60528ca960, type: Tasks, state: done, event:"},{"event":"cmd_output","timestamp":1607098336,"output":" exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098336,"output":"[22m\n16:12:16.659 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"44bf22d5"},{"event":"cmd_output","timestamp":1607098336,"output":"-ba00-4ff8-93ba-b92f9276e89e\"\n\u001b[0m\u001b[22m\n16:12:16.667 [info] ppl_id: 67613c39-77d5-47a3-bfb9-1a5a3"},{"event":"cmd_output","timestamp":1607098336,"output":"3ee6390, type: PplRequests, event: persisted definition for request with request_token: 68106a5e-ede"},{"event":"cmd_output","timestamp":1607098336,"output":"4-4309-9851-23ecedd90998, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/"},{"event":"cmd_output","timestamp":1607098336,"output":"3(L76), \n\u001b[0m\u001b[22m\n16:12:16.670 [info] block_id: 69fd5a3c-ad3a-465d-b87b-fc60528ca960, type: Bloc"},{"event":"cmd_output","timestamp":1607098336,"output":"ks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state"},{"event":"cmd_output","timestamp":1607098336,"output":"_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.671 [info] block_id: 8b9724ad-9572-48e6-b819-1ec2fefffb1b, ty"},{"event":"cmd_output","timestamp":1607098336,"output":"pe: BlockRequests, event: persisted block run request from ppl 44bf22d5-ba00-4ff8-93ba-b92f9276e89e "},{"event":"cmd_output","timestamp":1607098336,"output":"for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), "},{"event":"cmd_output","timestamp":1607098336,"output":"\n\u001b[0m\u001b[22m\n16:12:16.676 [info] block_id: 8b9724ad-9572-48e6-b819-1ec2fefffb1b, type: Blocks, stat"},{"event":"cmd_output","timestamp":1607098336,"output":"e: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQue"},{"event":"cmd_output","timestamp":1607098336,"output":"ries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:16.680 [info] event: created, origin: Elixir.Ppl.PplSubInits"},{"event":"cmd_output","timestamp":1607098336,"output":".STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:16.680 [info] ppl_id: 67613c39-77d"},{"event":"cmd_output","timestamp":1607098336,"output":"5-47a3-bfb9-1a5a33ee6390, type: PplBlocks, block_index: 0, state: initializing, event: created, reco"},{"event":"cmd_output","timestamp":1607098336,"output":"very_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098336,"output":"2m\n16:12:16.683 [info] ppl_id: 67613c39-77d5-47a3-bfb9-1a5a33ee6390, type: PplSubInits, state: don"},{"event":"cmd_output","timestamp":1607098336,"output":"e, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_sta"},{"event":"cmd_output","timestamp":1607098336,"output":"te_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.684 [info] Block 0 of pipeline with id: 44bf22d5-ba00-4ff8-"},{"event":"cmd_output","timestamp":1607098336,"output":"93ba-b92f9276e89e scheduled in block service with id: : \"8b9724ad-9572-48e6-b819-1ec2fefffb1b\"\n\u001b[0m"},{"event":"cmd_output","timestamp":1607098336,"output":"\u001b[22m\n16:12:16.688 [info] ppl_id: 1807f765-d430-431f-bc59-4af5f2f31bf3, block_id: 69fd5a3c-ad3a-46"},{"event":"cmd_output","timestamp":1607098336,"output":"5d-b87b-fc60528ca960, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_sche"},{"event":"cmd_output","timestamp":1607098336,"output":"duling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098336,"output":"2:16.688 [info] ppl_id: 44bf22d5-ba00-4ff8-93ba-b92f9276e89e, type: PplBlocks, block_index: 0, stat"},{"event":"cmd_output","timestamp":1607098336,"output":"e: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chan"},{"event":"cmd_output","timestamp":1607098336,"output":"ge/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.695 [info] block_id: 8b9724ad-9572-48e6-b819-1ec2fefffb1b, type: B"},{"event":"cmd_output","timestamp":1607098336,"output":"lockRequests, event: persisted build and sub_ppl details for block_request: 8b9724ad-9572-48e6-b819-"},{"event":"cmd_output","timestamp":1607098336,"output":"1ec2fefffb1b, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b"},{"event":"cmd_output","timestamp":1607098336,"output":"[0m\u001b[22m\n16:12:16.696 [info] ppl_id: 67613c39-77d5-47a3-bfb9-1a5a33ee6390, type: Ppls, state: pend"},{"event":"cmd_output","timestamp":1607098336,"output":"ing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L9"},{"event":"cmd_output","timestamp":1607098336,"output":"0), \n\u001b[0m\u001b[22m\n16:12:16.702 [info] block_id: 8b9724ad-9572-48e6-b819-1ec2fefffb1b, type: Tasks, s"},{"event":"cmd_output","timestamp":1607098336,"output":"tate: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.Initializin"},{"event":"cmd_output","timestamp":1607098336,"output":"gState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:16.706 [info] ppl_id: 67613c39-77d5-47a3-bfb9-1a5a33ee63"},{"event":"cmd_output","timestamp":1607098336,"output":"90, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098336,"output":"in: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.709 [info] block_id: 8b97"},{"event":"cmd_output","timestamp":1607098336,"output":"24ad-9572-48e6-b819-1ec2fefffb1b, type: Blocks, state: running, event: exit_scheduling, recovery_cou"},{"event":"cmd_output","timestamp":1607098336,"output":"nt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.713 [info] ppl"},{"event":"cmd_output","timestamp":1607098336,"output":"_id: 67613c39-77d5-47a3-bfb9-1a5a33ee6390, type: Ppls, state: queuing, event: exit_scheduling, recov"},{"event":"cmd_output","timestamp":1607098336,"output":"ery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.722 [inf"},{"event":"cmd_output","timestamp":1607098336,"output":"o] ppl_id: 1807f765-d430-431f-bc59-4af5f2f31bf3, type: Ppls, state: done, result: passed, event: ex"},{"event":"cmd_output","timestamp":1607098336,"output":"it_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098336,"output":"m\n16:12:16.737 [info] block_id: 8b9724ad-9572-48e6-b819-1ec2fefffb1b, type: Tasks, state: running,"},{"event":"cmd_output","timestamp":1607098336,"output":" event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), "},{"event":"cmd_output","timestamp":1607098336,"output":"\n\u001b[0m\u001b[22m\n16:12:16.770 [info] block_id: 8b9724ad-9572-48e6-b819-1ec2fefffb1b, type: Tasks, state"},{"event":"cmd_output","timestamp":1607098336,"output":": done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1"},{"event":"cmd_output","timestamp":1607098336,"output":"(L90), \n\u001b[0m\u001b[22m\n16:12:16.777 [info] block_id: 8b9724ad-9572-48e6-b819-1ec2fefffb1b, type: Block"},{"event":"cmd_output","timestamp":1607098336,"output":"s, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_"},{"event":"cmd_output","timestamp":1607098336,"output":"change/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.787 [info] ppl_id: 44bf22d5-ba00-4ff8-93ba-b92f9276e89e, block"},{"event":"cmd_output","timestamp":1607098336,"output":"_id: 8b9724ad-9572-48e6-b819-1ec2fefffb1b, type: PplBlocks, block_index: 0, state: done, result: pas"},{"event":"cmd_output","timestamp":1607098336,"output":"sed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L9"},{"event":"cmd_output","timestamp":1607098336,"output":"0), \n\u001b[0m\u001b[22m\n16:12:16.803 [info] ppl_id: 44bf22d5-ba00-4ff8-93ba-b92f9276e89e, type: Ppls, stat"},{"event":"cmd_output","timestamp":1607098336,"output":"e: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.l"},{"event":"cmd_output","timestamp":1607098336,"output":"og_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.910 [info] ppl_id: 67613c39-77d5-47a3-bfb9-1a5a33ee63"},{"event":"cmd_output","timestamp":1607098336,"output":"90, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM"},{"event":"cmd_output","timestamp":1607098336,"output":".Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.917 [info] PplBlocks WaitingState STM is sched"},{"event":"cmd_output","timestamp":1607098336,"output":"uling block 0 from pipeline: \"67613c39-77d5-47a3-bfb9-1a5a33ee6390\"\n\u001b[0m\u001b[22m\n16:12:16.924 [info] "},{"event":"cmd_output","timestamp":1607098336,"output":" block_id: 50729749-407c-49bf-89c0-3097a19629c7, type: BlockRequests, event: persisted block run req"},{"event":"cmd_output","timestamp":1607098336,"output":"uest from ppl 67613c39-77d5-47a3-bfb9-1a5a33ee6390 for block 0, origin: Elixir.Block.BlockRequests.M"},{"event":"cmd_output","timestamp":1607098336,"output":"odel.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:16.927 [info] block_id: 50729"},{"event":"cmd_output","timestamp":1607098336,"output":"749-407c-49bf-89c0-3097a19629c7, type: Blocks, state: initializing, event: initializing, recovery_co"},{"event":"cmd_output","timestamp":1607098336,"output":"unt: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:16.928 [in"},{"event":"cmd_output","timestamp":1607098336,"output":"fo] Block 0 of pipeline with id: 67613c39-77d5-47a3-bfb9-1a5a33ee6390 scheduled in block service wi"},{"event":"cmd_output","timestamp":1607098336,"output":"th id: : \"50729749-407c-49bf-89c0-3097a19629c7\"\n\u001b[0m\u001b[22m\n16:12:16.932 [info] ppl_id: 67613c39-77"},{"event":"cmd_output","timestamp":1607098336,"output":"d5-47a3-bfb9-1a5a33ee6390, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, "},{"event":"cmd_output","timestamp":1607098336,"output":"recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.937"},{"event":"cmd_output","timestamp":1607098336,"output":" [info] block_id: 50729749-407c-49bf-89c0-3097a19629c7, type: BlockRequests, event: persisted build"},{"event":"cmd_output","timestamp":1607098336,"output":" and sub_ppl details for block_request: 50729749-407c-49bf-89c0-3097a19629c7, origin: Elixir.Block.B"},{"event":"cmd_output","timestamp":1607098336,"output":"lockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:16.939 [info] block"},{"event":"cmd_output","timestamp":1607098336,"output":"_id: 50729749-407c-49bf-89c0-3097a19629c7, type: Tasks, state: pending, event: created, recovery_cou"},{"event":"cmd_output","timestamp":1607098336,"output":"nt: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:"},{"event":"cmd_output","timestamp":1607098336,"output":"16.942 [info] block_id: 50729749-407c-49bf-89c0-3097a19629c7, type: Blocks, state: running, event: "},{"event":"cmd_output","timestamp":1607098336,"output":"exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098336,"output":"22m\n16:12:16.960 [info] block_id: 50729749-407c-49bf-89c0-3097a19629c7, type: Tasks, state: runnin"},{"event":"cmd_output","timestamp":1607098336,"output":"g, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90)"},{"event":"cmd_output","timestamp":1607098336,"output":", \n\u001b[0m\u001b[22m\n16:12:16.984 [info] block_id: 50729749-407c-49bf-89c0-3097a19629c7, type: Tasks, sta"},{"event":"cmd_output","timestamp":1607098336,"output":"te: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change"},{"event":"cmd_output","timestamp":1607098336,"output":"/1(L90), \n\u001b[0m\u001b[22m\n16:12:16.991 [info] block_id: 50729749-407c-49bf-89c0-3097a19629c7, type: Blo"},{"event":"cmd_output","timestamp":1607098336,"output":"cks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_stat"},{"event":"cmd_output","timestamp":1607098337,"output":"e_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:17.007 [info] ppl_id: 67613c39-77d5-47a3-bfb9-1a5a33ee6390, blo"},{"event":"cmd_output","timestamp":1607098337,"output":"ck_id: 50729749-407c-49bf-89c0-3097a19629c7, type: PplBlocks, block_index: 0, state: done, result: p"},{"event":"cmd_output","timestamp":1607098337,"output":"assed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1("},{"event":"cmd_output","timestamp":1607098337,"output":"L90), \n\u001b[0m\u001b[22m\n16:12:17.023 [info] ppl_id: 67613c39-77d5-47a3-bfb9-1a5a33ee6390, type: Ppls, st"},{"event":"cmd_output","timestamp":1607098337,"output":"ate: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl"},{"event":"cmd_output","timestamp":1607098337,"output":".log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test gRPC list_grouped() - both scopes, both queue types "},{"event":"cmd_output","timestamp":1607098337,"output":"(1723.6ms)\u001b[0m\n * test gRPC list_grouped() - org scoped implicit queues\u001b[22m\n16:12:17.169 [info]"},{"event":"cmd_output","timestamp":1607098337,"output":" ppl_id: e2af7788-ae99-44aa-bfd6-4348e961560a, type: PplRequests, event: persisted schedule request"},{"event":"cmd_output","timestamp":1607098337,"output":" with request_token: c7725675-21a5-4706-b235-30358ce3ef68, origin: Elixir.Ppl.PplRequests.Model.PplR"},{"event":"cmd_output","timestamp":1607098337,"output":"equestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:17.174 [info] ppl_id: e2af7788-ae99-44aa"},{"event":"cmd_output","timestamp":1607098337,"output":"-bfd6-4348e961560a, type: PplRequests, event: persisted definition for request with request_token: c"},{"event":"cmd_output","timestamp":1607098337,"output":"7725675-21a5-4706-b235-30358ce3ef68, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_"},{"event":"cmd_output","timestamp":1607098337,"output":"definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:17.180 [info] ppl_id: e2af7788-ae99-44aa-bfd6-4348e961560a, t"},{"event":"cmd_output","timestamp":1607098337,"output":"ype: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Mode"},{"event":"cmd_output","timestamp":1607098337,"output":"l.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:17.188 [info] Persisted ppl_sub_init for"},{"event":"cmd_output","timestamp":1607098337,"output":" pipeline with ppl_id: e2af7788-ae99-44aa-bfd6-4348e961560a: %Ppl.PplSubInits.Model.PplSubInits{__me"},{"event":"cmd_output","timestamp":1607098337,"output":"ta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description:"},{"event":"cmd_output","timestamp":1607098337,"output":" nil, id: 192, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:17.18548"},{"event":"cmd_output","timestamp":1607098337,"output":"9], pipeline_requests: #Ecto.Association.NotLoaded, pp"},{"event":"cmd_output","timestamp":1607098337,"output":"l_id: \"e2af7788-ae99-44aa-bfd6-4348e961560a\", recovery_count: 0, result: nil, result_reason: nil, st"},{"event":"cmd_output","timestamp":1607098337,"output":"ate: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12"},{"event":"cmd_output","timestamp":1607098337,"output":":17.185504]}\n\u001b[0m\u001b[22m\n16:12:17.196 [info] ppl_id: c3f8e7c2-e5ce-43cb-a3aa-1a30f1034996, type: Pp"},{"event":"cmd_output","timestamp":1607098337,"output":"lRequests, event: persisted schedule request with request_token: 8acb3345-469b-4d8c-992b-54c5dcd9127"},{"event":"cmd_output","timestamp":1607098337,"output":"a, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098337,"output":"12:17.200 [info] ppl_id: c3f8e7c2-e5ce-43cb-a3aa-1a30f1034996, type: PplRequests, event: persisted "},{"event":"cmd_output","timestamp":1607098337,"output":"definition for request with request_token: 8acb3345-469b-4d8c-992b-54c5dcd9127a, origin: Elixir.Ppl."},{"event":"cmd_output","timestamp":1607098337,"output":"PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:17.205 [info] ppl"},{"event":"cmd_output","timestamp":1607098337,"output":"_id: c3f8e7c2-e5ce-43cb-a3aa-1a30f1034996, type: Ppls, state: initializing, event: initializing, rec"},{"event":"cmd_output","timestamp":1607098337,"output":"overy_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098337,"output":"12:17.211 [info] Persisted ppl_sub_init for pipeline with ppl_id: c3f8e7c2-e5ce-43cb-a3aa-1a30f1034"},{"event":"cmd_output","timestamp":1607098337,"output":"996: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits"},{"event":"cmd_output","timestamp":1607098337,"output":"\">, compile_task_id: nil, error_description: nil, id: 193, in_scheduling: false, init_type: \"regular"},{"event":"cmd_output","timestamp":1607098337,"output":"\", inserted_at: ~N[2020-12-04 16:12:17.209515], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"c3f8e7c2-e5ce-43cb-a3aa-1a30f1034996\", recovery_c"},{"event":"cmd_output","timestamp":1607098337,"output":"ount: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_reques"},{"event":"cmd_output","timestamp":1607098337,"output":"t_desc: nil, updated_at: ~N[2020-12-04 16:12:17.209529]}\n\u001b[0m\u001b[22m\n16:12:17.217 [info] ppl_id: 2f"},{"event":"cmd_output","timestamp":1607098337,"output":"0cf62b-c83b-4e58-aaa2-02c8b6dd2695, type: PplRequests, event: persisted schedule request with reques"},{"event":"cmd_output","timestamp":1607098337,"output":"t_token: aaa8e655-e5c7-4034-875a-530342fad49b, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueri"},{"event":"cmd_output","timestamp":1607098337,"output":"es.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:17.220 [info] ppl_id: 2f0cf62b-c83b-4e58-aaa2-02c8b6"},{"event":"cmd_output","timestamp":1607098337,"output":"dd2695, type: PplRequests, event: persisted definition for request with request_token: aaa8e655-e5c7"},{"event":"cmd_output","timestamp":1607098337,"output":"-4034-875a-530342fad49b, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3"},{"event":"cmd_output","timestamp":1607098337,"output":"(L76), \n\u001b[0m\u001b[22m\n16:12:17.225 [info] ppl_id: 2f0cf62b-c83b-4e58-aaa2-02c8b6dd2695, type: Ppls, s"},{"event":"cmd_output","timestamp":1607098337,"output":"tate: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQuerie"},{"event":"cmd_output","timestamp":1607098337,"output":"s.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:17.231 [info] Persisted ppl_sub_init for pipeline wi"},{"event":"cmd_output","timestamp":1607098337,"output":"th ppl_id: 2f0cf62b-c83b-4e58-aaa2-02c8b6dd2695: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto."},{"event":"cmd_output","timestamp":1607098337,"output":"Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 19"},{"event":"cmd_output","timestamp":1607098337,"output":"4, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:17.229706], pipeline"},{"event":"cmd_output","timestamp":1607098337,"output":"_requests: #Ecto.Association.NotLoaded, ppl_id: \"2f0cf"},{"event":"cmd_output","timestamp":1607098337,"output":"62b-c83b-4e58-aaa2-02c8b6dd2695\", recovery_count: 0, result: nil, result_reason: nil, state: \"create"},{"event":"cmd_output","timestamp":1607098337,"output":"d\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:17.229719]}"},{"event":"cmd_output","timestamp":1607098337,"output":"\n\u001b[0m\u001b[22m\n16:12:17.238 [info] ppl_id: 96e3308f-e03c-414b-895d-869eee827c80, type: PplRequests, e"},{"event":"cmd_output","timestamp":1607098337,"output":"vent: persisted schedule request with request_token: c5e775d9-ec92-47ba-b7ba-38f3316abcbd, origin: E"},{"event":"cmd_output","timestamp":1607098337,"output":"lixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:17.242 [i"},{"event":"cmd_output","timestamp":1607098337,"output":"nfo] ppl_id: 96e3308f-e03c-414b-895d-869eee827c80, type: PplRequests, event: persisted definition f"},{"event":"cmd_output","timestamp":1607098337,"output":"or request with request_token: c5e775d9-ec92-47ba-b7ba-38f3316abcbd, origin: Elixir.Ppl.PplRequests."},{"event":"cmd_output","timestamp":1607098337,"output":"Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:17.246 [info] ppl_id: 96e3308"},{"event":"cmd_output","timestamp":1607098337,"output":"f-e03c-414b-895d-869eee827c80, type: Ppls, state: initializing, event: initializing, recovery_count:"},{"event":"cmd_output","timestamp":1607098337,"output":" 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:17.252 [i"},{"event":"cmd_output","timestamp":1607098337,"output":"nfo] Persisted ppl_sub_init for pipeline with ppl_id: 96e3308f-e03c-414b-895d-869eee827c80: %Ppl.Pp"},{"event":"cmd_output","timestamp":1607098337,"output":"lSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_"},{"event":"cmd_output","timestamp":1607098337,"output":"task_id: nil, error_description: nil, id: 195, in_scheduling: false, init_type: \"regular\", inserted_"},{"event":"cmd_output","timestamp":1607098337,"output":"at: ~N[2020-12-04 16:12:17.250465], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"96e3308f-e03c-414b-895d-869eee827c80\", recovery_count: 0, res"},{"event":"cmd_output","timestamp":1607098337,"output":"ult: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil,"},{"event":"cmd_output","timestamp":1607098337,"output":" updated_at: ~N[2020-12-04 16:12:17.250506]}\n\u001b[0m\u001b[22m\n16:12:17.261 [info] ppl_id: c55e84f0-57d9-"},{"event":"cmd_output","timestamp":1607098337,"output":"48fc-9148-d94261b935e1, type: PplRequests, event: persisted schedule request with request_token: ed2"},{"event":"cmd_output","timestamp":1607098337,"output":"ad020-e76b-40f3-aee6-6cbb40e0511d, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_r"},{"event":"cmd_output","timestamp":1607098337,"output":"esponse/2(L55), \n\u001b[0m\u001b[22m\n16:12:17.264 [info] ppl_id: c55e84f0-57d9-48fc-9148-d94261b935e1, type"},{"event":"cmd_output","timestamp":1607098337,"output":": PplRequests, event: persisted definition for request with request_token: ed2ad020-e76b-40f3-aee6-6"},{"event":"cmd_output","timestamp":1607098337,"output":"cbb40e0511d, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098337,"output":"m\u001b[22m\n16:12:17.268 [info] ppl_id: c55e84f0-57d9-48fc-9148-d94261b935e1, type: Ppls, state: initia"},{"event":"cmd_output","timestamp":1607098337,"output":"lizing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_re"},{"event":"cmd_output","timestamp":1607098337,"output":"sponse/2(L124), \n\u001b[0m\u001b[22m\n16:12:17.273 [info] Persisted ppl_sub_init for pipeline with ppl_id: c"},{"event":"cmd_output","timestamp":1607098337,"output":"55e84f0-57d9-48fc-9148-d94261b935e1: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metad"},{"event":"cmd_output","timestamp":1607098337,"output":"ata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 196, in_schedu"},{"event":"cmd_output","timestamp":1607098337,"output":"ling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:17.271441], pipeline_requests: #"},{"event":"cmd_output","timestamp":1607098337,"output":"Ecto.Association.NotLoaded, ppl_id: \"c55e84f0-57d9-48f"},{"event":"cmd_output","timestamp":1607098337,"output":"c-9148-d94261b935e1\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminat"},{"event":"cmd_output","timestamp":1607098337,"output":"e_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:17.271455]}\n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098337,"output":"\n16:12:17.280 [info] ppl_id: 834aee84-245e-4b9d-ac4b-cb6c248fa413, type: PplRequests, event: persis"},{"event":"cmd_output","timestamp":1607098337,"output":"ted schedule request with request_token: d9e636a0-d1e6-4028-8e62-40f827365041, origin: Elixir.Ppl.Pp"},{"event":"cmd_output","timestamp":1607098337,"output":"lRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:17.283 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098337,"output":": 834aee84-245e-4b9d-ac4b-cb6c248fa413, type: PplRequests, event: persisted definition for request w"},{"event":"cmd_output","timestamp":1607098337,"output":"ith request_token: d9e636a0-d1e6-4028-8e62-40f827365041, origin: Elixir.Ppl.PplRequests.Model.PplReq"},{"event":"cmd_output","timestamp":1607098337,"output":"uestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:17.287 [info] ppl_id: 834aee84-245e-4b9d-"},{"event":"cmd_output","timestamp":1607098337,"output":"ac4b-cb6c248fa413, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098337,"output":"Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:17.294 [info] Persis"},{"event":"cmd_output","timestamp":1607098337,"output":"ted ppl_sub_init for pipeline with ppl_id: 834aee84-245e-4b9d-ac4b-cb6c248fa413: %Ppl.PplSubInits.Mo"},{"event":"cmd_output","timestamp":1607098337,"output":"del.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil"},{"event":"cmd_output","timestamp":1607098337,"output":", error_description: nil, id: 197, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-"},{"event":"cmd_output","timestamp":1607098337,"output":"12-04 16:12:17.292962], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"834aee84-245e-4b9d-ac4b-cb6c248fa413\", recovery_count: 0, result: nil, re"},{"event":"cmd_output","timestamp":1607098337,"output":"sult_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at:"},{"event":"cmd_output","timestamp":1607098337,"output":" ~N[2020-12-04 16:12:17.292977]}\n\u001b[0m\u001b[22m\n16:12:17.300 [info] ppl_id: 0a77bc14-048a-4583-99b8-90"},{"event":"cmd_output","timestamp":1607098337,"output":"b634b60238, type: PplRequests, event: persisted schedule request with request_token: 466b3b1e-3538-4"},{"event":"cmd_output","timestamp":1607098337,"output":"f8e-bf2e-b4f8c7eec577, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L5"},{"event":"cmd_output","timestamp":1607098337,"output":"5), \n\u001b[0m\u001b[22m\n16:12:17.303 [info] ppl_id: 0a77bc14-048a-4583-99b8-90b634b60238, type: PplRequest"},{"event":"cmd_output","timestamp":1607098337,"output":"s, event: persisted definition for request with request_token: 466b3b1e-3538-4f8e-bf2e-b4f8c7eec577,"},{"event":"cmd_output","timestamp":1607098337,"output":" origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098337,"output":"2:17.306 [info] ppl_id: 0a77bc14-048a-4583-99b8-90b634b60238, type: Ppls, state: initializing, even"},{"event":"cmd_output","timestamp":1607098337,"output":"t: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L12"},{"event":"cmd_output","timestamp":1607098337,"output":"4), \n\u001b[0m\u001b[22m\n16:12:17.312 [info] Persisted ppl_sub_init for pipeline with ppl_id: 0a77bc14-048a"},{"event":"cmd_output","timestamp":1607098337,"output":"-4583-99b8-90b634b60238: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded,"},{"event":"cmd_output","timestamp":1607098337,"output":" \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 198, in_scheduling: false,"},{"event":"cmd_output","timestamp":1607098337,"output":" init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:17.309960], pipeline_requests: #Ecto.Associa"},{"event":"cmd_output","timestamp":1607098337,"output":"tion.NotLoaded, ppl_id: \"0a77bc14-048a-4583-99b8-90b63"},{"event":"cmd_output","timestamp":1607098337,"output":"4b60238\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: n"},{"event":"cmd_output","timestamp":1607098337,"output":"il, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:17.309998]}\n\u001b[0m\u001b[22m\n16:12:17.31"},{"event":"cmd_output","timestamp":1607098337,"output":"8 [info] ppl_id: da6fd73c-c139-41fa-b172-82bac129f984, type: PplRequests, event: persisted schedule"},{"event":"cmd_output","timestamp":1607098337,"output":" request with request_token: 2690c32b-84da-4172-b965-a7a692bff524, origin: Elixir.Ppl.PplRequests.Mo"},{"event":"cmd_output","timestamp":1607098337,"output":"del.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:17.321 [info] ppl_id: da6fd73c-c"},{"event":"cmd_output","timestamp":1607098337,"output":"139-41fa-b172-82bac129f984, type: PplRequests, event: persisted definition for request with request_"},{"event":"cmd_output","timestamp":1607098337,"output":"token: 2690c32b-84da-4172-b965-a7a692bff524, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries"},{"event":"cmd_output","timestamp":1607098337,"output":".insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:17.331 [info] ppl_id: da6fd73c-c139-41fa-b172-82bac12"},{"event":"cmd_output","timestamp":1607098337,"output":"9f984, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.P"},{"event":"cmd_output","timestamp":1607098337,"output":"pls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:17.336 [info] Persisted ppl_sub_"},{"event":"cmd_output","timestamp":1607098337,"output":"init for pipeline with ppl_id: da6fd73c-c139-41fa-b172-82bac129f984: %Ppl.PplSubInits.Model.PplSubIn"},{"event":"cmd_output","timestamp":1607098337,"output":"its{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_desc"},{"event":"cmd_output","timestamp":1607098337,"output":"ription: nil, id: 199, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:"},{"event":"cmd_output","timestamp":1607098337,"output":"17.335009], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"da6fd73c-c139-41fa-b172-82bac129f984\", recovery_count: 0, result: nil, result_reason:"},{"event":"cmd_output","timestamp":1607098337,"output":" nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-"},{"event":"cmd_output","timestamp":1607098337,"output":"04 16:12:17.335024]}\n\u001b[0m\u001b[22m\n16:12:17.340 [info] Periodic from module Elixir.Ppl.Ppls.STMHandle"},{"event":"cmd_output","timestamp":1607098337,"output":"r.InitializingState with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms, metric"},{"event":"cmd_output","timestamp":1607098337,"output":"_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %{allowe"},{"event":"cmd_output","timestamp":1607098337,"output":"d_states: [\"initializing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Pp"},{"event":"cmd_output","timestamp":1607098337,"output":"ls, observed_state: \"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.Ini"},{"event":"cmd_output","timestamp":1607098337,"output":"tializingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state"},{"event":"cmd_output","timestamp":1607098337,"output":", :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098337,"output":"m\n16:12:17.342 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingState with name Elixi"},{"event":"cmd_output","timestamp":1607098337,"output":"r.Ppl.Ppls.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Pp"},{"event":"cmd_output","timestamp":1607098337,"output":"ls-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"pending\", \"queuing\", \"running\", \""},{"event":"cmd_output","timestamp":1607098337,"output":"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publishe"},{"event":"cmd_output","timestamp":1607098337,"output":"r_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, returni"},{"event":"cmd_output","timestamp":1607098337,"output":"ng: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.P"},{"event":"cmd_output","timestamp":1607098337,"output":"pls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:12:17.343 [info] Periodic from "},{"event":"cmd_output","timestamp":1607098337,"output":"module Elixir.Ppl.Ppls.STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandler.QueuingState :: "},{"event":"cmd_output","timestamp":1607098337,"output":"period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurri"},{"event":"cmd_output","timestamp":1607098337,"output":"ng args: %{allowed_states: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, initial_query: Ppl."},{"event":"cmd_output","timestamp":1607098337,"output":"Ppls.Model.Ppls, observed_state: \"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHan"},{"event":"cmd_output","timestamp":1607098337,"output":"dler.QueuingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :st"},{"event":"cmd_output","timestamp":1607098337,"output":"ate, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098337,"output":"[22m\n16:12:17.345 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.RunningState with name El"},{"event":"cmd_output","timestamp":1607098337,"output":"ixir.Ppl.Ppls.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl"},{"event":"cmd_output","timestamp":1607098337,"output":"-Ppls-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"],"},{"event":"cmd_output","timestamp":1607098337,"output":" cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"running\", publisher_cb: "},{"event":"cmd_output","timestamp":1607098337,"output":"#Function<0.74670282/1 in Ppl.Ppls.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: ["},{"event":"cmd_output","timestamp":1607098337,"output":":id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.M"},{"event":"cmd_output","timestamp":1607098337,"output":"odel.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:12:17.346 [info] Periodic from modul"},{"event":"cmd_output","timestamp":1607098337,"output":"e Elixir.Ppl.Ppls.STMHandler.StoppingState with name Elixir.Ppl.Ppls.STMHandler.StoppingState :: per"},{"event":"cmd_output","timestamp":1607098337,"output":"iod: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring"},{"event":"cmd_output","timestamp":1607098337,"output":" args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.P"},{"event":"cmd_output","timestamp":1607098337,"output":"pls, observed_state: \"stopping\", publisher_cb: #Function<0.71803493/1 in Ppl.Ppls.STMHandler.Stoppin"},{"event":"cmd_output","timestamp":1607098337,"output":"gState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :resul"},{"event":"cmd_output","timestamp":1607098337,"output":"t, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12"},{"event":"cmd_output","timestamp":1607098337,"output":":17.347 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedState with name Elixir"},{"event":"cmd_output","timestamp":1607098337,"output":".Ppl.PplSubInits.STMHandler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\""},{"event":"cmd_output","timestamp":1607098337,"output":"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args: %{allowed_states: [\"fetching\", \"done\"], "},{"event":"cmd_output","timestamp":1607098337,"output":"cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"created\", pu"},{"event":"cmd_output","timestamp":1607098337,"output":"blisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :re"},{"event":"cmd_output","timestamp":1607098337,"output":"sult, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\r"},{"event":"cmd_output","timestamp":1607098337,"output":"\n\u001b[0m\u001b[22m\n16:12:17.349 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.FetchingStat"},{"event":"cmd_output","timestamp":1607098337,"output":"e with name Elixir.Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 ms, metric_name: {\"Ppl.be"},{"event":"cmd_output","timestamp":1607098337,"output":"holder-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %{allowed_states: [\""},{"event":"cmd_output","timestamp":1607098337,"output":"regular_init\", \"compilation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.Pp"},{"event":"cmd_output","timestamp":1607098337,"output":"lSubInits, observed_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :te"},{"event":"cmd_output","timestamp":1607098337,"output":"rminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Mo"},{"event":"cmd_output","timestamp":1607098337,"output":"del.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:17.350 [info] Periodic from module Elixi"},{"event":"cmd_output","timestamp":1607098337,"output":"r.Ppl.PplSubInits.STMHandler.CompilationState with name Elixir.Ppl.PplSubInits.STMHandler.Compilatio"},{"event":"cmd_output","timestamp":1607098337,"output":"nState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-Compila"},{"event":"cmd_output","timestamp":1607098337,"output":"tionState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"stopping\", \"done\"],"},{"event":"cmd_output","timestamp":1607098337,"output":" cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"compilatio"},{"event":"cmd_output","timestamp":1607098337,"output":"n\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :stat"},{"event":"cmd_output","timestamp":1607098337,"output":"e, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :"},{"event":"cmd_output","timestamp":1607098337,"output":"skip}\n\u001b[0m\u001b[22m\n16:12:17.351 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.Regula"},{"event":"cmd_output","timestamp":1607098337,"output":"rInitState with name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period: 100 ms, metric_na"},{"event":"cmd_output","timestamp":1607098337,"output":"me: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurring args: %{all"},{"event":"cmd_output","timestamp":1607098337,"output":"owed_states: [\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observ"},{"event":"cmd_output","timestamp":1607098337,"output":"ed_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_reque"},{"event":"cmd_output","timestamp":1607098337,"output":"st, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubIni"},{"event":"cmd_output","timestamp":1607098337,"output":"ts, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:17.351 [info] Periodic from module Elixir.Ppl.PplBloc"},{"event":"cmd_output","timestamp":1607098337,"output":"ks.STMHandler.InitializingState with name Elixir.Ppl.PplBlocks.STMHandler.InitializingState :: perio"},{"event":"cmd_output","timestamp":1607098337,"output":"d: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-InitializingState\"]}, re"},{"event":"cmd_output","timestamp":1607098337,"output":"curring args: %{allowed_states: [\"initializing\", \"waiting\", \"done\"], cooling_time_sec: 0, initial_qu"},{"event":"cmd_output","timestamp":1607098337,"output":"ery: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Ppl.E"},{"event":"cmd_output","timestamp":1607098337,"output":"ctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id"},{"event":"cmd_output","timestamp":1607098337,"output":", :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:17"},{"event":"cmd_output","timestamp":1607098337,"output":".351 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.WaitingState with name Elixir.Ppl."},{"event":"cmd_output","timestamp":1607098337,"output":"PplBlocks.STMHandler.WaitingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Pp"},{"event":"cmd_output","timestamp":1607098337,"output":"lBlocks-STMHandler-WaitingState\"]}, recurring args: %{allowed_states: [\"waiting\", \"running\", \"done\"]"},{"event":"cmd_output","timestamp":1607098337,"output":", cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"waiting\", publ"},{"event":"cmd_output","timestamp":1607098337,"output":"isher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>, repo: Ppl.EctoRepo"},{"event":"cmd_output","timestamp":1607098337,"output":", returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :bloc"},{"event":"cmd_output","timestamp":1607098337,"output":"k_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:17.352 [i"},{"event":"cmd_output","timestamp":1607098337,"output":"nfo] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.RunningState with name Elixir.Ppl.PplBloc"},{"event":"cmd_output","timestamp":1607098337,"output":"ks.STMHandler.RunningState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks"},{"event":"cmd_output","timestamp":1607098337,"output":"-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cool"},{"event":"cmd_output","timestamp":1607098337,"output":"ing_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"running\", publisher"},{"event":"cmd_output","timestamp":1607098337,"output":"_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, re"},{"event":"cmd_output","timestamp":1607098337,"output":"turning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_in"},{"event":"cmd_output","timestamp":1607098337,"output":"dex, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:17"},{"event":"cmd_output","timestamp":1607098337,"output":".352 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.StoppingState with name Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098337,"output":".PplBlocks.STMHandler.StoppingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-"},{"event":"cmd_output","timestamp":1607098337,"output":"PplBlocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooli"},{"event":"cmd_output","timestamp":1607098337,"output":"ng_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"stopping\", publisher"},{"event":"cmd_output","timestamp":1607098337,"output":"_cb: #Function<0.104215991/1 in Ppl.PplBlocks.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, "},{"event":"cmd_output","timestamp":1607098337,"output":"returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_"},{"event":"cmd_output","timestamp":1607098337,"output":"index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:"},{"event":"cmd_output","timestamp":1607098337,"output":"17.352 [info] Periodic from module Elixir.Block.Blocks.STMHandler.InitializingState with name Elixi"},{"event":"cmd_output","timestamp":1607098337,"output":"r.Block.Blocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\","},{"event":"cmd_output","timestamp":1607098337,"output":" [\"Block-Blocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"running\", \"done"},{"event":"cmd_output","timestamp":1607098337,"output":"\"], cooling_time_sec: 0, initial_query: Block.Blocks.Model.Blocks, observed_state: \"initializing\", p"},{"event":"cmd_output","timestamp":1607098337,"output":"ublisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, "},{"event":"cmd_output","timestamp":1607098337,"output":":recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098337,"output":"16:12:17.352 [info] Periodic from module Elixir.Block.Blocks.STMHandler.RunningState with name Elix"},{"event":"cmd_output","timestamp":1607098337,"output":"ir.Block.Blocks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"B"},{"event":"cmd_output","timestamp":1607098337,"output":"lock-Blocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"d"},{"event":"cmd_output","timestamp":1607098337,"output":"one\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"running\", pu"},{"event":"cmd_output","timestamp":1607098337,"output":"blisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :"},{"event":"cmd_output","timestamp":1607098337,"output":"recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098337,"output":"6:12:17.352 [info] Periodic from module Elixir.Block.Blocks.STMHandler.StoppingState with name Elix"},{"event":"cmd_output","timestamp":1607098337,"output":"ir.Block.Blocks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\""},{"event":"cmd_output","timestamp":1607098337,"output":"Block-Blocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], co"},{"event":"cmd_output","timestamp":1607098337,"output":"oling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"stopping\", publisher_"},{"event":"cmd_output","timestamp":1607098337,"output":"cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery"},{"event":"cmd_output","timestamp":1607098337,"output":"_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:17."},{"event":"cmd_output","timestamp":1607098337,"output":"353 [info] Periodic from module Elixir.Block.Tasks.STMHandler.PendingState with name Elixir.Block.T"},{"event":"cmd_output","timestamp":1607098337,"output":"asks.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-"},{"event":"cmd_output","timestamp":1607098337,"output":"STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec:"},{"event":"cmd_output","timestamp":1607098337,"output":" 0, initial_query: Block.Tasks.Model.Tasks, observed_state: \"pending\", publisher_cb: :skip, repo: Bl"},{"event":"cmd_output","timestamp":1607098337,"output":"ock.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id, "},{"event":"cmd_output","timestamp":1607098337,"output":":build_request_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:17.35"},{"event":"cmd_output","timestamp":1607098337,"output":"3 [info] Periodic from module Elixir.Block.Tasks.STMHandler.RunningState with name Elixir.Block.Tas"},{"event":"cmd_output","timestamp":1607098337,"output":"ks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-ST"},{"event":"cmd_output","timestamp":1607098337,"output":"MHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling"},{"event":"cmd_output","timestamp":1607098337,"output":"_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"running\", publisher_cb: :ski"},{"event":"cmd_output","timestamp":1607098337,"output":"p, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, "},{"event":"cmd_output","timestamp":1607098337,"output":":block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:17.353 [info]"},{"event":"cmd_output","timestamp":1607098337,"output":" Periodic from module Elixir.Block.Tasks.STMHandler.StoppingState with name Elixir.Block.Tasks.STMH"},{"event":"cmd_output","timestamp":1607098337,"output":"andler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandl"},{"event":"cmd_output","timestamp":1607098337,"output":"er-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, i"},{"event":"cmd_output","timestamp":1607098337,"output":"nitial_query: Block.Tasks.Model.Tasks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block."},{"event":"cmd_output","timestamp":1607098337,"output":"EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], sch"},{"event":"cmd_output","timestamp":1607098337,"output":"ema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:17.465 [info] ppl_id: e2af7"},{"event":"cmd_output","timestamp":1607098337,"output":"788-ae99-44aa-bfd6-4348e961560a, type: PplRequests, event: persisted source_args for pipeline: e2af7"},{"event":"cmd_output","timestamp":1607098337,"output":"788-ae99-44aa-bfd6-4348e961560a, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_sour"},{"event":"cmd_output","timestamp":1607098337,"output":"ce/2(L89), \n\u001b[0m\u001b[22m\n16:12:17.476 [info] ppl_id: e2af7788-ae99-44aa-bfd6-4348e961560a, type: Ppl"},{"event":"cmd_output","timestamp":1607098337,"output":"SubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl"},{"event":"cmd_output","timestamp":1607098337,"output":".log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:17.504 [info] ppl_id: e2af7788-ae99-44aa-bfd6-4348e961"},{"event":"cmd_output","timestamp":1607098337,"output":"560a, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098337,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:17.541 [info] ppl_id: e2af7788-ae99"},{"event":"cmd_output","timestamp":1607098337,"output":"-44aa-bfd6-4348e961560a, type: PplRequests, event: persisted definition for request with request_tok"},{"event":"cmd_output","timestamp":1607098337,"output":"en: c7725675-21a5-4706-b235-30358ce3ef68, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.in"},{"event":"cmd_output","timestamp":1607098337,"output":"sert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:17.547 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Q"},{"event":"cmd_output","timestamp":1607098337,"output":"ueues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:12:17.544594"},{"event":"cmd_output","timestamp":1607098337,"output":"], name: \"master-.semaphore/semaphore.yml\", organization_id: \"56a9a678-a4d2-45c6-90a5-c3791b8f8836\","},{"event":"cmd_output","timestamp":1607098337,"output":" project_id: \"123\", queue_id: \"37d744b4-2320-44d2-9368-29092dc72969\", scope: \"project\", updated_at: "},{"event":"cmd_output","timestamp":1607098337,"output":"~N[2020-12-04 16:12:17.544608], user_generated: false}}\n\u001b[0m\u001b[22m\n16:12:17.553 [info] event: crea"},{"event":"cmd_output","timestamp":1607098337,"output":"ted, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:"},{"event":"cmd_output","timestamp":1607098337,"output":"17.553 [info] ppl_id: e2af7788-ae99-44aa-bfd6-4348e961560a, type: PplBlocks, block_index: 0, state:"},{"event":"cmd_output","timestamp":1607098337,"output":" initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularI"},{"event":"cmd_output","timestamp":1607098337,"output":"nitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:17.556 [info] ppl_id: e2af7788-ae99-44aa-bfd6-4348e961"},{"event":"cmd_output","timestamp":1607098337,"output":"560a, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098337,"output":"gin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:17.574 [info] ppl_id: e2af7"},{"event":"cmd_output","timestamp":1607098337,"output":"788-ae99-44aa-bfd6-4348e961560a, type: PplBlocks, block_index: 0, state: waiting, event: exit_schedu"},{"event":"cmd_output","timestamp":1607098337,"output":"ling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:"},{"event":"cmd_output","timestamp":1607098337,"output":"17.583 [info] ppl_id: e2af7788-ae99-44aa-bfd6-4348e961560a, type: Ppls, state: pending, event: exit"},{"event":"cmd_output","timestamp":1607098337,"output":"_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098337,"output":"\n16:12:17.594 [info] ppl_id: c3f8e7c2-e5ce-43cb-a3aa-1a30f1034996, type: PplRequests, event: persis"},{"event":"cmd_output","timestamp":1607098337,"output":"ted source_args for pipeline: c3f8e7c2-e5ce-43cb-a3aa-1a30f1034996, origin: Elixir.Ppl.PplRequests.M"},{"event":"cmd_output","timestamp":1607098337,"output":"odel.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:17.597 [info] ppl_id: c3f8e7c2-e5c"},{"event":"cmd_output","timestamp":1607098337,"output":"e-43cb-a3aa-1a30f1034996, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count"},{"event":"cmd_output","timestamp":1607098337,"output":": 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:17.603 [info] ppl_i"},{"event":"cmd_output","timestamp":1607098337,"output":"d: e2af7788-ae99-44aa-bfd6-4348e961560a, type: Ppls, state: queuing, event: exit_scheduling, recover"},{"event":"cmd_output","timestamp":1607098337,"output":"y_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:17.615 [info]"},{"event":"cmd_output","timestamp":1607098337,"output":" ppl_id: e2af7788-ae99-44aa-bfd6-4348e961560a, type: Ppls, state: running, event: exit_scheduling, "},{"event":"cmd_output","timestamp":1607098337,"output":"recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:17.626"},{"event":"cmd_output","timestamp":1607098337,"output":" [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"e2af7788-ae99-44aa-bfd6-43"},{"event":"cmd_output","timestamp":1607098337,"output":"48e961560a\"\n\u001b[0m\u001b[22m\n16:12:17.635 [info] block_id: b295e86b-7321-483e-be57-85d97bef13ac, type: B"},{"event":"cmd_output","timestamp":1607098337,"output":"lockRequests, event: persisted block run request from ppl e2af7788-ae99-44aa-bfd6-4348e961560a for b"},{"event":"cmd_output","timestamp":1607098337,"output":"lock 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098337,"output":"m\u001b[22m\n16:12:17.636 [info] ppl_id: c3f8e7c2-e5ce-43cb-a3aa-1a30f1034996, type: PplSubInits, state:"},{"event":"cmd_output","timestamp":1607098337,"output":" regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098337,"output":"hange/1(L90), \n\u001b[0m\u001b[22m\n16:12:17.640 [info] block_id: b295e86b-7321-483e-be57-85d97bef13ac, type"},{"event":"cmd_output","timestamp":1607098337,"output":": Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.M"},{"event":"cmd_output","timestamp":1607098337,"output":"odel.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:17.644 [info] Block 0 of pipeline with id: e2a"},{"event":"cmd_output","timestamp":1607098337,"output":"f7788-ae99-44aa-bfd6-4348e961560a scheduled in block service with id: : \"b295e86b-7321-483e-be57-85d"},{"event":"cmd_output","timestamp":1607098337,"output":"97bef13ac\"\n\u001b[0m\u001b[22m\n16:12:17.646 [info] block_id: b295e86b-7321-483e-be57-85d97bef13ac, type: Bl"},{"event":"cmd_output","timestamp":1607098337,"output":"ockRequests, event: persisted build and sub_ppl details for block_request: b295e86b-7321-483e-be57-8"},{"event":"cmd_output","timestamp":1607098337,"output":"5d97bef13ac, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b["},{"event":"cmd_output","timestamp":1607098337,"output":"0m\u001b[22m\n16:12:17.652 [info] block_id: b295e86b-7321-483e-be57-85d97bef13ac, type: Tasks, state: pe"},{"event":"cmd_output","timestamp":1607098337,"output":"nding, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.a"},{"event":"cmd_output","timestamp":1607098337,"output":"ll_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:17.652 [info] ppl_id: e2af7788-ae99-44aa-bfd6-4348e961560a, type"},{"event":"cmd_output","timestamp":1607098337,"output":": PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098337,"output":"ir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:17.656 [info] block_id: b295e86b-732"},{"event":"cmd_output","timestamp":1607098337,"output":"1-483e-be57-85d97bef13ac, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098337,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:17.695 [info] block_id: b"},{"event":"cmd_output","timestamp":1607098337,"output":"295e86b-7321-483e-be57-85d97bef13ac, type: Tasks, state: running, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098337,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:17.710 [info] p"},{"event":"cmd_output","timestamp":1607098337,"output":"pl_id: 2f0cf62b-c83b-4e58-aaa2-02c8b6dd2695, type: PplRequests, event: persisted source_args for pip"},{"event":"cmd_output","timestamp":1607098337,"output":"eline: 2f0cf62b-c83b-4e58-aaa2-02c8b6dd2695, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries"},{"event":"cmd_output","timestamp":1607098337,"output":".insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:17.711 [info] ppl_id: c3f8e7c2-e5ce-43cb-a3aa-1a30f103499"},{"event":"cmd_output","timestamp":1607098337,"output":"6, type: PplRequests, event: persisted definition for request with request_token: 8acb3345-469b-4d8c"},{"event":"cmd_output","timestamp":1607098337,"output":"-992b-54c5dcd9127a, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76)"},{"event":"cmd_output","timestamp":1607098337,"output":", \n\u001b[0m\u001b[22m\n16:12:17.714 [info] ppl_id: 2f0cf62b-c83b-4e58-aaa2-02c8b6dd2695, type: PplSubInits,"},{"event":"cmd_output","timestamp":1607098337,"output":" state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_stat"},{"event":"cmd_output","timestamp":1607098337,"output":"e_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:17.720 [info] event: created, origin: Elixir.Ppl.PplSubInits.ST"},{"event":"cmd_output","timestamp":1607098337,"output":"MHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:17.721 [info] ppl_id: c3f8e7c2-e5ce-4"},{"event":"cmd_output","timestamp":1607098337,"output":"3cb-a3aa-1a30f1034996, type: PplBlocks, block_index: 0, state: initializing, event: created, recover"},{"event":"cmd_output","timestamp":1607098337,"output":"y_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098337,"output":"\n16:12:17.724 [info] ppl_id: c3f8e7c2-e5ce-43cb-a3aa-1a30f1034996, type: PplSubInits, state: done, "},{"event":"cmd_output","timestamp":1607098337,"output":"result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_"},{"event":"cmd_output","timestamp":1607098337,"output":"change/1(L90), \n\u001b[0m\u001b[22m\n16:12:17.735 [info] ppl_id: c3f8e7c2-e5ce-43cb-a3aa-1a30f1034996, type:"},{"event":"cmd_output","timestamp":1607098337,"output":" PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098337,"output":"r.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:17.739 [info] ppl_id: c3f8e7c2-e5ce-4"},{"event":"cmd_output","timestamp":1607098337,"output":"3cb-a3aa-1a30f1034996, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098337,"output":": Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:17.750 [info] ppl_id: c3f8e7c2"},{"event":"cmd_output","timestamp":1607098337,"output":"-e5ce-43cb-a3aa-1a30f1034996, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098337,"output":" origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:17.760 [info] ppl_id: 2"},{"event":"cmd_output","timestamp":1607098337,"output":"f0cf62b-c83b-4e58-aaa2-02c8b6dd2695, type: PplSubInits, state: regular_init, event: exit_scheduling,"},{"event":"cmd_output","timestamp":1607098337,"output":" recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:17.79"},{"event":"cmd_output","timestamp":1607098337,"output":"6 [info] block_id: b295e86b-7321-483e-be57-85d97bef13ac, type: Tasks, state: done, event: exit_sche"},{"event":"cmd_output","timestamp":1607098337,"output":"duling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098337,"output":"2:17.808 [info] block_id: b295e86b-7321-483e-be57-85d97bef13ac, type: Blocks, state: done, event: e"},{"event":"cmd_output","timestamp":1607098337,"output":"xit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098337,"output":"2m\n16:12:17.823 [info] ppl_id: 2f0cf62b-c83b-4e58-aaa2-02c8b6dd2695, type: PplRequests, event: per"},{"event":"cmd_output","timestamp":1607098337,"output":"sisted definition for request with request_token: aaa8e655-e5c7-4034-875a-530342fad49b, origin: Elix"},{"event":"cmd_output","timestamp":1607098337,"output":"ir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:17.826 [inf"},{"event":"cmd_output","timestamp":1607098337,"output":"o] ppl_id: e2af7788-ae99-44aa-bfd6-4348e961560a, block_id: b295e86b-7321-483e-be57-85d97bef13ac, ty"},{"event":"cmd_output","timestamp":1607098337,"output":"pe: PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: "},{"event":"cmd_output","timestamp":1607098337,"output":"0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:17.834 [info] Queue p"},{"event":"cmd_output","timestamp":1607098337,"output":"ersisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserte"},{"event":"cmd_output","timestamp":1607098337,"output":"d_at: ~N[2020-12-04 16:12:17.828728], name: \"master-.semaphore/semaphore.yml\", organization_id: \"bc9"},{"event":"cmd_output","timestamp":1607098337,"output":"6d64b-11cc-4b36-be9b-26d303a90c9d\", project_id: \"456\", queue_id: \"d2a05725-2316-42aa-b9ea-5048cb2ac4"},{"event":"cmd_output","timestamp":1607098337,"output":"89\", scope: \"project\", updated_at: ~N[2020-12-04 16:12:17.828740], user_generated: false}}\n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098337,"output":"m\n16:12:17.841 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.a"},{"event":"cmd_output","timestamp":1607098337,"output":"ll_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:17.841 [info] ppl_id: 2f0cf62b-c83b-4e58-aaa2-02c8b6dd2695, type"},{"event":"cmd_output","timestamp":1607098337,"output":": PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098337,"output":"Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:17.841 [info] ppl_i"},{"event":"cmd_output","timestamp":1607098337,"output":"d: 96e3308f-e03c-414b-895d-869eee827c80, type: PplRequests, event: persisted source_args for pipelin"},{"event":"cmd_output","timestamp":1607098337,"output":"e: 96e3308f-e03c-414b-895d-869eee827c80, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.ins"},{"event":"cmd_output","timestamp":1607098337,"output":"ert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:17.845 [info] ppl_id: 2f0cf62b-c83b-4e58-aaa2-02c8b6dd2695, t"},{"event":"cmd_output","timestamp":1607098337,"output":"ype: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098337,"output":"ixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:17.850 [info] ppl_id: 96e3308f-e03"},{"event":"cmd_output","timestamp":1607098337,"output":"c-414b-895d-869eee827c80, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count"},{"event":"cmd_output","timestamp":1607098337,"output":": 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:17.853 [info] ppl_i"},{"event":"cmd_output","timestamp":1607098337,"output":"d: e2af7788-ae99-44aa-bfd6-4348e961560a, type: Ppls, state: done, result: passed, event: exit_schedu"},{"event":"cmd_output","timestamp":1607098337,"output":"ling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:"},{"event":"cmd_output","timestamp":1607098337,"output":"17.864 [info] ppl_id: 2f0cf62b-c83b-4e58-aaa2-02c8b6dd2695, type: PplBlocks, block_index: 0, state:"},{"event":"cmd_output","timestamp":1607098337,"output":" waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change"},{"event":"cmd_output","timestamp":1607098337,"output":"/1(L90), \n\u001b[0m\u001b[22m\n16:12:17.866 [info] ppl_id: 2f0cf62b-c83b-4e58-aaa2-02c8b6dd2695, type: Ppls,"},{"event":"cmd_output","timestamp":1607098337,"output":" state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state"},{"event":"cmd_output","timestamp":1607098337,"output":"_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:17.879 [info] ppl_id: 2f0cf62b-c83b-4e58-aaa2-02c8b6dd2695, type"},{"event":"cmd_output","timestamp":1607098337,"output":": Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.lo"},{"event":"cmd_output","timestamp":1607098337,"output":"g_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:17.895 [info] ppl_id: 96e3308f-e03c-414b-895d-869eee827c8"},{"event":"cmd_output","timestamp":1607098337,"output":"0, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098337,"output":".Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:17.903 [info] ppl_id: c3f8e7c2-e5ce-43"},{"event":"cmd_output","timestamp":1607098337,"output":"cb-a3aa-1a30f1034996, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098337,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:17.913 [info] PplBlocks Waiting"},{"event":"cmd_output","timestamp":1607098337,"output":"State STM is scheduling block 0 from pipeline: \"c3f8e7c2-e5ce-43cb-a3aa-1a30f1034996\"\n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098337,"output":":12:17.932 [info] block_id: cff75dec-5302-4708-82a6-006ae7c1df51, type: BlockRequests, event: persi"},{"event":"cmd_output","timestamp":1607098337,"output":"sted block run request from ppl c3f8e7c2-e5ce-43cb-a3aa-1a30f1034996 for block 0, origin: Elixir.Blo"},{"event":"cmd_output","timestamp":1607098337,"output":"ck.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:17.937 [info"},{"event":"cmd_output","timestamp":1607098337,"output":"] block_id: cff75dec-5302-4708-82a6-006ae7c1df51, type: Blocks, state: initializing, event: initial"},{"event":"cmd_output","timestamp":1607098337,"output":"izing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098337,"output":"\n16:12:17.946 [info] Block 0 of pipeline with id: c3f8e7c2-e5ce-43cb-a3aa-1a30f1034996 scheduled i"},{"event":"cmd_output","timestamp":1607098337,"output":"n block service with id: : \"cff75dec-5302-4708-82a6-006ae7c1df51\"\n\u001b[0m\u001b[22m\n16:12:17.946 [info] p"},{"event":"cmd_output","timestamp":1607098337,"output":"pl_id: 2f0cf62b-c83b-4e58-aaa2-02c8b6dd2695, type: Ppls, state: running, event: exit_scheduling, rec"},{"event":"cmd_output","timestamp":1607098337,"output":"overy_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:17.951 [i"},{"event":"cmd_output","timestamp":1607098337,"output":"nfo] block_id: cff75dec-5302-4708-82a6-006ae7c1df51, type: BlockRequests, event: persisted build an"},{"event":"cmd_output","timestamp":1607098337,"output":"d sub_ppl details for block_request: cff75dec-5302-4708-82a6-006ae7c1df51, origin: Elixir.Block.Bloc"},{"event":"cmd_output","timestamp":1607098337,"output":"kRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:17.953 [info] ppl_id: "},{"event":"cmd_output","timestamp":1607098337,"output":"c3f8e7c2-e5ce-43cb-a3aa-1a30f1034996, type: PplBlocks, block_index: 0, state: running, event: exit_s"},{"event":"cmd_output","timestamp":1607098337,"output":"cheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098337,"output":"6:12:17.956 [info] block_id: cff75dec-5302-4708-82a6-006ae7c1df51, type: Tasks, state: pending, eve"},{"event":"cmd_output","timestamp":1607098337,"output":"nt: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L"},{"event":"cmd_output","timestamp":1607098337,"output":"167), \n\u001b[0m\u001b[22m\n16:12:17.964 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeli"},{"event":"cmd_output","timestamp":1607098337,"output":"ne: \"2f0cf62b-c83b-4e58-aaa2-02c8b6dd2695\"\n\u001b[0m\u001b[22m\n16:12:17.969 [info] block_id: cff75dec-5302-"},{"event":"cmd_output","timestamp":1607098337,"output":"4708-82a6-006ae7c1df51, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098337,"output":"gin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:17.976 [info] ppl_id: c55e8"},{"event":"cmd_output","timestamp":1607098337,"output":"4f0-57d9-48fc-9148-d94261b935e1, type: PplRequests, event: persisted source_args for pipeline: c55e8"},{"event":"cmd_output","timestamp":1607098337,"output":"4f0-57d9-48fc-9148-d94261b935e1, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_sour"},{"event":"cmd_output","timestamp":1607098337,"output":"ce/2(L89), \n\u001b[0m\u001b[22m\n16:12:17.978 [info] ppl_id: 96e3308f-e03c-414b-895d-869eee827c80, type: Ppl"},{"event":"cmd_output","timestamp":1607098337,"output":"Requests, event: persisted definition for request with request_token: c5e775d9-ec92-47ba-b7ba-38f331"},{"event":"cmd_output","timestamp":1607098337,"output":"6abcbd, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098337,"output":"m\n16:12:17.981 [info] block_id: 589171b4-1488-4d79-a030-26899030bc74, type: BlockRequests, event: "},{"event":"cmd_output","timestamp":1607098337,"output":"persisted block run request from ppl 2f0cf62b-c83b-4e58-aaa2-02c8b6dd2695 for block 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098337,"output":"r.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:17.984 "},{"event":"cmd_output","timestamp":1607098337,"output":"[info] ppl_id: c55e84f0-57d9-48fc-9148-d94261b935e1, type: PplSubInits, state: fetching, event: exi"},{"event":"cmd_output","timestamp":1607098337,"output":"t_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098337,"output":"\n16:12:17.988 [info] block_id: 589171b4-1488-4d79-a030-26899030bc74, type: Blocks, state: initiali"},{"event":"cmd_output","timestamp":1607098337,"output":"zing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert"},{"event":"cmd_output","timestamp":1607098338,"output":"/1(L43), \n\u001b[0m\u001b[22m\n16:12:18.005 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler"},{"event":"cmd_output","timestamp":1607098338,"output":".RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:18.005 [info] ppl_id: 96e3308f-e03c-414b-895d"},{"event":"cmd_output","timestamp":1607098338,"output":"-869eee827c80, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count:"},{"event":"cmd_output","timestamp":1607098338,"output":" 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:1"},{"event":"cmd_output","timestamp":1607098338,"output":"8.006 [info] Block 0 of pipeline with id: 2f0cf62b-c83b-4e58-aaa2-02c8b6dd2695 scheduled in block s"},{"event":"cmd_output","timestamp":1607098338,"output":"ervice with id: : \"589171b4-1488-4d79-a030-26899030bc74\"\n\u001b[0m\u001b[22m\n16:12:18.013 [info] ppl_id: 2f"},{"event":"cmd_output","timestamp":1607098338,"output":"0cf62b-c83b-4e58-aaa2-02c8b6dd2695, type: PplBlocks, block_index: 0, state: running, event: exit_sch"},{"event":"cmd_output","timestamp":1607098338,"output":"eduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098338,"output":"12:18.019 [info] ppl_id: 96e3308f-e03c-414b-895d-869eee827c80, type: PplSubInits, state: done, resu"},{"event":"cmd_output","timestamp":1607098338,"output":"lt: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chan"},{"event":"cmd_output","timestamp":1607098338,"output":"ge/1(L90), \n\u001b[0m\u001b[22m\n16:12:18.019 [info] block_id: 589171b4-1488-4d79-a030-26899030bc74, type: B"},{"event":"cmd_output","timestamp":1607098338,"output":"lockRequests, event: persisted build and sub_ppl details for block_request: 589171b4-1488-4d79-a030-"},{"event":"cmd_output","timestamp":1607098338,"output":"26899030bc74, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b"},{"event":"cmd_output","timestamp":1607098338,"output":"[0m\u001b[22m\n16:12:18.030 [info] block_id: 589171b4-1488-4d79-a030-26899030bc74, type: Tasks, state: p"},{"event":"cmd_output","timestamp":1607098338,"output":"ending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState."},{"event":"cmd_output","timestamp":1607098338,"output":"all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:18.034 [info] block_id: cff75dec-5302-4708-82a6-006ae7c1df51, t"},{"event":"cmd_output","timestamp":1607098338,"output":"ype: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Imp"},{"event":"cmd_output","timestamp":1607098338,"output":"l.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:18.037 [info] block_id: 589171b4-1488-4d79-a030-26899"},{"event":"cmd_output","timestamp":1607098338,"output":"030bc74, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loo"},{"event":"cmd_output","timestamp":1607098338,"output":"per.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:18.042 [info] ppl_id: 96e3308f-e03c-414b-8"},{"event":"cmd_output","timestamp":1607098338,"output":"95d-869eee827c80, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_"},{"event":"cmd_output","timestamp":1607098338,"output":"count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:18.047 [info] "},{"event":"cmd_output","timestamp":1607098338,"output":"ppl_id: 96e3308f-e03c-414b-895d-869eee827c80, type: Ppls, state: pending, event: exit_scheduling, re"},{"event":"cmd_output","timestamp":1607098338,"output":"covery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:18.053 ["},{"event":"cmd_output","timestamp":1607098338,"output":"info] ppl_id: c55e84f0-57d9-48fc-9148-d94261b935e1, type: PplSubInits, state: regular_init, event: "},{"event":"cmd_output","timestamp":1607098338,"output":"exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098338,"output":"22m\n16:12:18.074 [info] block_id: 589171b4-1488-4d79-a030-26899030bc74, type: Tasks, state: runnin"},{"event":"cmd_output","timestamp":1607098338,"output":"g, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90)"},{"event":"cmd_output","timestamp":1607098338,"output":", \n\u001b[0m\u001b[22m\n16:12:18.081 [info] ppl_id: 96e3308f-e03c-414b-895d-869eee827c80, type: Ppls, state:"},{"event":"cmd_output","timestamp":1607098338,"output":" queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change"},{"event":"cmd_output","timestamp":1607098338,"output":"/1(L90), \n\u001b[0m\u001b[22m\n16:12:18.100 [info] ppl_id: 834aee84-245e-4b9d-ac4b-cb6c248fa413, type: PplRe"},{"event":"cmd_output","timestamp":1607098338,"output":"quests, event: persisted source_args for pipeline: 834aee84-245e-4b9d-ac4b-cb6c248fa413, origin: Eli"},{"event":"cmd_output","timestamp":1607098338,"output":"xir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:18.105 [info] "},{"event":"cmd_output","timestamp":1607098338,"output":" ppl_id: 834aee84-245e-4b9d-ac4b-cb6c248fa413, type: PplSubInits, state: fetching, event: exit_sched"},{"event":"cmd_output","timestamp":1607098338,"output":"uling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12"},{"event":"cmd_output","timestamp":1607098338,"output":":18.117 [info] ppl_id: c55e84f0-57d9-48fc-9148-d94261b935e1, type: PplRequests, event: persisted de"},{"event":"cmd_output","timestamp":1607098338,"output":"finition for request with request_token: ed2ad020-e76b-40f3-aee6-6cbb40e0511d, origin: Elixir.Ppl.Pp"},{"event":"cmd_output","timestamp":1607098338,"output":"lRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:18.122 [info] Queue"},{"event":"cmd_output","timestamp":1607098338,"output":" persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inser"},{"event":"cmd_output","timestamp":1607098338,"output":"ted_at: ~N[2020-12-04 16:12:18.119898], name: \"dev-.semaphore/semaphore.yml\", organization_id: \"7719"},{"event":"cmd_output","timestamp":1607098338,"output":"9270-80fd-4070-a4b2-c6e8945476f7\", project_id: \"123\", queue_id: \"24329ca8-267b-48c9-873c-f4e577f7a11"},{"event":"cmd_output","timestamp":1607098338,"output":"2\", scope: \"project\", updated_at: ~N[2020-12-04 16:12:18.119912], user_generated: false}}\n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098338,"output":"\n16:12:18.130 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.al"},{"event":"cmd_output","timestamp":1607098338,"output":"l_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:18.130 [info] ppl_id: c55e84f0-57d9-48fc-9148-d94261b935e1, type:"},{"event":"cmd_output","timestamp":1607098338,"output":" PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.P"},{"event":"cmd_output","timestamp":1607098338,"output":"pl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:18.133 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098338,"output":": c55e84f0-57d9-48fc-9148-d94261b935e1, type: PplSubInits, state: done, result: passed, event: exit_"},{"event":"cmd_output","timestamp":1607098338,"output":"scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098338,"output":"16:12:18.154 [info] ppl_id: 834aee84-245e-4b9d-ac4b-cb6c248fa413, type: PplSubInits, state: regular"},{"event":"cmd_output","timestamp":1607098338,"output":"_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1("},{"event":"cmd_output","timestamp":1607098338,"output":"L90), \n\u001b[0m\u001b[22m\n16:12:18.158 [info] ppl_id: c55e84f0-57d9-48fc-9148-d94261b935e1, type: PplBlock"},{"event":"cmd_output","timestamp":1607098338,"output":"s, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper."},{"event":"cmd_output","timestamp":1607098338,"output":"STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:18.158 [info] block_id: cff75dec-5302-4708-82a"},{"event":"cmd_output","timestamp":1607098338,"output":"6-006ae7c1df51, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098338,"output":"Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:18.161 [info] ppl_id: c55e84f0-57d9-48f"},{"event":"cmd_output","timestamp":1607098338,"output":"c-9148-d94261b935e1, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098338,"output":"Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:18.174 [info] block_id: cff75dec"},{"event":"cmd_output","timestamp":1607098338,"output":"-5302-4708-82a6-006ae7c1df51, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098338,"output":"origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:18.184 [info] ppl_id: c5"},{"event":"cmd_output","timestamp":1607098338,"output":"5e84f0-57d9-48fc-9148-d94261b935e1, type: Ppls, state: queuing, event: exit_scheduling, recovery_cou"},{"event":"cmd_output","timestamp":1607098338,"output":"nt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:18.200 [info] ppl"},{"event":"cmd_output","timestamp":1607098338,"output":"_id: c3f8e7c2-e5ce-43cb-a3aa-1a30f1034996, block_id: cff75dec-5302-4708-82a6-006ae7c1df51, type: Ppl"},{"event":"cmd_output","timestamp":1607098338,"output":"Blocks, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098338,"output":"in: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:18.216 [info] ppl_id: c55e84"},{"event":"cmd_output","timestamp":1607098338,"output":"f0-57d9-48fc-9148-d94261b935e1, type: Ppls, state: running, event: exit_scheduling, recovery_count: "},{"event":"cmd_output","timestamp":1607098338,"output":"0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:18.221 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098338,"output":" 834aee84-245e-4b9d-ac4b-cb6c248fa413, type: PplRequests, event: persisted definition for request wi"},{"event":"cmd_output","timestamp":1607098338,"output":"th request_token: d9e636a0-d1e6-4028-8e62-40f827365041, origin: Elixir.Ppl.PplRequests.Model.PplRequ"},{"event":"cmd_output","timestamp":1607098338,"output":"estsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:18.221 [info] PplBlocks WaitingState STM i"},{"event":"cmd_output","timestamp":1607098338,"output":"s scheduling block 0 from pipeline: \"c55e84f0-57d9-48fc-9148-d94261b935e1\"\n\u001b[0m\u001b[22m\n16:12:18.232 "},{"event":"cmd_output","timestamp":1607098338,"output":"[info] ppl_id: 0a77bc14-048a-4583-99b8-90b634b60238, type: PplRequests, event: persisted source_arg"},{"event":"cmd_output","timestamp":1607098338,"output":"s for pipeline: 0a77bc14-048a-4583-99b8-90b634b60238, origin: Elixir.Ppl.PplRequests.Model.PplReques"},{"event":"cmd_output","timestamp":1607098338,"output":"tsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:18.233 [info] event: created, origin: Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098338,"output":".PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:18.233 [info] ppl_id: "},{"event":"cmd_output","timestamp":1607098338,"output":"834aee84-245e-4b9d-ac4b-cb6c248fa413, type: PplBlocks, block_index: 0, state: initializing, event: c"},{"event":"cmd_output","timestamp":1607098338,"output":"reated, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105"},{"event":"cmd_output","timestamp":1607098338,"output":"), \n\u001b[0m\u001b[22m\n16:12:18.234 [info] block_id: d4f0650d-b021-42a5-adfe-3c2deba2eebb, type: BlockRequ"},{"event":"cmd_output","timestamp":1607098338,"output":"ests, event: persisted block run request from ppl c55e84f0-57d9-48fc-9148-d94261b935e1 for block 0, "},{"event":"cmd_output","timestamp":1607098338,"output":"origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098338,"output":"16:12:18.238 [info] ppl_id: 834aee84-245e-4b9d-ac4b-cb6c248fa413, type: PplSubInits, state: done, r"},{"event":"cmd_output","timestamp":1607098338,"output":"esult: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098338,"output":"hange/1(L90), \n\u001b[0m\u001b[22m\n16:12:18.240 [info] block_id: d4f0650d-b021-42a5-adfe-3c2deba2eebb, type"},{"event":"cmd_output","timestamp":1607098338,"output":": Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.M"},{"event":"cmd_output","timestamp":1607098338,"output":"odel.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:18.242 [info] ppl_id: 0a77bc14-048a-4583-99b8-"},{"event":"cmd_output","timestamp":1607098338,"output":"90b634b60238, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098338,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:18.244 [info] Block 0 of pipeli"},{"event":"cmd_output","timestamp":1607098338,"output":"ne with id: c55e84f0-57d9-48fc-9148-d94261b935e1 scheduled in block service with id: : \"d4f0650d-b02"},{"event":"cmd_output","timestamp":1607098338,"output":"1-42a5-adfe-3c2deba2eebb\"\n\u001b[0m\u001b[22m\n16:12:18.249 [info] ppl_id: c55e84f0-57d9-48fc-9148-d94261b93"},{"event":"cmd_output","timestamp":1607098338,"output":"5e1, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098338,"output":"gin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:18.260 [info] ppl_id: c3f8e"},{"event":"cmd_output","timestamp":1607098338,"output":"7c2-e5ce-43cb-a3aa-1a30f1034996, type: Ppls, state: done, result: passed, event: exit_scheduling, re"},{"event":"cmd_output","timestamp":1607098338,"output":"covery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:18.261 ["},{"event":"cmd_output","timestamp":1607098338,"output":"info] block_id: d4f0650d-b021-42a5-adfe-3c2deba2eebb, type: BlockRequests, event: persisted build a"},{"event":"cmd_output","timestamp":1607098338,"output":"nd sub_ppl details for block_request: d4f0650d-b021-42a5-adfe-3c2deba2eebb, origin: Elixir.Block.Blo"},{"event":"cmd_output","timestamp":1607098338,"output":"ckRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:18.263 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098338,"output":" 834aee84-245e-4b9d-ac4b-cb6c248fa413, type: Ppls, state: pending, event: exit_scheduling, recovery_"},{"event":"cmd_output","timestamp":1607098338,"output":"count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:18.262 [info] "},{"event":"cmd_output","timestamp":1607098338,"output":"ppl_id: 834aee84-245e-4b9d-ac4b-cb6c248fa413, type: PplBlocks, block_index: 0, state: waiting, event"},{"event":"cmd_output","timestamp":1607098338,"output":": exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098338,"output":"\u001b[22m\n16:12:18.273 [info] block_id: d4f0650d-b021-42a5-adfe-3c2deba2eebb, type: Tasks, state: pend"},{"event":"cmd_output","timestamp":1607098338,"output":"ing, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all"},{"event":"cmd_output","timestamp":1607098338,"output":"_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:18.287 [info] block_id: d4f0650d-b021-42a5-adfe-3c2deba2eebb, type"},{"event":"cmd_output","timestamp":1607098338,"output":": Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl."},{"event":"cmd_output","timestamp":1607098338,"output":"log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:18.296 [info] block_id: 589171b4-1488-4d79-a030-2689903"},{"event":"cmd_output","timestamp":1607098338,"output":"0bc74, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.ST"},{"event":"cmd_output","timestamp":1607098338,"output":"M.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:18.304 [info] ppl_id: 834aee84-245e-4b9d-ac4b-cb"},{"event":"cmd_output","timestamp":1607098338,"output":"6c248fa413, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Lo"},{"event":"cmd_output","timestamp":1607098338,"output":"oper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:18.310 [info] ppl_id: 0a77bc14-048a-4583-"},{"event":"cmd_output","timestamp":1607098338,"output":"99b8-90b634b60238, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0"},{"event":"cmd_output","timestamp":1607098338,"output":", origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:18.321 [info] block_id"},{"event":"cmd_output","timestamp":1607098338,"output":": 589171b4-1488-4d79-a030-26899030bc74, type: Blocks, state: done, event: exit_scheduling, recovery_"},{"event":"cmd_output","timestamp":1607098338,"output":"count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:18.331 [info] "},{"event":"cmd_output","timestamp":1607098338,"output":"block_id: d4f0650d-b021-42a5-adfe-3c2deba2eebb, type: Tasks, state: running, event: exit_scheduling,"},{"event":"cmd_output","timestamp":1607098338,"output":" recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:18.34"},{"event":"cmd_output","timestamp":1607098338,"output":"8 [info] ppl_id: 2f0cf62b-c83b-4e58-aaa2-02c8b6dd2695, block_id: 589171b4-1488-4d79-a030-26899030bc"},{"event":"cmd_output","timestamp":1607098338,"output":"74, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098338,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:18.369 [info] p"},{"event":"cmd_output","timestamp":1607098338,"output":"pl_id: da6fd73c-c139-41fa-b172-82bac129f984, type: PplRequests, event: persisted source_args for pip"},{"event":"cmd_output","timestamp":1607098338,"output":"eline: da6fd73c-c139-41fa-b172-82bac129f984, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries"},{"event":"cmd_output","timestamp":1607098338,"output":".insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:18.373 [info] ppl_id: da6fd73c-c139-41fa-b172-82bac129f98"},{"event":"cmd_output","timestamp":1607098338,"output":"4, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loo"},{"event":"cmd_output","timestamp":1607098338,"output":"per.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:18.377 [info] ppl_id: 0a77bc14-048a-4583-9"},{"event":"cmd_output","timestamp":1607098338,"output":"9b8-90b634b60238, type: PplRequests, event: persisted definition for request with request_token: 466"},{"event":"cmd_output","timestamp":1607098338,"output":"b3b1e-3538-4f8e-bf2e-b4f8c7eec577, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_de"},{"event":"cmd_output","timestamp":1607098338,"output":"finition/3(L76), \n\u001b[0m\u001b[22m\n16:12:18.383 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{_"},{"event":"cmd_output","timestamp":1607098338,"output":"_meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:12:18.380519], name"},{"event":"cmd_output","timestamp":1607098338,"output":": \"dev-.semaphore/semaphore.yml\", organization_id: \"6baebdd5-bba9-429d-9dac-457329dc6945\", project_i"},{"event":"cmd_output","timestamp":1607098338,"output":"d: \"456\", queue_id: \"fad717d3-24e3-4b87-9465-4cb7ecdedbe9\", scope: \"project\", updated_at: ~N[2020-12"},{"event":"cmd_output","timestamp":1607098338,"output":"-04 16:12:18.380530], user_generated: false}}\n\u001b[0m\u001b[22m\n16:12:18.388 [info] ppl_id: 2f0cf62b-c83b"},{"event":"cmd_output","timestamp":1607098338,"output":"-4e58-aaa2-02c8b6dd2695, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098338,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:18.391 [info] e"},{"event":"cmd_output","timestamp":1607098338,"output":"vent: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098338,"output":"2m\n16:12:18.391 [info] ppl_id: 0a77bc14-048a-4583-99b8-90b634b60238, type: PplBlocks, block_index:"},{"event":"cmd_output","timestamp":1607098338,"output":" 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandle"},{"event":"cmd_output","timestamp":1607098338,"output":"r.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:18.397 [info] ppl_id: 0a77bc14-048a-4583-99b"},{"event":"cmd_output","timestamp":1607098338,"output":"8-90b634b60238, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_cou"},{"event":"cmd_output","timestamp":1607098338,"output":"nt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:18.425 [info] ppl"},{"event":"cmd_output","timestamp":1607098338,"output":"_id: 96e3308f-e03c-414b-895d-869eee827c80, type: Ppls, state: running, event: exit_scheduling, recov"},{"event":"cmd_output","timestamp":1607098338,"output":"ery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:18.430 [inf"},{"event":"cmd_output","timestamp":1607098338,"output":"o] ppl_id: 0a77bc14-048a-4583-99b8-90b634b60238, type: PplBlocks, block_index: 0, state: waiting, e"},{"event":"cmd_output","timestamp":1607098338,"output":"vent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n"},{"event":"cmd_output","timestamp":1607098338,"output":"\u001b[0m\u001b[22m\n16:12:18.432 [info] block_id: d4f0650d-b021-42a5-adfe-3c2deba2eebb, type: Tasks, state: "},{"event":"cmd_output","timestamp":1607098338,"output":"done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098338,"output":"90), \n\u001b[0m\u001b[22m\n16:12:18.439 [info] PplBlocks WaitingState STM is scheduling block 0 from pipelin"},{"event":"cmd_output","timestamp":1607098338,"output":"e: \"96e3308f-e03c-414b-895d-869eee827c80\"\n\u001b[0m\u001b[22m\n16:12:18.439 [info] ppl_id: 0a77bc14-048a-458"},{"event":"cmd_output","timestamp":1607098338,"output":"3-99b8-90b634b60238, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098338,"output":"Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:18.445 [info] ppl_id: da6fd73c-c"},{"event":"cmd_output","timestamp":1607098338,"output":"139-41fa-b172-82bac129f984, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery"},{"event":"cmd_output","timestamp":1607098338,"output":"_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:18.456 [info] "},{"event":"cmd_output","timestamp":1607098338,"output":" block_id: d4f0650d-b021-42a5-adfe-3c2deba2eebb, type: Blocks, state: done, event: exit_scheduling, "},{"event":"cmd_output","timestamp":1607098338,"output":"recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:18.459"},{"event":"cmd_output","timestamp":1607098338,"output":" [info] block_id: c529fad0-126c-4cff-9b32-9d23208060ef, type: BlockRequests, event: persisted block"},{"event":"cmd_output","timestamp":1607098338,"output":" run request from ppl 96e3308f-e03c-414b-895d-869eee827c80 for block 0, origin: Elixir.Block.BlockRe"},{"event":"cmd_output","timestamp":1607098338,"output":"quests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:18.466 [info] block_i"},{"event":"cmd_output","timestamp":1607098338,"output":"d: c529fad0-126c-4cff-9b32-9d23208060ef, type: Blocks, state: initializing, event: initializing, rec"},{"event":"cmd_output","timestamp":1607098338,"output":"overy_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:18"},{"event":"cmd_output","timestamp":1607098338,"output":".468 [info] ppl_id: 0a77bc14-048a-4583-99b8-90b634b60238, type: Ppls, state: queuing, event: exit_s"},{"event":"cmd_output","timestamp":1607098338,"output":"cheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098338,"output":"6:12:18.475 [info] Block 0 of pipeline with id: 96e3308f-e03c-414b-895d-869eee827c80 scheduled in b"},{"event":"cmd_output","timestamp":1607098338,"output":"lock service with id: : \"c529fad0-126c-4cff-9b32-9d23208060ef\"\n\u001b[0m\u001b[22m\n16:12:18.486 [info] ppl_"},{"event":"cmd_output","timestamp":1607098338,"output":"id: c55e84f0-57d9-48fc-9148-d94261b935e1, block_id: d4f0650d-b021-42a5-adfe-3c2deba2eebb, type: PplB"},{"event":"cmd_output","timestamp":1607098338,"output":"locks, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098338,"output":"n: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:18.487 [info] block_id: c529f"},{"event":"cmd_output","timestamp":1607098338,"output":"ad0-126c-4cff-9b32-9d23208060ef, type: BlockRequests, event: persisted build and sub_ppl details for"},{"event":"cmd_output","timestamp":1607098338,"output":" block_request: c529fad0-126c-4cff-9b32-9d23208060ef, origin: Elixir.Block.BlockRequests.Model.Block"},{"event":"cmd_output","timestamp":1607098338,"output":"RequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:18.487 [info] ppl_id: 96e3308f-e03c-414b-89"},{"event":"cmd_output","timestamp":1607098338,"output":"5d-869eee827c80, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098338,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:18.494 [info] b"},{"event":"cmd_output","timestamp":1607098338,"output":"lock_id: c529fad0-126c-4cff-9b32-9d23208060ef, type: Tasks, state: pending, event: created, recovery"},{"event":"cmd_output","timestamp":1607098338,"output":"_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098338,"output":":12:18.501 [info] ppl_id: 0a77bc14-048a-4583-99b8-90b634b60238, type: Ppls, state: running, event: "},{"event":"cmd_output","timestamp":1607098338,"output":"exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098338,"output":"22m\n16:12:18.503 [info] block_id: c529fad0-126c-4cff-9b32-9d23208060ef, type: Blocks, state: runni"},{"event":"cmd_output","timestamp":1607098338,"output":"ng, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90"},{"event":"cmd_output","timestamp":1607098338,"output":"), \n\u001b[0m\u001b[22m\n16:12:18.515 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline:"},{"event":"cmd_output","timestamp":1607098338,"output":" \"0a77bc14-048a-4583-99b8-90b634b60238\"\n\u001b[0m\u001b[22m\n16:12:18.527 [info] ppl_id: c55e84f0-57d9-48fc-"},{"event":"cmd_output","timestamp":1607098338,"output":"9148-d94261b935e1, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: "},{"event":"cmd_output","timestamp":1607098338,"output":"0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:18.532 [info] block_i"},{"event":"cmd_output","timestamp":1607098338,"output":"d: ad8ece2d-defd-404a-b0e6-b5c129e1a552, type: BlockRequests, event: persisted block run request fro"},{"event":"cmd_output","timestamp":1607098338,"output":"m ppl 0a77bc14-048a-4583-99b8-90b634b60238 for block 0, origin: Elixir.Block.BlockRequests.Model.Blo"},{"event":"cmd_output","timestamp":1607098338,"output":"ckRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:18.533 [info] ppl_id: da6fd73c-c139-4"},{"event":"cmd_output","timestamp":1607098338,"output":"1fa-b172-82bac129f984, type: PplRequests, event: persisted definition for request with request_token"},{"event":"cmd_output","timestamp":1607098338,"output":": 2690c32b-84da-4172-b965-a7a692bff524, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.inse"},{"event":"cmd_output","timestamp":1607098338,"output":"rt_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:18.535 [info] block_id: ad8ece2d-defd-404a-b0e6-b5c129e1a5"},{"event":"cmd_output","timestamp":1607098338,"output":"52, type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block."},{"event":"cmd_output","timestamp":1607098338,"output":"Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:18.543 [info] Block 0 of pipeline with"},{"event":"cmd_output","timestamp":1607098338,"output":" id: 0a77bc14-048a-4583-99b8-90b634b60238 scheduled in block service with id: : \"ad8ece2d-defd-404a-"},{"event":"cmd_output","timestamp":1607098338,"output":"b0e6-b5c129e1a552\"\n\u001b[0m\u001b[22m\n16:12:18.550 [info] block_id: ad8ece2d-defd-404a-b0e6-b5c129e1a552, "},{"event":"cmd_output","timestamp":1607098338,"output":"type: BlockRequests, event: persisted build and sub_ppl details for block_request: ad8ece2d-defd-404"},{"event":"cmd_output","timestamp":1607098338,"output":"a-b0e6-b5c129e1a552, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L4"},{"event":"cmd_output","timestamp":1607098338,"output":"1), \n\u001b[0m\u001b[22m\n16:12:18.551 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.Regu"},{"event":"cmd_output","timestamp":1607098338,"output":"larInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:18.551 [info] ppl_id: da6fd73c-c139-41fa-b172-82ba"},{"event":"cmd_output","timestamp":1607098338,"output":"c129f984, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098338,"output":"rigin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:18.555"},{"event":"cmd_output","timestamp":1607098338,"output":" [info] ppl_id: 0a77bc14-048a-4583-99b8-90b634b60238, type: PplBlocks, block_index: 0, state: runni"},{"event":"cmd_output","timestamp":1607098338,"output":"ng, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90"},{"event":"cmd_output","timestamp":1607098338,"output":"), \n\u001b[0m\u001b[22m\n16:12:18.555 [info] ppl_id: da6fd73c-c139-41fa-b172-82bac129f984, type: PplSubInits"},{"event":"cmd_output","timestamp":1607098338,"output":", state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM."},{"event":"cmd_output","timestamp":1607098338,"output":"Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:18.557 [info] block_id: c529fad0-126c-4cff-9b32-9d"},{"event":"cmd_output","timestamp":1607098338,"output":"23208060ef, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098338,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:18.559 [info] block_id: ad8ece2d-defd-40"},{"event":"cmd_output","timestamp":1607098338,"output":"4a-b0e6-b5c129e1a552, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098338,"output":".Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:18.567 [info] block_"},{"event":"cmd_output","timestamp":1607098338,"output":"id: ad8ece2d-defd-404a-b0e6-b5c129e1a552, type: Blocks, state: running, event: exit_scheduling, reco"},{"event":"cmd_output","timestamp":1607098338,"output":"very_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:18.568 [in"},{"event":"cmd_output","timestamp":1607098338,"output":"fo] ppl_id: 834aee84-245e-4b9d-ac4b-cb6c248fa413, type: Ppls, state: running, event: exit_schedulin"},{"event":"cmd_output","timestamp":1607098338,"output":"g, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:18."},{"event":"cmd_output","timestamp":1607098338,"output":"580 [info] ppl_id: da6fd73c-c139-41fa-b172-82bac129f984, type: PplBlocks, block_index: 0, state: wa"},{"event":"cmd_output","timestamp":1607098338,"output":"iting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1("},{"event":"cmd_output","timestamp":1607098338,"output":"L90), \n\u001b[0m\u001b[22m\n16:12:18.583 [info] ppl_id: da6fd73c-c139-41fa-b172-82bac129f984, type: Ppls, st"},{"event":"cmd_output","timestamp":1607098338,"output":"ate: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_ch"},{"event":"cmd_output","timestamp":1607098338,"output":"ange/1(L90), \n\u001b[0m\u001b[22m\n16:12:18.596 [info] PplBlocks WaitingState STM is scheduling block 0 from"},{"event":"cmd_output","timestamp":1607098338,"output":" pipeline: \"834aee84-245e-4b9d-ac4b-cb6c248fa413\"\n\u001b[0m\u001b[22m\n16:12:18.597 [info] block_id: ad8ece2"},{"event":"cmd_output","timestamp":1607098338,"output":"d-defd-404a-b0e6-b5c129e1a552, type: Tasks, state: running, event: exit_scheduling, recovery_count: "},{"event":"cmd_output","timestamp":1607098338,"output":"0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:18.601 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098338,"output":" da6fd73c-c139-41fa-b172-82bac129f984, type: Ppls, state: queuing, event: exit_scheduling, recovery_"},{"event":"cmd_output","timestamp":1607098338,"output":"count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:18.609 [info] "},{"event":"cmd_output","timestamp":1607098338,"output":"block_id: 58d823c3-3ead-4adf-8866-300f85328105, type: BlockRequests, event: persisted block run requ"},{"event":"cmd_output","timestamp":1607098338,"output":"est from ppl 834aee84-245e-4b9d-ac4b-cb6c248fa413 for block 0, origin: Elixir.Block.BlockRequests.Mo"},{"event":"cmd_output","timestamp":1607098338,"output":"del.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:18.612 [info] block_id: 58d823"},{"event":"cmd_output","timestamp":1607098338,"output":"c3-3ead-4adf-8866-300f85328105, type: Blocks, state: initializing, event: initializing, recovery_cou"},{"event":"cmd_output","timestamp":1607098338,"output":"nt: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:18.614 [inf"},{"event":"cmd_output","timestamp":1607098338,"output":"o] Block 0 of pipeline with id: 834aee84-245e-4b9d-ac4b-cb6c248fa413 scheduled in block service wit"},{"event":"cmd_output","timestamp":1607098338,"output":"h id: : \"58d823c3-3ead-4adf-8866-300f85328105\"\n\u001b[0m\u001b[22m\n16:12:18.618 [info] ppl_id: 834aee84-245"},{"event":"cmd_output","timestamp":1607098338,"output":"e-4b9d-ac4b-cb6c248fa413, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, r"},{"event":"cmd_output","timestamp":1607098338,"output":"ecovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:18.622 "},{"event":"cmd_output","timestamp":1607098338,"output":"[info] block_id: 58d823c3-3ead-4adf-8866-300f85328105, type: BlockRequests, event: persisted build "},{"event":"cmd_output","timestamp":1607098338,"output":"and sub_ppl details for block_request: 58d823c3-3ead-4adf-8866-300f85328105, origin: Elixir.Block.Bl"},{"event":"cmd_output","timestamp":1607098338,"output":"ockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:18.625 [info] block_"},{"event":"cmd_output","timestamp":1607098338,"output":"id: 58d823c3-3ead-4adf-8866-300f85328105, type: Tasks, state: pending, event: created, recovery_coun"},{"event":"cmd_output","timestamp":1607098338,"output":"t: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:1"},{"event":"cmd_output","timestamp":1607098338,"output":"8.628 [info] block_id: 58d823c3-3ead-4adf-8866-300f85328105, type: Blocks, state: running, event: e"},{"event":"cmd_output","timestamp":1607098338,"output":"xit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098338,"output":"2m\n16:12:18.652 [info] block_id: 58d823c3-3ead-4adf-8866-300f85328105, type: Tasks, state: running"},{"event":"cmd_output","timestamp":1607098338,"output":", event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90),"},{"event":"cmd_output","timestamp":1607098338,"output":" \n\u001b[0m\u001b[22m\n16:12:18.656 [info] block_id: c529fad0-126c-4cff-9b32-9d23208060ef, type: Tasks, stat"},{"event":"cmd_output","timestamp":1607098338,"output":"e: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/"},{"event":"cmd_output","timestamp":1607098338,"output":"1(L90), \n\u001b[0m\u001b[22m\n16:12:18.665 [info] block_id: c529fad0-126c-4cff-9b32-9d23208060ef, type: Bloc"},{"event":"cmd_output","timestamp":1607098338,"output":"ks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state"},{"event":"cmd_output","timestamp":1607098338,"output":"_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:18.676 [info] ppl_id: 96e3308f-e03c-414b-895d-869eee827c80, bloc"},{"event":"cmd_output","timestamp":1607098338,"output":"k_id: c529fad0-126c-4cff-9b32-9d23208060ef, type: PplBlocks, block_index: 0, state: done, result: pa"},{"event":"cmd_output","timestamp":1607098338,"output":"ssed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098338,"output":"90), \n\u001b[0m\u001b[22m\n16:12:18.691 [info] ppl_id: 96e3308f-e03c-414b-895d-869eee827c80, type: Ppls, sta"},{"event":"cmd_output","timestamp":1607098338,"output":"te: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl."},{"event":"cmd_output","timestamp":1607098338,"output":"log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:18.780 [info] block_id: ad8ece2d-defd-404a-b0e6-b5c129e"},{"event":"cmd_output","timestamp":1607098338,"output":"1a552, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.ST"},{"event":"cmd_output","timestamp":1607098338,"output":"M.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:18.787 [info] block_id: ad8ece2d-defd-404a-b0e6-"},{"event":"cmd_output","timestamp":1607098338,"output":"b5c129e1a552, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098338,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:18.802 [info] ppl_id: 0a77bc14-048a-4583"},{"event":"cmd_output","timestamp":1607098338,"output":"-99b8-90b634b60238, block_id: ad8ece2d-defd-404a-b0e6-b5c129e1a552, type: PplBlocks, block_index: 0,"},{"event":"cmd_output","timestamp":1607098338,"output":" state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.I"},{"event":"cmd_output","timestamp":1607098338,"output":"mpl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:18.816 [info] ppl_id: 0a77bc14-048a-4583-99b8-90b63"},{"event":"cmd_output","timestamp":1607098338,"output":"4b60238, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098338,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:18.897 [info] block_id: 58d823c"},{"event":"cmd_output","timestamp":1607098338,"output":"3-3ead-4adf-8866-300f85328105, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098338,"output":"origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:18.910 [info] block_id: "},{"event":"cmd_output","timestamp":1607098338,"output":"58d823c3-3ead-4adf-8866-300f85328105, type: Blocks, state: done, event: exit_scheduling, recovery_co"},{"event":"cmd_output","timestamp":1607098338,"output":"unt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:18.928 [info] pp"},{"event":"cmd_output","timestamp":1607098338,"output":"l_id: da6fd73c-c139-41fa-b172-82bac129f984, type: Ppls, state: running, event: exit_scheduling, reco"},{"event":"cmd_output","timestamp":1607098338,"output":"very_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:18.932 [in"},{"event":"cmd_output","timestamp":1607098338,"output":"fo] ppl_id: 834aee84-245e-4b9d-ac4b-cb6c248fa413, block_id: 58d823c3-3ead-4adf-8866-300f85328105, t"},{"event":"cmd_output","timestamp":1607098338,"output":"ype: PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count:"},{"event":"cmd_output","timestamp":1607098338,"output":" 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:18.939 [info] PplBlo"},{"event":"cmd_output","timestamp":1607098338,"output":"cks WaitingState STM is scheduling block 0 from pipeline: \"da6fd73c-c139-41fa-b172-82bac129f984\"\n\u001b["},{"event":"cmd_output","timestamp":1607098338,"output":"0m\u001b[22m\n16:12:18.948 [info] block_id: db909ec0-6864-400e-971e-9f36fc071cce, type: BlockRequests, e"},{"event":"cmd_output","timestamp":1607098338,"output":"vent: persisted block run request from ppl da6fd73c-c139-41fa-b172-82bac129f984 for block 0, origin:"},{"event":"cmd_output","timestamp":1607098338,"output":" Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:1"},{"event":"cmd_output","timestamp":1607098338,"output":"8.952 [info] block_id: db909ec0-6864-400e-971e-9f36fc071cce, type: Blocks, state: initializing, eve"},{"event":"cmd_output","timestamp":1607098338,"output":"nt: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), "},{"event":"cmd_output","timestamp":1607098338,"output":"\n\u001b[0m\u001b[22m\n16:12:18.956 [info] ppl_id: 834aee84-245e-4b9d-ac4b-cb6c248fa413, type: Ppls, state: d"},{"event":"cmd_output","timestamp":1607098338,"output":"one, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_s"},{"event":"cmd_output","timestamp":1607098338,"output":"tate_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:18.959 [info] Block 0 of pipeline with id: da6fd73c-c139-41f"},{"event":"cmd_output","timestamp":1607098338,"output":"a-b172-82bac129f984 scheduled in block service with id: : \"db909ec0-6864-400e-971e-9f36fc071cce\"\n\u001b["},{"event":"cmd_output","timestamp":1607098338,"output":"0m\u001b[22m\n16:12:18.967 [info] block_id: db909ec0-6864-400e-971e-9f36fc071cce, type: BlockRequests, e"},{"event":"cmd_output","timestamp":1607098338,"output":"vent: persisted build and sub_ppl details for block_request: db909ec0-6864-400e-971e-9f36fc071cce, o"},{"event":"cmd_output","timestamp":1607098338,"output":"rigin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12"},{"event":"cmd_output","timestamp":1607098338,"output":":18.969 [info] ppl_id: da6fd73c-c139-41fa-b172-82bac129f984, type: PplBlocks, block_index: 0, state"},{"event":"cmd_output","timestamp":1607098338,"output":": running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chang"},{"event":"cmd_output","timestamp":1607098338,"output":"e/1(L90), \n\u001b[0m\u001b[22m\n16:12:18.971 [info] block_id: db909ec0-6864-400e-971e-9f36fc071cce, type: Ta"},{"event":"cmd_output","timestamp":1607098338,"output":"sks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.Initi"},{"event":"cmd_output","timestamp":1607098338,"output":"alizingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:18.975 [info] block_id: db909ec0-6864-400e-971e-9f"},{"event":"cmd_output","timestamp":1607098338,"output":"36fc071cce, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098339,"output":"Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:19.005 [info] block_id: db909ec0-6864-4"},{"event":"cmd_output","timestamp":1607098339,"output":"00e-971e-9f36fc071cce, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098339,"output":"n: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:19.114 [info] block_id: db909"},{"event":"cmd_output","timestamp":1607098339,"output":"ec0-6864-400e-971e-9f36fc071cce, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0"},{"event":"cmd_output","timestamp":1607098339,"output":", origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:19.122 [info] block_id"},{"event":"cmd_output","timestamp":1607098339,"output":": db909ec0-6864-400e-971e-9f36fc071cce, type: Blocks, state: done, event: exit_scheduling, recovery_"},{"event":"cmd_output","timestamp":1607098339,"output":"count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:19.133 [info] "},{"event":"cmd_output","timestamp":1607098339,"output":"ppl_id: da6fd73c-c139-41fa-b172-82bac129f984, block_id: db909ec0-6864-400e-971e-9f36fc071cce, type: "},{"event":"cmd_output","timestamp":1607098339,"output":"PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098339,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:19.152 [info] ppl_id: da6"},{"event":"cmd_output","timestamp":1607098339,"output":"fd73c-c139-41fa-b172-82bac129f984, type: Ppls, state: done, result: passed, event: exit_scheduling, "},{"event":"cmd_output","timestamp":1607098339,"output":"recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test gRPC"},{"event":"cmd_output","timestamp":1607098339,"output":" list_grouped() - org scoped implicit queues (2171.9ms)\u001b[0m\n * test gRPC list() - refuse request "},{"event":"cmd_output","timestamp":1607098339,"output":"when there are to many unfinished ones\r * test gRPC list() - refuse request when there are to many "},{"event":"cmd_output","timestamp":1607098339,"output":"unfinished ones (skipped)\n * test gRPC validate_yaml() - invalid yaml definition, ppl is not sched"},{"event":"cmd_output","timestamp":1607098339,"output":"uled\r * test gRPC validate_yaml() - invalid yaml definition, ppl is not scheduled (skipped)\n * te"},{"event":"cmd_output","timestamp":1607098339,"output":"st gRPC schedule_extension() - refuse if project deletion was requested\r * test gRPC schedule_exten"},{"event":"cmd_output","timestamp":1607098339,"output":"sion() - refuse if project deletion was requested (skipped)\n * test gRPC partial_rebuild() - refus"},{"event":"cmd_output","timestamp":1607098339,"output":"e if project deletion was requested\r * test gRPC partial_rebuild() - refuse if project deletion was"},{"event":"cmd_output","timestamp":1607098339,"output":" requested (skipped)\n * test gRPC validate_yaml() - only invalid yaml definition passed\r * test g"},{"event":"cmd_output","timestamp":1607098339,"output":"RPC validate_yaml() - only invalid yaml definition passed (skipped)\n * test gRPC get_project_id() "},{"event":"cmd_output","timestamp":1607098339,"output":"- valid params - success\r * test gRPC get_project_id() - valid params - success (skipped)\n * test"},{"event":"cmd_output","timestamp":1607098339,"output":" gRPC delete() - deletes everything when given valid params\u001b[22m\n16:12:19.358 [info] Request: 'run"},{"event":"cmd_output","timestamp":1607098339,"output":": %{\"branch_id\" => \"18053a3e-f271-4285-88c8-106879b74c98\", \"branch_name\" => \"master\", \"commit_sha\" ="},{"event":"cmd_output","timestamp":1607098339,"output":"> \"75891a4469\", \"file_name\" => \"semaphore.yml\", \"hook_id\" => \"7bde6950-364b-11eb-b74f-5254005464e2\","},{"event":"cmd_output","timestamp":1607098339,"output":" \"label\" => \"master\", \"organization_id\" => \"5cef4418-0ba4-44d6-a573-bb4d16c55a66\", \"owner\" => \"rt\", "},{"event":"cmd_output","timestamp":1607098339,"output":"\"project_id\" => \"to-delete\", \"repo_name\" => \"5_v1_full\", \"request_token\" => \"7bde5c12-364b-11eb-8c87"},{"event":"cmd_output","timestamp":1607098339,"output":"-5254005464e2\", \"requester_id\" => \"2870cb44-3625-4450-b189-4beb3aa7760b\", \"service\" => \"local\", \"sup"},{"event":"cmd_output","timestamp":1607098339,"output":"pressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"e48438a0-dd13-4e99-ae27-aeac39"},{"event":"cmd_output","timestamp":1607098339,"output":"52c018\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:12:19.369 [info] ppl_id: cd3ec530-d3ee-4803-"},{"event":"cmd_output","timestamp":1607098339,"output":"9b57-d444ffc9ebc9, type: PplRequests, event: persisted schedule request with request_token: 7bde5c12"},{"event":"cmd_output","timestamp":1607098339,"output":"-364b-11eb-8c87-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_respon"},{"event":"cmd_output","timestamp":1607098339,"output":"se/2(L55), \n\u001b[0m\u001b[22m\n16:12:19.374 [info] ppl_id: cd3ec530-d3ee-4803-9b57-d444ffc9ebc9, type: Ppl"},{"event":"cmd_output","timestamp":1607098339,"output":"s, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQu"},{"event":"cmd_output","timestamp":1607098339,"output":"eries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:19.383 [info] Project to-delete and branch maste"},{"event":"cmd_output","timestamp":1607098339,"output":"rlatest_wf details updated: \"wf_id: e48438a0-dd13-4e99-ae27-aeac3952c018, wf_number: 1\"\n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098339,"output":"16:12:19.387 [info] Persisted ppl_sub_init for pipeline with ppl_id: cd3ec530-d3ee-4803-9b57-d444ff"},{"event":"cmd_output","timestamp":1607098339,"output":"c9ebc9: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_in"},{"event":"cmd_output","timestamp":1607098339,"output":"its\">, compile_task_id: nil, error_description: nil, id: 200, in_scheduling: false, init_type: \"regu"},{"event":"cmd_output","timestamp":1607098339,"output":"lar\", inserted_at: ~N[2020-12-04 16:12:19.385002], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"cd3ec530-d3ee-4803-9b57-d444ffc9ebc9\", recover"},{"event":"cmd_output","timestamp":1607098339,"output":"y_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_req"},{"event":"cmd_output","timestamp":1607098339,"output":"uest_desc: nil, updated_at: ~N[2020-12-04 16:12:19.385015]}\n\u001b[0m\u001b[22m\n16:12:19.395 [info] Periodi"},{"event":"cmd_output","timestamp":1607098339,"output":"c from module Elixir.Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.STMHandler.Init"},{"event":"cmd_output","timestamp":1607098339,"output":"ializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Initial"},{"event":"cmd_output","timestamp":1607098339,"output":"izingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], cooling_time_s"},{"event":"cmd_output","timestamp":1607098339,"output":"ec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher_cb: #Function<0"},{"event":"cmd_output","timestamp":1607098339,"output":".125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, "},{"event":"cmd_output","timestamp":1607098339,"output":":terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model."},{"event":"cmd_output","timestamp":1607098339,"output":"Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:19.397 [info] Periodic from module Elixir.Ppl.Ppls."},{"event":"cmd_output","timestamp":1607098339,"output":"STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 100 ms, metric_"},{"event":"cmd_output","timestamp":1607098339,"output":"name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args: %{allowed_stat"},{"event":"cmd_output","timestamp":1607098339,"output":"es: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Pp"},{"event":"cmd_output","timestamp":1607098339,"output":"ls, observed_state: \"pending\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler.PendingSta"},{"event":"cmd_output","timestamp":1607098339,"output":"te.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :"},{"event":"cmd_output","timestamp":1607098339,"output":"recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098339,"output":"2m\n16:12:19.398 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.QueuingState with name Elix"},{"event":"cmd_output","timestamp":1607098339,"output":"ir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-P"},{"event":"cmd_output","timestamp":1607098339,"output":"pls-STMHandler-QueuingState\"]}, recurring args: %{allowed_states: [\"queuing\", \"running\", \"done\"], co"},{"event":"cmd_output","timestamp":1607098339,"output":"oling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", publisher_cb: #Fu"},{"event":"cmd_output","timestamp":1607098339,"output":"nction<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, returning: [:i"},{"event":"cmd_output","timestamp":1607098339,"output":"d, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Mod"},{"event":"cmd_output","timestamp":1607098339,"output":"el.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:19.399 [info] Periodic from module Elixir.Ppl.Pp"},{"event":"cmd_output","timestamp":1607098339,"output":"ls.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHandler.RunningState :: period: 100 ms, metr"},{"event":"cmd_output","timestamp":1607098339,"output":"ic_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring args: %{allowed_s"},{"event":"cmd_output","timestamp":1607098339,"output":"tates: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, ob"},{"event":"cmd_output","timestamp":1607098339,"output":"served_state: \"running\", publisher_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler.RunningState.ar"},{"event":"cmd_output","timestamp":1607098339,"output":"gs/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recov"},{"event":"cmd_output","timestamp":1607098339,"output":"ery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098339,"output":"6:12:19.401 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.StoppingState with name Elixir.P"},{"event":"cmd_output","timestamp":1607098339,"output":"pl.Ppls.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls"},{"event":"cmd_output","timestamp":1607098339,"output":"-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_s"},{"event":"cmd_output","timestamp":1607098339,"output":"ec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"stopping\", publisher_cb: #Function<0.71"},{"event":"cmd_output","timestamp":1607098339,"output":"803493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :termina"},{"event":"cmd_output","timestamp":1607098339,"output":"te_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, ta"},{"event":"cmd_output","timestamp":1607098339,"output":"sk_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:19.402 [info] Periodic from module Elixir.Ppl.PplSubInits.S"},{"event":"cmd_output","timestamp":1607098339,"output":"TMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 100 ms, m"},{"event":"cmd_output","timestamp":1607098339,"output":"etric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args: %"},{"event":"cmd_output","timestamp":1607098339,"output":"{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.Ppl"},{"event":"cmd_output","timestamp":1607098339,"output":"SubInits, observed_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :term"},{"event":"cmd_output","timestamp":1607098339,"output":"inate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Mode"},{"event":"cmd_output","timestamp":1607098339,"output":"l.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:19.403 [info] Periodic from module Elixir."},{"event":"cmd_output","timestamp":1607098339,"output":"Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler.FetchingState :"},{"event":"cmd_output","timestamp":1607098339,"output":": period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]"},{"event":"cmd_output","timestamp":1607098339,"output":"}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"done\"], cooling_time_sec: -2, "},{"event":"cmd_output","timestamp":1607098339,"output":"initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fetching\", publisher_cb: :skip, r"},{"event":"cmd_output","timestamp":1607098339,"output":"epo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_coun"},{"event":"cmd_output","timestamp":1607098339,"output":"t, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:19"},{"event":"cmd_output","timestamp":1607098339,"output":".405 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CompilationState with name Elixi"},{"event":"cmd_output","timestamp":1607098339,"output":"r.Ppl.PplSubInits.STMHandler.CompilationState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up"},{"event":"cmd_output","timestamp":1607098339,"output":"\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurring args: %{allowed_states: [\"regular_ini"},{"event":"cmd_output","timestamp":1607098339,"output":"t\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.P"},{"event":"cmd_output","timestamp":1607098339,"output":"plSubInits, observed_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id,"},{"event":"cmd_output","timestamp":1607098339,"output":" :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInit"},{"event":"cmd_output","timestamp":1607098339,"output":"s.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:19.406 [info] Periodic from module E"},{"event":"cmd_output","timestamp":1607098339,"output":"lixir.Ppl.PplSubInits.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHandler.Regula"},{"event":"cmd_output","timestamp":1607098339,"output":"rInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-Reg"},{"event":"cmd_output","timestamp":1607098339,"output":"ularInitState\"]}, recurring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, initial_query: Pp"},{"event":"cmd_output","timestamp":1607098339,"output":"l.PplSubInits.Model.PplSubInits, observed_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.Ecto"},{"event":"cmd_output","timestamp":1607098339,"output":"Repo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], "},{"event":"cmd_output","timestamp":1607098339,"output":"schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:19.406 [info] "},{"event":"cmd_output","timestamp":1607098339,"output":"Periodic from module Elixir.Ppl.PplBlocks.STMHandler.InitializingState with name Elixir.Ppl.PplBlock"},{"event":"cmd_output","timestamp":1607098339,"output":"s.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlo"},{"event":"cmd_output","timestamp":1607098339,"output":"cks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"waiting\", \""},{"event":"cmd_output","timestamp":1607098339,"output":"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"initiali"},{"event":"cmd_output","timestamp":1607098339,"output":"zing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :s"},{"event":"cmd_output","timestamp":1607098339,"output":"tate, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_"},{"event":"cmd_output","timestamp":1607098339,"output":"supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:19.407 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHan"},{"event":"cmd_output","timestamp":1607098339,"output":"dler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler.WaitingState :: period: 1000 ms, metric_"},{"event":"cmd_output","timestamp":1607098339,"output":"name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurring args: %{allowed"},{"event":"cmd_output","timestamp":1607098339,"output":"_states: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.Ppl"},{"event":"cmd_output","timestamp":1607098339,"output":"Blocks, observed_state: \"waiting\", publisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.STMHandler.W"},{"event":"cmd_output","timestamp":1607098339,"output":"aitingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :"},{"event":"cmd_output","timestamp":1607098339,"output":"result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervi"},{"event":"cmd_output","timestamp":1607098339,"output":"sor: :skip}\n\u001b[0m\u001b[22m\n16:12:19.407 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.Ru"},{"event":"cmd_output","timestamp":1607098339,"output":"nningState with name Elixir.Ppl.PplBlocks.STMHandler.RunningState :: period: 1000 ms, metric_name: {"},{"event":"cmd_output","timestamp":1607098339,"output":"\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states"},{"event":"cmd_output","timestamp":1607098339,"output":": [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlock"},{"event":"cmd_output","timestamp":1607098339,"output":"s, observed_state: \"running\", publisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHandler.Runni"},{"event":"cmd_output","timestamp":1607098339,"output":"ngState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :resu"},{"event":"cmd_output","timestamp":1607098339,"output":"lt, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_"},{"event":"cmd_output","timestamp":1607098339,"output":"supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:19.407 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHan"},{"event":"cmd_output","timestamp":1607098339,"output":"dler.StoppingState with name Elixir.Ppl.PplBlocks.STMHandler.StoppingState :: period: 1000 ms, metri"},{"event":"cmd_output","timestamp":1607098339,"output":"c_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurring args: %{allo"},{"event":"cmd_output","timestamp":1607098339,"output":"wed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks"},{"event":"cmd_output","timestamp":1607098339,"output":", observed_state: \"stopping\", publisher_cb: #Function<0.104215991/1 in Ppl.PplBlocks.STMHandler.Stop"},{"event":"cmd_output","timestamp":1607098339,"output":"pingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :re"},{"event":"cmd_output","timestamp":1607098339,"output":"sult, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, tas"},{"event":"cmd_output","timestamp":1607098339,"output":"k_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:19.407 [info] Periodic from module Elixir.Block.Blocks.STMHa"},{"event":"cmd_output","timestamp":1607098339,"output":"ndler.InitializingState with name Elixir.Block.Blocks.STMHandler.InitializingState :: period: 100 ms"},{"event":"cmd_output","timestamp":1607098339,"output":", metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, recurring ar"},{"event":"cmd_output","timestamp":1607098339,"output":"gs: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Blocks.Model.Bl"},{"event":"cmd_output","timestamp":1607098339,"output":"ocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :t"},{"event":"cmd_output","timestamp":1607098339,"output":"erminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Block"},{"event":"cmd_output","timestamp":1607098339,"output":"s, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:19.408 [info] Periodic from module Elixir.Block.Blocks"},{"event":"cmd_output","timestamp":1607098339,"output":".STMHandler.RunningState with name Elixir.Block.Blocks.STMHandler.RunningState :: period: 100 ms, me"},{"event":"cmd_output","timestamp":1607098339,"output":"tric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-RunningState\"]}, recurring args: %{all"},{"event":"cmd_output","timestamp":1607098339,"output":"owed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Mode"},{"event":"cmd_output","timestamp":1607098339,"output":"l.Blocks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :te"},{"event":"cmd_output","timestamp":1607098339,"output":"rminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks"},{"event":"cmd_output","timestamp":1607098339,"output":", task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:19.408 [info] Periodic from module Elixir.Block.Blocks."},{"event":"cmd_output","timestamp":1607098339,"output":"STMHandler.StoppingState with name Elixir.Block.Blocks.STMHandler.StoppingState :: period: 100 ms, m"},{"event":"cmd_output","timestamp":1607098339,"output":"etric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-StoppingState\"]}, recurring args: %{a"},{"event":"cmd_output","timestamp":1607098339,"output":"llowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks,"},{"event":"cmd_output","timestamp":1607098339,"output":" observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_"},{"event":"cmd_output","timestamp":1607098339,"output":"request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_s"},{"event":"cmd_output","timestamp":1607098339,"output":"upervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:19.408 [info] Periodic from module Elixir.Block.Tasks.STMHandle"},{"event":"cmd_output","timestamp":1607098339,"output":"r.PendingState with name Elixir.Block.Tasks.STMHandler.PendingState :: period: 100 ms, metric_name: "},{"event":"cmd_output","timestamp":1607098339,"output":"{\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingState\"]}, recurring args: %{allowed_states:"},{"event":"cmd_output","timestamp":1607098339,"output":" [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Tasks.Model.Tasks, observed_state: \""},{"event":"cmd_output","timestamp":1607098339,"output":"pending\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_a"},{"event":"cmd_output","timestamp":1607098339,"output":"t, :state, :recovery_count, :block_id, :build_request_id], schema: Block.Tasks.Model.Tasks, task_sup"},{"event":"cmd_output","timestamp":1607098339,"output":"ervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:19.408 [info] Periodic from module Elixir.Block.Tasks.STMHandler."},{"event":"cmd_output","timestamp":1607098339,"output":"RunningState with name Elixir.Block.Tasks.STMHandler.RunningState :: period: 100 ms, metric_name: {\""},{"event":"cmd_output","timestamp":1607098339,"output":"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: ["},{"event":"cmd_output","timestamp":1607098339,"output":"\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observ"},{"event":"cmd_output","timestamp":1607098339,"output":"ed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request,"},{"event":"cmd_output","timestamp":1607098339,"output":" :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor:"},{"event":"cmd_output","timestamp":1607098339,"output":" :skip}\n\u001b[0m\u001b[22m\n16:12:19.408 [info] Periodic from module Elixir.Block.Tasks.STMHandler.Stopping"},{"event":"cmd_output","timestamp":1607098339,"output":"State with name Elixir.Block.Tasks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.be"},{"event":"cmd_output","timestamp":1607098339,"output":"holder-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stop"},{"event":"cmd_output","timestamp":1607098339,"output":"ping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"stopp"},{"event":"cmd_output","timestamp":1607098339,"output":"ing\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :"},{"event":"cmd_output","timestamp":1607098339,"output":"state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098339,"output":"22m\n16:12:19.527 [info] ppl_id: cd3ec530-d3ee-4803-9b57-d444ffc9ebc9, type: PplRequests, event: pe"},{"event":"cmd_output","timestamp":1607098339,"output":"rsisted source_args for pipeline: cd3ec530-d3ee-4803-9b57-d444ffc9ebc9, origin: Elixir.Ppl.PplReques"},{"event":"cmd_output","timestamp":1607098339,"output":"ts.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:19.530 [info] ppl_id: cd3ec530"},{"event":"cmd_output","timestamp":1607098339,"output":"-d3ee-4803-9b57-d444ffc9ebc9, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098339,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:19.569 [info] p"},{"event":"cmd_output","timestamp":1607098339,"output":"pl_id: cd3ec530-d3ee-4803-9b57-d444ffc9ebc9, type: PplSubInits, state: regular_init, event: exit_sch"},{"event":"cmd_output","timestamp":1607098339,"output":"eduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098339,"output":"12:19.594 [info] ppl_id: cd3ec530-d3ee-4803-9b57-d444ffc9ebc9, type: PplRequests, event: persisted "},{"event":"cmd_output","timestamp":1607098339,"output":"definition for request with request_token: 7bde5c12-364b-11eb-8c87-5254005464e2, origin: Elixir.Ppl."},{"event":"cmd_output","timestamp":1607098339,"output":"PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:19.600 [info] Que"},{"event":"cmd_output","timestamp":1607098339,"output":"ue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, ins"},{"event":"cmd_output","timestamp":1607098339,"output":"erted_at: ~N[2020-12-04 16:12:19.598585], name: \"master-.semaphore/semaphore.yml\", organization_id: "},{"event":"cmd_output","timestamp":1607098339,"output":"\"5cef4418-0ba4-44d6-a573-bb4d16c55a66\", project_id: \"to-delete\", queue_id: \"8fb0adff-6390-47db-b050-"},{"event":"cmd_output","timestamp":1607098339,"output":"3db18c85e4dd\", scope: \"project\", updated_at: ~N[2020-12-04 16:12:19.598598], user_generated: false}}"},{"event":"cmd_output","timestamp":1607098339,"output":"\n\u001b[0m\u001b[22m\n16:12:19.608 [info] ppl_id: not_available, event: created, origin: Elixir.Ppl.PplSubIn"},{"event":"cmd_output","timestamp":1607098339,"output":"its.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:19.609 [info] event: created, o"},{"event":"cmd_output","timestamp":1607098339,"output":"rigin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:19.609"},{"event":"cmd_output","timestamp":1607098339,"output":" [info] ppl_id: cd3ec530-d3ee-4803-9b57-d444ffc9ebc9, type: PplBlocks, block_index: 0, state: initi"},{"event":"cmd_output","timestamp":1607098339,"output":"alizing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitSta"},{"event":"cmd_output","timestamp":1607098339,"output":"te.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:19.609 [info] ppl_id: cd3ec530-d3ee-4803-9b57-d444ffc9ebc9, "},{"event":"cmd_output","timestamp":1607098339,"output":"type: PplBlocks, block_index: 1, state: initializing, event: created, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098339,"output":"xir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:19.613 [info] p"},{"event":"cmd_output","timestamp":1607098339,"output":"pl_id: cd3ec530-d3ee-4803-9b57-d444ffc9ebc9, type: PplSubInits, state: done, result: passed, event: "},{"event":"cmd_output","timestamp":1607098339,"output":"exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098339,"output":"22m\n16:12:19.625 [info] ppl_id: cd3ec530-d3ee-4803-9b57-d444ffc9ebc9, type: PplBlocks, block_index"},{"event":"cmd_output","timestamp":1607098339,"output":": 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_s"},{"event":"cmd_output","timestamp":1607098339,"output":"tate_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:19.629 [info] ppl_id: cd3ec530-d3ee-4803-9b57-d444ffc9ebc9, "},{"event":"cmd_output","timestamp":1607098339,"output":"type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Imp"},{"event":"cmd_output","timestamp":1607098339,"output":"l.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:19.640 [info] ppl_id: cd3ec530-d3ee-4803-9b57-d444ffc"},{"event":"cmd_output","timestamp":1607098339,"output":"9ebc9, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper."},{"event":"cmd_output","timestamp":1607098339,"output":"STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:19.640 [info] ppl_id: cd3ec530-d3ee-4803-9b57-"},{"event":"cmd_output","timestamp":1607098339,"output":"d444ffc9ebc9, type: PplBlocks, block_index: 1, state: waiting, event: exit_scheduling, recovery_coun"},{"event":"cmd_output","timestamp":1607098339,"output":"t: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:19.655 [info] ppl_"},{"event":"cmd_output","timestamp":1607098339,"output":"id: cd3ec530-d3ee-4803-9b57-d444ffc9ebc9, type: Ppls, state: running, event: exit_scheduling, recove"},{"event":"cmd_output","timestamp":1607098339,"output":"ry_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:19.665 [info"},{"event":"cmd_output","timestamp":1607098339,"output":"] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"cd3ec530-d3ee-4803-9b57-d444ffc9"},{"event":"cmd_output","timestamp":1607098339,"output":"ebc9\"\n\u001b[0m\u001b[22m\n16:12:19.676 [info] block_id: 11ddec06-f7af-44da-8b80-ca3062432da1, type: BlockRe"},{"event":"cmd_output","timestamp":1607098339,"output":"quests, event: persisted block run request from ppl cd3ec530-d3ee-4803-9b57-d444ffc9ebc9 for block 0"},{"event":"cmd_output","timestamp":1607098339,"output":", origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098339,"output":"\n16:12:19.679 [info] block_id: 11ddec06-f7af-44da-8b80-ca3062432da1, type: Blocks, state: initiali"},{"event":"cmd_output","timestamp":1607098339,"output":"zing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert"},{"event":"cmd_output","timestamp":1607098339,"output":"/1(L43), \n\u001b[0m\u001b[22m\n16:12:19.681 [info] Block 0 of pipeline with id: cd3ec530-d3ee-4803-9b57-d444"},{"event":"cmd_output","timestamp":1607098339,"output":"ffc9ebc9 scheduled in block service with id: : \"11ddec06-f7af-44da-8b80-ca3062432da1\"\n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098339,"output":":12:19.686 [info] ppl_id: cd3ec530-d3ee-4803-9b57-d444ffc9ebc9, type: PplBlocks, block_index: 0, st"},{"event":"cmd_output","timestamp":1607098339,"output":"ate: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_ch"},{"event":"cmd_output","timestamp":1607098339,"output":"ange/1(L90), \n\u001b[0m\u001b[22m\n16:12:19.692 [info] block_id: 11ddec06-f7af-44da-8b80-ca3062432da1, type:"},{"event":"cmd_output","timestamp":1607098339,"output":" BlockRequests, event: persisted build and sub_ppl details for block_request: 11ddec06-f7af-44da-8b8"},{"event":"cmd_output","timestamp":1607098339,"output":"0-ca3062432da1, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \r"},{"event":"cmd_output","timestamp":1607098339,"output":"\n\u001b[0m\u001b[22m\n16:12:19.695 [info] block_id: 11ddec06-f7af-44da-8b80-ca3062432da1, type: Tasks, state:"},{"event":"cmd_output","timestamp":1607098339,"output":" pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingStat"},{"event":"cmd_output","timestamp":1607098339,"output":"e.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:19.707 [info] block_id: 11ddec06-f7af-44da-8b80-ca3062432da1,"},{"event":"cmd_output","timestamp":1607098339,"output":" type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM."},{"event":"cmd_output","timestamp":1607098339,"output":"Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:19.782 [info] block_id: 11ddec06-f7af-44da-8b80-ca"},{"event":"cmd_output","timestamp":1607098339,"output":"3062432da1, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098339,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:19.988 [info] block_id: 11ddec06-f7af-44"},{"event":"cmd_output","timestamp":1607098339,"output":"da-8b80-ca3062432da1, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: E"},{"event":"cmd_output","timestamp":1607098339,"output":"lixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:19.990 [info] block_id: 11ddec06-"},{"event":"cmd_output","timestamp":1607098339,"output":"f7af-44da-8b80-ca3062432da1, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098340,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:20.003 [info] ppl_id: cd3"},{"event":"cmd_output","timestamp":1607098340,"output":"ec530-d3ee-4803-9b57-d444ffc9ebc9, block_id: 11ddec06-f7af-44da-8b80-ca3062432da1, type: PplBlocks, "},{"event":"cmd_output","timestamp":1607098340,"output":"block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098340,"output":"ir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:20.014 [info] PplBlocks WaitingState"},{"event":"cmd_output","timestamp":1607098340,"output":" STM is scheduling block 1 from pipeline: \"cd3ec530-d3ee-4803-9b57-d444ffc9ebc9\"\n\u001b[0m\u001b[22m\n16:12:2"},{"event":"cmd_output","timestamp":1607098340,"output":"0.021 [info] block_id: 1989d0b8-0ad8-4911-84b2-fa4d189c8a4a, type: BlockRequests, event: persisted "},{"event":"cmd_output","timestamp":1607098340,"output":"block run request from ppl cd3ec530-d3ee-4803-9b57-d444ffc9ebc9 for block 1, origin: Elixir.Block.Bl"},{"event":"cmd_output","timestamp":1607098340,"output":"ockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:20.026 [info] bl"},{"event":"cmd_output","timestamp":1607098340,"output":"ock_id: 1989d0b8-0ad8-4911-84b2-fa4d189c8a4a, type: Blocks, state: initializing, event: initializing"},{"event":"cmd_output","timestamp":1607098340,"output":", recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098340,"output":"12:20.026 [info] Block 1 of pipeline with id: cd3ec530-d3ee-4803-9b57-d444ffc9ebc9 scheduled in blo"},{"event":"cmd_output","timestamp":1607098340,"output":"ck service with id: : \"1989d0b8-0ad8-4911-84b2-fa4d189c8a4a\"\n\u001b[0m\u001b[22m\n16:12:20.034 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098340,"output":": cd3ec530-d3ee-4803-9b57-d444ffc9ebc9, type: PplBlocks, block_index: 1, state: running, event: exit"},{"event":"cmd_output","timestamp":1607098340,"output":"_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098340,"output":"\n16:12:20.041 [info] block_id: 1989d0b8-0ad8-4911-84b2-fa4d189c8a4a, type: BlockRequests, event: pe"},{"event":"cmd_output","timestamp":1607098340,"output":"rsisted build and sub_ppl details for block_request: 1989d0b8-0ad8-4911-84b2-fa4d189c8a4a, origin: E"},{"event":"cmd_output","timestamp":1607098340,"output":"lixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:20.044 "},{"event":"cmd_output","timestamp":1607098340,"output":"[info] block_id: 1989d0b8-0ad8-4911-84b2-fa4d189c8a4a, type: Tasks, state: pending, event: created,"},{"event":"cmd_output","timestamp":1607098340,"output":" recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098340,"output":"\u001b[22m\n16:12:20.046 [info] block_id: 1989d0b8-0ad8-4911-84b2-fa4d189c8a4a, type: Blocks, state: run"},{"event":"cmd_output","timestamp":1607098340,"output":"ning, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098340,"output":"90), \n\u001b[0m\u001b[22m\n16:12:20.068 [info] block_id: 1989d0b8-0ad8-4911-84b2-fa4d189c8a4a, type: Tasks, "},{"event":"cmd_output","timestamp":1607098340,"output":"state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_"},{"event":"cmd_output","timestamp":1607098340,"output":"change/1(L90), \n\u001b[0m\u001b[22m\n16:12:20.098 [info] block_id: 1989d0b8-0ad8-4911-84b2-fa4d189c8a4a, typ"},{"event":"cmd_output","timestamp":1607098340,"output":"e: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098340,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:20.106 [info] block_id: 1989d0b8-0ad8-4911-84b2-fa4d189c8a"},{"event":"cmd_output","timestamp":1607098340,"output":"4a, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM."},{"event":"cmd_output","timestamp":1607098340,"output":"Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:20.117 [info] ppl_id: cd3ec530-d3ee-4803-9b57-d444"},{"event":"cmd_output","timestamp":1607098340,"output":"ffc9ebc9, block_id: 1989d0b8-0ad8-4911-84b2-fa4d189c8a4a, type: PplBlocks, block_index: 1, state: do"},{"event":"cmd_output","timestamp":1607098340,"output":"ne, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_st"},{"event":"cmd_output","timestamp":1607098340,"output":"ate_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:20.123 [info] ppl_id: cd3ec530-d3ee-4803-9b57-d444ffc9ebc9, t"},{"event":"cmd_output","timestamp":1607098340,"output":"ype: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Lo"},{"event":"cmd_output","timestamp":1607098340,"output":"oper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:20.142 [info] Request: 'run: %{\"branch_id"},{"event":"cmd_output","timestamp":1607098340,"output":"\" => \"7c375d0a-bd8e-41c2-9dfd-2fb6ec33ba91\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469\""},{"event":"cmd_output","timestamp":1607098340,"output":", \"file_name\" => \"semaphore.yml\", \"hook_id\" => \"7c560f82-364b-11eb-a5b6-5254005464e2\", \"label\" => \"m"},{"event":"cmd_output","timestamp":1607098340,"output":"aster\", \"organization_id\" => \"cd825a9a-69f9-4cd7-95dc-8d6392b66d39\", \"owner\" => \"rt\", \"project_id\" ="},{"event":"cmd_output","timestamp":1607098340,"output":"> \"to-delete\", \"repo_name\" => \"5_v1_full\", \"request_token\" => \"7c560226-364b-11eb-96ff-5254005464e2\""},{"event":"cmd_output","timestamp":1607098340,"output":", \"requester_id\" => \"1ab3238a-75f4-4753-a8e8-f19a7a62ebcd\", \"service\" => \"local\", \"suppressed_attrib"},{"event":"cmd_output","timestamp":1607098340,"output":"utes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"40a02645-c384-4023-818f-4929f9f4c584\", \"work"},{"event":"cmd_output","timestamp":1607098340,"output":"ing_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:12:20.144 [info] ppl_id: 95bd37e3-226b-4f4a-80b5-55c88f4d9"},{"event":"cmd_output","timestamp":1607098340,"output":"00e, type: PplRequests, event: persisted schedule request with request_token: 7c560226-364b-11eb-96f"},{"event":"cmd_output","timestamp":1607098340,"output":"f-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b"},{"event":"cmd_output","timestamp":1607098340,"output":"[0m\u001b[22m\n16:12:20.147 [info] ppl_id: 95bd37e3-226b-4f4a-80b5-55c88f4d900e, type: Ppls, state: init"},{"event":"cmd_output","timestamp":1607098340,"output":"ializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_"},{"event":"cmd_output","timestamp":1607098340,"output":"response/2(L124), \n\u001b[0m\u001b[22m\n16:12:20.150 [info] Project to-delete and branch masterlatest_wf det"},{"event":"cmd_output","timestamp":1607098340,"output":"ails updated: \"wf_id: 40a02645-c384-4023-818f-4929f9f4c584, wf_number: 2\"\n\u001b[0m\u001b[22m\n16:12:20.152 ["},{"event":"cmd_output","timestamp":1607098340,"output":"info] Persisted ppl_sub_init for pipeline with ppl_id: 95bd37e3-226b-4f4a-80b5-55c88f4d900e: %Ppl.P"},{"event":"cmd_output","timestamp":1607098340,"output":"plSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile"},{"event":"cmd_output","timestamp":1607098340,"output":"_task_id: nil, error_description: nil, id: 201, in_scheduling: false, init_type: \"regular\", inserted"},{"event":"cmd_output","timestamp":1607098340,"output":"_at: ~N[2020-12-04 16:12:20.150842], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"95bd37e3-226b-4f4a-80b5-55c88f4d900e\", recovery_count: 0, re"},{"event":"cmd_output","timestamp":1607098340,"output":"sult: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil"},{"event":"cmd_output","timestamp":1607098340,"output":", updated_at: ~N[2020-12-04 16:12:20.150853]}\n\u001b[0m\u001b[22m\n16:12:20.155 [info] Periodic from module "},{"event":"cmd_output","timestamp":1607098340,"output":"Elixir.Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.STMHandler.InitializingState "},{"event":"cmd_output","timestamp":1607098340,"output":":: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]},"},{"event":"cmd_output","timestamp":1607098340,"output":" recurring args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], cooling_time_sec: 0, initial"},{"event":"cmd_output","timestamp":1607098340,"output":"_query: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher_cb: #Function<0.125326080/1 i"},{"event":"cmd_output","timestamp":1607098340,"output":"n Ppl.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_req"},{"event":"cmd_output","timestamp":1607098340,"output":"uest, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_sup"},{"event":"cmd_output","timestamp":1607098340,"output":"ervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:20.157 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.Pen"},{"event":"cmd_output","timestamp":1607098340,"output":"dingState with name Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.be"},{"event":"cmd_output","timestamp":1607098340,"output":"holder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"pending\""},{"event":"cmd_output","timestamp":1607098340,"output":", \"queuing\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_s"},{"event":"cmd_output","timestamp":1607098340,"output":"tate: \"pending\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, re"},{"event":"cmd_output","timestamp":1607098340,"output":"po: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count"},{"event":"cmd_output","timestamp":1607098340,"output":", :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:12:20.1"},{"event":"cmd_output","timestamp":1607098340,"output":"58 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.QueuingState with name Elixir.Ppl.Ppls.ST"},{"event":"cmd_output","timestamp":1607098340,"output":"MHandler.QueuingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler"},{"event":"cmd_output","timestamp":1607098340,"output":"-QueuingState\"]}, recurring args: %{allowed_states: [\"queuing\", \"running\", \"done\"], cooling_time_sec"},{"event":"cmd_output","timestamp":1607098340,"output":": -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", publisher_cb: #Function<0.12510"},{"event":"cmd_output","timestamp":1607098340,"output":"2843/1 in Ppl.Ppls.STMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_"},{"event":"cmd_output","timestamp":1607098340,"output":"request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_"},{"event":"cmd_output","timestamp":1607098340,"output":"supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:20.159 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler."},{"event":"cmd_output","timestamp":1607098340,"output":"RunningState with name Elixir.Ppl.Ppls.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl"},{"event":"cmd_output","timestamp":1607098340,"output":".beholder-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"runni"},{"event":"cmd_output","timestamp":1607098340,"output":"ng\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: "},{"event":"cmd_output","timestamp":1607098340,"output":"\"running\", publisher_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler.RunningState.args/0>, repo: P"},{"event":"cmd_output","timestamp":1607098340,"output":"pl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :pp"},{"event":"cmd_output","timestamp":1607098340,"output":"l_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:12:20.159 [i"},{"event":"cmd_output","timestamp":1607098340,"output":"nfo] Periodic from module Elixir.Ppl.Ppls.STMHandler.StoppingState with name Elixir.Ppl.Ppls.STMHan"},{"event":"cmd_output","timestamp":1607098340,"output":"dler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-St"},{"event":"cmd_output","timestamp":1607098340,"output":"oppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initia"},{"event":"cmd_output","timestamp":1607098340,"output":"l_query: Ppl.Ppls.Model.Ppls, observed_state: \"stopping\", publisher_cb: #Function<0.71803493/1 in Pp"},{"event":"cmd_output","timestamp":1607098340,"output":"l.Ppls.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :u"},{"event":"cmd_output","timestamp":1607098340,"output":"pdated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor:"},{"event":"cmd_output","timestamp":1607098340,"output":" :skip}\n\u001b[0m\u001b[22m\n16:12:20.159 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.Crea"},{"event":"cmd_output","timestamp":1607098340,"output":"tedState with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 100 ms, metric_name: {\""},{"event":"cmd_output","timestamp":1607098340,"output":"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args: %{allowed_state"},{"event":"cmd_output","timestamp":1607098340,"output":"s: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, obse"},{"event":"cmd_output","timestamp":1607098340,"output":"rved_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request,"},{"event":"cmd_output","timestamp":1607098340,"output":" :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits,"},{"event":"cmd_output","timestamp":1607098340,"output":" task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:20.160 [info] Periodic from module Elixir.Ppl.PplSubInit"},{"event":"cmd_output","timestamp":1607098340,"output":"s.STMHandler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 "},{"event":"cmd_output","timestamp":1607098340,"output":"ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring a"},{"event":"cmd_output","timestamp":1607098340,"output":"rgs: %{allowed_states: [\"regular_init\", \"compilation\", \"done\"], cooling_time_sec: -2, initial_query:"},{"event":"cmd_output","timestamp":1607098340,"output":" Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoR"},{"event":"cmd_output","timestamp":1607098340,"output":"epo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], s"},{"event":"cmd_output","timestamp":1607098340,"output":"chema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:20.160 [info] P"},{"event":"cmd_output","timestamp":1607098340,"output":"eriodic from module Elixir.Ppl.PplSubInits.STMHandler.CompilationState with name Elixir.Ppl.PplSubIn"},{"event":"cmd_output","timestamp":1607098340,"output":"its.STMHandler.CompilationState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSu"},{"event":"cmd_output","timestamp":1607098340,"output":"bInits-STMHandler-CompilationState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilati"},{"event":"cmd_output","timestamp":1607098340,"output":"on\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, ob"},{"event":"cmd_output","timestamp":1607098340,"output":"served_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_re"},{"event":"cmd_output","timestamp":1607098340,"output":"quest, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSub"},{"event":"cmd_output","timestamp":1607098340,"output":"Inits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:20.160 [info] Periodic from module Elixir.Ppl.PplS"},{"event":"cmd_output","timestamp":1607098340,"output":"ubInits.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: "},{"event":"cmd_output","timestamp":1607098340,"output":"period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\""},{"event":"cmd_output","timestamp":1607098340,"output":"]}, recurring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits."},{"event":"cmd_output","timestamp":1607098340,"output":"Model.PplSubInits, observed_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returnin"},{"event":"cmd_output","timestamp":1607098340,"output":"g: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Pp"},{"event":"cmd_output","timestamp":1607098340,"output":"lSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:20.161 [info] Periodic from "},{"event":"cmd_output","timestamp":1607098340,"output":"module Elixir.Ppl.PplBlocks.STMHandler.InitializingState with name Elixir.Ppl.PplBlocks.STMHandler.I"},{"event":"cmd_output","timestamp":1607098340,"output":"nitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler"},{"event":"cmd_output","timestamp":1607098340,"output":"-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"waiting\", \"done\"], coolin"},{"event":"cmd_output","timestamp":1607098340,"output":"g_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"initializing\", publish"},{"event":"cmd_output","timestamp":1607098340,"output":"er_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result,"},{"event":"cmd_output","timestamp":1607098340,"output":" :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :s"},{"event":"cmd_output","timestamp":1607098340,"output":"kip}\n\u001b[0m\u001b[22m\n16:12:20.161 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.WaitingSt"},{"event":"cmd_output","timestamp":1607098340,"output":"ate with name Elixir.Ppl.PplBlocks.STMHandler.WaitingState :: period: 1000 ms, metric_name: {\"Ppl.be"},{"event":"cmd_output","timestamp":1607098340,"output":"holder-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurring args: %{allowed_states: [\"wai"},{"event":"cmd_output","timestamp":1607098340,"output":"ting\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observ"},{"event":"cmd_output","timestamp":1607098340,"output":"ed_state: \"waiting\", publisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.ar"},{"event":"cmd_output","timestamp":1607098340,"output":"gs/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recov"},{"event":"cmd_output","timestamp":1607098340,"output":"ery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b"},{"event":"cmd_output","timestamp":1607098340,"output":"[0m\u001b[22m\n16:12:20.161 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.RunningState wit"},{"event":"cmd_output","timestamp":1607098340,"output":"h name Elixir.Ppl.PplBlocks.STMHandler.RunningState :: period: 1000 ms, metric_name: {\"Ppl.beholder-"},{"event":"cmd_output","timestamp":1607098340,"output":"wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", "},{"event":"cmd_output","timestamp":1607098340,"output":"\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_st"},{"event":"cmd_output","timestamp":1607098340,"output":"ate: \"running\", publisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0"},{"event":"cmd_output","timestamp":1607098340,"output":">, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_"},{"event":"cmd_output","timestamp":1607098340,"output":"count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :s"},{"event":"cmd_output","timestamp":1607098340,"output":"kip}\n\u001b[0m\u001b[22m\n16:12:20.161 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.StoppingS"},{"event":"cmd_output","timestamp":1607098340,"output":"tate with name Elixir.Ppl.PplBlocks.STMHandler.StoppingState :: period: 1000 ms, metric_name: {\"Ppl."},{"event":"cmd_output","timestamp":1607098340,"output":"beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\""},{"event":"cmd_output","timestamp":1607098340,"output":"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_sta"},{"event":"cmd_output","timestamp":1607098340,"output":"te: \"stopping\", publisher_cb: #Function<0.104215991/1 in Ppl.PplBlocks.STMHandler.StoppingState.args"},{"event":"cmd_output","timestamp":1607098340,"output":"/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recover"},{"event":"cmd_output","timestamp":1607098340,"output":"y_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: "},{"event":"cmd_output","timestamp":1607098340,"output":":skip}\n\u001b[0m\u001b[22m\n16:12:20.161 [info] Periodic from module Elixir.Block.Blocks.STMHandler.Initiali"},{"event":"cmd_output","timestamp":1607098340,"output":"zingState with name Elixir.Block.Blocks.STMHandler.InitializingState :: period: 100 ms, metric_name:"},{"event":"cmd_output","timestamp":1607098340,"output":" {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_"},{"event":"cmd_output","timestamp":1607098340,"output":"states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Blocks.Model.Blocks, observed"},{"event":"cmd_output","timestamp":1607098340,"output":"_state: \"initializing\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_reque"},{"event":"cmd_output","timestamp":1607098340,"output":"st, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_superv"},{"event":"cmd_output","timestamp":1607098340,"output":"isor: :skip}\n\u001b[0m\u001b[22m\n16:12:20.162 [info] Periodic from module Elixir.Block.Blocks.STMHandler.Ru"},{"event":"cmd_output","timestamp":1607098340,"output":"nningState with name Elixir.Block.Blocks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"P"},{"event":"cmd_output","timestamp":1607098340,"output":"pl.beholder-wake_up\", [\"Block-Blocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: ["},{"event":"cmd_output","timestamp":1607098340,"output":"\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, obse"},{"event":"cmd_output","timestamp":1607098340,"output":"rved_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_reques"},{"event":"cmd_output","timestamp":1607098340,"output":"t, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervi"},{"event":"cmd_output","timestamp":1607098340,"output":"sor: :skip}\n\u001b[0m\u001b[22m\n16:12:20.162 [info] Periodic from module Elixir.Block.Blocks.STMHandler.Sto"},{"event":"cmd_output","timestamp":1607098340,"output":"ppingState with name Elixir.Block.Blocks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\""},{"event":"cmd_output","timestamp":1607098340,"output":"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states:"},{"event":"cmd_output","timestamp":1607098340,"output":" [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_stat"},{"event":"cmd_output","timestamp":1607098340,"output":"e: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :upda"},{"event":"cmd_output","timestamp":1607098340,"output":"ted_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :sk"},{"event":"cmd_output","timestamp":1607098340,"output":"ip}\n\u001b[0m\u001b[22m\n16:12:20.162 [info] Periodic from module Elixir.Block.Tasks.STMHandler.PendingState"},{"event":"cmd_output","timestamp":1607098340,"output":" with name Elixir.Block.Tasks.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder"},{"event":"cmd_output","timestamp":1607098340,"output":"-wake_up\", [\"Block-Tasks-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"running\", \""},{"event":"cmd_output","timestamp":1607098340,"output":"done\"], cooling_time_sec: 0, initial_query: Block.Tasks.Model.Tasks, observed_state: \"pending\", publ"},{"event":"cmd_output","timestamp":1607098340,"output":"isher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :re"},{"event":"cmd_output","timestamp":1607098340,"output":"covery_count, :block_id, :build_request_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip"},{"event":"cmd_output","timestamp":1607098340,"output":"}\n\u001b[0m\u001b[22m\n16:12:20.162 [info] Periodic from module Elixir.Block.Tasks.STMHandler.RunningState w"},{"event":"cmd_output","timestamp":1607098340,"output":"ith name Elixir.Block.Tasks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-w"},{"event":"cmd_output","timestamp":1607098340,"output":"ake_up\", [\"Block-Tasks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"st"},{"event":"cmd_output","timestamp":1607098340,"output":"opping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"run"},{"event":"cmd_output","timestamp":1607098340,"output":"ning\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, "},{"event":"cmd_output","timestamp":1607098340,"output":":state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098340,"output":"[22m\n16:12:20.162 [info] Periodic from module Elixir.Block.Tasks.STMHandler.StoppingState with nam"},{"event":"cmd_output","timestamp":1607098340,"output":"e Elixir.Block.Tasks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up"},{"event":"cmd_output","timestamp":1607098340,"output":"\", [\"Block-Tasks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"]"},{"event":"cmd_output","timestamp":1607098340,"output":", cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"stopping\", publishe"},{"event":"cmd_output","timestamp":1607098340,"output":"r_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recove"},{"event":"cmd_output","timestamp":1607098340,"output":"ry_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:20."},{"event":"cmd_output","timestamp":1607098340,"output":"277 [info] ppl_id: 95bd37e3-226b-4f4a-80b5-55c88f4d900e, type: PplRequests, event: persisted source"},{"event":"cmd_output","timestamp":1607098340,"output":"_args for pipeline: 95bd37e3-226b-4f4a-80b5-55c88f4d900e, origin: Elixir.Ppl.PplRequests.Model.PplRe"},{"event":"cmd_output","timestamp":1607098340,"output":"questsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:20.280 [info] ppl_id: 95bd37e3-226b-4f4a-80b"},{"event":"cmd_output","timestamp":1607098340,"output":"5-55c88f4d900e, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098340,"output":"n: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:20.305 [info] ppl_id: 95bd37e"},{"event":"cmd_output","timestamp":1607098340,"output":"3-226b-4f4a-80b5-55c88f4d900e, type: PplSubInits, state: regular_init, event: exit_scheduling, recov"},{"event":"cmd_output","timestamp":1607098340,"output":"ery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:20.340 [inf"},{"event":"cmd_output","timestamp":1607098340,"output":"o] ppl_id: 95bd37e3-226b-4f4a-80b5-55c88f4d900e, type: PplRequests, event: persisted definition for"},{"event":"cmd_output","timestamp":1607098340,"output":" request with request_token: 7c560226-364b-11eb-96ff-5254005464e2, origin: Elixir.Ppl.PplRequests.Mo"},{"event":"cmd_output","timestamp":1607098340,"output":"del.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:20.348 [info] ppl_id: not_avail"},{"event":"cmd_output","timestamp":1607098340,"output":"able, event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n"},{"event":"cmd_output","timestamp":1607098340,"output":"\u001b[0m\u001b[22m\n16:12:20.348 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularIni"},{"event":"cmd_output","timestamp":1607098340,"output":"tState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:20.348 [info] ppl_id: 95bd37e3-226b-4f4a-80b5-55c88f4d90"},{"event":"cmd_output","timestamp":1607098340,"output":"0e, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098340,"output":" Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:20.349 [info"},{"event":"cmd_output","timestamp":1607098340,"output":"] ppl_id: 95bd37e3-226b-4f4a-80b5-55c88f4d900e, type: PplBlocks, block_index: 1, state: initializin"},{"event":"cmd_output","timestamp":1607098340,"output":"g, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all"},{"event":"cmd_output","timestamp":1607098340,"output":"_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:20.352 [info] ppl_id: 95bd37e3-226b-4f4a-80b5-55c88f4d900e, type: "},{"event":"cmd_output","timestamp":1607098340,"output":"PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098340,"output":"Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:20.363 [info] ppl_id: 95bd37e3-226b-4f4"},{"event":"cmd_output","timestamp":1607098340,"output":"a-80b5-55c88f4d900e, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recove"},{"event":"cmd_output","timestamp":1607098340,"output":"ry_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:20.363 [info"},{"event":"cmd_output","timestamp":1607098340,"output":"] ppl_id: 95bd37e3-226b-4f4a-80b5-55c88f4d900e, type: Ppls, state: pending, event: exit_scheduling,"},{"event":"cmd_output","timestamp":1607098340,"output":" recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:20.37"},{"event":"cmd_output","timestamp":1607098340,"output":"9 [info] ppl_id: 95bd37e3-226b-4f4a-80b5-55c88f4d900e, type: PplBlocks, block_index: 1, state: wait"},{"event":"cmd_output","timestamp":1607098340,"output":"ing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L9"},{"event":"cmd_output","timestamp":1607098340,"output":"0), \n\u001b[0m\u001b[22m\n16:12:20.381 [info] ppl_id: 95bd37e3-226b-4f4a-80b5-55c88f4d900e, type: Ppls, stat"},{"event":"cmd_output","timestamp":1607098340,"output":"e: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chan"},{"event":"cmd_output","timestamp":1607098340,"output":"ge/1(L90), \n\u001b[0m\u001b[22m\n16:12:20.392 [info] ppl_id: 95bd37e3-226b-4f4a-80b5-55c88f4d900e, type: Ppl"},{"event":"cmd_output","timestamp":1607098340,"output":"s, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_sta"},{"event":"cmd_output","timestamp":1607098340,"output":"te_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:20.399 [info] PplBlocks WaitingState STM is scheduling block 0"},{"event":"cmd_output","timestamp":1607098340,"output":" from pipeline: \"95bd37e3-226b-4f4a-80b5-55c88f4d900e\"\n\u001b[0m\u001b[22m\n16:12:20.412 [info] block_id: c1"},{"event":"cmd_output","timestamp":1607098340,"output":"b7a979-5c5f-4ad7-ae1f-2d6d4bb5b37f, type: BlockRequests, event: persisted block run request from ppl"},{"event":"cmd_output","timestamp":1607098340,"output":" 95bd37e3-226b-4f4a-80b5-55c88f4d900e for block 0, origin: Elixir.Block.BlockRequests.Model.BlockReq"},{"event":"cmd_output","timestamp":1607098340,"output":"uestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:20.414 [info] block_id: c1b7a979-5c5f-4ad7"},{"event":"cmd_output","timestamp":1607098340,"output":"-ae1f-2d6d4bb5b37f, type: Blocks, state: initializing, event: initializing, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098340,"output":"n: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:20.419 [info] Block 0 "},{"event":"cmd_output","timestamp":1607098340,"output":"of pipeline with id: 95bd37e3-226b-4f4a-80b5-55c88f4d900e scheduled in block service with id: : \"c1b"},{"event":"cmd_output","timestamp":1607098340,"output":"7a979-5c5f-4ad7-ae1f-2d6d4bb5b37f\"\n\u001b[0m\u001b[22m\n16:12:20.424 [info] block_id: c1b7a979-5c5f-4ad7-ae1"},{"event":"cmd_output","timestamp":1607098340,"output":"f-2d6d4bb5b37f, type: BlockRequests, event: persisted build and sub_ppl details for block_request: c"},{"event":"cmd_output","timestamp":1607098340,"output":"1b7a979-5c5f-4ad7-ae1f-2d6d4bb5b37f, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.i"},{"event":"cmd_output","timestamp":1607098340,"output":"nsert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:20.426 [info] ppl_id: 95bd37e3-226b-4f4a-80b5-55c88f4d900e, "},{"event":"cmd_output","timestamp":1607098340,"output":"type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098340,"output":"Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:20.428 [info] block_id: c1b7a979"},{"event":"cmd_output","timestamp":1607098340,"output":"-5c5f-4ad7-ae1f-2d6d4bb5b37f, type: Tasks, state: pending, event: created, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098340,"output":": Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:20.432 [info]"},{"event":"cmd_output","timestamp":1607098340,"output":" block_id: c1b7a979-5c5f-4ad7-ae1f-2d6d4bb5b37f, type: Blocks, state: running, event: exit_scheduli"},{"event":"cmd_output","timestamp":1607098340,"output":"ng, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:20"},{"event":"cmd_output","timestamp":1607098340,"output":".500 [info] block_id: c1b7a979-5c5f-4ad7-ae1f-2d6d4bb5b37f, type: Tasks, state: running, event: exi"},{"event":"cmd_output","timestamp":1607098340,"output":"t_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098340,"output":"\n16:12:20.736 [info] block_id: c1b7a979-5c5f-4ad7-ae1f-2d6d4bb5b37f, type: Tasks, state: done, eve"},{"event":"cmd_output","timestamp":1607098340,"output":"nt: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b["},{"event":"cmd_output","timestamp":1607098340,"output":"0m\u001b[22m\n16:12:20.747 [info] block_id: c1b7a979-5c5f-4ad7-ae1f-2d6d4bb5b37f, type: Blocks, state: d"},{"event":"cmd_output","timestamp":1607098340,"output":"one, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L9"},{"event":"cmd_output","timestamp":1607098340,"output":"0), \n\u001b[0m\u001b[22m\n16:12:20.758 [info] ppl_id: 95bd37e3-226b-4f4a-80b5-55c88f4d900e, block_id: c1b7a9"},{"event":"cmd_output","timestamp":1607098340,"output":"79-5c5f-4ad7-ae1f-2d6d4bb5b37f, type: PplBlocks, block_index: 0, state: done, result: passed, event:"},{"event":"cmd_output","timestamp":1607098340,"output":" exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098340,"output":"[22m\n16:12:20.767 [info] PplBlocks WaitingState STM is scheduling block 1 from pipeline: \"95bd37e3"},{"event":"cmd_output","timestamp":1607098340,"output":"-226b-4f4a-80b5-55c88f4d900e\"\n\u001b[0m\u001b[22m\n16:12:20.773 [info] block_id: 31279fe0-7a50-4bc2-8e31-141"},{"event":"cmd_output","timestamp":1607098340,"output":"80f078cdd, type: BlockRequests, event: persisted block run request from ppl 95bd37e3-226b-4f4a-80b5-"},{"event":"cmd_output","timestamp":1607098340,"output":"55c88f4d900e for block 1, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_resp"},{"event":"cmd_output","timestamp":1607098340,"output":"onse/4(L35), \n\u001b[0m\u001b[22m\n16:12:20.776 [info] block_id: 31279fe0-7a50-4bc2-8e31-14180f078cdd, type:"},{"event":"cmd_output","timestamp":1607098340,"output":" Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Mo"},{"event":"cmd_output","timestamp":1607098340,"output":"del.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:20.776 [info] Block 1 of pipeline with id: 95bd"},{"event":"cmd_output","timestamp":1607098340,"output":"37e3-226b-4f4a-80b5-55c88f4d900e scheduled in block service with id: : \"31279fe0-7a50-4bc2-8e31-1418"},{"event":"cmd_output","timestamp":1607098340,"output":"0f078cdd\"\n\u001b[0m\u001b[22m\n16:12:20.781 [info] ppl_id: 95bd37e3-226b-4f4a-80b5-55c88f4d900e, type: PplBl"},{"event":"cmd_output","timestamp":1607098340,"output":"ocks, block_index: 1, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loop"},{"event":"cmd_output","timestamp":1607098340,"output":"er.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:20.785 [info] block_id: 31279fe0-7a50-4bc2-"},{"event":"cmd_output","timestamp":1607098340,"output":"8e31-14180f078cdd, type: BlockRequests, event: persisted build and sub_ppl details for block_request"},{"event":"cmd_output","timestamp":1607098340,"output":": 31279fe0-7a50-4bc2-8e31-14180f078cdd, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQuerie"},{"event":"cmd_output","timestamp":1607098340,"output":"s.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:20.789 [info] block_id: 31279fe0-7a50-4bc2-8e31-14180f078"},{"event":"cmd_output","timestamp":1607098340,"output":"cdd, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STM"},{"event":"cmd_output","timestamp":1607098340,"output":"Handler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:20.795 [info] block_id: 31279fe0-7a50"},{"event":"cmd_output","timestamp":1607098340,"output":"-4bc2-8e31-14180f078cdd, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098340,"output":"igin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:20.835 [info] block_id: 31"},{"event":"cmd_output","timestamp":1607098340,"output":"279fe0-7a50-4bc2-8e31-14180f078cdd, type: Tasks, state: running, event: exit_scheduling, recovery_co"},{"event":"cmd_output","timestamp":1607098340,"output":"unt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:20.849 [info] bl"},{"event":"cmd_output","timestamp":1607098340,"output":"ock_id: 31279fe0-7a50-4bc2-8e31-14180f078cdd, type: Tasks, state: done, event: exit_scheduling, reco"},{"event":"cmd_output","timestamp":1607098340,"output":"very_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:20.856 [in"},{"event":"cmd_output","timestamp":1607098340,"output":"fo] block_id: 31279fe0-7a50-4bc2-8e31-14180f078cdd, type: Blocks, state: done, event: exit_scheduli"},{"event":"cmd_output","timestamp":1607098340,"output":"ng, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:20"},{"event":"cmd_output","timestamp":1607098340,"output":".868 [info] ppl_id: 95bd37e3-226b-4f4a-80b5-55c88f4d900e, block_id: 31279fe0-7a50-4bc2-8e31-14180f0"},{"event":"cmd_output","timestamp":1607098340,"output":"78cdd, type: PplBlocks, block_index: 1, state: done, result: passed, event: exit_scheduling, recover"},{"event":"cmd_output","timestamp":1607098340,"output":"y_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:20.875 [info]"},{"event":"cmd_output","timestamp":1607098340,"output":" ppl_id: 95bd37e3-226b-4f4a-80b5-55c88f4d900e, type: Ppls, state: done, result: passed, event: exit"},{"event":"cmd_output","timestamp":1607098340,"output":"_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098340,"output":"\n16:12:20.916 [info] Persisted delete_request for pipelines from project with project_id: to-delete"},{"event":"cmd_output","timestamp":1607098340,"output":": %Ppl.DeleteRequests.Model.DeleteRequests{__meta__: #Ecto.Schema.Metadata<:loaded, \"delete_requests"},{"event":"cmd_output","timestamp":1607098340,"output":"\">, error_description: nil, id: 1, in_scheduling: false, inserted_at: ~N[2020-12-04 16:12:20.914808]"},{"event":"cmd_output","timestamp":1607098340,"output":", project_id: \"to-delete\", recovery_count: 0, requester: \"sudo\", result: nil, result_reason: nil, st"},{"event":"cmd_output","timestamp":1607098340,"output":"ate: \"pending\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12"},{"event":"cmd_output","timestamp":1607098340,"output":":20.914823]}\n\u001b[0m\u001b[22m\n16:12:20.925 [info] Periodic from module Elixir.Ppl.DeleteRequests.STMHand"},{"event":"cmd_output","timestamp":1607098340,"output":"ler.PendingState with name Elixir.Ppl.DeleteRequests.STMHandler.PendingState :: period: 100 ms, metr"},{"event":"cmd_output","timestamp":1607098340,"output":"ic_name: {\"Ppl.beholder-wake_up\", [\"Ppl-DeleteRequests-STMHandler-PendingState\"]}, recurring args: %"},{"event":"cmd_output","timestamp":1607098340,"output":"{allowed_states: [\"deleting\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.DeleteRequests.Model"},{"event":"cmd_output","timestamp":1607098340,"output":".DeleteRequests, observed_state: \"pending\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id"},{"event":"cmd_output","timestamp":1607098340,"output":", :terminate_request, :updated_at, :state, :recovery_count, :project_id], schema: Ppl.DeleteRequests"},{"event":"cmd_output","timestamp":1607098340,"output":".Model.DeleteRequests, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:20.933 [info] Periodic from module"},{"event":"cmd_output","timestamp":1607098340,"output":" Elixir.Ppl.DeleteRequests.STMHandler.DeletingState with name Elixir.Ppl.DeleteRequests.STMHandler.D"},{"event":"cmd_output","timestamp":1607098340,"output":"eletingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-DeleteRequests-STMHandle"},{"event":"cmd_output","timestamp":1607098340,"output":"r-DeletingState\"]}, recurring args: %{allowed_states: [\"deleting\", \"queue_deleting\", \"done\"], coolin"},{"event":"cmd_output","timestamp":1607098340,"output":"g_time_sec: -2, initial_query: #Ecto.Query, observed_state: \"deleti"},{"event":"cmd_output","timestamp":1607098340,"output":"ng\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :sta"},{"event":"cmd_output","timestamp":1607098340,"output":"te, :recovery_count, :project_id], schema: Ppl.DeleteRequests.Model.DeleteRequests, task_supervisor:"},{"event":"cmd_output","timestamp":1607098340,"output":" :skip}\n\u001b[0m\u001b[22m\n16:12:20.937 [info] Periodic from module Elixir.Ppl.DeleteRequests.STMHandler.Q"},{"event":"cmd_output","timestamp":1607098340,"output":"ueueDeletingState with name Elixir.Ppl.DeleteRequests.STMHandler.QueueDeletingState :: period: 100 m"},{"event":"cmd_output","timestamp":1607098340,"output":"s, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-DeleteRequests-STMHandler-QueueDeletingState\"]}, recu"},{"event":"cmd_output","timestamp":1607098340,"output":"rring args: %{allowed_states: [\"queue_deleting\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.D"},{"event":"cmd_output","timestamp":1607098340,"output":"eleteRequests.Model.DeleteRequests, observed_state: \"queue_deleting\", publisher_cb: :skip, repo: Ppl"},{"event":"cmd_output","timestamp":1607098340,"output":".EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :project_id], "},{"event":"cmd_output","timestamp":1607098341,"output":"schema: Ppl.DeleteRequests.Model.DeleteRequests, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:21.041 [i"},{"event":"cmd_output","timestamp":1607098341,"output":"nfo] type: DeleteRequests, state: deleting, event: exit_scheduling, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098341,"output":"ir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:21.147 [info] Deleted pipeline 95bd3"},{"event":"cmd_output","timestamp":1607098341,"output":"7e3-226b-4f4a-80b5-55c88f4d900e from project:: \"to-delete\"\n\u001b[0m\u001b[22m\n16:12:21.279 [info] Deleted "},{"event":"cmd_output","timestamp":1607098341,"output":"pipeline cd3ec530-d3ee-4803-9b57-d444ffc9ebc9 from project:: \"to-delete\"\n\u001b[0m\u001b[22m\n16:12:21.391 [i"},{"event":"cmd_output","timestamp":1607098341,"output":"nfo] type: DeleteRequests, state: queue_deleting, event: exit_scheduling, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098341,"output":": Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:21.459 [info] Deleted queue ma"},{"event":"cmd_output","timestamp":1607098341,"output":"ster-.semaphore/semaphore.yml from project:: \"to-delete\"\n\u001b[0m\u001b[22m\n16:12:21.569 [info] type: Dele"},{"event":"cmd_output","timestamp":1607098341,"output":"teRequests, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.l"},{"event":"cmd_output","timestamp":1607098343,"output":"og_state_change/1(L90), \n\u001b[0m\u001b[31m\n16:12:23.950 [error] Describe request failure: {:error, \"Pipeli"},{"event":"cmd_output","timestamp":1607098343,"output":"ne with id: cd3ec530-d3ee-4803-9b57-d444ffc9ebc9 not found\"}\n\u001b[0m\u001b[31m\n16:12:23.954 [error] Descri"},{"event":"cmd_output","timestamp":1607098343,"output":"be request failure: {:error, \"Pipeline with id: 95bd37e3-226b-4f4a-80b5-55c88f4d900e not found\"}\n\u001b["},{"event":"cmd_output","timestamp":1607098343,"output":"0m\u001b[32m\r * test gRPC delete() - deletes everything when given valid params (4692.4ms)\u001b[0m\n * test"},{"event":"cmd_output","timestamp":1607098344,"output":" gRPC describe_topology() - explicit depndencies\u001b[22m\n16:12:24.024 [info] Request: 'run: %{:repo_n"},{"event":"cmd_output","timestamp":1607098344,"output":"ame => \"13_free_topology\", \"branch_id\" => \"24da85db-9ae5-4747-898b-3bbbe1661f70\", \"branch_name\" => \""},{"event":"cmd_output","timestamp":1607098344,"output":"master\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"semaphore.yml\", \"hook_id\" => \"7ea69860-364b-1"},{"event":"cmd_output","timestamp":1607098344,"output":"1eb-a34a-5254005464e2\", \"label\" => \"master\", \"organization_id\" => \"e50ac4bc-2cc6-4922-ba3a-a5abe98a1"},{"event":"cmd_output","timestamp":1607098344,"output":"ad2\", \"owner\" => \"rt\", \"project_id\" => \"86684775-a9b0-4fde-8401-cb94c3c8a2c1\", \"repo_name\" => \"2_bas"},{"event":"cmd_output","timestamp":1607098344,"output":"ic\", \"request_token\" => \"7ea68a78-364b-11eb-8edf-5254005464e2\", \"requester_id\" => \"40e43385-af58-4c8"},{"event":"cmd_output","timestamp":1607098344,"output":"1-802e-45071f320772\", \"service\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secr"},{"event":"cmd_output","timestamp":1607098344,"output":"et\"], \"wf_id\" => \"2a7b41e0-7685-4e4e-aaf7-1181d957ce14\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098344,"output":"16:12:24.027 [info] ppl_id: ba470f00-97d9-4747-92b1-b632a788b601, type: PplRequests, event: persist"},{"event":"cmd_output","timestamp":1607098344,"output":"ed schedule request with request_token: 7ea68a78-364b-11eb-8edf-5254005464e2, origin: Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098344,"output":"Requests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:24.030 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098344,"output":" ba470f00-97d9-4747-92b1-b632a788b601, type: Ppls, state: initializing, event: initializing, recover"},{"event":"cmd_output","timestamp":1607098344,"output":"y_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:2"},{"event":"cmd_output","timestamp":1607098344,"output":"4.034 [info] Project 86684775-a9b0-4fde-8401-cb94c3c8a2c1 and branch masterlatest_wf details update"},{"event":"cmd_output","timestamp":1607098344,"output":"d: \"wf_id: 2a7b41e0-7685-4e4e-aaf7-1181d957ce14, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:12:24.035 [info] Pers"},{"event":"cmd_output","timestamp":1607098344,"output":"isted ppl_sub_init for pipeline with ppl_id: ba470f00-97d9-4747-92b1-b632a788b601: %Ppl.PplSubInits."},{"event":"cmd_output","timestamp":1607098344,"output":"Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: n"},{"event":"cmd_output","timestamp":1607098344,"output":"il, error_description: nil, id: 202, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[202"},{"event":"cmd_output","timestamp":1607098344,"output":"0-12-04 16:12:24.034654], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"ba470f00-97d9-4747-92b1-b632a788b601\", recovery_count: 0, result: nil, "},{"event":"cmd_output","timestamp":1607098344,"output":"result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_a"},{"event":"cmd_output","timestamp":1607098344,"output":"t: ~N[2020-12-04 16:12:24.034660]}\n\u001b[0m\u001b[22m\n16:12:24.039 [info] Periodic from module Elixir.Ppl."},{"event":"cmd_output","timestamp":1607098344,"output":"Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: "},{"event":"cmd_output","timestamp":1607098344,"output":"100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring "},{"event":"cmd_output","timestamp":1607098344,"output":"args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl"},{"event":"cmd_output","timestamp":1607098344,"output":".Ppls.Model.Ppls, observed_state: \"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls."},{"event":"cmd_output","timestamp":1607098344,"output":"STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :upda"},{"event":"cmd_output","timestamp":1607098344,"output":"ted_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :s"},{"event":"cmd_output","timestamp":1607098344,"output":"kip}\n\u001b[0m\u001b[22m\n16:12:24.039 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.Regular"},{"event":"cmd_output","timestamp":1607098344,"output":"InitState with name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period: 100 ms, metric_nam"},{"event":"cmd_output","timestamp":1607098344,"output":"e: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurring args: %{allo"},{"event":"cmd_output","timestamp":1607098344,"output":"wed_states: [\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observe"},{"event":"cmd_output","timestamp":1607098344,"output":"d_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_reques"},{"event":"cmd_output","timestamp":1607098344,"output":"t, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInit"},{"event":"cmd_output","timestamp":1607098344,"output":"s, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:24.040 [info] Periodic from module Elixir.Ppl.PplSubIn"},{"event":"cmd_output","timestamp":1607098344,"output":"its.STMHandler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler.FetchingState :: period: 10"},{"event":"cmd_output","timestamp":1607098344,"output":"0 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring"},{"event":"cmd_output","timestamp":1607098344,"output":" args: %{allowed_states: [\"regular_init\", \"compilation\", \"done\"], cooling_time_sec: -2, initial_quer"},{"event":"cmd_output","timestamp":1607098344,"output":"y: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fetching\", publisher_cb: :skip, repo: Ppl.Ect"},{"event":"cmd_output","timestamp":1607098344,"output":"oRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id],"},{"event":"cmd_output","timestamp":1607098344,"output":" schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:24.042 [info] "},{"event":"cmd_output","timestamp":1607098344,"output":" Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CompilationState with name Elixir.Ppl.PplSub"},{"event":"cmd_output","timestamp":1607098344,"output":"Inits.STMHandler.CompilationState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppl"},{"event":"cmd_output","timestamp":1607098344,"output":"SubInits-STMHandler-CompilationState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compila"},{"event":"cmd_output","timestamp":1607098344,"output":"tion\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, "},{"event":"cmd_output","timestamp":1607098344,"output":"observed_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_"},{"event":"cmd_output","timestamp":1607098344,"output":"request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplS"},{"event":"cmd_output","timestamp":1607098344,"output":"ubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:24.043 [info] Periodic from module Elixir.Ppl.Pp"},{"event":"cmd_output","timestamp":1607098344,"output":"lSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period"},{"event":"cmd_output","timestamp":1607098344,"output":": 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurr"},{"event":"cmd_output","timestamp":1607098344,"output":"ing args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInit"},{"event":"cmd_output","timestamp":1607098344,"output":"s.Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: "},{"event":"cmd_output","timestamp":1607098344,"output":"[:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSu"},{"event":"cmd_output","timestamp":1607098344,"output":"bInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:24.154 [info] ppl_id: ba470f00-"},{"event":"cmd_output","timestamp":1607098344,"output":"97d9-4747-92b1-b632a788b601, type: PplRequests, event: persisted source_args for pipeline: ba470f00-"},{"event":"cmd_output","timestamp":1607098344,"output":"97d9-4747-92b1-b632a788b601, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2"},{"event":"cmd_output","timestamp":1607098344,"output":"(L89), \n\u001b[0m\u001b[22m\n16:12:24.157 [info] ppl_id: ba470f00-97d9-4747-92b1-b632a788b601, type: PplSubI"},{"event":"cmd_output","timestamp":1607098344,"output":"nits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098344,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:24.181 [info] ppl_id: ba470f00-97d9-4747-92b1-b632a788b601"},{"event":"cmd_output","timestamp":1607098344,"output":", type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098344,"output":"Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:24.215 [info] ppl_id: ba470f00-97d9-474"},{"event":"cmd_output","timestamp":1607098344,"output":"7-92b1-b632a788b601, type: PplRequests, event: persisted definition for request with request_token: "},{"event":"cmd_output","timestamp":1607098344,"output":"7ea68a78-364b-11eb-8edf-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert"},{"event":"cmd_output","timestamp":1607098344,"output":"_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:24.220 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queue"},{"event":"cmd_output","timestamp":1607098344,"output":"s{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:12:24.218841], n"},{"event":"cmd_output","timestamp":1607098344,"output":"ame: \"master-.semaphore/semaphore.yml\", organization_id: \"e50ac4bc-2cc6-4922-ba3a-a5abe98a1ad2\", pro"},{"event":"cmd_output","timestamp":1607098344,"output":"ject_id: \"86684775-a9b0-4fde-8401-cb94c3c8a2c1\", queue_id: \"414706dc-0af0-4111-ae79-f28c146b9f39\", s"},{"event":"cmd_output","timestamp":1607098344,"output":"cope: \"project\", updated_at: ~N[2020-12-04 16:12:24.218874], user_generated: false}}\n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098344,"output":"12:24.229 [info] ppl_id: not_available, event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.R"},{"event":"cmd_output","timestamp":1607098344,"output":"egularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:24.229 [info] event: created, origin: Elixir.Pp"},{"event":"cmd_output","timestamp":1607098344,"output":"l.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:24.229 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098344,"output":" ba470f00-97d9-4747-92b1-b632a788b601, type: PplBlocks, block_index: 0, state: initializing, event: "},{"event":"cmd_output","timestamp":1607098344,"output":"created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L10"},{"event":"cmd_output","timestamp":1607098344,"output":"5), \n\u001b[0m\u001b[22m\n16:12:24.229 [info] ppl_id: ba470f00-97d9-4747-92b1-b632a788b601, type: PplBlocks,"},{"event":"cmd_output","timestamp":1607098344,"output":" block_index: 1, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubIn"},{"event":"cmd_output","timestamp":1607098344,"output":"its.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:24.229 [info] ppl_id: ba470f00-"},{"event":"cmd_output","timestamp":1607098344,"output":"97d9-4747-92b1-b632a788b601, type: PplBlocks, block_index: 2, state: initializing, event: created, r"},{"event":"cmd_output","timestamp":1607098344,"output":"ecovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098344,"output":"\u001b[22m\n16:12:24.229 [info] ppl_id: ba470f00-97d9-4747-92b1-b632a788b601, type: PplBlocks, block_ind"},{"event":"cmd_output","timestamp":1607098344,"output":"ex: 3, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHan"},{"event":"cmd_output","timestamp":1607098344,"output":"dler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:24.229 [info] ppl_id: ba470f00-97d9-4747-"},{"event":"cmd_output","timestamp":1607098344,"output":"92b1-b632a788b601, type: PplBlocks, block_index: 4, state: initializing, event: created, recovery_co"},{"event":"cmd_output","timestamp":1607098344,"output":"unt: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098344,"output":"12:24.232 [info] ppl_id: ba470f00-97d9-4747-92b1-b632a788b601, type: PplSubInits, state: done, resu"},{"event":"cmd_output","timestamp":1607098344,"output":"lt: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chan"},{"event":"cmd_output","timestamp":1607098344,"output":"ge/1(L90), \n\u001b[0m\u001b[22m\n16:12:24.247 [info] ppl_id: ba470f00-97d9-4747-92b1-b632a788b601, type: Ppl"},{"event":"cmd_output","timestamp":1607098344,"output":"s, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_sta"},{"event":"cmd_output","timestamp":1607098344,"output":"te_change/1(L90), \n\u001b[0m\u001b[32m\r * test gRPC describe_topology() - explicit depndencies (300.0ms)\u001b[0m"},{"event":"cmd_output","timestamp":1607098344,"output":"\n * test gRPC validate_yaml() - scheduled pipeline execution passed, origin data saved\u001b[22m\n16:12"},{"event":"cmd_output","timestamp":1607098344,"output":":24.308 [info] Request: 'run: %{\"branch_id\" => \"b234a675-a90b-4de2-ba7a-59e6b6f7b1b4\", \"branch_name"},{"event":"cmd_output","timestamp":1607098344,"output":"\" => \"master\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"semaphore.yml\", \"hook_id\" => \"7ed1edee-"},{"event":"cmd_output","timestamp":1607098344,"output":"364b-11eb-bae5-5254005464e2\", \"label\" => \"master\", \"organization_id\" => \"134f2829-201c-42c4-adfa-c04"},{"event":"cmd_output","timestamp":1607098344,"output":"1f057afe9\", \"owner\" => \"rt\", \"project_id\" => \"77736474-659a-4e43-9ded-626dafa5ef65\", \"repo_name\" => "},{"event":"cmd_output","timestamp":1607098344,"output":"\"5_v1_full\", \"request_token\" => \"7ed1e588-364b-11eb-82b4-5254005464e2\", \"requester_id\" => \"837437a0-"},{"event":"cmd_output","timestamp":1607098344,"output":"b4a7-4988-8ab0-de0aaaaf4e5a\", \"service\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"cli"},{"event":"cmd_output","timestamp":1607098344,"output":"ent_secret\"], \"wf_id\" => \"efb3fbe2-78c5-4e18-8ef4-0ba98abd6e1d\", \"working_dir\" => \".semaphore\"}\n\u001b[0"},{"event":"cmd_output","timestamp":1607098344,"output":"m\u001b[22m\n16:12:24.311 [info] ppl_id: 2b788786-0a8b-44ff-83da-f42c7114dff4, type: PplRequests, event:"},{"event":"cmd_output","timestamp":1607098344,"output":" persisted schedule request with request_token: 7ed1e588-364b-11eb-82b4-5254005464e2, origin: Elixir"},{"event":"cmd_output","timestamp":1607098344,"output":".Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:24.315 [info] "},{"event":"cmd_output","timestamp":1607098344,"output":" ppl_id: 2b788786-0a8b-44ff-83da-f42c7114dff4, type: Ppls, state: initializing, event: initializing,"},{"event":"cmd_output","timestamp":1607098344,"output":" recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098344,"output":"\n16:12:24.320 [info] Project 77736474-659a-4e43-9ded-626dafa5ef65 and branch masterlatest_wf detail"},{"event":"cmd_output","timestamp":1607098344,"output":"s updated: \"wf_id: efb3fbe2-78c5-4e18-8ef4-0ba98abd6e1d, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:12:24.321 [inf"},{"event":"cmd_output","timestamp":1607098344,"output":"o] Persisted ppl_sub_init for pipeline with ppl_id: 2b788786-0a8b-44ff-83da-f42c7114dff4: %Ppl.PplS"},{"event":"cmd_output","timestamp":1607098344,"output":"ubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_ta"},{"event":"cmd_output","timestamp":1607098344,"output":"sk_id: nil, error_description: nil, id: 203, in_scheduling: false, init_type: \"regular\", inserted_at"},{"event":"cmd_output","timestamp":1607098344,"output":": ~N[2020-12-04 16:12:24.320718], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"2b788786-0a8b-44ff-83da-f42c7114dff4\", recovery_count: 0, resul"},{"event":"cmd_output","timestamp":1607098344,"output":"t: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, u"},{"event":"cmd_output","timestamp":1607098344,"output":"pdated_at: ~N[2020-12-04 16:12:24.320725]}\n\u001b[0m\u001b[22m\n16:12:24.325 [info] Periodic from module Eli"},{"event":"cmd_output","timestamp":1607098344,"output":"xir.Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: "},{"event":"cmd_output","timestamp":1607098344,"output":"period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, re"},{"event":"cmd_output","timestamp":1607098344,"output":"curring args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_qu"},{"event":"cmd_output","timestamp":1607098344,"output":"ery: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher_cb: #Function<0.125326080/1 in P"},{"event":"cmd_output","timestamp":1607098344,"output":"pl.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_reques"},{"event":"cmd_output","timestamp":1607098344,"output":"t, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_superv"},{"event":"cmd_output","timestamp":1607098344,"output":"isor: :skip}\n\u001b[0m\u001b[22m\n16:12:24.326 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.Pendin"},{"event":"cmd_output","timestamp":1607098344,"output":"gState with name Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.behol"},{"event":"cmd_output","timestamp":1607098344,"output":"der-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"pending\", \""},{"event":"cmd_output","timestamp":1607098344,"output":"queuing\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_stat"},{"event":"cmd_output","timestamp":1607098344,"output":"e: \"pending\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo:"},{"event":"cmd_output","timestamp":1607098344,"output":" Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :"},{"event":"cmd_output","timestamp":1607098344,"output":"ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:12:24.327 "},{"event":"cmd_output","timestamp":1607098344,"output":"[info] Periodic from module Elixir.Ppl.Ppls.STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHa"},{"event":"cmd_output","timestamp":1607098344,"output":"ndler.QueuingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Qu"},{"event":"cmd_output","timestamp":1607098344,"output":"euingState\"]}, recurring args: %{allowed_states: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -"},{"event":"cmd_output","timestamp":1607098344,"output":"2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", publisher_cb: #Function<0.12510284"},{"event":"cmd_output","timestamp":1607098344,"output":"3/1 in Ppl.Ppls.STMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_req"},{"event":"cmd_output","timestamp":1607098344,"output":"uest, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_sup"},{"event":"cmd_output","timestamp":1607098344,"output":"ervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:24.327 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.Run"},{"event":"cmd_output","timestamp":1607098344,"output":"ningState with name Elixir.Ppl.Ppls.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.be"},{"event":"cmd_output","timestamp":1607098344,"output":"holder-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\""},{"event":"cmd_output","timestamp":1607098344,"output":", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"ru"},{"event":"cmd_output","timestamp":1607098344,"output":"nning\", publisher_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler.RunningState.args/0>, repo: Ppl."},{"event":"cmd_output","timestamp":1607098344,"output":"EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_i"},{"event":"cmd_output","timestamp":1607098344,"output":"d], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:12:24.328 [info"},{"event":"cmd_output","timestamp":1607098344,"output":"] Periodic from module Elixir.Ppl.Ppls.STMHandler.StoppingState with name Elixir.Ppl.Ppls.STMHandle"},{"event":"cmd_output","timestamp":1607098344,"output":"r.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Stopp"},{"event":"cmd_output","timestamp":1607098344,"output":"ingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_q"},{"event":"cmd_output","timestamp":1607098344,"output":"uery: Ppl.Ppls.Model.Ppls, observed_state: \"stopping\", publisher_cb: #Function<0.71803493/1 in Ppl.P"},{"event":"cmd_output","timestamp":1607098344,"output":"pls.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :upda"},{"event":"cmd_output","timestamp":1607098344,"output":"ted_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :s"},{"event":"cmd_output","timestamp":1607098344,"output":"kip}\n\u001b[0m\u001b[22m\n16:12:24.329 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.Created"},{"event":"cmd_output","timestamp":1607098344,"output":"State with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 100 ms, metric_name: {\"Ppl"},{"event":"cmd_output","timestamp":1607098344,"output":".beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args: %{allowed_states: "},{"event":"cmd_output","timestamp":1607098344,"output":"[\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observe"},{"event":"cmd_output","timestamp":1607098344,"output":"d_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :u"},{"event":"cmd_output","timestamp":1607098344,"output":"pdated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, ta"},{"event":"cmd_output","timestamp":1607098344,"output":"sk_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:24.329 [info] Periodic from module Elixir.Ppl.PplSubInits.S"},{"event":"cmd_output","timestamp":1607098344,"output":"TMHandler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 ms,"},{"event":"cmd_output","timestamp":1607098344,"output":" metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring args"},{"event":"cmd_output","timestamp":1607098344,"output":": %{allowed_states: [\"regular_init\", \"compilation\", \"done\"], cooling_time_sec: -2, initial_query: Pp"},{"event":"cmd_output","timestamp":1607098344,"output":"l.PplSubInits.Model.PplSubInits, observed_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo"},{"event":"cmd_output","timestamp":1607098344,"output":", returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], sche"},{"event":"cmd_output","timestamp":1607098344,"output":"ma: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:24.330 [info] Peri"},{"event":"cmd_output","timestamp":1607098344,"output":"odic from module Elixir.Ppl.PplSubInits.STMHandler.CompilationState with name Elixir.Ppl.PplSubInits"},{"event":"cmd_output","timestamp":1607098344,"output":".STMHandler.CompilationState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubIn"},{"event":"cmd_output","timestamp":1607098344,"output":"its-STMHandler-CompilationState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\""},{"event":"cmd_output","timestamp":1607098344,"output":", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, obser"},{"event":"cmd_output","timestamp":1607098344,"output":"ved_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_reque"},{"event":"cmd_output","timestamp":1607098344,"output":"st, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubIni"},{"event":"cmd_output","timestamp":1607098344,"output":"ts, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:24.331 [info] Periodic from module Elixir.Ppl.PplSubI"},{"event":"cmd_output","timestamp":1607098344,"output":"nits.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: per"},{"event":"cmd_output","timestamp":1607098344,"output":"iod: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]},"},{"event":"cmd_output","timestamp":1607098344,"output":" recurring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Mod"},{"event":"cmd_output","timestamp":1607098344,"output":"el.PplSubInits, observed_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: "},{"event":"cmd_output","timestamp":1607098344,"output":"[:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSu"},{"event":"cmd_output","timestamp":1607098344,"output":"bInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:24.331 [info] Periodic from mod"},{"event":"cmd_output","timestamp":1607098344,"output":"ule Elixir.Ppl.PplBlocks.STMHandler.InitializingState with name Elixir.Ppl.PplBlocks.STMHandler.Init"},{"event":"cmd_output","timestamp":1607098344,"output":"ializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-In"},{"event":"cmd_output","timestamp":1607098344,"output":"itializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"waiting\", \"done\"], cooling_t"},{"event":"cmd_output","timestamp":1607098344,"output":"ime_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"initializing\", publisher_"},{"event":"cmd_output","timestamp":1607098344,"output":"cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :r"},{"event":"cmd_output","timestamp":1607098344,"output":"ecovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip"},{"event":"cmd_output","timestamp":1607098344,"output":"}\n\u001b[0m\u001b[22m\n16:12:24.332 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.WaitingState"},{"event":"cmd_output","timestamp":1607098344,"output":" with name Elixir.Ppl.PplBlocks.STMHandler.WaitingState :: period: 1000 ms, metric_name: {\"Ppl.behol"},{"event":"cmd_output","timestamp":1607098344,"output":"der-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurring args: %{allowed_states: [\"waitin"},{"event":"cmd_output","timestamp":1607098344,"output":"g\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_"},{"event":"cmd_output","timestamp":1607098344,"output":"state: \"waiting\", publisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/"},{"event":"cmd_output","timestamp":1607098344,"output":"0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery"},{"event":"cmd_output","timestamp":1607098344,"output":"_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m"},{"event":"cmd_output","timestamp":1607098344,"output":"\u001b[22m\n16:12:24.333 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.RunningState with n"},{"event":"cmd_output","timestamp":1607098344,"output":"ame Elixir.Ppl.PplBlocks.STMHandler.RunningState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wak"},{"event":"cmd_output","timestamp":1607098344,"output":"e_up\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"st"},{"event":"cmd_output","timestamp":1607098344,"output":"opping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state"},{"event":"cmd_output","timestamp":1607098344,"output":": \"running\", publisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0>, "},{"event":"cmd_output","timestamp":1607098344,"output":"repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_cou"},{"event":"cmd_output","timestamp":1607098344,"output":"nt, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip"},{"event":"cmd_output","timestamp":1607098344,"output":"}\n\u001b[0m\u001b[22m\n16:12:24.333 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.StoppingStat"},{"event":"cmd_output","timestamp":1607098344,"output":"e with name Elixir.Ppl.PplBlocks.STMHandler.StoppingState :: period: 1000 ms, metric_name: {\"Ppl.beh"},{"event":"cmd_output","timestamp":1607098344,"output":"older-wake_up\", [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"sto"},{"event":"cmd_output","timestamp":1607098344,"output":"pping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state:"},{"event":"cmd_output","timestamp":1607098344,"output":" \"stopping\", publisher_cb: #Function<0.104215991/1 in Ppl.PplBlocks.STMHandler.StoppingState.args/0>"},{"event":"cmd_output","timestamp":1607098344,"output":", repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_c"},{"event":"cmd_output","timestamp":1607098344,"output":"ount, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :sk"},{"event":"cmd_output","timestamp":1607098344,"output":"ip}\n\u001b[0m\u001b[22m\n16:12:24.334 [info] Periodic from module Elixir.Block.Blocks.STMHandler.Initializin"},{"event":"cmd_output","timestamp":1607098344,"output":"gState with name Elixir.Block.Blocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\""},{"event":"cmd_output","timestamp":1607098344,"output":"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_sta"},{"event":"cmd_output","timestamp":1607098344,"output":"tes: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Blocks.Model.Blocks, observed_st"},{"event":"cmd_output","timestamp":1607098344,"output":"ate: \"initializing\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request,"},{"event":"cmd_output","timestamp":1607098344,"output":" :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_superviso"},{"event":"cmd_output","timestamp":1607098344,"output":"r: :skip}\n\u001b[0m\u001b[22m\n16:12:24.334 [info] Periodic from module Elixir.Block.Blocks.STMHandler.Runni"},{"event":"cmd_output","timestamp":1607098344,"output":"ngState with name Elixir.Block.Blocks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl."},{"event":"cmd_output","timestamp":1607098344,"output":"beholder-wake_up\", [\"Block-Blocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"ru"},{"event":"cmd_output","timestamp":1607098344,"output":"nning\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observe"},{"event":"cmd_output","timestamp":1607098344,"output":"d_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, "},{"event":"cmd_output","timestamp":1607098344,"output":":updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor"},{"event":"cmd_output","timestamp":1607098344,"output":": :skip}\n\u001b[0m\u001b[22m\n16:12:24.334 [info] Periodic from module Elixir.Block.Blocks.STMHandler.Stoppi"},{"event":"cmd_output","timestamp":1607098344,"output":"ngState with name Elixir.Block.Blocks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl"},{"event":"cmd_output","timestamp":1607098344,"output":".beholder-wake_up\", [\"Block-Blocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\""},{"event":"cmd_output","timestamp":1607098344,"output":"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: "},{"event":"cmd_output","timestamp":1607098344,"output":"\"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated"},{"event":"cmd_output","timestamp":1607098344,"output":"_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}"},{"event":"cmd_output","timestamp":1607098344,"output":"\n\u001b[0m\u001b[22m\n16:12:24.335 [info] Periodic from module Elixir.Block.Tasks.STMHandler.PendingState wi"},{"event":"cmd_output","timestamp":1607098344,"output":"th name Elixir.Block.Tasks.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wa"},{"event":"cmd_output","timestamp":1607098344,"output":"ke_up\", [\"Block-Tasks-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"running\", \"don"},{"event":"cmd_output","timestamp":1607098344,"output":"e\"], cooling_time_sec: 0, initial_query: Block.Tasks.Model.Tasks, observed_state: \"pending\", publish"},{"event":"cmd_output","timestamp":1607098344,"output":"er_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recov"},{"event":"cmd_output","timestamp":1607098344,"output":"ery_count, :block_id, :build_request_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n"},{"event":"cmd_output","timestamp":1607098344,"output":"\u001b[0m\u001b[22m\n16:12:24.336 [info] Periodic from module Elixir.Block.Tasks.STMHandler.RunningState with"},{"event":"cmd_output","timestamp":1607098344,"output":" name Elixir.Block.Tasks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake"},{"event":"cmd_output","timestamp":1607098344,"output":"_up\", [\"Block-Tasks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopp"},{"event":"cmd_output","timestamp":1607098344,"output":"ing\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"runnin"},{"event":"cmd_output","timestamp":1607098344,"output":"g\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :st"},{"event":"cmd_output","timestamp":1607098344,"output":"ate, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098344,"output":"m\n16:12:24.336 [info] Periodic from module Elixir.Block.Tasks.STMHandler.StoppingState with name E"},{"event":"cmd_output","timestamp":1607098344,"output":"lixir.Block.Tasks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", "},{"event":"cmd_output","timestamp":1607098344,"output":"[\"Block-Tasks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], c"},{"event":"cmd_output","timestamp":1607098344,"output":"ooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"stopping\", publisher_c"},{"event":"cmd_output","timestamp":1607098344,"output":"b: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_"},{"event":"cmd_output","timestamp":1607098344,"output":"count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:24.455"},{"event":"cmd_output","timestamp":1607098344,"output":" [info] ppl_id: 2b788786-0a8b-44ff-83da-f42c7114dff4, type: PplRequests, event: persisted source_ar"},{"event":"cmd_output","timestamp":1607098344,"output":"gs for pipeline: 2b788786-0a8b-44ff-83da-f42c7114dff4, origin: Elixir.Ppl.PplRequests.Model.PplReque"},{"event":"cmd_output","timestamp":1607098344,"output":"stsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:24.459 [info] ppl_id: 2b788786-0a8b-44ff-83da-f"},{"event":"cmd_output","timestamp":1607098344,"output":"42c7114dff4, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098344,"output":"Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:24.492 [info] ppl_id: 2b788786-0"},{"event":"cmd_output","timestamp":1607098344,"output":"a8b-44ff-83da-f42c7114dff4, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery"},{"event":"cmd_output","timestamp":1607098344,"output":"_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:24.527 [info] "},{"event":"cmd_output","timestamp":1607098344,"output":" ppl_id: 2b788786-0a8b-44ff-83da-f42c7114dff4, type: PplRequests, event: persisted definition for re"},{"event":"cmd_output","timestamp":1607098344,"output":"quest with request_token: 7ed1e588-364b-11eb-82b4-5254005464e2, origin: Elixir.Ppl.PplRequests.Model"},{"event":"cmd_output","timestamp":1607098344,"output":".PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:24.531 [info] Queue persisted: {:o"},{"event":"cmd_output","timestamp":1607098344,"output":"k, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020"},{"event":"cmd_output","timestamp":1607098344,"output":"-12-04 16:12:24.529757], name: \"master-.semaphore/semaphore.yml\", organization_id: \"134f2829-201c-42"},{"event":"cmd_output","timestamp":1607098344,"output":"c4-adfa-c041f057afe9\", project_id: \"77736474-659a-4e43-9ded-626dafa5ef65\", queue_id: \"c2feb075-1eca-"},{"event":"cmd_output","timestamp":1607098344,"output":"4125-b9fc-1a10d5631e32\", scope: \"project\", updated_at: ~N[2020-12-04 16:12:24.529769], user_generate"},{"event":"cmd_output","timestamp":1607098344,"output":"d: false}}\n\u001b[0m\u001b[22m\n16:12:24.546 [info] ppl_id: not_available, event: created, origin: Elixir.Pp"},{"event":"cmd_output","timestamp":1607098344,"output":"l.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:24.546 [info] event: "},{"event":"cmd_output","timestamp":1607098344,"output":"created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098344,"output":":12:24.546 [info] ppl_id: 2b788786-0a8b-44ff-83da-f42c7114dff4, type: PplBlocks, block_index: 0, st"},{"event":"cmd_output","timestamp":1607098344,"output":"ate: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.Regu"},{"event":"cmd_output","timestamp":1607098344,"output":"larInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:24.546 [info] ppl_id: 2b788786-0a8b-44ff-83da-f42c"},{"event":"cmd_output","timestamp":1607098344,"output":"7114dff4, type: PplBlocks, block_index: 1, state: initializing, event: created, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098344,"output":"rigin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:24.553"},{"event":"cmd_output","timestamp":1607098344,"output":" [info] ppl_id: 2b788786-0a8b-44ff-83da-f42c7114dff4, type: PplSubInits, state: done, result: passe"},{"event":"cmd_output","timestamp":1607098344,"output":"d, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90)"},{"event":"cmd_output","timestamp":1607098344,"output":", \n\u001b[0m\u001b[22m\n16:12:24.568 [info] ppl_id: 2b788786-0a8b-44ff-83da-f42c7114dff4, type: PplBlocks, b"},{"event":"cmd_output","timestamp":1607098344,"output":"lock_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM."},{"event":"cmd_output","timestamp":1607098344,"output":"Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:24.574 [info] ppl_id: 2b788786-0a8b-44ff-83da-f42c"},{"event":"cmd_output","timestamp":1607098344,"output":"7114dff4, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loop"},{"event":"cmd_output","timestamp":1607098344,"output":"er.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:24.577 [info] ppl_id: 2b788786-0a8b-44ff-83"},{"event":"cmd_output","timestamp":1607098344,"output":"da-f42c7114dff4, type: PplBlocks, block_index: 1, state: waiting, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098344,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:24.585 [info] p"},{"event":"cmd_output","timestamp":1607098344,"output":"pl_id: 2b788786-0a8b-44ff-83da-f42c7114dff4, type: Ppls, state: queuing, event: exit_scheduling, rec"},{"event":"cmd_output","timestamp":1607098344,"output":"overy_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:24.598 [i"},{"event":"cmd_output","timestamp":1607098344,"output":"nfo] ppl_id: 2b788786-0a8b-44ff-83da-f42c7114dff4, type: Ppls, state: running, event: exit_scheduli"},{"event":"cmd_output","timestamp":1607098344,"output":"ng, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:24"},{"event":"cmd_output","timestamp":1607098344,"output":".608 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"2b788786-0a8b-44ff-83d"},{"event":"cmd_output","timestamp":1607098344,"output":"a-f42c7114dff4\"\n\u001b[0m\u001b[22m\n16:12:24.616 [info] block_id: 016ecd66-149d-4c8b-8c38-777da7875235, typ"},{"event":"cmd_output","timestamp":1607098344,"output":"e: BlockRequests, event: persisted block run request from ppl 2b788786-0a8b-44ff-83da-f42c7114dff4 f"},{"event":"cmd_output","timestamp":1607098344,"output":"or block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \r"},{"event":"cmd_output","timestamp":1607098344,"output":"\n\u001b[0m\u001b[22m\n16:12:24.618 [info] block_id: 016ecd66-149d-4c8b-8c38-777da7875235, type: Blocks, state"},{"event":"cmd_output","timestamp":1607098344,"output":": initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQuer"},{"event":"cmd_output","timestamp":1607098344,"output":"ies.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:24.622 [info] Block 0 of pipeline with id: 2b788786-0a8b-44ff"},{"event":"cmd_output","timestamp":1607098344,"output":"-83da-f42c7114dff4 scheduled in block service with id: : \"016ecd66-149d-4c8b-8c38-777da7875235\"\n\u001b[0"},{"event":"cmd_output","timestamp":1607098344,"output":"m\u001b[22m\n16:12:24.625 [info] ppl_id: 2b788786-0a8b-44ff-83da-f42c7114dff4, type: PplBlocks, block_in"},{"event":"cmd_output","timestamp":1607098344,"output":"dex: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.lo"},{"event":"cmd_output","timestamp":1607098344,"output":"g_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:24.626 [info] block_id: 016ecd66-149d-4c8b-8c38-777da7875"},{"event":"cmd_output","timestamp":1607098344,"output":"235, type: BlockRequests, event: persisted build and sub_ppl details for block_request: 016ecd66-149"},{"event":"cmd_output","timestamp":1607098344,"output":"d-4c8b-8c38-777da7875235, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build"},{"event":"cmd_output","timestamp":1607098344,"output":"/2(L41), \n\u001b[0m\u001b[22m\n16:12:24.628 [info] block_id: 016ecd66-149d-4c8b-8c38-777da7875235, type: Tas"},{"event":"cmd_output","timestamp":1607098344,"output":"ks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.Initia"},{"event":"cmd_output","timestamp":1607098344,"output":"lizingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:24.631 [info] block_id: 016ecd66-149d-4c8b-8c38-777"},{"event":"cmd_output","timestamp":1607098344,"output":"da7875235, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098344,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:24.672 [info] block_id: 016ecd66-149d-4c"},{"event":"cmd_output","timestamp":1607098344,"output":"8b-8c38-777da7875235, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098344,"output":": Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:24.916 [info] block_id: 016ecd"},{"event":"cmd_output","timestamp":1607098344,"output":"66-149d-4c8b-8c38-777da7875235, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098344,"output":" origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:24.925 [info] block_id:"},{"event":"cmd_output","timestamp":1607098344,"output":" 016ecd66-149d-4c8b-8c38-777da7875235, type: Blocks, state: done, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098344,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:24.941 [info] p"},{"event":"cmd_output","timestamp":1607098344,"output":"pl_id: 2b788786-0a8b-44ff-83da-f42c7114dff4, block_id: 016ecd66-149d-4c8b-8c38-777da7875235, type: P"},{"event":"cmd_output","timestamp":1607098344,"output":"plBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098344,"output":"igin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:24.949 [info] PplBlocks Wa"},{"event":"cmd_output","timestamp":1607098344,"output":"itingState STM is scheduling block 1 from pipeline: \"2b788786-0a8b-44ff-83da-f42c7114dff4\"\n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098344,"output":"m\n16:12:24.955 [info] block_id: 005e92a2-742f-4d19-872e-7e83856643d0, type: BlockRequests, event: "},{"event":"cmd_output","timestamp":1607098344,"output":"persisted block run request from ppl 2b788786-0a8b-44ff-83da-f42c7114dff4 for block 1, origin: Elixi"},{"event":"cmd_output","timestamp":1607098344,"output":"r.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:24.957 "},{"event":"cmd_output","timestamp":1607098344,"output":"[info] block_id: 005e92a2-742f-4d19-872e-7e83856643d0, type: Blocks, state: initializing, event: in"},{"event":"cmd_output","timestamp":1607098344,"output":"itializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098344,"output":"\u001b[22m\n16:12:24.957 [info] Block 1 of pipeline with id: 2b788786-0a8b-44ff-83da-f42c7114dff4 schedu"},{"event":"cmd_output","timestamp":1607098344,"output":"led in block service with id: : \"005e92a2-742f-4d19-872e-7e83856643d0\"\n\u001b[0m\u001b[22m\n16:12:24.960 [inf"},{"event":"cmd_output","timestamp":1607098344,"output":"o] ppl_id: 2b788786-0a8b-44ff-83da-f42c7114dff4, type: PplBlocks, block_index: 1, state: running, e"},{"event":"cmd_output","timestamp":1607098344,"output":"vent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n"},{"event":"cmd_output","timestamp":1607098344,"output":"\u001b[0m\u001b[22m\n16:12:24.966 [info] block_id: 005e92a2-742f-4d19-872e-7e83856643d0, type: BlockRequests,"},{"event":"cmd_output","timestamp":1607098344,"output":" event: persisted build and sub_ppl details for block_request: 005e92a2-742f-4d19-872e-7e83856643d0,"},{"event":"cmd_output","timestamp":1607098344,"output":" origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098344,"output":"12:24.968 [info] block_id: 005e92a2-742f-4d19-872e-7e83856643d0, type: Tasks, state: pending, event"},{"event":"cmd_output","timestamp":1607098344,"output":": created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L16"},{"event":"cmd_output","timestamp":1607098344,"output":"7), \n\u001b[0m\u001b[22m\n16:12:24.971 [info] block_id: 005e92a2-742f-4d19-872e-7e83856643d0, type: Blocks, "},{"event":"cmd_output","timestamp":1607098344,"output":"state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_"},{"event":"cmd_output","timestamp":1607098344,"output":"change/1(L90), \n\u001b[0m\u001b[22m\n16:12:24.983 [info] block_id: 005e92a2-742f-4d19-872e-7e83856643d0, typ"},{"event":"cmd_output","timestamp":1607098344,"output":"e: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl."},{"event":"cmd_output","timestamp":1607098345,"output":"log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:25.024 [info] block_id: 005e92a2-742f-4d19-872e-7e83856"},{"event":"cmd_output","timestamp":1607098345,"output":"643d0, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.ST"},{"event":"cmd_output","timestamp":1607098345,"output":"M.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:25.038 [info] block_id: 005e92a2-742f-4d19-872e-"},{"event":"cmd_output","timestamp":1607098345,"output":"7e83856643d0, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098345,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:25.045 [info] ppl_id: 2b788786-0a8b-44ff"},{"event":"cmd_output","timestamp":1607098345,"output":"-83da-f42c7114dff4, block_id: 005e92a2-742f-4d19-872e-7e83856643d0, type: PplBlocks, block_index: 1,"},{"event":"cmd_output","timestamp":1607098345,"output":" state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.I"},{"event":"cmd_output","timestamp":1607098345,"output":"mpl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:25.057 [info] ppl_id: 2b788786-0a8b-44ff-83da-f42c7"},{"event":"cmd_output","timestamp":1607098345,"output":"114dff4, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098345,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test gRPC validate_yaml() - schedul"},{"event":"cmd_output","timestamp":1607098345,"output":"ed pipeline execution passed, origin data saved (1086.4ms)\u001b[0m\n * test gRPC list() - filter by que"},{"event":"cmd_output","timestamp":1607098345,"output":"ue_id\u001b[22m\n16:12:25.406 [info] ppl_id: 2a87ecf1-b627-4289-aa66-333b89adfced, type: PplRequests, ev"},{"event":"cmd_output","timestamp":1607098345,"output":"ent: persisted schedule request with request_token: cdfae374-517d-408d-80b5-9dfccc27dbc6, origin: El"},{"event":"cmd_output","timestamp":1607098345,"output":"ixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:25.408 [in"},{"event":"cmd_output","timestamp":1607098345,"output":"fo] ppl_id: 2a87ecf1-b627-4289-aa66-333b89adfced, type: PplRequests, event: persisted definition fo"},{"event":"cmd_output","timestamp":1607098345,"output":"r request with request_token: cdfae374-517d-408d-80b5-9dfccc27dbc6, origin: Elixir.Ppl.PplRequests.M"},{"event":"cmd_output","timestamp":1607098345,"output":"odel.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:25.412 [info] ppl_id: 2a87ecf1"},{"event":"cmd_output","timestamp":1607098345,"output":"-b627-4289-aa66-333b89adfced, type: Ppls, state: initializing, event: initializing, recovery_count: "},{"event":"cmd_output","timestamp":1607098345,"output":"0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:25.416 [in"},{"event":"cmd_output","timestamp":1607098345,"output":"fo] Persisted ppl_sub_init for pipeline with ppl_id: 2a87ecf1-b627-4289-aa66-333b89adfced: %Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098345,"output":"SubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_t"},{"event":"cmd_output","timestamp":1607098345,"output":"ask_id: nil, error_description: nil, id: 204, in_scheduling: false, init_type: \"regular\", inserted_a"},{"event":"cmd_output","timestamp":1607098345,"output":"t: ~N[2020-12-04 16:12:25.415460], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"2a87ecf1-b627-4289-aa66-333b89adfced\", recovery_count: 0, resu"},{"event":"cmd_output","timestamp":1607098345,"output":"lt: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, "},{"event":"cmd_output","timestamp":1607098345,"output":"updated_at: ~N[2020-12-04 16:12:25.415469]}\n\u001b[0m\u001b[22m\n16:12:25.421 [info] ppl_id: f8caedad-19b1-4"},{"event":"cmd_output","timestamp":1607098345,"output":"f1f-af9b-e8a5e27069e6, type: PplRequests, event: persisted schedule request with request_token: ea4a"},{"event":"cmd_output","timestamp":1607098345,"output":"d9c8-0421-4d72-8fce-f8408d6c8c3c, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_re"},{"event":"cmd_output","timestamp":1607098345,"output":"sponse/2(L55), \n\u001b[0m\u001b[22m\n16:12:25.427 [info] ppl_id: f8caedad-19b1-4f1f-af9b-e8a5e27069e6, type:"},{"event":"cmd_output","timestamp":1607098345,"output":" PplRequests, event: persisted definition for request with request_token: ea4ad9c8-0421-4d72-8fce-f8"},{"event":"cmd_output","timestamp":1607098345,"output":"408d6c8c3c, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098345,"output":"\u001b[22m\n16:12:25.430 [info] ppl_id: f8caedad-19b1-4f1f-af9b-e8a5e27069e6, type: Ppls, state: initial"},{"event":"cmd_output","timestamp":1607098345,"output":"izing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_res"},{"event":"cmd_output","timestamp":1607098345,"output":"ponse/2(L124), \n\u001b[0m\u001b[22m\n16:12:25.434 [info] Persisted ppl_sub_init for pipeline with ppl_id: f8"},{"event":"cmd_output","timestamp":1607098345,"output":"caedad-19b1-4f1f-af9b-e8a5e27069e6: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metada"},{"event":"cmd_output","timestamp":1607098345,"output":"ta<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 205, in_schedul"},{"event":"cmd_output","timestamp":1607098345,"output":"ing: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:25.433103], pipeline_requests: #E"},{"event":"cmd_output","timestamp":1607098345,"output":"cto.Association.NotLoaded, ppl_id: \"f8caedad-19b1-4f1f"},{"event":"cmd_output","timestamp":1607098345,"output":"-af9b-e8a5e27069e6\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate"},{"event":"cmd_output","timestamp":1607098345,"output":"_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:25.433112]}\n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098345,"output":"16:12:25.438 [info] ppl_id: 222a5b80-856f-4331-9e18-18aabc90420d, type: PplRequests, event: persist"},{"event":"cmd_output","timestamp":1607098345,"output":"ed schedule request with request_token: fbf895d1-73e0-46b6-9c5a-5150e6619704, origin: Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098345,"output":"Requests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:25.440 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098345,"output":" 222a5b80-856f-4331-9e18-18aabc90420d, type: PplRequests, event: persisted definition for request wi"},{"event":"cmd_output","timestamp":1607098345,"output":"th request_token: fbf895d1-73e0-46b6-9c5a-5150e6619704, origin: Elixir.Ppl.PplRequests.Model.PplRequ"},{"event":"cmd_output","timestamp":1607098345,"output":"estsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:25.442 [info] ppl_id: 222a5b80-856f-4331-9"},{"event":"cmd_output","timestamp":1607098345,"output":"e18-18aabc90420d, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: E"},{"event":"cmd_output","timestamp":1607098345,"output":"lixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:25.445 [info] Persist"},{"event":"cmd_output","timestamp":1607098345,"output":"ed ppl_sub_init for pipeline with ppl_id: 222a5b80-856f-4331-9e18-18aabc90420d: %Ppl.PplSubInits.Mod"},{"event":"cmd_output","timestamp":1607098345,"output":"el.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil,"},{"event":"cmd_output","timestamp":1607098345,"output":" error_description: nil, id: 206, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-1"},{"event":"cmd_output","timestamp":1607098345,"output":"2-04 16:12:25.444686], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"222a5b80-856f-4331-9e18-18aabc90420d\", recovery_count: 0, result: nil, res"},{"event":"cmd_output","timestamp":1607098345,"output":"ult_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: "},{"event":"cmd_output","timestamp":1607098345,"output":"~N[2020-12-04 16:12:25.444694]}\n\u001b[0m\u001b[22m\n16:12:25.450 [info] ppl_id: 9a062404-4fc1-4b55-bc91-650"},{"event":"cmd_output","timestamp":1607098345,"output":"8c639e269, type: PplRequests, event: persisted schedule request with request_token: 12c82aa4-8492-4b"},{"event":"cmd_output","timestamp":1607098345,"output":"21-acfd-f4e925a7fa87, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55"},{"event":"cmd_output","timestamp":1607098345,"output":"), \n\u001b[0m\u001b[22m\n16:12:25.451 [info] ppl_id: 9a062404-4fc1-4b55-bc91-6508c639e269, type: PplRequests"},{"event":"cmd_output","timestamp":1607098345,"output":", event: persisted definition for request with request_token: 12c82aa4-8492-4b21-acfd-f4e925a7fa87, "},{"event":"cmd_output","timestamp":1607098345,"output":"origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12"},{"event":"cmd_output","timestamp":1607098345,"output":":25.453 [info] ppl_id: 9a062404-4fc1-4b55-bc91-6508c639e269, type: Ppls, state: initializing, event"},{"event":"cmd_output","timestamp":1607098345,"output":": initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124"},{"event":"cmd_output","timestamp":1607098345,"output":"), \n\u001b[0m\u001b[22m\n16:12:25.456 [info] Persisted ppl_sub_init for pipeline with ppl_id: 9a062404-4fc1-"},{"event":"cmd_output","timestamp":1607098345,"output":"4b55-bc91-6508c639e269: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, "},{"event":"cmd_output","timestamp":1607098345,"output":"\"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 207, in_scheduling: false, "},{"event":"cmd_output","timestamp":1607098345,"output":"init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:25.455759], pipeline_requests: #Ecto.Associat"},{"event":"cmd_output","timestamp":1607098345,"output":"ion.NotLoaded, ppl_id: \"9a062404-4fc1-4b55-bc91-6508c6"},{"event":"cmd_output","timestamp":1607098345,"output":"39e269\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: ni"},{"event":"cmd_output","timestamp":1607098345,"output":"l, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:25.455767]}\n\u001b[0m\u001b[22m\n16:12:25.461"},{"event":"cmd_output","timestamp":1607098345,"output":" [info] ppl_id: f4011aa7-ee69-4984-b1d6-9387594654d3, type: PplRequests, event: persisted schedule "},{"event":"cmd_output","timestamp":1607098345,"output":"request with request_token: 3861f68a-d6b6-4c09-99de-97325cd6c7fa, origin: Elixir.Ppl.PplRequests.Mod"},{"event":"cmd_output","timestamp":1607098345,"output":"el.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:25.464 [info] ppl_id: f4011aa7-ee"},{"event":"cmd_output","timestamp":1607098345,"output":"69-4984-b1d6-9387594654d3, type: PplRequests, event: persisted definition for request with request_t"},{"event":"cmd_output","timestamp":1607098345,"output":"oken: 3861f68a-d6b6-4c09-99de-97325cd6c7fa, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries."},{"event":"cmd_output","timestamp":1607098345,"output":"insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:25.468 [info] ppl_id: f4011aa7-ee69-4984-b1d6-93875946"},{"event":"cmd_output","timestamp":1607098345,"output":"54d3, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Pp"},{"event":"cmd_output","timestamp":1607098345,"output":"ls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:25.473 [info] Persisted ppl_sub_i"},{"event":"cmd_output","timestamp":1607098345,"output":"nit for pipeline with ppl_id: f4011aa7-ee69-4984-b1d6-9387594654d3: %Ppl.PplSubInits.Model.PplSubIni"},{"event":"cmd_output","timestamp":1607098345,"output":"ts{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_descr"},{"event":"cmd_output","timestamp":1607098345,"output":"iption: nil, id: 208, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:2"},{"event":"cmd_output","timestamp":1607098345,"output":"5.471982], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"f4011aa7-ee69-4984-b1d6-9387594654d3\", recovery_count: 0, result: nil, result_reason: "},{"event":"cmd_output","timestamp":1607098345,"output":"nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-0"},{"event":"cmd_output","timestamp":1607098345,"output":"4 16:12:25.471993]}\n\u001b[0m\u001b[22m\n16:12:25.477 [info] ppl_id: c7b7aae5-dd73-4d9d-a717-448fc00aa17d, t"},{"event":"cmd_output","timestamp":1607098345,"output":"ype: PplRequests, event: persisted schedule request with request_token: b54d678f-a912-423d-b8ec-5b70"},{"event":"cmd_output","timestamp":1607098345,"output":"4b2c079f, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098345,"output":"2m\n16:12:25.479 [info] ppl_id: c7b7aae5-dd73-4d9d-a717-448fc00aa17d, type: PplRequests, event: per"},{"event":"cmd_output","timestamp":1607098345,"output":"sisted definition for request with request_token: b54d678f-a912-423d-b8ec-5b704b2c079f, origin: Elix"},{"event":"cmd_output","timestamp":1607098345,"output":"ir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:25.481 [inf"},{"event":"cmd_output","timestamp":1607098345,"output":"o] ppl_id: c7b7aae5-dd73-4d9d-a717-448fc00aa17d, type: Ppls, state: initializing, event: initializi"},{"event":"cmd_output","timestamp":1607098345,"output":"ng, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098345,"output":"2m\n16:12:25.484 [info] Persisted ppl_sub_init for pipeline with ppl_id: c7b7aae5-dd73-4d9d-a717-44"},{"event":"cmd_output","timestamp":1607098345,"output":"8fc00aa17d: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_su"},{"event":"cmd_output","timestamp":1607098345,"output":"b_inits\">, compile_task_id: nil, error_description: nil, id: 209, in_scheduling: false, init_type: \""},{"event":"cmd_output","timestamp":1607098345,"output":"regular\", inserted_at: ~N[2020-12-04 16:12:25.483664], pipeline_requests: #Ecto.Association.NotLoade"},{"event":"cmd_output","timestamp":1607098345,"output":"d, ppl_id: \"c7b7aae5-dd73-4d9d-a717-448fc00aa17d\", rec"},{"event":"cmd_output","timestamp":1607098345,"output":"overy_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate"},{"event":"cmd_output","timestamp":1607098345,"output":"_request_desc: nil, updated_at: ~N[2020-12-04 16:12:25.483672]}\n\u001b[0m\u001b[22m\n16:12:25.488 [info] ppl"},{"event":"cmd_output","timestamp":1607098345,"output":"_id: a0905eb0-9159-4e8e-8eb8-7081ae0756aa, type: PplRequests, event: persisted schedule request with"},{"event":"cmd_output","timestamp":1607098345,"output":" request_token: 101ae5e2-0c27-4dd6-8734-d4801eb15419, origin: Elixir.Ppl.PplRequests.Model.PplReques"},{"event":"cmd_output","timestamp":1607098345,"output":"tsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:25.491 [info] ppl_id: a0905eb0-9159-4e8e-8eb8"},{"event":"cmd_output","timestamp":1607098345,"output":"-7081ae0756aa, type: PplRequests, event: persisted definition for request with request_token: 101ae5"},{"event":"cmd_output","timestamp":1607098345,"output":"e2-0c27-4dd6-8734-d4801eb15419, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_defin"},{"event":"cmd_output","timestamp":1607098345,"output":"ition/3(L76), \n\u001b[0m\u001b[22m\n16:12:25.494 [info] ppl_id: a0905eb0-9159-4e8e-8eb8-7081ae0756aa, type: "},{"event":"cmd_output","timestamp":1607098345,"output":"Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.Ppl"},{"event":"cmd_output","timestamp":1607098345,"output":"sQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:25.504 [info] Persisted ppl_sub_init for pipe"},{"event":"cmd_output","timestamp":1607098345,"output":"line with ppl_id: a0905eb0-9159-4e8e-8eb8-7081ae0756aa: %Ppl.PplSubInits.Model.PplSubInits{__meta__:"},{"event":"cmd_output","timestamp":1607098345,"output":" #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil,"},{"event":"cmd_output","timestamp":1607098345,"output":" id: 210, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:25.502800], p"},{"event":"cmd_output","timestamp":1607098345,"output":"ipeline_requests: #Ecto.Association.NotLoaded, ppl_id:"},{"event":"cmd_output","timestamp":1607098345,"output":" \"a0905eb0-9159-4e8e-8eb8-7081ae0756aa\", recovery_count: 0, result: nil, result_reason: nil, state: "},{"event":"cmd_output","timestamp":1607098345,"output":"\"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:25.5"},{"event":"cmd_output","timestamp":1607098345,"output":"02809]}\n\u001b[0m\u001b[22m\n16:12:25.507 [info] ppl_id: 940ce33b-207d-493e-ae11-ce4033b80ba0, type: PplRequ"},{"event":"cmd_output","timestamp":1607098345,"output":"ests, event: persisted schedule request with request_token: b7635df1-5628-48a5-8df1-fb9e8d20f6e4, or"},{"event":"cmd_output","timestamp":1607098345,"output":"igin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:25"},{"event":"cmd_output","timestamp":1607098345,"output":".508 [info] ppl_id: 940ce33b-207d-493e-ae11-ce4033b80ba0, type: PplRequests, event: persisted defin"},{"event":"cmd_output","timestamp":1607098345,"output":"ition for request with request_token: b7635df1-5628-48a5-8df1-fb9e8d20f6e4, origin: Elixir.Ppl.PplRe"},{"event":"cmd_output","timestamp":1607098345,"output":"quests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:25.510 [info] ppl_id: "},{"event":"cmd_output","timestamp":1607098345,"output":"940ce33b-207d-493e-ae11-ce4033b80ba0, type: Ppls, state: initializing, event: initializing, recovery"},{"event":"cmd_output","timestamp":1607098345,"output":"_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:25"},{"event":"cmd_output","timestamp":1607098345,"output":".516 [info] Persisted ppl_sub_init for pipeline with ppl_id: 940ce33b-207d-493e-ae11-ce4033b80ba0: "},{"event":"cmd_output","timestamp":1607098345,"output":"%Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, c"},{"event":"cmd_output","timestamp":1607098345,"output":"ompile_task_id: nil, error_description: nil, id: 211, in_scheduling: false, init_type: \"regular\", in"},{"event":"cmd_output","timestamp":1607098345,"output":"serted_at: ~N[2020-12-04 16:12:25.514824], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"940ce33b-207d-493e-ae11-ce4033b80ba0\", recovery_count:"},{"event":"cmd_output","timestamp":1607098345,"output":" 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_des"},{"event":"cmd_output","timestamp":1607098345,"output":"c: nil, updated_at: ~N[2020-12-04 16:12:25.514859]}\n\u001b[0m\u001b[22m\n16:12:25.521 [info] ppl_id: 8e6d872"},{"event":"cmd_output","timestamp":1607098345,"output":"e-c76d-4cee-949e-7fe3f4fd6c6d, type: PplRequests, event: persisted schedule request with request_tok"},{"event":"cmd_output","timestamp":1607098345,"output":"en: 425cb6cd-4c18-440a-9104-88ad4a059b34, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.pr"},{"event":"cmd_output","timestamp":1607098345,"output":"ocess_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:25.523 [info] ppl_id: 8e6d872e-c76d-4cee-949e-7fe3f4fd6c6"},{"event":"cmd_output","timestamp":1607098345,"output":"d, type: PplRequests, event: persisted definition for request with request_token: 425cb6cd-4c18-440a"},{"event":"cmd_output","timestamp":1607098345,"output":"-9104-88ad4a059b34, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76)"},{"event":"cmd_output","timestamp":1607098345,"output":", \n\u001b[0m\u001b[22m\n16:12:25.526 [info] ppl_id: 8e6d872e-c76d-4cee-949e-7fe3f4fd6c6d, type: Ppls, state:"},{"event":"cmd_output","timestamp":1607098345,"output":" initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.pro"},{"event":"cmd_output","timestamp":1607098345,"output":"cess_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:25.533 [info] Persisted ppl_sub_init for pipeline with pp"},{"event":"cmd_output","timestamp":1607098345,"output":"l_id: 8e6d872e-c76d-4cee-949e-7fe3f4fd6c6d: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schem"},{"event":"cmd_output","timestamp":1607098345,"output":"a.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 212, in"},{"event":"cmd_output","timestamp":1607098345,"output":"_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:25.531685], pipeline_requ"},{"event":"cmd_output","timestamp":1607098345,"output":"ests: #Ecto.Association.NotLoaded, ppl_id: \"8e6d872e-c"},{"event":"cmd_output","timestamp":1607098345,"output":"76d-4cee-949e-7fe3f4fd6c6d\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", t"},{"event":"cmd_output","timestamp":1607098345,"output":"erminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:25.531698]}\n\u001b[0"},{"event":"cmd_output","timestamp":1607098345,"output":"m\u001b[22m\n16:12:25.537 [info] ppl_id: b776f37b-f60f-4093-8526-2ff1c8f5127e, type: PplRequests, event:"},{"event":"cmd_output","timestamp":1607098345,"output":" persisted schedule request with request_token: 2396ad81-2657-45f2-b411-0e0ca338881d, origin: Elixir"},{"event":"cmd_output","timestamp":1607098345,"output":".Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:25.538 [info] "},{"event":"cmd_output","timestamp":1607098345,"output":" ppl_id: b776f37b-f60f-4093-8526-2ff1c8f5127e, type: PplRequests, event: persisted definition for re"},{"event":"cmd_output","timestamp":1607098345,"output":"quest with request_token: 2396ad81-2657-45f2-b411-0e0ca338881d, origin: Elixir.Ppl.PplRequests.Model"},{"event":"cmd_output","timestamp":1607098345,"output":".PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:25.540 [info] ppl_id: b776f37b-f60"},{"event":"cmd_output","timestamp":1607098345,"output":"f-4093-8526-2ff1c8f5127e, type: Ppls, state: initializing, event: initializing, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098345,"output":"rigin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:25.543 [info] "},{"event":"cmd_output","timestamp":1607098345,"output":" Persisted ppl_sub_init for pipeline with ppl_id: b776f37b-f60f-4093-8526-2ff1c8f5127e: %Ppl.PplSubI"},{"event":"cmd_output","timestamp":1607098345,"output":"nits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_"},{"event":"cmd_output","timestamp":1607098345,"output":"id: nil, error_description: nil, id: 213, in_scheduling: false, init_type: \"regular\", inserted_at: ~"},{"event":"cmd_output","timestamp":1607098345,"output":"N[2020-12-04 16:12:25.542421], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"b776f37b-f60f-4093-8526-2ff1c8f5127e\", recovery_count: 0, result: "},{"event":"cmd_output","timestamp":1607098345,"output":"nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, upda"},{"event":"cmd_output","timestamp":1607098345,"output":"ted_at: ~N[2020-12-04 16:12:25.542448]}\n\u001b[0m\u001b[22m\n16:12:25.546 [info] Periodic from module Elixir"},{"event":"cmd_output","timestamp":1607098345,"output":".Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: per"},{"event":"cmd_output","timestamp":1607098345,"output":"iod: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recur"},{"event":"cmd_output","timestamp":1607098345,"output":"ring args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query"},{"event":"cmd_output","timestamp":1607098345,"output":": Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl."},{"event":"cmd_output","timestamp":1607098345,"output":"Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, "},{"event":"cmd_output","timestamp":1607098345,"output":":updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_superviso"},{"event":"cmd_output","timestamp":1607098345,"output":"r: :skip}\n\u001b[0m\u001b[22m\n16:12:25.547 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingSt"},{"event":"cmd_output","timestamp":1607098345,"output":"ate with name Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder"},{"event":"cmd_output","timestamp":1607098345,"output":"-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"pending\", \"que"},{"event":"cmd_output","timestamp":1607098345,"output":"uing\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: "},{"event":"cmd_output","timestamp":1607098345,"output":"\"pending\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Pp"},{"event":"cmd_output","timestamp":1607098345,"output":"l.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl"},{"event":"cmd_output","timestamp":1607098345,"output":"_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:12:25.547 [in"},{"event":"cmd_output","timestamp":1607098345,"output":"fo] Periodic from module Elixir.Ppl.Ppls.STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandl"},{"event":"cmd_output","timestamp":1607098345,"output":"er.QueuingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Queui"},{"event":"cmd_output","timestamp":1607098345,"output":"ngState\"]}, recurring args: %{allowed_states: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, "},{"event":"cmd_output","timestamp":1607098345,"output":"initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", publisher_cb: #Function<0.125102843/1"},{"event":"cmd_output","timestamp":1607098345,"output":" in Ppl.Ppls.STMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_reques"},{"event":"cmd_output","timestamp":1607098345,"output":"t, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_superv"},{"event":"cmd_output","timestamp":1607098345,"output":"isor: :skip}\n\u001b[0m\u001b[22m\n16:12:25.547 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.Runnin"},{"event":"cmd_output","timestamp":1607098345,"output":"gState with name Elixir.Ppl.Ppls.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.behol"},{"event":"cmd_output","timestamp":1607098345,"output":"der-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \""},{"event":"cmd_output","timestamp":1607098345,"output":"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"runni"},{"event":"cmd_output","timestamp":1607098345,"output":"ng\", publisher_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler.RunningState.args/0>, repo: Ppl.Ect"},{"event":"cmd_output","timestamp":1607098345,"output":"oRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id],"},{"event":"cmd_output","timestamp":1607098345,"output":" schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:12:25.547 [info] "},{"event":"cmd_output","timestamp":1607098345,"output":"Periodic from module Elixir.Ppl.Ppls.STMHandler.StoppingState with name Elixir.Ppl.Ppls.STMHandler.S"},{"event":"cmd_output","timestamp":1607098345,"output":"toppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Stopping"},{"event":"cmd_output","timestamp":1607098345,"output":"State\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_quer"},{"event":"cmd_output","timestamp":1607098345,"output":"y: Ppl.Ppls.Model.Ppls, observed_state: \"stopping\", publisher_cb: #Function<0.71803493/1 in Ppl.Ppls"},{"event":"cmd_output","timestamp":1607098345,"output":".STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated"},{"event":"cmd_output","timestamp":1607098345,"output":"_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip"},{"event":"cmd_output","timestamp":1607098345,"output":"}\n\u001b[0m\u001b[22m\n16:12:25.548 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedSta"},{"event":"cmd_output","timestamp":1607098345,"output":"te with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.be"},{"event":"cmd_output","timestamp":1607098345,"output":"holder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args: %{allowed_states: [\"f"},{"event":"cmd_output","timestamp":1607098345,"output":"etching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_s"},{"event":"cmd_output","timestamp":1607098345,"output":"tate: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :upda"},{"event":"cmd_output","timestamp":1607098345,"output":"ted_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_"},{"event":"cmd_output","timestamp":1607098345,"output":"supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:25.548 [info] Periodic from module Elixir.Ppl.PplSubInits.STMH"},{"event":"cmd_output","timestamp":1607098345,"output":"andler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 ms, me"},{"event":"cmd_output","timestamp":1607098345,"output":"tric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %"},{"event":"cmd_output","timestamp":1607098345,"output":"{allowed_states: [\"regular_init\", \"compilation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.P"},{"event":"cmd_output","timestamp":1607098345,"output":"plSubInits.Model.PplSubInits, observed_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, r"},{"event":"cmd_output","timestamp":1607098345,"output":"eturning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema:"},{"event":"cmd_output","timestamp":1607098345,"output":" Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:25.548 [info] Periodi"},{"event":"cmd_output","timestamp":1607098345,"output":"c from module Elixir.Ppl.PplSubInits.STMHandler.CompilationState with name Elixir.Ppl.PplSubInits.ST"},{"event":"cmd_output","timestamp":1607098345,"output":"MHandler.CompilationState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits"},{"event":"cmd_output","timestamp":1607098345,"output":"-STMHandler-CompilationState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \""},{"event":"cmd_output","timestamp":1607098345,"output":"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed"},{"event":"cmd_output","timestamp":1607098345,"output":"_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request,"},{"event":"cmd_output","timestamp":1607098345,"output":" :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits,"},{"event":"cmd_output","timestamp":1607098345,"output":" task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:25.548 [info] Periodic from module Elixir.Ppl.PplSubInit"},{"event":"cmd_output","timestamp":1607098345,"output":"s.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period"},{"event":"cmd_output","timestamp":1607098345,"output":": 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, re"},{"event":"cmd_output","timestamp":1607098345,"output":"curring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model."},{"event":"cmd_output","timestamp":1607098345,"output":"PplSubInits, observed_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:i"},{"event":"cmd_output","timestamp":1607098345,"output":"d, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubIn"},{"event":"cmd_output","timestamp":1607098345,"output":"its.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:25.548 [info] Periodic from module"},{"event":"cmd_output","timestamp":1607098345,"output":" Elixir.Ppl.PplBlocks.STMHandler.InitializingState with name Elixir.Ppl.PplBlocks.STMHandler.Initial"},{"event":"cmd_output","timestamp":1607098345,"output":"izingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-Initi"},{"event":"cmd_output","timestamp":1607098345,"output":"alizingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"waiting\", \"done\"], cooling_time"},{"event":"cmd_output","timestamp":1607098345,"output":"_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"initializing\", publisher_cb:"},{"event":"cmd_output","timestamp":1607098345,"output":" :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :reco"},{"event":"cmd_output","timestamp":1607098345,"output":"very_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n"},{"event":"cmd_output","timestamp":1607098345,"output":"\u001b[0m\u001b[22m\n16:12:25.549 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.WaitingState wi"},{"event":"cmd_output","timestamp":1607098345,"output":"th name Elixir.Ppl.PplBlocks.STMHandler.WaitingState :: period: 1000 ms, metric_name: {\"Ppl.beholder"},{"event":"cmd_output","timestamp":1607098345,"output":"-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurring args: %{allowed_states: [\"waiting\","},{"event":"cmd_output","timestamp":1607098345,"output":" \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_sta"},{"event":"cmd_output","timestamp":1607098345,"output":"te: \"waiting\", publisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>,"},{"event":"cmd_output","timestamp":1607098345,"output":" repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_co"},{"event":"cmd_output","timestamp":1607098345,"output":"unt, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098345,"output":"2m\n16:12:25.549 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.RunningState with name"},{"event":"cmd_output","timestamp":1607098345,"output":" Elixir.Ppl.PplBlocks.STMHandler.RunningState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_u"},{"event":"cmd_output","timestamp":1607098345,"output":"p\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopp"},{"event":"cmd_output","timestamp":1607098345,"output":"ing\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \""},{"event":"cmd_output","timestamp":1607098345,"output":"running\", publisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0>, rep"},{"event":"cmd_output","timestamp":1607098345,"output":"o: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count,"},{"event":"cmd_output","timestamp":1607098345,"output":" :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n"},{"event":"cmd_output","timestamp":1607098345,"output":"\u001b[0m\u001b[22m\n16:12:25.550 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.StoppingState w"},{"event":"cmd_output","timestamp":1607098345,"output":"ith name Elixir.Ppl.PplBlocks.STMHandler.StoppingState :: period: 1000 ms, metric_name: {\"Ppl.behold"},{"event":"cmd_output","timestamp":1607098345,"output":"er-wake_up\", [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stoppi"},{"event":"cmd_output","timestamp":1607098345,"output":"ng\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"s"},{"event":"cmd_output","timestamp":1607098345,"output":"topping\", publisher_cb: #Function<0.104215991/1 in Ppl.PplBlocks.STMHandler.StoppingState.args/0>, r"},{"event":"cmd_output","timestamp":1607098345,"output":"epo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_coun"},{"event":"cmd_output","timestamp":1607098345,"output":"t, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}"},{"event":"cmd_output","timestamp":1607098345,"output":"\n\u001b[0m\u001b[22m\n16:12:25.551 [info] Periodic from module Elixir.Block.Blocks.STMHandler.InitializingSt"},{"event":"cmd_output","timestamp":1607098345,"output":"ate with name Elixir.Block.Blocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl"},{"event":"cmd_output","timestamp":1607098345,"output":".beholder-wake_up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states"},{"event":"cmd_output","timestamp":1607098345,"output":": [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Blocks.Model.Blocks, observed_state"},{"event":"cmd_output","timestamp":1607098345,"output":": \"initializing\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :u"},{"event":"cmd_output","timestamp":1607098345,"output":"pdated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: "},{"event":"cmd_output","timestamp":1607098345,"output":":skip}\n\u001b[0m\u001b[22m\n16:12:25.551 [info] Periodic from module Elixir.Block.Blocks.STMHandler.RunningS"},{"event":"cmd_output","timestamp":1607098345,"output":"tate with name Elixir.Block.Blocks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beh"},{"event":"cmd_output","timestamp":1607098345,"output":"older-wake_up\", [\"Block-Blocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"runni"},{"event":"cmd_output","timestamp":1607098345,"output":"ng\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_s"},{"event":"cmd_output","timestamp":1607098345,"output":"tate: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :up"},{"event":"cmd_output","timestamp":1607098345,"output":"dated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :"},{"event":"cmd_output","timestamp":1607098345,"output":"skip}\n\u001b[0m\u001b[22m\n16:12:25.551 [info] Periodic from module Elixir.Block.Blocks.STMHandler.StoppingS"},{"event":"cmd_output","timestamp":1607098345,"output":"tate with name Elixir.Block.Blocks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.be"},{"event":"cmd_output","timestamp":1607098345,"output":"holder-wake_up\", [\"Block-Blocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"sto"},{"event":"cmd_output","timestamp":1607098345,"output":"pping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"st"},{"event":"cmd_output","timestamp":1607098345,"output":"opping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at"},{"event":"cmd_output","timestamp":1607098345,"output":", :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b"},{"event":"cmd_output","timestamp":1607098345,"output":"[0m\u001b[22m\n16:12:25.555 [info] Periodic from module Elixir.Block.Tasks.STMHandler.PendingState with "},{"event":"cmd_output","timestamp":1607098345,"output":"name Elixir.Block.Tasks.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_"},{"event":"cmd_output","timestamp":1607098345,"output":"up\", [\"Block-Tasks-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"]"},{"event":"cmd_output","timestamp":1607098345,"output":", cooling_time_sec: 0, initial_query: Block.Tasks.Model.Tasks, observed_state: \"pending\", publisher_"},{"event":"cmd_output","timestamp":1607098345,"output":"cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery"},{"event":"cmd_output","timestamp":1607098345,"output":"_count, :block_id, :build_request_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0"},{"event":"cmd_output","timestamp":1607098345,"output":"m\u001b[22m\n16:12:25.555 [info] Periodic from module Elixir.Block.Tasks.STMHandler.RunningState with na"},{"event":"cmd_output","timestamp":1607098345,"output":"me Elixir.Block.Tasks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up"},{"event":"cmd_output","timestamp":1607098345,"output":"\", [\"Block-Tasks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping"},{"event":"cmd_output","timestamp":1607098345,"output":"\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"running\","},{"event":"cmd_output","timestamp":1607098345,"output":" publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state"},{"event":"cmd_output","timestamp":1607098345,"output":", :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098345,"output":"16:12:25.556 [info] Periodic from module Elixir.Block.Tasks.STMHandler.StoppingState with name Elix"},{"event":"cmd_output","timestamp":1607098345,"output":"ir.Block.Tasks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"B"},{"event":"cmd_output","timestamp":1607098345,"output":"lock-Tasks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cool"},{"event":"cmd_output","timestamp":1607098345,"output":"ing_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"stopping\", publisher_cb: "},{"event":"cmd_output","timestamp":1607098345,"output":":skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_cou"},{"event":"cmd_output","timestamp":1607098345,"output":"nt, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:25.666 [i"},{"event":"cmd_output","timestamp":1607098345,"output":"nfo] ppl_id: 2a87ecf1-b627-4289-aa66-333b89adfced, type: PplRequests, event: persisted source_args "},{"event":"cmd_output","timestamp":1607098345,"output":"for pipeline: 2a87ecf1-b627-4289-aa66-333b89adfced, origin: Elixir.Ppl.PplRequests.Model.PplRequests"},{"event":"cmd_output","timestamp":1607098345,"output":"Queries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:25.669 [info] ppl_id: 2a87ecf1-b627-4289-aa66-333b"},{"event":"cmd_output","timestamp":1607098345,"output":"89adfced, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098345,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:25.684 [info] ppl_id: 2a87ecf1-b627"},{"event":"cmd_output","timestamp":1607098345,"output":"-4289-aa66-333b89adfced, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_co"},{"event":"cmd_output","timestamp":1607098345,"output":"unt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:25.712 [info] pp"},{"event":"cmd_output","timestamp":1607098345,"output":"l_id: 2a87ecf1-b627-4289-aa66-333b89adfced, type: PplRequests, event: persisted definition for reque"},{"event":"cmd_output","timestamp":1607098345,"output":"st with request_token: cdfae374-517d-408d-80b5-9dfccc27dbc6, origin: Elixir.Ppl.PplRequests.Model.Pp"},{"event":"cmd_output","timestamp":1607098345,"output":"lRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:25.717 [info] Queue persisted: {:ok, "},{"event":"cmd_output","timestamp":1607098345,"output":"%Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12"},{"event":"cmd_output","timestamp":1607098345,"output":"-04 16:12:25.715162], name: \"master-.semaphore/semaphore.yml\", organization_id: \"538f2d0f-9200-4363-"},{"event":"cmd_output","timestamp":1607098345,"output":"beac-2a6e567f1fd9\", project_id: \"123\", queue_id: \"a338e872-2483-4dd0-a39c-d9de7773659d\", scope: \"pro"},{"event":"cmd_output","timestamp":1607098345,"output":"ject\", updated_at: ~N[2020-12-04 16:12:25.715171], user_generated: false}}\n\u001b[0m\u001b[22m\n16:12:25.724 "},{"event":"cmd_output","timestamp":1607098345,"output":"[info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), "},{"event":"cmd_output","timestamp":1607098345,"output":"\n\u001b[0m\u001b[22m\n16:12:25.724 [info] ppl_id: 2a87ecf1-b627-4289-aa66-333b89adfced, type: PplBlocks, blo"},{"event":"cmd_output","timestamp":1607098345,"output":"ck_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits."},{"event":"cmd_output","timestamp":1607098345,"output":"STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:25.726 [info] ppl_id: 2a87ecf1-b627"},{"event":"cmd_output","timestamp":1607098345,"output":"-4289-aa66-333b89adfced, type: PplSubInits, state: done, result: passed, event: exit_scheduling, rec"},{"event":"cmd_output","timestamp":1607098345,"output":"overy_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:25.734 [i"},{"event":"cmd_output","timestamp":1607098345,"output":"nfo] ppl_id: 2a87ecf1-b627-4289-aa66-333b89adfced, type: PplBlocks, block_index: 0, state: waiting,"},{"event":"cmd_output","timestamp":1607098345,"output":" event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), "},{"event":"cmd_output","timestamp":1607098345,"output":"\n\u001b[0m\u001b[22m\n16:12:25.735 [info] ppl_id: 2a87ecf1-b627-4289-aa66-333b89adfced, type: Ppls, state: p"},{"event":"cmd_output","timestamp":1607098345,"output":"ending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1"},{"event":"cmd_output","timestamp":1607098345,"output":"(L90), \n\u001b[0m\u001b[22m\n16:12:25.751 [info] ppl_id: 2a87ecf1-b627-4289-aa66-333b89adfced, type: Ppls, s"},{"event":"cmd_output","timestamp":1607098345,"output":"tate: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098345,"output":"hange/1(L90), \n\u001b[0m\u001b[22m\n16:12:25.761 [info] ppl_id: 2a87ecf1-b627-4289-aa66-333b89adfced, type: "},{"event":"cmd_output","timestamp":1607098345,"output":"Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_"},{"event":"cmd_output","timestamp":1607098345,"output":"state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:25.773 [info] PplBlocks WaitingState STM is scheduling bloc"},{"event":"cmd_output","timestamp":1607098345,"output":"k 0 from pipeline: \"2a87ecf1-b627-4289-aa66-333b89adfced\"\n\u001b[0m\u001b[22m\n16:12:25.779 [info] ppl_id: f"},{"event":"cmd_output","timestamp":1607098345,"output":"8caedad-19b1-4f1f-af9b-e8a5e27069e6, type: PplRequests, event: persisted source_args for pipeline: f"},{"event":"cmd_output","timestamp":1607098345,"output":"8caedad-19b1-4f1f-af9b-e8a5e27069e6, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_"},{"event":"cmd_output","timestamp":1607098345,"output":"source/2(L89), \n\u001b[0m\u001b[22m\n16:12:25.780 [info] block_id: 2e45d0a7-63ce-4fdb-a5c8-1107ac832032, typ"},{"event":"cmd_output","timestamp":1607098345,"output":"e: BlockRequests, event: persisted block run request from ppl 2a87ecf1-b627-4289-aa66-333b89adfced f"},{"event":"cmd_output","timestamp":1607098345,"output":"or block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \r"},{"event":"cmd_output","timestamp":1607098345,"output":"\n\u001b[0m\u001b[22m\n16:12:25.783 [info] ppl_id: f8caedad-19b1-4f1f-af9b-e8a5e27069e6, type: PplSubInits, st"},{"event":"cmd_output","timestamp":1607098345,"output":"ate: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098345,"output":"hange/1(L90), \n\u001b[0m\u001b[22m\n16:12:25.786 [info] block_id: 2e45d0a7-63ce-4fdb-a5c8-1107ac832032, type"},{"event":"cmd_output","timestamp":1607098345,"output":": Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.M"},{"event":"cmd_output","timestamp":1607098345,"output":"odel.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:25.789 [info] Block 0 of pipeline with id: 2a8"},{"event":"cmd_output","timestamp":1607098345,"output":"7ecf1-b627-4289-aa66-333b89adfced scheduled in block service with id: : \"2e45d0a7-63ce-4fdb-a5c8-110"},{"event":"cmd_output","timestamp":1607098345,"output":"7ac832032\"\n\u001b[0m\u001b[22m\n16:12:25.791 [info] ppl_id: 2a87ecf1-b627-4289-aa66-333b89adfced, type: PplB"},{"event":"cmd_output","timestamp":1607098345,"output":"locks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loo"},{"event":"cmd_output","timestamp":1607098345,"output":"per.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:25.792 [info] block_id: 2e45d0a7-63ce-4fdb"},{"event":"cmd_output","timestamp":1607098345,"output":"-a5c8-1107ac832032, type: BlockRequests, event: persisted build and sub_ppl details for block_reques"},{"event":"cmd_output","timestamp":1607098345,"output":"t: 2e45d0a7-63ce-4fdb-a5c8-1107ac832032, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueri"},{"event":"cmd_output","timestamp":1607098345,"output":"es.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:25.796 [info] block_id: 2e45d0a7-63ce-4fdb-a5c8-1107ac83"},{"event":"cmd_output","timestamp":1607098345,"output":"2032, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.ST"},{"event":"cmd_output","timestamp":1607098345,"output":"MHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:25.798 [info] block_id: 2e45d0a7-63c"},{"event":"cmd_output","timestamp":1607098345,"output":"e-4fdb-a5c8-1107ac832032, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098345,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:25.816 [info] block_id: 2"},{"event":"cmd_output","timestamp":1607098345,"output":"e45d0a7-63ce-4fdb-a5c8-1107ac832032, type: Tasks, state: running, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098345,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:25.829 [info] p"},{"event":"cmd_output","timestamp":1607098345,"output":"pl_id: f8caedad-19b1-4f1f-af9b-e8a5e27069e6, type: PplSubInits, state: regular_init, event: exit_sch"},{"event":"cmd_output","timestamp":1607098345,"output":"eduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098345,"output":"12:25.852 [info] ppl_id: f8caedad-19b1-4f1f-af9b-e8a5e27069e6, type: PplRequests, event: persisted "},{"event":"cmd_output","timestamp":1607098345,"output":"definition for request with request_token: ea4ad9c8-0421-4d72-8fce-f8408d6c8c3c, origin: Elixir.Ppl."},{"event":"cmd_output","timestamp":1607098345,"output":"PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:25.863 [info] eve"},{"event":"cmd_output","timestamp":1607098345,"output":"nt: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098345,"output":"\n16:12:25.863 [info] ppl_id: f8caedad-19b1-4f1f-af9b-e8a5e27069e6, type: PplBlocks, block_index: 0"},{"event":"cmd_output","timestamp":1607098345,"output":", state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler."},{"event":"cmd_output","timestamp":1607098345,"output":"RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:25.867 [info] ppl_id: f8caedad-19b1-4f1f-af9b-"},{"event":"cmd_output","timestamp":1607098345,"output":"e8a5e27069e6, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count"},{"event":"cmd_output","timestamp":1607098345,"output":": 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:25.883 [info] ppl_i"},{"event":"cmd_output","timestamp":1607098345,"output":"d: f8caedad-19b1-4f1f-af9b-e8a5e27069e6, type: Ppls, state: pending, event: exit_scheduling, recover"},{"event":"cmd_output","timestamp":1607098345,"output":"y_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:25.889 [info]"},{"event":"cmd_output","timestamp":1607098345,"output":" ppl_id: f8caedad-19b1-4f1f-af9b-e8a5e27069e6, type: PplBlocks, block_index: 0, state: waiting, eve"},{"event":"cmd_output","timestamp":1607098345,"output":"nt: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b["},{"event":"cmd_output","timestamp":1607098345,"output":"0m\u001b[22m\n16:12:25.897 [info] block_id: 2e45d0a7-63ce-4fdb-a5c8-1107ac832032, type: Tasks, state: do"},{"event":"cmd_output","timestamp":1607098345,"output":"ne, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90"},{"event":"cmd_output","timestamp":1607098345,"output":"), \n\u001b[0m\u001b[22m\n16:12:25.903 [info] ppl_id: f8caedad-19b1-4f1f-af9b-e8a5e27069e6, type: Ppls, state"},{"event":"cmd_output","timestamp":1607098345,"output":": queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chang"},{"event":"cmd_output","timestamp":1607098345,"output":"e/1(L90), \n\u001b[0m\u001b[22m\n16:12:25.909 [info] block_id: 2e45d0a7-63ce-4fdb-a5c8-1107ac832032, type: Bl"},{"event":"cmd_output","timestamp":1607098345,"output":"ocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_sta"},{"event":"cmd_output","timestamp":1607098345,"output":"te_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:25.910 [info] ppl_id: 222a5b80-856f-4331-9e18-18aabc90420d, ty"},{"event":"cmd_output","timestamp":1607098345,"output":"pe: PplRequests, event: persisted source_args for pipeline: 222a5b80-856f-4331-9e18-18aabc90420d, or"},{"event":"cmd_output","timestamp":1607098345,"output":"igin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:25.91"},{"event":"cmd_output","timestamp":1607098345,"output":"3 [info] ppl_id: 222a5b80-856f-4331-9e18-18aabc90420d, type: PplSubInits, state: fetching, event: e"},{"event":"cmd_output","timestamp":1607098345,"output":"xit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098345,"output":"2m\n16:12:25.918 [info] ppl_id: 2a87ecf1-b627-4289-aa66-333b89adfced, block_id: 2e45d0a7-63ce-4fdb-"},{"event":"cmd_output","timestamp":1607098345,"output":"a5c8-1107ac832032, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_schedul"},{"event":"cmd_output","timestamp":1607098345,"output":"ing, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:2"},{"event":"cmd_output","timestamp":1607098345,"output":"5.931 [info] ppl_id: 2a87ecf1-b627-4289-aa66-333b89adfced, type: Ppls, state: done, result: passed,"},{"event":"cmd_output","timestamp":1607098345,"output":" event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), "},{"event":"cmd_output","timestamp":1607098345,"output":"\n\u001b[0m\u001b[22m\n16:12:25.938 [info] ppl_id: 222a5b80-856f-4331-9e18-18aabc90420d, type: PplSubInits, s"},{"event":"cmd_output","timestamp":1607098345,"output":"tate: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_st"},{"event":"cmd_output","timestamp":1607098345,"output":"ate_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:25.958 [info] ppl_id: 222a5b80-856f-4331-9e18-18aabc90420d, t"},{"event":"cmd_output","timestamp":1607098345,"output":"ype: PplRequests, event: persisted definition for request with request_token: fbf895d1-73e0-46b6-9c5"},{"event":"cmd_output","timestamp":1607098345,"output":"a-5150e6619704, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n"},{"event":"cmd_output","timestamp":1607098345,"output":"\u001b[0m\u001b[22m\n16:12:25.974 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularIni"},{"event":"cmd_output","timestamp":1607098345,"output":"tState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:25.974 [info] ppl_id: 222a5b80-856f-4331-9e18-18aabc9042"},{"event":"cmd_output","timestamp":1607098345,"output":"0d, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098345,"output":" Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:25.978 [info"},{"event":"cmd_output","timestamp":1607098345,"output":"] ppl_id: 222a5b80-856f-4331-9e18-18aabc90420d, type: PplSubInits, state: done, result: passed, eve"},{"event":"cmd_output","timestamp":1607098345,"output":"nt: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b["},{"event":"cmd_output","timestamp":1607098345,"output":"0m\u001b[22m\n16:12:25.985 [info] ppl_id: 222a5b80-856f-4331-9e18-18aabc90420d, type: PplBlocks, block_i"},{"event":"cmd_output","timestamp":1607098345,"output":"ndex: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.l"},{"event":"cmd_output","timestamp":1607098345,"output":"og_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:25.988 [info] ppl_id: 222a5b80-856f-4331-9e18-18aabc9042"},{"event":"cmd_output","timestamp":1607098345,"output":"0d, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM"},{"event":"cmd_output","timestamp":1607098345,"output":".Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:25.994 [info] ppl_id: f8caedad-19b1-4f1f-af9b-e8a"},{"event":"cmd_output","timestamp":1607098345,"output":"5e27069e6, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loo"},{"event":"cmd_output","timestamp":1607098346,"output":"per.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.002 [info] ppl_id: 222a5b80-856f-4331-9"},{"event":"cmd_output","timestamp":1607098346,"output":"e18-18aabc90420d, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098346,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.006 [info] PplBlocks WaitingStat"},{"event":"cmd_output","timestamp":1607098346,"output":"e STM is scheduling block 0 from pipeline: \"f8caedad-19b1-4f1f-af9b-e8a5e27069e6\"\n\u001b[0m\u001b[22m\n16:12:"},{"event":"cmd_output","timestamp":1607098346,"output":"26.011 [info] block_id: c421d033-aeab-4d69-9e7e-d12e7f975e83, type: BlockRequests, event: persisted"},{"event":"cmd_output","timestamp":1607098346,"output":" block run request from ppl f8caedad-19b1-4f1f-af9b-e8a5e27069e6 for block 0, origin: Elixir.Block.B"},{"event":"cmd_output","timestamp":1607098346,"output":"lockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:26.013 [info] b"},{"event":"cmd_output","timestamp":1607098346,"output":"lock_id: c421d033-aeab-4d69-9e7e-d12e7f975e83, type: Blocks, state: initializing, event: initializin"},{"event":"cmd_output","timestamp":1607098346,"output":"g, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098346,"output":":12:26.014 [info] Block 0 of pipeline with id: f8caedad-19b1-4f1f-af9b-e8a5e27069e6 scheduled in bl"},{"event":"cmd_output","timestamp":1607098346,"output":"ock service with id: : \"c421d033-aeab-4d69-9e7e-d12e7f975e83\"\n\u001b[0m\u001b[22m\n16:12:26.017 [info] ppl_i"},{"event":"cmd_output","timestamp":1607098346,"output":"d: f8caedad-19b1-4f1f-af9b-e8a5e27069e6, type: PplBlocks, block_index: 0, state: running, event: exi"},{"event":"cmd_output","timestamp":1607098346,"output":"t_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098346,"output":"\n16:12:26.019 [info] block_id: c421d033-aeab-4d69-9e7e-d12e7f975e83, type: BlockRequests, event: p"},{"event":"cmd_output","timestamp":1607098346,"output":"ersisted build and sub_ppl details for block_request: c421d033-aeab-4d69-9e7e-d12e7f975e83, origin: "},{"event":"cmd_output","timestamp":1607098346,"output":"Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:26.021"},{"event":"cmd_output","timestamp":1607098346,"output":" [info] block_id: c421d033-aeab-4d69-9e7e-d12e7f975e83, type: Tasks, state: pending, event: created"},{"event":"cmd_output","timestamp":1607098346,"output":", recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098346,"output":"m\u001b[22m\n16:12:26.023 [info] ppl_id: 9a062404-4fc1-4b55-bc91-6508c639e269, type: PplRequests, event:"},{"event":"cmd_output","timestamp":1607098346,"output":" persisted source_args for pipeline: 9a062404-4fc1-4b55-bc91-6508c639e269, origin: Elixir.Ppl.PplReq"},{"event":"cmd_output","timestamp":1607098346,"output":"uests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:26.025 [info] ppl_id: 9a062"},{"event":"cmd_output","timestamp":1607098346,"output":"404-4fc1-4b55-bc91-6508c639e269, type: PplSubInits, state: fetching, event: exit_scheduling, recover"},{"event":"cmd_output","timestamp":1607098346,"output":"y_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.025 [info]"},{"event":"cmd_output","timestamp":1607098346,"output":" block_id: c421d033-aeab-4d69-9e7e-d12e7f975e83, type: Blocks, state: running, event: exit_scheduli"},{"event":"cmd_output","timestamp":1607098346,"output":"ng, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26"},{"event":"cmd_output","timestamp":1607098346,"output":".041 [info] block_id: c421d033-aeab-4d69-9e7e-d12e7f975e83, type: Tasks, state: running, event: exi"},{"event":"cmd_output","timestamp":1607098346,"output":"t_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098346,"output":"\n16:12:26.050 [info] ppl_id: 9a062404-4fc1-4b55-bc91-6508c639e269, type: PplSubInits, state: regul"},{"event":"cmd_output","timestamp":1607098346,"output":"ar_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/"},{"event":"cmd_output","timestamp":1607098346,"output":"1(L90), \n\u001b[0m\u001b[22m\n16:12:26.067 [info] ppl_id: 9a062404-4fc1-4b55-bc91-6508c639e269, type: PplReq"},{"event":"cmd_output","timestamp":1607098346,"output":"uests, event: persisted definition for request with request_token: 12c82aa4-8492-4b21-acfd-f4e925a7f"},{"event":"cmd_output","timestamp":1607098346,"output":"a87, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098346,"output":"16:12:26.076 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_"},{"event":"cmd_output","timestamp":1607098346,"output":"ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:26.076 [info] ppl_id: 9a062404-4fc1-4b55-bc91-6508c639e269, type: P"},{"event":"cmd_output","timestamp":1607098346,"output":"plBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098346,"output":".PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:26.079 [info] ppl_id: "},{"event":"cmd_output","timestamp":1607098346,"output":"9a062404-4fc1-4b55-bc91-6508c639e269, type: PplSubInits, state: done, result: passed, event: exit_sc"},{"event":"cmd_output","timestamp":1607098346,"output":"heduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098346,"output":":12:26.088 [info] ppl_id: 9a062404-4fc1-4b55-bc91-6508c639e269, type: PplBlocks, block_index: 0, st"},{"event":"cmd_output","timestamp":1607098346,"output":"ate: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_ch"},{"event":"cmd_output","timestamp":1607098346,"output":"ange/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.089 [info] ppl_id: 9a062404-4fc1-4b55-bc91-6508c639e269, type: P"},{"event":"cmd_output","timestamp":1607098346,"output":"pls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_s"},{"event":"cmd_output","timestamp":1607098346,"output":"tate_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.096 [info] ppl_id: 9a062404-4fc1-4b55-bc91-6508c639e269, "},{"event":"cmd_output","timestamp":1607098346,"output":"type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Imp"},{"event":"cmd_output","timestamp":1607098346,"output":"l.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.111 [info] block_id: c421d033-aeab-4d69-9e7e-d12e7"},{"event":"cmd_output","timestamp":1607098346,"output":"f975e83, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper."},{"event":"cmd_output","timestamp":1607098346,"output":"STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.117 [info] block_id: c421d033-aeab-4d69-9e7"},{"event":"cmd_output","timestamp":1607098346,"output":"e-d12e7f975e83, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098346,"output":".Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.126 [info] ppl_id: f8caedad-19b1-4f"},{"event":"cmd_output","timestamp":1607098346,"output":"1f-af9b-e8a5e27069e6, block_id: c421d033-aeab-4d69-9e7e-d12e7f975e83, type: PplBlocks, block_index: "},{"event":"cmd_output","timestamp":1607098346,"output":"0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM"},{"event":"cmd_output","timestamp":1607098346,"output":".Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.137 [info] ppl_id: f4011aa7-ee69-4984-b1d6-938"},{"event":"cmd_output","timestamp":1607098346,"output":"7594654d3, type: PplRequests, event: persisted source_args for pipeline: f4011aa7-ee69-4984-b1d6-938"},{"event":"cmd_output","timestamp":1607098346,"output":"7594654d3, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098346,"output":"\n16:12:26.140 [info] ppl_id: f4011aa7-ee69-4984-b1d6-9387594654d3, type: PplSubInits, state: fetch"},{"event":"cmd_output","timestamp":1607098346,"output":"ing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L9"},{"event":"cmd_output","timestamp":1607098346,"output":"0), \n\u001b[0m\u001b[22m\n16:12:26.143 [info] ppl_id: f8caedad-19b1-4f1f-af9b-e8a5e27069e6, type: Ppls, stat"},{"event":"cmd_output","timestamp":1607098346,"output":"e: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.l"},{"event":"cmd_output","timestamp":1607098346,"output":"og_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.160 [info] ppl_id: f4011aa7-ee69-4984-b1d6-9387594654"},{"event":"cmd_output","timestamp":1607098346,"output":"d3, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098346,"output":"r.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.188 [info] ppl_id: f4011aa7-ee69-4"},{"event":"cmd_output","timestamp":1607098346,"output":"984-b1d6-9387594654d3, type: PplRequests, event: persisted definition for request with request_token"},{"event":"cmd_output","timestamp":1607098346,"output":": 3861f68a-d6b6-4c09-99de-97325cd6c7fa, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.inse"},{"event":"cmd_output","timestamp":1607098346,"output":"rt_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:26.192 [info] event: created, origin: Elixir.Ppl.PplSubIni"},{"event":"cmd_output","timestamp":1607098346,"output":"ts.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:26.192 [info] ppl_id: f4011aa7-e"},{"event":"cmd_output","timestamp":1607098346,"output":"e69-4984-b1d6-9387594654d3, type: PplBlocks, block_index: 0, state: initializing, event: created, re"},{"event":"cmd_output","timestamp":1607098346,"output":"covery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098346,"output":"[22m\n16:12:26.194 [info] ppl_id: f4011aa7-ee69-4984-b1d6-9387594654d3, type: PplSubInits, state: d"},{"event":"cmd_output","timestamp":1607098346,"output":"one, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_s"},{"event":"cmd_output","timestamp":1607098346,"output":"tate_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.203 [info] ppl_id: f4011aa7-ee69-4984-b1d6-9387594654d3, "},{"event":"cmd_output","timestamp":1607098346,"output":"type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098346,"output":"Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.206 [info] ppl_id: f4011aa7-e"},{"event":"cmd_output","timestamp":1607098346,"output":"e69-4984-b1d6-9387594654d3, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098346,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.214 [info] ppl_id: f40"},{"event":"cmd_output","timestamp":1607098346,"output":"11aa7-ee69-4984-b1d6-9387594654d3, type: Ppls, state: queuing, event: exit_scheduling, recovery_coun"},{"event":"cmd_output","timestamp":1607098346,"output":"t: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.216 [info] ppl_"},{"event":"cmd_output","timestamp":1607098346,"output":"id: 222a5b80-856f-4331-9e18-18aabc90420d, type: Ppls, state: running, event: exit_scheduling, recove"},{"event":"cmd_output","timestamp":1607098346,"output":"ry_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.221 [info"},{"event":"cmd_output","timestamp":1607098346,"output":"] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"222a5b80-856f-4331-9e18-18aabc90"},{"event":"cmd_output","timestamp":1607098346,"output":"420d\"\n\u001b[0m\u001b[22m\n16:12:26.225 [info] block_id: 6d0e52bb-b493-456e-bfd2-76d5ce927c96, type: BlockRe"},{"event":"cmd_output","timestamp":1607098346,"output":"quests, event: persisted block run request from ppl 222a5b80-856f-4331-9e18-18aabc90420d for block 0"},{"event":"cmd_output","timestamp":1607098346,"output":", origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098346,"output":"\n16:12:26.228 [info] block_id: 6d0e52bb-b493-456e-bfd2-76d5ce927c96, type: Blocks, state: initiali"},{"event":"cmd_output","timestamp":1607098346,"output":"zing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert"},{"event":"cmd_output","timestamp":1607098346,"output":"/1(L43), \n\u001b[0m\u001b[22m\n16:12:26.229 [info] Block 0 of pipeline with id: 222a5b80-856f-4331-9e18-18aa"},{"event":"cmd_output","timestamp":1607098346,"output":"bc90420d scheduled in block service with id: : \"6d0e52bb-b493-456e-bfd2-76d5ce927c96\"\n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098346,"output":":12:26.232 [info] ppl_id: 222a5b80-856f-4331-9e18-18aabc90420d, type: PplBlocks, block_index: 0, st"},{"event":"cmd_output","timestamp":1607098346,"output":"ate: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_ch"},{"event":"cmd_output","timestamp":1607098346,"output":"ange/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.234 [info] block_id: 6d0e52bb-b493-456e-bfd2-76d5ce927c96, type:"},{"event":"cmd_output","timestamp":1607098346,"output":" BlockRequests, event: persisted build and sub_ppl details for block_request: 6d0e52bb-b493-456e-bfd"},{"event":"cmd_output","timestamp":1607098346,"output":"2-76d5ce927c96, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \r"},{"event":"cmd_output","timestamp":1607098346,"output":"\n\u001b[0m\u001b[22m\n16:12:26.238 [info] block_id: 6d0e52bb-b493-456e-bfd2-76d5ce927c96, type: Tasks, state:"},{"event":"cmd_output","timestamp":1607098346,"output":" pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingStat"},{"event":"cmd_output","timestamp":1607098346,"output":"e.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:26.240 [info] block_id: 6d0e52bb-b493-456e-bfd2-76d5ce927c96,"},{"event":"cmd_output","timestamp":1607098346,"output":" type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM."},{"event":"cmd_output","timestamp":1607098346,"output":"Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.256 [info] ppl_id: c7b7aae5-dd73-4d9d-a717-448f"},{"event":"cmd_output","timestamp":1607098346,"output":"c00aa17d, type: PplRequests, event: persisted source_args for pipeline: c7b7aae5-dd73-4d9d-a717-448f"},{"event":"cmd_output","timestamp":1607098346,"output":"c00aa17d, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098346,"output":"\n16:12:26.260 [info] ppl_id: c7b7aae5-dd73-4d9d-a717-448fc00aa17d, type: PplSubInits, state: fetchi"},{"event":"cmd_output","timestamp":1607098346,"output":"ng, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90"},{"event":"cmd_output","timestamp":1607098346,"output":"), \n\u001b[0m\u001b[22m\n16:12:26.260 [info] block_id: 6d0e52bb-b493-456e-bfd2-76d5ce927c96, type: Tasks, st"},{"event":"cmd_output","timestamp":1607098346,"output":"ate: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_ch"},{"event":"cmd_output","timestamp":1607098346,"output":"ange/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.276 [info] ppl_id: c7b7aae5-dd73-4d9d-a717-448fc00aa17d, type: P"},{"event":"cmd_output","timestamp":1607098346,"output":"plSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.ST"},{"event":"cmd_output","timestamp":1607098346,"output":"M.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.296 [info] ppl_id: c7b7aae5-dd73-4d9d-a717-44"},{"event":"cmd_output","timestamp":1607098346,"output":"8fc00aa17d, type: PplRequests, event: persisted definition for request with request_token: b54d678f-"},{"event":"cmd_output","timestamp":1607098346,"output":"a912-423d-b8ec-5b704b2c079f, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definiti"},{"event":"cmd_output","timestamp":1607098346,"output":"on/3(L76), \n\u001b[0m\u001b[22m\n16:12:26.298 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta_"},{"event":"cmd_output","timestamp":1607098346,"output":"_: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:12:26.297304], name: \"v1."},{"event":"cmd_output","timestamp":1607098346,"output":"0.2-.semaphore/semaphore.yml\", organization_id: \"8ce2d6e8-ed56-4ddd-81da-92a95172fcd2\", project_id: "},{"event":"cmd_output","timestamp":1607098346,"output":"\"123\", queue_id: \"0d077010-139e-4436-a8bc-43d69173fce4\", scope: \"project\", updated_at: ~N[2020-12-04"},{"event":"cmd_output","timestamp":1607098346,"output":" 16:12:26.297312], user_generated: false}}\n\u001b[0m\u001b[22m\n16:12:26.301 [info] event: created, origin: "},{"event":"cmd_output","timestamp":1607098346,"output":"Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:26.301 [info]"},{"event":"cmd_output","timestamp":1607098346,"output":" ppl_id: c7b7aae5-dd73-4d9d-a717-448fc00aa17d, type: PplBlocks, block_index: 0, state: initializing"},{"event":"cmd_output","timestamp":1607098346,"output":", event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_"},{"event":"cmd_output","timestamp":1607098346,"output":"ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:26.304 [info] ppl_id: c7b7aae5-dd73-4d9d-a717-448fc00aa17d, type: P"},{"event":"cmd_output","timestamp":1607098346,"output":"plSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098346,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.311 [info] ppl_id: c7b7aae5-dd73-4d9d"},{"event":"cmd_output","timestamp":1607098346,"output":"-a717-448fc00aa17d, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recover"},{"event":"cmd_output","timestamp":1607098346,"output":"y_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.312 [info]"},{"event":"cmd_output","timestamp":1607098346,"output":" ppl_id: c7b7aae5-dd73-4d9d-a717-448fc00aa17d, type: Ppls, state: pending, event: exit_scheduling, "},{"event":"cmd_output","timestamp":1607098346,"output":"recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.319"},{"event":"cmd_output","timestamp":1607098346,"output":" [info] ppl_id: c7b7aae5-dd73-4d9d-a717-448fc00aa17d, type: Ppls, state: queuing, event: exit_sched"},{"event":"cmd_output","timestamp":1607098346,"output":"uling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12"},{"event":"cmd_output","timestamp":1607098346,"output":":26.324 [info] block_id: 6d0e52bb-b493-456e-bfd2-76d5ce927c96, type: Tasks, state: done, event: exi"},{"event":"cmd_output","timestamp":1607098346,"output":"t_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098346,"output":"\n16:12:26.330 [info] block_id: 6d0e52bb-b493-456e-bfd2-76d5ce927c96, type: Blocks, state: done, ev"},{"event":"cmd_output","timestamp":1607098346,"output":"ent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b"},{"event":"cmd_output","timestamp":1607098346,"output":"[0m\u001b[22m\n16:12:26.332 [info] ppl_id: c7b7aae5-dd73-4d9d-a717-448fc00aa17d, type: Ppls, state: runn"},{"event":"cmd_output","timestamp":1607098346,"output":"ing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L9"},{"event":"cmd_output","timestamp":1607098346,"output":"0), \n\u001b[0m\u001b[22m\n16:12:26.337 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline"},{"event":"cmd_output","timestamp":1607098346,"output":": \"c7b7aae5-dd73-4d9d-a717-448fc00aa17d\"\n\u001b[0m\u001b[22m\n16:12:26.340 [info] ppl_id: 222a5b80-856f-4331"},{"event":"cmd_output","timestamp":1607098346,"output":"-9e18-18aabc90420d, block_id: 6d0e52bb-b493-456e-bfd2-76d5ce927c96, type: PplBlocks, block_index: 0,"},{"event":"cmd_output","timestamp":1607098346,"output":" state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.I"},{"event":"cmd_output","timestamp":1607098346,"output":"mpl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.341 [info] block_id: 665748f2-a1a1-41b2-b1a1-ba8"},{"event":"cmd_output","timestamp":1607098346,"output":"4472a5d0f, type: BlockRequests, event: persisted block run request from ppl c7b7aae5-dd73-4d9d-a717-"},{"event":"cmd_output","timestamp":1607098346,"output":"448fc00aa17d for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_resp"},{"event":"cmd_output","timestamp":1607098346,"output":"onse/4(L35), \n\u001b[0m\u001b[22m\n16:12:26.346 [info] block_id: 665748f2-a1a1-41b2-b1a1-ba84472a5d0f, type:"},{"event":"cmd_output","timestamp":1607098346,"output":" Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Mo"},{"event":"cmd_output","timestamp":1607098346,"output":"del.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:26.348 [info] Block 0 of pipeline with id: c7b7"},{"event":"cmd_output","timestamp":1607098346,"output":"aae5-dd73-4d9d-a717-448fc00aa17d scheduled in block service with id: : \"665748f2-a1a1-41b2-b1a1-ba84"},{"event":"cmd_output","timestamp":1607098346,"output":"472a5d0f\"\n\u001b[0m\u001b[22m\n16:12:26.351 [info] ppl_id: c7b7aae5-dd73-4d9d-a717-448fc00aa17d, type: PplBl"},{"event":"cmd_output","timestamp":1607098346,"output":"ocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loop"},{"event":"cmd_output","timestamp":1607098346,"output":"er.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.353 [info] block_id: 665748f2-a1a1-41b2-"},{"event":"cmd_output","timestamp":1607098346,"output":"b1a1-ba84472a5d0f, type: BlockRequests, event: persisted build and sub_ppl details for block_request"},{"event":"cmd_output","timestamp":1607098346,"output":": 665748f2-a1a1-41b2-b1a1-ba84472a5d0f, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQuerie"},{"event":"cmd_output","timestamp":1607098346,"output":"s.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:26.353 [info] ppl_id: 222a5b80-856f-4331-9e18-18aabc90420"},{"event":"cmd_output","timestamp":1607098346,"output":"d, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098346,"output":"r.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.356 [info] block_id: 665748f2-a1a1"},{"event":"cmd_output","timestamp":1607098346,"output":"-41b2-b1a1-ba84472a5d0f, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098346,"output":"xir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:26.357 [info] blo"},{"event":"cmd_output","timestamp":1607098346,"output":"ck_id: 665748f2-a1a1-41b2-b1a1-ba84472a5d0f, type: Blocks, state: running, event: exit_scheduling, r"},{"event":"cmd_output","timestamp":1607098346,"output":"ecovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.370 "},{"event":"cmd_output","timestamp":1607098346,"output":"[info] block_id: 665748f2-a1a1-41b2-b1a1-ba84472a5d0f, type: Tasks, state: running, event: exit_sch"},{"event":"cmd_output","timestamp":1607098346,"output":"eduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098346,"output":"12:26.374 [info] ppl_id: a0905eb0-9159-4e8e-8eb8-7081ae0756aa, type: PplRequests, event: persisted "},{"event":"cmd_output","timestamp":1607098346,"output":"source_args for pipeline: a0905eb0-9159-4e8e-8eb8-7081ae0756aa, origin: Elixir.Ppl.PplRequests.Model"},{"event":"cmd_output","timestamp":1607098346,"output":".PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:26.376 [info] ppl_id: a0905eb0-9159-4e"},{"event":"cmd_output","timestamp":1607098346,"output":"8e-8eb8-7081ae0756aa, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098346,"output":" origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.391 [info] ppl_id: a"},{"event":"cmd_output","timestamp":1607098346,"output":"0905eb0-9159-4e8e-8eb8-7081ae0756aa, type: PplSubInits, state: regular_init, event: exit_scheduling,"},{"event":"cmd_output","timestamp":1607098346,"output":" recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.40"},{"event":"cmd_output","timestamp":1607098346,"output":"8 [info] ppl_id: a0905eb0-9159-4e8e-8eb8-7081ae0756aa, type: PplRequests, event: persisted definiti"},{"event":"cmd_output","timestamp":1607098346,"output":"on for request with request_token: 101ae5e2-0c27-4dd6-8734-d4801eb15419, origin: Elixir.Ppl.PplReque"},{"event":"cmd_output","timestamp":1607098346,"output":"sts.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:26.412 [info] event: crea"},{"event":"cmd_output","timestamp":1607098346,"output":"ted, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:"},{"event":"cmd_output","timestamp":1607098346,"output":"26.412 [info] ppl_id: a0905eb0-9159-4e8e-8eb8-7081ae0756aa, type: PplBlocks, block_index: 0, state:"},{"event":"cmd_output","timestamp":1607098346,"output":" initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularI"},{"event":"cmd_output","timestamp":1607098346,"output":"nitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:26.416 [info] ppl_id: a0905eb0-9159-4e8e-8eb8-7081ae07"},{"event":"cmd_output","timestamp":1607098346,"output":"56aa, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098346,"output":"gin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.419 [info] ppl_id: a0905"},{"event":"cmd_output","timestamp":1607098346,"output":"eb0-9159-4e8e-8eb8-7081ae0756aa, type: PplBlocks, block_index: 0, state: waiting, event: exit_schedu"},{"event":"cmd_output","timestamp":1607098346,"output":"ling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:"},{"event":"cmd_output","timestamp":1607098346,"output":"26.422 [info] ppl_id: a0905eb0-9159-4e8e-8eb8-7081ae0756aa, type: Ppls, state: pending, event: exit"},{"event":"cmd_output","timestamp":1607098346,"output":"_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098346,"output":"\n16:12:26.435 [info] ppl_id: a0905eb0-9159-4e8e-8eb8-7081ae0756aa, type: Ppls, state: queuing, even"},{"event":"cmd_output","timestamp":1607098346,"output":"t: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098346,"output":"m\u001b[22m\n16:12:26.439 [info] block_id: 665748f2-a1a1-41b2-b1a1-ba84472a5d0f, type: Tasks, state: don"},{"event":"cmd_output","timestamp":1607098346,"output":"e, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90)"},{"event":"cmd_output","timestamp":1607098346,"output":", \n\u001b[0m\u001b[22m\n16:12:26.445 [info] ppl_id: 9a062404-4fc1-4b55-bc91-6508c639e269, type: Ppls, state:"},{"event":"cmd_output","timestamp":1607098346,"output":" running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change"},{"event":"cmd_output","timestamp":1607098346,"output":"/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.445 [info] block_id: 665748f2-a1a1-41b2-b1a1-ba84472a5d0f, type: Blo"},{"event":"cmd_output","timestamp":1607098346,"output":"cks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_stat"},{"event":"cmd_output","timestamp":1607098346,"output":"e_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.454 [info] ppl_id: c7b7aae5-dd73-4d9d-a717-448fc00aa17d, blo"},{"event":"cmd_output","timestamp":1607098346,"output":"ck_id: 665748f2-a1a1-41b2-b1a1-ba84472a5d0f, type: PplBlocks, block_index: 0, state: done, result: p"},{"event":"cmd_output","timestamp":1607098346,"output":"assed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1("},{"event":"cmd_output","timestamp":1607098346,"output":"L90), \n\u001b[0m\u001b[22m\n16:12:26.455 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeli"},{"event":"cmd_output","timestamp":1607098346,"output":"ne: \"9a062404-4fc1-4b55-bc91-6508c639e269\"\n\u001b[0m\u001b[22m\n16:12:26.462 [info] block_id: a20bf6a9-c90b-"},{"event":"cmd_output","timestamp":1607098346,"output":"49a5-971b-b97ac2d7f016, type: BlockRequests, event: persisted block run request from ppl 9a062404-4f"},{"event":"cmd_output","timestamp":1607098346,"output":"c1-4b55-bc91-6508c639e269 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries"},{"event":"cmd_output","timestamp":1607098346,"output":".process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:26.465 [info] block_id: a20bf6a9-c90b-49a5-971b-b97ac2"},{"event":"cmd_output","timestamp":1607098346,"output":"d7f016, type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Bl"},{"event":"cmd_output","timestamp":1607098346,"output":"ock.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:26.467 [info] Block 0 of pipeline "},{"event":"cmd_output","timestamp":1607098346,"output":"with id: 9a062404-4fc1-4b55-bc91-6508c639e269 scheduled in block service with id: : \"a20bf6a9-c90b-4"},{"event":"cmd_output","timestamp":1607098346,"output":"9a5-971b-b97ac2d7f016\"\n\u001b[0m\u001b[22m\n16:12:26.469 [info] ppl_id: 9a062404-4fc1-4b55-bc91-6508c639e269"},{"event":"cmd_output","timestamp":1607098346,"output":", type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098346,"output":": Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.470 [info] ppl_id: c7b7aae5"},{"event":"cmd_output","timestamp":1607098346,"output":"-dd73-4d9d-a717-448fc00aa17d, type: Ppls, state: done, result: passed, event: exit_scheduling, recov"},{"event":"cmd_output","timestamp":1607098346,"output":"ery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.472 [inf"},{"event":"cmd_output","timestamp":1607098346,"output":"o] block_id: a20bf6a9-c90b-49a5-971b-b97ac2d7f016, type: BlockRequests, event: persisted build and "},{"event":"cmd_output","timestamp":1607098346,"output":"sub_ppl details for block_request: a20bf6a9-c90b-49a5-971b-b97ac2d7f016, origin: Elixir.Block.BlockR"},{"event":"cmd_output","timestamp":1607098346,"output":"equests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:26.473 [info] block_id: "},{"event":"cmd_output","timestamp":1607098346,"output":"a20bf6a9-c90b-49a5-971b-b97ac2d7f016, type: Tasks, state: pending, event: created, recovery_count: 0"},{"event":"cmd_output","timestamp":1607098346,"output":", origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:26.47"},{"event":"cmd_output","timestamp":1607098346,"output":"5 [info] block_id: a20bf6a9-c90b-49a5-971b-b97ac2d7f016, type: Blocks, state: running, event: exit_"},{"event":"cmd_output","timestamp":1607098346,"output":"scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098346,"output":"16:12:26.491 [info] ppl_id: 940ce33b-207d-493e-ae11-ce4033b80ba0, type: PplRequests, event: persist"},{"event":"cmd_output","timestamp":1607098346,"output":"ed source_args for pipeline: 940ce33b-207d-493e-ae11-ce4033b80ba0, origin: Elixir.Ppl.PplRequests.Mo"},{"event":"cmd_output","timestamp":1607098346,"output":"del.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:26.491 [info] block_id: a20bf6a9-c9"},{"event":"cmd_output","timestamp":1607098346,"output":"0b-49a5-971b-b97ac2d7f016, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098346,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.493 [info] ppl_id: 940"},{"event":"cmd_output","timestamp":1607098346,"output":"ce33b-207d-493e-ae11-ce4033b80ba0, type: PplSubInits, state: fetching, event: exit_scheduling, recov"},{"event":"cmd_output","timestamp":1607098346,"output":"ery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.506 [inf"},{"event":"cmd_output","timestamp":1607098346,"output":"o] ppl_id: 940ce33b-207d-493e-ae11-ce4033b80ba0, type: PplSubInits, state: regular_init, event: exi"},{"event":"cmd_output","timestamp":1607098346,"output":"t_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098346,"output":"\n16:12:26.524 [info] ppl_id: 940ce33b-207d-493e-ae11-ce4033b80ba0, type: PplRequests, event: persi"},{"event":"cmd_output","timestamp":1607098346,"output":"sted definition for request with request_token: b7635df1-5628-48a5-8df1-fb9e8d20f6e4, origin: Elixir"},{"event":"cmd_output","timestamp":1607098346,"output":".Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:26.531 [info]"},{"event":"cmd_output","timestamp":1607098346,"output":" event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098346,"output":"\u001b[22m\n16:12:26.531 [info] ppl_id: 940ce33b-207d-493e-ae11-ce4033b80ba0, type: PplBlocks, block_ind"},{"event":"cmd_output","timestamp":1607098346,"output":"ex: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHan"},{"event":"cmd_output","timestamp":1607098346,"output":"dler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:26.533 [info] ppl_id: 940ce33b-207d-493e-"},{"event":"cmd_output","timestamp":1607098346,"output":"ae11-ce4033b80ba0, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_"},{"event":"cmd_output","timestamp":1607098346,"output":"count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.538 [info] "},{"event":"cmd_output","timestamp":1607098346,"output":"ppl_id: 940ce33b-207d-493e-ae11-ce4033b80ba0, type: Ppls, state: pending, event: exit_scheduling, re"},{"event":"cmd_output","timestamp":1607098346,"output":"covery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.541 ["},{"event":"cmd_output","timestamp":1607098346,"output":"info] ppl_id: 940ce33b-207d-493e-ae11-ce4033b80ba0, type: PplBlocks, block_index: 0, state: waiting"},{"event":"cmd_output","timestamp":1607098346,"output":", event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90),"},{"event":"cmd_output","timestamp":1607098346,"output":" \n\u001b[0m\u001b[22m\n16:12:26.546 [info] ppl_id: 940ce33b-207d-493e-ae11-ce4033b80ba0, type: Ppls, state: "},{"event":"cmd_output","timestamp":1607098346,"output":"queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/"},{"event":"cmd_output","timestamp":1607098346,"output":"1(L90), \n\u001b[0m\u001b[22m\n16:12:26.555 [info] block_id: a20bf6a9-c90b-49a5-971b-b97ac2d7f016, type: Task"},{"event":"cmd_output","timestamp":1607098346,"output":"s, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_"},{"event":"cmd_output","timestamp":1607098346,"output":"change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.559 [info] ppl_id: a0905eb0-9159-4e8e-8eb8-7081ae0756aa, type:"},{"event":"cmd_output","timestamp":1607098346,"output":" Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098346,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.561 [info] block_id: a20bf6a9-c90b-49a5-971b-b97ac2d7f0"},{"event":"cmd_output","timestamp":1607098346,"output":"16, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM."},{"event":"cmd_output","timestamp":1607098346,"output":"Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.565 [info] PplBlocks WaitingState STM is schedu"},{"event":"cmd_output","timestamp":1607098346,"output":"ling block 0 from pipeline: \"a0905eb0-9159-4e8e-8eb8-7081ae0756aa\"\n\u001b[0m\u001b[22m\n16:12:26.569 [info] "},{"event":"cmd_output","timestamp":1607098346,"output":"block_id: dc7e0b84-b522-4790-a441-295530cb8b99, type: BlockRequests, event: persisted block run requ"},{"event":"cmd_output","timestamp":1607098346,"output":"est from ppl a0905eb0-9159-4e8e-8eb8-7081ae0756aa for block 0, origin: Elixir.Block.BlockRequests.Mo"},{"event":"cmd_output","timestamp":1607098346,"output":"del.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:26.571 [info] ppl_id: 9a062404"},{"event":"cmd_output","timestamp":1607098346,"output":"-4fc1-4b55-bc91-6508c639e269, block_id: a20bf6a9-c90b-49a5-971b-b97ac2d7f016, type: PplBlocks, block"},{"event":"cmd_output","timestamp":1607098346,"output":"_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Lo"},{"event":"cmd_output","timestamp":1607098346,"output":"oper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.571 [info] block_id: dc7e0b84-b522-479"},{"event":"cmd_output","timestamp":1607098346,"output":"0-a441-295530cb8b99, type: Blocks, state: initializing, event: initializing, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098346,"output":"in: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:26.574 [info] Block 0"},{"event":"cmd_output","timestamp":1607098346,"output":" of pipeline with id: a0905eb0-9159-4e8e-8eb8-7081ae0756aa scheduled in block service with id: : \"dc"},{"event":"cmd_output","timestamp":1607098346,"output":"7e0b84-b522-4790-a441-295530cb8b99\"\n\u001b[0m\u001b[22m\n16:12:26.578 [info] ppl_id: a0905eb0-9159-4e8e-8eb8"},{"event":"cmd_output","timestamp":1607098346,"output":"-7081ae0756aa, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_cou"},{"event":"cmd_output","timestamp":1607098346,"output":"nt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.580 [info] blo"},{"event":"cmd_output","timestamp":1607098346,"output":"ck_id: dc7e0b84-b522-4790-a441-295530cb8b99, type: BlockRequests, event: persisted build and sub_ppl"},{"event":"cmd_output","timestamp":1607098346,"output":" details for block_request: dc7e0b84-b522-4790-a441-295530cb8b99, origin: Elixir.Block.BlockRequests"},{"event":"cmd_output","timestamp":1607098346,"output":".Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:26.582 [info] block_id: dc7e0b8"},{"event":"cmd_output","timestamp":1607098346,"output":"4-b522-4790-a441-295530cb8b99, type: Tasks, state: pending, event: created, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098346,"output":"n: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:26.584 [info"},{"event":"cmd_output","timestamp":1607098346,"output":"] block_id: dc7e0b84-b522-4790-a441-295530cb8b99, type: Blocks, state: running, event: exit_schedul"},{"event":"cmd_output","timestamp":1607098346,"output":"ing, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:2"},{"event":"cmd_output","timestamp":1607098346,"output":"6.586 [info] ppl_id: 9a062404-4fc1-4b55-bc91-6508c639e269, type: Ppls, state: done, result: passed,"},{"event":"cmd_output","timestamp":1607098346,"output":" event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), "},{"event":"cmd_output","timestamp":1607098346,"output":"\n\u001b[0m\u001b[22m\n16:12:26.598 [info] block_id: dc7e0b84-b522-4790-a441-295530cb8b99, type: Tasks, state"},{"event":"cmd_output","timestamp":1607098346,"output":": running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chang"},{"event":"cmd_output","timestamp":1607098346,"output":"e/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.602 [info] ppl_id: 8e6d872e-c76d-4cee-949e-7fe3f4fd6c6d, type: PplR"},{"event":"cmd_output","timestamp":1607098346,"output":"equests, event: persisted source_args for pipeline: 8e6d872e-c76d-4cee-949e-7fe3f4fd6c6d, origin: El"},{"event":"cmd_output","timestamp":1607098346,"output":"ixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:26.604 [info]"},{"event":"cmd_output","timestamp":1607098346,"output":" ppl_id: 8e6d872e-c76d-4cee-949e-7fe3f4fd6c6d, type: PplSubInits, state: fetching, event: exit_sche"},{"event":"cmd_output","timestamp":1607098346,"output":"duling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098346,"output":"2:26.619 [info] ppl_id: 8e6d872e-c76d-4cee-949e-7fe3f4fd6c6d, type: PplSubInits, state: regular_ini"},{"event":"cmd_output","timestamp":1607098346,"output":"t, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90)"},{"event":"cmd_output","timestamp":1607098346,"output":", \n\u001b[0m\u001b[22m\n16:12:26.638 [info] ppl_id: 8e6d872e-c76d-4cee-949e-7fe3f4fd6c6d, type: PplRequests,"},{"event":"cmd_output","timestamp":1607098346,"output":" event: persisted definition for request with request_token: 425cb6cd-4c18-440a-9104-88ad4a059b34, o"},{"event":"cmd_output","timestamp":1607098346,"output":"rigin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:"},{"event":"cmd_output","timestamp":1607098346,"output":"26.641 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1("},{"event":"cmd_output","timestamp":1607098346,"output":"L105), \n\u001b[0m\u001b[22m\n16:12:26.641 [info] ppl_id: 8e6d872e-c76d-4cee-949e-7fe3f4fd6c6d, type: PplBloc"},{"event":"cmd_output","timestamp":1607098346,"output":"ks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSu"},{"event":"cmd_output","timestamp":1607098346,"output":"bInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:26.643 [info] ppl_id: 8e6d87"},{"event":"cmd_output","timestamp":1607098346,"output":"2e-c76d-4cee-949e-7fe3f4fd6c6d, type: PplSubInits, state: done, result: passed, event: exit_scheduli"},{"event":"cmd_output","timestamp":1607098346,"output":"ng, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26"},{"event":"cmd_output","timestamp":1607098346,"output":".648 [info] ppl_id: 8e6d872e-c76d-4cee-949e-7fe3f4fd6c6d, type: PplBlocks, block_index: 0, state: w"},{"event":"cmd_output","timestamp":1607098346,"output":"aiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1"},{"event":"cmd_output","timestamp":1607098346,"output":"(L90), \n\u001b[0m\u001b[22m\n16:12:26.650 [info] ppl_id: 8e6d872e-c76d-4cee-949e-7fe3f4fd6c6d, type: Ppls, s"},{"event":"cmd_output","timestamp":1607098346,"output":"tate: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098346,"output":"hange/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.657 [info] ppl_id: 8e6d872e-c76d-4cee-949e-7fe3f4fd6c6d, type: "},{"event":"cmd_output","timestamp":1607098346,"output":"Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_"},{"event":"cmd_output","timestamp":1607098346,"output":"state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.665 [info] block_id: dc7e0b84-b522-4790-a441-295530cb8b9"},{"event":"cmd_output","timestamp":1607098346,"output":"9, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Im"},{"event":"cmd_output","timestamp":1607098346,"output":"pl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.671 [info] block_id: dc7e0b84-b522-4790-a441-2955"},{"event":"cmd_output","timestamp":1607098346,"output":"30cb8b99, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loope"},{"event":"cmd_output","timestamp":1607098346,"output":"r.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.673 [info] ppl_id: f4011aa7-ee69-4984-b1d"},{"event":"cmd_output","timestamp":1607098346,"output":"6-9387594654d3, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098346,"output":"r.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.679 [info] ppl_id: a0905eb0-9159-4"},{"event":"cmd_output","timestamp":1607098346,"output":"e8e-8eb8-7081ae0756aa, block_id: dc7e0b84-b522-4790-a441-295530cb8b99, type: PplBlocks, block_index:"},{"event":"cmd_output","timestamp":1607098346,"output":" 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.ST"},{"event":"cmd_output","timestamp":1607098346,"output":"M.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.679 [info] PplBlocks WaitingState STM is sche"},{"event":"cmd_output","timestamp":1607098346,"output":"duling block 0 from pipeline: \"f4011aa7-ee69-4984-b1d6-9387594654d3\"\n\u001b[0m\u001b[22m\n16:12:26.684 [info]"},{"event":"cmd_output","timestamp":1607098346,"output":" block_id: bab59026-bd14-4a36-b118-c08a9131814d, type: BlockRequests, event: persisted block run re"},{"event":"cmd_output","timestamp":1607098346,"output":"quest from ppl f4011aa7-ee69-4984-b1d6-9387594654d3 for block 0, origin: Elixir.Block.BlockRequests."},{"event":"cmd_output","timestamp":1607098346,"output":"Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:26.686 [info] block_id: bab5"},{"event":"cmd_output","timestamp":1607098346,"output":"9026-bd14-4a36-b118-c08a9131814d, type: Blocks, state: initializing, event: initializing, recovery_c"},{"event":"cmd_output","timestamp":1607098346,"output":"ount: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:26.687 [i"},{"event":"cmd_output","timestamp":1607098346,"output":"nfo] Block 0 of pipeline with id: f4011aa7-ee69-4984-b1d6-9387594654d3 scheduled in block service w"},{"event":"cmd_output","timestamp":1607098346,"output":"ith id: : \"bab59026-bd14-4a36-b118-c08a9131814d\"\n\u001b[0m\u001b[22m\n16:12:26.691 [info] ppl_id: a0905eb0-9"},{"event":"cmd_output","timestamp":1607098346,"output":"159-4e8e-8eb8-7081ae0756aa, type: Ppls, state: done, result: passed, event: exit_scheduling, recover"},{"event":"cmd_output","timestamp":1607098346,"output":"y_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.691 [info]"},{"event":"cmd_output","timestamp":1607098346,"output":" ppl_id: f4011aa7-ee69-4984-b1d6-9387594654d3, type: PplBlocks, block_index: 0, state: running, eve"},{"event":"cmd_output","timestamp":1607098346,"output":"nt: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b["},{"event":"cmd_output","timestamp":1607098346,"output":"0m\u001b[22m\n16:12:26.694 [info] block_id: bab59026-bd14-4a36-b118-c08a9131814d, type: BlockRequests, e"},{"event":"cmd_output","timestamp":1607098346,"output":"vent: persisted build and sub_ppl details for block_request: bab59026-bd14-4a36-b118-c08a9131814d, o"},{"event":"cmd_output","timestamp":1607098346,"output":"rigin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12"},{"event":"cmd_output","timestamp":1607098346,"output":":26.697 [info] block_id: bab59026-bd14-4a36-b118-c08a9131814d, type: Tasks, state: pending, event: "},{"event":"cmd_output","timestamp":1607098346,"output":"created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167)"},{"event":"cmd_output","timestamp":1607098346,"output":", \n\u001b[0m\u001b[22m\n16:12:26.699 [info] block_id: bab59026-bd14-4a36-b118-c08a9131814d, type: Blocks, st"},{"event":"cmd_output","timestamp":1607098346,"output":"ate: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_ch"},{"event":"cmd_output","timestamp":1607098346,"output":"ange/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.710 [info] block_id: bab59026-bd14-4a36-b118-c08a9131814d, type:"},{"event":"cmd_output","timestamp":1607098346,"output":" Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.lo"},{"event":"cmd_output","timestamp":1607098346,"output":"g_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.713 [info] ppl_id: b776f37b-f60f-4093-8526-2ff1c8f5127"},{"event":"cmd_output","timestamp":1607098346,"output":"e, type: PplRequests, event: persisted source_args for pipeline: b776f37b-f60f-4093-8526-2ff1c8f5127"},{"event":"cmd_output","timestamp":1607098346,"output":"e, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:"},{"event":"cmd_output","timestamp":1607098346,"output":"26.714 [info] ppl_id: b776f37b-f60f-4093-8526-2ff1c8f5127e, type: PplSubInits, state: fetching, eve"},{"event":"cmd_output","timestamp":1607098346,"output":"nt: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b["},{"event":"cmd_output","timestamp":1607098346,"output":"0m\u001b[22m\n16:12:26.729 [info] ppl_id: b776f37b-f60f-4093-8526-2ff1c8f5127e, type: PplSubInits, state"},{"event":"cmd_output","timestamp":1607098346,"output":": regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_"},{"event":"cmd_output","timestamp":1607098346,"output":"change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.746 [info] ppl_id: b776f37b-f60f-4093-8526-2ff1c8f5127e, type:"},{"event":"cmd_output","timestamp":1607098346,"output":" PplRequests, event: persisted definition for request with request_token: 2396ad81-2657-45f2-b411-0e"},{"event":"cmd_output","timestamp":1607098346,"output":"0ca338881d, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098346,"output":"\u001b[22m\n16:12:26.749 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitSta"},{"event":"cmd_output","timestamp":1607098346,"output":"te.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:26.749 [info] ppl_id: b776f37b-f60f-4093-8526-2ff1c8f5127e, "},{"event":"cmd_output","timestamp":1607098346,"output":"type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098346,"output":"xir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:26.751 [info] p"},{"event":"cmd_output","timestamp":1607098346,"output":"pl_id: b776f37b-f60f-4093-8526-2ff1c8f5127e, type: PplSubInits, state: done, result: passed, event: "},{"event":"cmd_output","timestamp":1607098346,"output":"exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098346,"output":"22m\n16:12:26.757 [info] ppl_id: b776f37b-f60f-4093-8526-2ff1c8f5127e, type: Ppls, state: pending, "},{"event":"cmd_output","timestamp":1607098346,"output":"event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \r"},{"event":"cmd_output","timestamp":1607098346,"output":"\n\u001b[0m\u001b[22m\n16:12:26.758 [info] ppl_id: b776f37b-f60f-4093-8526-2ff1c8f5127e, type: PplBlocks, bloc"},{"event":"cmd_output","timestamp":1607098346,"output":"k_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Imp"},{"event":"cmd_output","timestamp":1607098346,"output":"l.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.763 [info] ppl_id: b776f37b-f60f-4093-8526-2ff1c8f"},{"event":"cmd_output","timestamp":1607098346,"output":"5127e, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper."},{"event":"cmd_output","timestamp":1607098346,"output":"STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.769 [info] ppl_id: 940ce33b-207d-493e-ae11-"},{"event":"cmd_output","timestamp":1607098346,"output":"ce4033b80ba0, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098346,"output":"Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.776 [info] block_id: bab59026-bd14-4"},{"event":"cmd_output","timestamp":1607098346,"output":"a36-b118-c08a9131814d, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098346,"output":"Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.779 [info] PplBlocks WaitingS"},{"event":"cmd_output","timestamp":1607098346,"output":"tate STM is scheduling block 0 from pipeline: \"940ce33b-207d-493e-ae11-ce4033b80ba0\"\n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098346,"output":"12:26.782 [info] block_id: bab59026-bd14-4a36-b118-c08a9131814d, type: Blocks, state: done, event: "},{"event":"cmd_output","timestamp":1607098346,"output":"exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098346,"output":"22m\n16:12:26.785 [info] block_id: 8177e309-a0b1-492e-bc0b-c2290fb0b8d4, type: BlockRequests, event"},{"event":"cmd_output","timestamp":1607098346,"output":": persisted block run request from ppl 940ce33b-207d-493e-ae11-ce4033b80ba0 for block 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098346,"output":"xir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:26.78"},{"event":"cmd_output","timestamp":1607098346,"output":"7 [info] block_id: 8177e309-a0b1-492e-bc0b-c2290fb0b8d4, type: Blocks, state: initializing, event: "},{"event":"cmd_output","timestamp":1607098346,"output":"initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b["},{"event":"cmd_output","timestamp":1607098346,"output":"0m\u001b[22m\n16:12:26.789 [info] Block 0 of pipeline with id: 940ce33b-207d-493e-ae11-ce4033b80ba0 sche"},{"event":"cmd_output","timestamp":1607098346,"output":"duled in block service with id: : \"8177e309-a0b1-492e-bc0b-c2290fb0b8d4\"\n\u001b[0m\u001b[22m\n16:12:26.791 [i"},{"event":"cmd_output","timestamp":1607098346,"output":"nfo] ppl_id: 940ce33b-207d-493e-ae11-ce4033b80ba0, type: PplBlocks, block_index: 0, state: running,"},{"event":"cmd_output","timestamp":1607098346,"output":" event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), "},{"event":"cmd_output","timestamp":1607098346,"output":"\n\u001b[0m\u001b[22m\n16:12:26.791 [info] block_id: 8177e309-a0b1-492e-bc0b-c2290fb0b8d4, type: BlockRequest"},{"event":"cmd_output","timestamp":1607098346,"output":"s, event: persisted build and sub_ppl details for block_request: 8177e309-a0b1-492e-bc0b-c2290fb0b8d"},{"event":"cmd_output","timestamp":1607098346,"output":"4, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098346,"output":"6:12:26.791 [info] ppl_id: f4011aa7-ee69-4984-b1d6-9387594654d3, block_id: bab59026-bd14-4a36-b118-"},{"event":"cmd_output","timestamp":1607098346,"output":"c08a9131814d, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, "},{"event":"cmd_output","timestamp":1607098346,"output":"recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.793"},{"event":"cmd_output","timestamp":1607098346,"output":" [info] block_id: 8177e309-a0b1-492e-bc0b-c2290fb0b8d4, type: Tasks, state: pending, event: created"},{"event":"cmd_output","timestamp":1607098346,"output":", recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098346,"output":"m\u001b[22m\n16:12:26.796 [info] block_id: 8177e309-a0b1-492e-bc0b-c2290fb0b8d4, type: Blocks, state: ru"},{"event":"cmd_output","timestamp":1607098346,"output":"nning, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1("},{"event":"cmd_output","timestamp":1607098346,"output":"L90), \n\u001b[0m\u001b[22m\n16:12:26.810 [info] ppl_id: f4011aa7-ee69-4984-b1d6-9387594654d3, type: Ppls, st"},{"event":"cmd_output","timestamp":1607098346,"output":"ate: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl"},{"event":"cmd_output","timestamp":1607098346,"output":".log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.812 [info] block_id: 8177e309-a0b1-492e-bc0b-c2290f"},{"event":"cmd_output","timestamp":1607098346,"output":"b0b8d4, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loope"},{"event":"cmd_output","timestamp":1607098346,"output":"r.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.894 [info] block_id: 8177e309-a0b1-492e-b"},{"event":"cmd_output","timestamp":1607098346,"output":"c0b-c2290fb0b8d4, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098346,"output":"r.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.898 [info] block_id: 8177e309-a0b1"},{"event":"cmd_output","timestamp":1607098346,"output":"-492e-bc0b-c2290fb0b8d4, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098346,"output":"n: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.905 [info] ppl_id: 940ce33"},{"event":"cmd_output","timestamp":1607098346,"output":"b-207d-493e-ae11-ce4033b80ba0, block_id: 8177e309-a0b1-492e-bc0b-c2290fb0b8d4, type: PplBlocks, bloc"},{"event":"cmd_output","timestamp":1607098346,"output":"k_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098346,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.921 [info] ppl_id: 940ce33b-207d-493e"},{"event":"cmd_output","timestamp":1607098346,"output":"-ae11-ce4033b80ba0, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count:"},{"event":"cmd_output","timestamp":1607098346,"output":" 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:26.998 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098346,"output":": 8e6d872e-c76d-4cee-949e-7fe3f4fd6c6d, type: Ppls, state: running, event: exit_scheduling, recovery"},{"event":"cmd_output","timestamp":1607098347,"output":"_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:27.003 [info] "},{"event":"cmd_output","timestamp":1607098347,"output":" PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"8e6d872e-c76d-4cee-949e-7fe3f4fd6c"},{"event":"cmd_output","timestamp":1607098347,"output":"6d\"\n\u001b[0m\u001b[22m\n16:12:27.013 [info] block_id: 1659daa8-b03e-4912-baf7-e5363fd536da, type: BlockRequ"},{"event":"cmd_output","timestamp":1607098347,"output":"ests, event: persisted block run request from ppl 8e6d872e-c76d-4cee-949e-7fe3f4fd6c6d for block 0, "},{"event":"cmd_output","timestamp":1607098347,"output":"origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098347,"output":"16:12:27.015 [info] block_id: 1659daa8-b03e-4912-baf7-e5363fd536da, type: Blocks, state: initializi"},{"event":"cmd_output","timestamp":1607098347,"output":"ng, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1"},{"event":"cmd_output","timestamp":1607098347,"output":"(L43), \n\u001b[0m\u001b[22m\n16:12:27.016 [info] Block 0 of pipeline with id: 8e6d872e-c76d-4cee-949e-7fe3f4"},{"event":"cmd_output","timestamp":1607098347,"output":"fd6c6d scheduled in block service with id: : \"1659daa8-b03e-4912-baf7-e5363fd536da\"\n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098347,"output":"2:27.018 [info] ppl_id: 8e6d872e-c76d-4cee-949e-7fe3f4fd6c6d, type: PplBlocks, block_index: 0, stat"},{"event":"cmd_output","timestamp":1607098347,"output":"e: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chan"},{"event":"cmd_output","timestamp":1607098347,"output":"ge/1(L90), \n\u001b[0m\u001b[22m\n16:12:27.020 [info] block_id: 1659daa8-b03e-4912-baf7-e5363fd536da, type: B"},{"event":"cmd_output","timestamp":1607098347,"output":"lockRequests, event: persisted build and sub_ppl details for block_request: 1659daa8-b03e-4912-baf7-"},{"event":"cmd_output","timestamp":1607098347,"output":"e5363fd536da, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b"},{"event":"cmd_output","timestamp":1607098347,"output":"[0m\u001b[22m\n16:12:27.022 [info] block_id: 1659daa8-b03e-4912-baf7-e5363fd536da, type: Tasks, state: p"},{"event":"cmd_output","timestamp":1607098347,"output":"ending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState."},{"event":"cmd_output","timestamp":1607098347,"output":"all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:27.023 [info] block_id: 1659daa8-b03e-4912-baf7-e5363fd536da, t"},{"event":"cmd_output","timestamp":1607098347,"output":"ype: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Im"},{"event":"cmd_output","timestamp":1607098347,"output":"pl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:27.037 [info] block_id: 1659daa8-b03e-4912-baf7-e536"},{"event":"cmd_output","timestamp":1607098347,"output":"3fd536da, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loo"},{"event":"cmd_output","timestamp":1607098347,"output":"per.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:27.106 [info] block_id: 1659daa8-b03e-4912"},{"event":"cmd_output","timestamp":1607098347,"output":"-baf7-e5363fd536da, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098347,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:27.118 [info] block_id: 1659daa8-b0"},{"event":"cmd_output","timestamp":1607098347,"output":"3e-4912-baf7-e5363fd536da, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098347,"output":"gin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:27.124 [info] ppl_id: 8e6d8"},{"event":"cmd_output","timestamp":1607098347,"output":"72e-c76d-4cee-949e-7fe3f4fd6c6d, block_id: 1659daa8-b03e-4912-baf7-e5363fd536da, type: PplBlocks, bl"},{"event":"cmd_output","timestamp":1607098347,"output":"ock_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098347,"output":".Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:27.141 [info] ppl_id: 8e6d872e-c76d-4c"},{"event":"cmd_output","timestamp":1607098347,"output":"ee-949e-7fe3f4fd6c6d, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_coun"},{"event":"cmd_output","timestamp":1607098347,"output":"t: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:27.214 [info] ppl_"},{"event":"cmd_output","timestamp":1607098347,"output":"id: b776f37b-f60f-4093-8526-2ff1c8f5127e, type: Ppls, state: running, event: exit_scheduling, recove"},{"event":"cmd_output","timestamp":1607098347,"output":"ry_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:27.218 [info"},{"event":"cmd_output","timestamp":1607098347,"output":"] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"b776f37b-f60f-4093-8526-2ff1c8f5"},{"event":"cmd_output","timestamp":1607098347,"output":"127e\"\n\u001b[0m\u001b[22m\n16:12:27.223 [info] block_id: 1aa42ce0-99e2-4bd2-ae7f-8cb2224e0c99, type: BlockRe"},{"event":"cmd_output","timestamp":1607098347,"output":"quests, event: persisted block run request from ppl b776f37b-f60f-4093-8526-2ff1c8f5127e for block 0"},{"event":"cmd_output","timestamp":1607098347,"output":", origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098347,"output":"\n16:12:27.225 [info] block_id: 1aa42ce0-99e2-4bd2-ae7f-8cb2224e0c99, type: Blocks, state: initiali"},{"event":"cmd_output","timestamp":1607098347,"output":"zing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert"},{"event":"cmd_output","timestamp":1607098347,"output":"/1(L43), \n\u001b[0m\u001b[22m\n16:12:27.226 [info] Block 0 of pipeline with id: b776f37b-f60f-4093-8526-2ff1"},{"event":"cmd_output","timestamp":1607098347,"output":"c8f5127e scheduled in block service with id: : \"1aa42ce0-99e2-4bd2-ae7f-8cb2224e0c99\"\n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098347,"output":":12:27.228 [info] ppl_id: b776f37b-f60f-4093-8526-2ff1c8f5127e, type: PplBlocks, block_index: 0, st"},{"event":"cmd_output","timestamp":1607098347,"output":"ate: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_ch"},{"event":"cmd_output","timestamp":1607098347,"output":"ange/1(L90), \n\u001b[0m\u001b[22m\n16:12:27.238 [info] block_id: 1aa42ce0-99e2-4bd2-ae7f-8cb2224e0c99, type:"},{"event":"cmd_output","timestamp":1607098347,"output":" BlockRequests, event: persisted build and sub_ppl details for block_request: 1aa42ce0-99e2-4bd2-ae7"},{"event":"cmd_output","timestamp":1607098347,"output":"f-8cb2224e0c99, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \r"},{"event":"cmd_output","timestamp":1607098347,"output":"\n\u001b[0m\u001b[22m\n16:12:27.240 [info] block_id: 1aa42ce0-99e2-4bd2-ae7f-8cb2224e0c99, type: Tasks, state:"},{"event":"cmd_output","timestamp":1607098347,"output":" pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingStat"},{"event":"cmd_output","timestamp":1607098347,"output":"e.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:27.242 [info] block_id: 1aa42ce0-99e2-4bd2-ae7f-8cb2224e0c99,"},{"event":"cmd_output","timestamp":1607098347,"output":" type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM."},{"event":"cmd_output","timestamp":1607098347,"output":"Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:27.254 [info] block_id: 1aa42ce0-99e2-4bd2-ae7f-8c"},{"event":"cmd_output","timestamp":1607098347,"output":"b2224e0c99, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098347,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:27.321 [info] block_id: 1aa42ce0-99e2-4b"},{"event":"cmd_output","timestamp":1607098347,"output":"d2-ae7f-8cb2224e0c99, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: E"},{"event":"cmd_output","timestamp":1607098347,"output":"lixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:27.328 [info] block_id: 1aa42ce0-"},{"event":"cmd_output","timestamp":1607098347,"output":"99e2-4bd2-ae7f-8cb2224e0c99, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098347,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:27.334 [info] ppl_id: b77"},{"event":"cmd_output","timestamp":1607098347,"output":"6f37b-f60f-4093-8526-2ff1c8f5127e, block_id: 1aa42ce0-99e2-4bd2-ae7f-8cb2224e0c99, type: PplBlocks, "},{"event":"cmd_output","timestamp":1607098347,"output":"block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098347,"output":"ir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:27.345 [info] ppl_id: b776f37b-f60f-"},{"event":"cmd_output","timestamp":1607098347,"output":"4093-8526-2ff1c8f5127e, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_co"},{"event":"cmd_output","timestamp":1607098347,"output":"unt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test gRPC list() - f"},{"event":"cmd_output","timestamp":1607098347,"output":"ilter by queue_id (2080.7ms)\u001b[0m\n * test gRPC get_project_id() - non-existin ppl_id - fail\r * tes"},{"event":"cmd_output","timestamp":1607098347,"output":"t gRPC get_project_id() - non-existin ppl_id - fail (skipped)\n * test gRPC list() - filter by labe"},{"event":"cmd_output","timestamp":1607098347,"output":"l\u001b[22m\n16:12:27.477 [info] ppl_id: 28b0b7b7-ba29-49a0-aa3f-ca1860acc9f8, type: PplRequests, event:"},{"event":"cmd_output","timestamp":1607098347,"output":" persisted schedule request with request_token: ec2df3cc-785a-43ad-b6ec-fd8ecf407a51, origin: Elixir"},{"event":"cmd_output","timestamp":1607098347,"output":".Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:27.479 [info] "},{"event":"cmd_output","timestamp":1607098347,"output":" ppl_id: 28b0b7b7-ba29-49a0-aa3f-ca1860acc9f8, type: PplRequests, event: persisted definition for re"},{"event":"cmd_output","timestamp":1607098347,"output":"quest with request_token: ec2df3cc-785a-43ad-b6ec-fd8ecf407a51, origin: Elixir.Ppl.PplRequests.Model"},{"event":"cmd_output","timestamp":1607098347,"output":".PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:27.488 [info] ppl_id: 28b0b7b7-ba2"},{"event":"cmd_output","timestamp":1607098347,"output":"9-49a0-aa3f-ca1860acc9f8, type: Ppls, state: initializing, event: initializing, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098347,"output":"rigin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:27.493 [info] "},{"event":"cmd_output","timestamp":1607098347,"output":" Persisted ppl_sub_init for pipeline with ppl_id: 28b0b7b7-ba29-49a0-aa3f-ca1860acc9f8: %Ppl.PplSubI"},{"event":"cmd_output","timestamp":1607098347,"output":"nits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_"},{"event":"cmd_output","timestamp":1607098347,"output":"id: nil, error_description: nil, id: 214, in_scheduling: false, init_type: \"regular\", inserted_at: ~"},{"event":"cmd_output","timestamp":1607098347,"output":"N[2020-12-04 16:12:27.491812], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"28b0b7b7-ba29-49a0-aa3f-ca1860acc9f8\", recovery_count: 0, result: "},{"event":"cmd_output","timestamp":1607098347,"output":"nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, upda"},{"event":"cmd_output","timestamp":1607098347,"output":"ted_at: ~N[2020-12-04 16:12:27.491821]}\n\u001b[0m\u001b[22m\n16:12:27.499 [info] ppl_id: a6a2dad4-1767-408d-"},{"event":"cmd_output","timestamp":1607098347,"output":"bb5f-63668052aa13, type: PplRequests, event: persisted schedule request with request_token: 6a0f4075"},{"event":"cmd_output","timestamp":1607098347,"output":"-0654-41bd-a8f3-408ddc144929, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_respon"},{"event":"cmd_output","timestamp":1607098347,"output":"se/2(L55), \n\u001b[0m\u001b[22m\n16:12:27.500 [info] ppl_id: a6a2dad4-1767-408d-bb5f-63668052aa13, type: Ppl"},{"event":"cmd_output","timestamp":1607098347,"output":"Requests, event: persisted definition for request with request_token: 6a0f4075-0654-41bd-a8f3-408ddc"},{"event":"cmd_output","timestamp":1607098347,"output":"144929, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098347,"output":"m\n16:12:27.503 [info] ppl_id: a6a2dad4-1767-408d-bb5f-63668052aa13, type: Ppls, state: initializin"},{"event":"cmd_output","timestamp":1607098347,"output":"g, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_respons"},{"event":"cmd_output","timestamp":1607098347,"output":"e/2(L124), \n\u001b[0m\u001b[22m\n16:12:27.507 [info] Persisted ppl_sub_init for pipeline with ppl_id: a6a2da"},{"event":"cmd_output","timestamp":1607098347,"output":"d4-1767-408d-bb5f-63668052aa13: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:"},{"event":"cmd_output","timestamp":1607098347,"output":"loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 215, in_scheduling:"},{"event":"cmd_output","timestamp":1607098347,"output":" false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:27.505716], pipeline_requests: #Ecto."},{"event":"cmd_output","timestamp":1607098347,"output":"Association.NotLoaded, ppl_id: \"a6a2dad4-1767-408d-bb5"},{"event":"cmd_output","timestamp":1607098347,"output":"f-63668052aa13\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_req"},{"event":"cmd_output","timestamp":1607098347,"output":"uest: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:27.505724]}\n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098347,"output":"2:27.510 [info] ppl_id: 749f47f1-5af9-4522-9d3a-226ed7020a38, type: PplRequests, event: persisted s"},{"event":"cmd_output","timestamp":1607098347,"output":"chedule request with request_token: d2c6b894-cc0f-44b2-8962-88f19fd9709d, origin: Elixir.Ppl.PplRequ"},{"event":"cmd_output","timestamp":1607098347,"output":"ests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:27.512 [info] ppl_id: 749"},{"event":"cmd_output","timestamp":1607098347,"output":"f47f1-5af9-4522-9d3a-226ed7020a38, type: PplRequests, event: persisted definition for request with r"},{"event":"cmd_output","timestamp":1607098347,"output":"equest_token: d2c6b894-cc0f-44b2-8962-88f19fd9709d, origin: Elixir.Ppl.PplRequests.Model.PplRequests"},{"event":"cmd_output","timestamp":1607098347,"output":"Queries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:27.514 [info] ppl_id: 749f47f1-5af9-4522-9d3a-"},{"event":"cmd_output","timestamp":1607098347,"output":"226ed7020a38, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098347,"output":"r.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:27.517 [info] Persisted p"},{"event":"cmd_output","timestamp":1607098347,"output":"pl_sub_init for pipeline with ppl_id: 749f47f1-5af9-4522-9d3a-226ed7020a38: %Ppl.PplSubInits.Model.P"},{"event":"cmd_output","timestamp":1607098347,"output":"plSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, err"},{"event":"cmd_output","timestamp":1607098347,"output":"or_description: nil, id: 216, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04"},{"event":"cmd_output","timestamp":1607098347,"output":" 16:12:27.516259], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"749f47f1-5af9-4522-9d3a-226ed7020a38\", recovery_count: 0, result: nil, result_"},{"event":"cmd_output","timestamp":1607098347,"output":"reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2"},{"event":"cmd_output","timestamp":1607098347,"output":"020-12-04 16:12:27.516267]}\n\u001b[0m\u001b[22m\n16:12:27.520 [info] ppl_id: 12683dff-9dfd-4aed-986e-60b4427"},{"event":"cmd_output","timestamp":1607098347,"output":"58e07, type: PplRequests, event: persisted schedule request with request_token: 0e3c6ef9-a5af-4956-a"},{"event":"cmd_output","timestamp":1607098347,"output":"633-5fdbad581b3b, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \r"},{"event":"cmd_output","timestamp":1607098347,"output":"\n\u001b[0m\u001b[22m\n16:12:27.522 [info] ppl_id: 12683dff-9dfd-4aed-986e-60b442758e07, type: PplRequests, ev"},{"event":"cmd_output","timestamp":1607098347,"output":"ent: persisted definition for request with request_token: 0e3c6ef9-a5af-4956-a633-5fdbad581b3b, orig"},{"event":"cmd_output","timestamp":1607098347,"output":"in: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:27."},{"event":"cmd_output","timestamp":1607098347,"output":"524 [info] ppl_id: 12683dff-9dfd-4aed-986e-60b442758e07, type: Ppls, state: initializing, event: in"},{"event":"cmd_output","timestamp":1607098347,"output":"itializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \r"},{"event":"cmd_output","timestamp":1607098347,"output":"\n\u001b[0m\u001b[22m\n16:12:27.528 [info] Persisted ppl_sub_init for pipeline with ppl_id: 12683dff-9dfd-4aed"},{"event":"cmd_output","timestamp":1607098347,"output":"-986e-60b442758e07: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pip"},{"event":"cmd_output","timestamp":1607098347,"output":"eline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 217, in_scheduling: false, init"},{"event":"cmd_output","timestamp":1607098347,"output":"_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:27.527747], pipeline_requests: #Ecto.Association."},{"event":"cmd_output","timestamp":1607098347,"output":"NotLoaded, ppl_id: \"12683dff-9dfd-4aed-986e-60b442758e"},{"event":"cmd_output","timestamp":1607098347,"output":"07\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, t"},{"event":"cmd_output","timestamp":1607098347,"output":"erminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:27.527755]}\n\u001b[0m\u001b[22m\n16:12:27.532 [in"},{"event":"cmd_output","timestamp":1607098347,"output":"fo] ppl_id: ceb13926-a5a6-4f58-87d9-7d07a0191b92, type: PplRequests, event: persisted schedule requ"},{"event":"cmd_output","timestamp":1607098347,"output":"est with request_token: 831c6e1f-e780-4626-b935-a509dd2d60be, origin: Elixir.Ppl.PplRequests.Model.P"},{"event":"cmd_output","timestamp":1607098347,"output":"plRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:27.533 [info] ppl_id: ceb13926-a5a6-4"},{"event":"cmd_output","timestamp":1607098347,"output":"f58-87d9-7d07a0191b92, type: PplRequests, event: persisted definition for request with request_token"},{"event":"cmd_output","timestamp":1607098347,"output":": 831c6e1f-e780-4626-b935-a509dd2d60be, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.inse"},{"event":"cmd_output","timestamp":1607098347,"output":"rt_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:27.535 [info] ppl_id: ceb13926-a5a6-4f58-87d9-7d07a0191b92"},{"event":"cmd_output","timestamp":1607098347,"output":", type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.M"},{"event":"cmd_output","timestamp":1607098347,"output":"odel.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:27.538 [info] Persisted ppl_sub_init "},{"event":"cmd_output","timestamp":1607098347,"output":"for pipeline with ppl_id: ceb13926-a5a6-4f58-87d9-7d07a0191b92: %Ppl.PplSubInits.Model.PplSubInits{_"},{"event":"cmd_output","timestamp":1607098347,"output":"_meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_descripti"},{"event":"cmd_output","timestamp":1607098347,"output":"on: nil, id: 218, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:27.53"},{"event":"cmd_output","timestamp":1607098347,"output":"7323], pipeline_requests: #Ecto.Association.NotLoaded,"},{"event":"cmd_output","timestamp":1607098347,"output":" ppl_id: \"ceb13926-a5a6-4f58-87d9-7d07a0191b92\", recovery_count: 0, result: nil, result_reason: nil,"},{"event":"cmd_output","timestamp":1607098347,"output":" state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16"},{"event":"cmd_output","timestamp":1607098347,"output":":12:27.537330]}\n\u001b[0m\u001b[22m\n16:12:27.541 [info] ppl_id: 6084631b-60bb-43eb-8757-6c35cfb666c4, type:"},{"event":"cmd_output","timestamp":1607098347,"output":" PplRequests, event: persisted schedule request with request_token: 50db6b16-db5a-47f5-93ed-6f327763"},{"event":"cmd_output","timestamp":1607098347,"output":"b21f, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098347,"output":"16:12:27.543 [info] ppl_id: 6084631b-60bb-43eb-8757-6c35cfb666c4, type: PplRequests, event: persist"},{"event":"cmd_output","timestamp":1607098347,"output":"ed definition for request with request_token: 50db6b16-db5a-47f5-93ed-6f327763b21f, origin: Elixir.P"},{"event":"cmd_output","timestamp":1607098347,"output":"pl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:27.545 [info] "},{"event":"cmd_output","timestamp":1607098347,"output":"ppl_id: 6084631b-60bb-43eb-8757-6c35cfb666c4, type: Ppls, state: initializing, event: initializing, "},{"event":"cmd_output","timestamp":1607098347,"output":"recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098347,"output":"16:12:27.548 [info] Persisted ppl_sub_init for pipeline with ppl_id: 6084631b-60bb-43eb-8757-6c35cf"},{"event":"cmd_output","timestamp":1607098347,"output":"b666c4: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_in"},{"event":"cmd_output","timestamp":1607098347,"output":"its\">, compile_task_id: nil, error_description: nil, id: 219, in_scheduling: false, init_type: \"regu"},{"event":"cmd_output","timestamp":1607098347,"output":"lar\", inserted_at: ~N[2020-12-04 16:12:27.547661], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"6084631b-60bb-43eb-8757-6c35cfb666c4\", recover"},{"event":"cmd_output","timestamp":1607098347,"output":"y_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_req"},{"event":"cmd_output","timestamp":1607098347,"output":"uest_desc: nil, updated_at: ~N[2020-12-04 16:12:27.547669]}\n\u001b[0m\u001b[22m\n16:12:27.552 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098347,"output":" f467f226-99ad-4b7e-8c7b-e0c8a90ce6b2, type: PplRequests, event: persisted schedule request with req"},{"event":"cmd_output","timestamp":1607098347,"output":"uest_token: 95bcc86a-9bde-4988-bad9-6e817cdfeef0, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQu"},{"event":"cmd_output","timestamp":1607098347,"output":"eries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:27.554 [info] ppl_id: f467f226-99ad-4b7e-8c7b-e0c"},{"event":"cmd_output","timestamp":1607098347,"output":"8a90ce6b2, type: PplRequests, event: persisted definition for request with request_token: 95bcc86a-9"},{"event":"cmd_output","timestamp":1607098347,"output":"bde-4988-bad9-6e817cdfeef0, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definitio"},{"event":"cmd_output","timestamp":1607098347,"output":"n/3(L76), \n\u001b[0m\u001b[22m\n16:12:27.556 [info] ppl_id: f467f226-99ad-4b7e-8c7b-e0c8a90ce6b2, type: Ppls"},{"event":"cmd_output","timestamp":1607098347,"output":", state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQue"},{"event":"cmd_output","timestamp":1607098347,"output":"ries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:27.559 [info] Persisted ppl_sub_init for pipeline"},{"event":"cmd_output","timestamp":1607098347,"output":" with ppl_id: f467f226-99ad-4b7e-8c7b-e0c8a90ce6b2: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ec"},{"event":"cmd_output","timestamp":1607098347,"output":"to.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id:"},{"event":"cmd_output","timestamp":1607098347,"output":" 220, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:27.558131], pipel"},{"event":"cmd_output","timestamp":1607098347,"output":"ine_requests: #Ecto.Association.NotLoaded, ppl_id: \"f4"},{"event":"cmd_output","timestamp":1607098347,"output":"67f226-99ad-4b7e-8c7b-e0c8a90ce6b2\", recovery_count: 0, result: nil, result_reason: nil, state: \"cre"},{"event":"cmd_output","timestamp":1607098347,"output":"ated\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:27.55813"},{"event":"cmd_output","timestamp":1607098347,"output":"9]}\n\u001b[0m\u001b[22m\n16:12:27.563 [info] ppl_id: 2c80744c-10bb-4119-89e8-cb6395c17dc7, type: PplRequests"},{"event":"cmd_output","timestamp":1607098347,"output":", event: persisted schedule request with request_token: ee0c4626-6984-4abc-bb89-c9f775290ad4, origin"},{"event":"cmd_output","timestamp":1607098347,"output":": Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:27.564"},{"event":"cmd_output","timestamp":1607098347,"output":" [info] ppl_id: 2c80744c-10bb-4119-89e8-cb6395c17dc7, type: PplRequests, event: persisted definitio"},{"event":"cmd_output","timestamp":1607098347,"output":"n for request with request_token: ee0c4626-6984-4abc-bb89-c9f775290ad4, origin: Elixir.Ppl.PplReques"},{"event":"cmd_output","timestamp":1607098347,"output":"ts.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:27.566 [info] ppl_id: 2c80"},{"event":"cmd_output","timestamp":1607098347,"output":"744c-10bb-4119-89e8-cb6395c17dc7, type: Ppls, state: initializing, event: initializing, recovery_cou"},{"event":"cmd_output","timestamp":1607098347,"output":"nt: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:27.569"},{"event":"cmd_output","timestamp":1607098347,"output":" [info] Persisted ppl_sub_init for pipeline with ppl_id: 2c80744c-10bb-4119-89e8-cb6395c17dc7: %Ppl"},{"event":"cmd_output","timestamp":1607098347,"output":".PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compi"},{"event":"cmd_output","timestamp":1607098347,"output":"le_task_id: nil, error_description: nil, id: 221, in_scheduling: false, init_type: \"regular\", insert"},{"event":"cmd_output","timestamp":1607098347,"output":"ed_at: ~N[2020-12-04 16:12:27.568635], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"2c80744c-10bb-4119-89e8-cb6395c17dc7\", recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098347,"output":"result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: n"},{"event":"cmd_output","timestamp":1607098347,"output":"il, updated_at: ~N[2020-12-04 16:12:27.568642]}\n\u001b[0m\u001b[22m\n16:12:27.573 [info] ppl_id: 937e64e9-a2"},{"event":"cmd_output","timestamp":1607098347,"output":"f6-4595-937d-741706413032, type: PplRequests, event: persisted schedule request with request_token: "},{"event":"cmd_output","timestamp":1607098347,"output":"3400c067-5f27-4314-8867-540b8ce0d72c, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.proces"},{"event":"cmd_output","timestamp":1607098347,"output":"s_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:27.575 [info] ppl_id: 937e64e9-a2f6-4595-937d-741706413032, t"},{"event":"cmd_output","timestamp":1607098347,"output":"ype: PplRequests, event: persisted definition for request with request_token: 3400c067-5f27-4314-886"},{"event":"cmd_output","timestamp":1607098347,"output":"7-540b8ce0d72c, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n"},{"event":"cmd_output","timestamp":1607098347,"output":"\u001b[0m\u001b[22m\n16:12:27.577 [info] ppl_id: 937e64e9-a2f6-4595-937d-741706413032, type: Ppls, state: ini"},{"event":"cmd_output","timestamp":1607098347,"output":"tializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process"},{"event":"cmd_output","timestamp":1607098347,"output":"_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:27.580 [info] Persisted ppl_sub_init for pipeline with ppl_id"},{"event":"cmd_output","timestamp":1607098347,"output":": 937e64e9-a2f6-4595-937d-741706413032: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Me"},{"event":"cmd_output","timestamp":1607098347,"output":"tadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 222, in_sch"},{"event":"cmd_output","timestamp":1607098347,"output":"eduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:27.579833], pipeline_requests"},{"event":"cmd_output","timestamp":1607098347,"output":": #Ecto.Association.NotLoaded, ppl_id: \"937e64e9-a2f6-"},{"event":"cmd_output","timestamp":1607098347,"output":"4595-937d-741706413032\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", termi"},{"event":"cmd_output","timestamp":1607098347,"output":"nate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:27.579840]}\n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098347,"output":"2m\n16:12:27.584 [info] ppl_id: b33fcf21-dced-4d27-968c-73815f2c6538, type: PplRequests, event: per"},{"event":"cmd_output","timestamp":1607098347,"output":"sisted schedule request with request_token: 4a7b7e1e-f5ca-4ab1-9177-f8fc94cdd585, origin: Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098347,"output":".PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:27.585 [info] ppl"},{"event":"cmd_output","timestamp":1607098347,"output":"_id: b33fcf21-dced-4d27-968c-73815f2c6538, type: PplRequests, event: persisted definition for reques"},{"event":"cmd_output","timestamp":1607098347,"output":"t with request_token: 4a7b7e1e-f5ca-4ab1-9177-f8fc94cdd585, origin: Elixir.Ppl.PplRequests.Model.Ppl"},{"event":"cmd_output","timestamp":1607098347,"output":"RequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:27.587 [info] ppl_id: b33fcf21-dced-4d"},{"event":"cmd_output","timestamp":1607098347,"output":"27-968c-73815f2c6538, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098347,"output":"n: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:27.590 [info] Per"},{"event":"cmd_output","timestamp":1607098347,"output":"sisted ppl_sub_init for pipeline with ppl_id: b33fcf21-dced-4d27-968c-73815f2c6538: %Ppl.PplSubInits"},{"event":"cmd_output","timestamp":1607098347,"output":".Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: "},{"event":"cmd_output","timestamp":1607098347,"output":"nil, error_description: nil, id: 223, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[20"},{"event":"cmd_output","timestamp":1607098347,"output":"20-12-04 16:12:27.589042], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"b33fcf21-dced-4d27-968c-73815f2c6538\", recovery_count: 0, result: nil,"},{"event":"cmd_output","timestamp":1607098347,"output":" result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_"},{"event":"cmd_output","timestamp":1607098347,"output":"at: ~N[2020-12-04 16:12:27.589049]}\n\u001b[0m\u001b[22m\n16:12:27.593 [info] ppl_id: 72df80f2-85f9-4bab-a04a"},{"event":"cmd_output","timestamp":1607098347,"output":"-48a786d2ecdf, type: PplRequests, event: persisted schedule request with request_token: af0b9181-667"},{"event":"cmd_output","timestamp":1607098347,"output":"c-4617-8489-f9ab80daeaed, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2"},{"event":"cmd_output","timestamp":1607098347,"output":"(L55), \n\u001b[0m\u001b[22m\n16:12:27.594 [info] ppl_id: 72df80f2-85f9-4bab-a04a-48a786d2ecdf, type: PplRequ"},{"event":"cmd_output","timestamp":1607098347,"output":"ests, event: persisted definition for request with request_token: af0b9181-667c-4617-8489-f9ab80daea"},{"event":"cmd_output","timestamp":1607098347,"output":"ed, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098347,"output":"6:12:27.596 [info] ppl_id: 72df80f2-85f9-4bab-a04a-48a786d2ecdf, type: Ppls, state: initializing, e"},{"event":"cmd_output","timestamp":1607098347,"output":"vent: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2("},{"event":"cmd_output","timestamp":1607098347,"output":"L124), \n\u001b[0m\u001b[22m\n16:12:27.599 [info] Persisted ppl_sub_init for pipeline with ppl_id: 72df80f2-8"},{"event":"cmd_output","timestamp":1607098347,"output":"5f9-4bab-a04a-48a786d2ecdf: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:load"},{"event":"cmd_output","timestamp":1607098347,"output":"ed, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 224, in_scheduling: fal"},{"event":"cmd_output","timestamp":1607098347,"output":"se, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:27.597984], pipeline_requests: #Ecto.Asso"},{"event":"cmd_output","timestamp":1607098347,"output":"ciation.NotLoaded, ppl_id: \"72df80f2-85f9-4bab-a04a-48"},{"event":"cmd_output","timestamp":1607098347,"output":"a786d2ecdf\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request"},{"event":"cmd_output","timestamp":1607098347,"output":": nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:27.597992]}\n\u001b[0m\u001b[22m\n16:12:27"},{"event":"cmd_output","timestamp":1607098347,"output":".602 [info] ppl_id: 7b8281a4-691c-4318-a92e-d8a9d30f364a, type: PplRequests, event: persisted sched"},{"event":"cmd_output","timestamp":1607098347,"output":"ule request with request_token: 9d70d9c7-ae67-435a-8fcc-590e81b37cee, origin: Elixir.Ppl.PplRequests"},{"event":"cmd_output","timestamp":1607098347,"output":".Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:27.604 [info] ppl_id: 7b8281a"},{"event":"cmd_output","timestamp":1607098347,"output":"4-691c-4318-a92e-d8a9d30f364a, type: PplRequests, event: persisted definition for request with reque"},{"event":"cmd_output","timestamp":1607098347,"output":"st_token: 9d70d9c7-ae67-435a-8fcc-590e81b37cee, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQuer"},{"event":"cmd_output","timestamp":1607098347,"output":"ies.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:27.605 [info] ppl_id: 7b8281a4-691c-4318-a92e-d8a9"},{"event":"cmd_output","timestamp":1607098347,"output":"d30f364a, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Pp"},{"event":"cmd_output","timestamp":1607098347,"output":"l.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:27.613 [info] Persisted ppl_s"},{"event":"cmd_output","timestamp":1607098347,"output":"ub_init for pipeline with ppl_id: 7b8281a4-691c-4318-a92e-d8a9d30f364a: %Ppl.PplSubInits.Model.PplSu"},{"event":"cmd_output","timestamp":1607098347,"output":"bInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_d"},{"event":"cmd_output","timestamp":1607098347,"output":"escription: nil, id: 225, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:"},{"event":"cmd_output","timestamp":1607098347,"output":"12:27.611996], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"7b8281a4-691c-4318-a92e-d8a9d30f364a\", recovery_count: 0, result: nil, result_reas"},{"event":"cmd_output","timestamp":1607098347,"output":"on: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-"},{"event":"cmd_output","timestamp":1607098347,"output":"12-04 16:12:27.612004]}\n\u001b[0m\u001b[22m\n16:12:27.616 [info] ppl_id: 2d70290c-dd55-45f4-91c1-0ed508ae7a8"},{"event":"cmd_output","timestamp":1607098347,"output":"b, type: PplRequests, event: persisted schedule request with request_token: 7a168a47-7190-4a8c-977f-"},{"event":"cmd_output","timestamp":1607098347,"output":"a5008e05a4bb, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098347,"output":"m\u001b[22m\n16:12:27.617 [info] ppl_id: 2d70290c-dd55-45f4-91c1-0ed508ae7a8b, type: PplRequests, event:"},{"event":"cmd_output","timestamp":1607098347,"output":" persisted definition for request with request_token: 7a168a47-7190-4a8c-977f-a5008e05a4bb, origin: "},{"event":"cmd_output","timestamp":1607098347,"output":"Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:27.619 "},{"event":"cmd_output","timestamp":1607098347,"output":"[info] ppl_id: 2d70290c-dd55-45f4-91c1-0ed508ae7a8b, type: Ppls, state: initializing, event: initia"},{"event":"cmd_output","timestamp":1607098347,"output":"lizing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098347,"output":"m\u001b[22m\n16:12:27.622 [info] Persisted ppl_sub_init for pipeline with ppl_id: 2d70290c-dd55-45f4-91c"},{"event":"cmd_output","timestamp":1607098347,"output":"1-0ed508ae7a8b: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipelin"},{"event":"cmd_output","timestamp":1607098347,"output":"e_sub_inits\">, compile_task_id: nil, error_description: nil, id: 226, in_scheduling: false, init_typ"},{"event":"cmd_output","timestamp":1607098347,"output":"e: \"regular\", inserted_at: ~N[2020-12-04 16:12:27.621463], pipeline_requests: #Ecto.Association.NotL"},{"event":"cmd_output","timestamp":1607098347,"output":"oaded, ppl_id: \"2d70290c-dd55-45f4-91c1-0ed508ae7a8b\","},{"event":"cmd_output","timestamp":1607098347,"output":" recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, termi"},{"event":"cmd_output","timestamp":1607098347,"output":"nate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:27.621471]}\n\u001b[0m\u001b[22m\n16:12:27.625 [info] "},{"event":"cmd_output","timestamp":1607098347,"output":" ppl_id: c20d2029-d5c4-4b7f-b2d8-90e14011f6d6, type: PplRequests, event: persisted schedule request "},{"event":"cmd_output","timestamp":1607098347,"output":"with request_token: b6c3b96f-4ad9-4f09-a82f-0465a3f705eb, origin: Elixir.Ppl.PplRequests.Model.PplRe"},{"event":"cmd_output","timestamp":1607098347,"output":"questsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:27.634 [info] ppl_id: c20d2029-d5c4-4b7f-"},{"event":"cmd_output","timestamp":1607098347,"output":"b2d8-90e14011f6d6, type: PplRequests, event: persisted definition for request with request_token: b6"},{"event":"cmd_output","timestamp":1607098347,"output":"c3b96f-4ad9-4f09-a82f-0465a3f705eb, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_d"},{"event":"cmd_output","timestamp":1607098347,"output":"efinition/3(L76), \n\u001b[0m\u001b[22m\n16:12:27.635 [info] ppl_id: c20d2029-d5c4-4b7f-b2d8-90e14011f6d6, ty"},{"event":"cmd_output","timestamp":1607098347,"output":"pe: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model"},{"event":"cmd_output","timestamp":1607098347,"output":".PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:27.638 [info] Persisted ppl_sub_init for "},{"event":"cmd_output","timestamp":1607098347,"output":"pipeline with ppl_id: c20d2029-d5c4-4b7f-b2d8-90e14011f6d6: %Ppl.PplSubInits.Model.PplSubInits{__met"},{"event":"cmd_output","timestamp":1607098347,"output":"a__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: "},{"event":"cmd_output","timestamp":1607098347,"output":"nil, id: 227, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:27.637150"},{"event":"cmd_output","timestamp":1607098347,"output":"], pipeline_requests: #Ecto.Association.NotLoaded, ppl"},{"event":"cmd_output","timestamp":1607098347,"output":"_id: \"c20d2029-d5c4-4b7f-b2d8-90e14011f6d6\", recovery_count: 0, result: nil, result_reason: nil, sta"},{"event":"cmd_output","timestamp":1607098347,"output":"te: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:"},{"event":"cmd_output","timestamp":1607098347,"output":"27.637159]}\n\u001b[0m\u001b[22m\n16:12:27.640 [info] ppl_id: c15cfe28-7d59-4daf-bcb2-55af3c517ab7, type: Ppl"},{"event":"cmd_output","timestamp":1607098347,"output":"Requests, event: persisted schedule request with request_token: fa8ad601-77b4-42ae-a0c8-5e7e930b6c4e"},{"event":"cmd_output","timestamp":1607098347,"output":", origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098347,"output":"2:27.641 [info] ppl_id: c15cfe28-7d59-4daf-bcb2-55af3c517ab7, type: PplRequests, event: persisted d"},{"event":"cmd_output","timestamp":1607098347,"output":"efinition for request with request_token: fa8ad601-77b4-42ae-a0c8-5e7e930b6c4e, origin: Elixir.Ppl.P"},{"event":"cmd_output","timestamp":1607098347,"output":"plRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:27.643 [info] ppl_"},{"event":"cmd_output","timestamp":1607098347,"output":"id: c15cfe28-7d59-4daf-bcb2-55af3c517ab7, type: Ppls, state: initializing, event: initializing, reco"},{"event":"cmd_output","timestamp":1607098347,"output":"very_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098347,"output":"2:27.645 [info] Persisted ppl_sub_init for pipeline with ppl_id: c15cfe28-7d59-4daf-bcb2-55af3c517a"},{"event":"cmd_output","timestamp":1607098347,"output":"b7: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\""},{"event":"cmd_output","timestamp":1607098347,"output":">, compile_task_id: nil, error_description: nil, id: 228, in_scheduling: false, init_type: \"regular\""},{"event":"cmd_output","timestamp":1607098347,"output":", inserted_at: ~N[2020-12-04 16:12:27.644755], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"c15cfe28-7d59-4daf-bcb2-55af3c517ab7\", recovery_co"},{"event":"cmd_output","timestamp":1607098347,"output":"unt: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request"},{"event":"cmd_output","timestamp":1607098347,"output":"_desc: nil, updated_at: ~N[2020-12-04 16:12:27.644771]}\n\u001b[0m\u001b[22m\n16:12:27.647 [info] Periodic fr"},{"event":"cmd_output","timestamp":1607098347,"output":"om module Elixir.Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.STMHandler.Initiali"},{"event":"cmd_output","timestamp":1607098347,"output":"zingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Initializin"},{"event":"cmd_output","timestamp":1607098347,"output":"gState\"]}, recurring args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], cooling_time_sec: "},{"event":"cmd_output","timestamp":1607098347,"output":"0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher_cb: #Function<0.125"},{"event":"cmd_output","timestamp":1607098347,"output":"326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :ter"},{"event":"cmd_output","timestamp":1607098347,"output":"minate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls"},{"event":"cmd_output","timestamp":1607098347,"output":", task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:27.647 [info] Periodic from module Elixir.Ppl.Ppls.STMH"},{"event":"cmd_output","timestamp":1607098347,"output":"andler.PendingState with name Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 100 ms, metric_name"},{"event":"cmd_output","timestamp":1607098347,"output":": {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args: %{allowed_states: "},{"event":"cmd_output","timestamp":1607098347,"output":"[\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, "},{"event":"cmd_output","timestamp":1607098347,"output":"observed_state: \"pending\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler.PendingState.a"},{"event":"cmd_output","timestamp":1607098347,"output":"rgs/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :reco"},{"event":"cmd_output","timestamp":1607098347,"output":"very_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098347,"output":"16:12:27.647 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.QueuingState with name Elixir.P"},{"event":"cmd_output","timestamp":1607098347,"output":"pl.Ppls.STMHandler.QueuingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-"},{"event":"cmd_output","timestamp":1607098347,"output":"STMHandler-QueuingState\"]}, recurring args: %{allowed_states: [\"queuing\", \"running\", \"done\"], coolin"},{"event":"cmd_output","timestamp":1607098347,"output":"g_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", publisher_cb: #Functi"},{"event":"cmd_output","timestamp":1607098347,"output":"on<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :"},{"event":"cmd_output","timestamp":1607098347,"output":"terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.P"},{"event":"cmd_output","timestamp":1607098347,"output":"pls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:27.648 [info] Periodic from module Elixir.Ppl.Ppls.S"},{"event":"cmd_output","timestamp":1607098347,"output":"TMHandler.RunningState with name Elixir.Ppl.Ppls.STMHandler.RunningState :: period: 100 ms, metric_n"},{"event":"cmd_output","timestamp":1607098347,"output":"ame: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring args: %{allowed_state"},{"event":"cmd_output","timestamp":1607098347,"output":"s: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observ"},{"event":"cmd_output","timestamp":1607098347,"output":"ed_state: \"running\", publisher_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler.RunningState.args/0"},{"event":"cmd_output","timestamp":1607098347,"output":">, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_"},{"event":"cmd_output","timestamp":1607098347,"output":"count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:12"},{"event":"cmd_output","timestamp":1607098347,"output":":27.648 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.StoppingState with name Elixir.Ppl.P"},{"event":"cmd_output","timestamp":1607098347,"output":"pls.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STM"},{"event":"cmd_output","timestamp":1607098347,"output":"Handler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: "},{"event":"cmd_output","timestamp":1607098347,"output":"-2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"stopping\", publisher_cb: #Function<0.718034"},{"event":"cmd_output","timestamp":1607098347,"output":"93/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_r"},{"event":"cmd_output","timestamp":1607098347,"output":"equest, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_s"},{"event":"cmd_output","timestamp":1607098347,"output":"upervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:27.648 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHa"},{"event":"cmd_output","timestamp":1607098347,"output":"ndler.CreatedState with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 100 ms, metri"},{"event":"cmd_output","timestamp":1607098347,"output":"c_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args: %{all"},{"event":"cmd_output","timestamp":1607098347,"output":"owed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubI"},{"event":"cmd_output","timestamp":1607098347,"output":"nits, observed_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminat"},{"event":"cmd_output","timestamp":1607098347,"output":"e_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.Pp"},{"event":"cmd_output","timestamp":1607098347,"output":"lSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:27.649 [info] Periodic from module Elixir.Ppl."},{"event":"cmd_output","timestamp":1607098347,"output":"PplSubInits.STMHandler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler.FetchingState :: pe"},{"event":"cmd_output","timestamp":1607098347,"output":"riod: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, r"},{"event":"cmd_output","timestamp":1607098347,"output":"ecurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"done\"], cooling_time_sec: -2, init"},{"event":"cmd_output","timestamp":1607098347,"output":"ial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fetching\", publisher_cb: :skip, repo:"},{"event":"cmd_output","timestamp":1607098347,"output":" Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :"},{"event":"cmd_output","timestamp":1607098347,"output":"ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:27.649"},{"event":"cmd_output","timestamp":1607098347,"output":" [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CompilationState with name Elixir.Pp"},{"event":"cmd_output","timestamp":1607098347,"output":"l.PplSubInits.STMHandler.CompilationState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", ["},{"event":"cmd_output","timestamp":1607098347,"output":"\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurring args: %{allowed_states: [\"regular_init\", "},{"event":"cmd_output","timestamp":1607098347,"output":"\"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSu"},{"event":"cmd_output","timestamp":1607098347,"output":"bInits, observed_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :te"},{"event":"cmd_output","timestamp":1607098347,"output":"rminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Mo"},{"event":"cmd_output","timestamp":1607098347,"output":"del.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:27.649 [info] Periodic from module Elixi"},{"event":"cmd_output","timestamp":1607098347,"output":"r.Ppl.PplSubInits.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHandler.RegularIni"},{"event":"cmd_output","timestamp":1607098347,"output":"tState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-Regular"},{"event":"cmd_output","timestamp":1607098347,"output":"InitState\"]}, recurring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, initial_query: Ppl.Pp"},{"event":"cmd_output","timestamp":1607098347,"output":"lSubInits.Model.PplSubInits, observed_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo"},{"event":"cmd_output","timestamp":1607098347,"output":", returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], sche"},{"event":"cmd_output","timestamp":1607098347,"output":"ma: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:27.650 [info] Peri"},{"event":"cmd_output","timestamp":1607098347,"output":"odic from module Elixir.Ppl.PplBlocks.STMHandler.InitializingState with name Elixir.Ppl.PplBlocks.ST"},{"event":"cmd_output","timestamp":1607098347,"output":"MHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-"},{"event":"cmd_output","timestamp":1607098347,"output":"STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"waiting\", \"done"},{"event":"cmd_output","timestamp":1607098347,"output":"\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"initializing"},{"event":"cmd_output","timestamp":1607098347,"output":"\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state"},{"event":"cmd_output","timestamp":1607098347,"output":", :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supe"},{"event":"cmd_output","timestamp":1607098347,"output":"rvisor: :skip}\n\u001b[0m\u001b[22m\n16:12:27.650 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler"},{"event":"cmd_output","timestamp":1607098347,"output":".WaitingState with name Elixir.Ppl.PplBlocks.STMHandler.WaitingState :: period: 1000 ms, metric_name"},{"event":"cmd_output","timestamp":1607098347,"output":": {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurring args: %{allowed_sta"},{"event":"cmd_output","timestamp":1607098347,"output":"tes: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBloc"},{"event":"cmd_output","timestamp":1607098347,"output":"ks, observed_state: \"waiting\", publisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.STMHandler.Waiti"},{"event":"cmd_output","timestamp":1607098347,"output":"ngState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :resu"},{"event":"cmd_output","timestamp":1607098347,"output":"lt, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor:"},{"event":"cmd_output","timestamp":1607098347,"output":" :skip}\n\u001b[0m\u001b[22m\n16:12:27.650 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.Runnin"},{"event":"cmd_output","timestamp":1607098347,"output":"gState with name Elixir.Ppl.PplBlocks.STMHandler.RunningState :: period: 1000 ms, metric_name: {\"Ppl"},{"event":"cmd_output","timestamp":1607098347,"output":".beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\""},{"event":"cmd_output","timestamp":1607098347,"output":"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, o"},{"event":"cmd_output","timestamp":1607098347,"output":"bserved_state: \"running\", publisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHandler.RunningSt"},{"event":"cmd_output","timestamp":1607098347,"output":"ate.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, "},{"event":"cmd_output","timestamp":1607098347,"output":":recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supe"},{"event":"cmd_output","timestamp":1607098347,"output":"rvisor: :skip}\n\u001b[0m\u001b[22m\n16:12:27.651 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler"},{"event":"cmd_output","timestamp":1607098347,"output":".StoppingState with name Elixir.Ppl.PplBlocks.STMHandler.StoppingState :: period: 1000 ms, metric_na"},{"event":"cmd_output","timestamp":1607098347,"output":"me: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_"},{"event":"cmd_output","timestamp":1607098347,"output":"states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, ob"},{"event":"cmd_output","timestamp":1607098347,"output":"served_state: \"stopping\", publisher_cb: #Function<0.104215991/1 in Ppl.PplBlocks.STMHandler.Stopping"},{"event":"cmd_output","timestamp":1607098347,"output":"State.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result"},{"event":"cmd_output","timestamp":1607098347,"output":", :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_su"},{"event":"cmd_output","timestamp":1607098347,"output":"pervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:27.651 [info] Periodic from module Elixir.Block.Blocks.STMHandle"},{"event":"cmd_output","timestamp":1607098347,"output":"r.InitializingState with name Elixir.Block.Blocks.STMHandler.InitializingState :: period: 100 ms, me"},{"event":"cmd_output","timestamp":1607098347,"output":"tric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, recurring args: "},{"event":"cmd_output","timestamp":1607098347,"output":"%{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Blocks.Model.Blocks"},{"event":"cmd_output","timestamp":1607098347,"output":", observed_state: \"initializing\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :termi"},{"event":"cmd_output","timestamp":1607098347,"output":"nate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, t"},{"event":"cmd_output","timestamp":1607098347,"output":"ask_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:27.651 [info] Periodic from module Elixir.Block.Blocks.STM"},{"event":"cmd_output","timestamp":1607098347,"output":"Handler.RunningState with name Elixir.Block.Blocks.STMHandler.RunningState :: period: 100 ms, metric"},{"event":"cmd_output","timestamp":1607098347,"output":"_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-RunningState\"]}, recurring args: %{allowed"},{"event":"cmd_output","timestamp":1607098347,"output":"_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Bl"},{"event":"cmd_output","timestamp":1607098347,"output":"ocks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :termin"},{"event":"cmd_output","timestamp":1607098347,"output":"ate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, ta"},{"event":"cmd_output","timestamp":1607098347,"output":"sk_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:27.651 [info] Periodic from module Elixir.Block.Blocks.STMH"},{"event":"cmd_output","timestamp":1607098347,"output":"andler.StoppingState with name Elixir.Block.Blocks.STMHandler.StoppingState :: period: 100 ms, metri"},{"event":"cmd_output","timestamp":1607098347,"output":"c_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-StoppingState\"]}, recurring args: %{allow"},{"event":"cmd_output","timestamp":1607098347,"output":"ed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, obs"},{"event":"cmd_output","timestamp":1607098347,"output":"erved_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_requ"},{"event":"cmd_output","timestamp":1607098347,"output":"est, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_super"},{"event":"cmd_output","timestamp":1607098347,"output":"visor: :skip}\n\u001b[0m\u001b[22m\n16:12:27.651 [info] Periodic from module Elixir.Block.Tasks.STMHandler.Pe"},{"event":"cmd_output","timestamp":1607098347,"output":"ndingState with name Elixir.Block.Tasks.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Pp"},{"event":"cmd_output","timestamp":1607098347,"output":"l.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"r"},{"event":"cmd_output","timestamp":1607098347,"output":"unning\", \"done\"], cooling_time_sec: 0, initial_query: Block.Tasks.Model.Tasks, observed_state: \"pend"},{"event":"cmd_output","timestamp":1607098347,"output":"ing\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :"},{"event":"cmd_output","timestamp":1607098347,"output":"state, :recovery_count, :block_id, :build_request_id], schema: Block.Tasks.Model.Tasks, task_supervi"},{"event":"cmd_output","timestamp":1607098347,"output":"sor: :skip}\n\u001b[0m\u001b[22m\n16:12:27.651 [info] Periodic from module Elixir.Block.Tasks.STMHandler.Runn"},{"event":"cmd_output","timestamp":1607098347,"output":"ingState with name Elixir.Block.Tasks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl."},{"event":"cmd_output","timestamp":1607098347,"output":"beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"run"},{"event":"cmd_output","timestamp":1607098347,"output":"ning\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_s"},{"event":"cmd_output","timestamp":1607098347,"output":"tate: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :up"},{"event":"cmd_output","timestamp":1607098347,"output":"dated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :sk"},{"event":"cmd_output","timestamp":1607098347,"output":"ip}\n\u001b[0m\u001b[22m\n16:12:27.652 [info] Periodic from module Elixir.Block.Tasks.STMHandler.StoppingStat"},{"event":"cmd_output","timestamp":1607098347,"output":"e with name Elixir.Block.Tasks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.behold"},{"event":"cmd_output","timestamp":1607098347,"output":"er-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping"},{"event":"cmd_output","timestamp":1607098347,"output":"\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"stopping\""},{"event":"cmd_output","timestamp":1607098347,"output":", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :stat"},{"event":"cmd_output","timestamp":1607098347,"output":"e, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098347,"output":"\n16:12:27.762 [info] ppl_id: 28b0b7b7-ba29-49a0-aa3f-ca1860acc9f8, type: PplRequests, event: persis"},{"event":"cmd_output","timestamp":1607098347,"output":"ted source_args for pipeline: 28b0b7b7-ba29-49a0-aa3f-ca1860acc9f8, origin: Elixir.Ppl.PplRequests.M"},{"event":"cmd_output","timestamp":1607098347,"output":"odel.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:27.764 [info] ppl_id: 28b0b7b7-ba2"},{"event":"cmd_output","timestamp":1607098347,"output":"9-49a0-aa3f-ca1860acc9f8, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count"},{"event":"cmd_output","timestamp":1607098347,"output":": 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:27.782 [info] ppl_i"},{"event":"cmd_output","timestamp":1607098347,"output":"d: 28b0b7b7-ba29-49a0-aa3f-ca1860acc9f8, type: PplSubInits, state: regular_init, event: exit_schedul"},{"event":"cmd_output","timestamp":1607098347,"output":"ing, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:2"},{"event":"cmd_output","timestamp":1607098347,"output":"7.810 [info] ppl_id: 28b0b7b7-ba29-49a0-aa3f-ca1860acc9f8, type: PplRequests, event: persisted defi"},{"event":"cmd_output","timestamp":1607098347,"output":"nition for request with request_token: ec2df3cc-785a-43ad-b6ec-fd8ecf407a51, origin: Elixir.Ppl.PplR"},{"event":"cmd_output","timestamp":1607098347,"output":"equests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:27.819 [info] Queue p"},{"event":"cmd_output","timestamp":1607098347,"output":"ersisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserte"},{"event":"cmd_output","timestamp":1607098347,"output":"d_at: ~N[2020-12-04 16:12:27.818594], name: \"master-.semaphore/semaphore.yml\", organization_id: \"f9a"},{"event":"cmd_output","timestamp":1607098347,"output":"f9387-5a62-4256-8056-4f50af393056\", project_id: \"123\", queue_id: \"ba345962-823e-4a5e-9317-49016f4104"},{"event":"cmd_output","timestamp":1607098347,"output":"3b\", scope: \"project\", updated_at: ~N[2020-12-04 16:12:27.818602], user_generated: false}}\n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098347,"output":"m\n16:12:27.824 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.a"},{"event":"cmd_output","timestamp":1607098347,"output":"ll_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:27.824 [info] ppl_id: 28b0b7b7-ba29-49a0-aa3f-ca1860acc9f8, type"},{"event":"cmd_output","timestamp":1607098347,"output":": PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098347,"output":"Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:27.826 [info] ppl_i"},{"event":"cmd_output","timestamp":1607098347,"output":"d: 28b0b7b7-ba29-49a0-aa3f-ca1860acc9f8, type: PplSubInits, state: done, result: passed, event: exit"},{"event":"cmd_output","timestamp":1607098347,"output":"_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098347,"output":"\n16:12:27.838 [info] ppl_id: 28b0b7b7-ba29-49a0-aa3f-ca1860acc9f8, type: PplBlocks, block_index: 0,"},{"event":"cmd_output","timestamp":1607098347,"output":" state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state"},{"event":"cmd_output","timestamp":1607098347,"output":"_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:27.840 [info] ppl_id: 28b0b7b7-ba29-49a0-aa3f-ca1860acc9f8, type"},{"event":"cmd_output","timestamp":1607098347,"output":": Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.lo"},{"event":"cmd_output","timestamp":1607098347,"output":"g_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:27.852 [info] ppl_id: 28b0b7b7-ba29-49a0-aa3f-ca1860acc9f"},{"event":"cmd_output","timestamp":1607098347,"output":"8, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM."},{"event":"cmd_output","timestamp":1607098347,"output":"Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:27.867 [info] ppl_id: 28b0b7b7-ba29-49a0-aa3f-ca18"},{"event":"cmd_output","timestamp":1607098347,"output":"60acc9f8, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loop"},{"event":"cmd_output","timestamp":1607098347,"output":"er.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:27.874 [info] PplBlocks WaitingState STM is"},{"event":"cmd_output","timestamp":1607098347,"output":" scheduling block 0 from pipeline: \"28b0b7b7-ba29-49a0-aa3f-ca1860acc9f8\"\n\u001b[0m\u001b[22m\n16:12:27.878 ["},{"event":"cmd_output","timestamp":1607098347,"output":"info] ppl_id: a6a2dad4-1767-408d-bb5f-63668052aa13, type: PplRequests, event: persisted source_args"},{"event":"cmd_output","timestamp":1607098347,"output":" for pipeline: a6a2dad4-1767-408d-bb5f-63668052aa13, origin: Elixir.Ppl.PplRequests.Model.PplRequest"},{"event":"cmd_output","timestamp":1607098347,"output":"sQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:27.881 [info] ppl_id: a6a2dad4-1767-408d-bb5f-636"},{"event":"cmd_output","timestamp":1607098347,"output":"68052aa13, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098347,"output":"ixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:27.881 [info] block_id: 0f06ba4d-4"},{"event":"cmd_output","timestamp":1607098347,"output":"e8b-4941-a648-f0ba679033e7, type: BlockRequests, event: persisted block run request from ppl 28b0b7b"},{"event":"cmd_output","timestamp":1607098347,"output":"7-ba29-49a0-aa3f-ca1860acc9f8 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQue"},{"event":"cmd_output","timestamp":1607098347,"output":"ries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:27.885 [info] block_id: 0f06ba4d-4e8b-4941-a648-f0"},{"event":"cmd_output","timestamp":1607098347,"output":"ba679033e7, type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098347,"output":"r.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:27.887 [info] Block 0 of pipel"},{"event":"cmd_output","timestamp":1607098347,"output":"ine with id: 28b0b7b7-ba29-49a0-aa3f-ca1860acc9f8 scheduled in block service with id: : \"0f06ba4d-4e"},{"event":"cmd_output","timestamp":1607098347,"output":"8b-4941-a648-f0ba679033e7\"\n\u001b[0m\u001b[22m\n16:12:27.891 [info] ppl_id: 28b0b7b7-ba29-49a0-aa3f-ca1860ac"},{"event":"cmd_output","timestamp":1607098347,"output":"c9f8, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098347,"output":"igin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:27.895 [info] block_id: 0f"},{"event":"cmd_output","timestamp":1607098347,"output":"06ba4d-4e8b-4941-a648-f0ba679033e7, type: BlockRequests, event: persisted build and sub_ppl details "},{"event":"cmd_output","timestamp":1607098347,"output":"for block_request: 0f06ba4d-4e8b-4941-a648-f0ba679033e7, origin: Elixir.Block.BlockRequests.Model.Bl"},{"event":"cmd_output","timestamp":1607098347,"output":"ockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:27.898 [info] block_id: 0f06ba4d-4e8b-49"},{"event":"cmd_output","timestamp":1607098347,"output":"41-a648-f0ba679033e7, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098347,"output":".Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:27.900 [info] block_"},{"event":"cmd_output","timestamp":1607098347,"output":"id: 0f06ba4d-4e8b-4941-a648-f0ba679033e7, type: Blocks, state: running, event: exit_scheduling, reco"},{"event":"cmd_output","timestamp":1607098347,"output":"very_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:27.906 [in"},{"event":"cmd_output","timestamp":1607098347,"output":"fo] ppl_id: a6a2dad4-1767-408d-bb5f-63668052aa13, type: PplSubInits, state: regular_init, event: ex"},{"event":"cmd_output","timestamp":1607098347,"output":"it_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098347,"output":"m\n16:12:27.919 [info] block_id: 0f06ba4d-4e8b-4941-a648-f0ba679033e7, type: Tasks, state: running,"},{"event":"cmd_output","timestamp":1607098347,"output":" event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), "},{"event":"cmd_output","timestamp":1607098347,"output":"\n\u001b[0m\u001b[22m\n16:12:27.930 [info] ppl_id: a6a2dad4-1767-408d-bb5f-63668052aa13, type: PplRequests, e"},{"event":"cmd_output","timestamp":1607098347,"output":"vent: persisted definition for request with request_token: 6a0f4075-0654-41bd-a8f3-408ddc144929, ori"},{"event":"cmd_output","timestamp":1607098347,"output":"gin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:27"},{"event":"cmd_output","timestamp":1607098347,"output":".936 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L1"},{"event":"cmd_output","timestamp":1607098347,"output":"05), \n\u001b[0m\u001b[22m\n16:12:27.936 [info] ppl_id: a6a2dad4-1767-408d-bb5f-63668052aa13, type: PplBlocks"},{"event":"cmd_output","timestamp":1607098347,"output":", block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubI"},{"event":"cmd_output","timestamp":1607098347,"output":"nits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:27.937 [info] ppl_id: a6a2dad4"},{"event":"cmd_output","timestamp":1607098347,"output":"-1767-408d-bb5f-63668052aa13, type: PplSubInits, state: done, result: passed, event: exit_scheduling"},{"event":"cmd_output","timestamp":1607098347,"output":", recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:27.9"},{"event":"cmd_output","timestamp":1607098347,"output":"44 [info] ppl_id: a6a2dad4-1767-408d-bb5f-63668052aa13, type: Ppls, state: pending, event: exit_sch"},{"event":"cmd_output","timestamp":1607098347,"output":"eduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098347,"output":"12:27.947 [info] ppl_id: a6a2dad4-1767-408d-bb5f-63668052aa13, type: PplBlocks, block_index: 0, sta"},{"event":"cmd_output","timestamp":1607098347,"output":"te: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_cha"},{"event":"cmd_output","timestamp":1607098347,"output":"nge/1(L90), \n\u001b[0m\u001b[22m\n16:12:27.958 [info] ppl_id: a6a2dad4-1767-408d-bb5f-63668052aa13, type: Pp"},{"event":"cmd_output","timestamp":1607098347,"output":"ls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_st"},{"event":"cmd_output","timestamp":1607098347,"output":"ate_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:27.981 [info] block_id: 0f06ba4d-4e8b-4941-a648-f0ba679033e7,"},{"event":"cmd_output","timestamp":1607098347,"output":" type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl"},{"event":"cmd_output","timestamp":1607098347,"output":".log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:27.990 [info] block_id: 0f06ba4d-4e8b-4941-a648-f0ba67"},{"event":"cmd_output","timestamp":1607098347,"output":"9033e7, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper."},{"event":"cmd_output","timestamp":1607098347,"output":"STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:27.990 [info] ppl_id: 749f47f1-5af9-4522-9d3a-"},{"event":"cmd_output","timestamp":1607098347,"output":"226ed7020a38, type: PplRequests, event: persisted source_args for pipeline: 749f47f1-5af9-4522-9d3a-"},{"event":"cmd_output","timestamp":1607098347,"output":"226ed7020a38, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098347,"output":"22m\n16:12:27.994 [info] ppl_id: 749f47f1-5af9-4522-9d3a-226ed7020a38, type: PplSubInits, state: fe"},{"event":"cmd_output","timestamp":1607098347,"output":"tching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1"},{"event":"cmd_output","timestamp":1607098347,"output":"(L90), \n\u001b[0m\u001b[22m\n16:12:27.997 [info] ppl_id: 28b0b7b7-ba29-49a0-aa3f-ca1860acc9f8, block_id: 0f0"},{"event":"cmd_output","timestamp":1607098347,"output":"6ba4d-4e8b-4941-a648-f0ba679033e7, type: PplBlocks, block_index: 0, state: done, result: passed, eve"},{"event":"cmd_output","timestamp":1607098347,"output":"nt: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b["},{"event":"cmd_output","timestamp":1607098348,"output":"0m\u001b[22m\n16:12:28.012 [info] ppl_id: 28b0b7b7-ba29-49a0-aa3f-ca1860acc9f8, type: Ppls, state: done,"},{"event":"cmd_output","timestamp":1607098348,"output":" result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state"},{"event":"cmd_output","timestamp":1607098348,"output":"_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.027 [info] ppl_id: 749f47f1-5af9-4522-9d3a-226ed7020a38, type"},{"event":"cmd_output","timestamp":1607098348,"output":": PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper"},{"event":"cmd_output","timestamp":1607098348,"output":".STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.047 [info] ppl_id: 749f47f1-5af9-4522-9d3a"},{"event":"cmd_output","timestamp":1607098348,"output":"-226ed7020a38, type: PplRequests, event: persisted definition for request with request_token: d2c6b8"},{"event":"cmd_output","timestamp":1607098348,"output":"94-cc0f-44b2-8962-88f19fd9709d, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_defin"},{"event":"cmd_output","timestamp":1607098348,"output":"ition/3(L76), \n\u001b[0m\u001b[22m\n16:12:28.052 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHa"},{"event":"cmd_output","timestamp":1607098348,"output":"ndler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:28.052 [info] ppl_id: 749f47f1-5af9-4522"},{"event":"cmd_output","timestamp":1607098348,"output":"-9d3a-226ed7020a38, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_c"},{"event":"cmd_output","timestamp":1607098348,"output":"ount: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098348,"output":":12:28.054 [info] ppl_id: 749f47f1-5af9-4522-9d3a-226ed7020a38, type: PplSubInits, state: done, res"},{"event":"cmd_output","timestamp":1607098348,"output":"ult: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_cha"},{"event":"cmd_output","timestamp":1607098348,"output":"nge/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.061 [info] ppl_id: 749f47f1-5af9-4522-9d3a-226ed7020a38, type: Pp"},{"event":"cmd_output","timestamp":1607098348,"output":"lBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098348,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.061 [info] ppl_id: 749f47f1-5af9-4522"},{"event":"cmd_output","timestamp":1607098348,"output":"-9d3a-226ed7020a38, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: E"},{"event":"cmd_output","timestamp":1607098348,"output":"lixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.067 [info] ppl_id: 749f47f1-5a"},{"event":"cmd_output","timestamp":1607098348,"output":"f9-4522-9d3a-226ed7020a38, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098348,"output":"igin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.078 [info] ppl_id: a6a2"},{"event":"cmd_output","timestamp":1607098348,"output":"dad4-1767-408d-bb5f-63668052aa13, type: Ppls, state: running, event: exit_scheduling, recovery_count"},{"event":"cmd_output","timestamp":1607098348,"output":": 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.085 [info] PplBl"},{"event":"cmd_output","timestamp":1607098348,"output":"ocks WaitingState STM is scheduling block 0 from pipeline: \"a6a2dad4-1767-408d-bb5f-63668052aa13\"\n\u001b"},{"event":"cmd_output","timestamp":1607098348,"output":"[0m\u001b[22m\n16:12:28.093 [info] block_id: 5073be06-0502-422a-a4d9-f7905b9968b6, type: BlockRequests, "},{"event":"cmd_output","timestamp":1607098348,"output":"event: persisted block run request from ppl a6a2dad4-1767-408d-bb5f-63668052aa13 for block 0, origin"},{"event":"cmd_output","timestamp":1607098348,"output":": Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:"},{"event":"cmd_output","timestamp":1607098348,"output":"28.095 [info] block_id: 5073be06-0502-422a-a4d9-f7905b9968b6, type: Blocks, state: initializing, ev"},{"event":"cmd_output","timestamp":1607098348,"output":"ent: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43),"},{"event":"cmd_output","timestamp":1607098348,"output":" \n\u001b[0m\u001b[22m\n16:12:28.098 [info] Block 0 of pipeline with id: a6a2dad4-1767-408d-bb5f-63668052aa13"},{"event":"cmd_output","timestamp":1607098348,"output":" scheduled in block service with id: : \"5073be06-0502-422a-a4d9-f7905b9968b6\"\n\u001b[0m\u001b[22m\n16:12:28.1"},{"event":"cmd_output","timestamp":1607098348,"output":"00 [info] ppl_id: a6a2dad4-1767-408d-bb5f-63668052aa13, type: PplBlocks, block_index: 0, state: run"},{"event":"cmd_output","timestamp":1607098348,"output":"ning, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098348,"output":"90), \n\u001b[0m\u001b[22m\n16:12:28.103 [info] ppl_id: 12683dff-9dfd-4aed-986e-60b442758e07, type: PplReques"},{"event":"cmd_output","timestamp":1607098348,"output":"ts, event: persisted source_args for pipeline: 12683dff-9dfd-4aed-986e-60b442758e07, origin: Elixir."},{"event":"cmd_output","timestamp":1607098348,"output":"Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:28.103 [info] blo"},{"event":"cmd_output","timestamp":1607098348,"output":"ck_id: 5073be06-0502-422a-a4d9-f7905b9968b6, type: BlockRequests, event: persisted build and sub_ppl"},{"event":"cmd_output","timestamp":1607098348,"output":" details for block_request: 5073be06-0502-422a-a4d9-f7905b9968b6, origin: Elixir.Block.BlockRequests"},{"event":"cmd_output","timestamp":1607098348,"output":".Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:28.110 [info] ppl_id: 12683dff-"},{"event":"cmd_output","timestamp":1607098348,"output":"9dfd-4aed-986e-60b442758e07, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_co"},{"event":"cmd_output","timestamp":1607098348,"output":"unt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.111 [info] bl"},{"event":"cmd_output","timestamp":1607098348,"output":"ock_id: 5073be06-0502-422a-a4d9-f7905b9968b6, type: Tasks, state: pending, event: created, recovery_"},{"event":"cmd_output","timestamp":1607098348,"output":"count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098348,"output":"12:28.113 [info] block_id: 5073be06-0502-422a-a4d9-f7905b9968b6, type: Blocks, state: running, even"},{"event":"cmd_output","timestamp":1607098348,"output":"t: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098348,"output":"m\u001b[22m\n16:12:28.130 [info] block_id: 5073be06-0502-422a-a4d9-f7905b9968b6, type: Tasks, state: run"},{"event":"cmd_output","timestamp":1607098348,"output":"ning, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098348,"output":"90), \n\u001b[0m\u001b[22m\n16:12:28.132 [info] ppl_id: 12683dff-9dfd-4aed-986e-60b442758e07, type: PplSubIni"},{"event":"cmd_output","timestamp":1607098348,"output":"ts, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.l"},{"event":"cmd_output","timestamp":1607098348,"output":"og_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.154 [info] ppl_id: 12683dff-9dfd-4aed-986e-60b442758e"},{"event":"cmd_output","timestamp":1607098348,"output":"07, type: PplRequests, event: persisted definition for request with request_token: 0e3c6ef9-a5af-495"},{"event":"cmd_output","timestamp":1607098348,"output":"6-a633-5fdbad581b3b, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76"},{"event":"cmd_output","timestamp":1607098348,"output":"), \n\u001b[0m\u001b[22m\n16:12:28.161 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.Regul"},{"event":"cmd_output","timestamp":1607098348,"output":"arInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:28.161 [info] ppl_id: 12683dff-9dfd-4aed-986e-60b44"},{"event":"cmd_output","timestamp":1607098348,"output":"2758e07, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098348,"output":"igin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:28.162 "},{"event":"cmd_output","timestamp":1607098348,"output":"[info] ppl_id: 12683dff-9dfd-4aed-986e-60b442758e07, type: PplSubInits, state: done, result: passed"},{"event":"cmd_output","timestamp":1607098348,"output":", event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90),"},{"event":"cmd_output","timestamp":1607098348,"output":" \n\u001b[0m\u001b[22m\n16:12:28.168 [info] ppl_id: 12683dff-9dfd-4aed-986e-60b442758e07, type: PplBlocks, bl"},{"event":"cmd_output","timestamp":1607098348,"output":"ock_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.I"},{"event":"cmd_output","timestamp":1607098348,"output":"mpl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.168 [info] ppl_id: 12683dff-9dfd-4aed-986e-60b44"},{"event":"cmd_output","timestamp":1607098348,"output":"2758e07, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loope"},{"event":"cmd_output","timestamp":1607098348,"output":"r.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.175 [info] ppl_id: 12683dff-9dfd-4aed-986"},{"event":"cmd_output","timestamp":1607098348,"output":"e-60b442758e07, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098348,"output":"r.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.191 [info] block_id: 5073be06-0502"},{"event":"cmd_output","timestamp":1607098348,"output":"-422a-a4d9-f7905b9968b6, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098348,"output":": Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.195 [info] block_id: 5073be"},{"event":"cmd_output","timestamp":1607098348,"output":"06-0502-422a-a4d9-f7905b9968b6, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0"},{"event":"cmd_output","timestamp":1607098348,"output":", origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.201 [info] ppl_id: "},{"event":"cmd_output","timestamp":1607098348,"output":"a6a2dad4-1767-408d-bb5f-63668052aa13, block_id: 5073be06-0502-422a-a4d9-f7905b9968b6, type: PplBlock"},{"event":"cmd_output","timestamp":1607098348,"output":"s, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: E"},{"event":"cmd_output","timestamp":1607098348,"output":"lixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.206 [info] ppl_id: a6a2dad4-17"},{"event":"cmd_output","timestamp":1607098348,"output":"67-408d-bb5f-63668052aa13, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery"},{"event":"cmd_output","timestamp":1607098348,"output":"_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.216 [info] "},{"event":"cmd_output","timestamp":1607098348,"output":" ppl_id: ceb13926-a5a6-4f58-87d9-7d07a0191b92, type: PplRequests, event: persisted source_args for p"},{"event":"cmd_output","timestamp":1607098348,"output":"ipeline: ceb13926-a5a6-4f58-87d9-7d07a0191b92, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueri"},{"event":"cmd_output","timestamp":1607098348,"output":"es.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:28.223 [info] ppl_id: ceb13926-a5a6-4f58-87d9-7d07a0191"},{"event":"cmd_output","timestamp":1607098348,"output":"b92, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098348,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.236 [info] ppl_id: ceb13926-a5a6-4f58"},{"event":"cmd_output","timestamp":1607098348,"output":"-87d9-7d07a0191b92, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: "},{"event":"cmd_output","timestamp":1607098348,"output":"0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.254 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098348,"output":" ceb13926-a5a6-4f58-87d9-7d07a0191b92, type: PplRequests, event: persisted definition for request wi"},{"event":"cmd_output","timestamp":1607098348,"output":"th request_token: 831c6e1f-e780-4626-b935-a509dd2d60be, origin: Elixir.Ppl.PplRequests.Model.PplRequ"},{"event":"cmd_output","timestamp":1607098348,"output":"estsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:28.257 [info] event: created, origin: Elix"},{"event":"cmd_output","timestamp":1607098348,"output":"ir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:28.257 [info] pp"},{"event":"cmd_output","timestamp":1607098348,"output":"l_id: ceb13926-a5a6-4f58-87d9-7d07a0191b92, type: PplBlocks, block_index: 0, state: initializing, ev"},{"event":"cmd_output","timestamp":1607098348,"output":"ent: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/"},{"event":"cmd_output","timestamp":1607098348,"output":"1(L105), \n\u001b[0m\u001b[22m\n16:12:28.259 [info] ppl_id: ceb13926-a5a6-4f58-87d9-7d07a0191b92, type: PplSu"},{"event":"cmd_output","timestamp":1607098348,"output":"bInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loope"},{"event":"cmd_output","timestamp":1607098348,"output":"r.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.265 [info] ppl_id: ceb13926-a5a6-4f58-87d"},{"event":"cmd_output","timestamp":1607098348,"output":"9-7d07a0191b92, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_co"},{"event":"cmd_output","timestamp":1607098348,"output":"unt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.265 [info] pp"},{"event":"cmd_output","timestamp":1607098348,"output":"l_id: ceb13926-a5a6-4f58-87d9-7d07a0191b92, type: Ppls, state: pending, event: exit_scheduling, reco"},{"event":"cmd_output","timestamp":1607098348,"output":"very_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.275 [in"},{"event":"cmd_output","timestamp":1607098348,"output":"fo] ppl_id: ceb13926-a5a6-4f58-87d9-7d07a0191b92, type: Ppls, state: queuing, event: exit_schedulin"},{"event":"cmd_output","timestamp":1607098348,"output":"g, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28."},{"event":"cmd_output","timestamp":1607098348,"output":"284 [info] ppl_id: 749f47f1-5af9-4522-9d3a-226ed7020a38, type: Ppls, state: running, event: exit_sc"},{"event":"cmd_output","timestamp":1607098348,"output":"heduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098348,"output":":12:28.289 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"749f47f1-5af9-45"},{"event":"cmd_output","timestamp":1607098348,"output":"22-9d3a-226ed7020a38\"\n\u001b[0m\u001b[22m\n16:12:28.292 [info] block_id: 641e76bd-2cbd-42fb-8d0e-e514caabbc4"},{"event":"cmd_output","timestamp":1607098348,"output":"f, type: BlockRequests, event: persisted block run request from ppl 749f47f1-5af9-4522-9d3a-226ed702"},{"event":"cmd_output","timestamp":1607098348,"output":"0a38 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L"},{"event":"cmd_output","timestamp":1607098348,"output":"35), \n\u001b[0m\u001b[22m\n16:12:28.294 [info] block_id: 641e76bd-2cbd-42fb-8d0e-e514caabbc4f, type: Blocks,"},{"event":"cmd_output","timestamp":1607098348,"output":" state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.Bloc"},{"event":"cmd_output","timestamp":1607098348,"output":"ksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:28.295 [info] Block 0 of pipeline with id: 749f47f1-5af"},{"event":"cmd_output","timestamp":1607098348,"output":"9-4522-9d3a-226ed7020a38 scheduled in block service with id: : \"641e76bd-2cbd-42fb-8d0e-e514caabbc4f"},{"event":"cmd_output","timestamp":1607098348,"output":"\"\n\u001b[0m\u001b[22m\n16:12:28.297 [info] ppl_id: 749f47f1-5af9-4522-9d3a-226ed7020a38, type: PplBlocks, bl"},{"event":"cmd_output","timestamp":1607098348,"output":"ock_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.I"},{"event":"cmd_output","timestamp":1607098348,"output":"mpl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.299 [info] block_id: 641e76bd-2cbd-42fb-8d0e-e51"},{"event":"cmd_output","timestamp":1607098348,"output":"4caabbc4f, type: BlockRequests, event: persisted build and sub_ppl details for block_request: 641e76"},{"event":"cmd_output","timestamp":1607098348,"output":"bd-2cbd-42fb-8d0e-e514caabbc4f, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert"},{"event":"cmd_output","timestamp":1607098348,"output":"_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:28.302 [info] block_id: 641e76bd-2cbd-42fb-8d0e-e514caabbc4f, typ"},{"event":"cmd_output","timestamp":1607098348,"output":"e: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler."},{"event":"cmd_output","timestamp":1607098348,"output":"InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:28.304 [info] block_id: 641e76bd-2cbd-42fb-8d"},{"event":"cmd_output","timestamp":1607098348,"output":"0e-e514caabbc4f, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098348,"output":"ixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.316 [info] block_id: 641e76bd-2"},{"event":"cmd_output","timestamp":1607098348,"output":"cbd-42fb-8d0e-e514caabbc4f, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098348,"output":"origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.330 [info] ppl_id: 60"},{"event":"cmd_output","timestamp":1607098348,"output":"84631b-60bb-43eb-8757-6c35cfb666c4, type: PplRequests, event: persisted source_args for pipeline: 60"},{"event":"cmd_output","timestamp":1607098348,"output":"84631b-60bb-43eb-8757-6c35cfb666c4, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_s"},{"event":"cmd_output","timestamp":1607098348,"output":"ource/2(L89), \n\u001b[0m\u001b[22m\n16:12:28.331 [info] ppl_id: 6084631b-60bb-43eb-8757-6c35cfb666c4, type: "},{"event":"cmd_output","timestamp":1607098348,"output":"PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.I"},{"event":"cmd_output","timestamp":1607098348,"output":"mpl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.352 [info] ppl_id: 6084631b-60bb-43eb-8757-6c35c"},{"event":"cmd_output","timestamp":1607098348,"output":"fb666c4, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098348,"output":"Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.368 [info] ppl_id: 6084631b-6"},{"event":"cmd_output","timestamp":1607098348,"output":"0bb-43eb-8757-6c35cfb666c4, type: PplRequests, event: persisted definition for request with request_"},{"event":"cmd_output","timestamp":1607098348,"output":"token: 50db6b16-db5a-47f5-93ed-6f327763b21f, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries"},{"event":"cmd_output","timestamp":1607098348,"output":".insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:28.375 [info] Queue persisted: {:ok, %Ppl.Queues.Mode"},{"event":"cmd_output","timestamp":1607098348,"output":"l.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:12:28.369"},{"event":"cmd_output","timestamp":1607098348,"output":"750], name: \"v1.0.2-.semaphore/semaphore.yml\", organization_id: \"59d829a6-699d-4997-b17c-4b7796f7d28"},{"event":"cmd_output","timestamp":1607098348,"output":"d\", project_id: \"123\", queue_id: \"288c9adf-6824-4c98-ac41-aaf04c7dd3e9\", scope: \"project\", updated_a"},{"event":"cmd_output","timestamp":1607098348,"output":"t: ~N[2020-12-04 16:12:28.369758], user_generated: false}}\n\u001b[0m\u001b[22m\n16:12:28.379 [info] event: c"},{"event":"cmd_output","timestamp":1607098348,"output":"reated, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098348,"output":"12:28.379 [info] ppl_id: 6084631b-60bb-43eb-8757-6c35cfb666c4, type: PplBlocks, block_index: 0, sta"},{"event":"cmd_output","timestamp":1607098348,"output":"te: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.Regul"},{"event":"cmd_output","timestamp":1607098348,"output":"arInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:28.382 [info] ppl_id: 6084631b-60bb-43eb-8757-6c35c"},{"event":"cmd_output","timestamp":1607098348,"output":"fb666c4, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098348,"output":"origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.390 [info] ppl_id: 60"},{"event":"cmd_output","timestamp":1607098348,"output":"84631b-60bb-43eb-8757-6c35cfb666c4, type: PplBlocks, block_index: 0, state: waiting, event: exit_sch"},{"event":"cmd_output","timestamp":1607098348,"output":"eduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098348,"output":"12:28.393 [info] ppl_id: 6084631b-60bb-43eb-8757-6c35cfb666c4, type: Ppls, state: pending, event: e"},{"event":"cmd_output","timestamp":1607098348,"output":"xit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098348,"output":"2m\n16:12:28.404 [info] ppl_id: 6084631b-60bb-43eb-8757-6c35cfb666c4, type: Ppls, state: queuing, e"},{"event":"cmd_output","timestamp":1607098348,"output":"vent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n"},{"event":"cmd_output","timestamp":1607098348,"output":"\u001b[0m\u001b[22m\n16:12:28.405 [info] block_id: 641e76bd-2cbd-42fb-8d0e-e514caabbc4f, type: Tasks, state: "},{"event":"cmd_output","timestamp":1607098348,"output":"done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098348,"output":"90), \n\u001b[0m\u001b[22m\n16:12:28.410 [info] block_id: 641e76bd-2cbd-42fb-8d0e-e514caabbc4f, type: Blocks,"},{"event":"cmd_output","timestamp":1607098348,"output":" state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_ch"},{"event":"cmd_output","timestamp":1607098348,"output":"ange/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.413 [info] ppl_id: 6084631b-60bb-43eb-8757-6c35cfb666c4, type: P"},{"event":"cmd_output","timestamp":1607098348,"output":"pls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_s"},{"event":"cmd_output","timestamp":1607098348,"output":"tate_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.418 [info] PplBlocks WaitingState STM is scheduling block"},{"event":"cmd_output","timestamp":1607098348,"output":" 0 from pipeline: \"6084631b-60bb-43eb-8757-6c35cfb666c4\"\n\u001b[0m\u001b[22m\n16:12:28.420 [info] ppl_id: 74"},{"event":"cmd_output","timestamp":1607098348,"output":"9f47f1-5af9-4522-9d3a-226ed7020a38, block_id: 641e76bd-2cbd-42fb-8d0e-e514caabbc4f, type: PplBlocks,"},{"event":"cmd_output","timestamp":1607098348,"output":" block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098348,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.423 [info] block_id: 7fd906b8-44"},{"event":"cmd_output","timestamp":1607098348,"output":"b8-4b7b-ac21-1fc93ee5dbd6, type: BlockRequests, event: persisted block run request from ppl 6084631b"},{"event":"cmd_output","timestamp":1607098348,"output":"-60bb-43eb-8757-6c35cfb666c4 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQuer"},{"event":"cmd_output","timestamp":1607098348,"output":"ies.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:28.425 [info] block_id: 7fd906b8-44b8-4b7b-ac21-1fc"},{"event":"cmd_output","timestamp":1607098348,"output":"93ee5dbd6, type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098348,"output":".Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:28.427 [info] Block 0 of pipeli"},{"event":"cmd_output","timestamp":1607098348,"output":"ne with id: 6084631b-60bb-43eb-8757-6c35cfb666c4 scheduled in block service with id: : \"7fd906b8-44b"},{"event":"cmd_output","timestamp":1607098348,"output":"8-4b7b-ac21-1fc93ee5dbd6\"\n\u001b[0m\u001b[22m\n16:12:28.428 [info] ppl_id: 6084631b-60bb-43eb-8757-6c35cfb66"},{"event":"cmd_output","timestamp":1607098348,"output":"6c4, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098348,"output":"gin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.433 [info] block_id: 7fd"},{"event":"cmd_output","timestamp":1607098348,"output":"906b8-44b8-4b7b-ac21-1fc93ee5dbd6, type: BlockRequests, event: persisted build and sub_ppl details f"},{"event":"cmd_output","timestamp":1607098348,"output":"or block_request: 7fd906b8-44b8-4b7b-ac21-1fc93ee5dbd6, origin: Elixir.Block.BlockRequests.Model.Blo"},{"event":"cmd_output","timestamp":1607098348,"output":"ckRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:28.434 [info] ppl_id: 749f47f1-5af9-4522-"},{"event":"cmd_output","timestamp":1607098348,"output":"9d3a-226ed7020a38, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: "},{"event":"cmd_output","timestamp":1607098348,"output":"0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.437 [info] block_i"},{"event":"cmd_output","timestamp":1607098348,"output":"d: 7fd906b8-44b8-4b7b-ac21-1fc93ee5dbd6, type: Tasks, state: pending, event: created, recovery_count"},{"event":"cmd_output","timestamp":1607098348,"output":": 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:28"},{"event":"cmd_output","timestamp":1607098348,"output":".440 [info] block_id: 7fd906b8-44b8-4b7b-ac21-1fc93ee5dbd6, type: Blocks, state: running, event: ex"},{"event":"cmd_output","timestamp":1607098348,"output":"it_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098348,"output":"m\n16:12:28.443 [info] ppl_id: f467f226-99ad-4b7e-8c7b-e0c8a90ce6b2, type: PplRequests, event: pers"},{"event":"cmd_output","timestamp":1607098348,"output":"isted source_args for pipeline: f467f226-99ad-4b7e-8c7b-e0c8a90ce6b2, origin: Elixir.Ppl.PplRequests"},{"event":"cmd_output","timestamp":1607098348,"output":".Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:28.445 [info] ppl_id: f467f226-9"},{"event":"cmd_output","timestamp":1607098348,"output":"9ad-4b7e-8c7b-e0c8a90ce6b2, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_cou"},{"event":"cmd_output","timestamp":1607098348,"output":"nt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.453 [info] blo"},{"event":"cmd_output","timestamp":1607098348,"output":"ck_id: 7fd906b8-44b8-4b7b-ac21-1fc93ee5dbd6, type: Tasks, state: running, event: exit_scheduling, re"},{"event":"cmd_output","timestamp":1607098348,"output":"covery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.470 ["},{"event":"cmd_output","timestamp":1607098348,"output":"info] ppl_id: f467f226-99ad-4b7e-8c7b-e0c8a90ce6b2, type: PplSubInits, state: regular_init, event: "},{"event":"cmd_output","timestamp":1607098348,"output":"exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098348,"output":"22m\n16:12:28.486 [info] ppl_id: f467f226-99ad-4b7e-8c7b-e0c8a90ce6b2, type: PplRequests, event: pe"},{"event":"cmd_output","timestamp":1607098348,"output":"rsisted definition for request with request_token: 95bcc86a-9bde-4988-bad9-6e817cdfeef0, origin: Eli"},{"event":"cmd_output","timestamp":1607098348,"output":"xir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:28.498 [in"},{"event":"cmd_output","timestamp":1607098348,"output":"fo] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b"},{"event":"cmd_output","timestamp":1607098348,"output":"[0m\u001b[22m\n16:12:28.498 [info] ppl_id: f467f226-99ad-4b7e-8c7b-e0c8a90ce6b2, type: PplBlocks, block_"},{"event":"cmd_output","timestamp":1607098348,"output":"index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STM"},{"event":"cmd_output","timestamp":1607098348,"output":"Handler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:28.500 [info] ppl_id: f467f226-99ad-4b"},{"event":"cmd_output","timestamp":1607098348,"output":"7e-8c7b-e0c8a90ce6b2, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recove"},{"event":"cmd_output","timestamp":1607098348,"output":"ry_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.505 [info"},{"event":"cmd_output","timestamp":1607098348,"output":"] ppl_id: f467f226-99ad-4b7e-8c7b-e0c8a90ce6b2, type: Ppls, state: pending, event: exit_scheduling,"},{"event":"cmd_output","timestamp":1607098348,"output":" recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.50"},{"event":"cmd_output","timestamp":1607098348,"output":"8 [info] ppl_id: 12683dff-9dfd-4aed-986e-60b442758e07, type: Ppls, state: running, event: exit_sche"},{"event":"cmd_output","timestamp":1607098348,"output":"duling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098348,"output":"2:28.511 [info] ppl_id: f467f226-99ad-4b7e-8c7b-e0c8a90ce6b2, type: PplBlocks, block_index: 0, stat"},{"event":"cmd_output","timestamp":1607098348,"output":"e: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chan"},{"event":"cmd_output","timestamp":1607098348,"output":"ge/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.517 [info] PplBlocks WaitingState STM is scheduling block 0 from p"},{"event":"cmd_output","timestamp":1607098348,"output":"ipeline: \"12683dff-9dfd-4aed-986e-60b442758e07\"\n\u001b[0m\u001b[22m\n16:12:28.517 [info] ppl_id: f467f226-99"},{"event":"cmd_output","timestamp":1607098348,"output":"ad-4b7e-8c7b-e0c8a90ce6b2, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098348,"output":"igin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.518 [info] block_id: 7f"},{"event":"cmd_output","timestamp":1607098348,"output":"d906b8-44b8-4b7b-ac21-1fc93ee5dbd6, type: Tasks, state: done, event: exit_scheduling, recovery_count"},{"event":"cmd_output","timestamp":1607098348,"output":": 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.525 [info] block"},{"event":"cmd_output","timestamp":1607098348,"output":"_id: 7fd906b8-44b8-4b7b-ac21-1fc93ee5dbd6, type: Blocks, state: done, event: exit_scheduling, recove"},{"event":"cmd_output","timestamp":1607098348,"output":"ry_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.527 [info"},{"event":"cmd_output","timestamp":1607098348,"output":"] block_id: d7cdd87a-9536-4f32-b0ce-601c8853437d, type: BlockRequests, event: persisted block run r"},{"event":"cmd_output","timestamp":1607098348,"output":"equest from ppl 12683dff-9dfd-4aed-986e-60b442758e07 for block 0, origin: Elixir.Block.BlockRequests"},{"event":"cmd_output","timestamp":1607098348,"output":".Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:28.529 [info] block_id: d7c"},{"event":"cmd_output","timestamp":1607098348,"output":"dd87a-9536-4f32-b0ce-601c8853437d, type: Blocks, state: initializing, event: initializing, recovery_"},{"event":"cmd_output","timestamp":1607098348,"output":"count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:28.531 ["},{"event":"cmd_output","timestamp":1607098348,"output":"info] Block 0 of pipeline with id: 12683dff-9dfd-4aed-986e-60b442758e07 scheduled in block service "},{"event":"cmd_output","timestamp":1607098348,"output":"with id: : \"d7cdd87a-9536-4f32-b0ce-601c8853437d\"\n\u001b[0m\u001b[22m\n16:12:28.534 [info] ppl_id: 6084631b-"},{"event":"cmd_output","timestamp":1607098348,"output":"60bb-43eb-8757-6c35cfb666c4, block_id: 7fd906b8-44b8-4b7b-ac21-1fc93ee5dbd6, type: PplBlocks, block_"},{"event":"cmd_output","timestamp":1607098348,"output":"index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loo"},{"event":"cmd_output","timestamp":1607098348,"output":"per.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.535 [info] ppl_id: 12683dff-9dfd-4aed-9"},{"event":"cmd_output","timestamp":1607098348,"output":"86e-60b442758e07, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_"},{"event":"cmd_output","timestamp":1607098348,"output":"count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.537 [info] "},{"event":"cmd_output","timestamp":1607098348,"output":"block_id: d7cdd87a-9536-4f32-b0ce-601c8853437d, type: BlockRequests, event: persisted build and sub_"},{"event":"cmd_output","timestamp":1607098348,"output":"ppl details for block_request: d7cdd87a-9536-4f32-b0ce-601c8853437d, origin: Elixir.Block.BlockReque"},{"event":"cmd_output","timestamp":1607098348,"output":"sts.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:28.539 [info] block_id: d7cd"},{"event":"cmd_output","timestamp":1607098348,"output":"d87a-9536-4f32-b0ce-601c8853437d, type: Tasks, state: pending, event: created, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098348,"output":"igin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:28.542 [i"},{"event":"cmd_output","timestamp":1607098348,"output":"nfo] block_id: d7cdd87a-9536-4f32-b0ce-601c8853437d, type: Blocks, state: running, event: exit_sche"},{"event":"cmd_output","timestamp":1607098348,"output":"duling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098348,"output":"2:28.547 [info] ppl_id: 6084631b-60bb-43eb-8757-6c35cfb666c4, type: Ppls, state: done, result: pass"},{"event":"cmd_output","timestamp":1607098348,"output":"ed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90"},{"event":"cmd_output","timestamp":1607098348,"output":"), \n\u001b[0m\u001b[22m\n16:12:28.558 [info] block_id: d7cdd87a-9536-4f32-b0ce-601c8853437d, type: Tasks, st"},{"event":"cmd_output","timestamp":1607098348,"output":"ate: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_ch"},{"event":"cmd_output","timestamp":1607098348,"output":"ange/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.563 [info] ppl_id: 2c80744c-10bb-4119-89e8-cb6395c17dc7, type: P"},{"event":"cmd_output","timestamp":1607098348,"output":"plRequests, event: persisted source_args for pipeline: 2c80744c-10bb-4119-89e8-cb6395c17dc7, origin:"},{"event":"cmd_output","timestamp":1607098348,"output":" Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:28.565 [in"},{"event":"cmd_output","timestamp":1607098348,"output":"fo] ppl_id: 2c80744c-10bb-4119-89e8-cb6395c17dc7, type: PplSubInits, state: fetching, event: exit_s"},{"event":"cmd_output","timestamp":1607098348,"output":"cheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098348,"output":"6:12:28.579 [info] ppl_id: 2c80744c-10bb-4119-89e8-cb6395c17dc7, type: PplSubInits, state: regular_"},{"event":"cmd_output","timestamp":1607098348,"output":"init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098348,"output":"90), \n\u001b[0m\u001b[22m\n16:12:28.598 [info] ppl_id: 2c80744c-10bb-4119-89e8-cb6395c17dc7, type: PplReques"},{"event":"cmd_output","timestamp":1607098348,"output":"ts, event: persisted definition for request with request_token: ee0c4626-6984-4abc-bb89-c9f775290ad4"},{"event":"cmd_output","timestamp":1607098348,"output":", origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098348,"output":"12:28.605 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?"},{"event":"cmd_output","timestamp":1607098348,"output":"/1(L105), \n\u001b[0m\u001b[22m\n16:12:28.605 [info] ppl_id: 2c80744c-10bb-4119-89e8-cb6395c17dc7, type: PplB"},{"event":"cmd_output","timestamp":1607098348,"output":"locks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.Pp"},{"event":"cmd_output","timestamp":1607098348,"output":"lSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:28.607 [info] ppl_id: 2c8"},{"event":"cmd_output","timestamp":1607098348,"output":"0744c-10bb-4119-89e8-cb6395c17dc7, type: PplSubInits, state: done, result: passed, event: exit_sched"},{"event":"cmd_output","timestamp":1607098348,"output":"uling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12"},{"event":"cmd_output","timestamp":1607098348,"output":":28.612 [info] ppl_id: 2c80744c-10bb-4119-89e8-cb6395c17dc7, type: PplBlocks, block_index: 0, state"},{"event":"cmd_output","timestamp":1607098348,"output":": waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chang"},{"event":"cmd_output","timestamp":1607098348,"output":"e/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.615 [info] ppl_id: 2c80744c-10bb-4119-89e8-cb6395c17dc7, type: Ppls"},{"event":"cmd_output","timestamp":1607098348,"output":", state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_stat"},{"event":"cmd_output","timestamp":1607098348,"output":"e_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.619 [info] ppl_id: f467f226-99ad-4b7e-8c7b-e0c8a90ce6b2, typ"},{"event":"cmd_output","timestamp":1607098348,"output":"e: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.l"},{"event":"cmd_output","timestamp":1607098348,"output":"og_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.621 [info] ppl_id: 2c80744c-10bb-4119-89e8-cb6395c17d"},{"event":"cmd_output","timestamp":1607098348,"output":"c7, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM"},{"event":"cmd_output","timestamp":1607098348,"output":".Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.626 [info] PplBlocks WaitingState STM is sched"},{"event":"cmd_output","timestamp":1607098348,"output":"uling block 0 from pipeline: \"f467f226-99ad-4b7e-8c7b-e0c8a90ce6b2\"\n\u001b[0m\u001b[22m\n16:12:28.630 [info] "},{"event":"cmd_output","timestamp":1607098348,"output":" block_id: d7cdd87a-9536-4f32-b0ce-601c8853437d, type: Tasks, state: done, event: exit_scheduling, r"},{"event":"cmd_output","timestamp":1607098348,"output":"ecovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.633 "},{"event":"cmd_output","timestamp":1607098348,"output":"[info] block_id: a65ea8d5-c669-4f8d-95fb-6e314b2d0d73, type: BlockRequests, event: persisted block "},{"event":"cmd_output","timestamp":1607098348,"output":"run request from ppl f467f226-99ad-4b7e-8c7b-e0c8a90ce6b2 for block 0, origin: Elixir.Block.BlockReq"},{"event":"cmd_output","timestamp":1607098348,"output":"uests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:28.637 [info] block_id"},{"event":"cmd_output","timestamp":1607098348,"output":": a65ea8d5-c669-4f8d-95fb-6e314b2d0d73, type: Blocks, state: initializing, event: initializing, reco"},{"event":"cmd_output","timestamp":1607098348,"output":"very_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:28."},{"event":"cmd_output","timestamp":1607098348,"output":"637 [info] block_id: d7cdd87a-9536-4f32-b0ce-601c8853437d, type: Blocks, state: done, event: exit_s"},{"event":"cmd_output","timestamp":1607098348,"output":"cheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098348,"output":"6:12:28.639 [info] Block 0 of pipeline with id: f467f226-99ad-4b7e-8c7b-e0c8a90ce6b2 scheduled in b"},{"event":"cmd_output","timestamp":1607098348,"output":"lock service with id: : \"a65ea8d5-c669-4f8d-95fb-6e314b2d0d73\"\n\u001b[0m\u001b[22m\n16:12:28.641 [info] ppl_"},{"event":"cmd_output","timestamp":1607098348,"output":"id: f467f226-99ad-4b7e-8c7b-e0c8a90ce6b2, type: PplBlocks, block_index: 0, state: running, event: ex"},{"event":"cmd_output","timestamp":1607098348,"output":"it_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098348,"output":"m\n16:12:28.644 [info] block_id: a65ea8d5-c669-4f8d-95fb-6e314b2d0d73, type: BlockRequests, event: "},{"event":"cmd_output","timestamp":1607098348,"output":"persisted build and sub_ppl details for block_request: a65ea8d5-c669-4f8d-95fb-6e314b2d0d73, origin:"},{"event":"cmd_output","timestamp":1607098348,"output":" Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:28.64"},{"event":"cmd_output","timestamp":1607098348,"output":"6 [info] ppl_id: 12683dff-9dfd-4aed-986e-60b442758e07, block_id: d7cdd87a-9536-4f32-b0ce-601c885343"},{"event":"cmd_output","timestamp":1607098348,"output":"7d, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098348,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.646 [info] b"},{"event":"cmd_output","timestamp":1607098348,"output":"lock_id: a65ea8d5-c669-4f8d-95fb-6e314b2d0d73, type: Tasks, state: pending, event: created, recovery"},{"event":"cmd_output","timestamp":1607098348,"output":"_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098348,"output":":12:28.649 [info] block_id: a65ea8d5-c669-4f8d-95fb-6e314b2d0d73, type: Blocks, state: running, eve"},{"event":"cmd_output","timestamp":1607098348,"output":"nt: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b["},{"event":"cmd_output","timestamp":1607098348,"output":"0m\u001b[22m\n16:12:28.663 [info] ppl_id: 12683dff-9dfd-4aed-986e-60b442758e07, type: Ppls, state: done,"},{"event":"cmd_output","timestamp":1607098348,"output":" result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state"},{"event":"cmd_output","timestamp":1607098348,"output":"_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.666 [info] block_id: a65ea8d5-c669-4f8d-95fb-6e314b2d0d73, ty"},{"event":"cmd_output","timestamp":1607098348,"output":"pe: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl"},{"event":"cmd_output","timestamp":1607098348,"output":".log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.673 [info] ppl_id: 937e64e9-a2f6-4595-937d-74170641"},{"event":"cmd_output","timestamp":1607098348,"output":"3032, type: PplRequests, event: persisted source_args for pipeline: 937e64e9-a2f6-4595-937d-74170641"},{"event":"cmd_output","timestamp":1607098348,"output":"3032, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098348,"output":"12:28.675 [info] ppl_id: 937e64e9-a2f6-4595-937d-741706413032, type: PplSubInits, state: fetching, "},{"event":"cmd_output","timestamp":1607098348,"output":"event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \r"},{"event":"cmd_output","timestamp":1607098348,"output":"\n\u001b[0m\u001b[22m\n16:12:28.687 [info] ppl_id: 937e64e9-a2f6-4595-937d-741706413032, type: PplSubInits, st"},{"event":"cmd_output","timestamp":1607098348,"output":"ate: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_sta"},{"event":"cmd_output","timestamp":1607098348,"output":"te_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.709 [info] ppl_id: 937e64e9-a2f6-4595-937d-741706413032, ty"},{"event":"cmd_output","timestamp":1607098348,"output":"pe: PplRequests, event: persisted definition for request with request_token: 3400c067-5f27-4314-8867"},{"event":"cmd_output","timestamp":1607098348,"output":"-540b8ce0d72c, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b"},{"event":"cmd_output","timestamp":1607098348,"output":"[0m\u001b[22m\n16:12:28.714 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInit"},{"event":"cmd_output","timestamp":1607098348,"output":"State.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:28.714 [info] ppl_id: 937e64e9-a2f6-4595-937d-74170641303"},{"event":"cmd_output","timestamp":1607098348,"output":"2, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098348,"output":"Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:28.716 [info]"},{"event":"cmd_output","timestamp":1607098348,"output":" ppl_id: 937e64e9-a2f6-4595-937d-741706413032, type: PplSubInits, state: done, result: passed, even"},{"event":"cmd_output","timestamp":1607098348,"output":"t: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098348,"output":"m\u001b[22m\n16:12:28.723 [info] ppl_id: 937e64e9-a2f6-4595-937d-741706413032, type: PplBlocks, block_in"},{"event":"cmd_output","timestamp":1607098348,"output":"dex: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.lo"},{"event":"cmd_output","timestamp":1607098348,"output":"g_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.728 [info] ppl_id: 937e64e9-a2f6-4595-937d-74170641303"},{"event":"cmd_output","timestamp":1607098348,"output":"2, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM."},{"event":"cmd_output","timestamp":1607098348,"output":"Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.730 [info] ppl_id: ceb13926-a5a6-4f58-87d9-7d07"},{"event":"cmd_output","timestamp":1607098348,"output":"a0191b92, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loop"},{"event":"cmd_output","timestamp":1607098348,"output":"er.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.734 [info] PplBlocks WaitingState STM is"},{"event":"cmd_output","timestamp":1607098348,"output":" scheduling block 0 from pipeline: \"ceb13926-a5a6-4f58-87d9-7d07a0191b92\"\n\u001b[0m\u001b[22m\n16:12:28.739 ["},{"event":"cmd_output","timestamp":1607098348,"output":"info] ppl_id: 937e64e9-a2f6-4595-937d-741706413032, type: Ppls, state: queuing, event: exit_schedul"},{"event":"cmd_output","timestamp":1607098348,"output":"ing, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:2"},{"event":"cmd_output","timestamp":1607098348,"output":"8.742 [info] block_id: f3cb4385-e70b-4201-8658-46fa1d4fb369, type: BlockRequests, event: persisted "},{"event":"cmd_output","timestamp":1607098348,"output":"block run request from ppl ceb13926-a5a6-4f58-87d9-7d07a0191b92 for block 0, origin: Elixir.Block.Bl"},{"event":"cmd_output","timestamp":1607098348,"output":"ockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:28.746 [info] bl"},{"event":"cmd_output","timestamp":1607098348,"output":"ock_id: f3cb4385-e70b-4201-8658-46fa1d4fb369, type: Blocks, state: initializing, event: initializing"},{"event":"cmd_output","timestamp":1607098348,"output":", recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098348,"output":"12:28.746 [info] block_id: a65ea8d5-c669-4f8d-95fb-6e314b2d0d73, type: Tasks, state: done, event: e"},{"event":"cmd_output","timestamp":1607098348,"output":"xit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098348,"output":"2m\n16:12:28.748 [info] Block 0 of pipeline with id: ceb13926-a5a6-4f58-87d9-7d07a0191b92 scheduled"},{"event":"cmd_output","timestamp":1607098348,"output":" in block service with id: : \"f3cb4385-e70b-4201-8658-46fa1d4fb369\"\n\u001b[0m\u001b[22m\n16:12:28.750 [info] "},{"event":"cmd_output","timestamp":1607098348,"output":" ppl_id: ceb13926-a5a6-4f58-87d9-7d07a0191b92, type: PplBlocks, block_index: 0, state: running, even"},{"event":"cmd_output","timestamp":1607098348,"output":"t: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098348,"output":"m\u001b[22m\n16:12:28.752 [info] block_id: a65ea8d5-c669-4f8d-95fb-6e314b2d0d73, type: Blocks, state: do"},{"event":"cmd_output","timestamp":1607098348,"output":"ne, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90"},{"event":"cmd_output","timestamp":1607098348,"output":"), \n\u001b[0m\u001b[22m\n16:12:28.754 [info] block_id: f3cb4385-e70b-4201-8658-46fa1d4fb369, type: BlockRequ"},{"event":"cmd_output","timestamp":1607098348,"output":"ests, event: persisted build and sub_ppl details for block_request: f3cb4385-e70b-4201-8658-46fa1d4f"},{"event":"cmd_output","timestamp":1607098348,"output":"b369, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098348,"output":"\n16:12:28.756 [info] block_id: f3cb4385-e70b-4201-8658-46fa1d4fb369, type: Tasks, state: pending, "},{"event":"cmd_output","timestamp":1607098348,"output":"event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/"},{"event":"cmd_output","timestamp":1607098348,"output":"1(L167), \n\u001b[0m\u001b[22m\n16:12:28.758 [info] block_id: f3cb4385-e70b-4201-8658-46fa1d4fb369, type: Blo"},{"event":"cmd_output","timestamp":1607098348,"output":"cks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_s"},{"event":"cmd_output","timestamp":1607098348,"output":"tate_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.762 [info] ppl_id: f467f226-99ad-4b7e-8c7b-e0c8a90ce6b2, "},{"event":"cmd_output","timestamp":1607098348,"output":"block_id: a65ea8d5-c669-4f8d-95fb-6e314b2d0d73, type: PplBlocks, block_index: 0, state: done, result"},{"event":"cmd_output","timestamp":1607098348,"output":": passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change"},{"event":"cmd_output","timestamp":1607098348,"output":"/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.773 [info] block_id: f3cb4385-e70b-4201-8658-46fa1d4fb369, type: Tas"},{"event":"cmd_output","timestamp":1607098348,"output":"ks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_st"},{"event":"cmd_output","timestamp":1607098348,"output":"ate_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.776 [info] ppl_id: f467f226-99ad-4b7e-8c7b-e0c8a90ce6b2, t"},{"event":"cmd_output","timestamp":1607098348,"output":"ype: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Lo"},{"event":"cmd_output","timestamp":1607098348,"output":"oper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.781 [info] ppl_id: b33fcf21-dced-4d27-"},{"event":"cmd_output","timestamp":1607098348,"output":"968c-73815f2c6538, type: PplRequests, event: persisted source_args for pipeline: b33fcf21-dced-4d27-"},{"event":"cmd_output","timestamp":1607098348,"output":"968c-73815f2c6538, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b"},{"event":"cmd_output","timestamp":1607098348,"output":"[0m\u001b[22m\n16:12:28.783 [info] ppl_id: b33fcf21-dced-4d27-968c-73815f2c6538, type: PplSubInits, stat"},{"event":"cmd_output","timestamp":1607098348,"output":"e: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_cha"},{"event":"cmd_output","timestamp":1607098348,"output":"nge/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.798 [info] ppl_id: b33fcf21-dced-4d27-968c-73815f2c6538, type: Pp"},{"event":"cmd_output","timestamp":1607098348,"output":"lSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM"},{"event":"cmd_output","timestamp":1607098348,"output":".Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.818 [info] ppl_id: b33fcf21-dced-4d27-968c-738"},{"event":"cmd_output","timestamp":1607098348,"output":"15f2c6538, type: PplRequests, event: persisted definition for request with request_token: 4a7b7e1e-f"},{"event":"cmd_output","timestamp":1607098348,"output":"5ca-4ab1-9177-f8fc94cdd585, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definitio"},{"event":"cmd_output","timestamp":1607098348,"output":"n/3(L76), \n\u001b[0m\u001b[22m\n16:12:28.824 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandle"},{"event":"cmd_output","timestamp":1607098348,"output":"r.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:28.824 [info] ppl_id: b33fcf21-dced-4d27-968"},{"event":"cmd_output","timestamp":1607098348,"output":"c-73815f2c6538, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count"},{"event":"cmd_output","timestamp":1607098348,"output":": 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:"},{"event":"cmd_output","timestamp":1607098348,"output":"28.825 [info] ppl_id: b33fcf21-dced-4d27-968c-73815f2c6538, type: PplSubInits, state: done, result:"},{"event":"cmd_output","timestamp":1607098348,"output":" passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/"},{"event":"cmd_output","timestamp":1607098348,"output":"1(L90), \n\u001b[0m\u001b[22m\n16:12:28.831 [info] ppl_id: b33fcf21-dced-4d27-968c-73815f2c6538, type: PplBlo"},{"event":"cmd_output","timestamp":1607098348,"output":"cks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loope"},{"event":"cmd_output","timestamp":1607098348,"output":"r.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.839 [info] ppl_id: b33fcf21-dced-4d27-968"},{"event":"cmd_output","timestamp":1607098348,"output":"c-73815f2c6538, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098348,"output":"r.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.841 [info] ppl_id: 2c80744c-10bb-4"},{"event":"cmd_output","timestamp":1607098348,"output":"119-89e8-cb6395c17dc7, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098348,"output":": Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.846 [info] PplBlocks Waitin"},{"event":"cmd_output","timestamp":1607098348,"output":"gState STM is scheduling block 0 from pipeline: \"2c80744c-10bb-4119-89e8-cb6395c17dc7\"\n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098348,"output":"6:12:28.852 [info] block_id: 94062711-956a-4c77-828a-ca17525b7c23, type: BlockRequests, event: pers"},{"event":"cmd_output","timestamp":1607098348,"output":"isted block run request from ppl 2c80744c-10bb-4119-89e8-cb6395c17dc7 for block 0, origin: Elixir.Bl"},{"event":"cmd_output","timestamp":1607098348,"output":"ock.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:28.855 [inf"},{"event":"cmd_output","timestamp":1607098348,"output":"o] ppl_id: b33fcf21-dced-4d27-968c-73815f2c6538, type: Ppls, state: queuing, event: exit_scheduling"},{"event":"cmd_output","timestamp":1607098348,"output":", recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.8"},{"event":"cmd_output","timestamp":1607098348,"output":"57 [info] block_id: 94062711-956a-4c77-828a-ca17525b7c23, type: Blocks, state: initializing, event:"},{"event":"cmd_output","timestamp":1607098348,"output":" initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b"},{"event":"cmd_output","timestamp":1607098348,"output":"[0m\u001b[22m\n16:12:28.864 [info] block_id: f3cb4385-e70b-4201-8658-46fa1d4fb369, type: Tasks, state: d"},{"event":"cmd_output","timestamp":1607098348,"output":"one, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L9"},{"event":"cmd_output","timestamp":1607098348,"output":"0), \n\u001b[0m\u001b[22m\n16:12:28.865 [info] Block 0 of pipeline with id: 2c80744c-10bb-4119-89e8-cb6395c17"},{"event":"cmd_output","timestamp":1607098348,"output":"dc7 scheduled in block service with id: : \"94062711-956a-4c77-828a-ca17525b7c23\"\n\u001b[0m\u001b[22m\n16:12:2"},{"event":"cmd_output","timestamp":1607098348,"output":"8.869 [info] ppl_id: 2c80744c-10bb-4119-89e8-cb6395c17dc7, type: PplBlocks, block_index: 0, state: "},{"event":"cmd_output","timestamp":1607098348,"output":"running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/"},{"event":"cmd_output","timestamp":1607098348,"output":"1(L90), \n\u001b[0m\u001b[22m\n16:12:28.871 [info] block_id: 94062711-956a-4c77-828a-ca17525b7c23, type: Bloc"},{"event":"cmd_output","timestamp":1607098348,"output":"kRequests, event: persisted build and sub_ppl details for block_request: 94062711-956a-4c77-828a-ca1"},{"event":"cmd_output","timestamp":1607098348,"output":"7525b7c23, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098348,"output":"\u001b[22m\n16:12:28.873 [info] block_id: f3cb4385-e70b-4201-8658-46fa1d4fb369, type: Blocks, state: don"},{"event":"cmd_output","timestamp":1607098348,"output":"e, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90)"},{"event":"cmd_output","timestamp":1607098348,"output":", \n\u001b[0m\u001b[22m\n16:12:28.874 [info] block_id: 94062711-956a-4c77-828a-ca17525b7c23, type: Tasks, sta"},{"event":"cmd_output","timestamp":1607098348,"output":"te: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingS"},{"event":"cmd_output","timestamp":1607098348,"output":"tate.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:28.878 [info] block_id: 94062711-956a-4c77-828a-ca17525b7c"},{"event":"cmd_output","timestamp":1607098348,"output":"23, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.S"},{"event":"cmd_output","timestamp":1607098348,"output":"TM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.882 [info] ppl_id: ceb13926-a5a6-4f58-87d9-7"},{"event":"cmd_output","timestamp":1607098348,"output":"d07a0191b92, block_id: f3cb4385-e70b-4201-8658-46fa1d4fb369, type: PplBlocks, block_index: 0, state:"},{"event":"cmd_output","timestamp":1607098348,"output":" done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098348,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.893 [info] block_id: 94062711-956a-4c77-828a-ca17525b7c"},{"event":"cmd_output","timestamp":1607098348,"output":"23, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.ST"},{"event":"cmd_output","timestamp":1607098348,"output":"M.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.894 [info] ppl_id: 72df80f2-85f9-4bab-a04a-48"},{"event":"cmd_output","timestamp":1607098348,"output":"a786d2ecdf, type: PplRequests, event: persisted source_args for pipeline: 72df80f2-85f9-4bab-a04a-48"},{"event":"cmd_output","timestamp":1607098348,"output":"a786d2ecdf, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098348,"output":"m\n16:12:28.896 [info] ppl_id: 72df80f2-85f9-4bab-a04a-48a786d2ecdf, type: PplSubInits, state: fetc"},{"event":"cmd_output","timestamp":1607098348,"output":"hing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098348,"output":"90), \n\u001b[0m\u001b[22m\n16:12:28.901 [info] ppl_id: ceb13926-a5a6-4f58-87d9-7d07a0191b92, type: Ppls, sta"},{"event":"cmd_output","timestamp":1607098348,"output":"te: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl."},{"event":"cmd_output","timestamp":1607098348,"output":"log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.915 [info] ppl_id: 72df80f2-85f9-4bab-a04a-48a786d2e"},{"event":"cmd_output","timestamp":1607098348,"output":"cdf, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098348,"output":"ir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.932 [info] ppl_id: 72df80f2-85f9-"},{"event":"cmd_output","timestamp":1607098348,"output":"4bab-a04a-48a786d2ecdf, type: PplRequests, event: persisted definition for request with request_toke"},{"event":"cmd_output","timestamp":1607098348,"output":"n: af0b9181-667c-4617-8489-f9ab80daeaed, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.ins"},{"event":"cmd_output","timestamp":1607098348,"output":"ert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:28.934 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Qu"},{"event":"cmd_output","timestamp":1607098348,"output":"eues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:12:28.933866]"},{"event":"cmd_output","timestamp":1607098348,"output":", name: \"123-.semaphore/semaphore.yml\", organization_id: \"0be6a0a4-5d43-4e66-a69a-8abddcf31c5e\", pro"},{"event":"cmd_output","timestamp":1607098348,"output":"ject_id: \"123\", queue_id: \"00b138a0-ee50-4168-9832-16a40bc0aa95\", scope: \"project\", updated_at: ~N[2"},{"event":"cmd_output","timestamp":1607098348,"output":"020-12-04 16:12:28.933875], user_generated: false}}\n\u001b[0m\u001b[22m\n16:12:28.937 [info] event: created,"},{"event":"cmd_output","timestamp":1607098348,"output":" origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:28.9"},{"event":"cmd_output","timestamp":1607098348,"output":"37 [info] ppl_id: 72df80f2-85f9-4bab-a04a-48a786d2ecdf, type: PplBlocks, block_index: 0, state: ini"},{"event":"cmd_output","timestamp":1607098348,"output":"tializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitS"},{"event":"cmd_output","timestamp":1607098348,"output":"tate.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:28.938 [info] ppl_id: 72df80f2-85f9-4bab-a04a-48a786d2ecdf"},{"event":"cmd_output","timestamp":1607098348,"output":", type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098348,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.943 [info] ppl_id: 72df80f2-"},{"event":"cmd_output","timestamp":1607098348,"output":"85f9-4bab-a04a-48a786d2ecdf, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling"},{"event":"cmd_output","timestamp":1607098348,"output":", recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.9"},{"event":"cmd_output","timestamp":1607098348,"output":"45 [info] ppl_id: 72df80f2-85f9-4bab-a04a-48a786d2ecdf, type: Ppls, state: pending, event: exit_sch"},{"event":"cmd_output","timestamp":1607098348,"output":"eduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098348,"output":"12:28.956 [info] ppl_id: 72df80f2-85f9-4bab-a04a-48a786d2ecdf, type: Ppls, state: queuing, event: e"},{"event":"cmd_output","timestamp":1607098348,"output":"xit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098348,"output":"2m\n16:12:28.965 [info] ppl_id: 72df80f2-85f9-4bab-a04a-48a786d2ecdf, type: Ppls, state: running, e"},{"event":"cmd_output","timestamp":1607098348,"output":"vent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n"},{"event":"cmd_output","timestamp":1607098348,"output":"\u001b[0m\u001b[22m\n16:12:28.969 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"72d"},{"event":"cmd_output","timestamp":1607098348,"output":"f80f2-85f9-4bab-a04a-48a786d2ecdf\"\n\u001b[0m\u001b[22m\n16:12:28.974 [info] block_id: 17017af4-ef32-4b0f-91a"},{"event":"cmd_output","timestamp":1607098348,"output":"3-f0599e940489, type: BlockRequests, event: persisted block run request from ppl 72df80f2-85f9-4bab-"},{"event":"cmd_output","timestamp":1607098348,"output":"a04a-48a786d2ecdf for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process"},{"event":"cmd_output","timestamp":1607098348,"output":"_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:28.977 [info] block_id: 17017af4-ef32-4b0f-91a3-f0599e940489, "},{"event":"cmd_output","timestamp":1607098348,"output":"type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Bloc"},{"event":"cmd_output","timestamp":1607098348,"output":"ks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:28.979 [info] block_id: 94062711-956a-4c77"},{"event":"cmd_output","timestamp":1607098348,"output":"-828a-ca17525b7c23, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098348,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.979 [info] Block 0 of pipeline w"},{"event":"cmd_output","timestamp":1607098348,"output":"ith id: 72df80f2-85f9-4bab-a04a-48a786d2ecdf scheduled in block service with id: : \"17017af4-ef32-4b"},{"event":"cmd_output","timestamp":1607098348,"output":"0f-91a3-f0599e940489\"\n\u001b[0m\u001b[22m\n16:12:28.981 [info] ppl_id: 72df80f2-85f9-4bab-a04a-48a786d2ecdf,"},{"event":"cmd_output","timestamp":1607098348,"output":" type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098348,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.983 [info] block_id: 17017af"},{"event":"cmd_output","timestamp":1607098348,"output":"4-ef32-4b0f-91a3-f0599e940489, type: BlockRequests, event: persisted build and sub_ppl details for b"},{"event":"cmd_output","timestamp":1607098348,"output":"lock_request: 17017af4-ef32-4b0f-91a3-f0599e940489, origin: Elixir.Block.BlockRequests.Model.BlockRe"},{"event":"cmd_output","timestamp":1607098348,"output":"questsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:28.985 [info] block_id: 94062711-956a-4c77-82"},{"event":"cmd_output","timestamp":1607098348,"output":"8a-ca17525b7c23, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098348,"output":"r.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.986 [info] block_id: 17017af4-ef32"},{"event":"cmd_output","timestamp":1607098348,"output":"-4b0f-91a3-f0599e940489, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098348,"output":"xir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:28.988 [info] blo"},{"event":"cmd_output","timestamp":1607098348,"output":"ck_id: 17017af4-ef32-4b0f-91a3-f0599e940489, type: Blocks, state: running, event: exit_scheduling, r"},{"event":"cmd_output","timestamp":1607098348,"output":"ecovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:28.993 "},{"event":"cmd_output","timestamp":1607098348,"output":"[info] ppl_id: 2c80744c-10bb-4119-89e8-cb6395c17dc7, block_id: 94062711-956a-4c77-828a-ca17525b7c23"},{"event":"cmd_output","timestamp":1607098348,"output":", type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_cou"},{"event":"cmd_output","timestamp":1607098349,"output":"nt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:29.004 [info] blo"},{"event":"cmd_output","timestamp":1607098349,"output":"ck_id: 17017af4-ef32-4b0f-91a3-f0599e940489, type: Tasks, state: running, event: exit_scheduling, re"},{"event":"cmd_output","timestamp":1607098349,"output":"covery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:29.011 ["},{"event":"cmd_output","timestamp":1607098349,"output":"info] ppl_id: 7b8281a4-691c-4318-a92e-d8a9d30f364a, type: PplRequests, event: persisted source_args"},{"event":"cmd_output","timestamp":1607098349,"output":" for pipeline: 7b8281a4-691c-4318-a92e-d8a9d30f364a, origin: Elixir.Ppl.PplRequests.Model.PplRequest"},{"event":"cmd_output","timestamp":1607098349,"output":"sQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:29.012 [info] ppl_id: 2c80744c-10bb-4119-89e8-cb6"},{"event":"cmd_output","timestamp":1607098349,"output":"395c17dc7, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098349,"output":"n: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:29.013 [info] ppl_id: 7b8281a"},{"event":"cmd_output","timestamp":1607098349,"output":"4-691c-4318-a92e-d8a9d30f364a, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_"},{"event":"cmd_output","timestamp":1607098349,"output":"count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:29.031 [info] "},{"event":"cmd_output","timestamp":1607098349,"output":"ppl_id: 7b8281a4-691c-4318-a92e-d8a9d30f364a, type: PplSubInits, state: regular_init, event: exit_sc"},{"event":"cmd_output","timestamp":1607098349,"output":"heduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098349,"output":":12:29.047 [info] ppl_id: 7b8281a4-691c-4318-a92e-d8a9d30f364a, type: PplRequests, event: persisted"},{"event":"cmd_output","timestamp":1607098349,"output":" definition for request with request_token: 9d70d9c7-ae67-435a-8fcc-590e81b37cee, origin: Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098349,"output":".PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:29.053 [info] ev"},{"event":"cmd_output","timestamp":1607098349,"output":"ent: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098349,"output":"m\n16:12:29.053 [info] ppl_id: 7b8281a4-691c-4318-a92e-d8a9d30f364a, type: PplBlocks, block_index: "},{"event":"cmd_output","timestamp":1607098349,"output":"0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler"},{"event":"cmd_output","timestamp":1607098349,"output":".RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:29.055 [info] ppl_id: 7b8281a4-691c-4318-a92e"},{"event":"cmd_output","timestamp":1607098349,"output":"-d8a9d30f364a, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_coun"},{"event":"cmd_output","timestamp":1607098349,"output":"t: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:29.055 [info] ppl_"},{"event":"cmd_output","timestamp":1607098349,"output":"id: 937e64e9-a2f6-4595-937d-741706413032, type: Ppls, state: running, event: exit_scheduling, recove"},{"event":"cmd_output","timestamp":1607098349,"output":"ry_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:29.060 [info"},{"event":"cmd_output","timestamp":1607098349,"output":"] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"937e64e9-a2f6-4595-937d-74170641"},{"event":"cmd_output","timestamp":1607098349,"output":"3032\"\n\u001b[0m\u001b[22m\n16:12:29.064 [info] ppl_id: 7b8281a4-691c-4318-a92e-d8a9d30f364a, type: PplBlocks"},{"event":"cmd_output","timestamp":1607098349,"output":", block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.S"},{"event":"cmd_output","timestamp":1607098349,"output":"TM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:29.064 [info] block_id: 7f6a97c0-dea3-48d0-a91d"},{"event":"cmd_output","timestamp":1607098349,"output":"-5856cdea9f26, type: BlockRequests, event: persisted block run request from ppl 937e64e9-a2f6-4595-9"},{"event":"cmd_output","timestamp":1607098349,"output":"37d-741706413032 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_"},{"event":"cmd_output","timestamp":1607098349,"output":"response/4(L35), \n\u001b[0m\u001b[22m\n16:12:29.066 [info] ppl_id: 7b8281a4-691c-4318-a92e-d8a9d30f364a, typ"},{"event":"cmd_output","timestamp":1607098349,"output":"e: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.l"},{"event":"cmd_output","timestamp":1607098349,"output":"og_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:29.067 [info] block_id: 7f6a97c0-dea3-48d0-a91d-5856cdea"},{"event":"cmd_output","timestamp":1607098349,"output":"9f26, type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Bloc"},{"event":"cmd_output","timestamp":1607098349,"output":"k.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:29.069 [info] Block 0 of pipeline wi"},{"event":"cmd_output","timestamp":1607098349,"output":"th id: 937e64e9-a2f6-4595-937d-741706413032 scheduled in block service with id: : \"7f6a97c0-dea3-48d"},{"event":"cmd_output","timestamp":1607098349,"output":"0-a91d-5856cdea9f26\"\n\u001b[0m\u001b[22m\n16:12:29.073 [info] ppl_id: 937e64e9-a2f6-4595-937d-741706413032, "},{"event":"cmd_output","timestamp":1607098349,"output":"type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098349,"output":"Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:29.074 [info] ppl_id: 7b8281a4-6"},{"event":"cmd_output","timestamp":1607098349,"output":"91c-4318-a92e-d8a9d30f364a, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098349,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:29.074 [info] block_id: 7"},{"event":"cmd_output","timestamp":1607098349,"output":"f6a97c0-dea3-48d0-a91d-5856cdea9f26, type: BlockRequests, event: persisted build and sub_ppl details"},{"event":"cmd_output","timestamp":1607098349,"output":" for block_request: 7f6a97c0-dea3-48d0-a91d-5856cdea9f26, origin: Elixir.Block.BlockRequests.Model.B"},{"event":"cmd_output","timestamp":1607098349,"output":"lockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:29.078 [info] block_id: 7f6a97c0-dea3-4"},{"event":"cmd_output","timestamp":1607098349,"output":"8d0-a91d-5856cdea9f26, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098349,"output":"r.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:29.080 [info] block"},{"event":"cmd_output","timestamp":1607098349,"output":"_id: 7f6a97c0-dea3-48d0-a91d-5856cdea9f26, type: Blocks, state: running, event: exit_scheduling, rec"},{"event":"cmd_output","timestamp":1607098349,"output":"overy_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:29.089 [i"},{"event":"cmd_output","timestamp":1607098349,"output":"nfo] block_id: 17017af4-ef32-4b0f-91a3-f0599e940489, type: Tasks, state: done, event: exit_scheduli"},{"event":"cmd_output","timestamp":1607098349,"output":"ng, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:29"},{"event":"cmd_output","timestamp":1607098349,"output":".092 [info] block_id: 7f6a97c0-dea3-48d0-a91d-5856cdea9f26, type: Tasks, state: running, event: exi"},{"event":"cmd_output","timestamp":1607098349,"output":"t_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098349,"output":"\n16:12:29.096 [info] block_id: 17017af4-ef32-4b0f-91a3-f0599e940489, type: Blocks, state: done, ev"},{"event":"cmd_output","timestamp":1607098349,"output":"ent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b"},{"event":"cmd_output","timestamp":1607098349,"output":"[0m\u001b[22m\n16:12:29.102 [info] ppl_id: 72df80f2-85f9-4bab-a04a-48a786d2ecdf, block_id: 17017af4-ef32"},{"event":"cmd_output","timestamp":1607098349,"output":"-4b0f-91a3-f0599e940489, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_s"},{"event":"cmd_output","timestamp":1607098349,"output":"cheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098349,"output":"6:12:29.111 [info] ppl_id: 72df80f2-85f9-4bab-a04a-48a786d2ecdf, type: Ppls, state: done, result: p"},{"event":"cmd_output","timestamp":1607098349,"output":"assed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1("},{"event":"cmd_output","timestamp":1607098349,"output":"L90), \n\u001b[0m\u001b[22m\n16:12:29.121 [info] ppl_id: 2d70290c-dd55-45f4-91c1-0ed508ae7a8b, type: PplReque"},{"event":"cmd_output","timestamp":1607098349,"output":"sts, event: persisted source_args for pipeline: 2d70290c-dd55-45f4-91c1-0ed508ae7a8b, origin: Elixir"},{"event":"cmd_output","timestamp":1607098349,"output":".Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:29.122 [info] pp"},{"event":"cmd_output","timestamp":1607098349,"output":"l_id: 2d70290c-dd55-45f4-91c1-0ed508ae7a8b, type: PplSubInits, state: fetching, event: exit_scheduli"},{"event":"cmd_output","timestamp":1607098349,"output":"ng, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:29"},{"event":"cmd_output","timestamp":1607098349,"output":".143 [info] ppl_id: 2d70290c-dd55-45f4-91c1-0ed508ae7a8b, type: PplSubInits, state: regular_init, e"},{"event":"cmd_output","timestamp":1607098349,"output":"vent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n"},{"event":"cmd_output","timestamp":1607098349,"output":"\u001b[0m\u001b[22m\n16:12:29.161 [info] ppl_id: 2d70290c-dd55-45f4-91c1-0ed508ae7a8b, type: PplRequests, eve"},{"event":"cmd_output","timestamp":1607098349,"output":"nt: persisted definition for request with request_token: 7a168a47-7190-4a8c-977f-a5008e05a4bb, origi"},{"event":"cmd_output","timestamp":1607098349,"output":"n: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:29.1"},{"event":"cmd_output","timestamp":1607098349,"output":"63 [info] ppl_id: 7b8281a4-691c-4318-a92e-d8a9d30f364a, type: Ppls, state: running, event: exit_sch"},{"event":"cmd_output","timestamp":1607098349,"output":"eduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098349,"output":"12:29.166 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?"},{"event":"cmd_output","timestamp":1607098349,"output":"/1(L105), \n\u001b[0m\u001b[22m\n16:12:29.166 [info] ppl_id: 2d70290c-dd55-45f4-91c1-0ed508ae7a8b, type: PplB"},{"event":"cmd_output","timestamp":1607098349,"output":"locks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.Pp"},{"event":"cmd_output","timestamp":1607098349,"output":"lSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:29.167 [info] ppl_id: 2d7"},{"event":"cmd_output","timestamp":1607098349,"output":"0290c-dd55-45f4-91c1-0ed508ae7a8b, type: PplSubInits, state: done, result: passed, event: exit_sched"},{"event":"cmd_output","timestamp":1607098349,"output":"uling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12"},{"event":"cmd_output","timestamp":1607098349,"output":":29.170 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"7b8281a4-691c-4318-"},{"event":"cmd_output","timestamp":1607098349,"output":"a92e-d8a9d30f364a\"\n\u001b[0m\u001b[22m\n16:12:29.172 [info] ppl_id: 2d70290c-dd55-45f4-91c1-0ed508ae7a8b, ty"},{"event":"cmd_output","timestamp":1607098349,"output":"pe: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098349,"output":"ixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:29.174 [info] block_id: eb9e5abb-d"},{"event":"cmd_output","timestamp":1607098349,"output":"070-4745-b64b-ab4d98a9fd72, type: BlockRequests, event: persisted block run request from ppl 7b8281a"},{"event":"cmd_output","timestamp":1607098349,"output":"4-691c-4318-a92e-d8a9d30f364a for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQue"},{"event":"cmd_output","timestamp":1607098349,"output":"ries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:29.176 [info] block_id: eb9e5abb-d070-4745-b64b-ab"},{"event":"cmd_output","timestamp":1607098349,"output":"4d98a9fd72, type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098349,"output":"r.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:29.177 [info] ppl_id: 2d70290c"},{"event":"cmd_output","timestamp":1607098349,"output":"-dd55-45f4-91c1-0ed508ae7a8b, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098349,"output":" origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:29.178 [info] Block 0 o"},{"event":"cmd_output","timestamp":1607098349,"output":"f pipeline with id: 7b8281a4-691c-4318-a92e-d8a9d30f364a scheduled in block service with id: : \"eb9e"},{"event":"cmd_output","timestamp":1607098349,"output":"5abb-d070-4745-b64b-ab4d98a9fd72\"\n\u001b[0m\u001b[22m\n16:12:29.180 [info] ppl_id: 7b8281a4-691c-4318-a92e-d"},{"event":"cmd_output","timestamp":1607098349,"output":"8a9d30f364a, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count"},{"event":"cmd_output","timestamp":1607098349,"output":": 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:29.183 [info] block"},{"event":"cmd_output","timestamp":1607098349,"output":"_id: eb9e5abb-d070-4745-b64b-ab4d98a9fd72, type: BlockRequests, event: persisted build and sub_ppl d"},{"event":"cmd_output","timestamp":1607098349,"output":"etails for block_request: eb9e5abb-d070-4745-b64b-ab4d98a9fd72, origin: Elixir.Block.BlockRequests.M"},{"event":"cmd_output","timestamp":1607098349,"output":"odel.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:29.185 [info] ppl_id: 2d70290c-dd"},{"event":"cmd_output","timestamp":1607098349,"output":"55-45f4-91c1-0ed508ae7a8b, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098349,"output":"igin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:29.185 [info] block_id: eb"},{"event":"cmd_output","timestamp":1607098349,"output":"9e5abb-d070-4745-b64b-ab4d98a9fd72, type: Tasks, state: pending, event: created, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098349,"output":"origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:29.189 "},{"event":"cmd_output","timestamp":1607098349,"output":"[info] block_id: eb9e5abb-d070-4745-b64b-ab4d98a9fd72, type: Blocks, state: running, event: exit_sc"},{"event":"cmd_output","timestamp":1607098349,"output":"heduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098349,"output":":12:29.203 [info] block_id: eb9e5abb-d070-4745-b64b-ab4d98a9fd72, type: Tasks, state: running, even"},{"event":"cmd_output","timestamp":1607098349,"output":"t: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098349,"output":"m\u001b[22m\n16:12:29.209 [info] block_id: 7f6a97c0-dea3-48d0-a91d-5856cdea9f26, type: Tasks, state: don"},{"event":"cmd_output","timestamp":1607098349,"output":"e, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90)"},{"event":"cmd_output","timestamp":1607098349,"output":", \n\u001b[0m\u001b[22m\n16:12:29.214 [info] block_id: 7f6a97c0-dea3-48d0-a91d-5856cdea9f26, type: Blocks, st"},{"event":"cmd_output","timestamp":1607098349,"output":"ate: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chang"},{"event":"cmd_output","timestamp":1607098349,"output":"e/1(L90), \n\u001b[0m\u001b[22m\n16:12:29.220 [info] ppl_id: 937e64e9-a2f6-4595-937d-741706413032, block_id: "},{"event":"cmd_output","timestamp":1607098349,"output":"7f6a97c0-dea3-48d0-a91d-5856cdea9f26, type: PplBlocks, block_index: 0, state: done, result: passed, "},{"event":"cmd_output","timestamp":1607098349,"output":"event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \r"},{"event":"cmd_output","timestamp":1607098349,"output":"\n\u001b[0m\u001b[22m\n16:12:29.228 [info] ppl_id: c20d2029-d5c4-4b7f-b2d8-90e14011f6d6, type: PplRequests, ev"},{"event":"cmd_output","timestamp":1607098349,"output":"ent: persisted source_args for pipeline: c20d2029-d5c4-4b7f-b2d8-90e14011f6d6, origin: Elixir.Ppl.Pp"},{"event":"cmd_output","timestamp":1607098349,"output":"lRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:29.230 [info] ppl_id: c"},{"event":"cmd_output","timestamp":1607098349,"output":"20d2029-d5c4-4b7f-b2d8-90e14011f6d6, type: PplSubInits, state: fetching, event: exit_scheduling, rec"},{"event":"cmd_output","timestamp":1607098349,"output":"overy_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:29.232 [i"},{"event":"cmd_output","timestamp":1607098349,"output":"nfo] ppl_id: 937e64e9-a2f6-4595-937d-741706413032, type: Ppls, state: done, result: passed, event: "},{"event":"cmd_output","timestamp":1607098349,"output":"exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098349,"output":"22m\n16:12:29.245 [info] ppl_id: c20d2029-d5c4-4b7f-b2d8-90e14011f6d6, type: PplSubInits, state: re"},{"event":"cmd_output","timestamp":1607098349,"output":"gular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chan"},{"event":"cmd_output","timestamp":1607098349,"output":"ge/1(L90), \n\u001b[0m\u001b[22m\n16:12:29.270 [info] ppl_id: c20d2029-d5c4-4b7f-b2d8-90e14011f6d6, type: Ppl"},{"event":"cmd_output","timestamp":1607098349,"output":"Requests, event: persisted definition for request with request_token: b6c3b96f-4ad9-4f09-a82f-0465a3"},{"event":"cmd_output","timestamp":1607098349,"output":"f705eb, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098349,"output":"m\n16:12:29.275 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.a"},{"event":"cmd_output","timestamp":1607098349,"output":"ll_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:29.275 [info] ppl_id: c20d2029-d5c4-4b7f-b2d8-90e14011f6d6, type"},{"event":"cmd_output","timestamp":1607098349,"output":": PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098349,"output":"Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:29.276 [info] ppl_i"},{"event":"cmd_output","timestamp":1607098349,"output":"d: c20d2029-d5c4-4b7f-b2d8-90e14011f6d6, type: PplSubInits, state: done, result: passed, event: exit"},{"event":"cmd_output","timestamp":1607098349,"output":"_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098349,"output":"\n16:12:29.277 [info] ppl_id: b33fcf21-dced-4d27-968c-73815f2c6538, type: Ppls, state: running, even"},{"event":"cmd_output","timestamp":1607098349,"output":"t: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098349,"output":"m\u001b[22m\n16:12:29.283 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"b33fcf"},{"event":"cmd_output","timestamp":1607098349,"output":"21-dced-4d27-968c-73815f2c6538\"\n\u001b[0m\u001b[22m\n16:12:29.284 [info] ppl_id: c20d2029-d5c4-4b7f-b2d8-90e"},{"event":"cmd_output","timestamp":1607098349,"output":"14011f6d6, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loo"},{"event":"cmd_output","timestamp":1607098349,"output":"per.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:29.284 [info] ppl_id: c20d2029-d5c4-4b7f-b"},{"event":"cmd_output","timestamp":1607098349,"output":"2d8-90e14011f6d6, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_"},{"event":"cmd_output","timestamp":1607098349,"output":"count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:29.288 [info] "},{"event":"cmd_output","timestamp":1607098349,"output":"block_id: 4d29200c-259c-41d7-ba41-5ef3df3bf81d, type: BlockRequests, event: persisted block run requ"},{"event":"cmd_output","timestamp":1607098349,"output":"est from ppl b33fcf21-dced-4d27-968c-73815f2c6538 for block 0, origin: Elixir.Block.BlockRequests.Mo"},{"event":"cmd_output","timestamp":1607098349,"output":"del.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:29.289 [info] block_id: 4d2920"},{"event":"cmd_output","timestamp":1607098349,"output":"0c-259c-41d7-ba41-5ef3df3bf81d, type: Blocks, state: initializing, event: initializing, recovery_cou"},{"event":"cmd_output","timestamp":1607098349,"output":"nt: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:29.289 [inf"},{"event":"cmd_output","timestamp":1607098349,"output":"o] ppl_id: c20d2029-d5c4-4b7f-b2d8-90e14011f6d6, type: Ppls, state: queuing, event: exit_scheduling"},{"event":"cmd_output","timestamp":1607098349,"output":", recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:29.2"},{"event":"cmd_output","timestamp":1607098349,"output":"91 [info] Block 0 of pipeline with id: b33fcf21-dced-4d27-968c-73815f2c6538 scheduled in block serv"},{"event":"cmd_output","timestamp":1607098349,"output":"ice with id: : \"4d29200c-259c-41d7-ba41-5ef3df3bf81d\"\n\u001b[0m\u001b[22m\n16:12:29.293 [info] ppl_id: b33fc"},{"event":"cmd_output","timestamp":1607098349,"output":"f21-dced-4d27-968c-73815f2c6538, type: PplBlocks, block_index: 0, state: running, event: exit_schedu"},{"event":"cmd_output","timestamp":1607098349,"output":"ling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:"},{"event":"cmd_output","timestamp":1607098349,"output":"29.294 [info] block_id: 4d29200c-259c-41d7-ba41-5ef3df3bf81d, type: BlockRequests, event: persisted"},{"event":"cmd_output","timestamp":1607098349,"output":" build and sub_ppl details for block_request: 4d29200c-259c-41d7-ba41-5ef3df3bf81d, origin: Elixir.B"},{"event":"cmd_output","timestamp":1607098349,"output":"lock.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:29.295 [info] "},{"event":"cmd_output","timestamp":1607098349,"output":" block_id: 4d29200c-259c-41d7-ba41-5ef3df3bf81d, type: Tasks, state: pending, event: created, recove"},{"event":"cmd_output","timestamp":1607098349,"output":"ry_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098349,"output":"16:12:29.296 [info] block_id: 4d29200c-259c-41d7-ba41-5ef3df3bf81d, type: Blocks, state: running, e"},{"event":"cmd_output","timestamp":1607098349,"output":"vent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n"},{"event":"cmd_output","timestamp":1607098349,"output":"\u001b[0m\u001b[22m\n16:12:29.309 [info] block_id: 4d29200c-259c-41d7-ba41-5ef3df3bf81d, type: Tasks, state: "},{"event":"cmd_output","timestamp":1607098349,"output":"running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/"},{"event":"cmd_output","timestamp":1607098349,"output":"1(L90), \n\u001b[0m\u001b[22m\n16:12:29.316 [info] block_id: eb9e5abb-d070-4745-b64b-ab4d98a9fd72, type: Task"},{"event":"cmd_output","timestamp":1607098349,"output":"s, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_"},{"event":"cmd_output","timestamp":1607098349,"output":"change/1(L90), \n\u001b[0m\u001b[22m\n16:12:29.321 [info] block_id: eb9e5abb-d070-4745-b64b-ab4d98a9fd72, typ"},{"event":"cmd_output","timestamp":1607098349,"output":"e: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.lo"},{"event":"cmd_output","timestamp":1607098349,"output":"g_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:29.325 [info] ppl_id: 7b8281a4-691c-4318-a92e-d8a9d30f364"},{"event":"cmd_output","timestamp":1607098349,"output":"a, block_id: eb9e5abb-d070-4745-b64b-ab4d98a9fd72, type: PplBlocks, block_index: 0, state: done, res"},{"event":"cmd_output","timestamp":1607098349,"output":"ult: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_cha"},{"event":"cmd_output","timestamp":1607098349,"output":"nge/1(L90), \n\u001b[0m\u001b[22m\n16:12:29.335 [info] ppl_id: 7b8281a4-691c-4318-a92e-d8a9d30f364a, type: Pp"},{"event":"cmd_output","timestamp":1607098349,"output":"ls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.ST"},{"event":"cmd_output","timestamp":1607098349,"output":"M.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:29.337 [info] ppl_id: c15cfe28-7d59-4daf-bcb2-55"},{"event":"cmd_output","timestamp":1607098349,"output":"af3c517ab7, type: PplRequests, event: persisted source_args for pipeline: c15cfe28-7d59-4daf-bcb2-55"},{"event":"cmd_output","timestamp":1607098349,"output":"af3c517ab7, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098349,"output":"m\n16:12:29.338 [info] ppl_id: c15cfe28-7d59-4daf-bcb2-55af3c517ab7, type: PplSubInits, state: fetc"},{"event":"cmd_output","timestamp":1607098349,"output":"hing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098349,"output":"90), \n\u001b[0m\u001b[22m\n16:12:29.355 [info] ppl_id: c15cfe28-7d59-4daf-bcb2-55af3c517ab7, type: PplSubIni"},{"event":"cmd_output","timestamp":1607098349,"output":"ts, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.l"},{"event":"cmd_output","timestamp":1607098349,"output":"og_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:29.375 [info] ppl_id: c15cfe28-7d59-4daf-bcb2-55af3c517a"},{"event":"cmd_output","timestamp":1607098349,"output":"b7, type: PplRequests, event: persisted definition for request with request_token: fa8ad601-77b4-42a"},{"event":"cmd_output","timestamp":1607098349,"output":"e-a0c8-5e7e930b6c4e, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76"},{"event":"cmd_output","timestamp":1607098349,"output":"), \n\u001b[0m\u001b[22m\n16:12:29.379 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.Regul"},{"event":"cmd_output","timestamp":1607098349,"output":"arInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:29.380 [info] ppl_id: c15cfe28-7d59-4daf-bcb2-55af3"},{"event":"cmd_output","timestamp":1607098349,"output":"c517ab7, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098349,"output":"igin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:29.382 "},{"event":"cmd_output","timestamp":1607098349,"output":"[info] ppl_id: c15cfe28-7d59-4daf-bcb2-55af3c517ab7, type: PplSubInits, state: done, result: passed"},{"event":"cmd_output","timestamp":1607098349,"output":", event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90),"},{"event":"cmd_output","timestamp":1607098349,"output":" \n\u001b[0m\u001b[22m\n16:12:29.390 [info] ppl_id: c15cfe28-7d59-4daf-bcb2-55af3c517ab7, type: Ppls, state: "},{"event":"cmd_output","timestamp":1607098349,"output":"pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/"},{"event":"cmd_output","timestamp":1607098349,"output":"1(L90), \n\u001b[0m\u001b[22m\n16:12:29.390 [info] ppl_id: c15cfe28-7d59-4daf-bcb2-55af3c517ab7, type: PplBlo"},{"event":"cmd_output","timestamp":1607098349,"output":"cks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loope"},{"event":"cmd_output","timestamp":1607098349,"output":"r.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:29.392 [info] ppl_id: 2d70290c-dd55-45f4-91c"},{"event":"cmd_output","timestamp":1607098349,"output":"1-0ed508ae7a8b, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098349,"output":"r.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:29.398 [info] PplBlocks WaitingState "},{"event":"cmd_output","timestamp":1607098349,"output":"STM is scheduling block 0 from pipeline: \"2d70290c-dd55-45f4-91c1-0ed508ae7a8b\"\n\u001b[0m\u001b[22m\n16:12:29"},{"event":"cmd_output","timestamp":1607098349,"output":".398 [info] ppl_id: c15cfe28-7d59-4daf-bcb2-55af3c517ab7, type: Ppls, state: queuing, event: exit_s"},{"event":"cmd_output","timestamp":1607098349,"output":"cheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098349,"output":"6:12:29.404 [info] block_id: b77af6ef-f599-4ae4-b734-23940d6a8ba5, type: BlockRequests, event: pers"},{"event":"cmd_output","timestamp":1607098349,"output":"isted block run request from ppl 2d70290c-dd55-45f4-91c1-0ed508ae7a8b for block 0, origin: Elixir.Bl"},{"event":"cmd_output","timestamp":1607098349,"output":"ock.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:29.406 [inf"},{"event":"cmd_output","timestamp":1607098349,"output":"o] block_id: b77af6ef-f599-4ae4-b734-23940d6a8ba5, type: Blocks, state: initializing, event: initia"},{"event":"cmd_output","timestamp":1607098349,"output":"lizing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098349,"output":"m\n16:12:29.408 [info] Block 0 of pipeline with id: 2d70290c-dd55-45f4-91c1-0ed508ae7a8b scheduled "},{"event":"cmd_output","timestamp":1607098349,"output":"in block service with id: : \"b77af6ef-f599-4ae4-b734-23940d6a8ba5\"\n\u001b[0m\u001b[22m\n16:12:29.410 [info] "},{"event":"cmd_output","timestamp":1607098349,"output":"ppl_id: 2d70290c-dd55-45f4-91c1-0ed508ae7a8b, type: PplBlocks, block_index: 0, state: running, event"},{"event":"cmd_output","timestamp":1607098349,"output":": exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098349,"output":"\u001b[22m\n16:12:29.411 [info] block_id: b77af6ef-f599-4ae4-b734-23940d6a8ba5, type: BlockRequests, eve"},{"event":"cmd_output","timestamp":1607098349,"output":"nt: persisted build and sub_ppl details for block_request: b77af6ef-f599-4ae4-b734-23940d6a8ba5, ori"},{"event":"cmd_output","timestamp":1607098349,"output":"gin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:2"},{"event":"cmd_output","timestamp":1607098349,"output":"9.413 [info] block_id: b77af6ef-f599-4ae4-b734-23940d6a8ba5, type: Tasks, state: pending, event: cr"},{"event":"cmd_output","timestamp":1607098349,"output":"eated, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), "},{"event":"cmd_output","timestamp":1607098349,"output":"\n\u001b[0m\u001b[22m\n16:12:29.414 [info] block_id: b77af6ef-f599-4ae4-b734-23940d6a8ba5, type: Blocks, stat"},{"event":"cmd_output","timestamp":1607098349,"output":"e: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chan"},{"event":"cmd_output","timestamp":1607098349,"output":"ge/1(L90), \n\u001b[0m\u001b[22m\n16:12:29.425 [info] block_id: 4d29200c-259c-41d7-ba41-5ef3df3bf81d, type: T"},{"event":"cmd_output","timestamp":1607098349,"output":"asks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_sta"},{"event":"cmd_output","timestamp":1607098349,"output":"te_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:29.431 [info] block_id: 4d29200c-259c-41d7-ba41-5ef3df3bf81d, "},{"event":"cmd_output","timestamp":1607098349,"output":"type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl"},{"event":"cmd_output","timestamp":1607098349,"output":".log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:29.431 [info] block_id: b77af6ef-f599-4ae4-b734-23940d"},{"event":"cmd_output","timestamp":1607098349,"output":"6a8ba5, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loope"},{"event":"cmd_output","timestamp":1607098349,"output":"r.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:29.437 [info] ppl_id: b33fcf21-dced-4d27-968"},{"event":"cmd_output","timestamp":1607098349,"output":"c-73815f2c6538, block_id: 4d29200c-259c-41d7-ba41-5ef3df3bf81d, type: PplBlocks, block_index: 0, sta"},{"event":"cmd_output","timestamp":1607098349,"output":"te: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl."},{"event":"cmd_output","timestamp":1607098349,"output":"log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:29.446 [info] ppl_id: b33fcf21-dced-4d27-968c-73815f2c6"},{"event":"cmd_output","timestamp":1607098349,"output":"538, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098349,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:29.535 [info] block_id: b77af6ef-f5"},{"event":"cmd_output","timestamp":1607098349,"output":"99-4ae4-b734-23940d6a8ba5, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098349,"output":"in: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:29.538 [info] block_id: b77a"},{"event":"cmd_output","timestamp":1607098349,"output":"f6ef-f599-4ae4-b734-23940d6a8ba5, type: Blocks, state: done, event: exit_scheduling, recovery_count:"},{"event":"cmd_output","timestamp":1607098349,"output":" 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:29.543 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098349,"output":": 2d70290c-dd55-45f4-91c1-0ed508ae7a8b, block_id: b77af6ef-f599-4ae4-b734-23940d6a8ba5, type: PplBlo"},{"event":"cmd_output","timestamp":1607098349,"output":"cks, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098349,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:29.560 [info] ppl_id: 2d70290c-"},{"event":"cmd_output","timestamp":1607098349,"output":"dd55-45f4-91c1-0ed508ae7a8b, type: Ppls, state: done, result: passed, event: exit_scheduling, recove"},{"event":"cmd_output","timestamp":1607098349,"output":"ry_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:29.603 [info"},{"event":"cmd_output","timestamp":1607098349,"output":"] ppl_id: c20d2029-d5c4-4b7f-b2d8-90e14011f6d6, type: Ppls, state: running, event: exit_scheduling,"},{"event":"cmd_output","timestamp":1607098349,"output":" recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:29.60"},{"event":"cmd_output","timestamp":1607098349,"output":"7 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"c20d2029-d5c4-4b7f-b2d8-9"},{"event":"cmd_output","timestamp":1607098349,"output":"0e14011f6d6\"\n\u001b[0m\u001b[22m\n16:12:29.610 [info] block_id: 072a490a-50bf-4fbf-a612-5d156750fe35, type: "},{"event":"cmd_output","timestamp":1607098349,"output":"BlockRequests, event: persisted block run request from ppl c20d2029-d5c4-4b7f-b2d8-90e14011f6d6 for "},{"event":"cmd_output","timestamp":1607098349,"output":"block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b["},{"event":"cmd_output","timestamp":1607098349,"output":"0m\u001b[22m\n16:12:29.612 [info] block_id: 072a490a-50bf-4fbf-a612-5d156750fe35, type: Blocks, state: i"},{"event":"cmd_output","timestamp":1607098349,"output":"nitializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries"},{"event":"cmd_output","timestamp":1607098349,"output":".insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:29.613 [info] Block 0 of pipeline with id: c20d2029-d5c4-4b7f-b2"},{"event":"cmd_output","timestamp":1607098349,"output":"d8-90e14011f6d6 scheduled in block service with id: : \"072a490a-50bf-4fbf-a612-5d156750fe35\"\n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098349,"output":"22m\n16:12:29.615 [info] ppl_id: c20d2029-d5c4-4b7f-b2d8-90e14011f6d6, type: PplBlocks, block_index"},{"event":"cmd_output","timestamp":1607098349,"output":": 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_s"},{"event":"cmd_output","timestamp":1607098349,"output":"tate_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:29.616 [info] block_id: 072a490a-50bf-4fbf-a612-5d156750fe35"},{"event":"cmd_output","timestamp":1607098349,"output":", type: BlockRequests, event: persisted build and sub_ppl details for block_request: 072a490a-50bf-4"},{"event":"cmd_output","timestamp":1607098349,"output":"fbf-a612-5d156750fe35, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2("},{"event":"cmd_output","timestamp":1607098349,"output":"L41), \n\u001b[0m\u001b[22m\n16:12:29.618 [info] block_id: 072a490a-50bf-4fbf-a612-5d156750fe35, type: Tasks,"},{"event":"cmd_output","timestamp":1607098349,"output":" state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.Initializ"},{"event":"cmd_output","timestamp":1607098349,"output":"ingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:29.620 [info] block_id: 072a490a-50bf-4fbf-a612-5d1567"},{"event":"cmd_output","timestamp":1607098349,"output":"50fe35, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loop"},{"event":"cmd_output","timestamp":1607098349,"output":"er.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:29.629 [info] block_id: 072a490a-50bf-4fbf-"},{"event":"cmd_output","timestamp":1607098349,"output":"a612-5d156750fe35, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: E"},{"event":"cmd_output","timestamp":1607098349,"output":"lixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:29.642 [info] block_id: 072a490a-"},{"event":"cmd_output","timestamp":1607098349,"output":"50bf-4fbf-a612-5d156750fe35, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098349,"output":"igin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:29.646 [info] block_id: 07"},{"event":"cmd_output","timestamp":1607098349,"output":"2a490a-50bf-4fbf-a612-5d156750fe35, type: Blocks, state: done, event: exit_scheduling, recovery_coun"},{"event":"cmd_output","timestamp":1607098349,"output":"t: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:29.652 [info] ppl_"},{"event":"cmd_output","timestamp":1607098349,"output":"id: c20d2029-d5c4-4b7f-b2d8-90e14011f6d6, block_id: 072a490a-50bf-4fbf-a612-5d156750fe35, type: PplB"},{"event":"cmd_output","timestamp":1607098349,"output":"locks, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098349,"output":"n: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:29.662 [info] ppl_id: c20d202"},{"event":"cmd_output","timestamp":1607098349,"output":"9-d5c4-4b7f-b2d8-90e14011f6d6, type: Ppls, state: done, result: passed, event: exit_scheduling, reco"},{"event":"cmd_output","timestamp":1607098349,"output":"very_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:29.711 [in"},{"event":"cmd_output","timestamp":1607098349,"output":"fo] ppl_id: c15cfe28-7d59-4daf-bcb2-55af3c517ab7, type: Ppls, state: running, event: exit_schedulin"},{"event":"cmd_output","timestamp":1607098349,"output":"g, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:29."},{"event":"cmd_output","timestamp":1607098349,"output":"714 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"c15cfe28-7d59-4daf-bcb2"},{"event":"cmd_output","timestamp":1607098349,"output":"-55af3c517ab7\"\n\u001b[0m\u001b[22m\n16:12:29.718 [info] block_id: 38f9878a-df40-459c-adae-bd2760987d20, type"},{"event":"cmd_output","timestamp":1607098349,"output":": BlockRequests, event: persisted block run request from ppl c15cfe28-7d59-4daf-bcb2-55af3c517ab7 fo"},{"event":"cmd_output","timestamp":1607098349,"output":"r block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n"},{"event":"cmd_output","timestamp":1607098349,"output":"\u001b[0m\u001b[22m\n16:12:29.720 [info] block_id: 38f9878a-df40-459c-adae-bd2760987d20, type: Blocks, state:"},{"event":"cmd_output","timestamp":1607098349,"output":" initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueri"},{"event":"cmd_output","timestamp":1607098349,"output":"es.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:29.723 [info] Block 0 of pipeline with id: c15cfe28-7d59-4daf-"},{"event":"cmd_output","timestamp":1607098349,"output":"bcb2-55af3c517ab7 scheduled in block service with id: : \"38f9878a-df40-459c-adae-bd2760987d20\"\n\u001b[0m"},{"event":"cmd_output","timestamp":1607098349,"output":"\u001b[22m\n16:12:29.725 [info] ppl_id: c15cfe28-7d59-4daf-bcb2-55af3c517ab7, type: PplBlocks, block_ind"},{"event":"cmd_output","timestamp":1607098349,"output":"ex: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098349,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:29.727 [info] block_id: 38f9878a-df40-459c-adae-bd2760987d"},{"event":"cmd_output","timestamp":1607098349,"output":"20, type: BlockRequests, event: persisted build and sub_ppl details for block_request: 38f9878a-df40"},{"event":"cmd_output","timestamp":1607098349,"output":"-459c-adae-bd2760987d20, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/"},{"event":"cmd_output","timestamp":1607098349,"output":"2(L41), \n\u001b[0m\u001b[22m\n16:12:29.738 [info] block_id: 38f9878a-df40-459c-adae-bd2760987d20, type: Task"},{"event":"cmd_output","timestamp":1607098349,"output":"s, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.Initial"},{"event":"cmd_output","timestamp":1607098349,"output":"izingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:29.741 [info] block_id: 38f9878a-df40-459c-adae-bd27"},{"event":"cmd_output","timestamp":1607098349,"output":"60987d20, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Lo"},{"event":"cmd_output","timestamp":1607098349,"output":"oper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:29.753 [info] block_id: 38f9878a-df40-459"},{"event":"cmd_output","timestamp":1607098349,"output":"c-adae-bd2760987d20, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098349,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:29.860 [info] block_id: 38f9878"},{"event":"cmd_output","timestamp":1607098349,"output":"a-df40-459c-adae-bd2760987d20, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098349,"output":"origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:29.870 [info] block_id: "},{"event":"cmd_output","timestamp":1607098349,"output":"38f9878a-df40-459c-adae-bd2760987d20, type: Blocks, state: done, event: exit_scheduling, recovery_co"},{"event":"cmd_output","timestamp":1607098349,"output":"unt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:29.877 [info] pp"},{"event":"cmd_output","timestamp":1607098349,"output":"l_id: c15cfe28-7d59-4daf-bcb2-55af3c517ab7, block_id: 38f9878a-df40-459c-adae-bd2760987d20, type: Pp"},{"event":"cmd_output","timestamp":1607098349,"output":"lBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098349,"output":"gin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:29.896 [info] ppl_id: c15cf"},{"event":"cmd_output","timestamp":1607098349,"output":"e28-7d59-4daf-bcb2-55af3c517ab7, type: Ppls, state: done, result: passed, event: exit_scheduling, re"},{"event":"cmd_output","timestamp":1607098349,"output":"covery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test gRPC l"},{"event":"cmd_output","timestamp":1607098349,"output":"ist() - filter by label (2509.9ms)\u001b[0m\n * test gRPC partial_rebuild() - succedes when given valid "},{"event":"cmd_output","timestamp":1607098349,"output":"params\u001b[22m\n16:12:29.985 [info] Request: 'run: %{\"branch_id\" => \"dd4cf2a8-d3ab-4fda-8918-83f675b46"},{"event":"cmd_output","timestamp":1607098349,"output":"7c2\", \"branch_name\" => \"master\", \"commit_sha\" => \"1234567\", \"file_name\" => \"semaphore.yml\", \"hook_id"},{"event":"cmd_output","timestamp":1607098349,"output":"\" => \"82343f6e-364b-11eb-bbbb-5254005464e2\", \"label\" => \"master\", \"organization_id\" => \"bb9e3d65-38c"},{"event":"cmd_output","timestamp":1607098349,"output":"5-44d3-95dd-7bcc18890b83\", \"owner\" => \"rt\", \"project_id\" => \"9070a062-cb46-4fbc-b709-37ea7973e7ff\", "},{"event":"cmd_output","timestamp":1607098349,"output":"\"repo_name\" => \"14_free_topology_failing_block\", \"request_token\" => \"823437ee-364b-11eb-98d8-5254005"},{"event":"cmd_output","timestamp":1607098349,"output":"464e2\", \"requester_id\" => \"c6c11b35-523b-43dd-9efe-d178cc2c59a5\", \"service\" => \"local\", \"suppressed_"},{"event":"cmd_output","timestamp":1607098349,"output":"attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"f569bc54-acbe-4cb2-84af-c7b640713606\","},{"event":"cmd_output","timestamp":1607098349,"output":" \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:12:29.988 [info] ppl_id: ae9a044e-19b6-4994-9250-3af"},{"event":"cmd_output","timestamp":1607098349,"output":"16c1f45e6, type: PplRequests, event: persisted schedule request with request_token: 823437ee-364b-11"},{"event":"cmd_output","timestamp":1607098349,"output":"eb-98d8-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55"},{"event":"cmd_output","timestamp":1607098349,"output":"), \n\u001b[0m\u001b[22m\n16:12:29.991 [info] ppl_id: ae9a044e-19b6-4994-9250-3af16c1f45e6, type: Ppls, state"},{"event":"cmd_output","timestamp":1607098349,"output":": initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.pr"},{"event":"cmd_output","timestamp":1607098349,"output":"ocess_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:29.994 [info] Project 9070a062-cb46-4fbc-b709-37ea7973e7"},{"event":"cmd_output","timestamp":1607098349,"output":"ff and branch masterlatest_wf details updated: \"wf_id: f569bc54-acbe-4cb2-84af-c7b640713606, wf_numb"},{"event":"cmd_output","timestamp":1607098349,"output":"er: 1\"\n\u001b[0m\u001b[22m\n16:12:29.996 [info] Persisted ppl_sub_init for pipeline with ppl_id: ae9a044e-19"},{"event":"cmd_output","timestamp":1607098349,"output":"b6-4994-9250-3af16c1f45e6: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loade"},{"event":"cmd_output","timestamp":1607098349,"output":"d, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 229, in_scheduling: fals"},{"event":"cmd_output","timestamp":1607098349,"output":"e, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:29.994969], pipeline_requests: #Ecto.Assoc"},{"event":"cmd_output","timestamp":1607098349,"output":"iation.NotLoaded, ppl_id: \"ae9a044e-19b6-4994-9250-3af"},{"event":"cmd_output","timestamp":1607098349,"output":"16c1f45e6\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request:"},{"event":"cmd_output","timestamp":1607098350,"output":" nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:29.995010]}\n\u001b[0m\u001b[22m\n16:12:30."},{"event":"cmd_output","timestamp":1607098350,"output":"000 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.P"},{"event":"cmd_output","timestamp":1607098350,"output":"pls.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls"},{"event":"cmd_output","timestamp":1607098350,"output":"-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"pending\", \"don"},{"event":"cmd_output","timestamp":1607098350,"output":"e\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publis"},{"event":"cmd_output","timestamp":1607098350,"output":"her_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo"},{"event":"cmd_output","timestamp":1607098350,"output":", returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], sche"},{"event":"cmd_output","timestamp":1607098350,"output":"ma: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:30.000 [info] Periodic from modu"},{"event":"cmd_output","timestamp":1607098350,"output":"le Elixir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler.PendingState :: peri"},{"event":"cmd_output","timestamp":1607098350,"output":"od: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring a"},{"event":"cmd_output","timestamp":1607098350,"output":"rgs: %{allowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_sec: 0, initial_query"},{"event":"cmd_output","timestamp":1607098350,"output":": Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.ST"},{"event":"cmd_output","timestamp":1607098350,"output":"MHandler.PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at,"},{"event":"cmd_output","timestamp":1607098350,"output":" :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskS"},{"event":"cmd_output","timestamp":1607098350,"output":"upervisor}\n\u001b[0m\u001b[22m\n16:12:30.001 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.QueuingS"},{"event":"cmd_output","timestamp":1607098350,"output":"tate with name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, metric_name: {\"Ppl.beholde"},{"event":"cmd_output","timestamp":1607098350,"output":"r-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{allowed_states: [\"queuing\", \"ru"},{"event":"cmd_output","timestamp":1607098350,"output":"nning\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\""},{"event":"cmd_output","timestamp":1607098350,"output":", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.args/0>, repo: Ppl.EctoR"},{"event":"cmd_output","timestamp":1607098350,"output":"epo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], s"},{"event":"cmd_output","timestamp":1607098350,"output":"chema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:30.002 [info] Periodic from m"},{"event":"cmd_output","timestamp":1607098350,"output":"odule Elixir.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHandler.RunningState :: p"},{"event":"cmd_output","timestamp":1607098350,"output":"eriod: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurrin"},{"event":"cmd_output","timestamp":1607098350,"output":"g args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl."},{"event":"cmd_output","timestamp":1607098350,"output":"Ppls.Model.Ppls, observed_state: \"running\", publisher_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHand"},{"event":"cmd_output","timestamp":1607098350,"output":"ler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :sta"},{"event":"cmd_output","timestamp":1607098350,"output":"te, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSuperv"},{"event":"cmd_output","timestamp":1607098350,"output":"isor}\n\u001b[0m\u001b[22m\n16:12:30.003 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.StoppingState"},{"event":"cmd_output","timestamp":1607098350,"output":" with name Elixir.Ppl.Ppls.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-w"},{"event":"cmd_output","timestamp":1607098350,"output":"ake_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"don"},{"event":"cmd_output","timestamp":1607098350,"output":"e\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"stopping\", publisher"},{"event":"cmd_output","timestamp":1607098350,"output":"_cb: #Function<0.71803493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, return"},{"event":"cmd_output","timestamp":1607098350,"output":"ing: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl."},{"event":"cmd_output","timestamp":1607098350,"output":"Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:30.004 [info] Periodic from module Elixi"},{"event":"cmd_output","timestamp":1607098350,"output":"r.Ppl.PplSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :"},{"event":"cmd_output","timestamp":1607098350,"output":": period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}"},{"event":"cmd_output","timestamp":1607098350,"output":", recurring args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Pp"},{"event":"cmd_output","timestamp":1607098350,"output":"lSubInits.Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, ret"},{"event":"cmd_output","timestamp":1607098350,"output":"urning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: P"},{"event":"cmd_output","timestamp":1607098350,"output":"pl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:30.005 [info] Periodic "},{"event":"cmd_output","timestamp":1607098350,"output":"from module Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl.PplSubInits.STMHand"},{"event":"cmd_output","timestamp":1607098350,"output":"ler.FetchingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHand"},{"event":"cmd_output","timestamp":1607098350,"output":"ler-FetchingState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"done\"], coo"},{"event":"cmd_output","timestamp":1607098350,"output":"ling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fetching\", pub"},{"event":"cmd_output","timestamp":1607098350,"output":"lisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :res"},{"event":"cmd_output","timestamp":1607098350,"output":"ult, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n"},{"event":"cmd_output","timestamp":1607098350,"output":"\u001b[0m\u001b[22m\n16:12:30.006 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CompilationSt"},{"event":"cmd_output","timestamp":1607098350,"output":"ate with name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 100 ms, metric_name: {\"P"},{"event":"cmd_output","timestamp":1607098350,"output":"pl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurring args: %{allowed_st"},{"event":"cmd_output","timestamp":1607098350,"output":"ates: [\"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl."},{"event":"cmd_output","timestamp":1607098350,"output":"PplSubInits.Model.PplSubInits, observed_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRep"},{"event":"cmd_output","timestamp":1607098350,"output":"o, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], sch"},{"event":"cmd_output","timestamp":1607098350,"output":"ema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:30.007 [info] Per"},{"event":"cmd_output","timestamp":1607098350,"output":"iodic from module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInit"},{"event":"cmd_output","timestamp":1607098350,"output":"s.STMHandler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubI"},{"event":"cmd_output","timestamp":1607098350,"output":"nits-STMHandler-RegularInitState\"]}, recurring args: %{allowed_states: [\"done\"], cooling_time_sec: 0"},{"event":"cmd_output","timestamp":1607098350,"output":", initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_init\", publisher_cb: :s"},{"event":"cmd_output","timestamp":1607098350,"output":"kip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recover"},{"event":"cmd_output","timestamp":1607098350,"output":"y_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098350,"output":":12:30.008 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.InitializingState with name "},{"event":"cmd_output","timestamp":1607098350,"output":"Elixir.Ppl.PplBlocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wak"},{"event":"cmd_output","timestamp":1607098350,"output":"e_up\", [\"Ppl-PplBlocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initiali"},{"event":"cmd_output","timestamp":1607098350,"output":"zing\", \"waiting\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observ"},{"event":"cmd_output","timestamp":1607098350,"output":"ed_state: \"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_reque"},{"event":"cmd_output","timestamp":1607098350,"output":"st, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Mod"},{"event":"cmd_output","timestamp":1607098350,"output":"el.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:30.008 [info] Periodic from module Elixir.P"},{"event":"cmd_output","timestamp":1607098350,"output":"pl.PplBlocks.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler.WaitingState :: perio"},{"event":"cmd_output","timestamp":1607098350,"output":"d: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurr"},{"event":"cmd_output","timestamp":1607098350,"output":"ing args: %{allowed_states: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl."},{"event":"cmd_output","timestamp":1607098350,"output":"PplBlocks.Model.PplBlocks, observed_state: \"waiting\", publisher_cb: #Function<0.8975022/1 in Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098350,"output":"Blocks.STMHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :up"},{"event":"cmd_output","timestamp":1607098350,"output":"dated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplB"},{"event":"cmd_output","timestamp":1607098350,"output":"locks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:30.009 [info] Periodic from module Elixir.Ppl.PplB"},{"event":"cmd_output","timestamp":1607098350,"output":"locks.STMHandler.RunningState with name Elixir.Ppl.PplBlocks.STMHandler.RunningState :: period: 1000"},{"event":"cmd_output","timestamp":1607098350,"output":" ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, recurring arg"},{"event":"cmd_output","timestamp":1607098350,"output":"s: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBl"},{"event":"cmd_output","timestamp":1607098350,"output":"ocks.Model.PplBlocks, observed_state: \"running\", publisher_cb: #Function<0.28166834/1 in Ppl.PplBloc"},{"event":"cmd_output","timestamp":1607098350,"output":"ks.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :update"},{"event":"cmd_output","timestamp":1607098350,"output":"d_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Mod"},{"event":"cmd_output","timestamp":1607098350,"output":"el.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:30.010 [info] Periodic from module Elixir.P"},{"event":"cmd_output","timestamp":1607098350,"output":"pl.PplBlocks.STMHandler.StoppingState with name Elixir.Ppl.PplBlocks.STMHandler.StoppingState :: per"},{"event":"cmd_output","timestamp":1607098350,"output":"iod: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, rec"},{"event":"cmd_output","timestamp":1607098350,"output":"urring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlo"},{"event":"cmd_output","timestamp":1607098350,"output":"cks.Model.PplBlocks, observed_state: \"stopping\", publisher_cb: #Function<0.104215991/1 in Ppl.PplBlo"},{"event":"cmd_output","timestamp":1607098350,"output":"cks.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :upda"},{"event":"cmd_output","timestamp":1607098350,"output":"ted_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.M"},{"event":"cmd_output","timestamp":1607098350,"output":"odel.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:30.011 [info] Periodic from module Elixir"},{"event":"cmd_output","timestamp":1607098350,"output":".Block.Blocks.STMHandler.InitializingState with name Elixir.Block.Blocks.STMHandler.InitializingStat"},{"event":"cmd_output","timestamp":1607098350,"output":"e :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-InitializingSta"},{"event":"cmd_output","timestamp":1607098350,"output":"te\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Bl"},{"event":"cmd_output","timestamp":1607098350,"output":"ock.Blocks.Model.Blocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Block.EctoRepo, "},{"event":"cmd_output","timestamp":1607098350,"output":"returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block"},{"event":"cmd_output","timestamp":1607098350,"output":".Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:30.012 [info] Periodic from module "},{"event":"cmd_output","timestamp":1607098350,"output":"Elixir.Block.Blocks.STMHandler.RunningState with name Elixir.Block.Blocks.STMHandler.RunningState ::"},{"event":"cmd_output","timestamp":1607098350,"output":" period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-RunningState\"]}, re"},{"event":"cmd_output","timestamp":1607098350,"output":"curring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query"},{"event":"cmd_output","timestamp":1607098350,"output":": Block.Blocks.Model.Blocks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, r"},{"event":"cmd_output","timestamp":1607098350,"output":"eturning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block."},{"event":"cmd_output","timestamp":1607098350,"output":"Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:30.012 [info] Periodic from module E"},{"event":"cmd_output","timestamp":1607098350,"output":"lixir.Block.Blocks.STMHandler.StoppingState with name Elixir.Block.Blocks.STMHandler.StoppingState :"},{"event":"cmd_output","timestamp":1607098350,"output":": period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-StoppingState\"]}, "},{"event":"cmd_output","timestamp":1607098350,"output":"recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.B"},{"event":"cmd_output","timestamp":1607098350,"output":"locks.Model.Blocks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning"},{"event":"cmd_output","timestamp":1607098350,"output":": [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.M"},{"event":"cmd_output","timestamp":1607098350,"output":"odel.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:30.013 [info] Periodic from module Elixir.Bl"},{"event":"cmd_output","timestamp":1607098350,"output":"ock.Tasks.STMHandler.PendingState with name Elixir.Block.Tasks.STMHandler.PendingState :: period: 10"},{"event":"cmd_output","timestamp":1607098350,"output":"0 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingState\"]}, recurring args"},{"event":"cmd_output","timestamp":1607098350,"output":": %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Tasks.Model.Tasks"},{"event":"cmd_output","timestamp":1607098350,"output":", observed_state: \"pending\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_"},{"event":"cmd_output","timestamp":1607098350,"output":"request, :updated_at, :state, :recovery_count, :block_id, :build_request_id], schema: Block.Tasks.Mo"},{"event":"cmd_output","timestamp":1607098350,"output":"del.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:30.014 [info] Periodic from module Elixir.Bloc"},{"event":"cmd_output","timestamp":1607098350,"output":"k.Tasks.STMHandler.RunningState with name Elixir.Block.Tasks.STMHandler.RunningState :: period: 100 "},{"event":"cmd_output","timestamp":1607098350,"output":"ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningState\"]}, recurring args: "},{"event":"cmd_output","timestamp":1607098350,"output":"%{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks."},{"event":"cmd_output","timestamp":1607098350,"output":"Model.Tasks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, "},{"event":"cmd_output","timestamp":1607098350,"output":":terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Task"},{"event":"cmd_output","timestamp":1607098350,"output":"s, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:30.014 [info] Periodic from module Elixir.Block.Tasks."},{"event":"cmd_output","timestamp":1607098350,"output":"STMHandler.StoppingState with name Elixir.Block.Tasks.STMHandler.StoppingState :: period: 100 ms, me"},{"event":"cmd_output","timestamp":1607098350,"output":"tric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]}, recurring args: %{all"},{"event":"cmd_output","timestamp":1607098350,"output":"owed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, obs"},{"event":"cmd_output","timestamp":1607098350,"output":"erved_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_requ"},{"event":"cmd_output","timestamp":1607098350,"output":"est, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervi"},{"event":"cmd_output","timestamp":1607098350,"output":"sor: :skip}\n\u001b[0m\u001b[22m\n16:12:30.127 [info] ppl_id: ae9a044e-19b6-4994-9250-3af16c1f45e6, type: Ppl"},{"event":"cmd_output","timestamp":1607098350,"output":"Requests, event: persisted source_args for pipeline: ae9a044e-19b6-4994-9250-3af16c1f45e6, origin: E"},{"event":"cmd_output","timestamp":1607098350,"output":"lixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:30.130 [info"},{"event":"cmd_output","timestamp":1607098350,"output":"] ppl_id: ae9a044e-19b6-4994-9250-3af16c1f45e6, type: PplSubInits, state: fetching, event: exit_sch"},{"event":"cmd_output","timestamp":1607098350,"output":"eduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098350,"output":"12:30.155 [info] ppl_id: ae9a044e-19b6-4994-9250-3af16c1f45e6, type: PplSubInits, state: regular_in"},{"event":"cmd_output","timestamp":1607098350,"output":"it, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90"},{"event":"cmd_output","timestamp":1607098350,"output":"), \n\u001b[0m\u001b[22m\n16:12:30.184 [info] ppl_id: ae9a044e-19b6-4994-9250-3af16c1f45e6, type: PplRequests"},{"event":"cmd_output","timestamp":1607098350,"output":", event: persisted definition for request with request_token: 823437ee-364b-11eb-98d8-5254005464e2, "},{"event":"cmd_output","timestamp":1607098350,"output":"origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12"},{"event":"cmd_output","timestamp":1607098350,"output":":30.192 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loa"},{"event":"cmd_output","timestamp":1607098350,"output":"ded, \"queues\">, inserted_at: ~N[2020-12-04 16:12:30.187608], name: \"master-.semaphore/semaphore.yml\""},{"event":"cmd_output","timestamp":1607098350,"output":", organization_id: \"bb9e3d65-38c5-44d3-95dd-7bcc18890b83\", project_id: \"9070a062-cb46-4fbc-b709-37ea"},{"event":"cmd_output","timestamp":1607098350,"output":"7973e7ff\", queue_id: \"a8f69c43-17fb-4b41-8141-c34895c3d858\", scope: \"project\", updated_at: ~N[2020-1"},{"event":"cmd_output","timestamp":1607098350,"output":"2-04 16:12:30.187620], user_generated: false}}\n\u001b[0m\u001b[22m\n16:12:30.200 [info] ppl_id: not_availabl"},{"event":"cmd_output","timestamp":1607098350,"output":"e, event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098350,"output":"m\u001b[22m\n16:12:30.200 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitSt"},{"event":"cmd_output","timestamp":1607098350,"output":"ate.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:30.200 [info] ppl_id: ae9a044e-19b6-4994-9250-3af16c1f45e6,"},{"event":"cmd_output","timestamp":1607098350,"output":" type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098350,"output":"ixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:30.200 [info] "},{"event":"cmd_output","timestamp":1607098350,"output":"ppl_id: ae9a044e-19b6-4994-9250-3af16c1f45e6, type: PplBlocks, block_index: 1, state: initializing, "},{"event":"cmd_output","timestamp":1607098350,"output":"event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok"},{"event":"cmd_output","timestamp":1607098350,"output":"?/1(L105), \n\u001b[0m\u001b[22m\n16:12:30.200 [info] ppl_id: ae9a044e-19b6-4994-9250-3af16c1f45e6, type: Ppl"},{"event":"cmd_output","timestamp":1607098350,"output":"Blocks, block_index: 2, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.P"},{"event":"cmd_output","timestamp":1607098350,"output":"plSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:30.201 [info] ppl_id: ae"},{"event":"cmd_output","timestamp":1607098350,"output":"9a044e-19b6-4994-9250-3af16c1f45e6, type: PplBlocks, block_index: 3, state: initializing, event: cre"},{"event":"cmd_output","timestamp":1607098350,"output":"ated, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105),"},{"event":"cmd_output","timestamp":1607098350,"output":" \n\u001b[0m\u001b[22m\n16:12:30.201 [info] ppl_id: ae9a044e-19b6-4994-9250-3af16c1f45e6, type: PplBlocks, bl"},{"event":"cmd_output","timestamp":1607098350,"output":"ock_index: 4, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits"},{"event":"cmd_output","timestamp":1607098350,"output":".STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:30.203 [info] ppl_id: ae9a044e-19b"},{"event":"cmd_output","timestamp":1607098350,"output":"6-4994-9250-3af16c1f45e6, type: PplSubInits, state: done, result: passed, event: exit_scheduling, re"},{"event":"cmd_output","timestamp":1607098350,"output":"covery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:30.223 ["},{"event":"cmd_output","timestamp":1607098350,"output":"info] ppl_id: ae9a044e-19b6-4994-9250-3af16c1f45e6, type: PplBlocks, block_index: 0, state: waiting"},{"event":"cmd_output","timestamp":1607098350,"output":", event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90),"},{"event":"cmd_output","timestamp":1607098350,"output":" \n\u001b[0m\u001b[22m\n16:12:30.226 [info] ppl_id: ae9a044e-19b6-4994-9250-3af16c1f45e6, type: Ppls, state: "},{"event":"cmd_output","timestamp":1607098350,"output":"pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/"},{"event":"cmd_output","timestamp":1607098350,"output":"1(L90), \n\u001b[0m\u001b[22m\n16:12:30.232 [info] ppl_id: ae9a044e-19b6-4994-9250-3af16c1f45e6, type: PplBlo"},{"event":"cmd_output","timestamp":1607098350,"output":"cks, block_index: 1, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loope"},{"event":"cmd_output","timestamp":1607098350,"output":"r.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:30.237 [info] ppl_id: ae9a044e-19b6-4994-925"},{"event":"cmd_output","timestamp":1607098350,"output":"0-3af16c1f45e6, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098350,"output":"r.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:30.240 [info] ppl_id: ae9a044e-19b6-4"},{"event":"cmd_output","timestamp":1607098350,"output":"994-9250-3af16c1f45e6, type: PplBlocks, block_index: 2, state: waiting, event: exit_scheduling, reco"},{"event":"cmd_output","timestamp":1607098350,"output":"very_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:30.247 [in"},{"event":"cmd_output","timestamp":1607098350,"output":"fo] ppl_id: ae9a044e-19b6-4994-9250-3af16c1f45e6, type: PplBlocks, block_index: 3, state: waiting, "},{"event":"cmd_output","timestamp":1607098350,"output":"event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \r"},{"event":"cmd_output","timestamp":1607098350,"output":"\n\u001b[0m\u001b[22m\n16:12:30.248 [info] ppl_id: ae9a044e-19b6-4994-9250-3af16c1f45e6, type: Ppls, state: ru"},{"event":"cmd_output","timestamp":1607098350,"output":"nning, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1("},{"event":"cmd_output","timestamp":1607098350,"output":"L90), \n\u001b[0m\u001b[22m\n16:12:30.252 [info] ppl_id: ae9a044e-19b6-4994-9250-3af16c1f45e6, type: PplBlock"},{"event":"cmd_output","timestamp":1607098350,"output":"s, block_index: 4, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper."},{"event":"cmd_output","timestamp":1607098350,"output":"STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:30.256 [info] PplBlocks WaitingState STM is sc"},{"event":"cmd_output","timestamp":1607098350,"output":"heduling block 3 from pipeline: \"ae9a044e-19b6-4994-9250-3af16c1f45e6\"\n\u001b[0m\u001b[22m\n16:12:30.263 [inf"},{"event":"cmd_output","timestamp":1607098350,"output":"o] block_id: c7d2acef-4286-4c48-93d1-a988cc3cff36, type: BlockRequests, event: persisted block run "},{"event":"cmd_output","timestamp":1607098350,"output":"request from ppl ae9a044e-19b6-4994-9250-3af16c1f45e6 for block 3, origin: Elixir.Block.BlockRequest"},{"event":"cmd_output","timestamp":1607098350,"output":"s.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:30.267 [info] block_id: c7"},{"event":"cmd_output","timestamp":1607098350,"output":"d2acef-4286-4c48-93d1-a988cc3cff36, type: Blocks, state: initializing, event: initializing, recovery"},{"event":"cmd_output","timestamp":1607098350,"output":"_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:30.269 "},{"event":"cmd_output","timestamp":1607098350,"output":"[info] Block 3 of pipeline with id: ae9a044e-19b6-4994-9250-3af16c1f45e6 scheduled in block service"},{"event":"cmd_output","timestamp":1607098350,"output":" with id: : \"c7d2acef-4286-4c48-93d1-a988cc3cff36\"\n\u001b[0m\u001b[22m\n16:12:30.272 [info] ppl_id: ae9a044e"},{"event":"cmd_output","timestamp":1607098350,"output":"-19b6-4994-9250-3af16c1f45e6, type: PplBlocks, block_index: 3, state: running, event: exit_schedulin"},{"event":"cmd_output","timestamp":1607098350,"output":"g, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:30."},{"event":"cmd_output","timestamp":1607098350,"output":"273 [info] block_id: c7d2acef-4286-4c48-93d1-a988cc3cff36, type: BlockRequests, event: persisted bu"},{"event":"cmd_output","timestamp":1607098350,"output":"ild and sub_ppl details for block_request: c7d2acef-4286-4c48-93d1-a988cc3cff36, origin: Elixir.Bloc"},{"event":"cmd_output","timestamp":1607098350,"output":"k.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:30.276 [info] Pp"},{"event":"cmd_output","timestamp":1607098350,"output":"lBlocks WaitingState STM is scheduling block 0 from pipeline: \"ae9a044e-19b6-4994-9250-3af16c1f45e6\""},{"event":"cmd_output","timestamp":1607098350,"output":"\n\u001b[0m\u001b[22m\n16:12:30.280 [info] block_id: c7d2acef-4286-4c48-93d1-a988cc3cff36, type: Tasks, state"},{"event":"cmd_output","timestamp":1607098350,"output":": pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingSta"},{"event":"cmd_output","timestamp":1607098350,"output":"te.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:30.281 [info] block_id: 23c7bd55-9003-4068-aa92-40d853407eb9"},{"event":"cmd_output","timestamp":1607098350,"output":", type: BlockRequests, event: persisted block run request from ppl ae9a044e-19b6-4994-9250-3af16c1f4"},{"event":"cmd_output","timestamp":1607098350,"output":"5e6 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L3"},{"event":"cmd_output","timestamp":1607098350,"output":"5), \n\u001b[0m\u001b[22m\n16:12:30.282 [info] block_id: 23c7bd55-9003-4068-aa92-40d853407eb9, type: Blocks, "},{"event":"cmd_output","timestamp":1607098350,"output":"state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.Block"},{"event":"cmd_output","timestamp":1607098350,"output":"sQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:30.282 [info] block_id: c7d2acef-4286-4c48-93d1-a988cc3c"},{"event":"cmd_output","timestamp":1607098350,"output":"ff36, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper"},{"event":"cmd_output","timestamp":1607098350,"output":".STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:30.287 [info] Block 0 of pipeline with id: ae"},{"event":"cmd_output","timestamp":1607098350,"output":"9a044e-19b6-4994-9250-3af16c1f45e6 scheduled in block service with id: : \"23c7bd55-9003-4068-aa92-40"},{"event":"cmd_output","timestamp":1607098350,"output":"d853407eb9\"\n\u001b[0m\u001b[22m\n16:12:30.289 [info] ppl_id: ae9a044e-19b6-4994-9250-3af16c1f45e6, type: Ppl"},{"event":"cmd_output","timestamp":1607098350,"output":"Blocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Lo"},{"event":"cmd_output","timestamp":1607098350,"output":"oper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:30.294 [info] block_id: 23c7bd55-9003-406"},{"event":"cmd_output","timestamp":1607098350,"output":"8-aa92-40d853407eb9, type: BlockRequests, event: persisted build and sub_ppl details for block_reque"},{"event":"cmd_output","timestamp":1607098350,"output":"st: 23c7bd55-9003-4068-aa92-40d853407eb9, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQuer"},{"event":"cmd_output","timestamp":1607098350,"output":"ies.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:30.298 [info] block_id: 23c7bd55-9003-4068-aa92-40d8534"},{"event":"cmd_output","timestamp":1607098350,"output":"07eb9, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.S"},{"event":"cmd_output","timestamp":1607098350,"output":"TMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:30.300 [info] block_id: c7d2acef-42"},{"event":"cmd_output","timestamp":1607098350,"output":"86-4c48-93d1-a988cc3cff36, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098350,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:30.304 [info] block_id: 2"},{"event":"cmd_output","timestamp":1607098350,"output":"3c7bd55-9003-4068-aa92-40d853407eb9, type: Blocks, state: running, event: exit_scheduling, recovery_"},{"event":"cmd_output","timestamp":1607098350,"output":"count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:30.328 [info] "},{"event":"cmd_output","timestamp":1607098350,"output":"block_id: 23c7bd55-9003-4068-aa92-40d853407eb9, type: Tasks, state: running, event: exit_scheduling,"},{"event":"cmd_output","timestamp":1607098351,"output":" recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:31.43"},{"event":"cmd_output","timestamp":1607098351,"output":"7 [info] block_id: c7d2acef-4286-4c48-93d1-a988cc3cff36, type: Tasks, state: done, event: exit_sche"},{"event":"cmd_output","timestamp":1607098351,"output":"duling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098351,"output":"2:31.441 [info] block_id: c7d2acef-4286-4c48-93d1-a988cc3cff36, type: Blocks, state: done, event: e"},{"event":"cmd_output","timestamp":1607098351,"output":"xit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098351,"output":"2m\n16:12:31.447 [info] ppl_id: ae9a044e-19b6-4994-9250-3af16c1f45e6, block_id: c7d2acef-4286-4c48-"},{"event":"cmd_output","timestamp":1607098351,"output":"93d1-a988cc3cff36, type: PplBlocks, block_index: 3, state: done, result: failed, event: exit_schedul"},{"event":"cmd_output","timestamp":1607098351,"output":"ing, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:3"},{"event":"cmd_output","timestamp":1607098351,"output":"1.543 [info] block_id: 23c7bd55-9003-4068-aa92-40d853407eb9, type: Tasks, state: done, event: exit_"},{"event":"cmd_output","timestamp":1607098351,"output":"scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098351,"output":"16:12:31.548 [info] block_id: 23c7bd55-9003-4068-aa92-40d853407eb9, type: Blocks, state: done, even"},{"event":"cmd_output","timestamp":1607098351,"output":"t: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098351,"output":"m\u001b[22m\n16:12:31.552 [info] ppl_id: ae9a044e-19b6-4994-9250-3af16c1f45e6, block_id: 23c7bd55-9003-4"},{"event":"cmd_output","timestamp":1607098351,"output":"068-aa92-40d853407eb9, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_sch"},{"event":"cmd_output","timestamp":1607098351,"output":"eduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098351,"output":"12:31.558 [info] PplBlocks WaitingState STM is scheduling block 1 from pipeline: \"ae9a044e-19b6-499"},{"event":"cmd_output","timestamp":1607098351,"output":"4-9250-3af16c1f45e6\"\n\u001b[0m\u001b[22m\n16:12:31.562 [info] ppl_id: ae9a044e-19b6-4994-9250-3af16c1f45e6, "},{"event":"cmd_output","timestamp":1607098351,"output":"type: PplBlocks, block_index: 1, state: done, result: canceled, event: exit_scheduling, recovery_cou"},{"event":"cmd_output","timestamp":1607098351,"output":"nt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:31.567 [info] Ppl"},{"event":"cmd_output","timestamp":1607098351,"output":"Blocks WaitingState STM is scheduling block 4 from pipeline: \"ae9a044e-19b6-4994-9250-3af16c1f45e6\"\r"},{"event":"cmd_output","timestamp":1607098351,"output":"\n\u001b[0m\u001b[22m\n16:12:31.570 [info] ppl_id: ae9a044e-19b6-4994-9250-3af16c1f45e6, type: PplBlocks, bloc"},{"event":"cmd_output","timestamp":1607098351,"output":"k_index: 4, state: done, result: canceled, event: exit_scheduling, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098351,"output":".Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:31.572 [info] PplBlocks WaitingState S"},{"event":"cmd_output","timestamp":1607098351,"output":"TM is scheduling block 2 from pipeline: \"ae9a044e-19b6-4994-9250-3af16c1f45e6\"\n\u001b[0m\u001b[22m\n16:12:31."},{"event":"cmd_output","timestamp":1607098351,"output":"575 [info] ppl_id: ae9a044e-19b6-4994-9250-3af16c1f45e6, type: PplBlocks, block_index: 2, state: do"},{"event":"cmd_output","timestamp":1607098351,"output":"ne, result: canceled, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_"},{"event":"cmd_output","timestamp":1607098351,"output":"state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:31.583 [info] ppl_id: ae9a044e-19b6-4994-9250-3af16c1f45e6,"},{"event":"cmd_output","timestamp":1607098351,"output":" type: Ppls, state: done, result: failed, event: exit_scheduling, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098351,"output":"Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:31.663 [info] Request: 'partial_rebuild"},{"event":"cmd_output","timestamp":1607098351,"output":"', request: %{ppl_id: \"ae9a044e-19b6-4994-9250-3af16c1f45e6\", request_token: \"ee2e688d-5b31-44bb-8b7"},{"event":"cmd_output","timestamp":1607098351,"output":"2-c8cdda89d1dd\", user_id: \"rebuild_user\"}\n\u001b[0m\u001b[22m\n16:12:31.665 [info] ppl_id: 88b33bca-77a6-482"},{"event":"cmd_output","timestamp":1607098351,"output":"d-a1ab-deda93445dc0, type: PplRequests, event: persisted schedule request with request_token: ee2e68"},{"event":"cmd_output","timestamp":1607098351,"output":"8d-5b31-44bb-8b72-c8cdda89d1dd, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_resp"},{"event":"cmd_output","timestamp":1607098351,"output":"onse/2(L55), \n\u001b[0m\u001b[22m\n16:12:31.667 [info] ppl_id: 88b33bca-77a6-482d-a1ab-deda93445dc0, type: P"},{"event":"cmd_output","timestamp":1607098351,"output":"pls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.Ppls"},{"event":"cmd_output","timestamp":1607098351,"output":"Queries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:31.671 [info] Persisted ppl_sub_init for pipel"},{"event":"cmd_output","timestamp":1607098351,"output":"ine with ppl_id: 88b33bca-77a6-482d-a1ab-deda93445dc0: %Ppl.PplSubInits.Model.PplSubInits{__meta__: "},{"event":"cmd_output","timestamp":1607098351,"output":"#Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, "},{"event":"cmd_output","timestamp":1607098351,"output":"id: 230, in_scheduling: false, init_type: \"rebuild\", inserted_at: ~N[2020-12-04 16:12:31.670482], pi"},{"event":"cmd_output","timestamp":1607098351,"output":"peline_requests: #Ecto.Association.NotLoaded, ppl_id: "},{"event":"cmd_output","timestamp":1607098351,"output":"\"88b33bca-77a6-482d-a1ab-deda93445dc0\", recovery_count: 0, result: nil, result_reason: nil, state: \""},{"event":"cmd_output","timestamp":1607098351,"output":"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:31.67"},{"event":"cmd_output","timestamp":1607098351,"output":"0488]}\n\u001b[0m\u001b[22m\n16:12:31.678 [info] ppl_id: 88b33bca-77a6-482d-a1ab-deda93445dc0, type: PplReque"},{"event":"cmd_output","timestamp":1607098351,"output":"sts, event: persisted source_args for pipeline: 88b33bca-77a6-482d-a1ab-deda93445dc0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098351,"output":".Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:31.679 [info] pp"},{"event":"cmd_output","timestamp":1607098351,"output":"l_id: 88b33bca-77a6-482d-a1ab-deda93445dc0, type: PplSubInits, state: fetching, event: exit_scheduli"},{"event":"cmd_output","timestamp":1607098351,"output":"ng, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:31"},{"event":"cmd_output","timestamp":1607098351,"output":".697 [info] ppl_id: 88b33bca-77a6-482d-a1ab-deda93445dc0, type: PplSubInits, state: regular_init, e"},{"event":"cmd_output","timestamp":1607098351,"output":"vent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n"},{"event":"cmd_output","timestamp":1607098351,"output":"\u001b[0m\u001b[22m\n16:12:31.722 [info] ppl_id: 88b33bca-77a6-482d-a1ab-deda93445dc0, type: PplRequests, eve"},{"event":"cmd_output","timestamp":1607098351,"output":"nt: persisted definition for request with request_token: ee2e688d-5b31-44bb-8b72-c8cdda89d1dd, origi"},{"event":"cmd_output","timestamp":1607098351,"output":"n: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:31.7"},{"event":"cmd_output","timestamp":1607098351,"output":"28 [info] ppl_id: not_available, event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularI"},{"event":"cmd_output","timestamp":1607098351,"output":"nitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:31.728 [info] event: created, origin: Elixir.Ppl.PplSu"},{"event":"cmd_output","timestamp":1607098351,"output":"bInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:31.728 [info] ppl_id: 88b33b"},{"event":"cmd_output","timestamp":1607098351,"output":"ca-77a6-482d-a1ab-deda93445dc0, type: PplBlocks, block_index: 0, state: initializing, event: created"},{"event":"cmd_output","timestamp":1607098351,"output":", recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b"},{"event":"cmd_output","timestamp":1607098351,"output":"[0m\u001b[22m\n16:12:31.728 [info] ppl_id: 88b33bca-77a6-482d-a1ab-deda93445dc0, type: PplBlocks, block_"},{"event":"cmd_output","timestamp":1607098351,"output":"index: 1, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STM"},{"event":"cmd_output","timestamp":1607098351,"output":"Handler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:31.728 [info] ppl_id: 88b33bca-77a6-48"},{"event":"cmd_output","timestamp":1607098351,"output":"2d-a1ab-deda93445dc0, type: PplBlocks, block_index: 2, state: initializing, event: created, recovery"},{"event":"cmd_output","timestamp":1607098351,"output":"_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098351,"output":"16:12:31.728 [info] ppl_id: 88b33bca-77a6-482d-a1ab-deda93445dc0, type: PplBlocks, block_index: 3, "},{"event":"cmd_output","timestamp":1607098351,"output":"state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.Re"},{"event":"cmd_output","timestamp":1607098351,"output":"gularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:31.728 [info] ppl_id: 88b33bca-77a6-482d-a1ab-de"},{"event":"cmd_output","timestamp":1607098351,"output":"da93445dc0, type: PplBlocks, block_index: 4, state: initializing, event: created, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098351,"output":" origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:31.7"},{"event":"cmd_output","timestamp":1607098351,"output":"37 [info] ppl_id: 88b33bca-77a6-482d-a1ab-deda93445dc0, type: PplSubInits, state: done, result: pas"},{"event":"cmd_output","timestamp":1607098351,"output":"sed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L9"},{"event":"cmd_output","timestamp":1607098351,"output":"0), \n\u001b[0m\u001b[22m\n16:12:31.744 [info] ppl_id: 88b33bca-77a6-482d-a1ab-deda93445dc0, type: Ppls, stat"},{"event":"cmd_output","timestamp":1607098351,"output":"e: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chan"},{"event":"cmd_output","timestamp":1607098351,"output":"ge/1(L90), \n\u001b[0m\u001b[22m\n16:12:31.749 [info] ppl_id: 88b33bca-77a6-482d-a1ab-deda93445dc0, type: Ppl"},{"event":"cmd_output","timestamp":1607098351,"output":"Blocks, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098351,"output":"in: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:31.750 [info] ppl_id: 88b33b"},{"event":"cmd_output","timestamp":1607098351,"output":"ca-77a6-482d-a1ab-deda93445dc0, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: "},{"event":"cmd_output","timestamp":1607098351,"output":"0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:31.756 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098351,"output":" 88b33bca-77a6-482d-a1ab-deda93445dc0, type: PplBlocks, block_index: 1, state: waiting, event: exit_"},{"event":"cmd_output","timestamp":1607098351,"output":"scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098351,"output":"16:12:31.758 [info] ppl_id: 88b33bca-77a6-482d-a1ab-deda93445dc0, type: Ppls, state: running, event"},{"event":"cmd_output","timestamp":1607098351,"output":": exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098351,"output":"\u001b[22m\n16:12:31.762 [info] ppl_id: 88b33bca-77a6-482d-a1ab-deda93445dc0, type: PplBlocks, block_ind"},{"event":"cmd_output","timestamp":1607098351,"output":"ex: 2, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098351,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:31.772 [info] PplBlocks WaitingState STM is scheduling blo"},{"event":"cmd_output","timestamp":1607098351,"output":"ck 3 from pipeline: \"88b33bca-77a6-482d-a1ab-deda93445dc0\"\n\u001b[0m\u001b[22m\n16:12:31.772 [info] ppl_id: "},{"event":"cmd_output","timestamp":1607098351,"output":"88b33bca-77a6-482d-a1ab-deda93445dc0, type: PplBlocks, block_index: 3, state: waiting, event: exit_s"},{"event":"cmd_output","timestamp":1607098351,"output":"cheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098351,"output":"6:12:31.777 [info] ppl_id: 88b33bca-77a6-482d-a1ab-deda93445dc0, type: PplBlocks, block_index: 4, s"},{"event":"cmd_output","timestamp":1607098351,"output":"tate: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098351,"output":"hange/1(L90), \n\u001b[0m\u001b[22m\n16:12:31.778 [info] block_id: ef384c7f-7c26-448a-b739-ad0ba1938d87, type"},{"event":"cmd_output","timestamp":1607098351,"output":": BlockRequests, event: persisted block run request from ppl 88b33bca-77a6-482d-a1ab-deda93445dc0 fo"},{"event":"cmd_output","timestamp":1607098351,"output":"r block 3, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n"},{"event":"cmd_output","timestamp":1607098351,"output":"\u001b[0m\u001b[22m\n16:12:31.780 [info] block_id: ef384c7f-7c26-448a-b739-ad0ba1938d87, type: Blocks, state:"},{"event":"cmd_output","timestamp":1607098351,"output":" initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueri"},{"event":"cmd_output","timestamp":1607098351,"output":"es.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:31.781 [info] Block 3 of pipeline with id: 88b33bca-77a6-482d-"},{"event":"cmd_output","timestamp":1607098351,"output":"a1ab-deda93445dc0 scheduled in block service with id: : \"ef384c7f-7c26-448a-b739-ad0ba1938d87\"\n\u001b[0m"},{"event":"cmd_output","timestamp":1607098351,"output":"\u001b[22m\n16:12:31.783 [info] ppl_id: 88b33bca-77a6-482d-a1ab-deda93445dc0, type: PplBlocks, block_ind"},{"event":"cmd_output","timestamp":1607098351,"output":"ex: 3, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098351,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:31.786 [info] block_id: ef384c7f-7c26-448a-b739-ad0ba1938d"},{"event":"cmd_output","timestamp":1607098351,"output":"87, type: BlockRequests, event: persisted build and sub_ppl details for block_request: ef384c7f-7c26"},{"event":"cmd_output","timestamp":1607098351,"output":"-448a-b739-ad0ba1938d87, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/"},{"event":"cmd_output","timestamp":1607098351,"output":"2(L41), \n\u001b[0m\u001b[22m\n16:12:31.788 [info] block_id: ef384c7f-7c26-448a-b739-ad0ba1938d87, type: Task"},{"event":"cmd_output","timestamp":1607098351,"output":"s, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.Initial"},{"event":"cmd_output","timestamp":1607098351,"output":"izingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:31.791 [info] block_id: ef384c7f-7c26-448a-b739-ad0b"},{"event":"cmd_output","timestamp":1607098351,"output":"a1938d87, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Lo"},{"event":"cmd_output","timestamp":1607098351,"output":"oper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:31.804 [info] block_id: ef384c7f-7c26-448"},{"event":"cmd_output","timestamp":1607098351,"output":"a-b739-ad0ba1938d87, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098352,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:32.831 [info] block_id: ef384c7"},{"event":"cmd_output","timestamp":1607098352,"output":"f-7c26-448a-b739-ad0ba1938d87, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098352,"output":"origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:32.834 [info] block_id: "},{"event":"cmd_output","timestamp":1607098352,"output":"ef384c7f-7c26-448a-b739-ad0ba1938d87, type: Blocks, state: done, event: exit_scheduling, recovery_co"},{"event":"cmd_output","timestamp":1607098352,"output":"unt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:32.843 [info] pp"},{"event":"cmd_output","timestamp":1607098352,"output":"l_id: 88b33bca-77a6-482d-a1ab-deda93445dc0, block_id: ef384c7f-7c26-448a-b739-ad0ba1938d87, type: Pp"},{"event":"cmd_output","timestamp":1607098352,"output":"lBlocks, block_index: 3, state: done, result: failed, event: exit_scheduling, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098352,"output":"gin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:32.847 [info] PplBlocks Wai"},{"event":"cmd_output","timestamp":1607098352,"output":"tingState STM is scheduling block 1 from pipeline: \"88b33bca-77a6-482d-a1ab-deda93445dc0\"\n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098352,"output":"\n16:12:32.853 [info] ppl_id: 88b33bca-77a6-482d-a1ab-deda93445dc0, type: PplBlocks, block_index: 1"},{"event":"cmd_output","timestamp":1607098352,"output":", state: done, result: canceled, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.ST"},{"event":"cmd_output","timestamp":1607098352,"output":"M.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:32.857 [info] PplBlocks WaitingState STM is sche"},{"event":"cmd_output","timestamp":1607098352,"output":"duling block 4 from pipeline: \"88b33bca-77a6-482d-a1ab-deda93445dc0\"\n\u001b[0m\u001b[22m\n16:12:32.861 [info]"},{"event":"cmd_output","timestamp":1607098352,"output":" ppl_id: 88b33bca-77a6-482d-a1ab-deda93445dc0, type: PplBlocks, block_index: 4, state: done, result"},{"event":"cmd_output","timestamp":1607098352,"output":": canceled, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chan"},{"event":"cmd_output","timestamp":1607098352,"output":"ge/1(L90), \n\u001b[0m\u001b[22m\n16:12:32.865 [info] PplBlocks WaitingState STM is scheduling block 2 from p"},{"event":"cmd_output","timestamp":1607098352,"output":"ipeline: \"88b33bca-77a6-482d-a1ab-deda93445dc0\"\n\u001b[0m\u001b[22m\n16:12:32.868 [info] ppl_id: 88b33bca-77"},{"event":"cmd_output","timestamp":1607098352,"output":"a6-482d-a1ab-deda93445dc0, type: PplBlocks, block_index: 2, state: done, result: canceled, event: ex"},{"event":"cmd_output","timestamp":1607098352,"output":"it_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098352,"output":"m\n16:12:32.882 [info] ppl_id: 88b33bca-77a6-482d-a1ab-deda93445dc0, type: Ppls, state: done, resul"},{"event":"cmd_output","timestamp":1607098352,"output":"t: failed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chang"},{"event":"cmd_output","timestamp":1607098352,"output":"e/1(L90), \n\u001b[0m\u001b[32m\r * test gRPC partial_rebuild() - succedes when given valid params (2961.2ms)\u001b"},{"event":"cmd_output","timestamp":1607098352,"output":"[0m\n * test gRPC describe() - ppl_id not found\u001b[31m\n16:12:32.947 [error] Describe request failure"},{"event":"cmd_output","timestamp":1607098352,"output":": {:error, \"Pipeline with id: 'does-not-exist' not found.\"}\n\u001b[0m\u001b[32m\r * test gRPC describe() - pp"},{"event":"cmd_output","timestamp":1607098352,"output":"l_id not found (51.5ms)\u001b[0m\n * test v1: gRPC describe() - pipeline execution passed, initial def s"},{"event":"cmd_output","timestamp":1607098352,"output":"aved\u001b[22m\n16:12:32.990 [info] Request: 'run: %{\"branch_id\" => \"33ab1259-fc28-47a0-9796-b580ce89f35"},{"event":"cmd_output","timestamp":1607098352,"output":"3\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"semaphore.yml\", \"hook_i"},{"event":"cmd_output","timestamp":1607098352,"output":"d\" => \"83fec27e-364b-11eb-9362-5254005464e2\", \"label\" => \"master\", \"organization_id\" => \"8768e248-30"},{"event":"cmd_output","timestamp":1607098352,"output":"26-4e73-8eb5-071e7311a2e8\", \"owner\" => \"rt\", \"project_id\" => \"42a97fa0-cf14-4574-a956-b2e1118745e2\","},{"event":"cmd_output","timestamp":1607098352,"output":" \"repo_name\" => \"5_v1_full\", \"request_token\" => \"83febb3a-364b-11eb-8295-5254005464e2\", \"requester_i"},{"event":"cmd_output","timestamp":1607098352,"output":"d\" => \"0644ec6d-61dc-45bf-9604-8345af36a3fd\", \"service\" => \"local\", \"suppressed_attributes\" => [\"acc"},{"event":"cmd_output","timestamp":1607098352,"output":"ess_token\", \"client_secret\"], \"wf_id\" => \"adff21e6-4f81-460e-8a9b-a12701c395ca\", \"working_dir\" => \"."},{"event":"cmd_output","timestamp":1607098352,"output":"semaphore\"}\n\u001b[0m\u001b[22m\n16:12:32.997 [info] ppl_id: 6f1ff7c2-9877-4792-bcb5-471626771c08, type: Ppl"},{"event":"cmd_output","timestamp":1607098352,"output":"Requests, event: persisted schedule request with request_token: 83febb3a-364b-11eb-8295-5254005464e2"},{"event":"cmd_output","timestamp":1607098352,"output":", origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098352,"output":"2:32.999 [info] ppl_id: 6f1ff7c2-9877-4792-bcb5-471626771c08, type: Ppls, state: initializing, even"},{"event":"cmd_output","timestamp":1607098352,"output":"t: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L12"},{"event":"cmd_output","timestamp":1607098353,"output":"4), \n\u001b[0m\u001b[22m\n16:12:33.003 [info] Project 42a97fa0-cf14-4574-a956-b2e1118745e2 and branch master"},{"event":"cmd_output","timestamp":1607098353,"output":"latest_wf details updated: \"wf_id: adff21e6-4f81-460e-8a9b-a12701c395ca, wf_number: 1\"\n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098353,"output":"6:12:33.005 [info] Persisted ppl_sub_init for pipeline with ppl_id: 6f1ff7c2-9877-4792-bcb5-4716267"},{"event":"cmd_output","timestamp":1607098353,"output":"71c08: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_ini"},{"event":"cmd_output","timestamp":1607098353,"output":"ts\">, compile_task_id: nil, error_description: nil, id: 231, in_scheduling: false, init_type: \"regul"},{"event":"cmd_output","timestamp":1607098353,"output":"ar\", inserted_at: ~N[2020-12-04 16:12:33.003462], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"6f1ff7c2-9877-4792-bcb5-471626771c08\", recovery"},{"event":"cmd_output","timestamp":1607098353,"output":"_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_requ"},{"event":"cmd_output","timestamp":1607098353,"output":"est_desc: nil, updated_at: ~N[2020-12-04 16:12:33.003468]}\n\u001b[0m\u001b[22m\n16:12:33.009 [info] Periodic"},{"event":"cmd_output","timestamp":1607098353,"output":" from module Elixir.Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.STMHandler.Initi"},{"event":"cmd_output","timestamp":1607098353,"output":"alizingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Initiali"},{"event":"cmd_output","timestamp":1607098353,"output":"zingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], cooling_time_se"},{"event":"cmd_output","timestamp":1607098353,"output":"c: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher_cb: #Function<0."},{"event":"cmd_output","timestamp":1607098353,"output":"125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :"},{"event":"cmd_output","timestamp":1607098353,"output":"terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.P"},{"event":"cmd_output","timestamp":1607098353,"output":"pls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:33.010 [info] Periodic from module Elixir.Ppl.Ppls.S"},{"event":"cmd_output","timestamp":1607098353,"output":"TMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 100 ms, metric_n"},{"event":"cmd_output","timestamp":1607098353,"output":"ame: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args: %{allowed_state"},{"event":"cmd_output","timestamp":1607098353,"output":"s: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppl"},{"event":"cmd_output","timestamp":1607098353,"output":"s, observed_state: \"pending\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler.PendingStat"},{"event":"cmd_output","timestamp":1607098353,"output":"e.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :r"},{"event":"cmd_output","timestamp":1607098353,"output":"ecovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098353,"output":"m\n16:12:33.010 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.QueuingState with name Elixi"},{"event":"cmd_output","timestamp":1607098353,"output":"r.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Pp"},{"event":"cmd_output","timestamp":1607098353,"output":"ls-STMHandler-QueuingState\"]}, recurring args: %{allowed_states: [\"queuing\", \"running\", \"done\"], coo"},{"event":"cmd_output","timestamp":1607098353,"output":"ling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", publisher_cb: #Fun"},{"event":"cmd_output","timestamp":1607098353,"output":"ction<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, returning: [:id"},{"event":"cmd_output","timestamp":1607098353,"output":", :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Mode"},{"event":"cmd_output","timestamp":1607098353,"output":"l.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:33.010 [info] Periodic from module Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098353,"output":"s.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHandler.RunningState :: period: 100 ms, metri"},{"event":"cmd_output","timestamp":1607098353,"output":"c_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring args: %{allowed_st"},{"event":"cmd_output","timestamp":1607098353,"output":"ates: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, obs"},{"event":"cmd_output","timestamp":1607098353,"output":"erved_state: \"running\", publisher_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler.RunningState.arg"},{"event":"cmd_output","timestamp":1607098353,"output":"s/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recove"},{"event":"cmd_output","timestamp":1607098353,"output":"ry_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098353,"output":":12:33.011 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.StoppingState with name Elixir.Pp"},{"event":"cmd_output","timestamp":1607098353,"output":"l.Ppls.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-"},{"event":"cmd_output","timestamp":1607098353,"output":"STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_se"},{"event":"cmd_output","timestamp":1607098353,"output":"c: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"stopping\", publisher_cb: #Function<0.718"},{"event":"cmd_output","timestamp":1607098353,"output":"03493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminat"},{"event":"cmd_output","timestamp":1607098353,"output":"e_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, tas"},{"event":"cmd_output","timestamp":1607098353,"output":"k_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:33.011 [info] Periodic from module Elixir.Ppl.PplSubInits.ST"},{"event":"cmd_output","timestamp":1607098353,"output":"MHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 100 ms, me"},{"event":"cmd_output","timestamp":1607098353,"output":"tric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args: %{"},{"event":"cmd_output","timestamp":1607098353,"output":"allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplS"},{"event":"cmd_output","timestamp":1607098353,"output":"ubInits, observed_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :termi"},{"event":"cmd_output","timestamp":1607098353,"output":"nate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model"},{"event":"cmd_output","timestamp":1607098353,"output":".PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:33.011 [info] Periodic from module Elixir.P"},{"event":"cmd_output","timestamp":1607098353,"output":"pl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler.FetchingState ::"},{"event":"cmd_output","timestamp":1607098353,"output":" period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}"},{"event":"cmd_output","timestamp":1607098353,"output":", recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"done\"], cooling_time_sec: -2, i"},{"event":"cmd_output","timestamp":1607098353,"output":"nitial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fetching\", publisher_cb: :skip, re"},{"event":"cmd_output","timestamp":1607098353,"output":"po: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count"},{"event":"cmd_output","timestamp":1607098353,"output":", :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:33."},{"event":"cmd_output","timestamp":1607098353,"output":"011 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CompilationState with name Elixir"},{"event":"cmd_output","timestamp":1607098353,"output":".Ppl.PplSubInits.STMHandler.CompilationState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\""},{"event":"cmd_output","timestamp":1607098353,"output":", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurring args: %{allowed_states: [\"regular_init"},{"event":"cmd_output","timestamp":1607098353,"output":"\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.Pp"},{"event":"cmd_output","timestamp":1607098353,"output":"lSubInits, observed_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, "},{"event":"cmd_output","timestamp":1607098353,"output":":terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits"},{"event":"cmd_output","timestamp":1607098353,"output":".Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:33.012 [info] Periodic from module El"},{"event":"cmd_output","timestamp":1607098353,"output":"ixir.Ppl.PplSubInits.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHandler.Regular"},{"event":"cmd_output","timestamp":1607098353,"output":"InitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-Regu"},{"event":"cmd_output","timestamp":1607098353,"output":"larInitState\"]}, recurring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, initial_query: Ppl"},{"event":"cmd_output","timestamp":1607098353,"output":".PplSubInits.Model.PplSubInits, observed_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoR"},{"event":"cmd_output","timestamp":1607098353,"output":"epo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], s"},{"event":"cmd_output","timestamp":1607098353,"output":"chema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:33.012 [info] P"},{"event":"cmd_output","timestamp":1607098353,"output":"eriodic from module Elixir.Ppl.PplBlocks.STMHandler.InitializingState with name Elixir.Ppl.PplBlocks"},{"event":"cmd_output","timestamp":1607098353,"output":".STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBloc"},{"event":"cmd_output","timestamp":1607098353,"output":"ks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"waiting\", \"d"},{"event":"cmd_output","timestamp":1607098353,"output":"one\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"initializ"},{"event":"cmd_output","timestamp":1607098353,"output":"ing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :st"},{"event":"cmd_output","timestamp":1607098353,"output":"ate, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_s"},{"event":"cmd_output","timestamp":1607098353,"output":"upervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:33.012 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHand"},{"event":"cmd_output","timestamp":1607098353,"output":"ler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler.WaitingState :: period: 1000 ms, metric_n"},{"event":"cmd_output","timestamp":1607098353,"output":"ame: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurring args: %{allowed_"},{"event":"cmd_output","timestamp":1607098353,"output":"states: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplB"},{"event":"cmd_output","timestamp":1607098353,"output":"locks, observed_state: \"waiting\", publisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.STMHandler.Wa"},{"event":"cmd_output","timestamp":1607098353,"output":"itingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :r"},{"event":"cmd_output","timestamp":1607098353,"output":"esult, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervis"},{"event":"cmd_output","timestamp":1607098353,"output":"or: :skip}\n\u001b[0m\u001b[22m\n16:12:33.012 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.Run"},{"event":"cmd_output","timestamp":1607098353,"output":"ningState with name Elixir.Ppl.PplBlocks.STMHandler.RunningState :: period: 1000 ms, metric_name: {\""},{"event":"cmd_output","timestamp":1607098353,"output":"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states:"},{"event":"cmd_output","timestamp":1607098353,"output":" [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks"},{"event":"cmd_output","timestamp":1607098353,"output":", observed_state: \"running\", publisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHandler.Runnin"},{"event":"cmd_output","timestamp":1607098353,"output":"gState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :resul"},{"event":"cmd_output","timestamp":1607098353,"output":"t, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_s"},{"event":"cmd_output","timestamp":1607098353,"output":"upervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:33.012 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHand"},{"event":"cmd_output","timestamp":1607098353,"output":"ler.StoppingState with name Elixir.Ppl.PplBlocks.STMHandler.StoppingState :: period: 1000 ms, metric"},{"event":"cmd_output","timestamp":1607098353,"output":"_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurring args: %{allow"},{"event":"cmd_output","timestamp":1607098353,"output":"ed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks,"},{"event":"cmd_output","timestamp":1607098353,"output":" observed_state: \"stopping\", publisher_cb: #Function<0.104215991/1 in Ppl.PplBlocks.STMHandler.Stopp"},{"event":"cmd_output","timestamp":1607098353,"output":"ingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :res"},{"event":"cmd_output","timestamp":1607098353,"output":"ult, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task"},{"event":"cmd_output","timestamp":1607098353,"output":"_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:33.012 [info] Periodic from module Elixir.Block.Blocks.STMHan"},{"event":"cmd_output","timestamp":1607098353,"output":"dler.InitializingState with name Elixir.Block.Blocks.STMHandler.InitializingState :: period: 100 ms,"},{"event":"cmd_output","timestamp":1607098353,"output":" metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, recurring arg"},{"event":"cmd_output","timestamp":1607098353,"output":"s: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Blocks.Model.Blo"},{"event":"cmd_output","timestamp":1607098353,"output":"cks, observed_state: \"initializing\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :te"},{"event":"cmd_output","timestamp":1607098353,"output":"rminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks"},{"event":"cmd_output","timestamp":1607098353,"output":", task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:33.012 [info] Periodic from module Elixir.Block.Blocks."},{"event":"cmd_output","timestamp":1607098353,"output":"STMHandler.RunningState with name Elixir.Block.Blocks.STMHandler.RunningState :: period: 100 ms, met"},{"event":"cmd_output","timestamp":1607098353,"output":"ric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-RunningState\"]}, recurring args: %{allo"},{"event":"cmd_output","timestamp":1607098353,"output":"wed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model"},{"event":"cmd_output","timestamp":1607098353,"output":".Blocks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :ter"},{"event":"cmd_output","timestamp":1607098353,"output":"minate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks,"},{"event":"cmd_output","timestamp":1607098353,"output":" task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:33.012 [info] Periodic from module Elixir.Block.Blocks.S"},{"event":"cmd_output","timestamp":1607098353,"output":"TMHandler.StoppingState with name Elixir.Block.Blocks.STMHandler.StoppingState :: period: 100 ms, me"},{"event":"cmd_output","timestamp":1607098353,"output":"tric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-StoppingState\"]}, recurring args: %{al"},{"event":"cmd_output","timestamp":1607098353,"output":"lowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, "},{"event":"cmd_output","timestamp":1607098353,"output":"observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_r"},{"event":"cmd_output","timestamp":1607098353,"output":"equest, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_su"},{"event":"cmd_output","timestamp":1607098353,"output":"pervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:33.012 [info] Periodic from module Elixir.Block.Tasks.STMHandler"},{"event":"cmd_output","timestamp":1607098353,"output":".PendingState with name Elixir.Block.Tasks.STMHandler.PendingState :: period: 100 ms, metric_name: {"},{"event":"cmd_output","timestamp":1607098353,"output":"\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingState\"]}, recurring args: %{allowed_states: "},{"event":"cmd_output","timestamp":1607098353,"output":"[\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Tasks.Model.Tasks, observed_state: \"p"},{"event":"cmd_output","timestamp":1607098353,"output":"ending\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at"},{"event":"cmd_output","timestamp":1607098353,"output":", :state, :recovery_count, :block_id, :build_request_id], schema: Block.Tasks.Model.Tasks, task_supe"},{"event":"cmd_output","timestamp":1607098353,"output":"rvisor: :skip}\n\u001b[0m\u001b[22m\n16:12:33.012 [info] Periodic from module Elixir.Block.Tasks.STMHandler.R"},{"event":"cmd_output","timestamp":1607098353,"output":"unningState with name Elixir.Block.Tasks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"P"},{"event":"cmd_output","timestamp":1607098353,"output":"pl.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\""},{"event":"cmd_output","timestamp":1607098353,"output":"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observe"},{"event":"cmd_output","timestamp":1607098353,"output":"d_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, "},{"event":"cmd_output","timestamp":1607098353,"output":":updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: "},{"event":"cmd_output","timestamp":1607098353,"output":":skip}\n\u001b[0m\u001b[22m\n16:12:33.013 [info] Periodic from module Elixir.Block.Tasks.STMHandler.StoppingS"},{"event":"cmd_output","timestamp":1607098353,"output":"tate with name Elixir.Block.Tasks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beh"},{"event":"cmd_output","timestamp":1607098353,"output":"older-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopp"},{"event":"cmd_output","timestamp":1607098353,"output":"ing\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"stoppi"},{"event":"cmd_output","timestamp":1607098353,"output":"ng\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :s"},{"event":"cmd_output","timestamp":1607098353,"output":"tate, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098353,"output":"2m\n16:12:33.125 [info] ppl_id: 6f1ff7c2-9877-4792-bcb5-471626771c08, type: PplRequests, event: per"},{"event":"cmd_output","timestamp":1607098353,"output":"sisted source_args for pipeline: 6f1ff7c2-9877-4792-bcb5-471626771c08, origin: Elixir.Ppl.PplRequest"},{"event":"cmd_output","timestamp":1607098353,"output":"s.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:33.128 [info] ppl_id: 6f1ff7c2-"},{"event":"cmd_output","timestamp":1607098353,"output":"9877-4792-bcb5-471626771c08, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_co"},{"event":"cmd_output","timestamp":1607098353,"output":"unt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:33.144 [info] pp"},{"event":"cmd_output","timestamp":1607098353,"output":"l_id: 6f1ff7c2-9877-4792-bcb5-471626771c08, type: PplSubInits, state: regular_init, event: exit_sche"},{"event":"cmd_output","timestamp":1607098353,"output":"duling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098353,"output":"2:33.173 [info] ppl_id: 6f1ff7c2-9877-4792-bcb5-471626771c08, type: PplRequests, event: persisted d"},{"event":"cmd_output","timestamp":1607098353,"output":"efinition for request with request_token: 83febb3a-364b-11eb-8295-5254005464e2, origin: Elixir.Ppl.P"},{"event":"cmd_output","timestamp":1607098353,"output":"plRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:33.176 [info] Queu"},{"event":"cmd_output","timestamp":1607098353,"output":"e persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inse"},{"event":"cmd_output","timestamp":1607098353,"output":"rted_at: ~N[2020-12-04 16:12:33.175194], name: \"master-.semaphore/semaphore.yml\", organization_id: \""},{"event":"cmd_output","timestamp":1607098353,"output":"8768e248-3026-4e73-8eb5-071e7311a2e8\", project_id: \"42a97fa0-cf14-4574-a956-b2e1118745e2\", queue_id:"},{"event":"cmd_output","timestamp":1607098353,"output":" \"fd1a8cf1-3183-4e7a-96e4-9ec0cd493daf\", scope: \"project\", updated_at: ~N[2020-12-04 16:12:33.175204"},{"event":"cmd_output","timestamp":1607098353,"output":"], user_generated: false}}\n\u001b[0m\u001b[22m\n16:12:33.182 [info] ppl_id: not_available, event: created, o"},{"event":"cmd_output","timestamp":1607098353,"output":"rigin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:33.182"},{"event":"cmd_output","timestamp":1607098353,"output":" [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105),"},{"event":"cmd_output","timestamp":1607098353,"output":" \n\u001b[0m\u001b[22m\n16:12:33.182 [info] ppl_id: 6f1ff7c2-9877-4792-bcb5-471626771c08, type: PplBlocks, bl"},{"event":"cmd_output","timestamp":1607098353,"output":"ock_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits"},{"event":"cmd_output","timestamp":1607098353,"output":".STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:33.182 [info] ppl_id: 6f1ff7c2-987"},{"event":"cmd_output","timestamp":1607098353,"output":"7-4792-bcb5-471626771c08, type: PplBlocks, block_index: 1, state: initializing, event: created, reco"},{"event":"cmd_output","timestamp":1607098353,"output":"very_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098353,"output":"2m\n16:12:33.184 [info] ppl_id: 6f1ff7c2-9877-4792-bcb5-471626771c08, type: PplSubInits, state: don"},{"event":"cmd_output","timestamp":1607098353,"output":"e, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_sta"},{"event":"cmd_output","timestamp":1607098353,"output":"te_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:33.191 [info] ppl_id: 6f1ff7c2-9877-4792-bcb5-471626771c08, ty"},{"event":"cmd_output","timestamp":1607098353,"output":"pe: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl."},{"event":"cmd_output","timestamp":1607098353,"output":"log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:33.193 [info] ppl_id: 6f1ff7c2-9877-4792-bcb5-471626771"},{"event":"cmd_output","timestamp":1607098353,"output":"c08, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098353,"output":"gin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:33.200 [info] ppl_id: 6f1ff"},{"event":"cmd_output","timestamp":1607098353,"output":"7c2-9877-4792-bcb5-471626771c08, type: Ppls, state: queuing, event: exit_scheduling, recovery_count:"},{"event":"cmd_output","timestamp":1607098353,"output":" 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:33.200 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098353,"output":": 6f1ff7c2-9877-4792-bcb5-471626771c08, type: PplBlocks, block_index: 1, state: waiting, event: exit"},{"event":"cmd_output","timestamp":1607098353,"output":"_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098353,"output":"\n16:12:33.208 [info] ppl_id: 6f1ff7c2-9877-4792-bcb5-471626771c08, type: Ppls, state: running, even"},{"event":"cmd_output","timestamp":1607098353,"output":"t: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098353,"output":"m\u001b[22m\n16:12:33.214 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"6f1ff7"},{"event":"cmd_output","timestamp":1607098353,"output":"c2-9877-4792-bcb5-471626771c08\"\n\u001b[0m\u001b[22m\n16:12:33.221 [info] block_id: b805eab2-0dbe-4b69-ae3f-d"},{"event":"cmd_output","timestamp":1607098353,"output":"ff6f1ad8188, type: BlockRequests, event: persisted block run request from ppl 6f1ff7c2-9877-4792-bcb"},{"event":"cmd_output","timestamp":1607098353,"output":"5-471626771c08 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_re"},{"event":"cmd_output","timestamp":1607098353,"output":"sponse/4(L35), \n\u001b[0m\u001b[22m\n16:12:33.226 [info] block_id: b805eab2-0dbe-4b69-ae3f-dff6f1ad8188, typ"},{"event":"cmd_output","timestamp":1607098353,"output":"e: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks."},{"event":"cmd_output","timestamp":1607098353,"output":"Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:33.229 [info] Block 0 of pipeline with id: 6f"},{"event":"cmd_output","timestamp":1607098353,"output":"1ff7c2-9877-4792-bcb5-471626771c08 scheduled in block service with id: : \"b805eab2-0dbe-4b69-ae3f-df"},{"event":"cmd_output","timestamp":1607098353,"output":"f6f1ad8188\"\n\u001b[0m\u001b[22m\n16:12:33.232 [info] ppl_id: 6f1ff7c2-9877-4792-bcb5-471626771c08, type: Ppl"},{"event":"cmd_output","timestamp":1607098353,"output":"Blocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Lo"},{"event":"cmd_output","timestamp":1607098353,"output":"oper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:33.235 [info] block_id: b805eab2-0dbe-4b6"},{"event":"cmd_output","timestamp":1607098353,"output":"9-ae3f-dff6f1ad8188, type: BlockRequests, event: persisted build and sub_ppl details for block_reque"},{"event":"cmd_output","timestamp":1607098353,"output":"st: b805eab2-0dbe-4b69-ae3f-dff6f1ad8188, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQuer"},{"event":"cmd_output","timestamp":1607098353,"output":"ies.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:33.236 [info] block_id: b805eab2-0dbe-4b69-ae3f-dff6f1a"},{"event":"cmd_output","timestamp":1607098353,"output":"d8188, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.S"},{"event":"cmd_output","timestamp":1607098353,"output":"TMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:33.245 [info] block_id: b805eab2-0d"},{"event":"cmd_output","timestamp":1607098353,"output":"be-4b69-ae3f-dff6f1ad8188, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098353,"output":"origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:33.280 [info] block_id: "},{"event":"cmd_output","timestamp":1607098353,"output":"b805eab2-0dbe-4b69-ae3f-dff6f1ad8188, type: Tasks, state: running, event: exit_scheduling, recovery_"},{"event":"cmd_output","timestamp":1607098353,"output":"count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:33.467 [info] "},{"event":"cmd_output","timestamp":1607098353,"output":"block_id: b805eab2-0dbe-4b69-ae3f-dff6f1ad8188, type: Tasks, state: done, event: exit_scheduling, re"},{"event":"cmd_output","timestamp":1607098353,"output":"covery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:33.472 ["},{"event":"cmd_output","timestamp":1607098353,"output":"info] block_id: b805eab2-0dbe-4b69-ae3f-dff6f1ad8188, type: Blocks, state: done, event: exit_schedu"},{"event":"cmd_output","timestamp":1607098353,"output":"ling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:"},{"event":"cmd_output","timestamp":1607098353,"output":"33.477 [info] ppl_id: 6f1ff7c2-9877-4792-bcb5-471626771c08, block_id: b805eab2-0dbe-4b69-ae3f-dff6f"},{"event":"cmd_output","timestamp":1607098353,"output":"1ad8188, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, recov"},{"event":"cmd_output","timestamp":1607098353,"output":"ery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:33.483 [inf"},{"event":"cmd_output","timestamp":1607098353,"output":"o] PplBlocks WaitingState STM is scheduling block 1 from pipeline: \"6f1ff7c2-9877-4792-bcb5-4716267"},{"event":"cmd_output","timestamp":1607098353,"output":"71c08\"\n\u001b[0m\u001b[22m\n16:12:33.489 [info] block_id: ff6a7eea-1535-4245-80f4-932fef615cc7, type: BlockR"},{"event":"cmd_output","timestamp":1607098353,"output":"equests, event: persisted block run request from ppl 6f1ff7c2-9877-4792-bcb5-471626771c08 for block "},{"event":"cmd_output","timestamp":1607098353,"output":"1, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098353,"output":"m\n16:12:33.490 [info] block_id: ff6a7eea-1535-4245-80f4-932fef615cc7, type: Blocks, state: initial"},{"event":"cmd_output","timestamp":1607098353,"output":"izing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.inser"},{"event":"cmd_output","timestamp":1607098353,"output":"t/1(L43), \n\u001b[0m\u001b[22m\n16:12:33.490 [info] Block 1 of pipeline with id: 6f1ff7c2-9877-4792-bcb5-471"},{"event":"cmd_output","timestamp":1607098353,"output":"626771c08 scheduled in block service with id: : \"ff6a7eea-1535-4245-80f4-932fef615cc7\"\n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098353,"output":"6:12:33.493 [info] ppl_id: 6f1ff7c2-9877-4792-bcb5-471626771c08, type: PplBlocks, block_index: 1, s"},{"event":"cmd_output","timestamp":1607098353,"output":"tate: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098353,"output":"hange/1(L90), \n\u001b[0m\u001b[22m\n16:12:33.496 [info] block_id: ff6a7eea-1535-4245-80f4-932fef615cc7, type"},{"event":"cmd_output","timestamp":1607098353,"output":": BlockRequests, event: persisted build and sub_ppl details for block_request: ff6a7eea-1535-4245-80"},{"event":"cmd_output","timestamp":1607098353,"output":"f4-932fef615cc7, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), "},{"event":"cmd_output","timestamp":1607098353,"output":"\n\u001b[0m\u001b[22m\n16:12:33.498 [info] block_id: ff6a7eea-1535-4245-80f4-932fef615cc7, type: Tasks, state"},{"event":"cmd_output","timestamp":1607098353,"output":": pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingSta"},{"event":"cmd_output","timestamp":1607098353,"output":"te.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:33.499 [info] block_id: ff6a7eea-1535-4245-80f4-932fef615cc7"},{"event":"cmd_output","timestamp":1607098353,"output":", type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM"},{"event":"cmd_output","timestamp":1607098353,"output":".Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:33.512 [info] block_id: ff6a7eea-1535-4245-80f4-9"},{"event":"cmd_output","timestamp":1607098353,"output":"32fef615cc7, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098353,"output":"Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:33.575 [info] block_id: ff6a7eea-1535-4"},{"event":"cmd_output","timestamp":1607098353,"output":"245-80f4-932fef615cc7, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098353,"output":"Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:33.587 [info] block_id: ff6a7eea"},{"event":"cmd_output","timestamp":1607098353,"output":"-1535-4245-80f4-932fef615cc7, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098353,"output":"origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:33.592 [info] ppl_id: 6f"},{"event":"cmd_output","timestamp":1607098353,"output":"1ff7c2-9877-4792-bcb5-471626771c08, block_id: ff6a7eea-1535-4245-80f4-932fef615cc7, type: PplBlocks,"},{"event":"cmd_output","timestamp":1607098353,"output":" block_index: 1, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098353,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:33.609 [info] ppl_id: 6f1ff7c2-9877"},{"event":"cmd_output","timestamp":1607098353,"output":"-4792-bcb5-471626771c08, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098354,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test v1: gRPC descr"},{"event":"cmd_output","timestamp":1607098354,"output":"ibe() - pipeline execution passed, initial def saved (1071.0ms)\u001b[0m\n * test gRPC describe_topology"},{"event":"cmd_output","timestamp":1607098354,"output":"() - ppl_id not found\r * test gRPC describe_topology() - ppl_id not found (skipped)\n * test gRPC "},{"event":"cmd_output","timestamp":1607098354,"output":"schedule_extension() local - succedes when given valid params\u001b[22m\n16:12:34.072 [info] Request: 'r"},{"event":"cmd_output","timestamp":1607098354,"output":"un: %{\"branch_id\" => \"5ddca45f-dec5-4fb7-9ef2-09aade4a0bfa\", \"branch_name\" => \"master\", \"commit_sha\""},{"event":"cmd_output","timestamp":1607098354,"output":" => \"75891a4469\", \"file_name\" => \"semaphore.yml\", \"hook_id\" => \"84a3e146-364b-11eb-a28b-5254005464e2"},{"event":"cmd_output","timestamp":1607098354,"output":"\", \"label\" => \"master\", \"organization_id\" => \"081bd93b-b273-4e06-a75f-f606e93a0276\", \"owner\" => \"rt\""},{"event":"cmd_output","timestamp":1607098354,"output":", \"project_id\" => \"e7c09b92-85fe-4181-bbae-03a5b0e2aa93\", \"repo_name\" => \"10_schedule_extension\", \"r"},{"event":"cmd_output","timestamp":1607098354,"output":"equest_token\" => \"84a3d96c-364b-11eb-b31c-5254005464e2\", \"requester_id\" => \"26cecb05-a9b2-4227-80cd-"},{"event":"cmd_output","timestamp":1607098354,"output":"0bd6217fc227\", \"service\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \""},{"event":"cmd_output","timestamp":1607098354,"output":"wf_id\" => \"1d0ba96f-1def-460b-af4b-c57108d6570f\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:12:3"},{"event":"cmd_output","timestamp":1607098354,"output":"4.074 [info] ppl_id: 33aeabab-bd86-4666-aec7-8ab06ab7472f, type: PplRequests, event: persisted sche"},{"event":"cmd_output","timestamp":1607098354,"output":"dule request with request_token: 84a3d96c-364b-11eb-b31c-5254005464e2, origin: Elixir.Ppl.PplRequest"},{"event":"cmd_output","timestamp":1607098354,"output":"s.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:34.077 [info] ppl_id: 33aeab"},{"event":"cmd_output","timestamp":1607098354,"output":"ab-bd86-4666-aec7-8ab06ab7472f, type: Ppls, state: initializing, event: initializing, recovery_count"},{"event":"cmd_output","timestamp":1607098354,"output":": 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:34.080 ["},{"event":"cmd_output","timestamp":1607098354,"output":"info] Project e7c09b92-85fe-4181-bbae-03a5b0e2aa93 and branch masterlatest_wf details updated: \"wf_"},{"event":"cmd_output","timestamp":1607098354,"output":"id: 1d0ba96f-1def-460b-af4b-c57108d6570f, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:12:34.081 [info] Persisted p"},{"event":"cmd_output","timestamp":1607098354,"output":"pl_sub_init for pipeline with ppl_id: 33aeabab-bd86-4666-aec7-8ab06ab7472f: %Ppl.PplSubInits.Model.P"},{"event":"cmd_output","timestamp":1607098354,"output":"plSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, err"},{"event":"cmd_output","timestamp":1607098354,"output":"or_description: nil, id: 232, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04"},{"event":"cmd_output","timestamp":1607098354,"output":" 16:12:34.080265], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"33aeabab-bd86-4666-aec7-8ab06ab7472f\", recovery_count: 0, result: nil, result_"},{"event":"cmd_output","timestamp":1607098354,"output":"reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2"},{"event":"cmd_output","timestamp":1607098354,"output":"020-12-04 16:12:34.080271]}\n\u001b[0m\u001b[22m\n16:12:34.090 [info] Periodic from module Elixir.Ppl.Ppls.ST"},{"event":"cmd_output","timestamp":1607098354,"output":"MHandler.InitializingState with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms,"},{"event":"cmd_output","timestamp":1607098354,"output":" metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %"},{"event":"cmd_output","timestamp":1607098354,"output":"{allowed_states: [\"initializing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.M"},{"event":"cmd_output","timestamp":1607098354,"output":"odel.Ppls, observed_state: \"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHand"},{"event":"cmd_output","timestamp":1607098354,"output":"ler.InitializingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at,"},{"event":"cmd_output","timestamp":1607098354,"output":" :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b"},{"event":"cmd_output","timestamp":1607098354,"output":"[0m\u001b[22m\n16:12:34.090 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingState with nam"},{"event":"cmd_output","timestamp":1607098354,"output":"e Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", ["},{"event":"cmd_output","timestamp":1607098354,"output":"\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"pending\", \"queuing\", \"runn"},{"event":"cmd_output","timestamp":1607098354,"output":"ing\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", p"},{"event":"cmd_output","timestamp":1607098354,"output":"ublisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, "},{"event":"cmd_output","timestamp":1607098354,"output":"returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema"},{"event":"cmd_output","timestamp":1607098354,"output":": Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:12:34.090 [info] Periodi"},{"event":"cmd_output","timestamp":1607098354,"output":"c from module Elixir.Ppl.Ppls.STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandler.QueuingSt"},{"event":"cmd_output","timestamp":1607098354,"output":"ate :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, "},{"event":"cmd_output","timestamp":1607098354,"output":"recurring args: %{allowed_states: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, initial_quer"},{"event":"cmd_output","timestamp":1607098354,"output":"y: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls"},{"event":"cmd_output","timestamp":1607098354,"output":".STMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_"},{"event":"cmd_output","timestamp":1607098354,"output":"at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}"},{"event":"cmd_output","timestamp":1607098354,"output":"\n\u001b[0m\u001b[22m\n16:12:34.090 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.RunningState with "},{"event":"cmd_output","timestamp":1607098354,"output":"name Elixir.Ppl.Ppls.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\""},{"event":"cmd_output","timestamp":1607098354,"output":", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \""},{"event":"cmd_output","timestamp":1607098354,"output":"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"running\", publish"},{"event":"cmd_output","timestamp":1607098354,"output":"er_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, retur"},{"event":"cmd_output","timestamp":1607098354,"output":"ning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl"},{"event":"cmd_output","timestamp":1607098354,"output":".Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:12:34.090 [info] Periodic fro"},{"event":"cmd_output","timestamp":1607098354,"output":"m module Elixir.Ppl.Ppls.STMHandler.StoppingState with name Elixir.Ppl.Ppls.STMHandler.StoppingState"},{"event":"cmd_output","timestamp":1607098354,"output":" :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, re"},{"event":"cmd_output","timestamp":1607098354,"output":"curring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls."},{"event":"cmd_output","timestamp":1607098354,"output":"Model.Ppls, observed_state: \"stopping\", publisher_cb: #Function<0.71803493/1 in Ppl.Ppls.STMHandler."},{"event":"cmd_output","timestamp":1607098354,"output":"StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state,"},{"event":"cmd_output","timestamp":1607098354,"output":" :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098354,"output":"\n16:12:34.090 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedState with name"},{"event":"cmd_output","timestamp":1607098354,"output":" Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_"},{"event":"cmd_output","timestamp":1607098354,"output":"up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args: %{allowed_states: [\"fetching\", \"d"},{"event":"cmd_output","timestamp":1607098354,"output":"one\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"creat"},{"event":"cmd_output","timestamp":1607098354,"output":"ed\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :sta"},{"event":"cmd_output","timestamp":1607098354,"output":"te, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: "},{"event":"cmd_output","timestamp":1607098354,"output":":skip}\n\u001b[0m\u001b[22m\n16:12:34.090 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.Fetch"},{"event":"cmd_output","timestamp":1607098354,"output":"ingState with name Elixir.Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 ms, metric_name: {"},{"event":"cmd_output","timestamp":1607098354,"output":"\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %{allowed_sta"},{"event":"cmd_output","timestamp":1607098354,"output":"tes: [\"regular_init\", \"compilation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.M"},{"event":"cmd_output","timestamp":1607098354,"output":"odel.PplSubInits, observed_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:"},{"event":"cmd_output","timestamp":1607098354,"output":"id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubI"},{"event":"cmd_output","timestamp":1607098354,"output":"nits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:34.091 [info] Periodic from modul"},{"event":"cmd_output","timestamp":1607098354,"output":"e Elixir.Ppl.PplSubInits.STMHandler.CompilationState with name Elixir.Ppl.PplSubInits.STMHandler.Com"},{"event":"cmd_output","timestamp":1607098354,"output":"pilationState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-"},{"event":"cmd_output","timestamp":1607098354,"output":"CompilationState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"stopping\", \""},{"event":"cmd_output","timestamp":1607098354,"output":"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"com"},{"event":"cmd_output","timestamp":1607098354,"output":"pilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at"},{"event":"cmd_output","timestamp":1607098354,"output":", :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_superv"},{"event":"cmd_output","timestamp":1607098354,"output":"isor: :skip}\n\u001b[0m\u001b[22m\n16:12:34.091 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler"},{"event":"cmd_output","timestamp":1607098354,"output":".RegularInitState with name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period: 100 ms, me"},{"event":"cmd_output","timestamp":1607098354,"output":"tric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurring args"},{"event":"cmd_output","timestamp":1607098354,"output":": %{allowed_states: [\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits,"},{"event":"cmd_output","timestamp":1607098354,"output":" observed_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminat"},{"event":"cmd_output","timestamp":1607098354,"output":"e_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.Pp"},{"event":"cmd_output","timestamp":1607098354,"output":"lSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:34.091 [info] Periodic from module Elixir.Ppl."},{"event":"cmd_output","timestamp":1607098354,"output":"PplBlocks.STMHandler.InitializingState with name Elixir.Ppl.PplBlocks.STMHandler.InitializingState :"},{"event":"cmd_output","timestamp":1607098354,"output":": period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-InitializingState"},{"event":"cmd_output","timestamp":1607098354,"output":"\"]}, recurring args: %{allowed_states: [\"initializing\", \"waiting\", \"done\"], cooling_time_sec: 0, ini"},{"event":"cmd_output","timestamp":1607098354,"output":"tial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"initializing\", publisher_cb: :skip, repo"},{"event":"cmd_output","timestamp":1607098354,"output":": Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, "},{"event":"cmd_output","timestamp":1607098354,"output":":ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098354,"output":"6:12:34.091 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.WaitingState with name Elix"},{"event":"cmd_output","timestamp":1607098354,"output":"ir.Ppl.PplBlocks.STMHandler.WaitingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", ["},{"event":"cmd_output","timestamp":1607098354,"output":"\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurring args: %{allowed_states: [\"waiting\", \"running\", "},{"event":"cmd_output","timestamp":1607098354,"output":"\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"waiting"},{"event":"cmd_output","timestamp":1607098354,"output":"\", publisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>, repo: Ppl.E"},{"event":"cmd_output","timestamp":1607098354,"output":"ctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id"},{"event":"cmd_output","timestamp":1607098354,"output":", :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:34"},{"event":"cmd_output","timestamp":1607098354,"output":".091 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.RunningState with name Elixir.Ppl."},{"event":"cmd_output","timestamp":1607098354,"output":"PplBlocks.STMHandler.RunningState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Pp"},{"event":"cmd_output","timestamp":1607098354,"output":"lBlocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\""},{"event":"cmd_output","timestamp":1607098354,"output":"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"running\", pu"},{"event":"cmd_output","timestamp":1607098354,"output":"blisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0>, repo: Ppl.EctoR"},{"event":"cmd_output","timestamp":1607098354,"output":"epo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :b"},{"event":"cmd_output","timestamp":1607098354,"output":"lock_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098354,"output":"6:12:34.091 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.StoppingState with name Eli"},{"event":"cmd_output","timestamp":1607098354,"output":"xir.Ppl.PplBlocks.STMHandler.StoppingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\","},{"event":"cmd_output","timestamp":1607098354,"output":" [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"]"},{"event":"cmd_output","timestamp":1607098354,"output":", cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"stopping\", pu"},{"event":"cmd_output","timestamp":1607098354,"output":"blisher_cb: #Function<0.104215991/1 in Ppl.PplBlocks.STMHandler.StoppingState.args/0>, repo: Ppl.Ect"},{"event":"cmd_output","timestamp":1607098354,"output":"oRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, "},{"event":"cmd_output","timestamp":1607098354,"output":":block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098354,"output":"\n16:12:34.091 [info] Periodic from module Elixir.Block.Blocks.STMHandler.InitializingState with nam"},{"event":"cmd_output","timestamp":1607098354,"output":"e Elixir.Block.Blocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wa"},{"event":"cmd_output","timestamp":1607098354,"output":"ke_up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"running\""},{"event":"cmd_output","timestamp":1607098354,"output":", \"done\"], cooling_time_sec: 0, initial_query: Block.Blocks.Model.Blocks, observed_state: \"initializ"},{"event":"cmd_output","timestamp":1607098354,"output":"ing\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :"},{"event":"cmd_output","timestamp":1607098354,"output":"state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m"},{"event":"cmd_output","timestamp":1607098354,"output":"\u001b[22m\n16:12:34.091 [info] Periodic from module Elixir.Block.Blocks.STMHandler.RunningState with na"},{"event":"cmd_output","timestamp":1607098354,"output":"me Elixir.Block.Blocks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_u"},{"event":"cmd_output","timestamp":1607098354,"output":"p\", [\"Block-Blocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stoppi"},{"event":"cmd_output","timestamp":1607098354,"output":"ng\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"runni"},{"event":"cmd_output","timestamp":1607098354,"output":"ng\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :s"},{"event":"cmd_output","timestamp":1607098354,"output":"tate, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098354,"output":"[22m\n16:12:34.091 [info] Periodic from module Elixir.Block.Blocks.STMHandler.StoppingState with na"},{"event":"cmd_output","timestamp":1607098354,"output":"me Elixir.Block.Blocks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_"},{"event":"cmd_output","timestamp":1607098354,"output":"up\", [\"Block-Blocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"don"},{"event":"cmd_output","timestamp":1607098354,"output":"e\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"stopping\", pub"},{"event":"cmd_output","timestamp":1607098354,"output":"lisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :r"},{"event":"cmd_output","timestamp":1607098354,"output":"ecovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098354,"output":":12:34.092 [info] Periodic from module Elixir.Block.Tasks.STMHandler.PendingState with name Elixir."},{"event":"cmd_output","timestamp":1607098354,"output":"Block.Tasks.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block"},{"event":"cmd_output","timestamp":1607098354,"output":"-Tasks-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_ti"},{"event":"cmd_output","timestamp":1607098354,"output":"me_sec: 0, initial_query: Block.Tasks.Model.Tasks, observed_state: \"pending\", publisher_cb: :skip, r"},{"event":"cmd_output","timestamp":1607098354,"output":"epo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :blo"},{"event":"cmd_output","timestamp":1607098354,"output":"ck_id, :build_request_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098354,"output":"2:34.092 [info] Periodic from module Elixir.Block.Tasks.STMHandler.RunningState with name Elixir.Bl"},{"event":"cmd_output","timestamp":1607098354,"output":"ock.Tasks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-T"},{"event":"cmd_output","timestamp":1607098354,"output":"asks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], "},{"event":"cmd_output","timestamp":1607098354,"output":"cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"running\", publisher_c"},{"event":"cmd_output","timestamp":1607098354,"output":"b: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_"},{"event":"cmd_output","timestamp":1607098354,"output":"count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:34.092"},{"event":"cmd_output","timestamp":1607098354,"output":" [info] Periodic from module Elixir.Block.Tasks.STMHandler.StoppingState with name Elixir.Block.Tas"},{"event":"cmd_output","timestamp":1607098354,"output":"ks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-S"},{"event":"cmd_output","timestamp":1607098354,"output":"TMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec"},{"event":"cmd_output","timestamp":1607098354,"output":": -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"stopping\", publisher_cb: :skip, repo:"},{"event":"cmd_output","timestamp":1607098354,"output":" Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_i"},{"event":"cmd_output","timestamp":1607098354,"output":"d], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:34.204 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098354,"output":": 33aeabab-bd86-4666-aec7-8ab06ab7472f, type: PplRequests, event: persisted source_args for pipeline"},{"event":"cmd_output","timestamp":1607098354,"output":": 33aeabab-bd86-4666-aec7-8ab06ab7472f, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.inse"},{"event":"cmd_output","timestamp":1607098354,"output":"rt_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:34.206 [info] ppl_id: 33aeabab-bd86-4666-aec7-8ab06ab7472f, ty"},{"event":"cmd_output","timestamp":1607098354,"output":"pe: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.S"},{"event":"cmd_output","timestamp":1607098354,"output":"TM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:34.220 [info] ppl_id: 33aeabab-bd86-4666-aec7-8"},{"event":"cmd_output","timestamp":1607098354,"output":"ab06ab7472f, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098354,"output":"in: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:34.240 [info] ppl_id: 33aeab"},{"event":"cmd_output","timestamp":1607098354,"output":"ab-bd86-4666-aec7-8ab06ab7472f, type: PplRequests, event: persisted definition for request with requ"},{"event":"cmd_output","timestamp":1607098354,"output":"est_token: 84a3d96c-364b-11eb-b31c-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQue"},{"event":"cmd_output","timestamp":1607098354,"output":"ries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:34.242 [info] Queue persisted: {:ok, %Ppl.Queues."},{"event":"cmd_output","timestamp":1607098354,"output":"Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:12:34"},{"event":"cmd_output","timestamp":1607098354,"output":".241563], name: \"master-.semaphore/semaphore.yml\", organization_id: \"081bd93b-b273-4e06-a75f-f606e93"},{"event":"cmd_output","timestamp":1607098354,"output":"a0276\", project_id: \"e7c09b92-85fe-4181-bbae-03a5b0e2aa93\", queue_id: \"d653a9b4-d874-4f6f-a681-4ee3a"},{"event":"cmd_output","timestamp":1607098354,"output":"05c3d42\", scope: \"project\", updated_at: ~N[2020-12-04 16:12:34.241573], user_generated: false}}\n\u001b[0"},{"event":"cmd_output","timestamp":1607098354,"output":"m\u001b[22m\n16:12:34.247 [info] ppl_id: not_available, event: created, origin: Elixir.Ppl.PplSubInits.S"},{"event":"cmd_output","timestamp":1607098354,"output":"TMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:34.247 [info] event: created, origin"},{"event":"cmd_output","timestamp":1607098354,"output":": Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:34.247 [inf"},{"event":"cmd_output","timestamp":1607098354,"output":"o] ppl_id: 33aeabab-bd86-4666-aec7-8ab06ab7472f, type: PplBlocks, block_index: 0, state: initializi"},{"event":"cmd_output","timestamp":1607098354,"output":"ng, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.al"},{"event":"cmd_output","timestamp":1607098354,"output":"l_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:34.247 [info] ppl_id: 33aeabab-bd86-4666-aec7-8ab06ab7472f, type:"},{"event":"cmd_output","timestamp":1607098354,"output":" PplBlocks, block_index: 1, state: initializing, event: created, recovery_count: 0, origin: Elixir.P"},{"event":"cmd_output","timestamp":1607098354,"output":"pl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:34.249 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098354,"output":": 33aeabab-bd86-4666-aec7-8ab06ab7472f, type: PplSubInits, state: done, result: passed, event: exit_"},{"event":"cmd_output","timestamp":1607098354,"output":"scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098354,"output":"16:12:34.255 [info] ppl_id: 33aeabab-bd86-4666-aec7-8ab06ab7472f, type: PplBlocks, block_index: 0, "},{"event":"cmd_output","timestamp":1607098354,"output":"state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_"},{"event":"cmd_output","timestamp":1607098354,"output":"change/1(L90), \n\u001b[0m\u001b[22m\n16:12:34.259 [info] ppl_id: 33aeabab-bd86-4666-aec7-8ab06ab7472f, type:"},{"event":"cmd_output","timestamp":1607098354,"output":" Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098354,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:34.261 [info] ppl_id: 33aeabab-bd86-4666-aec7-8ab06ab7472f"},{"event":"cmd_output","timestamp":1607098354,"output":", type: PplBlocks, block_index: 1, state: waiting, event: exit_scheduling, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098354,"output":": Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:34.274 [info] ppl_id: 33aeabab"},{"event":"cmd_output","timestamp":1607098354,"output":"-bd86-4666-aec7-8ab06ab7472f, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098354,"output":" origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:34.281 [info] ppl_id: 3"},{"event":"cmd_output","timestamp":1607098354,"output":"3aeabab-bd86-4666-aec7-8ab06ab7472f, type: Ppls, state: running, event: exit_scheduling, recovery_co"},{"event":"cmd_output","timestamp":1607098354,"output":"unt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:34.286 [info] Pp"},{"event":"cmd_output","timestamp":1607098354,"output":"lBlocks WaitingState STM is scheduling block 0 from pipeline: \"33aeabab-bd86-4666-aec7-8ab06ab7472f\""},{"event":"cmd_output","timestamp":1607098354,"output":"\n\u001b[0m\u001b[22m\n16:12:34.294 [info] block_id: 61474504-e19c-46d1-b996-91ecf14e0415, type: BlockRequest"},{"event":"cmd_output","timestamp":1607098354,"output":"s, event: persisted block run request from ppl 33aeabab-bd86-4666-aec7-8ab06ab7472f for block 0, ori"},{"event":"cmd_output","timestamp":1607098354,"output":"gin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098354,"output":"12:34.296 [info] block_id: 61474504-e19c-46d1-b996-91ecf14e0415, type: Blocks, state: initializing,"},{"event":"cmd_output","timestamp":1607098354,"output":" event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L4"},{"event":"cmd_output","timestamp":1607098354,"output":"3), \n\u001b[0m\u001b[22m\n16:12:34.298 [info] Block 0 of pipeline with id: 33aeabab-bd86-4666-aec7-8ab06ab74"},{"event":"cmd_output","timestamp":1607098354,"output":"72f scheduled in block service with id: : \"61474504-e19c-46d1-b996-91ecf14e0415\"\n\u001b[0m\u001b[22m\n16:12:3"},{"event":"cmd_output","timestamp":1607098354,"output":"4.303 [info] ppl_id: 33aeabab-bd86-4666-aec7-8ab06ab7472f, type: PplBlocks, block_index: 0, state: "},{"event":"cmd_output","timestamp":1607098354,"output":"running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/"},{"event":"cmd_output","timestamp":1607098354,"output":"1(L90), \n\u001b[0m\u001b[22m\n16:12:34.309 [info] block_id: 61474504-e19c-46d1-b996-91ecf14e0415, type: Bloc"},{"event":"cmd_output","timestamp":1607098354,"output":"kRequests, event: persisted build and sub_ppl details for block_request: 61474504-e19c-46d1-b996-91e"},{"event":"cmd_output","timestamp":1607098354,"output":"cf14e0415, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098354,"output":"\u001b[22m\n16:12:34.311 [info] block_id: 61474504-e19c-46d1-b996-91ecf14e0415, type: Tasks, state: pend"},{"event":"cmd_output","timestamp":1607098354,"output":"ing, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all"},{"event":"cmd_output","timestamp":1607098354,"output":"_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:34.312 [info] block_id: 61474504-e19c-46d1-b996-91ecf14e0415, type"},{"event":"cmd_output","timestamp":1607098354,"output":": Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl."},{"event":"cmd_output","timestamp":1607098354,"output":"log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:34.327 [info] block_id: 61474504-e19c-46d1-b996-91ecf14"},{"event":"cmd_output","timestamp":1607098354,"output":"e0415, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper"},{"event":"cmd_output","timestamp":1607098354,"output":".STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:34.419 [info] block_id: 61474504-e19c-46d1-b9"},{"event":"cmd_output","timestamp":1607098354,"output":"96-91ecf14e0415, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098354,"output":".Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:34.424 [info] block_id: 61474504-e19c-"},{"event":"cmd_output","timestamp":1607098354,"output":"46d1-b996-91ecf14e0415, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098354,"output":": Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:34.437 [info] ppl_id: 33aeabab"},{"event":"cmd_output","timestamp":1607098354,"output":"-bd86-4666-aec7-8ab06ab7472f, block_id: 61474504-e19c-46d1-b996-91ecf14e0415, type: PplBlocks, block"},{"event":"cmd_output","timestamp":1607098354,"output":"_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Lo"},{"event":"cmd_output","timestamp":1607098354,"output":"oper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:34.441 [info] PplBlocks WaitingState STM "},{"event":"cmd_output","timestamp":1607098354,"output":"is scheduling block 1 from pipeline: \"33aeabab-bd86-4666-aec7-8ab06ab7472f\"\n\u001b[0m\u001b[22m\n16:12:34.445"},{"event":"cmd_output","timestamp":1607098354,"output":" [info] block_id: a8c04875-6613-430f-b66f-5d27acfe1e52, type: BlockRequests, event: persisted block"},{"event":"cmd_output","timestamp":1607098354,"output":" run request from ppl 33aeabab-bd86-4666-aec7-8ab06ab7472f for block 1, origin: Elixir.Block.BlockRe"},{"event":"cmd_output","timestamp":1607098354,"output":"quests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:34.447 [info] block_i"},{"event":"cmd_output","timestamp":1607098354,"output":"d: a8c04875-6613-430f-b66f-5d27acfe1e52, type: Blocks, state: initializing, event: initializing, rec"},{"event":"cmd_output","timestamp":1607098354,"output":"overy_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:34"},{"event":"cmd_output","timestamp":1607098354,"output":".447 [info] Block 1 of pipeline with id: 33aeabab-bd86-4666-aec7-8ab06ab7472f scheduled in block se"},{"event":"cmd_output","timestamp":1607098354,"output":"rvice with id: : \"a8c04875-6613-430f-b66f-5d27acfe1e52\"\n\u001b[0m\u001b[22m\n16:12:34.449 [info] ppl_id: 33a"},{"event":"cmd_output","timestamp":1607098354,"output":"eabab-bd86-4666-aec7-8ab06ab7472f, type: PplBlocks, block_index: 1, state: running, event: exit_sche"},{"event":"cmd_output","timestamp":1607098354,"output":"duling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098354,"output":"2:34.453 [info] block_id: a8c04875-6613-430f-b66f-5d27acfe1e52, type: BlockRequests, event: persist"},{"event":"cmd_output","timestamp":1607098354,"output":"ed build and sub_ppl details for block_request: a8c04875-6613-430f-b66f-5d27acfe1e52, origin: Elixir"},{"event":"cmd_output","timestamp":1607098354,"output":".Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:34.455 [info"},{"event":"cmd_output","timestamp":1607098354,"output":"] block_id: a8c04875-6613-430f-b66f-5d27acfe1e52, type: Tasks, state: pending, event: created, reco"},{"event":"cmd_output","timestamp":1607098354,"output":"very_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098354,"output":"\n16:12:34.457 [info] block_id: a8c04875-6613-430f-b66f-5d27acfe1e52, type: Blocks, state: running,"},{"event":"cmd_output","timestamp":1607098354,"output":" event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), "},{"event":"cmd_output","timestamp":1607098354,"output":"\n\u001b[0m\u001b[22m\n16:12:34.468 [info] block_id: a8c04875-6613-430f-b66f-5d27acfe1e52, type: Tasks, state"},{"event":"cmd_output","timestamp":1607098354,"output":": running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chang"},{"event":"cmd_output","timestamp":1607098354,"output":"e/1(L90), \n\u001b[0m\u001b[22m\n16:12:34.529 [info] block_id: a8c04875-6613-430f-b66f-5d27acfe1e52, type: Ta"},{"event":"cmd_output","timestamp":1607098354,"output":"sks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_stat"},{"event":"cmd_output","timestamp":1607098354,"output":"e_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:34.534 [info] block_id: a8c04875-6613-430f-b66f-5d27acfe1e52, t"},{"event":"cmd_output","timestamp":1607098354,"output":"ype: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl."},{"event":"cmd_output","timestamp":1607098354,"output":"log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:34.547 [info] ppl_id: 33aeabab-bd86-4666-aec7-8ab06ab74"},{"event":"cmd_output","timestamp":1607098354,"output":"72f, block_id: a8c04875-6613-430f-b66f-5d27acfe1e52, type: PplBlocks, block_index: 1, state: done, r"},{"event":"cmd_output","timestamp":1607098354,"output":"esult: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098354,"output":"hange/1(L90), \n\u001b[0m\u001b[22m\n16:12:34.558 [info] ppl_id: 33aeabab-bd86-4666-aec7-8ab06ab7472f, type: "},{"event":"cmd_output","timestamp":1607098354,"output":"Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper."},{"event":"cmd_output","timestamp":1607098355,"output":"STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:35.108 [info] Request: 'run: %{\"auto_promoted\""},{"event":"cmd_output","timestamp":1607098355,"output":" => false, \"branch_id\" => \"5ddca45f-dec5-4fb7-9ef2-09aade4a0bfa\", \"branch_name\" => \"master\", \"commit"},{"event":"cmd_output","timestamp":1607098355,"output":"_sha\" => \"75891a4469\", \"env_vars\" => [], \"extension_of\" => \"33aeabab-bd86-4666-aec7-8ab06ab7472f\", \""},{"event":"cmd_output","timestamp":1607098355,"output":"file_name\" => \"/foo/bar/test.yml\", \"hook_id\" => \"84a3e146-364b-11eb-a28b-5254005464e2\", \"label\" => \""},{"event":"cmd_output","timestamp":1607098355,"output":"master\", \"organization_id\" => \"081bd93b-b273-4e06-a75f-f606e93a0276\", \"owner\" => \"rt\", \"prev_ppl_art"},{"event":"cmd_output","timestamp":1607098355,"output":"efact_ids\" => [\"33aeabab-bd86-4666-aec7-8ab06ab7472f\"], \"project_id\" => \"e7c09b92-85fe-4181-bbae-03a"},{"event":"cmd_output","timestamp":1607098355,"output":"5b0e2aa93\", \"promoter_id\" => \"\", \"repo_name\" => \"10_schedule_extension\", \"request_token\" => \"4fea15c"},{"event":"cmd_output","timestamp":1607098355,"output":"3-5829-4eda-9860-3ebb023e2575\", \"requester_id\" => \"26cecb05-a9b2-4227-80cd-0bd6217fc227\", \"service\" "},{"event":"cmd_output","timestamp":1607098355,"output":"=> \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"1d0ba96f-1def-"},{"event":"cmd_output","timestamp":1607098355,"output":"460b-af4b-c57108d6570f\", \"wf_number\" => 1, \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:12:35.110 ["},{"event":"cmd_output","timestamp":1607098355,"output":"info] ppl_id: f05e3534-ac91-4a1e-8fa6-79ec096be120, type: PplRequests, event: persisted schedule re"},{"event":"cmd_output","timestamp":1607098355,"output":"quest with request_token: 4fea15c3-5829-4eda-9860-3ebb023e2575, origin: Elixir.Ppl.PplRequests.Model"},{"event":"cmd_output","timestamp":1607098355,"output":".PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:35.113 [info] ppl_id: f05e3534-ac91"},{"event":"cmd_output","timestamp":1607098355,"output":"-4a1e-8fa6-79ec096be120, type: Ppls, state: initializing, event: initializing, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098355,"output":"igin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:35.115 [info] "},{"event":"cmd_output","timestamp":1607098355,"output":"Persisted ppl_sub_init for pipeline with ppl_id: f05e3534-ac91-4a1e-8fa6-79ec096be120: %Ppl.PplSubIn"},{"event":"cmd_output","timestamp":1607098355,"output":"its.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_i"},{"event":"cmd_output","timestamp":1607098355,"output":"d: nil, error_description: nil, id: 233, in_scheduling: false, init_type: \"regular\", inserted_at: ~N"},{"event":"cmd_output","timestamp":1607098355,"output":"[2020-12-04 16:12:35.115301], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"f05e3534-ac91-4a1e-8fa6-79ec096be120\", recovery_count: 0, result: n"},{"event":"cmd_output","timestamp":1607098355,"output":"il, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updat"},{"event":"cmd_output","timestamp":1607098355,"output":"ed_at: ~N[2020-12-04 16:12:35.115308]}\n\u001b[0m\u001b[22m\n16:12:35.120 [info] Periodic from module Elixir."},{"event":"cmd_output","timestamp":1607098355,"output":"Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: peri"},{"event":"cmd_output","timestamp":1607098355,"output":"od: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurr"},{"event":"cmd_output","timestamp":1607098355,"output":"ing args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query:"},{"event":"cmd_output","timestamp":1607098355,"output":" Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl.P"},{"event":"cmd_output","timestamp":1607098355,"output":"pls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :"},{"event":"cmd_output","timestamp":1607098355,"output":"updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor"},{"event":"cmd_output","timestamp":1607098355,"output":": :skip}\n\u001b[0m\u001b[22m\n16:12:35.120 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingSta"},{"event":"cmd_output","timestamp":1607098355,"output":"te with name Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-"},{"event":"cmd_output","timestamp":1607098355,"output":"wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"pending\", \"queu"},{"event":"cmd_output","timestamp":1607098355,"output":"ing\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \""},{"event":"cmd_output","timestamp":1607098355,"output":"pending\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl"},{"event":"cmd_output","timestamp":1607098355,"output":".EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_"},{"event":"cmd_output","timestamp":1607098355,"output":"id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:12:35.120 [inf"},{"event":"cmd_output","timestamp":1607098355,"output":"o] Periodic from module Elixir.Ppl.Ppls.STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandle"},{"event":"cmd_output","timestamp":1607098355,"output":"r.QueuingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Queuin"},{"event":"cmd_output","timestamp":1607098355,"output":"gState\"]}, recurring args: %{allowed_states: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, i"},{"event":"cmd_output","timestamp":1607098355,"output":"nitial_query: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", publisher_cb: #Function<0.125102843/1 "},{"event":"cmd_output","timestamp":1607098355,"output":"in Ppl.Ppls.STMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request"},{"event":"cmd_output","timestamp":1607098355,"output":", :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervi"},{"event":"cmd_output","timestamp":1607098355,"output":"sor: :skip}\n\u001b[0m\u001b[22m\n16:12:35.122 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.Running"},{"event":"cmd_output","timestamp":1607098355,"output":"State with name Elixir.Ppl.Ppls.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.behold"},{"event":"cmd_output","timestamp":1607098355,"output":"er-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"s"},{"event":"cmd_output","timestamp":1607098355,"output":"topping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"runnin"},{"event":"cmd_output","timestamp":1607098355,"output":"g\", publisher_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler.RunningState.args/0>, repo: Ppl.Ecto"},{"event":"cmd_output","timestamp":1607098355,"output":"Repo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], "},{"event":"cmd_output","timestamp":1607098355,"output":"schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:12:35.123 [info] P"},{"event":"cmd_output","timestamp":1607098355,"output":"eriodic from module Elixir.Ppl.Ppls.STMHandler.StoppingState with name Elixir.Ppl.Ppls.STMHandler.St"},{"event":"cmd_output","timestamp":1607098355,"output":"oppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-StoppingS"},{"event":"cmd_output","timestamp":1607098355,"output":"tate\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query"},{"event":"cmd_output","timestamp":1607098355,"output":": Ppl.Ppls.Model.Ppls, observed_state: \"stopping\", publisher_cb: #Function<0.71803493/1 in Ppl.Ppls."},{"event":"cmd_output","timestamp":1607098355,"output":"STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_"},{"event":"cmd_output","timestamp":1607098355,"output":"at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}"},{"event":"cmd_output","timestamp":1607098355,"output":"\n\u001b[0m\u001b[22m\n16:12:35.123 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedStat"},{"event":"cmd_output","timestamp":1607098355,"output":"e with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.beh"},{"event":"cmd_output","timestamp":1607098355,"output":"older-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args: %{allowed_states: [\"fe"},{"event":"cmd_output","timestamp":1607098355,"output":"tching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_st"},{"event":"cmd_output","timestamp":1607098355,"output":"ate: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updat"},{"event":"cmd_output","timestamp":1607098355,"output":"ed_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_s"},{"event":"cmd_output","timestamp":1607098355,"output":"upervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:35.124 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHa"},{"event":"cmd_output","timestamp":1607098355,"output":"ndler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 ms, met"},{"event":"cmd_output","timestamp":1607098355,"output":"ric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %{"},{"event":"cmd_output","timestamp":1607098355,"output":"allowed_states: [\"regular_init\", \"compilation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Pp"},{"event":"cmd_output","timestamp":1607098355,"output":"lSubInits.Model.PplSubInits, observed_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, re"},{"event":"cmd_output","timestamp":1607098355,"output":"turning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: "},{"event":"cmd_output","timestamp":1607098355,"output":"Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:35.124 [info] Periodic"},{"event":"cmd_output","timestamp":1607098355,"output":" from module Elixir.Ppl.PplSubInits.STMHandler.CompilationState with name Elixir.Ppl.PplSubInits.STM"},{"event":"cmd_output","timestamp":1607098355,"output":"Handler.CompilationState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-"},{"event":"cmd_output","timestamp":1607098355,"output":"STMHandler-CompilationState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"s"},{"event":"cmd_output","timestamp":1607098355,"output":"topping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_"},{"event":"cmd_output","timestamp":1607098355,"output":"state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, "},{"event":"cmd_output","timestamp":1607098355,"output":":updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, "},{"event":"cmd_output","timestamp":1607098355,"output":"task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:35.125 [info] Periodic from module Elixir.Ppl.PplSubInits"},{"event":"cmd_output","timestamp":1607098355,"output":".STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period:"},{"event":"cmd_output","timestamp":1607098355,"output":" 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, rec"},{"event":"cmd_output","timestamp":1607098355,"output":"urring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.P"},{"event":"cmd_output","timestamp":1607098355,"output":"plSubInits, observed_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id"},{"event":"cmd_output","timestamp":1607098355,"output":", :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubIni"},{"event":"cmd_output","timestamp":1607098355,"output":"ts.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:35.125 [info] Periodic from module "},{"event":"cmd_output","timestamp":1607098355,"output":"Elixir.Ppl.PplBlocks.STMHandler.InitializingState with name Elixir.Ppl.PplBlocks.STMHandler.Initiali"},{"event":"cmd_output","timestamp":1607098355,"output":"zingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-Initia"},{"event":"cmd_output","timestamp":1607098355,"output":"lizingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"waiting\", \"done\"], cooling_time_"},{"event":"cmd_output","timestamp":1607098355,"output":"sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"initializing\", publisher_cb: "},{"event":"cmd_output","timestamp":1607098355,"output":":skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recov"},{"event":"cmd_output","timestamp":1607098355,"output":"ery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b"},{"event":"cmd_output","timestamp":1607098355,"output":"[0m\u001b[22m\n16:12:35.126 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.WaitingState wit"},{"event":"cmd_output","timestamp":1607098355,"output":"h name Elixir.Ppl.PplBlocks.STMHandler.WaitingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-"},{"event":"cmd_output","timestamp":1607098355,"output":"wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurring args: %{allowed_states: [\"waiting\", "},{"event":"cmd_output","timestamp":1607098355,"output":"\"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_stat"},{"event":"cmd_output","timestamp":1607098355,"output":"e: \"waiting\", publisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>, "},{"event":"cmd_output","timestamp":1607098355,"output":"repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_cou"},{"event":"cmd_output","timestamp":1607098355,"output":"nt, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098355,"output":"m\n16:12:35.126 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.RunningState with name "},{"event":"cmd_output","timestamp":1607098355,"output":"Elixir.Ppl.PplBlocks.STMHandler.RunningState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up"},{"event":"cmd_output","timestamp":1607098355,"output":"\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stoppi"},{"event":"cmd_output","timestamp":1607098355,"output":"ng\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"r"},{"event":"cmd_output","timestamp":1607098355,"output":"unning\", publisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0>, repo"},{"event":"cmd_output","timestamp":1607098355,"output":": Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, "},{"event":"cmd_output","timestamp":1607098355,"output":":ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b"},{"event":"cmd_output","timestamp":1607098355,"output":"[0m\u001b[22m\n16:12:35.127 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.StoppingState wi"},{"event":"cmd_output","timestamp":1607098355,"output":"th name Elixir.Ppl.PplBlocks.STMHandler.StoppingState :: period: 1000 ms, metric_name: {\"Ppl.beholde"},{"event":"cmd_output","timestamp":1607098355,"output":"r-wake_up\", [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stoppin"},{"event":"cmd_output","timestamp":1607098355,"output":"g\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"st"},{"event":"cmd_output","timestamp":1607098355,"output":"opping\", publisher_cb: #Function<0.104215991/1 in Ppl.PplBlocks.STMHandler.StoppingState.args/0>, re"},{"event":"cmd_output","timestamp":1607098355,"output":"po: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count"},{"event":"cmd_output","timestamp":1607098355,"output":", :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\r"},{"event":"cmd_output","timestamp":1607098355,"output":"\n\u001b[0m\u001b[22m\n16:12:35.127 [info] Periodic from module Elixir.Block.Blocks.STMHandler.InitializingSta"},{"event":"cmd_output","timestamp":1607098355,"output":"te with name Elixir.Block.Blocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl."},{"event":"cmd_output","timestamp":1607098355,"output":"beholder-wake_up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states:"},{"event":"cmd_output","timestamp":1607098355,"output":" [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Blocks.Model.Blocks, observed_state:"},{"event":"cmd_output","timestamp":1607098355,"output":" \"initializing\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :up"},{"event":"cmd_output","timestamp":1607098355,"output":"dated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :"},{"event":"cmd_output","timestamp":1607098355,"output":"skip}\n\u001b[0m\u001b[22m\n16:12:35.128 [info] Periodic from module Elixir.Block.Blocks.STMHandler.RunningSt"},{"event":"cmd_output","timestamp":1607098355,"output":"ate with name Elixir.Block.Blocks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beho"},{"event":"cmd_output","timestamp":1607098355,"output":"lder-wake_up\", [\"Block-Blocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"runnin"},{"event":"cmd_output","timestamp":1607098355,"output":"g\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_st"},{"event":"cmd_output","timestamp":1607098355,"output":"ate: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :upd"},{"event":"cmd_output","timestamp":1607098355,"output":"ated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :s"},{"event":"cmd_output","timestamp":1607098355,"output":"kip}\n\u001b[0m\u001b[22m\n16:12:35.128 [info] Periodic from module Elixir.Block.Blocks.STMHandler.StoppingSt"},{"event":"cmd_output","timestamp":1607098355,"output":"ate with name Elixir.Block.Blocks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beh"},{"event":"cmd_output","timestamp":1607098355,"output":"older-wake_up\", [\"Block-Blocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stop"},{"event":"cmd_output","timestamp":1607098355,"output":"ping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"sto"},{"event":"cmd_output","timestamp":1607098355,"output":"pping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at,"},{"event":"cmd_output","timestamp":1607098355,"output":" :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b["},{"event":"cmd_output","timestamp":1607098355,"output":"0m\u001b[22m\n16:12:35.129 [info] Periodic from module Elixir.Block.Tasks.STMHandler.PendingState with n"},{"event":"cmd_output","timestamp":1607098355,"output":"ame Elixir.Block.Tasks.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_u"},{"event":"cmd_output","timestamp":1607098355,"output":"p\", [\"Block-Tasks-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"],"},{"event":"cmd_output","timestamp":1607098355,"output":" cooling_time_sec: 0, initial_query: Block.Tasks.Model.Tasks, observed_state: \"pending\", publisher_c"},{"event":"cmd_output","timestamp":1607098355,"output":"b: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_"},{"event":"cmd_output","timestamp":1607098355,"output":"count, :block_id, :build_request_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m"},{"event":"cmd_output","timestamp":1607098355,"output":"\u001b[22m\n16:12:35.129 [info] Periodic from module Elixir.Block.Tasks.STMHandler.RunningState with nam"},{"event":"cmd_output","timestamp":1607098355,"output":"e Elixir.Block.Tasks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\""},{"event":"cmd_output","timestamp":1607098355,"output":", [\"Block-Tasks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\""},{"event":"cmd_output","timestamp":1607098355,"output":", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"running\", "},{"event":"cmd_output","timestamp":1607098355,"output":"publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state,"},{"event":"cmd_output","timestamp":1607098355,"output":" :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098355,"output":"6:12:35.130 [info] Periodic from module Elixir.Block.Tasks.STMHandler.StoppingState with name Elixi"},{"event":"cmd_output","timestamp":1607098355,"output":"r.Block.Tasks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Bl"},{"event":"cmd_output","timestamp":1607098355,"output":"ock-Tasks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooli"},{"event":"cmd_output","timestamp":1607098355,"output":"ng_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"stopping\", publisher_cb: :"},{"event":"cmd_output","timestamp":1607098355,"output":"skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_coun"},{"event":"cmd_output","timestamp":1607098355,"output":"t, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:35.229 [in"},{"event":"cmd_output","timestamp":1607098355,"output":"fo] ppl_id: f05e3534-ac91-4a1e-8fa6-79ec096be120, type: PplRequests, event: persisted source_args f"},{"event":"cmd_output","timestamp":1607098355,"output":"or pipeline: f05e3534-ac91-4a1e-8fa6-79ec096be120, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQ"},{"event":"cmd_output","timestamp":1607098355,"output":"ueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:35.232 [info] ppl_id: f05e3534-ac91-4a1e-8fa6-79ec0"},{"event":"cmd_output","timestamp":1607098355,"output":"96be120, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098355,"output":"ir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:35.245 [info] ppl_id: f05e3534-ac91-"},{"event":"cmd_output","timestamp":1607098355,"output":"4a1e-8fa6-79ec096be120, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_cou"},{"event":"cmd_output","timestamp":1607098355,"output":"nt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:35.266 [info] ppl"},{"event":"cmd_output","timestamp":1607098355,"output":"_id: f05e3534-ac91-4a1e-8fa6-79ec096be120, type: PplRequests, event: persisted definition for reques"},{"event":"cmd_output","timestamp":1607098355,"output":"t with request_token: 4fea15c3-5829-4eda-9860-3ebb023e2575, origin: Elixir.Ppl.PplRequests.Model.Ppl"},{"event":"cmd_output","timestamp":1607098355,"output":"RequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:35.270 [info] Queue persisted: {:ok, %"},{"event":"cmd_output","timestamp":1607098355,"output":"Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-"},{"event":"cmd_output","timestamp":1607098355,"output":"04 16:12:35.269580], name: \"master-/foo/bar/test.yml\", organization_id: \"081bd93b-b273-4e06-a75f-f60"},{"event":"cmd_output","timestamp":1607098355,"output":"6e93a0276\", project_id: \"e7c09b92-85fe-4181-bbae-03a5b0e2aa93\", queue_id: \"991d5e6a-81c5-4c45-a67e-8"},{"event":"cmd_output","timestamp":1607098355,"output":"5852f21c904\", scope: \"project\", updated_at: ~N[2020-12-04 16:12:35.269588], user_generated: false}}\r"},{"event":"cmd_output","timestamp":1607098355,"output":"\n\u001b[0m\u001b[22m\n16:12:35.275 [info] ppl_id: not_available, event: created, origin: Elixir.Ppl.PplSubIni"},{"event":"cmd_output","timestamp":1607098355,"output":"ts.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:35.275 [info] event: created, or"},{"event":"cmd_output","timestamp":1607098355,"output":"igin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:35.275 "},{"event":"cmd_output","timestamp":1607098355,"output":"[info] ppl_id: f05e3534-ac91-4a1e-8fa6-79ec096be120, type: PplBlocks, block_index: 0, state: initia"},{"event":"cmd_output","timestamp":1607098355,"output":"lizing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitStat"},{"event":"cmd_output","timestamp":1607098355,"output":"e.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:35.275 [info] ppl_id: f05e3534-ac91-4a1e-8fa6-79ec096be120, t"},{"event":"cmd_output","timestamp":1607098355,"output":"ype: PplBlocks, block_index: 1, state: initializing, event: created, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098355,"output":"ir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:35.277 [info] pp"},{"event":"cmd_output","timestamp":1607098355,"output":"l_id: f05e3534-ac91-4a1e-8fa6-79ec096be120, type: PplSubInits, state: done, result: passed, event: e"},{"event":"cmd_output","timestamp":1607098355,"output":"xit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098355,"output":"2m\n16:12:35.282 [info] ppl_id: f05e3534-ac91-4a1e-8fa6-79ec096be120, type: PplBlocks, block_index:"},{"event":"cmd_output","timestamp":1607098355,"output":" 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_st"},{"event":"cmd_output","timestamp":1607098355,"output":"ate_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:35.285 [info] ppl_id: f05e3534-ac91-4a1e-8fa6-79ec096be120, t"},{"event":"cmd_output","timestamp":1607098355,"output":"ype: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl"},{"event":"cmd_output","timestamp":1607098355,"output":".log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:35.287 [info] ppl_id: f05e3534-ac91-4a1e-8fa6-79ec096b"},{"event":"cmd_output","timestamp":1607098355,"output":"e120, type: PplBlocks, block_index: 1, state: waiting, event: exit_scheduling, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098355,"output":"igin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:35.291 [info] ppl_id: f05e"},{"event":"cmd_output","timestamp":1607098355,"output":"3534-ac91-4a1e-8fa6-79ec096be120, type: Ppls, state: queuing, event: exit_scheduling, recovery_count"},{"event":"cmd_output","timestamp":1607098355,"output":": 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:35.303 [info] ppl_i"},{"event":"cmd_output","timestamp":1607098355,"output":"d: f05e3534-ac91-4a1e-8fa6-79ec096be120, type: Ppls, state: running, event: exit_scheduling, recover"},{"event":"cmd_output","timestamp":1607098355,"output":"y_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:35.308 [info]"},{"event":"cmd_output","timestamp":1607098355,"output":" PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"f05e3534-ac91-4a1e-8fa6-79ec096be"},{"event":"cmd_output","timestamp":1607098355,"output":"120\"\n\u001b[0m\u001b[22m\n16:12:35.312 [info] block_id: b8eec317-4f55-4ab1-8d53-ee0304a44ed1, type: BlockReq"},{"event":"cmd_output","timestamp":1607098355,"output":"uests, event: persisted block run request from ppl f05e3534-ac91-4a1e-8fa6-79ec096be120 for block 0,"},{"event":"cmd_output","timestamp":1607098355,"output":" origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098355,"output":"\n16:12:35.313 [info] block_id: b8eec317-4f55-4ab1-8d53-ee0304a44ed1, type: Blocks, state: initializ"},{"event":"cmd_output","timestamp":1607098355,"output":"ing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/"},{"event":"cmd_output","timestamp":1607098355,"output":"1(L43), \n\u001b[0m\u001b[22m\n16:12:35.315 [info] Block 0 of pipeline with id: f05e3534-ac91-4a1e-8fa6-79ec0"},{"event":"cmd_output","timestamp":1607098355,"output":"96be120 scheduled in block service with id: : \"b8eec317-4f55-4ab1-8d53-ee0304a44ed1\"\n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098355,"output":"12:35.317 [info] ppl_id: f05e3534-ac91-4a1e-8fa6-79ec096be120, type: PplBlocks, block_index: 0, sta"},{"event":"cmd_output","timestamp":1607098355,"output":"te: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_cha"},{"event":"cmd_output","timestamp":1607098355,"output":"nge/1(L90), \n\u001b[0m\u001b[22m\n16:12:35.321 [info] block_id: b8eec317-4f55-4ab1-8d53-ee0304a44ed1, type: "},{"event":"cmd_output","timestamp":1607098355,"output":"BlockRequests, event: persisted build and sub_ppl details for block_request: b8eec317-4f55-4ab1-8d53"},{"event":"cmd_output","timestamp":1607098355,"output":"-ee0304a44ed1, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n"},{"event":"cmd_output","timestamp":1607098355,"output":"\u001b[0m\u001b[22m\n16:12:35.323 [info] block_id: b8eec317-4f55-4ab1-8d53-ee0304a44ed1, type: Tasks, state: "},{"event":"cmd_output","timestamp":1607098355,"output":"pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState"},{"event":"cmd_output","timestamp":1607098355,"output":".all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:35.324 [info] block_id: b8eec317-4f55-4ab1-8d53-ee0304a44ed1, "},{"event":"cmd_output","timestamp":1607098355,"output":"type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.I"},{"event":"cmd_output","timestamp":1607098355,"output":"mpl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:35.344 [info] block_id: b8eec317-4f55-4ab1-8d53-ee0"},{"event":"cmd_output","timestamp":1607098355,"output":"304a44ed1, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Lo"},{"event":"cmd_output","timestamp":1607098355,"output":"oper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:35.450 [info] block_id: b8eec317-4f55-4ab"},{"event":"cmd_output","timestamp":1607098355,"output":"1-8d53-ee0304a44ed1, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098355,"output":"ixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:35.455 [info] block_id: b8eec317-4"},{"event":"cmd_output","timestamp":1607098355,"output":"f55-4ab1-8d53-ee0304a44ed1, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098355,"output":"igin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:35.465 [info] ppl_id: f05e"},{"event":"cmd_output","timestamp":1607098355,"output":"3534-ac91-4a1e-8fa6-79ec096be120, block_id: b8eec317-4f55-4ab1-8d53-ee0304a44ed1, type: PplBlocks, b"},{"event":"cmd_output","timestamp":1607098355,"output":"lock_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098355,"output":"r.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:35.471 [info] PplBlocks WaitingState "},{"event":"cmd_output","timestamp":1607098355,"output":"STM is scheduling block 1 from pipeline: \"f05e3534-ac91-4a1e-8fa6-79ec096be120\"\n\u001b[0m\u001b[22m\n16:12:35"},{"event":"cmd_output","timestamp":1607098355,"output":".478 [info] block_id: 540a6fa2-2c5b-4d76-a054-5d9556ce6cea, type: BlockRequests, event: persisted b"},{"event":"cmd_output","timestamp":1607098355,"output":"lock run request from ppl f05e3534-ac91-4a1e-8fa6-79ec096be120 for block 1, origin: Elixir.Block.Blo"},{"event":"cmd_output","timestamp":1607098355,"output":"ckRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:35.480 [info] blo"},{"event":"cmd_output","timestamp":1607098355,"output":"ck_id: 540a6fa2-2c5b-4d76-a054-5d9556ce6cea, type: Blocks, state: initializing, event: initializing,"},{"event":"cmd_output","timestamp":1607098355,"output":" recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098355,"output":"2:35.480 [info] Block 1 of pipeline with id: f05e3534-ac91-4a1e-8fa6-79ec096be120 scheduled in bloc"},{"event":"cmd_output","timestamp":1607098355,"output":"k service with id: : \"540a6fa2-2c5b-4d76-a054-5d9556ce6cea\"\n\u001b[0m\u001b[22m\n16:12:35.481 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098355,"output":" f05e3534-ac91-4a1e-8fa6-79ec096be120, type: PplBlocks, block_index: 1, state: running, event: exit_"},{"event":"cmd_output","timestamp":1607098355,"output":"scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098355,"output":"16:12:35.487 [info] block_id: 540a6fa2-2c5b-4d76-a054-5d9556ce6cea, type: BlockRequests, event: per"},{"event":"cmd_output","timestamp":1607098355,"output":"sisted build and sub_ppl details for block_request: 540a6fa2-2c5b-4d76-a054-5d9556ce6cea, origin: El"},{"event":"cmd_output","timestamp":1607098355,"output":"ixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:35.489 ["},{"event":"cmd_output","timestamp":1607098355,"output":"info] block_id: 540a6fa2-2c5b-4d76-a054-5d9556ce6cea, type: Tasks, state: pending, event: created, "},{"event":"cmd_output","timestamp":1607098355,"output":"recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098355,"output":"[22m\n16:12:35.491 [info] block_id: 540a6fa2-2c5b-4d76-a054-5d9556ce6cea, type: Blocks, state: runn"},{"event":"cmd_output","timestamp":1607098355,"output":"ing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L9"},{"event":"cmd_output","timestamp":1607098355,"output":"0), \n\u001b[0m\u001b[22m\n16:12:35.505 [info] block_id: 540a6fa2-2c5b-4d76-a054-5d9556ce6cea, type: Tasks, s"},{"event":"cmd_output","timestamp":1607098355,"output":"tate: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098355,"output":"hange/1(L90), \n\u001b[0m\u001b[22m\n16:12:35.560 [info] block_id: 540a6fa2-2c5b-4d76-a054-5d9556ce6cea, type"},{"event":"cmd_output","timestamp":1607098355,"output":": Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_"},{"event":"cmd_output","timestamp":1607098355,"output":"state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:35.566 [info] block_id: 540a6fa2-2c5b-4d76-a054-5d9556ce6ce"},{"event":"cmd_output","timestamp":1607098355,"output":"a, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.I"},{"event":"cmd_output","timestamp":1607098355,"output":"mpl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:35.578 [info] ppl_id: f05e3534-ac91-4a1e-8fa6-79ec0"},{"event":"cmd_output","timestamp":1607098355,"output":"96be120, block_id: 540a6fa2-2c5b-4d76-a054-5d9556ce6cea, type: PplBlocks, block_index: 1, state: don"},{"event":"cmd_output","timestamp":1607098355,"output":"e, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_sta"},{"event":"cmd_output","timestamp":1607098355,"output":"te_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:35.599 [info] ppl_id: f05e3534-ac91-4a1e-8fa6-79ec096be120, ty"},{"event":"cmd_output","timestamp":1607098355,"output":"pe: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loo"},{"event":"cmd_output","timestamp":1607098356,"output":"per.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test gRPC schedule_extension() local - succede"},{"event":"cmd_output","timestamp":1607098356,"output":"s when given valid params (2117.5ms)\u001b[0m\n * test gRPC list_queues() - valid params - result is emp"},{"event":"cmd_output","timestamp":1607098356,"output":"ty list\r * test gRPC list_queues() - valid params - result is empty list (skipped)\n * test gRPC d"},{"event":"cmd_output","timestamp":1607098356,"output":"escribe_topology()\r * test gRPC describe_topology() (skipped)\n * test gRPC list_grouped() - both"},{"event":"cmd_output","timestamp":1607098356,"output":" scopes implicit queues\u001b[22m\n16:12:36.197 [info] ppl_id: cfab4a23-af72-4148-91d7-20a516d94a18, typ"},{"event":"cmd_output","timestamp":1607098356,"output":"e: PplRequests, event: persisted schedule request with request_token: b7f26847-e7b6-4e9e-bbb2-e6ae71"},{"event":"cmd_output","timestamp":1607098356,"output":"241b0f, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098356,"output":"\n16:12:36.200 [info] ppl_id: cfab4a23-af72-4148-91d7-20a516d94a18, type: PplRequests, event: persi"},{"event":"cmd_output","timestamp":1607098356,"output":"sted definition for request with request_token: b7f26847-e7b6-4e9e-bbb2-e6ae71241b0f, origin: Elixir"},{"event":"cmd_output","timestamp":1607098356,"output":".Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:36.204 [info]"},{"event":"cmd_output","timestamp":1607098356,"output":" ppl_id: cfab4a23-af72-4148-91d7-20a516d94a18, type: Ppls, state: initializing, event: initializing"},{"event":"cmd_output","timestamp":1607098356,"output":", recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098356,"output":"\n16:12:36.208 [info] Persisted ppl_sub_init for pipeline with ppl_id: cfab4a23-af72-4148-91d7-20a5"},{"event":"cmd_output","timestamp":1607098356,"output":"16d94a18: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_"},{"event":"cmd_output","timestamp":1607098356,"output":"inits\">, compile_task_id: nil, error_description: nil, id: 234, in_scheduling: false, init_type: \"re"},{"event":"cmd_output","timestamp":1607098356,"output":"gular\", inserted_at: ~N[2020-12-04 16:12:36.207006], pipeline_requests: #Ecto.Association.NotLoaded<"},{"event":"cmd_output","timestamp":1607098356,"output":"association :pipeline_requests is not loaded>, ppl_id: \"cfab4a23-af72-4148-91d7-20a516d94a18\", recov"},{"event":"cmd_output","timestamp":1607098356,"output":"ery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_r"},{"event":"cmd_output","timestamp":1607098356,"output":"equest_desc: nil, updated_at: ~N[2020-12-04 16:12:36.207014]}\n\u001b[0m\u001b[22m\n16:12:36.213 [info] ppl_i"},{"event":"cmd_output","timestamp":1607098356,"output":"d: 2bb1ebfa-0522-4b3d-82b6-a46f9282e46e, type: PplRequests, event: persisted schedule request with r"},{"event":"cmd_output","timestamp":1607098356,"output":"equest_token: 8c8cd4a8-38c0-4ce4-88d3-536432d16581, origin: Elixir.Ppl.PplRequests.Model.PplRequests"},{"event":"cmd_output","timestamp":1607098356,"output":"Queries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:36.214 [info] ppl_id: 2bb1ebfa-0522-4b3d-82b6-a"},{"event":"cmd_output","timestamp":1607098356,"output":"46f9282e46e, type: PplRequests, event: persisted definition for request with request_token: 8c8cd4a8"},{"event":"cmd_output","timestamp":1607098356,"output":"-38c0-4ce4-88d3-536432d16581, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definit"},{"event":"cmd_output","timestamp":1607098356,"output":"ion/3(L76), \n\u001b[0m\u001b[22m\n16:12:36.217 [info] ppl_id: 2bb1ebfa-0522-4b3d-82b6-a46f9282e46e, type: Pp"},{"event":"cmd_output","timestamp":1607098356,"output":"ls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQ"},{"event":"cmd_output","timestamp":1607098356,"output":"ueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:36.220 [info] Persisted ppl_sub_init for pipeli"},{"event":"cmd_output","timestamp":1607098356,"output":"ne with ppl_id: 2bb1ebfa-0522-4b3d-82b6-a46f9282e46e: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #"},{"event":"cmd_output","timestamp":1607098356,"output":"Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, i"},{"event":"cmd_output","timestamp":1607098356,"output":"d: 235, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:36.219394], pip"},{"event":"cmd_output","timestamp":1607098356,"output":"eline_requests: #Ecto.Association.NotLoaded, ppl_id: \""},{"event":"cmd_output","timestamp":1607098356,"output":"2bb1ebfa-0522-4b3d-82b6-a46f9282e46e\", recovery_count: 0, result: nil, result_reason: nil, state: \"c"},{"event":"cmd_output","timestamp":1607098356,"output":"reated\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:36.219"},{"event":"cmd_output","timestamp":1607098356,"output":"403]}\n\u001b[0m\u001b[22m\n16:12:36.224 [info] ppl_id: 3e2dd4e2-3726-4b8f-a5a5-c77e1a428fff, type: PplReques"},{"event":"cmd_output","timestamp":1607098356,"output":"ts, event: persisted schedule request with request_token: b24dedc0-6c5d-4ce8-8535-63ed7f949efb, orig"},{"event":"cmd_output","timestamp":1607098356,"output":"in: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:36.2"},{"event":"cmd_output","timestamp":1607098356,"output":"25 [info] ppl_id: 3e2dd4e2-3726-4b8f-a5a5-c77e1a428fff, type: PplRequests, event: persisted definit"},{"event":"cmd_output","timestamp":1607098356,"output":"ion for request with request_token: b24dedc0-6c5d-4ce8-8535-63ed7f949efb, origin: Elixir.Ppl.PplRequ"},{"event":"cmd_output","timestamp":1607098356,"output":"ests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:36.228 [info] ppl_id: 3e"},{"event":"cmd_output","timestamp":1607098356,"output":"2dd4e2-3726-4b8f-a5a5-c77e1a428fff, type: Ppls, state: initializing, event: initializing, recovery_c"},{"event":"cmd_output","timestamp":1607098356,"output":"ount: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:36.2"},{"event":"cmd_output","timestamp":1607098356,"output":"32 [info] Persisted ppl_sub_init for pipeline with ppl_id: 3e2dd4e2-3726-4b8f-a5a5-c77e1a428fff: %P"},{"event":"cmd_output","timestamp":1607098356,"output":"pl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, com"},{"event":"cmd_output","timestamp":1607098356,"output":"pile_task_id: nil, error_description: nil, id: 236, in_scheduling: false, init_type: \"regular\", inse"},{"event":"cmd_output","timestamp":1607098356,"output":"rted_at: ~N[2020-12-04 16:12:36.231218], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"3e2dd4e2-3726-4b8f-a5a5-c77e1a428fff\", recovery_count: 0"},{"event":"cmd_output","timestamp":1607098356,"output":", result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc:"},{"event":"cmd_output","timestamp":1607098356,"output":" nil, updated_at: ~N[2020-12-04 16:12:36.231239]}\n\u001b[0m\u001b[22m\n16:12:36.235 [info] ppl_id: 86254150-"},{"event":"cmd_output","timestamp":1607098356,"output":"22ce-4a48-82d5-4a5c67f97470, type: PplRequests, event: persisted schedule request with request_token"},{"event":"cmd_output","timestamp":1607098356,"output":": 380f146a-f122-472b-8129-b10eee8a578c, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.proc"},{"event":"cmd_output","timestamp":1607098356,"output":"ess_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:36.237 [info] ppl_id: 86254150-22ce-4a48-82d5-4a5c67f97470,"},{"event":"cmd_output","timestamp":1607098356,"output":" type: PplRequests, event: persisted definition for request with request_token: 380f146a-f122-472b-8"},{"event":"cmd_output","timestamp":1607098356,"output":"129-b10eee8a578c, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), "},{"event":"cmd_output","timestamp":1607098356,"output":"\n\u001b[0m\u001b[22m\n16:12:36.240 [info] ppl_id: 86254150-22ce-4a48-82d5-4a5c67f97470, type: Ppls, state: i"},{"event":"cmd_output","timestamp":1607098356,"output":"nitializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.proce"},{"event":"cmd_output","timestamp":1607098356,"output":"ss_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:36.243 [info] Persisted ppl_sub_init for pipeline with ppl_"},{"event":"cmd_output","timestamp":1607098356,"output":"id: 86254150-22ce-4a48-82d5-4a5c67f97470: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema."},{"event":"cmd_output","timestamp":1607098356,"output":"Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 237, in_s"},{"event":"cmd_output","timestamp":1607098356,"output":"cheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:36.241966], pipeline_reques"},{"event":"cmd_output","timestamp":1607098356,"output":"ts: #Ecto.Association.NotLoaded, ppl_id: \"86254150-22c"},{"event":"cmd_output","timestamp":1607098356,"output":"e-4a48-82d5-4a5c67f97470\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", ter"},{"event":"cmd_output","timestamp":1607098356,"output":"minate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:36.241974]}\n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098356,"output":"[22m\n16:12:36.246 [info] ppl_id: 6f84c893-6c7d-4362-9d68-86013033d134, type: PplRequests, event: p"},{"event":"cmd_output","timestamp":1607098356,"output":"ersisted schedule request with request_token: 01fcbe26-c909-47e6-bbba-ad02881c8452, origin: Elixir.P"},{"event":"cmd_output","timestamp":1607098356,"output":"pl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:36.248 [info] p"},{"event":"cmd_output","timestamp":1607098356,"output":"pl_id: 6f84c893-6c7d-4362-9d68-86013033d134, type: PplRequests, event: persisted definition for requ"},{"event":"cmd_output","timestamp":1607098356,"output":"est with request_token: 01fcbe26-c909-47e6-bbba-ad02881c8452, origin: Elixir.Ppl.PplRequests.Model.P"},{"event":"cmd_output","timestamp":1607098356,"output":"plRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:36.251 [info] ppl_id: 6f84c893-6c7d-"},{"event":"cmd_output","timestamp":1607098356,"output":"4362-9d68-86013033d134, type: Ppls, state: initializing, event: initializing, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098356,"output":"gin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:36.254 [info] P"},{"event":"cmd_output","timestamp":1607098356,"output":"ersisted ppl_sub_init for pipeline with ppl_id: 6f84c893-6c7d-4362-9d68-86013033d134: %Ppl.PplSubIni"},{"event":"cmd_output","timestamp":1607098356,"output":"ts.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id"},{"event":"cmd_output","timestamp":1607098356,"output":": nil, error_description: nil, id: 238, in_scheduling: false, init_type: \"regular\", inserted_at: ~N["},{"event":"cmd_output","timestamp":1607098356,"output":"2020-12-04 16:12:36.253157], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"6f84c893-6c7d-4362-9d68-86013033d134\", recovery_count: 0, result: ni"},{"event":"cmd_output","timestamp":1607098356,"output":"l, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, update"},{"event":"cmd_output","timestamp":1607098356,"output":"d_at: ~N[2020-12-04 16:12:36.253167]}\n\u001b[0m\u001b[22m\n16:12:36.258 [info] ppl_id: 20f8d23c-9481-4cf7-b6"},{"event":"cmd_output","timestamp":1607098356,"output":"0e-e5967aaa7824, type: PplRequests, event: persisted schedule request with request_token: 5de0d2d1-6"},{"event":"cmd_output","timestamp":1607098356,"output":"6bd-4f3f-a298-5e791ccc5820, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response"},{"event":"cmd_output","timestamp":1607098356,"output":"/2(L55), \n\u001b[0m\u001b[22m\n16:12:36.259 [info] ppl_id: 20f8d23c-9481-4cf7-b60e-e5967aaa7824, type: PplRe"},{"event":"cmd_output","timestamp":1607098356,"output":"quests, event: persisted definition for request with request_token: 5de0d2d1-66bd-4f3f-a298-5e791ccc"},{"event":"cmd_output","timestamp":1607098356,"output":"5820, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098356,"output":"\n16:12:36.261 [info] ppl_id: 20f8d23c-9481-4cf7-b60e-e5967aaa7824, type: Ppls, state: initializing,"},{"event":"cmd_output","timestamp":1607098356,"output":" event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/"},{"event":"cmd_output","timestamp":1607098356,"output":"2(L124), \n\u001b[0m\u001b[22m\n16:12:36.265 [info] Persisted ppl_sub_init for pipeline with ppl_id: 20f8d23c"},{"event":"cmd_output","timestamp":1607098356,"output":"-9481-4cf7-b60e-e5967aaa7824: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:lo"},{"event":"cmd_output","timestamp":1607098356,"output":"aded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 239, in_scheduling: f"},{"event":"cmd_output","timestamp":1607098356,"output":"alse, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:36.263896], pipeline_requests: #Ecto.As"},{"event":"cmd_output","timestamp":1607098356,"output":"sociation.NotLoaded, ppl_id: \"20f8d23c-9481-4cf7-b60e-"},{"event":"cmd_output","timestamp":1607098356,"output":"e5967aaa7824\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_reque"},{"event":"cmd_output","timestamp":1607098356,"output":"st: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:36.263905]}\n\u001b[0m\u001b[22m\n16:12:"},{"event":"cmd_output","timestamp":1607098356,"output":"36.268 [info] ppl_id: 1f904094-47e5-4cdb-95b8-73e75430e431, type: PplRequests, event: persisted sch"},{"event":"cmd_output","timestamp":1607098356,"output":"edule request with request_token: 1c087bbb-9dcb-45bd-9ee5-dc018741a655, origin: Elixir.Ppl.PplReques"},{"event":"cmd_output","timestamp":1607098356,"output":"ts.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:36.271 [info] ppl_id: 1f904"},{"event":"cmd_output","timestamp":1607098356,"output":"094-47e5-4cdb-95b8-73e75430e431, type: PplRequests, event: persisted definition for request with req"},{"event":"cmd_output","timestamp":1607098356,"output":"uest_token: 1c087bbb-9dcb-45bd-9ee5-dc018741a655, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQu"},{"event":"cmd_output","timestamp":1607098356,"output":"eries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:36.273 [info] ppl_id: 1f904094-47e5-4cdb-95b8-73"},{"event":"cmd_output","timestamp":1607098356,"output":"e75430e431, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098356,"output":"Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:36.276 [info] Persisted ppl"},{"event":"cmd_output","timestamp":1607098356,"output":"_sub_init for pipeline with ppl_id: 1f904094-47e5-4cdb-95b8-73e75430e431: %Ppl.PplSubInits.Model.Ppl"},{"event":"cmd_output","timestamp":1607098356,"output":"SubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error"},{"event":"cmd_output","timestamp":1607098356,"output":"_description: nil, id: 240, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 1"},{"event":"cmd_output","timestamp":1607098356,"output":"6:12:36.275480], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"1f904094-47e5-4cdb-95b8-73e75430e431\", recovery_count: 0, result: nil, result_re"},{"event":"cmd_output","timestamp":1607098356,"output":"ason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[202"},{"event":"cmd_output","timestamp":1607098356,"output":"0-12-04 16:12:36.275489]}\n\u001b[0m\u001b[22m\n16:12:36.280 [info] ppl_id: 780e101c-f6e8-412d-9d39-bc934d421"},{"event":"cmd_output","timestamp":1607098356,"output":"03a, type: PplRequests, event: persisted schedule request with request_token: 5182b55d-4ee1-4169-85d"},{"event":"cmd_output","timestamp":1607098356,"output":"4-ed4842bff1a3, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b"},{"event":"cmd_output","timestamp":1607098356,"output":"[0m\u001b[22m\n16:12:36.282 [info] ppl_id: 780e101c-f6e8-412d-9d39-bc934d42103a, type: PplRequests, even"},{"event":"cmd_output","timestamp":1607098356,"output":"t: persisted definition for request with request_token: 5182b55d-4ee1-4169-85d4-ed4842bff1a3, origin"},{"event":"cmd_output","timestamp":1607098356,"output":": Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:36.28"},{"event":"cmd_output","timestamp":1607098356,"output":"4 [info] ppl_id: 780e101c-f6e8-412d-9d39-bc934d42103a, type: Ppls, state: initializing, event: init"},{"event":"cmd_output","timestamp":1607098356,"output":"ializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b"},{"event":"cmd_output","timestamp":1607098356,"output":"[0m\u001b[22m\n16:12:36.287 [info] Persisted ppl_sub_init for pipeline with ppl_id: 780e101c-f6e8-412d-9"},{"event":"cmd_output","timestamp":1607098356,"output":"d39-bc934d42103a: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipel"},{"event":"cmd_output","timestamp":1607098356,"output":"ine_sub_inits\">, compile_task_id: nil, error_description: nil, id: 241, in_scheduling: false, init_t"},{"event":"cmd_output","timestamp":1607098356,"output":"ype: \"regular\", inserted_at: ~N[2020-12-04 16:12:36.286345], pipeline_requests: #Ecto.Association.No"},{"event":"cmd_output","timestamp":1607098356,"output":"tLoaded, ppl_id: \"780e101c-f6e8-412d-9d39-bc934d42103a"},{"event":"cmd_output","timestamp":1607098356,"output":"\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, ter"},{"event":"cmd_output","timestamp":1607098356,"output":"minate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:36.286367]}\n\u001b[0m\u001b[22m\n16:12:36.289 [info"},{"event":"cmd_output","timestamp":1607098356,"output":"] Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.STMHa"},{"event":"cmd_output","timestamp":1607098356,"output":"ndler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandl"},{"event":"cmd_output","timestamp":1607098356,"output":"er-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], cool"},{"event":"cmd_output","timestamp":1607098356,"output":"ing_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher_cb: #"},{"event":"cmd_output","timestamp":1607098356,"output":"Function<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, returni"},{"event":"cmd_output","timestamp":1607098356,"output":"ng: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.P"},{"event":"cmd_output","timestamp":1607098356,"output":"pls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:36.289 [info] Periodic from module Elixir"},{"event":"cmd_output","timestamp":1607098356,"output":".Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 100 m"},{"event":"cmd_output","timestamp":1607098356,"output":"s, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args: %{al"},{"event":"cmd_output","timestamp":1607098356,"output":"lowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098356,"output":"s.Model.Ppls, observed_state: \"pending\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler."},{"event":"cmd_output","timestamp":1607098356,"output":"PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, "},{"event":"cmd_output","timestamp":1607098356,"output":":result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor"},{"event":"cmd_output","timestamp":1607098356,"output":"}\n\u001b[0m\u001b[22m\n16:12:36.290 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.QueuingState with"},{"event":"cmd_output","timestamp":1607098356,"output":" name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up"},{"event":"cmd_output","timestamp":1607098356,"output":"\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{allowed_states: [\"queuing\", \"running\", \""},{"event":"cmd_output","timestamp":1607098356,"output":"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", publish"},{"event":"cmd_output","timestamp":1607098356,"output":"er_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, retu"},{"event":"cmd_output","timestamp":1607098356,"output":"rning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Pp"},{"event":"cmd_output","timestamp":1607098356,"output":"l.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:36.291 [info] Periodic from module Eli"},{"event":"cmd_output","timestamp":1607098356,"output":"xir.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHandler.RunningState :: period: 10"},{"event":"cmd_output","timestamp":1607098356,"output":"0 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring args: %"},{"event":"cmd_output","timestamp":1607098356,"output":"{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Mode"},{"event":"cmd_output","timestamp":1607098356,"output":"l.Ppls, observed_state: \"running\", publisher_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler.Runni"},{"event":"cmd_output","timestamp":1607098356,"output":"ngState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :resu"},{"event":"cmd_output","timestamp":1607098356,"output":"lt, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b["},{"event":"cmd_output","timestamp":1607098356,"output":"0m\u001b[22m\n16:12:36.291 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.StoppingState with nam"},{"event":"cmd_output","timestamp":1607098356,"output":"e Elixir.Ppl.Ppls.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", "},{"event":"cmd_output","timestamp":1607098356,"output":"[\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cool"},{"event":"cmd_output","timestamp":1607098356,"output":"ing_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"stopping\", publisher_cb: #Fun"},{"event":"cmd_output","timestamp":1607098356,"output":"ction<0.71803493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id"},{"event":"cmd_output","timestamp":1607098356,"output":", :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Mode"},{"event":"cmd_output","timestamp":1607098356,"output":"l.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:36.292 [info] Periodic from module Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098356,"output":"SubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period:"},{"event":"cmd_output","timestamp":1607098356,"output":" 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurri"},{"event":"cmd_output","timestamp":1607098356,"output":"ng args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits"},{"event":"cmd_output","timestamp":1607098356,"output":".Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: ["},{"event":"cmd_output","timestamp":1607098356,"output":":id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSub"},{"event":"cmd_output","timestamp":1607098356,"output":"Inits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:36.292 [info] Periodic from modu"},{"event":"cmd_output","timestamp":1607098356,"output":"le Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler.Fetch"},{"event":"cmd_output","timestamp":1607098356,"output":"ingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-Fetch"},{"event":"cmd_output","timestamp":1607098356,"output":"ingState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"done\"], cooling_time"},{"event":"cmd_output","timestamp":1607098356,"output":"_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fetching\", publisher_cb"},{"event":"cmd_output","timestamp":1607098356,"output":": :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :rec"},{"event":"cmd_output","timestamp":1607098356,"output":"overy_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098356,"output":"\n16:12:36.293 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CompilationState with "},{"event":"cmd_output","timestamp":1607098356,"output":"name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 100 ms, metric_name: {\"Ppl.behold"},{"event":"cmd_output","timestamp":1607098356,"output":"er-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurring args: %{allowed_states: [\"r"},{"event":"cmd_output","timestamp":1607098356,"output":"egular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubIni"},{"event":"cmd_output","timestamp":1607098356,"output":"ts.Model.PplSubInits, observed_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, return"},{"event":"cmd_output","timestamp":1607098356,"output":"ing: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl."},{"event":"cmd_output","timestamp":1607098356,"output":"PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:36.293 [info] Periodic fro"},{"event":"cmd_output","timestamp":1607098356,"output":"m module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHand"},{"event":"cmd_output","timestamp":1607098356,"output":"ler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMH"},{"event":"cmd_output","timestamp":1607098356,"output":"andler-RegularInitState\"]}, recurring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, initial"},{"event":"cmd_output","timestamp":1607098356,"output":"_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_init\", publisher_cb: :skip, repo"},{"event":"cmd_output","timestamp":1607098356,"output":": Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, "},{"event":"cmd_output","timestamp":1607098356,"output":":ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:36.29"},{"event":"cmd_output","timestamp":1607098356,"output":"3 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.InitializingState with name Elixir.Pp"},{"event":"cmd_output","timestamp":1607098356,"output":"l.PplBlocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\""},{"event":"cmd_output","timestamp":1607098356,"output":"Ppl-PplBlocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"w"},{"event":"cmd_output","timestamp":1607098356,"output":"aiting\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state:"},{"event":"cmd_output","timestamp":1607098356,"output":" \"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :upda"},{"event":"cmd_output","timestamp":1607098356,"output":"ted_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlo"},{"event":"cmd_output","timestamp":1607098356,"output":"cks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:36.294 [info] Periodic from module Elixir.Ppl.PplBlo"},{"event":"cmd_output","timestamp":1607098356,"output":"cks.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler.WaitingState :: period: 1000 m"},{"event":"cmd_output","timestamp":1607098356,"output":"s, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurring args:"},{"event":"cmd_output","timestamp":1607098356,"output":" %{allowed_states: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks"},{"event":"cmd_output","timestamp":1607098356,"output":".Model.PplBlocks, observed_state: \"waiting\", publisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.ST"},{"event":"cmd_output","timestamp":1607098356,"output":"MHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at,"},{"event":"cmd_output","timestamp":1607098356,"output":" :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, ta"},{"event":"cmd_output","timestamp":1607098356,"output":"sk_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:36.294 [info] Periodic from module Elixir.Ppl.PplBlocks.STM"},{"event":"cmd_output","timestamp":1607098356,"output":"Handler.RunningState with name Elixir.Ppl.PplBlocks.STMHandler.RunningState :: period: 1000 ms, metr"},{"event":"cmd_output","timestamp":1607098356,"output":"ic_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, recurring args: %{allo"},{"event":"cmd_output","timestamp":1607098356,"output":"wed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Mode"},{"event":"cmd_output","timestamp":1607098356,"output":"l.PplBlocks, observed_state: \"running\", publisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHan"},{"event":"cmd_output","timestamp":1607098356,"output":"dler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :st"},{"event":"cmd_output","timestamp":1607098356,"output":"ate, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlo"},{"event":"cmd_output","timestamp":1607098356,"output":"cks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:36.294 [info] Periodic from module Elixir.Ppl.PplBlo"},{"event":"cmd_output","timestamp":1607098356,"output":"cks.STMHandler.StoppingState with name Elixir.Ppl.PplBlocks.STMHandler.StoppingState :: period: 1000"},{"event":"cmd_output","timestamp":1607098356,"output":" ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurring ar"},{"event":"cmd_output","timestamp":1607098356,"output":"gs: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model"},{"event":"cmd_output","timestamp":1607098356,"output":".PplBlocks, observed_state: \"stopping\", publisher_cb: #Function<0.104215991/1 in Ppl.PplBlocks.STMHa"},{"event":"cmd_output","timestamp":1607098356,"output":"ndler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :"},{"event":"cmd_output","timestamp":1607098356,"output":"state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplB"},{"event":"cmd_output","timestamp":1607098356,"output":"locks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:36.295 [info] Periodic from module Elixir.Block.Bl"},{"event":"cmd_output","timestamp":1607098356,"output":"ocks.STMHandler.InitializingState with name Elixir.Block.Blocks.STMHandler.InitializingState :: peri"},{"event":"cmd_output","timestamp":1607098356,"output":"od: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, re"},{"event":"cmd_output","timestamp":1607098356,"output":"curring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Block"},{"event":"cmd_output","timestamp":1607098356,"output":"s.Model.Blocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Block.EctoRepo, returning"},{"event":"cmd_output","timestamp":1607098356,"output":": [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.M"},{"event":"cmd_output","timestamp":1607098356,"output":"odel.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:36.296 [info] Periodic from module Elixir.Bl"},{"event":"cmd_output","timestamp":1607098356,"output":"ock.Blocks.STMHandler.RunningState with name Elixir.Block.Blocks.STMHandler.RunningState :: period: "},{"event":"cmd_output","timestamp":1607098356,"output":"100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-RunningState\"]}, recurring a"},{"event":"cmd_output","timestamp":1607098356,"output":"rgs: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.B"},{"event":"cmd_output","timestamp":1607098356,"output":"locks.Model.Blocks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning:"},{"event":"cmd_output","timestamp":1607098356,"output":" [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Mo"},{"event":"cmd_output","timestamp":1607098356,"output":"del.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:36.297 [info] Periodic from module Elixir.Blo"},{"event":"cmd_output","timestamp":1607098356,"output":"ck.Blocks.STMHandler.StoppingState with name Elixir.Block.Blocks.STMHandler.StoppingState :: period:"},{"event":"cmd_output","timestamp":1607098356,"output":" 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-StoppingState\"]}, recurring"},{"event":"cmd_output","timestamp":1607098356,"output":" args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Mod"},{"event":"cmd_output","timestamp":1607098356,"output":"el.Blocks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :"},{"event":"cmd_output","timestamp":1607098356,"output":"terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Bloc"},{"event":"cmd_output","timestamp":1607098356,"output":"ks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:36.297 [info] Periodic from module Elixir.Block.Tasks"},{"event":"cmd_output","timestamp":1607098356,"output":".STMHandler.PendingState with name Elixir.Block.Tasks.STMHandler.PendingState :: period: 100 ms, met"},{"event":"cmd_output","timestamp":1607098356,"output":"ric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingState\"]}, recurring args: %{allow"},{"event":"cmd_output","timestamp":1607098356,"output":"ed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Tasks.Model.Tasks, observe"},{"event":"cmd_output","timestamp":1607098356,"output":"d_state: \"pending\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, "},{"event":"cmd_output","timestamp":1607098356,"output":":updated_at, :state, :recovery_count, :block_id, :build_request_id], schema: Block.Tasks.Model.Tasks"},{"event":"cmd_output","timestamp":1607098356,"output":", task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:36.298 [info] Periodic from module Elixir.Block.Tasks.S"},{"event":"cmd_output","timestamp":1607098356,"output":"TMHandler.RunningState with name Elixir.Block.Tasks.STMHandler.RunningState :: period: 100 ms, metri"},{"event":"cmd_output","timestamp":1607098356,"output":"c_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningState\"]}, recurring args: %{allowed"},{"event":"cmd_output","timestamp":1607098356,"output":"_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tas"},{"event":"cmd_output","timestamp":1607098356,"output":"ks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminat"},{"event":"cmd_output","timestamp":1607098356,"output":"e_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_s"},{"event":"cmd_output","timestamp":1607098356,"output":"upervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:36.299 [info] Periodic from module Elixir.Block.Tasks.STMHandle"},{"event":"cmd_output","timestamp":1607098356,"output":"r.StoppingState with name Elixir.Block.Tasks.STMHandler.StoppingState :: period: 100 ms, metric_name"},{"event":"cmd_output","timestamp":1607098356,"output":": {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]}, recurring args: %{allowed_stat"},{"event":"cmd_output","timestamp":1607098356,"output":"es: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_sta"},{"event":"cmd_output","timestamp":1607098356,"output":"te: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :upd"},{"event":"cmd_output","timestamp":1607098356,"output":"ated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :ski"},{"event":"cmd_output","timestamp":1607098356,"output":"p}\n\u001b[0m\u001b[22m\n16:12:36.403 [info] ppl_id: cfab4a23-af72-4148-91d7-20a516d94a18, type: PplRequests,"},{"event":"cmd_output","timestamp":1607098356,"output":" event: persisted source_args for pipeline: cfab4a23-af72-4148-91d7-20a516d94a18, origin: Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098356,"output":".PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:36.405 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098356,"output":": cfab4a23-af72-4148-91d7-20a516d94a18, type: PplSubInits, state: fetching, event: exit_scheduling, "},{"event":"cmd_output","timestamp":1607098356,"output":"recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:36.423"},{"event":"cmd_output","timestamp":1607098356,"output":" [info] ppl_id: cfab4a23-af72-4148-91d7-20a516d94a18, type: PplSubInits, state: regular_init, event"},{"event":"cmd_output","timestamp":1607098356,"output":": exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098356,"output":"\u001b[22m\n16:12:36.442 [info] ppl_id: cfab4a23-af72-4148-91d7-20a516d94a18, type: PplRequests, event: "},{"event":"cmd_output","timestamp":1607098356,"output":"persisted definition for request with request_token: b7f26847-e7b6-4e9e-bbb2-e6ae71241b0f, origin: E"},{"event":"cmd_output","timestamp":1607098356,"output":"lixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:36.445 ["},{"event":"cmd_output","timestamp":1607098356,"output":"info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"que"},{"event":"cmd_output","timestamp":1607098356,"output":"ues\">, inserted_at: ~N[2020-12-04 16:12:36.444408], name: \"master-.semaphore/semaphore.yml\", organiz"},{"event":"cmd_output","timestamp":1607098356,"output":"ation_id: \"583ca096-41b7-46d2-94e4-d70a6aca7eab\", project_id: \"123\", queue_id: \"2fe1aa42-cae0-4bc5-8"},{"event":"cmd_output","timestamp":1607098356,"output":"4b1-739f109313a6\", scope: \"project\", updated_at: ~N[2020-12-04 16:12:36.444416], user_generated: fal"},{"event":"cmd_output","timestamp":1607098356,"output":"se}}\n\u001b[0m\u001b[22m\n16:12:36.448 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.Regu"},{"event":"cmd_output","timestamp":1607098356,"output":"larInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:36.448 [info] ppl_id: cfab4a23-af72-4148-91d7-20a5"},{"event":"cmd_output","timestamp":1607098356,"output":"16d94a18, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098356,"output":"rigin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:36.450"},{"event":"cmd_output","timestamp":1607098356,"output":" [info] ppl_id: cfab4a23-af72-4148-91d7-20a516d94a18, type: PplSubInits, state: done, result: passe"},{"event":"cmd_output","timestamp":1607098356,"output":"d, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90)"},{"event":"cmd_output","timestamp":1607098356,"output":", \n\u001b[0m\u001b[22m\n16:12:36.457 [info] ppl_id: cfab4a23-af72-4148-91d7-20a516d94a18, type: Ppls, state:"},{"event":"cmd_output","timestamp":1607098356,"output":" pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change"},{"event":"cmd_output","timestamp":1607098356,"output":"/1(L90), \n\u001b[0m\u001b[22m\n16:12:36.461 [info] ppl_id: cfab4a23-af72-4148-91d7-20a516d94a18, type: PplBl"},{"event":"cmd_output","timestamp":1607098356,"output":"ocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loop"},{"event":"cmd_output","timestamp":1607098356,"output":"er.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:36.463 [info] ppl_id: cfab4a23-af72-4148-91"},{"event":"cmd_output","timestamp":1607098356,"output":"d7-20a516d94a18, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098356,"output":"ir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:36.469 [info] ppl_id: cfab4a23-af72-"},{"event":"cmd_output","timestamp":1607098356,"output":"4148-91d7-20a516d94a18, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098356,"output":"n: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:36.472 [info] PplBlocks Waiti"},{"event":"cmd_output","timestamp":1607098356,"output":"ngState STM is scheduling block 0 from pipeline: \"cfab4a23-af72-4148-91d7-20a516d94a18\"\n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098356,"output":"16:12:36.476 [info] block_id: 13e21497-e50a-4cd9-9301-338c212c55f6, type: BlockRequests, event: per"},{"event":"cmd_output","timestamp":1607098356,"output":"sisted block run request from ppl cfab4a23-af72-4148-91d7-20a516d94a18 for block 0, origin: Elixir.B"},{"event":"cmd_output","timestamp":1607098356,"output":"lock.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:36.477 [in"},{"event":"cmd_output","timestamp":1607098356,"output":"fo] block_id: 13e21497-e50a-4cd9-9301-338c212c55f6, type: Blocks, state: initializing, event: initi"},{"event":"cmd_output","timestamp":1607098356,"output":"alizing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098356,"output":"2m\n16:12:36.479 [info] Block 0 of pipeline with id: cfab4a23-af72-4148-91d7-20a516d94a18 scheduled"},{"event":"cmd_output","timestamp":1607098356,"output":" in block service with id: : \"13e21497-e50a-4cd9-9301-338c212c55f6\"\n\u001b[0m\u001b[22m\n16:12:36.480 [info] "},{"event":"cmd_output","timestamp":1607098356,"output":" ppl_id: cfab4a23-af72-4148-91d7-20a516d94a18, type: PplBlocks, block_index: 0, state: running, even"},{"event":"cmd_output","timestamp":1607098356,"output":"t: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098356,"output":"m\u001b[22m\n16:12:36.482 [info] block_id: 13e21497-e50a-4cd9-9301-338c212c55f6, type: BlockRequests, ev"},{"event":"cmd_output","timestamp":1607098356,"output":"ent: persisted build and sub_ppl details for block_request: 13e21497-e50a-4cd9-9301-338c212c55f6, or"},{"event":"cmd_output","timestamp":1607098356,"output":"igin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:"},{"event":"cmd_output","timestamp":1607098356,"output":"36.484 [info] block_id: 13e21497-e50a-4cd9-9301-338c212c55f6, type: Tasks, state: pending, event: c"},{"event":"cmd_output","timestamp":1607098356,"output":"reated, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167),"},{"event":"cmd_output","timestamp":1607098356,"output":" \n\u001b[0m\u001b[22m\n16:12:36.491 [info] block_id: 13e21497-e50a-4cd9-9301-338c212c55f6, type: Blocks, sta"},{"event":"cmd_output","timestamp":1607098356,"output":"te: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_cha"},{"event":"cmd_output","timestamp":1607098356,"output":"nge/1(L90), \n\u001b[0m\u001b[22m\n16:12:36.508 [info] block_id: 13e21497-e50a-4cd9-9301-338c212c55f6, type: "},{"event":"cmd_output","timestamp":1607098356,"output":"Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098356,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:36.521 [info] ppl_id: 2bb1ebfa-0522-4b3d-82b6-a46f9282e46e"},{"event":"cmd_output","timestamp":1607098356,"output":", type: PplRequests, event: persisted source_args for pipeline: 2bb1ebfa-0522-4b3d-82b6-a46f9282e46e"},{"event":"cmd_output","timestamp":1607098356,"output":", origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:3"},{"event":"cmd_output","timestamp":1607098356,"output":"6.526 [info] ppl_id: 2bb1ebfa-0522-4b3d-82b6-a46f9282e46e, type: PplSubInits, state: fetching, even"},{"event":"cmd_output","timestamp":1607098356,"output":"t: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098356,"output":"m\u001b[22m\n16:12:36.538 [info] ppl_id: 2bb1ebfa-0522-4b3d-82b6-a46f9282e46e, type: PplSubInits, state:"},{"event":"cmd_output","timestamp":1607098356,"output":" regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098356,"output":"hange/1(L90), \n\u001b[0m\u001b[22m\n16:12:36.563 [info] ppl_id: 2bb1ebfa-0522-4b3d-82b6-a46f9282e46e, type: "},{"event":"cmd_output","timestamp":1607098356,"output":"PplRequests, event: persisted definition for request with request_token: 8c8cd4a8-38c0-4ce4-88d3-536"},{"event":"cmd_output","timestamp":1607098356,"output":"432d16581, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098356,"output":"[22m\n16:12:36.567 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitStat"},{"event":"cmd_output","timestamp":1607098356,"output":"e.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:36.567 [info] ppl_id: 2bb1ebfa-0522-4b3d-82b6-a46f9282e46e, t"},{"event":"cmd_output","timestamp":1607098356,"output":"ype: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098356,"output":"ir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:36.569 [info] pp"},{"event":"cmd_output","timestamp":1607098356,"output":"l_id: 2bb1ebfa-0522-4b3d-82b6-a46f9282e46e, type: PplSubInits, state: done, result: passed, event: e"},{"event":"cmd_output","timestamp":1607098356,"output":"xit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098356,"output":"2m\n16:12:36.573 [info] ppl_id: 2bb1ebfa-0522-4b3d-82b6-a46f9282e46e, type: PplBlocks, block_index:"},{"event":"cmd_output","timestamp":1607098356,"output":" 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_st"},{"event":"cmd_output","timestamp":1607098356,"output":"ate_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:36.575 [info] ppl_id: 2bb1ebfa-0522-4b3d-82b6-a46f9282e46e, t"},{"event":"cmd_output","timestamp":1607098356,"output":"ype: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl"},{"event":"cmd_output","timestamp":1607098356,"output":".log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:36.589 [info] ppl_id: 2bb1ebfa-0522-4b3d-82b6-a46f9282"},{"event":"cmd_output","timestamp":1607098356,"output":"e46e, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.S"},{"event":"cmd_output","timestamp":1607098356,"output":"TM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:36.618 [info] block_id: 13e21497-e50a-4cd9-9301"},{"event":"cmd_output","timestamp":1607098356,"output":"-338c212c55f6, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098356,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:36.624 [info] block_id: 13e21497-e50a-4c"},{"event":"cmd_output","timestamp":1607098356,"output":"d9-9301-338c212c55f6, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098356,"output":"Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:36.632 [info] ppl_id: cfab4a23-a"},{"event":"cmd_output","timestamp":1607098356,"output":"f72-4148-91d7-20a516d94a18, block_id: 13e21497-e50a-4cd9-9301-338c212c55f6, type: PplBlocks, block_i"},{"event":"cmd_output","timestamp":1607098356,"output":"ndex: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loop"},{"event":"cmd_output","timestamp":1607098356,"output":"er.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:36.634 [info] ppl_id: 3e2dd4e2-3726-4b8f-a5"},{"event":"cmd_output","timestamp":1607098356,"output":"a5-c77e1a428fff, type: PplRequests, event: persisted source_args for pipeline: 3e2dd4e2-3726-4b8f-a5"},{"event":"cmd_output","timestamp":1607098356,"output":"a5-c77e1a428fff, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098356,"output":"m\u001b[22m\n16:12:36.638 [info] ppl_id: 3e2dd4e2-3726-4b8f-a5a5-c77e1a428fff, type: PplSubInits, state:"},{"event":"cmd_output","timestamp":1607098356,"output":" fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chang"},{"event":"cmd_output","timestamp":1607098356,"output":"e/1(L90), \n\u001b[0m\u001b[22m\n16:12:36.642 [info] ppl_id: cfab4a23-af72-4148-91d7-20a516d94a18, type: Ppls"},{"event":"cmd_output","timestamp":1607098356,"output":", state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM."},{"event":"cmd_output","timestamp":1607098356,"output":"Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:36.652 [info] ppl_id: 3e2dd4e2-3726-4b8f-a5a5-c77e"},{"event":"cmd_output","timestamp":1607098356,"output":"1a428fff, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098356,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:36.667 [info] ppl_id: 3e2dd4e2-"},{"event":"cmd_output","timestamp":1607098356,"output":"3726-4b8f-a5a5-c77e1a428fff, type: PplRequests, event: persisted definition for request with request"},{"event":"cmd_output","timestamp":1607098356,"output":"_token: b24dedc0-6c5d-4ce8-8535-63ed7f949efb, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQuerie"},{"event":"cmd_output","timestamp":1607098356,"output":"s.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:36.678 [info] Queue persisted: {:ok, %Ppl.Queues.Mod"},{"event":"cmd_output","timestamp":1607098356,"output":"el.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:12:36.67"},{"event":"cmd_output","timestamp":1607098356,"output":"7737], name: \"master-.semaphore/semaphore.yml\", organization_id: \"fa2af97f-2bb9-474f-a3bc-39c12a5d37"},{"event":"cmd_output","timestamp":1607098356,"output":"34\", project_id: \"456\", queue_id: \"85b6a2af-c7ff-4bcf-9811-b92098f6e821\", scope: \"project\", updated_"},{"event":"cmd_output","timestamp":1607098356,"output":"at: ~N[2020-12-04 16:12:36.677746], user_generated: false}}\n\u001b[0m\u001b[22m\n16:12:36.681 [info] event: "},{"event":"cmd_output","timestamp":1607098356,"output":"created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098356,"output":":12:36.681 [info] ppl_id: 3e2dd4e2-3726-4b8f-a5a5-c77e1a428fff, type: PplBlocks, block_index: 0, st"},{"event":"cmd_output","timestamp":1607098356,"output":"ate: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.Regu"},{"event":"cmd_output","timestamp":1607098356,"output":"larInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:36.682 [info] ppl_id: 3e2dd4e2-3726-4b8f-a5a5-c77e"},{"event":"cmd_output","timestamp":1607098356,"output":"1a428fff, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098356,"output":" origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:36.691 [info] ppl_id: 3"},{"event":"cmd_output","timestamp":1607098356,"output":"e2dd4e2-3726-4b8f-a5a5-c77e1a428fff, type: PplBlocks, block_index: 0, state: waiting, event: exit_sc"},{"event":"cmd_output","timestamp":1607098356,"output":"heduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098356,"output":":12:36.692 [info] ppl_id: 3e2dd4e2-3726-4b8f-a5a5-c77e1a428fff, type: Ppls, state: pending, event: "},{"event":"cmd_output","timestamp":1607098356,"output":"exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098356,"output":"22m\n16:12:36.696 [info] ppl_id: 3e2dd4e2-3726-4b8f-a5a5-c77e1a428fff, type: Ppls, state: queuing, "},{"event":"cmd_output","timestamp":1607098356,"output":"event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \r"},{"event":"cmd_output","timestamp":1607098356,"output":"\n\u001b[0m\u001b[22m\n16:12:36.703 [info] ppl_id: 2bb1ebfa-0522-4b3d-82b6-a46f9282e46e, type: Ppls, state: ru"},{"event":"cmd_output","timestamp":1607098356,"output":"nning, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1("},{"event":"cmd_output","timestamp":1607098356,"output":"L90), \n\u001b[0m\u001b[22m\n16:12:36.707 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeli"},{"event":"cmd_output","timestamp":1607098356,"output":"ne: \"2bb1ebfa-0522-4b3d-82b6-a46f9282e46e\"\n\u001b[0m\u001b[22m\n16:12:36.710 [info] block_id: 17cb60c9-d924-"},{"event":"cmd_output","timestamp":1607098356,"output":"495f-95c4-be1c338c40d9, type: BlockRequests, event: persisted block run request from ppl 2bb1ebfa-05"},{"event":"cmd_output","timestamp":1607098356,"output":"22-4b3d-82b6-a46f9282e46e for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries"},{"event":"cmd_output","timestamp":1607098356,"output":".process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:36.713 [info] block_id: 17cb60c9-d924-495f-95c4-be1c33"},{"event":"cmd_output","timestamp":1607098356,"output":"8c40d9, type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Bl"},{"event":"cmd_output","timestamp":1607098356,"output":"ock.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:36.714 [info] Block 0 of pipeline "},{"event":"cmd_output","timestamp":1607098356,"output":"with id: 2bb1ebfa-0522-4b3d-82b6-a46f9282e46e scheduled in block service with id: : \"17cb60c9-d924-4"},{"event":"cmd_output","timestamp":1607098356,"output":"95f-95c4-be1c338c40d9\"\n\u001b[0m\u001b[22m\n16:12:36.716 [info] ppl_id: 2bb1ebfa-0522-4b3d-82b6-a46f9282e46e"},{"event":"cmd_output","timestamp":1607098356,"output":", type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098356,"output":": Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:36.719 [info] block_id: 17cb60"},{"event":"cmd_output","timestamp":1607098356,"output":"c9-d924-495f-95c4-be1c338c40d9, type: BlockRequests, event: persisted build and sub_ppl details for "},{"event":"cmd_output","timestamp":1607098356,"output":"block_request: 17cb60c9-d924-495f-95c4-be1c338c40d9, origin: Elixir.Block.BlockRequests.Model.BlockR"},{"event":"cmd_output","timestamp":1607098356,"output":"equestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:36.721 [info] block_id: 17cb60c9-d924-495f-9"},{"event":"cmd_output","timestamp":1607098356,"output":"5c4-be1c338c40d9, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Blo"},{"event":"cmd_output","timestamp":1607098356,"output":"ck.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:36.723 [info] block_id: "},{"event":"cmd_output","timestamp":1607098356,"output":"17cb60c9-d924-495f-95c4-be1c338c40d9, type: Blocks, state: running, event: exit_scheduling, recovery"},{"event":"cmd_output","timestamp":1607098356,"output":"_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:36.734 [info] "},{"event":"cmd_output","timestamp":1607098356,"output":" block_id: 17cb60c9-d924-495f-95c4-be1c338c40d9, type: Tasks, state: running, event: exit_scheduling"},{"event":"cmd_output","timestamp":1607098356,"output":", recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:36.7"},{"event":"cmd_output","timestamp":1607098356,"output":"36 [info] ppl_id: 3e2dd4e2-3726-4b8f-a5a5-c77e1a428fff, type: Ppls, state: running, event: exit_sch"},{"event":"cmd_output","timestamp":1607098356,"output":"eduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098356,"output":"12:36.742 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"3e2dd4e2-3726-4b8"},{"event":"cmd_output","timestamp":1607098356,"output":"f-a5a5-c77e1a428fff\"\n\u001b[0m\u001b[22m\n16:12:36.750 [info] block_id: 44c03c28-d3de-496f-9c0d-758cf130924e"},{"event":"cmd_output","timestamp":1607098356,"output":", type: BlockRequests, event: persisted block run request from ppl 3e2dd4e2-3726-4b8f-a5a5-c77e1a428"},{"event":"cmd_output","timestamp":1607098356,"output":"fff for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L3"},{"event":"cmd_output","timestamp":1607098356,"output":"5), \n\u001b[0m\u001b[22m\n16:12:36.751 [info] ppl_id: 86254150-22ce-4a48-82d5-4a5c67f97470, type: PplRequest"},{"event":"cmd_output","timestamp":1607098356,"output":"s, event: persisted source_args for pipeline: 86254150-22ce-4a48-82d5-4a5c67f97470, origin: Elixir.P"},{"event":"cmd_output","timestamp":1607098356,"output":"pl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:36.752 [info] bloc"},{"event":"cmd_output","timestamp":1607098356,"output":"k_id: 44c03c28-d3de-496f-9c0d-758cf130924e, type: Blocks, state: initializing, event: initializing, "},{"event":"cmd_output","timestamp":1607098356,"output":"recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12"},{"event":"cmd_output","timestamp":1607098356,"output":":36.754 [info] Block 0 of pipeline with id: 3e2dd4e2-3726-4b8f-a5a5-c77e1a428fff scheduled in block"},{"event":"cmd_output","timestamp":1607098356,"output":" service with id: : \"44c03c28-d3de-496f-9c0d-758cf130924e\"\n\u001b[0m\u001b[22m\n16:12:36.755 [info] ppl_id: "},{"event":"cmd_output","timestamp":1607098356,"output":"86254150-22ce-4a48-82d5-4a5c67f97470, type: PplSubInits, state: fetching, event: exit_scheduling, re"},{"event":"cmd_output","timestamp":1607098356,"output":"covery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:36.756 ["},{"event":"cmd_output","timestamp":1607098356,"output":"info] ppl_id: 3e2dd4e2-3726-4b8f-a5a5-c77e1a428fff, type: PplBlocks, block_index: 0, state: running"},{"event":"cmd_output","timestamp":1607098356,"output":", event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90),"},{"event":"cmd_output","timestamp":1607098356,"output":" \n\u001b[0m\u001b[22m\n16:12:36.758 [info] block_id: 44c03c28-d3de-496f-9c0d-758cf130924e, type: BlockReques"},{"event":"cmd_output","timestamp":1607098356,"output":"ts, event: persisted build and sub_ppl details for block_request: 44c03c28-d3de-496f-9c0d-758cf13092"},{"event":"cmd_output","timestamp":1607098356,"output":"4e, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098356,"output":"16:12:36.760 [info] block_id: 44c03c28-d3de-496f-9c0d-758cf130924e, type: Tasks, state: pending, ev"},{"event":"cmd_output","timestamp":1607098356,"output":"ent: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1("},{"event":"cmd_output","timestamp":1607098356,"output":"L167), \n\u001b[0m\u001b[22m\n16:12:36.763 [info] block_id: 44c03c28-d3de-496f-9c0d-758cf130924e, type: Block"},{"event":"cmd_output","timestamp":1607098356,"output":"s, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_sta"},{"event":"cmd_output","timestamp":1607098356,"output":"te_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:36.777 [info] block_id: 44c03c28-d3de-496f-9c0d-758cf130924e, "},{"event":"cmd_output","timestamp":1607098356,"output":"type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Im"},{"event":"cmd_output","timestamp":1607098356,"output":"pl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:36.779 [info] ppl_id: 86254150-22ce-4a48-82d5-4a5c67"},{"event":"cmd_output","timestamp":1607098356,"output":"f97470, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: E"},{"event":"cmd_output","timestamp":1607098356,"output":"lixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:36.798 [info] ppl_id: 86254150-22"},{"event":"cmd_output","timestamp":1607098356,"output":"ce-4a48-82d5-4a5c67f97470, type: PplRequests, event: persisted definition for request with request_t"},{"event":"cmd_output","timestamp":1607098356,"output":"oken: 380f146a-f122-472b-8129-b10eee8a578c, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries."},{"event":"cmd_output","timestamp":1607098356,"output":"insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:36.801 [info] event: created, origin: Elixir.Ppl.PplSu"},{"event":"cmd_output","timestamp":1607098356,"output":"bInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:36.801 [info] ppl_id: 862541"},{"event":"cmd_output","timestamp":1607098356,"output":"50-22ce-4a48-82d5-4a5c67f97470, type: PplBlocks, block_index: 0, state: initializing, event: created"},{"event":"cmd_output","timestamp":1607098356,"output":", recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b"},{"event":"cmd_output","timestamp":1607098356,"output":"[0m\u001b[22m\n16:12:36.803 [info] ppl_id: 86254150-22ce-4a48-82d5-4a5c67f97470, type: PplSubInits, stat"},{"event":"cmd_output","timestamp":1607098356,"output":"e: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.l"},{"event":"cmd_output","timestamp":1607098356,"output":"og_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:36.809 [info] ppl_id: 86254150-22ce-4a48-82d5-4a5c67f974"},{"event":"cmd_output","timestamp":1607098356,"output":"70, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM"},{"event":"cmd_output","timestamp":1607098356,"output":".Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:36.810 [info] ppl_id: 86254150-22ce-4a48-82d5-4a5"},{"event":"cmd_output","timestamp":1607098356,"output":"c67f97470, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: "},{"event":"cmd_output","timestamp":1607098356,"output":"0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:36.815 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098356,"output":" 86254150-22ce-4a48-82d5-4a5c67f97470, type: Ppls, state: queuing, event: exit_scheduling, recovery_"},{"event":"cmd_output","timestamp":1607098356,"output":"count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:36.834 [info] "},{"event":"cmd_output","timestamp":1607098356,"output":"block_id: 17cb60c9-d924-495f-95c4-be1c338c40d9, type: Tasks, state: done, event: exit_scheduling, re"},{"event":"cmd_output","timestamp":1607098356,"output":"covery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:36.838 ["},{"event":"cmd_output","timestamp":1607098356,"output":"info] block_id: 17cb60c9-d924-495f-95c4-be1c338c40d9, type: Blocks, state: done, event: exit_schedu"},{"event":"cmd_output","timestamp":1607098356,"output":"ling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:"},{"event":"cmd_output","timestamp":1607098356,"output":"36.845 [info] ppl_id: 2bb1ebfa-0522-4b3d-82b6-a46f9282e46e, block_id: 17cb60c9-d924-495f-95c4-be1c3"},{"event":"cmd_output","timestamp":1607098356,"output":"38c40d9, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, recov"},{"event":"cmd_output","timestamp":1607098356,"output":"ery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:36.858 [inf"},{"event":"cmd_output","timestamp":1607098356,"output":"o] ppl_id: 2bb1ebfa-0522-4b3d-82b6-a46f9282e46e, type: Ppls, state: done, result: passed, event: ex"},{"event":"cmd_output","timestamp":1607098356,"output":"it_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098356,"output":"m\n16:12:36.862 [info] ppl_id: 6f84c893-6c7d-4362-9d68-86013033d134, type: PplRequests, event: pers"},{"event":"cmd_output","timestamp":1607098356,"output":"isted source_args for pipeline: 6f84c893-6c7d-4362-9d68-86013033d134, origin: Elixir.Ppl.PplRequests"},{"event":"cmd_output","timestamp":1607098356,"output":".Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:36.863 [info] ppl_id: 6f84c893-6"},{"event":"cmd_output","timestamp":1607098356,"output":"c7d-4362-9d68-86013033d134, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_cou"},{"event":"cmd_output","timestamp":1607098356,"output":"nt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:36.878 [info] ppl"},{"event":"cmd_output","timestamp":1607098356,"output":"_id: 6f84c893-6c7d-4362-9d68-86013033d134, type: PplSubInits, state: regular_init, event: exit_sched"},{"event":"cmd_output","timestamp":1607098356,"output":"uling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12"},{"event":"cmd_output","timestamp":1607098356,"output":":36.894 [info] ppl_id: 6f84c893-6c7d-4362-9d68-86013033d134, type: PplRequests, event: persisted de"},{"event":"cmd_output","timestamp":1607098356,"output":"finition for request with request_token: 01fcbe26-c909-47e6-bbba-ad02881c8452, origin: Elixir.Ppl.Pp"},{"event":"cmd_output","timestamp":1607098356,"output":"lRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:36.896 [info] Queue"},{"event":"cmd_output","timestamp":1607098356,"output":" persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inser"},{"event":"cmd_output","timestamp":1607098356,"output":"ted_at: ~N[2020-12-04 16:12:36.895317], name: \"dev-.semaphore/semaphore.yml\", organization_id: \"995c"},{"event":"cmd_output","timestamp":1607098356,"output":"6319-e331-4b27-9e7d-58da4df35792\", project_id: \"123\", queue_id: \"dfa723cb-6bd4-43d7-bf73-15692ff4b18"},{"event":"cmd_output","timestamp":1607098356,"output":"7\", scope: \"project\", updated_at: ~N[2020-12-04 16:12:36.895326], user_generated: false}}\n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098356,"output":"\n16:12:36.904 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.al"},{"event":"cmd_output","timestamp":1607098356,"output":"l_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:36.904 [info] ppl_id: 6f84c893-6c7d-4362-9d68-86013033d134, type:"},{"event":"cmd_output","timestamp":1607098356,"output":" PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.P"},{"event":"cmd_output","timestamp":1607098356,"output":"pl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:36.906 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098356,"output":": 6f84c893-6c7d-4362-9d68-86013033d134, type: PplSubInits, state: done, result: passed, event: exit_"},{"event":"cmd_output","timestamp":1607098356,"output":"scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098356,"output":"16:12:36.911 [info] ppl_id: 6f84c893-6c7d-4362-9d68-86013033d134, type: Ppls, state: pending, event"},{"event":"cmd_output","timestamp":1607098356,"output":": exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098356,"output":"\u001b[22m\n16:12:36.912 [info] ppl_id: 6f84c893-6c7d-4362-9d68-86013033d134, type: PplBlocks, block_ind"},{"event":"cmd_output","timestamp":1607098356,"output":"ex: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098356,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:36.917 [info] ppl_id: 6f84c893-6c7d-4362-9d68-86013033d134"},{"event":"cmd_output","timestamp":1607098356,"output":", type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.I"},{"event":"cmd_output","timestamp":1607098356,"output":"mpl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:36.927 [info] ppl_id: 6f84c893-6c7d-4362-9d68-86013"},{"event":"cmd_output","timestamp":1607098356,"output":"033d134, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loope"},{"event":"cmd_output","timestamp":1607098356,"output":"r.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:36.931 [info] PplBlocks WaitingState STM is "},{"event":"cmd_output","timestamp":1607098356,"output":"scheduling block 0 from pipeline: \"6f84c893-6c7d-4362-9d68-86013033d134\"\n\u001b[0m\u001b[22m\n16:12:36.935 [i"},{"event":"cmd_output","timestamp":1607098356,"output":"nfo] block_id: e4e0aa0c-a706-49a1-bc91-0b1a392f2c5d, type: BlockRequests, event: persisted block ru"},{"event":"cmd_output","timestamp":1607098356,"output":"n request from ppl 6f84c893-6c7d-4362-9d68-86013033d134 for block 0, origin: Elixir.Block.BlockReque"},{"event":"cmd_output","timestamp":1607098356,"output":"sts.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:36.936 [info] block_id: "},{"event":"cmd_output","timestamp":1607098356,"output":"e4e0aa0c-a706-49a1-bc91-0b1a392f2c5d, type: Blocks, state: initializing, event: initializing, recove"},{"event":"cmd_output","timestamp":1607098356,"output":"ry_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:36.93"},{"event":"cmd_output","timestamp":1607098356,"output":"9 [info] Block 0 of pipeline with id: 6f84c893-6c7d-4362-9d68-86013033d134 scheduled in block servi"},{"event":"cmd_output","timestamp":1607098356,"output":"ce with id: : \"e4e0aa0c-a706-49a1-bc91-0b1a392f2c5d\"\n\u001b[0m\u001b[22m\n16:12:36.943 [info] ppl_id: 6f84c8"},{"event":"cmd_output","timestamp":1607098356,"output":"93-6c7d-4362-9d68-86013033d134, type: PplBlocks, block_index: 0, state: running, event: exit_schedul"},{"event":"cmd_output","timestamp":1607098356,"output":"ing, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:3"},{"event":"cmd_output","timestamp":1607098356,"output":"6.944 [info] block_id: e4e0aa0c-a706-49a1-bc91-0b1a392f2c5d, type: BlockRequests, event: persisted "},{"event":"cmd_output","timestamp":1607098356,"output":"build and sub_ppl details for block_request: e4e0aa0c-a706-49a1-bc91-0b1a392f2c5d, origin: Elixir.Bl"},{"event":"cmd_output","timestamp":1607098356,"output":"ock.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:36.945 [info] "},{"event":"cmd_output","timestamp":1607098356,"output":"block_id: 44c03c28-d3de-496f-9c0d-758cf130924e, type: Tasks, state: done, event: exit_scheduling, re"},{"event":"cmd_output","timestamp":1607098356,"output":"covery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:36.949 ["},{"event":"cmd_output","timestamp":1607098356,"output":"info] block_id: e4e0aa0c-a706-49a1-bc91-0b1a392f2c5d, type: Tasks, state: pending, event: created, "},{"event":"cmd_output","timestamp":1607098356,"output":"recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098356,"output":"[22m\n16:12:36.951 [info] block_id: e4e0aa0c-a706-49a1-bc91-0b1a392f2c5d, type: Blocks, state: runn"},{"event":"cmd_output","timestamp":1607098356,"output":"ing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L9"},{"event":"cmd_output","timestamp":1607098356,"output":"0), \n\u001b[0m\u001b[22m\n16:12:36.952 [info] block_id: 44c03c28-d3de-496f-9c0d-758cf130924e, type: Blocks, "},{"event":"cmd_output","timestamp":1607098356,"output":"state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_cha"},{"event":"cmd_output","timestamp":1607098356,"output":"nge/1(L90), \n\u001b[0m\u001b[22m\n16:12:36.969 [info] block_id: e4e0aa0c-a706-49a1-bc91-0b1a392f2c5d, type: "},{"event":"cmd_output","timestamp":1607098356,"output":"Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098356,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:36.969 [info] ppl_id: 3e2dd4e2-3726-4b8f-a5a5-c77e1a428fff"},{"event":"cmd_output","timestamp":1607098356,"output":", block_id: 44c03c28-d3de-496f-9c0d-758cf130924e, type: PplBlocks, block_index: 0, state: done, resu"},{"event":"cmd_output","timestamp":1607098356,"output":"lt: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chan"},{"event":"cmd_output","timestamp":1607098356,"output":"ge/1(L90), \n\u001b[0m\u001b[22m\n16:12:36.976 [info] ppl_id: 20f8d23c-9481-4cf7-b60e-e5967aaa7824, type: Ppl"},{"event":"cmd_output","timestamp":1607098356,"output":"Requests, event: persisted source_args for pipeline: 20f8d23c-9481-4cf7-b60e-e5967aaa7824, origin: E"},{"event":"cmd_output","timestamp":1607098356,"output":"lixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:36.978 [info"},{"event":"cmd_output","timestamp":1607098356,"output":"] ppl_id: 3e2dd4e2-3726-4b8f-a5a5-c77e1a428fff, type: Ppls, state: done, result: passed, event: exi"},{"event":"cmd_output","timestamp":1607098356,"output":"t_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098356,"output":"\n16:12:36.978 [info] ppl_id: 20f8d23c-9481-4cf7-b60e-e5967aaa7824, type: PplSubInits, state: fetch"},{"event":"cmd_output","timestamp":1607098356,"output":"ing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L9"},{"event":"cmd_output","timestamp":1607098356,"output":"0), \n\u001b[0m\u001b[22m\n16:12:36.995 [info] ppl_id: 20f8d23c-9481-4cf7-b60e-e5967aaa7824, type: PplSubInit"},{"event":"cmd_output","timestamp":1607098356,"output":"s, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.lo"},{"event":"cmd_output","timestamp":1607098357,"output":"g_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:37.016 [info] ppl_id: 20f8d23c-9481-4cf7-b60e-e5967aaa782"},{"event":"cmd_output","timestamp":1607098357,"output":"4, type: PplRequests, event: persisted definition for request with request_token: 5de0d2d1-66bd-4f3f"},{"event":"cmd_output","timestamp":1607098357,"output":"-a298-5e791ccc5820, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76)"},{"event":"cmd_output","timestamp":1607098357,"output":", \n\u001b[0m\u001b[22m\n16:12:37.021 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.Regula"},{"event":"cmd_output","timestamp":1607098357,"output":"rInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:37.021 [info] ppl_id: 20f8d23c-9481-4cf7-b60e-e5967a"},{"event":"cmd_output","timestamp":1607098357,"output":"aa7824, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098357,"output":"gin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:37.022 ["},{"event":"cmd_output","timestamp":1607098357,"output":"info] ppl_id: 20f8d23c-9481-4cf7-b60e-e5967aaa7824, type: PplSubInits, state: done, result: passed,"},{"event":"cmd_output","timestamp":1607098357,"output":" event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), "},{"event":"cmd_output","timestamp":1607098357,"output":"\n\u001b[0m\u001b[22m\n16:12:37.030 [info] ppl_id: 20f8d23c-9481-4cf7-b60e-e5967aaa7824, type: Ppls, state: p"},{"event":"cmd_output","timestamp":1607098357,"output":"ending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1"},{"event":"cmd_output","timestamp":1607098357,"output":"(L90), \n\u001b[0m\u001b[22m\n16:12:37.034 [info] ppl_id: 20f8d23c-9481-4cf7-b60e-e5967aaa7824, type: PplBloc"},{"event":"cmd_output","timestamp":1607098357,"output":"ks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper"},{"event":"cmd_output","timestamp":1607098357,"output":".STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:37.047 [info] ppl_id: 20f8d23c-9481-4cf7-b60e"},{"event":"cmd_output","timestamp":1607098357,"output":"-e5967aaa7824, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098357,"output":".Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:37.056 [info] block_id: e4e0aa0c-a706-"},{"event":"cmd_output","timestamp":1607098357,"output":"49a1-bc91-0b1a392f2c5d, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098357,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:37.059 [info] ppl_id: 86254150-"},{"event":"cmd_output","timestamp":1607098357,"output":"22ce-4a48-82d5-4a5c67f97470, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098357,"output":"origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:37.061 [info] block_id: "},{"event":"cmd_output","timestamp":1607098357,"output":"e4e0aa0c-a706-49a1-bc91-0b1a392f2c5d, type: Blocks, state: done, event: exit_scheduling, recovery_co"},{"event":"cmd_output","timestamp":1607098357,"output":"unt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:37.068 [info] Pp"},{"event":"cmd_output","timestamp":1607098357,"output":"lBlocks WaitingState STM is scheduling block 0 from pipeline: \"86254150-22ce-4a48-82d5-4a5c67f97470\""},{"event":"cmd_output","timestamp":1607098357,"output":"\n\u001b[0m\u001b[22m\n16:12:37.073 [info] block_id: f5c1c3c7-db04-45df-bc85-cf26fff5b429, type: BlockRequest"},{"event":"cmd_output","timestamp":1607098357,"output":"s, event: persisted block run request from ppl 86254150-22ce-4a48-82d5-4a5c67f97470 for block 0, ori"},{"event":"cmd_output","timestamp":1607098357,"output":"gin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098357,"output":"12:37.074 [info] ppl_id: 6f84c893-6c7d-4362-9d68-86013033d134, block_id: e4e0aa0c-a706-49a1-bc91-0b"},{"event":"cmd_output","timestamp":1607098357,"output":"1a392f2c5d, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, re"},{"event":"cmd_output","timestamp":1607098357,"output":"covery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:37.076 ["},{"event":"cmd_output","timestamp":1607098357,"output":"info] block_id: f5c1c3c7-db04-45df-bc85-cf26fff5b429, type: Blocks, state: initializing, event: ini"},{"event":"cmd_output","timestamp":1607098357,"output":"tializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098357,"output":"[22m\n16:12:37.078 [info] Block 0 of pipeline with id: 86254150-22ce-4a48-82d5-4a5c67f97470 schedul"},{"event":"cmd_output","timestamp":1607098357,"output":"ed in block service with id: : \"f5c1c3c7-db04-45df-bc85-cf26fff5b429\"\n\u001b[0m\u001b[22m\n16:12:37.082 [info"},{"event":"cmd_output","timestamp":1607098357,"output":"] block_id: f5c1c3c7-db04-45df-bc85-cf26fff5b429, type: BlockRequests, event: persisted build and s"},{"event":"cmd_output","timestamp":1607098357,"output":"ub_ppl details for block_request: f5c1c3c7-db04-45df-bc85-cf26fff5b429, origin: Elixir.Block.BlockRe"},{"event":"cmd_output","timestamp":1607098357,"output":"quests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:37.082 [info] ppl_id: 862"},{"event":"cmd_output","timestamp":1607098357,"output":"54150-22ce-4a48-82d5-4a5c67f97470, type: PplBlocks, block_index: 0, state: running, event: exit_sche"},{"event":"cmd_output","timestamp":1607098357,"output":"duling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098357,"output":"2:37.084 [info] block_id: f5c1c3c7-db04-45df-bc85-cf26fff5b429, type: Tasks, state: pending, event:"},{"event":"cmd_output","timestamp":1607098357,"output":" created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167"},{"event":"cmd_output","timestamp":1607098357,"output":"), \n\u001b[0m\u001b[22m\n16:12:37.087 [info] ppl_id: 1f904094-47e5-4cdb-95b8-73e75430e431, type: PplRequests"},{"event":"cmd_output","timestamp":1607098357,"output":", event: persisted source_args for pipeline: 1f904094-47e5-4cdb-95b8-73e75430e431, origin: Elixir.Pp"},{"event":"cmd_output","timestamp":1607098357,"output":"l.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:37.090 [info] block"},{"event":"cmd_output","timestamp":1607098357,"output":"_id: f5c1c3c7-db04-45df-bc85-cf26fff5b429, type: Blocks, state: running, event: exit_scheduling, rec"},{"event":"cmd_output","timestamp":1607098357,"output":"overy_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:37.092 [i"},{"event":"cmd_output","timestamp":1607098357,"output":"nfo] ppl_id: 1f904094-47e5-4cdb-95b8-73e75430e431, type: PplSubInits, state: fetching, event: exit_"},{"event":"cmd_output","timestamp":1607098357,"output":"scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098357,"output":"16:12:37.095 [info] ppl_id: 6f84c893-6c7d-4362-9d68-86013033d134, type: Ppls, state: done, result: "},{"event":"cmd_output","timestamp":1607098357,"output":"passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1"},{"event":"cmd_output","timestamp":1607098357,"output":"(L90), \n\u001b[0m\u001b[22m\n16:12:37.105 [info] block_id: f5c1c3c7-db04-45df-bc85-cf26fff5b429, type: Tasks"},{"event":"cmd_output","timestamp":1607098357,"output":", state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_stat"},{"event":"cmd_output","timestamp":1607098357,"output":"e_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:37.116 [info] ppl_id: 1f904094-47e5-4cdb-95b8-73e75430e431, typ"},{"event":"cmd_output","timestamp":1607098357,"output":"e: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loope"},{"event":"cmd_output","timestamp":1607098357,"output":"r.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:37.132 [info] ppl_id: 1f904094-47e5-4cdb-95b"},{"event":"cmd_output","timestamp":1607098357,"output":"8-73e75430e431, type: PplRequests, event: persisted definition for request with request_token: 1c087"},{"event":"cmd_output","timestamp":1607098357,"output":"bbb-9dcb-45bd-9ee5-dc018741a655, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_defi"},{"event":"cmd_output","timestamp":1607098357,"output":"nition/3(L76), \n\u001b[0m\u001b[22m\n16:12:37.139 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__m"},{"event":"cmd_output","timestamp":1607098357,"output":"eta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:12:37.133684], name: "},{"event":"cmd_output","timestamp":1607098357,"output":"\"dev-.semaphore/semaphore.yml\", organization_id: \"3d6f6885-2eb3-488d-8dc4-3b6bbdafe357\", project_id:"},{"event":"cmd_output","timestamp":1607098357,"output":" \"456\", queue_id: \"45d160ba-e16a-487e-aeb9-b68451ee595c\", scope: \"project\", updated_at: ~N[2020-12-0"},{"event":"cmd_output","timestamp":1607098357,"output":"4 16:12:37.133692], user_generated: false}}\n\u001b[0m\u001b[22m\n16:12:37.142 [info] event: created, origin:"},{"event":"cmd_output","timestamp":1607098357,"output":" Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:37.142 [info"},{"event":"cmd_output","timestamp":1607098357,"output":"] ppl_id: 1f904094-47e5-4cdb-95b8-73e75430e431, type: PplBlocks, block_index: 0, state: initializin"},{"event":"cmd_output","timestamp":1607098357,"output":"g, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all"},{"event":"cmd_output","timestamp":1607098357,"output":"_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:37.146 [info] ppl_id: 1f904094-47e5-4cdb-95b8-73e75430e431, type: "},{"event":"cmd_output","timestamp":1607098357,"output":"PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098357,"output":"Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:37.153 [info] ppl_id: 1f904094-47e5-4cd"},{"event":"cmd_output","timestamp":1607098357,"output":"b-95b8-73e75430e431, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recove"},{"event":"cmd_output","timestamp":1607098357,"output":"ry_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:37.154 [info"},{"event":"cmd_output","timestamp":1607098357,"output":"] ppl_id: 1f904094-47e5-4cdb-95b8-73e75430e431, type: Ppls, state: pending, event: exit_scheduling,"},{"event":"cmd_output","timestamp":1607098357,"output":" recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:37.15"},{"event":"cmd_output","timestamp":1607098357,"output":"9 [info] ppl_id: 1f904094-47e5-4cdb-95b8-73e75430e431, type: Ppls, state: queuing, event: exit_sche"},{"event":"cmd_output","timestamp":1607098357,"output":"duling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098357,"output":"2:37.167 [info] block_id: f5c1c3c7-db04-45df-bc85-cf26fff5b429, type: Tasks, state: done, event: ex"},{"event":"cmd_output","timestamp":1607098357,"output":"it_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098357,"output":"m\n16:12:37.167 [info] ppl_id: 1f904094-47e5-4cdb-95b8-73e75430e431, type: Ppls, state: running, ev"},{"event":"cmd_output","timestamp":1607098357,"output":"ent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b"},{"event":"cmd_output","timestamp":1607098357,"output":"[0m\u001b[22m\n16:12:37.172 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"1f90"},{"event":"cmd_output","timestamp":1607098357,"output":"4094-47e5-4cdb-95b8-73e75430e431\"\n\u001b[0m\u001b[22m\n16:12:37.175 [info] block_id: f5c1c3c7-db04-45df-bc85"},{"event":"cmd_output","timestamp":1607098357,"output":"-cf26fff5b429, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098357,"output":"Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:37.176 [info] ppl_id: 20f8d23c-9481-4cf"},{"event":"cmd_output","timestamp":1607098357,"output":"7-b60e-e5967aaa7824, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098357,"output":"Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:37.179 [info] block_id: d1b56592"},{"event":"cmd_output","timestamp":1607098357,"output":"-0677-41de-b73e-726f1b723466, type: BlockRequests, event: persisted block run request from ppl 1f904"},{"event":"cmd_output","timestamp":1607098357,"output":"094-47e5-4cdb-95b8-73e75430e431 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQ"},{"event":"cmd_output","timestamp":1607098357,"output":"ueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:37.181 [info] block_id: d1b56592-0677-41de-b73e-"},{"event":"cmd_output","timestamp":1607098357,"output":"726f1b723466, type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098357,"output":"xir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:37.183 [info] Block 0 of pip"},{"event":"cmd_output","timestamp":1607098357,"output":"eline with id: 1f904094-47e5-4cdb-95b8-73e75430e431 scheduled in block service with id: : \"d1b56592-"},{"event":"cmd_output","timestamp":1607098357,"output":"0677-41de-b73e-726f1b723466\"\n\u001b[0m\u001b[22m\n16:12:37.185 [info] ppl_id: 86254150-22ce-4a48-82d5-4a5c67"},{"event":"cmd_output","timestamp":1607098357,"output":"f97470, block_id: f5c1c3c7-db04-45df-bc85-cf26fff5b429, type: PplBlocks, block_index: 0, state: done"},{"event":"cmd_output","timestamp":1607098357,"output":", result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_stat"},{"event":"cmd_output","timestamp":1607098357,"output":"e_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:37.188 [info] block_id: d1b56592-0677-41de-b73e-726f1b723466, t"},{"event":"cmd_output","timestamp":1607098357,"output":"ype: BlockRequests, event: persisted build and sub_ppl details for block_request: d1b56592-0677-41de"},{"event":"cmd_output","timestamp":1607098357,"output":"-b73e-726f1b723466, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41"},{"event":"cmd_output","timestamp":1607098357,"output":"), \n\u001b[0m\u001b[22m\n16:12:37.188 [info] ppl_id: 1f904094-47e5-4cdb-95b8-73e75430e431, type: PplBlocks, "},{"event":"cmd_output","timestamp":1607098357,"output":"block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM"},{"event":"cmd_output","timestamp":1607098357,"output":".Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:37.191 [info] block_id: d1b56592-0677-41de-b73e-7"},{"event":"cmd_output","timestamp":1607098357,"output":"26f1b723466, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Bl"},{"event":"cmd_output","timestamp":1607098357,"output":"ocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:37.193 [info] block_id: d1b56"},{"event":"cmd_output","timestamp":1607098357,"output":"592-0677-41de-b73e-726f1b723466, type: Blocks, state: running, event: exit_scheduling, recovery_coun"},{"event":"cmd_output","timestamp":1607098357,"output":"t: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:37.194 [info] PplB"},{"event":"cmd_output","timestamp":1607098357,"output":"locks WaitingState STM is scheduling block 0 from pipeline: \"20f8d23c-9481-4cf7-b60e-e5967aaa7824\"\n"},{"event":"cmd_output","timestamp":1607098357,"output":"\u001b[0m\u001b[22m\n16:12:37.203 [info] ppl_id: 780e101c-f6e8-412d-9d39-bc934d42103a, type: PplRequests, eve"},{"event":"cmd_output","timestamp":1607098357,"output":"nt: persisted source_args for pipeline: 780e101c-f6e8-412d-9d39-bc934d42103a, origin: Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098357,"output":"Requests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:37.207 [info] ppl_id: 78"},{"event":"cmd_output","timestamp":1607098357,"output":"0e101c-f6e8-412d-9d39-bc934d42103a, type: PplSubInits, state: fetching, event: exit_scheduling, reco"},{"event":"cmd_output","timestamp":1607098357,"output":"very_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:37.208 [in"},{"event":"cmd_output","timestamp":1607098357,"output":"fo] ppl_id: 86254150-22ce-4a48-82d5-4a5c67f97470, type: Ppls, state: done, result: passed, event: e"},{"event":"cmd_output","timestamp":1607098357,"output":"xit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098357,"output":"2m\n16:12:37.208 [info] block_id: b126edbc-6ada-4b3b-9318-de4feb206c20, type: BlockRequests, event:"},{"event":"cmd_output","timestamp":1607098357,"output":" persisted block run request from ppl 20f8d23c-9481-4cf7-b60e-e5967aaa7824 for block 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098357,"output":"ir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:37.210"},{"event":"cmd_output","timestamp":1607098357,"output":" [info] block_id: b126edbc-6ada-4b3b-9318-de4feb206c20, type: Blocks, state: initializing, event: i"},{"event":"cmd_output","timestamp":1607098357,"output":"nitializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098357,"output":"m\u001b[22m\n16:12:37.214 [info] block_id: d1b56592-0677-41de-b73e-726f1b723466, type: Tasks, state: run"},{"event":"cmd_output","timestamp":1607098357,"output":"ning, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098357,"output":"90), \n\u001b[0m\u001b[22m\n16:12:37.216 [info] Block 0 of pipeline with id: 20f8d23c-9481-4cf7-b60e-e5967aaa"},{"event":"cmd_output","timestamp":1607098357,"output":"7824 scheduled in block service with id: : \"b126edbc-6ada-4b3b-9318-de4feb206c20\"\n\u001b[0m\u001b[22m\n16:12:"},{"event":"cmd_output","timestamp":1607098357,"output":"37.218 [info] ppl_id: 20f8d23c-9481-4cf7-b60e-e5967aaa7824, type: PplBlocks, block_index: 0, state:"},{"event":"cmd_output","timestamp":1607098357,"output":" running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change"},{"event":"cmd_output","timestamp":1607098357,"output":"/1(L90), \n\u001b[0m\u001b[22m\n16:12:37.219 [info] block_id: b126edbc-6ada-4b3b-9318-de4feb206c20, type: Blo"},{"event":"cmd_output","timestamp":1607098357,"output":"ckRequests, event: persisted build and sub_ppl details for block_request: b126edbc-6ada-4b3b-9318-de"},{"event":"cmd_output","timestamp":1607098357,"output":"4feb206c20, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098357,"output":"m\u001b[22m\n16:12:37.224 [info] block_id: b126edbc-6ada-4b3b-9318-de4feb206c20, type: Tasks, state: pen"},{"event":"cmd_output","timestamp":1607098357,"output":"ding, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.al"},{"event":"cmd_output","timestamp":1607098357,"output":"l_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:37.227 [info] block_id: b126edbc-6ada-4b3b-9318-de4feb206c20, typ"},{"event":"cmd_output","timestamp":1607098357,"output":"e: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl"},{"event":"cmd_output","timestamp":1607098357,"output":".log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:37.239 [info] ppl_id: 780e101c-f6e8-412d-9d39-bc934d42"},{"event":"cmd_output","timestamp":1607098357,"output":"103a, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098357,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:37.240 [info] block_id: b126edbc-6a"},{"event":"cmd_output","timestamp":1607098357,"output":"da-4b3b-9318-de4feb206c20, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098357,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:37.266 [info] ppl_id: 780"},{"event":"cmd_output","timestamp":1607098357,"output":"e101c-f6e8-412d-9d39-bc934d42103a, type: PplRequests, event: persisted definition for request with r"},{"event":"cmd_output","timestamp":1607098357,"output":"equest_token: 5182b55d-4ee1-4169-85d4-ed4842bff1a3, origin: Elixir.Ppl.PplRequests.Model.PplRequests"},{"event":"cmd_output","timestamp":1607098357,"output":"Queries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:37.269 [info] event: created, origin: Elixir.P"},{"event":"cmd_output","timestamp":1607098357,"output":"pl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:37.269 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098357,"output":": 780e101c-f6e8-412d-9d39-bc934d42103a, type: PplBlocks, block_index: 0, state: initializing, event:"},{"event":"cmd_output","timestamp":1607098357,"output":" created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L1"},{"event":"cmd_output","timestamp":1607098357,"output":"05), \n\u001b[0m\u001b[22m\n16:12:37.272 [info] ppl_id: 780e101c-f6e8-412d-9d39-bc934d42103a, type: PplSubIni"},{"event":"cmd_output","timestamp":1607098357,"output":"ts, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.ST"},{"event":"cmd_output","timestamp":1607098357,"output":"M.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:37.282 [info] block_id: d1b56592-0677-41de-b73e-"},{"event":"cmd_output","timestamp":1607098357,"output":"726f1b723466, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Lo"},{"event":"cmd_output","timestamp":1607098357,"output":"oper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:37.282 [info] ppl_id: 780e101c-f6e8-412d-"},{"event":"cmd_output","timestamp":1607098357,"output":"9d39-bc934d42103a, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery"},{"event":"cmd_output","timestamp":1607098357,"output":"_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:37.285 [info] "},{"event":"cmd_output","timestamp":1607098357,"output":" ppl_id: 780e101c-f6e8-412d-9d39-bc934d42103a, type: Ppls, state: pending, event: exit_scheduling, r"},{"event":"cmd_output","timestamp":1607098357,"output":"ecovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:37.286 "},{"event":"cmd_output","timestamp":1607098357,"output":"[info] block_id: d1b56592-0677-41de-b73e-726f1b723466, type: Blocks, state: done, event: exit_sched"},{"event":"cmd_output","timestamp":1607098357,"output":"uling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12"},{"event":"cmd_output","timestamp":1607098357,"output":":37.292 [info] ppl_id: 780e101c-f6e8-412d-9d39-bc934d42103a, type: Ppls, state: queuing, event: exi"},{"event":"cmd_output","timestamp":1607098357,"output":"t_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098357,"output":"\n16:12:37.293 [info] ppl_id: 1f904094-47e5-4cdb-95b8-73e75430e431, block_id: d1b56592-0677-41de-b7"},{"event":"cmd_output","timestamp":1607098357,"output":"3e-726f1b723466, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_schedulin"},{"event":"cmd_output","timestamp":1607098357,"output":"g, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:37."},{"event":"cmd_output","timestamp":1607098357,"output":"304 [info] ppl_id: 1f904094-47e5-4cdb-95b8-73e75430e431, type: Ppls, state: done, result: passed, e"},{"event":"cmd_output","timestamp":1607098357,"output":"vent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n"},{"event":"cmd_output","timestamp":1607098357,"output":"\u001b[0m\u001b[22m\n16:12:37.389 [info] block_id: b126edbc-6ada-4b3b-9318-de4feb206c20, type: Tasks, state: "},{"event":"cmd_output","timestamp":1607098357,"output":"done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098357,"output":"90), \n\u001b[0m\u001b[22m\n16:12:37.394 [info] block_id: b126edbc-6ada-4b3b-9318-de4feb206c20, type: Blocks,"},{"event":"cmd_output","timestamp":1607098357,"output":" state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_ch"},{"event":"cmd_output","timestamp":1607098357,"output":"ange/1(L90), \n\u001b[0m\u001b[22m\n16:12:37.397 [info] ppl_id: 780e101c-f6e8-412d-9d39-bc934d42103a, type: P"},{"event":"cmd_output","timestamp":1607098357,"output":"pls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_s"},{"event":"cmd_output","timestamp":1607098357,"output":"tate_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:37.402 [info] ppl_id: 20f8d23c-9481-4cf7-b60e-e5967aaa7824, "},{"event":"cmd_output","timestamp":1607098357,"output":"block_id: b126edbc-6ada-4b3b-9318-de4feb206c20, type: PplBlocks, block_index: 0, state: done, result"},{"event":"cmd_output","timestamp":1607098357,"output":": passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change"},{"event":"cmd_output","timestamp":1607098357,"output":"/1(L90), \n\u001b[0m\u001b[22m\n16:12:37.404 [info] PplBlocks WaitingState STM is scheduling block 0 from pip"},{"event":"cmd_output","timestamp":1607098357,"output":"eline: \"780e101c-f6e8-412d-9d39-bc934d42103a\"\n\u001b[0m\u001b[22m\n16:12:37.409 [info] block_id: 1a50859b-3a"},{"event":"cmd_output","timestamp":1607098357,"output":"70-4cbf-a311-c2676fb6902e, type: BlockRequests, event: persisted block run request from ppl 780e101c"},{"event":"cmd_output","timestamp":1607098357,"output":"-f6e8-412d-9d39-bc934d42103a for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQuer"},{"event":"cmd_output","timestamp":1607098357,"output":"ies.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:37.412 [info] block_id: 1a50859b-3a70-4cbf-a311-c26"},{"event":"cmd_output","timestamp":1607098357,"output":"76fb6902e, type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098357,"output":".Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:37.414 [info] Block 0 of pipeli"},{"event":"cmd_output","timestamp":1607098357,"output":"ne with id: 780e101c-f6e8-412d-9d39-bc934d42103a scheduled in block service with id: : \"1a50859b-3a7"},{"event":"cmd_output","timestamp":1607098357,"output":"0-4cbf-a311-c2676fb6902e\"\n\u001b[0m\u001b[22m\n16:12:37.417 [info] ppl_id: 780e101c-f6e8-412d-9d39-bc934d421"},{"event":"cmd_output","timestamp":1607098357,"output":"03a, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098357,"output":"gin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:37.418 [info] ppl_id: 20f8d"},{"event":"cmd_output","timestamp":1607098357,"output":"23c-9481-4cf7-b60e-e5967aaa7824, type: Ppls, state: done, result: passed, event: exit_scheduling, re"},{"event":"cmd_output","timestamp":1607098357,"output":"covery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:37.420 ["},{"event":"cmd_output","timestamp":1607098357,"output":"info] block_id: 1a50859b-3a70-4cbf-a311-c2676fb6902e, type: BlockRequests, event: persisted build a"},{"event":"cmd_output","timestamp":1607098357,"output":"nd sub_ppl details for block_request: 1a50859b-3a70-4cbf-a311-c2676fb6902e, origin: Elixir.Block.Blo"},{"event":"cmd_output","timestamp":1607098357,"output":"ckRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:37.423 [info] block_i"},{"event":"cmd_output","timestamp":1607098357,"output":"d: 1a50859b-3a70-4cbf-a311-c2676fb6902e, type: Tasks, state: pending, event: created, recovery_count"},{"event":"cmd_output","timestamp":1607098357,"output":": 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:37"},{"event":"cmd_output","timestamp":1607098357,"output":".425 [info] block_id: 1a50859b-3a70-4cbf-a311-c2676fb6902e, type: Blocks, state: running, event: ex"},{"event":"cmd_output","timestamp":1607098357,"output":"it_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098357,"output":"m\n16:12:37.439 [info] block_id: 1a50859b-3a70-4cbf-a311-c2676fb6902e, type: Tasks, state: running,"},{"event":"cmd_output","timestamp":1607098357,"output":" event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), "},{"event":"cmd_output","timestamp":1607098357,"output":"\n\u001b[0m\u001b[22m\n16:12:37.497 [info] block_id: 1a50859b-3a70-4cbf-a311-c2676fb6902e, type: Tasks, state"},{"event":"cmd_output","timestamp":1607098357,"output":": done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1"},{"event":"cmd_output","timestamp":1607098357,"output":"(L90), \n\u001b[0m\u001b[22m\n16:12:37.503 [info] block_id: 1a50859b-3a70-4cbf-a311-c2676fb6902e, type: Block"},{"event":"cmd_output","timestamp":1607098357,"output":"s, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_"},{"event":"cmd_output","timestamp":1607098357,"output":"change/1(L90), \n\u001b[0m\u001b[22m\n16:12:37.509 [info] ppl_id: 780e101c-f6e8-412d-9d39-bc934d42103a, block"},{"event":"cmd_output","timestamp":1607098357,"output":"_id: 1a50859b-3a70-4cbf-a311-c2676fb6902e, type: PplBlocks, block_index: 0, state: done, result: pas"},{"event":"cmd_output","timestamp":1607098357,"output":"sed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L9"},{"event":"cmd_output","timestamp":1607098357,"output":"0), \n\u001b[0m\u001b[22m\n16:12:37.518 [info] ppl_id: 780e101c-f6e8-412d-9d39-bc934d42103a, type: Ppls, stat"},{"event":"cmd_output","timestamp":1607098357,"output":"e: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.l"},{"event":"cmd_output","timestamp":1607098357,"output":"og_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test gRPC list_grouped() - both scopes implicit queues (141"},{"event":"cmd_output","timestamp":1607098357,"output":"0.7ms)\u001b[0m\n * test gRPC list_queues() - invalid params - both project_id and organization_id are m"},{"event":"cmd_output","timestamp":1607098357,"output":"issing\r * test gRPC list_queues() - invalid params - both project_id and organization_id are missin"},{"event":"cmd_output","timestamp":1607098357,"output":"g (skipped)\n * test describe_many returns pipeline descriptions when given valid ids\r * test desc"},{"event":"cmd_output","timestamp":1607098357,"output":"ribe_many returns pipeline descriptions when given valid ids (skipped)\n * test gRPC list_keyset() "},{"event":"cmd_output","timestamp":1607098357,"output":"- successfully walk the list in both directions\r * test gRPC list_keyset() - successfully walk the "},{"event":"cmd_output","timestamp":1607098357,"output":"list in both directions (skipped)\n * test gRPC describe(), detailed and regular - response_status."},{"event":"cmd_output","timestamp":1607098357,"output":"code = OK for scheduled ppl\u001b[22m\n16:12:37.609 [info] Periodic from module Elixir.Ppl.Ppls.STMHandl"},{"event":"cmd_output","timestamp":1607098357,"output":"er.InitializingState with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms, metri"},{"event":"cmd_output","timestamp":1607098357,"output":"c_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %{allow"},{"event":"cmd_output","timestamp":1607098357,"output":"ed_states: [\"initializing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.P"},{"event":"cmd_output","timestamp":1607098357,"output":"pls, observed_state: \"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.In"},{"event":"cmd_output","timestamp":1607098357,"output":"itializingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :stat"},{"event":"cmd_output","timestamp":1607098357,"output":"e, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098357,"output":"2m\n16:12:37.610 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingState with name Elix"},{"event":"cmd_output","timestamp":1607098357,"output":"ir.Ppl.Ppls.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-P"},{"event":"cmd_output","timestamp":1607098357,"output":"pls-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"pending\", \"queuing\", \"running\", "},{"event":"cmd_output","timestamp":1607098357,"output":"\"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publish"},{"event":"cmd_output","timestamp":1607098357,"output":"er_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, return"},{"event":"cmd_output","timestamp":1607098357,"output":"ing: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl."},{"event":"cmd_output","timestamp":1607098357,"output":"Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:12:37.610 [info] Periodic from"},{"event":"cmd_output","timestamp":1607098357,"output":" module Elixir.Ppl.Ppls.STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandler.QueuingState ::"},{"event":"cmd_output","timestamp":1607098357,"output":" period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurr"},{"event":"cmd_output","timestamp":1607098357,"output":"ing args: %{allowed_states: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, initial_query: Ppl"},{"event":"cmd_output","timestamp":1607098357,"output":".Ppls.Model.Ppls, observed_state: \"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHa"},{"event":"cmd_output","timestamp":1607098357,"output":"ndler.QueuingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :s"},{"event":"cmd_output","timestamp":1607098357,"output":"tate, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m"},{"event":"cmd_output","timestamp":1607098357,"output":"\u001b[22m\n16:12:37.610 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.RunningState with name E"},{"event":"cmd_output","timestamp":1607098357,"output":"lixir.Ppl.Ppls.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Pp"},{"event":"cmd_output","timestamp":1607098357,"output":"l-Ppls-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"]"},{"event":"cmd_output","timestamp":1607098357,"output":", cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"running\", publisher_cb:"},{"event":"cmd_output","timestamp":1607098357,"output":" #Function<0.74670282/1 in Ppl.Ppls.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: "},{"event":"cmd_output","timestamp":1607098357,"output":"[:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls."},{"event":"cmd_output","timestamp":1607098357,"output":"Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:12:37.610 [info] Periodic from modu"},{"event":"cmd_output","timestamp":1607098357,"output":"le Elixir.Ppl.Ppls.STMHandler.StoppingState with name Elixir.Ppl.Ppls.STMHandler.StoppingState :: pe"},{"event":"cmd_output","timestamp":1607098357,"output":"riod: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurrin"},{"event":"cmd_output","timestamp":1607098357,"output":"g args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model."},{"event":"cmd_output","timestamp":1607098357,"output":"Ppls, observed_state: \"stopping\", publisher_cb: #Function<0.71803493/1 in Ppl.Ppls.STMHandler.Stoppi"},{"event":"cmd_output","timestamp":1607098357,"output":"ngState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :resu"},{"event":"cmd_output","timestamp":1607098357,"output":"lt, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098357,"output":"2:37.610 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedState with name Elixi"},{"event":"cmd_output","timestamp":1607098357,"output":"r.Ppl.PplSubInits.STMHandler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", ["},{"event":"cmd_output","timestamp":1607098357,"output":"\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args: %{allowed_states: [\"fetching\", \"done\"],"},{"event":"cmd_output","timestamp":1607098357,"output":" cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"created\", p"},{"event":"cmd_output","timestamp":1607098357,"output":"ublisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :r"},{"event":"cmd_output","timestamp":1607098357,"output":"esult, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}"},{"event":"cmd_output","timestamp":1607098357,"output":"\n\u001b[0m\u001b[22m\n16:12:37.610 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.FetchingSta"},{"event":"cmd_output","timestamp":1607098357,"output":"te with name Elixir.Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 ms, metric_name: {\"Ppl.b"},{"event":"cmd_output","timestamp":1607098357,"output":"eholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %{allowed_states: ["},{"event":"cmd_output","timestamp":1607098357,"output":"\"regular_init\", \"compilation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.P"},{"event":"cmd_output","timestamp":1607098357,"output":"plSubInits, observed_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :t"},{"event":"cmd_output","timestamp":1607098357,"output":"erminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.M"},{"event":"cmd_output","timestamp":1607098357,"output":"odel.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:37.610 [info] Periodic from module Elix"},{"event":"cmd_output","timestamp":1607098357,"output":"ir.Ppl.PplSubInits.STMHandler.CompilationState with name Elixir.Ppl.PplSubInits.STMHandler.Compilati"},{"event":"cmd_output","timestamp":1607098357,"output":"onState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-Compil"},{"event":"cmd_output","timestamp":1607098357,"output":"ationState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"stopping\", \"done\"]"},{"event":"cmd_output","timestamp":1607098357,"output":", cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"compilati"},{"event":"cmd_output","timestamp":1607098357,"output":"on\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :sta"},{"event":"cmd_output","timestamp":1607098357,"output":"te, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: "},{"event":"cmd_output","timestamp":1607098357,"output":":skip}\n\u001b[0m\u001b[22m\n16:12:37.610 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.Regul"},{"event":"cmd_output","timestamp":1607098357,"output":"arInitState with name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period: 100 ms, metric_n"},{"event":"cmd_output","timestamp":1607098357,"output":"ame: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurring args: %{al"},{"event":"cmd_output","timestamp":1607098357,"output":"lowed_states: [\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, obser"},{"event":"cmd_output","timestamp":1607098357,"output":"ved_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_requ"},{"event":"cmd_output","timestamp":1607098357,"output":"est, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubIn"},{"event":"cmd_output","timestamp":1607098357,"output":"its, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:37.610 [info] Periodic from module Elixir.Ppl.PplBlo"},{"event":"cmd_output","timestamp":1607098357,"output":"cks.STMHandler.InitializingState with name Elixir.Ppl.PplBlocks.STMHandler.InitializingState :: peri"},{"event":"cmd_output","timestamp":1607098357,"output":"od: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-InitializingState\"]}, r"},{"event":"cmd_output","timestamp":1607098357,"output":"ecurring args: %{allowed_states: [\"initializing\", \"waiting\", \"done\"], cooling_time_sec: 0, initial_q"},{"event":"cmd_output","timestamp":1607098357,"output":"uery: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Ppl."},{"event":"cmd_output","timestamp":1607098357,"output":"EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_i"},{"event":"cmd_output","timestamp":1607098357,"output":"d, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:3"},{"event":"cmd_output","timestamp":1607098357,"output":"7.611 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.WaitingState with name Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098357,"output":".PplBlocks.STMHandler.WaitingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-P"},{"event":"cmd_output","timestamp":1607098357,"output":"plBlocks-STMHandler-WaitingState\"]}, recurring args: %{allowed_states: [\"waiting\", \"running\", \"done\""},{"event":"cmd_output","timestamp":1607098357,"output":"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"waiting\", pub"},{"event":"cmd_output","timestamp":1607098357,"output":"lisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>, repo: Ppl.EctoRep"},{"event":"cmd_output","timestamp":1607098357,"output":"o, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :blo"},{"event":"cmd_output","timestamp":1607098357,"output":"ck_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:37.611 ["},{"event":"cmd_output","timestamp":1607098357,"output":"info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.RunningState with name Elixir.Ppl.PplBlo"},{"event":"cmd_output","timestamp":1607098357,"output":"cks.STMHandler.RunningState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlock"},{"event":"cmd_output","timestamp":1607098357,"output":"s-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], coo"},{"event":"cmd_output","timestamp":1607098357,"output":"ling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"running\", publishe"},{"event":"cmd_output","timestamp":1607098357,"output":"r_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, r"},{"event":"cmd_output","timestamp":1607098357,"output":"eturning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_i"},{"event":"cmd_output","timestamp":1607098357,"output":"ndex, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:3"},{"event":"cmd_output","timestamp":1607098357,"output":"7.611 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.StoppingState with name Elixir.Pp"},{"event":"cmd_output","timestamp":1607098357,"output":"l.PplBlocks.STMHandler.StoppingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl"},{"event":"cmd_output","timestamp":1607098357,"output":"-PplBlocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cool"},{"event":"cmd_output","timestamp":1607098357,"output":"ing_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"stopping\", publishe"},{"event":"cmd_output","timestamp":1607098357,"output":"r_cb: #Function<0.104215991/1 in Ppl.PplBlocks.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo,"},{"event":"cmd_output","timestamp":1607098357,"output":" returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block"},{"event":"cmd_output","timestamp":1607098357,"output":"_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12"},{"event":"cmd_output","timestamp":1607098357,"output":":37.611 [info] Periodic from module Elixir.Block.Blocks.STMHandler.InitializingState with name Elix"},{"event":"cmd_output","timestamp":1607098357,"output":"ir.Block.Blocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\""},{"event":"cmd_output","timestamp":1607098357,"output":", [\"Block-Blocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"running\", \"don"},{"event":"cmd_output","timestamp":1607098357,"output":"e\"], cooling_time_sec: 0, initial_query: Block.Blocks.Model.Blocks, observed_state: \"initializing\", "},{"event":"cmd_output","timestamp":1607098357,"output":"publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state,"},{"event":"cmd_output","timestamp":1607098357,"output":" :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098357,"output":"\n16:12:37.611 [info] Periodic from module Elixir.Block.Blocks.STMHandler.RunningState with name Eli"},{"event":"cmd_output","timestamp":1607098357,"output":"xir.Block.Blocks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\""},{"event":"cmd_output","timestamp":1607098357,"output":"Block-Blocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \""},{"event":"cmd_output","timestamp":1607098357,"output":"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"running\", p"},{"event":"cmd_output","timestamp":1607098357,"output":"ublisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, "},{"event":"cmd_output","timestamp":1607098357,"output":":recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098357,"output":"16:12:37.611 [info] Periodic from module Elixir.Block.Blocks.STMHandler.StoppingState with name Eli"},{"event":"cmd_output","timestamp":1607098357,"output":"xir.Block.Blocks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", ["},{"event":"cmd_output","timestamp":1607098357,"output":"\"Block-Blocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], c"},{"event":"cmd_output","timestamp":1607098357,"output":"ooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"stopping\", publisher"},{"event":"cmd_output","timestamp":1607098357,"output":"_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recover"},{"event":"cmd_output","timestamp":1607098357,"output":"y_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:37"},{"event":"cmd_output","timestamp":1607098357,"output":".611 [info] Periodic from module Elixir.Block.Tasks.STMHandler.PendingState with name Elixir.Block."},{"event":"cmd_output","timestamp":1607098357,"output":"Tasks.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks"},{"event":"cmd_output","timestamp":1607098357,"output":"-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec"},{"event":"cmd_output","timestamp":1607098357,"output":": 0, initial_query: Block.Tasks.Model.Tasks, observed_state: \"pending\", publisher_cb: :skip, repo: B"},{"event":"cmd_output","timestamp":1607098357,"output":"lock.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id,"},{"event":"cmd_output","timestamp":1607098357,"output":" :build_request_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:37.6"},{"event":"cmd_output","timestamp":1607098357,"output":"11 [info] Periodic from module Elixir.Block.Tasks.STMHandler.RunningState with name Elixir.Block.Ta"},{"event":"cmd_output","timestamp":1607098357,"output":"sks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-S"},{"event":"cmd_output","timestamp":1607098357,"output":"TMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], coolin"},{"event":"cmd_output","timestamp":1607098357,"output":"g_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"running\", publisher_cb: :sk"},{"event":"cmd_output","timestamp":1607098357,"output":"ip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count,"},{"event":"cmd_output","timestamp":1607098357,"output":" :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:37.611 [info"},{"event":"cmd_output","timestamp":1607098357,"output":"] Periodic from module Elixir.Block.Tasks.STMHandler.StoppingState with name Elixir.Block.Tasks.STM"},{"event":"cmd_output","timestamp":1607098357,"output":"Handler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHand"},{"event":"cmd_output","timestamp":1607098357,"output":"ler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, "},{"event":"cmd_output","timestamp":1607098357,"output":"initial_query: Block.Tasks.Model.Tasks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block"},{"event":"cmd_output","timestamp":1607098357,"output":".EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], sc"},{"event":"cmd_output","timestamp":1607098357,"output":"hema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:37.614 [info] Request: 'ru"},{"event":"cmd_output","timestamp":1607098357,"output":"n: %{\"branch_id\" => \"ceb50a06-41e0-40da-92ba-d771950c18c9\", \"branch_name\" => \"master\", \"commit_sha\" "},{"event":"cmd_output","timestamp":1607098357,"output":"=> \"75891a4469\", \"file_name\" => \"semaphore.yml\", \"hook_id\" => \"86c03a06-364b-11eb-b5c7-5254005464e2\""},{"event":"cmd_output","timestamp":1607098357,"output":", \"label\" => \"master\", \"organization_id\" => \"4825294d-6c2a-4c6b-b387-9ab24e835d19\", \"owner\" => \"rt\","},{"event":"cmd_output","timestamp":1607098357,"output":" \"project_id\" => \"bf15b508-a3ba-46a6-afbf-740397029ff9\", \"repo_name\" => \"2_basic\", \"request_token\" ="},{"event":"cmd_output","timestamp":1607098357,"output":"> \"86c0334e-364b-11eb-906c-5254005464e2\", \"requester_id\" => \"e5615f35-f6ee-4577-bb7c-3a65c2befb2f\", "},{"event":"cmd_output","timestamp":1607098357,"output":"\"service\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"ca32"},{"event":"cmd_output","timestamp":1607098357,"output":"cbaf-10ae-4376-8ec5-284dd304bb75\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:12:37.626 [info] p"},{"event":"cmd_output","timestamp":1607098357,"output":"pl_id: 8e079f64-d49f-485a-9b1a-3e6e972b653e, type: PplRequests, event: persisted schedule request wi"},{"event":"cmd_output","timestamp":1607098357,"output":"th request_token: 86c0334e-364b-11eb-906c-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequ"},{"event":"cmd_output","timestamp":1607098357,"output":"estsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:37.627 [info] ppl_id: 8e079f64-d49f-485a-9b"},{"event":"cmd_output","timestamp":1607098357,"output":"1a-3e6e972b653e, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098357,"output":"ixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:37.632 [info] Project "},{"event":"cmd_output","timestamp":1607098357,"output":"bf15b508-a3ba-46a6-afbf-740397029ff9 and branch masterlatest_wf details updated: \"wf_id: ca32cbaf-10"},{"event":"cmd_output","timestamp":1607098357,"output":"ae-4376-8ec5-284dd304bb75, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:12:37.634 [info] Persisted ppl_sub_init for"},{"event":"cmd_output","timestamp":1607098357,"output":" pipeline with ppl_id: 8e079f64-d49f-485a-9b1a-3e6e972b653e: %Ppl.PplSubInits.Model.PplSubInits{__me"},{"event":"cmd_output","timestamp":1607098357,"output":"ta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description:"},{"event":"cmd_output","timestamp":1607098357,"output":" nil, id: 242, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:37.63291"},{"event":"cmd_output","timestamp":1607098357,"output":"8], pipeline_requests: #Ecto.Association.NotLoaded, pp"},{"event":"cmd_output","timestamp":1607098357,"output":"l_id: \"8e079f64-d49f-485a-9b1a-3e6e972b653e\", recovery_count: 0, result: nil, result_reason: nil, st"},{"event":"cmd_output","timestamp":1607098357,"output":"ate: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12"},{"event":"cmd_output","timestamp":1607098357,"output":":37.632925]}\n\u001b[0m\u001b[22m\n16:12:37.644 [info] ppl_id: 8e079f64-d49f-485a-9b1a-3e6e972b653e, type: Pp"},{"event":"cmd_output","timestamp":1607098357,"output":"lRequests, event: persisted source_args for pipeline: 8e079f64-d49f-485a-9b1a-3e6e972b653e, origin: "},{"event":"cmd_output","timestamp":1607098357,"output":"Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:37.646 [inf"},{"event":"cmd_output","timestamp":1607098357,"output":"o] ppl_id: 8e079f64-d49f-485a-9b1a-3e6e972b653e, type: PplSubInits, state: fetching, event: exit_sc"},{"event":"cmd_output","timestamp":1607098357,"output":"heduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098357,"output":":12:37.659 [info] ppl_id: 8e079f64-d49f-485a-9b1a-3e6e972b653e, type: PplSubInits, state: regular_i"},{"event":"cmd_output","timestamp":1607098357,"output":"nit, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L9"},{"event":"cmd_output","timestamp":1607098357,"output":"0), \n\u001b[0m\u001b[22m\n16:12:37.676 [info] ppl_id: 8e079f64-d49f-485a-9b1a-3e6e972b653e, type: PplRequest"},{"event":"cmd_output","timestamp":1607098357,"output":"s, event: persisted definition for request with request_token: 86c0334e-364b-11eb-906c-5254005464e2,"},{"event":"cmd_output","timestamp":1607098357,"output":" origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098357,"output":"2:37.680 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:lo"},{"event":"cmd_output","timestamp":1607098357,"output":"aded, \"queues\">, inserted_at: ~N[2020-12-04 16:12:37.679394], name: \"master-.semaphore/semaphore.yml"},{"event":"cmd_output","timestamp":1607098357,"output":"\", organization_id: \"4825294d-6c2a-4c6b-b387-9ab24e835d19\", project_id: \"bf15b508-a3ba-46a6-afbf-740"},{"event":"cmd_output","timestamp":1607098357,"output":"397029ff9\", queue_id: \"faa1b390-9199-4f7c-8e02-df16930c54a1\", scope: \"project\", updated_at: ~N[2020-"},{"event":"cmd_output","timestamp":1607098357,"output":"12-04 16:12:37.679402], user_generated: false}}\n\u001b[0m\u001b[22m\n16:12:37.683 [info] event: created, ori"},{"event":"cmd_output","timestamp":1607098357,"output":"gin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:37.683 ["},{"event":"cmd_output","timestamp":1607098357,"output":"info] ppl_id: 8e079f64-d49f-485a-9b1a-3e6e972b653e, type: PplBlocks, block_index: 0, state: initial"},{"event":"cmd_output","timestamp":1607098357,"output":"izing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState"},{"event":"cmd_output","timestamp":1607098357,"output":".all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:37.685 [info] ppl_id: 8e079f64-d49f-485a-9b1a-3e6e972b653e, ty"},{"event":"cmd_output","timestamp":1607098357,"output":"pe: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098357,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:37.691 [info] ppl_id: 8e079f64-d49f"},{"event":"cmd_output","timestamp":1607098357,"output":"-485a-9b1a-3e6e972b653e, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098357,"output":"in: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:37.693 [info] ppl_id: 8e079f"},{"event":"cmd_output","timestamp":1607098357,"output":"64-d49f-485a-9b1a-3e6e972b653e, type: PplBlocks, block_index: 0, state: waiting, event: exit_schedul"},{"event":"cmd_output","timestamp":1607098357,"output":"ing, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:3"},{"event":"cmd_output","timestamp":1607098357,"output":"7.703 [info] ppl_id: 8e079f64-d49f-485a-9b1a-3e6e972b653e, type: Ppls, state: queuing, event: exit_"},{"event":"cmd_output","timestamp":1607098357,"output":"scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098357,"output":"16:12:37.710 [info] ppl_id: 8e079f64-d49f-485a-9b1a-3e6e972b653e, type: Ppls, state: running, event"},{"event":"cmd_output","timestamp":1607098357,"output":": exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098357,"output":"\u001b[22m\n16:12:37.717 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"8e079f6"},{"event":"cmd_output","timestamp":1607098357,"output":"4-d49f-485a-9b1a-3e6e972b653e\"\n\u001b[0m\u001b[22m\n16:12:37.725 [info] block_id: 6b536260-0718-4629-b24e-15"},{"event":"cmd_output","timestamp":1607098357,"output":"f19daa28a1, type: BlockRequests, event: persisted block run request from ppl 8e079f64-d49f-485a-9b1a"},{"event":"cmd_output","timestamp":1607098357,"output":"-3e6e972b653e for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_res"},{"event":"cmd_output","timestamp":1607098357,"output":"ponse/4(L35), \n\u001b[0m\u001b[22m\n16:12:37.727 [info] block_id: 6b536260-0718-4629-b24e-15f19daa28a1, type"},{"event":"cmd_output","timestamp":1607098357,"output":": Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.M"},{"event":"cmd_output","timestamp":1607098357,"output":"odel.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:37.729 [info] Block 0 of pipeline with id: 8e0"},{"event":"cmd_output","timestamp":1607098357,"output":"79f64-d49f-485a-9b1a-3e6e972b653e scheduled in block service with id: : \"6b536260-0718-4629-b24e-15f"},{"event":"cmd_output","timestamp":1607098357,"output":"19daa28a1\"\n\u001b[0m\u001b[22m\n16:12:37.732 [info] ppl_id: 8e079f64-d49f-485a-9b1a-3e6e972b653e, type: PplB"},{"event":"cmd_output","timestamp":1607098357,"output":"locks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loo"},{"event":"cmd_output","timestamp":1607098357,"output":"per.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:37.733 [info] block_id: 6b536260-0718-4629"},{"event":"cmd_output","timestamp":1607098357,"output":"-b24e-15f19daa28a1, type: BlockRequests, event: persisted build and sub_ppl details for block_reques"},{"event":"cmd_output","timestamp":1607098357,"output":"t: 6b536260-0718-4629-b24e-15f19daa28a1, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueri"},{"event":"cmd_output","timestamp":1607098357,"output":"es.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:37.736 [info] block_id: 6b536260-0718-4629-b24e-15f19daa"},{"event":"cmd_output","timestamp":1607098357,"output":"28a1, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.ST"},{"event":"cmd_output","timestamp":1607098357,"output":"MHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:37.738 [info] block_id: 6b536260-071"},{"event":"cmd_output","timestamp":1607098357,"output":"8-4629-b24e-15f19daa28a1, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098357,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:37.749 [info] block_id: 6"},{"event":"cmd_output","timestamp":1607098357,"output":"b536260-0718-4629-b24e-15f19daa28a1, type: Tasks, state: running, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098357,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:37.827 [info] b"},{"event":"cmd_output","timestamp":1607098357,"output":"lock_id: 6b536260-0718-4629-b24e-15f19daa28a1, type: Tasks, state: done, event: exit_scheduling, rec"},{"event":"cmd_output","timestamp":1607098357,"output":"overy_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:37.833 [i"},{"event":"cmd_output","timestamp":1607098357,"output":"nfo] block_id: 6b536260-0718-4629-b24e-15f19daa28a1, type: Blocks, state: done, event: exit_schedul"},{"event":"cmd_output","timestamp":1607098357,"output":"ing, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:3"},{"event":"cmd_output","timestamp":1607098357,"output":"7.848 [info] ppl_id: 8e079f64-d49f-485a-9b1a-3e6e972b653e, block_id: 6b536260-0718-4629-b24e-15f19d"},{"event":"cmd_output","timestamp":1607098357,"output":"aa28a1, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, recove"},{"event":"cmd_output","timestamp":1607098357,"output":"ry_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:37.857 [info"},{"event":"cmd_output","timestamp":1607098357,"output":"] ppl_id: 8e079f64-d49f-485a-9b1a-3e6e972b653e, type: Ppls, state: done, result: passed, event: exi"},{"event":"cmd_output","timestamp":1607098357,"output":"t_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m"},{"event":"cmd_output","timestamp":1607098357,"output":"\r * test gRPC describe(), detailed and regular - response_status.code = OK for scheduled ppl (416.1"},{"event":"cmd_output","timestamp":1607098357,"output":"ms)\u001b[0m\n * test gRPC list_queues() - invalid params - no 'type' param\r * test gRPC list_queues() "},{"event":"cmd_output","timestamp":1607098357,"output":"- invalid params - no 'type' param (skipped)\n * test gRPC list() - filter by created(done)_before("},{"event":"cmd_output","timestamp":1607098358,"output":"after) timestamps\u001b[22m\n16:12:38.008 [info] Request: 'run: %{\"branch_id\" => \"20bc5869-1014-4868-985"},{"event":"cmd_output","timestamp":1607098358,"output":"7-e7df7089968c\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"semaphore."},{"event":"cmd_output","timestamp":1607098358,"output":"yml\", \"hook_id\" => \"86fc6db4-364b-11eb-ad76-5254005464e2\", \"label\" => \"master\", \"organization_id\" =>"},{"event":"cmd_output","timestamp":1607098358,"output":" \"d3155e3e-c01c-4537-836a-ea00585e77ff\", \"owner\" => \"rt\", \"project_id\" => \"123\", \"repo_name\" => \"2_b"},{"event":"cmd_output","timestamp":1607098358,"output":"asic\", \"request_token\" => \"86fc6620-364b-11eb-abf7-5254005464e2\", \"requester_id\" => \"c35120fb-0019-4"},{"event":"cmd_output","timestamp":1607098358,"output":"5bf-9eaf-22f1030ffce4\", \"service\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_se"},{"event":"cmd_output","timestamp":1607098358,"output":"cret\"], \"wf_id\" => \"2ae07f92-35fa-49d9-947a-b0b19c47fe9b\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098358,"output":"\n16:12:38.010 [info] ppl_id: 9190717e-700a-4a0c-a5ee-8eba640d6073, type: PplRequests, event: persi"},{"event":"cmd_output","timestamp":1607098358,"output":"sted schedule request with request_token: 86fc6620-364b-11eb-abf7-5254005464e2, origin: Elixir.Ppl.P"},{"event":"cmd_output","timestamp":1607098358,"output":"plRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:38.012 [info] ppl_i"},{"event":"cmd_output","timestamp":1607098358,"output":"d: 9190717e-700a-4a0c-a5ee-8eba640d6073, type: Ppls, state: initializing, event: initializing, recov"},{"event":"cmd_output","timestamp":1607098358,"output":"ery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12"},{"event":"cmd_output","timestamp":1607098358,"output":":38.016 [info] Project 123 and branch masterlatest_wf details updated: \"wf_id: 2ae07f92-35fa-49d9-9"},{"event":"cmd_output","timestamp":1607098358,"output":"47a-b0b19c47fe9b, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:12:38.017 [info] Persisted ppl_sub_init for pipeline"},{"event":"cmd_output","timestamp":1607098358,"output":" with ppl_id: 9190717e-700a-4a0c-a5ee-8eba640d6073: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ec"},{"event":"cmd_output","timestamp":1607098358,"output":"to.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id:"},{"event":"cmd_output","timestamp":1607098358,"output":" 243, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:38.016469], pipel"},{"event":"cmd_output","timestamp":1607098358,"output":"ine_requests: #Ecto.Association.NotLoaded, ppl_id: \"91"},{"event":"cmd_output","timestamp":1607098358,"output":"90717e-700a-4a0c-a5ee-8eba640d6073\", recovery_count: 0, result: nil, result_reason: nil, state: \"cre"},{"event":"cmd_output","timestamp":1607098358,"output":"ated\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:38.01647"},{"event":"cmd_output","timestamp":1607098358,"output":"5]}\n\u001b[0m\u001b[22m\n16:12:38.022 [info] Request: 'run: %{\"branch_id\" => \"20a6164a-c55c-4e49-8c72-e7db12"},{"event":"cmd_output","timestamp":1607098358,"output":"06adac\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"semaphore.yml\", \"h"},{"event":"cmd_output","timestamp":1607098358,"output":"ook_id\" => \"86fea80e-364b-11eb-99a7-5254005464e2\", \"label\" => \"master\", \"organization_id\" => \"d45059"},{"event":"cmd_output","timestamp":1607098358,"output":"45-f7c6-4d81-8587-6e919b669ed9\", \"owner\" => \"rt\", \"project_id\" => \"123\", \"repo_name\" => \"2_basic\", \""},{"event":"cmd_output","timestamp":1607098358,"output":"request_token\" => \"86fe9ef4-364b-11eb-b4b7-5254005464e2\", \"requester_id\" => \"a3d6c356-6f68-4b1b-9238"},{"event":"cmd_output","timestamp":1607098358,"output":"-431a8f03435f\", \"service\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], "},{"event":"cmd_output","timestamp":1607098358,"output":"\"wf_id\" => \"7a802937-5b85-4e25-9d3a-e5b7c0964a73\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:12:"},{"event":"cmd_output","timestamp":1607098358,"output":"38.030 [info] ppl_id: 89b877a9-e650-408b-ab2b-bea08c2f013c, type: PplRequests, event: persisted sch"},{"event":"cmd_output","timestamp":1607098358,"output":"edule request with request_token: 86fe9ef4-364b-11eb-b4b7-5254005464e2, origin: Elixir.Ppl.PplReques"},{"event":"cmd_output","timestamp":1607098358,"output":"ts.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:38.032 [info] ppl_id: 89b87"},{"event":"cmd_output","timestamp":1607098358,"output":"7a9-e650-408b-ab2b-bea08c2f013c, type: Ppls, state: initializing, event: initializing, recovery_coun"},{"event":"cmd_output","timestamp":1607098358,"output":"t: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:38.033 "},{"event":"cmd_output","timestamp":1607098358,"output":"[info] Project 123 and branch masterlatest_wf details updated: \"wf_id: 7a802937-5b85-4e25-9d3a-e5b7"},{"event":"cmd_output","timestamp":1607098358,"output":"c0964a73, wf_number: 2\"\n\u001b[0m\u001b[22m\n16:12:38.034 [info] Persisted ppl_sub_init for pipeline with pp"},{"event":"cmd_output","timestamp":1607098358,"output":"l_id: 89b877a9-e650-408b-ab2b-bea08c2f013c: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schem"},{"event":"cmd_output","timestamp":1607098358,"output":"a.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 244, in"},{"event":"cmd_output","timestamp":1607098358,"output":"_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:38.033672], pipeline_requ"},{"event":"cmd_output","timestamp":1607098358,"output":"ests: #Ecto.Association.NotLoaded, ppl_id: \"89b877a9-e"},{"event":"cmd_output","timestamp":1607098358,"output":"650-408b-ab2b-bea08c2f013c\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", t"},{"event":"cmd_output","timestamp":1607098358,"output":"erminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:38.033677]}\n\u001b[0"},{"event":"cmd_output","timestamp":1607098358,"output":"m\u001b[22m\n16:12:38.036 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingState with "},{"event":"cmd_output","timestamp":1607098358,"output":"name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wak"},{"event":"cmd_output","timestamp":1607098358,"output":"e_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\""},{"event":"cmd_output","timestamp":1607098358,"output":", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"init"},{"event":"cmd_output","timestamp":1607098358,"output":"ializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, r"},{"event":"cmd_output","timestamp":1607098358,"output":"epo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_coun"},{"event":"cmd_output","timestamp":1607098358,"output":"t, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:38.036 [info] P"},{"event":"cmd_output","timestamp":1607098358,"output":"eriodic from module Elixir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler.Pen"},{"event":"cmd_output","timestamp":1607098358,"output":"dingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingStat"},{"event":"cmd_output","timestamp":1607098358,"output":"e\"]}, recurring args: %{allowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_sec:"},{"event":"cmd_output","timestamp":1607098358,"output":" 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publisher_cb: #Function<0.8493005"},{"event":"cmd_output","timestamp":1607098358,"output":"/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_requ"},{"event":"cmd_output","timestamp":1607098358,"output":"est, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supe"},{"event":"cmd_output","timestamp":1607098358,"output":"rvisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:12:38.036 [info] Periodic from module Elixir.Ppl.Ppls.ST"},{"event":"cmd_output","timestamp":1607098358,"output":"MHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, metric_na"},{"event":"cmd_output","timestamp":1607098358,"output":"me: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{allowed_states"},{"event":"cmd_output","timestamp":1607098358,"output":": [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed"},{"event":"cmd_output","timestamp":1607098358,"output":"_state: \"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.args/0>"},{"event":"cmd_output","timestamp":1607098358,"output":", repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_c"},{"event":"cmd_output","timestamp":1607098358,"output":"ount, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:38.037 [info]"},{"event":"cmd_output","timestamp":1607098358,"output":" Periodic from module Elixir.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHandler."},{"event":"cmd_output","timestamp":1607098358,"output":"RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-RunningS"},{"event":"cmd_output","timestamp":1607098358,"output":"tate\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, in"},{"event":"cmd_output","timestamp":1607098358,"output":"itial_query: Ppl.Ppls.Model.Ppls, observed_state: \"running\", publisher_cb: #Function<0.74670282/1 in"},{"event":"cmd_output","timestamp":1607098358,"output":" Ppl.Ppls.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, "},{"event":"cmd_output","timestamp":1607098358,"output":":updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_superviso"},{"event":"cmd_output","timestamp":1607098358,"output":"r: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:12:38.037 [info] Periodic from module Elixir.Ppl.Ppls.STMHand"},{"event":"cmd_output","timestamp":1607098358,"output":"ler.StoppingState with name Elixir.Ppl.Ppls.STMHandler.StoppingState :: period: 100 ms, metric_name:"},{"event":"cmd_output","timestamp":1607098358,"output":" {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: "},{"event":"cmd_output","timestamp":1607098358,"output":"[\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"sto"},{"event":"cmd_output","timestamp":1607098358,"output":"pping\", publisher_cb: #Function<0.71803493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, repo: Ppl"},{"event":"cmd_output","timestamp":1607098358,"output":".EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_"},{"event":"cmd_output","timestamp":1607098358,"output":"id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:38.037 [info] Periodic "},{"event":"cmd_output","timestamp":1607098358,"output":"from module Elixir.Ppl.PplSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHandl"},{"event":"cmd_output","timestamp":1607098358,"output":"er.CreatedState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandle"},{"event":"cmd_output","timestamp":1607098358,"output":"r-CreatedState\"]}, recurring args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, init"},{"event":"cmd_output","timestamp":1607098358,"output":"ial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip, repo: "},{"event":"cmd_output","timestamp":1607098358,"output":"Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :p"},{"event":"cmd_output","timestamp":1607098358,"output":"pl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:38.037 "},{"event":"cmd_output","timestamp":1607098358,"output":"[info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl.Pp"},{"event":"cmd_output","timestamp":1607098358,"output":"lSubInits.STMHandler.FetchingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Pp"},{"event":"cmd_output","timestamp":1607098358,"output":"lSubInits-STMHandler-FetchingState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilati"},{"event":"cmd_output","timestamp":1607098358,"output":"on\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state"},{"event":"cmd_output","timestamp":1607098358,"output":": \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated"},{"event":"cmd_output","timestamp":1607098358,"output":"_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_sup"},{"event":"cmd_output","timestamp":1607098358,"output":"ervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:38.037 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHand"},{"event":"cmd_output","timestamp":1607098358,"output":"ler.CompilationState with name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 100 ms,"},{"event":"cmd_output","timestamp":1607098358,"output":" metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurring a"},{"event":"cmd_output","timestamp":1607098358,"output":"rgs: %{allowed_states: [\"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2, in"},{"event":"cmd_output","timestamp":1607098358,"output":"itial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"compilation\", publisher_cb: :skip, "},{"event":"cmd_output","timestamp":1607098358,"output":"repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_cou"},{"event":"cmd_output","timestamp":1607098358,"output":"nt, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:3"},{"event":"cmd_output","timestamp":1607098358,"output":"8.037 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with name Elix"},{"event":"cmd_output","timestamp":1607098358,"output":"ir.Ppl.PplSubInits.STMHandler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_u"},{"event":"cmd_output","timestamp":1607098358,"output":"p\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurring args: %{allowed_states: [\"done\"], co"},{"event":"cmd_output","timestamp":1607098358,"output":"oling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_init\","},{"event":"cmd_output","timestamp":1607098358,"output":" publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, "},{"event":"cmd_output","timestamp":1607098358,"output":":result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :ski"},{"event":"cmd_output","timestamp":1607098358,"output":"p}\n\u001b[0m\u001b[22m\n16:12:38.038 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.Initializin"},{"event":"cmd_output","timestamp":1607098358,"output":"gState with name Elixir.Ppl.PplBlocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {"},{"event":"cmd_output","timestamp":1607098358,"output":"\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_s"},{"event":"cmd_output","timestamp":1607098358,"output":"tates: [\"initializing\", \"waiting\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model."},{"event":"cmd_output","timestamp":1607098358,"output":"PplBlocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id,"},{"event":"cmd_output","timestamp":1607098358,"output":" :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: "},{"event":"cmd_output","timestamp":1607098358,"output":"Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:38.038 [info] Periodic fro"},{"event":"cmd_output","timestamp":1607098358,"output":"m module Elixir.Ppl.PplBlocks.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler.Wait"},{"event":"cmd_output","timestamp":1607098358,"output":"ingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-Waitin"},{"event":"cmd_output","timestamp":1607098358,"output":"gState\"]}, recurring args: %{allowed_states: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 0, in"},{"event":"cmd_output","timestamp":1607098358,"output":"itial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"waiting\", publisher_cb: #Function<0.897"},{"event":"cmd_output","timestamp":1607098358,"output":"5022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :termi"},{"event":"cmd_output","timestamp":1607098358,"output":"nate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098358,"output":"Blocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:38.038 [info] Periodic from modul"},{"event":"cmd_output","timestamp":1607098358,"output":"e Elixir.Ppl.PplBlocks.STMHandler.RunningState with name Elixir.Ppl.PplBlocks.STMHandler.RunningStat"},{"event":"cmd_output","timestamp":1607098358,"output":"e :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningState\""},{"event":"cmd_output","timestamp":1607098358,"output":"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial"},{"event":"cmd_output","timestamp":1607098358,"output":"_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"running\", publisher_cb: #Function<0.28166834"},{"event":"cmd_output","timestamp":1607098358,"output":"/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate"},{"event":"cmd_output","timestamp":1607098358,"output":"_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: "},{"event":"cmd_output","timestamp":1607098358,"output":"Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:38.038 [info] Periodic fro"},{"event":"cmd_output","timestamp":1607098358,"output":"m module Elixir.Ppl.PplBlocks.STMHandler.StoppingState with name Elixir.Ppl.PplBlocks.STMHandler.Sto"},{"event":"cmd_output","timestamp":1607098358,"output":"ppingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-Stop"},{"event":"cmd_output","timestamp":1607098358,"output":"pingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_"},{"event":"cmd_output","timestamp":1607098358,"output":"query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"stopping\", publisher_cb: #Function<0.10421599"},{"event":"cmd_output","timestamp":1607098358,"output":"1/1 in Ppl.PplBlocks.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :termina"},{"event":"cmd_output","timestamp":1607098358,"output":"te_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema"},{"event":"cmd_output","timestamp":1607098358,"output":": Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:38.039 [info] Periodic f"},{"event":"cmd_output","timestamp":1607098358,"output":"rom module Elixir.Block.Blocks.STMHandler.InitializingState with name Elixir.Block.Blocks.STMHandler"},{"event":"cmd_output","timestamp":1607098358,"output":".InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandle"},{"event":"cmd_output","timestamp":1607098358,"output":"r-InitializingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, "},{"event":"cmd_output","timestamp":1607098358,"output":"initial_query: Block.Blocks.Model.Blocks, observed_state: \"initializing\", publisher_cb: :skip, repo:"},{"event":"cmd_output","timestamp":1607098358,"output":" Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_i"},{"event":"cmd_output","timestamp":1607098358,"output":"d], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:38.039 [info] Peri"},{"event":"cmd_output","timestamp":1607098358,"output":"odic from module Elixir.Block.Blocks.STMHandler.RunningState with name Elixir.Block.Blocks.STMHandle"},{"event":"cmd_output","timestamp":1607098358,"output":"r.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-Ru"},{"event":"cmd_output","timestamp":1607098358,"output":"nningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: "},{"event":"cmd_output","timestamp":1607098358,"output":"-2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"running\", publisher_cb: :skip, repo: "},{"event":"cmd_output","timestamp":1607098358,"output":"Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id"},{"event":"cmd_output","timestamp":1607098358,"output":"], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:38.039 [info] Perio"},{"event":"cmd_output","timestamp":1607098358,"output":"dic from module Elixir.Block.Blocks.STMHandler.StoppingState with name Elixir.Block.Blocks.STMHandle"},{"event":"cmd_output","timestamp":1607098358,"output":"r.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-S"},{"event":"cmd_output","timestamp":1607098358,"output":"toppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initi"},{"event":"cmd_output","timestamp":1607098358,"output":"al_query: Block.Blocks.Model.Blocks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.Ec"},{"event":"cmd_output","timestamp":1607098358,"output":"toRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schem"},{"event":"cmd_output","timestamp":1607098358,"output":"a: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:38.039 [info] Periodic from"},{"event":"cmd_output","timestamp":1607098358,"output":" module Elixir.Block.Tasks.STMHandler.PendingState with name Elixir.Block.Tasks.STMHandler.PendingSt"},{"event":"cmd_output","timestamp":1607098358,"output":"ate :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingState\"]"},{"event":"cmd_output","timestamp":1607098358,"output":"}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block."},{"event":"cmd_output","timestamp":1607098358,"output":"Tasks.Model.Tasks, observed_state: \"pending\", publisher_cb: :skip, repo: Block.EctoRepo, returning: "},{"event":"cmd_output","timestamp":1607098358,"output":"[:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id, :build_request_id], schem"},{"event":"cmd_output","timestamp":1607098358,"output":"a: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:38.039 [info] Periodic from m"},{"event":"cmd_output","timestamp":1607098358,"output":"odule Elixir.Block.Tasks.STMHandler.RunningState with name Elixir.Block.Tasks.STMHandler.RunningStat"},{"event":"cmd_output","timestamp":1607098358,"output":"e :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningState\"]},"},{"event":"cmd_output","timestamp":1607098358,"output":" recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_qu"},{"event":"cmd_output","timestamp":1607098358,"output":"ery: Block.Tasks.Model.Tasks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, "},{"event":"cmd_output","timestamp":1607098358,"output":"returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block"},{"event":"cmd_output","timestamp":1607098358,"output":".Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:38.040 [info] Periodic from module El"},{"event":"cmd_output","timestamp":1607098358,"output":"ixir.Block.Tasks.STMHandler.StoppingState with name Elixir.Block.Tasks.STMHandler.StoppingState :: p"},{"event":"cmd_output","timestamp":1607098358,"output":"eriod: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]}, recu"},{"event":"cmd_output","timestamp":1607098358,"output":"rring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks"},{"event":"cmd_output","timestamp":1607098358,"output":".Model.Tasks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id"},{"event":"cmd_output","timestamp":1607098358,"output":", :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Ta"},{"event":"cmd_output","timestamp":1607098358,"output":"sks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:38.151 [info] ppl_id: 9190717e-700a-4a0c-a5ee-8eba64"},{"event":"cmd_output","timestamp":1607098358,"output":"0d6073, type: PplRequests, event: persisted source_args for pipeline: 9190717e-700a-4a0c-a5ee-8eba64"},{"event":"cmd_output","timestamp":1607098358,"output":"0d6073, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098358,"output":"6:12:38.152 [info] ppl_id: 9190717e-700a-4a0c-a5ee-8eba640d6073, type: PplSubInits, state: fetching"},{"event":"cmd_output","timestamp":1607098358,"output":", event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90),"},{"event":"cmd_output","timestamp":1607098358,"output":" \n\u001b[0m\u001b[22m\n16:12:38.164 [info] ppl_id: 9190717e-700a-4a0c-a5ee-8eba640d6073, type: PplSubInits, "},{"event":"cmd_output","timestamp":1607098358,"output":"state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_s"},{"event":"cmd_output","timestamp":1607098358,"output":"tate_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:38.182 [info] ppl_id: 9190717e-700a-4a0c-a5ee-8eba640d6073, "},{"event":"cmd_output","timestamp":1607098358,"output":"type: PplRequests, event: persisted definition for request with request_token: 86fc6620-364b-11eb-ab"},{"event":"cmd_output","timestamp":1607098358,"output":"f7-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \r"},{"event":"cmd_output","timestamp":1607098358,"output":"\n\u001b[0m\u001b[22m\n16:12:38.184 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Sch"},{"event":"cmd_output","timestamp":1607098358,"output":"ema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:12:38.184043], name: \"master-.semapho"},{"event":"cmd_output","timestamp":1607098358,"output":"re/semaphore.yml\", organization_id: \"d3155e3e-c01c-4537-836a-ea00585e77ff\", project_id: \"123\", queue"},{"event":"cmd_output","timestamp":1607098358,"output":"_id: \"5cd2f0ca-d05b-4e76-b121-ca4f0e987995\", scope: \"project\", updated_at: ~N[2020-12-04 16:12:38.18"},{"event":"cmd_output","timestamp":1607098358,"output":"4051], user_generated: false}}\n\u001b[0m\u001b[22m\n16:12:38.188 [info] event: created, origin: Elixir.Ppl.P"},{"event":"cmd_output","timestamp":1607098358,"output":"plSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:38.188 [info] ppl_id: 91"},{"event":"cmd_output","timestamp":1607098358,"output":"90717e-700a-4a0c-a5ee-8eba640d6073, type: PplBlocks, block_index: 0, state: initializing, event: cre"},{"event":"cmd_output","timestamp":1607098358,"output":"ated, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105),"},{"event":"cmd_output","timestamp":1607098358,"output":" \n\u001b[0m\u001b[22m\n16:12:38.189 [info] ppl_id: 9190717e-700a-4a0c-a5ee-8eba640d6073, type: PplSubInits, "},{"event":"cmd_output","timestamp":1607098358,"output":"state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Im"},{"event":"cmd_output","timestamp":1607098358,"output":"pl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:38.196 [info] ppl_id: 9190717e-700a-4a0c-a5ee-8eba64"},{"event":"cmd_output","timestamp":1607098358,"output":"0d6073, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098358,"output":"origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:38.198 [info] ppl_id: 91"},{"event":"cmd_output","timestamp":1607098358,"output":"90717e-700a-4a0c-a5ee-8eba640d6073, type: Ppls, state: pending, event: exit_scheduling, recovery_cou"},{"event":"cmd_output","timestamp":1607098358,"output":"nt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:38.210 [info] ppl"},{"event":"cmd_output","timestamp":1607098358,"output":"_id: 9190717e-700a-4a0c-a5ee-8eba640d6073, type: Ppls, state: queuing, event: exit_scheduling, recov"},{"event":"cmd_output","timestamp":1607098358,"output":"ery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:38.216 [inf"},{"event":"cmd_output","timestamp":1607098358,"output":"o] ppl_id: 9190717e-700a-4a0c-a5ee-8eba640d6073, type: Ppls, state: running, event: exit_scheduling"},{"event":"cmd_output","timestamp":1607098358,"output":", recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:38.2"},{"event":"cmd_output","timestamp":1607098358,"output":"20 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"9190717e-700a-4a0c-a5ee-"},{"event":"cmd_output","timestamp":1607098358,"output":"8eba640d6073\"\n\u001b[0m\u001b[22m\n16:12:38.230 [info] block_id: bb68c72d-c205-4a4c-a1be-0686f0ebff8d, type:"},{"event":"cmd_output","timestamp":1607098358,"output":" BlockRequests, event: persisted block run request from ppl 9190717e-700a-4a0c-a5ee-8eba640d6073 for"},{"event":"cmd_output","timestamp":1607098358,"output":" block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b"},{"event":"cmd_output","timestamp":1607098358,"output":"[0m\u001b[22m\n16:12:38.232 [info] block_id: bb68c72d-c205-4a4c-a1be-0686f0ebff8d, type: Blocks, state: "},{"event":"cmd_output","timestamp":1607098358,"output":"initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQuerie"},{"event":"cmd_output","timestamp":1607098358,"output":"s.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:38.233 [info] Block 0 of pipeline with id: 9190717e-700a-4a0c-a"},{"event":"cmd_output","timestamp":1607098358,"output":"5ee-8eba640d6073 scheduled in block service with id: : \"bb68c72d-c205-4a4c-a1be-0686f0ebff8d\"\n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098358,"output":"[22m\n16:12:38.235 [info] ppl_id: 9190717e-700a-4a0c-a5ee-8eba640d6073, type: PplBlocks, block_inde"},{"event":"cmd_output","timestamp":1607098358,"output":"x: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_"},{"event":"cmd_output","timestamp":1607098358,"output":"state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:38.239 [info] block_id: bb68c72d-c205-4a4c-a1be-0686f0ebff8"},{"event":"cmd_output","timestamp":1607098358,"output":"d, type: BlockRequests, event: persisted build and sub_ppl details for block_request: bb68c72d-c205-"},{"event":"cmd_output","timestamp":1607098358,"output":"4a4c-a1be-0686f0ebff8d, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2"},{"event":"cmd_output","timestamp":1607098358,"output":"(L41), \n\u001b[0m\u001b[22m\n16:12:38.244 [info] block_id: bb68c72d-c205-4a4c-a1be-0686f0ebff8d, type: Tasks"},{"event":"cmd_output","timestamp":1607098358,"output":", state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.Initiali"},{"event":"cmd_output","timestamp":1607098358,"output":"zingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:38.250 [info] block_id: bb68c72d-c205-4a4c-a1be-0686f"},{"event":"cmd_output","timestamp":1607098358,"output":"0ebff8d, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loo"},{"event":"cmd_output","timestamp":1607098358,"output":"per.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:38.264 [info] block_id: bb68c72d-c205-4a4c"},{"event":"cmd_output","timestamp":1607098358,"output":"-a1be-0686f0ebff8d, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098358,"output":"Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:38.265 [info] ppl_id: 89b877a9-e"},{"event":"cmd_output","timestamp":1607098358,"output":"650-408b-ab2b-bea08c2f013c, type: PplRequests, event: persisted source_args for pipeline: 89b877a9-e"},{"event":"cmd_output","timestamp":1607098358,"output":"650-408b-ab2b-bea08c2f013c, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2("},{"event":"cmd_output","timestamp":1607098358,"output":"L89), \n\u001b[0m\u001b[22m\n16:12:38.267 [info] ppl_id: 89b877a9-e650-408b-ab2b-bea08c2f013c, type: PplSubIn"},{"event":"cmd_output","timestamp":1607098358,"output":"its, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_"},{"event":"cmd_output","timestamp":1607098358,"output":"state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:38.283 [info] ppl_id: 89b877a9-e650-408b-ab2b-bea08c2f013c,"},{"event":"cmd_output","timestamp":1607098358,"output":" type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098358,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:38.299 [info] ppl_id: 89b877a9-e650-408b"},{"event":"cmd_output","timestamp":1607098358,"output":"-ab2b-bea08c2f013c, type: PplRequests, event: persisted definition for request with request_token: 8"},{"event":"cmd_output","timestamp":1607098358,"output":"6fe9ef4-364b-11eb-b4b7-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_"},{"event":"cmd_output","timestamp":1607098358,"output":"definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:38.302 [info] event: created, origin: Elixir.Ppl.PplSubInits."},{"event":"cmd_output","timestamp":1607098358,"output":"STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:38.303 [info] ppl_id: 89b877a9-e650"},{"event":"cmd_output","timestamp":1607098358,"output":"-408b-ab2b-bea08c2f013c, type: PplBlocks, block_index: 0, state: initializing, event: created, recov"},{"event":"cmd_output","timestamp":1607098358,"output":"ery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098358,"output":"m\n16:12:38.304 [info] ppl_id: 89b877a9-e650-408b-ab2b-bea08c2f013c, type: PplSubInits, state: done"},{"event":"cmd_output","timestamp":1607098358,"output":", result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_stat"},{"event":"cmd_output","timestamp":1607098358,"output":"e_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:38.310 [info] ppl_id: 89b877a9-e650-408b-ab2b-bea08c2f013c, typ"},{"event":"cmd_output","timestamp":1607098358,"output":"e: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098358,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:38.311 [info] ppl_id: 89b877a9-e650"},{"event":"cmd_output","timestamp":1607098358,"output":"-408b-ab2b-bea08c2f013c, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098358,"output":"in: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:38.326 [info] ppl_id: 89b877"},{"event":"cmd_output","timestamp":1607098358,"output":"a9-e650-408b-ab2b-bea08c2f013c, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: "},{"event":"cmd_output","timestamp":1607098358,"output":"0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:38.362 [info] block_i"},{"event":"cmd_output","timestamp":1607098358,"output":"d: bb68c72d-c205-4a4c-a1be-0686f0ebff8d, type: Tasks, state: done, event: exit_scheduling, recovery_"},{"event":"cmd_output","timestamp":1607098358,"output":"count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:38.366 [info] "},{"event":"cmd_output","timestamp":1607098358,"output":"block_id: bb68c72d-c205-4a4c-a1be-0686f0ebff8d, type: Blocks, state: done, event: exit_scheduling, r"},{"event":"cmd_output","timestamp":1607098358,"output":"ecovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:38.371 "},{"event":"cmd_output","timestamp":1607098358,"output":"[info] ppl_id: 9190717e-700a-4a0c-a5ee-8eba640d6073, block_id: bb68c72d-c205-4a4c-a1be-0686f0ebff8d"},{"event":"cmd_output","timestamp":1607098358,"output":", type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_cou"},{"event":"cmd_output","timestamp":1607098358,"output":"nt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:38.381 [info] ppl"},{"event":"cmd_output","timestamp":1607098358,"output":"_id: 9190717e-700a-4a0c-a5ee-8eba640d6073, type: Ppls, state: done, result: passed, event: exit_sche"},{"event":"cmd_output","timestamp":1607098358,"output":"duling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098358,"output":"2:38.468 [info] ppl_id: 89b877a9-e650-408b-ab2b-bea08c2f013c, type: Ppls, state: running, event: ex"},{"event":"cmd_output","timestamp":1607098358,"output":"it_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098358,"output":"m\n16:12:38.473 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"89b877a9-e6"},{"event":"cmd_output","timestamp":1607098358,"output":"50-408b-ab2b-bea08c2f013c\"\n\u001b[0m\u001b[22m\n16:12:38.483 [info] block_id: 4145b9b0-384e-497e-b27a-8a6330"},{"event":"cmd_output","timestamp":1607098358,"output":"70093e, type: BlockRequests, event: persisted block run request from ppl 89b877a9-e650-408b-ab2b-bea"},{"event":"cmd_output","timestamp":1607098358,"output":"08c2f013c for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_respons"},{"event":"cmd_output","timestamp":1607098358,"output":"e/4(L35), \n\u001b[0m\u001b[22m\n16:12:38.485 [info] block_id: 4145b9b0-384e-497e-b27a-8a633070093e, type: Bl"},{"event":"cmd_output","timestamp":1607098358,"output":"ocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model"},{"event":"cmd_output","timestamp":1607098358,"output":".BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:38.486 [info] Block 0 of pipeline with id: 89b877a"},{"event":"cmd_output","timestamp":1607098358,"output":"9-e650-408b-ab2b-bea08c2f013c scheduled in block service with id: : \"4145b9b0-384e-497e-b27a-8a63307"},{"event":"cmd_output","timestamp":1607098358,"output":"0093e\"\n\u001b[0m\u001b[22m\n16:12:38.487 [info] ppl_id: 89b877a9-e650-408b-ab2b-bea08c2f013c, type: PplBlock"},{"event":"cmd_output","timestamp":1607098358,"output":"s, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper."},{"event":"cmd_output","timestamp":1607098358,"output":"STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:38.489 [info] block_id: 4145b9b0-384e-497e-b27"},{"event":"cmd_output","timestamp":1607098358,"output":"a-8a633070093e, type: BlockRequests, event: persisted build and sub_ppl details for block_request: 4"},{"event":"cmd_output","timestamp":1607098358,"output":"145b9b0-384e-497e-b27a-8a633070093e, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.i"},{"event":"cmd_output","timestamp":1607098358,"output":"nsert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:38.491 [info] block_id: 4145b9b0-384e-497e-b27a-8a633070093e"},{"event":"cmd_output","timestamp":1607098358,"output":", type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHan"},{"event":"cmd_output","timestamp":1607098358,"output":"dler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:38.492 [info] block_id: 4145b9b0-384e-49"},{"event":"cmd_output","timestamp":1607098358,"output":"7e-b27a-8a633070093e, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098358,"output":"n: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:38.510 [info] block_id: 4145b"},{"event":"cmd_output","timestamp":1607098358,"output":"9b0-384e-497e-b27a-8a633070093e, type: Tasks, state: running, event: exit_scheduling, recovery_count"},{"event":"cmd_output","timestamp":1607098358,"output":": 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:38.584 [info] block"},{"event":"cmd_output","timestamp":1607098358,"output":"_id: 4145b9b0-384e-497e-b27a-8a633070093e, type: Tasks, state: done, event: exit_scheduling, recover"},{"event":"cmd_output","timestamp":1607098358,"output":"y_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:38.588 [info]"},{"event":"cmd_output","timestamp":1607098358,"output":" block_id: 4145b9b0-384e-497e-b27a-8a633070093e, type: Blocks, state: done, event: exit_scheduling,"},{"event":"cmd_output","timestamp":1607098358,"output":" recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:38.59"},{"event":"cmd_output","timestamp":1607098358,"output":"7 [info] ppl_id: 89b877a9-e650-408b-ab2b-bea08c2f013c, block_id: 4145b9b0-384e-497e-b27a-8a63307009"},{"event":"cmd_output","timestamp":1607098358,"output":"3e, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098358,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:38.606 [info] p"},{"event":"cmd_output","timestamp":1607098358,"output":"pl_id: 89b877a9-e650-408b-ab2b-bea08c2f013c, type: Ppls, state: done, result: passed, event: exit_sc"},{"event":"cmd_output","timestamp":1607098358,"output":"heduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098358,"output":":12:38.663 [info] Request: 'run: %{\"branch_id\" => \"664dc2a4-6016-494c-9513-7fef54679e55\", \"branch_n"},{"event":"cmd_output","timestamp":1607098358,"output":"ame\" => \"master\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"semaphore.yml\", \"hook_id\" => \"876037"},{"event":"cmd_output","timestamp":1607098358,"output":"36-364b-11eb-8173-5254005464e2\", \"label\" => \"master\", \"organization_id\" => \"5d10427e-066d-492a-a6ba-"},{"event":"cmd_output","timestamp":1607098358,"output":"4d292c68f2c9\", \"owner\" => \"rt\", \"project_id\" => \"123\", \"repo_name\" => \"2_basic\", \"request_token\" => "},{"event":"cmd_output","timestamp":1607098358,"output":"\"87602f8e-364b-11eb-801a-5254005464e2\", \"requester_id\" => \"230bef93-bd80-4c1d-9256-ce21197e6b13\", \"s"},{"event":"cmd_output","timestamp":1607098358,"output":"ervice\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"d1ad97"},{"event":"cmd_output","timestamp":1607098358,"output":"a1-bc11-4b19-9e43-5a7fffb52517\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:12:38.664 [info] ppl"},{"event":"cmd_output","timestamp":1607098358,"output":"_id: 4c1de4f9-c3b5-44a9-8782-20cdaecd891f, type: PplRequests, event: persisted schedule request with"},{"event":"cmd_output","timestamp":1607098358,"output":" request_token: 87602f8e-364b-11eb-801a-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplReques"},{"event":"cmd_output","timestamp":1607098358,"output":"tsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:38.665 [info] ppl_id: 4c1de4f9-c3b5-44a9-8782"},{"event":"cmd_output","timestamp":1607098358,"output":"-20cdaecd891f, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098358,"output":"ir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:38.667 [info] Project 12"},{"event":"cmd_output","timestamp":1607098358,"output":"3 and branch masterlatest_wf details updated: \"wf_id: d1ad97a1-bc11-4b19-9e43-5a7fffb52517, wf_numbe"},{"event":"cmd_output","timestamp":1607098358,"output":"r: 3\"\n\u001b[0m\u001b[22m\n16:12:38.668 [info] Persisted ppl_sub_init for pipeline with ppl_id: 4c1de4f9-c3b"},{"event":"cmd_output","timestamp":1607098358,"output":"5-44a9-8782-20cdaecd891f: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded"},{"event":"cmd_output","timestamp":1607098358,"output":", \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 245, in_scheduling: false"},{"event":"cmd_output","timestamp":1607098358,"output":", init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:38.667749], pipeline_requests: #Ecto.Associ"},{"event":"cmd_output","timestamp":1607098358,"output":"ation.NotLoaded, ppl_id: \"4c1de4f9-c3b5-44a9-8782-20cd"},{"event":"cmd_output","timestamp":1607098358,"output":"aecd891f\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: "},{"event":"cmd_output","timestamp":1607098358,"output":"nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:38.667755]}\n\u001b[0m\u001b[22m\n16:12:38.6"},{"event":"cmd_output","timestamp":1607098358,"output":"75 [info] ppl_id: 4c1de4f9-c3b5-44a9-8782-20cdaecd891f, type: PplRequests, event: persisted source_"},{"event":"cmd_output","timestamp":1607098358,"output":"args for pipeline: 4c1de4f9-c3b5-44a9-8782-20cdaecd891f, origin: Elixir.Ppl.PplRequests.Model.PplReq"},{"event":"cmd_output","timestamp":1607098358,"output":"uestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:38.677 [info] ppl_id: 4c1de4f9-c3b5-44a9-8782"},{"event":"cmd_output","timestamp":1607098358,"output":"-20cdaecd891f, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098358,"output":": Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:38.699 [info] ppl_id: 4c1de4f9"},{"event":"cmd_output","timestamp":1607098358,"output":"-c3b5-44a9-8782-20cdaecd891f, type: PplSubInits, state: regular_init, event: exit_scheduling, recove"},{"event":"cmd_output","timestamp":1607098358,"output":"ry_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:38.715 [info"},{"event":"cmd_output","timestamp":1607098358,"output":"] ppl_id: 4c1de4f9-c3b5-44a9-8782-20cdaecd891f, type: PplRequests, event: persisted definition for "},{"event":"cmd_output","timestamp":1607098358,"output":"request with request_token: 87602f8e-364b-11eb-801a-5254005464e2, origin: Elixir.Ppl.PplRequests.Mod"},{"event":"cmd_output","timestamp":1607098358,"output":"el.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:38.718 [info] event: created, or"},{"event":"cmd_output","timestamp":1607098358,"output":"igin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:38.718 "},{"event":"cmd_output","timestamp":1607098358,"output":"[info] ppl_id: 4c1de4f9-c3b5-44a9-8782-20cdaecd891f, type: PplBlocks, block_index: 0, state: initia"},{"event":"cmd_output","timestamp":1607098358,"output":"lizing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitStat"},{"event":"cmd_output","timestamp":1607098358,"output":"e.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:38.719 [info] ppl_id: 4c1de4f9-c3b5-44a9-8782-20cdaecd891f, t"},{"event":"cmd_output","timestamp":1607098358,"output":"ype: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098358,"output":"ixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:38.725 [info] ppl_id: 4c1de4f9-c3b"},{"event":"cmd_output","timestamp":1607098358,"output":"5-44a9-8782-20cdaecd891f, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, r"},{"event":"cmd_output","timestamp":1607098358,"output":"ecovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:38.725 "},{"event":"cmd_output","timestamp":1607098358,"output":"[info] ppl_id: 4c1de4f9-c3b5-44a9-8782-20cdaecd891f, type: Ppls, state: pending, event: exit_schedu"},{"event":"cmd_output","timestamp":1607098358,"output":"ling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:"},{"event":"cmd_output","timestamp":1607098358,"output":"38.730 [info] ppl_id: 4c1de4f9-c3b5-44a9-8782-20cdaecd891f, type: Ppls, state: queuing, event: exit"},{"event":"cmd_output","timestamp":1607098358,"output":"_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098358,"output":"\n16:12:38.740 [info] ppl_id: 4c1de4f9-c3b5-44a9-8782-20cdaecd891f, type: Ppls, state: running, even"},{"event":"cmd_output","timestamp":1607098358,"output":"t: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098358,"output":"m\u001b[22m\n16:12:38.744 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"4c1de4"},{"event":"cmd_output","timestamp":1607098358,"output":"f9-c3b5-44a9-8782-20cdaecd891f\"\n\u001b[0m\u001b[22m\n16:12:38.755 [info] block_id: ad623ee5-dfda-47f9-a5e4-9"},{"event":"cmd_output","timestamp":1607098358,"output":"7cf8c3216b6, type: BlockRequests, event: persisted block run request from ppl 4c1de4f9-c3b5-44a9-878"},{"event":"cmd_output","timestamp":1607098358,"output":"2-20cdaecd891f for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_re"},{"event":"cmd_output","timestamp":1607098358,"output":"sponse/4(L35), \n\u001b[0m\u001b[22m\n16:12:38.757 [info] block_id: ad623ee5-dfda-47f9-a5e4-97cf8c3216b6, typ"},{"event":"cmd_output","timestamp":1607098358,"output":"e: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks."},{"event":"cmd_output","timestamp":1607098358,"output":"Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:38.758 [info] Block 0 of pipeline with id: 4c"},{"event":"cmd_output","timestamp":1607098358,"output":"1de4f9-c3b5-44a9-8782-20cdaecd891f scheduled in block service with id: : \"ad623ee5-dfda-47f9-a5e4-97"},{"event":"cmd_output","timestamp":1607098358,"output":"cf8c3216b6\"\n\u001b[0m\u001b[22m\n16:12:38.760 [info] ppl_id: 4c1de4f9-c3b5-44a9-8782-20cdaecd891f, type: Ppl"},{"event":"cmd_output","timestamp":1607098358,"output":"Blocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Lo"},{"event":"cmd_output","timestamp":1607098358,"output":"oper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:38.763 [info] block_id: ad623ee5-dfda-47f"},{"event":"cmd_output","timestamp":1607098358,"output":"9-a5e4-97cf8c3216b6, type: BlockRequests, event: persisted build and sub_ppl details for block_reque"},{"event":"cmd_output","timestamp":1607098358,"output":"st: ad623ee5-dfda-47f9-a5e4-97cf8c3216b6, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQuer"},{"event":"cmd_output","timestamp":1607098358,"output":"ies.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:38.765 [info] block_id: ad623ee5-dfda-47f9-a5e4-97cf8c3"},{"event":"cmd_output","timestamp":1607098358,"output":"216b6, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.S"},{"event":"cmd_output","timestamp":1607098358,"output":"TMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:38.771 [info] block_id: ad623ee5-df"},{"event":"cmd_output","timestamp":1607098358,"output":"da-47f9-a5e4-97cf8c3216b6, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098358,"output":"origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:38.786 [info] block_id: "},{"event":"cmd_output","timestamp":1607098358,"output":"ad623ee5-dfda-47f9-a5e4-97cf8c3216b6, type: Tasks, state: running, event: exit_scheduling, recovery_"},{"event":"cmd_output","timestamp":1607098358,"output":"count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:38.798 [info] "},{"event":"cmd_output","timestamp":1607098358,"output":"block_id: ad623ee5-dfda-47f9-a5e4-97cf8c3216b6, type: Tasks, state: done, event: exit_scheduling, re"},{"event":"cmd_output","timestamp":1607098358,"output":"covery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:38.803 ["},{"event":"cmd_output","timestamp":1607098358,"output":"info] block_id: ad623ee5-dfda-47f9-a5e4-97cf8c3216b6, type: Blocks, state: done, event: exit_schedu"},{"event":"cmd_output","timestamp":1607098358,"output":"ling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:"},{"event":"cmd_output","timestamp":1607098358,"output":"38.812 [info] ppl_id: 4c1de4f9-c3b5-44a9-8782-20cdaecd891f, block_id: ad623ee5-dfda-47f9-a5e4-97cf8"},{"event":"cmd_output","timestamp":1607098358,"output":"c3216b6, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, recov"},{"event":"cmd_output","timestamp":1607098358,"output":"ery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:38.821 [inf"},{"event":"cmd_output","timestamp":1607098358,"output":"o] ppl_id: 4c1de4f9-c3b5-44a9-8782-20cdaecd891f, type: Ppls, state: done, result: passed, event: ex"},{"event":"cmd_output","timestamp":1607098358,"output":"it_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32"},{"event":"cmd_output","timestamp":1607098358,"output":"m\r * test gRPC list() - filter by created(done)_before(after) timestamps (1017.9ms)\u001b[0m\n * test g"},{"event":"cmd_output","timestamp":1607098359,"output":"RPC list_activity() - invalid request parameters => error returned \u001b[32m\r * test gRPC list_activity"},{"event":"cmd_output","timestamp":1607098359,"output":"() - invalid request parameters => error returned (42.1ms)\u001b[0m\n * test gRPC describe_topology() -"},{"event":"cmd_output","timestamp":1607098359,"output":" implicit depndencies\u001b[22m\n16:12:39.080 [info] Request: 'run: %{:repo_name => \"5_v1_full\", \"branch"},{"event":"cmd_output","timestamp":1607098359,"output":"_id\" => \"21b5b83a-5377-4ed9-ae9c-1138df3d0099\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a44"},{"event":"cmd_output","timestamp":1607098359,"output":"69\", \"file_name\" => \"semaphore.yml\", \"hook_id\" => \"879feed0-364b-11eb-a9bf-5254005464e2\", \"label\" =>"},{"event":"cmd_output","timestamp":1607098359,"output":" \"master\", \"organization_id\" => \"e1a2b05a-afb9-41d6-b885-550cfd0bcad0\", \"owner\" => \"rt\", \"project_id"},{"event":"cmd_output","timestamp":1607098359,"output":"\" => \"b9981ca8-19cd-4ae8-bdb1-468437087993\", \"repo_name\" => \"2_basic\", \"request_token\" => \"879fe692-"},{"event":"cmd_output","timestamp":1607098359,"output":"364b-11eb-9ebb-5254005464e2\", \"requester_id\" => \"ceadde0e-6499-4656-9ac3-cc6ab7d848b8\", \"service\" =>"},{"event":"cmd_output","timestamp":1607098359,"output":" \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"a6c27833-ea48-40"},{"event":"cmd_output","timestamp":1607098359,"output":"e5-861a-05bba35c1041\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:12:39.082 [info] ppl_id: 1874a"},{"event":"cmd_output","timestamp":1607098359,"output":"c3c-65cf-48d6-9f14-cf3e376ebb85, type: PplRequests, event: persisted schedule request with request_t"},{"event":"cmd_output","timestamp":1607098359,"output":"oken: 879fe692-364b-11eb-9ebb-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries."},{"event":"cmd_output","timestamp":1607098359,"output":"process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:39.085 [info] ppl_id: 1874ac3c-65cf-48d6-9f14-cf3e376eb"},{"event":"cmd_output","timestamp":1607098359,"output":"b85, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098359,"output":"s.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:39.092 [info] Project b9981ca8-19c"},{"event":"cmd_output","timestamp":1607098359,"output":"d-4ae8-bdb1-468437087993 and branch masterlatest_wf details updated: \"wf_id: a6c27833-ea48-40e5-861a"},{"event":"cmd_output","timestamp":1607098359,"output":"-05bba35c1041, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:12:39.094 [info] Persisted ppl_sub_init for pipeline wi"},{"event":"cmd_output","timestamp":1607098359,"output":"th ppl_id: 1874ac3c-65cf-48d6-9f14-cf3e376ebb85: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto."},{"event":"cmd_output","timestamp":1607098359,"output":"Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 24"},{"event":"cmd_output","timestamp":1607098359,"output":"6, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:39.093493], pipeline"},{"event":"cmd_output","timestamp":1607098359,"output":"_requests: #Ecto.Association.NotLoaded, ppl_id: \"1874a"},{"event":"cmd_output","timestamp":1607098359,"output":"c3c-65cf-48d6-9f14-cf3e376ebb85\", recovery_count: 0, result: nil, result_reason: nil, state: \"create"},{"event":"cmd_output","timestamp":1607098359,"output":"d\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:39.093500]}"},{"event":"cmd_output","timestamp":1607098359,"output":"\n\u001b[0m\u001b[22m\n16:12:39.099 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingState "},{"event":"cmd_output","timestamp":1607098359,"output":"with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholde"},{"event":"cmd_output","timestamp":1607098359,"output":"r-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initiali"},{"event":"cmd_output","timestamp":1607098359,"output":"zing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: "},{"event":"cmd_output","timestamp":1607098359,"output":"\"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/"},{"event":"cmd_output","timestamp":1607098359,"output":"0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery"},{"event":"cmd_output","timestamp":1607098359,"output":"_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:39.099 [inf"},{"event":"cmd_output","timestamp":1607098359,"output":"o] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with name Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098359,"output":"SubInits.STMHandler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-"},{"event":"cmd_output","timestamp":1607098359,"output":"PplSubInits-STMHandler-RegularInitState\"]}, recurring args: %{allowed_states: [\"done\"], cooling_time"},{"event":"cmd_output","timestamp":1607098359,"output":"_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_init\", publisher"},{"event":"cmd_output","timestamp":1607098359,"output":"_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :"},{"event":"cmd_output","timestamp":1607098359,"output":"recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098359,"output":"22m\n16:12:39.100 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.FetchingState with "},{"event":"cmd_output","timestamp":1607098359,"output":"name Elixir.Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 ms, metric_name: {\"Ppl.beholder-"},{"event":"cmd_output","timestamp":1607098359,"output":"wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %{allowed_states: [\"regular"},{"event":"cmd_output","timestamp":1607098359,"output":"_init\", \"compilation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubIni"},{"event":"cmd_output","timestamp":1607098359,"output":"ts, observed_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate"},{"event":"cmd_output","timestamp":1607098359,"output":"_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.Ppl"},{"event":"cmd_output","timestamp":1607098359,"output":"SubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:39.101 [info] Periodic from module Elixir.Ppl.P"},{"event":"cmd_output","timestamp":1607098359,"output":"plSubInits.STMHandler.CompilationState with name Elixir.Ppl.PplSubInits.STMHandler.CompilationState "},{"event":"cmd_output","timestamp":1607098359,"output":":: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationSta"},{"event":"cmd_output","timestamp":1607098359,"output":"te\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"stopping\", \"done\"], coolin"},{"event":"cmd_output","timestamp":1607098359,"output":"g_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"compilation\", pub"},{"event":"cmd_output","timestamp":1607098359,"output":"lisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :res"},{"event":"cmd_output","timestamp":1607098359,"output":"ult, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n"},{"event":"cmd_output","timestamp":1607098359,"output":"\u001b[0m\u001b[22m\n16:12:39.101 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedState "},{"event":"cmd_output","timestamp":1607098359,"output":"with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.behol"},{"event":"cmd_output","timestamp":1607098359,"output":"der-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args: %{allowed_states: [\"fetc"},{"event":"cmd_output","timestamp":1607098359,"output":"hing\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_stat"},{"event":"cmd_output","timestamp":1607098359,"output":"e: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated"},{"event":"cmd_output","timestamp":1607098359,"output":"_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_sup"},{"event":"cmd_output","timestamp":1607098359,"output":"ervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:39.214 [info] ppl_id: 1874ac3c-65cf-48d6-9f14-cf3e376ebb85, type:"},{"event":"cmd_output","timestamp":1607098359,"output":" PplRequests, event: persisted source_args for pipeline: 1874ac3c-65cf-48d6-9f14-cf3e376ebb85, origi"},{"event":"cmd_output","timestamp":1607098359,"output":"n: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:39.216 ["},{"event":"cmd_output","timestamp":1607098359,"output":"info] ppl_id: 1874ac3c-65cf-48d6-9f14-cf3e376ebb85, type: PplSubInits, state: fetching, event: exit"},{"event":"cmd_output","timestamp":1607098359,"output":"_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098359,"output":"\n16:12:39.245 [info] ppl_id: 1874ac3c-65cf-48d6-9f14-cf3e376ebb85, type: PplSubInits, state: regula"},{"event":"cmd_output","timestamp":1607098359,"output":"r_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1"},{"event":"cmd_output","timestamp":1607098359,"output":"(L90), \n\u001b[0m\u001b[22m\n16:12:39.270 [info] ppl_id: 1874ac3c-65cf-48d6-9f14-cf3e376ebb85, type: PplRequ"},{"event":"cmd_output","timestamp":1607098359,"output":"ests, event: persisted definition for request with request_token: 879fe692-364b-11eb-9ebb-5254005464"},{"event":"cmd_output","timestamp":1607098359,"output":"e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098359,"output":"6:12:39.278 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<"},{"event":"cmd_output","timestamp":1607098359,"output":":loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:12:39.273791], name: \"master-.semaphore/semaphore."},{"event":"cmd_output","timestamp":1607098359,"output":"yml\", organization_id: \"e1a2b05a-afb9-41d6-b885-550cfd0bcad0\", project_id: \"b9981ca8-19cd-4ae8-bdb1-"},{"event":"cmd_output","timestamp":1607098359,"output":"468437087993\", queue_id: \"7210c289-7fb2-49cb-a5ca-9319085fc612\", scope: \"project\", updated_at: ~N[20"},{"event":"cmd_output","timestamp":1607098359,"output":"20-12-04 16:12:39.273816], user_generated: false}}\n\u001b[0m\u001b[22m\n16:12:39.285 [info] ppl_id: not_avai"},{"event":"cmd_output","timestamp":1607098359,"output":"lable, event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \r"},{"event":"cmd_output","timestamp":1607098359,"output":"\n\u001b[0m\u001b[22m\n16:12:39.285 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularIn"},{"event":"cmd_output","timestamp":1607098359,"output":"itState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:39.285 [info] ppl_id: 1874ac3c-65cf-48d6-9f14-cf3e376eb"},{"event":"cmd_output","timestamp":1607098359,"output":"b85, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098359,"output":": Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:39.286 [inf"},{"event":"cmd_output","timestamp":1607098359,"output":"o] ppl_id: 1874ac3c-65cf-48d6-9f14-cf3e376ebb85, type: PplBlocks, block_index: 1, state: initializi"},{"event":"cmd_output","timestamp":1607098359,"output":"ng, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.al"},{"event":"cmd_output","timestamp":1607098359,"output":"l_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:39.288 [info] ppl_id: 1874ac3c-65cf-48d6-9f14-cf3e376ebb85, type:"},{"event":"cmd_output","timestamp":1607098359,"output":" PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098359,"output":".Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:39.296 [info] ppl_id: 1874ac3c-65cf-48"},{"event":"cmd_output","timestamp":1607098359,"output":"d6-9f14-cf3e376ebb85, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098359,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test gRPC describe_topology() - imp"},{"event":"cmd_output","timestamp":1607098359,"output":"licit depndencies (287.6ms)\u001b[0m\n * test gRPC describe_many() - refuse request when there are to ma"},{"event":"cmd_output","timestamp":1607098359,"output":"ny unfinished ones\r * test gRPC describe_many() - refuse request when there are to many unfinished "},{"event":"cmd_output","timestamp":1607098359,"output":"ones (skipped)\n * test gRPC list_activity() - no active pipelines => empty list returned\u001b[32m\r * "},{"event":"cmd_output","timestamp":1607098359,"output":"test gRPC list_activity() - no active pipelines => empty list returned (53.6ms)\u001b[0m\n * test gRPC l"},{"event":"cmd_output","timestamp":1607098359,"output":"ist() - valid params - success\r * test gRPC list() - valid params - success (skipped)\n * test gRP"},{"event":"cmd_output","timestamp":1607098359,"output":"C terminate() - - ppl_id not found\r * test gRPC terminate() - - ppl_id not found (skipped)\n * t"},{"event":"cmd_output","timestamp":1607098359,"output":"est gRPC list() - filter by yml_file_path and branch\r * test gRPC list() - filter by yml_file_path "},{"event":"cmd_output","timestamp":1607098359,"output":"and branch (skipped)\n * test gRPC list_keyset() - refuse request when there are to many unfinished"},{"event":"cmd_output","timestamp":1607098359,"output":" ones\r * test gRPC list_keyset() - refuse request when there are to many unfinished ones (skipped)\r"},{"event":"cmd_output","timestamp":1607098359,"output":"\n * test gRPC list_grouped() - org scoped user generated queues\u001b[22m\n16:12:39.420 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098359,"output":" 0b1dedf5-3aa9-4066-82de-b4c9391235f2, type: PplRequests, event: persisted schedule request with req"},{"event":"cmd_output","timestamp":1607098359,"output":"uest_token: fafc37a4-22b8-4321-a08d-d74b484a2b58, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQu"},{"event":"cmd_output","timestamp":1607098359,"output":"eries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:39.425 [info] ppl_id: 0b1dedf5-3aa9-4066-82de-b4c"},{"event":"cmd_output","timestamp":1607098359,"output":"9391235f2, type: PplRequests, event: persisted definition for request with request_token: fafc37a4-2"},{"event":"cmd_output","timestamp":1607098359,"output":"2b8-4321-a08d-d74b484a2b58, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definitio"},{"event":"cmd_output","timestamp":1607098359,"output":"n/3(L76), \n\u001b[0m\u001b[22m\n16:12:39.428 [info] ppl_id: 0b1dedf5-3aa9-4066-82de-b4c9391235f2, type: Ppls"},{"event":"cmd_output","timestamp":1607098359,"output":", state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQue"},{"event":"cmd_output","timestamp":1607098359,"output":"ries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:39.432 [info] Persisted ppl_sub_init for pipeline"},{"event":"cmd_output","timestamp":1607098359,"output":" with ppl_id: 0b1dedf5-3aa9-4066-82de-b4c9391235f2: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ec"},{"event":"cmd_output","timestamp":1607098359,"output":"to.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id:"},{"event":"cmd_output","timestamp":1607098359,"output":" 247, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:39.431106], pipel"},{"event":"cmd_output","timestamp":1607098359,"output":"ine_requests: #Ecto.Association.NotLoaded, ppl_id: \"0b"},{"event":"cmd_output","timestamp":1607098359,"output":"1dedf5-3aa9-4066-82de-b4c9391235f2\", recovery_count: 0, result: nil, result_reason: nil, state: \"cre"},{"event":"cmd_output","timestamp":1607098359,"output":"ated\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:39.43111"},{"event":"cmd_output","timestamp":1607098359,"output":"4]}\n\u001b[0m\u001b[22m\n16:12:39.441 [info] ppl_id: 235b9bec-509e-4ab8-b807-f78116e16182, type: PplRequests"},{"event":"cmd_output","timestamp":1607098359,"output":", event: persisted schedule request with request_token: 4064a46e-97c3-44c3-a0bc-2417d22ac288, origin"},{"event":"cmd_output","timestamp":1607098359,"output":": Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:39.443"},{"event":"cmd_output","timestamp":1607098359,"output":" [info] ppl_id: 235b9bec-509e-4ab8-b807-f78116e16182, type: PplRequests, event: persisted definitio"},{"event":"cmd_output","timestamp":1607098359,"output":"n for request with request_token: 4064a46e-97c3-44c3-a0bc-2417d22ac288, origin: Elixir.Ppl.PplReques"},{"event":"cmd_output","timestamp":1607098359,"output":"ts.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:39.446 [info] ppl_id: 235b"},{"event":"cmd_output","timestamp":1607098359,"output":"9bec-509e-4ab8-b807-f78116e16182, type: Ppls, state: initializing, event: initializing, recovery_cou"},{"event":"cmd_output","timestamp":1607098359,"output":"nt: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:39.453"},{"event":"cmd_output","timestamp":1607098359,"output":" [info] Persisted ppl_sub_init for pipeline with ppl_id: 235b9bec-509e-4ab8-b807-f78116e16182: %Ppl"},{"event":"cmd_output","timestamp":1607098359,"output":".PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compi"},{"event":"cmd_output","timestamp":1607098359,"output":"le_task_id: nil, error_description: nil, id: 248, in_scheduling: false, init_type: \"regular\", insert"},{"event":"cmd_output","timestamp":1607098359,"output":"ed_at: ~N[2020-12-04 16:12:39.451973], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"235b9bec-509e-4ab8-b807-f78116e16182\", recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098359,"output":"result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: n"},{"event":"cmd_output","timestamp":1607098359,"output":"il, updated_at: ~N[2020-12-04 16:12:39.451982]}\n\u001b[0m\u001b[22m\n16:12:39.456 [info] ppl_id: e4de57ec-31"},{"event":"cmd_output","timestamp":1607098359,"output":"2c-4986-87b4-3beafcad1182, type: PplRequests, event: persisted schedule request with request_token: "},{"event":"cmd_output","timestamp":1607098359,"output":"450b1a1a-c141-4924-ae70-87dfe73eb91d, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.proces"},{"event":"cmd_output","timestamp":1607098359,"output":"s_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:39.457 [info] ppl_id: e4de57ec-312c-4986-87b4-3beafcad1182, t"},{"event":"cmd_output","timestamp":1607098359,"output":"ype: PplRequests, event: persisted definition for request with request_token: 450b1a1a-c141-4924-ae7"},{"event":"cmd_output","timestamp":1607098359,"output":"0-87dfe73eb91d, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n"},{"event":"cmd_output","timestamp":1607098359,"output":"\u001b[0m\u001b[22m\n16:12:39.460 [info] ppl_id: e4de57ec-312c-4986-87b4-3beafcad1182, type: Ppls, state: ini"},{"event":"cmd_output","timestamp":1607098359,"output":"tializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process"},{"event":"cmd_output","timestamp":1607098359,"output":"_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:39.462 [info] Persisted ppl_sub_init for pipeline with ppl_id"},{"event":"cmd_output","timestamp":1607098359,"output":": e4de57ec-312c-4986-87b4-3beafcad1182: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Me"},{"event":"cmd_output","timestamp":1607098359,"output":"tadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 249, in_sch"},{"event":"cmd_output","timestamp":1607098359,"output":"eduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:39.461703], pipeline_requests"},{"event":"cmd_output","timestamp":1607098359,"output":": #Ecto.Association.NotLoaded, ppl_id: \"e4de57ec-312c-"},{"event":"cmd_output","timestamp":1607098359,"output":"4986-87b4-3beafcad1182\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", termi"},{"event":"cmd_output","timestamp":1607098359,"output":"nate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:39.461710]}\n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098359,"output":"2m\n16:12:39.465 [info] ppl_id: 70b85e8f-44a0-41ed-8229-40f0047f1835, type: PplRequests, event: per"},{"event":"cmd_output","timestamp":1607098359,"output":"sisted schedule request with request_token: 84377d54-e92e-43bc-98da-bce9da0f2073, origin: Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098359,"output":".PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:39.466 [info] ppl"},{"event":"cmd_output","timestamp":1607098359,"output":"_id: 70b85e8f-44a0-41ed-8229-40f0047f1835, type: PplRequests, event: persisted definition for reques"},{"event":"cmd_output","timestamp":1607098359,"output":"t with request_token: 84377d54-e92e-43bc-98da-bce9da0f2073, origin: Elixir.Ppl.PplRequests.Model.Ppl"},{"event":"cmd_output","timestamp":1607098359,"output":"RequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:39.468 [info] ppl_id: 70b85e8f-44a0-41"},{"event":"cmd_output","timestamp":1607098359,"output":"ed-8229-40f0047f1835, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098359,"output":"n: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:39.471 [info] Per"},{"event":"cmd_output","timestamp":1607098359,"output":"sisted ppl_sub_init for pipeline with ppl_id: 70b85e8f-44a0-41ed-8229-40f0047f1835: %Ppl.PplSubInits"},{"event":"cmd_output","timestamp":1607098359,"output":".Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: "},{"event":"cmd_output","timestamp":1607098359,"output":"nil, error_description: nil, id: 250, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[20"},{"event":"cmd_output","timestamp":1607098359,"output":"20-12-04 16:12:39.470538], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"70b85e8f-44a0-41ed-8229-40f0047f1835\", recovery_count: 0, result: nil,"},{"event":"cmd_output","timestamp":1607098359,"output":" result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_"},{"event":"cmd_output","timestamp":1607098359,"output":"at: ~N[2020-12-04 16:12:39.470545]}\n\u001b[0m\u001b[22m\n16:12:39.474 [info] ppl_id: 68a5c6f6-33c3-4253-89f5"},{"event":"cmd_output","timestamp":1607098359,"output":"-7f0f2c18d6e2, type: PplRequests, event: persisted schedule request with request_token: e3694e25-5d9"},{"event":"cmd_output","timestamp":1607098359,"output":"8-4573-ab97-f8b2d33db1aa, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2"},{"event":"cmd_output","timestamp":1607098359,"output":"(L55), \n\u001b[0m\u001b[22m\n16:12:39.484 [info] ppl_id: 68a5c6f6-33c3-4253-89f5-7f0f2c18d6e2, type: PplRequ"},{"event":"cmd_output","timestamp":1607098359,"output":"ests, event: persisted definition for request with request_token: e3694e25-5d98-4573-ab97-f8b2d33db1"},{"event":"cmd_output","timestamp":1607098359,"output":"aa, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098359,"output":"6:12:39.486 [info] ppl_id: 68a5c6f6-33c3-4253-89f5-7f0f2c18d6e2, type: Ppls, state: initializing, e"},{"event":"cmd_output","timestamp":1607098359,"output":"vent: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2("},{"event":"cmd_output","timestamp":1607098359,"output":"L124), \n\u001b[0m\u001b[22m\n16:12:39.489 [info] Persisted ppl_sub_init for pipeline with ppl_id: 68a5c6f6-3"},{"event":"cmd_output","timestamp":1607098359,"output":"3c3-4253-89f5-7f0f2c18d6e2: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:load"},{"event":"cmd_output","timestamp":1607098359,"output":"ed, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 251, in_scheduling: fal"},{"event":"cmd_output","timestamp":1607098359,"output":"se, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:39.488086], pipeline_requests: #Ecto.Asso"},{"event":"cmd_output","timestamp":1607098359,"output":"ciation.NotLoaded, ppl_id: \"68a5c6f6-33c3-4253-89f5-7f"},{"event":"cmd_output","timestamp":1607098359,"output":"0f2c18d6e2\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request"},{"event":"cmd_output","timestamp":1607098359,"output":": nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:39.488104]}\n\u001b[0m\u001b[22m\n16:12:39"},{"event":"cmd_output","timestamp":1607098359,"output":".491 [info] ppl_id: 0bf50b5f-d726-4d0b-8453-3c296be7a44e, type: PplRequests, event: persisted sched"},{"event":"cmd_output","timestamp":1607098359,"output":"ule request with request_token: decc0ab3-b404-468a-8c65-133ac843ac9f, origin: Elixir.Ppl.PplRequests"},{"event":"cmd_output","timestamp":1607098359,"output":".Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:39.492 [info] ppl_id: 0bf50b5"},{"event":"cmd_output","timestamp":1607098359,"output":"f-d726-4d0b-8453-3c296be7a44e, type: PplRequests, event: persisted definition for request with reque"},{"event":"cmd_output","timestamp":1607098359,"output":"st_token: decc0ab3-b404-468a-8c65-133ac843ac9f, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQuer"},{"event":"cmd_output","timestamp":1607098359,"output":"ies.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:39.495 [info] ppl_id: 0bf50b5f-d726-4d0b-8453-3c29"},{"event":"cmd_output","timestamp":1607098359,"output":"6be7a44e, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Pp"},{"event":"cmd_output","timestamp":1607098359,"output":"l.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:39.498 [info] Persisted ppl_s"},{"event":"cmd_output","timestamp":1607098359,"output":"ub_init for pipeline with ppl_id: 0bf50b5f-d726-4d0b-8453-3c296be7a44e: %Ppl.PplSubInits.Model.PplSu"},{"event":"cmd_output","timestamp":1607098359,"output":"bInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_d"},{"event":"cmd_output","timestamp":1607098359,"output":"escription: nil, id: 252, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:"},{"event":"cmd_output","timestamp":1607098359,"output":"12:39.496890], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"0bf50b5f-d726-4d0b-8453-3c296be7a44e\", recovery_count: 0, result: nil, result_reas"},{"event":"cmd_output","timestamp":1607098359,"output":"on: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-"},{"event":"cmd_output","timestamp":1607098359,"output":"12-04 16:12:39.496897]}\n\u001b[0m\u001b[22m\n16:12:39.501 [info] ppl_id: 49bf201d-fbc9-4782-96fa-4d356073b39"},{"event":"cmd_output","timestamp":1607098359,"output":"d, type: PplRequests, event: persisted schedule request with request_token: 28590fb4-8de2-411d-8304-"},{"event":"cmd_output","timestamp":1607098359,"output":"824eb7fd254f, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098359,"output":"m\u001b[22m\n16:12:39.502 [info] ppl_id: 49bf201d-fbc9-4782-96fa-4d356073b39d, type: PplRequests, event:"},{"event":"cmd_output","timestamp":1607098359,"output":" persisted definition for request with request_token: 28590fb4-8de2-411d-8304-824eb7fd254f, origin: "},{"event":"cmd_output","timestamp":1607098359,"output":"Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:39.503 "},{"event":"cmd_output","timestamp":1607098359,"output":"[info] ppl_id: 49bf201d-fbc9-4782-96fa-4d356073b39d, type: Ppls, state: initializing, event: initia"},{"event":"cmd_output","timestamp":1607098359,"output":"lizing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098359,"output":"m\u001b[22m\n16:12:39.507 [info] Persisted ppl_sub_init for pipeline with ppl_id: 49bf201d-fbc9-4782-96f"},{"event":"cmd_output","timestamp":1607098359,"output":"a-4d356073b39d: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipelin"},{"event":"cmd_output","timestamp":1607098359,"output":"e_sub_inits\">, compile_task_id: nil, error_description: nil, id: 253, in_scheduling: false, init_typ"},{"event":"cmd_output","timestamp":1607098359,"output":"e: \"regular\", inserted_at: ~N[2020-12-04 16:12:39.505921], pipeline_requests: #Ecto.Association.NotL"},{"event":"cmd_output","timestamp":1607098359,"output":"oaded, ppl_id: \"49bf201d-fbc9-4782-96fa-4d356073b39d\","},{"event":"cmd_output","timestamp":1607098359,"output":" recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, termi"},{"event":"cmd_output","timestamp":1607098359,"output":"nate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:39.505929]}\n\u001b[0m\u001b[22m\n16:12:39.510 [info] "},{"event":"cmd_output","timestamp":1607098359,"output":" ppl_id: 4e792e1f-fc4b-482d-b5a8-fa123e4502d9, type: PplRequests, event: persisted schedule request "},{"event":"cmd_output","timestamp":1607098359,"output":"with request_token: 6e7d40d2-715a-4089-a5ca-8ac2b075bc65, origin: Elixir.Ppl.PplRequests.Model.PplRe"},{"event":"cmd_output","timestamp":1607098359,"output":"questsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:39.512 [info] ppl_id: 4e792e1f-fc4b-482d-"},{"event":"cmd_output","timestamp":1607098359,"output":"b5a8-fa123e4502d9, type: PplRequests, event: persisted definition for request with request_token: 6e"},{"event":"cmd_output","timestamp":1607098359,"output":"7d40d2-715a-4089-a5ca-8ac2b075bc65, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_d"},{"event":"cmd_output","timestamp":1607098359,"output":"efinition/3(L76), \n\u001b[0m\u001b[22m\n16:12:39.514 [info] ppl_id: 4e792e1f-fc4b-482d-b5a8-fa123e4502d9, ty"},{"event":"cmd_output","timestamp":1607098359,"output":"pe: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model"},{"event":"cmd_output","timestamp":1607098359,"output":".PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:39.517 [info] Persisted ppl_sub_init for "},{"event":"cmd_output","timestamp":1607098359,"output":"pipeline with ppl_id: 4e792e1f-fc4b-482d-b5a8-fa123e4502d9: %Ppl.PplSubInits.Model.PplSubInits{__met"},{"event":"cmd_output","timestamp":1607098359,"output":"a__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: "},{"event":"cmd_output","timestamp":1607098359,"output":"nil, id: 254, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:39.516282"},{"event":"cmd_output","timestamp":1607098359,"output":"], pipeline_requests: #Ecto.Association.NotLoaded, ppl"},{"event":"cmd_output","timestamp":1607098359,"output":"_id: \"4e792e1f-fc4b-482d-b5a8-fa123e4502d9\", recovery_count: 0, result: nil, result_reason: nil, sta"},{"event":"cmd_output","timestamp":1607098359,"output":"te: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:"},{"event":"cmd_output","timestamp":1607098359,"output":"39.516289]}\n\u001b[0m\u001b[22m\n16:12:39.519 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.Initial"},{"event":"cmd_output","timestamp":1607098359,"output":"izingState with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms, metric_name: {\""},{"event":"cmd_output","timestamp":1607098359,"output":"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %{allowed_states:"},{"event":"cmd_output","timestamp":1607098359,"output":" [\"initializing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, obser"},{"event":"cmd_output","timestamp":1607098359,"output":"ved_state: \"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.Initializing"},{"event":"cmd_output","timestamp":1607098359,"output":"State.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result"},{"event":"cmd_output","timestamp":1607098359,"output":", :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:"},{"event":"cmd_output","timestamp":1607098359,"output":"39.519 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098359,"output":"s.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHan"},{"event":"cmd_output","timestamp":1607098359,"output":"dler-PendingState\"]}, recurring args: %{allowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], c"},{"event":"cmd_output","timestamp":1607098359,"output":"ooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publisher_cb: #Fu"},{"event":"cmd_output","timestamp":1607098359,"output":"nction<0.8493005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id,"},{"event":"cmd_output","timestamp":1607098359,"output":" :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model"},{"event":"cmd_output","timestamp":1607098359,"output":".Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:12:39.520 [info] Periodic from module El"},{"event":"cmd_output","timestamp":1607098359,"output":"ixir.Ppl.Ppls.STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 1"},{"event":"cmd_output","timestamp":1607098359,"output":"00 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: "},{"event":"cmd_output","timestamp":1607098359,"output":"%{allowed_states: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Mode"},{"event":"cmd_output","timestamp":1607098359,"output":"l.Ppls, observed_state: \"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.Queu"},{"event":"cmd_output","timestamp":1607098359,"output":"ingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :res"},{"event":"cmd_output","timestamp":1607098359,"output":"ult, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098359,"output":"12:39.520 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl."},{"event":"cmd_output","timestamp":1607098359,"output":"Ppls.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STM"},{"event":"cmd_output","timestamp":1607098359,"output":"Handler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_"},{"event":"cmd_output","timestamp":1607098359,"output":"time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"running\", publisher_cb: #Function"},{"event":"cmd_output","timestamp":1607098359,"output":"<0.74670282/1 in Ppl.Ppls.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :ter"},{"event":"cmd_output","timestamp":1607098359,"output":"minate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls"},{"event":"cmd_output","timestamp":1607098359,"output":", task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:12:39.520 [info] Periodic from module Elixir."},{"event":"cmd_output","timestamp":1607098359,"output":"Ppl.Ppls.STMHandler.StoppingState with name Elixir.Ppl.Ppls.STMHandler.StoppingState :: period: 100 "},{"event":"cmd_output","timestamp":1607098359,"output":"ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring args: %{"},{"event":"cmd_output","timestamp":1607098359,"output":"allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, obse"},{"event":"cmd_output","timestamp":1607098359,"output":"rved_state: \"stopping\", publisher_cb: #Function<0.71803493/1 in Ppl.Ppls.STMHandler.StoppingState.ar"},{"event":"cmd_output","timestamp":1607098359,"output":"gs/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recov"},{"event":"cmd_output","timestamp":1607098359,"output":"ery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:39.521 ["},{"event":"cmd_output","timestamp":1607098359,"output":"info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplS"},{"event":"cmd_output","timestamp":1607098359,"output":"ubInits.STMHandler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSu"},{"event":"cmd_output","timestamp":1607098359,"output":"bInits-STMHandler-CreatedState\"]}, recurring args: %{allowed_states: [\"fetching\", \"done\"], cooling_t"},{"event":"cmd_output","timestamp":1607098359,"output":"ime_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"created\", publisher_c"},{"event":"cmd_output","timestamp":1607098359,"output":"b: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :re"},{"event":"cmd_output","timestamp":1607098359,"output":"covery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098359,"output":"m\n16:12:39.521 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.FetchingState with na"},{"event":"cmd_output","timestamp":1607098359,"output":"me Elixir.Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wa"},{"event":"cmd_output","timestamp":1607098359,"output":"ke_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %{allowed_states: [\"regular_i"},{"event":"cmd_output","timestamp":1607098359,"output":"nit\", \"compilation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits"},{"event":"cmd_output","timestamp":1607098359,"output":", observed_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_r"},{"event":"cmd_output","timestamp":1607098359,"output":"equest, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSu"},{"event":"cmd_output","timestamp":1607098359,"output":"bInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:39.521 [info] Periodic from module Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098359,"output":"SubInits.STMHandler.CompilationState with name Elixir.Ppl.PplSubInits.STMHandler.CompilationState ::"},{"event":"cmd_output","timestamp":1607098359,"output":" period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState"},{"event":"cmd_output","timestamp":1607098359,"output":"\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_"},{"event":"cmd_output","timestamp":1607098359,"output":"time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"compilation\", publi"},{"event":"cmd_output","timestamp":1607098359,"output":"sher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :resul"},{"event":"cmd_output","timestamp":1607098359,"output":"t, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b["},{"event":"cmd_output","timestamp":1607098359,"output":"0m\u001b[22m\n16:12:39.522 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.RegularInitStat"},{"event":"cmd_output","timestamp":1607098359,"output":"e with name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl"},{"event":"cmd_output","timestamp":1607098359,"output":".beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurring args: %{allowed_stat"},{"event":"cmd_output","timestamp":1607098359,"output":"es: [\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state:"},{"event":"cmd_output","timestamp":1607098359,"output":" \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :upda"},{"event":"cmd_output","timestamp":1607098359,"output":"ted_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_"},{"event":"cmd_output","timestamp":1607098359,"output":"supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:39.522 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHan"},{"event":"cmd_output","timestamp":1607098359,"output":"dler.InitializingState with name Elixir.Ppl.PplBlocks.STMHandler.InitializingState :: period: 100 ms"},{"event":"cmd_output","timestamp":1607098359,"output":", metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-InitializingState\"]}, recurring a"},{"event":"cmd_output","timestamp":1607098359,"output":"rgs: %{allowed_states: [\"initializing\", \"waiting\", \"done\"], cooling_time_sec: 0, initial_query: Ppl."},{"event":"cmd_output","timestamp":1607098359,"output":"PplBlocks.Model.PplBlocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, "},{"event":"cmd_output","timestamp":1607098359,"output":"returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_"},{"event":"cmd_output","timestamp":1607098359,"output":"index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:39.523 [inf"},{"event":"cmd_output","timestamp":1607098359,"output":"o] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks"},{"event":"cmd_output","timestamp":1607098359,"output":".STMHandler.WaitingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-S"},{"event":"cmd_output","timestamp":1607098359,"output":"TMHandler-WaitingState\"]}, recurring args: %{allowed_states: [\"waiting\", \"running\", \"done\"], cooling"},{"event":"cmd_output","timestamp":1607098359,"output":"_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"waiting\", publisher_cb:"},{"event":"cmd_output","timestamp":1607098359,"output":" #Function<0.8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, returni"},{"event":"cmd_output","timestamp":1607098359,"output":"ng: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index],"},{"event":"cmd_output","timestamp":1607098359,"output":" schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:39.523 [info] Per"},{"event":"cmd_output","timestamp":1607098359,"output":"iodic from module Elixir.Ppl.PplBlocks.STMHandler.RunningState with name Elixir.Ppl.PplBlocks.STMHan"},{"event":"cmd_output","timestamp":1607098359,"output":"dler.RunningState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandl"},{"event":"cmd_output","timestamp":1607098359,"output":"er-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_"},{"event":"cmd_output","timestamp":1607098359,"output":"sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"running\", publisher_cb: #Fun"},{"event":"cmd_output","timestamp":1607098359,"output":"ction<0.28166834/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: "},{"event":"cmd_output","timestamp":1607098359,"output":"[:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :blo"},{"event":"cmd_output","timestamp":1607098359,"output":"ck_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:39.524 [inf"},{"event":"cmd_output","timestamp":1607098359,"output":"o] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.StoppingState with name Elixir.Ppl.PplBlock"},{"event":"cmd_output","timestamp":1607098359,"output":"s.STMHandler.StoppingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks"},{"event":"cmd_output","timestamp":1607098359,"output":"-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_s"},{"event":"cmd_output","timestamp":1607098359,"output":"ec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"stopping\", publisher_cb: #Fun"},{"event":"cmd_output","timestamp":1607098359,"output":"ction<0.104215991/1 in Ppl.PplBlocks.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning"},{"event":"cmd_output","timestamp":1607098359,"output":": [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :b"},{"event":"cmd_output","timestamp":1607098359,"output":"lock_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:39.524 [i"},{"event":"cmd_output","timestamp":1607098359,"output":"nfo] Periodic from module Elixir.Block.Blocks.STMHandler.InitializingState with name Elixir.Block.B"},{"event":"cmd_output","timestamp":1607098359,"output":"locks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-"},{"event":"cmd_output","timestamp":1607098359,"output":"Blocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooli"},{"event":"cmd_output","timestamp":1607098359,"output":"ng_time_sec: 0, initial_query: Block.Blocks.Model.Blocks, observed_state: \"initializing\", publisher_"},{"event":"cmd_output","timestamp":1607098359,"output":"cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery"},{"event":"cmd_output","timestamp":1607098359,"output":"_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:39."},{"event":"cmd_output","timestamp":1607098359,"output":"525 [info] Periodic from module Elixir.Block.Blocks.STMHandler.RunningState with name Elixir.Block."},{"event":"cmd_output","timestamp":1607098359,"output":"Blocks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Bloc"},{"event":"cmd_output","timestamp":1607098359,"output":"ks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], co"},{"event":"cmd_output","timestamp":1607098359,"output":"oling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"running\", publisher_c"},{"event":"cmd_output","timestamp":1607098359,"output":"b: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_"},{"event":"cmd_output","timestamp":1607098359,"output":"count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:39.5"},{"event":"cmd_output","timestamp":1607098359,"output":"25 [info] Periodic from module Elixir.Block.Blocks.STMHandler.StoppingState with name Elixir.Block."},{"event":"cmd_output","timestamp":1607098359,"output":"Blocks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blo"},{"event":"cmd_output","timestamp":1607098359,"output":"cks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_tim"},{"event":"cmd_output","timestamp":1607098359,"output":"e_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"stopping\", publisher_cb: :skip"},{"event":"cmd_output","timestamp":1607098359,"output":", repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :"},{"event":"cmd_output","timestamp":1607098359,"output":"block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:39.525 [info"},{"event":"cmd_output","timestamp":1607098359,"output":"] Periodic from module Elixir.Block.Tasks.STMHandler.PendingState with name Elixir.Block.Tasks.STMH"},{"event":"cmd_output","timestamp":1607098359,"output":"andler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandle"},{"event":"cmd_output","timestamp":1607098359,"output":"r-PendingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initi"},{"event":"cmd_output","timestamp":1607098359,"output":"al_query: Block.Tasks.Model.Tasks, observed_state: \"pending\", publisher_cb: :skip, repo: Block.EctoR"},{"event":"cmd_output","timestamp":1607098359,"output":"epo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id, :build_re"},{"event":"cmd_output","timestamp":1607098359,"output":"quest_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:39.526 [info] "},{"event":"cmd_output","timestamp":1607098359,"output":" Periodic from module Elixir.Block.Tasks.STMHandler.RunningState with name Elixir.Block.Tasks.STMHan"},{"event":"cmd_output","timestamp":1607098359,"output":"dler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-"},{"event":"cmd_output","timestamp":1607098359,"output":"RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec"},{"event":"cmd_output","timestamp":1607098359,"output":": -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"running\", publisher_cb: :skip, repo: "},{"event":"cmd_output","timestamp":1607098359,"output":"Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id"},{"event":"cmd_output","timestamp":1607098359,"output":"], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:39.526 [info] Periodi"},{"event":"cmd_output","timestamp":1607098359,"output":"c from module Elixir.Block.Tasks.STMHandler.StoppingState with name Elixir.Block.Tasks.STMHandler.St"},{"event":"cmd_output","timestamp":1607098359,"output":"oppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-Stoppi"},{"event":"cmd_output","timestamp":1607098359,"output":"ngState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_qu"},{"event":"cmd_output","timestamp":1607098359,"output":"ery: Block.Tasks.Model.Tasks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo,"},{"event":"cmd_output","timestamp":1607098359,"output":" returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Bloc"},{"event":"cmd_output","timestamp":1607098359,"output":"k.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:39.633 [info] ppl_id: 0b1dedf5-3aa9-"},{"event":"cmd_output","timestamp":1607098359,"output":"4066-82de-b4c9391235f2, type: PplRequests, event: persisted source_args for pipeline: 0b1dedf5-3aa9-"},{"event":"cmd_output","timestamp":1607098359,"output":"4066-82de-b4c9391235f2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89)"},{"event":"cmd_output","timestamp":1607098359,"output":", \n\u001b[0m\u001b[22m\n16:12:39.635 [info] ppl_id: 0b1dedf5-3aa9-4066-82de-b4c9391235f2, type: PplSubInits,"},{"event":"cmd_output","timestamp":1607098359,"output":" state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_stat"},{"event":"cmd_output","timestamp":1607098359,"output":"e_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:39.647 [info] ppl_id: 0b1dedf5-3aa9-4066-82de-b4c9391235f2, typ"},{"event":"cmd_output","timestamp":1607098359,"output":"e: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loope"},{"event":"cmd_output","timestamp":1607098359,"output":"r.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:39.672 [info] ppl_id: 0b1dedf5-3aa9-4066-82d"},{"event":"cmd_output","timestamp":1607098359,"output":"e-b4c9391235f2, type: PplRequests, event: persisted definition for request with request_token: fafc3"},{"event":"cmd_output","timestamp":1607098359,"output":"7a4-22b8-4321-a08d-d74b484a2b58, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_defi"},{"event":"cmd_output","timestamp":1607098359,"output":"nition/3(L76), \n\u001b[0m\u001b[22m\n16:12:39.675 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__m"},{"event":"cmd_output","timestamp":1607098359,"output":"eta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:12:39.674249], name: "},{"event":"cmd_output","timestamp":1607098359,"output":"\"master-.semaphore/semaphore.yml\", organization_id: \"bb33d42e-c8ce-489f-a50f-b773ae4aba2c\", project_"},{"event":"cmd_output","timestamp":1607098359,"output":"id: \"123\", queue_id: \"7b359666-f9e6-4ec3-a7f6-bafc67872553\", scope: \"project\", updated_at: ~N[2020-1"},{"event":"cmd_output","timestamp":1607098359,"output":"2-04 16:12:39.674257], user_generated: false}}\n\u001b[0m\u001b[22m\n16:12:39.678 [info] event: created, orig"},{"event":"cmd_output","timestamp":1607098359,"output":"in: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:39.678 [i"},{"event":"cmd_output","timestamp":1607098359,"output":"nfo] ppl_id: 0b1dedf5-3aa9-4066-82de-b4c9391235f2, type: PplBlocks, block_index: 0, state: initiali"},{"event":"cmd_output","timestamp":1607098359,"output":"zing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState."},{"event":"cmd_output","timestamp":1607098359,"output":"all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:39.680 [info] ppl_id: 0b1dedf5-3aa9-4066-82de-b4c9391235f2, typ"},{"event":"cmd_output","timestamp":1607098359,"output":"e: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098359,"output":"ir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:39.686 [info] ppl_id: 0b1dedf5-3aa9-"},{"event":"cmd_output","timestamp":1607098359,"output":"4066-82de-b4c9391235f2, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098359,"output":"n: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:39.686 [info] ppl_id: 0b1dedf"},{"event":"cmd_output","timestamp":1607098359,"output":"5-3aa9-4066-82de-b4c9391235f2, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduli"},{"event":"cmd_output","timestamp":1607098359,"output":"ng, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:39"},{"event":"cmd_output","timestamp":1607098359,"output":".698 [info] ppl_id: 0b1dedf5-3aa9-4066-82de-b4c9391235f2, type: Ppls, state: queuing, event: exit_s"},{"event":"cmd_output","timestamp":1607098359,"output":"cheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098359,"output":"6:12:39.705 [info] ppl_id: 0b1dedf5-3aa9-4066-82de-b4c9391235f2, type: Ppls, state: running, event:"},{"event":"cmd_output","timestamp":1607098359,"output":" exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098359,"output":"[22m\n16:12:39.710 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"0b1dedf5"},{"event":"cmd_output","timestamp":1607098359,"output":"-3aa9-4066-82de-b4c9391235f2\"\n\u001b[0m\u001b[22m\n16:12:39.714 [info] block_id: 17497488-0f0c-4209-b9d5-3fb"},{"event":"cmd_output","timestamp":1607098359,"output":"b1a4074ac, type: BlockRequests, event: persisted block run request from ppl 0b1dedf5-3aa9-4066-82de-"},{"event":"cmd_output","timestamp":1607098359,"output":"b4c9391235f2 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_resp"},{"event":"cmd_output","timestamp":1607098359,"output":"onse/4(L35), \n\u001b[0m\u001b[22m\n16:12:39.716 [info] block_id: 17497488-0f0c-4209-b9d5-3fbb1a4074ac, type:"},{"event":"cmd_output","timestamp":1607098359,"output":" Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Mo"},{"event":"cmd_output","timestamp":1607098359,"output":"del.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:39.720 [info] Block 0 of pipeline with id: 0b1d"},{"event":"cmd_output","timestamp":1607098359,"output":"edf5-3aa9-4066-82de-b4c9391235f2 scheduled in block service with id: : \"17497488-0f0c-4209-b9d5-3fbb"},{"event":"cmd_output","timestamp":1607098359,"output":"1a4074ac\"\n\u001b[0m\u001b[22m\n16:12:39.723 [info] ppl_id: 0b1dedf5-3aa9-4066-82de-b4c9391235f2, type: PplBl"},{"event":"cmd_output","timestamp":1607098359,"output":"ocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loop"},{"event":"cmd_output","timestamp":1607098359,"output":"er.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:39.724 [info] block_id: 17497488-0f0c-4209-"},{"event":"cmd_output","timestamp":1607098359,"output":"b9d5-3fbb1a4074ac, type: BlockRequests, event: persisted build and sub_ppl details for block_request"},{"event":"cmd_output","timestamp":1607098359,"output":": 17497488-0f0c-4209-b9d5-3fbb1a4074ac, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQuerie"},{"event":"cmd_output","timestamp":1607098359,"output":"s.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:39.729 [info] block_id: 17497488-0f0c-4209-b9d5-3fbb1a407"},{"event":"cmd_output","timestamp":1607098359,"output":"4ac, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STM"},{"event":"cmd_output","timestamp":1607098359,"output":"Handler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:39.735 [info] block_id: 17497488-0f0c"},{"event":"cmd_output","timestamp":1607098359,"output":"-4209-b9d5-3fbb1a4074ac, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098359,"output":"igin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:39.751 [info] ppl_id: 235b"},{"event":"cmd_output","timestamp":1607098359,"output":"9bec-509e-4ab8-b807-f78116e16182, type: PplRequests, event: persisted source_args for pipeline: 235b"},{"event":"cmd_output","timestamp":1607098359,"output":"9bec-509e-4ab8-b807-f78116e16182, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_sou"},{"event":"cmd_output","timestamp":1607098359,"output":"rce/2(L89), \n\u001b[0m\u001b[22m\n16:12:39.753 [info] ppl_id: 235b9bec-509e-4ab8-b807-f78116e16182, type: Pp"},{"event":"cmd_output","timestamp":1607098359,"output":"lSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Imp"},{"event":"cmd_output","timestamp":1607098359,"output":"l.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:39.764 [info] block_id: 17497488-0f0c-4209-b9d5-3fbb1"},{"event":"cmd_output","timestamp":1607098359,"output":"a4074ac, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loop"},{"event":"cmd_output","timestamp":1607098359,"output":"er.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:39.771 [info] ppl_id: 235b9bec-509e-4ab8-b8"},{"event":"cmd_output","timestamp":1607098359,"output":"07-f78116e16182, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098359,"output":"origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:39.788 [info] ppl_id: 23"},{"event":"cmd_output","timestamp":1607098359,"output":"5b9bec-509e-4ab8-b807-f78116e16182, type: PplRequests, event: persisted definition for request with "},{"event":"cmd_output","timestamp":1607098359,"output":"request_token: 4064a46e-97c3-44c3-a0bc-2417d22ac288, origin: Elixir.Ppl.PplRequests.Model.PplRequest"},{"event":"cmd_output","timestamp":1607098359,"output":"sQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:39.792 [info] event: created, origin: Elixir."},{"event":"cmd_output","timestamp":1607098359,"output":"Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:39.793 [info] ppl_i"},{"event":"cmd_output","timestamp":1607098359,"output":"d: 235b9bec-509e-4ab8-b807-f78116e16182, type: PplBlocks, block_index: 0, state: initializing, event"},{"event":"cmd_output","timestamp":1607098359,"output":": created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L"},{"event":"cmd_output","timestamp":1607098359,"output":"105), \n\u001b[0m\u001b[22m\n16:12:39.794 [info] ppl_id: 235b9bec-509e-4ab8-b807-f78116e16182, type: PplSubIn"},{"event":"cmd_output","timestamp":1607098359,"output":"its, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.S"},{"event":"cmd_output","timestamp":1607098359,"output":"TM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:39.804 [info] ppl_id: 235b9bec-509e-4ab8-b807-f"},{"event":"cmd_output","timestamp":1607098359,"output":"78116e16182, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098359,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:39.805 [info] ppl_id: 235b9bec-509e-4ab8"},{"event":"cmd_output","timestamp":1607098359,"output":"-b807-f78116e16182, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recover"},{"event":"cmd_output","timestamp":1607098359,"output":"y_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:39.810 [info]"},{"event":"cmd_output","timestamp":1607098359,"output":" ppl_id: 235b9bec-509e-4ab8-b807-f78116e16182, type: Ppls, state: queuing, event: exit_scheduling, "},{"event":"cmd_output","timestamp":1607098359,"output":"recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:39.850"},{"event":"cmd_output","timestamp":1607098359,"output":" [info] block_id: 17497488-0f0c-4209-b9d5-3fbb1a4074ac, type: Tasks, state: done, event: exit_sched"},{"event":"cmd_output","timestamp":1607098359,"output":"uling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12"},{"event":"cmd_output","timestamp":1607098359,"output":":39.857 [info] block_id: 17497488-0f0c-4209-b9d5-3fbb1a4074ac, type: Blocks, state: done, event: ex"},{"event":"cmd_output","timestamp":1607098359,"output":"it_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098359,"output":"m\n16:12:39.864 [info] ppl_id: 0b1dedf5-3aa9-4066-82de-b4c9391235f2, block_id: 17497488-0f0c-4209-b"},{"event":"cmd_output","timestamp":1607098359,"output":"9d5-3fbb1a4074ac, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduli"},{"event":"cmd_output","timestamp":1607098359,"output":"ng, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:39"},{"event":"cmd_output","timestamp":1607098359,"output":".864 [info] ppl_id: e4de57ec-312c-4986-87b4-3beafcad1182, type: PplRequests, event: persisted sourc"},{"event":"cmd_output","timestamp":1607098359,"output":"e_args for pipeline: e4de57ec-312c-4986-87b4-3beafcad1182, origin: Elixir.Ppl.PplRequests.Model.PplR"},{"event":"cmd_output","timestamp":1607098359,"output":"equestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:39.866 [info] ppl_id: e4de57ec-312c-4986-87"},{"event":"cmd_output","timestamp":1607098359,"output":"b4-3beafcad1182, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098359,"output":"in: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:39.874 [info] ppl_id: 0b1ded"},{"event":"cmd_output","timestamp":1607098359,"output":"f5-3aa9-4066-82de-b4c9391235f2, type: Ppls, state: done, result: passed, event: exit_scheduling, rec"},{"event":"cmd_output","timestamp":1607098359,"output":"overy_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:39.886 [i"},{"event":"cmd_output","timestamp":1607098359,"output":"nfo] ppl_id: e4de57ec-312c-4986-87b4-3beafcad1182, type: PplSubInits, state: regular_init, event: e"},{"event":"cmd_output","timestamp":1607098359,"output":"xit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098359,"output":"2m\n16:12:39.901 [info] ppl_id: e4de57ec-312c-4986-87b4-3beafcad1182, type: PplRequests, event: per"},{"event":"cmd_output","timestamp":1607098359,"output":"sisted definition for request with request_token: 450b1a1a-c141-4924-ae70-87dfe73eb91d, origin: Elix"},{"event":"cmd_output","timestamp":1607098359,"output":"ir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:39.904 [inf"},{"event":"cmd_output","timestamp":1607098359,"output":"o] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues"},{"event":"cmd_output","timestamp":1607098359,"output":"\">, inserted_at: ~N[2020-12-04 16:12:39.903357], name: \"master-.semaphore/semaphore.yml\", organizati"},{"event":"cmd_output","timestamp":1607098359,"output":"on_id: \"617d30a9-80cf-48d5-9d7f-759424b48b3a\", project_id: \"456\", queue_id: \"f59432a4-e991-45b6-a5da"},{"event":"cmd_output","timestamp":1607098359,"output":"-b66e16cc8336\", scope: \"project\", updated_at: ~N[2020-12-04 16:12:39.903365], user_generated: false}"},{"event":"cmd_output","timestamp":1607098359,"output":"}\n\u001b[0m\u001b[22m\n16:12:39.907 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.Regular"},{"event":"cmd_output","timestamp":1607098359,"output":"InitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:39.907 [info] ppl_id: e4de57ec-312c-4986-87b4-3beafca"},{"event":"cmd_output","timestamp":1607098359,"output":"d1182, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098359,"output":"in: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:39.909 [i"},{"event":"cmd_output","timestamp":1607098359,"output":"nfo] ppl_id: e4de57ec-312c-4986-87b4-3beafcad1182, type: PplSubInits, state: done, result: passed, "},{"event":"cmd_output","timestamp":1607098359,"output":"event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \r"},{"event":"cmd_output","timestamp":1607098359,"output":"\n\u001b[0m\u001b[22m\n16:12:39.914 [info] ppl_id: e4de57ec-312c-4986-87b4-3beafcad1182, type: PplBlocks, bloc"},{"event":"cmd_output","timestamp":1607098359,"output":"k_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Imp"},{"event":"cmd_output","timestamp":1607098359,"output":"l.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:39.926 [info] ppl_id: e4de57ec-312c-4986-87b4-3beafca"},{"event":"cmd_output","timestamp":1607098359,"output":"d1182, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper."},{"event":"cmd_output","timestamp":1607098359,"output":"STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:39.932 [info] ppl_id: e4de57ec-312c-4986-87b4-"},{"event":"cmd_output","timestamp":1607098359,"output":"3beafcad1182, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098359,"output":"Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:39.939 [info] ppl_id: 235b9bec-509e-4ab"},{"event":"cmd_output","timestamp":1607098359,"output":"8-b807-f78116e16182, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098359,"output":"Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:39.946 [info] PplBlocks WaitingS"},{"event":"cmd_output","timestamp":1607098359,"output":"tate STM is scheduling block 0 from pipeline: \"235b9bec-509e-4ab8-b807-f78116e16182\"\n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098359,"output":"12:39.952 [info] block_id: 7c4e6e14-ee26-4225-ac5a-dd6c45e9f2ee, type: BlockRequests, event: persis"},{"event":"cmd_output","timestamp":1607098359,"output":"ted block run request from ppl 235b9bec-509e-4ab8-b807-f78116e16182 for block 0, origin: Elixir.Bloc"},{"event":"cmd_output","timestamp":1607098359,"output":"k.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:39.956 [info]"},{"event":"cmd_output","timestamp":1607098359,"output":" block_id: 7c4e6e14-ee26-4225-ac5a-dd6c45e9f2ee, type: Blocks, state: initializing, event: initiali"},{"event":"cmd_output","timestamp":1607098359,"output":"zing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098359,"output":"\n16:12:39.958 [info] Block 0 of pipeline with id: 235b9bec-509e-4ab8-b807-f78116e16182 scheduled in"},{"event":"cmd_output","timestamp":1607098359,"output":" block service with id: : \"7c4e6e14-ee26-4225-ac5a-dd6c45e9f2ee\"\n\u001b[0m\u001b[22m\n16:12:39.962 [info] pp"},{"event":"cmd_output","timestamp":1607098359,"output":"l_id: 235b9bec-509e-4ab8-b807-f78116e16182, type: PplBlocks, block_index: 0, state: running, event: "},{"event":"cmd_output","timestamp":1607098359,"output":"exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098359,"output":"22m\n16:12:39.964 [info] block_id: 7c4e6e14-ee26-4225-ac5a-dd6c45e9f2ee, type: BlockRequests, event"},{"event":"cmd_output","timestamp":1607098359,"output":": persisted build and sub_ppl details for block_request: 7c4e6e14-ee26-4225-ac5a-dd6c45e9f2ee, origi"},{"event":"cmd_output","timestamp":1607098359,"output":"n: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:39."},{"event":"cmd_output","timestamp":1607098359,"output":"966 [info] block_id: 7c4e6e14-ee26-4225-ac5a-dd6c45e9f2ee, type: Tasks, state: pending, event: crea"},{"event":"cmd_output","timestamp":1607098359,"output":"ted, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n"},{"event":"cmd_output","timestamp":1607098359,"output":"\u001b[0m\u001b[22m\n16:12:39.967 [info] block_id: 7c4e6e14-ee26-4225-ac5a-dd6c45e9f2ee, type: Blocks, state:"},{"event":"cmd_output","timestamp":1607098359,"output":" running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change"},{"event":"cmd_output","timestamp":1607098359,"output":"/1(L90), \n\u001b[0m\u001b[22m\n16:12:39.968 [info] ppl_id: e4de57ec-312c-4986-87b4-3beafcad1182, type: Ppls,"},{"event":"cmd_output","timestamp":1607098359,"output":" state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state"},{"event":"cmd_output","timestamp":1607098359,"output":"_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:39.975 [info] PplBlocks WaitingState STM is scheduling block 0 f"},{"event":"cmd_output","timestamp":1607098359,"output":"rom pipeline: \"e4de57ec-312c-4986-87b4-3beafcad1182\"\n\u001b[0m\u001b[22m\n16:12:39.977 [info] ppl_id: 70b85e"},{"event":"cmd_output","timestamp":1607098359,"output":"8f-44a0-41ed-8229-40f0047f1835, type: PplRequests, event: persisted source_args for pipeline: 70b85e"},{"event":"cmd_output","timestamp":1607098359,"output":"8f-44a0-41ed-8229-40f0047f1835, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_sourc"},{"event":"cmd_output","timestamp":1607098359,"output":"e/2(L89), \n\u001b[0m\u001b[22m\n16:12:39.980 [info] ppl_id: 70b85e8f-44a0-41ed-8229-40f0047f1835, type: PplS"},{"event":"cmd_output","timestamp":1607098359,"output":"ubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl."},{"event":"cmd_output","timestamp":1607098359,"output":"log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:39.995 [info] block_id: 7c4e6e14-ee26-4225-ac5a-dd6c45e"},{"event":"cmd_output","timestamp":1607098359,"output":"9f2ee, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper"},{"event":"cmd_output","timestamp":1607098359,"output":".STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:39.998 [info] block_id: d8214b5b-09db-4641-8f"},{"event":"cmd_output","timestamp":1607098359,"output":"66-35f3f51dfd40, type: BlockRequests, event: persisted block run request from ppl e4de57ec-312c-4986"},{"event":"cmd_output","timestamp":1607098359,"output":"-87b4-3beafcad1182 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.proces"},{"event":"cmd_output","timestamp":1607098360,"output":"s_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:40.001 [info] block_id: d8214b5b-09db-4641-8f66-35f3f51dfd40,"},{"event":"cmd_output","timestamp":1607098360,"output":" type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blo"},{"event":"cmd_output","timestamp":1607098360,"output":"cks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:40.007 [info] Block 0 of pipeline with id"},{"event":"cmd_output","timestamp":1607098360,"output":": e4de57ec-312c-4986-87b4-3beafcad1182 scheduled in block service with id: : \"d8214b5b-09db-4641-8f6"},{"event":"cmd_output","timestamp":1607098360,"output":"6-35f3f51dfd40\"\n\u001b[0m\u001b[22m\n16:12:40.007 [info] block_id: d8214b5b-09db-4641-8f66-35f3f51dfd40, typ"},{"event":"cmd_output","timestamp":1607098360,"output":"e: BlockRequests, event: persisted build and sub_ppl details for block_request: d8214b5b-09db-4641-8"},{"event":"cmd_output","timestamp":1607098360,"output":"f66-35f3f51dfd40, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41),"},{"event":"cmd_output","timestamp":1607098360,"output":" \n\u001b[0m\u001b[22m\n16:12:40.009 [info] block_id: d8214b5b-09db-4641-8f66-35f3f51dfd40, type: Tasks, stat"},{"event":"cmd_output","timestamp":1607098360,"output":"e: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingSt"},{"event":"cmd_output","timestamp":1607098360,"output":"ate.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:40.011 [info] ppl_id: e4de57ec-312c-4986-87b4-3beafcad1182,"},{"event":"cmd_output","timestamp":1607098360,"output":" type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098360,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.012 [info] block_id: d8214b5"},{"event":"cmd_output","timestamp":1607098360,"output":"b-09db-4641-8f66-35f3f51dfd40, type: Blocks, state: running, event: exit_scheduling, recovery_count:"},{"event":"cmd_output","timestamp":1607098360,"output":" 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.015 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098360,"output":": 70b85e8f-44a0-41ed-8229-40f0047f1835, type: PplSubInits, state: regular_init, event: exit_scheduli"},{"event":"cmd_output","timestamp":1607098360,"output":"ng, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40"},{"event":"cmd_output","timestamp":1607098360,"output":".025 [info] block_id: d8214b5b-09db-4641-8f66-35f3f51dfd40, type: Tasks, state: running, event: exi"},{"event":"cmd_output","timestamp":1607098360,"output":"t_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098360,"output":"\n16:12:40.037 [info] ppl_id: 70b85e8f-44a0-41ed-8229-40f0047f1835, type: PplRequests, event: persi"},{"event":"cmd_output","timestamp":1607098360,"output":"sted definition for request with request_token: 84377d54-e92e-43bc-98da-bce9da0f2073, origin: Elixir"},{"event":"cmd_output","timestamp":1607098360,"output":".Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:40.047 [info]"},{"event":"cmd_output","timestamp":1607098360,"output":" event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098360,"output":"\u001b[22m\n16:12:40.047 [info] ppl_id: 70b85e8f-44a0-41ed-8229-40f0047f1835, type: PplBlocks, block_ind"},{"event":"cmd_output","timestamp":1607098360,"output":"ex: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHan"},{"event":"cmd_output","timestamp":1607098360,"output":"dler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:40.049 [info] ppl_id: 70b85e8f-44a0-41ed-"},{"event":"cmd_output","timestamp":1607098360,"output":"8229-40f0047f1835, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_"},{"event":"cmd_output","timestamp":1607098360,"output":"count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.057 [info] "},{"event":"cmd_output","timestamp":1607098360,"output":"ppl_id: 70b85e8f-44a0-41ed-8229-40f0047f1835, type: PplBlocks, block_index: 0, state: waiting, event"},{"event":"cmd_output","timestamp":1607098360,"output":": exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098360,"output":"\u001b[22m\n16:12:40.058 [info] ppl_id: 70b85e8f-44a0-41ed-8229-40f0047f1835, type: Ppls, state: pending"},{"event":"cmd_output","timestamp":1607098360,"output":", event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90),"},{"event":"cmd_output","timestamp":1607098360,"output":" \n\u001b[0m\u001b[22m\n16:12:40.065 [info] ppl_id: 70b85e8f-44a0-41ed-8229-40f0047f1835, type: Ppls, state: "},{"event":"cmd_output","timestamp":1607098360,"output":"queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/"},{"event":"cmd_output","timestamp":1607098360,"output":"1(L90), \n\u001b[0m\u001b[22m\n16:12:40.065 [info] block_id: 7c4e6e14-ee26-4225-ac5a-dd6c45e9f2ee, type: Task"},{"event":"cmd_output","timestamp":1607098360,"output":"s, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_"},{"event":"cmd_output","timestamp":1607098360,"output":"change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.070 [info] block_id: 7c4e6e14-ee26-4225-ac5a-dd6c45e9f2ee, typ"},{"event":"cmd_output","timestamp":1607098360,"output":"e: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.lo"},{"event":"cmd_output","timestamp":1607098360,"output":"g_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.078 [info] ppl_id: 235b9bec-509e-4ab8-b807-f78116e1618"},{"event":"cmd_output","timestamp":1607098360,"output":"2, block_id: 7c4e6e14-ee26-4225-ac5a-dd6c45e9f2ee, type: PplBlocks, block_index: 0, state: done, res"},{"event":"cmd_output","timestamp":1607098360,"output":"ult: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_cha"},{"event":"cmd_output","timestamp":1607098360,"output":"nge/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.089 [info] ppl_id: 68a5c6f6-33c3-4253-89f5-7f0f2c18d6e2, type: Pp"},{"event":"cmd_output","timestamp":1607098360,"output":"lRequests, event: persisted source_args for pipeline: 68a5c6f6-33c3-4253-89f5-7f0f2c18d6e2, origin: "},{"event":"cmd_output","timestamp":1607098360,"output":"Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:40.091 [inf"},{"event":"cmd_output","timestamp":1607098360,"output":"o] ppl_id: 68a5c6f6-33c3-4253-89f5-7f0f2c18d6e2, type: PplSubInits, state: fetching, event: exit_sc"},{"event":"cmd_output","timestamp":1607098360,"output":"heduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098360,"output":":12:40.092 [info] ppl_id: 235b9bec-509e-4ab8-b807-f78116e16182, type: Ppls, state: done, result: pa"},{"event":"cmd_output","timestamp":1607098360,"output":"ssed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098360,"output":"90), \n\u001b[0m\u001b[22m\n16:12:40.107 [info] ppl_id: 68a5c6f6-33c3-4253-89f5-7f0f2c18d6e2, type: PplSubIni"},{"event":"cmd_output","timestamp":1607098360,"output":"ts, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.l"},{"event":"cmd_output","timestamp":1607098360,"output":"og_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.127 [info] ppl_id: 68a5c6f6-33c3-4253-89f5-7f0f2c18d6"},{"event":"cmd_output","timestamp":1607098360,"output":"e2, type: PplRequests, event: persisted definition for request with request_token: e3694e25-5d98-457"},{"event":"cmd_output","timestamp":1607098360,"output":"3-ab97-f8b2d33db1aa, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76"},{"event":"cmd_output","timestamp":1607098360,"output":"), \n\u001b[0m\u001b[22m\n16:12:40.130 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto"},{"event":"cmd_output","timestamp":1607098360,"output":".Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:12:40.128868], name: \"dev-.semaph"},{"event":"cmd_output","timestamp":1607098360,"output":"ore/semaphore.yml\", organization_id: \"45882ba8-3099-4b64-b584-d96636136e65\", project_id: \"123\", queu"},{"event":"cmd_output","timestamp":1607098360,"output":"e_id: \"0e9e4f9c-2432-4289-b4a1-4c28a79b9ed1\", scope: \"project\", updated_at: ~N[2020-12-04 16:12:40.1"},{"event":"cmd_output","timestamp":1607098360,"output":"28876], user_generated: false}}\n\u001b[0m\u001b[22m\n16:12:40.134 [info] event: created, origin: Elixir.Ppl."},{"event":"cmd_output","timestamp":1607098360,"output":"PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:40.135 [info] ppl_id: 6"},{"event":"cmd_output","timestamp":1607098360,"output":"8a5c6f6-33c3-4253-89f5-7f0f2c18d6e2, type: PplBlocks, block_index: 0, state: initializing, event: cr"},{"event":"cmd_output","timestamp":1607098360,"output":"eated, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105)"},{"event":"cmd_output","timestamp":1607098360,"output":", \n\u001b[0m\u001b[22m\n16:12:40.136 [info] ppl_id: 68a5c6f6-33c3-4253-89f5-7f0f2c18d6e2, type: PplSubInits,"},{"event":"cmd_output","timestamp":1607098360,"output":" state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.I"},{"event":"cmd_output","timestamp":1607098360,"output":"mpl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.143 [info] ppl_id: 68a5c6f6-33c3-4253-89f5-7f0f2"},{"event":"cmd_output","timestamp":1607098360,"output":"c18d6e2, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098360,"output":" origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.145 [info] ppl_id: 6"},{"event":"cmd_output","timestamp":1607098360,"output":"8a5c6f6-33c3-4253-89f5-7f0f2c18d6e2, type: Ppls, state: pending, event: exit_scheduling, recovery_co"},{"event":"cmd_output","timestamp":1607098360,"output":"unt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.151 [info] pp"},{"event":"cmd_output","timestamp":1607098360,"output":"l_id: 68a5c6f6-33c3-4253-89f5-7f0f2c18d6e2, type: Ppls, state: queuing, event: exit_scheduling, reco"},{"event":"cmd_output","timestamp":1607098360,"output":"very_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.157 [in"},{"event":"cmd_output","timestamp":1607098360,"output":"fo] ppl_id: 68a5c6f6-33c3-4253-89f5-7f0f2c18d6e2, type: Ppls, state: running, event: exit_schedulin"},{"event":"cmd_output","timestamp":1607098360,"output":"g, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40."},{"event":"cmd_output","timestamp":1607098360,"output":"162 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"68a5c6f6-33c3-4253-89f5"},{"event":"cmd_output","timestamp":1607098360,"output":"-7f0f2c18d6e2\"\n\u001b[0m\u001b[22m\n16:12:40.166 [info] block_id: e0b6b6a1-dd7c-430e-83b7-f82bf2b25d35, type"},{"event":"cmd_output","timestamp":1607098360,"output":": BlockRequests, event: persisted block run request from ppl 68a5c6f6-33c3-4253-89f5-7f0f2c18d6e2 fo"},{"event":"cmd_output","timestamp":1607098360,"output":"r block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n"},{"event":"cmd_output","timestamp":1607098360,"output":"\u001b[0m\u001b[22m\n16:12:40.167 [info] block_id: e0b6b6a1-dd7c-430e-83b7-f82bf2b25d35, type: Blocks, state:"},{"event":"cmd_output","timestamp":1607098360,"output":" initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueri"},{"event":"cmd_output","timestamp":1607098360,"output":"es.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:40.171 [info] Block 0 of pipeline with id: 68a5c6f6-33c3-4253-"},{"event":"cmd_output","timestamp":1607098360,"output":"89f5-7f0f2c18d6e2 scheduled in block service with id: : \"e0b6b6a1-dd7c-430e-83b7-f82bf2b25d35\"\n\u001b[0m"},{"event":"cmd_output","timestamp":1607098360,"output":"\u001b[22m\n16:12:40.174 [info] ppl_id: 68a5c6f6-33c3-4253-89f5-7f0f2c18d6e2, type: PplBlocks, block_ind"},{"event":"cmd_output","timestamp":1607098360,"output":"ex: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098360,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.174 [info] block_id: e0b6b6a1-dd7c-430e-83b7-f82bf2b25d"},{"event":"cmd_output","timestamp":1607098360,"output":"35, type: BlockRequests, event: persisted build and sub_ppl details for block_request: e0b6b6a1-dd7c"},{"event":"cmd_output","timestamp":1607098360,"output":"-430e-83b7-f82bf2b25d35, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/"},{"event":"cmd_output","timestamp":1607098360,"output":"2(L41), \n\u001b[0m\u001b[22m\n16:12:40.180 [info] block_id: e0b6b6a1-dd7c-430e-83b7-f82bf2b25d35, type: Task"},{"event":"cmd_output","timestamp":1607098360,"output":"s, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.Initial"},{"event":"cmd_output","timestamp":1607098360,"output":"izingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:40.181 [info] block_id: e0b6b6a1-dd7c-430e-83b7-f82b"},{"event":"cmd_output","timestamp":1607098360,"output":"f2b25d35, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Lo"},{"event":"cmd_output","timestamp":1607098360,"output":"oper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.182 [info] block_id: d8214b5b-09db-464"},{"event":"cmd_output","timestamp":1607098360,"output":"1-8f66-35f3f51dfd40, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098360,"output":"ixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.187 [info] block_id: d8214b5b-0"},{"event":"cmd_output","timestamp":1607098360,"output":"9db-4641-8f66-35f3f51dfd40, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098360,"output":"igin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.195 [info] block_id: e0"},{"event":"cmd_output","timestamp":1607098360,"output":"b6b6a1-dd7c-430e-83b7-f82bf2b25d35, type: Tasks, state: running, event: exit_scheduling, recovery_co"},{"event":"cmd_output","timestamp":1607098360,"output":"unt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.200 [info] pp"},{"event":"cmd_output","timestamp":1607098360,"output":"l_id: e4de57ec-312c-4986-87b4-3beafcad1182, block_id: d8214b5b-09db-4641-8f66-35f3f51dfd40, type: Pp"},{"event":"cmd_output","timestamp":1607098360,"output":"lBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098360,"output":"gin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.202 [info] ppl_id: 0bf50"},{"event":"cmd_output","timestamp":1607098360,"output":"b5f-d726-4d0b-8453-3c296be7a44e, type: PplRequests, event: persisted source_args for pipeline: 0bf50"},{"event":"cmd_output","timestamp":1607098360,"output":"b5f-d726-4d0b-8453-3c296be7a44e, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_sour"},{"event":"cmd_output","timestamp":1607098360,"output":"ce/2(L89), \n\u001b[0m\u001b[22m\n16:12:40.207 [info] ppl_id: 0bf50b5f-d726-4d0b-8453-3c296be7a44e, type: Ppl"},{"event":"cmd_output","timestamp":1607098360,"output":"SubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl"},{"event":"cmd_output","timestamp":1607098360,"output":".log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.215 [info] ppl_id: e4de57ec-312c-4986-87b4-3beafcad"},{"event":"cmd_output","timestamp":1607098360,"output":"1182, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098360,"output":"ixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.232 [info] ppl_id: 0bf50b5f-d72"},{"event":"cmd_output","timestamp":1607098360,"output":"6-4d0b-8453-3c296be7a44e, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098360,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.251 [info] p"},{"event":"cmd_output","timestamp":1607098360,"output":"pl_id: 0bf50b5f-d726-4d0b-8453-3c296be7a44e, type: PplRequests, event: persisted definition for requ"},{"event":"cmd_output","timestamp":1607098360,"output":"est with request_token: decc0ab3-b404-468a-8c65-133ac843ac9f, origin: Elixir.Ppl.PplRequests.Model.P"},{"event":"cmd_output","timestamp":1607098360,"output":"plRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:40.256 [info] event: created, origin"},{"event":"cmd_output","timestamp":1607098360,"output":": Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:40.256 [inf"},{"event":"cmd_output","timestamp":1607098360,"output":"o] ppl_id: 0bf50b5f-d726-4d0b-8453-3c296be7a44e, type: PplBlocks, block_index: 0, state: initializi"},{"event":"cmd_output","timestamp":1607098360,"output":"ng, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.al"},{"event":"cmd_output","timestamp":1607098360,"output":"l_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:40.257 [info] ppl_id: 0bf50b5f-d726-4d0b-8453-3c296be7a44e, type:"},{"event":"cmd_output","timestamp":1607098360,"output":" PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098360,"output":".Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.263 [info] ppl_id: 0bf50b5f-d726-4d"},{"event":"cmd_output","timestamp":1607098360,"output":"0b-8453-3c296be7a44e, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recov"},{"event":"cmd_output","timestamp":1607098360,"output":"ery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.264 [inf"},{"event":"cmd_output","timestamp":1607098360,"output":"o] ppl_id: 0bf50b5f-d726-4d0b-8453-3c296be7a44e, type: Ppls, state: pending, event: exit_scheduling"},{"event":"cmd_output","timestamp":1607098360,"output":", recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.2"},{"event":"cmd_output","timestamp":1607098360,"output":"68 [info] ppl_id: 0bf50b5f-d726-4d0b-8453-3c296be7a44e, type: Ppls, state: queuing, event: exit_sch"},{"event":"cmd_output","timestamp":1607098360,"output":"eduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098360,"output":"12:40.274 [info] ppl_id: 70b85e8f-44a0-41ed-8229-40f0047f1835, type: Ppls, state: running, event: e"},{"event":"cmd_output","timestamp":1607098360,"output":"xit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098360,"output":"2m\n16:12:40.278 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"70b85e8f-4"},{"event":"cmd_output","timestamp":1607098360,"output":"4a0-41ed-8229-40f0047f1835\"\n\u001b[0m\u001b[22m\n16:12:40.281 [info] block_id: e11fb940-3b9e-4429-8ce8-05b39"},{"event":"cmd_output","timestamp":1607098360,"output":"0c4c228, type: BlockRequests, event: persisted block run request from ppl 70b85e8f-44a0-41ed-8229-40"},{"event":"cmd_output","timestamp":1607098360,"output":"f0047f1835 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_respon"},{"event":"cmd_output","timestamp":1607098360,"output":"se/4(L35), \n\u001b[0m\u001b[22m\n16:12:40.284 [info] block_id: e11fb940-3b9e-4429-8ce8-05b390c4c228, type: B"},{"event":"cmd_output","timestamp":1607098360,"output":"locks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Mode"},{"event":"cmd_output","timestamp":1607098360,"output":"l.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:40.286 [info] Block 0 of pipeline with id: 70b85e"},{"event":"cmd_output","timestamp":1607098360,"output":"8f-44a0-41ed-8229-40f0047f1835 scheduled in block service with id: : \"e11fb940-3b9e-4429-8ce8-05b390"},{"event":"cmd_output","timestamp":1607098360,"output":"c4c228\"\n\u001b[0m\u001b[22m\n16:12:40.291 [info] ppl_id: 70b85e8f-44a0-41ed-8229-40f0047f1835, type: PplBloc"},{"event":"cmd_output","timestamp":1607098360,"output":"ks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper"},{"event":"cmd_output","timestamp":1607098360,"output":".STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.292 [info] block_id: e11fb940-3b9e-4429-8c"},{"event":"cmd_output","timestamp":1607098360,"output":"e8-05b390c4c228, type: BlockRequests, event: persisted build and sub_ppl details for block_request: "},{"event":"cmd_output","timestamp":1607098360,"output":"e11fb940-3b9e-4429-8ce8-05b390c4c228, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries."},{"event":"cmd_output","timestamp":1607098360,"output":"insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:40.292 [info] block_id: e0b6b6a1-dd7c-430e-83b7-f82bf2b25d3"},{"event":"cmd_output","timestamp":1607098360,"output":"5, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Im"},{"event":"cmd_output","timestamp":1607098360,"output":"pl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.293 [info] block_id: e11fb940-3b9e-4429-8ce8-05b3"},{"event":"cmd_output","timestamp":1607098360,"output":"90c4c228, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Block"},{"event":"cmd_output","timestamp":1607098360,"output":"s.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:40.295 [info] block_id: e11fb940"},{"event":"cmd_output","timestamp":1607098360,"output":"-3b9e-4429-8ce8-05b390c4c228, type: Blocks, state: running, event: exit_scheduling, recovery_count: "},{"event":"cmd_output","timestamp":1607098360,"output":"0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.298 [info] block_i"},{"event":"cmd_output","timestamp":1607098360,"output":"d: e0b6b6a1-dd7c-430e-83b7-f82bf2b25d35, type: Blocks, state: done, event: exit_scheduling, recovery"},{"event":"cmd_output","timestamp":1607098360,"output":"_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.312 [info] "},{"event":"cmd_output","timestamp":1607098360,"output":" ppl_id: 68a5c6f6-33c3-4253-89f5-7f0f2c18d6e2, block_id: e0b6b6a1-dd7c-430e-83b7-f82bf2b25d35, type:"},{"event":"cmd_output","timestamp":1607098360,"output":" PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098360,"output":"origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.312 [info] block_id: "},{"event":"cmd_output","timestamp":1607098360,"output":"e11fb940-3b9e-4429-8ce8-05b390c4c228, type: Tasks, state: running, event: exit_scheduling, recovery_"},{"event":"cmd_output","timestamp":1607098360,"output":"count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.318 [info] "},{"event":"cmd_output","timestamp":1607098360,"output":"ppl_id: 49bf201d-fbc9-4782-96fa-4d356073b39d, type: PplRequests, event: persisted source_args for pi"},{"event":"cmd_output","timestamp":1607098360,"output":"peline: 49bf201d-fbc9-4782-96fa-4d356073b39d, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQuerie"},{"event":"cmd_output","timestamp":1607098360,"output":"s.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:40.320 [info] ppl_id: 49bf201d-fbc9-4782-96fa-4d356073b3"},{"event":"cmd_output","timestamp":1607098360,"output":"9d, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Lo"},{"event":"cmd_output","timestamp":1607098360,"output":"oper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.324 [info] ppl_id: 68a5c6f6-33c3-4253-"},{"event":"cmd_output","timestamp":1607098360,"output":"89f5-7f0f2c18d6e2, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: "},{"event":"cmd_output","timestamp":1607098360,"output":"0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.339 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098360,"output":" 49bf201d-fbc9-4782-96fa-4d356073b39d, type: PplSubInits, state: regular_init, event: exit_schedulin"},{"event":"cmd_output","timestamp":1607098360,"output":"g, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40."},{"event":"cmd_output","timestamp":1607098360,"output":"358 [info] ppl_id: 49bf201d-fbc9-4782-96fa-4d356073b39d, type: PplRequests, event: persisted defini"},{"event":"cmd_output","timestamp":1607098360,"output":"tion for request with request_token: 28590fb4-8de2-411d-8304-824eb7fd254f, origin: Elixir.Ppl.PplReq"},{"event":"cmd_output","timestamp":1607098360,"output":"uests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:40.361 [info] Queue per"},{"event":"cmd_output","timestamp":1607098360,"output":"sisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_"},{"event":"cmd_output","timestamp":1607098360,"output":"at: ~N[2020-12-04 16:12:40.360690], name: \"dev-.semaphore/semaphore.yml\", organization_id: \"742c623e"},{"event":"cmd_output","timestamp":1607098360,"output":"-3421-4f5c-b440-5b47c622ff44\", project_id: \"456\", queue_id: \"23c8f076-f1f6-4ba6-8581-a41a9d27a96d\", "},{"event":"cmd_output","timestamp":1607098360,"output":"scope: \"project\", updated_at: ~N[2020-12-04 16:12:40.360698], user_generated: false}}\n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098360,"output":":12:40.364 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok"},{"event":"cmd_output","timestamp":1607098360,"output":"?/1(L105), \n\u001b[0m\u001b[22m\n16:12:40.364 [info] ppl_id: 49bf201d-fbc9-4782-96fa-4d356073b39d, type: Ppl"},{"event":"cmd_output","timestamp":1607098360,"output":"Blocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.P"},{"event":"cmd_output","timestamp":1607098360,"output":"plSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:40.366 [info] ppl_id: 49"},{"event":"cmd_output","timestamp":1607098360,"output":"bf201d-fbc9-4782-96fa-4d356073b39d, type: PplSubInits, state: done, result: passed, event: exit_sche"},{"event":"cmd_output","timestamp":1607098360,"output":"duling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098360,"output":"2:40.371 [info] ppl_id: 49bf201d-fbc9-4782-96fa-4d356073b39d, type: PplBlocks, block_index: 0, stat"},{"event":"cmd_output","timestamp":1607098360,"output":"e: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chan"},{"event":"cmd_output","timestamp":1607098360,"output":"ge/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.371 [info] ppl_id: 49bf201d-fbc9-4782-96fa-4d356073b39d, type: Ppl"},{"event":"cmd_output","timestamp":1607098360,"output":"s, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_sta"},{"event":"cmd_output","timestamp":1607098360,"output":"te_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.377 [info] ppl_id: 49bf201d-fbc9-4782-96fa-4d356073b39d, ty"},{"event":"cmd_output","timestamp":1607098360,"output":"pe: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl."},{"event":"cmd_output","timestamp":1607098360,"output":"log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.384 [info] ppl_id: 0bf50b5f-d726-4d0b-8453-3c296be7a"},{"event":"cmd_output","timestamp":1607098360,"output":"44e, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.ST"},{"event":"cmd_output","timestamp":1607098360,"output":"M.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.391 [info] PplBlocks WaitingState STM is sche"},{"event":"cmd_output","timestamp":1607098360,"output":"duling block 0 from pipeline: \"0bf50b5f-d726-4d0b-8453-3c296be7a44e\"\n\u001b[0m\u001b[22m\n16:12:40.395 [info]"},{"event":"cmd_output","timestamp":1607098360,"output":" block_id: dd880ca4-1654-4c63-b5ac-428b4d278070, type: BlockRequests, event: persisted block run re"},{"event":"cmd_output","timestamp":1607098360,"output":"quest from ppl 0bf50b5f-d726-4d0b-8453-3c296be7a44e for block 0, origin: Elixir.Block.BlockRequests."},{"event":"cmd_output","timestamp":1607098360,"output":"Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:40.400 [info] ppl_id: 49bf20"},{"event":"cmd_output","timestamp":1607098360,"output":"1d-fbc9-4782-96fa-4d356073b39d, type: Ppls, state: running, event: exit_scheduling, recovery_count: "},{"event":"cmd_output","timestamp":1607098360,"output":"0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.400 [info] block_i"},{"event":"cmd_output","timestamp":1607098360,"output":"d: dd880ca4-1654-4c63-b5ac-428b4d278070, type: Blocks, state: initializing, event: initializing, rec"},{"event":"cmd_output","timestamp":1607098360,"output":"overy_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:40"},{"event":"cmd_output","timestamp":1607098360,"output":".404 [info] Block 0 of pipeline with id: 0bf50b5f-d726-4d0b-8453-3c296be7a44e scheduled in block se"},{"event":"cmd_output","timestamp":1607098360,"output":"rvice with id: : \"dd880ca4-1654-4c63-b5ac-428b4d278070\"\n\u001b[0m\u001b[22m\n16:12:40.407 [info] block_id: e"},{"event":"cmd_output","timestamp":1607098360,"output":"11fb940-3b9e-4429-8ce8-05b390c4c228, type: Tasks, state: done, event: exit_scheduling, recovery_coun"},{"event":"cmd_output","timestamp":1607098360,"output":"t: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.408 [info] ppl_"},{"event":"cmd_output","timestamp":1607098360,"output":"id: 0bf50b5f-d726-4d0b-8453-3c296be7a44e, type: PplBlocks, block_index: 0, state: running, event: ex"},{"event":"cmd_output","timestamp":1607098360,"output":"it_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098360,"output":"m\n16:12:40.410 [info] block_id: dd880ca4-1654-4c63-b5ac-428b4d278070, type: BlockRequests, event: "},{"event":"cmd_output","timestamp":1607098360,"output":"persisted build and sub_ppl details for block_request: dd880ca4-1654-4c63-b5ac-428b4d278070, origin:"},{"event":"cmd_output","timestamp":1607098360,"output":" Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:40.41"},{"event":"cmd_output","timestamp":1607098360,"output":"2 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"49bf201d-fbc9-4782-96fa-4"},{"event":"cmd_output","timestamp":1607098360,"output":"d356073b39d\"\n\u001b[0m\u001b[22m\n16:12:40.412 [info] block_id: dd880ca4-1654-4c63-b5ac-428b4d278070, type: "},{"event":"cmd_output","timestamp":1607098360,"output":"Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.Ini"},{"event":"cmd_output","timestamp":1607098360,"output":"tializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:40.415 [info] block_id: dd880ca4-1654-4c63-b5ac-"},{"event":"cmd_output","timestamp":1607098360,"output":"428b4d278070, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098360,"output":"r.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.415 [info] block_id: e11fb940-3b9e"},{"event":"cmd_output","timestamp":1607098360,"output":"-4429-8ce8-05b390c4c228, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098360,"output":"n: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.420 [info] block_id: 5196e"},{"event":"cmd_output","timestamp":1607098360,"output":"490-319b-4a83-b375-3e632c7af221, type: BlockRequests, event: persisted block run request from ppl 49"},{"event":"cmd_output","timestamp":1607098360,"output":"bf201d-fbc9-4782-96fa-4d356073b39d for block 0, origin: Elixir.Block.BlockRequests.Model.BlockReques"},{"event":"cmd_output","timestamp":1607098360,"output":"tsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:40.428 [info] block_id: 5196e490-319b-4a83-b3"},{"event":"cmd_output","timestamp":1607098360,"output":"75-3e632c7af221, type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098360,"output":"Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:40.434 [info] Block 0 of "},{"event":"cmd_output","timestamp":1607098360,"output":"pipeline with id: 49bf201d-fbc9-4782-96fa-4d356073b39d scheduled in block service with id: : \"5196e4"},{"event":"cmd_output","timestamp":1607098360,"output":"90-319b-4a83-b375-3e632c7af221\"\n\u001b[0m\u001b[22m\n16:12:40.435 [info] ppl_id: 70b85e8f-44a0-41ed-8229-40f"},{"event":"cmd_output","timestamp":1607098360,"output":"0047f1835, block_id: e11fb940-3b9e-4429-8ce8-05b390c4c228, type: PplBlocks, block_index: 0, state: d"},{"event":"cmd_output","timestamp":1607098360,"output":"one, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_s"},{"event":"cmd_output","timestamp":1607098360,"output":"tate_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.439 [info] block_id: dd880ca4-1654-4c63-b5ac-428b4d278070"},{"event":"cmd_output","timestamp":1607098360,"output":", type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM."},{"event":"cmd_output","timestamp":1607098360,"output":"Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.439 [info] ppl_id: 49bf201d-fbc9-4782-96fa-4d35"},{"event":"cmd_output","timestamp":1607098360,"output":"6073b39d, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0"},{"event":"cmd_output","timestamp":1607098360,"output":", origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.441 [info] block_id"},{"event":"cmd_output","timestamp":1607098360,"output":": 5196e490-319b-4a83-b375-3e632c7af221, type: BlockRequests, event: persisted build and sub_ppl deta"},{"event":"cmd_output","timestamp":1607098360,"output":"ils for block_request: 5196e490-319b-4a83-b375-3e632c7af221, origin: Elixir.Block.BlockRequests.Mode"},{"event":"cmd_output","timestamp":1607098360,"output":"l.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:40.443 [info] block_id: 5196e490-319"},{"event":"cmd_output","timestamp":1607098360,"output":"b-4a83-b375-3e632c7af221, type: Tasks, state: pending, event: created, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098360,"output":"ixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:40.445 [info] bl"},{"event":"cmd_output","timestamp":1607098360,"output":"ock_id: 5196e490-319b-4a83-b375-3e632c7af221, type: Blocks, state: running, event: exit_scheduling, "},{"event":"cmd_output","timestamp":1607098360,"output":"recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.448"},{"event":"cmd_output","timestamp":1607098360,"output":" [info] ppl_id: 4e792e1f-fc4b-482d-b5a8-fa123e4502d9, type: PplRequests, event: persisted source_ar"},{"event":"cmd_output","timestamp":1607098360,"output":"gs for pipeline: 4e792e1f-fc4b-482d-b5a8-fa123e4502d9, origin: Elixir.Ppl.PplRequests.Model.PplReque"},{"event":"cmd_output","timestamp":1607098360,"output":"stsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:40.450 [info] ppl_id: 4e792e1f-fc4b-482d-b5a8-f"},{"event":"cmd_output","timestamp":1607098360,"output":"a123e4502d9, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098360,"output":"Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.463 [info] block_id: 5196e490"},{"event":"cmd_output","timestamp":1607098360,"output":"-319b-4a83-b375-3e632c7af221, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0"},{"event":"cmd_output","timestamp":1607098360,"output":", origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.467 [info] ppl_id: "},{"event":"cmd_output","timestamp":1607098360,"output":"70b85e8f-44a0-41ed-8229-40f0047f1835, type: Ppls, state: done, result: passed, event: exit_schedulin"},{"event":"cmd_output","timestamp":1607098360,"output":"g, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40."},{"event":"cmd_output","timestamp":1607098360,"output":"480 [info] ppl_id: 4e792e1f-fc4b-482d-b5a8-fa123e4502d9, type: PplSubInits, state: regular_init, ev"},{"event":"cmd_output","timestamp":1607098360,"output":"ent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b"},{"event":"cmd_output","timestamp":1607098360,"output":"[0m\u001b[22m\n16:12:40.498 [info] ppl_id: 4e792e1f-fc4b-482d-b5a8-fa123e4502d9, type: PplRequests, even"},{"event":"cmd_output","timestamp":1607098360,"output":"t: persisted definition for request with request_token: 6e7d40d2-715a-4089-a5ca-8ac2b075bc65, origin"},{"event":"cmd_output","timestamp":1607098360,"output":": Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:40.50"},{"event":"cmd_output","timestamp":1607098360,"output":"1 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105)"},{"event":"cmd_output","timestamp":1607098360,"output":", \n\u001b[0m\u001b[22m\n16:12:40.502 [info] ppl_id: 4e792e1f-fc4b-482d-b5a8-fa123e4502d9, type: PplBlocks, b"},{"event":"cmd_output","timestamp":1607098360,"output":"lock_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInit"},{"event":"cmd_output","timestamp":1607098360,"output":"s.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:40.504 [info] ppl_id: 4e792e1f-fc"},{"event":"cmd_output","timestamp":1607098360,"output":"4b-482d-b5a8-fa123e4502d9, type: PplSubInits, state: done, result: passed, event: exit_scheduling, r"},{"event":"cmd_output","timestamp":1607098360,"output":"ecovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.510 "},{"event":"cmd_output","timestamp":1607098360,"output":"[info] ppl_id: 4e792e1f-fc4b-482d-b5a8-fa123e4502d9, type: Ppls, state: pending, event: exit_schedu"},{"event":"cmd_output","timestamp":1607098360,"output":"ling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:"},{"event":"cmd_output","timestamp":1607098360,"output":"40.511 [info] ppl_id: 4e792e1f-fc4b-482d-b5a8-fa123e4502d9, type: PplBlocks, block_index: 0, state:"},{"event":"cmd_output","timestamp":1607098360,"output":" waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change"},{"event":"cmd_output","timestamp":1607098360,"output":"/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.517 [info] block_id: dd880ca4-1654-4c63-b5ac-428b4d278070, type: Tas"},{"event":"cmd_output","timestamp":1607098360,"output":"ks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state"},{"event":"cmd_output","timestamp":1607098360,"output":"_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.519 [info] ppl_id: 4e792e1f-fc4b-482d-b5a8-fa123e4502d9, type"},{"event":"cmd_output","timestamp":1607098360,"output":": Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.lo"},{"event":"cmd_output","timestamp":1607098360,"output":"g_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.522 [info] block_id: dd880ca4-1654-4c63-b5ac-428b4d278"},{"event":"cmd_output","timestamp":1607098360,"output":"070, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM"},{"event":"cmd_output","timestamp":1607098360,"output":".Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.531 [info] ppl_id: 0bf50b5f-d726-4d0b-8453-3c2"},{"event":"cmd_output","timestamp":1607098360,"output":"96be7a44e, block_id: dd880ca4-1654-4c63-b5ac-428b4d278070, type: PplBlocks, block_index: 0, state: d"},{"event":"cmd_output","timestamp":1607098360,"output":"one, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_s"},{"event":"cmd_output","timestamp":1607098360,"output":"tate_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.540 [info] ppl_id: 0bf50b5f-d726-4d0b-8453-3c296be7a44e, "},{"event":"cmd_output","timestamp":1607098360,"output":"type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098360,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.624 [info] block_id: 5196e490-319b-4a"},{"event":"cmd_output","timestamp":1607098360,"output":"83-b375-3e632c7af221, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: E"},{"event":"cmd_output","timestamp":1607098360,"output":"lixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.628 [info] block_id: 5196e490-"},{"event":"cmd_output","timestamp":1607098360,"output":"319b-4a83-b375-3e632c7af221, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098360,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.632 [info] ppl_id: 49b"},{"event":"cmd_output","timestamp":1607098360,"output":"f201d-fbc9-4782-96fa-4d356073b39d, block_id: 5196e490-319b-4a83-b375-3e632c7af221, type: PplBlocks, "},{"event":"cmd_output","timestamp":1607098360,"output":"block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098360,"output":"ir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.641 [info] ppl_id: 49bf201d-fbc9-"},{"event":"cmd_output","timestamp":1607098360,"output":"4782-96fa-4d356073b39d, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_co"},{"event":"cmd_output","timestamp":1607098360,"output":"unt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.715 [info] pp"},{"event":"cmd_output","timestamp":1607098360,"output":"l_id: 4e792e1f-fc4b-482d-b5a8-fa123e4502d9, type: Ppls, state: running, event: exit_scheduling, reco"},{"event":"cmd_output","timestamp":1607098360,"output":"very_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.719 [in"},{"event":"cmd_output","timestamp":1607098360,"output":"fo] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"4e792e1f-fc4b-482d-b5a8-fa123e"},{"event":"cmd_output","timestamp":1607098360,"output":"4502d9\"\n\u001b[0m\u001b[22m\n16:12:40.726 [info] block_id: a2a151f3-057d-4c30-b770-8a2b16621cd2, type: Block"},{"event":"cmd_output","timestamp":1607098360,"output":"Requests, event: persisted block run request from ppl 4e792e1f-fc4b-482d-b5a8-fa123e4502d9 for block"},{"event":"cmd_output","timestamp":1607098360,"output":" 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098360,"output":"2m\n16:12:40.727 [info] block_id: a2a151f3-057d-4c30-b770-8a2b16621cd2, type: Blocks, state: initia"},{"event":"cmd_output","timestamp":1607098360,"output":"lizing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.inse"},{"event":"cmd_output","timestamp":1607098360,"output":"rt/1(L43), \n\u001b[0m\u001b[22m\n16:12:40.729 [info] Block 0 of pipeline with id: 4e792e1f-fc4b-482d-b5a8-fa"},{"event":"cmd_output","timestamp":1607098360,"output":"123e4502d9 scheduled in block service with id: : \"a2a151f3-057d-4c30-b770-8a2b16621cd2\"\n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098360,"output":"16:12:40.731 [info] ppl_id: 4e792e1f-fc4b-482d-b5a8-fa123e4502d9, type: PplBlocks, block_index: 0, "},{"event":"cmd_output","timestamp":1607098360,"output":"state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_"},{"event":"cmd_output","timestamp":1607098360,"output":"change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.733 [info] block_id: a2a151f3-057d-4c30-b770-8a2b16621cd2, typ"},{"event":"cmd_output","timestamp":1607098360,"output":"e: BlockRequests, event: persisted build and sub_ppl details for block_request: a2a151f3-057d-4c30-b"},{"event":"cmd_output","timestamp":1607098360,"output":"770-8a2b16621cd2, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41),"},{"event":"cmd_output","timestamp":1607098360,"output":" \n\u001b[0m\u001b[22m\n16:12:40.734 [info] block_id: a2a151f3-057d-4c30-b770-8a2b16621cd2, type: Tasks, stat"},{"event":"cmd_output","timestamp":1607098360,"output":"e: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingSt"},{"event":"cmd_output","timestamp":1607098360,"output":"ate.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:40.741 [info] block_id: a2a151f3-057d-4c30-b770-8a2b16621cd"},{"event":"cmd_output","timestamp":1607098360,"output":"2, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.ST"},{"event":"cmd_output","timestamp":1607098360,"output":"M.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.758 [info] block_id: a2a151f3-057d-4c30-b770-"},{"event":"cmd_output","timestamp":1607098360,"output":"8a2b16621cd2, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098360,"output":".Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.840 [info] block_id: a2a151f3-057d-"},{"event":"cmd_output","timestamp":1607098360,"output":"4c30-b770-8a2b16621cd2, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098360,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.844 [info] block_id: a2a151f"},{"event":"cmd_output","timestamp":1607098360,"output":"3-057d-4c30-b770-8a2b16621cd2, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098360,"output":" origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.855 [info] ppl_id: 4"},{"event":"cmd_output","timestamp":1607098360,"output":"e792e1f-fc4b-482d-b5a8-fa123e4502d9, block_id: a2a151f3-057d-4c30-b770-8a2b16621cd2, type: PplBlocks"},{"event":"cmd_output","timestamp":1607098360,"output":", block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098360,"output":"ixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:40.864 [info] ppl_id: 4e792e1f-fc4"},{"event":"cmd_output","timestamp":1607098360,"output":"b-482d-b5a8-fa123e4502d9, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_"},{"event":"cmd_output","timestamp":1607098360,"output":"count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test gRPC list_gro"},{"event":"cmd_output","timestamp":1607098360,"output":"uped() - org scoped user generated queues (1601.2ms)\u001b[0m\n * test gRPC terminate() - terminate run"},{"event":"cmd_output","timestamp":1607098361,"output":"ning pipeline\u001b[22m\n16:12:41.032 [info] Request: 'run: %{\"branch_id\" => \"1506a2ab-da20-43ff-8c67-77"},{"event":"cmd_output","timestamp":1607098361,"output":"eae01f0093\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"semaphore.yml\""},{"event":"cmd_output","timestamp":1607098361,"output":", \"hook_id\" => \"88c9dcbc-364b-11eb-b18a-5254005464e2\", \"label\" => \"master\", \"organization_id\" => \"86"},{"event":"cmd_output","timestamp":1607098361,"output":"b4a9e9-969f-401b-b58f-a4aecdc85f2a\", \"owner\" => \"rt\", \"project_id\" => \"757f29e6-abd9-44d0-be5f-bf570"},{"event":"cmd_output","timestamp":1607098361,"output":"b35df24\", \"repo_name\" => \"7_termination\", \"request_token\" => \"88c9d53c-364b-11eb-9a67-5254005464e2\","},{"event":"cmd_output","timestamp":1607098361,"output":" \"requester_id\" => \"c778128c-06d8-4427-b505-215a2bf12ec8\", \"service\" => \"local\", \"suppressed_attribu"},{"event":"cmd_output","timestamp":1607098361,"output":"tes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"d2ed9033-e01b-4b0e-b056-1bfc7389c5e7\", \"worki"},{"event":"cmd_output","timestamp":1607098361,"output":"ng_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:12:41.036 [info] ppl_id: d9ce2d1e-ec7b-4d84-8597-7874c6cc3f"},{"event":"cmd_output","timestamp":1607098361,"output":"59, type: PplRequests, event: persisted schedule request with request_token: 88c9d53c-364b-11eb-9a67"},{"event":"cmd_output","timestamp":1607098361,"output":"-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b["},{"event":"cmd_output","timestamp":1607098361,"output":"0m\u001b[22m\n16:12:41.039 [info] ppl_id: d9ce2d1e-ec7b-4d84-8597-7874c6cc3f59, type: Ppls, state: initi"},{"event":"cmd_output","timestamp":1607098361,"output":"alizing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_r"},{"event":"cmd_output","timestamp":1607098361,"output":"esponse/2(L124), \n\u001b[0m\u001b[22m\n16:12:41.042 [info] Project 757f29e6-abd9-44d0-be5f-bf570b35df24 and "},{"event":"cmd_output","timestamp":1607098361,"output":"branch masterlatest_wf details updated: \"wf_id: d2ed9033-e01b-4b0e-b056-1bfc7389c5e7, wf_number: 1\"\r"},{"event":"cmd_output","timestamp":1607098361,"output":"\n\u001b[0m\u001b[22m\n16:12:41.043 [info] Persisted ppl_sub_init for pipeline with ppl_id: d9ce2d1e-ec7b-4d84"},{"event":"cmd_output","timestamp":1607098361,"output":"-8597-7874c6cc3f59: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pip"},{"event":"cmd_output","timestamp":1607098361,"output":"eline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 255, in_scheduling: false, init"},{"event":"cmd_output","timestamp":1607098361,"output":"_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:41.042183], pipeline_requests: #Ecto.Association."},{"event":"cmd_output","timestamp":1607098361,"output":"NotLoaded, ppl_id: \"d9ce2d1e-ec7b-4d84-8597-7874c6cc3f"},{"event":"cmd_output","timestamp":1607098361,"output":"59\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, t"},{"event":"cmd_output","timestamp":1607098361,"output":"erminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:41.042188]}\n\u001b[0m\u001b[22m\n16:12:41.046 [in"},{"event":"cmd_output","timestamp":1607098361,"output":"fo] Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.STM"},{"event":"cmd_output","timestamp":1607098361,"output":"Handler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHan"},{"event":"cmd_output","timestamp":1607098361,"output":"dler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], co"},{"event":"cmd_output","timestamp":1607098361,"output":"oling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher_cb:"},{"event":"cmd_output","timestamp":1607098361,"output":" #Function<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, retur"},{"event":"cmd_output","timestamp":1607098361,"output":"ning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl"},{"event":"cmd_output","timestamp":1607098361,"output":".Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:41.046 [info] Periodic from module Elix"},{"event":"cmd_output","timestamp":1607098361,"output":"ir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 100"},{"event":"cmd_output","timestamp":1607098361,"output":" ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args: %{"},{"event":"cmd_output","timestamp":1607098361,"output":"allowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.P"},{"event":"cmd_output","timestamp":1607098361,"output":"pls.Model.Ppls, observed_state: \"pending\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandle"},{"event":"cmd_output","timestamp":1607098361,"output":"r.PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state"},{"event":"cmd_output","timestamp":1607098361,"output":", :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervis"},{"event":"cmd_output","timestamp":1607098361,"output":"or}\n\u001b[0m\u001b[22m\n16:12:41.047 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.QueuingState wi"},{"event":"cmd_output","timestamp":1607098361,"output":"th name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_"},{"event":"cmd_output","timestamp":1607098361,"output":"up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{allowed_states: [\"queuing\", \"running\","},{"event":"cmd_output","timestamp":1607098361,"output":" \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", publi"},{"event":"cmd_output","timestamp":1607098361,"output":"sher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, re"},{"event":"cmd_output","timestamp":1607098361,"output":"turning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: "},{"event":"cmd_output","timestamp":1607098361,"output":"Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:41.048 [info] Periodic from module E"},{"event":"cmd_output","timestamp":1607098361,"output":"lixir.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHandler.RunningState :: period: "},{"event":"cmd_output","timestamp":1607098361,"output":"100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring args:"},{"event":"cmd_output","timestamp":1607098361,"output":" %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Mo"},{"event":"cmd_output","timestamp":1607098361,"output":"del.Ppls, observed_state: \"running\", publisher_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler.Run"},{"event":"cmd_output","timestamp":1607098361,"output":"ningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :re"},{"event":"cmd_output","timestamp":1607098361,"output":"sult, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n"},{"event":"cmd_output","timestamp":1607098361,"output":"\u001b[0m\u001b[22m\n16:12:41.049 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.StoppingState with n"},{"event":"cmd_output","timestamp":1607098361,"output":"ame Elixir.Ppl.Ppls.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\""},{"event":"cmd_output","timestamp":1607098361,"output":", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], co"},{"event":"cmd_output","timestamp":1607098361,"output":"oling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"stopping\", publisher_cb: #F"},{"event":"cmd_output","timestamp":1607098361,"output":"unction<0.71803493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:"},{"event":"cmd_output","timestamp":1607098361,"output":"id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Mo"},{"event":"cmd_output","timestamp":1607098361,"output":"del.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:41.049 [info] Periodic from module Elixir.Ppl.P"},{"event":"cmd_output","timestamp":1607098361,"output":"plSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: perio"},{"event":"cmd_output","timestamp":1607098361,"output":"d: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recur"},{"event":"cmd_output","timestamp":1607098361,"output":"ring args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubIni"},{"event":"cmd_output","timestamp":1607098361,"output":"ts.Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning:"},{"event":"cmd_output","timestamp":1607098361,"output":" [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplS"},{"event":"cmd_output","timestamp":1607098361,"output":"ubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:41.050 [info] Periodic from mo"},{"event":"cmd_output","timestamp":1607098361,"output":"dule Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler.Fet"},{"event":"cmd_output","timestamp":1607098361,"output":"chingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-Fet"},{"event":"cmd_output","timestamp":1607098361,"output":"chingState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"done\"], cooling_ti"},{"event":"cmd_output","timestamp":1607098361,"output":"me_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fetching\", publisher_"},{"event":"cmd_output","timestamp":1607098361,"output":"cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :r"},{"event":"cmd_output","timestamp":1607098361,"output":"ecovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098361,"output":"2m\n16:12:41.050 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CompilationState wit"},{"event":"cmd_output","timestamp":1607098361,"output":"h name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 100 ms, metric_name: {\"Ppl.beho"},{"event":"cmd_output","timestamp":1607098361,"output":"lder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurring args: %{allowed_states: ["},{"event":"cmd_output","timestamp":1607098361,"output":"\"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubI"},{"event":"cmd_output","timestamp":1607098361,"output":"nits.Model.PplSubInits, observed_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, retu"},{"event":"cmd_output","timestamp":1607098361,"output":"rning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Pp"},{"event":"cmd_output","timestamp":1607098361,"output":"l.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:41.051 [info] Periodic f"},{"event":"cmd_output","timestamp":1607098361,"output":"rom module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHa"},{"event":"cmd_output","timestamp":1607098361,"output":"ndler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-ST"},{"event":"cmd_output","timestamp":1607098361,"output":"MHandler-RegularInitState\"]}, recurring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, initi"},{"event":"cmd_output","timestamp":1607098361,"output":"al_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_init\", publisher_cb: :skip, re"},{"event":"cmd_output","timestamp":1607098361,"output":"po: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count"},{"event":"cmd_output","timestamp":1607098361,"output":", :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:41."},{"event":"cmd_output","timestamp":1607098361,"output":"051 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.InitializingState with name Elixir."},{"event":"cmd_output","timestamp":1607098361,"output":"Ppl.PplBlocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", "},{"event":"cmd_output","timestamp":1607098361,"output":"[\"Ppl-PplBlocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", "},{"event":"cmd_output","timestamp":1607098361,"output":"\"waiting\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_stat"},{"event":"cmd_output","timestamp":1607098361,"output":"e: \"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :up"},{"event":"cmd_output","timestamp":1607098361,"output":"dated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplB"},{"event":"cmd_output","timestamp":1607098361,"output":"locks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:41.052 [info] Periodic from module Elixir.Ppl.PplB"},{"event":"cmd_output","timestamp":1607098361,"output":"locks.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler.WaitingState :: period: 1000"},{"event":"cmd_output","timestamp":1607098361,"output":" ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurring arg"},{"event":"cmd_output","timestamp":1607098361,"output":"s: %{allowed_states: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBloc"},{"event":"cmd_output","timestamp":1607098361,"output":"ks.Model.PplBlocks, observed_state: \"waiting\", publisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks."},{"event":"cmd_output","timestamp":1607098361,"output":"STMHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_a"},{"event":"cmd_output","timestamp":1607098361,"output":"t, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, "},{"event":"cmd_output","timestamp":1607098361,"output":"task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:41.052 [info] Periodic from module Elixir.Ppl.PplBlocks.S"},{"event":"cmd_output","timestamp":1607098361,"output":"TMHandler.RunningState with name Elixir.Ppl.PplBlocks.STMHandler.RunningState :: period: 1000 ms, me"},{"event":"cmd_output","timestamp":1607098361,"output":"tric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, recurring args: %{al"},{"event":"cmd_output","timestamp":1607098361,"output":"lowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Mo"},{"event":"cmd_output","timestamp":1607098361,"output":"del.PplBlocks, observed_state: \"running\", publisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMH"},{"event":"cmd_output","timestamp":1607098361,"output":"andler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :"},{"event":"cmd_output","timestamp":1607098361,"output":"state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplB"},{"event":"cmd_output","timestamp":1607098361,"output":"locks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:41.053 [info] Periodic from module Elixir.Ppl.PplB"},{"event":"cmd_output","timestamp":1607098361,"output":"locks.STMHandler.StoppingState with name Elixir.Ppl.PplBlocks.STMHandler.StoppingState :: period: 10"},{"event":"cmd_output","timestamp":1607098361,"output":"00 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurring "},{"event":"cmd_output","timestamp":1607098361,"output":"args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Mod"},{"event":"cmd_output","timestamp":1607098361,"output":"el.PplBlocks, observed_state: \"stopping\", publisher_cb: #Function<0.104215991/1 in Ppl.PplBlocks.STM"},{"event":"cmd_output","timestamp":1607098361,"output":"Handler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at,"},{"event":"cmd_output","timestamp":1607098361,"output":" :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.Pp"},{"event":"cmd_output","timestamp":1607098361,"output":"lBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:41.053 [info] Periodic from module Elixir.Block."},{"event":"cmd_output","timestamp":1607098361,"output":"Blocks.STMHandler.InitializingState with name Elixir.Block.Blocks.STMHandler.InitializingState :: pe"},{"event":"cmd_output","timestamp":1607098361,"output":"riod: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, "},{"event":"cmd_output","timestamp":1607098361,"output":"recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Blo"},{"event":"cmd_output","timestamp":1607098361,"output":"cks.Model.Blocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Block.EctoRepo, returni"},{"event":"cmd_output","timestamp":1607098361,"output":"ng: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks"},{"event":"cmd_output","timestamp":1607098361,"output":".Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:41.054 [info] Periodic from module Elixir."},{"event":"cmd_output","timestamp":1607098361,"output":"Block.Blocks.STMHandler.RunningState with name Elixir.Block.Blocks.STMHandler.RunningState :: period"},{"event":"cmd_output","timestamp":1607098361,"output":": 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-RunningState\"]}, recurring"},{"event":"cmd_output","timestamp":1607098361,"output":" args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block"},{"event":"cmd_output","timestamp":1607098361,"output":".Blocks.Model.Blocks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returnin"},{"event":"cmd_output","timestamp":1607098361,"output":"g: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks."},{"event":"cmd_output","timestamp":1607098361,"output":"Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:41.055 [info] Periodic from module Elixir.B"},{"event":"cmd_output","timestamp":1607098361,"output":"lock.Blocks.STMHandler.StoppingState with name Elixir.Block.Blocks.STMHandler.StoppingState :: perio"},{"event":"cmd_output","timestamp":1607098361,"output":"d: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-StoppingState\"]}, recurri"},{"event":"cmd_output","timestamp":1607098361,"output":"ng args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.M"},{"event":"cmd_output","timestamp":1607098361,"output":"odel.Blocks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id,"},{"event":"cmd_output","timestamp":1607098361,"output":" :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Bl"},{"event":"cmd_output","timestamp":1607098361,"output":"ocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:41.055 [info] Periodic from module Elixir.Block.Tas"},{"event":"cmd_output","timestamp":1607098361,"output":"ks.STMHandler.PendingState with name Elixir.Block.Tasks.STMHandler.PendingState :: period: 100 ms, m"},{"event":"cmd_output","timestamp":1607098361,"output":"etric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingState\"]}, recurring args: %{all"},{"event":"cmd_output","timestamp":1607098361,"output":"owed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Tasks.Model.Tasks, obser"},{"event":"cmd_output","timestamp":1607098361,"output":"ved_state: \"pending\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request"},{"event":"cmd_output","timestamp":1607098361,"output":", :updated_at, :state, :recovery_count, :block_id, :build_request_id], schema: Block.Tasks.Model.Tas"},{"event":"cmd_output","timestamp":1607098361,"output":"ks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:41.056 [info] Periodic from module Elixir.Block.Tasks"},{"event":"cmd_output","timestamp":1607098361,"output":".STMHandler.RunningState with name Elixir.Block.Tasks.STMHandler.RunningState :: period: 100 ms, met"},{"event":"cmd_output","timestamp":1607098361,"output":"ric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningState\"]}, recurring args: %{allow"},{"event":"cmd_output","timestamp":1607098361,"output":"ed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.T"},{"event":"cmd_output","timestamp":1607098361,"output":"asks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :termin"},{"event":"cmd_output","timestamp":1607098361,"output":"ate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task"},{"event":"cmd_output","timestamp":1607098361,"output":"_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:41.056 [info] Periodic from module Elixir.Block.Tasks.STMHand"},{"event":"cmd_output","timestamp":1607098361,"output":"ler.StoppingState with name Elixir.Block.Tasks.STMHandler.StoppingState :: period: 100 ms, metric_na"},{"event":"cmd_output","timestamp":1607098361,"output":"me: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]}, recurring args: %{allowed_st"},{"event":"cmd_output","timestamp":1607098361,"output":"ates: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_s"},{"event":"cmd_output","timestamp":1607098361,"output":"tate: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :u"},{"event":"cmd_output","timestamp":1607098361,"output":"pdated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :s"},{"event":"cmd_output","timestamp":1607098361,"output":"kip}\n\u001b[0m\u001b[22m\n16:12:41.160 [info] ppl_id: d9ce2d1e-ec7b-4d84-8597-7874c6cc3f59, type: PplRequest"},{"event":"cmd_output","timestamp":1607098361,"output":"s, event: persisted source_args for pipeline: d9ce2d1e-ec7b-4d84-8597-7874c6cc3f59, origin: Elixir.P"},{"event":"cmd_output","timestamp":1607098361,"output":"pl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:41.161 [info] ppl_"},{"event":"cmd_output","timestamp":1607098361,"output":"id: d9ce2d1e-ec7b-4d84-8597-7874c6cc3f59, type: PplSubInits, state: fetching, event: exit_scheduling"},{"event":"cmd_output","timestamp":1607098361,"output":", recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:41.1"},{"event":"cmd_output","timestamp":1607098361,"output":"83 [info] ppl_id: d9ce2d1e-ec7b-4d84-8597-7874c6cc3f59, type: PplSubInits, state: regular_init, eve"},{"event":"cmd_output","timestamp":1607098361,"output":"nt: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b["},{"event":"cmd_output","timestamp":1607098361,"output":"0m\u001b[22m\n16:12:41.200 [info] ppl_id: d9ce2d1e-ec7b-4d84-8597-7874c6cc3f59, type: PplRequests, event"},{"event":"cmd_output","timestamp":1607098361,"output":": persisted definition for request with request_token: 88c9d53c-364b-11eb-9a67-5254005464e2, origin:"},{"event":"cmd_output","timestamp":1607098361,"output":" Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:41.202"},{"event":"cmd_output","timestamp":1607098361,"output":" [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"q"},{"event":"cmd_output","timestamp":1607098361,"output":"ueues\">, inserted_at: ~N[2020-12-04 16:12:41.201340], name: \"master-.semaphore/semaphore.yml\", organ"},{"event":"cmd_output","timestamp":1607098361,"output":"ization_id: \"86b4a9e9-969f-401b-b58f-a4aecdc85f2a\", project_id: \"757f29e6-abd9-44d0-be5f-bf570b35df2"},{"event":"cmd_output","timestamp":1607098361,"output":"4\", queue_id: \"2c009f43-da17-4b10-873d-2766ba9e7fb5\", scope: \"project\", updated_at: ~N[2020-12-04 16"},{"event":"cmd_output","timestamp":1607098361,"output":":12:41.201348], user_generated: false}}\n\u001b[0m\u001b[22m\n16:12:41.207 [info] ppl_id: not_available, even"},{"event":"cmd_output","timestamp":1607098361,"output":"t: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098361,"output":"\n16:12:41.207 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all"},{"event":"cmd_output","timestamp":1607098361,"output":"_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:41.207 [info] ppl_id: d9ce2d1e-ec7b-4d84-8597-7874c6cc3f59, type: "},{"event":"cmd_output","timestamp":1607098361,"output":"PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Pp"},{"event":"cmd_output","timestamp":1607098361,"output":"l.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:41.207 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098361,"output":" d9ce2d1e-ec7b-4d84-8597-7874c6cc3f59, type: PplBlocks, block_index: 1, state: initializing, event: "},{"event":"cmd_output","timestamp":1607098361,"output":"created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L10"},{"event":"cmd_output","timestamp":1607098361,"output":"5), \n\u001b[0m\u001b[22m\n16:12:41.208 [info] ppl_id: d9ce2d1e-ec7b-4d84-8597-7874c6cc3f59, type: PplSubInit"},{"event":"cmd_output","timestamp":1607098361,"output":"s, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM"},{"event":"cmd_output","timestamp":1607098361,"output":".Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:41.214 [info] ppl_id: d9ce2d1e-ec7b-4d84-8597-787"},{"event":"cmd_output","timestamp":1607098361,"output":"4c6cc3f59, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: "},{"event":"cmd_output","timestamp":1607098361,"output":"0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:41.216 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098361,"output":" d9ce2d1e-ec7b-4d84-8597-7874c6cc3f59, type: Ppls, state: pending, event: exit_scheduling, recovery_"},{"event":"cmd_output","timestamp":1607098361,"output":"count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:41.219 [info] "},{"event":"cmd_output","timestamp":1607098361,"output":"ppl_id: d9ce2d1e-ec7b-4d84-8597-7874c6cc3f59, type: PplBlocks, block_index: 1, state: waiting, event"},{"event":"cmd_output","timestamp":1607098361,"output":": exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098361,"output":"\u001b[22m\n16:12:41.227 [info] ppl_id: d9ce2d1e-ec7b-4d84-8597-7874c6cc3f59, type: Ppls, state: queuing"},{"event":"cmd_output","timestamp":1607098361,"output":", event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90),"},{"event":"cmd_output","timestamp":1607098361,"output":" \n\u001b[0m\u001b[22m\n16:12:41.234 [info] ppl_id: d9ce2d1e-ec7b-4d84-8597-7874c6cc3f59, type: Ppls, state: "},{"event":"cmd_output","timestamp":1607098361,"output":"running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/"},{"event":"cmd_output","timestamp":1607098361,"output":"1(L90), \n\u001b[0m\u001b[22m\n16:12:41.240 [info] PplBlocks WaitingState STM is scheduling block 0 from pipe"},{"event":"cmd_output","timestamp":1607098361,"output":"line: \"d9ce2d1e-ec7b-4d84-8597-7874c6cc3f59\"\n\u001b[0m\u001b[22m\n16:12:41.252 [info] block_id: 57c7d664-432"},{"event":"cmd_output","timestamp":1607098361,"output":"1-4194-9056-1a6b891eb7f9, type: BlockRequests, event: persisted block run request from ppl d9ce2d1e-"},{"event":"cmd_output","timestamp":1607098361,"output":"ec7b-4d84-8597-7874c6cc3f59 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueri"},{"event":"cmd_output","timestamp":1607098361,"output":"es.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:41.257 [info] block_id: 57c7d664-4321-4194-9056-1a6b"},{"event":"cmd_output","timestamp":1607098361,"output":"891eb7f9, type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098361,"output":"Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:41.261 [info] Block 0 of pipelin"},{"event":"cmd_output","timestamp":1607098361,"output":"e with id: d9ce2d1e-ec7b-4d84-8597-7874c6cc3f59 scheduled in block service with id: : \"57c7d664-4321"},{"event":"cmd_output","timestamp":1607098361,"output":"-4194-9056-1a6b891eb7f9\"\n\u001b[0m\u001b[22m\n16:12:41.264 [info] block_id: 57c7d664-4321-4194-9056-1a6b891e"},{"event":"cmd_output","timestamp":1607098361,"output":"b7f9, type: BlockRequests, event: persisted build and sub_ppl details for block_request: 57c7d664-43"},{"event":"cmd_output","timestamp":1607098361,"output":"21-4194-9056-1a6b891eb7f9, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_buil"},{"event":"cmd_output","timestamp":1607098361,"output":"d/2(L41), \n\u001b[0m\u001b[22m\n16:12:41.266 [info] ppl_id: d9ce2d1e-ec7b-4d84-8597-7874c6cc3f59, type: PplB"},{"event":"cmd_output","timestamp":1607098361,"output":"locks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loo"},{"event":"cmd_output","timestamp":1607098361,"output":"per.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:41.267 [info] block_id: 57c7d664-4321-4194"},{"event":"cmd_output","timestamp":1607098361,"output":"-9056-1a6b891eb7f9, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.B"},{"event":"cmd_output","timestamp":1607098361,"output":"lock.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:41.272 [info] block_id"},{"event":"cmd_output","timestamp":1607098361,"output":": 57c7d664-4321-4194-9056-1a6b891eb7f9, type: Blocks, state: running, event: exit_scheduling, recove"},{"event":"cmd_output","timestamp":1607098361,"output":"ry_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:41.295 [info"},{"event":"cmd_output","timestamp":1607098361,"output":"] block_id: 57c7d664-4321-4194-9056-1a6b891eb7f9, type: Tasks, state: running, event: exit_scheduli"},{"event":"cmd_output","timestamp":1607098365,"output":"ng, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:45"},{"event":"cmd_output","timestamp":1607098365,"output":".076 [info] Request: 'terminate', request: %{\"ppl_id\" => \"d9ce2d1e-ec7b-4d84-8597-7874c6cc3f59\", \"r"},{"event":"cmd_output","timestamp":1607098365,"output":"equester_id\" => \"095c198e-eceb-4763-b7b7-45fa11d9a706\"}\n\u001b[0m\u001b[22m\n16:12:45.087 [info] ppl_id: d9c"},{"event":"cmd_output","timestamp":1607098365,"output":"e2d1e-ec7b-4d84-8597-7874c6cc3f59, type: Ppls, state: stopping, event: exit_scheduling, recovery_cou"},{"event":"cmd_output","timestamp":1607098365,"output":"nt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:45.093 [info] ppl"},{"event":"cmd_output","timestamp":1607098365,"output":"_id: d9ce2d1e-ec7b-4d84-8597-7874c6cc3f59, type: PplBlocks, block_index: 1, state: done, result: can"},{"event":"cmd_output","timestamp":1607098365,"output":"celed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1("},{"event":"cmd_output","timestamp":1607098365,"output":"L90), \n\u001b[0m\u001b[22m\n16:12:45.099 [info] ppl_id: d9ce2d1e-ec7b-4d84-8597-7874c6cc3f59, block_id: 57c7"},{"event":"cmd_output","timestamp":1607098365,"output":"d664-4321-4194-9056-1a6b891eb7f9, type: PplBlocks, block_index: 0, state: stopping, event: exit_sche"},{"event":"cmd_output","timestamp":1607098365,"output":"duling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098365,"output":"2:45.103 [info] block_id: 57c7d664-4321-4194-9056-1a6b891eb7f9, type: Blocks, state: stopping, even"},{"event":"cmd_output","timestamp":1607098365,"output":"t: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098365,"output":"m\u001b[22m\n16:12:45.116 [info] block_id: 57c7d664-4321-4194-9056-1a6b891eb7f9, type: Tasks, state: sto"},{"event":"cmd_output","timestamp":1607098365,"output":"pping, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1("},{"event":"cmd_output","timestamp":1607098371,"output":"L90), \n\u001b[0m\u001b[22m\n16:12:51.333 [info] block_id: 57c7d664-4321-4194-9056-1a6b891eb7f9, type: Tasks,"},{"event":"cmd_output","timestamp":1607098371,"output":" state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_ch"},{"event":"cmd_output","timestamp":1607098371,"output":"ange/1(L90), \n\u001b[0m\u001b[22m\n16:12:51.338 [info] block_id: 57c7d664-4321-4194-9056-1a6b891eb7f9, type:"},{"event":"cmd_output","timestamp":1607098371,"output":" Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_"},{"event":"cmd_output","timestamp":1607098371,"output":"state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:51.348 [info] ppl_id: d9ce2d1e-ec7b-4d84-8597-7874c6cc3f59,"},{"event":"cmd_output","timestamp":1607098371,"output":" block_id: 57c7d664-4321-4194-9056-1a6b891eb7f9, type: PplBlocks, block_index: 0, state: done, resul"},{"event":"cmd_output","timestamp":1607098371,"output":"t: stopped, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chan"},{"event":"cmd_output","timestamp":1607098371,"output":"ge/1(L90), \n\u001b[0m\u001b[22m\n16:12:51.358 [info] ppl_id: d9ce2d1e-ec7b-4d84-8597-7874c6cc3f59, type: Ppl"},{"event":"cmd_output","timestamp":1607098371,"output":"s, state: done, result: stopped, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.ST"},{"event":"cmd_output","timestamp":1607098372,"output":"M.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test gRPC terminate() - terminate running pipeline ("},{"event":"cmd_output","timestamp":1607098372,"output":"11149.3ms)\u001b[0m\n * test gRPC list_queues() - valid params - success\r * test gRPC list_queues() - v"},{"event":"cmd_output","timestamp":1607098372,"output":"alid params - success (skipped)\n * test gRPC describe_topology() - parallelism in jobs\u001b[22m\n16:12"},{"event":"cmd_output","timestamp":1607098372,"output":":52.198 [info] Request: 'run: %{:repo_name => \"27_parallelism\", \"branch_id\" => \"76070e52-4e96-4da6-"},{"event":"cmd_output","timestamp":1607098372,"output":"ae3a-c3eb47f5c4e5\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"semapho"},{"event":"cmd_output","timestamp":1607098372,"output":"re.yml\", \"hook_id\" => \"8f71aa18-364b-11eb-b021-5254005464e2\", \"label\" => \"master\", \"organization_id\""},{"event":"cmd_output","timestamp":1607098372,"output":" => \"07f4a16c-f87c-4150-9f2e-56ede8f9e0ba\", \"owner\" => \"rt\", \"project_id\" => \"0463e402-c95f-4351-b92"},{"event":"cmd_output","timestamp":1607098372,"output":"a-97b9805bbffc\", \"repo_name\" => \"2_basic\", \"request_token\" => \"8f71a34c-364b-11eb-977d-5254005464e2\""},{"event":"cmd_output","timestamp":1607098372,"output":", \"requester_id\" => \"967067d5-f7dc-49b2-8fea-09f6f27f42d2\", \"service\" => \"local\", \"suppressed_attrib"},{"event":"cmd_output","timestamp":1607098372,"output":"utes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"55b59388-9e32-4e08-b13b-4135cd9ca7c5\", \"work"},{"event":"cmd_output","timestamp":1607098372,"output":"ing_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:12:52.204 [info] ppl_id: 2b070e83-78e5-4bd9-9ed1-e6b7292f3"},{"event":"cmd_output","timestamp":1607098372,"output":"fd9, type: PplRequests, event: persisted schedule request with request_token: 8f71a34c-364b-11eb-977"},{"event":"cmd_output","timestamp":1607098372,"output":"d-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b"},{"event":"cmd_output","timestamp":1607098372,"output":"[0m\u001b[22m\n16:12:52.207 [info] ppl_id: 2b070e83-78e5-4bd9-9ed1-e6b7292f3fd9, type: Ppls, state: init"},{"event":"cmd_output","timestamp":1607098372,"output":"ializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_"},{"event":"cmd_output","timestamp":1607098372,"output":"response/2(L124), \n\u001b[0m\u001b[22m\n16:12:52.212 [info] Project 0463e402-c95f-4351-b92a-97b9805bbffc and"},{"event":"cmd_output","timestamp":1607098372,"output":" branch masterlatest_wf details updated: \"wf_id: 55b59388-9e32-4e08-b13b-4135cd9ca7c5, wf_number: 1\""},{"event":"cmd_output","timestamp":1607098372,"output":"\n\u001b[0m\u001b[22m\n16:12:52.213 [info] Persisted ppl_sub_init for pipeline with ppl_id: 2b070e83-78e5-4bd"},{"event":"cmd_output","timestamp":1607098372,"output":"9-9ed1-e6b7292f3fd9: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pi"},{"event":"cmd_output","timestamp":1607098372,"output":"peline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 256, in_scheduling: false, ini"},{"event":"cmd_output","timestamp":1607098372,"output":"t_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:52.212211], pipeline_requests: #Ecto.Association"},{"event":"cmd_output","timestamp":1607098372,"output":".NotLoaded, ppl_id: \"2b070e83-78e5-4bd9-9ed1-e6b7292f3"},{"event":"cmd_output","timestamp":1607098372,"output":"fd9\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, "},{"event":"cmd_output","timestamp":1607098372,"output":"terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:52.212217]}\n\u001b[0m\u001b[22m\n16:12:52.217 [i"},{"event":"cmd_output","timestamp":1607098372,"output":"nfo] Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.ST"},{"event":"cmd_output","timestamp":1607098372,"output":"MHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHa"},{"event":"cmd_output","timestamp":1607098372,"output":"ndler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], c"},{"event":"cmd_output","timestamp":1607098372,"output":"ooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher_cb"},{"event":"cmd_output","timestamp":1607098372,"output":": #Function<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, retu"},{"event":"cmd_output","timestamp":1607098372,"output":"rning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Pp"},{"event":"cmd_output","timestamp":1607098372,"output":"l.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:52.217 [info] Periodic from module Eli"},{"event":"cmd_output","timestamp":1607098372,"output":"xir.Ppl.PplSubInits.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHandler.RegularI"},{"event":"cmd_output","timestamp":1607098372,"output":"nitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-Regul"},{"event":"cmd_output","timestamp":1607098372,"output":"arInitState\"]}, recurring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, initial_query: Ppl."},{"event":"cmd_output","timestamp":1607098372,"output":"PplSubInits.Model.PplSubInits, observed_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRe"},{"event":"cmd_output","timestamp":1607098372,"output":"po, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], sc"},{"event":"cmd_output","timestamp":1607098372,"output":"hema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:52.217 [info] Pe"},{"event":"cmd_output","timestamp":1607098372,"output":"riodic from module Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl.PplSubInits."},{"event":"cmd_output","timestamp":1607098372,"output":"STMHandler.FetchingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-"},{"event":"cmd_output","timestamp":1607098372,"output":"STMHandler-FetchingState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"done"},{"event":"cmd_output","timestamp":1607098372,"output":"\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fetchin"},{"event":"cmd_output","timestamp":1607098372,"output":"g\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :stat"},{"event":"cmd_output","timestamp":1607098372,"output":"e, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :"},{"event":"cmd_output","timestamp":1607098372,"output":"skip}\n\u001b[0m\u001b[22m\n16:12:52.217 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.Compil"},{"event":"cmd_output","timestamp":1607098372,"output":"ationState with name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 100 ms, metric_na"},{"event":"cmd_output","timestamp":1607098372,"output":"me: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurring args: %{all"},{"event":"cmd_output","timestamp":1607098372,"output":"owed_states: [\"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_quer"},{"event":"cmd_output","timestamp":1607098372,"output":"y: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"compilation\", publisher_cb: :skip, repo: Ppl."},{"event":"cmd_output","timestamp":1607098372,"output":"EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_i"},{"event":"cmd_output","timestamp":1607098372,"output":"d], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:52.218 [inf"},{"event":"cmd_output","timestamp":1607098372,"output":"o] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubI"},{"event":"cmd_output","timestamp":1607098372,"output":"nits.STMHandler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubIn"},{"event":"cmd_output","timestamp":1607098372,"output":"its-STMHandler-CreatedState\"]}, recurring args: %{allowed_states: [\"fetching\", \"done\"], cooling_time"},{"event":"cmd_output","timestamp":1607098372,"output":"_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"created\", publisher_cb: "},{"event":"cmd_output","timestamp":1607098372,"output":":skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recov"},{"event":"cmd_output","timestamp":1607098372,"output":"ery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098372,"output":"16:12:52.332 [info] ppl_id: 2b070e83-78e5-4bd9-9ed1-e6b7292f3fd9, type: PplRequests, event: persist"},{"event":"cmd_output","timestamp":1607098372,"output":"ed source_args for pipeline: 2b070e83-78e5-4bd9-9ed1-e6b7292f3fd9, origin: Elixir.Ppl.PplRequests.Mo"},{"event":"cmd_output","timestamp":1607098372,"output":"del.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:52.334 [info] ppl_id: 2b070e83-78e5"},{"event":"cmd_output","timestamp":1607098372,"output":"-4bd9-9ed1-e6b7292f3fd9, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count:"},{"event":"cmd_output","timestamp":1607098372,"output":" 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:52.351 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098372,"output":": 2b070e83-78e5-4bd9-9ed1-e6b7292f3fd9, type: PplSubInits, state: regular_init, event: exit_scheduli"},{"event":"cmd_output","timestamp":1607098372,"output":"ng, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:52"},{"event":"cmd_output","timestamp":1607098372,"output":".366 [info] ppl_id: 2b070e83-78e5-4bd9-9ed1-e6b7292f3fd9, type: PplRequests, event: persisted defin"},{"event":"cmd_output","timestamp":1607098372,"output":"ition for request with request_token: 8f71a34c-364b-11eb-977d-5254005464e2, origin: Elixir.Ppl.PplRe"},{"event":"cmd_output","timestamp":1607098372,"output":"quests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:52.370 [info] Queue pe"},{"event":"cmd_output","timestamp":1607098372,"output":"rsisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted"},{"event":"cmd_output","timestamp":1607098372,"output":"_at: ~N[2020-12-04 16:12:52.368622], name: \"master-.semaphore/semaphore.yml\", organization_id: \"07f4"},{"event":"cmd_output","timestamp":1607098372,"output":"a16c-f87c-4150-9f2e-56ede8f9e0ba\", project_id: \"0463e402-c95f-4351-b92a-97b9805bbffc\", queue_id: \"9f"},{"event":"cmd_output","timestamp":1607098372,"output":"5ad983-2587-4db5-bf66-27d9fe00e21b\", scope: \"project\", updated_at: ~N[2020-12-04 16:12:52.368631], u"},{"event":"cmd_output","timestamp":1607098372,"output":"ser_generated: false}}\n\u001b[0m\u001b[22m\n16:12:52.375 [info] event: created, origin: Elixir.Ppl.PplSubIni"},{"event":"cmd_output","timestamp":1607098372,"output":"ts.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:52.375 [info] ppl_id: 2b070e83-7"},{"event":"cmd_output","timestamp":1607098372,"output":"8e5-4bd9-9ed1-e6b7292f3fd9, type: PplBlocks, block_index: 0, state: initializing, event: created, re"},{"event":"cmd_output","timestamp":1607098372,"output":"covery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098372,"output":"[22m\n16:12:52.377 [info] ppl_id: 2b070e83-78e5-4bd9-9ed1-e6b7292f3fd9, type: PplSubInits, state: d"},{"event":"cmd_output","timestamp":1607098372,"output":"one, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_s"},{"event":"cmd_output","timestamp":1607098372,"output":"tate_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:52.389 [info] ppl_id: 2b070e83-78e5-4bd9-9ed1-e6b7292f3fd9, "},{"event":"cmd_output","timestamp":1607098372,"output":"type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Imp"},{"event":"cmd_output","timestamp":1607098372,"output":"l.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test gRPC describe_topology() - parallelism in jobs (305."},{"event":"cmd_output","timestamp":1607098372,"output":"5ms)\u001b[0m\n * test describe_many returns error when there is no pipeliene for one or more of given i"},{"event":"cmd_output","timestamp":1607098372,"output":"ds\r * test describe_many returns error when there is no pipeliene for one or more of given ids (ski"},{"event":"cmd_output","timestamp":1607098372,"output":"pped)\n * test gRPC list() - filter by wf_id\u001b[22m\n16:12:52.474 [info] Periodic from module Elixir"},{"event":"cmd_output","timestamp":1607098372,"output":".Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: per"},{"event":"cmd_output","timestamp":1607098372,"output":"iod: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recur"},{"event":"cmd_output","timestamp":1607098372,"output":"ring args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query"},{"event":"cmd_output","timestamp":1607098372,"output":": Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl."},{"event":"cmd_output","timestamp":1607098372,"output":"Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, "},{"event":"cmd_output","timestamp":1607098372,"output":":updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_superviso"},{"event":"cmd_output","timestamp":1607098372,"output":"r: :skip}\n\u001b[0m\u001b[22m\n16:12:52.475 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingSt"},{"event":"cmd_output","timestamp":1607098372,"output":"ate with name Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder"},{"event":"cmd_output","timestamp":1607098372,"output":"-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"pending\", \"que"},{"event":"cmd_output","timestamp":1607098372,"output":"uing\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: "},{"event":"cmd_output","timestamp":1607098372,"output":"\"pending\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Pp"},{"event":"cmd_output","timestamp":1607098372,"output":"l.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl"},{"event":"cmd_output","timestamp":1607098372,"output":"_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:12:52.476 [in"},{"event":"cmd_output","timestamp":1607098372,"output":"fo] Periodic from module Elixir.Ppl.Ppls.STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandl"},{"event":"cmd_output","timestamp":1607098372,"output":"er.QueuingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Queui"},{"event":"cmd_output","timestamp":1607098372,"output":"ngState\"]}, recurring args: %{allowed_states: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, "},{"event":"cmd_output","timestamp":1607098372,"output":"initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", publisher_cb: #Function<0.125102843/1"},{"event":"cmd_output","timestamp":1607098372,"output":" in Ppl.Ppls.STMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_reques"},{"event":"cmd_output","timestamp":1607098372,"output":"t, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_superv"},{"event":"cmd_output","timestamp":1607098372,"output":"isor: :skip}\n\u001b[0m\u001b[22m\n16:12:52.477 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.Runnin"},{"event":"cmd_output","timestamp":1607098372,"output":"gState with name Elixir.Ppl.Ppls.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.behol"},{"event":"cmd_output","timestamp":1607098372,"output":"der-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \""},{"event":"cmd_output","timestamp":1607098372,"output":"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"runni"},{"event":"cmd_output","timestamp":1607098372,"output":"ng\", publisher_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler.RunningState.args/0>, repo: Ppl.Ect"},{"event":"cmd_output","timestamp":1607098372,"output":"oRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id],"},{"event":"cmd_output","timestamp":1607098372,"output":" schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:12:52.478 [info] "},{"event":"cmd_output","timestamp":1607098372,"output":"Periodic from module Elixir.Ppl.Ppls.STMHandler.StoppingState with name Elixir.Ppl.Ppls.STMHandler.S"},{"event":"cmd_output","timestamp":1607098372,"output":"toppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Stopping"},{"event":"cmd_output","timestamp":1607098372,"output":"State\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_quer"},{"event":"cmd_output","timestamp":1607098372,"output":"y: Ppl.Ppls.Model.Ppls, observed_state: \"stopping\", publisher_cb: #Function<0.71803493/1 in Ppl.Ppls"},{"event":"cmd_output","timestamp":1607098372,"output":".STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated"},{"event":"cmd_output","timestamp":1607098372,"output":"_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip"},{"event":"cmd_output","timestamp":1607098372,"output":"}\n\u001b[0m\u001b[22m\n16:12:52.479 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedSta"},{"event":"cmd_output","timestamp":1607098372,"output":"te with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.be"},{"event":"cmd_output","timestamp":1607098372,"output":"holder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args: %{allowed_states: [\"f"},{"event":"cmd_output","timestamp":1607098372,"output":"etching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_s"},{"event":"cmd_output","timestamp":1607098372,"output":"tate: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :upda"},{"event":"cmd_output","timestamp":1607098372,"output":"ted_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_"},{"event":"cmd_output","timestamp":1607098372,"output":"supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:52.481 [info] Periodic from module Elixir.Ppl.PplSubInits.STMH"},{"event":"cmd_output","timestamp":1607098372,"output":"andler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 ms, me"},{"event":"cmd_output","timestamp":1607098372,"output":"tric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %"},{"event":"cmd_output","timestamp":1607098372,"output":"{allowed_states: [\"regular_init\", \"compilation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.P"},{"event":"cmd_output","timestamp":1607098372,"output":"plSubInits.Model.PplSubInits, observed_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, r"},{"event":"cmd_output","timestamp":1607098372,"output":"eturning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema:"},{"event":"cmd_output","timestamp":1607098372,"output":" Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:52.482 [info] Periodi"},{"event":"cmd_output","timestamp":1607098372,"output":"c from module Elixir.Ppl.PplSubInits.STMHandler.CompilationState with name Elixir.Ppl.PplSubInits.ST"},{"event":"cmd_output","timestamp":1607098372,"output":"MHandler.CompilationState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits"},{"event":"cmd_output","timestamp":1607098372,"output":"-STMHandler-CompilationState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \""},{"event":"cmd_output","timestamp":1607098372,"output":"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed"},{"event":"cmd_output","timestamp":1607098372,"output":"_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request,"},{"event":"cmd_output","timestamp":1607098372,"output":" :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits,"},{"event":"cmd_output","timestamp":1607098372,"output":" task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:52.482 [info] Periodic from module Elixir.Ppl.PplSubInit"},{"event":"cmd_output","timestamp":1607098372,"output":"s.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period"},{"event":"cmd_output","timestamp":1607098372,"output":": 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, re"},{"event":"cmd_output","timestamp":1607098372,"output":"curring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model."},{"event":"cmd_output","timestamp":1607098372,"output":"PplSubInits, observed_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:i"},{"event":"cmd_output","timestamp":1607098372,"output":"d, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubIn"},{"event":"cmd_output","timestamp":1607098372,"output":"its.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:52.484 [info] Periodic from module"},{"event":"cmd_output","timestamp":1607098372,"output":" Elixir.Ppl.PplBlocks.STMHandler.InitializingState with name Elixir.Ppl.PplBlocks.STMHandler.Initial"},{"event":"cmd_output","timestamp":1607098372,"output":"izingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-Initi"},{"event":"cmd_output","timestamp":1607098372,"output":"alizingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"waiting\", \"done\"], cooling_time"},{"event":"cmd_output","timestamp":1607098372,"output":"_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"initializing\", publisher_cb:"},{"event":"cmd_output","timestamp":1607098372,"output":" :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :reco"},{"event":"cmd_output","timestamp":1607098372,"output":"very_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n"},{"event":"cmd_output","timestamp":1607098372,"output":"\u001b[0m\u001b[22m\n16:12:52.484 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.WaitingState wi"},{"event":"cmd_output","timestamp":1607098372,"output":"th name Elixir.Ppl.PplBlocks.STMHandler.WaitingState :: period: 1000 ms, metric_name: {\"Ppl.beholder"},{"event":"cmd_output","timestamp":1607098372,"output":"-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurring args: %{allowed_states: [\"waiting\","},{"event":"cmd_output","timestamp":1607098372,"output":" \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_sta"},{"event":"cmd_output","timestamp":1607098372,"output":"te: \"waiting\", publisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>,"},{"event":"cmd_output","timestamp":1607098372,"output":" repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_co"},{"event":"cmd_output","timestamp":1607098372,"output":"unt, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098372,"output":"2m\n16:12:52.484 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.RunningState with name"},{"event":"cmd_output","timestamp":1607098372,"output":" Elixir.Ppl.PplBlocks.STMHandler.RunningState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_u"},{"event":"cmd_output","timestamp":1607098372,"output":"p\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopp"},{"event":"cmd_output","timestamp":1607098372,"output":"ing\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \""},{"event":"cmd_output","timestamp":1607098372,"output":"running\", publisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0>, rep"},{"event":"cmd_output","timestamp":1607098372,"output":"o: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count,"},{"event":"cmd_output","timestamp":1607098372,"output":" :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n"},{"event":"cmd_output","timestamp":1607098372,"output":"\u001b[0m\u001b[22m\n16:12:52.485 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.StoppingState w"},{"event":"cmd_output","timestamp":1607098372,"output":"ith name Elixir.Ppl.PplBlocks.STMHandler.StoppingState :: period: 1000 ms, metric_name: {\"Ppl.behold"},{"event":"cmd_output","timestamp":1607098372,"output":"er-wake_up\", [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stoppi"},{"event":"cmd_output","timestamp":1607098372,"output":"ng\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"s"},{"event":"cmd_output","timestamp":1607098372,"output":"topping\", publisher_cb: #Function<0.104215991/1 in Ppl.PplBlocks.STMHandler.StoppingState.args/0>, r"},{"event":"cmd_output","timestamp":1607098372,"output":"epo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_coun"},{"event":"cmd_output","timestamp":1607098372,"output":"t, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}"},{"event":"cmd_output","timestamp":1607098372,"output":"\n\u001b[0m\u001b[22m\n16:12:52.485 [info] Periodic from module Elixir.Block.Blocks.STMHandler.InitializingSt"},{"event":"cmd_output","timestamp":1607098372,"output":"ate with name Elixir.Block.Blocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl"},{"event":"cmd_output","timestamp":1607098372,"output":".beholder-wake_up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states"},{"event":"cmd_output","timestamp":1607098372,"output":": [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Blocks.Model.Blocks, observed_state"},{"event":"cmd_output","timestamp":1607098372,"output":": \"initializing\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :u"},{"event":"cmd_output","timestamp":1607098372,"output":"pdated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: "},{"event":"cmd_output","timestamp":1607098372,"output":":skip}\n\u001b[0m\u001b[22m\n16:12:52.485 [info] Periodic from module Elixir.Block.Blocks.STMHandler.RunningS"},{"event":"cmd_output","timestamp":1607098372,"output":"tate with name Elixir.Block.Blocks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beh"},{"event":"cmd_output","timestamp":1607098372,"output":"older-wake_up\", [\"Block-Blocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"runni"},{"event":"cmd_output","timestamp":1607098372,"output":"ng\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_s"},{"event":"cmd_output","timestamp":1607098372,"output":"tate: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :up"},{"event":"cmd_output","timestamp":1607098372,"output":"dated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :"},{"event":"cmd_output","timestamp":1607098372,"output":"skip}\n\u001b[0m\u001b[22m\n16:12:52.485 [info] Periodic from module Elixir.Block.Blocks.STMHandler.StoppingS"},{"event":"cmd_output","timestamp":1607098372,"output":"tate with name Elixir.Block.Blocks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.be"},{"event":"cmd_output","timestamp":1607098372,"output":"holder-wake_up\", [\"Block-Blocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"sto"},{"event":"cmd_output","timestamp":1607098372,"output":"pping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"st"},{"event":"cmd_output","timestamp":1607098372,"output":"opping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at"},{"event":"cmd_output","timestamp":1607098372,"output":", :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b"},{"event":"cmd_output","timestamp":1607098372,"output":"[0m\u001b[22m\n16:12:52.485 [info] Periodic from module Elixir.Block.Tasks.STMHandler.PendingState with "},{"event":"cmd_output","timestamp":1607098372,"output":"name Elixir.Block.Tasks.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_"},{"event":"cmd_output","timestamp":1607098372,"output":"up\", [\"Block-Tasks-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"]"},{"event":"cmd_output","timestamp":1607098372,"output":", cooling_time_sec: 0, initial_query: Block.Tasks.Model.Tasks, observed_state: \"pending\", publisher_"},{"event":"cmd_output","timestamp":1607098372,"output":"cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery"},{"event":"cmd_output","timestamp":1607098372,"output":"_count, :block_id, :build_request_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0"},{"event":"cmd_output","timestamp":1607098372,"output":"m\u001b[22m\n16:12:52.485 [info] Periodic from module Elixir.Block.Tasks.STMHandler.RunningState with na"},{"event":"cmd_output","timestamp":1607098372,"output":"me Elixir.Block.Tasks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up"},{"event":"cmd_output","timestamp":1607098372,"output":"\", [\"Block-Tasks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping"},{"event":"cmd_output","timestamp":1607098372,"output":"\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"running\","},{"event":"cmd_output","timestamp":1607098372,"output":" publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state"},{"event":"cmd_output","timestamp":1607098372,"output":", :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098372,"output":"16:12:52.485 [info] Periodic from module Elixir.Block.Tasks.STMHandler.StoppingState with name Elix"},{"event":"cmd_output","timestamp":1607098372,"output":"ir.Block.Tasks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"B"},{"event":"cmd_output","timestamp":1607098372,"output":"lock-Tasks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cool"},{"event":"cmd_output","timestamp":1607098372,"output":"ing_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"stopping\", publisher_cb: "},{"event":"cmd_output","timestamp":1607098372,"output":":skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_cou"},{"event":"cmd_output","timestamp":1607098372,"output":"nt, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:52.497 [i"},{"event":"cmd_output","timestamp":1607098372,"output":"nfo] Request: 'run: %{\"branch_id\" => \"955d9483-a79f-4ed7-ad22-94f8b0646c02\", \"branch_name\" => \"mast"},{"event":"cmd_output","timestamp":1607098372,"output":"er\", \"client_id\" => \"9c6f86d3-cae8-44d8-8b75-5e2ee3b83477\", \"commit_sha\" => \"75891a4469\", \"definitio"},{"event":"cmd_output","timestamp":1607098372,"output":"n_file\" => \"\", \"hook_id\" => \"8f9dd084-364b-11eb-9407-5254005464e2\", \"label\" => \"master\", \"organizati"},{"event":"cmd_output","timestamp":1607098372,"output":"on_id\" => \"fd2deb01-dd66-4d5a-bf77-a0beb58a0255\", \"owner\" => \"rt\", \"project_id\" => \"to_list\", \"repo_"},{"event":"cmd_output","timestamp":1607098372,"output":"name\" => \"20_workflow_builder\", \"request_token\" => \"8f9dc878-364b-11eb-bcc9-5254005464e2\", \"requeste"},{"event":"cmd_output","timestamp":1607098372,"output":"r_id\" => \"f94d488b-8212-430a-a10e-eecf98114583\", \"service\" => \"local\", \"snapshot_id\" => \"\", \"suppres"},{"event":"cmd_output","timestamp":1607098372,"output":"sed_attributes\" => [\"access_token\", \"client_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"c5a9fc87"},{"event":"cmd_output","timestamp":1607098372,"output":"-1033-42f9-b4ba-fd08529008aa\"}\n\u001b[0m\u001b[22m\n16:12:52.512 [info] ppl_id: 06321a4f-12bc-44fa-9d98-e552"},{"event":"cmd_output","timestamp":1607098372,"output":"9bfa90d9, type: PplRequests, event: persisted schedule request with request_token: 8f9dc878-364b-11e"},{"event":"cmd_output","timestamp":1607098372,"output":"b-bcc9-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55)"},{"event":"cmd_output","timestamp":1607098372,"output":", \n\u001b[0m\u001b[22m\n16:12:52.515 [info] ppl_id: 06321a4f-12bc-44fa-9d98-e5529bfa90d9, type: Ppls, state:"},{"event":"cmd_output","timestamp":1607098372,"output":" initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.pro"},{"event":"cmd_output","timestamp":1607098372,"output":"cess_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:52.520 [info] Project to_list and branch masterlatest_wf "},{"event":"cmd_output","timestamp":1607098372,"output":"details updated: \"wf_id: c5a9fc87-1033-42f9-b4ba-fd08529008aa, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:12:52.52"},{"event":"cmd_output","timestamp":1607098372,"output":"2 [info] Persisted ppl_sub_init for pipeline with ppl_id: 06321a4f-12bc-44fa-9d98-e5529bfa90d9: %Pp"},{"event":"cmd_output","timestamp":1607098372,"output":"l.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, comp"},{"event":"cmd_output","timestamp":1607098372,"output":"ile_task_id: nil, error_description: nil, id: 257, in_scheduling: false, init_type: \"regular\", inser"},{"event":"cmd_output","timestamp":1607098372,"output":"ted_at: ~N[2020-12-04 16:12:52.521739], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"06321a4f-12bc-44fa-9d98-e5529bfa90d9\", recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098372,"output":" result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: "},{"event":"cmd_output","timestamp":1607098372,"output":"nil, updated_at: ~N[2020-12-04 16:12:52.521747]}\n\u001b[0m\u001b[22m\n16:12:52.536 [info] Request: 'run: %{\""},{"event":"cmd_output","timestamp":1607098372,"output":"auto_promoted\" => false, \"branch_id\" => \"955d9483-a79f-4ed7-ad22-94f8b0646c02\", \"branch_name\" => \"ma"},{"event":"cmd_output","timestamp":1607098372,"output":"ster\", \"client_id\" => \"9c6f86d3-cae8-44d8-8b75-5e2ee3b83477\", \"commit_sha\" => \"75891a4469\", \"definit"},{"event":"cmd_output","timestamp":1607098372,"output":"ion_file\" => \"\", \"env_vars\" => [], \"extension_of\" => \"06321a4f-12bc-44fa-9d98-e5529bfa90d9\", \"file_n"},{"event":"cmd_output","timestamp":1607098372,"output":"ame\" => \"/foo/bar/test.yml\", \"hook_id\" => \"8f9dd084-364b-11eb-9407-5254005464e2\", \"label\" => \"master"},{"event":"cmd_output","timestamp":1607098372,"output":"\", \"organization_id\" => \"fd2deb01-dd66-4d5a-bf77-a0beb58a0255\", \"owner\" => \"rt\", \"prev_ppl_artefact_"},{"event":"cmd_output","timestamp":1607098372,"output":"ids\" => [\"06321a4f-12bc-44fa-9d98-e5529bfa90d9\"], \"project_id\" => \"to_list\", \"promoter_id\" => \"\", \"r"},{"event":"cmd_output","timestamp":1607098372,"output":"epo_name\" => \"20_workflow_builder\", \"request_token\" => \"a27d8541-b44f-481a-a612-53579df8c81f\", \"requ"},{"event":"cmd_output","timestamp":1607098372,"output":"ester_id\" => \"f94d488b-8212-430a-a10e-eecf98114583\", \"service\" => \"local\", \"snapshot_id\" => \"\", \"sup"},{"event":"cmd_output","timestamp":1607098372,"output":"pressed_attributes\" => [\"access_token\", \"client_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"c5a9"},{"event":"cmd_output","timestamp":1607098372,"output":"fc87-1033-42f9-b4ba-fd08529008aa\", \"wf_number\" => 1, \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098372,"output":"2:52.538 [info] ppl_id: 06321a4f-12bc-44fa-9d98-e5529bfa90d9, type: PplRequests, event: persisted s"},{"event":"cmd_output","timestamp":1607098372,"output":"ource_args for pipeline: 06321a4f-12bc-44fa-9d98-e5529bfa90d9, origin: Elixir.Ppl.PplRequests.Model."},{"event":"cmd_output","timestamp":1607098372,"output":"PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:52.540 [info] ppl_id: 7b157cc1-9c2c-47e"},{"event":"cmd_output","timestamp":1607098372,"output":"9-908c-8b1aa5f10dde, type: PplRequests, event: persisted schedule request with request_token: a27d85"},{"event":"cmd_output","timestamp":1607098372,"output":"41-b44f-481a-a612-53579df8c81f, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_resp"},{"event":"cmd_output","timestamp":1607098372,"output":"onse/2(L55), \n\u001b[0m\u001b[22m\n16:12:52.542 [info] ppl_id: 7b157cc1-9c2c-47e9-908c-8b1aa5f10dde, type: P"},{"event":"cmd_output","timestamp":1607098372,"output":"pls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.Ppls"},{"event":"cmd_output","timestamp":1607098372,"output":"Queries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:52.543 [info] ppl_id: 06321a4f-12bc-44fa-9d98-"},{"event":"cmd_output","timestamp":1607098372,"output":"e5529bfa90d9, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098372,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:52.545 [info] Persisted ppl_sub"},{"event":"cmd_output","timestamp":1607098372,"output":"_init for pipeline with ppl_id: 7b157cc1-9c2c-47e9-908c-8b1aa5f10dde: %Ppl.PplSubInits.Model.PplSubI"},{"event":"cmd_output","timestamp":1607098372,"output":"nits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_des"},{"event":"cmd_output","timestamp":1607098372,"output":"cription: nil, id: 258, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12"},{"event":"cmd_output","timestamp":1607098372,"output":":52.543975], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"7b157cc1-9c2c-47e9-908c-8b1aa5f10dde\", recovery_count: 0, result: nil, result_reason"},{"event":"cmd_output","timestamp":1607098372,"output":": nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12"},{"event":"cmd_output","timestamp":1607098372,"output":"-04 16:12:52.543982]}\n\u001b[0m\u001b[22m\n16:12:52.555 [info] ppl_id: 7b157cc1-9c2c-47e9-908c-8b1aa5f10dde,"},{"event":"cmd_output","timestamp":1607098372,"output":" type: PplRequests, event: persisted source_args for pipeline: 7b157cc1-9c2c-47e9-908c-8b1aa5f10dde,"},{"event":"cmd_output","timestamp":1607098372,"output":" origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:52"},{"event":"cmd_output","timestamp":1607098372,"output":".557 [info] ppl_id: 7b157cc1-9c2c-47e9-908c-8b1aa5f10dde, type: PplSubInits, state: fetching, event"},{"event":"cmd_output","timestamp":1607098372,"output":": exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098372,"output":"\u001b[22m\n16:12:52.567 [info] ppl_id: 06321a4f-12bc-44fa-9d98-e5529bfa90d9, type: PplSubInits, state: "},{"event":"cmd_output","timestamp":1607098372,"output":"regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_ch"},{"event":"cmd_output","timestamp":1607098372,"output":"ange/1(L90), \n\u001b[0m\u001b[22m\n16:12:52.607 [info] ppl_id: 7b157cc1-9c2c-47e9-908c-8b1aa5f10dde, type: P"},{"event":"cmd_output","timestamp":1607098372,"output":"plSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.ST"},{"event":"cmd_output","timestamp":1607098374,"output":"M.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[33m\n16:12:54.958 [warn] Elixir.Wormhole{#PID<0.10561.1>}::"},{"event":"cmd_output","timestamp":1607098374,"output":" callback: {GoferClient.GrpcClient, :create_, [%InternalApi.Gofer.CreateRequest{branch_name: \"master"},{"event":"cmd_output","timestamp":1607098374,"output":"\", commit_range: \"1234...4567\", commit_sha: \"75891a4469\", git_ref_type: 0, label: \"master\", pipeline"},{"event":"cmd_output","timestamp":1607098374,"output":"_id: \"06321a4f-12bc-44fa-9d98-e5529bfa90d9\", pr_base: \"\", pr_sha: \"\", prev_ppl_artefact_ids: [\"06321"},{"event":"cmd_output","timestamp":1607098374,"output":"a4f-12bc-44fa-9d98-e5529bfa90d9\"], project_id: \"to_list\", targets: [%InternalApi.Gofer.Target{auto_p"},{"event":"cmd_output","timestamp":1607098374,"output":"romote_when: \"\", auto_trigger_on: [], name: \"Extension ppl\", parameter_env_vars: [], pipeline_path: "},{"event":"cmd_output","timestamp":1607098374,"output":"\"/foo/bar/test.yml\"}], working_dir: \".semaphore\", yml_file_name: \"semaphore.yml\"}]}; reason: {:timeo"},{"event":"cmd_output","timestamp":1607098374,"output":"ut, 2345}\n\u001b[0m\u001b[31m\n16:12:54.960 [error] ppl_id: not_available, event: exit_scheduling, context: {"},{"event":"cmd_output","timestamp":1607098374,"output":":error, :user_exit_function, {:error, {:timeout, 2345}}, %{item: %Ppl.PplSubInits.Model.PplSubInits{"},{"event":"cmd_output","timestamp":1607098374,"output":"__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_descript"},{"event":"cmd_output","timestamp":1607098374,"output":"ion: \"\", id: 257, in_scheduling: true, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:52.521"},{"event":"cmd_output","timestamp":1607098374,"output":"739], pipeline_requests: #Ecto.Association.NotLoaded, "},{"event":"cmd_output","timestamp":1607098374,"output":"ppl_id: \"06321a4f-12bc-44fa-9d98-e5529bfa90d9\", recovery_count: 0, result: nil, result_reason: nil, "},{"event":"cmd_output","timestamp":1607098374,"output":"state: \"regular_init\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-0"},{"event":"cmd_output","timestamp":1607098374,"output":"4 16:12:52.569540]}}}, origin: Elixir.Looper.STM.Impl.log_state_change/1(L96), \n\u001b[0m\u001b[31m\n16:12:54"},{"event":"cmd_output","timestamp":1607098374,"output":".961 [error] STM Elixir.Ppl.PplSubInits.STMHandler.RegularInitState FAILED: {:error, :user_exit_func"},{"event":"cmd_output","timestamp":1607098374,"output":"tion, {:error, {:timeout, 2345}}, %{item: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema."},{"event":"cmd_output","timestamp":1607098374,"output":"Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: \"\", id: 257, in_sc"},{"event":"cmd_output","timestamp":1607098374,"output":"heduling: true, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:52.521739], pipeline_requests"},{"event":"cmd_output","timestamp":1607098374,"output":": #Ecto.Association.NotLoaded, ppl_id: \"06321a4f-12bc-"},{"event":"cmd_output","timestamp":1607098374,"output":"44fa-9d98-e5529bfa90d9\", recovery_count: 0, result: nil, result_reason: nil, state: \"regular_init\", "},{"event":"cmd_output","timestamp":1607098374,"output":"terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:52.569540]}}}\n"},{"event":"cmd_output","timestamp":1607098374,"output":"\u001b[0m\u001b[22m\n16:12:54.983 [info] ppl_id: 7b157cc1-9c2c-47e9-908c-8b1aa5f10dde, type: PplRequests, eve"},{"event":"cmd_output","timestamp":1607098374,"output":"nt: persisted definition for request with request_token: a27d8541-b44f-481a-a612-53579df8c81f, origi"},{"event":"cmd_output","timestamp":1607098374,"output":"n: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:54.9"},{"event":"cmd_output","timestamp":1607098374,"output":"86 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, "},{"event":"cmd_output","timestamp":1607098374,"output":"\"queues\">, inserted_at: ~N[2020-12-04 16:12:54.985336], name: \"master-/foo/bar/test.yml\", organizati"},{"event":"cmd_output","timestamp":1607098374,"output":"on_id: \"fd2deb01-dd66-4d5a-bf77-a0beb58a0255\", project_id: \"to_list\", queue_id: \"a26a3ef4-b19c-4eff-"},{"event":"cmd_output","timestamp":1607098374,"output":"8e48-d21179648d43\", scope: \"project\", updated_at: ~N[2020-12-04 16:12:54.985346], user_generated: fa"},{"event":"cmd_output","timestamp":1607098374,"output":"lse}}\n\u001b[0m\u001b[22m\n16:12:54.992 [info] ppl_id: not_available, event: created, origin: Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098374,"output":"SubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:54.992 [info] event: creat"},{"event":"cmd_output","timestamp":1607098374,"output":"ed, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:5"},{"event":"cmd_output","timestamp":1607098374,"output":"4.992 [info] ppl_id: 7b157cc1-9c2c-47e9-908c-8b1aa5f10dde, type: PplBlocks, block_index: 0, state: "},{"event":"cmd_output","timestamp":1607098374,"output":"initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularIn"},{"event":"cmd_output","timestamp":1607098374,"output":"itState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:54.992 [info] ppl_id: 7b157cc1-9c2c-47e9-908c-8b1aa5f10"},{"event":"cmd_output","timestamp":1607098374,"output":"dde, type: PplBlocks, block_index: 1, state: initializing, event: created, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098374,"output":": Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:54.994 [inf"},{"event":"cmd_output","timestamp":1607098374,"output":"o] ppl_id: 7b157cc1-9c2c-47e9-908c-8b1aa5f10dde, type: PplSubInits, state: done, result: passed, ev"},{"event":"cmd_output","timestamp":1607098374,"output":"ent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b"},{"event":"cmd_output","timestamp":1607098375,"output":"[0m\u001b[22m\n16:12:55.012 [info] ppl_id: 7b157cc1-9c2c-47e9-908c-8b1aa5f10dde, type: Ppls, state: pend"},{"event":"cmd_output","timestamp":1607098375,"output":"ing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L9"},{"event":"cmd_output","timestamp":1607098375,"output":"0), \n\u001b[0m\u001b[22m\n16:12:55.013 [info] ppl_id: 7b157cc1-9c2c-47e9-908c-8b1aa5f10dde, type: PplBlocks,"},{"event":"cmd_output","timestamp":1607098375,"output":" block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.ST"},{"event":"cmd_output","timestamp":1607098375,"output":"M.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:55.022 [info] ppl_id: 7b157cc1-9c2c-47e9-908c-8b"},{"event":"cmd_output","timestamp":1607098375,"output":"1aa5f10dde, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Lo"},{"event":"cmd_output","timestamp":1607098375,"output":"oper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:55.023 [info] ppl_id: 7b157cc1-9c2c-47e9-"},{"event":"cmd_output","timestamp":1607098375,"output":"908c-8b1aa5f10dde, type: PplBlocks, block_index: 1, state: waiting, event: exit_scheduling, recovery"},{"event":"cmd_output","timestamp":1607098375,"output":"_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:55.029 [info] "},{"event":"cmd_output","timestamp":1607098375,"output":" ppl_id: 7b157cc1-9c2c-47e9-908c-8b1aa5f10dde, type: Ppls, state: running, event: exit_scheduling, r"},{"event":"cmd_output","timestamp":1607098375,"output":"ecovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:55.035 "},{"event":"cmd_output","timestamp":1607098375,"output":"[info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"7b157cc1-9c2c-47e9-908c-8b1"},{"event":"cmd_output","timestamp":1607098375,"output":"aa5f10dde\"\n\u001b[0m\u001b[22m\n16:12:55.040 [info] block_id: 79c3ffa9-0a44-4478-8314-87dbab5d8c2b, type: Bl"},{"event":"cmd_output","timestamp":1607098375,"output":"ockRequests, event: persisted block run request from ppl 7b157cc1-9c2c-47e9-908c-8b1aa5f10dde for bl"},{"event":"cmd_output","timestamp":1607098375,"output":"ock 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098375,"output":"\u001b[22m\n16:12:55.042 [info] block_id: 79c3ffa9-0a44-4478-8314-87dbab5d8c2b, type: Blocks, state: ini"},{"event":"cmd_output","timestamp":1607098375,"output":"tializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.i"},{"event":"cmd_output","timestamp":1607098375,"output":"nsert/1(L43), \n\u001b[0m\u001b[22m\n16:12:55.045 [info] Block 0 of pipeline with id: 7b157cc1-9c2c-47e9-908c"},{"event":"cmd_output","timestamp":1607098375,"output":"-8b1aa5f10dde scheduled in block service with id: : \"79c3ffa9-0a44-4478-8314-87dbab5d8c2b\"\n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098375,"output":"m\n16:12:55.048 [info] ppl_id: 7b157cc1-9c2c-47e9-908c-8b1aa5f10dde, type: PplBlocks, block_index: "},{"event":"cmd_output","timestamp":1607098375,"output":"0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_sta"},{"event":"cmd_output","timestamp":1607098375,"output":"te_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:55.049 [info] block_id: 79c3ffa9-0a44-4478-8314-87dbab5d8c2b, "},{"event":"cmd_output","timestamp":1607098375,"output":"type: BlockRequests, event: persisted build and sub_ppl details for block_request: 79c3ffa9-0a44-447"},{"event":"cmd_output","timestamp":1607098375,"output":"8-8314-87dbab5d8c2b, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L4"},{"event":"cmd_output","timestamp":1607098375,"output":"1), \n\u001b[0m\u001b[22m\n16:12:55.055 [info] block_id: 79c3ffa9-0a44-4478-8314-87dbab5d8c2b, type: Tasks, s"},{"event":"cmd_output","timestamp":1607098375,"output":"tate: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.Initializin"},{"event":"cmd_output","timestamp":1607098375,"output":"gState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:55.058 [info] block_id: 79c3ffa9-0a44-4478-8314-87dbab5d"},{"event":"cmd_output","timestamp":1607098375,"output":"8c2b, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper"},{"event":"cmd_output","timestamp":1607098375,"output":".STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:55.075 [info] block_id: 79c3ffa9-0a44-4478-83"},{"event":"cmd_output","timestamp":1607098375,"output":"14-87dbab5d8c2b, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098375,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:55.169 [info] block_id: 79c3ffa9-0a"},{"event":"cmd_output","timestamp":1607098375,"output":"44-4478-8314-87dbab5d8c2b, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098375,"output":"in: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:55.175 [info] block_id: 79c3"},{"event":"cmd_output","timestamp":1607098375,"output":"ffa9-0a44-4478-8314-87dbab5d8c2b, type: Blocks, state: done, event: exit_scheduling, recovery_count:"},{"event":"cmd_output","timestamp":1607098375,"output":" 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:55.184 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098375,"output":": 7b157cc1-9c2c-47e9-908c-8b1aa5f10dde, block_id: 79c3ffa9-0a44-4478-8314-87dbab5d8c2b, type: PplBlo"},{"event":"cmd_output","timestamp":1607098375,"output":"cks, block_index: 0, state: done, result: failed, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098375,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:55.195 [info] PplBlocks Waiting"},{"event":"cmd_output","timestamp":1607098375,"output":"State STM is scheduling block 1 from pipeline: \"7b157cc1-9c2c-47e9-908c-8b1aa5f10dde\"\n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098375,"output":":12:55.201 [info] ppl_id: 7b157cc1-9c2c-47e9-908c-8b1aa5f10dde, type: PplBlocks, block_index: 1, st"},{"event":"cmd_output","timestamp":1607098375,"output":"ate: done, result: canceled, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Im"},{"event":"cmd_output","timestamp":1607098375,"output":"pl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:55.217 [info] ppl_id: 7b157cc1-9c2c-47e9-908c-8b1aa5"},{"event":"cmd_output","timestamp":1607098375,"output":"f10dde, type: Ppls, state: done, result: failed, event: exit_scheduling, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098375,"output":"Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:55.304 [info] Request: 'partial_"},{"event":"cmd_output","timestamp":1607098375,"output":"rebuild', request: %{ppl_id: \"7b157cc1-9c2c-47e9-908c-8b1aa5f10dde\", request_token: \"b5b7d401-5e6c-4"},{"event":"cmd_output","timestamp":1607098375,"output":"fb4-8966-8acaac74fc8a\", user_id: \"\"}\n\u001b[0m\u001b[22m\n16:12:55.307 [info] ppl_id: 6e50b27d-02e8-4586-9fe"},{"event":"cmd_output","timestamp":1607098375,"output":"9-e5808f9958bc, type: PplRequests, event: persisted schedule request with request_token: b5b7d401-5e"},{"event":"cmd_output","timestamp":1607098375,"output":"6c-4fb4-8966-8acaac74fc8a, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/"},{"event":"cmd_output","timestamp":1607098375,"output":"2(L55), \n\u001b[0m\u001b[22m\n16:12:55.310 [info] ppl_id: 6e50b27d-02e8-4586-9fe9-e5808f9958bc, type: Ppls, "},{"event":"cmd_output","timestamp":1607098375,"output":"state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueri"},{"event":"cmd_output","timestamp":1607098375,"output":"es.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:55.313 [info] Persisted ppl_sub_init for pipeline w"},{"event":"cmd_output","timestamp":1607098375,"output":"ith ppl_id: 6e50b27d-02e8-4586-9fe9-e5808f9958bc: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto"},{"event":"cmd_output","timestamp":1607098375,"output":".Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 2"},{"event":"cmd_output","timestamp":1607098375,"output":"59, in_scheduling: false, init_type: \"rebuild\", inserted_at: ~N[2020-12-04 16:12:55.312291], pipelin"},{"event":"cmd_output","timestamp":1607098375,"output":"e_requests: #Ecto.Association.NotLoaded, ppl_id: \"6e50"},{"event":"cmd_output","timestamp":1607098375,"output":"b27d-02e8-4586-9fe9-e5808f9958bc\", recovery_count: 0, result: nil, result_reason: nil, state: \"creat"},{"event":"cmd_output","timestamp":1607098375,"output":"ed\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:55.312299]"},{"event":"cmd_output","timestamp":1607098375,"output":"}\n\u001b[0m\u001b[22m\n16:12:55.325 [info] Request: 'run: %{\"branch_id\" => \"c754505d-9996-4e6f-828a-2f282020"},{"event":"cmd_output","timestamp":1607098375,"output":"c734\", \"branch_name\" => \"master\", \"client_id\" => \"8d4e4159-d8bc-42af-93aa-fed19d30cdca\", \"commit_sha"},{"event":"cmd_output","timestamp":1607098375,"output":"\" => \"75891a4469\", \"definition_file\" => \"\", \"hook_id\" => \"914e53b8-364b-11eb-a50e-5254005464e2\", \"la"},{"event":"cmd_output","timestamp":1607098375,"output":"bel\" => \"master\", \"organization_id\" => \"8392093a-1f6c-4177-a644-6e75d951ad1a\", \"owner\" => \"rt\", \"pro"},{"event":"cmd_output","timestamp":1607098375,"output":"ject_id\" => \"to_list\", \"repo_name\" => \"20_workflow_builder\", \"request_token\" => \"914e4d28-364b-11eb-"},{"event":"cmd_output","timestamp":1607098375,"output":"b30c-5254005464e2\", \"requester_id\" => \"b63da1db-039a-4b25-aec7-7279bfa15604\", \"service\" => \"local\", "},{"event":"cmd_output","timestamp":1607098375,"output":"\"snapshot_id\" => \"\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"triggered_by\" =>"},{"event":"cmd_output","timestamp":1607098375,"output":" \"hook\", \"wf_id\" => \"23b9b6a0-706e-467d-ac1e-d9291df31c1f\"}\n\u001b[0m\u001b[22m\n16:12:55.328 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098375,"output":" 6e50b27d-02e8-4586-9fe9-e5808f9958bc, type: PplRequests, event: persisted source_args for pipeline:"},{"event":"cmd_output","timestamp":1607098375,"output":" 6e50b27d-02e8-4586-9fe9-e5808f9958bc, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.inser"},{"event":"cmd_output","timestamp":1607098375,"output":"t_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:55.330 [info] ppl_id: 6e50b27d-02e8-4586-9fe9-e5808f9958bc, typ"},{"event":"cmd_output","timestamp":1607098375,"output":"e: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.ST"},{"event":"cmd_output","timestamp":1607098375,"output":"M.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:55.360 [info] ppl_id: 6e50b27d-02e8-4586-9fe9-e5"},{"event":"cmd_output","timestamp":1607098375,"output":"808f9958bc, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098375,"output":"n: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:55.377 [info] ppl_id: 319c4c7"},{"event":"cmd_output","timestamp":1607098375,"output":"a-babb-467d-a24f-773e3e42805a, type: PplRequests, event: persisted schedule request with request_tok"},{"event":"cmd_output","timestamp":1607098375,"output":"en: 914e4d28-364b-11eb-b30c-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.pr"},{"event":"cmd_output","timestamp":1607098375,"output":"ocess_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:55.379 [info] ppl_id: 319c4c7a-babb-467d-a24f-773e3e42805"},{"event":"cmd_output","timestamp":1607098375,"output":"a, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls."},{"event":"cmd_output","timestamp":1607098375,"output":"Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:55.382 [info] Project to_list and br"},{"event":"cmd_output","timestamp":1607098375,"output":"anch masterlatest_wf details updated: \"wf_id: 23b9b6a0-706e-467d-ac1e-d9291df31c1f, wf_number: 2\"\n\u001b"},{"event":"cmd_output","timestamp":1607098375,"output":"[0m\u001b[22m\n16:12:55.383 [info] Persisted ppl_sub_init for pipeline with ppl_id: 319c4c7a-babb-467d-a"},{"event":"cmd_output","timestamp":1607098375,"output":"24f-773e3e42805a: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipel"},{"event":"cmd_output","timestamp":1607098375,"output":"ine_sub_inits\">, compile_task_id: nil, error_description: nil, id: 260, in_scheduling: false, init_t"},{"event":"cmd_output","timestamp":1607098375,"output":"ype: \"regular\", inserted_at: ~N[2020-12-04 16:12:55.382343], pipeline_requests: #Ecto.Association.No"},{"event":"cmd_output","timestamp":1607098375,"output":"tLoaded, ppl_id: \"319c4c7a-babb-467d-a24f-773e3e42805a"},{"event":"cmd_output","timestamp":1607098375,"output":"\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, ter"},{"event":"cmd_output","timestamp":1607098375,"output":"minate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:55.382352]}\n\u001b[0m\u001b[22m\n16:12:55.394 [info"},{"event":"cmd_output","timestamp":1607098375,"output":"] ppl_id: 319c4c7a-babb-467d-a24f-773e3e42805a, type: PplRequests, event: persisted source_args for"},{"event":"cmd_output","timestamp":1607098375,"output":" pipeline: 319c4c7a-babb-467d-a24f-773e3e42805a, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQue"},{"event":"cmd_output","timestamp":1607098375,"output":"ries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:55.398 [info] ppl_id: 319c4c7a-babb-467d-a24f-773e3e4"},{"event":"cmd_output","timestamp":1607098375,"output":"2805a, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098375,"output":".Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:55.403 [info] Request: 'run: %{\"auto_p"},{"event":"cmd_output","timestamp":1607098375,"output":"romoted\" => false, \"branch_id\" => \"c754505d-9996-4e6f-828a-2f282020c734\", \"branch_name\" => \"master\","},{"event":"cmd_output","timestamp":1607098375,"output":" \"client_id\" => \"8d4e4159-d8bc-42af-93aa-fed19d30cdca\", \"commit_sha\" => \"75891a4469\", \"definition_fi"},{"event":"cmd_output","timestamp":1607098375,"output":"le\" => \"\", \"env_vars\" => [], \"extension_of\" => \"319c4c7a-babb-467d-a24f-773e3e42805a\", \"file_name\" ="},{"event":"cmd_output","timestamp":1607098375,"output":"> \"/foo/bar/test.yml\", \"hook_id\" => \"914e53b8-364b-11eb-a50e-5254005464e2\", \"label\" => \"master\", \"or"},{"event":"cmd_output","timestamp":1607098375,"output":"ganization_id\" => \"8392093a-1f6c-4177-a644-6e75d951ad1a\", \"owner\" => \"rt\", \"prev_ppl_artefact_ids\" ="},{"event":"cmd_output","timestamp":1607098375,"output":"> [\"319c4c7a-babb-467d-a24f-773e3e42805a\"], \"project_id\" => \"to_list\", \"promoter_id\" => \"\", \"repo_na"},{"event":"cmd_output","timestamp":1607098375,"output":"me\" => \"20_workflow_builder\", \"request_token\" => \"cd1b290b-087f-4577-b9fa-28729362bc8e\", \"requester_"},{"event":"cmd_output","timestamp":1607098375,"output":"id\" => \"b63da1db-039a-4b25-aec7-7279bfa15604\", \"service\" => \"local\", \"snapshot_id\" => \"\", \"suppresse"},{"event":"cmd_output","timestamp":1607098375,"output":"d_attributes\" => [\"access_token\", \"client_secret\"], \"triggered_by\" => \"hook\", \"wf_id\" => \"23b9b6a0-7"},{"event":"cmd_output","timestamp":1607098375,"output":"06e-467d-ac1e-d9291df31c1f\", \"wf_number\" => 2, \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:12:55.4"},{"event":"cmd_output","timestamp":1607098375,"output":"07 [info] ppl_id: 6e50b27d-02e8-4586-9fe9-e5808f9958bc, type: PplRequests, event: persisted definit"},{"event":"cmd_output","timestamp":1607098375,"output":"ion for request with request_token: b5b7d401-5e6c-4fb4-8966-8acaac74fc8a, origin: Elixir.Ppl.PplRequ"},{"event":"cmd_output","timestamp":1607098375,"output":"ests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:55.408 [info] ppl_id: 3a"},{"event":"cmd_output","timestamp":1607098375,"output":"488595-1ad0-4b5c-a041-f2fe745a96e6, type: PplRequests, event: persisted schedule request with reques"},{"event":"cmd_output","timestamp":1607098375,"output":"t_token: cd1b290b-087f-4577-b9fa-28729362bc8e, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueri"},{"event":"cmd_output","timestamp":1607098375,"output":"es.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:55.415 [info] ppl_id: 3a488595-1ad0-4b5c-a041-f2fe74"},{"event":"cmd_output","timestamp":1607098375,"output":"5a96e6, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl."},{"event":"cmd_output","timestamp":1607098375,"output":"Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:55.417 [info] Persisted ppl_sub"},{"event":"cmd_output","timestamp":1607098375,"output":"_init for pipeline with ppl_id: 3a488595-1ad0-4b5c-a041-f2fe745a96e6: %Ppl.PplSubInits.Model.PplSubI"},{"event":"cmd_output","timestamp":1607098375,"output":"nits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_des"},{"event":"cmd_output","timestamp":1607098375,"output":"cription: nil, id: 261, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12"},{"event":"cmd_output","timestamp":1607098375,"output":":55.416667], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"3a488595-1ad0-4b5c-a041-f2fe745a96e6\", recovery_count: 0, result: nil, result_reason"},{"event":"cmd_output","timestamp":1607098375,"output":": nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12"},{"event":"cmd_output","timestamp":1607098375,"output":"-04 16:12:55.416675]}\n\u001b[0m\u001b[22m\n16:12:55.420 [info] ppl_id: not_available, event: created, origin"},{"event":"cmd_output","timestamp":1607098375,"output":": Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:55.420 [inf"},{"event":"cmd_output","timestamp":1607098375,"output":"o] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b["},{"event":"cmd_output","timestamp":1607098375,"output":"0m\u001b[22m\n16:12:55.420 [info] ppl_id: 6e50b27d-02e8-4586-9fe9-e5808f9958bc, type: PplBlocks, block_i"},{"event":"cmd_output","timestamp":1607098375,"output":"ndex: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMH"},{"event":"cmd_output","timestamp":1607098375,"output":"andler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:55.420 [info] ppl_id: 6e50b27d-02e8-458"},{"event":"cmd_output","timestamp":1607098375,"output":"6-9fe9-e5808f9958bc, type: PplBlocks, block_index: 1, state: initializing, event: created, recovery_"},{"event":"cmd_output","timestamp":1607098375,"output":"count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098375,"output":"6:12:55.425 [info] ppl_id: 6e50b27d-02e8-4586-9fe9-e5808f9958bc, type: PplSubInits, state: done, re"},{"event":"cmd_output","timestamp":1607098375,"output":"sult: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_ch"},{"event":"cmd_output","timestamp":1607098375,"output":"ange/1(L90), \n\u001b[0m\u001b[22m\n16:12:55.436 [info] ppl_id: 6e50b27d-02e8-4586-9fe9-e5808f9958bc, type: P"},{"event":"cmd_output","timestamp":1607098375,"output":"pls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_s"},{"event":"cmd_output","timestamp":1607098375,"output":"tate_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:55.440 [info] ppl_id: 3a488595-1ad0-4b5c-a041-f2fe745a96e6, "},{"event":"cmd_output","timestamp":1607098375,"output":"type: PplRequests, event: persisted source_args for pipeline: 3a488595-1ad0-4b5c-a041-f2fe745a96e6, "},{"event":"cmd_output","timestamp":1607098375,"output":"origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:55."},{"event":"cmd_output","timestamp":1607098375,"output":"441 [info] ppl_id: 319c4c7a-babb-467d-a24f-773e3e42805a, type: PplSubInits, state: regular_init, ev"},{"event":"cmd_output","timestamp":1607098375,"output":"ent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b"},{"event":"cmd_output","timestamp":1607098375,"output":"[0m\u001b[22m\n16:12:55.442 [info] ppl_id: 3a488595-1ad0-4b5c-a041-f2fe745a96e6, type: PplSubInits, stat"},{"event":"cmd_output","timestamp":1607098375,"output":"e: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_cha"},{"event":"cmd_output","timestamp":1607098375,"output":"nge/1(L90), \n\u001b[0m\u001b[22m\n16:12:55.445 [info] ppl_id: 6e50b27d-02e8-4586-9fe9-e5808f9958bc, type: Pp"},{"event":"cmd_output","timestamp":1607098375,"output":"lBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098375,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:55.451 [info] ppl_id: 6e50b27d-02e8-4586"},{"event":"cmd_output","timestamp":1607098375,"output":"-9fe9-e5808f9958bc, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: E"},{"event":"cmd_output","timestamp":1607098375,"output":"lixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:55.463 [info] ppl_id: 6e50b27d-02"},{"event":"cmd_output","timestamp":1607098375,"output":"e8-4586-9fe9-e5808f9958bc, type: PplBlocks, block_index: 1, state: waiting, event: exit_scheduling, "},{"event":"cmd_output","timestamp":1607098375,"output":"recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:55.470"},{"event":"cmd_output","timestamp":1607098375,"output":" [info] ppl_id: 6e50b27d-02e8-4586-9fe9-e5808f9958bc, type: Ppls, state: running, event: exit_sched"},{"event":"cmd_output","timestamp":1607098375,"output":"uling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12"},{"event":"cmd_output","timestamp":1607098375,"output":":55.480 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"6e50b27d-02e8-4586-"},{"event":"cmd_output","timestamp":1607098375,"output":"9fe9-e5808f9958bc\"\n\u001b[0m\u001b[22m\n16:12:55.494 [info] block_id: aae783fd-05b0-475b-a942-9dc99c98f4a5, "},{"event":"cmd_output","timestamp":1607098375,"output":"type: BlockRequests, event: persisted block run request from ppl 6e50b27d-02e8-4586-9fe9-e5808f9958b"},{"event":"cmd_output","timestamp":1607098375,"output":"c for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35)"},{"event":"cmd_output","timestamp":1607098375,"output":", \n\u001b[0m\u001b[22m\n16:12:55.496 [info] ppl_id: 3a488595-1ad0-4b5c-a041-f2fe745a96e6, type: PplSubInits,"},{"event":"cmd_output","timestamp":1607098375,"output":" state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_"},{"event":"cmd_output","timestamp":1607098375,"output":"state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:55.497 [info] block_id: aae783fd-05b0-475b-a942-9dc99c98f4a"},{"event":"cmd_output","timestamp":1607098375,"output":"5, type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.B"},{"event":"cmd_output","timestamp":1607098375,"output":"locks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:55.502 [info] Block 0 of pipeline with "},{"event":"cmd_output","timestamp":1607098375,"output":"id: 6e50b27d-02e8-4586-9fe9-e5808f9958bc scheduled in block service with id: : \"aae783fd-05b0-475b-a"},{"event":"cmd_output","timestamp":1607098375,"output":"942-9dc99c98f4a5\"\n\u001b[0m\u001b[22m\n16:12:55.508 [info] block_id: aae783fd-05b0-475b-a942-9dc99c98f4a5, t"},{"event":"cmd_output","timestamp":1607098375,"output":"ype: BlockRequests, event: persisted build and sub_ppl details for block_request: aae783fd-05b0-475b"},{"event":"cmd_output","timestamp":1607098375,"output":"-a942-9dc99c98f4a5, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41"},{"event":"cmd_output","timestamp":1607098375,"output":"), \n\u001b[0m\u001b[22m\n16:12:55.508 [info] ppl_id: 6e50b27d-02e8-4586-9fe9-e5808f9958bc, type: PplBlocks, "},{"event":"cmd_output","timestamp":1607098375,"output":"block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM"},{"event":"cmd_output","timestamp":1607098375,"output":".Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:55.511 [info] block_id: aae783fd-05b0-475b-a942-9"},{"event":"cmd_output","timestamp":1607098375,"output":"dc99c98f4a5, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Bl"},{"event":"cmd_output","timestamp":1607098375,"output":"ocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:55.514 [info] block_id: aae78"},{"event":"cmd_output","timestamp":1607098375,"output":"3fd-05b0-475b-a942-9dc99c98f4a5, type: Blocks, state: running, event: exit_scheduling, recovery_coun"},{"event":"cmd_output","timestamp":1607098375,"output":"t: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:55.532 [info] bloc"},{"event":"cmd_output","timestamp":1607098375,"output":"k_id: aae783fd-05b0-475b-a942-9dc99c98f4a5, type: Tasks, state: running, event: exit_scheduling, rec"},{"event":"cmd_output","timestamp":1607098375,"output":"overy_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:55.592 [i"},{"event":"cmd_output","timestamp":1607098375,"output":"nfo] block_id: aae783fd-05b0-475b-a942-9dc99c98f4a5, type: Tasks, state: done, event: exit_scheduli"},{"event":"cmd_output","timestamp":1607098375,"output":"ng, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:55"},{"event":"cmd_output","timestamp":1607098375,"output":".595 [info] block_id: aae783fd-05b0-475b-a942-9dc99c98f4a5, type: Blocks, state: done, event: exit_"},{"event":"cmd_output","timestamp":1607098375,"output":"scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098375,"output":"16:12:55.606 [info] ppl_id: 6e50b27d-02e8-4586-9fe9-e5808f9958bc, block_id: aae783fd-05b0-475b-a942"},{"event":"cmd_output","timestamp":1607098375,"output":"-9dc99c98f4a5, type: PplBlocks, block_index: 0, state: done, result: failed, event: exit_scheduling,"},{"event":"cmd_output","timestamp":1607098375,"output":" recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:55.61"},{"event":"cmd_output","timestamp":1607098375,"output":"4 [info] PplBlocks WaitingState STM is scheduling block 1 from pipeline: \"6e50b27d-02e8-4586-9fe9-e"},{"event":"cmd_output","timestamp":1607098375,"output":"5808f9958bc\"\n\u001b[0m\u001b[22m\n16:12:55.618 [info] ppl_id: 6e50b27d-02e8-4586-9fe9-e5808f9958bc, type: Pp"},{"event":"cmd_output","timestamp":1607098375,"output":"lBlocks, block_index: 1, state: done, result: canceled, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098375,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:55.630 [info] ppl_id: 6e5"},{"event":"cmd_output","timestamp":1607098375,"output":"0b27d-02e8-4586-9fe9-e5808f9958bc, type: Ppls, state: done, result: failed, event: exit_scheduling, "},{"event":"cmd_output","timestamp":1607098377,"output":"recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[33m\n16:12:57.853"},{"event":"cmd_output","timestamp":1607098377,"output":" [warn] Elixir.Wormhole{#PID<0.10561.1>}:: callback: {GoferClient.GrpcClient, :create_, [%InternalA"},{"event":"cmd_output","timestamp":1607098377,"output":"pi.Gofer.CreateRequest{branch_name: \"master\", commit_range: \"1234...4567\", commit_sha: \"75891a4469\","},{"event":"cmd_output","timestamp":1607098377,"output":" git_ref_type: 0, label: \"master\", pipeline_id: \"319c4c7a-babb-467d-a24f-773e3e42805a\", pr_base: \"\","},{"event":"cmd_output","timestamp":1607098377,"output":" pr_sha: \"\", prev_ppl_artefact_ids: [\"319c4c7a-babb-467d-a24f-773e3e42805a\"], project_id: \"to_list\","},{"event":"cmd_output","timestamp":1607098377,"output":" targets: [%InternalApi.Gofer.Target{auto_promote_when: \"\", auto_trigger_on: [], name: \"Extension pp"},{"event":"cmd_output","timestamp":1607098377,"output":"l\", parameter_env_vars: [], pipeline_path: \"/foo/bar/test.yml\"}], working_dir: \".semaphore\", yml_fil"},{"event":"cmd_output","timestamp":1607098377,"output":"e_name: \"semaphore.yml\"}]}; reason: {:timeout, 2345}\n\u001b[0m\u001b[31m\n16:12:57.854 [error] ppl_id: not_av"},{"event":"cmd_output","timestamp":1607098377,"output":"ailable, event: exit_scheduling, context: {:error, :user_exit_function, {:error, {:timeout, 2345}}, "},{"event":"cmd_output","timestamp":1607098377,"output":"%{item: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_in"},{"event":"cmd_output","timestamp":1607098377,"output":"its\">, compile_task_id: nil, error_description: \"\", id: 260, in_scheduling: true, init_type: \"regula"},{"event":"cmd_output","timestamp":1607098377,"output":"r\", inserted_at: ~N[2020-12-04 16:12:55.382343], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"319c4c7a-babb-467d-a24f-773e3e42805a\", recovery_"},{"event":"cmd_output","timestamp":1607098377,"output":"count: 0, result: nil, result_reason: nil, state: \"regular_init\", terminate_request: nil, terminate_"},{"event":"cmd_output","timestamp":1607098377,"output":"request_desc: nil, updated_at: ~N[2020-12-04 16:12:55.444659]}}}, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098377,"output":"_state_change/1(L96), \n\u001b[0m\u001b[31m\n16:12:57.854 [error] STM Elixir.Ppl.PplSubInits.STMHandler.Regula"},{"event":"cmd_output","timestamp":1607098377,"output":"rInitState FAILED: {:error, :user_exit_function, {:error, {:timeout, 2345}}, %{item: %Ppl.PplSubInit"},{"event":"cmd_output","timestamp":1607098377,"output":"s.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id:"},{"event":"cmd_output","timestamp":1607098377,"output":" nil, error_description: \"\", id: 260, in_scheduling: true, init_type: \"regular\", inserted_at: ~N[202"},{"event":"cmd_output","timestamp":1607098377,"output":"0-12-04 16:12:55.382343], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"319c4c7a-babb-467d-a24f-773e3e42805a\", recovery_count: 0, result: nil, "},{"event":"cmd_output","timestamp":1607098377,"output":"result_reason: nil, state: \"regular_init\", terminate_request: nil, terminate_request_desc: nil, upda"},{"event":"cmd_output","timestamp":1607098377,"output":"ted_at: ~N[2020-12-04 16:12:55.444659]}}}\n\u001b[0m\u001b[22m\n16:12:57.878 [info] ppl_id: 3a488595-1ad0-4b5"},{"event":"cmd_output","timestamp":1607098377,"output":"c-a041-f2fe745a96e6, type: PplRequests, event: persisted definition for request with request_token: "},{"event":"cmd_output","timestamp":1607098377,"output":"cd1b290b-087f-4577-b9fa-28729362bc8e, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert"},{"event":"cmd_output","timestamp":1607098377,"output":"_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:57.885 [info] ppl_id: not_available, event: created, origin:"},{"event":"cmd_output","timestamp":1607098377,"output":" Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:57.885 [info"},{"event":"cmd_output","timestamp":1607098377,"output":"] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098377,"output":"m\u001b[22m\n16:12:57.886 [info] ppl_id: 3a488595-1ad0-4b5c-a041-f2fe745a96e6, type: PplBlocks, block_in"},{"event":"cmd_output","timestamp":1607098377,"output":"dex: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHa"},{"event":"cmd_output","timestamp":1607098377,"output":"ndler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:57.886 [info] ppl_id: 3a488595-1ad0-4b5c"},{"event":"cmd_output","timestamp":1607098377,"output":"-a041-f2fe745a96e6, type: PplBlocks, block_index: 1, state: initializing, event: created, recovery_c"},{"event":"cmd_output","timestamp":1607098377,"output":"ount: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098377,"output":":12:57.889 [info] ppl_id: 3a488595-1ad0-4b5c-a041-f2fe745a96e6, type: PplSubInits, state: done, res"},{"event":"cmd_output","timestamp":1607098377,"output":"ult: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_cha"},{"event":"cmd_output","timestamp":1607098377,"output":"nge/1(L90), \n\u001b[0m\u001b[22m\n16:12:57.898 [info] ppl_id: 3a488595-1ad0-4b5c-a041-f2fe745a96e6, type: Pp"},{"event":"cmd_output","timestamp":1607098377,"output":"lBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098377,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:57.899 [info] ppl_id: 3a488595-1ad0-4b5c"},{"event":"cmd_output","timestamp":1607098377,"output":"-a041-f2fe745a96e6, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: E"},{"event":"cmd_output","timestamp":1607098377,"output":"lixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:57.907 [info] ppl_id: 3a488595-1a"},{"event":"cmd_output","timestamp":1607098377,"output":"d0-4b5c-a041-f2fe745a96e6, type: PplBlocks, block_index: 1, state: waiting, event: exit_scheduling, "},{"event":"cmd_output","timestamp":1607098377,"output":"recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:57.912"},{"event":"cmd_output","timestamp":1607098377,"output":" [info] ppl_id: 3a488595-1ad0-4b5c-a041-f2fe745a96e6, type: Ppls, state: queuing, event: exit_sched"},{"event":"cmd_output","timestamp":1607098377,"output":"uling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12"},{"event":"cmd_output","timestamp":1607098377,"output":":57.925 [info] ppl_id: 3a488595-1ad0-4b5c-a041-f2fe745a96e6, type: Ppls, state: running, event: exi"},{"event":"cmd_output","timestamp":1607098377,"output":"t_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098377,"output":"\n16:12:57.932 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"3a488595-1ad"},{"event":"cmd_output","timestamp":1607098377,"output":"0-4b5c-a041-f2fe745a96e6\"\n\u001b[0m\u001b[22m\n16:12:57.941 [info] block_id: f6875856-36af-4e67-9b30-a23f726"},{"event":"cmd_output","timestamp":1607098377,"output":"e2cf1, type: BlockRequests, event: persisted block run request from ppl 3a488595-1ad0-4b5c-a041-f2fe"},{"event":"cmd_output","timestamp":1607098377,"output":"745a96e6 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response"},{"event":"cmd_output","timestamp":1607098377,"output":"/4(L35), \n\u001b[0m\u001b[22m\n16:12:57.943 [info] block_id: f6875856-36af-4e67-9b30-a23f726e2cf1, type: Blo"},{"event":"cmd_output","timestamp":1607098377,"output":"cks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model."},{"event":"cmd_output","timestamp":1607098377,"output":"BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:57.944 [info] Block 0 of pipeline with id: 3a488595"},{"event":"cmd_output","timestamp":1607098377,"output":"-1ad0-4b5c-a041-f2fe745a96e6 scheduled in block service with id: : \"f6875856-36af-4e67-9b30-a23f726e"},{"event":"cmd_output","timestamp":1607098377,"output":"2cf1\"\n\u001b[0m\u001b[22m\n16:12:57.947 [info] ppl_id: 3a488595-1ad0-4b5c-a041-f2fe745a96e6, type: PplBlocks"},{"event":"cmd_output","timestamp":1607098377,"output":", block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.S"},{"event":"cmd_output","timestamp":1607098377,"output":"TM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:57.951 [info] block_id: f6875856-36af-4e67-9b30"},{"event":"cmd_output","timestamp":1607098377,"output":"-a23f726e2cf1, type: BlockRequests, event: persisted build and sub_ppl details for block_request: f6"},{"event":"cmd_output","timestamp":1607098377,"output":"875856-36af-4e67-9b30-a23f726e2cf1, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.in"},{"event":"cmd_output","timestamp":1607098377,"output":"sert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:57.953 [info] block_id: f6875856-36af-4e67-9b30-a23f726e2cf1,"},{"event":"cmd_output","timestamp":1607098377,"output":" type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHand"},{"event":"cmd_output","timestamp":1607098377,"output":"ler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:57.957 [info] block_id: f6875856-36af-4e6"},{"event":"cmd_output","timestamp":1607098377,"output":"7-9b30-a23f726e2cf1, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098377,"output":": Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:57.971 [info] block_id: f68758"},{"event":"cmd_output","timestamp":1607098377,"output":"56-36af-4e67-9b30-a23f726e2cf1, type: Tasks, state: running, event: exit_scheduling, recovery_count:"},{"event":"cmd_output","timestamp":1607098378,"output":" 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:58.037 [info] block_"},{"event":"cmd_output","timestamp":1607098378,"output":"id: f6875856-36af-4e67-9b30-a23f726e2cf1, type: Tasks, state: done, event: exit_scheduling, recovery"},{"event":"cmd_output","timestamp":1607098378,"output":"_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:58.042 [info] "},{"event":"cmd_output","timestamp":1607098378,"output":" block_id: f6875856-36af-4e67-9b30-a23f726e2cf1, type: Blocks, state: done, event: exit_scheduling, "},{"event":"cmd_output","timestamp":1607098378,"output":"recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:58.048"},{"event":"cmd_output","timestamp":1607098378,"output":" [info] ppl_id: 3a488595-1ad0-4b5c-a041-f2fe745a96e6, block_id: f6875856-36af-4e67-9b30-a23f726e2cf"},{"event":"cmd_output","timestamp":1607098378,"output":"1, type: PplBlocks, block_index: 0, state: done, result: failed, event: exit_scheduling, recovery_co"},{"event":"cmd_output","timestamp":1607098378,"output":"unt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:58.055 [info] Pp"},{"event":"cmd_output","timestamp":1607098378,"output":"lBlocks WaitingState STM is scheduling block 1 from pipeline: \"3a488595-1ad0-4b5c-a041-f2fe745a96e6\""},{"event":"cmd_output","timestamp":1607098378,"output":"\n\u001b[0m\u001b[22m\n16:12:58.059 [info] ppl_id: 3a488595-1ad0-4b5c-a041-f2fe745a96e6, type: PplBlocks, blo"},{"event":"cmd_output","timestamp":1607098378,"output":"ck_index: 1, state: done, result: canceled, event: exit_scheduling, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098378,"output":"r.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:58.068 [info] ppl_id: 3a488595-1ad0-4"},{"event":"cmd_output","timestamp":1607098378,"output":"b5c-a041-f2fe745a96e6, type: Ppls, state: done, result: failed, event: exit_scheduling, recovery_cou"},{"event":"cmd_output","timestamp":1607098378,"output":"nt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:58.168 [info] Req"},{"event":"cmd_output","timestamp":1607098378,"output":"uest: 'partial_rebuild', request: %{ppl_id: \"3a488595-1ad0-4b5c-a041-f2fe745a96e6\", request_token: \""},{"event":"cmd_output","timestamp":1607098378,"output":"c94c7451-9141-4732-ac73-ef87df2ec708\", user_id: \"\"}\n\u001b[0m\u001b[22m\n16:12:58.172 [info] ppl_id: 827559d"},{"event":"cmd_output","timestamp":1607098378,"output":"5-42c8-46c3-9c7a-dcd824e65c35, type: PplRequests, event: persisted schedule request with request_tok"},{"event":"cmd_output","timestamp":1607098378,"output":"en: c94c7451-9141-4732-ac73-ef87df2ec708, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.pr"},{"event":"cmd_output","timestamp":1607098378,"output":"ocess_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:58.174 [info] ppl_id: 827559d5-42c8-46c3-9c7a-dcd824e65c3"},{"event":"cmd_output","timestamp":1607098378,"output":"5, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls."},{"event":"cmd_output","timestamp":1607098378,"output":"Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:58.176 [info] Persisted ppl_sub_init"},{"event":"cmd_output","timestamp":1607098378,"output":" for pipeline with ppl_id: 827559d5-42c8-46c3-9c7a-dcd824e65c35: %Ppl.PplSubInits.Model.PplSubInits{"},{"event":"cmd_output","timestamp":1607098378,"output":"__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_descript"},{"event":"cmd_output","timestamp":1607098378,"output":"ion: nil, id: 262, in_scheduling: false, init_type: \"rebuild\", inserted_at: ~N[2020-12-04 16:12:58.1"},{"event":"cmd_output","timestamp":1607098378,"output":"76253], pipeline_requests: #Ecto.Association.NotLoaded"},{"event":"cmd_output","timestamp":1607098378,"output":", ppl_id: \"827559d5-42c8-46c3-9c7a-dcd824e65c35\", recovery_count: 0, result: nil, result_reason: nil"},{"event":"cmd_output","timestamp":1607098378,"output":", state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 1"},{"event":"cmd_output","timestamp":1607098378,"output":"6:12:58.176260]}\n\u001b[0m\u001b[22m\n16:12:58.188 [info] ppl_id: 827559d5-42c8-46c3-9c7a-dcd824e65c35, type"},{"event":"cmd_output","timestamp":1607098378,"output":": PplRequests, event: persisted source_args for pipeline: 827559d5-42c8-46c3-9c7a-dcd824e65c35, orig"},{"event":"cmd_output","timestamp":1607098378,"output":"in: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:58.191 "},{"event":"cmd_output","timestamp":1607098378,"output":"[info] ppl_id: 827559d5-42c8-46c3-9c7a-dcd824e65c35, type: PplSubInits, state: fetching, event: exi"},{"event":"cmd_output","timestamp":1607098378,"output":"t_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m"},{"event":"cmd_output","timestamp":1607098378,"output":"\r * test gRPC list() - filter by wf_id (5769.5ms)\u001b[0m\n * test server availability by calling vers"},{"event":"cmd_output","timestamp":1607098378,"output":"ion() rpc\r * test server availability by calling version() rpc (skipped)\n * test gRPC list() - fi"},{"event":"cmd_output","timestamp":1607098378,"output":"lter by git_ref_types\u001b[22m\n16:12:58.263 [info] ppl_id: 713dc97e-4c1b-4188-af7c-fe4619ef2e3a, type:"},{"event":"cmd_output","timestamp":1607098378,"output":" PplRequests, event: persisted schedule request with request_token: 1e83398b-9785-4a07-b009-f9086fe6"},{"event":"cmd_output","timestamp":1607098378,"output":"e3a3, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098378,"output":"16:12:58.266 [info] ppl_id: 713dc97e-4c1b-4188-af7c-fe4619ef2e3a, type: PplRequests, event: persist"},{"event":"cmd_output","timestamp":1607098378,"output":"ed definition for request with request_token: 1e83398b-9785-4a07-b009-f9086fe6e3a3, origin: Elixir.P"},{"event":"cmd_output","timestamp":1607098378,"output":"pl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:58.273 [info] "},{"event":"cmd_output","timestamp":1607098378,"output":"ppl_id: 713dc97e-4c1b-4188-af7c-fe4619ef2e3a, type: Ppls, state: initializing, event: initializing, "},{"event":"cmd_output","timestamp":1607098378,"output":"recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098378,"output":"16:12:58.279 [info] Persisted ppl_sub_init for pipeline with ppl_id: 713dc97e-4c1b-4188-af7c-fe4619"},{"event":"cmd_output","timestamp":1607098378,"output":"ef2e3a: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_in"},{"event":"cmd_output","timestamp":1607098378,"output":"its\">, compile_task_id: nil, error_description: nil, id: 263, in_scheduling: false, init_type: \"regu"},{"event":"cmd_output","timestamp":1607098378,"output":"lar\", inserted_at: ~N[2020-12-04 16:12:58.276747], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"713dc97e-4c1b-4188-af7c-fe4619ef2e3a\", recover"},{"event":"cmd_output","timestamp":1607098378,"output":"y_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_req"},{"event":"cmd_output","timestamp":1607098378,"output":"uest_desc: nil, updated_at: ~N[2020-12-04 16:12:58.276757]}\n\u001b[0m\u001b[22m\n16:12:58.290 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098378,"output":" 9c00d608-73c6-4792-b0db-c1f141783612, type: PplRequests, event: persisted schedule request with req"},{"event":"cmd_output","timestamp":1607098378,"output":"uest_token: af66fce9-06ae-4f22-87a9-af12aef44388, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQu"},{"event":"cmd_output","timestamp":1607098378,"output":"eries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:58.293 [info] ppl_id: 9c00d608-73c6-4792-b0db-c1f"},{"event":"cmd_output","timestamp":1607098378,"output":"141783612, type: PplRequests, event: persisted definition for request with request_token: af66fce9-0"},{"event":"cmd_output","timestamp":1607098378,"output":"6ae-4f22-87a9-af12aef44388, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definitio"},{"event":"cmd_output","timestamp":1607098378,"output":"n/3(L76), \n\u001b[0m\u001b[22m\n16:12:58.296 [info] ppl_id: 9c00d608-73c6-4792-b0db-c1f141783612, type: Ppls"},{"event":"cmd_output","timestamp":1607098378,"output":", state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQue"},{"event":"cmd_output","timestamp":1607098378,"output":"ries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:58.300 [info] Persisted ppl_sub_init for pipeline"},{"event":"cmd_output","timestamp":1607098378,"output":" with ppl_id: 9c00d608-73c6-4792-b0db-c1f141783612: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ec"},{"event":"cmd_output","timestamp":1607098378,"output":"to.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id:"},{"event":"cmd_output","timestamp":1607098378,"output":" 264, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:58.298749], pipel"},{"event":"cmd_output","timestamp":1607098378,"output":"ine_requests: #Ecto.Association.NotLoaded, ppl_id: \"9c"},{"event":"cmd_output","timestamp":1607098378,"output":"00d608-73c6-4792-b0db-c1f141783612\", recovery_count: 0, result: nil, result_reason: nil, state: \"cre"},{"event":"cmd_output","timestamp":1607098378,"output":"ated\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:58.29875"},{"event":"cmd_output","timestamp":1607098378,"output":"9]}\n\u001b[0m\u001b[22m\n16:12:58.304 [info] ppl_id: 6f92290f-6b00-481c-8985-99576646deeb, type: PplRequests"},{"event":"cmd_output","timestamp":1607098378,"output":", event: persisted schedule request with request_token: 62010d91-1ed3-4bf4-9cd7-09c37ea52cdd, origin"},{"event":"cmd_output","timestamp":1607098378,"output":": Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:58.311"},{"event":"cmd_output","timestamp":1607098378,"output":" [info] ppl_id: 6f92290f-6b00-481c-8985-99576646deeb, type: PplRequests, event: persisted definitio"},{"event":"cmd_output","timestamp":1607098378,"output":"n for request with request_token: 62010d91-1ed3-4bf4-9cd7-09c37ea52cdd, origin: Elixir.Ppl.PplReques"},{"event":"cmd_output","timestamp":1607098378,"output":"ts.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:58.316 [info] ppl_id: 6f92"},{"event":"cmd_output","timestamp":1607098378,"output":"290f-6b00-481c-8985-99576646deeb, type: Ppls, state: initializing, event: initializing, recovery_cou"},{"event":"cmd_output","timestamp":1607098378,"output":"nt: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:58.320"},{"event":"cmd_output","timestamp":1607098378,"output":" [info] Persisted ppl_sub_init for pipeline with ppl_id: 6f92290f-6b00-481c-8985-99576646deeb: %Ppl"},{"event":"cmd_output","timestamp":1607098378,"output":".PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compi"},{"event":"cmd_output","timestamp":1607098378,"output":"le_task_id: nil, error_description: nil, id: 265, in_scheduling: false, init_type: \"regular\", insert"},{"event":"cmd_output","timestamp":1607098378,"output":"ed_at: ~N[2020-12-04 16:12:58.319071], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"6f92290f-6b00-481c-8985-99576646deeb\", recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098378,"output":"result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: n"},{"event":"cmd_output","timestamp":1607098378,"output":"il, updated_at: ~N[2020-12-04 16:12:58.319095]}\n\u001b[0m\u001b[22m\n16:12:58.324 [info] ppl_id: 636d6d71-ad"},{"event":"cmd_output","timestamp":1607098378,"output":"1c-4076-945b-f7cc3f04e68e, type: PplRequests, event: persisted schedule request with request_token: "},{"event":"cmd_output","timestamp":1607098378,"output":"d4b1b2b8-c967-4469-9774-63887a06b452, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.proces"},{"event":"cmd_output","timestamp":1607098378,"output":"s_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:58.326 [info] ppl_id: 636d6d71-ad1c-4076-945b-f7cc3f04e68e, t"},{"event":"cmd_output","timestamp":1607098378,"output":"ype: PplRequests, event: persisted definition for request with request_token: d4b1b2b8-c967-4469-977"},{"event":"cmd_output","timestamp":1607098378,"output":"4-63887a06b452, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n"},{"event":"cmd_output","timestamp":1607098378,"output":"\u001b[0m\u001b[22m\n16:12:58.328 [info] ppl_id: 636d6d71-ad1c-4076-945b-f7cc3f04e68e, type: Ppls, state: ini"},{"event":"cmd_output","timestamp":1607098378,"output":"tializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process"},{"event":"cmd_output","timestamp":1607098378,"output":"_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:58.332 [info] Persisted ppl_sub_init for pipeline with ppl_id"},{"event":"cmd_output","timestamp":1607098378,"output":": 636d6d71-ad1c-4076-945b-f7cc3f04e68e: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Me"},{"event":"cmd_output","timestamp":1607098378,"output":"tadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 266, in_sch"},{"event":"cmd_output","timestamp":1607098378,"output":"eduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:58.331104], pipeline_requests"},{"event":"cmd_output","timestamp":1607098378,"output":": #Ecto.Association.NotLoaded, ppl_id: \"636d6d71-ad1c-"},{"event":"cmd_output","timestamp":1607098378,"output":"4076-945b-f7cc3f04e68e\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", termi"},{"event":"cmd_output","timestamp":1607098378,"output":"nate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:58.331113]}\n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098378,"output":"2m\n16:12:58.337 [info] ppl_id: 3e224b77-e410-4b93-a451-b554c58481de, type: PplRequests, event: per"},{"event":"cmd_output","timestamp":1607098378,"output":"sisted schedule request with request_token: cc819735-a58a-462e-9023-59b1d898e86a, origin: Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098378,"output":".PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:58.339 [info] ppl"},{"event":"cmd_output","timestamp":1607098378,"output":"_id: 3e224b77-e410-4b93-a451-b554c58481de, type: PplRequests, event: persisted definition for reques"},{"event":"cmd_output","timestamp":1607098378,"output":"t with request_token: cc819735-a58a-462e-9023-59b1d898e86a, origin: Elixir.Ppl.PplRequests.Model.Ppl"},{"event":"cmd_output","timestamp":1607098378,"output":"RequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:58.341 [info] ppl_id: 3e224b77-e410-4b"},{"event":"cmd_output","timestamp":1607098378,"output":"93-a451-b554c58481de, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098378,"output":"n: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:58.344 [info] Per"},{"event":"cmd_output","timestamp":1607098378,"output":"sisted ppl_sub_init for pipeline with ppl_id: 3e224b77-e410-4b93-a451-b554c58481de: %Ppl.PplSubInits"},{"event":"cmd_output","timestamp":1607098378,"output":".Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: "},{"event":"cmd_output","timestamp":1607098378,"output":"nil, error_description: nil, id: 267, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[20"},{"event":"cmd_output","timestamp":1607098378,"output":"20-12-04 16:12:58.343221], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"3e224b77-e410-4b93-a451-b554c58481de\", recovery_count: 0, result: nil,"},{"event":"cmd_output","timestamp":1607098378,"output":" result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_"},{"event":"cmd_output","timestamp":1607098378,"output":"at: ~N[2020-12-04 16:12:58.343230]}\n\u001b[0m\u001b[22m\n16:12:58.348 [info] ppl_id: 555bd247-95fe-492b-b551"},{"event":"cmd_output","timestamp":1607098378,"output":"-b50107450870, type: PplRequests, event: persisted schedule request with request_token: 3ae82679-927"},{"event":"cmd_output","timestamp":1607098378,"output":"c-4821-94b6-eea1c5847781, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2"},{"event":"cmd_output","timestamp":1607098378,"output":"(L55), \n\u001b[0m\u001b[22m\n16:12:58.349 [info] ppl_id: 555bd247-95fe-492b-b551-b50107450870, type: PplRequ"},{"event":"cmd_output","timestamp":1607098378,"output":"ests, event: persisted definition for request with request_token: 3ae82679-927c-4821-94b6-eea1c58477"},{"event":"cmd_output","timestamp":1607098378,"output":"81, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098378,"output":"6:12:58.352 [info] ppl_id: 555bd247-95fe-492b-b551-b50107450870, type: Ppls, state: initializing, e"},{"event":"cmd_output","timestamp":1607098378,"output":"vent: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2("},{"event":"cmd_output","timestamp":1607098378,"output":"L124), \n\u001b[0m\u001b[22m\n16:12:58.356 [info] Persisted ppl_sub_init for pipeline with ppl_id: 555bd247-9"},{"event":"cmd_output","timestamp":1607098378,"output":"5fe-492b-b551-b50107450870: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:load"},{"event":"cmd_output","timestamp":1607098378,"output":"ed, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 268, in_scheduling: fal"},{"event":"cmd_output","timestamp":1607098378,"output":"se, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:58.355006], pipeline_requests: #Ecto.Asso"},{"event":"cmd_output","timestamp":1607098378,"output":"ciation.NotLoaded, ppl_id: \"555bd247-95fe-492b-b551-b5"},{"event":"cmd_output","timestamp":1607098378,"output":"0107450870\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request"},{"event":"cmd_output","timestamp":1607098378,"output":": nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:58.355033]}\n\u001b[0m\u001b[22m\n16:12:58"},{"event":"cmd_output","timestamp":1607098378,"output":".365 [info] ppl_id: 15fb7d2d-e690-416c-8267-ef183a6d8803, type: PplRequests, event: persisted sched"},{"event":"cmd_output","timestamp":1607098378,"output":"ule request with request_token: bee86769-f9c6-4029-b077-2e190493acd4, origin: Elixir.Ppl.PplRequests"},{"event":"cmd_output","timestamp":1607098378,"output":".Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:58.366 [info] ppl_id: 15fb7d2"},{"event":"cmd_output","timestamp":1607098378,"output":"d-e690-416c-8267-ef183a6d8803, type: PplRequests, event: persisted definition for request with reque"},{"event":"cmd_output","timestamp":1607098378,"output":"st_token: bee86769-f9c6-4029-b077-2e190493acd4, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQuer"},{"event":"cmd_output","timestamp":1607098378,"output":"ies.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:58.368 [info] ppl_id: 15fb7d2d-e690-416c-8267-ef18"},{"event":"cmd_output","timestamp":1607098378,"output":"3a6d8803, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Pp"},{"event":"cmd_output","timestamp":1607098378,"output":"l.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:58.371 [info] Persisted ppl_s"},{"event":"cmd_output","timestamp":1607098378,"output":"ub_init for pipeline with ppl_id: 15fb7d2d-e690-416c-8267-ef183a6d8803: %Ppl.PplSubInits.Model.PplSu"},{"event":"cmd_output","timestamp":1607098378,"output":"bInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_d"},{"event":"cmd_output","timestamp":1607098378,"output":"escription: nil, id: 269, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:"},{"event":"cmd_output","timestamp":1607098378,"output":"12:58.370987], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"15fb7d2d-e690-416c-8267-ef183a6d8803\", recovery_count: 0, result: nil, result_reas"},{"event":"cmd_output","timestamp":1607098378,"output":"on: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-"},{"event":"cmd_output","timestamp":1607098378,"output":"12-04 16:12:58.370998]}\n\u001b[0m\u001b[22m\n16:12:58.375 [info] ppl_id: 66cf8618-cc15-446d-a325-02c829a414e"},{"event":"cmd_output","timestamp":1607098378,"output":"f, type: PplRequests, event: persisted schedule request with request_token: 914f5a13-5d45-4602-9eff-"},{"event":"cmd_output","timestamp":1607098378,"output":"b4e2f8f4c45d, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098378,"output":"m\u001b[22m\n16:12:58.381 [info] ppl_id: 66cf8618-cc15-446d-a325-02c829a414ef, type: PplRequests, event:"},{"event":"cmd_output","timestamp":1607098378,"output":" persisted definition for request with request_token: 914f5a13-5d45-4602-9eff-b4e2f8f4c45d, origin: "},{"event":"cmd_output","timestamp":1607098378,"output":"Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:58.383 "},{"event":"cmd_output","timestamp":1607098378,"output":"[info] ppl_id: 66cf8618-cc15-446d-a325-02c829a414ef, type: Ppls, state: initializing, event: initia"},{"event":"cmd_output","timestamp":1607098378,"output":"lizing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098378,"output":"m\u001b[22m\n16:12:58.385 [info] Persisted ppl_sub_init for pipeline with ppl_id: 66cf8618-cc15-446d-a32"},{"event":"cmd_output","timestamp":1607098378,"output":"5-02c829a414ef: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipelin"},{"event":"cmd_output","timestamp":1607098378,"output":"e_sub_inits\">, compile_task_id: nil, error_description: nil, id: 270, in_scheduling: false, init_typ"},{"event":"cmd_output","timestamp":1607098378,"output":"e: \"regular\", inserted_at: ~N[2020-12-04 16:12:58.384861], pipeline_requests: #Ecto.Association.NotL"},{"event":"cmd_output","timestamp":1607098378,"output":"oaded, ppl_id: \"66cf8618-cc15-446d-a325-02c829a414ef\","},{"event":"cmd_output","timestamp":1607098378,"output":" recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, termi"},{"event":"cmd_output","timestamp":1607098378,"output":"nate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:58.384869]}\n\u001b[0m\u001b[22m\n16:12:58.388 [info] "},{"event":"cmd_output","timestamp":1607098378,"output":" ppl_id: 692f2434-5586-43b9-88b5-535c2c1e62c1, type: PplRequests, event: persisted schedule request "},{"event":"cmd_output","timestamp":1607098378,"output":"with request_token: eeb09212-7a93-4d7e-bd33-161e29fc0caa, origin: Elixir.Ppl.PplRequests.Model.PplRe"},{"event":"cmd_output","timestamp":1607098378,"output":"questsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:58.389 [info] ppl_id: 692f2434-5586-43b9-"},{"event":"cmd_output","timestamp":1607098378,"output":"88b5-535c2c1e62c1, type: PplRequests, event: persisted definition for request with request_token: ee"},{"event":"cmd_output","timestamp":1607098378,"output":"b09212-7a93-4d7e-bd33-161e29fc0caa, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_d"},{"event":"cmd_output","timestamp":1607098378,"output":"efinition/3(L76), \n\u001b[0m\u001b[22m\n16:12:58.391 [info] ppl_id: 692f2434-5586-43b9-88b5-535c2c1e62c1, ty"},{"event":"cmd_output","timestamp":1607098378,"output":"pe: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model"},{"event":"cmd_output","timestamp":1607098378,"output":".PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:58.400 [info] Persisted ppl_sub_init for "},{"event":"cmd_output","timestamp":1607098378,"output":"pipeline with ppl_id: 692f2434-5586-43b9-88b5-535c2c1e62c1: %Ppl.PplSubInits.Model.PplSubInits{__met"},{"event":"cmd_output","timestamp":1607098378,"output":"a__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: "},{"event":"cmd_output","timestamp":1607098378,"output":"nil, id: 271, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:58.399464"},{"event":"cmd_output","timestamp":1607098378,"output":"], pipeline_requests: #Ecto.Association.NotLoaded, ppl"},{"event":"cmd_output","timestamp":1607098378,"output":"_id: \"692f2434-5586-43b9-88b5-535c2c1e62c1\", recovery_count: 0, result: nil, result_reason: nil, sta"},{"event":"cmd_output","timestamp":1607098378,"output":"te: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:"},{"event":"cmd_output","timestamp":1607098378,"output":"58.399472]}\n\u001b[0m\u001b[22m\n16:12:58.404 [info] ppl_id: 21d7eaaa-0972-4693-9923-1360a28f18e0, type: Ppl"},{"event":"cmd_output","timestamp":1607098378,"output":"Requests, event: persisted schedule request with request_token: 7903b0ad-2d98-4227-8193-76e7903378b9"},{"event":"cmd_output","timestamp":1607098378,"output":", origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098378,"output":"2:58.406 [info] ppl_id: 21d7eaaa-0972-4693-9923-1360a28f18e0, type: PplRequests, event: persisted d"},{"event":"cmd_output","timestamp":1607098378,"output":"efinition for request with request_token: 7903b0ad-2d98-4227-8193-76e7903378b9, origin: Elixir.Ppl.P"},{"event":"cmd_output","timestamp":1607098378,"output":"plRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:58.408 [info] ppl_"},{"event":"cmd_output","timestamp":1607098378,"output":"id: 21d7eaaa-0972-4693-9923-1360a28f18e0, type: Ppls, state: initializing, event: initializing, reco"},{"event":"cmd_output","timestamp":1607098378,"output":"very_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098378,"output":"2:58.410 [info] Persisted ppl_sub_init for pipeline with ppl_id: 21d7eaaa-0972-4693-9923-1360a28f18"},{"event":"cmd_output","timestamp":1607098378,"output":"e0: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\""},{"event":"cmd_output","timestamp":1607098378,"output":">, compile_task_id: nil, error_description: nil, id: 272, in_scheduling: false, init_type: \"regular\""},{"event":"cmd_output","timestamp":1607098378,"output":", inserted_at: ~N[2020-12-04 16:12:58.409777], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"21d7eaaa-0972-4693-9923-1360a28f18e0\", recovery_co"},{"event":"cmd_output","timestamp":1607098378,"output":"unt: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request"},{"event":"cmd_output","timestamp":1607098378,"output":"_desc: nil, updated_at: ~N[2020-12-04 16:12:58.409784]}\n\u001b[0m\u001b[22m\n16:12:58.414 [info] ppl_id: 748"},{"event":"cmd_output","timestamp":1607098378,"output":"a8c2b-ae18-451e-b99a-0dbba82309c5, type: PplRequests, event: persisted schedule request with request"},{"event":"cmd_output","timestamp":1607098378,"output":"_token: d817da66-4877-4040-a0e6-03e35a2451a2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQuerie"},{"event":"cmd_output","timestamp":1607098378,"output":"s.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:58.416 [info] ppl_id: 748a8c2b-ae18-451e-b99a-0dbba82"},{"event":"cmd_output","timestamp":1607098378,"output":"309c5, type: PplRequests, event: persisted definition for request with request_token: d817da66-4877-"},{"event":"cmd_output","timestamp":1607098378,"output":"4040-a0e6-03e35a2451a2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3("},{"event":"cmd_output","timestamp":1607098378,"output":"L76), \n\u001b[0m\u001b[22m\n16:12:58.419 [info] ppl_id: 748a8c2b-ae18-451e-b99a-0dbba82309c5, type: Ppls, st"},{"event":"cmd_output","timestamp":1607098378,"output":"ate: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries"},{"event":"cmd_output","timestamp":1607098378,"output":".process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:58.428 [info] Persisted ppl_sub_init for pipeline wit"},{"event":"cmd_output","timestamp":1607098378,"output":"h ppl_id: 748a8c2b-ae18-451e-b99a-0dbba82309c5: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.S"},{"event":"cmd_output","timestamp":1607098378,"output":"chema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 273"},{"event":"cmd_output","timestamp":1607098378,"output":", in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:58.427068], pipeline_"},{"event":"cmd_output","timestamp":1607098378,"output":"requests: #Ecto.Association.NotLoaded, ppl_id: \"748a8c"},{"event":"cmd_output","timestamp":1607098378,"output":"2b-ae18-451e-b99a-0dbba82309c5\", recovery_count: 0, result: nil, result_reason: nil, state: \"created"},{"event":"cmd_output","timestamp":1607098378,"output":"\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:58.427077]}\r"},{"event":"cmd_output","timestamp":1607098378,"output":"\n\u001b[0m\u001b[22m\n16:12:58.432 [info] ppl_id: a8a3b759-3ce4-4e4c-ada8-b10b3c509f8a, type: PplRequests, ev"},{"event":"cmd_output","timestamp":1607098378,"output":"ent: persisted schedule request with request_token: 7fd2c1df-cc56-4996-acb1-3f6c7ade8368, origin: El"},{"event":"cmd_output","timestamp":1607098378,"output":"ixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:58.433 [in"},{"event":"cmd_output","timestamp":1607098378,"output":"fo] ppl_id: a8a3b759-3ce4-4e4c-ada8-b10b3c509f8a, type: PplRequests, event: persisted definition fo"},{"event":"cmd_output","timestamp":1607098378,"output":"r request with request_token: 7fd2c1df-cc56-4996-acb1-3f6c7ade8368, origin: Elixir.Ppl.PplRequests.M"},{"event":"cmd_output","timestamp":1607098378,"output":"odel.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:58.435 [info] ppl_id: a8a3b759"},{"event":"cmd_output","timestamp":1607098378,"output":"-3ce4-4e4c-ada8-b10b3c509f8a, type: Ppls, state: initializing, event: initializing, recovery_count: "},{"event":"cmd_output","timestamp":1607098378,"output":"0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:58.439 [in"},{"event":"cmd_output","timestamp":1607098378,"output":"fo] Persisted ppl_sub_init for pipeline with ppl_id: a8a3b759-3ce4-4e4c-ada8-b10b3c509f8a: %Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098378,"output":"SubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_t"},{"event":"cmd_output","timestamp":1607098378,"output":"ask_id: nil, error_description: nil, id: 274, in_scheduling: false, init_type: \"regular\", inserted_a"},{"event":"cmd_output","timestamp":1607098378,"output":"t: ~N[2020-12-04 16:12:58.438105], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"a8a3b759-3ce4-4e4c-ada8-b10b3c509f8a\", recovery_count: 0, resu"},{"event":"cmd_output","timestamp":1607098378,"output":"lt: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, "},{"event":"cmd_output","timestamp":1607098378,"output":"updated_at: ~N[2020-12-04 16:12:58.438114]}\n\u001b[0m\u001b[22m\n16:12:58.445 [info] ppl_id: 04340c1b-6269-4"},{"event":"cmd_output","timestamp":1607098378,"output":"8dd-928b-df613a810db5, type: PplRequests, event: persisted schedule request with request_token: 027c"},{"event":"cmd_output","timestamp":1607098378,"output":"a5dd-f878-4e77-98ef-5cc0a785b42e, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_re"},{"event":"cmd_output","timestamp":1607098378,"output":"sponse/2(L55), \n\u001b[0m\u001b[22m\n16:12:58.447 [info] ppl_id: 04340c1b-6269-48dd-928b-df613a810db5, type:"},{"event":"cmd_output","timestamp":1607098378,"output":" PplRequests, event: persisted definition for request with request_token: 027ca5dd-f878-4e77-98ef-5c"},{"event":"cmd_output","timestamp":1607098378,"output":"c0a785b42e, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098378,"output":"\u001b[22m\n16:12:58.449 [info] ppl_id: 04340c1b-6269-48dd-928b-df613a810db5, type: Ppls, state: initial"},{"event":"cmd_output","timestamp":1607098378,"output":"izing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_res"},{"event":"cmd_output","timestamp":1607098378,"output":"ponse/2(L124), \n\u001b[0m\u001b[22m\n16:12:58.452 [info] Persisted ppl_sub_init for pipeline with ppl_id: 04"},{"event":"cmd_output","timestamp":1607098378,"output":"340c1b-6269-48dd-928b-df613a810db5: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metada"},{"event":"cmd_output","timestamp":1607098378,"output":"ta<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 275, in_schedul"},{"event":"cmd_output","timestamp":1607098378,"output":"ing: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:58.451154], pipeline_requests: #E"},{"event":"cmd_output","timestamp":1607098378,"output":"cto.Association.NotLoaded, ppl_id: \"04340c1b-6269-48dd"},{"event":"cmd_output","timestamp":1607098378,"output":"-928b-df613a810db5\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate"},{"event":"cmd_output","timestamp":1607098378,"output":"_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:58.451163]}\n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098378,"output":"16:12:58.458 [info] ppl_id: 0481bb40-9504-4e05-8b22-8fa4d33ee5d9, type: PplRequests, event: persist"},{"event":"cmd_output","timestamp":1607098378,"output":"ed schedule request with request_token: 23af24a7-c7f1-46c9-a76b-4a2617cfbb2c, origin: Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098378,"output":"Requests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:12:58.460 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098378,"output":" 0481bb40-9504-4e05-8b22-8fa4d33ee5d9, type: PplRequests, event: persisted definition for request wi"},{"event":"cmd_output","timestamp":1607098378,"output":"th request_token: 23af24a7-c7f1-46c9-a76b-4a2617cfbb2c, origin: Elixir.Ppl.PplRequests.Model.PplRequ"},{"event":"cmd_output","timestamp":1607098378,"output":"estsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:58.462 [info] ppl_id: 0481bb40-9504-4e05-8"},{"event":"cmd_output","timestamp":1607098378,"output":"b22-8fa4d33ee5d9, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: E"},{"event":"cmd_output","timestamp":1607098378,"output":"lixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:12:58.466 [info] Persist"},{"event":"cmd_output","timestamp":1607098378,"output":"ed ppl_sub_init for pipeline with ppl_id: 0481bb40-9504-4e05-8b22-8fa4d33ee5d9: %Ppl.PplSubInits.Mod"},{"event":"cmd_output","timestamp":1607098378,"output":"el.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil,"},{"event":"cmd_output","timestamp":1607098378,"output":" error_description: nil, id: 276, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-1"},{"event":"cmd_output","timestamp":1607098378,"output":"2-04 16:12:58.464403], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"0481bb40-9504-4e05-8b22-8fa4d33ee5d9\", recovery_count: 0, result: nil, res"},{"event":"cmd_output","timestamp":1607098378,"output":"ult_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: "},{"event":"cmd_output","timestamp":1607098378,"output":"~N[2020-12-04 16:12:58.464411]}\n\u001b[0m\u001b[22m\n16:12:58.470 [info] ppl_id: a45f9332-3ce0-4115-88f2-b17"},{"event":"cmd_output","timestamp":1607098378,"output":"032e77054, type: PplRequests, event: persisted schedule request with request_token: 028f348b-572e-4d"},{"event":"cmd_output","timestamp":1607098378,"output":"bb-b167-7fe714312442, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55"},{"event":"cmd_output","timestamp":1607098378,"output":"), \n\u001b[0m\u001b[22m\n16:12:58.471 [info] ppl_id: a45f9332-3ce0-4115-88f2-b17032e77054, type: PplRequests"},{"event":"cmd_output","timestamp":1607098378,"output":", event: persisted definition for request with request_token: 028f348b-572e-4dbb-b167-7fe714312442, "},{"event":"cmd_output","timestamp":1607098378,"output":"origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12"},{"event":"cmd_output","timestamp":1607098378,"output":":58.473 [info] ppl_id: a45f9332-3ce0-4115-88f2-b17032e77054, type: Ppls, state: initializing, event"},{"event":"cmd_output","timestamp":1607098378,"output":": initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124"},{"event":"cmd_output","timestamp":1607098378,"output":"), \n\u001b[0m\u001b[22m\n16:12:58.476 [info] Persisted ppl_sub_init for pipeline with ppl_id: a45f9332-3ce0-"},{"event":"cmd_output","timestamp":1607098378,"output":"4115-88f2-b17032e77054: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, "},{"event":"cmd_output","timestamp":1607098378,"output":"\"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 277, in_scheduling: false, "},{"event":"cmd_output","timestamp":1607098378,"output":"init_type: \"regular\", inserted_at: ~N[2020-12-04 16:12:58.475928], pipeline_requests: #Ecto.Associat"},{"event":"cmd_output","timestamp":1607098378,"output":"ion.NotLoaded, ppl_id: \"a45f9332-3ce0-4115-88f2-b17032"},{"event":"cmd_output","timestamp":1607098378,"output":"e77054\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: ni"},{"event":"cmd_output","timestamp":1607098378,"output":"l, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:12:58.475937]}\n\u001b[0m\u001b[22m\n16:12:58.479"},{"event":"cmd_output","timestamp":1607098378,"output":" [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls"},{"event":"cmd_output","timestamp":1607098378,"output":".STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-ST"},{"event":"cmd_output","timestamp":1607098378,"output":"MHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"pending\", \"done\"]"},{"event":"cmd_output","timestamp":1607098378,"output":", cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher"},{"event":"cmd_output","timestamp":1607098378,"output":"_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, r"},{"event":"cmd_output","timestamp":1607098378,"output":"eturning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema:"},{"event":"cmd_output","timestamp":1607098378,"output":" Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:58.480 [info] Periodic from module "},{"event":"cmd_output","timestamp":1607098378,"output":"Elixir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler.PendingState :: period:"},{"event":"cmd_output","timestamp":1607098378,"output":" 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args"},{"event":"cmd_output","timestamp":1607098378,"output":": %{allowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: P"},{"event":"cmd_output","timestamp":1607098378,"output":"pl.Ppls.Model.Ppls, observed_state: \"pending\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHa"},{"event":"cmd_output","timestamp":1607098378,"output":"ndler.PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :s"},{"event":"cmd_output","timestamp":1607098378,"output":"tate, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupe"},{"event":"cmd_output","timestamp":1607098378,"output":"rvisor}\n\u001b[0m\u001b[22m\n16:12:58.481 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.QueuingStat"},{"event":"cmd_output","timestamp":1607098378,"output":"e with name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, metric_name: {\"Ppl.beholder-w"},{"event":"cmd_output","timestamp":1607098378,"output":"ake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{allowed_states: [\"queuing\", \"runni"},{"event":"cmd_output","timestamp":1607098378,"output":"ng\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", p"},{"event":"cmd_output","timestamp":1607098378,"output":"ublisher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo"},{"event":"cmd_output","timestamp":1607098378,"output":", returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], sche"},{"event":"cmd_output","timestamp":1607098378,"output":"ma: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:58.482 [info] Periodic from modu"},{"event":"cmd_output","timestamp":1607098378,"output":"le Elixir.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHandler.RunningState :: peri"},{"event":"cmd_output","timestamp":1607098378,"output":"od: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring a"},{"event":"cmd_output","timestamp":1607098378,"output":"rgs: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098378,"output":"s.Model.Ppls, observed_state: \"running\", publisher_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler"},{"event":"cmd_output","timestamp":1607098378,"output":".RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state,"},{"event":"cmd_output","timestamp":1607098378,"output":" :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSuperviso"},{"event":"cmd_output","timestamp":1607098378,"output":"r}\n\u001b[0m\u001b[22m\n16:12:58.482 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.StoppingState wi"},{"event":"cmd_output","timestamp":1607098378,"output":"th name Elixir.Ppl.Ppls.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake"},{"event":"cmd_output","timestamp":1607098378,"output":"_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"]"},{"event":"cmd_output","timestamp":1607098378,"output":", cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"stopping\", publisher_cb"},{"event":"cmd_output","timestamp":1607098378,"output":": #Function<0.71803493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning"},{"event":"cmd_output","timestamp":1607098378,"output":": [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098378,"output":"s.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:58.483 [info] Periodic from module Elixir.P"},{"event":"cmd_output","timestamp":1607098378,"output":"pl.PplSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: p"},{"event":"cmd_output","timestamp":1607098378,"output":"eriod: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, r"},{"event":"cmd_output","timestamp":1607098378,"output":"ecurring args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSu"},{"event":"cmd_output","timestamp":1607098378,"output":"bInits.Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, return"},{"event":"cmd_output","timestamp":1607098378,"output":"ing: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl."},{"event":"cmd_output","timestamp":1607098378,"output":"PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:58.484 [info] Periodic fro"},{"event":"cmd_output","timestamp":1607098378,"output":"m module Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler"},{"event":"cmd_output","timestamp":1607098378,"output":".FetchingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler"},{"event":"cmd_output","timestamp":1607098378,"output":"-FetchingState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"done\"], coolin"},{"event":"cmd_output","timestamp":1607098378,"output":"g_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fetching\", publis"},{"event":"cmd_output","timestamp":1607098378,"output":"her_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result"},{"event":"cmd_output","timestamp":1607098378,"output":", :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0"},{"event":"cmd_output","timestamp":1607098378,"output":"m\u001b[22m\n16:12:58.484 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CompilationState"},{"event":"cmd_output","timestamp":1607098378,"output":" with name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 100 ms, metric_name: {\"Ppl."},{"event":"cmd_output","timestamp":1607098378,"output":"beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurring args: %{allowed_state"},{"event":"cmd_output","timestamp":1607098378,"output":"s: [\"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098378,"output":"SubInits.Model.PplSubInits, observed_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, "},{"event":"cmd_output","timestamp":1607098378,"output":"returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema"},{"event":"cmd_output","timestamp":1607098378,"output":": Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:58.485 [info] Period"},{"event":"cmd_output","timestamp":1607098378,"output":"ic from module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.S"},{"event":"cmd_output","timestamp":1607098378,"output":"TMHandler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInit"},{"event":"cmd_output","timestamp":1607098378,"output":"s-STMHandler-RegularInitState\"]}, recurring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, i"},{"event":"cmd_output","timestamp":1607098378,"output":"nitial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_init\", publisher_cb: :skip"},{"event":"cmd_output","timestamp":1607098378,"output":", repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_c"},{"event":"cmd_output","timestamp":1607098378,"output":"ount, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12"},{"event":"cmd_output","timestamp":1607098378,"output":":58.485 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.InitializingState with name Eli"},{"event":"cmd_output","timestamp":1607098378,"output":"xir.Ppl.PplBlocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_u"},{"event":"cmd_output","timestamp":1607098378,"output":"p\", [\"Ppl-PplBlocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializin"},{"event":"cmd_output","timestamp":1607098378,"output":"g\", \"waiting\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_"},{"event":"cmd_output","timestamp":1607098378,"output":"state: \"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request,"},{"event":"cmd_output","timestamp":1607098378,"output":" :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model."},{"event":"cmd_output","timestamp":1607098378,"output":"PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:58.485 [info] Periodic from module Elixir.Ppl."},{"event":"cmd_output","timestamp":1607098378,"output":"PplBlocks.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler.WaitingState :: period: "},{"event":"cmd_output","timestamp":1607098378,"output":"1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurring"},{"event":"cmd_output","timestamp":1607098378,"output":" args: %{allowed_states: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098378,"output":"Blocks.Model.PplBlocks, observed_state: \"waiting\", publisher_cb: #Function<0.8975022/1 in Ppl.PplBlo"},{"event":"cmd_output","timestamp":1607098378,"output":"cks.STMHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updat"},{"event":"cmd_output","timestamp":1607098378,"output":"ed_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBloc"},{"event":"cmd_output","timestamp":1607098378,"output":"ks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:58.486 [info] Periodic from module Elixir.Ppl.PplBloc"},{"event":"cmd_output","timestamp":1607098378,"output":"ks.STMHandler.RunningState with name Elixir.Ppl.PplBlocks.STMHandler.RunningState :: period: 1000 ms"},{"event":"cmd_output","timestamp":1607098378,"output":", metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, recurring args: "},{"event":"cmd_output","timestamp":1607098378,"output":"%{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlock"},{"event":"cmd_output","timestamp":1607098378,"output":"s.Model.PplBlocks, observed_state: \"running\", publisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks."},{"event":"cmd_output","timestamp":1607098378,"output":"STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_a"},{"event":"cmd_output","timestamp":1607098378,"output":"t, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model."},{"event":"cmd_output","timestamp":1607098378,"output":"PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:58.486 [info] Periodic from module Elixir.Ppl."},{"event":"cmd_output","timestamp":1607098378,"output":"PplBlocks.STMHandler.StoppingState with name Elixir.Ppl.PplBlocks.STMHandler.StoppingState :: period"},{"event":"cmd_output","timestamp":1607098378,"output":": 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurr"},{"event":"cmd_output","timestamp":1607098378,"output":"ing args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks"},{"event":"cmd_output","timestamp":1607098378,"output":".Model.PplBlocks, observed_state: \"stopping\", publisher_cb: #Function<0.104215991/1 in Ppl.PplBlocks"},{"event":"cmd_output","timestamp":1607098378,"output":".STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated"},{"event":"cmd_output","timestamp":1607098378,"output":"_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Mode"},{"event":"cmd_output","timestamp":1607098378,"output":"l.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:58.486 [info] Periodic from module Elixir.Bl"},{"event":"cmd_output","timestamp":1607098378,"output":"ock.Blocks.STMHandler.InitializingState with name Elixir.Block.Blocks.STMHandler.InitializingState :"},{"event":"cmd_output","timestamp":1607098378,"output":": period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-InitializingState\""},{"event":"cmd_output","timestamp":1607098378,"output":"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block"},{"event":"cmd_output","timestamp":1607098378,"output":".Blocks.Model.Blocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Block.EctoRepo, ret"},{"event":"cmd_output","timestamp":1607098378,"output":"urning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Bl"},{"event":"cmd_output","timestamp":1607098378,"output":"ocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:58.487 [info] Periodic from module Eli"},{"event":"cmd_output","timestamp":1607098378,"output":"xir.Block.Blocks.STMHandler.RunningState with name Elixir.Block.Blocks.STMHandler.RunningState :: pe"},{"event":"cmd_output","timestamp":1607098378,"output":"riod: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-RunningState\"]}, recur"},{"event":"cmd_output","timestamp":1607098378,"output":"ring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: B"},{"event":"cmd_output","timestamp":1607098378,"output":"lock.Blocks.Model.Blocks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, retu"},{"event":"cmd_output","timestamp":1607098378,"output":"rning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blo"},{"event":"cmd_output","timestamp":1607098378,"output":"cks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:58.487 [info] Periodic from module Elix"},{"event":"cmd_output","timestamp":1607098378,"output":"ir.Block.Blocks.STMHandler.StoppingState with name Elixir.Block.Blocks.STMHandler.StoppingState :: p"},{"event":"cmd_output","timestamp":1607098378,"output":"eriod: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-StoppingState\"]}, rec"},{"event":"cmd_output","timestamp":1607098378,"output":"urring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Bloc"},{"event":"cmd_output","timestamp":1607098378,"output":"ks.Model.Blocks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: ["},{"event":"cmd_output","timestamp":1607098378,"output":":id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Mode"},{"event":"cmd_output","timestamp":1607098378,"output":"l.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:58.488 [info] Periodic from module Elixir.Block"},{"event":"cmd_output","timestamp":1607098378,"output":".Tasks.STMHandler.PendingState with name Elixir.Block.Tasks.STMHandler.PendingState :: period: 100 m"},{"event":"cmd_output","timestamp":1607098378,"output":"s, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingState\"]}, recurring args: %"},{"event":"cmd_output","timestamp":1607098378,"output":"{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Tasks.Model.Tasks, o"},{"event":"cmd_output","timestamp":1607098378,"output":"bserved_state: \"pending\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_req"},{"event":"cmd_output","timestamp":1607098378,"output":"uest, :updated_at, :state, :recovery_count, :block_id, :build_request_id], schema: Block.Tasks.Model"},{"event":"cmd_output","timestamp":1607098378,"output":".Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:58.488 [info] Periodic from module Elixir.Block.T"},{"event":"cmd_output","timestamp":1607098378,"output":"asks.STMHandler.RunningState with name Elixir.Block.Tasks.STMHandler.RunningState :: period: 100 ms,"},{"event":"cmd_output","timestamp":1607098378,"output":" metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningState\"]}, recurring args: %{a"},{"event":"cmd_output","timestamp":1607098378,"output":"llowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Mod"},{"event":"cmd_output","timestamp":1607098378,"output":"el.Tasks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :te"},{"event":"cmd_output","timestamp":1607098378,"output":"rminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, "},{"event":"cmd_output","timestamp":1607098378,"output":"task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:12:58.488 [info] Periodic from module Elixir.Block.Tasks.STM"},{"event":"cmd_output","timestamp":1607098378,"output":"Handler.StoppingState with name Elixir.Block.Tasks.STMHandler.StoppingState :: period: 100 ms, metri"},{"event":"cmd_output","timestamp":1607098378,"output":"c_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]}, recurring args: %{allowe"},{"event":"cmd_output","timestamp":1607098378,"output":"d_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observ"},{"event":"cmd_output","timestamp":1607098378,"output":"ed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request"},{"event":"cmd_output","timestamp":1607098378,"output":", :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor"},{"event":"cmd_output","timestamp":1607098378,"output":": :skip}\n\u001b[0m\u001b[22m\n16:12:58.598 [info] ppl_id: 713dc97e-4c1b-4188-af7c-fe4619ef2e3a, type: PplReq"},{"event":"cmd_output","timestamp":1607098378,"output":"uests, event: persisted source_args for pipeline: 713dc97e-4c1b-4188-af7c-fe4619ef2e3a, origin: Elix"},{"event":"cmd_output","timestamp":1607098378,"output":"ir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:58.600 [info] "},{"event":"cmd_output","timestamp":1607098378,"output":"ppl_id: 713dc97e-4c1b-4188-af7c-fe4619ef2e3a, type: PplSubInits, state: fetching, event: exit_schedu"},{"event":"cmd_output","timestamp":1607098378,"output":"ling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:"},{"event":"cmd_output","timestamp":1607098378,"output":"58.615 [info] ppl_id: 713dc97e-4c1b-4188-af7c-fe4619ef2e3a, type: PplSubInits, state: regular_init,"},{"event":"cmd_output","timestamp":1607098378,"output":" event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), "},{"event":"cmd_output","timestamp":1607098378,"output":"\n\u001b[0m\u001b[22m\n16:12:58.634 [info] ppl_id: 713dc97e-4c1b-4188-af7c-fe4619ef2e3a, type: PplRequests, e"},{"event":"cmd_output","timestamp":1607098378,"output":"vent: persisted definition for request with request_token: 1e83398b-9785-4a07-b009-f9086fe6e3a3, ori"},{"event":"cmd_output","timestamp":1607098378,"output":"gin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:58"},{"event":"cmd_output","timestamp":1607098378,"output":".645 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded"},{"event":"cmd_output","timestamp":1607098378,"output":", \"queues\">, inserted_at: ~N[2020-12-04 16:12:58.636950], name: \"master-.semaphore/semaphore.yml\", o"},{"event":"cmd_output","timestamp":1607098378,"output":"rganization_id: \"17bef151-2c4b-4aea-b92a-5fbd8bc4bd4d\", project_id: \"123\", queue_id: \"d36a25e7-5b61-"},{"event":"cmd_output","timestamp":1607098378,"output":"4b56-8eee-f64be10b6e7d\", scope: \"project\", updated_at: ~N[2020-12-04 16:12:58.636960], user_generate"},{"event":"cmd_output","timestamp":1607098378,"output":"d: false}}\n\u001b[0m\u001b[22m\n16:12:58.650 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandle"},{"event":"cmd_output","timestamp":1607098378,"output":"r.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:58.650 [info] ppl_id: 713dc97e-4c1b-4188-af7"},{"event":"cmd_output","timestamp":1607098378,"output":"c-fe4619ef2e3a, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count"},{"event":"cmd_output","timestamp":1607098378,"output":": 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:"},{"event":"cmd_output","timestamp":1607098378,"output":"58.652 [info] ppl_id: 713dc97e-4c1b-4188-af7c-fe4619ef2e3a, type: PplSubInits, state: done, result:"},{"event":"cmd_output","timestamp":1607098378,"output":" passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/"},{"event":"cmd_output","timestamp":1607098378,"output":"1(L90), \n\u001b[0m\u001b[22m\n16:12:58.662 [info] ppl_id: 713dc97e-4c1b-4188-af7c-fe4619ef2e3a, type: PplBlo"},{"event":"cmd_output","timestamp":1607098378,"output":"cks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loope"},{"event":"cmd_output","timestamp":1607098378,"output":"r.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:58.663 [info] ppl_id: 713dc97e-4c1b-4188-af7"},{"event":"cmd_output","timestamp":1607098378,"output":"c-fe4619ef2e3a, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098378,"output":"r.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:58.680 [info] ppl_id: 713dc97e-4c1b-4"},{"event":"cmd_output","timestamp":1607098378,"output":"188-af7c-fe4619ef2e3a, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098378,"output":": Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:58.694 [info] ppl_id: 713dc97e"},{"event":"cmd_output","timestamp":1607098378,"output":"-4c1b-4188-af7c-fe4619ef2e3a, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098378,"output":" origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:58.707 [info] PplBlocks"},{"event":"cmd_output","timestamp":1607098378,"output":" WaitingState STM is scheduling block 0 from pipeline: \"713dc97e-4c1b-4188-af7c-fe4619ef2e3a\"\n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098378,"output":"[22m\n16:12:58.712 [info] ppl_id: 9c00d608-73c6-4792-b0db-c1f141783612, type: PplRequests, event: p"},{"event":"cmd_output","timestamp":1607098378,"output":"ersisted source_args for pipeline: 9c00d608-73c6-4792-b0db-c1f141783612, origin: Elixir.Ppl.PplReque"},{"event":"cmd_output","timestamp":1607098378,"output":"sts.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:58.715 [info] ppl_id: 9c00d60"},{"event":"cmd_output","timestamp":1607098378,"output":"8-73c6-4792-b0db-c1f141783612, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_"},{"event":"cmd_output","timestamp":1607098378,"output":"count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:58.717 [info] "},{"event":"cmd_output","timestamp":1607098378,"output":"block_id: 79ef7395-3130-4ca8-9721-4cb8b68ce47b, type: BlockRequests, event: persisted block run requ"},{"event":"cmd_output","timestamp":1607098378,"output":"est from ppl 713dc97e-4c1b-4188-af7c-fe4619ef2e3a for block 0, origin: Elixir.Block.BlockRequests.Mo"},{"event":"cmd_output","timestamp":1607098378,"output":"del.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:58.720 [info] block_id: 79ef73"},{"event":"cmd_output","timestamp":1607098378,"output":"95-3130-4ca8-9721-4cb8b68ce47b, type: Blocks, state: initializing, event: initializing, recovery_cou"},{"event":"cmd_output","timestamp":1607098378,"output":"nt: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:58.721 [inf"},{"event":"cmd_output","timestamp":1607098378,"output":"o] Block 0 of pipeline with id: 713dc97e-4c1b-4188-af7c-fe4619ef2e3a scheduled in block service wit"},{"event":"cmd_output","timestamp":1607098378,"output":"h id: : \"79ef7395-3130-4ca8-9721-4cb8b68ce47b\"\n\u001b[0m\u001b[22m\n16:12:58.726 [info] ppl_id: 713dc97e-4c1"},{"event":"cmd_output","timestamp":1607098378,"output":"b-4188-af7c-fe4619ef2e3a, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, r"},{"event":"cmd_output","timestamp":1607098378,"output":"ecovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:58.730 "},{"event":"cmd_output","timestamp":1607098378,"output":"[info] block_id: 79ef7395-3130-4ca8-9721-4cb8b68ce47b, type: BlockRequests, event: persisted build "},{"event":"cmd_output","timestamp":1607098378,"output":"and sub_ppl details for block_request: 79ef7395-3130-4ca8-9721-4cb8b68ce47b, origin: Elixir.Block.Bl"},{"event":"cmd_output","timestamp":1607098378,"output":"ockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:58.732 [info] block_"},{"event":"cmd_output","timestamp":1607098378,"output":"id: 79ef7395-3130-4ca8-9721-4cb8b68ce47b, type: Tasks, state: pending, event: created, recovery_coun"},{"event":"cmd_output","timestamp":1607098378,"output":"t: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:5"},{"event":"cmd_output","timestamp":1607098378,"output":"8.735 [info] block_id: 79ef7395-3130-4ca8-9721-4cb8b68ce47b, type: Blocks, state: running, event: e"},{"event":"cmd_output","timestamp":1607098378,"output":"xit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098378,"output":"2m\n16:12:58.743 [info] ppl_id: 9c00d608-73c6-4792-b0db-c1f141783612, type: PplSubInits, state: reg"},{"event":"cmd_output","timestamp":1607098378,"output":"ular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chang"},{"event":"cmd_output","timestamp":1607098378,"output":"e/1(L90), \n\u001b[0m\u001b[22m\n16:12:58.753 [info] block_id: 79ef7395-3130-4ca8-9721-4cb8b68ce47b, type: Ta"},{"event":"cmd_output","timestamp":1607098378,"output":"sks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_s"},{"event":"cmd_output","timestamp":1607098378,"output":"tate_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:58.769 [info] ppl_id: 9c00d608-73c6-4792-b0db-c1f141783612, "},{"event":"cmd_output","timestamp":1607098378,"output":"type: PplRequests, event: persisted definition for request with request_token: af66fce9-06ae-4f22-87"},{"event":"cmd_output","timestamp":1607098378,"output":"a9-af12aef44388, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \r"},{"event":"cmd_output","timestamp":1607098378,"output":"\n\u001b[0m\u001b[22m\n16:12:58.774 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularIn"},{"event":"cmd_output","timestamp":1607098378,"output":"itState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:58.774 [info] ppl_id: 9c00d608-73c6-4792-b0db-c1f141783"},{"event":"cmd_output","timestamp":1607098378,"output":"612, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098378,"output":": Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:58.776 [inf"},{"event":"cmd_output","timestamp":1607098378,"output":"o] ppl_id: 9c00d608-73c6-4792-b0db-c1f141783612, type: PplSubInits, state: done, result: passed, ev"},{"event":"cmd_output","timestamp":1607098378,"output":"ent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b"},{"event":"cmd_output","timestamp":1607098378,"output":"[0m\u001b[22m\n16:12:58.783 [info] ppl_id: 9c00d608-73c6-4792-b0db-c1f141783612, type: PplBlocks, block_"},{"event":"cmd_output","timestamp":1607098378,"output":"index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl."},{"event":"cmd_output","timestamp":1607098378,"output":"log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:58.785 [info] ppl_id: 9c00d608-73c6-4792-b0db-c1f141783"},{"event":"cmd_output","timestamp":1607098378,"output":"612, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.ST"},{"event":"cmd_output","timestamp":1607098378,"output":"M.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:58.797 [info] ppl_id: 9c00d608-73c6-4792-b0db-c1"},{"event":"cmd_output","timestamp":1607098378,"output":"f141783612, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Lo"},{"event":"cmd_output","timestamp":1607098378,"output":"oper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:58.815 [info] block_id: 79ef7395-3130-4ca"},{"event":"cmd_output","timestamp":1607098378,"output":"8-9721-4cb8b68ce47b, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098378,"output":"ixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:58.821 [info] block_id: 79ef7395-3"},{"event":"cmd_output","timestamp":1607098378,"output":"130-4ca8-9721-4cb8b68ce47b, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098378,"output":"igin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:58.827 [info] ppl_id: 6f92"},{"event":"cmd_output","timestamp":1607098378,"output":"290f-6b00-481c-8985-99576646deeb, type: PplRequests, event: persisted source_args for pipeline: 6f92"},{"event":"cmd_output","timestamp":1607098378,"output":"290f-6b00-481c-8985-99576646deeb, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_sou"},{"event":"cmd_output","timestamp":1607098378,"output":"rce/2(L89), \n\u001b[0m\u001b[22m\n16:12:58.831 [info] ppl_id: 713dc97e-4c1b-4188-af7c-fe4619ef2e3a, block_id"},{"event":"cmd_output","timestamp":1607098378,"output":": 79ef7395-3130-4ca8-9721-4cb8b68ce47b, type: PplBlocks, block_index: 0, state: done, result: passed"},{"event":"cmd_output","timestamp":1607098378,"output":", event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90),"},{"event":"cmd_output","timestamp":1607098378,"output":" \n\u001b[0m\u001b[22m\n16:12:58.832 [info] ppl_id: 6f92290f-6b00-481c-8985-99576646deeb, type: PplSubInits, "},{"event":"cmd_output","timestamp":1607098378,"output":"state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state"},{"event":"cmd_output","timestamp":1607098378,"output":"_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:58.847 [info] ppl_id: 713dc97e-4c1b-4188-af7c-fe4619ef2e3a, type"},{"event":"cmd_output","timestamp":1607098378,"output":": Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loope"},{"event":"cmd_output","timestamp":1607098378,"output":"r.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:58.860 [info] ppl_id: 6f92290f-6b00-481c-898"},{"event":"cmd_output","timestamp":1607098378,"output":"5-99576646deeb, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098378,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:58.892 [info] ppl_id: 6f9"},{"event":"cmd_output","timestamp":1607098378,"output":"2290f-6b00-481c-8985-99576646deeb, type: PplRequests, event: persisted definition for request with r"},{"event":"cmd_output","timestamp":1607098378,"output":"equest_token: 62010d91-1ed3-4bf4-9cd7-09c37ea52cdd, origin: Elixir.Ppl.PplRequests.Model.PplRequests"},{"event":"cmd_output","timestamp":1607098378,"output":"Queries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:58.900 [info] event: created, origin: Elixir.P"},{"event":"cmd_output","timestamp":1607098378,"output":"pl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:58.900 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098378,"output":": 6f92290f-6b00-481c-8985-99576646deeb, type: PplBlocks, block_index: 0, state: initializing, event:"},{"event":"cmd_output","timestamp":1607098378,"output":" created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L1"},{"event":"cmd_output","timestamp":1607098378,"output":"05), \n\u001b[0m\u001b[22m\n16:12:58.902 [info] ppl_id: 6f92290f-6b00-481c-8985-99576646deeb, type: PplSubIni"},{"event":"cmd_output","timestamp":1607098378,"output":"ts, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.ST"},{"event":"cmd_output","timestamp":1607098378,"output":"M.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:58.911 [info] ppl_id: 6f92290f-6b00-481c-8985-99"},{"event":"cmd_output","timestamp":1607098378,"output":"576646deeb, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count:"},{"event":"cmd_output","timestamp":1607098378,"output":" 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:58.912 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098378,"output":": 6f92290f-6b00-481c-8985-99576646deeb, type: Ppls, state: pending, event: exit_scheduling, recovery"},{"event":"cmd_output","timestamp":1607098378,"output":"_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:58.916 [info] "},{"event":"cmd_output","timestamp":1607098378,"output":" ppl_id: 9c00d608-73c6-4792-b0db-c1f141783612, type: Ppls, state: running, event: exit_scheduling, r"},{"event":"cmd_output","timestamp":1607098378,"output":"ecovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:58.920 "},{"event":"cmd_output","timestamp":1607098378,"output":"[info] ppl_id: 6f92290f-6b00-481c-8985-99576646deeb, type: Ppls, state: queuing, event: exit_schedu"},{"event":"cmd_output","timestamp":1607098378,"output":"ling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:"},{"event":"cmd_output","timestamp":1607098378,"output":"58.925 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"9c00d608-73c6-4792-b"},{"event":"cmd_output","timestamp":1607098378,"output":"0db-c1f141783612\"\n\u001b[0m\u001b[22m\n16:12:58.928 [info] block_id: 6be89872-a7ee-4047-9e78-d13a47195435, t"},{"event":"cmd_output","timestamp":1607098378,"output":"ype: BlockRequests, event: persisted block run request from ppl 9c00d608-73c6-4792-b0db-c1f141783612"},{"event":"cmd_output","timestamp":1607098378,"output":" for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35),"},{"event":"cmd_output","timestamp":1607098378,"output":" \n\u001b[0m\u001b[22m\n16:12:58.930 [info] block_id: 6be89872-a7ee-4047-9e78-d13a47195435, type: Blocks, sta"},{"event":"cmd_output","timestamp":1607098378,"output":"te: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQu"},{"event":"cmd_output","timestamp":1607098378,"output":"eries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:58.934 [info] Block 0 of pipeline with id: 9c00d608-73c6-47"},{"event":"cmd_output","timestamp":1607098378,"output":"92-b0db-c1f141783612 scheduled in block service with id: : \"6be89872-a7ee-4047-9e78-d13a47195435\"\n\u001b"},{"event":"cmd_output","timestamp":1607098378,"output":"[0m\u001b[22m\n16:12:58.936 [info] ppl_id: 9c00d608-73c6-4792-b0db-c1f141783612, type: PplBlocks, block_"},{"event":"cmd_output","timestamp":1607098378,"output":"index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl."},{"event":"cmd_output","timestamp":1607098378,"output":"log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:58.938 [info] block_id: 6be89872-a7ee-4047-9e78-d13a471"},{"event":"cmd_output","timestamp":1607098378,"output":"95435, type: BlockRequests, event: persisted build and sub_ppl details for block_request: 6be89872-a"},{"event":"cmd_output","timestamp":1607098378,"output":"7ee-4047-9e78-d13a47195435, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_bui"},{"event":"cmd_output","timestamp":1607098378,"output":"ld/2(L41), \n\u001b[0m\u001b[22m\n16:12:58.939 [info] ppl_id: 636d6d71-ad1c-4076-945b-f7cc3f04e68e, type: Ppl"},{"event":"cmd_output","timestamp":1607098378,"output":"Requests, event: persisted source_args for pipeline: 636d6d71-ad1c-4076-945b-f7cc3f04e68e, origin: E"},{"event":"cmd_output","timestamp":1607098378,"output":"lixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:58.940 [info"},{"event":"cmd_output","timestamp":1607098378,"output":"] block_id: 6be89872-a7ee-4047-9e78-d13a47195435, type: Tasks, state: pending, event: created, reco"},{"event":"cmd_output","timestamp":1607098378,"output":"very_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098378,"output":"\n16:12:58.941 [info] ppl_id: 636d6d71-ad1c-4076-945b-f7cc3f04e68e, type: PplSubInits, state: fetch"},{"event":"cmd_output","timestamp":1607098378,"output":"ing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L9"},{"event":"cmd_output","timestamp":1607098378,"output":"0), \n\u001b[0m\u001b[22m\n16:12:58.943 [info] block_id: 6be89872-a7ee-4047-9e78-d13a47195435, type: Blocks, "},{"event":"cmd_output","timestamp":1607098378,"output":"state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_"},{"event":"cmd_output","timestamp":1607098378,"output":"change/1(L90), \n\u001b[0m\u001b[22m\n16:12:58.952 [info] block_id: 6be89872-a7ee-4047-9e78-d13a47195435, typ"},{"event":"cmd_output","timestamp":1607098378,"output":"e: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl."},{"event":"cmd_output","timestamp":1607098378,"output":"log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:58.962 [info] ppl_id: 636d6d71-ad1c-4076-945b-f7cc3f04e"},{"event":"cmd_output","timestamp":1607098378,"output":"68e, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098378,"output":"ir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:58.985 [info] ppl_id: 636d6d71-ad1c-"},{"event":"cmd_output","timestamp":1607098378,"output":"4076-945b-f7cc3f04e68e, type: PplRequests, event: persisted definition for request with request_toke"},{"event":"cmd_output","timestamp":1607098378,"output":"n: d4b1b2b8-c967-4469-9774-63887a06b452, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.ins"},{"event":"cmd_output","timestamp":1607098378,"output":"ert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:58.990 [info] event: created, origin: Elixir.Ppl.PplSubIn"},{"event":"cmd_output","timestamp":1607098378,"output":"its.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:58.990 [info] ppl_id: 636d6d71-"},{"event":"cmd_output","timestamp":1607098378,"output":"ad1c-4076-945b-f7cc3f04e68e, type: PplBlocks, block_index: 0, state: initializing, event: created, r"},{"event":"cmd_output","timestamp":1607098378,"output":"ecovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098378,"output":"\u001b[22m\n16:12:58.991 [info] ppl_id: 636d6d71-ad1c-4076-945b-f7cc3f04e68e, type: PplSubInits, state: "},{"event":"cmd_output","timestamp":1607098378,"output":"done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_"},{"event":"cmd_output","timestamp":1607098378,"output":"state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:58.998 [info] ppl_id: 636d6d71-ad1c-4076-945b-f7cc3f04e68e,"},{"event":"cmd_output","timestamp":1607098378,"output":" type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098379,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.002 [info] ppl_id: 636d6d71-"},{"event":"cmd_output","timestamp":1607098379,"output":"ad1c-4076-945b-f7cc3f04e68e, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098379,"output":"origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.012 [info] ppl_id: 63"},{"event":"cmd_output","timestamp":1607098379,"output":"6d6d71-ad1c-4076-945b-f7cc3f04e68e, type: Ppls, state: queuing, event: exit_scheduling, recovery_cou"},{"event":"cmd_output","timestamp":1607098379,"output":"nt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.030 [info] blo"},{"event":"cmd_output","timestamp":1607098379,"output":"ck_id: 6be89872-a7ee-4047-9e78-d13a47195435, type: Tasks, state: done, event: exit_scheduling, recov"},{"event":"cmd_output","timestamp":1607098379,"output":"ery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.038 [inf"},{"event":"cmd_output","timestamp":1607098379,"output":"o] block_id: 6be89872-a7ee-4047-9e78-d13a47195435, type: Blocks, state: done, event: exit_schedulin"},{"event":"cmd_output","timestamp":1607098379,"output":"g, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59."},{"event":"cmd_output","timestamp":1607098379,"output":"045 [info] ppl_id: 9c00d608-73c6-4792-b0db-c1f141783612, block_id: 6be89872-a7ee-4047-9e78-d13a4719"},{"event":"cmd_output","timestamp":1607098379,"output":"5435, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery"},{"event":"cmd_output","timestamp":1607098379,"output":"_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.050 [info] "},{"event":"cmd_output","timestamp":1607098379,"output":" ppl_id: 3e224b77-e410-4b93-a451-b554c58481de, type: PplRequests, event: persisted source_args for p"},{"event":"cmd_output","timestamp":1607098379,"output":"ipeline: 3e224b77-e410-4b93-a451-b554c58481de, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueri"},{"event":"cmd_output","timestamp":1607098379,"output":"es.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:59.054 [info] ppl_id: 3e224b77-e410-4b93-a451-b554c5848"},{"event":"cmd_output","timestamp":1607098379,"output":"1de, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098379,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.059 [info] ppl_id: 9c00d608-73c6-4792"},{"event":"cmd_output","timestamp":1607098379,"output":"-b0db-c1f141783612, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count:"},{"event":"cmd_output","timestamp":1607098379,"output":" 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.072 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098379,"output":": 3e224b77-e410-4b93-a451-b554c58481de, type: PplSubInits, state: regular_init, event: exit_scheduli"},{"event":"cmd_output","timestamp":1607098379,"output":"ng, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59"},{"event":"cmd_output","timestamp":1607098379,"output":".088 [info] ppl_id: 3e224b77-e410-4b93-a451-b554c58481de, type: PplRequests, event: persisted defin"},{"event":"cmd_output","timestamp":1607098379,"output":"ition for request with request_token: cc819735-a58a-462e-9023-59b1d898e86a, origin: Elixir.Ppl.PplRe"},{"event":"cmd_output","timestamp":1607098379,"output":"quests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:59.094 [info] event: c"},{"event":"cmd_output","timestamp":1607098379,"output":"reated, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098379,"output":"12:59.094 [info] ppl_id: 3e224b77-e410-4b93-a451-b554c58481de, type: PplBlocks, block_index: 0, sta"},{"event":"cmd_output","timestamp":1607098379,"output":"te: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.Regul"},{"event":"cmd_output","timestamp":1607098379,"output":"arInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:59.096 [info] ppl_id: 3e224b77-e410-4b93-a451-b554c"},{"event":"cmd_output","timestamp":1607098379,"output":"58481de, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098379,"output":"origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.104 [info] ppl_id: 3e"},{"event":"cmd_output","timestamp":1607098379,"output":"224b77-e410-4b93-a451-b554c58481de, type: PplBlocks, block_index: 0, state: waiting, event: exit_sch"},{"event":"cmd_output","timestamp":1607098379,"output":"eduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098379,"output":"12:59.105 [info] ppl_id: 3e224b77-e410-4b93-a451-b554c58481de, type: Ppls, state: pending, event: e"},{"event":"cmd_output","timestamp":1607098379,"output":"xit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098379,"output":"2m\n16:12:59.114 [info] ppl_id: 3e224b77-e410-4b93-a451-b554c58481de, type: Ppls, state: queuing, e"},{"event":"cmd_output","timestamp":1607098379,"output":"vent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n"},{"event":"cmd_output","timestamp":1607098379,"output":"\u001b[0m\u001b[22m\n16:12:59.123 [info] ppl_id: 6f92290f-6b00-481c-8985-99576646deeb, type: Ppls, state: run"},{"event":"cmd_output","timestamp":1607098379,"output":"ning, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098379,"output":"90), \n\u001b[0m\u001b[22m\n16:12:59.138 [info] PplBlocks WaitingState STM is scheduling block 0 from pipelin"},{"event":"cmd_output","timestamp":1607098379,"output":"e: \"6f92290f-6b00-481c-8985-99576646deeb\"\n\u001b[0m\u001b[22m\n16:12:59.143 [info] block_id: e396d85a-af12-4"},{"event":"cmd_output","timestamp":1607098379,"output":"608-a17d-3cfd4b6b06f2, type: BlockRequests, event: persisted block run request from ppl 6f92290f-6b0"},{"event":"cmd_output","timestamp":1607098379,"output":"0-481c-8985-99576646deeb for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries."},{"event":"cmd_output","timestamp":1607098379,"output":"process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:59.146 [info] block_id: e396d85a-af12-4608-a17d-3cfd4b6"},{"event":"cmd_output","timestamp":1607098379,"output":"b06f2, type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Blo"},{"event":"cmd_output","timestamp":1607098379,"output":"ck.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:59.148 [info] Block 0 of pipeline w"},{"event":"cmd_output","timestamp":1607098379,"output":"ith id: 6f92290f-6b00-481c-8985-99576646deeb scheduled in block service with id: : \"e396d85a-af12-46"},{"event":"cmd_output","timestamp":1607098379,"output":"08-a17d-3cfd4b6b06f2\"\n\u001b[0m\u001b[22m\n16:12:59.154 [info] ppl_id: 6f92290f-6b00-481c-8985-99576646deeb,"},{"event":"cmd_output","timestamp":1607098379,"output":" type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098379,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.155 [info] block_id: e396d85"},{"event":"cmd_output","timestamp":1607098379,"output":"a-af12-4608-a17d-3cfd4b6b06f2, type: BlockRequests, event: persisted build and sub_ppl details for b"},{"event":"cmd_output","timestamp":1607098379,"output":"lock_request: e396d85a-af12-4608-a17d-3cfd4b6b06f2, origin: Elixir.Block.BlockRequests.Model.BlockRe"},{"event":"cmd_output","timestamp":1607098379,"output":"questsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:59.160 [info] block_id: e396d85a-af12-4608-a1"},{"event":"cmd_output","timestamp":1607098379,"output":"7d-3cfd4b6b06f2, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Bloc"},{"event":"cmd_output","timestamp":1607098379,"output":"k.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:59.161 [info] block_id: e"},{"event":"cmd_output","timestamp":1607098379,"output":"396d85a-af12-4608-a17d-3cfd4b6b06f2, type: Blocks, state: running, event: exit_scheduling, recovery_"},{"event":"cmd_output","timestamp":1607098379,"output":"count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.165 [info] "},{"event":"cmd_output","timestamp":1607098379,"output":"ppl_id: 555bd247-95fe-492b-b551-b50107450870, type: PplRequests, event: persisted source_args for pi"},{"event":"cmd_output","timestamp":1607098379,"output":"peline: 555bd247-95fe-492b-b551-b50107450870, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQuerie"},{"event":"cmd_output","timestamp":1607098379,"output":"s.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:59.167 [info] ppl_id: 555bd247-95fe-492b-b551-b501074508"},{"event":"cmd_output","timestamp":1607098379,"output":"70, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Lo"},{"event":"cmd_output","timestamp":1607098379,"output":"oper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.184 [info] block_id: e396d85a-af12-460"},{"event":"cmd_output","timestamp":1607098379,"output":"8-a17d-3cfd4b6b06f2, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098379,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.193 [info] ppl_id: 555bd247-"},{"event":"cmd_output","timestamp":1607098379,"output":"95fe-492b-b551-b50107450870, type: PplSubInits, state: regular_init, event: exit_scheduling, recover"},{"event":"cmd_output","timestamp":1607098379,"output":"y_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.215 [info]"},{"event":"cmd_output","timestamp":1607098379,"output":" ppl_id: 555bd247-95fe-492b-b551-b50107450870, type: PplRequests, event: persisted definition for r"},{"event":"cmd_output","timestamp":1607098379,"output":"equest with request_token: 3ae82679-927c-4821-94b6-eea1c5847781, origin: Elixir.Ppl.PplRequests.Mode"},{"event":"cmd_output","timestamp":1607098379,"output":"l.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:59.219 [info] Queue persisted: {:"},{"event":"cmd_output","timestamp":1607098379,"output":"ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[202"},{"event":"cmd_output","timestamp":1607098379,"output":"0-12-04 16:12:59.217870], name: \"v1.0.2-.semaphore/semaphore.yml\", organization_id: \"f42f17b2-c747-4"},{"event":"cmd_output","timestamp":1607098379,"output":"7a7-b4fd-33994900688a\", project_id: \"123\", queue_id: \"e4118dcf-c421-4d04-85de-89957d1134d4\", scope: "},{"event":"cmd_output","timestamp":1607098379,"output":"\"project\", updated_at: ~N[2020-12-04 16:12:59.217876], user_generated: false}}\n\u001b[0m\u001b[22m\n16:12:59."},{"event":"cmd_output","timestamp":1607098379,"output":"227 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L10"},{"event":"cmd_output","timestamp":1607098379,"output":"5), \n\u001b[0m\u001b[22m\n16:12:59.227 [info] ppl_id: 555bd247-95fe-492b-b551-b50107450870, type: PplBlocks,"},{"event":"cmd_output","timestamp":1607098379,"output":" block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubIn"},{"event":"cmd_output","timestamp":1607098379,"output":"its.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:59.228 [info] ppl_id: 555bd247-"},{"event":"cmd_output","timestamp":1607098379,"output":"95fe-492b-b551-b50107450870, type: PplSubInits, state: done, result: passed, event: exit_scheduling,"},{"event":"cmd_output","timestamp":1607098379,"output":" recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.23"},{"event":"cmd_output","timestamp":1607098379,"output":"4 [info] ppl_id: 555bd247-95fe-492b-b551-b50107450870, type: Ppls, state: pending, event: exit_sche"},{"event":"cmd_output","timestamp":1607098379,"output":"duling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098379,"output":"2:59.239 [info] ppl_id: 555bd247-95fe-492b-b551-b50107450870, type: PplBlocks, block_index: 0, stat"},{"event":"cmd_output","timestamp":1607098379,"output":"e: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chan"},{"event":"cmd_output","timestamp":1607098379,"output":"ge/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.241 [info] ppl_id: 555bd247-95fe-492b-b551-b50107450870, type: Ppl"},{"event":"cmd_output","timestamp":1607098379,"output":"s, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_sta"},{"event":"cmd_output","timestamp":1607098379,"output":"te_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.248 [info] block_id: e396d85a-af12-4608-a17d-3cfd4b6b06f2, "},{"event":"cmd_output","timestamp":1607098379,"output":"type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl."},{"event":"cmd_output","timestamp":1607098379,"output":"log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.253 [info] block_id: e396d85a-af12-4608-a17d-3cfd4b6"},{"event":"cmd_output","timestamp":1607098379,"output":"b06f2, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.S"},{"event":"cmd_output","timestamp":1607098379,"output":"TM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.255 [info] ppl_id: 555bd247-95fe-492b-b551-b"},{"event":"cmd_output","timestamp":1607098379,"output":"50107450870, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098379,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.263 [info] ppl_id: 6f92290f-6b00-481c"},{"event":"cmd_output","timestamp":1607098379,"output":"-8985-99576646deeb, block_id: e396d85a-af12-4608-a17d-3cfd4b6b06f2, type: PplBlocks, block_index: 0,"},{"event":"cmd_output","timestamp":1607098379,"output":" state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.I"},{"event":"cmd_output","timestamp":1607098379,"output":"mpl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.263 [info] PplBlocks WaitingState STM is schedul"},{"event":"cmd_output","timestamp":1607098379,"output":"ing block 0 from pipeline: \"555bd247-95fe-492b-b551-b50107450870\"\n\u001b[0m\u001b[22m\n16:12:59.272 [info] b"},{"event":"cmd_output","timestamp":1607098379,"output":"lock_id: 527b5806-2aca-4458-b2d0-2dcd623aa3ff, type: BlockRequests, event: persisted block run reque"},{"event":"cmd_output","timestamp":1607098379,"output":"st from ppl 555bd247-95fe-492b-b551-b50107450870 for block 0, origin: Elixir.Block.BlockRequests.Mod"},{"event":"cmd_output","timestamp":1607098379,"output":"el.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:59.274 [info] block_id: 527b580"},{"event":"cmd_output","timestamp":1607098379,"output":"6-2aca-4458-b2d0-2dcd623aa3ff, type: Blocks, state: initializing, event: initializing, recovery_coun"},{"event":"cmd_output","timestamp":1607098379,"output":"t: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:59.276 [info"},{"event":"cmd_output","timestamp":1607098379,"output":"] Block 0 of pipeline with id: 555bd247-95fe-492b-b551-b50107450870 scheduled in block service with"},{"event":"cmd_output","timestamp":1607098379,"output":" id: : \"527b5806-2aca-4458-b2d0-2dcd623aa3ff\"\n\u001b[0m\u001b[22m\n16:12:59.278 [info] ppl_id: 555bd247-95fe"},{"event":"cmd_output","timestamp":1607098379,"output":"-492b-b551-b50107450870, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, re"},{"event":"cmd_output","timestamp":1607098379,"output":"covery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.278 ["},{"event":"cmd_output","timestamp":1607098379,"output":"info] ppl_id: 6f92290f-6b00-481c-8985-99576646deeb, type: Ppls, state: done, result: passed, event:"},{"event":"cmd_output","timestamp":1607098379,"output":" exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098379,"output":"[22m\n16:12:59.281 [info] block_id: 527b5806-2aca-4458-b2d0-2dcd623aa3ff, type: BlockRequests, even"},{"event":"cmd_output","timestamp":1607098379,"output":"t: persisted build and sub_ppl details for block_request: 527b5806-2aca-4458-b2d0-2dcd623aa3ff, orig"},{"event":"cmd_output","timestamp":1607098379,"output":"in: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:59"},{"event":"cmd_output","timestamp":1607098379,"output":".285 [info] ppl_id: 15fb7d2d-e690-416c-8267-ef183a6d8803, type: PplRequests, event: persisted sourc"},{"event":"cmd_output","timestamp":1607098379,"output":"e_args for pipeline: 15fb7d2d-e690-416c-8267-ef183a6d8803, origin: Elixir.Ppl.PplRequests.Model.PplR"},{"event":"cmd_output","timestamp":1607098379,"output":"equestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:59.287 [info] block_id: 527b5806-2aca-4458-"},{"event":"cmd_output","timestamp":1607098379,"output":"b2d0-2dcd623aa3ff, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Bl"},{"event":"cmd_output","timestamp":1607098379,"output":"ock.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:59.288 [info] ppl_id: 1"},{"event":"cmd_output","timestamp":1607098379,"output":"5fb7d2d-e690-416c-8267-ef183a6d8803, type: PplSubInits, state: fetching, event: exit_scheduling, rec"},{"event":"cmd_output","timestamp":1607098379,"output":"overy_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.289 [i"},{"event":"cmd_output","timestamp":1607098379,"output":"nfo] block_id: 527b5806-2aca-4458-b2d0-2dcd623aa3ff, type: Blocks, state: running, event: exit_sche"},{"event":"cmd_output","timestamp":1607098379,"output":"duling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098379,"output":"2:59.309 [info] block_id: 527b5806-2aca-4458-b2d0-2dcd623aa3ff, type: Tasks, state: running, event:"},{"event":"cmd_output","timestamp":1607098379,"output":" exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098379,"output":"[22m\n16:12:59.316 [info] ppl_id: 15fb7d2d-e690-416c-8267-ef183a6d8803, type: PplSubInits, state: r"},{"event":"cmd_output","timestamp":1607098379,"output":"egular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_cha"},{"event":"cmd_output","timestamp":1607098379,"output":"nge/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.338 [info] ppl_id: 15fb7d2d-e690-416c-8267-ef183a6d8803, type: Pp"},{"event":"cmd_output","timestamp":1607098379,"output":"lRequests, event: persisted definition for request with request_token: bee86769-f9c6-4029-b077-2e190"},{"event":"cmd_output","timestamp":1607098379,"output":"493acd4, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098379,"output":"2m\n16:12:59.343 [info] ppl_id: 636d6d71-ad1c-4076-945b-f7cc3f04e68e, type: Ppls, state: running, e"},{"event":"cmd_output","timestamp":1607098379,"output":"vent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n"},{"event":"cmd_output","timestamp":1607098379,"output":"\u001b[0m\u001b[22m\n16:12:59.346 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularIni"},{"event":"cmd_output","timestamp":1607098379,"output":"tState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:59.346 [info] ppl_id: 15fb7d2d-e690-416c-8267-ef183a6d88"},{"event":"cmd_output","timestamp":1607098379,"output":"03, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098379,"output":" Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:59.350 [info"},{"event":"cmd_output","timestamp":1607098379,"output":"] ppl_id: 15fb7d2d-e690-416c-8267-ef183a6d8803, type: PplSubInits, state: done, result: passed, eve"},{"event":"cmd_output","timestamp":1607098379,"output":"nt: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b["},{"event":"cmd_output","timestamp":1607098379,"output":"0m\u001b[22m\n16:12:59.350 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"636d6"},{"event":"cmd_output","timestamp":1607098379,"output":"d71-ad1c-4076-945b-f7cc3f04e68e\"\n\u001b[0m\u001b[22m\n16:12:59.360 [info] ppl_id: 15fb7d2d-e690-416c-8267-ef"},{"event":"cmd_output","timestamp":1607098379,"output":"183a6d8803, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count:"},{"event":"cmd_output","timestamp":1607098379,"output":" 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.365 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098379,"output":": 15fb7d2d-e690-416c-8267-ef183a6d8803, type: Ppls, state: pending, event: exit_scheduling, recovery"},{"event":"cmd_output","timestamp":1607098379,"output":"_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.367 [info] "},{"event":"cmd_output","timestamp":1607098379,"output":" block_id: b6eba2f6-3d03-42d3-b259-ffc380bf44ae, type: BlockRequests, event: persisted block run req"},{"event":"cmd_output","timestamp":1607098379,"output":"uest from ppl 636d6d71-ad1c-4076-945b-f7cc3f04e68e for block 0, origin: Elixir.Block.BlockRequests.M"},{"event":"cmd_output","timestamp":1607098379,"output":"odel.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:59.370 [info] block_id: 527b5"},{"event":"cmd_output","timestamp":1607098379,"output":"806-2aca-4458-b2d0-2dcd623aa3ff, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0"},{"event":"cmd_output","timestamp":1607098379,"output":", origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.372 [info] block_id"},{"event":"cmd_output","timestamp":1607098379,"output":": b6eba2f6-3d03-42d3-b259-ffc380bf44ae, type: Blocks, state: initializing, event: initializing, reco"},{"event":"cmd_output","timestamp":1607098379,"output":"very_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:59."},{"event":"cmd_output","timestamp":1607098379,"output":"377 [info] Block 0 of pipeline with id: 636d6d71-ad1c-4076-945b-f7cc3f04e68e scheduled in block ser"},{"event":"cmd_output","timestamp":1607098379,"output":"vice with id: : \"b6eba2f6-3d03-42d3-b259-ffc380bf44ae\"\n\u001b[0m\u001b[22m\n16:12:59.379 [info] ppl_id: 15fb"},{"event":"cmd_output","timestamp":1607098379,"output":"7d2d-e690-416c-8267-ef183a6d8803, type: Ppls, state: queuing, event: exit_scheduling, recovery_count"},{"event":"cmd_output","timestamp":1607098379,"output":": 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.380 [info] block"},{"event":"cmd_output","timestamp":1607098379,"output":"_id: b6eba2f6-3d03-42d3-b259-ffc380bf44ae, type: BlockRequests, event: persisted build and sub_ppl d"},{"event":"cmd_output","timestamp":1607098379,"output":"etails for block_request: b6eba2f6-3d03-42d3-b259-ffc380bf44ae, origin: Elixir.Block.BlockRequests.M"},{"event":"cmd_output","timestamp":1607098379,"output":"odel.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:59.382 [info] block_id: 527b5806-"},{"event":"cmd_output","timestamp":1607098379,"output":"2aca-4458-b2d0-2dcd623aa3ff, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098379,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.384 [info] ppl_id: 636"},{"event":"cmd_output","timestamp":1607098379,"output":"d6d71-ad1c-4076-945b-f7cc3f04e68e, type: PplBlocks, block_index: 0, state: running, event: exit_sche"},{"event":"cmd_output","timestamp":1607098379,"output":"duling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098379,"output":"2:59.386 [info] block_id: b6eba2f6-3d03-42d3-b259-ffc380bf44ae, type: Tasks, state: pending, event:"},{"event":"cmd_output","timestamp":1607098379,"output":" created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167"},{"event":"cmd_output","timestamp":1607098379,"output":"), \n\u001b[0m\u001b[22m\n16:12:59.389 [info] block_id: b6eba2f6-3d03-42d3-b259-ffc380bf44ae, type: Blocks, s"},{"event":"cmd_output","timestamp":1607098379,"output":"tate: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098379,"output":"hange/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.394 [info] ppl_id: 555bd247-95fe-492b-b551-b50107450870, block_"},{"event":"cmd_output","timestamp":1607098379,"output":"id: 527b5806-2aca-4458-b2d0-2dcd623aa3ff, type: PplBlocks, block_index: 0, state: done, result: pass"},{"event":"cmd_output","timestamp":1607098379,"output":"ed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90"},{"event":"cmd_output","timestamp":1607098379,"output":"), \n\u001b[0m\u001b[22m\n16:12:59.408 [info] ppl_id: 66cf8618-cc15-446d-a325-02c829a414ef, type: PplRequests"},{"event":"cmd_output","timestamp":1607098379,"output":", event: persisted source_args for pipeline: 66cf8618-cc15-446d-a325-02c829a414ef, origin: Elixir.Pp"},{"event":"cmd_output","timestamp":1607098379,"output":"l.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:59.411 [info] ppl_i"},{"event":"cmd_output","timestamp":1607098379,"output":"d: 66cf8618-cc15-446d-a325-02c829a414ef, type: PplSubInits, state: fetching, event: exit_scheduling,"},{"event":"cmd_output","timestamp":1607098379,"output":" recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.41"},{"event":"cmd_output","timestamp":1607098379,"output":"8 [info] block_id: b6eba2f6-3d03-42d3-b259-ffc380bf44ae, type: Tasks, state: running, event: exit_s"},{"event":"cmd_output","timestamp":1607098379,"output":"cheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098379,"output":"6:12:59.425 [info] ppl_id: 555bd247-95fe-492b-b551-b50107450870, type: Ppls, state: done, result: p"},{"event":"cmd_output","timestamp":1607098379,"output":"assed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1("},{"event":"cmd_output","timestamp":1607098379,"output":"L90), \n\u001b[0m\u001b[22m\n16:12:59.447 [info] ppl_id: 66cf8618-cc15-446d-a325-02c829a414ef, type: PplSubIn"},{"event":"cmd_output","timestamp":1607098379,"output":"its, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl."},{"event":"cmd_output","timestamp":1607098379,"output":"log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.459 [info] ppl_id: 15fb7d2d-e690-416c-8267-ef183a6d8"},{"event":"cmd_output","timestamp":1607098379,"output":"803, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.ST"},{"event":"cmd_output","timestamp":1607098379,"output":"M.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.464 [info] PplBlocks WaitingState STM is sche"},{"event":"cmd_output","timestamp":1607098379,"output":"duling block 0 from pipeline: \"15fb7d2d-e690-416c-8267-ef183a6d8803\"\n\u001b[0m\u001b[22m\n16:12:59.467 [info]"},{"event":"cmd_output","timestamp":1607098379,"output":" block_id: bce086a9-8237-4f8f-aecf-c2fd0ee00860, type: BlockRequests, event: persisted block run re"},{"event":"cmd_output","timestamp":1607098379,"output":"quest from ppl 15fb7d2d-e690-416c-8267-ef183a6d8803 for block 0, origin: Elixir.Block.BlockRequests."},{"event":"cmd_output","timestamp":1607098379,"output":"Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:59.468 [info] block_id: bce0"},{"event":"cmd_output","timestamp":1607098379,"output":"86a9-8237-4f8f-aecf-c2fd0ee00860, type: Blocks, state: initializing, event: initializing, recovery_c"},{"event":"cmd_output","timestamp":1607098379,"output":"ount: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:59.473 [i"},{"event":"cmd_output","timestamp":1607098379,"output":"nfo] ppl_id: 66cf8618-cc15-446d-a325-02c829a414ef, type: PplRequests, event: persisted definition f"},{"event":"cmd_output","timestamp":1607098379,"output":"or request with request_token: 914f5a13-5d45-4602-9eff-b4e2f8f4c45d, origin: Elixir.Ppl.PplRequests."},{"event":"cmd_output","timestamp":1607098379,"output":"Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:59.473 [info] Block 0 of pipe"},{"event":"cmd_output","timestamp":1607098379,"output":"line with id: 15fb7d2d-e690-416c-8267-ef183a6d8803 scheduled in block service with id: : \"bce086a9-8"},{"event":"cmd_output","timestamp":1607098379,"output":"237-4f8f-aecf-c2fd0ee00860\"\n\u001b[0m\u001b[22m\n16:12:59.478 [info] ppl_id: 15fb7d2d-e690-416c-8267-ef183a6"},{"event":"cmd_output","timestamp":1607098379,"output":"d8803, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098379,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.478 [info] block_id: b"},{"event":"cmd_output","timestamp":1607098379,"output":"ce086a9-8237-4f8f-aecf-c2fd0ee00860, type: BlockRequests, event: persisted build and sub_ppl details"},{"event":"cmd_output","timestamp":1607098379,"output":" for block_request: bce086a9-8237-4f8f-aecf-c2fd0ee00860, origin: Elixir.Block.BlockRequests.Model.B"},{"event":"cmd_output","timestamp":1607098379,"output":"lockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:59.480 [info] block_id: bce086a9-8237-4"},{"event":"cmd_output","timestamp":1607098379,"output":"f8f-aecf-c2fd0ee00860, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098379,"output":"r.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:59.482 [info] block"},{"event":"cmd_output","timestamp":1607098379,"output":"_id: bce086a9-8237-4f8f-aecf-c2fd0ee00860, type: Blocks, state: running, event: exit_scheduling, rec"},{"event":"cmd_output","timestamp":1607098379,"output":"overy_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.485 [i"},{"event":"cmd_output","timestamp":1607098379,"output":"nfo] block_id: b6eba2f6-3d03-42d3-b259-ffc380bf44ae, type: Tasks, state: done, event: exit_scheduli"},{"event":"cmd_output","timestamp":1607098379,"output":"ng, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59"},{"event":"cmd_output","timestamp":1607098379,"output":".486 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L1"},{"event":"cmd_output","timestamp":1607098379,"output":"05), \n\u001b[0m\u001b[22m\n16:12:59.486 [info] ppl_id: 66cf8618-cc15-446d-a325-02c829a414ef, type: PplBlocks"},{"event":"cmd_output","timestamp":1607098379,"output":", block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubI"},{"event":"cmd_output","timestamp":1607098379,"output":"nits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:59.489 [info] ppl_id: 66cf8618"},{"event":"cmd_output","timestamp":1607098379,"output":"-cc15-446d-a325-02c829a414ef, type: PplSubInits, state: done, result: passed, event: exit_scheduling"},{"event":"cmd_output","timestamp":1607098379,"output":", recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.5"},{"event":"cmd_output","timestamp":1607098379,"output":"08 [info] block_id: b6eba2f6-3d03-42d3-b259-ffc380bf44ae, type: Blocks, state: done, event: exit_sc"},{"event":"cmd_output","timestamp":1607098379,"output":"heduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098379,"output":":12:59.511 [info] block_id: bce086a9-8237-4f8f-aecf-c2fd0ee00860, type: Tasks, state: running, even"},{"event":"cmd_output","timestamp":1607098379,"output":"t: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098379,"output":"m\u001b[22m\n16:12:59.514 [info] ppl_id: 66cf8618-cc15-446d-a325-02c829a414ef, type: PplBlocks, block_in"},{"event":"cmd_output","timestamp":1607098379,"output":"dex: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.lo"},{"event":"cmd_output","timestamp":1607098379,"output":"g_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.517 [info] ppl_id: 636d6d71-ad1c-4076-945b-f7cc3f04e68"},{"event":"cmd_output","timestamp":1607098379,"output":"e, block_id: b6eba2f6-3d03-42d3-b259-ffc380bf44ae, type: PplBlocks, block_index: 0, state: done, res"},{"event":"cmd_output","timestamp":1607098379,"output":"ult: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_cha"},{"event":"cmd_output","timestamp":1607098379,"output":"nge/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.526 [info] ppl_id: 66cf8618-cc15-446d-a325-02c829a414ef, type: Pp"},{"event":"cmd_output","timestamp":1607098379,"output":"ls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_st"},{"event":"cmd_output","timestamp":1607098379,"output":"ate_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.532 [info] ppl_id: 692f2434-5586-43b9-88b5-535c2c1e62c1, t"},{"event":"cmd_output","timestamp":1607098379,"output":"ype: PplRequests, event: persisted source_args for pipeline: 692f2434-5586-43b9-88b5-535c2c1e62c1, o"},{"event":"cmd_output","timestamp":1607098379,"output":"rigin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:59.5"},{"event":"cmd_output","timestamp":1607098379,"output":"35 [info] ppl_id: 692f2434-5586-43b9-88b5-535c2c1e62c1, type: PplSubInits, state: fetching, event: "},{"event":"cmd_output","timestamp":1607098379,"output":"exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098379,"output":"22m\n16:12:59.542 [info] ppl_id: 66cf8618-cc15-446d-a325-02c829a414ef, type: Ppls, state: queuing, "},{"event":"cmd_output","timestamp":1607098379,"output":"event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \r"},{"event":"cmd_output","timestamp":1607098379,"output":"\n\u001b[0m\u001b[22m\n16:12:59.545 [info] ppl_id: 636d6d71-ad1c-4076-945b-f7cc3f04e68e, type: Ppls, state: do"},{"event":"cmd_output","timestamp":1607098379,"output":"ne, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_st"},{"event":"cmd_output","timestamp":1607098379,"output":"ate_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.561 [info] ppl_id: 3e224b77-e410-4b93-a451-b554c58481de, t"},{"event":"cmd_output","timestamp":1607098379,"output":"ype: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl"},{"event":"cmd_output","timestamp":1607098379,"output":".log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.569 [info] PplBlocks WaitingState STM is scheduling"},{"event":"cmd_output","timestamp":1607098379,"output":" block 0 from pipeline: \"3e224b77-e410-4b93-a451-b554c58481de\"\n\u001b[0m\u001b[22m\n16:12:59.570 [info] ppl_"},{"event":"cmd_output","timestamp":1607098379,"output":"id: 692f2434-5586-43b9-88b5-535c2c1e62c1, type: PplSubInits, state: regular_init, event: exit_schedu"},{"event":"cmd_output","timestamp":1607098379,"output":"ling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:"},{"event":"cmd_output","timestamp":1607098379,"output":"59.576 [info] block_id: 9b6dd8b4-0433-4249-b980-a6388190a4bd, type: BlockRequests, event: persisted"},{"event":"cmd_output","timestamp":1607098379,"output":" block run request from ppl 3e224b77-e410-4b93-a451-b554c58481de for block 0, origin: Elixir.Block.B"},{"event":"cmd_output","timestamp":1607098379,"output":"lockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:59.580 [info] b"},{"event":"cmd_output","timestamp":1607098379,"output":"lock_id: 9b6dd8b4-0433-4249-b980-a6388190a4bd, type: Blocks, state: initializing, event: initializin"},{"event":"cmd_output","timestamp":1607098379,"output":"g, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098379,"output":":12:59.582 [info] Block 0 of pipeline with id: 3e224b77-e410-4b93-a451-b554c58481de scheduled in bl"},{"event":"cmd_output","timestamp":1607098379,"output":"ock service with id: : \"9b6dd8b4-0433-4249-b980-a6388190a4bd\"\n\u001b[0m\u001b[22m\n16:12:59.586 [info] ppl_i"},{"event":"cmd_output","timestamp":1607098379,"output":"d: 3e224b77-e410-4b93-a451-b554c58481de, type: PplBlocks, block_index: 0, state: running, event: exi"},{"event":"cmd_output","timestamp":1607098379,"output":"t_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098379,"output":"\n16:12:59.589 [info] block_id: 9b6dd8b4-0433-4249-b980-a6388190a4bd, type: BlockRequests, event: p"},{"event":"cmd_output","timestamp":1607098379,"output":"ersisted build and sub_ppl details for block_request: 9b6dd8b4-0433-4249-b980-a6388190a4bd, origin: "},{"event":"cmd_output","timestamp":1607098379,"output":"Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:59.591"},{"event":"cmd_output","timestamp":1607098379,"output":" [info] block_id: 9b6dd8b4-0433-4249-b980-a6388190a4bd, type: Tasks, state: pending, event: created"},{"event":"cmd_output","timestamp":1607098379,"output":", recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098379,"output":"m\u001b[22m\n16:12:59.594 [info] block_id: 9b6dd8b4-0433-4249-b980-a6388190a4bd, type: Blocks, state: ru"},{"event":"cmd_output","timestamp":1607098379,"output":"nning, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1("},{"event":"cmd_output","timestamp":1607098379,"output":"L90), \n\u001b[0m\u001b[22m\n16:12:59.603 [info] block_id: bce086a9-8237-4f8f-aecf-c2fd0ee00860, type: Tasks,"},{"event":"cmd_output","timestamp":1607098379,"output":" state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_ch"},{"event":"cmd_output","timestamp":1607098379,"output":"ange/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.611 [info] block_id: bce086a9-8237-4f8f-aecf-c2fd0ee00860, type:"},{"event":"cmd_output","timestamp":1607098379,"output":" Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_"},{"event":"cmd_output","timestamp":1607098379,"output":"state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.615 [info] block_id: 9b6dd8b4-0433-4249-b980-a6388190a4b"},{"event":"cmd_output","timestamp":1607098379,"output":"d, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM"},{"event":"cmd_output","timestamp":1607098379,"output":".Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.620 [info] ppl_id: 15fb7d2d-e690-416c-8267-ef1"},{"event":"cmd_output","timestamp":1607098379,"output":"83a6d8803, block_id: bce086a9-8237-4f8f-aecf-c2fd0ee00860, type: PplBlocks, block_index: 0, state: d"},{"event":"cmd_output","timestamp":1607098379,"output":"one, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_s"},{"event":"cmd_output","timestamp":1607098379,"output":"tate_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.621 [info] ppl_id: 692f2434-5586-43b9-88b5-535c2c1e62c1, "},{"event":"cmd_output","timestamp":1607098379,"output":"type: PplRequests, event: persisted definition for request with request_token: eeb09212-7a93-4d7e-bd"},{"event":"cmd_output","timestamp":1607098379,"output":"33-161e29fc0caa, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \r"},{"event":"cmd_output","timestamp":1607098379,"output":"\n\u001b[0m\u001b[22m\n16:12:59.626 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularIn"},{"event":"cmd_output","timestamp":1607098379,"output":"itState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:59.626 [info] ppl_id: 692f2434-5586-43b9-88b5-535c2c1e6"},{"event":"cmd_output","timestamp":1607098379,"output":"2c1, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098379,"output":": Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:59.628 [inf"},{"event":"cmd_output","timestamp":1607098379,"output":"o] ppl_id: 692f2434-5586-43b9-88b5-535c2c1e62c1, type: PplSubInits, state: done, result: passed, ev"},{"event":"cmd_output","timestamp":1607098379,"output":"ent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b"},{"event":"cmd_output","timestamp":1607098379,"output":"[0m\u001b[22m\n16:12:59.636 [info] ppl_id: 692f2434-5586-43b9-88b5-535c2c1e62c1, type: Ppls, state: pend"},{"event":"cmd_output","timestamp":1607098379,"output":"ing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L9"},{"event":"cmd_output","timestamp":1607098379,"output":"0), \n\u001b[0m\u001b[22m\n16:12:59.636 [info] ppl_id: 692f2434-5586-43b9-88b5-535c2c1e62c1, type: PplBlocks,"},{"event":"cmd_output","timestamp":1607098379,"output":" block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.ST"},{"event":"cmd_output","timestamp":1607098379,"output":"M.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.641 [info] ppl_id: 15fb7d2d-e690-416c-8267-ef"},{"event":"cmd_output","timestamp":1607098379,"output":"183a6d8803, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098379,"output":"in: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.648 [info] ppl_id: 21d7ea"},{"event":"cmd_output","timestamp":1607098379,"output":"aa-0972-4693-9923-1360a28f18e0, type: PplRequests, event: persisted source_args for pipeline: 21d7ea"},{"event":"cmd_output","timestamp":1607098379,"output":"aa-0972-4693-9923-1360a28f18e0, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_sourc"},{"event":"cmd_output","timestamp":1607098379,"output":"e/2(L89), \n\u001b[0m\u001b[22m\n16:12:59.650 [info] ppl_id: 692f2434-5586-43b9-88b5-535c2c1e62c1, type: Ppls"},{"event":"cmd_output","timestamp":1607098379,"output":", state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_stat"},{"event":"cmd_output","timestamp":1607098379,"output":"e_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.650 [info] ppl_id: 21d7eaaa-0972-4693-9923-1360a28f18e0, typ"},{"event":"cmd_output","timestamp":1607098379,"output":"e: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.ST"},{"event":"cmd_output","timestamp":1607098379,"output":"M.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.660 [info] ppl_id: 66cf8618-cc15-446d-a325-02"},{"event":"cmd_output","timestamp":1607098379,"output":"c829a414ef, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Lo"},{"event":"cmd_output","timestamp":1607098379,"output":"oper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.666 [info] PplBlocks WaitingState STM "},{"event":"cmd_output","timestamp":1607098379,"output":"is scheduling block 0 from pipeline: \"66cf8618-cc15-446d-a325-02c829a414ef\"\n\u001b[0m\u001b[22m\n16:12:59.670"},{"event":"cmd_output","timestamp":1607098379,"output":" [info] block_id: 0f67391f-8828-4eb5-86d1-b16f7d0df4e6, type: BlockRequests, event: persisted block"},{"event":"cmd_output","timestamp":1607098379,"output":" run request from ppl 66cf8618-cc15-446d-a325-02c829a414ef for block 0, origin: Elixir.Block.BlockRe"},{"event":"cmd_output","timestamp":1607098379,"output":"quests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:59.672 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098379,"output":" 21d7eaaa-0972-4693-9923-1360a28f18e0, type: PplSubInits, state: regular_init, event: exit_schedulin"},{"event":"cmd_output","timestamp":1607098379,"output":"g, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59."},{"event":"cmd_output","timestamp":1607098379,"output":"673 [info] block_id: 0f67391f-8828-4eb5-86d1-b16f7d0df4e6, type: Blocks, state: initializing, event"},{"event":"cmd_output","timestamp":1607098379,"output":": initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n"},{"event":"cmd_output","timestamp":1607098379,"output":"\u001b[0m\u001b[22m\n16:12:59.675 [info] Block 0 of pipeline with id: 66cf8618-cc15-446d-a325-02c829a414ef sc"},{"event":"cmd_output","timestamp":1607098379,"output":"heduled in block service with id: : \"0f67391f-8828-4eb5-86d1-b16f7d0df4e6\"\n\u001b[0m\u001b[22m\n16:12:59.678 "},{"event":"cmd_output","timestamp":1607098379,"output":"[info] ppl_id: 66cf8618-cc15-446d-a325-02c829a414ef, type: PplBlocks, block_index: 0, state: runnin"},{"event":"cmd_output","timestamp":1607098379,"output":"g, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90)"},{"event":"cmd_output","timestamp":1607098379,"output":", \n\u001b[0m\u001b[22m\n16:12:59.683 [info] block_id: 0f67391f-8828-4eb5-86d1-b16f7d0df4e6, type: BlockReque"},{"event":"cmd_output","timestamp":1607098379,"output":"sts, event: persisted build and sub_ppl details for block_request: 0f67391f-8828-4eb5-86d1-b16f7d0df"},{"event":"cmd_output","timestamp":1607098379,"output":"4e6, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098379,"output":"\n16:12:59.685 [info] block_id: 0f67391f-8828-4eb5-86d1-b16f7d0df4e6, type: Tasks, state: pending, e"},{"event":"cmd_output","timestamp":1607098379,"output":"vent: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1"},{"event":"cmd_output","timestamp":1607098379,"output":"(L167), \n\u001b[0m\u001b[22m\n16:12:59.687 [info] block_id: 0f67391f-8828-4eb5-86d1-b16f7d0df4e6, type: Bloc"},{"event":"cmd_output","timestamp":1607098379,"output":"ks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_st"},{"event":"cmd_output","timestamp":1607098379,"output":"ate_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.703 [info] block_id: 0f67391f-8828-4eb5-86d1-b16f7d0df4e6,"},{"event":"cmd_output","timestamp":1607098379,"output":" type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.I"},{"event":"cmd_output","timestamp":1607098379,"output":"mpl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.706 [info] ppl_id: 21d7eaaa-0972-4693-9923-1360a"},{"event":"cmd_output","timestamp":1607098379,"output":"28f18e0, type: PplRequests, event: persisted definition for request with request_token: 7903b0ad-2d9"},{"event":"cmd_output","timestamp":1607098379,"output":"8-4227-8193-76e7903378b9, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/"},{"event":"cmd_output","timestamp":1607098379,"output":"3(L76), \n\u001b[0m\u001b[22m\n16:12:59.712 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler."},{"event":"cmd_output","timestamp":1607098379,"output":"RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:59.712 [info] ppl_id: 21d7eaaa-0972-4693-9923-"},{"event":"cmd_output","timestamp":1607098379,"output":"1360a28f18e0, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: "},{"event":"cmd_output","timestamp":1607098379,"output":"0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:59"},{"event":"cmd_output","timestamp":1607098379,"output":".715 [info] ppl_id: 21d7eaaa-0972-4693-9923-1360a28f18e0, type: PplSubInits, state: done, result: p"},{"event":"cmd_output","timestamp":1607098379,"output":"assed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1("},{"event":"cmd_output","timestamp":1607098379,"output":"L90), \n\u001b[0m\u001b[22m\n16:12:59.716 [info] block_id: 9b6dd8b4-0433-4249-b980-a6388190a4bd, type: Tasks,"},{"event":"cmd_output","timestamp":1607098379,"output":" state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_ch"},{"event":"cmd_output","timestamp":1607098379,"output":"ange/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.722 [info] ppl_id: 21d7eaaa-0972-4693-9923-1360a28f18e0, type: P"},{"event":"cmd_output","timestamp":1607098379,"output":"plBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098379,"output":"Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.723 [info] block_id: 9b6dd8b4-0433-4"},{"event":"cmd_output","timestamp":1607098379,"output":"249-b980-a6388190a4bd, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098379,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.724 [info] ppl_id: 21d7eaaa-"},{"event":"cmd_output","timestamp":1607098379,"output":"0972-4693-9923-1360a28f18e0, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098379,"output":"origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.731 [info] ppl_id: 3e"},{"event":"cmd_output","timestamp":1607098379,"output":"224b77-e410-4b93-a451-b554c58481de, block_id: 9b6dd8b4-0433-4249-b980-a6388190a4bd, type: PplBlocks,"},{"event":"cmd_output","timestamp":1607098379,"output":" block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098379,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.738 [info] ppl_id: 21d7eaaa-0972"},{"event":"cmd_output","timestamp":1607098379,"output":"-4693-9923-1360a28f18e0, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098379,"output":"in: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.747 [info] ppl_id: 3e224b"},{"event":"cmd_output","timestamp":1607098379,"output":"77-e410-4b93-a451-b554c58481de, type: Ppls, state: done, result: passed, event: exit_scheduling, rec"},{"event":"cmd_output","timestamp":1607098379,"output":"overy_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.758 [i"},{"event":"cmd_output","timestamp":1607098379,"output":"nfo] ppl_id: 748a8c2b-ae18-451e-b99a-0dbba82309c5, type: PplRequests, event: persisted source_args "},{"event":"cmd_output","timestamp":1607098379,"output":"for pipeline: 748a8c2b-ae18-451e-b99a-0dbba82309c5, origin: Elixir.Ppl.PplRequests.Model.PplRequests"},{"event":"cmd_output","timestamp":1607098379,"output":"Queries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:59.762 [info] ppl_id: 748a8c2b-ae18-451e-b99a-0dbb"},{"event":"cmd_output","timestamp":1607098379,"output":"a82309c5, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098379,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.778 [info] ppl_id: 748a8c2b-ae18"},{"event":"cmd_output","timestamp":1607098379,"output":"-451e-b99a-0dbba82309c5, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_co"},{"event":"cmd_output","timestamp":1607098379,"output":"unt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.803 [info] pp"},{"event":"cmd_output","timestamp":1607098379,"output":"l_id: 748a8c2b-ae18-451e-b99a-0dbba82309c5, type: PplRequests, event: persisted definition for reque"},{"event":"cmd_output","timestamp":1607098379,"output":"st with request_token: d817da66-4877-4040-a0e6-03e35a2451a2, origin: Elixir.Ppl.PplRequests.Model.Pp"},{"event":"cmd_output","timestamp":1607098379,"output":"lRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:59.806 [info] Queue persisted: {:ok, "},{"event":"cmd_output","timestamp":1607098379,"output":"%Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12"},{"event":"cmd_output","timestamp":1607098379,"output":"-04 16:12:59.805372], name: \"123-.semaphore/semaphore.yml\", organization_id: \"f4ca51db-9602-4ede-b6a"},{"event":"cmd_output","timestamp":1607098379,"output":"7-4db66db412a1\", project_id: \"123\", queue_id: \"e0ae5dc9-7492-4850-9ca4-7e57ab65bb2d\", scope: \"projec"},{"event":"cmd_output","timestamp":1607098379,"output":"t\", updated_at: ~N[2020-12-04 16:12:59.805381], user_generated: false}}\n\u001b[0m\u001b[22m\n16:12:59.809 [in"},{"event":"cmd_output","timestamp":1607098379,"output":"fo] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b"},{"event":"cmd_output","timestamp":1607098379,"output":"[0m\u001b[22m\n16:12:59.809 [info] ppl_id: 748a8c2b-ae18-451e-b99a-0dbba82309c5, type: PplBlocks, block_"},{"event":"cmd_output","timestamp":1607098379,"output":"index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STM"},{"event":"cmd_output","timestamp":1607098379,"output":"Handler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:59.812 [info] ppl_id: 748a8c2b-ae18-45"},{"event":"cmd_output","timestamp":1607098379,"output":"1e-b99a-0dbba82309c5, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recove"},{"event":"cmd_output","timestamp":1607098379,"output":"ry_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.818 [info"},{"event":"cmd_output","timestamp":1607098379,"output":"] ppl_id: 748a8c2b-ae18-451e-b99a-0dbba82309c5, type: Ppls, state: pending, event: exit_scheduling,"},{"event":"cmd_output","timestamp":1607098379,"output":" recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.81"},{"event":"cmd_output","timestamp":1607098379,"output":"9 [info] ppl_id: 748a8c2b-ae18-451e-b99a-0dbba82309c5, type: PplBlocks, block_index: 0, state: wait"},{"event":"cmd_output","timestamp":1607098379,"output":"ing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L9"},{"event":"cmd_output","timestamp":1607098379,"output":"0), \n\u001b[0m\u001b[22m\n16:12:59.826 [info] ppl_id: 748a8c2b-ae18-451e-b99a-0dbba82309c5, type: Ppls, stat"},{"event":"cmd_output","timestamp":1607098379,"output":"e: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chan"},{"event":"cmd_output","timestamp":1607098379,"output":"ge/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.831 [info] block_id: 0f67391f-8828-4eb5-86d1-b16f7d0df4e6, type: T"},{"event":"cmd_output","timestamp":1607098379,"output":"asks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_sta"},{"event":"cmd_output","timestamp":1607098379,"output":"te_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.837 [info] block_id: 0f67391f-8828-4eb5-86d1-b16f7d0df4e6, "},{"event":"cmd_output","timestamp":1607098379,"output":"type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl"},{"event":"cmd_output","timestamp":1607098379,"output":".log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.841 [info] ppl_id: 748a8c2b-ae18-451e-b99a-0dbba823"},{"event":"cmd_output","timestamp":1607098379,"output":"09c5, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.S"},{"event":"cmd_output","timestamp":1607098379,"output":"TM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.850 [info] PplBlocks WaitingState STM is sch"},{"event":"cmd_output","timestamp":1607098379,"output":"eduling block 0 from pipeline: \"748a8c2b-ae18-451e-b99a-0dbba82309c5\"\n\u001b[0m\u001b[22m\n16:12:59.850 [info"},{"event":"cmd_output","timestamp":1607098379,"output":"] ppl_id: 66cf8618-cc15-446d-a325-02c829a414ef, block_id: 0f67391f-8828-4eb5-86d1-b16f7d0df4e6, typ"},{"event":"cmd_output","timestamp":1607098379,"output":"e: PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0"},{"event":"cmd_output","timestamp":1607098379,"output":", origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.855 [info] block_id"},{"event":"cmd_output","timestamp":1607098379,"output":": f422837b-da2c-48ba-9380-47a86808680b, type: BlockRequests, event: persisted block run request from"},{"event":"cmd_output","timestamp":1607098379,"output":" ppl 748a8c2b-ae18-451e-b99a-0dbba82309c5 for block 0, origin: Elixir.Block.BlockRequests.Model.Bloc"},{"event":"cmd_output","timestamp":1607098379,"output":"kRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:59.856 [info] block_id: f422837b-da2c-"},{"event":"cmd_output","timestamp":1607098379,"output":"48ba-9380-47a86808680b, type: Blocks, state: initializing, event: initializing, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098379,"output":"rigin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:59.859 [info] Bloc"},{"event":"cmd_output","timestamp":1607098379,"output":"k 0 of pipeline with id: 748a8c2b-ae18-451e-b99a-0dbba82309c5 scheduled in block service with id: : "},{"event":"cmd_output","timestamp":1607098379,"output":"\"f422837b-da2c-48ba-9380-47a86808680b\"\n\u001b[0m\u001b[22m\n16:12:59.862 [info] ppl_id: 748a8c2b-ae18-451e-b"},{"event":"cmd_output","timestamp":1607098379,"output":"99a-0dbba82309c5, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_"},{"event":"cmd_output","timestamp":1607098379,"output":"count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.864 [info] "},{"event":"cmd_output","timestamp":1607098379,"output":"ppl_id: 66cf8618-cc15-446d-a325-02c829a414ef, type: Ppls, state: done, result: passed, event: exit_s"},{"event":"cmd_output","timestamp":1607098379,"output":"cheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098379,"output":"6:12:59.867 [info] block_id: f422837b-da2c-48ba-9380-47a86808680b, type: BlockRequests, event: pers"},{"event":"cmd_output","timestamp":1607098379,"output":"isted build and sub_ppl details for block_request: f422837b-da2c-48ba-9380-47a86808680b, origin: Eli"},{"event":"cmd_output","timestamp":1607098379,"output":"xir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:59.869 [i"},{"event":"cmd_output","timestamp":1607098379,"output":"nfo] block_id: f422837b-da2c-48ba-9380-47a86808680b, type: Tasks, state: pending, event: created, r"},{"event":"cmd_output","timestamp":1607098379,"output":"ecovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098379,"output":"22m\n16:12:59.871 [info] block_id: f422837b-da2c-48ba-9380-47a86808680b, type: Blocks, state: runni"},{"event":"cmd_output","timestamp":1607098379,"output":"ng, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90"},{"event":"cmd_output","timestamp":1607098379,"output":"), \n\u001b[0m\u001b[22m\n16:12:59.874 [info] ppl_id: a8a3b759-3ce4-4e4c-ada8-b10b3c509f8a, type: PplRequests"},{"event":"cmd_output","timestamp":1607098379,"output":", event: persisted source_args for pipeline: a8a3b759-3ce4-4e4c-ada8-b10b3c509f8a, origin: Elixir.Pp"},{"event":"cmd_output","timestamp":1607098379,"output":"l.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:12:59.875 [info] ppl_i"},{"event":"cmd_output","timestamp":1607098379,"output":"d: a8a3b759-3ce4-4e4c-ada8-b10b3c509f8a, type: PplSubInits, state: fetching, event: exit_scheduling,"},{"event":"cmd_output","timestamp":1607098379,"output":" recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.88"},{"event":"cmd_output","timestamp":1607098379,"output":"9 [info] block_id: f422837b-da2c-48ba-9380-47a86808680b, type: Tasks, state: running, event: exit_s"},{"event":"cmd_output","timestamp":1607098379,"output":"cheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098379,"output":"6:12:59.895 [info] ppl_id: 692f2434-5586-43b9-88b5-535c2c1e62c1, type: Ppls, state: running, event:"},{"event":"cmd_output","timestamp":1607098379,"output":" exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098379,"output":"[22m\n16:12:59.902 [info] ppl_id: a8a3b759-3ce4-4e4c-ada8-b10b3c509f8a, type: PplSubInits, state: r"},{"event":"cmd_output","timestamp":1607098379,"output":"egular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_cha"},{"event":"cmd_output","timestamp":1607098379,"output":"nge/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.902 [info] PplBlocks WaitingState STM is scheduling block 0 from "},{"event":"cmd_output","timestamp":1607098379,"output":"pipeline: \"692f2434-5586-43b9-88b5-535c2c1e62c1\"\n\u001b[0m\u001b[22m\n16:12:59.907 [info] block_id: 2e3a8b61"},{"event":"cmd_output","timestamp":1607098379,"output":"-b81f-4160-8634-bdb5a63aa2e5, type: BlockRequests, event: persisted block run request from ppl 692f2"},{"event":"cmd_output","timestamp":1607098379,"output":"434-5586-43b9-88b5-535c2c1e62c1 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQ"},{"event":"cmd_output","timestamp":1607098379,"output":"ueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:12:59.909 [info] block_id: 2e3a8b61-b81f-4160-8634-"},{"event":"cmd_output","timestamp":1607098379,"output":"bdb5a63aa2e5, type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098379,"output":"xir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:12:59.910 [info] Block 0 of pip"},{"event":"cmd_output","timestamp":1607098379,"output":"eline with id: 692f2434-5586-43b9-88b5-535c2c1e62c1 scheduled in block service with id: : \"2e3a8b61-"},{"event":"cmd_output","timestamp":1607098379,"output":"b81f-4160-8634-bdb5a63aa2e5\"\n\u001b[0m\u001b[22m\n16:12:59.914 [info] ppl_id: 692f2434-5586-43b9-88b5-535c2c"},{"event":"cmd_output","timestamp":1607098379,"output":"1e62c1, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098379,"output":"origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.917 [info] block_id: "},{"event":"cmd_output","timestamp":1607098379,"output":"2e3a8b61-b81f-4160-8634-bdb5a63aa2e5, type: BlockRequests, event: persisted build and sub_ppl detail"},{"event":"cmd_output","timestamp":1607098379,"output":"s for block_request: 2e3a8b61-b81f-4160-8634-bdb5a63aa2e5, origin: Elixir.Block.BlockRequests.Model."},{"event":"cmd_output","timestamp":1607098379,"output":"BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:12:59.919 [info] block_id: 2e3a8b61-b81f-"},{"event":"cmd_output","timestamp":1607098379,"output":"4160-8634-bdb5a63aa2e5, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098379,"output":"ir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:12:59.921 [info] bloc"},{"event":"cmd_output","timestamp":1607098379,"output":"k_id: 2e3a8b61-b81f-4160-8634-bdb5a63aa2e5, type: Blocks, state: running, event: exit_scheduling, re"},{"event":"cmd_output","timestamp":1607098379,"output":"covery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.934 ["},{"event":"cmd_output","timestamp":1607098379,"output":"info] ppl_id: a8a3b759-3ce4-4e4c-ada8-b10b3c509f8a, type: PplRequests, event: persisted definition "},{"event":"cmd_output","timestamp":1607098379,"output":"for request with request_token: 7fd2c1df-cc56-4996-acb1-3f6c7ade8368, origin: Elixir.Ppl.PplRequests"},{"event":"cmd_output","timestamp":1607098379,"output":".Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:12:59.936 [info] block_id: 2e3a"},{"event":"cmd_output","timestamp":1607098379,"output":"8b61-b81f-4160-8634-bdb5a63aa2e5, type: Tasks, state: running, event: exit_scheduling, recovery_coun"},{"event":"cmd_output","timestamp":1607098379,"output":"t: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.943 [info] even"},{"event":"cmd_output","timestamp":1607098379,"output":"t: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098379,"output":"\n16:12:59.943 [info] ppl_id: a8a3b759-3ce4-4e4c-ada8-b10b3c509f8a, type: PplBlocks, block_index: 0,"},{"event":"cmd_output","timestamp":1607098379,"output":" state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.R"},{"event":"cmd_output","timestamp":1607098379,"output":"egularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:12:59.945 [info] ppl_id: a8a3b759-3ce4-4e4c-ada8-b"},{"event":"cmd_output","timestamp":1607098379,"output":"10b3c509f8a, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count:"},{"event":"cmd_output","timestamp":1607098379,"output":" 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.946 [info] block_"},{"event":"cmd_output","timestamp":1607098379,"output":"id: f422837b-da2c-48ba-9380-47a86808680b, type: Tasks, state: done, event: exit_scheduling, recovery"},{"event":"cmd_output","timestamp":1607098379,"output":"_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.952 [info] "},{"event":"cmd_output","timestamp":1607098379,"output":" ppl_id: a8a3b759-3ce4-4e4c-ada8-b10b3c509f8a, type: Ppls, state: pending, event: exit_scheduling, r"},{"event":"cmd_output","timestamp":1607098379,"output":"ecovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.953 "},{"event":"cmd_output","timestamp":1607098379,"output":"[info] ppl_id: a8a3b759-3ce4-4e4c-ada8-b10b3c509f8a, type: PplBlocks, block_index: 0, state: waitin"},{"event":"cmd_output","timestamp":1607098379,"output":"g, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90)"},{"event":"cmd_output","timestamp":1607098379,"output":", \n\u001b[0m\u001b[22m\n16:12:59.958 [info] block_id: f422837b-da2c-48ba-9380-47a86808680b, type: Blocks, st"},{"event":"cmd_output","timestamp":1607098379,"output":"ate: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chang"},{"event":"cmd_output","timestamp":1607098379,"output":"e/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.962 [info] ppl_id: a8a3b759-3ce4-4e4c-ada8-b10b3c509f8a, type: Ppls"},{"event":"cmd_output","timestamp":1607098379,"output":", state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_stat"},{"event":"cmd_output","timestamp":1607098379,"output":"e_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.968 [info] ppl_id: 748a8c2b-ae18-451e-b99a-0dbba82309c5, blo"},{"event":"cmd_output","timestamp":1607098379,"output":"ck_id: f422837b-da2c-48ba-9380-47a86808680b, type: PplBlocks, block_index: 0, state: done, result: p"},{"event":"cmd_output","timestamp":1607098379,"output":"assed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1("},{"event":"cmd_output","timestamp":1607098379,"output":"L90), \n\u001b[0m\u001b[22m\n16:12:59.978 [info] ppl_id: 748a8c2b-ae18-451e-b99a-0dbba82309c5, type: Ppls, st"},{"event":"cmd_output","timestamp":1607098379,"output":"ate: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl"},{"event":"cmd_output","timestamp":1607098379,"output":".log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:12:59.982 [info] ppl_id: 04340c1b-6269-48dd-928b-df613a81"},{"event":"cmd_output","timestamp":1607098379,"output":"0db5, type: PplRequests, event: persisted source_args for pipeline: 04340c1b-6269-48dd-928b-df613a81"},{"event":"cmd_output","timestamp":1607098379,"output":"0db5, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098379,"output":"12:59.984 [info] ppl_id: 04340c1b-6269-48dd-928b-df613a810db5, type: PplSubInits, state: fetching, "},{"event":"cmd_output","timestamp":1607098379,"output":"event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \r"},{"event":"cmd_output","timestamp":1607098380,"output":"\n\u001b[0m\u001b[22m\n16:13:00.002 [info] ppl_id: 04340c1b-6269-48dd-928b-df613a810db5, type: PplSubInits, st"},{"event":"cmd_output","timestamp":1607098380,"output":"ate: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_sta"},{"event":"cmd_output","timestamp":1607098380,"output":"te_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:00.006 [info] ppl_id: a8a3b759-3ce4-4e4c-ada8-b10b3c509f8a, ty"},{"event":"cmd_output","timestamp":1607098380,"output":"pe: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl."},{"event":"cmd_output","timestamp":1607098380,"output":"log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:00.011 [info] PplBlocks WaitingState STM is scheduling "},{"event":"cmd_output","timestamp":1607098380,"output":"block 0 from pipeline: \"a8a3b759-3ce4-4e4c-ada8-b10b3c509f8a\"\n\u001b[0m\u001b[22m\n16:13:00.016 [info] block"},{"event":"cmd_output","timestamp":1607098380,"output":"_id: 6fd96bfc-38cd-4374-9adc-a2cb877b0d3a, type: BlockRequests, event: persisted block run request f"},{"event":"cmd_output","timestamp":1607098380,"output":"rom ppl a8a3b759-3ce4-4e4c-ada8-b10b3c509f8a for block 0, origin: Elixir.Block.BlockRequests.Model.B"},{"event":"cmd_output","timestamp":1607098380,"output":"lockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:13:00.017 [info] block_id: 6fd96bfc-38"},{"event":"cmd_output","timestamp":1607098380,"output":"cd-4374-9adc-a2cb877b0d3a, type: Blocks, state: initializing, event: initializing, recovery_count: 0"},{"event":"cmd_output","timestamp":1607098380,"output":", origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:13:00.020 [info] B"},{"event":"cmd_output","timestamp":1607098380,"output":"lock 0 of pipeline with id: a8a3b759-3ce4-4e4c-ada8-b10b3c509f8a scheduled in block service with id:"},{"event":"cmd_output","timestamp":1607098380,"output":" : \"6fd96bfc-38cd-4374-9adc-a2cb877b0d3a\"\n\u001b[0m\u001b[22m\n16:13:00.022 [info] ppl_id: a8a3b759-3ce4-4e4"},{"event":"cmd_output","timestamp":1607098380,"output":"c-ada8-b10b3c509f8a, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recove"},{"event":"cmd_output","timestamp":1607098380,"output":"ry_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:00.026 [info"},{"event":"cmd_output","timestamp":1607098380,"output":"] block_id: 6fd96bfc-38cd-4374-9adc-a2cb877b0d3a, type: BlockRequests, event: persisted build and s"},{"event":"cmd_output","timestamp":1607098380,"output":"ub_ppl details for block_request: 6fd96bfc-38cd-4374-9adc-a2cb877b0d3a, origin: Elixir.Block.BlockRe"},{"event":"cmd_output","timestamp":1607098380,"output":"quests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:13:00.028 [info] block_id: 6"},{"event":"cmd_output","timestamp":1607098380,"output":"fd96bfc-38cd-4374-9adc-a2cb877b0d3a, type: Tasks, state: pending, event: created, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098380,"output":" origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:13:00.030"},{"event":"cmd_output","timestamp":1607098380,"output":" [info] block_id: 6fd96bfc-38cd-4374-9adc-a2cb877b0d3a, type: Blocks, state: running, event: exit_s"},{"event":"cmd_output","timestamp":1607098380,"output":"cheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098380,"output":"6:13:00.032 [info] ppl_id: 04340c1b-6269-48dd-928b-df613a810db5, type: PplRequests, event: persiste"},{"event":"cmd_output","timestamp":1607098380,"output":"d definition for request with request_token: 027ca5dd-f878-4e77-98ef-5cc0a785b42e, origin: Elixir.Pp"},{"event":"cmd_output","timestamp":1607098380,"output":"l.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:13:00.046 [info] e"},{"event":"cmd_output","timestamp":1607098380,"output":"vent: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098380,"output":"2m\n16:13:00.046 [info] ppl_id: 04340c1b-6269-48dd-928b-df613a810db5, type: PplBlocks, block_index:"},{"event":"cmd_output","timestamp":1607098380,"output":" 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandle"},{"event":"cmd_output","timestamp":1607098380,"output":"r.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:00.048 [info] block_id: 6fd96bfc-38cd-4374-9"},{"event":"cmd_output","timestamp":1607098380,"output":"adc-a2cb877b0d3a, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098380,"output":"ixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:00.048 [info] ppl_id: 04340c1b-626"},{"event":"cmd_output","timestamp":1607098380,"output":"9-48dd-928b-df613a810db5, type: PplSubInits, state: done, result: passed, event: exit_scheduling, re"},{"event":"cmd_output","timestamp":1607098380,"output":"covery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:00.059 ["},{"event":"cmd_output","timestamp":1607098380,"output":"info] ppl_id: 04340c1b-6269-48dd-928b-df613a810db5, type: PplBlocks, block_index: 0, state: waiting"},{"event":"cmd_output","timestamp":1607098380,"output":", event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90),"},{"event":"cmd_output","timestamp":1607098380,"output":" \n\u001b[0m\u001b[22m\n16:13:00.062 [info] block_id: 2e3a8b61-b81f-4160-8634-bdb5a63aa2e5, type: Tasks, stat"},{"event":"cmd_output","timestamp":1607098380,"output":"e: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/"},{"event":"cmd_output","timestamp":1607098380,"output":"1(L90), \n\u001b[0m\u001b[22m\n16:13:00.062 [info] ppl_id: 04340c1b-6269-48dd-928b-df613a810db5, type: Ppls, "},{"event":"cmd_output","timestamp":1607098380,"output":"state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_"},{"event":"cmd_output","timestamp":1607098380,"output":"change/1(L90), \n\u001b[0m\u001b[22m\n16:13:00.067 [info] block_id: 2e3a8b61-b81f-4160-8634-bdb5a63aa2e5, typ"},{"event":"cmd_output","timestamp":1607098380,"output":"e: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.lo"},{"event":"cmd_output","timestamp":1607098380,"output":"g_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:00.071 [info] ppl_id: 04340c1b-6269-48dd-928b-df613a810db"},{"event":"cmd_output","timestamp":1607098380,"output":"5, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM."},{"event":"cmd_output","timestamp":1607098380,"output":"Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:00.077 [info] ppl_id: 692f2434-5586-43b9-88b5-535c"},{"event":"cmd_output","timestamp":1607098380,"output":"2c1e62c1, block_id: 2e3a8b61-b81f-4160-8634-bdb5a63aa2e5, type: PplBlocks, block_index: 0, state: do"},{"event":"cmd_output","timestamp":1607098380,"output":"ne, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_st"},{"event":"cmd_output","timestamp":1607098380,"output":"ate_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:00.089 [info] ppl_id: 0481bb40-9504-4e05-8b22-8fa4d33ee5d9, t"},{"event":"cmd_output","timestamp":1607098380,"output":"ype: PplRequests, event: persisted source_args for pipeline: 0481bb40-9504-4e05-8b22-8fa4d33ee5d9, o"},{"event":"cmd_output","timestamp":1607098380,"output":"rigin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:13:00.0"},{"event":"cmd_output","timestamp":1607098380,"output":"92 [info] ppl_id: 0481bb40-9504-4e05-8b22-8fa4d33ee5d9, type: PplSubInits, state: fetching, event: "},{"event":"cmd_output","timestamp":1607098380,"output":"exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098380,"output":"22m\n16:13:00.097 [info] ppl_id: 692f2434-5586-43b9-88b5-535c2c1e62c1, type: Ppls, state: done, res"},{"event":"cmd_output","timestamp":1607098380,"output":"ult: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_cha"},{"event":"cmd_output","timestamp":1607098380,"output":"nge/1(L90), \n\u001b[0m\u001b[22m\n16:13:00.113 [info] ppl_id: 0481bb40-9504-4e05-8b22-8fa4d33ee5d9, type: Pp"},{"event":"cmd_output","timestamp":1607098380,"output":"lSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM"},{"event":"cmd_output","timestamp":1607098380,"output":".Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:00.121 [info] ppl_id: 21d7eaaa-0972-4693-9923-136"},{"event":"cmd_output","timestamp":1607098380,"output":"0a28f18e0, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loo"},{"event":"cmd_output","timestamp":1607098380,"output":"per.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:00.130 [info] PplBlocks WaitingState STM i"},{"event":"cmd_output","timestamp":1607098380,"output":"s scheduling block 0 from pipeline: \"21d7eaaa-0972-4693-9923-1360a28f18e0\"\n\u001b[0m\u001b[22m\n16:13:00.136 "},{"event":"cmd_output","timestamp":1607098380,"output":"[info] block_id: 0931312e-4c15-4528-840e-f90201d93382, type: BlockRequests, event: persisted block "},{"event":"cmd_output","timestamp":1607098380,"output":"run request from ppl 21d7eaaa-0972-4693-9923-1360a28f18e0 for block 0, origin: Elixir.Block.BlockReq"},{"event":"cmd_output","timestamp":1607098380,"output":"uests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:13:00.139 [info] block_id"},{"event":"cmd_output","timestamp":1607098380,"output":": 0931312e-4c15-4528-840e-f90201d93382, type: Blocks, state: initializing, event: initializing, reco"},{"event":"cmd_output","timestamp":1607098380,"output":"very_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:13:00."},{"event":"cmd_output","timestamp":1607098380,"output":"141 [info] Block 0 of pipeline with id: 21d7eaaa-0972-4693-9923-1360a28f18e0 scheduled in block ser"},{"event":"cmd_output","timestamp":1607098380,"output":"vice with id: : \"0931312e-4c15-4528-840e-f90201d93382\"\n\u001b[0m\u001b[22m\n16:13:00.145 [info] ppl_id: 21d7"},{"event":"cmd_output","timestamp":1607098380,"output":"eaaa-0972-4693-9923-1360a28f18e0, type: PplBlocks, block_index: 0, state: running, event: exit_sched"},{"event":"cmd_output","timestamp":1607098380,"output":"uling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13"},{"event":"cmd_output","timestamp":1607098380,"output":":00.148 [info] ppl_id: 0481bb40-9504-4e05-8b22-8fa4d33ee5d9, type: PplRequests, event: persisted de"},{"event":"cmd_output","timestamp":1607098380,"output":"finition for request with request_token: 23af24a7-c7f1-46c9-a76b-4a2617cfbb2c, origin: Elixir.Ppl.Pp"},{"event":"cmd_output","timestamp":1607098380,"output":"lRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:13:00.150 [info] block"},{"event":"cmd_output","timestamp":1607098380,"output":"_id: 0931312e-4c15-4528-840e-f90201d93382, type: BlockRequests, event: persisted build and sub_ppl d"},{"event":"cmd_output","timestamp":1607098380,"output":"etails for block_request: 0931312e-4c15-4528-840e-f90201d93382, origin: Elixir.Block.BlockRequests.M"},{"event":"cmd_output","timestamp":1607098380,"output":"odel.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:13:00.154 [info] block_id: 0931312e-"},{"event":"cmd_output","timestamp":1607098380,"output":"4c15-4528-840e-f90201d93382, type: Tasks, state: pending, event: created, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098380,"output":" Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:13:00.155 [info] "},{"event":"cmd_output","timestamp":1607098380,"output":" event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098380,"output":"[22m\n16:13:00.155 [info] ppl_id: 0481bb40-9504-4e05-8b22-8fa4d33ee5d9, type: PplBlocks, block_inde"},{"event":"cmd_output","timestamp":1607098380,"output":"x: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHand"},{"event":"cmd_output","timestamp":1607098380,"output":"ler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:00.157 [info] ppl_id: 0481bb40-9504-4e05-8"},{"event":"cmd_output","timestamp":1607098380,"output":"b22-8fa4d33ee5d9, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098380,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:00.157 [info] b"},{"event":"cmd_output","timestamp":1607098380,"output":"lock_id: 0931312e-4c15-4528-840e-f90201d93382, type: Blocks, state: running, event: exit_scheduling,"},{"event":"cmd_output","timestamp":1607098380,"output":" recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:00.16"},{"event":"cmd_output","timestamp":1607098380,"output":"5 [info] ppl_id: 0481bb40-9504-4e05-8b22-8fa4d33ee5d9, type: PplBlocks, block_index: 0, state: wait"},{"event":"cmd_output","timestamp":1607098380,"output":"ing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L9"},{"event":"cmd_output","timestamp":1607098380,"output":"0), \n\u001b[0m\u001b[22m\n16:13:00.175 [info] block_id: 0931312e-4c15-4528-840e-f90201d93382, type: Tasks, s"},{"event":"cmd_output","timestamp":1607098380,"output":"tate: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098380,"output":"hange/1(L90), \n\u001b[0m\u001b[22m\n16:13:00.175 [info] ppl_id: 0481bb40-9504-4e05-8b22-8fa4d33ee5d9, type: "},{"event":"cmd_output","timestamp":1607098380,"output":"Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_"},{"event":"cmd_output","timestamp":1607098380,"output":"state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:00.185 [info] block_id: 6fd96bfc-38cd-4374-9adc-a2cb877b0d3"},{"event":"cmd_output","timestamp":1607098380,"output":"a, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Im"},{"event":"cmd_output","timestamp":1607098380,"output":"pl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:00.194 [info] ppl_id: 0481bb40-9504-4e05-8b22-8fa4d3"},{"event":"cmd_output","timestamp":1607098380,"output":"3ee5d9, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper"},{"event":"cmd_output","timestamp":1607098380,"output":".STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:00.199 [info] block_id: 6fd96bfc-38cd-4374-9a"},{"event":"cmd_output","timestamp":1607098380,"output":"dc-a2cb877b0d3a, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098380,"output":"r.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:00.204 [info] ppl_id: a45f9332-3ce0-4"},{"event":"cmd_output","timestamp":1607098380,"output":"115-88f2-b17032e77054, type: PplRequests, event: persisted source_args for pipeline: a45f9332-3ce0-4"},{"event":"cmd_output","timestamp":1607098380,"output":"115-88f2-b17032e77054, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89),"},{"event":"cmd_output","timestamp":1607098380,"output":" \n\u001b[0m\u001b[22m\n16:13:00.207 [info] ppl_id: a45f9332-3ce0-4115-88f2-b17032e77054, type: PplSubInits, "},{"event":"cmd_output","timestamp":1607098380,"output":"state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state"},{"event":"cmd_output","timestamp":1607098380,"output":"_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:00.209 [info] ppl_id: a8a3b759-3ce4-4e4c-ada8-b10b3c509f8a, bloc"},{"event":"cmd_output","timestamp":1607098380,"output":"k_id: 6fd96bfc-38cd-4374-9adc-a2cb877b0d3a, type: PplBlocks, block_index: 0, state: done, result: pa"},{"event":"cmd_output","timestamp":1607098380,"output":"ssed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098380,"output":"90), \n\u001b[0m\u001b[22m\n16:13:00.222 [info] ppl_id: a8a3b759-3ce4-4e4c-ada8-b10b3c509f8a, type: Ppls, sta"},{"event":"cmd_output","timestamp":1607098380,"output":"te: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl."},{"event":"cmd_output","timestamp":1607098380,"output":"log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:00.231 [info] ppl_id: 04340c1b-6269-48dd-928b-df613a810"},{"event":"cmd_output","timestamp":1607098380,"output":"db5, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.ST"},{"event":"cmd_output","timestamp":1607098380,"output":"M.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:00.233 [info] ppl_id: a45f9332-3ce0-4115-88f2-b1"},{"event":"cmd_output","timestamp":1607098380,"output":"7032e77054, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098380,"output":"n: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:00.238 [info] PplBlocks Waiti"},{"event":"cmd_output","timestamp":1607098380,"output":"ngState STM is scheduling block 0 from pipeline: \"04340c1b-6269-48dd-928b-df613a810db5\"\n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098380,"output":"16:13:00.246 [info] block_id: 98840584-646b-4b94-a45c-49bd82d69bae, type: BlockRequests, event: per"},{"event":"cmd_output","timestamp":1607098380,"output":"sisted block run request from ppl 04340c1b-6269-48dd-928b-df613a810db5 for block 0, origin: Elixir.B"},{"event":"cmd_output","timestamp":1607098380,"output":"lock.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:13:00.249 [in"},{"event":"cmd_output","timestamp":1607098380,"output":"fo] block_id: 98840584-646b-4b94-a45c-49bd82d69bae, type: Blocks, state: initializing, event: initi"},{"event":"cmd_output","timestamp":1607098380,"output":"alizing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098380,"output":"2m\n16:13:00.251 [info] Block 0 of pipeline with id: 04340c1b-6269-48dd-928b-df613a810db5 scheduled"},{"event":"cmd_output","timestamp":1607098380,"output":" in block service with id: : \"98840584-646b-4b94-a45c-49bd82d69bae\"\n\u001b[0m\u001b[22m\n16:13:00.256 [info] "},{"event":"cmd_output","timestamp":1607098380,"output":" ppl_id: 04340c1b-6269-48dd-928b-df613a810db5, type: PplBlocks, block_index: 0, state: running, even"},{"event":"cmd_output","timestamp":1607098380,"output":"t: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098380,"output":"m\u001b[22m\n16:13:00.258 [info] block_id: 98840584-646b-4b94-a45c-49bd82d69bae, type: BlockRequests, ev"},{"event":"cmd_output","timestamp":1607098380,"output":"ent: persisted build and sub_ppl details for block_request: 98840584-646b-4b94-a45c-49bd82d69bae, or"},{"event":"cmd_output","timestamp":1607098380,"output":"igin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:13:"},{"event":"cmd_output","timestamp":1607098380,"output":"00.261 [info] block_id: 98840584-646b-4b94-a45c-49bd82d69bae, type: Tasks, state: pending, event: c"},{"event":"cmd_output","timestamp":1607098380,"output":"reated, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167),"},{"event":"cmd_output","timestamp":1607098380,"output":" \n\u001b[0m\u001b[22m\n16:13:00.263 [info] block_id: 98840584-646b-4b94-a45c-49bd82d69bae, type: Blocks, sta"},{"event":"cmd_output","timestamp":1607098380,"output":"te: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_cha"},{"event":"cmd_output","timestamp":1607098380,"output":"nge/1(L90), \n\u001b[0m\u001b[22m\n16:13:00.277 [info] ppl_id: a45f9332-3ce0-4115-88f2-b17032e77054, type: Pp"},{"event":"cmd_output","timestamp":1607098380,"output":"lRequests, event: persisted definition for request with request_token: 028f348b-572e-4dbb-b167-7fe71"},{"event":"cmd_output","timestamp":1607098380,"output":"4312442, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098380,"output":"2m\n16:13:00.282 [info] block_id: 98840584-646b-4b94-a45c-49bd82d69bae, type: Tasks, state: running"},{"event":"cmd_output","timestamp":1607098380,"output":", event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90),"},{"event":"cmd_output","timestamp":1607098380,"output":" \n\u001b[0m\u001b[22m\n16:13:00.287 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.Regular"},{"event":"cmd_output","timestamp":1607098380,"output":"InitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:00.287 [info] ppl_id: a45f9332-3ce0-4115-88f2-b17032e"},{"event":"cmd_output","timestamp":1607098380,"output":"77054, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098380,"output":"in: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:00.292 [i"},{"event":"cmd_output","timestamp":1607098380,"output":"nfo] ppl_id: a45f9332-3ce0-4115-88f2-b17032e77054, type: PplSubInits, state: done, result: passed, "},{"event":"cmd_output","timestamp":1607098380,"output":"event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \r"},{"event":"cmd_output","timestamp":1607098380,"output":"\n\u001b[0m\u001b[22m\n16:13:00.301 [info] ppl_id: a45f9332-3ce0-4115-88f2-b17032e77054, type: Ppls, state: pe"},{"event":"cmd_output","timestamp":1607098380,"output":"nding, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1("},{"event":"cmd_output","timestamp":1607098380,"output":"L90), \n\u001b[0m\u001b[22m\n16:13:00.305 [info] ppl_id: a45f9332-3ce0-4115-88f2-b17032e77054, type: PplBlock"},{"event":"cmd_output","timestamp":1607098380,"output":"s, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper."},{"event":"cmd_output","timestamp":1607098380,"output":"STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:00.309 [info] block_id: 0931312e-4c15-4528-840"},{"event":"cmd_output","timestamp":1607098380,"output":"e-f90201d93382, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098380,"output":"Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:00.312 [info] block_id: 0931312e-4c15-4"},{"event":"cmd_output","timestamp":1607098380,"output":"528-840e-f90201d93382, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098380,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:00.313 [info] ppl_id: a45f9332-"},{"event":"cmd_output","timestamp":1607098380,"output":"3ce0-4115-88f2-b17032e77054, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098380,"output":"origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:00.321 [info] ppl_id: 21"},{"event":"cmd_output","timestamp":1607098380,"output":"d7eaaa-0972-4693-9923-1360a28f18e0, block_id: 0931312e-4c15-4528-840e-f90201d93382, type: PplBlocks,"},{"event":"cmd_output","timestamp":1607098380,"output":" block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098380,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:00.331 [info] ppl_id: 21d7eaaa-0972"},{"event":"cmd_output","timestamp":1607098380,"output":"-4693-9923-1360a28f18e0, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098380,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:00.416 [info] b"},{"event":"cmd_output","timestamp":1607098380,"output":"lock_id: 98840584-646b-4b94-a45c-49bd82d69bae, type: Tasks, state: done, event: exit_scheduling, rec"},{"event":"cmd_output","timestamp":1607098380,"output":"overy_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:00.426 [i"},{"event":"cmd_output","timestamp":1607098380,"output":"nfo] block_id: 98840584-646b-4b94-a45c-49bd82d69bae, type: Blocks, state: done, event: exit_schedul"},{"event":"cmd_output","timestamp":1607098380,"output":"ing, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:0"},{"event":"cmd_output","timestamp":1607098380,"output":"0.452 [info] ppl_id: 04340c1b-6269-48dd-928b-df613a810db5, block_id: 98840584-646b-4b94-a45c-49bd82"},{"event":"cmd_output","timestamp":1607098380,"output":"d69bae, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, recove"},{"event":"cmd_output","timestamp":1607098380,"output":"ry_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:00.467 [info"},{"event":"cmd_output","timestamp":1607098380,"output":"] ppl_id: 04340c1b-6269-48dd-928b-df613a810db5, type: Ppls, state: done, result: passed, event: exi"},{"event":"cmd_output","timestamp":1607098380,"output":"t_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098380,"output":"\n16:13:00.568 [info] ppl_id: 0481bb40-9504-4e05-8b22-8fa4d33ee5d9, type: Ppls, state: running, eve"},{"event":"cmd_output","timestamp":1607098380,"output":"nt: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b["},{"event":"cmd_output","timestamp":1607098380,"output":"0m\u001b[22m\n16:13:00.579 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"0481b"},{"event":"cmd_output","timestamp":1607098380,"output":"b40-9504-4e05-8b22-8fa4d33ee5d9\"\n\u001b[0m\u001b[22m\n16:13:00.592 [info] block_id: 42079179-4cd3-4d28-a810-"},{"event":"cmd_output","timestamp":1607098380,"output":"0cabb1f4875f, type: BlockRequests, event: persisted block run request from ppl 0481bb40-9504-4e05-8b"},{"event":"cmd_output","timestamp":1607098380,"output":"22-8fa4d33ee5d9 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_r"},{"event":"cmd_output","timestamp":1607098380,"output":"esponse/4(L35), \n\u001b[0m\u001b[22m\n16:13:00.594 [info] block_id: 42079179-4cd3-4d28-a810-0cabb1f4875f, ty"},{"event":"cmd_output","timestamp":1607098380,"output":"pe: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks"},{"event":"cmd_output","timestamp":1607098380,"output":".Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:13:00.601 [info] Block 0 of pipeline with id: 0"},{"event":"cmd_output","timestamp":1607098380,"output":"481bb40-9504-4e05-8b22-8fa4d33ee5d9 scheduled in block service with id: : \"42079179-4cd3-4d28-a810-0"},{"event":"cmd_output","timestamp":1607098380,"output":"cabb1f4875f\"\n\u001b[0m\u001b[22m\n16:13:00.607 [info] ppl_id: 0481bb40-9504-4e05-8b22-8fa4d33ee5d9, type: Pp"},{"event":"cmd_output","timestamp":1607098380,"output":"lBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098380,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:00.609 [info] block_id: 42079179-4cd3-4d"},{"event":"cmd_output","timestamp":1607098380,"output":"28-a810-0cabb1f4875f, type: BlockRequests, event: persisted build and sub_ppl details for block_requ"},{"event":"cmd_output","timestamp":1607098380,"output":"est: 42079179-4cd3-4d28-a810-0cabb1f4875f, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQue"},{"event":"cmd_output","timestamp":1607098380,"output":"ries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:13:00.615 [info] block_id: 42079179-4cd3-4d28-a810-0cabb1"},{"event":"cmd_output","timestamp":1607098380,"output":"f4875f, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks."},{"event":"cmd_output","timestamp":1607098380,"output":"STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:13:00.619 [info] block_id: 42079179-4"},{"event":"cmd_output","timestamp":1607098380,"output":"cd3-4d28-a810-0cabb1f4875f, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098380,"output":" origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:00.659 [info] block_id:"},{"event":"cmd_output","timestamp":1607098380,"output":" 42079179-4cd3-4d28-a810-0cabb1f4875f, type: Tasks, state: running, event: exit_scheduling, recovery"},{"event":"cmd_output","timestamp":1607098380,"output":"_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:00.733 [info] "},{"event":"cmd_output","timestamp":1607098380,"output":" block_id: 42079179-4cd3-4d28-a810-0cabb1f4875f, type: Tasks, state: done, event: exit_scheduling, r"},{"event":"cmd_output","timestamp":1607098380,"output":"ecovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:00.741 "},{"event":"cmd_output","timestamp":1607098380,"output":"[info] block_id: 42079179-4cd3-4d28-a810-0cabb1f4875f, type: Blocks, state: done, event: exit_sched"},{"event":"cmd_output","timestamp":1607098380,"output":"uling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13"},{"event":"cmd_output","timestamp":1607098380,"output":":00.753 [info] ppl_id: 0481bb40-9504-4e05-8b22-8fa4d33ee5d9, block_id: 42079179-4cd3-4d28-a810-0cab"},{"event":"cmd_output","timestamp":1607098380,"output":"b1f4875f, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, reco"},{"event":"cmd_output","timestamp":1607098380,"output":"very_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:00.772 [in"},{"event":"cmd_output","timestamp":1607098380,"output":"fo] ppl_id: 0481bb40-9504-4e05-8b22-8fa4d33ee5d9, type: Ppls, state: done, result: passed, event: e"},{"event":"cmd_output","timestamp":1607098380,"output":"xit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098380,"output":"2m\n16:13:00.790 [info] ppl_id: a45f9332-3ce0-4115-88f2-b17032e77054, type: Ppls, state: running, e"},{"event":"cmd_output","timestamp":1607098380,"output":"vent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n"},{"event":"cmd_output","timestamp":1607098380,"output":"\u001b[0m\u001b[22m\n16:13:00.799 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"a45"},{"event":"cmd_output","timestamp":1607098380,"output":"f9332-3ce0-4115-88f2-b17032e77054\"\n\u001b[0m\u001b[22m\n16:13:00.812 [info] block_id: 27e1c282-d3a3-41de-85e"},{"event":"cmd_output","timestamp":1607098380,"output":"5-c90101219ce4, type: BlockRequests, event: persisted block run request from ppl a45f9332-3ce0-4115-"},{"event":"cmd_output","timestamp":1607098380,"output":"88f2-b17032e77054 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process"},{"event":"cmd_output","timestamp":1607098380,"output":"_response/4(L35), \n\u001b[0m\u001b[22m\n16:13:00.814 [info] block_id: 27e1c282-d3a3-41de-85e5-c90101219ce4, "},{"event":"cmd_output","timestamp":1607098380,"output":"type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Bloc"},{"event":"cmd_output","timestamp":1607098380,"output":"ks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:13:00.818 [info] Block 0 of pipeline with id:"},{"event":"cmd_output","timestamp":1607098380,"output":" a45f9332-3ce0-4115-88f2-b17032e77054 scheduled in block service with id: : \"27e1c282-d3a3-41de-85e5"},{"event":"cmd_output","timestamp":1607098380,"output":"-c90101219ce4\"\n\u001b[0m\u001b[22m\n16:13:00.824 [info] ppl_id: a45f9332-3ce0-4115-88f2-b17032e77054, type: "},{"event":"cmd_output","timestamp":1607098380,"output":"PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098380,"output":".Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:00.836 [info] block_id: 27e1c282-d3a3-"},{"event":"cmd_output","timestamp":1607098380,"output":"41de-85e5-c90101219ce4, type: BlockRequests, event: persisted build and sub_ppl details for block_re"},{"event":"cmd_output","timestamp":1607098380,"output":"quest: 27e1c282-d3a3-41de-85e5-c90101219ce4, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQ"},{"event":"cmd_output","timestamp":1607098380,"output":"ueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:13:00.838 [info] block_id: 27e1c282-d3a3-41de-85e5-c901"},{"event":"cmd_output","timestamp":1607098380,"output":"01219ce4, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Block"},{"event":"cmd_output","timestamp":1607098380,"output":"s.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:13:00.842 [info] block_id: 27e1c282"},{"event":"cmd_output","timestamp":1607098380,"output":"-d3a3-41de-85e5-c90101219ce4, type: Blocks, state: running, event: exit_scheduling, recovery_count: "},{"event":"cmd_output","timestamp":1607098380,"output":"0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:00.857 [info] block_i"},{"event":"cmd_output","timestamp":1607098380,"output":"d: 27e1c282-d3a3-41de-85e5-c90101219ce4, type: Tasks, state: running, event: exit_scheduling, recove"},{"event":"cmd_output","timestamp":1607098380,"output":"ry_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:00.948 [info"},{"event":"cmd_output","timestamp":1607098380,"output":"] block_id: 27e1c282-d3a3-41de-85e5-c90101219ce4, type: Tasks, state: done, event: exit_scheduling,"},{"event":"cmd_output","timestamp":1607098380,"output":" recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:00.95"},{"event":"cmd_output","timestamp":1607098380,"output":"2 [info] block_id: 27e1c282-d3a3-41de-85e5-c90101219ce4, type: Blocks, state: done, event: exit_sch"},{"event":"cmd_output","timestamp":1607098380,"output":"eduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098380,"output":"13:00.960 [info] ppl_id: a45f9332-3ce0-4115-88f2-b17032e77054, block_id: 27e1c282-d3a3-41de-85e5-c9"},{"event":"cmd_output","timestamp":1607098380,"output":"0101219ce4, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, re"},{"event":"cmd_output","timestamp":1607098380,"output":"covery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:00.980 ["},{"event":"cmd_output","timestamp":1607098380,"output":"info] ppl_id: a45f9332-3ce0-4115-88f2-b17032e77054, type: Ppls, state: done, result: passed, event:"},{"event":"cmd_output","timestamp":1607098381,"output":" exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098381,"output":"[32m\r * test gRPC list() - filter by git_ref_types (2888.0ms)\u001b[0m\n * test gRPC partial_rebuild() "},{"event":"cmd_output","timestamp":1607098381,"output":"- fails when given pipeline is running\u001b[22m\n16:13:01.155 [info] Request: 'run: %{\"branch_id\" => \"1"},{"event":"cmd_output","timestamp":1607098381,"output":"5c63482-8133-4125-9e95-6ca3e3d29941\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469\", \"file"},{"event":"cmd_output","timestamp":1607098381,"output":"_name\" => \"semaphore.yml\", \"hook_id\" => \"94c84878-364b-11eb-b139-5254005464e2\", \"label\" => \"master\","},{"event":"cmd_output","timestamp":1607098381,"output":" \"organization_id\" => \"3d5e22e7-4721-4249-9a49-9b54e8bb98d3\", \"owner\" => \"rt\", \"project_id\" => \"96b2"},{"event":"cmd_output","timestamp":1607098381,"output":"09bd-17cb-432a-8a5e-dfa51e2da5d9\", \"repo_name\" => \"14_free_topology_failing_block\", \"request_token\" "},{"event":"cmd_output","timestamp":1607098381,"output":"=> \"94c83e00-364b-11eb-8ebf-5254005464e2\", \"requester_id\" => \"cb6441e9-f8e6-4808-ae72-c36d769422be\","},{"event":"cmd_output","timestamp":1607098381,"output":" \"service\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"e5b"},{"event":"cmd_output","timestamp":1607098381,"output":"94526-91c8-43c6-ae94-6e3df27328dd\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:13:01.158 [info] "},{"event":"cmd_output","timestamp":1607098381,"output":"ppl_id: fc2dac80-c47c-41f2-bf7d-f6dae699de5c, type: PplRequests, event: persisted schedule request w"},{"event":"cmd_output","timestamp":1607098381,"output":"ith request_token: 94c83e00-364b-11eb-8ebf-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplReq"},{"event":"cmd_output","timestamp":1607098381,"output":"uestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:13:01.161 [info] ppl_id: fc2dac80-c47c-41f2-b"},{"event":"cmd_output","timestamp":1607098381,"output":"f7d-f6dae699de5c, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: E"},{"event":"cmd_output","timestamp":1607098381,"output":"lixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:13:01.166 [info] Project"},{"event":"cmd_output","timestamp":1607098381,"output":" 96b209bd-17cb-432a-8a5e-dfa51e2da5d9 and branch masterlatest_wf details updated: \"wf_id: e5b94526-9"},{"event":"cmd_output","timestamp":1607098381,"output":"1c8-43c6-ae94-6e3df27328dd, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:13:01.174 [info] Persisted ppl_sub_init fo"},{"event":"cmd_output","timestamp":1607098381,"output":"r pipeline with ppl_id: fc2dac80-c47c-41f2-bf7d-f6dae699de5c: %Ppl.PplSubInits.Model.PplSubInits{__m"},{"event":"cmd_output","timestamp":1607098381,"output":"eta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description"},{"event":"cmd_output","timestamp":1607098381,"output":": nil, id: 278, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:13:01.1667"},{"event":"cmd_output","timestamp":1607098381,"output":"44], pipeline_requests: #Ecto.Association.NotLoaded, p"},{"event":"cmd_output","timestamp":1607098381,"output":"pl_id: \"fc2dac80-c47c-41f2-bf7d-f6dae699de5c\", recovery_count: 0, result: nil, result_reason: nil, s"},{"event":"cmd_output","timestamp":1607098381,"output":"tate: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:1"},{"event":"cmd_output","timestamp":1607098381,"output":"3:01.166752]}\n\u001b[0m\u001b[32m\r * test gRPC partial_rebuild() - fails when given pipeline is running (95."},{"event":"cmd_output","timestamp":1607098381,"output":"1ms)\u001b[0m\n * test gRPC list_grouped() - project scoped user generated queues\u001b[22m\n16:13:01.246 [i"},{"event":"cmd_output","timestamp":1607098381,"output":"nfo] ppl_id: 2fddc332-bc2e-4b90-a73e-1a5699d44632, type: PplRequests, event: persisted schedule req"},{"event":"cmd_output","timestamp":1607098381,"output":"uest with request_token: e4946c8f-c3b3-4049-ba13-7d60066fb9e9, origin: Elixir.Ppl.PplRequests.Model."},{"event":"cmd_output","timestamp":1607098381,"output":"PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:13:01.249 [info] ppl_id: 2fddc332-bc2e-"},{"event":"cmd_output","timestamp":1607098381,"output":"4b90-a73e-1a5699d44632, type: PplRequests, event: persisted definition for request with request_toke"},{"event":"cmd_output","timestamp":1607098381,"output":"n: e4946c8f-c3b3-4049-ba13-7d60066fb9e9, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.ins"},{"event":"cmd_output","timestamp":1607098381,"output":"ert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:13:01.254 [info] ppl_id: 2fddc332-bc2e-4b90-a73e-1a5699d4463"},{"event":"cmd_output","timestamp":1607098381,"output":"2, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls."},{"event":"cmd_output","timestamp":1607098381,"output":"Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:13:01.260 [info] Persisted ppl_sub_init"},{"event":"cmd_output","timestamp":1607098381,"output":" for pipeline with ppl_id: 2fddc332-bc2e-4b90-a73e-1a5699d44632: %Ppl.PplSubInits.Model.PplSubInits{"},{"event":"cmd_output","timestamp":1607098381,"output":"__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_descript"},{"event":"cmd_output","timestamp":1607098381,"output":"ion: nil, id: 279, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:13:01.2"},{"event":"cmd_output","timestamp":1607098381,"output":"58027], pipeline_requests: #Ecto.Association.NotLoaded"},{"event":"cmd_output","timestamp":1607098381,"output":", ppl_id: \"2fddc332-bc2e-4b90-a73e-1a5699d44632\", recovery_count: 0, result: nil, result_reason: nil"},{"event":"cmd_output","timestamp":1607098381,"output":", state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 1"},{"event":"cmd_output","timestamp":1607098381,"output":"6:13:01.258038]}\n\u001b[0m\u001b[22m\n16:13:01.265 [info] ppl_id: 9fbec02f-b369-45a4-af6d-fd7919c81d28, type"},{"event":"cmd_output","timestamp":1607098381,"output":": PplRequests, event: persisted schedule request with request_token: 704ee415-a5fe-410e-ae04-569456d"},{"event":"cmd_output","timestamp":1607098381,"output":"4104f, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098381,"output":"\n16:13:01.272 [info] ppl_id: 9fbec02f-b369-45a4-af6d-fd7919c81d28, type: PplRequests, event: persis"},{"event":"cmd_output","timestamp":1607098381,"output":"ted definition for request with request_token: 704ee415-a5fe-410e-ae04-569456d4104f, origin: Elixir."},{"event":"cmd_output","timestamp":1607098381,"output":"Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:13:01.275 [info] "},{"event":"cmd_output","timestamp":1607098381,"output":" ppl_id: 9fbec02f-b369-45a4-af6d-fd7919c81d28, type: Ppls, state: initializing, event: initializing,"},{"event":"cmd_output","timestamp":1607098381,"output":" recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098381,"output":"\n16:13:01.280 [info] Persisted ppl_sub_init for pipeline with ppl_id: 9fbec02f-b369-45a4-af6d-fd791"},{"event":"cmd_output","timestamp":1607098381,"output":"9c81d28: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_i"},{"event":"cmd_output","timestamp":1607098381,"output":"nits\">, compile_task_id: nil, error_description: nil, id: 280, in_scheduling: false, init_type: \"reg"},{"event":"cmd_output","timestamp":1607098381,"output":"ular\", inserted_at: ~N[2020-12-04 16:13:01.279198], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"9fbec02f-b369-45a4-af6d-fd7919c81d28\", recove"},{"event":"cmd_output","timestamp":1607098381,"output":"ry_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_re"},{"event":"cmd_output","timestamp":1607098381,"output":"quest_desc: nil, updated_at: ~N[2020-12-04 16:13:01.279209]}\n\u001b[0m\u001b[22m\n16:13:01.284 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098381,"output":": 1875b471-3841-4992-a04b-a979e80589e8, type: PplRequests, event: persisted schedule request with re"},{"event":"cmd_output","timestamp":1607098381,"output":"quest_token: 6f76f380-ad90-424e-9785-3b3f2de7181f, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQ"},{"event":"cmd_output","timestamp":1607098381,"output":"ueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:13:01.286 [info] ppl_id: 1875b471-3841-4992-a04b-a9"},{"event":"cmd_output","timestamp":1607098381,"output":"79e80589e8, type: PplRequests, event: persisted definition for request with request_token: 6f76f380-"},{"event":"cmd_output","timestamp":1607098381,"output":"ad90-424e-9785-3b3f2de7181f, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definiti"},{"event":"cmd_output","timestamp":1607098381,"output":"on/3(L76), \n\u001b[0m\u001b[22m\n16:13:01.297 [info] ppl_id: 1875b471-3841-4992-a04b-a979e80589e8, type: Ppl"},{"event":"cmd_output","timestamp":1607098381,"output":"s, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQu"},{"event":"cmd_output","timestamp":1607098381,"output":"eries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:13:01.301 [info] Persisted ppl_sub_init for pipelin"},{"event":"cmd_output","timestamp":1607098381,"output":"e with ppl_id: 1875b471-3841-4992-a04b-a979e80589e8: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #E"},{"event":"cmd_output","timestamp":1607098381,"output":"cto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id"},{"event":"cmd_output","timestamp":1607098381,"output":": 281, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:13:01.299970], pipe"},{"event":"cmd_output","timestamp":1607098381,"output":"line_requests: #Ecto.Association.NotLoaded, ppl_id: \"1"},{"event":"cmd_output","timestamp":1607098381,"output":"875b471-3841-4992-a04b-a979e80589e8\", recovery_count: 0, result: nil, result_reason: nil, state: \"cr"},{"event":"cmd_output","timestamp":1607098381,"output":"eated\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:13:01.2999"},{"event":"cmd_output","timestamp":1607098381,"output":"80]}\n\u001b[0m\u001b[22m\n16:13:01.307 [info] ppl_id: 5ff359d5-8f2f-471e-9f25-e9b026d6a09d, type: PplRequest"},{"event":"cmd_output","timestamp":1607098381,"output":"s, event: persisted schedule request with request_token: 3e40c4b4-8d87-42fa-8a20-64ef7e0a60e0, origi"},{"event":"cmd_output","timestamp":1607098381,"output":"n: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:13:01.30"},{"event":"cmd_output","timestamp":1607098381,"output":"8 [info] ppl_id: 5ff359d5-8f2f-471e-9f25-e9b026d6a09d, type: PplRequests, event: persisted definiti"},{"event":"cmd_output","timestamp":1607098381,"output":"on for request with request_token: 3e40c4b4-8d87-42fa-8a20-64ef7e0a60e0, origin: Elixir.Ppl.PplReque"},{"event":"cmd_output","timestamp":1607098381,"output":"sts.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:13:01.311 [info] ppl_id: 5ff"},{"event":"cmd_output","timestamp":1607098381,"output":"359d5-8f2f-471e-9f25-e9b026d6a09d, type: Ppls, state: initializing, event: initializing, recovery_co"},{"event":"cmd_output","timestamp":1607098381,"output":"unt: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:13:01.31"},{"event":"cmd_output","timestamp":1607098381,"output":"4 [info] Persisted ppl_sub_init for pipeline with ppl_id: 5ff359d5-8f2f-471e-9f25-e9b026d6a09d: %Pp"},{"event":"cmd_output","timestamp":1607098381,"output":"l.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, comp"},{"event":"cmd_output","timestamp":1607098381,"output":"ile_task_id: nil, error_description: nil, id: 282, in_scheduling: false, init_type: \"regular\", inser"},{"event":"cmd_output","timestamp":1607098381,"output":"ted_at: ~N[2020-12-04 16:13:01.313375], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"5ff359d5-8f2f-471e-9f25-e9b026d6a09d\", recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098381,"output":" result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: "},{"event":"cmd_output","timestamp":1607098381,"output":"nil, updated_at: ~N[2020-12-04 16:13:01.313386]}\n\u001b[0m\u001b[22m\n16:13:01.318 [info] ppl_id: 80aa0af8-a"},{"event":"cmd_output","timestamp":1607098381,"output":"963-4b1d-8267-52ad351f801a, type: PplRequests, event: persisted schedule request with request_token:"},{"event":"cmd_output","timestamp":1607098381,"output":" 42bff0f8-8064-436d-9aee-c870b6938d2b, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.proce"},{"event":"cmd_output","timestamp":1607098381,"output":"ss_response/2(L55), \n\u001b[0m\u001b[22m\n16:13:01.319 [info] ppl_id: 80aa0af8-a963-4b1d-8267-52ad351f801a, "},{"event":"cmd_output","timestamp":1607098381,"output":"type: PplRequests, event: persisted definition for request with request_token: 42bff0f8-8064-436d-9a"},{"event":"cmd_output","timestamp":1607098381,"output":"ee-c870b6938d2b, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \r"},{"event":"cmd_output","timestamp":1607098381,"output":"\n\u001b[0m\u001b[22m\n16:13:01.322 [info] ppl_id: 80aa0af8-a963-4b1d-8267-52ad351f801a, type: Ppls, state: in"},{"event":"cmd_output","timestamp":1607098381,"output":"itializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.proces"},{"event":"cmd_output","timestamp":1607098381,"output":"s_response/2(L124), \n\u001b[0m\u001b[22m\n16:13:01.326 [info] Persisted ppl_sub_init for pipeline with ppl_i"},{"event":"cmd_output","timestamp":1607098381,"output":"d: 80aa0af8-a963-4b1d-8267-52ad351f801a: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.M"},{"event":"cmd_output","timestamp":1607098381,"output":"etadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 283, in_sc"},{"event":"cmd_output","timestamp":1607098381,"output":"heduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:13:01.324923], pipeline_request"},{"event":"cmd_output","timestamp":1607098381,"output":"s: #Ecto.Association.NotLoaded, ppl_id: \"80aa0af8-a963"},{"event":"cmd_output","timestamp":1607098381,"output":"-4b1d-8267-52ad351f801a\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", term"},{"event":"cmd_output","timestamp":1607098381,"output":"inate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:13:01.324932]}\n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098381,"output":"22m\n16:13:01.329 [info] ppl_id: a3025d1f-0bc2-44b0-872f-fc9658dd645e, type: PplRequests, event: pe"},{"event":"cmd_output","timestamp":1607098381,"output":"rsisted schedule request with request_token: 15e888f2-243c-43e5-89c4-661c807041d3, origin: Elixir.Pp"},{"event":"cmd_output","timestamp":1607098381,"output":"l.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:13:01.331 [info] pp"},{"event":"cmd_output","timestamp":1607098381,"output":"l_id: a3025d1f-0bc2-44b0-872f-fc9658dd645e, type: PplRequests, event: persisted definition for reque"},{"event":"cmd_output","timestamp":1607098381,"output":"st with request_token: 15e888f2-243c-43e5-89c4-661c807041d3, origin: Elixir.Ppl.PplRequests.Model.Pp"},{"event":"cmd_output","timestamp":1607098381,"output":"lRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:13:01.339 [info] ppl_id: a3025d1f-0bc2-4"},{"event":"cmd_output","timestamp":1607098381,"output":"4b0-872f-fc9658dd645e, type: Ppls, state: initializing, event: initializing, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098381,"output":"in: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:13:01.342 [info] Pe"},{"event":"cmd_output","timestamp":1607098381,"output":"rsisted ppl_sub_init for pipeline with ppl_id: a3025d1f-0bc2-44b0-872f-fc9658dd645e: %Ppl.PplSubInit"},{"event":"cmd_output","timestamp":1607098381,"output":"s.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id:"},{"event":"cmd_output","timestamp":1607098381,"output":" nil, error_description: nil, id: 284, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2"},{"event":"cmd_output","timestamp":1607098381,"output":"020-12-04 16:13:01.341675], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"a3025d1f-0bc2-44b0-872f-fc9658dd645e\", recovery_count: 0, result: nil"},{"event":"cmd_output","timestamp":1607098381,"output":", result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated"},{"event":"cmd_output","timestamp":1607098381,"output":"_at: ~N[2020-12-04 16:13:01.341684]}\n\u001b[0m\u001b[22m\n16:13:01.345 [info] ppl_id: fddded05-f8fb-41a2-bc7"},{"event":"cmd_output","timestamp":1607098381,"output":"c-e21e9623828e, type: PplRequests, event: persisted schedule request with request_token: b6f43e4e-98"},{"event":"cmd_output","timestamp":1607098381,"output":"25-40b0-bce2-0f5ea8993a3f, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/"},{"event":"cmd_output","timestamp":1607098381,"output":"2(L55), \n\u001b[0m\u001b[22m\n16:13:01.347 [info] ppl_id: fddded05-f8fb-41a2-bc7c-e21e9623828e, type: PplReq"},{"event":"cmd_output","timestamp":1607098381,"output":"uests, event: persisted definition for request with request_token: b6f43e4e-9825-40b0-bce2-0f5ea8993"},{"event":"cmd_output","timestamp":1607098381,"output":"a3f, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098381,"output":"16:13:01.349 [info] ppl_id: fddded05-f8fb-41a2-bc7c-e21e9623828e, type: Ppls, state: initializing, "},{"event":"cmd_output","timestamp":1607098381,"output":"event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2"},{"event":"cmd_output","timestamp":1607098381,"output":"(L124), \n\u001b[0m\u001b[22m\n16:13:01.353 [info] Persisted ppl_sub_init for pipeline with ppl_id: fddded05-"},{"event":"cmd_output","timestamp":1607098381,"output":"f8fb-41a2-bc7c-e21e9623828e: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loa"},{"event":"cmd_output","timestamp":1607098381,"output":"ded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 285, in_scheduling: fa"},{"event":"cmd_output","timestamp":1607098381,"output":"lse, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:13:01.352290], pipeline_requests: #Ecto.Ass"},{"event":"cmd_output","timestamp":1607098381,"output":"ociation.NotLoaded, ppl_id: \"fddded05-f8fb-41a2-bc7c-e"},{"event":"cmd_output","timestamp":1607098381,"output":"21e9623828e\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_reques"},{"event":"cmd_output","timestamp":1607098381,"output":"t: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:13:01.352300]}\n\u001b[0m\u001b[22m\n16:13:0"},{"event":"cmd_output","timestamp":1607098381,"output":"1.363 [info] ppl_id: dfc94d03-d048-49b1-bb8e-95c9cac46c25, type: PplRequests, event: persisted sche"},{"event":"cmd_output","timestamp":1607098381,"output":"dule request with request_token: d4d882b5-5ab4-4cee-8e39-a9759c9ad821, origin: Elixir.Ppl.PplRequest"},{"event":"cmd_output","timestamp":1607098381,"output":"s.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:13:01.364 [info] ppl_id: dfc94d"},{"event":"cmd_output","timestamp":1607098381,"output":"03-d048-49b1-bb8e-95c9cac46c25, type: PplRequests, event: persisted definition for request with requ"},{"event":"cmd_output","timestamp":1607098381,"output":"est_token: d4d882b5-5ab4-4cee-8e39-a9759c9ad821, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQue"},{"event":"cmd_output","timestamp":1607098381,"output":"ries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:13:01.366 [info] ppl_id: dfc94d03-d048-49b1-bb8e-95c"},{"event":"cmd_output","timestamp":1607098381,"output":"9cac46c25, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.P"},{"event":"cmd_output","timestamp":1607098381,"output":"pl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:13:01.369 [info] Persisted ppl_"},{"event":"cmd_output","timestamp":1607098381,"output":"sub_init for pipeline with ppl_id: dfc94d03-d048-49b1-bb8e-95c9cac46c25: %Ppl.PplSubInits.Model.PplS"},{"event":"cmd_output","timestamp":1607098381,"output":"ubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_"},{"event":"cmd_output","timestamp":1607098381,"output":"description: nil, id: 286, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16"},{"event":"cmd_output","timestamp":1607098381,"output":":13:01.368554], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"dfc94d03-d048-49b1-bb8e-95c9cac46c25\", recovery_count: 0, result: nil, result_rea"},{"event":"cmd_output","timestamp":1607098381,"output":"son: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020"},{"event":"cmd_output","timestamp":1607098381,"output":"-12-04 16:13:01.368563]}\n\u001b[0m\u001b[22m\n16:13:01.371 [info] Periodic from module Elixir.Ppl.Ppls.STMHa"},{"event":"cmd_output","timestamp":1607098381,"output":"ndler.InitializingState with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms, me"},{"event":"cmd_output","timestamp":1607098381,"output":"tric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %{al"},{"event":"cmd_output","timestamp":1607098381,"output":"lowed_states: [\"initializing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Mode"},{"event":"cmd_output","timestamp":1607098381,"output":"l.Ppls, observed_state: \"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler"},{"event":"cmd_output","timestamp":1607098381,"output":".InitializingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :s"},{"event":"cmd_output","timestamp":1607098381,"output":"tate, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m"},{"event":"cmd_output","timestamp":1607098381,"output":"\u001b[22m\n16:13:01.372 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingState with name E"},{"event":"cmd_output","timestamp":1607098381,"output":"lixir.Ppl.Ppls.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Pp"},{"event":"cmd_output","timestamp":1607098381,"output":"l-Ppls-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"pending\", \"queuing\", \"running"},{"event":"cmd_output","timestamp":1607098381,"output":"\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publ"},{"event":"cmd_output","timestamp":1607098381,"output":"isher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, ret"},{"event":"cmd_output","timestamp":1607098381,"output":"urning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: P"},{"event":"cmd_output","timestamp":1607098381,"output":"pl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:13:01.373 [info] Periodic f"},{"event":"cmd_output","timestamp":1607098381,"output":"rom module Elixir.Ppl.Ppls.STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandler.QueuingState"},{"event":"cmd_output","timestamp":1607098381,"output":" :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, rec"},{"event":"cmd_output","timestamp":1607098381,"output":"urring args: %{allowed_states: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, initial_query: "},{"event":"cmd_output","timestamp":1607098381,"output":"Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.ST"},{"event":"cmd_output","timestamp":1607098381,"output":"MHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at,"},{"event":"cmd_output","timestamp":1607098381,"output":" :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b"},{"event":"cmd_output","timestamp":1607098381,"output":"[0m\u001b[22m\n16:13:01.374 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.RunningState with nam"},{"event":"cmd_output","timestamp":1607098381,"output":"e Elixir.Ppl.Ppls.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", ["},{"event":"cmd_output","timestamp":1607098381,"output":"\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"don"},{"event":"cmd_output","timestamp":1607098381,"output":"e\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"running\", publisher_"},{"event":"cmd_output","timestamp":1607098381,"output":"cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returnin"},{"event":"cmd_output","timestamp":1607098381,"output":"g: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Pp"},{"event":"cmd_output","timestamp":1607098381,"output":"ls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:13:01.375 [info] Periodic from m"},{"event":"cmd_output","timestamp":1607098381,"output":"odule Elixir.Ppl.Ppls.STMHandler.StoppingState with name Elixir.Ppl.Ppls.STMHandler.StoppingState ::"},{"event":"cmd_output","timestamp":1607098381,"output":" period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recur"},{"event":"cmd_output","timestamp":1607098381,"output":"ring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Mod"},{"event":"cmd_output","timestamp":1607098381,"output":"el.Ppls, observed_state: \"stopping\", publisher_cb: #Function<0.71803493/1 in Ppl.Ppls.STMHandler.Sto"},{"event":"cmd_output","timestamp":1607098381,"output":"ppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :r"},{"event":"cmd_output","timestamp":1607098381,"output":"esult, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098381,"output":"6:13:01.375 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedState with name El"},{"event":"cmd_output","timestamp":1607098381,"output":"ixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\""},{"event":"cmd_output","timestamp":1607098381,"output":", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args: %{allowed_states: [\"fetching\", \"done"},{"event":"cmd_output","timestamp":1607098381,"output":"\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"created\""},{"event":"cmd_output","timestamp":1607098381,"output":", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state,"},{"event":"cmd_output","timestamp":1607098381,"output":" :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :sk"},{"event":"cmd_output","timestamp":1607098381,"output":"ip}\n\u001b[0m\u001b[22m\n16:13:01.376 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.Fetching"},{"event":"cmd_output","timestamp":1607098381,"output":"State with name Elixir.Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 ms, metric_name: {\"Pp"},{"event":"cmd_output","timestamp":1607098381,"output":"l.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %{allowed_states"},{"event":"cmd_output","timestamp":1607098381,"output":": [\"regular_init\", \"compilation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Mode"},{"event":"cmd_output","timestamp":1607098381,"output":"l.PplSubInits, observed_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id,"},{"event":"cmd_output","timestamp":1607098381,"output":" :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInit"},{"event":"cmd_output","timestamp":1607098381,"output":"s.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:01.377 [info] Periodic from module E"},{"event":"cmd_output","timestamp":1607098381,"output":"lixir.Ppl.PplSubInits.STMHandler.CompilationState with name Elixir.Ppl.PplSubInits.STMHandler.Compil"},{"event":"cmd_output","timestamp":1607098381,"output":"ationState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-Com"},{"event":"cmd_output","timestamp":1607098381,"output":"pilationState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"stopping\", \"don"},{"event":"cmd_output","timestamp":1607098381,"output":"e\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"compil"},{"event":"cmd_output","timestamp":1607098381,"output":"ation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :"},{"event":"cmd_output","timestamp":1607098381,"output":"state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_superviso"},{"event":"cmd_output","timestamp":1607098381,"output":"r: :skip}\n\u001b[0m\u001b[22m\n16:13:01.378 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.Re"},{"event":"cmd_output","timestamp":1607098381,"output":"gularInitState with name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period: 100 ms, metri"},{"event":"cmd_output","timestamp":1607098381,"output":"c_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurring args: %"},{"event":"cmd_output","timestamp":1607098381,"output":"{allowed_states: [\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, ob"},{"event":"cmd_output","timestamp":1607098381,"output":"served_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_r"},{"event":"cmd_output","timestamp":1607098381,"output":"equest, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSu"},{"event":"cmd_output","timestamp":1607098381,"output":"bInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:01.378 [info] Periodic from module Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098381,"output":"Blocks.STMHandler.InitializingState with name Elixir.Ppl.PplBlocks.STMHandler.InitializingState :: p"},{"event":"cmd_output","timestamp":1607098381,"output":"eriod: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-InitializingState\"]}"},{"event":"cmd_output","timestamp":1607098381,"output":", recurring args: %{allowed_states: [\"initializing\", \"waiting\", \"done\"], cooling_time_sec: 0, initia"},{"event":"cmd_output","timestamp":1607098381,"output":"l_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"initializing\", publisher_cb: :skip, repo: P"},{"event":"cmd_output","timestamp":1607098381,"output":"pl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :pp"},{"event":"cmd_output","timestamp":1607098381,"output":"l_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098381,"output":"3:01.380 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.WaitingState with name Elixir."},{"event":"cmd_output","timestamp":1607098381,"output":"Ppl.PplBlocks.STMHandler.WaitingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Pp"},{"event":"cmd_output","timestamp":1607098381,"output":"l-PplBlocks-STMHandler-WaitingState\"]}, recurring args: %{allowed_states: [\"waiting\", \"running\", \"do"},{"event":"cmd_output","timestamp":1607098381,"output":"ne\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"waiting\", "},{"event":"cmd_output","timestamp":1607098381,"output":"publisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>, repo: Ppl.Ecto"},{"event":"cmd_output","timestamp":1607098381,"output":"Repo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :"},{"event":"cmd_output","timestamp":1607098381,"output":"block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:01.38"},{"event":"cmd_output","timestamp":1607098381,"output":"2 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.RunningState with name Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098381,"output":"Blocks.STMHandler.RunningState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBl"},{"event":"cmd_output","timestamp":1607098381,"output":"ocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], "},{"event":"cmd_output","timestamp":1607098381,"output":"cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"running\", publi"},{"event":"cmd_output","timestamp":1607098381,"output":"sher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo"},{"event":"cmd_output","timestamp":1607098381,"output":", returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :bloc"},{"event":"cmd_output","timestamp":1607098381,"output":"k_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098381,"output":"3:01.382 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.StoppingState with name Elixir"},{"event":"cmd_output","timestamp":1607098381,"output":".Ppl.PplBlocks.STMHandler.StoppingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\""},{"event":"cmd_output","timestamp":1607098381,"output":"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], c"},{"event":"cmd_output","timestamp":1607098381,"output":"ooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"stopping\", publi"},{"event":"cmd_output","timestamp":1607098381,"output":"sher_cb: #Function<0.104215991/1 in Ppl.PplBlocks.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRe"},{"event":"cmd_output","timestamp":1607098381,"output":"po, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :bl"},{"event":"cmd_output","timestamp":1607098381,"output":"ock_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098381,"output":":13:01.382 [info] Periodic from module Elixir.Block.Blocks.STMHandler.InitializingState with name E"},{"event":"cmd_output","timestamp":1607098381,"output":"lixir.Block.Blocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_"},{"event":"cmd_output","timestamp":1607098381,"output":"up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"running\", \""},{"event":"cmd_output","timestamp":1607098381,"output":"done\"], cooling_time_sec: 0, initial_query: Block.Blocks.Model.Blocks, observed_state: \"initializing"},{"event":"cmd_output","timestamp":1607098381,"output":"\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :sta"},{"event":"cmd_output","timestamp":1607098381,"output":"te, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098381,"output":"2m\n16:13:01.383 [info] Periodic from module Elixir.Block.Blocks.STMHandler.RunningState with name "},{"event":"cmd_output","timestamp":1607098381,"output":"Elixir.Block.Blocks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\","},{"event":"cmd_output","timestamp":1607098381,"output":" [\"Block-Blocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\""},{"event":"cmd_output","timestamp":1607098381,"output":", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"running\""},{"event":"cmd_output","timestamp":1607098381,"output":", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :stat"},{"event":"cmd_output","timestamp":1607098381,"output":"e, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098381,"output":"m\n16:13:01.383 [info] Periodic from module Elixir.Block.Blocks.STMHandler.StoppingState with name "},{"event":"cmd_output","timestamp":1607098381,"output":"Elixir.Block.Blocks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\""},{"event":"cmd_output","timestamp":1607098381,"output":", [\"Block-Blocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"]"},{"event":"cmd_output","timestamp":1607098381,"output":", cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"stopping\", publis"},{"event":"cmd_output","timestamp":1607098381,"output":"her_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :reco"},{"event":"cmd_output","timestamp":1607098381,"output":"very_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13"},{"event":"cmd_output","timestamp":1607098381,"output":":01.383 [info] Periodic from module Elixir.Block.Tasks.STMHandler.PendingState with name Elixir.Blo"},{"event":"cmd_output","timestamp":1607098381,"output":"ck.Tasks.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Ta"},{"event":"cmd_output","timestamp":1607098381,"output":"sks-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_"},{"event":"cmd_output","timestamp":1607098381,"output":"sec: 0, initial_query: Block.Tasks.Model.Tasks, observed_state: \"pending\", publisher_cb: :skip, repo"},{"event":"cmd_output","timestamp":1607098381,"output":": Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_"},{"event":"cmd_output","timestamp":1607098381,"output":"id, :build_request_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:0"},{"event":"cmd_output","timestamp":1607098381,"output":"1.384 [info] Periodic from module Elixir.Block.Tasks.STMHandler.RunningState with name Elixir.Block"},{"event":"cmd_output","timestamp":1607098381,"output":".Tasks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Task"},{"event":"cmd_output","timestamp":1607098381,"output":"s-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], coo"},{"event":"cmd_output","timestamp":1607098381,"output":"ling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"running\", publisher_cb: "},{"event":"cmd_output","timestamp":1607098381,"output":":skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_cou"},{"event":"cmd_output","timestamp":1607098381,"output":"nt, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:01.384 [i"},{"event":"cmd_output","timestamp":1607098381,"output":"nfo] Periodic from module Elixir.Block.Tasks.STMHandler.StoppingState with name Elixir.Block.Tasks."},{"event":"cmd_output","timestamp":1607098381,"output":"STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMH"},{"event":"cmd_output","timestamp":1607098381,"output":"andler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -"},{"event":"cmd_output","timestamp":1607098381,"output":"2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"stopping\", publisher_cb: :skip, repo: Bl"},{"event":"cmd_output","timestamp":1607098381,"output":"ock.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id],"},{"event":"cmd_output","timestamp":1607098381,"output":" schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:01.483 [info] ppl_id: 2"},{"event":"cmd_output","timestamp":1607098381,"output":"fddc332-bc2e-4b90-a73e-1a5699d44632, type: PplRequests, event: persisted source_args for pipeline: 2"},{"event":"cmd_output","timestamp":1607098381,"output":"fddc332-bc2e-4b90-a73e-1a5699d44632, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_"},{"event":"cmd_output","timestamp":1607098381,"output":"source/2(L89), \n\u001b[0m\u001b[22m\n16:13:01.485 [info] ppl_id: 2fddc332-bc2e-4b90-a73e-1a5699d44632, type:"},{"event":"cmd_output","timestamp":1607098381,"output":" PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM."},{"event":"cmd_output","timestamp":1607098381,"output":"Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:01.502 [info] ppl_id: 2fddc332-bc2e-4b90-a73e-1a56"},{"event":"cmd_output","timestamp":1607098381,"output":"99d44632, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098381,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:01.518 [info] ppl_id: 2fddc332-"},{"event":"cmd_output","timestamp":1607098381,"output":"bc2e-4b90-a73e-1a5699d44632, type: PplRequests, event: persisted definition for request with request"},{"event":"cmd_output","timestamp":1607098381,"output":"_token: e4946c8f-c3b3-4049-ba13-7d60066fb9e9, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQuerie"},{"event":"cmd_output","timestamp":1607098381,"output":"s.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:13:01.521 [info] Queue persisted: {:ok, %Ppl.Queues.Mod"},{"event":"cmd_output","timestamp":1607098381,"output":"el.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:13:01.52"},{"event":"cmd_output","timestamp":1607098381,"output":"0178], name: \"master-.semaphore/semaphore.yml\", organization_id: \"69de9ee6-08cd-4d56-aa2c-358c31cf81"},{"event":"cmd_output","timestamp":1607098381,"output":"9c\", project_id: \"123\", queue_id: \"907d786d-f687-40f4-9beb-3ad4392bf834\", scope: \"project\", updated_"},{"event":"cmd_output","timestamp":1607098381,"output":"at: ~N[2020-12-04 16:13:01.520186], user_generated: false}}\n\u001b[0m\u001b[22m\n16:13:01.525 [info] event: "},{"event":"cmd_output","timestamp":1607098381,"output":"created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098381,"output":":13:01.526 [info] ppl_id: 2fddc332-bc2e-4b90-a73e-1a5699d44632, type: PplBlocks, block_index: 0, st"},{"event":"cmd_output","timestamp":1607098381,"output":"ate: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.Regu"},{"event":"cmd_output","timestamp":1607098381,"output":"larInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:01.534 [info] ppl_id: 2fddc332-bc2e-4b90-a73e-1a56"},{"event":"cmd_output","timestamp":1607098381,"output":"99d44632, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098381,"output":" origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:01.540 [info] ppl_id: 2"},{"event":"cmd_output","timestamp":1607098381,"output":"fddc332-bc2e-4b90-a73e-1a5699d44632, type: Ppls, state: pending, event: exit_scheduling, recovery_co"},{"event":"cmd_output","timestamp":1607098381,"output":"unt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:01.543 [info] pp"},{"event":"cmd_output","timestamp":1607098381,"output":"l_id: 2fddc332-bc2e-4b90-a73e-1a5699d44632, type: PplBlocks, block_index: 0, state: waiting, event: "},{"event":"cmd_output","timestamp":1607098381,"output":"exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098381,"output":"22m\n16:13:01.554 [info] ppl_id: 2fddc332-bc2e-4b90-a73e-1a5699d44632, type: Ppls, state: queuing, "},{"event":"cmd_output","timestamp":1607098381,"output":"event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \r"},{"event":"cmd_output","timestamp":1607098381,"output":"\n\u001b[0m\u001b[22m\n16:13:01.564 [info] ppl_id: 2fddc332-bc2e-4b90-a73e-1a5699d44632, type: Ppls, state: ru"},{"event":"cmd_output","timestamp":1607098381,"output":"nning, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1("},{"event":"cmd_output","timestamp":1607098381,"output":"L90), \n\u001b[0m\u001b[22m\n16:13:01.572 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeli"},{"event":"cmd_output","timestamp":1607098381,"output":"ne: \"2fddc332-bc2e-4b90-a73e-1a5699d44632\"\n\u001b[0m\u001b[22m\n16:13:01.579 [info] block_id: 00bfdb31-517c-"},{"event":"cmd_output","timestamp":1607098381,"output":"47c5-b5ed-65775490505c, type: BlockRequests, event: persisted block run request from ppl 2fddc332-bc"},{"event":"cmd_output","timestamp":1607098381,"output":"2e-4b90-a73e-1a5699d44632 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries"},{"event":"cmd_output","timestamp":1607098381,"output":".process_response/4(L35), \n\u001b[0m\u001b[22m\n16:13:01.585 [info] block_id: 00bfdb31-517c-47c5-b5ed-657754"},{"event":"cmd_output","timestamp":1607098381,"output":"90505c, type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Bl"},{"event":"cmd_output","timestamp":1607098381,"output":"ock.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:13:01.588 [info] Block 0 of pipeline "},{"event":"cmd_output","timestamp":1607098381,"output":"with id: 2fddc332-bc2e-4b90-a73e-1a5699d44632 scheduled in block service with id: : \"00bfdb31-517c-4"},{"event":"cmd_output","timestamp":1607098381,"output":"7c5-b5ed-65775490505c\"\n\u001b[0m\u001b[22m\n16:13:01.594 [info] ppl_id: 2fddc332-bc2e-4b90-a73e-1a5699d44632"},{"event":"cmd_output","timestamp":1607098381,"output":", type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098381,"output":": Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:01.599 [info] block_id: 00bfdb"},{"event":"cmd_output","timestamp":1607098381,"output":"31-517c-47c5-b5ed-65775490505c, type: BlockRequests, event: persisted build and sub_ppl details for "},{"event":"cmd_output","timestamp":1607098381,"output":"block_request: 00bfdb31-517c-47c5-b5ed-65775490505c, origin: Elixir.Block.BlockRequests.Model.BlockR"},{"event":"cmd_output","timestamp":1607098381,"output":"equestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:13:01.603 [info] ppl_id: 9fbec02f-b369-45a4-af6"},{"event":"cmd_output","timestamp":1607098381,"output":"d-fd7919c81d28, type: PplRequests, event: persisted source_args for pipeline: 9fbec02f-b369-45a4-af6"},{"event":"cmd_output","timestamp":1607098381,"output":"d-fd7919c81d28, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098381,"output":"\u001b[22m\n16:13:01.604 [info] block_id: 00bfdb31-517c-47c5-b5ed-65775490505c, type: Tasks, state: pend"},{"event":"cmd_output","timestamp":1607098381,"output":"ing, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all"},{"event":"cmd_output","timestamp":1607098381,"output":"_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:13:01.606 [info] ppl_id: 9fbec02f-b369-45a4-af6d-fd7919c81d28, type: "},{"event":"cmd_output","timestamp":1607098381,"output":"PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.I"},{"event":"cmd_output","timestamp":1607098381,"output":"mpl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:01.606 [info] block_id: 00bfdb31-517c-47c5-b5ed-657"},{"event":"cmd_output","timestamp":1607098381,"output":"75490505c, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098381,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:01.620 [info] block_id: 00bfdb31-517c-47"},{"event":"cmd_output","timestamp":1607098381,"output":"c5-b5ed-65775490505c, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098381,"output":": Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:01.622 [info] ppl_id: 9fbec02f"},{"event":"cmd_output","timestamp":1607098381,"output":"-b369-45a4-af6d-fd7919c81d28, type: PplSubInits, state: regular_init, event: exit_scheduling, recove"},{"event":"cmd_output","timestamp":1607098381,"output":"ry_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:01.647 [info"},{"event":"cmd_output","timestamp":1607098381,"output":"] ppl_id: 9fbec02f-b369-45a4-af6d-fd7919c81d28, type: PplRequests, event: persisted definition for "},{"event":"cmd_output","timestamp":1607098381,"output":"request with request_token: 704ee415-a5fe-410e-ae04-569456d4104f, origin: Elixir.Ppl.PplRequests.Mod"},{"event":"cmd_output","timestamp":1607098381,"output":"el.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:13:01.653 [info] event: created, or"},{"event":"cmd_output","timestamp":1607098381,"output":"igin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:01.653 "},{"event":"cmd_output","timestamp":1607098381,"output":"[info] ppl_id: 9fbec02f-b369-45a4-af6d-fd7919c81d28, type: PplBlocks, block_index: 0, state: initia"},{"event":"cmd_output","timestamp":1607098381,"output":"lizing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitStat"},{"event":"cmd_output","timestamp":1607098381,"output":"e.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:01.654 [info] ppl_id: 9fbec02f-b369-45a4-af6d-fd7919c81d28, t"},{"event":"cmd_output","timestamp":1607098381,"output":"ype: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098381,"output":"ixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:01.660 [info] ppl_id: 9fbec02f-b36"},{"event":"cmd_output","timestamp":1607098381,"output":"9-45a4-af6d-fd7919c81d28, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098381,"output":"gin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:01.660 [info] ppl_id: 9fbec"},{"event":"cmd_output","timestamp":1607098381,"output":"02f-b369-45a4-af6d-fd7919c81d28, type: PplBlocks, block_index: 0, state: waiting, event: exit_schedu"},{"event":"cmd_output","timestamp":1607098381,"output":"ling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:"},{"event":"cmd_output","timestamp":1607098381,"output":"01.675 [info] ppl_id: 9fbec02f-b369-45a4-af6d-fd7919c81d28, type: Ppls, state: queuing, event: exit"},{"event":"cmd_output","timestamp":1607098381,"output":"_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098381,"output":"\n16:13:01.716 [info] ppl_id: 1875b471-3841-4992-a04b-a979e80589e8, type: PplRequests, event: persis"},{"event":"cmd_output","timestamp":1607098381,"output":"ted source_args for pipeline: 1875b471-3841-4992-a04b-a979e80589e8, origin: Elixir.Ppl.PplRequests.M"},{"event":"cmd_output","timestamp":1607098381,"output":"odel.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:13:01.724 [info] ppl_id: 1875b471-384"},{"event":"cmd_output","timestamp":1607098381,"output":"1-4992-a04b-a979e80589e8, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count"},{"event":"cmd_output","timestamp":1607098381,"output":": 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:01.726 [info] block"},{"event":"cmd_output","timestamp":1607098381,"output":"_id: 00bfdb31-517c-47c5-b5ed-65775490505c, type: Tasks, state: done, event: exit_scheduling, recover"},{"event":"cmd_output","timestamp":1607098381,"output":"y_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:01.732 [info]"},{"event":"cmd_output","timestamp":1607098381,"output":" block_id: 00bfdb31-517c-47c5-b5ed-65775490505c, type: Blocks, state: done, event: exit_scheduling,"},{"event":"cmd_output","timestamp":1607098381,"output":" recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:01.74"},{"event":"cmd_output","timestamp":1607098381,"output":"1 [info] ppl_id: 2fddc332-bc2e-4b90-a73e-1a5699d44632, block_id: 00bfdb31-517c-47c5-b5ed-6577549050"},{"event":"cmd_output","timestamp":1607098381,"output":"5c, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098381,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:01.749 [info] p"},{"event":"cmd_output","timestamp":1607098381,"output":"pl_id: 1875b471-3841-4992-a04b-a979e80589e8, type: PplSubInits, state: regular_init, event: exit_sch"},{"event":"cmd_output","timestamp":1607098381,"output":"eduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098381,"output":"13:01.760 [info] ppl_id: 2fddc332-bc2e-4b90-a73e-1a5699d44632, type: Ppls, state: done, result: pas"},{"event":"cmd_output","timestamp":1607098381,"output":"sed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L9"},{"event":"cmd_output","timestamp":1607098381,"output":"0), \n\u001b[0m\u001b[22m\n16:13:01.772 [info] ppl_id: 1875b471-3841-4992-a04b-a979e80589e8, type: PplRequest"},{"event":"cmd_output","timestamp":1607098381,"output":"s, event: persisted definition for request with request_token: 6f76f380-ad90-424e-9785-3b3f2de7181f,"},{"event":"cmd_output","timestamp":1607098381,"output":" origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098381,"output":"3:01.775 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:lo"},{"event":"cmd_output","timestamp":1607098381,"output":"aded, \"queues\">, inserted_at: ~N[2020-12-04 16:13:01.773935], name: \"master-.semaphore/semaphore.yml"},{"event":"cmd_output","timestamp":1607098381,"output":"\", organization_id: \"5cbdfb0b-3b20-436a-9a3b-0df4766b79dd\", project_id: \"456\", queue_id: \"60728e5e-0"},{"event":"cmd_output","timestamp":1607098381,"output":"30c-48ec-aa1c-d792dd4975de\", scope: \"project\", updated_at: ~N[2020-12-04 16:13:01.773945], user_gene"},{"event":"cmd_output","timestamp":1607098381,"output":"rated: false}}\n\u001b[0m\u001b[22m\n16:13:01.779 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHa"},{"event":"cmd_output","timestamp":1607098381,"output":"ndler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:01.779 [info] ppl_id: 1875b471-3841-4992"},{"event":"cmd_output","timestamp":1607098381,"output":"-a04b-a979e80589e8, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_c"},{"event":"cmd_output","timestamp":1607098381,"output":"ount: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098381,"output":":13:01.781 [info] ppl_id: 1875b471-3841-4992-a04b-a979e80589e8, type: PplSubInits, state: done, res"},{"event":"cmd_output","timestamp":1607098381,"output":"ult: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_cha"},{"event":"cmd_output","timestamp":1607098381,"output":"nge/1(L90), \n\u001b[0m\u001b[22m\n16:13:01.789 [info] ppl_id: 1875b471-3841-4992-a04b-a979e80589e8, type: Pp"},{"event":"cmd_output","timestamp":1607098381,"output":"lBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098381,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:01.794 [info] ppl_id: 1875b471-3841-4992"},{"event":"cmd_output","timestamp":1607098381,"output":"-a04b-a979e80589e8, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: E"},{"event":"cmd_output","timestamp":1607098381,"output":"lixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:01.794 [info] ppl_id: 9fbec02f-b3"},{"event":"cmd_output","timestamp":1607098381,"output":"69-45a4-af6d-fd7919c81d28, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098381,"output":"igin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:01.802 [info] PplBlocks Wa"},{"event":"cmd_output","timestamp":1607098381,"output":"itingState STM is scheduling block 0 from pipeline: \"9fbec02f-b369-45a4-af6d-fd7919c81d28\"\n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098381,"output":"m\n16:13:01.806 [info] ppl_id: 1875b471-3841-4992-a04b-a979e80589e8, type: Ppls, state: queuing, ev"},{"event":"cmd_output","timestamp":1607098381,"output":"ent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b"},{"event":"cmd_output","timestamp":1607098381,"output":"[0m\u001b[22m\n16:13:01.811 [info] block_id: 26cbfe8b-b7aa-44ab-8a59-fa4fab2b63a0, type: BlockRequests, "},{"event":"cmd_output","timestamp":1607098381,"output":"event: persisted block run request from ppl 9fbec02f-b369-45a4-af6d-fd7919c81d28 for block 0, origin"},{"event":"cmd_output","timestamp":1607098381,"output":": Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:13:"},{"event":"cmd_output","timestamp":1607098381,"output":"01.815 [info] block_id: 26cbfe8b-b7aa-44ab-8a59-fa4fab2b63a0, type: Blocks, state: initializing, ev"},{"event":"cmd_output","timestamp":1607098381,"output":"ent: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43),"},{"event":"cmd_output","timestamp":1607098381,"output":" \n\u001b[0m\u001b[22m\n16:13:01.817 [info] Block 0 of pipeline with id: 9fbec02f-b369-45a4-af6d-fd7919c81d28"},{"event":"cmd_output","timestamp":1607098381,"output":" scheduled in block service with id: : \"26cbfe8b-b7aa-44ab-8a59-fa4fab2b63a0\"\n\u001b[0m\u001b[22m\n16:13:01.8"},{"event":"cmd_output","timestamp":1607098381,"output":"19 [info] ppl_id: 9fbec02f-b369-45a4-af6d-fd7919c81d28, type: PplBlocks, block_index: 0, state: run"},{"event":"cmd_output","timestamp":1607098381,"output":"ning, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098381,"output":"90), \n\u001b[0m\u001b[22m\n16:13:01.823 [info] block_id: 26cbfe8b-b7aa-44ab-8a59-fa4fab2b63a0, type: BlockRe"},{"event":"cmd_output","timestamp":1607098381,"output":"quests, event: persisted build and sub_ppl details for block_request: 26cbfe8b-b7aa-44ab-8a59-fa4fab"},{"event":"cmd_output","timestamp":1607098381,"output":"2b63a0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098381,"output":"2m\n16:13:01.824 [info] ppl_id: 1875b471-3841-4992-a04b-a979e80589e8, type: Ppls, state: running, e"},{"event":"cmd_output","timestamp":1607098381,"output":"vent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n"},{"event":"cmd_output","timestamp":1607098381,"output":"\u001b[0m\u001b[22m\n16:13:01.825 [info] block_id: 26cbfe8b-b7aa-44ab-8a59-fa4fab2b63a0, type: Tasks, state: "},{"event":"cmd_output","timestamp":1607098381,"output":"pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState"},{"event":"cmd_output","timestamp":1607098381,"output":".all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:13:01.830 [info] block_id: 26cbfe8b-b7aa-44ab-8a59-fa4fab2b63a0, "},{"event":"cmd_output","timestamp":1607098381,"output":"type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.I"},{"event":"cmd_output","timestamp":1607098381,"output":"mpl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:01.836 [info] PplBlocks WaitingState STM is schedul"},{"event":"cmd_output","timestamp":1607098381,"output":"ing block 0 from pipeline: \"1875b471-3841-4992-a04b-a979e80589e8\"\n\u001b[0m\u001b[22m\n16:13:01.841 [info] p"},{"event":"cmd_output","timestamp":1607098381,"output":"pl_id: 5ff359d5-8f2f-471e-9f25-e9b026d6a09d, type: PplRequests, event: persisted source_args for pip"},{"event":"cmd_output","timestamp":1607098381,"output":"eline: 5ff359d5-8f2f-471e-9f25-e9b026d6a09d, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries"},{"event":"cmd_output","timestamp":1607098381,"output":".insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:13:01.845 [info] block_id: 7b0784dd-6890-40f8-9081-3916a42cc"},{"event":"cmd_output","timestamp":1607098381,"output":"d83, type: BlockRequests, event: persisted block run request from ppl 1875b471-3841-4992-a04b-a979e8"},{"event":"cmd_output","timestamp":1607098381,"output":"0589e8 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4"},{"event":"cmd_output","timestamp":1607098381,"output":"(L35), \n\u001b[0m\u001b[22m\n16:13:01.846 [info] ppl_id: 5ff359d5-8f2f-471e-9f25-e9b026d6a09d, type: PplSubI"},{"event":"cmd_output","timestamp":1607098381,"output":"nits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098381,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:01.851 [info] block_id: 7b0784dd-6890-40f8-9081-3916a42ccd"},{"event":"cmd_output","timestamp":1607098381,"output":"83, type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block."},{"event":"cmd_output","timestamp":1607098381,"output":"Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:13:01.859 [info] Block 0 of pipeline with"},{"event":"cmd_output","timestamp":1607098381,"output":" id: 1875b471-3841-4992-a04b-a979e80589e8 scheduled in block service with id: : \"7b0784dd-6890-40f8-"},{"event":"cmd_output","timestamp":1607098381,"output":"9081-3916a42ccd83\"\n\u001b[0m\u001b[22m\n16:13:01.860 [info] block_id: 26cbfe8b-b7aa-44ab-8a59-fa4fab2b63a0, "},{"event":"cmd_output","timestamp":1607098381,"output":"type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Im"},{"event":"cmd_output","timestamp":1607098381,"output":"pl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:01.862 [info] ppl_id: 1875b471-3841-4992-a04b-a979e8"},{"event":"cmd_output","timestamp":1607098381,"output":"0589e8, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098381,"output":"origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:01.867 [info] block_id: "},{"event":"cmd_output","timestamp":1607098381,"output":"7b0784dd-6890-40f8-9081-3916a42ccd83, type: BlockRequests, event: persisted build and sub_ppl detail"},{"event":"cmd_output","timestamp":1607098381,"output":"s for block_request: 7b0784dd-6890-40f8-9081-3916a42ccd83, origin: Elixir.Block.BlockRequests.Model."},{"event":"cmd_output","timestamp":1607098381,"output":"BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:13:01.869 [info] block_id: 7b0784dd-6890-"},{"event":"cmd_output","timestamp":1607098381,"output":"40f8-9081-3916a42ccd83, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098381,"output":"ir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:13:01.871 [info] bloc"},{"event":"cmd_output","timestamp":1607098381,"output":"k_id: 7b0784dd-6890-40f8-9081-3916a42ccd83, type: Blocks, state: running, event: exit_scheduling, re"},{"event":"cmd_output","timestamp":1607098381,"output":"covery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:01.883 ["},{"event":"cmd_output","timestamp":1607098381,"output":"info] ppl_id: 5ff359d5-8f2f-471e-9f25-e9b026d6a09d, type: PplSubInits, state: regular_init, event: "},{"event":"cmd_output","timestamp":1607098381,"output":"exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098381,"output":"22m\n16:13:01.888 [info] block_id: 7b0784dd-6890-40f8-9081-3916a42ccd83, type: Tasks, state: runnin"},{"event":"cmd_output","timestamp":1607098381,"output":"g, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90)"},{"event":"cmd_output","timestamp":1607098381,"output":", \n\u001b[0m\u001b[22m\n16:13:01.914 [info] ppl_id: 5ff359d5-8f2f-471e-9f25-e9b026d6a09d, type: PplRequests,"},{"event":"cmd_output","timestamp":1607098381,"output":" event: persisted definition for request with request_token: 3e40c4b4-8d87-42fa-8a20-64ef7e0a60e0, o"},{"event":"cmd_output","timestamp":1607098381,"output":"rigin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:13:"},{"event":"cmd_output","timestamp":1607098381,"output":"01.931 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1("},{"event":"cmd_output","timestamp":1607098381,"output":"L105), \n\u001b[0m\u001b[22m\n16:13:01.931 [info] ppl_id: 5ff359d5-8f2f-471e-9f25-e9b026d6a09d, type: PplBloc"},{"event":"cmd_output","timestamp":1607098381,"output":"ks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSu"},{"event":"cmd_output","timestamp":1607098381,"output":"bInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:01.933 [info] ppl_id: 5ff359"},{"event":"cmd_output","timestamp":1607098381,"output":"d5-8f2f-471e-9f25-e9b026d6a09d, type: PplSubInits, state: done, result: passed, event: exit_scheduli"},{"event":"cmd_output","timestamp":1607098381,"output":"ng, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:01"},{"event":"cmd_output","timestamp":1607098381,"output":".944 [info] ppl_id: 5ff359d5-8f2f-471e-9f25-e9b026d6a09d, type: Ppls, state: pending, event: exit_s"},{"event":"cmd_output","timestamp":1607098381,"output":"cheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098381,"output":"6:13:01.945 [info] ppl_id: 5ff359d5-8f2f-471e-9f25-e9b026d6a09d, type: PplBlocks, block_index: 0, s"},{"event":"cmd_output","timestamp":1607098381,"output":"tate: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098381,"output":"hange/1(L90), \n\u001b[0m\u001b[22m\n16:13:01.946 [info] block_id: 26cbfe8b-b7aa-44ab-8a59-fa4fab2b63a0, type"},{"event":"cmd_output","timestamp":1607098381,"output":": Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_"},{"event":"cmd_output","timestamp":1607098381,"output":"state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:01.956 [info] ppl_id: 80aa0af8-a963-4b1d-8267-52ad351f801a,"},{"event":"cmd_output","timestamp":1607098381,"output":" type: PplRequests, event: persisted source_args for pipeline: 80aa0af8-a963-4b1d-8267-52ad351f801a,"},{"event":"cmd_output","timestamp":1607098381,"output":" origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:13:01"},{"event":"cmd_output","timestamp":1607098381,"output":".957 [info] ppl_id: 5ff359d5-8f2f-471e-9f25-e9b026d6a09d, type: Ppls, state: queuing, event: exit_s"},{"event":"cmd_output","timestamp":1607098381,"output":"cheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098381,"output":"6:13:01.959 [info] ppl_id: 80aa0af8-a963-4b1d-8267-52ad351f801a, type: PplSubInits, state: fetching"},{"event":"cmd_output","timestamp":1607098381,"output":", event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90),"},{"event":"cmd_output","timestamp":1607098381,"output":" \n\u001b[0m\u001b[22m\n16:13:01.962 [info] block_id: 26cbfe8b-b7aa-44ab-8a59-fa4fab2b63a0, type: Blocks, sta"},{"event":"cmd_output","timestamp":1607098381,"output":"te: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change"},{"event":"cmd_output","timestamp":1607098381,"output":"/1(L90), \n\u001b[0m\u001b[22m\n16:13:01.971 [info] ppl_id: 9fbec02f-b369-45a4-af6d-fd7919c81d28, block_id: 2"},{"event":"cmd_output","timestamp":1607098381,"output":"6cbfe8b-b7aa-44ab-8a59-fa4fab2b63a0, type: PplBlocks, block_index: 0, state: done, result: passed, e"},{"event":"cmd_output","timestamp":1607098381,"output":"vent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n"},{"event":"cmd_output","timestamp":1607098381,"output":"\u001b[0m\u001b[22m\n16:13:01.983 [info] ppl_id: 9fbec02f-b369-45a4-af6d-fd7919c81d28, type: Ppls, state: don"},{"event":"cmd_output","timestamp":1607098381,"output":"e, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_sta"},{"event":"cmd_output","timestamp":1607098381,"output":"te_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:01.994 [info] ppl_id: 80aa0af8-a963-4b1d-8267-52ad351f801a, ty"},{"event":"cmd_output","timestamp":1607098381,"output":"pe: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loop"},{"event":"cmd_output","timestamp":1607098382,"output":"er.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:02.022 [info] ppl_id: 80aa0af8-a963-4b1d-82"},{"event":"cmd_output","timestamp":1607098382,"output":"67-52ad351f801a, type: PplRequests, event: persisted definition for request with request_token: 42bf"},{"event":"cmd_output","timestamp":1607098382,"output":"f0f8-8064-436d-9aee-c870b6938d2b, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_def"},{"event":"cmd_output","timestamp":1607098382,"output":"inition/3(L76), \n\u001b[0m\u001b[22m\n16:13:02.026 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__"},{"event":"cmd_output","timestamp":1607098382,"output":"meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:13:02.024961], name:"},{"event":"cmd_output","timestamp":1607098382,"output":" \"dev-.semaphore/semaphore.yml\", organization_id: \"cd93df73-a729-4ffc-9bee-5c15154e77e7\", project_id"},{"event":"cmd_output","timestamp":1607098382,"output":": \"123\", queue_id: \"9be4a66c-cc6d-4b34-bd50-d9c25f40be7c\", scope: \"project\", updated_at: ~N[2020-12-"},{"event":"cmd_output","timestamp":1607098382,"output":"04 16:13:02.024988], user_generated: false}}\n\u001b[0m\u001b[22m\n16:13:02.031 [info] event: created, origin"},{"event":"cmd_output","timestamp":1607098382,"output":": Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:02.031 [inf"},{"event":"cmd_output","timestamp":1607098382,"output":"o] ppl_id: 80aa0af8-a963-4b1d-8267-52ad351f801a, type: PplBlocks, block_index: 0, state: initializi"},{"event":"cmd_output","timestamp":1607098382,"output":"ng, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.al"},{"event":"cmd_output","timestamp":1607098382,"output":"l_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:02.032 [info] ppl_id: 80aa0af8-a963-4b1d-8267-52ad351f801a, type:"},{"event":"cmd_output","timestamp":1607098382,"output":" PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098382,"output":".Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:02.037 [info] ppl_id: 80aa0af8-a963-4b"},{"event":"cmd_output","timestamp":1607098382,"output":"1d-8267-52ad351f801a, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recov"},{"event":"cmd_output","timestamp":1607098382,"output":"ery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:02.042 [inf"},{"event":"cmd_output","timestamp":1607098382,"output":"o] ppl_id: 80aa0af8-a963-4b1d-8267-52ad351f801a, type: Ppls, state: pending, event: exit_scheduling"},{"event":"cmd_output","timestamp":1607098382,"output":", recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:02.0"},{"event":"cmd_output","timestamp":1607098382,"output":"56 [info] ppl_id: 80aa0af8-a963-4b1d-8267-52ad351f801a, type: Ppls, state: queuing, event: exit_sch"},{"event":"cmd_output","timestamp":1607098382,"output":"eduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098382,"output":"13:02.064 [info] block_id: 7b0784dd-6890-40f8-9081-3916a42ccd83, type: Tasks, state: done, event: e"},{"event":"cmd_output","timestamp":1607098382,"output":"xit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098382,"output":"2m\n16:13:02.070 [info] ppl_id: 80aa0af8-a963-4b1d-8267-52ad351f801a, type: Ppls, state: running, e"},{"event":"cmd_output","timestamp":1607098382,"output":"vent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n"},{"event":"cmd_output","timestamp":1607098382,"output":"\u001b[0m\u001b[22m\n16:13:02.070 [info] block_id: 7b0784dd-6890-40f8-9081-3916a42ccd83, type: Blocks, state:"},{"event":"cmd_output","timestamp":1607098382,"output":" done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1("},{"event":"cmd_output","timestamp":1607098382,"output":"L90), \n\u001b[0m\u001b[22m\n16:13:02.076 [info] ppl_id: a3025d1f-0bc2-44b0-872f-fc9658dd645e, type: PplReque"},{"event":"cmd_output","timestamp":1607098382,"output":"sts, event: persisted source_args for pipeline: a3025d1f-0bc2-44b0-872f-fc9658dd645e, origin: Elixir"},{"event":"cmd_output","timestamp":1607098382,"output":".Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:13:02.079 [info] pp"},{"event":"cmd_output","timestamp":1607098382,"output":"l_id: a3025d1f-0bc2-44b0-872f-fc9658dd645e, type: PplSubInits, state: fetching, event: exit_scheduli"},{"event":"cmd_output","timestamp":1607098382,"output":"ng, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:02"},{"event":"cmd_output","timestamp":1607098382,"output":".080 [info] ppl_id: 1875b471-3841-4992-a04b-a979e80589e8, block_id: 7b0784dd-6890-40f8-9081-3916a42"},{"event":"cmd_output","timestamp":1607098382,"output":"ccd83, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, recover"},{"event":"cmd_output","timestamp":1607098382,"output":"y_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:02.085 [info]"},{"event":"cmd_output","timestamp":1607098382,"output":" PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"80aa0af8-a963-4b1d-8267-52ad351f8"},{"event":"cmd_output","timestamp":1607098382,"output":"01a\"\n\u001b[0m\u001b[22m\n16:13:02.096 [info] block_id: 83578e8a-a8f3-4913-be5f-133ae62ed618, type: BlockReq"},{"event":"cmd_output","timestamp":1607098382,"output":"uests, event: persisted block run request from ppl 80aa0af8-a963-4b1d-8267-52ad351f801a for block 0,"},{"event":"cmd_output","timestamp":1607098382,"output":" origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098382,"output":"\n16:13:02.099 [info] block_id: 83578e8a-a8f3-4913-be5f-133ae62ed618, type: Blocks, state: initializ"},{"event":"cmd_output","timestamp":1607098382,"output":"ing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/"},{"event":"cmd_output","timestamp":1607098382,"output":"1(L43), \n\u001b[0m\u001b[22m\n16:13:02.103 [info] ppl_id: 1875b471-3841-4992-a04b-a979e80589e8, type: Ppls, "},{"event":"cmd_output","timestamp":1607098382,"output":"state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Im"},{"event":"cmd_output","timestamp":1607098382,"output":"pl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:02.104 [info] Block 0 of pipeline with id: 80aa0af8-"},{"event":"cmd_output","timestamp":1607098382,"output":"a963-4b1d-8267-52ad351f801a scheduled in block service with id: : \"83578e8a-a8f3-4913-be5f-133ae62ed"},{"event":"cmd_output","timestamp":1607098382,"output":"618\"\n\u001b[0m\u001b[22m\n16:13:02.111 [info] ppl_id: a3025d1f-0bc2-44b0-872f-fc9658dd645e, type: PplSubInit"},{"event":"cmd_output","timestamp":1607098382,"output":"s, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.lo"},{"event":"cmd_output","timestamp":1607098382,"output":"g_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:02.111 [info] ppl_id: 80aa0af8-a963-4b1d-8267-52ad351f801"},{"event":"cmd_output","timestamp":1607098382,"output":"a, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098382,"output":"n: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:02.118 [info] block_id: 83578"},{"event":"cmd_output","timestamp":1607098382,"output":"e8a-a8f3-4913-be5f-133ae62ed618, type: BlockRequests, event: persisted build and sub_ppl details for"},{"event":"cmd_output","timestamp":1607098382,"output":" block_request: 83578e8a-a8f3-4913-be5f-133ae62ed618, origin: Elixir.Block.BlockRequests.Model.Block"},{"event":"cmd_output","timestamp":1607098382,"output":"RequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:13:02.123 [info] block_id: 83578e8a-a8f3-4913-"},{"event":"cmd_output","timestamp":1607098382,"output":"be5f-133ae62ed618, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Bl"},{"event":"cmd_output","timestamp":1607098382,"output":"ock.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:13:02.126 [info] block_id:"},{"event":"cmd_output","timestamp":1607098382,"output":" 83578e8a-a8f3-4913-be5f-133ae62ed618, type: Blocks, state: running, event: exit_scheduling, recover"},{"event":"cmd_output","timestamp":1607098382,"output":"y_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:02.132 [info]"},{"event":"cmd_output","timestamp":1607098382,"output":" ppl_id: 5ff359d5-8f2f-471e-9f25-e9b026d6a09d, type: Ppls, state: running, event: exit_scheduling, "},{"event":"cmd_output","timestamp":1607098382,"output":"recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:02.143"},{"event":"cmd_output","timestamp":1607098382,"output":" [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"5ff359d5-8f2f-471e-9f25-e9"},{"event":"cmd_output","timestamp":1607098382,"output":"b026d6a09d\"\n\u001b[0m\u001b[22m\n16:13:02.148 [info] ppl_id: a3025d1f-0bc2-44b0-872f-fc9658dd645e, type: Ppl"},{"event":"cmd_output","timestamp":1607098382,"output":"Requests, event: persisted definition for request with request_token: 15e888f2-243c-43e5-89c4-661c80"},{"event":"cmd_output","timestamp":1607098382,"output":"7041d3, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098382,"output":"m\n16:13:02.149 [info] block_id: 022ffaf6-5a4a-4eaa-bd89-3667b7ae28aa, type: BlockRequests, event: "},{"event":"cmd_output","timestamp":1607098382,"output":"persisted block run request from ppl 5ff359d5-8f2f-471e-9f25-e9b026d6a09d for block 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098382,"output":"r.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:13:02.155 "},{"event":"cmd_output","timestamp":1607098382,"output":"[info] block_id: 022ffaf6-5a4a-4eaa-bd89-3667b7ae28aa, type: Blocks, state: initializing, event: in"},{"event":"cmd_output","timestamp":1607098382,"output":"itializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098382,"output":"\u001b[22m\n16:13:02.158 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitSta"},{"event":"cmd_output","timestamp":1607098382,"output":"te.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:02.158 [info] ppl_id: a3025d1f-0bc2-44b0-872f-fc9658dd645e, "},{"event":"cmd_output","timestamp":1607098382,"output":"type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098382,"output":"xir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:02.159 [info] B"},{"event":"cmd_output","timestamp":1607098382,"output":"lock 0 of pipeline with id: 5ff359d5-8f2f-471e-9f25-e9b026d6a09d scheduled in block service with id:"},{"event":"cmd_output","timestamp":1607098382,"output":" : \"022ffaf6-5a4a-4eaa-bd89-3667b7ae28aa\"\n\u001b[0m\u001b[22m\n16:13:02.163 [info] ppl_id: 5ff359d5-8f2f-471"},{"event":"cmd_output","timestamp":1607098382,"output":"e-9f25-e9b026d6a09d, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recove"},{"event":"cmd_output","timestamp":1607098382,"output":"ry_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:02.163 [info"},{"event":"cmd_output","timestamp":1607098382,"output":"] ppl_id: a3025d1f-0bc2-44b0-872f-fc9658dd645e, type: PplSubInits, state: done, result: passed, eve"},{"event":"cmd_output","timestamp":1607098382,"output":"nt: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b["},{"event":"cmd_output","timestamp":1607098382,"output":"0m\u001b[22m\n16:13:02.167 [info] block_id: 83578e8a-a8f3-4913-be5f-133ae62ed618, type: Tasks, state: ru"},{"event":"cmd_output","timestamp":1607098382,"output":"nning, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1("},{"event":"cmd_output","timestamp":1607098382,"output":"L90), \n\u001b[0m\u001b[22m\n16:13:02.168 [info] block_id: 022ffaf6-5a4a-4eaa-bd89-3667b7ae28aa, type: BlockR"},{"event":"cmd_output","timestamp":1607098382,"output":"equests, event: persisted build and sub_ppl details for block_request: 022ffaf6-5a4a-4eaa-bd89-3667b"},{"event":"cmd_output","timestamp":1607098382,"output":"7ae28aa, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098382,"output":"22m\n16:13:02.175 [info] block_id: 022ffaf6-5a4a-4eaa-bd89-3667b7ae28aa, type: Tasks, state: pendin"},{"event":"cmd_output","timestamp":1607098382,"output":"g, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_o"},{"event":"cmd_output","timestamp":1607098382,"output":"k?/1(L167), \n\u001b[0m\u001b[22m\n16:13:02.188 [info] block_id: 022ffaf6-5a4a-4eaa-bd89-3667b7ae28aa, type: "},{"event":"cmd_output","timestamp":1607098382,"output":"Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.lo"},{"event":"cmd_output","timestamp":1607098382,"output":"g_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:02.192 [info] block_id: 83578e8a-a8f3-4913-be5f-133ae62ed"},{"event":"cmd_output","timestamp":1607098382,"output":"618, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM."},{"event":"cmd_output","timestamp":1607098382,"output":"Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:02.192 [info] ppl_id: a3025d1f-0bc2-44b0-872f-fc96"},{"event":"cmd_output","timestamp":1607098382,"output":"58dd645e, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0"},{"event":"cmd_output","timestamp":1607098382,"output":", origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:02.194 [info] ppl_id: "},{"event":"cmd_output","timestamp":1607098382,"output":"a3025d1f-0bc2-44b0-872f-fc9658dd645e, type: Ppls, state: pending, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098382,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:02.209 [info] p"},{"event":"cmd_output","timestamp":1607098382,"output":"pl_id: fddded05-f8fb-41a2-bc7c-e21e9623828e, type: PplRequests, event: persisted source_args for pip"},{"event":"cmd_output","timestamp":1607098382,"output":"eline: fddded05-f8fb-41a2-bc7c-e21e9623828e, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries"},{"event":"cmd_output","timestamp":1607098382,"output":".insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:13:02.212 [info] block_id: 83578e8a-a8f3-4913-be5f-133ae62ed"},{"event":"cmd_output","timestamp":1607098382,"output":"618, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM"},{"event":"cmd_output","timestamp":1607098382,"output":".Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:02.215 [info] block_id: 022ffaf6-5a4a-4eaa-bd89-3"},{"event":"cmd_output","timestamp":1607098382,"output":"667b7ae28aa, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098382,"output":"Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:02.218 [info] ppl_id: fddded05-f8fb-41a"},{"event":"cmd_output","timestamp":1607098382,"output":"2-bc7c-e21e9623828e, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098382,"output":"origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:02.225 [info] ppl_id: a3"},{"event":"cmd_output","timestamp":1607098382,"output":"025d1f-0bc2-44b0-872f-fc9658dd645e, type: Ppls, state: queuing, event: exit_scheduling, recovery_cou"},{"event":"cmd_output","timestamp":1607098382,"output":"nt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:02.233 [info] ppl"},{"event":"cmd_output","timestamp":1607098382,"output":"_id: 80aa0af8-a963-4b1d-8267-52ad351f801a, block_id: 83578e8a-a8f3-4913-be5f-133ae62ed618, type: Ppl"},{"event":"cmd_output","timestamp":1607098382,"output":"Blocks, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098382,"output":"in: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:02.252 [info] ppl_id: fddded"},{"event":"cmd_output","timestamp":1607098382,"output":"05-f8fb-41a2-bc7c-e21e9623828e, type: PplSubInits, state: regular_init, event: exit_scheduling, reco"},{"event":"cmd_output","timestamp":1607098382,"output":"very_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:02.255 [in"},{"event":"cmd_output","timestamp":1607098382,"output":"fo] ppl_id: 80aa0af8-a963-4b1d-8267-52ad351f801a, type: Ppls, state: done, result: passed, event: e"},{"event":"cmd_output","timestamp":1607098382,"output":"xit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098382,"output":"2m\n16:13:02.290 [info] ppl_id: fddded05-f8fb-41a2-bc7c-e21e9623828e, type: PplRequests, event: per"},{"event":"cmd_output","timestamp":1607098382,"output":"sisted definition for request with request_token: b6f43e4e-9825-40b0-bce2-0f5ea8993a3f, origin: Elix"},{"event":"cmd_output","timestamp":1607098382,"output":"ir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:13:02.297 [inf"},{"event":"cmd_output","timestamp":1607098382,"output":"o] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues"},{"event":"cmd_output","timestamp":1607098382,"output":"\">, inserted_at: ~N[2020-12-04 16:13:02.292960], name: \"dev-.semaphore/semaphore.yml\", organization_"},{"event":"cmd_output","timestamp":1607098382,"output":"id: \"c02d3eaf-2525-4d17-b1e7-7eacb23cf2c9\", project_id: \"456\", queue_id: \"29ab935b-8c84-40f3-96f6-3f"},{"event":"cmd_output","timestamp":1607098382,"output":"11210b49ca\", scope: \"project\", updated_at: ~N[2020-12-04 16:13:02.292972], user_generated: false}}\n"},{"event":"cmd_output","timestamp":1607098382,"output":"\u001b[0m\u001b[22m\n16:13:02.307 [info] block_id: 022ffaf6-5a4a-4eaa-bd89-3667b7ae28aa, type: Tasks, state: "},{"event":"cmd_output","timestamp":1607098382,"output":"done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098382,"output":"90), \n\u001b[0m\u001b[22m\n16:13:02.309 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.Reg"},{"event":"cmd_output","timestamp":1607098382,"output":"ularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:02.309 [info] ppl_id: fddded05-f8fb-41a2-bc7c-e21"},{"event":"cmd_output","timestamp":1607098382,"output":"e9623828e, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098382,"output":"origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:02.31"},{"event":"cmd_output","timestamp":1607098382,"output":"1 [info] ppl_id: fddded05-f8fb-41a2-bc7c-e21e9623828e, type: PplSubInits, state: done, result: pass"},{"event":"cmd_output","timestamp":1607098382,"output":"ed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90"},{"event":"cmd_output","timestamp":1607098382,"output":"), \n\u001b[0m\u001b[22m\n16:13:02.323 [info] block_id: 022ffaf6-5a4a-4eaa-bd89-3667b7ae28aa, type: Blocks, s"},{"event":"cmd_output","timestamp":1607098382,"output":"tate: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chan"},{"event":"cmd_output","timestamp":1607098382,"output":"ge/1(L90), \n\u001b[0m\u001b[22m\n16:13:02.326 [info] ppl_id: fddded05-f8fb-41a2-bc7c-e21e9623828e, type: Ppl"},{"event":"cmd_output","timestamp":1607098382,"output":"s, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_sta"},{"event":"cmd_output","timestamp":1607098382,"output":"te_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:02.334 [info] ppl_id: fddded05-f8fb-41a2-bc7c-e21e9623828e, ty"},{"event":"cmd_output","timestamp":1607098382,"output":"pe: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098382,"output":"ixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:02.339 [info] ppl_id: dfc94d03-d04"},{"event":"cmd_output","timestamp":1607098382,"output":"8-49b1-bb8e-95c9cac46c25, type: PplRequests, event: persisted source_args for pipeline: dfc94d03-d04"},{"event":"cmd_output","timestamp":1607098382,"output":"8-49b1-bb8e-95c9cac46c25, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L8"},{"event":"cmd_output","timestamp":1607098382,"output":"9), \n\u001b[0m\u001b[22m\n16:13:02.340 [info] ppl_id: 5ff359d5-8f2f-471e-9f25-e9b026d6a09d, block_id: 022ffa"},{"event":"cmd_output","timestamp":1607098382,"output":"f6-5a4a-4eaa-bd89-3667b7ae28aa, type: PplBlocks, block_index: 0, state: done, result: passed, event:"},{"event":"cmd_output","timestamp":1607098382,"output":" exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098382,"output":"[22m\n16:13:02.347 [info] ppl_id: dfc94d03-d048-49b1-bb8e-95c9cac46c25, type: PplSubInits, state: f"},{"event":"cmd_output","timestamp":1607098382,"output":"etching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/"},{"event":"cmd_output","timestamp":1607098382,"output":"1(L90), \n\u001b[0m\u001b[22m\n16:13:02.350 [info] ppl_id: fddded05-f8fb-41a2-bc7c-e21e9623828e, type: Ppls, "},{"event":"cmd_output","timestamp":1607098382,"output":"state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_"},{"event":"cmd_output","timestamp":1607098382,"output":"change/1(L90), \n\u001b[0m\u001b[22m\n16:13:02.355 [info] ppl_id: 5ff359d5-8f2f-471e-9f25-e9b026d6a09d, type:"},{"event":"cmd_output","timestamp":1607098382,"output":" Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper"},{"event":"cmd_output","timestamp":1607098382,"output":".STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:02.363 [info] ppl_id: fddded05-f8fb-41a2-bc7c"},{"event":"cmd_output","timestamp":1607098382,"output":"-e21e9623828e, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098382,"output":".Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:02.377 [info] PplBlocks WaitingState S"},{"event":"cmd_output","timestamp":1607098382,"output":"TM is scheduling block 0 from pipeline: \"fddded05-f8fb-41a2-bc7c-e21e9623828e\"\n\u001b[0m\u001b[22m\n16:13:02."},{"event":"cmd_output","timestamp":1607098382,"output":"382 [info] ppl_id: a3025d1f-0bc2-44b0-872f-fc9658dd645e, type: Ppls, state: running, event: exit_sc"},{"event":"cmd_output","timestamp":1607098382,"output":"heduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098382,"output":":13:02.386 [info] ppl_id: dfc94d03-d048-49b1-bb8e-95c9cac46c25, type: PplSubInits, state: regular_i"},{"event":"cmd_output","timestamp":1607098382,"output":"nit, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L9"},{"event":"cmd_output","timestamp":1607098382,"output":"0), \n\u001b[0m\u001b[22m\n16:13:02.388 [info] block_id: c8240784-9b9a-41ec-9ec3-9fe3e7d64ce0, type: BlockReq"},{"event":"cmd_output","timestamp":1607098382,"output":"uests, event: persisted block run request from ppl fddded05-f8fb-41a2-bc7c-e21e9623828e for block 0,"},{"event":"cmd_output","timestamp":1607098382,"output":" origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098382,"output":"\n16:13:02.391 [info] block_id: c8240784-9b9a-41ec-9ec3-9fe3e7d64ce0, type: Blocks, state: initializ"},{"event":"cmd_output","timestamp":1607098382,"output":"ing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/"},{"event":"cmd_output","timestamp":1607098382,"output":"1(L43), \n\u001b[0m\u001b[22m\n16:13:02.393 [info] Block 0 of pipeline with id: fddded05-f8fb-41a2-bc7c-e21e9"},{"event":"cmd_output","timestamp":1607098382,"output":"623828e scheduled in block service with id: : \"c8240784-9b9a-41ec-9ec3-9fe3e7d64ce0\"\n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098382,"output":"13:02.397 [info] ppl_id: fddded05-f8fb-41a2-bc7c-e21e9623828e, type: PplBlocks, block_index: 0, sta"},{"event":"cmd_output","timestamp":1607098382,"output":"te: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_cha"},{"event":"cmd_output","timestamp":1607098382,"output":"nge/1(L90), \n\u001b[0m\u001b[22m\n16:13:02.402 [info] block_id: c8240784-9b9a-41ec-9ec3-9fe3e7d64ce0, type: "},{"event":"cmd_output","timestamp":1607098382,"output":"BlockRequests, event: persisted build and sub_ppl details for block_request: c8240784-9b9a-41ec-9ec3"},{"event":"cmd_output","timestamp":1607098382,"output":"-9fe3e7d64ce0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n"},{"event":"cmd_output","timestamp":1607098382,"output":"\u001b[0m\u001b[22m\n16:13:02.403 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"a30"},{"event":"cmd_output","timestamp":1607098382,"output":"25d1f-0bc2-44b0-872f-fc9658dd645e\"\n\u001b[0m\u001b[22m\n16:13:02.407 [info] block_id: c8240784-9b9a-41ec-9ec"},{"event":"cmd_output","timestamp":1607098382,"output":"3-9fe3e7d64ce0, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block"},{"event":"cmd_output","timestamp":1607098382,"output":".Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:13:02.411 [info] block_id: c8"},{"event":"cmd_output","timestamp":1607098382,"output":"240784-9b9a-41ec-9ec3-9fe3e7d64ce0, type: Blocks, state: running, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098382,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:02.416 [info] b"},{"event":"cmd_output","timestamp":1607098382,"output":"lock_id: f8a4178f-657f-45db-a924-0c6676acc7ef, type: BlockRequests, event: persisted block run reque"},{"event":"cmd_output","timestamp":1607098382,"output":"st from ppl a3025d1f-0bc2-44b0-872f-fc9658dd645e for block 0, origin: Elixir.Block.BlockRequests.Mod"},{"event":"cmd_output","timestamp":1607098382,"output":"el.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:13:02.419 [info] block_id: f8a4178"},{"event":"cmd_output","timestamp":1607098382,"output":"f-657f-45db-a924-0c6676acc7ef, type: Blocks, state: initializing, event: initializing, recovery_coun"},{"event":"cmd_output","timestamp":1607098382,"output":"t: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:13:02.432 [info"},{"event":"cmd_output","timestamp":1607098382,"output":"] Block 0 of pipeline with id: a3025d1f-0bc2-44b0-872f-fc9658dd645e scheduled in block service with"},{"event":"cmd_output","timestamp":1607098382,"output":" id: : \"f8a4178f-657f-45db-a924-0c6676acc7ef\"\n\u001b[0m\u001b[22m\n16:13:02.432 [info] block_id: f8a4178f-65"},{"event":"cmd_output","timestamp":1607098382,"output":"7f-45db-a924-0c6676acc7ef, type: BlockRequests, event: persisted build and sub_ppl details for block"},{"event":"cmd_output","timestamp":1607098382,"output":"_request: f8a4178f-657f-45db-a924-0c6676acc7ef, origin: Elixir.Block.BlockRequests.Model.BlockReques"},{"event":"cmd_output","timestamp":1607098382,"output":"tsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:13:02.433 [info] ppl_id: dfc94d03-d048-49b1-bb8e-95c"},{"event":"cmd_output","timestamp":1607098382,"output":"9cac46c25, type: PplRequests, event: persisted definition for request with request_token: d4d882b5-5"},{"event":"cmd_output","timestamp":1607098382,"output":"ab4-4cee-8e39-a9759c9ad821, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definitio"},{"event":"cmd_output","timestamp":1607098382,"output":"n/3(L76), \n\u001b[0m\u001b[22m\n16:13:02.440 [info] block_id: c8240784-9b9a-41ec-9ec3-9fe3e7d64ce0, type: Ta"},{"event":"cmd_output","timestamp":1607098382,"output":"sks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_s"},{"event":"cmd_output","timestamp":1607098382,"output":"tate_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:02.440 [info] ppl_id: a3025d1f-0bc2-44b0-872f-fc9658dd645e, "},{"event":"cmd_output","timestamp":1607098382,"output":"type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098382,"output":"Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:02.440 [info] block_id: f8a4178f"},{"event":"cmd_output","timestamp":1607098382,"output":"-657f-45db-a924-0c6676acc7ef, type: Tasks, state: pending, event: created, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098382,"output":": Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:13:02.443 [info]"},{"event":"cmd_output","timestamp":1607098382,"output":" block_id: f8a4178f-657f-45db-a924-0c6676acc7ef, type: Blocks, state: running, event: exit_scheduli"},{"event":"cmd_output","timestamp":1607098382,"output":"ng, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:02"},{"event":"cmd_output","timestamp":1607098382,"output":".452 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L1"},{"event":"cmd_output","timestamp":1607098382,"output":"05), \n\u001b[0m\u001b[22m\n16:13:02.452 [info] ppl_id: dfc94d03-d048-49b1-bb8e-95c9cac46c25, type: PplBlocks"},{"event":"cmd_output","timestamp":1607098382,"output":", block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubI"},{"event":"cmd_output","timestamp":1607098382,"output":"nits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:02.454 [info] ppl_id: dfc94d03"},{"event":"cmd_output","timestamp":1607098382,"output":"-d048-49b1-bb8e-95c9cac46c25, type: PplSubInits, state: done, result: passed, event: exit_scheduling"},{"event":"cmd_output","timestamp":1607098382,"output":", recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:02.4"},{"event":"cmd_output","timestamp":1607098382,"output":"71 [info] block_id: f8a4178f-657f-45db-a924-0c6676acc7ef, type: Tasks, state: running, event: exit_"},{"event":"cmd_output","timestamp":1607098382,"output":"scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098382,"output":"16:13:02.476 [info] ppl_id: dfc94d03-d048-49b1-bb8e-95c9cac46c25, type: Ppls, state: pending, event"},{"event":"cmd_output","timestamp":1607098382,"output":": exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098382,"output":"\u001b[22m\n16:13:02.484 [info] ppl_id: dfc94d03-d048-49b1-bb8e-95c9cac46c25, type: PplBlocks, block_ind"},{"event":"cmd_output","timestamp":1607098382,"output":"ex: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098382,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:02.487 [info] ppl_id: dfc94d03-d048-49b1-bb8e-95c9cac46c25"},{"event":"cmd_output","timestamp":1607098382,"output":", type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.I"},{"event":"cmd_output","timestamp":1607098382,"output":"mpl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:02.526 [info] block_id: c8240784-9b9a-41ec-9ec3-9fe"},{"event":"cmd_output","timestamp":1607098382,"output":"3e7d64ce0, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loope"},{"event":"cmd_output","timestamp":1607098382,"output":"r.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:02.535 [info] block_id: c8240784-9b9a-41ec-9"},{"event":"cmd_output","timestamp":1607098382,"output":"ec3-9fe3e7d64ce0, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098382,"output":"ir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:02.542 [info] ppl_id: fddded05-f8fb-"},{"event":"cmd_output","timestamp":1607098382,"output":"41a2-bc7c-e21e9623828e, block_id: c8240784-9b9a-41ec-9ec3-9fe3e7d64ce0, type: PplBlocks, block_index"},{"event":"cmd_output","timestamp":1607098382,"output":": 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.S"},{"event":"cmd_output","timestamp":1607098382,"output":"TM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:02.560 [info] ppl_id: fddded05-f8fb-41a2-bc7c-e"},{"event":"cmd_output","timestamp":1607098382,"output":"21e9623828e, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098382,"output":"gin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:02.588 [info] ppl_id: dfc94"},{"event":"cmd_output","timestamp":1607098382,"output":"d03-d048-49b1-bb8e-95c9cac46c25, type: Ppls, state: running, event: exit_scheduling, recovery_count:"},{"event":"cmd_output","timestamp":1607098382,"output":" 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:02.595 [info] PplBlo"},{"event":"cmd_output","timestamp":1607098382,"output":"cks WaitingState STM is scheduling block 0 from pipeline: \"dfc94d03-d048-49b1-bb8e-95c9cac46c25\"\n\u001b["},{"event":"cmd_output","timestamp":1607098382,"output":"0m\u001b[22m\n16:13:02.600 [info] block_id: 270a5f16-fce8-425d-aa68-f97d7666f032, type: BlockRequests, e"},{"event":"cmd_output","timestamp":1607098382,"output":"vent: persisted block run request from ppl dfc94d03-d048-49b1-bb8e-95c9cac46c25 for block 0, origin:"},{"event":"cmd_output","timestamp":1607098382,"output":" Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:13:0"},{"event":"cmd_output","timestamp":1607098382,"output":"2.602 [info] block_id: 270a5f16-fce8-425d-aa68-f97d7666f032, type: Blocks, state: initializing, eve"},{"event":"cmd_output","timestamp":1607098382,"output":"nt: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), "},{"event":"cmd_output","timestamp":1607098382,"output":"\n\u001b[0m\u001b[22m\n16:13:02.603 [info] Block 0 of pipeline with id: dfc94d03-d048-49b1-bb8e-95c9cac46c25 "},{"event":"cmd_output","timestamp":1607098382,"output":"scheduled in block service with id: : \"270a5f16-fce8-425d-aa68-f97d7666f032\"\n\u001b[0m\u001b[22m\n16:13:02.60"},{"event":"cmd_output","timestamp":1607098382,"output":"5 [info] ppl_id: dfc94d03-d048-49b1-bb8e-95c9cac46c25, type: PplBlocks, block_index: 0, state: runn"},{"event":"cmd_output","timestamp":1607098382,"output":"ing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L9"},{"event":"cmd_output","timestamp":1607098382,"output":"0), \n\u001b[0m\u001b[22m\n16:13:02.607 [info] block_id: 270a5f16-fce8-425d-aa68-f97d7666f032, type: BlockReq"},{"event":"cmd_output","timestamp":1607098382,"output":"uests, event: persisted build and sub_ppl details for block_request: 270a5f16-fce8-425d-aa68-f97d766"},{"event":"cmd_output","timestamp":1607098382,"output":"6f032, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098382,"output":"m\n16:13:02.615 [info] block_id: 270a5f16-fce8-425d-aa68-f97d7666f032, type: Tasks, state: pending,"},{"event":"cmd_output","timestamp":1607098382,"output":" event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?"},{"event":"cmd_output","timestamp":1607098382,"output":"/1(L167), \n\u001b[0m\u001b[22m\n16:13:02.617 [info] block_id: 270a5f16-fce8-425d-aa68-f97d7666f032, type: Bl"},{"event":"cmd_output","timestamp":1607098382,"output":"ocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_"},{"event":"cmd_output","timestamp":1607098382,"output":"state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:02.631 [info] block_id: 270a5f16-fce8-425d-aa68-f97d7666f03"},{"event":"cmd_output","timestamp":1607098382,"output":"2, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM"},{"event":"cmd_output","timestamp":1607098382,"output":".Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:02.639 [info] block_id: f8a4178f-657f-45db-a924-0"},{"event":"cmd_output","timestamp":1607098382,"output":"c6676acc7ef, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loo"},{"event":"cmd_output","timestamp":1607098382,"output":"per.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:02.644 [info] block_id: f8a4178f-657f-45db"},{"event":"cmd_output","timestamp":1607098382,"output":"-a924-0c6676acc7ef, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098382,"output":"ixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:02.649 [info] ppl_id: a3025d1f-0bc"},{"event":"cmd_output","timestamp":1607098382,"output":"2-44b0-872f-fc9658dd645e, block_id: f8a4178f-657f-45db-a924-0c6676acc7ef, type: PplBlocks, block_ind"},{"event":"cmd_output","timestamp":1607098382,"output":"ex: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper"},{"event":"cmd_output","timestamp":1607098382,"output":".STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:02.664 [info] ppl_id: a3025d1f-0bc2-44b0-872f"},{"event":"cmd_output","timestamp":1607098382,"output":"-fc9658dd645e, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098382,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:02.754 [info] block_id: 2"},{"event":"cmd_output","timestamp":1607098382,"output":"70a5f16-fce8-425d-aa68-f97d7666f032, type: Tasks, state: done, event: exit_scheduling, recovery_coun"},{"event":"cmd_output","timestamp":1607098382,"output":"t: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:02.759 [info] bloc"},{"event":"cmd_output","timestamp":1607098382,"output":"k_id: 270a5f16-fce8-425d-aa68-f97d7666f032, type: Blocks, state: done, event: exit_scheduling, recov"},{"event":"cmd_output","timestamp":1607098382,"output":"ery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:02.766 [inf"},{"event":"cmd_output","timestamp":1607098382,"output":"o] ppl_id: dfc94d03-d048-49b1-bb8e-95c9cac46c25, block_id: 270a5f16-fce8-425d-aa68-f97d7666f032, ty"},{"event":"cmd_output","timestamp":1607098382,"output":"pe: PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: "},{"event":"cmd_output","timestamp":1607098382,"output":"0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:02.779 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098382,"output":" dfc94d03-d048-49b1-bb8e-95c9cac46c25, type: Ppls, state: done, result: passed, event: exit_scheduli"},{"event":"cmd_output","timestamp":1607098382,"output":"ng, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test "},{"event":"cmd_output","timestamp":1607098382,"output":"gRPC list_grouped() - project scoped user generated queues (1661.6ms)\u001b[0m\n * test gRPC list_keyse"},{"event":"cmd_output","timestamp":1607098382,"output":"t() - error when called without project_id or wf_id\r * test gRPC list_keyset() - error when called "},{"event":"cmd_output","timestamp":1607098382,"output":"without project_id or wf_id (skipped)\n\nPpl.Looper.PplBlocks.STMHandler.Filters.Test\n * test no f"},{"event":"cmd_output","timestamp":1607098382,"output":"ilters for given label - block executed\u001b[22m\n16:13:02.898 [info] Request: 'run: %{\"branch_id\" => \""},{"event":"cmd_output","timestamp":1607098382,"output":"9a1551d8-a601-4180-815d-8d8ea3460bd5\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469\", \"fil"},{"event":"cmd_output","timestamp":1607098382,"output":"e_name\" => \"block_filters.yml\", \"hook_id\" => \"95d24fb6-364b-11eb-a211-5254005464e2\", \"label\" => \"mas"},{"event":"cmd_output","timestamp":1607098382,"output":"ter\", \"organization_id\" => \"38121b95-b5d3-438b-8472-424dad2c3082\", \"owner\" => \"rt\", \"project_id\" => "},{"event":"cmd_output","timestamp":1607098382,"output":"\"f1afdbed-4d4c-42bb-aa3f-d8c22e46edab\", \"repo_name\" => \"22_skip_block\", \"request_token\" => \"95d24322"},{"event":"cmd_output","timestamp":1607098382,"output":"-364b-11eb-9b40-5254005464e2\", \"requester_id\" => \"c1fa9cf0-15b2-4ba8-b994-a719b15a58b8\", \"service\" ="},{"event":"cmd_output","timestamp":1607098382,"output":"> \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"744e21a4-3061-4"},{"event":"cmd_output","timestamp":1607098382,"output":"29e-a14d-854e5c0301e8\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:13:02.901 [info] ppl_id: c93f"},{"event":"cmd_output","timestamp":1607098382,"output":"fe12-dc17-40e8-ae28-d6bff60ce186, type: PplRequests, event: persisted schedule request with request_"},{"event":"cmd_output","timestamp":1607098382,"output":"token: 95d24322-364b-11eb-9b40-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries"},{"event":"cmd_output","timestamp":1607098382,"output":".process_response/2(L55), \n\u001b[0m\u001b[22m\n16:13:02.905 [info] ppl_id: c93ffe12-dc17-40e8-ae28-d6bff60c"},{"event":"cmd_output","timestamp":1607098382,"output":"e186, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Pp"},{"event":"cmd_output","timestamp":1607098382,"output":"ls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:13:02.910 [info] Project f1afdbed-4d"},{"event":"cmd_output","timestamp":1607098382,"output":"4c-42bb-aa3f-d8c22e46edab and branch masterlatest_wf details updated: \"wf_id: 744e21a4-3061-429e-a14"},{"event":"cmd_output","timestamp":1607098382,"output":"d-854e5c0301e8, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:13:02.912 [info] Persisted ppl_sub_init for pipeline w"},{"event":"cmd_output","timestamp":1607098382,"output":"ith ppl_id: c93ffe12-dc17-40e8-ae28-d6bff60ce186: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto"},{"event":"cmd_output","timestamp":1607098382,"output":".Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 2"},{"event":"cmd_output","timestamp":1607098382,"output":"87, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:13:02.910179], pipelin"},{"event":"cmd_output","timestamp":1607098382,"output":"e_requests: #Ecto.Association.NotLoaded, ppl_id: \"c93f"},{"event":"cmd_output","timestamp":1607098382,"output":"fe12-dc17-40e8-ae28-d6bff60ce186\", recovery_count: 0, result: nil, result_reason: nil, state: \"creat"},{"event":"cmd_output","timestamp":1607098382,"output":"ed\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:13:02.910185]"},{"event":"cmd_output","timestamp":1607098382,"output":"}\n\u001b[0m\u001b[22m\n16:13:02.917 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingState"},{"event":"cmd_output","timestamp":1607098382,"output":" with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.behold"},{"event":"cmd_output","timestamp":1607098382,"output":"er-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initial"},{"event":"cmd_output","timestamp":1607098382,"output":"izing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state:"},{"event":"cmd_output","timestamp":1607098382,"output":" \"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args"},{"event":"cmd_output","timestamp":1607098382,"output":"/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recover"},{"event":"cmd_output","timestamp":1607098382,"output":"y_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:02.917 [in"},{"event":"cmd_output","timestamp":1607098382,"output":"fo] Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandl"},{"event":"cmd_output","timestamp":1607098382,"output":"er.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Pendi"},{"event":"cmd_output","timestamp":1607098382,"output":"ngState\"]}, recurring args: %{allowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_tim"},{"event":"cmd_output","timestamp":1607098382,"output":"e_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publisher_cb: #Function<0.8"},{"event":"cmd_output","timestamp":1607098382,"output":"493005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminat"},{"event":"cmd_output","timestamp":1607098382,"output":"e_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, tas"},{"event":"cmd_output","timestamp":1607098382,"output":"k_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:13:02.918 [info] Periodic from module Elixir.Ppl.P"},{"event":"cmd_output","timestamp":1607098382,"output":"pls.STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, met"},{"event":"cmd_output","timestamp":1607098382,"output":"ric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{allowed_"},{"event":"cmd_output","timestamp":1607098382,"output":"states: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, ob"},{"event":"cmd_output","timestamp":1607098382,"output":"served_state: \"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.a"},{"event":"cmd_output","timestamp":1607098382,"output":"rgs/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :reco"},{"event":"cmd_output","timestamp":1607098382,"output":"very_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:02.918 "},{"event":"cmd_output","timestamp":1607098382,"output":"[info] Periodic from module Elixir.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHa"},{"event":"cmd_output","timestamp":1607098382,"output":"ndler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Ru"},{"event":"cmd_output","timestamp":1607098382,"output":"nningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: "},{"event":"cmd_output","timestamp":1607098382,"output":"-2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"running\", publisher_cb: #Function<0.7467028"},{"event":"cmd_output","timestamp":1607098382,"output":"2/1 in Ppl.Ppls.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_req"},{"event":"cmd_output","timestamp":1607098382,"output":"uest, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_sup"},{"event":"cmd_output","timestamp":1607098382,"output":"ervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:13:02.918 [info] Periodic from module Elixir.Ppl.Ppls.S"},{"event":"cmd_output","timestamp":1607098382,"output":"TMHandler.StoppingState with name Elixir.Ppl.Ppls.STMHandler.StoppingState :: period: 100 ms, metric"},{"event":"cmd_output","timestamp":1607098382,"output":"_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring args: %{allowed_st"},{"event":"cmd_output","timestamp":1607098382,"output":"ates: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state"},{"event":"cmd_output","timestamp":1607098382,"output":": \"stopping\", publisher_cb: #Function<0.71803493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, rep"},{"event":"cmd_output","timestamp":1607098382,"output":"o: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count,"},{"event":"cmd_output","timestamp":1607098382,"output":" :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:02.918 [info] Per"},{"event":"cmd_output","timestamp":1607098382,"output":"iodic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.ST"},{"event":"cmd_output","timestamp":1607098382,"output":"MHandler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STM"},{"event":"cmd_output","timestamp":1607098382,"output":"Handler-CreatedState\"]}, recurring args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0"},{"event":"cmd_output","timestamp":1607098382,"output":", initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip, "},{"event":"cmd_output","timestamp":1607098382,"output":"repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_cou"},{"event":"cmd_output","timestamp":1607098382,"output":"nt, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:0"},{"event":"cmd_output","timestamp":1607098382,"output":"2.918 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir."},{"event":"cmd_output","timestamp":1607098382,"output":"Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\""},{"event":"cmd_output","timestamp":1607098382,"output":"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"com"},{"event":"cmd_output","timestamp":1607098382,"output":"pilation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed"},{"event":"cmd_output","timestamp":1607098382,"output":"_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :u"},{"event":"cmd_output","timestamp":1607098382,"output":"pdated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, ta"},{"event":"cmd_output","timestamp":1607098382,"output":"sk_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:02.918 [info] Periodic from module Elixir.Ppl.PplSubInits.S"},{"event":"cmd_output","timestamp":1607098382,"output":"TMHandler.CompilationState with name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 1"},{"event":"cmd_output","timestamp":1607098382,"output":"00 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recur"},{"event":"cmd_output","timestamp":1607098382,"output":"ring args: %{allowed_states: [\"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: "},{"event":"cmd_output","timestamp":1607098382,"output":"-2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"compilation\", publisher_cb: :"},{"event":"cmd_output","timestamp":1607098382,"output":"skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recove"},{"event":"cmd_output","timestamp":1607098382,"output":"ry_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098382,"output":"6:13:02.918 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with nam"},{"event":"cmd_output","timestamp":1607098382,"output":"e Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-"},{"event":"cmd_output","timestamp":1607098382,"output":"wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurring args: %{allowed_states: [\"done"},{"event":"cmd_output","timestamp":1607098382,"output":"\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_"},{"event":"cmd_output","timestamp":1607098382,"output":"init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :s"},{"event":"cmd_output","timestamp":1607098382,"output":"tate, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor"},{"event":"cmd_output","timestamp":1607098382,"output":": :skip}\n\u001b[0m\u001b[22m\n16:13:02.919 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.Initi"},{"event":"cmd_output","timestamp":1607098382,"output":"alizingState with name Elixir.Ppl.PplBlocks.STMHandler.InitializingState :: period: 100 ms, metric_n"},{"event":"cmd_output","timestamp":1607098382,"output":"ame: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-InitializingState\"]}, recurring args: %{all"},{"event":"cmd_output","timestamp":1607098382,"output":"owed_states: [\"initializing\", \"waiting\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks."},{"event":"cmd_output","timestamp":1607098382,"output":"Model.PplBlocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning:"},{"event":"cmd_output","timestamp":1607098382,"output":" [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], sc"},{"event":"cmd_output","timestamp":1607098382,"output":"hema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:02.919 [info] Period"},{"event":"cmd_output","timestamp":1607098382,"output":"ic from module Elixir.Ppl.PplBlocks.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandle"},{"event":"cmd_output","timestamp":1607098382,"output":"r.WaitingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-"},{"event":"cmd_output","timestamp":1607098382,"output":"WaitingState\"]}, recurring args: %{allowed_states: [\"waiting\", \"running\", \"done\"], cooling_time_sec:"},{"event":"cmd_output","timestamp":1607098382,"output":" 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"waiting\", publisher_cb: #Function"},{"event":"cmd_output","timestamp":1607098382,"output":"<0.8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, "},{"event":"cmd_output","timestamp":1607098382,"output":":terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: P"},{"event":"cmd_output","timestamp":1607098382,"output":"pl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:02.919 [info] Periodic from"},{"event":"cmd_output","timestamp":1607098382,"output":" module Elixir.Ppl.PplBlocks.STMHandler.RunningState with name Elixir.Ppl.PplBlocks.STMHandler.Runni"},{"event":"cmd_output","timestamp":1607098382,"output":"ngState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-Running"},{"event":"cmd_output","timestamp":1607098382,"output":"State\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, i"},{"event":"cmd_output","timestamp":1607098382,"output":"nitial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"running\", publisher_cb: #Function<0.28"},{"event":"cmd_output","timestamp":1607098382,"output":"166834/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :ter"},{"event":"cmd_output","timestamp":1607098382,"output":"minate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], sc"},{"event":"cmd_output","timestamp":1607098382,"output":"hema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:02.919 [info] Period"},{"event":"cmd_output","timestamp":1607098382,"output":"ic from module Elixir.Ppl.PplBlocks.STMHandler.StoppingState with name Elixir.Ppl.PplBlocks.STMHandl"},{"event":"cmd_output","timestamp":1607098382,"output":"er.StoppingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandle"},{"event":"cmd_output","timestamp":1607098382,"output":"r-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, in"},{"event":"cmd_output","timestamp":1607098382,"output":"itial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"stopping\", publisher_cb: #Function<0.10"},{"event":"cmd_output","timestamp":1607098382,"output":"4215991/1 in Ppl.PplBlocks.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :t"},{"event":"cmd_output","timestamp":1607098382,"output":"erminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], "},{"event":"cmd_output","timestamp":1607098382,"output":"schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:02.919 [info] Peri"},{"event":"cmd_output","timestamp":1607098382,"output":"odic from module Elixir.Block.Blocks.STMHandler.InitializingState with name Elixir.Block.Blocks.STMH"},{"event":"cmd_output","timestamp":1607098382,"output":"andler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STM"},{"event":"cmd_output","timestamp":1607098382,"output":"Handler-InitializingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_se"},{"event":"cmd_output","timestamp":1607098382,"output":"c: 0, initial_query: Block.Blocks.Model.Blocks, observed_state: \"initializing\", publisher_cb: :skip,"},{"event":"cmd_output","timestamp":1607098382,"output":" repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :b"},{"event":"cmd_output","timestamp":1607098382,"output":"lock_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:02.919 [info]"},{"event":"cmd_output","timestamp":1607098382,"output":" Periodic from module Elixir.Block.Blocks.STMHandler.RunningState with name Elixir.Block.Blocks.STM"},{"event":"cmd_output","timestamp":1607098382,"output":"Handler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHand"},{"event":"cmd_output","timestamp":1607098382,"output":"ler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time"},{"event":"cmd_output","timestamp":1607098382,"output":"_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"running\", publisher_cb: :skip, "},{"event":"cmd_output","timestamp":1607098382,"output":"repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :bl"},{"event":"cmd_output","timestamp":1607098382,"output":"ock_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:02.919 [info] "},{"event":"cmd_output","timestamp":1607098382,"output":" Periodic from module Elixir.Block.Blocks.STMHandler.StoppingState with name Elixir.Block.Blocks.STM"},{"event":"cmd_output","timestamp":1607098382,"output":"Handler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHan"},{"event":"cmd_output","timestamp":1607098382,"output":"dler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2,"},{"event":"cmd_output","timestamp":1607098382,"output":" initial_query: Block.Blocks.Model.Blocks, observed_state: \"stopping\", publisher_cb: :skip, repo: Bl"},{"event":"cmd_output","timestamp":1607098382,"output":"ock.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id],"},{"event":"cmd_output","timestamp":1607098382,"output":" schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:02.919 [info] Periodi"},{"event":"cmd_output","timestamp":1607098382,"output":"c from module Elixir.Block.Tasks.STMHandler.PendingState with name Elixir.Block.Tasks.STMHandler.Pen"},{"event":"cmd_output","timestamp":1607098382,"output":"dingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingS"},{"event":"cmd_output","timestamp":1607098382,"output":"tate\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: "},{"event":"cmd_output","timestamp":1607098382,"output":"Block.Tasks.Model.Tasks, observed_state: \"pending\", publisher_cb: :skip, repo: Block.EctoRepo, retur"},{"event":"cmd_output","timestamp":1607098382,"output":"ning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id, :build_request_id],"},{"event":"cmd_output","timestamp":1607098382,"output":" schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:02.920 [info] Periodic "},{"event":"cmd_output","timestamp":1607098382,"output":"from module Elixir.Block.Tasks.STMHandler.RunningState with name Elixir.Block.Tasks.STMHandler.Runni"},{"event":"cmd_output","timestamp":1607098382,"output":"ngState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningSta"},{"event":"cmd_output","timestamp":1607098382,"output":"te\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, init"},{"event":"cmd_output","timestamp":1607098382,"output":"ial_query: Block.Tasks.Model.Tasks, observed_state: \"running\", publisher_cb: :skip, repo: Block.Ecto"},{"event":"cmd_output","timestamp":1607098382,"output":"Repo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema:"},{"event":"cmd_output","timestamp":1607098382,"output":" Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:02.920 [info] Periodic from mod"},{"event":"cmd_output","timestamp":1607098382,"output":"ule Elixir.Block.Tasks.STMHandler.StoppingState with name Elixir.Block.Tasks.STMHandler.StoppingStat"},{"event":"cmd_output","timestamp":1607098382,"output":"e :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]}"},{"event":"cmd_output","timestamp":1607098382,"output":", recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block"},{"event":"cmd_output","timestamp":1607098382,"output":".Tasks.Model.Tasks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning"},{"event":"cmd_output","timestamp":1607098382,"output":": [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Mo"},{"event":"cmd_output","timestamp":1607098383,"output":"del.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:03.042 [info] ppl_id: c93ffe12-dc17-40e8-ae28-"},{"event":"cmd_output","timestamp":1607098383,"output":"d6bff60ce186, type: PplRequests, event: persisted source_args for pipeline: c93ffe12-dc17-40e8-ae28-"},{"event":"cmd_output","timestamp":1607098383,"output":"d6bff60ce186, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098383,"output":"22m\n16:13:03.045 [info] ppl_id: c93ffe12-dc17-40e8-ae28-d6bff60ce186, type: PplSubInits, state: fe"},{"event":"cmd_output","timestamp":1607098383,"output":"tching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1"},{"event":"cmd_output","timestamp":1607098383,"output":"(L90), \n\u001b[0m\u001b[22m\n16:13:03.065 [info] ppl_id: c93ffe12-dc17-40e8-ae28-d6bff60ce186, type: PplSubI"},{"event":"cmd_output","timestamp":1607098383,"output":"nits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl"},{"event":"cmd_output","timestamp":1607098383,"output":".log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:03.083 [info] ppl_id: c93ffe12-dc17-40e8-ae28-d6bff60c"},{"event":"cmd_output","timestamp":1607098383,"output":"e186, type: PplRequests, event: persisted definition for request with request_token: 95d24322-364b-1"},{"event":"cmd_output","timestamp":1607098383,"output":"1eb-9b40-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L"},{"event":"cmd_output","timestamp":1607098383,"output":"76), \n\u001b[0m\u001b[22m\n16:13:03.087 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ec"},{"event":"cmd_output","timestamp":1607098383,"output":"to.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:13:03.085475], name: \"master-.s"},{"event":"cmd_output","timestamp":1607098383,"output":"emaphore/block_filters.yml\", organization_id: \"38121b95-b5d3-438b-8472-424dad2c3082\", project_id: \"f"},{"event":"cmd_output","timestamp":1607098383,"output":"1afdbed-4d4c-42bb-aa3f-d8c22e46edab\", queue_id: \"3305d610-3d68-4a34-99bf-1d4a30130154\", scope: \"proj"},{"event":"cmd_output","timestamp":1607098383,"output":"ect\", updated_at: ~N[2020-12-04 16:13:03.085485], user_generated: false}}\n\u001b[0m\u001b[22m\n16:13:03.094 ["},{"event":"cmd_output","timestamp":1607098383,"output":"info] ppl_id: not_available, event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitS"},{"event":"cmd_output","timestamp":1607098383,"output":"tate.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:03.094 [info] event: created, origin: Elixir.Ppl.PplSubIni"},{"event":"cmd_output","timestamp":1607098383,"output":"ts.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:03.095 [info] ppl_id: c93ffe12-d"},{"event":"cmd_output","timestamp":1607098383,"output":"c17-40e8-ae28-d6bff60ce186, type: PplBlocks, block_index: 0, state: initializing, event: created, re"},{"event":"cmd_output","timestamp":1607098383,"output":"covery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098383,"output":"[22m\n16:13:03.095 [info] ppl_id: c93ffe12-dc17-40e8-ae28-d6bff60ce186, type: PplBlocks, block_inde"},{"event":"cmd_output","timestamp":1607098383,"output":"x: 1, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHand"},{"event":"cmd_output","timestamp":1607098383,"output":"ler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:03.098 [info] ppl_id: c93ffe12-dc17-40e8-a"},{"event":"cmd_output","timestamp":1607098383,"output":"e28-d6bff60ce186, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098383,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:03.109 [info] p"},{"event":"cmd_output","timestamp":1607098383,"output":"pl_id: c93ffe12-dc17-40e8-ae28-d6bff60ce186, type: PplBlocks, block_index: 0, state: waiting, event:"},{"event":"cmd_output","timestamp":1607098383,"output":" exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098383,"output":"[22m\n16:13:03.110 [info] ppl_id: c93ffe12-dc17-40e8-ae28-d6bff60ce186, type: Ppls, state: pending,"},{"event":"cmd_output","timestamp":1607098383,"output":" event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), "},{"event":"cmd_output","timestamp":1607098383,"output":"\n\u001b[0m\u001b[22m\n16:13:03.124 [info] ppl_id: c93ffe12-dc17-40e8-ae28-d6bff60ce186, type: PplBlocks, blo"},{"event":"cmd_output","timestamp":1607098383,"output":"ck_index: 1, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Im"},{"event":"cmd_output","timestamp":1607098383,"output":"pl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:03.128 [info] ppl_id: c93ffe12-dc17-40e8-ae28-d6bff6"},{"event":"cmd_output","timestamp":1607098383,"output":"0ce186, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper"},{"event":"cmd_output","timestamp":1607098383,"output":".STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:03.140 [info] ppl_id: c93ffe12-dc17-40e8-ae28"},{"event":"cmd_output","timestamp":1607098383,"output":"-d6bff60ce186, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098383,"output":".Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:03.145 [info] PplBlocks WaitingState S"},{"event":"cmd_output","timestamp":1607098383,"output":"TM is scheduling block 0 from pipeline: \"c93ffe12-dc17-40e8-ae28-d6bff60ce186\"\n\u001b[0m\u001b[22m\n16:13:03."},{"event":"cmd_output","timestamp":1607098383,"output":"149 [info] block_id: f97c3647-ef33-4986-9098-24d97d86be4a, type: BlockRequests, event: persisted bl"},{"event":"cmd_output","timestamp":1607098383,"output":"ock run request from ppl c93ffe12-dc17-40e8-ae28-d6bff60ce186 for block 0, origin: Elixir.Block.Bloc"},{"event":"cmd_output","timestamp":1607098383,"output":"kRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:13:03.151 [info] bloc"},{"event":"cmd_output","timestamp":1607098383,"output":"k_id: f97c3647-ef33-4986-9098-24d97d86be4a, type: Blocks, state: initializing, event: initializing, "},{"event":"cmd_output","timestamp":1607098383,"output":"recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:13"},{"event":"cmd_output","timestamp":1607098383,"output":":03.153 [info] Block 0 of pipeline with id: c93ffe12-dc17-40e8-ae28-d6bff60ce186 scheduled in block"},{"event":"cmd_output","timestamp":1607098383,"output":" service with id: : \"f97c3647-ef33-4986-9098-24d97d86be4a\"\n\u001b[0m\u001b[22m\n16:13:03.155 [info] ppl_id: "},{"event":"cmd_output","timestamp":1607098383,"output":"c93ffe12-dc17-40e8-ae28-d6bff60ce186, type: PplBlocks, block_index: 0, state: running, event: exit_s"},{"event":"cmd_output","timestamp":1607098383,"output":"cheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098383,"output":"6:13:03.158 [info] block_id: f97c3647-ef33-4986-9098-24d97d86be4a, type: BlockRequests, event: pers"},{"event":"cmd_output","timestamp":1607098383,"output":"isted build and sub_ppl details for block_request: f97c3647-ef33-4986-9098-24d97d86be4a, origin: Eli"},{"event":"cmd_output","timestamp":1607098383,"output":"xir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:13:03.161 [i"},{"event":"cmd_output","timestamp":1607098383,"output":"nfo] block_id: f97c3647-ef33-4986-9098-24d97d86be4a, type: Tasks, state: pending, event: created, r"},{"event":"cmd_output","timestamp":1607098383,"output":"ecovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098383,"output":"22m\n16:13:03.166 [info] block_id: f97c3647-ef33-4986-9098-24d97d86be4a, type: Blocks, state: runni"},{"event":"cmd_output","timestamp":1607098383,"output":"ng, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90"},{"event":"cmd_output","timestamp":1607098383,"output":"), \n\u001b[0m\u001b[22m\n16:13:03.179 [info] block_id: f97c3647-ef33-4986-9098-24d97d86be4a, type: Tasks, st"},{"event":"cmd_output","timestamp":1607098383,"output":"ate: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_ch"},{"event":"cmd_output","timestamp":1607098383,"output":"ange/1(L90), \n\u001b[0m\u001b[22m\n16:13:03.261 [info] block_id: f97c3647-ef33-4986-9098-24d97d86be4a, type:"},{"event":"cmd_output","timestamp":1607098383,"output":" Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_s"},{"event":"cmd_output","timestamp":1607098383,"output":"tate_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:03.265 [info] block_id: f97c3647-ef33-4986-9098-24d97d86be4a"},{"event":"cmd_output","timestamp":1607098383,"output":", type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Im"},{"event":"cmd_output","timestamp":1607098383,"output":"pl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:03.271 [info] ppl_id: c93ffe12-dc17-40e8-ae28-d6bff6"},{"event":"cmd_output","timestamp":1607098383,"output":"0ce186, block_id: f97c3647-ef33-4986-9098-24d97d86be4a, type: PplBlocks, block_index: 0, state: done"},{"event":"cmd_output","timestamp":1607098383,"output":", result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_stat"},{"event":"cmd_output","timestamp":1607098383,"output":"e_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:03.278 [info] PplBlocks WaitingState STM is scheduling block 1 "},{"event":"cmd_output","timestamp":1607098383,"output":"from pipeline: \"c93ffe12-dc17-40e8-ae28-d6bff60ce186\"\n\u001b[0m\u001b[22m\n16:13:03.291 [info] block_id: 577"},{"event":"cmd_output","timestamp":1607098383,"output":"1b45b-0255-415b-bed9-16be38af53ef, type: BlockRequests, event: persisted block run request from ppl "},{"event":"cmd_output","timestamp":1607098383,"output":"c93ffe12-dc17-40e8-ae28-d6bff60ce186 for block 1, origin: Elixir.Block.BlockRequests.Model.BlockRequ"},{"event":"cmd_output","timestamp":1607098383,"output":"estsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:13:03.294 [info] block_id: 5771b45b-0255-415b-"},{"event":"cmd_output","timestamp":1607098383,"output":"bed9-16be38af53ef, type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098383,"output":": Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:13:03.294 [info] Block 1 o"},{"event":"cmd_output","timestamp":1607098383,"output":"f pipeline with id: c93ffe12-dc17-40e8-ae28-d6bff60ce186 scheduled in block service with id: : \"5771"},{"event":"cmd_output","timestamp":1607098383,"output":"b45b-0255-415b-bed9-16be38af53ef\"\n\u001b[0m\u001b[22m\n16:13:03.298 [info] ppl_id: c93ffe12-dc17-40e8-ae28-d"},{"event":"cmd_output","timestamp":1607098383,"output":"6bff60ce186, type: PplBlocks, block_index: 1, state: running, event: exit_scheduling, recovery_count"},{"event":"cmd_output","timestamp":1607098383,"output":": 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:03.306 [info] block"},{"event":"cmd_output","timestamp":1607098383,"output":"_id: 5771b45b-0255-415b-bed9-16be38af53ef, type: BlockRequests, event: persisted build and sub_ppl d"},{"event":"cmd_output","timestamp":1607098383,"output":"etails for block_request: 5771b45b-0255-415b-bed9-16be38af53ef, origin: Elixir.Block.BlockRequests.M"},{"event":"cmd_output","timestamp":1607098383,"output":"odel.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:13:03.308 [info] block_id: 5771b45b-"},{"event":"cmd_output","timestamp":1607098383,"output":"0255-415b-bed9-16be38af53ef, type: Tasks, state: pending, event: created, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098383,"output":" Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:13:03.310 [info] "},{"event":"cmd_output","timestamp":1607098383,"output":" block_id: 5771b45b-0255-415b-bed9-16be38af53ef, type: Blocks, state: running, event: exit_schedulin"},{"event":"cmd_output","timestamp":1607098383,"output":"g, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:03."},{"event":"cmd_output","timestamp":1607098383,"output":"336 [info] block_id: 5771b45b-0255-415b-bed9-16be38af53ef, type: Tasks, state: running, event: exit"},{"event":"cmd_output","timestamp":1607098383,"output":"_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098383,"output":"\n16:13:03.370 [info] block_id: 5771b45b-0255-415b-bed9-16be38af53ef, type: Tasks, state: done, even"},{"event":"cmd_output","timestamp":1607098383,"output":"t: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098383,"output":"m\u001b[22m\n16:13:03.377 [info] block_id: 5771b45b-0255-415b-bed9-16be38af53ef, type: Blocks, state: do"},{"event":"cmd_output","timestamp":1607098383,"output":"ne, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90"},{"event":"cmd_output","timestamp":1607098383,"output":"), \n\u001b[0m\u001b[22m\n16:13:03.385 [info] ppl_id: c93ffe12-dc17-40e8-ae28-d6bff60ce186, block_id: 5771b45"},{"event":"cmd_output","timestamp":1607098383,"output":"b-0255-415b-bed9-16be38af53ef, type: PplBlocks, block_index: 1, state: done, result: failed, event: "},{"event":"cmd_output","timestamp":1607098383,"output":"exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098383,"output":"22m\n16:13:03.403 [info] ppl_id: c93ffe12-dc17-40e8-ae28-d6bff60ce186, type: Ppls, state: done, res"},{"event":"cmd_output","timestamp":1607098383,"output":"ult: failed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_cha"},{"event":"cmd_output","timestamp":1607098383,"output":"nge/1(L90), \n\u001b[0m\u001b[32m\r * test no filters for given label - block executed (604.0ms)\u001b[0m\n * test"},{"event":"cmd_output","timestamp":1607098383,"output":" skip filter for given label - block skipped\u001b[22m\n16:13:03.497 [info] Request: 'run: %{\"branch_id\""},{"event":"cmd_output","timestamp":1607098383,"output":" => \"c728d053-0c36-4965-a837-32890aa20120\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469\","},{"event":"cmd_output","timestamp":1607098383,"output":" \"file_name\" => \"block_filters.yml\", \"hook_id\" => \"962dcefe-364b-11eb-970c-5254005464e2\", \"label\" =>"},{"event":"cmd_output","timestamp":1607098383,"output":" \"dev-test\", \"organization_id\" => \"0f0b656f-f9e4-4767-be75-d7943c5eb856\", \"owner\" => \"rt\", \"project_"},{"event":"cmd_output","timestamp":1607098383,"output":"id\" => \"4f4f4fc1-a53f-4c76-bde8-6dfeaf11377d\", \"repo_name\" => \"22_skip_block\", \"request_token\" => \"9"},{"event":"cmd_output","timestamp":1607098383,"output":"62dc684-364b-11eb-bc02-5254005464e2\", \"requester_id\" => \"4ba0dfc8-9e14-4cef-8e43-ab5dc464a8ac\", \"ser"},{"event":"cmd_output","timestamp":1607098383,"output":"vice\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"8f635441"},{"event":"cmd_output","timestamp":1607098383,"output":"-4855-4d56-82df-3498c643e5b5\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:13:03.500 [info] ppl_i"},{"event":"cmd_output","timestamp":1607098383,"output":"d: 3d8a0302-ccbb-476c-8c2e-3646ce6e43fb, type: PplRequests, event: persisted schedule request with r"},{"event":"cmd_output","timestamp":1607098383,"output":"equest_token: 962dc684-364b-11eb-bc02-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequests"},{"event":"cmd_output","timestamp":1607098383,"output":"Queries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:13:03.502 [info] ppl_id: 3d8a0302-ccbb-476c-8c2e-3"},{"event":"cmd_output","timestamp":1607098383,"output":"646ce6e43fb, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098383,"output":".Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:13:03.505 [info] Project 4f4f"},{"event":"cmd_output","timestamp":1607098383,"output":"4fc1-a53f-4c76-bde8-6dfeaf11377d and branch masterlatest_wf details updated: \"wf_id: 8f635441-4855-4"},{"event":"cmd_output","timestamp":1607098383,"output":"d56-82df-3498c643e5b5, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:13:03.506 [info] Persisted ppl_sub_init for pip"},{"event":"cmd_output","timestamp":1607098383,"output":"eline with ppl_id: 3d8a0302-ccbb-476c-8c2e-3646ce6e43fb: %Ppl.PplSubInits.Model.PplSubInits{__meta__"},{"event":"cmd_output","timestamp":1607098383,"output":": #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil"},{"event":"cmd_output","timestamp":1607098383,"output":", id: 288, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:13:03.505742], "},{"event":"cmd_output","timestamp":1607098383,"output":"pipeline_requests: #Ecto.Association.NotLoaded, ppl_id"},{"event":"cmd_output","timestamp":1607098383,"output":": \"3d8a0302-ccbb-476c-8c2e-3646ce6e43fb\", recovery_count: 0, result: nil, result_reason: nil, state:"},{"event":"cmd_output","timestamp":1607098383,"output":" \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:13:03."},{"event":"cmd_output","timestamp":1607098383,"output":"505747]}\n\u001b[0m\u001b[22m\n16:13:03.510 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.Initializi"},{"event":"cmd_output","timestamp":1607098383,"output":"ngState with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl"},{"event":"cmd_output","timestamp":1607098383,"output":".beholder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\""},{"event":"cmd_output","timestamp":1607098383,"output":"initializing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed"},{"event":"cmd_output","timestamp":1607098383,"output":"_state: \"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingSta"},{"event":"cmd_output","timestamp":1607098383,"output":"te.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :"},{"event":"cmd_output","timestamp":1607098383,"output":"recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:03."},{"event":"cmd_output","timestamp":1607098383,"output":"510 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.S"},{"event":"cmd_output","timestamp":1607098383,"output":"TMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandle"},{"event":"cmd_output","timestamp":1607098383,"output":"r-PendingState\"]}, recurring args: %{allowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], cool"},{"event":"cmd_output","timestamp":1607098383,"output":"ing_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publisher_cb: #Funct"},{"event":"cmd_output","timestamp":1607098383,"output":"ion<0.8493005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :t"},{"event":"cmd_output","timestamp":1607098383,"output":"erminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Pp"},{"event":"cmd_output","timestamp":1607098383,"output":"ls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:13:03.511 [info] Periodic from module Elixi"},{"event":"cmd_output","timestamp":1607098383,"output":"r.Ppl.Ppls.STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 "},{"event":"cmd_output","timestamp":1607098383,"output":"ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{a"},{"event":"cmd_output","timestamp":1607098383,"output":"llowed_states: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.P"},{"event":"cmd_output","timestamp":1607098383,"output":"pls, observed_state: \"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.Queuing"},{"event":"cmd_output","timestamp":1607098383,"output":"State.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result"},{"event":"cmd_output","timestamp":1607098383,"output":", :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:"},{"event":"cmd_output","timestamp":1607098383,"output":"03.511 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098383,"output":"s.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHan"},{"event":"cmd_output","timestamp":1607098383,"output":"dler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_tim"},{"event":"cmd_output","timestamp":1607098383,"output":"e_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"running\", publisher_cb: #Function<0."},{"event":"cmd_output","timestamp":1607098383,"output":"74670282/1 in Ppl.Ppls.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :termin"},{"event":"cmd_output","timestamp":1607098383,"output":"ate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, t"},{"event":"cmd_output","timestamp":1607098383,"output":"ask_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:13:03.512 [info] Periodic from module Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098383,"output":".Ppls.STMHandler.StoppingState with name Elixir.Ppl.Ppls.STMHandler.StoppingState :: period: 100 ms,"},{"event":"cmd_output","timestamp":1607098383,"output":" metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring args: %{all"},{"event":"cmd_output","timestamp":1607098383,"output":"owed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observe"},{"event":"cmd_output","timestamp":1607098383,"output":"d_state: \"stopping\", publisher_cb: #Function<0.71803493/1 in Ppl.Ppls.STMHandler.StoppingState.args/"},{"event":"cmd_output","timestamp":1607098383,"output":"0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery"},{"event":"cmd_output","timestamp":1607098383,"output":"_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:03.512 [inf"},{"event":"cmd_output","timestamp":1607098383,"output":"o] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubI"},{"event":"cmd_output","timestamp":1607098383,"output":"nits.STMHandler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubIn"},{"event":"cmd_output","timestamp":1607098383,"output":"its-STMHandler-CreatedState\"]}, recurring args: %{allowed_states: [\"fetching\", \"done\"], cooling_time"},{"event":"cmd_output","timestamp":1607098383,"output":"_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"created\", publisher_cb: "},{"event":"cmd_output","timestamp":1607098383,"output":":skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recov"},{"event":"cmd_output","timestamp":1607098383,"output":"ery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098383,"output":"16:13:03.513 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name "},{"event":"cmd_output","timestamp":1607098383,"output":"Elixir.Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_"},{"event":"cmd_output","timestamp":1607098383,"output":"up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %{allowed_states: [\"regular_init"},{"event":"cmd_output","timestamp":1607098383,"output":"\", \"compilation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, o"},{"event":"cmd_output","timestamp":1607098383,"output":"bserved_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_requ"},{"event":"cmd_output","timestamp":1607098383,"output":"est, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubIn"},{"event":"cmd_output","timestamp":1607098383,"output":"its, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:03.513 [info] Periodic from module Elixir.Ppl.PplSub"},{"event":"cmd_output","timestamp":1607098383,"output":"Inits.STMHandler.CompilationState with name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: pe"},{"event":"cmd_output","timestamp":1607098383,"output":"riod: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}"},{"event":"cmd_output","timestamp":1607098383,"output":", recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_tim"},{"event":"cmd_output","timestamp":1607098383,"output":"e_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"compilation\", publishe"},{"event":"cmd_output","timestamp":1607098383,"output":"r_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, "},{"event":"cmd_output","timestamp":1607098383,"output":":recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098383,"output":"[22m\n16:13:03.514 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState w"},{"event":"cmd_output","timestamp":1607098383,"output":"ith name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.be"},{"event":"cmd_output","timestamp":1607098383,"output":"holder-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurring args: %{allowed_states:"},{"event":"cmd_output","timestamp":1607098383,"output":" [\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"r"},{"event":"cmd_output","timestamp":1607098383,"output":"egular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated"},{"event":"cmd_output","timestamp":1607098383,"output":"_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_sup"},{"event":"cmd_output","timestamp":1607098383,"output":"ervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:03.515 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandle"},{"event":"cmd_output","timestamp":1607098383,"output":"r.InitializingState with name Elixir.Ppl.PplBlocks.STMHandler.InitializingState :: period: 100 ms, m"},{"event":"cmd_output","timestamp":1607098383,"output":"etric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-InitializingState\"]}, recurring args"},{"event":"cmd_output","timestamp":1607098383,"output":": %{allowed_states: [\"initializing\", \"waiting\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098383,"output":"Blocks.Model.PplBlocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, ret"},{"event":"cmd_output","timestamp":1607098383,"output":"urning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_ind"},{"event":"cmd_output","timestamp":1607098383,"output":"ex], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:03.515 [info] "},{"event":"cmd_output","timestamp":1607098383,"output":" Periodic from module Elixir.Ppl.PplBlocks.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks.ST"},{"event":"cmd_output","timestamp":1607098383,"output":"MHandler.WaitingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMH"},{"event":"cmd_output","timestamp":1607098383,"output":"andler-WaitingState\"]}, recurring args: %{allowed_states: [\"waiting\", \"running\", \"done\"], cooling_ti"},{"event":"cmd_output","timestamp":1607098383,"output":"me_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"waiting\", publisher_cb: #F"},{"event":"cmd_output","timestamp":1607098383,"output":"unction<0.8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, returning:"},{"event":"cmd_output","timestamp":1607098383,"output":" [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], sc"},{"event":"cmd_output","timestamp":1607098383,"output":"hema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:03.516 [info] Period"},{"event":"cmd_output","timestamp":1607098383,"output":"ic from module Elixir.Ppl.PplBlocks.STMHandler.RunningState with name Elixir.Ppl.PplBlocks.STMHandle"},{"event":"cmd_output","timestamp":1607098383,"output":"r.RunningState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-"},{"event":"cmd_output","timestamp":1607098383,"output":"RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec"},{"event":"cmd_output","timestamp":1607098383,"output":": -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"running\", publisher_cb: #Functi"},{"event":"cmd_output","timestamp":1607098383,"output":"on<0.28166834/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:i"},{"event":"cmd_output","timestamp":1607098383,"output":"d, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_"},{"event":"cmd_output","timestamp":1607098383,"output":"id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:03.516 [info] "},{"event":"cmd_output","timestamp":1607098383,"output":" Periodic from module Elixir.Ppl.PplBlocks.STMHandler.StoppingState with name Elixir.Ppl.PplBlocks.S"},{"event":"cmd_output","timestamp":1607098383,"output":"TMHandler.StoppingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-ST"},{"event":"cmd_output","timestamp":1607098383,"output":"MHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec:"},{"event":"cmd_output","timestamp":1607098383,"output":" -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"stopping\", publisher_cb: #Functi"},{"event":"cmd_output","timestamp":1607098383,"output":"on<0.104215991/1 in Ppl.PplBlocks.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: ["},{"event":"cmd_output","timestamp":1607098383,"output":":id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :bloc"},{"event":"cmd_output","timestamp":1607098383,"output":"k_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:03.517 [info"},{"event":"cmd_output","timestamp":1607098383,"output":"] Periodic from module Elixir.Block.Blocks.STMHandler.InitializingState with name Elixir.Block.Bloc"},{"event":"cmd_output","timestamp":1607098383,"output":"ks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blo"},{"event":"cmd_output","timestamp":1607098383,"output":"cks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_"},{"event":"cmd_output","timestamp":1607098383,"output":"time_sec: 0, initial_query: Block.Blocks.Model.Blocks, observed_state: \"initializing\", publisher_cb:"},{"event":"cmd_output","timestamp":1607098383,"output":" :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_co"},{"event":"cmd_output","timestamp":1607098383,"output":"unt, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:03.517"},{"event":"cmd_output","timestamp":1607098383,"output":" [info] Periodic from module Elixir.Block.Blocks.STMHandler.RunningState with name Elixir.Block.Blo"},{"event":"cmd_output","timestamp":1607098383,"output":"cks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-"},{"event":"cmd_output","timestamp":1607098383,"output":"STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooli"},{"event":"cmd_output","timestamp":1607098383,"output":"ng_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"running\", publisher_cb: "},{"event":"cmd_output","timestamp":1607098383,"output":":skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_cou"},{"event":"cmd_output","timestamp":1607098383,"output":"nt, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:03.518 "},{"event":"cmd_output","timestamp":1607098383,"output":"[info] Periodic from module Elixir.Block.Blocks.STMHandler.StoppingState with name Elixir.Block.Blo"},{"event":"cmd_output","timestamp":1607098383,"output":"cks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks"},{"event":"cmd_output","timestamp":1607098383,"output":"-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_s"},{"event":"cmd_output","timestamp":1607098383,"output":"ec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"stopping\", publisher_cb: :skip, r"},{"event":"cmd_output","timestamp":1607098383,"output":"epo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :blo"},{"event":"cmd_output","timestamp":1607098383,"output":"ck_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:03.518 [info] "},{"event":"cmd_output","timestamp":1607098383,"output":"Periodic from module Elixir.Block.Tasks.STMHandler.PendingState with name Elixir.Block.Tasks.STMHand"},{"event":"cmd_output","timestamp":1607098383,"output":"ler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-P"},{"event":"cmd_output","timestamp":1607098383,"output":"endingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_"},{"event":"cmd_output","timestamp":1607098383,"output":"query: Block.Tasks.Model.Tasks, observed_state: \"pending\", publisher_cb: :skip, repo: Block.EctoRepo"},{"event":"cmd_output","timestamp":1607098383,"output":", returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id, :build_reque"},{"event":"cmd_output","timestamp":1607098383,"output":"st_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:03.519 [info] Pe"},{"event":"cmd_output","timestamp":1607098383,"output":"riodic from module Elixir.Block.Tasks.STMHandler.RunningState with name Elixir.Block.Tasks.STMHandle"},{"event":"cmd_output","timestamp":1607098383,"output":"r.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-Run"},{"event":"cmd_output","timestamp":1607098383,"output":"ningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -"},{"event":"cmd_output","timestamp":1607098383,"output":"2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"running\", publisher_cb: :skip, repo: Blo"},{"event":"cmd_output","timestamp":1607098383,"output":"ck.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], "},{"event":"cmd_output","timestamp":1607098383,"output":"schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:03.519 [info] Periodic f"},{"event":"cmd_output","timestamp":1607098383,"output":"rom module Elixir.Block.Tasks.STMHandler.StoppingState with name Elixir.Block.Tasks.STMHandler.Stopp"},{"event":"cmd_output","timestamp":1607098383,"output":"ingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-StoppingS"},{"event":"cmd_output","timestamp":1607098383,"output":"tate\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query"},{"event":"cmd_output","timestamp":1607098383,"output":": Block.Tasks.Model.Tasks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, re"},{"event":"cmd_output","timestamp":1607098383,"output":"turning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.T"},{"event":"cmd_output","timestamp":1607098383,"output":"asks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:03.630 [info] ppl_id: 3d8a0302-ccbb-476"},{"event":"cmd_output","timestamp":1607098383,"output":"c-8c2e-3646ce6e43fb, type: PplRequests, event: persisted source_args for pipeline: 3d8a0302-ccbb-476"},{"event":"cmd_output","timestamp":1607098383,"output":"c-8c2e-3646ce6e43fb, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \r"},{"event":"cmd_output","timestamp":1607098383,"output":"\n\u001b[0m\u001b[22m\n16:13:03.632 [info] ppl_id: 3d8a0302-ccbb-476c-8c2e-3646ce6e43fb, type: PplSubInits, st"},{"event":"cmd_output","timestamp":1607098383,"output":"ate: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098383,"output":"hange/1(L90), \n\u001b[0m\u001b[22m\n16:13:03.657 [info] ppl_id: 3d8a0302-ccbb-476c-8c2e-3646ce6e43fb, type: "},{"event":"cmd_output","timestamp":1607098383,"output":"PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.S"},{"event":"cmd_output","timestamp":1607098383,"output":"TM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:03.678 [info] ppl_id: 3d8a0302-ccbb-476c-8c2e-3"},{"event":"cmd_output","timestamp":1607098383,"output":"646ce6e43fb, type: PplRequests, event: persisted definition for request with request_token: 962dc684"},{"event":"cmd_output","timestamp":1607098383,"output":"-364b-11eb-bc02-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definit"},{"event":"cmd_output","timestamp":1607098383,"output":"ion/3(L76), \n\u001b[0m\u001b[22m\n16:13:03.682 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta"},{"event":"cmd_output","timestamp":1607098383,"output":"__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:13:03.680913], name: \"de"},{"event":"cmd_output","timestamp":1607098383,"output":"v-test-.semaphore/block_filters.yml\", organization_id: \"0f0b656f-f9e4-4767-be75-d7943c5eb856\", proje"},{"event":"cmd_output","timestamp":1607098383,"output":"ct_id: \"4f4f4fc1-a53f-4c76-bde8-6dfeaf11377d\", queue_id: \"7096e418-9e4b-48cb-9ff0-8d53ef9deceb\", sco"},{"event":"cmd_output","timestamp":1607098383,"output":"pe: \"project\", updated_at: ~N[2020-12-04 16:13:03.680922], user_generated: false}}\n\u001b[0m\u001b[22m\n16:13"},{"event":"cmd_output","timestamp":1607098383,"output":":03.687 [info] ppl_id: not_available, event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.Reg"},{"event":"cmd_output","timestamp":1607098383,"output":"ularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:03.687 [info] event: created, origin: Elixir.Ppl."},{"event":"cmd_output","timestamp":1607098383,"output":"PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:03.687 [info] ppl_id: 3"},{"event":"cmd_output","timestamp":1607098383,"output":"d8a0302-ccbb-476c-8c2e-3646ce6e43fb, type: PplBlocks, block_index: 0, state: initializing, event: cr"},{"event":"cmd_output","timestamp":1607098383,"output":"eated, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105)"},{"event":"cmd_output","timestamp":1607098383,"output":", \n\u001b[0m\u001b[22m\n16:13:03.687 [info] ppl_id: 3d8a0302-ccbb-476c-8c2e-3646ce6e43fb, type: PplBlocks, b"},{"event":"cmd_output","timestamp":1607098383,"output":"lock_index: 1, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInit"},{"event":"cmd_output","timestamp":1607098383,"output":"s.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:03.689 [info] ppl_id: 3d8a0302-cc"},{"event":"cmd_output","timestamp":1607098383,"output":"bb-476c-8c2e-3646ce6e43fb, type: PplSubInits, state: done, result: passed, event: exit_scheduling, r"},{"event":"cmd_output","timestamp":1607098383,"output":"ecovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:03.701 "},{"event":"cmd_output","timestamp":1607098383,"output":"[info] ppl_id: 3d8a0302-ccbb-476c-8c2e-3646ce6e43fb, type: Ppls, state: pending, event: exit_schedu"},{"event":"cmd_output","timestamp":1607098383,"output":"ling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:"},{"event":"cmd_output","timestamp":1607098383,"output":"03.701 [info] ppl_id: 3d8a0302-ccbb-476c-8c2e-3646ce6e43fb, type: PplBlocks, block_index: 0, state:"},{"event":"cmd_output","timestamp":1607098383,"output":" waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change"},{"event":"cmd_output","timestamp":1607098383,"output":"/1(L90), \n\u001b[0m\u001b[22m\n16:13:03.708 [info] ppl_id: 3d8a0302-ccbb-476c-8c2e-3646ce6e43fb, type: PplBl"},{"event":"cmd_output","timestamp":1607098383,"output":"ocks, block_index: 1, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loop"},{"event":"cmd_output","timestamp":1607098383,"output":"er.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:03.718 [info] ppl_id: 3d8a0302-ccbb-476c-8c"},{"event":"cmd_output","timestamp":1607098383,"output":"2e-3646ce6e43fb, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098383,"output":"ir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:03.728 [info] ppl_id: 3d8a0302-ccbb-"},{"event":"cmd_output","timestamp":1607098383,"output":"476c-8c2e-3646ce6e43fb, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098383,"output":"n: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:03.736 [info] PplBlocks Waiti"},{"event":"cmd_output","timestamp":1607098383,"output":"ngState STM is scheduling block 0 from pipeline: \"3d8a0302-ccbb-476c-8c2e-3646ce6e43fb\"\n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098383,"output":"16:13:03.742 [info] block_id: f0fa4dac-99c0-415c-92ff-ef0af345a72d, type: BlockRequests, event: per"},{"event":"cmd_output","timestamp":1607098383,"output":"sisted block run request from ppl 3d8a0302-ccbb-476c-8c2e-3646ce6e43fb for block 0, origin: Elixir.B"},{"event":"cmd_output","timestamp":1607098383,"output":"lock.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:13:03.744 [in"},{"event":"cmd_output","timestamp":1607098383,"output":"fo] block_id: f0fa4dac-99c0-415c-92ff-ef0af345a72d, type: Blocks, state: initializing, event: initi"},{"event":"cmd_output","timestamp":1607098383,"output":"alizing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098383,"output":"2m\n16:13:03.746 [info] Block 0 of pipeline with id: 3d8a0302-ccbb-476c-8c2e-3646ce6e43fb scheduled"},{"event":"cmd_output","timestamp":1607098383,"output":" in block service with id: : \"f0fa4dac-99c0-415c-92ff-ef0af345a72d\"\n\u001b[0m\u001b[22m\n16:13:03.748 [info] "},{"event":"cmd_output","timestamp":1607098383,"output":" ppl_id: 3d8a0302-ccbb-476c-8c2e-3646ce6e43fb, type: PplBlocks, block_index: 0, state: running, even"},{"event":"cmd_output","timestamp":1607098383,"output":"t: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098383,"output":"m\u001b[22m\n16:13:03.752 [info] block_id: f0fa4dac-99c0-415c-92ff-ef0af345a72d, type: BlockRequests, ev"},{"event":"cmd_output","timestamp":1607098383,"output":"ent: persisted build and sub_ppl details for block_request: f0fa4dac-99c0-415c-92ff-ef0af345a72d, or"},{"event":"cmd_output","timestamp":1607098383,"output":"igin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:13:"},{"event":"cmd_output","timestamp":1607098383,"output":"03.754 [info] block_id: f0fa4dac-99c0-415c-92ff-ef0af345a72d, type: Tasks, state: pending, event: c"},{"event":"cmd_output","timestamp":1607098383,"output":"reated, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167),"},{"event":"cmd_output","timestamp":1607098383,"output":" \n\u001b[0m\u001b[22m\n16:13:03.756 [info] block_id: f0fa4dac-99c0-415c-92ff-ef0af345a72d, type: Blocks, sta"},{"event":"cmd_output","timestamp":1607098383,"output":"te: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_cha"},{"event":"cmd_output","timestamp":1607098383,"output":"nge/1(L90), \n\u001b[0m\u001b[22m\n16:13:03.768 [info] block_id: f0fa4dac-99c0-415c-92ff-ef0af345a72d, type: "},{"event":"cmd_output","timestamp":1607098383,"output":"Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098383,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:03.846 [info] block_id: f0fa4dac-99c0-415c-92ff-ef0af345a7"},{"event":"cmd_output","timestamp":1607098383,"output":"2d, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.I"},{"event":"cmd_output","timestamp":1607098383,"output":"mpl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:03.854 [info] block_id: f0fa4dac-99c0-415c-92ff-ef0"},{"event":"cmd_output","timestamp":1607098383,"output":"af345a72d, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loop"},{"event":"cmd_output","timestamp":1607098383,"output":"er.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:03.864 [info] ppl_id: 3d8a0302-ccbb-476c-8c"},{"event":"cmd_output","timestamp":1607098383,"output":"2e-3646ce6e43fb, block_id: f0fa4dac-99c0-415c-92ff-ef0af345a72d, type: PplBlocks, block_index: 0, st"},{"event":"cmd_output","timestamp":1607098383,"output":"ate: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl"},{"event":"cmd_output","timestamp":1607098383,"output":".log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:03.874 [info] PplBlocks WaitingState STM is scheduling"},{"event":"cmd_output","timestamp":1607098383,"output":" block 1 from pipeline: \"3d8a0302-ccbb-476c-8c2e-3646ce6e43fb\"\n\u001b[0m\u001b[22m\n16:13:03.882 [info] ppl_"},{"event":"cmd_output","timestamp":1607098383,"output":"id: 3d8a0302-ccbb-476c-8c2e-3646ce6e43fb, type: PplBlocks, block_index: 1, state: done, result: pass"},{"event":"cmd_output","timestamp":1607098383,"output":"ed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90"},{"event":"cmd_output","timestamp":1607098383,"output":"), \n\u001b[0m\u001b[22m\n16:13:03.892 [info] ppl_id: 3d8a0302-ccbb-476c-8c2e-3646ce6e43fb, type: Ppls, state"},{"event":"cmd_output","timestamp":1607098383,"output":": done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.lo"},{"event":"cmd_output","timestamp":1607098383,"output":"g_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test skip filter for given label - block skipped (487.7ms)\u001b[0"},{"event":"cmd_output","timestamp":1607098383,"output":"m\n * test execute filter for given label - block executed\u001b[22m\n16:13:03.989 [info] Request: 'run"},{"event":"cmd_output","timestamp":1607098383,"output":": %{\"branch_id\" => \"026ec56e-69e6-4929-a082-f7bf3fc6d56f\", \"branch_name\" => \"master\", \"commit_sha\" ="},{"event":"cmd_output","timestamp":1607098383,"output":"> \"75891a4469\", \"file_name\" => \"block_filters.yml\", \"hook_id\" => \"9678bdb0-364b-11eb-bde5-5254005464"},{"event":"cmd_output","timestamp":1607098383,"output":"e2\", \"label\" => \"dev-execute-dpl\", \"organization_id\" => \"99e03c97-4907-4e58-8bfb-9697a0729130\", \"own"},{"event":"cmd_output","timestamp":1607098383,"output":"er\" => \"rt\", \"project_id\" => \"dac6e9ce-cf55-4151-ac0b-78388868def6\", \"repo_name\" => \"22_skip_block\","},{"event":"cmd_output","timestamp":1607098383,"output":" \"request_token\" => \"9678b54a-364b-11eb-9697-5254005464e2\", \"requester_id\" => \"2d5ee185-da83-4a83-89"},{"event":"cmd_output","timestamp":1607098383,"output":"a9-d15fe5d493a4\", \"service\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"]"},{"event":"cmd_output","timestamp":1607098383,"output":", \"wf_id\" => \"e641f025-c891-4808-ac4b-d2c5a400d421\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098383,"output":"3:03.991 [info] ppl_id: ff076ba8-1383-44bd-8e6c-825d5074b571, type: PplRequests, event: persisted s"},{"event":"cmd_output","timestamp":1607098383,"output":"chedule request with request_token: 9678b54a-364b-11eb-9697-5254005464e2, origin: Elixir.Ppl.PplRequ"},{"event":"cmd_output","timestamp":1607098383,"output":"ests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:13:03.994 [info] ppl_id: ff0"},{"event":"cmd_output","timestamp":1607098383,"output":"76ba8-1383-44bd-8e6c-825d5074b571, type: Ppls, state: initializing, event: initializing, recovery_co"},{"event":"cmd_output","timestamp":1607098383,"output":"unt: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:13:03.99"},{"event":"cmd_output","timestamp":1607098383,"output":"8 [info] Project dac6e9ce-cf55-4151-ac0b-78388868def6 and branch masterlatest_wf details updated: \""},{"event":"cmd_output","timestamp":1607098384,"output":"wf_id: e641f025-c891-4808-ac4b-d2c5a400d421, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:13:04.000 [info] Persiste"},{"event":"cmd_output","timestamp":1607098384,"output":"d ppl_sub_init for pipeline with ppl_id: ff076ba8-1383-44bd-8e6c-825d5074b571: %Ppl.PplSubInits.Mode"},{"event":"cmd_output","timestamp":1607098384,"output":"l.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, "},{"event":"cmd_output","timestamp":1607098384,"output":"error_description: nil, id: 289, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12"},{"event":"cmd_output","timestamp":1607098384,"output":"-04 16:13:03.998485], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"ff076ba8-1383-44bd-8e6c-825d5074b571\", recovery_count: 0, result: nil, resu"},{"event":"cmd_output","timestamp":1607098384,"output":"lt_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~"},{"event":"cmd_output","timestamp":1607098384,"output":"N[2020-12-04 16:13:03.998493]}\n\u001b[0m\u001b[22m\n16:13:04.004 [info] Periodic from module Elixir.Ppl.Ppls"},{"event":"cmd_output","timestamp":1607098384,"output":".STMHandler.InitializingState with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 "},{"event":"cmd_output","timestamp":1607098384,"output":"ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args"},{"event":"cmd_output","timestamp":1607098384,"output":": %{allowed_states: [\"initializing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098384,"output":"s.Model.Ppls, observed_state: \"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMH"},{"event":"cmd_output","timestamp":1607098384,"output":"andler.InitializingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_"},{"event":"cmd_output","timestamp":1607098384,"output":"at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}"},{"event":"cmd_output","timestamp":1607098384,"output":"\n\u001b[0m\u001b[22m\n16:13:04.005 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingState with "},{"event":"cmd_output","timestamp":1607098384,"output":"name Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\""},{"event":"cmd_output","timestamp":1607098384,"output":", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"pending\", \"queuing\", \"r"},{"event":"cmd_output","timestamp":1607098384,"output":"unning\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\""},{"event":"cmd_output","timestamp":1607098384,"output":", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRep"},{"event":"cmd_output","timestamp":1607098384,"output":"o, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], sch"},{"event":"cmd_output","timestamp":1607098384,"output":"ema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:13:04.005 [info] Peri"},{"event":"cmd_output","timestamp":1607098384,"output":"odic from module Elixir.Ppl.Ppls.STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandler.Queuin"},{"event":"cmd_output","timestamp":1607098384,"output":"gState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]"},{"event":"cmd_output","timestamp":1607098384,"output":"}, recurring args: %{allowed_states: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, initial_q"},{"event":"cmd_output","timestamp":1607098384,"output":"uery: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.P"},{"event":"cmd_output","timestamp":1607098384,"output":"pls.STMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updat"},{"event":"cmd_output","timestamp":1607098384,"output":"ed_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :sk"},{"event":"cmd_output","timestamp":1607098384,"output":"ip}\n\u001b[0m\u001b[22m\n16:13:04.006 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.RunningState wi"},{"event":"cmd_output","timestamp":1607098384,"output":"th name Elixir.Ppl.Ppls.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_"},{"event":"cmd_output","timestamp":1607098384,"output":"up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\""},{"event":"cmd_output","timestamp":1607098384,"output":", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"running\", publ"},{"event":"cmd_output","timestamp":1607098384,"output":"isher_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, re"},{"event":"cmd_output","timestamp":1607098384,"output":"turning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: "},{"event":"cmd_output","timestamp":1607098384,"output":"Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:13:04.006 [info] Periodic "},{"event":"cmd_output","timestamp":1607098384,"output":"from module Elixir.Ppl.Ppls.STMHandler.StoppingState with name Elixir.Ppl.Ppls.STMHandler.StoppingSt"},{"event":"cmd_output","timestamp":1607098384,"output":"ate :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]},"},{"event":"cmd_output","timestamp":1607098384,"output":" recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Pp"},{"event":"cmd_output","timestamp":1607098384,"output":"ls.Model.Ppls, observed_state: \"stopping\", publisher_cb: #Function<0.71803493/1 in Ppl.Ppls.STMHandl"},{"event":"cmd_output","timestamp":1607098384,"output":"er.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :sta"},{"event":"cmd_output","timestamp":1607098384,"output":"te, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098384,"output":"22m\n16:13:04.006 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedState with n"},{"event":"cmd_output","timestamp":1607098384,"output":"ame Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.beholder-wa"},{"event":"cmd_output","timestamp":1607098384,"output":"ke_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args: %{allowed_states: [\"fetching\","},{"event":"cmd_output","timestamp":1607098384,"output":" \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"cr"},{"event":"cmd_output","timestamp":1607098384,"output":"eated\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :"},{"event":"cmd_output","timestamp":1607098384,"output":"state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_superviso"},{"event":"cmd_output","timestamp":1607098384,"output":"r: :skip}\n\u001b[0m\u001b[22m\n16:13:04.006 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.Fe"},{"event":"cmd_output","timestamp":1607098384,"output":"tchingState with name Elixir.Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 ms, metric_name"},{"event":"cmd_output","timestamp":1607098384,"output":": {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %{allowed_"},{"event":"cmd_output","timestamp":1607098384,"output":"states: [\"regular_init\", \"compilation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInit"},{"event":"cmd_output","timestamp":1607098384,"output":"s.Model.PplSubInits, observed_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning:"},{"event":"cmd_output","timestamp":1607098384,"output":" [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplS"},{"event":"cmd_output","timestamp":1607098384,"output":"ubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:04.006 [info] Periodic from mo"},{"event":"cmd_output","timestamp":1607098384,"output":"dule Elixir.Ppl.PplSubInits.STMHandler.CompilationState with name Elixir.Ppl.PplSubInits.STMHandler."},{"event":"cmd_output","timestamp":1607098384,"output":"CompilationState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandl"},{"event":"cmd_output","timestamp":1607098384,"output":"er-CompilationState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"stopping\""},{"event":"cmd_output","timestamp":1607098384,"output":", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \""},{"event":"cmd_output","timestamp":1607098384,"output":"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated"},{"event":"cmd_output","timestamp":1607098384,"output":"_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_sup"},{"event":"cmd_output","timestamp":1607098384,"output":"ervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:04.006 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHand"},{"event":"cmd_output","timestamp":1607098384,"output":"ler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period: 100 ms,"},{"event":"cmd_output","timestamp":1607098384,"output":" metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurring a"},{"event":"cmd_output","timestamp":1607098384,"output":"rgs: %{allowed_states: [\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubIni"},{"event":"cmd_output","timestamp":1607098384,"output":"ts, observed_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :termi"},{"event":"cmd_output","timestamp":1607098384,"output":"nate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model"},{"event":"cmd_output","timestamp":1607098384,"output":".PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:04.007 [info] Periodic from module Elixir.P"},{"event":"cmd_output","timestamp":1607098384,"output":"pl.PplBlocks.STMHandler.InitializingState with name Elixir.Ppl.PplBlocks.STMHandler.InitializingStat"},{"event":"cmd_output","timestamp":1607098384,"output":"e :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-InitializingSt"},{"event":"cmd_output","timestamp":1607098384,"output":"ate\"]}, recurring args: %{allowed_states: [\"initializing\", \"waiting\", \"done\"], cooling_time_sec: 0, "},{"event":"cmd_output","timestamp":1607098384,"output":"initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"initializing\", publisher_cb: :skip, r"},{"event":"cmd_output","timestamp":1607098384,"output":"epo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_coun"},{"event":"cmd_output","timestamp":1607098384,"output":"t, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098384,"output":"\n16:13:04.007 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.WaitingState with name E"},{"event":"cmd_output","timestamp":1607098384,"output":"lixir.Ppl.PplBlocks.STMHandler.WaitingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\""},{"event":"cmd_output","timestamp":1607098384,"output":", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurring args: %{allowed_states: [\"waiting\", \"running"},{"event":"cmd_output","timestamp":1607098384,"output":"\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"wait"},{"event":"cmd_output","timestamp":1607098384,"output":"ing\", publisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>, repo: Pp"},{"event":"cmd_output","timestamp":1607098384,"output":"l.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl"},{"event":"cmd_output","timestamp":1607098384,"output":"_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13"},{"event":"cmd_output","timestamp":1607098384,"output":":04.007 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.RunningState with name Elixir.P"},{"event":"cmd_output","timestamp":1607098384,"output":"pl.PplBlocks.STMHandler.RunningState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl"},{"event":"cmd_output","timestamp":1607098384,"output":"-PplBlocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"do"},{"event":"cmd_output","timestamp":1607098384,"output":"ne\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"running\","},{"event":"cmd_output","timestamp":1607098384,"output":" publisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0>, repo: Ppl.Ec"},{"event":"cmd_output","timestamp":1607098384,"output":"toRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id,"},{"event":"cmd_output","timestamp":1607098384,"output":" :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098384,"output":"\n16:13:04.007 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.StoppingState with name "},{"event":"cmd_output","timestamp":1607098384,"output":"Elixir.Ppl.PplBlocks.STMHandler.StoppingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_u"},{"event":"cmd_output","timestamp":1607098384,"output":"p\", [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"don"},{"event":"cmd_output","timestamp":1607098384,"output":"e\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"stopping\","},{"event":"cmd_output","timestamp":1607098384,"output":" publisher_cb: #Function<0.104215991/1 in Ppl.PplBlocks.STMHandler.StoppingState.args/0>, repo: Ppl."},{"event":"cmd_output","timestamp":1607098384,"output":"EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_i"},{"event":"cmd_output","timestamp":1607098384,"output":"d, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098384,"output":"2m\n16:13:04.007 [info] Periodic from module Elixir.Block.Blocks.STMHandler.InitializingState with "},{"event":"cmd_output","timestamp":1607098384,"output":"name Elixir.Block.Blocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder"},{"event":"cmd_output","timestamp":1607098384,"output":"-wake_up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"runni"},{"event":"cmd_output","timestamp":1607098384,"output":"ng\", \"done\"], cooling_time_sec: 0, initial_query: Block.Blocks.Model.Blocks, observed_state: \"initia"},{"event":"cmd_output","timestamp":1607098384,"output":"lizing\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at"},{"event":"cmd_output","timestamp":1607098384,"output":", :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b"},{"event":"cmd_output","timestamp":1607098384,"output":"[0m\u001b[22m\n16:13:04.007 [info] Periodic from module Elixir.Block.Blocks.STMHandler.RunningState with"},{"event":"cmd_output","timestamp":1607098384,"output":" name Elixir.Block.Blocks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wak"},{"event":"cmd_output","timestamp":1607098384,"output":"e_up\", [\"Block-Blocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"sto"},{"event":"cmd_output","timestamp":1607098384,"output":"pping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"ru"},{"event":"cmd_output","timestamp":1607098384,"output":"nning\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at,"},{"event":"cmd_output","timestamp":1607098384,"output":" :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b["},{"event":"cmd_output","timestamp":1607098384,"output":"0m\u001b[22m\n16:13:04.007 [info] Periodic from module Elixir.Block.Blocks.STMHandler.StoppingState with"},{"event":"cmd_output","timestamp":1607098384,"output":" name Elixir.Block.Blocks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wa"},{"event":"cmd_output","timestamp":1607098384,"output":"ke_up\", [\"Block-Blocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \""},{"event":"cmd_output","timestamp":1607098384,"output":"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"stopping\", "},{"event":"cmd_output","timestamp":1607098384,"output":"publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state,"},{"event":"cmd_output","timestamp":1607098384,"output":" :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098384,"output":"\n16:13:04.007 [info] Periodic from module Elixir.Block.Tasks.STMHandler.PendingState with name Elix"},{"event":"cmd_output","timestamp":1607098384,"output":"ir.Block.Tasks.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Bl"},{"event":"cmd_output","timestamp":1607098384,"output":"ock-Tasks-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling"},{"event":"cmd_output","timestamp":1607098384,"output":"_time_sec: 0, initial_query: Block.Tasks.Model.Tasks, observed_state: \"pending\", publisher_cb: :skip"},{"event":"cmd_output","timestamp":1607098384,"output":", repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :"},{"event":"cmd_output","timestamp":1607098384,"output":"block_id, :build_request_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098384,"output":"6:13:04.007 [info] Periodic from module Elixir.Block.Tasks.STMHandler.RunningState with name Elixir"},{"event":"cmd_output","timestamp":1607098384,"output":".Block.Tasks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Bloc"},{"event":"cmd_output","timestamp":1607098384,"output":"k-Tasks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\""},{"event":"cmd_output","timestamp":1607098384,"output":"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"running\", publishe"},{"event":"cmd_output","timestamp":1607098384,"output":"r_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recove"},{"event":"cmd_output","timestamp":1607098384,"output":"ry_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:04."},{"event":"cmd_output","timestamp":1607098384,"output":"007 [info] Periodic from module Elixir.Block.Tasks.STMHandler.StoppingState with name Elixir.Block."},{"event":"cmd_output","timestamp":1607098384,"output":"Tasks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Task"},{"event":"cmd_output","timestamp":1607098384,"output":"s-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_"},{"event":"cmd_output","timestamp":1607098384,"output":"sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"stopping\", publisher_cb: :skip, re"},{"event":"cmd_output","timestamp":1607098384,"output":"po: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :bloc"},{"event":"cmd_output","timestamp":1607098384,"output":"k_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:04.125 [info] ppl"},{"event":"cmd_output","timestamp":1607098384,"output":"_id: ff076ba8-1383-44bd-8e6c-825d5074b571, type: PplRequests, event: persisted source_args for pipel"},{"event":"cmd_output","timestamp":1607098384,"output":"ine: ff076ba8-1383-44bd-8e6c-825d5074b571, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.i"},{"event":"cmd_output","timestamp":1607098384,"output":"nsert_source/2(L89), \n\u001b[0m\u001b[22m\n16:13:04.126 [info] ppl_id: ff076ba8-1383-44bd-8e6c-825d5074b571,"},{"event":"cmd_output","timestamp":1607098384,"output":" type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loope"},{"event":"cmd_output","timestamp":1607098384,"output":"r.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:04.140 [info] ppl_id: ff076ba8-1383-44bd-8e6"},{"event":"cmd_output","timestamp":1607098384,"output":"c-825d5074b571, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098384,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:04.160 [info] ppl_id: ff0"},{"event":"cmd_output","timestamp":1607098384,"output":"76ba8-1383-44bd-8e6c-825d5074b571, type: PplRequests, event: persisted definition for request with r"},{"event":"cmd_output","timestamp":1607098384,"output":"equest_token: 9678b54a-364b-11eb-9697-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequests"},{"event":"cmd_output","timestamp":1607098384,"output":"Queries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:13:04.163 [info] Queue persisted: {:ok, %Ppl.Queu"},{"event":"cmd_output","timestamp":1607098384,"output":"es.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:13"},{"event":"cmd_output","timestamp":1607098384,"output":":04.162704], name: \"dev-execute-dpl-.semaphore/block_filters.yml\", organization_id: \"99e03c97-4907-4"},{"event":"cmd_output","timestamp":1607098384,"output":"e58-8bfb-9697a0729130\", project_id: \"dac6e9ce-cf55-4151-ac0b-78388868def6\", queue_id: \"184953b6-7bfc"},{"event":"cmd_output","timestamp":1607098384,"output":"-42af-9c49-98f4dfbefc1a\", scope: \"project\", updated_at: ~N[2020-12-04 16:13:04.162714], user_generat"},{"event":"cmd_output","timestamp":1607098384,"output":"ed: false}}\n\u001b[0m\u001b[22m\n16:13:04.177 [info] ppl_id: not_available, event: created, origin: Elixir.P"},{"event":"cmd_output","timestamp":1607098384,"output":"pl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:04.177 [info] event:"},{"event":"cmd_output","timestamp":1607098384,"output":" created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098384,"output":"6:13:04.177 [info] ppl_id: ff076ba8-1383-44bd-8e6c-825d5074b571, type: PplBlocks, block_index: 0, s"},{"event":"cmd_output","timestamp":1607098384,"output":"tate: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.Reg"},{"event":"cmd_output","timestamp":1607098384,"output":"ularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:04.177 [info] ppl_id: ff076ba8-1383-44bd-8e6c-825"},{"event":"cmd_output","timestamp":1607098384,"output":"d5074b571, type: PplBlocks, block_index: 1, state: initializing, event: created, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098384,"output":"origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:04.17"},{"event":"cmd_output","timestamp":1607098384,"output":"9 [info] ppl_id: ff076ba8-1383-44bd-8e6c-825d5074b571, type: PplSubInits, state: done, result: pass"},{"event":"cmd_output","timestamp":1607098384,"output":"ed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90"},{"event":"cmd_output","timestamp":1607098384,"output":"), \n\u001b[0m\u001b[22m\n16:13:04.188 [info] ppl_id: ff076ba8-1383-44bd-8e6c-825d5074b571, type: Ppls, state"},{"event":"cmd_output","timestamp":1607098384,"output":": pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chang"},{"event":"cmd_output","timestamp":1607098384,"output":"e/1(L90), \n\u001b[0m\u001b[22m\n16:13:04.192 [info] ppl_id: ff076ba8-1383-44bd-8e6c-825d5074b571, type: PplB"},{"event":"cmd_output","timestamp":1607098384,"output":"locks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loo"},{"event":"cmd_output","timestamp":1607098384,"output":"per.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:04.198 [info] ppl_id: ff076ba8-1383-44bd-8"},{"event":"cmd_output","timestamp":1607098384,"output":"e6c-825d5074b571, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098384,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:04.199 [info] ppl_id: ff076ba8-1383"},{"event":"cmd_output","timestamp":1607098384,"output":"-44bd-8e6c-825d5074b571, type: PplBlocks, block_index: 1, state: waiting, event: exit_scheduling, re"},{"event":"cmd_output","timestamp":1607098384,"output":"covery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:04.207 ["},{"event":"cmd_output","timestamp":1607098384,"output":"info] ppl_id: ff076ba8-1383-44bd-8e6c-825d5074b571, type: Ppls, state: running, event: exit_schedul"},{"event":"cmd_output","timestamp":1607098384,"output":"ing, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:0"},{"event":"cmd_output","timestamp":1607098384,"output":"4.214 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"ff076ba8-1383-44bd-8e"},{"event":"cmd_output","timestamp":1607098384,"output":"6c-825d5074b571\"\n\u001b[0m\u001b[22m\n16:13:04.225 [info] block_id: 0985388f-10a1-46a9-aa2c-1aae9f6990d1, ty"},{"event":"cmd_output","timestamp":1607098384,"output":"pe: BlockRequests, event: persisted block run request from ppl ff076ba8-1383-44bd-8e6c-825d5074b571 "},{"event":"cmd_output","timestamp":1607098384,"output":"for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), "},{"event":"cmd_output","timestamp":1607098384,"output":"\n\u001b[0m\u001b[22m\n16:13:04.228 [info] block_id: 0985388f-10a1-46a9-aa2c-1aae9f6990d1, type: Blocks, stat"},{"event":"cmd_output","timestamp":1607098384,"output":"e: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQue"},{"event":"cmd_output","timestamp":1607098384,"output":"ries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:13:04.230 [info] Block 0 of pipeline with id: ff076ba8-1383-44b"},{"event":"cmd_output","timestamp":1607098384,"output":"d-8e6c-825d5074b571 scheduled in block service with id: : \"0985388f-10a1-46a9-aa2c-1aae9f6990d1\"\n\u001b["},{"event":"cmd_output","timestamp":1607098384,"output":"0m\u001b[22m\n16:13:04.233 [info] ppl_id: ff076ba8-1383-44bd-8e6c-825d5074b571, type: PplBlocks, block_i"},{"event":"cmd_output","timestamp":1607098384,"output":"ndex: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.l"},{"event":"cmd_output","timestamp":1607098384,"output":"og_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:04.236 [info] block_id: 0985388f-10a1-46a9-aa2c-1aae9f69"},{"event":"cmd_output","timestamp":1607098384,"output":"90d1, type: BlockRequests, event: persisted build and sub_ppl details for block_request: 0985388f-10"},{"event":"cmd_output","timestamp":1607098384,"output":"a1-46a9-aa2c-1aae9f6990d1, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_buil"},{"event":"cmd_output","timestamp":1607098384,"output":"d/2(L41), \n\u001b[0m\u001b[22m\n16:13:04.238 [info] block_id: 0985388f-10a1-46a9-aa2c-1aae9f6990d1, type: Ta"},{"event":"cmd_output","timestamp":1607098384,"output":"sks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.Initi"},{"event":"cmd_output","timestamp":1607098384,"output":"alizingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:13:04.240 [info] block_id: 0985388f-10a1-46a9-aa2c-1a"},{"event":"cmd_output","timestamp":1607098384,"output":"ae9f6990d1, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098384,"output":"Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:04.255 [info] block_id: 0985388f-10a1-4"},{"event":"cmd_output","timestamp":1607098384,"output":"6a9-aa2c-1aae9f6990d1, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098384,"output":"n: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:04.332 [info] block_id: 09853"},{"event":"cmd_output","timestamp":1607098384,"output":"88f-10a1-46a9-aa2c-1aae9f6990d1, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0"},{"event":"cmd_output","timestamp":1607098384,"output":", origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:04.340 [info] block_id"},{"event":"cmd_output","timestamp":1607098384,"output":": 0985388f-10a1-46a9-aa2c-1aae9f6990d1, type: Blocks, state: done, event: exit_scheduling, recovery_"},{"event":"cmd_output","timestamp":1607098384,"output":"count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:04.345 [info] "},{"event":"cmd_output","timestamp":1607098384,"output":"ppl_id: ff076ba8-1383-44bd-8e6c-825d5074b571, block_id: 0985388f-10a1-46a9-aa2c-1aae9f6990d1, type: "},{"event":"cmd_output","timestamp":1607098384,"output":"PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098384,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:04.351 [info] PplBlocks W"},{"event":"cmd_output","timestamp":1607098384,"output":"aitingState STM is scheduling block 1 from pipeline: \"ff076ba8-1383-44bd-8e6c-825d5074b571\"\n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098384,"output":"2m\n16:13:04.355 [info] block_id: 870a3a57-01e4-4e63-b50c-beccab6ff99f, type: BlockRequests, event:"},{"event":"cmd_output","timestamp":1607098384,"output":" persisted block run request from ppl ff076ba8-1383-44bd-8e6c-825d5074b571 for block 1, origin: Elix"},{"event":"cmd_output","timestamp":1607098384,"output":"ir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:13:04.357"},{"event":"cmd_output","timestamp":1607098384,"output":" [info] block_id: 870a3a57-01e4-4e63-b50c-beccab6ff99f, type: Blocks, state: initializing, event: i"},{"event":"cmd_output","timestamp":1607098384,"output":"nitializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098384,"output":"m\u001b[22m\n16:13:04.357 [info] Block 1 of pipeline with id: ff076ba8-1383-44bd-8e6c-825d5074b571 sched"},{"event":"cmd_output","timestamp":1607098384,"output":"uled in block service with id: : \"870a3a57-01e4-4e63-b50c-beccab6ff99f\"\n\u001b[0m\u001b[22m\n16:13:04.359 [in"},{"event":"cmd_output","timestamp":1607098384,"output":"fo] ppl_id: ff076ba8-1383-44bd-8e6c-825d5074b571, type: PplBlocks, block_index: 1, state: running, "},{"event":"cmd_output","timestamp":1607098384,"output":"event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \r"},{"event":"cmd_output","timestamp":1607098384,"output":"\n\u001b[0m\u001b[22m\n16:13:04.364 [info] block_id: 870a3a57-01e4-4e63-b50c-beccab6ff99f, type: BlockRequests"},{"event":"cmd_output","timestamp":1607098384,"output":", event: persisted build and sub_ppl details for block_request: 870a3a57-01e4-4e63-b50c-beccab6ff99f"},{"event":"cmd_output","timestamp":1607098384,"output":", origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098384,"output":":13:04.366 [info] block_id: 870a3a57-01e4-4e63-b50c-beccab6ff99f, type: Tasks, state: pending, even"},{"event":"cmd_output","timestamp":1607098384,"output":"t: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L1"},{"event":"cmd_output","timestamp":1607098384,"output":"67), \n\u001b[0m\u001b[22m\n16:13:04.367 [info] block_id: 870a3a57-01e4-4e63-b50c-beccab6ff99f, type: Blocks,"},{"event":"cmd_output","timestamp":1607098384,"output":" state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state"},{"event":"cmd_output","timestamp":1607098384,"output":"_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:04.379 [info] block_id: 870a3a57-01e4-4e63-b50c-beccab6ff99f, ty"},{"event":"cmd_output","timestamp":1607098384,"output":"pe: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl"},{"event":"cmd_output","timestamp":1607098384,"output":".log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:04.440 [info] block_id: 870a3a57-01e4-4e63-b50c-beccab"},{"event":"cmd_output","timestamp":1607098384,"output":"6ff99f, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.S"},{"event":"cmd_output","timestamp":1607098384,"output":"TM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:04.443 [info] block_id: 870a3a57-01e4-4e63-b50c"},{"event":"cmd_output","timestamp":1607098384,"output":"-beccab6ff99f, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098384,"output":"Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:04.458 [info] ppl_id: ff076ba8-1383-44b"},{"event":"cmd_output","timestamp":1607098384,"output":"d-8e6c-825d5074b571, block_id: 870a3a57-01e4-4e63-b50c-beccab6ff99f, type: PplBlocks, block_index: 1"},{"event":"cmd_output","timestamp":1607098384,"output":", state: done, result: failed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM."},{"event":"cmd_output","timestamp":1607098384,"output":"Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:04.477 [info] ppl_id: ff076ba8-1383-44bd-8e6c-825d"},{"event":"cmd_output","timestamp":1607098384,"output":"5074b571, type: Ppls, state: done, result: failed, event: exit_scheduling, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098384,"output":": Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test execute filter for given labe"},{"event":"cmd_output","timestamp":1607098384,"output":"l - block executed (586.6ms)\u001b[0m\n\nPpl.Looper.PplBlocks.STMHandler.ExecutionTimeLimit.Test\n * tes"},{"event":"cmd_output","timestamp":1607098384,"output":"t pipeline's block is terminated when it is running for longer than execution_time_limt\u001b[22m\n16:13:"},{"event":"cmd_output","timestamp":1607098384,"output":"04.589 [info] Request: 'run: %{\"branch_id\" => \"9d5c3f26-a999-47e2-818e-93fe15cedfa9\", \"branch_name\""},{"event":"cmd_output","timestamp":1607098384,"output":" => \"master\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"semaphore.yml\", \"hook_id\" => \"96d456de-3"},{"event":"cmd_output","timestamp":1607098384,"output":"64b-11eb-93e6-5254005464e2\", \"label\" => \"master\", \"organization_id\" => \"94d8df78-912c-4c1a-8c19-623f"},{"event":"cmd_output","timestamp":1607098384,"output":"d5504a40\", \"owner\" => \"rt\", \"project_id\" => \"f9d71ddd-e289-48c8-813d-767484241e05\", \"repo_name\" => \""},{"event":"cmd_output","timestamp":1607098384,"output":"2_basic\", \"request_token\" => \"96d44f22-364b-11eb-b3d0-5254005464e2\", \"requester_id\" => \"6a1add26-e42"},{"event":"cmd_output","timestamp":1607098384,"output":"9-4c65-bab3-dd04245deb41\", \"service\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"client"},{"event":"cmd_output","timestamp":1607098384,"output":"_secret\"], \"wf_id\" => \"213653a2-9fc2-49f2-9400-423b285f07d6\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098384,"output":"22m\n16:13:04.592 [info] ppl_id: 2796e80a-c11d-4a40-9d54-fc968674e0fa, type: PplRequests, event: pe"},{"event":"cmd_output","timestamp":1607098384,"output":"rsisted schedule request with request_token: 96d44f22-364b-11eb-b3d0-5254005464e2, origin: Elixir.Pp"},{"event":"cmd_output","timestamp":1607098384,"output":"l.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:13:04.595 [info] pp"},{"event":"cmd_output","timestamp":1607098384,"output":"l_id: 2796e80a-c11d-4a40-9d54-fc968674e0fa, type: Ppls, state: initializing, event: initializing, re"},{"event":"cmd_output","timestamp":1607098384,"output":"covery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098384,"output":":13:04.599 [info] Project f9d71ddd-e289-48c8-813d-767484241e05 and branch masterlatest_wf details u"},{"event":"cmd_output","timestamp":1607098384,"output":"pdated: \"wf_id: 213653a2-9fc2-49f2-9400-423b285f07d6, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:13:04.601 [info] "},{"event":"cmd_output","timestamp":1607098384,"output":" Persisted ppl_sub_init for pipeline with ppl_id: 2796e80a-c11d-4a40-9d54-fc968674e0fa: %Ppl.PplSubI"},{"event":"cmd_output","timestamp":1607098384,"output":"nits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_"},{"event":"cmd_output","timestamp":1607098384,"output":"id: nil, error_description: nil, id: 290, in_scheduling: false, init_type: \"regular\", inserted_at: ~"},{"event":"cmd_output","timestamp":1607098384,"output":"N[2020-12-04 16:13:04.599938], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"2796e80a-c11d-4a40-9d54-fc968674e0fa\", recovery_count: 0, result: "},{"event":"cmd_output","timestamp":1607098384,"output":"nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, upda"},{"event":"cmd_output","timestamp":1607098384,"output":"ted_at: ~N[2020-12-04 16:13:04.599945]}\n\u001b[0m\u001b[22m\n16:13:04.609 [info] ppl_id: 2796e80a-c11d-4a40-"},{"event":"cmd_output","timestamp":1607098384,"output":"9d54-fc968674e0fa, type: PplRequests, event: persisted source_args for pipeline: 2796e80a-c11d-4a40-"},{"event":"cmd_output","timestamp":1607098384,"output":"9d54-fc968674e0fa, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b"},{"event":"cmd_output","timestamp":1607098384,"output":"[0m\u001b[22m\n16:13:04.621 [info] ppl_id: 2796e80a-c11d-4a40-9d54-fc968674e0fa, type: PplRequests, even"},{"event":"cmd_output","timestamp":1607098384,"output":"t: persisted definition for request with request_token: 96d44f22-364b-11eb-b3d0-5254005464e2, origin"},{"event":"cmd_output","timestamp":1607098384,"output":": Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:13:04.62"},{"event":"cmd_output","timestamp":1607098384,"output":"8 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.InitializingState with name Elixir.Pp"},{"event":"cmd_output","timestamp":1607098384,"output":"l.PplBlocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\""},{"event":"cmd_output","timestamp":1607098384,"output":"Ppl-PplBlocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"w"},{"event":"cmd_output","timestamp":1607098384,"output":"aiting\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state:"},{"event":"cmd_output","timestamp":1607098384,"output":" \"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :upda"},{"event":"cmd_output","timestamp":1607098384,"output":"ted_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlo"},{"event":"cmd_output","timestamp":1607098384,"output":"cks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:04.628 [info] Periodic from module Elixir.Ppl.PplBlo"},{"event":"cmd_output","timestamp":1607098384,"output":"cks.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler.WaitingState :: period: 1000 m"},{"event":"cmd_output","timestamp":1607098384,"output":"s, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurring args:"},{"event":"cmd_output","timestamp":1607098384,"output":" %{allowed_states: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks"},{"event":"cmd_output","timestamp":1607098384,"output":".Model.PplBlocks, observed_state: \"waiting\", publisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.ST"},{"event":"cmd_output","timestamp":1607098384,"output":"MHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at,"},{"event":"cmd_output","timestamp":1607098384,"output":" :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, ta"},{"event":"cmd_output","timestamp":1607098384,"output":"sk_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:04.629 [info] Periodic from module Elixir.Ppl.PplBlocks.STM"},{"event":"cmd_output","timestamp":1607098384,"output":"Handler.RunningState with name Elixir.Ppl.PplBlocks.STMHandler.RunningState :: period: 1000 ms, metr"},{"event":"cmd_output","timestamp":1607098384,"output":"ic_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, recurring args: %{allo"},{"event":"cmd_output","timestamp":1607098384,"output":"wed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Mode"},{"event":"cmd_output","timestamp":1607098384,"output":"l.PplBlocks, observed_state: \"running\", publisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHan"},{"event":"cmd_output","timestamp":1607098384,"output":"dler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :st"},{"event":"cmd_output","timestamp":1607098384,"output":"ate, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlo"},{"event":"cmd_output","timestamp":1607098384,"output":"cks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:04.629 [info] Periodic from module Elixir.Ppl.PplBlo"},{"event":"cmd_output","timestamp":1607098384,"output":"cks.STMHandler.StoppingState with name Elixir.Ppl.PplBlocks.STMHandler.StoppingState :: period: 1000"},{"event":"cmd_output","timestamp":1607098384,"output":" ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurring ar"},{"event":"cmd_output","timestamp":1607098384,"output":"gs: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model"},{"event":"cmd_output","timestamp":1607098384,"output":".PplBlocks, observed_state: \"stopping\", publisher_cb: #Function<0.104215991/1 in Ppl.PplBlocks.STMHa"},{"event":"cmd_output","timestamp":1607098384,"output":"ndler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :"},{"event":"cmd_output","timestamp":1607098384,"output":"state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplB"},{"event":"cmd_output","timestamp":1607098384,"output":"locks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:04.629 [info] Periodic from module Elixir.Block.Bl"},{"event":"cmd_output","timestamp":1607098384,"output":"ocks.STMHandler.InitializingState with name Elixir.Block.Blocks.STMHandler.InitializingState :: peri"},{"event":"cmd_output","timestamp":1607098384,"output":"od: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, re"},{"event":"cmd_output","timestamp":1607098384,"output":"curring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Block"},{"event":"cmd_output","timestamp":1607098384,"output":"s.Model.Blocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Block.EctoRepo, returning"},{"event":"cmd_output","timestamp":1607098384,"output":": [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.M"},{"event":"cmd_output","timestamp":1607098384,"output":"odel.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:04.630 [info] Periodic from module Elixir.Bl"},{"event":"cmd_output","timestamp":1607098384,"output":"ock.Blocks.STMHandler.RunningState with name Elixir.Block.Blocks.STMHandler.RunningState :: period: "},{"event":"cmd_output","timestamp":1607098384,"output":"100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-RunningState\"]}, recurring a"},{"event":"cmd_output","timestamp":1607098384,"output":"rgs: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.B"},{"event":"cmd_output","timestamp":1607098384,"output":"locks.Model.Blocks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning:"},{"event":"cmd_output","timestamp":1607098384,"output":" [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Mo"},{"event":"cmd_output","timestamp":1607098384,"output":"del.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:04.630 [info] Periodic from module Elixir.Blo"},{"event":"cmd_output","timestamp":1607098384,"output":"ck.Blocks.STMHandler.StoppingState with name Elixir.Block.Blocks.STMHandler.StoppingState :: period:"},{"event":"cmd_output","timestamp":1607098384,"output":" 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-StoppingState\"]}, recurring"},{"event":"cmd_output","timestamp":1607098384,"output":" args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Mod"},{"event":"cmd_output","timestamp":1607098384,"output":"el.Blocks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :"},{"event":"cmd_output","timestamp":1607098384,"output":"terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Bloc"},{"event":"cmd_output","timestamp":1607098384,"output":"ks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:04.630 [info] Periodic from module Elixir.Block.Tasks"},{"event":"cmd_output","timestamp":1607098384,"output":".STMHandler.PendingState with name Elixir.Block.Tasks.STMHandler.PendingState :: period: 100 ms, met"},{"event":"cmd_output","timestamp":1607098384,"output":"ric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingState\"]}, recurring args: %{allow"},{"event":"cmd_output","timestamp":1607098384,"output":"ed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Tasks.Model.Tasks, observe"},{"event":"cmd_output","timestamp":1607098384,"output":"d_state: \"pending\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, "},{"event":"cmd_output","timestamp":1607098384,"output":":updated_at, :state, :recovery_count, :block_id, :build_request_id], schema: Block.Tasks.Model.Tasks"},{"event":"cmd_output","timestamp":1607098384,"output":", task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:04.630 [info] Periodic from module Elixir.Block.Tasks.S"},{"event":"cmd_output","timestamp":1607098384,"output":"TMHandler.RunningState with name Elixir.Block.Tasks.STMHandler.RunningState :: period: 100 ms, metri"},{"event":"cmd_output","timestamp":1607098384,"output":"c_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningState\"]}, recurring args: %{allowed"},{"event":"cmd_output","timestamp":1607098384,"output":"_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tas"},{"event":"cmd_output","timestamp":1607098384,"output":"ks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminat"},{"event":"cmd_output","timestamp":1607098384,"output":"e_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_s"},{"event":"cmd_output","timestamp":1607098384,"output":"upervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:04.630 [info] Periodic from module Elixir.Block.Tasks.STMHandle"},{"event":"cmd_output","timestamp":1607098384,"output":"r.StoppingState with name Elixir.Block.Tasks.STMHandler.StoppingState :: period: 100 ms, metric_name"},{"event":"cmd_output","timestamp":1607098384,"output":": {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]}, recurring args: %{allowed_stat"},{"event":"cmd_output","timestamp":1607098384,"output":"es: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_sta"},{"event":"cmd_output","timestamp":1607098384,"output":"te: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :upd"},{"event":"cmd_output","timestamp":1607098384,"output":"ated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :ski"},{"event":"cmd_output","timestamp":1607098385,"output":"p}\n\u001b[0m\u001b[22m\n16:13:05.633 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: "},{"event":"cmd_output","timestamp":1607098385,"output":"\"2796e80a-c11d-4a40-9d54-fc968674e0fa\"\n\u001b[0m\u001b[22m\n16:13:05.640 [info] block_id: c0bed9b1-a4df-42a1"},{"event":"cmd_output","timestamp":1607098385,"output":"-aee5-a0c143c17c1e, type: BlockRequests, event: persisted block run request from ppl 2796e80a-c11d-4"},{"event":"cmd_output","timestamp":1607098385,"output":"a40-9d54-fc968674e0fa for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.pro"},{"event":"cmd_output","timestamp":1607098385,"output":"cess_response/4(L35), \n\u001b[0m\u001b[22m\n16:13:05.647 [info] block_id: c0bed9b1-a4df-42a1-aee5-a0c143c17c"},{"event":"cmd_output","timestamp":1607098385,"output":"1e, type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block."},{"event":"cmd_output","timestamp":1607098385,"output":"Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:13:05.649 [info] Block 0 of pipeline with"},{"event":"cmd_output","timestamp":1607098385,"output":" id: 2796e80a-c11d-4a40-9d54-fc968674e0fa scheduled in block service with id: : \"c0bed9b1-a4df-42a1-"},{"event":"cmd_output","timestamp":1607098385,"output":"aee5-a0c143c17c1e\"\n\u001b[0m\u001b[22m\n16:13:05.652 [info] ppl_id: 2796e80a-c11d-4a40-9d54-fc968674e0fa, ty"},{"event":"cmd_output","timestamp":1607098385,"output":"pe: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098385,"output":"ixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:05.655 [info] block_id: c0bed9b1-a"},{"event":"cmd_output","timestamp":1607098385,"output":"4df-42a1-aee5-a0c143c17c1e, type: BlockRequests, event: persisted build and sub_ppl details for bloc"},{"event":"cmd_output","timestamp":1607098385,"output":"k_request: c0bed9b1-a4df-42a1-aee5-a0c143c17c1e, origin: Elixir.Block.BlockRequests.Model.BlockReque"},{"event":"cmd_output","timestamp":1607098385,"output":"stsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:13:05.657 [info] block_id: c0bed9b1-a4df-42a1-aee5-"},{"event":"cmd_output","timestamp":1607098385,"output":"a0c143c17c1e, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.B"},{"event":"cmd_output","timestamp":1607098385,"output":"locks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:13:05.663 [info] block_id: c0be"},{"event":"cmd_output","timestamp":1607098385,"output":"d9b1-a4df-42a1-aee5-a0c143c17c1e, type: Blocks, state: running, event: exit_scheduling, recovery_cou"},{"event":"cmd_output","timestamp":1607098385,"output":"nt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:05.678 [info] blo"},{"event":"cmd_output","timestamp":1607098385,"output":"ck_id: c0bed9b1-a4df-42a1-aee5-a0c143c17c1e, type: Tasks, state: running, event: exit_scheduling, re"},{"event":"cmd_output","timestamp":1607098387,"output":"covery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:07.646 ["},{"event":"cmd_output","timestamp":1607098387,"output":"info] ppl_id: 2796e80a-c11d-4a40-9d54-fc968674e0fa, block_id: c0bed9b1-a4df-42a1-aee5-a0c143c17c1e,"},{"event":"cmd_output","timestamp":1607098387,"output":" type: PplBlocks, block_index: 0, state: stopping, event: exit_scheduling, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098387,"output":": Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:07.663 [info] block_id: c0bed9"},{"event":"cmd_output","timestamp":1607098387,"output":"b1-a4df-42a1-aee5-a0c143c17c1e, type: Blocks, state: stopping, event: exit_scheduling, recovery_coun"},{"event":"cmd_output","timestamp":1607098387,"output":"t: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:07.682 [info] bloc"},{"event":"cmd_output","timestamp":1607098387,"output":"k_id: c0bed9b1-a4df-42a1-aee5-a0c143c17c1e, type: Tasks, state: stopping, event: exit_scheduling, re"},{"event":"cmd_output","timestamp":1607098388,"output":"covery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:08.706 ["},{"event":"cmd_output","timestamp":1607098388,"output":"info] block_id: c0bed9b1-a4df-42a1-aee5-a0c143c17c1e, type: Tasks, state: done, event: exit_schedul"},{"event":"cmd_output","timestamp":1607098388,"output":"ing, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:0"},{"event":"cmd_output","timestamp":1607098388,"output":"8.711 [info] block_id: c0bed9b1-a4df-42a1-aee5-a0c143c17c1e, type: Blocks, state: done, event: exit"},{"event":"cmd_output","timestamp":1607098388,"output":"_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098388,"output":"\n16:13:08.717 [info] ppl_id: 2796e80a-c11d-4a40-9d54-fc968674e0fa, block_id: c0bed9b1-a4df-42a1-aee"},{"event":"cmd_output","timestamp":1607098388,"output":"5-a0c143c17c1e, type: PplBlocks, block_index: 0, state: done, result: stopped, event: exit_schedulin"},{"event":"cmd_output","timestamp":1607098389,"output":"g, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test p"},{"event":"cmd_output","timestamp":1607098389,"output":"ipeline's block is terminated when it is running for longer than execution_time_limt (4624.7ms)\u001b[0m\r"},{"event":"cmd_output","timestamp":1607098389,"output":"\n\nPpl.PplBlocks.Model.WaitingStateSchedulingTest\n * test behavioural test\r * test behavioural te"},{"event":"cmd_output","timestamp":1607098389,"output":"st (skipped)\n\nPpl.PplBlocks.Model.PplBlocks.Test\n * doctest Ppl.PplBlocks.Model.PplBlocks.change"},{"event":"cmd_output","timestamp":1607098389,"output":"set/2 (1)\r * doctest Ppl.PplBlocks.Model.PplBlocks.changeset/2 (1) (skipped)\n * doctest Ppl.PplBl"},{"event":"cmd_output","timestamp":1607098389,"output":"ocks.Model.PplBlocks.changeset/2 (2)\r * doctest Ppl.PplBlocks.Model.PplBlocks.changeset/2 (2) (skip"},{"event":"cmd_output","timestamp":1607098389,"output":"ped)\n\nPpl.PplBlocks.Model.PplBlocksQueries.Test\n * test get pipeline block in stopping and move "},{"event":"cmd_output","timestamp":1607098389,"output":"it to scheduling\r * test get pipeline block in stopping and move it to scheduling (skipped)\n * te"},{"event":"cmd_output","timestamp":1607098389,"output":"st move pipeline block from stopping-scheduling to done\r * test move pipeline block from stopping-s"},{"event":"cmd_output","timestamp":1607098389,"output":"cheduling to done (skipped)\n * test get all blocks from ppl with given ppl_id\r * test get all blo"},{"event":"cmd_output","timestamp":1607098389,"output":"cks from ppl with given ppl_id (skipped)\n * test move pipeline block from running-scheduling to do"},{"event":"cmd_output","timestamp":1607098389,"output":"ne\r * test move pipeline block from running-scheduling to done (skipped)\n * test invalid - get bl"},{"event":"cmd_output","timestamp":1607098389,"output":"ock by invalid ppl_id and valid index in ppl request's blocks list\r * test invalid - get block by i"},{"event":"cmd_output","timestamp":1607098389,"output":"nvalid ppl_id and valid index in ppl request's blocks list (skipped)\n * test should_do_fast_failin"},{"event":"cmd_output","timestamp":1607098389,"output":"g?() returns {:ok, false} when no blocks have failed or were terminated\r * test should_do_fast_fail"},{"event":"cmd_output","timestamp":1607098389,"output":"ing?() returns {:ok, false} when no blocks have failed or were terminated (skipped)\n * test insert"},{"event":"cmd_output","timestamp":1607098389,"output":" new pipeline block event\r * test insert new pipeline block event (skipped)\n * test move pipeline"},{"event":"cmd_output","timestamp":1607098389,"output":" block from waiting-scheduling to running\r * test move pipeline block from waiting-scheduling to ru"},{"event":"cmd_output","timestamp":1607098389,"output":"nning (skipped)\n * test should_do_fast_failing?() returns {:ok, fast_failing} when some blocks fai"},{"event":"cmd_output","timestamp":1607098389,"output":"l and fast_failing is set\r * test should_do_fast_failing?() returns {:ok, fast_failing} when some b"},{"event":"cmd_output","timestamp":1607098389,"output":"locks fail and fast_failing is set (skipped)\n * test move pipeline block from waiting-scheduling t"},{"event":"cmd_output","timestamp":1607098389,"output":"o done\r * test move pipeline block from waiting-scheduling to done (skipped)\n * test recover pipe"},{"event":"cmd_output","timestamp":1607098389,"output":"line blocks stuck in scheduling\r * test recover pipeline blocks stuck in scheduling (skipped)\n * "},{"event":"cmd_output","timestamp":1607098389,"output":"test invalid - get block by valid ppl_id and invalid index in ppl request's blocks list\r * test inv"},{"event":"cmd_output","timestamp":1607098389,"output":"alid - get block by valid ppl_id and invalid index in ppl request's blocks list (skipped)\n * test "},{"event":"cmd_output","timestamp":1607098389,"output":"move pipeline block from running-scheduling to stopping\r * test move pipeline block from running-sc"},{"event":"cmd_output","timestamp":1607098389,"output":"heduling to stopping (skipped)\n * test get pipeline block in running and move it to scheduling\r *"},{"event":"cmd_output","timestamp":1607098389,"output":" test get pipeline block in running and move it to scheduling (skipped)\n * doctest Ppl.PplBlocks.M"},{"event":"cmd_output","timestamp":1607098389,"output":"odel.PplBlocksQueries.multi_insert/3 (1)\r * doctest Ppl.PplBlocks.Model.PplBlocksQueries.multi_inse"},{"event":"cmd_output","timestamp":1607098389,"output":"rt/3 (1) (skipped)\n * test invalid - get all blocks from ppl with wrong ppl_id\r * test invalid - "},{"event":"cmd_output","timestamp":1607098389,"output":"get all blocks from ppl with wrong ppl_id (skipped)\n * test get pipeline block in waiting and move"},{"event":"cmd_output","timestamp":1607098389,"output":" it to scheduling\r * test get pipeline block in waiting and move it to scheduling (skipped)\n * te"},{"event":"cmd_output","timestamp":1607098389,"output":"st updated_at change on update_all() call\r * test updated_at change on update_all() call (skipped)\r"},{"event":"cmd_output","timestamp":1607098389,"output":"\n * test get ppl's block by ppl_id and index in ppl request's blocks list\r * test get ppl's block "},{"event":"cmd_output","timestamp":1607098389,"output":"by ppl_id and index in ppl request's blocks list (skipped)\n * test should_do_fast_failing?() retur"},{"event":"cmd_output","timestamp":1607098389,"output":"ns {:ok, false} when some blocks fail and fast_failing isn't set\r * test should_do_fast_failing?() "},{"event":"cmd_output","timestamp":1607098389,"output":"returns {:ok, false} when some blocks fail and fast_failing isn't set (skipped)\n\nPpl.PplBlocks.Mod"},{"event":"cmd_output","timestamp":1607098389,"output":"el.PplBlockConectionsTest\n * test implicit blocks dependencies\u001b[22m\n16:13:09.215 [info] Request:"},{"event":"cmd_output","timestamp":1607098389,"output":" 'run: %{\"branch_id\" => \"01d9a7ac-4ea0-4944-a5f6-50dc6d5e14c1\", \"branch_name\" => \"master\", \"commit_s"},{"event":"cmd_output","timestamp":1607098389,"output":"ha\" => \"75891a4469\", \"file_name\" => \"semaphore.yml\", \"hook_id\" => \"99953af0-364b-11eb-be57-525400546"},{"event":"cmd_output","timestamp":1607098389,"output":"4e2\", \"label\" => \"master\", \"organization_id\" => \"ea583d08-322d-4436-a3c1-e78e35b8f15d\", \"owner\" => \""},{"event":"cmd_output","timestamp":1607098389,"output":"rt\", \"project_id\" => \"8f71d078-81ba-4cbc-9057-008dd3f0bf30\", \"repo_name\" => \"5_v1_full\", \"request_to"},{"event":"cmd_output","timestamp":1607098389,"output":"ken\" => \"99953442-364b-11eb-af37-5254005464e2\", \"requester_id\" => \"81788608-73bd-48b7-88b6-d50bf13ae"},{"event":"cmd_output","timestamp":1607098389,"output":"fb0\", \"service\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" =>"},{"event":"cmd_output","timestamp":1607098389,"output":" \"adf122e2-721a-4a2b-897f-49f0fc42a4f3\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:13:09.218 [in"},{"event":"cmd_output","timestamp":1607098389,"output":"fo] ppl_id: 7d3f7391-364d-4f5b-bed6-c5762fcfba1c, type: PplRequests, event: persisted schedule requ"},{"event":"cmd_output","timestamp":1607098389,"output":"est with request_token: 99953442-364b-11eb-af37-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.P"},{"event":"cmd_output","timestamp":1607098389,"output":"plRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:13:09.220 [info] ppl_id: 7d3f7391-364d-4"},{"event":"cmd_output","timestamp":1607098389,"output":"f5b-bed6-c5762fcfba1c, type: Ppls, state: initializing, event: initializing, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098389,"output":"in: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:13:09.224 [info] Pr"},{"event":"cmd_output","timestamp":1607098389,"output":"oject 8f71d078-81ba-4cbc-9057-008dd3f0bf30 and branch masterlatest_wf details updated: \"wf_id: adf12"},{"event":"cmd_output","timestamp":1607098389,"output":"2e2-721a-4a2b-897f-49f0fc42a4f3, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:13:09.226 [info] Persisted ppl_sub_in"},{"event":"cmd_output","timestamp":1607098389,"output":"it for pipeline with ppl_id: 7d3f7391-364d-4f5b-bed6-c5762fcfba1c: %Ppl.PplSubInits.Model.PplSubInit"},{"event":"cmd_output","timestamp":1607098389,"output":"s{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_descri"},{"event":"cmd_output","timestamp":1607098389,"output":"ption: nil, id: 291, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:13:09"},{"event":"cmd_output","timestamp":1607098389,"output":".224942], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"7d3f7391-364d-4f5b-bed6-c5762fcfba1c\", recovery_count: 0, result: nil, result_reason: n"},{"event":"cmd_output","timestamp":1607098389,"output":"il, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04"},{"event":"cmd_output","timestamp":1607098389,"output":" 16:13:09.224950]}\n\u001b[0m\u001b[22m\n16:13:09.230 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler."},{"event":"cmd_output","timestamp":1607098389,"output":"InitializingState with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms, metric_n"},{"event":"cmd_output","timestamp":1607098389,"output":"ame: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %{allowed_"},{"event":"cmd_output","timestamp":1607098389,"output":"states: [\"initializing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls"},{"event":"cmd_output","timestamp":1607098389,"output":", observed_state: \"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.Initi"},{"event":"cmd_output","timestamp":1607098389,"output":"alizingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, "},{"event":"cmd_output","timestamp":1607098389,"output":":result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098389,"output":"\n16:13:09.231 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedState with name "},{"event":"cmd_output","timestamp":1607098389,"output":"Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_u"},{"event":"cmd_output","timestamp":1607098389,"output":"p\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args: %{allowed_states: [\"fetching\", \"do"},{"event":"cmd_output","timestamp":1607098389,"output":"ne\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"create"},{"event":"cmd_output","timestamp":1607098389,"output":"d\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :stat"},{"event":"cmd_output","timestamp":1607098389,"output":"e, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :"},{"event":"cmd_output","timestamp":1607098389,"output":"skip}\n\u001b[0m\u001b[22m\n16:13:09.231 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.Fetchi"},{"event":"cmd_output","timestamp":1607098389,"output":"ngState with name Elixir.Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 ms, metric_name: {\""},{"event":"cmd_output","timestamp":1607098389,"output":"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %{allowed_stat"},{"event":"cmd_output","timestamp":1607098389,"output":"es: [\"regular_init\", \"compilation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Mo"},{"event":"cmd_output","timestamp":1607098389,"output":"del.PplSubInits, observed_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:i"},{"event":"cmd_output","timestamp":1607098389,"output":"d, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubIn"},{"event":"cmd_output","timestamp":1607098389,"output":"its.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:09.231 [info] Periodic from module"},{"event":"cmd_output","timestamp":1607098389,"output":" Elixir.Ppl.PplSubInits.STMHandler.CompilationState with name Elixir.Ppl.PplSubInits.STMHandler.Comp"},{"event":"cmd_output","timestamp":1607098389,"output":"ilationState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-C"},{"event":"cmd_output","timestamp":1607098389,"output":"ompilationState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"stopping\", \"d"},{"event":"cmd_output","timestamp":1607098389,"output":"one\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"comp"},{"event":"cmd_output","timestamp":1607098389,"output":"ilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at,"},{"event":"cmd_output","timestamp":1607098389,"output":" :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervi"},{"event":"cmd_output","timestamp":1607098389,"output":"sor: :skip}\n\u001b[0m\u001b[22m\n16:13:09.231 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler."},{"event":"cmd_output","timestamp":1607098389,"output":"RegularInitState with name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period: 100 ms, met"},{"event":"cmd_output","timestamp":1607098389,"output":"ric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurring args:"},{"event":"cmd_output","timestamp":1607098389,"output":" %{allowed_states: [\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, "},{"event":"cmd_output","timestamp":1607098389,"output":"observed_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate"},{"event":"cmd_output","timestamp":1607098389,"output":"_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.Ppl"},{"event":"cmd_output","timestamp":1607098389,"output":"SubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:09.231 [info] Periodic from module Elixir.Ppl.P"},{"event":"cmd_output","timestamp":1607098389,"output":"pls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 100 ms, met"},{"event":"cmd_output","timestamp":1607098389,"output":"ric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args: %{allowed_"},{"event":"cmd_output","timestamp":1607098389,"output":"states: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Mode"},{"event":"cmd_output","timestamp":1607098389,"output":"l.Ppls, observed_state: \"pending\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler.Pendin"},{"event":"cmd_output","timestamp":1607098389,"output":"gState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :resul"},{"event":"cmd_output","timestamp":1607098389,"output":"t, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0"},{"event":"cmd_output","timestamp":1607098389,"output":"m\u001b[22m\n16:13:09.231 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.QueuingState with name "},{"event":"cmd_output","timestamp":1607098389,"output":"Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"P"},{"event":"cmd_output","timestamp":1607098389,"output":"pl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{allowed_states: [\"queuing\", \"running\", \"done\"]"},{"event":"cmd_output","timestamp":1607098389,"output":", cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", publisher_cb:"},{"event":"cmd_output","timestamp":1607098389,"output":" #Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, returning:"},{"event":"cmd_output","timestamp":1607098389,"output":" [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls"},{"event":"cmd_output","timestamp":1607098389,"output":".Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:09.342 [info] ppl_id: 7d3f7391-364d-4f5b-bed"},{"event":"cmd_output","timestamp":1607098389,"output":"6-c5762fcfba1c, type: PplRequests, event: persisted source_args for pipeline: 7d3f7391-364d-4f5b-bed"},{"event":"cmd_output","timestamp":1607098389,"output":"6-c5762fcfba1c, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098389,"output":"\u001b[22m\n16:13:09.348 [info] ppl_id: 7d3f7391-364d-4f5b-bed6-c5762fcfba1c, type: PplSubInits, state: "},{"event":"cmd_output","timestamp":1607098389,"output":"fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change"},{"event":"cmd_output","timestamp":1607098389,"output":"/1(L90), \n\u001b[0m\u001b[22m\n16:13:09.374 [info] ppl_id: 7d3f7391-364d-4f5b-bed6-c5762fcfba1c, type: PplSu"},{"event":"cmd_output","timestamp":1607098389,"output":"bInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Im"},{"event":"cmd_output","timestamp":1607098389,"output":"pl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:09.406 [info] ppl_id: 7d3f7391-364d-4f5b-bed6-c5762f"},{"event":"cmd_output","timestamp":1607098389,"output":"cfba1c, type: PplRequests, event: persisted definition for request with request_token: 99953442-364b"},{"event":"cmd_output","timestamp":1607098389,"output":"-11eb-af37-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3"},{"event":"cmd_output","timestamp":1607098389,"output":"(L76), \n\u001b[0m\u001b[22m\n16:13:09.411 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #"},{"event":"cmd_output","timestamp":1607098389,"output":"Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:13:09.409151], name: \"master-"},{"event":"cmd_output","timestamp":1607098389,"output":".semaphore/semaphore.yml\", organization_id: \"ea583d08-322d-4436-a3c1-e78e35b8f15d\", project_id: \"8f7"},{"event":"cmd_output","timestamp":1607098389,"output":"1d078-81ba-4cbc-9057-008dd3f0bf30\", queue_id: \"189cb7e6-5fd0-4e70-8701-f65187047929\", scope: \"projec"},{"event":"cmd_output","timestamp":1607098389,"output":"t\", updated_at: ~N[2020-12-04 16:13:09.409197], user_generated: false}}\n\u001b[0m\u001b[22m\n16:13:09.417 [in"},{"event":"cmd_output","timestamp":1607098389,"output":"fo] ppl_id: not_available, event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitSta"},{"event":"cmd_output","timestamp":1607098389,"output":"te.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:09.417 [info] event: created, origin: Elixir.Ppl.PplSubInits"},{"event":"cmd_output","timestamp":1607098389,"output":".STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:09.417 [info] ppl_id: 7d3f7391-364"},{"event":"cmd_output","timestamp":1607098389,"output":"d-4f5b-bed6-c5762fcfba1c, type: PplBlocks, block_index: 0, state: initializing, event: created, reco"},{"event":"cmd_output","timestamp":1607098389,"output":"very_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098389,"output":"2m\n16:13:09.417 [info] ppl_id: 7d3f7391-364d-4f5b-bed6-c5762fcfba1c, type: PplBlocks, block_index:"},{"event":"cmd_output","timestamp":1607098389,"output":" 1, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandle"},{"event":"cmd_output","timestamp":1607098389,"output":"r.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:09.419 [info] ppl_id: 7d3f7391-364d-4f5b-bed"},{"event":"cmd_output","timestamp":1607098389,"output":"6-c5762fcfba1c, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_cou"},{"event":"cmd_output","timestamp":1607098389,"output":"nt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:09.433 [info] ppl"},{"event":"cmd_output","timestamp":1607098389,"output":"_id: 7d3f7391-364d-4f5b-bed6-c5762fcfba1c, type: Ppls, state: pending, event: exit_scheduling, recov"},{"event":"cmd_output","timestamp":1607098389,"output":"ery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:09.441 [inf"},{"event":"cmd_output","timestamp":1607098389,"output":"o] ppl_id: 7d3f7391-364d-4f5b-bed6-c5762fcfba1c, type: Ppls, state: queuing, event: exit_scheduling"},{"event":"cmd_output","timestamp":1607098389,"output":", recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:09.4"},{"event":"cmd_output","timestamp":1607098389,"output":"49 [info] ppl_id: 7d3f7391-364d-4f5b-bed6-c5762fcfba1c, type: Ppls, state: running, event: exit_sch"},{"event":"cmd_output","timestamp":1607098389,"output":"eduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * "},{"event":"cmd_output","timestamp":1607098389,"output":"test implicit blocks dependencies (338.7ms)\u001b[0m\n * test explicit blocks dependencies exists - pass"},{"event":"cmd_output","timestamp":1607098389,"output":"\u001b[22m\n16:13:09.547 [info] Request: 'run: %{\"branch_id\" => \"0aa70282-3a64-4307-b9c5-6d6869925cdc\", "},{"event":"cmd_output","timestamp":1607098389,"output":"\"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"semaphore.yml\", \"hook_id\" ="},{"event":"cmd_output","timestamp":1607098389,"output":"> \"99c90038-364b-11eb-ad91-5254005464e2\", \"label\" => \"master\", \"organization_id\" => \"560d40b7-e354-4"},{"event":"cmd_output","timestamp":1607098389,"output":"4e6-b4fb-d8872ab891c2\", \"owner\" => \"rt\", \"project_id\" => \"2be92b9f-585d-4763-847b-7b6dc2bf260c\", \"re"},{"event":"cmd_output","timestamp":1607098389,"output":"po_name\" => \"13_free_topology\", \"request_token\" => \"99c8f5ca-364b-11eb-86b9-5254005464e2\", \"requeste"},{"event":"cmd_output","timestamp":1607098389,"output":"r_id\" => \"f957b88e-28b7-4cb4-a432-343da5520d87\", \"service\" => \"local\", \"suppressed_attributes\" => [\""},{"event":"cmd_output","timestamp":1607098389,"output":"access_token\", \"client_secret\"], \"wf_id\" => \"f53fa446-abcf-4e79-9a8c-9e901c70642c\", \"working_dir\" =>"},{"event":"cmd_output","timestamp":1607098389,"output":" \".semaphore\"}\n\u001b[0m\u001b[22m\n16:13:09.549 [info] ppl_id: ad81dde8-cea5-4d9a-a926-1cd2c71c0198, type: "},{"event":"cmd_output","timestamp":1607098389,"output":"PplRequests, event: persisted schedule request with request_token: 99c8f5ca-364b-11eb-86b9-525400546"},{"event":"cmd_output","timestamp":1607098389,"output":"4e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098389,"output":"6:13:09.550 [info] ppl_id: ad81dde8-cea5-4d9a-a926-1cd2c71c0198, type: Ppls, state: initializing, e"},{"event":"cmd_output","timestamp":1607098389,"output":"vent: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2("},{"event":"cmd_output","timestamp":1607098389,"output":"L124), \n\u001b[0m\u001b[22m\n16:13:09.553 [info] Project 2be92b9f-585d-4763-847b-7b6dc2bf260c and branch mas"},{"event":"cmd_output","timestamp":1607098389,"output":"terlatest_wf details updated: \"wf_id: f53fa446-abcf-4e79-9a8c-9e901c70642c, wf_number: 1\"\n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098389,"output":"\n16:13:09.554 [info] Persisted ppl_sub_init for pipeline with ppl_id: ad81dde8-cea5-4d9a-a926-1cd2"},{"event":"cmd_output","timestamp":1607098389,"output":"c71c0198: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_"},{"event":"cmd_output","timestamp":1607098389,"output":"inits\">, compile_task_id: nil, error_description: nil, id: 292, in_scheduling: false, init_type: \"re"},{"event":"cmd_output","timestamp":1607098389,"output":"gular\", inserted_at: ~N[2020-12-04 16:13:09.553740], pipeline_requests: #Ecto.Association.NotLoaded<"},{"event":"cmd_output","timestamp":1607098389,"output":"association :pipeline_requests is not loaded>, ppl_id: \"ad81dde8-cea5-4d9a-a926-1cd2c71c0198\", recov"},{"event":"cmd_output","timestamp":1607098389,"output":"ery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_r"},{"event":"cmd_output","timestamp":1607098389,"output":"equest_desc: nil, updated_at: ~N[2020-12-04 16:13:09.553747]}\n\u001b[0m\u001b[22m\n16:13:09.558 [info] Perio"},{"event":"cmd_output","timestamp":1607098389,"output":"dic from module Elixir.Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.STMHandler.In"},{"event":"cmd_output","timestamp":1607098389,"output":"itializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Initi"},{"event":"cmd_output","timestamp":1607098389,"output":"alizingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], cooling_time"},{"event":"cmd_output","timestamp":1607098389,"output":"_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher_cb: #Function"},{"event":"cmd_output","timestamp":1607098389,"output":"<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, returning: [:id"},{"event":"cmd_output","timestamp":1607098389,"output":", :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Mode"},{"event":"cmd_output","timestamp":1607098389,"output":"l.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:09.558 [info] Periodic from module Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098389,"output":"SubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period:"},{"event":"cmd_output","timestamp":1607098389,"output":" 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurri"},{"event":"cmd_output","timestamp":1607098389,"output":"ng args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits"},{"event":"cmd_output","timestamp":1607098389,"output":".Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: ["},{"event":"cmd_output","timestamp":1607098389,"output":":id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSub"},{"event":"cmd_output","timestamp":1607098389,"output":"Inits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:09.558 [info] Periodic from modu"},{"event":"cmd_output","timestamp":1607098389,"output":"le Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler.Fetch"},{"event":"cmd_output","timestamp":1607098389,"output":"ingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-Fetch"},{"event":"cmd_output","timestamp":1607098389,"output":"ingState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"done\"], cooling_time"},{"event":"cmd_output","timestamp":1607098389,"output":"_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fetching\", publisher_cb"},{"event":"cmd_output","timestamp":1607098389,"output":": :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :rec"},{"event":"cmd_output","timestamp":1607098389,"output":"overy_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098389,"output":"\n16:13:09.558 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CompilationState with "},{"event":"cmd_output","timestamp":1607098389,"output":"name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 100 ms, metric_name: {\"Ppl.behold"},{"event":"cmd_output","timestamp":1607098389,"output":"er-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurring args: %{allowed_states: [\"r"},{"event":"cmd_output","timestamp":1607098389,"output":"egular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubIni"},{"event":"cmd_output","timestamp":1607098389,"output":"ts.Model.PplSubInits, observed_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, return"},{"event":"cmd_output","timestamp":1607098389,"output":"ing: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl."},{"event":"cmd_output","timestamp":1607098389,"output":"PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:09.558 [info] Periodic fro"},{"event":"cmd_output","timestamp":1607098389,"output":"m module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHand"},{"event":"cmd_output","timestamp":1607098389,"output":"ler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMH"},{"event":"cmd_output","timestamp":1607098389,"output":"andler-RegularInitState\"]}, recurring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, initial"},{"event":"cmd_output","timestamp":1607098389,"output":"_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_init\", publisher_cb: :skip, repo"},{"event":"cmd_output","timestamp":1607098389,"output":": Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, "},{"event":"cmd_output","timestamp":1607098389,"output":":ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:09.55"},{"event":"cmd_output","timestamp":1607098389,"output":"9 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STM"},{"event":"cmd_output","timestamp":1607098389,"output":"Handler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-"},{"event":"cmd_output","timestamp":1607098389,"output":"PendingState\"]}, recurring args: %{allowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], coolin"},{"event":"cmd_output","timestamp":1607098389,"output":"g_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publisher_cb: #Functio"},{"event":"cmd_output","timestamp":1607098389,"output":"n<0.8493005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :ter"},{"event":"cmd_output","timestamp":1607098389,"output":"minate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls"},{"event":"cmd_output","timestamp":1607098389,"output":", task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:13:09.559 [info] Periodic from module Elixir."},{"event":"cmd_output","timestamp":1607098389,"output":"Ppl.Ppls.STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms"},{"event":"cmd_output","timestamp":1607098389,"output":", metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{all"},{"event":"cmd_output","timestamp":1607098389,"output":"owed_states: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppl"},{"event":"cmd_output","timestamp":1607098389,"output":"s, observed_state: \"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingSt"},{"event":"cmd_output","timestamp":1607098389,"output":"ate.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, "},{"event":"cmd_output","timestamp":1607098389,"output":":recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:09"},{"event":"cmd_output","timestamp":1607098389,"output":".668 [info] ppl_id: ad81dde8-cea5-4d9a-a926-1cd2c71c0198, type: PplRequests, event: persisted sourc"},{"event":"cmd_output","timestamp":1607098389,"output":"e_args for pipeline: ad81dde8-cea5-4d9a-a926-1cd2c71c0198, origin: Elixir.Ppl.PplRequests.Model.PplR"},{"event":"cmd_output","timestamp":1607098389,"output":"equestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:13:09.670 [info] ppl_id: ad81dde8-cea5-4d9a-a9"},{"event":"cmd_output","timestamp":1607098389,"output":"26-1cd2c71c0198, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098389,"output":"in: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:09.688 [info] ppl_id: ad81dd"},{"event":"cmd_output","timestamp":1607098389,"output":"e8-cea5-4d9a-a926-1cd2c71c0198, type: PplSubInits, state: regular_init, event: exit_scheduling, reco"},{"event":"cmd_output","timestamp":1607098389,"output":"very_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:09.718 [in"},{"event":"cmd_output","timestamp":1607098389,"output":"fo] ppl_id: ad81dde8-cea5-4d9a-a926-1cd2c71c0198, type: PplRequests, event: persisted definition fo"},{"event":"cmd_output","timestamp":1607098389,"output":"r request with request_token: 99c8f5ca-364b-11eb-86b9-5254005464e2, origin: Elixir.Ppl.PplRequests.M"},{"event":"cmd_output","timestamp":1607098389,"output":"odel.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:13:09.721 [info] Queue persisted:"},{"event":"cmd_output","timestamp":1607098389,"output":" {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N["},{"event":"cmd_output","timestamp":1607098389,"output":"2020-12-04 16:13:09.720044], name: \"master-.semaphore/semaphore.yml\", organization_id: \"560d40b7-e35"},{"event":"cmd_output","timestamp":1607098389,"output":"4-44e6-b4fb-d8872ab891c2\", project_id: \"2be92b9f-585d-4763-847b-7b6dc2bf260c\", queue_id: \"02a2c334-6"},{"event":"cmd_output","timestamp":1607098389,"output":"f28-49e6-9822-1a37730d14a9\", scope: \"project\", updated_at: ~N[2020-12-04 16:13:09.720052], user_gene"},{"event":"cmd_output","timestamp":1607098389,"output":"rated: false}}\n\u001b[0m\u001b[22m\n16:13:09.728 [info] ppl_id: not_available, event: created, origin: Elixi"},{"event":"cmd_output","timestamp":1607098389,"output":"r.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:09.728 [info] eve"},{"event":"cmd_output","timestamp":1607098389,"output":"nt: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098389,"output":"\n16:13:09.728 [info] ppl_id: ad81dde8-cea5-4d9a-a926-1cd2c71c0198, type: PplBlocks, block_index: 0"},{"event":"cmd_output","timestamp":1607098389,"output":", state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler."},{"event":"cmd_output","timestamp":1607098389,"output":"RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:09.728 [info] ppl_id: ad81dde8-cea5-4d9a-a926-"},{"event":"cmd_output","timestamp":1607098389,"output":"1cd2c71c0198, type: PplBlocks, block_index: 1, state: initializing, event: created, recovery_count: "},{"event":"cmd_output","timestamp":1607098389,"output":"0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:09"},{"event":"cmd_output","timestamp":1607098389,"output":".728 [info] ppl_id: ad81dde8-cea5-4d9a-a926-1cd2c71c0198, type: PplBlocks, block_index: 2, state: i"},{"event":"cmd_output","timestamp":1607098389,"output":"nitializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularIni"},{"event":"cmd_output","timestamp":1607098389,"output":"tState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:09.728 [info] ppl_id: ad81dde8-cea5-4d9a-a926-1cd2c71c01"},{"event":"cmd_output","timestamp":1607098389,"output":"98, type: PplBlocks, block_index: 3, state: initializing, event: created, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098389,"output":" Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:09.728 [info"},{"event":"cmd_output","timestamp":1607098389,"output":"] ppl_id: ad81dde8-cea5-4d9a-a926-1cd2c71c0198, type: PplBlocks, block_index: 4, state: initializin"},{"event":"cmd_output","timestamp":1607098389,"output":"g, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all"},{"event":"cmd_output","timestamp":1607098389,"output":"_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:09.729 [info] ppl_id: ad81dde8-cea5-4d9a-a926-1cd2c71c0198, type: "},{"event":"cmd_output","timestamp":1607098389,"output":"PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098389,"output":"Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:09.742 [info] ppl_id: ad81dde8-cea5-4d9"},{"event":"cmd_output","timestamp":1607098389,"output":"a-a926-1cd2c71c0198, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098389,"output":"Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:09.748 [info] ppl_id: ad81dde8-c"},{"event":"cmd_output","timestamp":1607098389,"output":"ea5-4d9a-a926-1cd2c71c0198, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098389,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:09.763 [info] ppl_id: ad8"},{"event":"cmd_output","timestamp":1607098389,"output":"1dde8-cea5-4d9a-a926-1cd2c71c0198, type: Ppls, state: running, event: exit_scheduling, recovery_coun"},{"event":"cmd_output","timestamp":1607098389,"output":"t: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test explicit blocks d"},{"event":"cmd_output","timestamp":1607098389,"output":"ependancies exists - pass (220.1ms)\u001b[0m\n * test explicit blocks dependencies exists - fail\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098389,"output":"6:13:09.767 [info] Request: 'run: %{\"branch_id\" => \"f688cb36-68cd-4f49-86ff-3ad943688bb3\", \"branch_"},{"event":"cmd_output","timestamp":1607098389,"output":"name\" => \"master\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"semaphore.yml\", \"hook_id\" => \"99eaa"},{"event":"cmd_output","timestamp":1607098389,"output":"1f2-364b-11eb-9ea2-5254005464e2\", \"label\" => \"master\", \"organization_id\" => \"8b695183-a147-422f-8ac7"},{"event":"cmd_output","timestamp":1607098389,"output":"-ad9efc1999d0\", \"owner\" => \"rt\", \"project_id\" => \"c06795d9-d09d-43f4-941b-4327a8d26a36\", \"repo_name\""},{"event":"cmd_output","timestamp":1607098389,"output":" => \"12_failing_deps\", \"request_token\" => \"99ea928e-364b-11eb-bf96-5254005464e2\", \"requester_id\" => "},{"event":"cmd_output","timestamp":1607098389,"output":"\"f7113f22-5d51-4f04-96f9-50b644afe335\", \"service\" => \"local\", \"suppressed_attributes\" => [\"access_to"},{"event":"cmd_output","timestamp":1607098389,"output":"ken\", \"client_secret\"], \"wf_id\" => \"19c1ead7-4a21-4731-bdca-965be17d3f18\", \"working_dir\" => \".semaph"},{"event":"cmd_output","timestamp":1607098389,"output":"ore\"}\n\u001b[0m\u001b[22m\n16:13:09.769 [info] ppl_id: edbe077d-44f9-4789-bf38-90fd81a7b4b1, type: PplReques"},{"event":"cmd_output","timestamp":1607098389,"output":"ts, event: persisted schedule request with request_token: 99ea928e-364b-11eb-bf96-5254005464e2, orig"},{"event":"cmd_output","timestamp":1607098389,"output":"in: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:13:09.7"},{"event":"cmd_output","timestamp":1607098389,"output":"71 [info] ppl_id: edbe077d-44f9-4789-bf38-90fd81a7b4b1, type: Ppls, state: initializing, event: ini"},{"event":"cmd_output","timestamp":1607098389,"output":"tializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n"},{"event":"cmd_output","timestamp":1607098389,"output":"\u001b[0m\u001b[22m\n16:13:09.778 [info] Project c06795d9-d09d-43f4-941b-4327a8d26a36 and branch masterlatest"},{"event":"cmd_output","timestamp":1607098389,"output":"_wf details updated: \"wf_id: 19c1ead7-4a21-4731-bdca-965be17d3f18, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:13:0"},{"event":"cmd_output","timestamp":1607098389,"output":"9.780 [info] Persisted ppl_sub_init for pipeline with ppl_id: edbe077d-44f9-4789-bf38-90fd81a7b4b1:"},{"event":"cmd_output","timestamp":1607098389,"output":" %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, "},{"event":"cmd_output","timestamp":1607098389,"output":"compile_task_id: nil, error_description: nil, id: 293, in_scheduling: false, init_type: \"regular\", i"},{"event":"cmd_output","timestamp":1607098389,"output":"nserted_at: ~N[2020-12-04 16:13:09.779147], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"edbe077d-44f9-4789-bf38-90fd81a7b4b1\", recovery_count"},{"event":"cmd_output","timestamp":1607098389,"output":": 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_de"},{"event":"cmd_output","timestamp":1607098389,"output":"sc: nil, updated_at: ~N[2020-12-04 16:13:09.779156]}\n\u001b[0m\u001b[22m\n16:13:09.783 [info] Periodic from "},{"event":"cmd_output","timestamp":1607098389,"output":"module Elixir.Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.STMHandler.Initializin"},{"event":"cmd_output","timestamp":1607098389,"output":"gState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingSt"},{"event":"cmd_output","timestamp":1607098389,"output":"ate\"]}, recurring args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], cooling_time_sec: 0, "},{"event":"cmd_output","timestamp":1607098389,"output":"initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher_cb: #Function<0.125326"},{"event":"cmd_output","timestamp":1607098389,"output":"080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :termin"},{"event":"cmd_output","timestamp":1607098389,"output":"ate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, t"},{"event":"cmd_output","timestamp":1607098389,"output":"ask_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:09.784 [info] Periodic from module Elixir.Ppl.PplSubInits."},{"event":"cmd_output","timestamp":1607098389,"output":"STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 100 ms, "},{"event":"cmd_output","timestamp":1607098389,"output":"metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args: "},{"event":"cmd_output","timestamp":1607098389,"output":"%{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.Pp"},{"event":"cmd_output","timestamp":1607098389,"output":"lSubInits, observed_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :ter"},{"event":"cmd_output","timestamp":1607098389,"output":"minate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Mod"},{"event":"cmd_output","timestamp":1607098389,"output":"el.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:09.784 [info] Periodic from module Elixir"},{"event":"cmd_output","timestamp":1607098389,"output":".Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler.FetchingState "},{"event":"cmd_output","timestamp":1607098389,"output":":: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\""},{"event":"cmd_output","timestamp":1607098389,"output":"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"done\"], cooling_time_sec: -2,"},{"event":"cmd_output","timestamp":1607098389,"output":" initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fetching\", publisher_cb: :skip, "},{"event":"cmd_output","timestamp":1607098389,"output":"repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_cou"},{"event":"cmd_output","timestamp":1607098389,"output":"nt, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:0"},{"event":"cmd_output","timestamp":1607098389,"output":"9.784 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CompilationState with name Elix"},{"event":"cmd_output","timestamp":1607098389,"output":"ir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_u"},{"event":"cmd_output","timestamp":1607098389,"output":"p\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurring args: %{allowed_states: [\"regular_in"},{"event":"cmd_output","timestamp":1607098389,"output":"it\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model."},{"event":"cmd_output","timestamp":1607098389,"output":"PplSubInits, observed_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id"},{"event":"cmd_output","timestamp":1607098389,"output":", :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubIni"},{"event":"cmd_output","timestamp":1607098389,"output":"ts.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:09.784 [info] Periodic from module "},{"event":"cmd_output","timestamp":1607098389,"output":"Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHandler.Regul"},{"event":"cmd_output","timestamp":1607098389,"output":"arInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-Re"},{"event":"cmd_output","timestamp":1607098389,"output":"gularInitState\"]}, recurring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, initial_query: P"},{"event":"cmd_output","timestamp":1607098389,"output":"pl.PplSubInits.Model.PplSubInits, observed_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.Ect"},{"event":"cmd_output","timestamp":1607098389,"output":"oRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id],"},{"event":"cmd_output","timestamp":1607098389,"output":" schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:09.785 [info] "},{"event":"cmd_output","timestamp":1607098389,"output":" Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler.P"},{"event":"cmd_output","timestamp":1607098389,"output":"endingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingSt"},{"event":"cmd_output","timestamp":1607098389,"output":"ate\"]}, recurring args: %{allowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_se"},{"event":"cmd_output","timestamp":1607098389,"output":"c: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publisher_cb: #Function<0.84930"},{"event":"cmd_output","timestamp":1607098389,"output":"05/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_re"},{"event":"cmd_output","timestamp":1607098389,"output":"quest, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_su"},{"event":"cmd_output","timestamp":1607098389,"output":"pervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:13:09.785 [info] Periodic from module Elixir.Ppl.Ppls."},{"event":"cmd_output","timestamp":1607098389,"output":"STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, metric_"},{"event":"cmd_output","timestamp":1607098389,"output":"name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{allowed_stat"},{"event":"cmd_output","timestamp":1607098389,"output":"es: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observ"},{"event":"cmd_output","timestamp":1607098389,"output":"ed_state: \"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.args/"},{"event":"cmd_output","timestamp":1607098389,"output":"0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery"},{"event":"cmd_output","timestamp":1607098389,"output":"_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:09.898 [inf"},{"event":"cmd_output","timestamp":1607098389,"output":"o] ppl_id: edbe077d-44f9-4789-bf38-90fd81a7b4b1, type: PplRequests, event: persisted source_args fo"},{"event":"cmd_output","timestamp":1607098389,"output":"r pipeline: edbe077d-44f9-4789-bf38-90fd81a7b4b1, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQu"},{"event":"cmd_output","timestamp":1607098389,"output":"eries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:13:09.902 [info] ppl_id: edbe077d-44f9-4789-bf38-90fd81"},{"event":"cmd_output","timestamp":1607098389,"output":"a7b4b1, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098389,"output":"r.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:09.921 [info] ppl_id: edbe077d-44f9-4"},{"event":"cmd_output","timestamp":1607098389,"output":"789-bf38-90fd81a7b4b1, type: PplSubInits, state: done, result: failed, event: exit_scheduling, recov"},{"event":"cmd_output","timestamp":1607098389,"output":"ery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:09.934 [inf"},{"event":"cmd_output","timestamp":1607098389,"output":"o] ppl_id: edbe077d-44f9-4789-bf38-90fd81a7b4b1, type: Ppls, state: done, result: failed, event: ex"},{"event":"cmd_output","timestamp":1607098389,"output":"it_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32"},{"event":"cmd_output","timestamp":1607098389,"output":"m\r * test explicit blocks dependencies exists - fail (227.4ms)\u001b[0m\n\nPpl.PplBlocks.Beholder.Test\n"},{"event":"cmd_output","timestamp":1607098389,"output":" * test pipeline's block is terminated when recovery counter reaches threshold\r * test pipeline's "},{"event":"cmd_output","timestamp":1607098389,"output":"block is terminated when recovery counter reaches threshold (skipped)\n * test recovery counter is "},{"event":"cmd_output","timestamp":1607098389,"output":"incremented when ppl block event is recovered from stuck\r * test recovery counter is incremented wh"},{"event":"cmd_output","timestamp":1607098389,"output":"en ppl block event is recovered from stuck (skipped)\n * test child_spec accepts 1 arg and returns "},{"event":"cmd_output","timestamp":1607098389,"output":"a map\r * test child_spec accepts 1 arg and returns a map (skipped)\n\nPpl.OrgEventsConsumer.Test\n "},{"event":"cmd_output","timestamp":1607098390,"output":" * test valid message received => all pipelines from the org are terminated\u001b[22m\n16:13:10.065 [info"},{"event":"cmd_output","timestamp":1607098390,"output":"] Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.STMHa"},{"event":"cmd_output","timestamp":1607098390,"output":"ndler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandl"},{"event":"cmd_output","timestamp":1607098390,"output":"er-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], cool"},{"event":"cmd_output","timestamp":1607098390,"output":"ing_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher_cb: #"},{"event":"cmd_output","timestamp":1607098390,"output":"Function<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, returni"},{"event":"cmd_output","timestamp":1607098390,"output":"ng: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.P"},{"event":"cmd_output","timestamp":1607098390,"output":"pls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:10.065 [info] Periodic from module Elixir"},{"event":"cmd_output","timestamp":1607098390,"output":".Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 100 m"},{"event":"cmd_output","timestamp":1607098390,"output":"s, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args: %{al"},{"event":"cmd_output","timestamp":1607098390,"output":"lowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098390,"output":"s.Model.Ppls, observed_state: \"pending\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler."},{"event":"cmd_output","timestamp":1607098390,"output":"PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, "},{"event":"cmd_output","timestamp":1607098390,"output":":result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor"},{"event":"cmd_output","timestamp":1607098390,"output":"}\n\u001b[0m\u001b[22m\n16:13:10.066 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.QueuingState with"},{"event":"cmd_output","timestamp":1607098390,"output":" name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up"},{"event":"cmd_output","timestamp":1607098390,"output":"\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{allowed_states: [\"queuing\", \"running\", \""},{"event":"cmd_output","timestamp":1607098390,"output":"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", publish"},{"event":"cmd_output","timestamp":1607098390,"output":"er_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, retu"},{"event":"cmd_output","timestamp":1607098390,"output":"rning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Pp"},{"event":"cmd_output","timestamp":1607098390,"output":"l.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:10.066 [info] Periodic from module Eli"},{"event":"cmd_output","timestamp":1607098390,"output":"xir.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHandler.RunningState :: period: 10"},{"event":"cmd_output","timestamp":1607098390,"output":"0 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring args: %"},{"event":"cmd_output","timestamp":1607098390,"output":"{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Mode"},{"event":"cmd_output","timestamp":1607098390,"output":"l.Ppls, observed_state: \"running\", publisher_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler.Runni"},{"event":"cmd_output","timestamp":1607098390,"output":"ngState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :resu"},{"event":"cmd_output","timestamp":1607098390,"output":"lt, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b["},{"event":"cmd_output","timestamp":1607098390,"output":"0m\u001b[22m\n16:13:10.066 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.StoppingState with nam"},{"event":"cmd_output","timestamp":1607098390,"output":"e Elixir.Ppl.Ppls.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", "},{"event":"cmd_output","timestamp":1607098390,"output":"[\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cool"},{"event":"cmd_output","timestamp":1607098390,"output":"ing_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"stopping\", publisher_cb: #Fun"},{"event":"cmd_output","timestamp":1607098390,"output":"ction<0.71803493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id"},{"event":"cmd_output","timestamp":1607098390,"output":", :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Mode"},{"event":"cmd_output","timestamp":1607098390,"output":"l.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:10.066 [info] Periodic from module Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098390,"output":"SubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period:"},{"event":"cmd_output","timestamp":1607098390,"output":" 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurri"},{"event":"cmd_output","timestamp":1607098390,"output":"ng args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits"},{"event":"cmd_output","timestamp":1607098390,"output":".Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: ["},{"event":"cmd_output","timestamp":1607098390,"output":":id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSub"},{"event":"cmd_output","timestamp":1607098390,"output":"Inits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:10.066 [info] Periodic from modu"},{"event":"cmd_output","timestamp":1607098390,"output":"le Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler.Fetch"},{"event":"cmd_output","timestamp":1607098390,"output":"ingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-Fetch"},{"event":"cmd_output","timestamp":1607098390,"output":"ingState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"done\"], cooling_time"},{"event":"cmd_output","timestamp":1607098390,"output":"_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fetching\", publisher_cb"},{"event":"cmd_output","timestamp":1607098390,"output":": :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :rec"},{"event":"cmd_output","timestamp":1607098390,"output":"overy_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098390,"output":"\n16:13:10.067 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CompilationState with "},{"event":"cmd_output","timestamp":1607098390,"output":"name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 100 ms, metric_name: {\"Ppl.behold"},{"event":"cmd_output","timestamp":1607098390,"output":"er-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurring args: %{allowed_states: [\"r"},{"event":"cmd_output","timestamp":1607098390,"output":"egular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubIni"},{"event":"cmd_output","timestamp":1607098390,"output":"ts.Model.PplSubInits, observed_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, return"},{"event":"cmd_output","timestamp":1607098390,"output":"ing: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl."},{"event":"cmd_output","timestamp":1607098390,"output":"PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:10.067 [info] Periodic fro"},{"event":"cmd_output","timestamp":1607098390,"output":"m module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHand"},{"event":"cmd_output","timestamp":1607098390,"output":"ler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMH"},{"event":"cmd_output","timestamp":1607098390,"output":"andler-RegularInitState\"]}, recurring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, initial"},{"event":"cmd_output","timestamp":1607098390,"output":"_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_init\", publisher_cb: :skip, repo"},{"event":"cmd_output","timestamp":1607098390,"output":": Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, "},{"event":"cmd_output","timestamp":1607098390,"output":":ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:10.06"},{"event":"cmd_output","timestamp":1607098390,"output":"7 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.InitializingState with name Elixir.Pp"},{"event":"cmd_output","timestamp":1607098390,"output":"l.PplBlocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\""},{"event":"cmd_output","timestamp":1607098390,"output":"Ppl-PplBlocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"w"},{"event":"cmd_output","timestamp":1607098390,"output":"aiting\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state:"},{"event":"cmd_output","timestamp":1607098390,"output":" \"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :upda"},{"event":"cmd_output","timestamp":1607098390,"output":"ted_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlo"},{"event":"cmd_output","timestamp":1607098390,"output":"cks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:10.067 [info] Periodic from module Elixir.Ppl.PplBlo"},{"event":"cmd_output","timestamp":1607098390,"output":"cks.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler.WaitingState :: period: 1000 m"},{"event":"cmd_output","timestamp":1607098390,"output":"s, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurring args:"},{"event":"cmd_output","timestamp":1607098390,"output":" %{allowed_states: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks"},{"event":"cmd_output","timestamp":1607098390,"output":".Model.PplBlocks, observed_state: \"waiting\", publisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.ST"},{"event":"cmd_output","timestamp":1607098390,"output":"MHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at,"},{"event":"cmd_output","timestamp":1607098390,"output":" :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, ta"},{"event":"cmd_output","timestamp":1607098390,"output":"sk_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:10.067 [info] Periodic from module Elixir.Ppl.PplBlocks.STM"},{"event":"cmd_output","timestamp":1607098390,"output":"Handler.RunningState with name Elixir.Ppl.PplBlocks.STMHandler.RunningState :: period: 1000 ms, metr"},{"event":"cmd_output","timestamp":1607098390,"output":"ic_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, recurring args: %{allo"},{"event":"cmd_output","timestamp":1607098390,"output":"wed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Mode"},{"event":"cmd_output","timestamp":1607098390,"output":"l.PplBlocks, observed_state: \"running\", publisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHan"},{"event":"cmd_output","timestamp":1607098390,"output":"dler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :st"},{"event":"cmd_output","timestamp":1607098390,"output":"ate, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlo"},{"event":"cmd_output","timestamp":1607098390,"output":"cks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:10.067 [info] Periodic from module Elixir.Ppl.PplBlo"},{"event":"cmd_output","timestamp":1607098390,"output":"cks.STMHandler.StoppingState with name Elixir.Ppl.PplBlocks.STMHandler.StoppingState :: period: 1000"},{"event":"cmd_output","timestamp":1607098390,"output":" ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurring ar"},{"event":"cmd_output","timestamp":1607098390,"output":"gs: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model"},{"event":"cmd_output","timestamp":1607098390,"output":".PplBlocks, observed_state: \"stopping\", publisher_cb: #Function<0.104215991/1 in Ppl.PplBlocks.STMHa"},{"event":"cmd_output","timestamp":1607098390,"output":"ndler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :"},{"event":"cmd_output","timestamp":1607098390,"output":"state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplB"},{"event":"cmd_output","timestamp":1607098390,"output":"locks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:10.068 [info] Periodic from module Elixir.Block.Bl"},{"event":"cmd_output","timestamp":1607098390,"output":"ocks.STMHandler.InitializingState with name Elixir.Block.Blocks.STMHandler.InitializingState :: peri"},{"event":"cmd_output","timestamp":1607098390,"output":"od: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, re"},{"event":"cmd_output","timestamp":1607098390,"output":"curring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Block"},{"event":"cmd_output","timestamp":1607098390,"output":"s.Model.Blocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Block.EctoRepo, returning"},{"event":"cmd_output","timestamp":1607098390,"output":": [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.M"},{"event":"cmd_output","timestamp":1607098390,"output":"odel.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:10.068 [info] Periodic from module Elixir.Bl"},{"event":"cmd_output","timestamp":1607098390,"output":"ock.Blocks.STMHandler.RunningState with name Elixir.Block.Blocks.STMHandler.RunningState :: period: "},{"event":"cmd_output","timestamp":1607098390,"output":"100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-RunningState\"]}, recurring a"},{"event":"cmd_output","timestamp":1607098390,"output":"rgs: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.B"},{"event":"cmd_output","timestamp":1607098390,"output":"locks.Model.Blocks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning:"},{"event":"cmd_output","timestamp":1607098390,"output":" [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Mo"},{"event":"cmd_output","timestamp":1607098390,"output":"del.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:10.068 [info] Periodic from module Elixir.Blo"},{"event":"cmd_output","timestamp":1607098390,"output":"ck.Blocks.STMHandler.StoppingState with name Elixir.Block.Blocks.STMHandler.StoppingState :: period:"},{"event":"cmd_output","timestamp":1607098390,"output":" 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-StoppingState\"]}, recurring"},{"event":"cmd_output","timestamp":1607098390,"output":" args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Mod"},{"event":"cmd_output","timestamp":1607098390,"output":"el.Blocks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :"},{"event":"cmd_output","timestamp":1607098390,"output":"terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Bloc"},{"event":"cmd_output","timestamp":1607098390,"output":"ks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:10.068 [info] Periodic from module Elixir.Block.Tasks"},{"event":"cmd_output","timestamp":1607098390,"output":".STMHandler.PendingState with name Elixir.Block.Tasks.STMHandler.PendingState :: period: 100 ms, met"},{"event":"cmd_output","timestamp":1607098390,"output":"ric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingState\"]}, recurring args: %{allow"},{"event":"cmd_output","timestamp":1607098390,"output":"ed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Tasks.Model.Tasks, observe"},{"event":"cmd_output","timestamp":1607098390,"output":"d_state: \"pending\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, "},{"event":"cmd_output","timestamp":1607098390,"output":":updated_at, :state, :recovery_count, :block_id, :build_request_id], schema: Block.Tasks.Model.Tasks"},{"event":"cmd_output","timestamp":1607098390,"output":", task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:10.068 [info] Periodic from module Elixir.Block.Tasks.S"},{"event":"cmd_output","timestamp":1607098390,"output":"TMHandler.RunningState with name Elixir.Block.Tasks.STMHandler.RunningState :: period: 100 ms, metri"},{"event":"cmd_output","timestamp":1607098390,"output":"c_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningState\"]}, recurring args: %{allowed"},{"event":"cmd_output","timestamp":1607098390,"output":"_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tas"},{"event":"cmd_output","timestamp":1607098390,"output":"ks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminat"},{"event":"cmd_output","timestamp":1607098390,"output":"e_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_s"},{"event":"cmd_output","timestamp":1607098390,"output":"upervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:10.068 [info] Periodic from module Elixir.Block.Tasks.STMHandle"},{"event":"cmd_output","timestamp":1607098390,"output":"r.StoppingState with name Elixir.Block.Tasks.STMHandler.StoppingState :: period: 100 ms, metric_name"},{"event":"cmd_output","timestamp":1607098390,"output":": {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]}, recurring args: %{allowed_stat"},{"event":"cmd_output","timestamp":1607098390,"output":"es: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_sta"},{"event":"cmd_output","timestamp":1607098390,"output":"te: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :upd"},{"event":"cmd_output","timestamp":1607098390,"output":"ated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :ski"},{"event":"cmd_output","timestamp":1607098390,"output":"p}\n\u001b[0m\u001b[22m\n16:13:10.071 [info] Request: 'run: %{\"branch_id\" => \"81460c44-3b74-421c-be5b-9ce6a22"},{"event":"cmd_output","timestamp":1607098390,"output":"53e5e\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"semaphore.yml\", \"ho"},{"event":"cmd_output","timestamp":1607098390,"output":"ok_id\" => \"9a18ca00-364b-11eb-9280-5254005464e2\", \"label\" => \"master\", \"organization_id\" => \"miner_o"},{"event":"cmd_output","timestamp":1607098390,"output":"rg\", \"owner\" => \"rt\", \"project_id\" => \"123\", \"repo_name\" => \"7_termination\", \"request_token\" => \"9a1"},{"event":"cmd_output","timestamp":1607098390,"output":"8be20-364b-11eb-8612-5254005464e2\", \"requester_id\" => \"5b4987de-b44d-4d15-9e49-f6703a09065b\", \"servi"},{"event":"cmd_output","timestamp":1607098390,"output":"ce\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"6ab734ff-8"},{"event":"cmd_output","timestamp":1607098390,"output":"292-43af-aff5-2e6184b7a8ef\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:13:10.084 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098390,"output":" ee838c42-a86a-4d8d-b176-37b1697b3a12, type: PplRequests, event: persisted schedule request with req"},{"event":"cmd_output","timestamp":1607098390,"output":"uest_token: 9a18be20-364b-11eb-8612-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQu"},{"event":"cmd_output","timestamp":1607098390,"output":"eries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:13:10.088 [info] ppl_id: ee838c42-a86a-4d8d-b176-37b"},{"event":"cmd_output","timestamp":1607098390,"output":"1697b3a12, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.P"},{"event":"cmd_output","timestamp":1607098390,"output":"pl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:13:10.095 [info] Project 123 an"},{"event":"cmd_output","timestamp":1607098390,"output":"d branch masterlatest_wf details updated: \"wf_id: 6ab734ff-8292-43af-aff5-2e6184b7a8ef, wf_number: 1"},{"event":"cmd_output","timestamp":1607098390,"output":"\"\n\u001b[0m\u001b[22m\n16:13:10.098 [info] Persisted ppl_sub_init for pipeline with ppl_id: ee838c42-a86a-4d"},{"event":"cmd_output","timestamp":1607098390,"output":"8d-b176-37b1697b3a12: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"p"},{"event":"cmd_output","timestamp":1607098390,"output":"ipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 294, in_scheduling: false, in"},{"event":"cmd_output","timestamp":1607098390,"output":"it_type: \"regular\", inserted_at: ~N[2020-12-04 16:13:10.096853], pipeline_requests: #Ecto.Associatio"},{"event":"cmd_output","timestamp":1607098390,"output":"n.NotLoaded, ppl_id: \"ee838c42-a86a-4d8d-b176-37b1697b"},{"event":"cmd_output","timestamp":1607098390,"output":"3a12\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil,"},{"event":"cmd_output","timestamp":1607098390,"output":" terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:13:10.096863]}\n\u001b[0m\u001b[22m\n16:13:10.111 ["},{"event":"cmd_output","timestamp":1607098390,"output":"info] Request: 'run: %{\"branch_id\" => \"ff76600e-f73d-41e2-ba4d-a74ff68a31d2\", \"branch_name\" => \"mas"},{"event":"cmd_output","timestamp":1607098390,"output":"ter\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"semaphore.yml\", \"hook_id\" => \"9a1ee714-364b-11eb"},{"event":"cmd_output","timestamp":1607098390,"output":"-9990-5254005464e2\", \"label\" => \"master\", \"organization_id\" => \"miner_org\", \"owner\" => \"rt\", \"projec"},{"event":"cmd_output","timestamp":1607098390,"output":"t_id\" => \"123\", \"repo_name\" => \"7_termination\", \"request_token\" => \"9a1eda94-364b-11eb-a9ba-52540054"},{"event":"cmd_output","timestamp":1607098390,"output":"64e2\", \"requester_id\" => \"d10a9aae-0332-49e3-b20c-49b148fc0734\", \"service\" => \"local\", \"suppressed_a"},{"event":"cmd_output","timestamp":1607098390,"output":"ttributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"fd83e952-1683-4a45-b232-c565e4791034\", "},{"event":"cmd_output","timestamp":1607098390,"output":"\"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:13:10.115 [info] ppl_id: 9122de62-ff0d-453b-9fca-c945"},{"event":"cmd_output","timestamp":1607098390,"output":"27a6e83b, type: PplRequests, event: persisted schedule request with request_token: 9a1eda94-364b-11e"},{"event":"cmd_output","timestamp":1607098390,"output":"b-a9ba-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55)"},{"event":"cmd_output","timestamp":1607098390,"output":", \n\u001b[0m\u001b[22m\n16:13:10.121 [info] ppl_id: 9122de62-ff0d-453b-9fca-c94527a6e83b, type: Ppls, state:"},{"event":"cmd_output","timestamp":1607098390,"output":" initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.pro"},{"event":"cmd_output","timestamp":1607098390,"output":"cess_response/2(L124), \n\u001b[0m\u001b[22m\n16:13:10.124 [info] ppl_id: ee838c42-a86a-4d8d-b176-37b1697b3a1"},{"event":"cmd_output","timestamp":1607098390,"output":"2, type: PplRequests, event: persisted source_args for pipeline: ee838c42-a86a-4d8d-b176-37b1697b3a1"},{"event":"cmd_output","timestamp":1607098390,"output":"2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:13:"},{"event":"cmd_output","timestamp":1607098390,"output":"10.127 [info] Project 123 and branch masterlatest_wf details updated: \"wf_id: fd83e952-1683-4a45-b2"},{"event":"cmd_output","timestamp":1607098390,"output":"32-c565e4791034, wf_number: 2\"\n\u001b[0m\u001b[22m\n16:13:10.127 [info] ppl_id: ee838c42-a86a-4d8d-b176-37b1"},{"event":"cmd_output","timestamp":1607098390,"output":"697b3a12, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098390,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:10.130 [info] Persisted ppl_sub_ini"},{"event":"cmd_output","timestamp":1607098390,"output":"t for pipeline with ppl_id: 9122de62-ff0d-453b-9fca-c94527a6e83b: %Ppl.PplSubInits.Model.PplSubInits"},{"event":"cmd_output","timestamp":1607098390,"output":"{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_descrip"},{"event":"cmd_output","timestamp":1607098390,"output":"tion: nil, id: 295, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:13:10."},{"event":"cmd_output","timestamp":1607098390,"output":"127232], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"9122de62-ff0d-453b-9fca-c94527a6e83b\", recovery_count: 0, result: nil, result_reason: ni"},{"event":"cmd_output","timestamp":1607098390,"output":"l, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 "},{"event":"cmd_output","timestamp":1607098390,"output":"16:13:10.127244]}\n\u001b[0m\u001b[22m\n16:13:10.145 [info] Request: 'run: %{\"branch_id\" => \"5b45f34c-e85c-4a"},{"event":"cmd_output","timestamp":1607098390,"output":"41-aef9-45dc16bc25ff\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"sema"},{"event":"cmd_output","timestamp":1607098390,"output":"phore.yml\", \"hook_id\" => \"9a23d530-364b-11eb-8ac4-5254005464e2\", \"label\" => \"master\", \"organization_"},{"event":"cmd_output","timestamp":1607098390,"output":"id\" => \"miner_org\", \"owner\" => \"rt\", \"project_id\" => \"123\", \"repo_name\" => \"7_termination\", \"request"},{"event":"cmd_output","timestamp":1607098390,"output":"_token\" => \"9a23cb9e-364b-11eb-8bbb-5254005464e2\", \"requester_id\" => \"fd599824-3e00-4981-883d-199ac1"},{"event":"cmd_output","timestamp":1607098390,"output":"c6d2b3\", \"service\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\""},{"event":"cmd_output","timestamp":1607098390,"output":" => \"1e30fb8e-83a1-47b4-ba03-4a258b5f11d7\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:13:10.152 "},{"event":"cmd_output","timestamp":1607098390,"output":"[info] ppl_id: 20153662-c531-4f24-bf89-ec11e632437d, type: PplRequests, event: persisted schedule r"},{"event":"cmd_output","timestamp":1607098390,"output":"equest with request_token: 9a23cb9e-364b-11eb-8bbb-5254005464e2, origin: Elixir.Ppl.PplRequests.Mode"},{"event":"cmd_output","timestamp":1607098390,"output":"l.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:13:10.155 [info] ppl_id: 9122de62-ff0"},{"event":"cmd_output","timestamp":1607098390,"output":"d-453b-9fca-c94527a6e83b, type: PplRequests, event: persisted source_args for pipeline: 9122de62-ff0"},{"event":"cmd_output","timestamp":1607098390,"output":"d-453b-9fca-c94527a6e83b, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L8"},{"event":"cmd_output","timestamp":1607098390,"output":"9), \n\u001b[0m\u001b[22m\n16:13:10.156 [info] ppl_id: ee838c42-a86a-4d8d-b176-37b1697b3a12, type: PplSubInit"},{"event":"cmd_output","timestamp":1607098390,"output":"s, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.lo"},{"event":"cmd_output","timestamp":1607098390,"output":"g_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:10.158 [info] ppl_id: 20153662-c531-4f24-bf89-ec11e632437"},{"event":"cmd_output","timestamp":1607098390,"output":"d, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls."},{"event":"cmd_output","timestamp":1607098390,"output":"Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:13:10.159 [info] ppl_id: 9122de62-ff0d-"},{"event":"cmd_output","timestamp":1607098390,"output":"453b-9fca-c94527a6e83b, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: "},{"event":"cmd_output","timestamp":1607098390,"output":"0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:10.164 [info] Project"},{"event":"cmd_output","timestamp":1607098390,"output":" 123 and branch masterlatest_wf details updated: \"wf_id: 1e30fb8e-83a1-47b4-ba03-4a258b5f11d7, wf_nu"},{"event":"cmd_output","timestamp":1607098390,"output":"mber: 3\"\n\u001b[0m\u001b[22m\n16:13:10.167 [info] Persisted ppl_sub_init for pipeline with ppl_id: 20153662-"},{"event":"cmd_output","timestamp":1607098390,"output":"c531-4f24-bf89-ec11e632437d: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loa"},{"event":"cmd_output","timestamp":1607098390,"output":"ded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 296, in_scheduling: fa"},{"event":"cmd_output","timestamp":1607098390,"output":"lse, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:13:10.164340], pipeline_requests: #Ecto.Ass"},{"event":"cmd_output","timestamp":1607098390,"output":"ociation.NotLoaded, ppl_id: \"20153662-c531-4f24-bf89-e"},{"event":"cmd_output","timestamp":1607098390,"output":"c11e632437d\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_reques"},{"event":"cmd_output","timestamp":1607098390,"output":"t: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:13:10.164347]}\n\u001b[0m\u001b[22m\n16:13:1"},{"event":"cmd_output","timestamp":1607098390,"output":"0.182 [info] Request: 'run: %{\"branch_id\" => \"94d405db-9557-45f0-991d-b48752218309\", \"branch_name\" "},{"event":"cmd_output","timestamp":1607098390,"output":"=> \"master\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"semaphore.yml\", \"hook_id\" => \"9a289dfe-36"},{"event":"cmd_output","timestamp":1607098390,"output":"4b-11eb-9b50-5254005464e2\", \"label\" => \"master\", \"organization_id\" => \"miner_org\", \"owner\" => \"rt\", "},{"event":"cmd_output","timestamp":1607098390,"output":"\"project_id\" => \"123\", \"repo_name\" => \"7_termination\", \"request_token\" => \"9a288b2a-364b-11eb-bb79-5"},{"event":"cmd_output","timestamp":1607098390,"output":"254005464e2\", \"requester_id\" => \"9376fb40-846e-45a6-b47d-735cca58b46f\", \"service\" => \"local\", \"suppr"},{"event":"cmd_output","timestamp":1607098390,"output":"essed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"3285270c-9ce4-4eb6-890c-05e18668"},{"event":"cmd_output","timestamp":1607098390,"output":"21bb\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:13:10.185 [info] ppl_id: 2ea14eb1-df51-45b1-94"},{"event":"cmd_output","timestamp":1607098390,"output":"4e-c8534bea3d51, type: PplRequests, event: persisted schedule request with request_token: 9a288b2a-3"},{"event":"cmd_output","timestamp":1607098390,"output":"64b-11eb-bb79-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response"},{"event":"cmd_output","timestamp":1607098390,"output":"/2(L55), \n\u001b[0m\u001b[22m\n16:13:10.187 [info] ppl_id: 20153662-c531-4f24-bf89-ec11e632437d, type: PplRe"},{"event":"cmd_output","timestamp":1607098390,"output":"quests, event: persisted source_args for pipeline: 20153662-c531-4f24-bf89-ec11e632437d, origin: Eli"},{"event":"cmd_output","timestamp":1607098390,"output":"xir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:13:10.188 [info] "},{"event":"cmd_output","timestamp":1607098390,"output":" ppl_id: 2ea14eb1-df51-45b1-944e-c8534bea3d51, type: Ppls, state: initializing, event: initializing,"},{"event":"cmd_output","timestamp":1607098390,"output":" recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098390,"output":"\n16:13:10.190 [info] Project 123 and branch masterlatest_wf details updated: \"wf_id: 3285270c-9ce4-"},{"event":"cmd_output","timestamp":1607098390,"output":"4eb6-890c-05e1866821bb, wf_number: 4\"\n\u001b[0m\u001b[22m\n16:13:10.191 [info] Persisted ppl_sub_init for pi"},{"event":"cmd_output","timestamp":1607098390,"output":"peline with ppl_id: 2ea14eb1-df51-45b1-944e-c8534bea3d51: %Ppl.PplSubInits.Model.PplSubInits{__meta_"},{"event":"cmd_output","timestamp":1607098390,"output":"_: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: ni"},{"event":"cmd_output","timestamp":1607098390,"output":"l, id: 297, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:13:10.190621],"},{"event":"cmd_output","timestamp":1607098390,"output":" pipeline_requests: #Ecto.Association.NotLoaded, ppl_i"},{"event":"cmd_output","timestamp":1607098390,"output":"d: \"2ea14eb1-df51-45b1-944e-c8534bea3d51\", recovery_count: 0, result: nil, result_reason: nil, state"},{"event":"cmd_output","timestamp":1607098390,"output":": \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:13:10"},{"event":"cmd_output","timestamp":1607098390,"output":".190629]}\n\u001b[0m\u001b[22m\n16:13:10.196 [info] ppl_id: 20153662-c531-4f24-bf89-ec11e632437d, type: PplSu"},{"event":"cmd_output","timestamp":1607098390,"output":"bInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.l"},{"event":"cmd_output","timestamp":1607098390,"output":"og_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:10.201 [info] ppl_id: 9122de62-ff0d-453b-9fca-c94527a6e8"},{"event":"cmd_output","timestamp":1607098390,"output":"3b, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098390,"output":"r.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:10.205 [info] Request: 'run: %{\"branc"},{"event":"cmd_output","timestamp":1607098390,"output":"h_id\" => \"b9174d6d-de27-4c56-aee7-4a1b738fa7f3\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4"},{"event":"cmd_output","timestamp":1607098390,"output":"469\", \"file_name\" => \"semaphore.yml\", \"hook_id\" => \"9a2c8022-364b-11eb-ab94-5254005464e2\", \"label\" ="},{"event":"cmd_output","timestamp":1607098390,"output":"> \"master\", \"organization_id\" => \"miner_org\", \"owner\" => \"rt\", \"project_id\" => \"123\", \"repo_name\" =>"},{"event":"cmd_output","timestamp":1607098390,"output":" \"7_termination\", \"request_token\" => \"9a2c738e-364b-11eb-88e7-5254005464e2\", \"requester_id\" => \"79ac"},{"event":"cmd_output","timestamp":1607098390,"output":"b1ee-75db-4c70-a3b0-4c1b0b441c83\", \"service\" => \"local\", \"suppressed_attributes\" => [\"access_token\","},{"event":"cmd_output","timestamp":1607098390,"output":" \"client_secret\"], \"wf_id\" => \"480dee45-d6a8-4197-95b0-edf3eb1be00c\", \"working_dir\" => \".semaphore\"}"},{"event":"cmd_output","timestamp":1607098390,"output":"\n\u001b[0m\u001b[22m\n16:13:10.208 [info] ppl_id: 4f5a5061-1636-4f3e-8b36-c9fd6d5439b7, type: PplRequests, e"},{"event":"cmd_output","timestamp":1607098390,"output":"vent: persisted schedule request with request_token: 9a2c738e-364b-11eb-88e7-5254005464e2, origin: E"},{"event":"cmd_output","timestamp":1607098390,"output":"lixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:13:10.211 [i"},{"event":"cmd_output","timestamp":1607098390,"output":"nfo] ppl_id: 4f5a5061-1636-4f3e-8b36-c9fd6d5439b7, type: Ppls, state: initializing, event: initiali"},{"event":"cmd_output","timestamp":1607098390,"output":"zing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098390,"output":"[22m\n16:13:10.213 [info] Project 123 and branch masterlatest_wf details updated: \"wf_id: 480dee45-"},{"event":"cmd_output","timestamp":1607098390,"output":"d6a8-4197-95b0-edf3eb1be00c, wf_number: 5\"\n\u001b[0m\u001b[22m\n16:13:10.215 [info] Persisted ppl_sub_init f"},{"event":"cmd_output","timestamp":1607098390,"output":"or pipeline with ppl_id: 4f5a5061-1636-4f3e-8b36-c9fd6d5439b7: %Ppl.PplSubInits.Model.PplSubInits{__"},{"event":"cmd_output","timestamp":1607098390,"output":"meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_descriptio"},{"event":"cmd_output","timestamp":1607098390,"output":"n: nil, id: 298, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:13:10.213"},{"event":"cmd_output","timestamp":1607098390,"output":"912], pipeline_requests: #Ecto.Association.NotLoaded, "},{"event":"cmd_output","timestamp":1607098390,"output":"ppl_id: \"4f5a5061-1636-4f3e-8b36-c9fd6d5439b7\", recovery_count: 0, result: nil, result_reason: nil, "},{"event":"cmd_output","timestamp":1607098390,"output":"state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:"},{"event":"cmd_output","timestamp":1607098390,"output":"13:10.213919]}\n\u001b[0m\u001b[22m\n16:13:10.219 [info] ppl_id: ee838c42-a86a-4d8d-b176-37b1697b3a12, type: "},{"event":"cmd_output","timestamp":1607098390,"output":"PplRequests, event: persisted definition for request with request_token: 9a18be20-364b-11eb-8612-525"},{"event":"cmd_output","timestamp":1607098390,"output":"4005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098390,"output":"[22m\n16:13:10.220 [info] ppl_id: 2ea14eb1-df51-45b1-944e-c8534bea3d51, type: PplRequests, event: p"},{"event":"cmd_output","timestamp":1607098390,"output":"ersisted source_args for pipeline: 2ea14eb1-df51-45b1-944e-c8534bea3d51, origin: Elixir.Ppl.PplReque"},{"event":"cmd_output","timestamp":1607098390,"output":"sts.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:13:10.223 [info] Queue persisted"},{"event":"cmd_output","timestamp":1607098390,"output":": {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N"},{"event":"cmd_output","timestamp":1607098390,"output":"[2020-12-04 16:13:10.220841], name: \"master-.semaphore/semaphore.yml\", organization_id: \"miner_org\","},{"event":"cmd_output","timestamp":1607098390,"output":" project_id: \"123\", queue_id: \"4290ad9e-8641-4ae6-85ff-136ca7fe85bc\", scope: \"project\", updated_at: "},{"event":"cmd_output","timestamp":1607098390,"output":"~N[2020-12-04 16:13:10.220850], user_generated: false}}\n\u001b[0m\u001b[22m\n16:13:10.224 [info] ppl_id: 2ea"},{"event":"cmd_output","timestamp":1607098390,"output":"14eb1-df51-45b1-944e-c8534bea3d51, type: PplSubInits, state: fetching, event: exit_scheduling, recov"},{"event":"cmd_output","timestamp":1607098390,"output":"ery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:10.224 [inf"},{"event":"cmd_output","timestamp":1607098390,"output":"o] Request: 'run: %{\"branch_id\" => \"11f1b393-d939-4d81-835f-33e5a8d77602\", \"branch_name\" => \"master"},{"event":"cmd_output","timestamp":1607098390,"output":"\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"semaphore.yml\", \"hook_id\" => \"9a3007d8-364b-11eb-90"},{"event":"cmd_output","timestamp":1607098390,"output":"2e-5254005464e2\", \"label\" => \"master\", \"organization_id\" => \"fa2b36de-e9c1-4fb9-842e-a6d44f6fb4b1\", "},{"event":"cmd_output","timestamp":1607098390,"output":"\"owner\" => \"rt\", \"project_id\" => \"0b88863b-e6c3-4b26-8ab7-a9c8e631ae2a\", \"repo_name\" => \"2_basic\", \""},{"event":"cmd_output","timestamp":1607098390,"output":"request_token\" => \"9a2ffbf8-364b-11eb-8161-5254005464e2\", \"requester_id\" => \"7af3bdb3-3d67-4a6d-94b2"},{"event":"cmd_output","timestamp":1607098390,"output":"-56c2642f1b30\", \"service\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], "},{"event":"cmd_output","timestamp":1607098390,"output":"\"wf_id\" => \"fe36fe10-ef85-4687-8413-7816969cb8f9\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:13:"},{"event":"cmd_output","timestamp":1607098390,"output":"10.228 [info] ppl_id: 3ccdc2ac-72bf-4319-817d-0c0b4e99a012, type: PplRequests, event: persisted sch"},{"event":"cmd_output","timestamp":1607098390,"output":"edule request with request_token: 9a2ffbf8-364b-11eb-8161-5254005464e2, origin: Elixir.Ppl.PplReques"},{"event":"cmd_output","timestamp":1607098390,"output":"ts.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:13:10.230 [info] ppl_id: 20153"},{"event":"cmd_output","timestamp":1607098390,"output":"662-c531-4f24-bf89-ec11e632437d, type: PplSubInits, state: regular_init, event: exit_scheduling, rec"},{"event":"cmd_output","timestamp":1607098390,"output":"overy_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:10.231 [i"},{"event":"cmd_output","timestamp":1607098390,"output":"nfo] ppl_id: 3ccdc2ac-72bf-4319-817d-0c0b4e99a012, type: Ppls, state: initializing, event: initiali"},{"event":"cmd_output","timestamp":1607098390,"output":"zing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098390,"output":"[22m\n16:13:10.232 [info] ppl_id: not_available, event: created, origin: Elixir.Ppl.PplSubInits.STM"},{"event":"cmd_output","timestamp":1607098390,"output":"Handler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:10.232 [info] event: created, origin: "},{"event":"cmd_output","timestamp":1607098390,"output":"Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:10.232 [info]"},{"event":"cmd_output","timestamp":1607098390,"output":" ppl_id: ee838c42-a86a-4d8d-b176-37b1697b3a12, type: PplBlocks, block_index: 0, state: initializing"},{"event":"cmd_output","timestamp":1607098390,"output":", event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_"},{"event":"cmd_output","timestamp":1607098390,"output":"ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:10.233 [info] ppl_id: ee838c42-a86a-4d8d-b176-37b1697b3a12, type: P"},{"event":"cmd_output","timestamp":1607098390,"output":"plBlocks, block_index: 1, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098390,"output":".PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:10.235 [info] ppl_id: "},{"event":"cmd_output","timestamp":1607098390,"output":"ee838c42-a86a-4d8d-b176-37b1697b3a12, type: PplSubInits, state: done, result: passed, event: exit_sc"},{"event":"cmd_output","timestamp":1607098390,"output":"heduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098390,"output":":13:10.237 [info] Project 0b88863b-e6c3-4b26-8ab7-a9c8e631ae2a and branch masterlatest_wf details u"},{"event":"cmd_output","timestamp":1607098390,"output":"pdated: \"wf_id: fe36fe10-ef85-4687-8413-7816969cb8f9, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:13:10.239 [info] "},{"event":"cmd_output","timestamp":1607098390,"output":" Persisted ppl_sub_init for pipeline with ppl_id: 3ccdc2ac-72bf-4319-817d-0c0b4e99a012: %Ppl.PplSubI"},{"event":"cmd_output","timestamp":1607098390,"output":"nits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_"},{"event":"cmd_output","timestamp":1607098390,"output":"id: nil, error_description: nil, id: 299, in_scheduling: false, init_type: \"regular\", inserted_at: ~"},{"event":"cmd_output","timestamp":1607098390,"output":"N[2020-12-04 16:13:10.237411], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"3ccdc2ac-72bf-4319-817d-0c0b4e99a012\", recovery_count: 0, result: "},{"event":"cmd_output","timestamp":1607098390,"output":"nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, upda"},{"event":"cmd_output","timestamp":1607098390,"output":"ted_at: ~N[2020-12-04 16:13:10.237418]}\n\u001b[0m\u001b[22m\n16:13:10.239 [info] ppl_id: 4f5a5061-1636-4f3e-"},{"event":"cmd_output","timestamp":1607098390,"output":"8b36-c9fd6d5439b7, type: PplRequests, event: persisted source_args for pipeline: 4f5a5061-1636-4f3e-"},{"event":"cmd_output","timestamp":1607098390,"output":"8b36-c9fd6d5439b7, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b"},{"event":"cmd_output","timestamp":1607098390,"output":"[0m\u001b[22m\n16:13:10.244 [info] ppl_id: 4f5a5061-1636-4f3e-8b36-c9fd6d5439b7, type: PplSubInits, stat"},{"event":"cmd_output","timestamp":1607098390,"output":"e: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_cha"},{"event":"cmd_output","timestamp":1607098390,"output":"nge/1(L90), \n\u001b[0m\u001b[22m\n16:13:10.254 [info] ppl_id: ee838c42-a86a-4d8d-b176-37b1697b3a12, type: Pp"},{"event":"cmd_output","timestamp":1607098390,"output":"lBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098390,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:10.257 [info] ppl_id: ee838c42-a86a-4d8d"},{"event":"cmd_output","timestamp":1607098390,"output":"-b176-37b1697b3a12, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: E"},{"event":"cmd_output","timestamp":1607098390,"output":"lixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:10.262 [info] ppl_id: 3ccdc2ac-72"},{"event":"cmd_output","timestamp":1607098390,"output":"bf-4319-817d-0c0b4e99a012, type: PplRequests, event: persisted source_args for pipeline: 3ccdc2ac-72"},{"event":"cmd_output","timestamp":1607098390,"output":"bf-4319-817d-0c0b4e99a012, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L"},{"event":"cmd_output","timestamp":1607098390,"output":"89), \n\u001b[0m\u001b[22m\n16:13:10.265 [info] ppl_id: 3ccdc2ac-72bf-4319-817d-0c0b4e99a012, type: PplSubIni"},{"event":"cmd_output","timestamp":1607098390,"output":"ts, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_s"},{"event":"cmd_output","timestamp":1607098390,"output":"tate_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:10.268 [info] ppl_id: ee838c42-a86a-4d8d-b176-37b1697b3a12, "},{"event":"cmd_output","timestamp":1607098390,"output":"type: PplBlocks, block_index: 1, state: waiting, event: exit_scheduling, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098390,"output":"Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:10.272 [info] ppl_id: 2ea14eb1-d"},{"event":"cmd_output","timestamp":1607098390,"output":"f51-45b1-944e-c8534bea3d51, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery"},{"event":"cmd_output","timestamp":1607098390,"output":"_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:10.277 [info] "},{"event":"cmd_output","timestamp":1607098390,"output":" ppl_id: ee838c42-a86a-4d8d-b176-37b1697b3a12, type: Ppls, state: queuing, event: exit_scheduling, r"},{"event":"cmd_output","timestamp":1607098390,"output":"ecovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:10.284 "},{"event":"cmd_output","timestamp":1607098390,"output":"[info] ppl_id: 9122de62-ff0d-453b-9fca-c94527a6e83b, type: PplRequests, event: persisted definition"},{"event":"cmd_output","timestamp":1607098390,"output":" for request with request_token: 9a1eda94-364b-11eb-a9ba-5254005464e2, origin: Elixir.Ppl.PplRequest"},{"event":"cmd_output","timestamp":1607098390,"output":"s.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:13:10.291 [info] ppl_id: ee838"},{"event":"cmd_output","timestamp":1607098390,"output":"c42-a86a-4d8d-b176-37b1697b3a12, type: Ppls, state: running, event: exit_scheduling, recovery_count:"},{"event":"cmd_output","timestamp":1607098390,"output":" 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:10.300 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098390,"output":": not_available, event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/"},{"event":"cmd_output","timestamp":1607098390,"output":"1(L105), \n\u001b[0m\u001b[22m\n16:13:10.300 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler"},{"event":"cmd_output","timestamp":1607098390,"output":".RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:10.300 [info] ppl_id: 9122de62-ff0d-453b-9fca"},{"event":"cmd_output","timestamp":1607098390,"output":"-c94527a6e83b, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count:"},{"event":"cmd_output","timestamp":1607098390,"output":" 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:1"},{"event":"cmd_output","timestamp":1607098390,"output":"0.300 [info] ppl_id: 9122de62-ff0d-453b-9fca-c94527a6e83b, type: PplBlocks, block_index: 1, state: "},{"event":"cmd_output","timestamp":1607098390,"output":"initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularIn"},{"event":"cmd_output","timestamp":1607098390,"output":"itState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:10.303 [info] ppl_id: 9122de62-ff0d-453b-9fca-c94527a6e"},{"event":"cmd_output","timestamp":1607098390,"output":"83b, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098390,"output":"in: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:10.304 [info] PplBlocks Wait"},{"event":"cmd_output","timestamp":1607098390,"output":"ingState STM is scheduling block 0 from pipeline: \"ee838c42-a86a-4d8d-b176-37b1697b3a12\"\n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098390,"output":"\n16:13:10.311 [info] ppl_id: 4f5a5061-1636-4f3e-8b36-c9fd6d5439b7, type: PplSubInits, state: regula"},{"event":"cmd_output","timestamp":1607098390,"output":"r_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1"},{"event":"cmd_output","timestamp":1607098390,"output":"(L90), \n\u001b[0m\u001b[22m\n16:13:10.312 [info] ppl_id: 9122de62-ff0d-453b-9fca-c94527a6e83b, type: PplBloc"},{"event":"cmd_output","timestamp":1607098390,"output":"ks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper"},{"event":"cmd_output","timestamp":1607098390,"output":".STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:10.314 [info] ppl_id: 9122de62-ff0d-453b-9fca"},{"event":"cmd_output","timestamp":1607098390,"output":"-c94527a6e83b, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098390,"output":".Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:10.317 [info] block_id: 85c7d081-5ee7-"},{"event":"cmd_output","timestamp":1607098390,"output":"4a36-9fce-af79fcc8d667, type: BlockRequests, event: persisted block run request from ppl ee838c42-a8"},{"event":"cmd_output","timestamp":1607098390,"output":"6a-4d8d-b176-37b1697b3a12 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries"},{"event":"cmd_output","timestamp":1607098390,"output":".process_response/4(L35), \n\u001b[0m\u001b[22m\n16:13:10.321 [info] ppl_id: 9122de62-ff0d-453b-9fca-c94527a6"},{"event":"cmd_output","timestamp":1607098390,"output":"e83b, type: PplBlocks, block_index: 1, state: waiting, event: exit_scheduling, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098390,"output":"igin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:10.326 [info] block_id: 85"},{"event":"cmd_output","timestamp":1607098390,"output":"c7d081-5ee7-4a36-9fce-af79fcc8d667, type: Blocks, state: initializing, event: initializing, recovery"},{"event":"cmd_output","timestamp":1607098390,"output":"_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:13:10.330 "},{"event":"cmd_output","timestamp":1607098390,"output":"[info] Block 0 of pipeline with id: ee838c42-a86a-4d8d-b176-37b1697b3a12 scheduled in block service"},{"event":"cmd_output","timestamp":1607098390,"output":" with id: : \"85c7d081-5ee7-4a36-9fce-af79fcc8d667\"\n\u001b[0m\u001b[22m\n16:13:10.331 [info] ppl_id: 9122de62"},{"event":"cmd_output","timestamp":1607098390,"output":"-ff0d-453b-9fca-c94527a6e83b, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098390,"output":" origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:10.334 [info] ppl_id: e"},{"event":"cmd_output","timestamp":1607098390,"output":"e838c42-a86a-4d8d-b176-37b1697b3a12, type: PplBlocks, block_index: 0, state: running, event: exit_sc"},{"event":"cmd_output","timestamp":1607098390,"output":"heduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098390,"output":":13:10.335 [info] block_id: 85c7d081-5ee7-4a36-9fce-af79fcc8d667, type: BlockRequests, event: persi"},{"event":"cmd_output","timestamp":1607098390,"output":"sted build and sub_ppl details for block_request: 85c7d081-5ee7-4a36-9fce-af79fcc8d667, origin: Elix"},{"event":"cmd_output","timestamp":1607098390,"output":"ir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:13:10.337 [in"},{"event":"cmd_output","timestamp":1607098390,"output":"fo] block_id: 85c7d081-5ee7-4a36-9fce-af79fcc8d667, type: Tasks, state: pending, event: created, re"},{"event":"cmd_output","timestamp":1607098390,"output":"covery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098390,"output":"2m\n16:13:10.342 [info] block_id: 85c7d081-5ee7-4a36-9fce-af79fcc8d667, type: Blocks, state: runnin"},{"event":"cmd_output","timestamp":1607098390,"output":"g, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90)"},{"event":"cmd_output","timestamp":1607098390,"output":", \n\u001b[0m\u001b[22m\n16:13:10.351 [info] ppl_id: 3ccdc2ac-72bf-4319-817d-0c0b4e99a012, type: PplSubInits,"},{"event":"cmd_output","timestamp":1607098390,"output":" state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_"},{"event":"cmd_output","timestamp":1607098390,"output":"state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:10.359 [info] block_id: 85c7d081-5ee7-4a36-9fce-af79fcc8d66"},{"event":"cmd_output","timestamp":1607098390,"output":"7, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM"},{"event":"cmd_output","timestamp":1607098390,"output":".Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:10.360 [info] ppl_id: 20153662-c531-4f24-bf89-ec1"},{"event":"cmd_output","timestamp":1607098390,"output":"1e632437d, type: PplRequests, event: persisted definition for request with request_token: 9a23cb9e-3"},{"event":"cmd_output","timestamp":1607098390,"output":"64b-11eb-8bbb-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definitio"},{"event":"cmd_output","timestamp":1607098390,"output":"n/3(L76), \n\u001b[0m\u001b[22m\n16:13:10.370 [info] Opening new connection {:ok, %AMQP.Connection{pid: #PID<"},{"event":"cmd_output","timestamp":1607098390,"output":"0.16123.1>}} for id: default\n\u001b[0m\u001b[22m\n16:13:10.374 [info] ppl_id: not_available, event: created,"},{"event":"cmd_output","timestamp":1607098390,"output":" origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:10.3"},{"event":"cmd_output","timestamp":1607098390,"output":"74 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105"},{"event":"cmd_output","timestamp":1607098390,"output":"), \n\u001b[0m\u001b[22m\n16:13:10.376 [info] Binding 'plumber.blocked' to 'organization_exchange' with 'bloc"},{"event":"cmd_output","timestamp":1607098390,"output":"ked' routing keys\n\u001b[0m\u001b[22m\n16:13:10.374 [info] ppl_id: 20153662-c531-4f24-bf89-ec11e632437d, typ"},{"event":"cmd_output","timestamp":1607098390,"output":"e: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098390,"output":".Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:10.376 [info] ppl_"},{"event":"cmd_output","timestamp":1607098390,"output":"id: 20153662-c531-4f24-bf89-ec11e632437d, type: PplBlocks, block_index: 1, state: initializing, even"},{"event":"cmd_output","timestamp":1607098390,"output":"t: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1("},{"event":"cmd_output","timestamp":1607098390,"output":"L105), \n\u001b[0m\u001b[22m\n16:13:10.380 [info] Creating queue 'plumber.blocked'\n\u001b[0m\u001b[22m\n16:13:10.381 ["},{"event":"cmd_output","timestamp":1607098390,"output":"info] Creating dead queue 'plumber.blocked.dead'\n\u001b[0m\u001b[22m\n16:13:10.382 [info] ppl_id: 20153662-"},{"event":"cmd_output","timestamp":1607098390,"output":"c531-4f24-bf89-ec11e632437d, type: PplSubInits, state: done, result: passed, event: exit_scheduling,"},{"event":"cmd_output","timestamp":1607098390,"output":" recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:10.38"},{"event":"cmd_output","timestamp":1607098390,"output":"6 [info] Creating delay queue 'plumber.blocked.delay.10'\n\u001b[0m\u001b[22m\n16:13:10.390 [info] Binding '"},{"event":"cmd_output","timestamp":1607098390,"output":"plumber.blocked' to 'plumber.blocked' with 'blocked' routing keys\n\u001b[0m\u001b[22m\n16:13:10.407 [info] p"},{"event":"cmd_output","timestamp":1607098390,"output":"pl_id: 20153662-c531-4f24-bf89-ec11e632437d, type: PplBlocks, block_index: 0, state: waiting, event:"},{"event":"cmd_output","timestamp":1607098390,"output":" exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098390,"output":"[22m\n16:13:10.410 [info] ppl_id: 20153662-c531-4f24-bf89-ec11e632437d, type: Ppls, state: pending,"},{"event":"cmd_output","timestamp":1607098390,"output":" event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), "},{"event":"cmd_output","timestamp":1607098390,"output":"\n\u001b[0m\u001b[22m\n16:13:10.431 [info] ppl_id: 20153662-c531-4f24-bf89-ec11e632437d, type: PplBlocks, blo"},{"event":"cmd_output","timestamp":1607098390,"output":"ck_index: 1, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Im"},{"event":"cmd_output","timestamp":1607098390,"output":"pl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:10.433 [info] ppl_id: 20153662-c531-4f24-bf89-ec11e6"},{"event":"cmd_output","timestamp":1607098390,"output":"32437d, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper"},{"event":"cmd_output","timestamp":1607098390,"output":".STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:10.442 [info] Terminating pipelines from orga"},{"event":"cmd_output","timestamp":1607098390,"output":"nization miner_org: {:ok, 5}\n\u001b[0m\u001b[22m\n16:13:10.446 [info] ppl_id: 2ea14eb1-df51-45b1-944e-c8534b"},{"event":"cmd_output","timestamp":1607098390,"output":"ea3d51, type: PplRequests, event: persisted definition for request with request_token: 9a288b2a-364b"},{"event":"cmd_output","timestamp":1607098390,"output":"-11eb-bb79-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3"},{"event":"cmd_output","timestamp":1607098390,"output":"(L76), \n\u001b[0m\u001b[22m\n16:13:10.451 [info] ppl_id: not_available, event: created, origin: Elixir.Ppl.P"},{"event":"cmd_output","timestamp":1607098390,"output":"plSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:10.451 [info] event: cre"},{"event":"cmd_output","timestamp":1607098390,"output":"ated, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13"},{"event":"cmd_output","timestamp":1607098390,"output":":10.451 [info] ppl_id: 2ea14eb1-df51-45b1-944e-c8534bea3d51, type: PplBlocks, block_index: 0, state"},{"event":"cmd_output","timestamp":1607098390,"output":": initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.Regular"},{"event":"cmd_output","timestamp":1607098390,"output":"InitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:10.451 [info] ppl_id: 2ea14eb1-df51-45b1-944e-c8534be"},{"event":"cmd_output","timestamp":1607098390,"output":"a3d51, type: PplBlocks, block_index: 1, state: initializing, event: created, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098390,"output":"in: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:10.454 [i"},{"event":"cmd_output","timestamp":1607098390,"output":"nfo] ppl_id: 2ea14eb1-df51-45b1-944e-c8534bea3d51, type: PplSubInits, state: done, result: passed, "},{"event":"cmd_output","timestamp":1607098390,"output":"event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \r"},{"event":"cmd_output","timestamp":1607098390,"output":"\n\u001b[0m\u001b[22m\n16:13:10.468 [info] ppl_id: 2ea14eb1-df51-45b1-944e-c8534bea3d51, type: PplBlocks, bloc"},{"event":"cmd_output","timestamp":1607098390,"output":"k_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Imp"},{"event":"cmd_output","timestamp":1607098390,"output":"l.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:10.468 [info] ppl_id: 9122de62-ff0d-453b-9fca-c94527a"},{"event":"cmd_output","timestamp":1607098390,"output":"6e83b, type: Ppls, state: done, result: canceled, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098390,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:10.471 [info] ppl_id: 2ea14eb1-"},{"event":"cmd_output","timestamp":1607098390,"output":"df51-45b1-944e-c8534bea3d51, type: Ppls, state: done, result: canceled, event: exit_scheduling, reco"},{"event":"cmd_output","timestamp":1607098390,"output":"very_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:10.480 [in"},{"event":"cmd_output","timestamp":1607098390,"output":"fo] ppl_id: 2ea14eb1-df51-45b1-944e-c8534bea3d51, type: PplBlocks, block_index: 1, state: done, res"},{"event":"cmd_output","timestamp":1607098390,"output":"ult: canceled, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098390,"output":"hange/1(L90), \n\u001b[0m\u001b[22m\n16:13:10.488 [info] ppl_id: 2ea14eb1-df51-45b1-944e-c8534bea3d51, type: "},{"event":"cmd_output","timestamp":1607098390,"output":"PplBlocks, block_index: 0, state: done, result: canceled, event: exit_scheduling, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098390,"output":" origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:10.492 [info] ppl_id: 4"},{"event":"cmd_output","timestamp":1607098390,"output":"f5a5061-1636-4f3e-8b36-c9fd6d5439b7, type: PplRequests, event: persisted definition for request with"},{"event":"cmd_output","timestamp":1607098390,"output":" request_token: 9a2c738e-364b-11eb-88e7-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplReques"},{"event":"cmd_output","timestamp":1607098390,"output":"tsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:13:10.499 [info] ppl_id: 20153662-c531-4f24-bf8"},{"event":"cmd_output","timestamp":1607098390,"output":"9-ec11e632437d, type: PplBlocks, block_index: 0, state: done, result: canceled, event: exit_scheduli"},{"event":"cmd_output","timestamp":1607098390,"output":"ng, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:10"},{"event":"cmd_output","timestamp":1607098390,"output":".500 [info] ppl_id: not_available, event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.Regula"},{"event":"cmd_output","timestamp":1607098390,"output":"rInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:10.500 [info] event: created, origin: Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098390,"output":"SubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:10.500 [info] ppl_id: 4f5a"},{"event":"cmd_output","timestamp":1607098390,"output":"5061-1636-4f3e-8b36-c9fd6d5439b7, type: PplBlocks, block_index: 0, state: initializing, event: creat"},{"event":"cmd_output","timestamp":1607098390,"output":"ed, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \r"},{"event":"cmd_output","timestamp":1607098390,"output":"\n\u001b[0m\u001b[22m\n16:13:10.500 [info] ppl_id: 4f5a5061-1636-4f3e-8b36-c9fd6d5439b7, type: PplBlocks, bloc"},{"event":"cmd_output","timestamp":1607098390,"output":"k_index: 1, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.S"},{"event":"cmd_output","timestamp":1607098390,"output":"TMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:10.503 [info] ppl_id: 4f5a5061-1636-"},{"event":"cmd_output","timestamp":1607098390,"output":"4f3e-8b36-c9fd6d5439b7, type: PplSubInits, state: done, result: passed, event: exit_scheduling, reco"},{"event":"cmd_output","timestamp":1607098390,"output":"very_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:10.505 [in"},{"event":"cmd_output","timestamp":1607098390,"output":"fo] ppl_id: 20153662-c531-4f24-bf89-ec11e632437d, type: Ppls, state: done, result: canceled, event:"},{"event":"cmd_output","timestamp":1607098390,"output":" exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098390,"output":"[22m\n16:13:10.511 [info] ppl_id: 20153662-c531-4f24-bf89-ec11e632437d, type: PplBlocks, block_inde"},{"event":"cmd_output","timestamp":1607098390,"output":"x: 1, state: done, result: canceled, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loope"},{"event":"cmd_output","timestamp":1607098390,"output":"r.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:10.515 [info] ppl_id: 4f5a5061-1636-4f3e-8b3"},{"event":"cmd_output","timestamp":1607098390,"output":"6-c9fd6d5439b7, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_co"},{"event":"cmd_output","timestamp":1607098390,"output":"unt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:10.518 [info] pp"},{"event":"cmd_output","timestamp":1607098390,"output":"l_id: 9122de62-ff0d-453b-9fca-c94527a6e83b, type: PplBlocks, block_index: 1, state: done, result: ca"},{"event":"cmd_output","timestamp":1607098390,"output":"nceled, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1"},{"event":"cmd_output","timestamp":1607098390,"output":"(L90), \n\u001b[0m\u001b[22m\n16:13:10.528 [info] ppl_id: 9122de62-ff0d-453b-9fca-c94527a6e83b, type: PplBloc"},{"event":"cmd_output","timestamp":1607098390,"output":"ks, block_index: 0, state: done, result: canceled, event: exit_scheduling, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098390,"output":": Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:10.538 [info] ppl_id: 4f5a5061"},{"event":"cmd_output","timestamp":1607098390,"output":"-1636-4f3e-8b36-c9fd6d5439b7, type: Ppls, state: done, result: canceled, event: exit_scheduling, rec"},{"event":"cmd_output","timestamp":1607098390,"output":"overy_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:10.539 [i"},{"event":"cmd_output","timestamp":1607098390,"output":"nfo] ppl_id: 4f5a5061-1636-4f3e-8b36-c9fd6d5439b7, type: PplBlocks, block_index: 1, state: waiting,"},{"event":"cmd_output","timestamp":1607098390,"output":" event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), "},{"event":"cmd_output","timestamp":1607098390,"output":"\n\u001b[0m\u001b[22m\n16:13:10.542 [info] ppl_id: 4f5a5061-1636-4f3e-8b36-c9fd6d5439b7, type: PplBlocks, blo"},{"event":"cmd_output","timestamp":1607098390,"output":"ck_index: 0, state: done, result: canceled, event: exit_scheduling, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098390,"output":"r.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:10.558 [info] ppl_id: ee838c42-a86a-4"},{"event":"cmd_output","timestamp":1607098390,"output":"d8d-b176-37b1697b3a12, type: Ppls, state: stopping, event: exit_scheduling, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098390,"output":"n: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:10.558 [info] ppl_id: ee838c4"},{"event":"cmd_output","timestamp":1607098390,"output":"2-a86a-4d8d-b176-37b1697b3a12, type: PplBlocks, block_index: 1, state: done, result: canceled, event"},{"event":"cmd_output","timestamp":1607098390,"output":": exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098390,"output":"\u001b[22m\n16:13:10.568 [info] ppl_id: 4f5a5061-1636-4f3e-8b36-c9fd6d5439b7, type: PplBlocks, block_ind"},{"event":"cmd_output","timestamp":1607098390,"output":"ex: 1, state: done, result: canceled, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loop"},{"event":"cmd_output","timestamp":1607098390,"output":"er.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:10.569 [info] ppl_id: 3ccdc2ac-72bf-4319-81"},{"event":"cmd_output","timestamp":1607098390,"output":"7d-0c0b4e99a012, type: PplRequests, event: persisted definition for request with request_token: 9a2f"},{"event":"cmd_output","timestamp":1607098390,"output":"fbf8-364b-11eb-8161-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_def"},{"event":"cmd_output","timestamp":1607098390,"output":"inition/3(L76), \n\u001b[0m\u001b[22m\n16:13:10.575 [info] ppl_id: ee838c42-a86a-4d8d-b176-37b1697b3a12, bloc"},{"event":"cmd_output","timestamp":1607098390,"output":"k_id: 85c7d081-5ee7-4a36-9fce-af79fcc8d667, type: PplBlocks, block_index: 0, state: stopping, event:"},{"event":"cmd_output","timestamp":1607098390,"output":" exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098390,"output":"[22m\n16:13:10.576 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Me"},{"event":"cmd_output","timestamp":1607098390,"output":"tadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:13:10.572951], name: \"master-.semaphore/sem"},{"event":"cmd_output","timestamp":1607098390,"output":"aphore.yml\", organization_id: \"fa2b36de-e9c1-4fb9-842e-a6d44f6fb4b1\", project_id: \"0b88863b-e6c3-4b2"},{"event":"cmd_output","timestamp":1607098390,"output":"6-8ab7-a9c8e631ae2a\", queue_id: \"40f5d158-833e-41f1-bee4-032f8d9c1837\", scope: \"project\", updated_at"},{"event":"cmd_output","timestamp":1607098390,"output":": ~N[2020-12-04 16:13:10.572958], user_generated: false}}\n\u001b[0m\u001b[22m\n16:13:10.581 [info] event: cr"},{"event":"cmd_output","timestamp":1607098390,"output":"eated, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098390,"output":"3:10.581 [info] ppl_id: 3ccdc2ac-72bf-4319-817d-0c0b4e99a012, type: PplBlocks, block_index: 0, stat"},{"event":"cmd_output","timestamp":1607098390,"output":"e: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.Regula"},{"event":"cmd_output","timestamp":1607098390,"output":"rInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:10.583 [info] ppl_id: 3ccdc2ac-72bf-4319-817d-0c0b4e"},{"event":"cmd_output","timestamp":1607098390,"output":"99a012, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098390,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:10.589 [info] block_id: 8"},{"event":"cmd_output","timestamp":1607098390,"output":"5c7d081-5ee7-4a36-9fce-af79fcc8d667, type: Blocks, state: stopping, event: exit_scheduling, recovery"},{"event":"cmd_output","timestamp":1607098390,"output":"_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:10.592 [info] "},{"event":"cmd_output","timestamp":1607098390,"output":" ppl_id: 3ccdc2ac-72bf-4319-817d-0c0b4e99a012, type: Ppls, state: pending, event: exit_scheduling, r"},{"event":"cmd_output","timestamp":1607098390,"output":"ecovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:10.595 "},{"event":"cmd_output","timestamp":1607098390,"output":"[info] ppl_id: 3ccdc2ac-72bf-4319-817d-0c0b4e99a012, type: PplBlocks, block_index: 0, state: waitin"},{"event":"cmd_output","timestamp":1607098390,"output":"g, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90)"},{"event":"cmd_output","timestamp":1607098390,"output":", \n\u001b[0m\u001b[22m\n16:13:10.604 [info] block_id: 85c7d081-5ee7-4a36-9fce-af79fcc8d667, type: Tasks, sta"},{"event":"cmd_output","timestamp":1607098390,"output":"te: stopping, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_ch"},{"event":"cmd_output","timestamp":1607098390,"output":"ange/1(L90), \n\u001b[0m\u001b[22m\n16:13:10.607 [info] ppl_id: 3ccdc2ac-72bf-4319-817d-0c0b4e99a012, type: P"},{"event":"cmd_output","timestamp":1607098390,"output":"pls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_s"},{"event":"cmd_output","timestamp":1607098390,"output":"tate_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:10.619 [info] ppl_id: 3ccdc2ac-72bf-4319-817d-0c0b4e99a012, "},{"event":"cmd_output","timestamp":1607098390,"output":"type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Imp"},{"event":"cmd_output","timestamp":1607098390,"output":"l.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:10.624 [info] PplBlocks WaitingState STM is schedulin"},{"event":"cmd_output","timestamp":1607098390,"output":"g block 0 from pipeline: \"3ccdc2ac-72bf-4319-817d-0c0b4e99a012\"\n\u001b[0m\u001b[22m\n16:13:10.629 [info] blo"},{"event":"cmd_output","timestamp":1607098390,"output":"ck_id: c7b1ca84-ef2a-40b4-8909-c5849ffc0139, type: BlockRequests, event: persisted block run request"},{"event":"cmd_output","timestamp":1607098390,"output":" from ppl 3ccdc2ac-72bf-4319-817d-0c0b4e99a012 for block 0, origin: Elixir.Block.BlockRequests.Model"},{"event":"cmd_output","timestamp":1607098390,"output":".BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:13:10.632 [info] block_id: c7b1ca84-"},{"event":"cmd_output","timestamp":1607098390,"output":"ef2a-40b4-8909-c5849ffc0139, type: Blocks, state: initializing, event: initializing, recovery_count:"},{"event":"cmd_output","timestamp":1607098390,"output":" 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:13:10.634 [info] "},{"event":"cmd_output","timestamp":1607098390,"output":" Block 0 of pipeline with id: 3ccdc2ac-72bf-4319-817d-0c0b4e99a012 scheduled in block service with i"},{"event":"cmd_output","timestamp":1607098390,"output":"d: : \"c7b1ca84-ef2a-40b4-8909-c5849ffc0139\"\n\u001b[0m\u001b[22m\n16:13:10.636 [info] ppl_id: 3ccdc2ac-72bf-4"},{"event":"cmd_output","timestamp":1607098390,"output":"319-817d-0c0b4e99a012, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, reco"},{"event":"cmd_output","timestamp":1607098390,"output":"very_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:10.639 [in"},{"event":"cmd_output","timestamp":1607098390,"output":"fo] block_id: c7b1ca84-ef2a-40b4-8909-c5849ffc0139, type: BlockRequests, event: persisted build and"},{"event":"cmd_output","timestamp":1607098390,"output":" sub_ppl details for block_request: c7b1ca84-ef2a-40b4-8909-c5849ffc0139, origin: Elixir.Block.Block"},{"event":"cmd_output","timestamp":1607098390,"output":"Requests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:13:10.640 [info] block_id:"},{"event":"cmd_output","timestamp":1607098390,"output":" c7b1ca84-ef2a-40b4-8909-c5849ffc0139, type: Tasks, state: pending, event: created, recovery_count: "},{"event":"cmd_output","timestamp":1607098390,"output":"0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:13:10.6"},{"event":"cmd_output","timestamp":1607098390,"output":"46 [info] block_id: c7b1ca84-ef2a-40b4-8909-c5849ffc0139, type: Blocks, state: running, event: exit"},{"event":"cmd_output","timestamp":1607098390,"output":"_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098390,"output":"\n16:13:10.660 [info] block_id: c7b1ca84-ef2a-40b4-8909-c5849ffc0139, type: Tasks, state: running, e"},{"event":"cmd_output","timestamp":1607098390,"output":"vent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n"},{"event":"cmd_output","timestamp":1607098390,"output":"\u001b[0m\u001b[22m\n16:13:10.757 [info] block_id: c7b1ca84-ef2a-40b4-8909-c5849ffc0139, type: Tasks, state: "},{"event":"cmd_output","timestamp":1607098390,"output":"done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098390,"output":"90), \n\u001b[0m\u001b[22m\n16:13:10.764 [info] block_id: c7b1ca84-ef2a-40b4-8909-c5849ffc0139, type: Blocks,"},{"event":"cmd_output","timestamp":1607098390,"output":" state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_ch"},{"event":"cmd_output","timestamp":1607098390,"output":"ange/1(L90), \n\u001b[0m\u001b[22m\n16:13:10.770 [info] ppl_id: 3ccdc2ac-72bf-4319-817d-0c0b4e99a012, block_i"},{"event":"cmd_output","timestamp":1607098390,"output":"d: c7b1ca84-ef2a-40b4-8909-c5849ffc0139, type: PplBlocks, block_index: 0, state: done, result: passe"},{"event":"cmd_output","timestamp":1607098390,"output":"d, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90)"},{"event":"cmd_output","timestamp":1607098390,"output":", \n\u001b[0m\u001b[22m\n16:13:10.776 [info] ppl_id: 3ccdc2ac-72bf-4319-817d-0c0b4e99a012, type: Ppls, state:"},{"event":"cmd_output","timestamp":1607098390,"output":" done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098400,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:20.425 [info] block_id: 85c7d081-5ee7-4a36-9fce-af79fcc8d6"},{"event":"cmd_output","timestamp":1607098400,"output":"67, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.I"},{"event":"cmd_output","timestamp":1607098400,"output":"mpl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:20.430 [info] block_id: 85c7d081-5ee7-4a36-9fce-af7"},{"event":"cmd_output","timestamp":1607098400,"output":"9fcc8d667, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loop"},{"event":"cmd_output","timestamp":1607098400,"output":"er.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:20.443 [info] ppl_id: ee838c42-a86a-4d8d-b1"},{"event":"cmd_output","timestamp":1607098400,"output":"76-37b1697b3a12, block_id: 85c7d081-5ee7-4a36-9fce-af79fcc8d667, type: PplBlocks, block_index: 0, st"},{"event":"cmd_output","timestamp":1607098400,"output":"ate: done, result: stopped, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Imp"},{"event":"cmd_output","timestamp":1607098400,"output":"l.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:20.451 [info] ppl_id: ee838c42-a86a-4d8d-b176-37b1697"},{"event":"cmd_output","timestamp":1607098400,"output":"b3a12, type: Ppls, state: done, result: stopped, event: exit_scheduling, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098401,"output":"Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test valid message received => all p"},{"event":"cmd_output","timestamp":1607098401,"output":"ipelines from the org are terminated (11020.8ms)\u001b[0m\n\nIntegratingBlock.Test\n * test testing Bloc"},{"event":"cmd_output","timestamp":1607098401,"output":"k app'ss availability by calling Block's version method\r * test testing Block app'ss availability b"},{"event":"cmd_output","timestamp":1607098401,"output":"y calling Block's version method (skipped)\n\nPpl.Grpc.InFlightCounter.Test\n * test counter is dec"},{"event":"cmd_output","timestamp":1607098401,"output":"remented after process termination\r * test counter is decremented after process termination (skippe"},{"event":"cmd_output","timestamp":1607098401,"output":"d)\n * test return :continue or :resource_exhausted\r * test return :continue or :resource_exhauste"},{"event":"cmd_output","timestamp":1607098401,"output":"d (skipped)\n\nPpl.E2E.TaskFile.Test\n * test Pipeline with task_file property passes\u001b[22m\n16:13:2"},{"event":"cmd_output","timestamp":1607098401,"output":"1.102 [info] Request: 'run: %{:repo_name => \"15_task_file\", \"branch_id\" => \"ad8ab997-bd7b-408c-8236"},{"event":"cmd_output","timestamp":1607098401,"output":"-7fc38964c396\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"semaphore.y"},{"event":"cmd_output","timestamp":1607098401,"output":"ml\", \"hook_id\" => \"a0ab42b2-364b-11eb-b46a-5254005464e2\", \"label\" => \"master\", \"organization_id\" => "},{"event":"cmd_output","timestamp":1607098401,"output":"\"a3da2152-668c-48d6-b1fa-bef42fcd23ae\", \"owner\" => \"rt\", \"project_id\" => \"817174f1-3eb8-4bc2-887e-b1"},{"event":"cmd_output","timestamp":1607098401,"output":"3f382e7edb\", \"repo_name\" => \"2_basic\", \"request_token\" => \"a0ab33e4-364b-11eb-bd0b-5254005464e2\", \"r"},{"event":"cmd_output","timestamp":1607098401,"output":"equester_id\" => \"261957c0-d73c-40ee-bb9d-0788af13fb5c\", \"service\" => \"local\", \"suppressed_attributes"},{"event":"cmd_output","timestamp":1607098401,"output":"\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"79267b2e-a2da-4b76-a7b3-700859c88c74\", \"working_"},{"event":"cmd_output","timestamp":1607098401,"output":"dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:13:21.106 [info] ppl_id: 9c1c3e92-eb7c-4707-ab40-6a5e1da2e4b0,"},{"event":"cmd_output","timestamp":1607098401,"output":" type: PplRequests, event: persisted schedule request with request_token: a0ab33e4-364b-11eb-bd0b-52"},{"event":"cmd_output","timestamp":1607098401,"output":"54005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098401,"output":"[22m\n16:13:21.108 [info] ppl_id: 9c1c3e92-eb7c-4707-ab40-6a5e1da2e4b0, type: Ppls, state: initiali"},{"event":"cmd_output","timestamp":1607098401,"output":"zing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_resp"},{"event":"cmd_output","timestamp":1607098401,"output":"onse/2(L124), \n\u001b[0m\u001b[22m\n16:13:21.117 [info] Project 817174f1-3eb8-4bc2-887e-b13f382e7edb and bra"},{"event":"cmd_output","timestamp":1607098401,"output":"nch masterlatest_wf details updated: \"wf_id: 79267b2e-a2da-4b76-a7b3-700859c88c74, wf_number: 1\"\n\u001b["},{"event":"cmd_output","timestamp":1607098401,"output":"0m\u001b[22m\n16:13:21.119 [info] Persisted ppl_sub_init for pipeline with ppl_id: 9c1c3e92-eb7c-4707-ab"},{"event":"cmd_output","timestamp":1607098401,"output":"40-6a5e1da2e4b0: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeli"},{"event":"cmd_output","timestamp":1607098401,"output":"ne_sub_inits\">, compile_task_id: nil, error_description: nil, id: 300, in_scheduling: false, init_ty"},{"event":"cmd_output","timestamp":1607098401,"output":"pe: \"regular\", inserted_at: ~N[2020-12-04 16:13:21.117516], pipeline_requests: #Ecto.Association.Not"},{"event":"cmd_output","timestamp":1607098401,"output":"Loaded, ppl_id: \"9c1c3e92-eb7c-4707-ab40-6a5e1da2e4b0\""},{"event":"cmd_output","timestamp":1607098401,"output":", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, term"},{"event":"cmd_output","timestamp":1607098401,"output":"inate_request_desc: nil, updated_at: ~N[2020-12-04 16:13:21.117523]}\n\u001b[0m\u001b[22m\n16:13:21.125 [info]"},{"event":"cmd_output","timestamp":1607098401,"output":" Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.STMHan"},{"event":"cmd_output","timestamp":1607098401,"output":"dler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandle"},{"event":"cmd_output","timestamp":1607098401,"output":"r-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], cooli"},{"event":"cmd_output","timestamp":1607098401,"output":"ng_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher_cb: #F"},{"event":"cmd_output","timestamp":1607098401,"output":"unction<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, returnin"},{"event":"cmd_output","timestamp":1607098401,"output":"g: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Pp"},{"event":"cmd_output","timestamp":1607098401,"output":"ls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:21.126 [info] Periodic from module Elixir."},{"event":"cmd_output","timestamp":1607098401,"output":"Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 100 ms"},{"event":"cmd_output","timestamp":1607098401,"output":", metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args: %{all"},{"event":"cmd_output","timestamp":1607098401,"output":"owed_states: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls"},{"event":"cmd_output","timestamp":1607098401,"output":".Model.Ppls, observed_state: \"pending\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler.P"},{"event":"cmd_output","timestamp":1607098401,"output":"endingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :"},{"event":"cmd_output","timestamp":1607098401,"output":"result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}"},{"event":"cmd_output","timestamp":1607098401,"output":"\n\u001b[0m\u001b[22m\n16:13:21.126 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.QueuingState with "},{"event":"cmd_output","timestamp":1607098401,"output":"name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\""},{"event":"cmd_output","timestamp":1607098401,"output":", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{allowed_states: [\"queuing\", \"running\", \"d"},{"event":"cmd_output","timestamp":1607098401,"output":"one\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", publishe"},{"event":"cmd_output","timestamp":1607098401,"output":"r_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, retur"},{"event":"cmd_output","timestamp":1607098401,"output":"ning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl"},{"event":"cmd_output","timestamp":1607098401,"output":".Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:21.127 [info] Periodic from module Elix"},{"event":"cmd_output","timestamp":1607098401,"output":"ir.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHandler.RunningState :: period: 100"},{"event":"cmd_output","timestamp":1607098401,"output":" ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring args: %{"},{"event":"cmd_output","timestamp":1607098401,"output":"allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model"},{"event":"cmd_output","timestamp":1607098401,"output":".Ppls, observed_state: \"running\", publisher_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler.Runnin"},{"event":"cmd_output","timestamp":1607098401,"output":"gState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :resul"},{"event":"cmd_output","timestamp":1607098401,"output":"t, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0"},{"event":"cmd_output","timestamp":1607098401,"output":"m\u001b[22m\n16:13:21.127 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.StoppingState with name"},{"event":"cmd_output","timestamp":1607098401,"output":" Elixir.Ppl.Ppls.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", ["},{"event":"cmd_output","timestamp":1607098401,"output":"\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooli"},{"event":"cmd_output","timestamp":1607098401,"output":"ng_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"stopping\", publisher_cb: #Func"},{"event":"cmd_output","timestamp":1607098401,"output":"tion<0.71803493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id,"},{"event":"cmd_output","timestamp":1607098401,"output":" :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model"},{"event":"cmd_output","timestamp":1607098401,"output":".Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:21.127 [info] Periodic from module Elixir.Ppl.PplS"},{"event":"cmd_output","timestamp":1607098401,"output":"ubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: "},{"event":"cmd_output","timestamp":1607098401,"output":"100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurrin"},{"event":"cmd_output","timestamp":1607098401,"output":"g args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits."},{"event":"cmd_output","timestamp":1607098401,"output":"Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:"},{"event":"cmd_output","timestamp":1607098401,"output":"id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubI"},{"event":"cmd_output","timestamp":1607098401,"output":"nits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:21.128 [info] Periodic from modul"},{"event":"cmd_output","timestamp":1607098401,"output":"e Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler.Fetchi"},{"event":"cmd_output","timestamp":1607098401,"output":"ngState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-Fetchi"},{"event":"cmd_output","timestamp":1607098401,"output":"ngState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"done\"], cooling_time_"},{"event":"cmd_output","timestamp":1607098401,"output":"sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fetching\", publisher_cb:"},{"event":"cmd_output","timestamp":1607098401,"output":" :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :reco"},{"event":"cmd_output","timestamp":1607098401,"output":"very_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098401,"output":"\n16:13:21.128 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CompilationState with n"},{"event":"cmd_output","timestamp":1607098401,"output":"ame Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 100 ms, metric_name: {\"Ppl.beholde"},{"event":"cmd_output","timestamp":1607098401,"output":"r-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurring args: %{allowed_states: [\"re"},{"event":"cmd_output","timestamp":1607098401,"output":"gular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInit"},{"event":"cmd_output","timestamp":1607098401,"output":"s.Model.PplSubInits, observed_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returni"},{"event":"cmd_output","timestamp":1607098401,"output":"ng: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.P"},{"event":"cmd_output","timestamp":1607098401,"output":"plSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:21.128 [info] Periodic from"},{"event":"cmd_output","timestamp":1607098401,"output":" module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHandl"},{"event":"cmd_output","timestamp":1607098401,"output":"er.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHa"},{"event":"cmd_output","timestamp":1607098401,"output":"ndler-RegularInitState\"]}, recurring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, initial_"},{"event":"cmd_output","timestamp":1607098401,"output":"query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_init\", publisher_cb: :skip, repo:"},{"event":"cmd_output","timestamp":1607098401,"output":" Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :"},{"event":"cmd_output","timestamp":1607098401,"output":"ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:21.128"},{"event":"cmd_output","timestamp":1607098401,"output":" [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.InitializingState with name Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098401,"output":".PplBlocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"P"},{"event":"cmd_output","timestamp":1607098401,"output":"pl-PplBlocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"wa"},{"event":"cmd_output","timestamp":1607098401,"output":"iting\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: "},{"event":"cmd_output","timestamp":1607098401,"output":"\"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updat"},{"event":"cmd_output","timestamp":1607098401,"output":"ed_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBloc"},{"event":"cmd_output","timestamp":1607098401,"output":"ks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:21.128 [info] Periodic from module Elixir.Ppl.PplBloc"},{"event":"cmd_output","timestamp":1607098401,"output":"ks.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler.WaitingState :: period: 1000 ms"},{"event":"cmd_output","timestamp":1607098401,"output":", metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurring args: "},{"event":"cmd_output","timestamp":1607098401,"output":"%{allowed_states: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks."},{"event":"cmd_output","timestamp":1607098401,"output":"Model.PplBlocks, observed_state: \"waiting\", publisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.STM"},{"event":"cmd_output","timestamp":1607098401,"output":"Handler.WaitingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, "},{"event":"cmd_output","timestamp":1607098401,"output":":state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, tas"},{"event":"cmd_output","timestamp":1607098401,"output":"k_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:21.128 [info] Periodic from module Elixir.Ppl.PplBlocks.STMH"},{"event":"cmd_output","timestamp":1607098401,"output":"andler.RunningState with name Elixir.Ppl.PplBlocks.STMHandler.RunningState :: period: 1000 ms, metri"},{"event":"cmd_output","timestamp":1607098401,"output":"c_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, recurring args: %{allow"},{"event":"cmd_output","timestamp":1607098401,"output":"ed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model"},{"event":"cmd_output","timestamp":1607098401,"output":".PplBlocks, observed_state: \"running\", publisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHand"},{"event":"cmd_output","timestamp":1607098401,"output":"ler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :sta"},{"event":"cmd_output","timestamp":1607098401,"output":"te, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBloc"},{"event":"cmd_output","timestamp":1607098401,"output":"ks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:21.128 [info] Periodic from module Elixir.Ppl.PplBloc"},{"event":"cmd_output","timestamp":1607098401,"output":"ks.STMHandler.StoppingState with name Elixir.Ppl.PplBlocks.STMHandler.StoppingState :: period: 1000 "},{"event":"cmd_output","timestamp":1607098401,"output":"ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurring arg"},{"event":"cmd_output","timestamp":1607098401,"output":"s: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model."},{"event":"cmd_output","timestamp":1607098401,"output":"PplBlocks, observed_state: \"stopping\", publisher_cb: #Function<0.104215991/1 in Ppl.PplBlocks.STMHan"},{"event":"cmd_output","timestamp":1607098401,"output":"dler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :s"},{"event":"cmd_output","timestamp":1607098401,"output":"tate, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBl"},{"event":"cmd_output","timestamp":1607098401,"output":"ocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:21.129 [info] Periodic from module Elixir.Block.Blo"},{"event":"cmd_output","timestamp":1607098401,"output":"cks.STMHandler.InitializingState with name Elixir.Block.Blocks.STMHandler.InitializingState :: perio"},{"event":"cmd_output","timestamp":1607098401,"output":"d: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, rec"},{"event":"cmd_output","timestamp":1607098401,"output":"urring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Blocks"},{"event":"cmd_output","timestamp":1607098401,"output":".Model.Blocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Block.EctoRepo, returning:"},{"event":"cmd_output","timestamp":1607098401,"output":" [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Mo"},{"event":"cmd_output","timestamp":1607098401,"output":"del.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:21.129 [info] Periodic from module Elixir.Blo"},{"event":"cmd_output","timestamp":1607098401,"output":"ck.Blocks.STMHandler.RunningState with name Elixir.Block.Blocks.STMHandler.RunningState :: period: 1"},{"event":"cmd_output","timestamp":1607098401,"output":"00 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-RunningState\"]}, recurring ar"},{"event":"cmd_output","timestamp":1607098401,"output":"gs: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Bl"},{"event":"cmd_output","timestamp":1607098401,"output":"ocks.Model.Blocks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: "},{"event":"cmd_output","timestamp":1607098401,"output":"[:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Mod"},{"event":"cmd_output","timestamp":1607098401,"output":"el.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:21.129 [info] Periodic from module Elixir.Bloc"},{"event":"cmd_output","timestamp":1607098401,"output":"k.Blocks.STMHandler.StoppingState with name Elixir.Block.Blocks.STMHandler.StoppingState :: period: "},{"event":"cmd_output","timestamp":1607098401,"output":"100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-StoppingState\"]}, recurring "},{"event":"cmd_output","timestamp":1607098401,"output":"args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Mode"},{"event":"cmd_output","timestamp":1607098401,"output":"l.Blocks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :t"},{"event":"cmd_output","timestamp":1607098401,"output":"erminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Block"},{"event":"cmd_output","timestamp":1607098401,"output":"s, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:21.129 [info] Periodic from module Elixir.Block.Tasks."},{"event":"cmd_output","timestamp":1607098401,"output":"STMHandler.PendingState with name Elixir.Block.Tasks.STMHandler.PendingState :: period: 100 ms, metr"},{"event":"cmd_output","timestamp":1607098401,"output":"ic_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingState\"]}, recurring args: %{allowe"},{"event":"cmd_output","timestamp":1607098401,"output":"d_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Tasks.Model.Tasks, observed"},{"event":"cmd_output","timestamp":1607098401,"output":"_state: \"pending\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :"},{"event":"cmd_output","timestamp":1607098401,"output":"updated_at, :state, :recovery_count, :block_id, :build_request_id], schema: Block.Tasks.Model.Tasks,"},{"event":"cmd_output","timestamp":1607098401,"output":" task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:21.129 [info] Periodic from module Elixir.Block.Tasks.ST"},{"event":"cmd_output","timestamp":1607098401,"output":"MHandler.RunningState with name Elixir.Block.Tasks.STMHandler.RunningState :: period: 100 ms, metric"},{"event":"cmd_output","timestamp":1607098401,"output":"_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningState\"]}, recurring args: %{allowed_"},{"event":"cmd_output","timestamp":1607098401,"output":"states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Task"},{"event":"cmd_output","timestamp":1607098401,"output":"s, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate"},{"event":"cmd_output","timestamp":1607098401,"output":"_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_su"},{"event":"cmd_output","timestamp":1607098401,"output":"pervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:21.129 [info] Periodic from module Elixir.Block.Tasks.STMHandler"},{"event":"cmd_output","timestamp":1607098401,"output":".StoppingState with name Elixir.Block.Tasks.STMHandler.StoppingState :: period: 100 ms, metric_name:"},{"event":"cmd_output","timestamp":1607098401,"output":" {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]}, recurring args: %{allowed_state"},{"event":"cmd_output","timestamp":1607098401,"output":"s: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_stat"},{"event":"cmd_output","timestamp":1607098401,"output":"e: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :upda"},{"event":"cmd_output","timestamp":1607098401,"output":"ted_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip"},{"event":"cmd_output","timestamp":1607098401,"output":"}\n\u001b[0m\u001b[22m\n16:13:21.250 [info] ppl_id: 9c1c3e92-eb7c-4707-ab40-6a5e1da2e4b0, type: PplRequests, "},{"event":"cmd_output","timestamp":1607098401,"output":"event: persisted source_args for pipeline: 9c1c3e92-eb7c-4707-ab40-6a5e1da2e4b0, origin: Elixir.Ppl."},{"event":"cmd_output","timestamp":1607098401,"output":"PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:13:21.253 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098401,"output":" 9c1c3e92-eb7c-4707-ab40-6a5e1da2e4b0, type: PplSubInits, state: fetching, event: exit_scheduling, r"},{"event":"cmd_output","timestamp":1607098401,"output":"ecovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:21.281 "},{"event":"cmd_output","timestamp":1607098401,"output":"[info] ppl_id: 9c1c3e92-eb7c-4707-ab40-6a5e1da2e4b0, type: PplSubInits, state: regular_init, event:"},{"event":"cmd_output","timestamp":1607098401,"output":" exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098401,"output":"[22m\n16:13:21.312 [info] ppl_id: 9c1c3e92-eb7c-4707-ab40-6a5e1da2e4b0, type: PplRequests, event: p"},{"event":"cmd_output","timestamp":1607098401,"output":"ersisted definition for request with request_token: a0ab33e4-364b-11eb-bd0b-5254005464e2, origin: El"},{"event":"cmd_output","timestamp":1607098401,"output":"ixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:13:21.317 [i"},{"event":"cmd_output","timestamp":1607098401,"output":"nfo] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queu"},{"event":"cmd_output","timestamp":1607098401,"output":"es\">, inserted_at: ~N[2020-12-04 16:13:21.314960], name: \"master-.semaphore/semaphore.yml\", organiza"},{"event":"cmd_output","timestamp":1607098401,"output":"tion_id: \"a3da2152-668c-48d6-b1fa-bef42fcd23ae\", project_id: \"817174f1-3eb8-4bc2-887e-b13f382e7edb\","},{"event":"cmd_output","timestamp":1607098401,"output":" queue_id: \"2af4e86a-9f33-41a1-946f-000899353604\", scope: \"project\", updated_at: ~N[2020-12-04 16:13"},{"event":"cmd_output","timestamp":1607098401,"output":":21.314972], user_generated: false}}\n\u001b[0m\u001b[22m\n16:13:21.324 [info] event: created, origin: Elixir"},{"event":"cmd_output","timestamp":1607098401,"output":".Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:21.325 [info] ppl_"},{"event":"cmd_output","timestamp":1607098401,"output":"id: 9c1c3e92-eb7c-4707-ab40-6a5e1da2e4b0, type: PplBlocks, block_index: 0, state: initializing, even"},{"event":"cmd_output","timestamp":1607098401,"output":"t: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1("},{"event":"cmd_output","timestamp":1607098401,"output":"L105), \n\u001b[0m\u001b[22m\n16:13:21.325 [info] ppl_id: 9c1c3e92-eb7c-4707-ab40-6a5e1da2e4b0, type: PplBloc"},{"event":"cmd_output","timestamp":1607098401,"output":"ks, block_index: 1, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSu"},{"event":"cmd_output","timestamp":1607098401,"output":"bInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:21.325 [info] ppl_id: 9c1c3e"},{"event":"cmd_output","timestamp":1607098401,"output":"92-eb7c-4707-ab40-6a5e1da2e4b0, type: PplBlocks, block_index: 2, state: initializing, event: created"},{"event":"cmd_output","timestamp":1607098401,"output":", recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b"},{"event":"cmd_output","timestamp":1607098401,"output":"[0m\u001b[22m\n16:13:21.328 [info] ppl_id: 9c1c3e92-eb7c-4707-ab40-6a5e1da2e4b0, type: PplSubInits, stat"},{"event":"cmd_output","timestamp":1607098401,"output":"e: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.l"},{"event":"cmd_output","timestamp":1607098401,"output":"og_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:21.338 [info] ppl_id: 9c1c3e92-eb7c-4707-ab40-6a5e1da2e4"},{"event":"cmd_output","timestamp":1607098401,"output":"b0, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098401,"output":"in: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:21.344 [info] ppl_id: 9c1c3e"},{"event":"cmd_output","timestamp":1607098401,"output":"92-eb7c-4707-ab40-6a5e1da2e4b0, type: Ppls, state: pending, event: exit_scheduling, recovery_count: "},{"event":"cmd_output","timestamp":1607098401,"output":"0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:21.360 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098401,"output":" 9c1c3e92-eb7c-4707-ab40-6a5e1da2e4b0, type: PplBlocks, block_index: 1, state: waiting, event: exit_"},{"event":"cmd_output","timestamp":1607098401,"output":"scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098401,"output":"16:13:21.367 [info] ppl_id: 9c1c3e92-eb7c-4707-ab40-6a5e1da2e4b0, type: Ppls, state: queuing, event"},{"event":"cmd_output","timestamp":1607098401,"output":": exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098401,"output":"\u001b[22m\n16:13:21.376 [info] ppl_id: 9c1c3e92-eb7c-4707-ab40-6a5e1da2e4b0, type: PplBlocks, block_ind"},{"event":"cmd_output","timestamp":1607098401,"output":"ex: 2, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098401,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:21.380 [info] ppl_id: 9c1c3e92-eb7c-4707-ab40-6a5e1da2e4b0"},{"event":"cmd_output","timestamp":1607098401,"output":", type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.I"},{"event":"cmd_output","timestamp":1607098401,"output":"mpl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:21.389 [info] PplBlocks WaitingState STM is schedul"},{"event":"cmd_output","timestamp":1607098401,"output":"ing block 2 from pipeline: \"9c1c3e92-eb7c-4707-ab40-6a5e1da2e4b0\"\n\u001b[0m\u001b[22m\n16:13:21.396 [info] b"},{"event":"cmd_output","timestamp":1607098401,"output":"lock_id: c6db2700-4883-4710-be85-f133f6175da2, type: BlockRequests, event: persisted block run reque"},{"event":"cmd_output","timestamp":1607098401,"output":"st from ppl 9c1c3e92-eb7c-4707-ab40-6a5e1da2e4b0 for block 2, origin: Elixir.Block.BlockRequests.Mod"},{"event":"cmd_output","timestamp":1607098401,"output":"el.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:13:21.402 [info] block_id: c6db270"},{"event":"cmd_output","timestamp":1607098401,"output":"0-4883-4710-be85-f133f6175da2, type: Blocks, state: initializing, event: initializing, recovery_coun"},{"event":"cmd_output","timestamp":1607098401,"output":"t: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:13:21.406 [info"},{"event":"cmd_output","timestamp":1607098401,"output":"] Block 2 of pipeline with id: 9c1c3e92-eb7c-4707-ab40-6a5e1da2e4b0 scheduled in block service with"},{"event":"cmd_output","timestamp":1607098401,"output":" id: : \"c6db2700-4883-4710-be85-f133f6175da2\"\n\u001b[0m\u001b[22m\n16:13:21.410 [info] block_id: c6db2700-48"},{"event":"cmd_output","timestamp":1607098401,"output":"83-4710-be85-f133f6175da2, type: BlockRequests, event: persisted build and sub_ppl details for block"},{"event":"cmd_output","timestamp":1607098401,"output":"_request: c6db2700-4883-4710-be85-f133f6175da2, origin: Elixir.Block.BlockRequests.Model.BlockReques"},{"event":"cmd_output","timestamp":1607098401,"output":"tsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:13:21.413 [info] block_id: c6db2700-4883-4710-be85-f"},{"event":"cmd_output","timestamp":1607098401,"output":"133f6175da2, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Bl"},{"event":"cmd_output","timestamp":1607098401,"output":"ocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:13:21.415 [info] ppl_id: 9c1c3e9"},{"event":"cmd_output","timestamp":1607098401,"output":"2-eb7c-4707-ab40-6a5e1da2e4b0, type: PplBlocks, block_index: 2, state: running, event: exit_scheduli"},{"event":"cmd_output","timestamp":1607098401,"output":"ng, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:21"},{"event":"cmd_output","timestamp":1607098401,"output":".417 [info] block_id: c6db2700-4883-4710-be85-f133f6175da2, type: Blocks, state: running, event: ex"},{"event":"cmd_output","timestamp":1607098401,"output":"it_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098401,"output":"m\n16:13:21.423 [info] PplBlocks WaitingState STM is scheduling block 1 from pipeline: \"9c1c3e92-eb"},{"event":"cmd_output","timestamp":1607098401,"output":"7c-4707-ab40-6a5e1da2e4b0\"\n\u001b[0m\u001b[22m\n16:13:21.438 [info] block_id: 8dc2493b-031a-4b76-8d0d-4114cb"},{"event":"cmd_output","timestamp":1607098401,"output":"a98897, type: BlockRequests, event: persisted block run request from ppl 9c1c3e92-eb7c-4707-ab40-6a5"},{"event":"cmd_output","timestamp":1607098401,"output":"e1da2e4b0 for block 1, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_respons"},{"event":"cmd_output","timestamp":1607098401,"output":"e/4(L35), \n\u001b[0m\u001b[22m\n16:13:21.442 [info] block_id: c6db2700-4883-4710-be85-f133f6175da2, type: Ta"},{"event":"cmd_output","timestamp":1607098401,"output":"sks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_s"},{"event":"cmd_output","timestamp":1607098401,"output":"tate_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:21.446 [info] block_id: 8dc2493b-031a-4b76-8d0d-4114cba98897"},{"event":"cmd_output","timestamp":1607098401,"output":", type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Bl"},{"event":"cmd_output","timestamp":1607098401,"output":"ocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:13:21.451 [info] Block 1 of pipeline with i"},{"event":"cmd_output","timestamp":1607098401,"output":"d: 9c1c3e92-eb7c-4707-ab40-6a5e1da2e4b0 scheduled in block service with id: : \"8dc2493b-031a-4b76-8d"},{"event":"cmd_output","timestamp":1607098401,"output":"0d-4114cba98897\"\n\u001b[0m\u001b[22m\n16:13:21.461 [info] block_id: 8dc2493b-031a-4b76-8d0d-4114cba98897, ty"},{"event":"cmd_output","timestamp":1607098401,"output":"pe: BlockRequests, event: persisted build and sub_ppl details for block_request: 8dc2493b-031a-4b76-"},{"event":"cmd_output","timestamp":1607098401,"output":"8d0d-4114cba98897, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41)"},{"event":"cmd_output","timestamp":1607098401,"output":", \n\u001b[0m\u001b[22m\n16:13:21.461 [info] ppl_id: 9c1c3e92-eb7c-4707-ab40-6a5e1da2e4b0, type: PplBlocks, b"},{"event":"cmd_output","timestamp":1607098401,"output":"lock_index: 1, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM."},{"event":"cmd_output","timestamp":1607098401,"output":"Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:21.468 [info] block_id: 8dc2493b-031a-4b76-8d0d-41"},{"event":"cmd_output","timestamp":1607098401,"output":"14cba98897, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blo"},{"event":"cmd_output","timestamp":1607098401,"output":"cks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:13:21.470 [info] block_id: c6db27"},{"event":"cmd_output","timestamp":1607098401,"output":"00-4883-4710-be85-f133f6175da2, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098401,"output":" origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:21.475 [info] block_id:"},{"event":"cmd_output","timestamp":1607098401,"output":" c6db2700-4883-4710-be85-f133f6175da2, type: Blocks, state: done, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098401,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:21.476 [info] P"},{"event":"cmd_output","timestamp":1607098401,"output":"plBlocks WaitingState STM is scheduling block 0 from pipeline: \"9c1c3e92-eb7c-4707-ab40-6a5e1da2e4b0"},{"event":"cmd_output","timestamp":1607098401,"output":"\"\n\u001b[0m\u001b[22m\n16:13:21.476 [info] block_id: 8dc2493b-031a-4b76-8d0d-4114cba98897, type: Blocks, sta"},{"event":"cmd_output","timestamp":1607098401,"output":"te: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_cha"},{"event":"cmd_output","timestamp":1607098401,"output":"nge/1(L90), \n\u001b[0m\u001b[22m\n16:13:21.489 [info] ppl_id: 9c1c3e92-eb7c-4707-ab40-6a5e1da2e4b0, block_id"},{"event":"cmd_output","timestamp":1607098401,"output":": c6db2700-4883-4710-be85-f133f6175da2, type: PplBlocks, block_index: 2, state: done, result: passed"},{"event":"cmd_output","timestamp":1607098401,"output":", event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90),"},{"event":"cmd_output","timestamp":1607098401,"output":" \n\u001b[0m\u001b[22m\n16:13:21.489 [info] block_id: c6884c49-08f9-4029-943e-47559e8a5613, type: BlockReques"},{"event":"cmd_output","timestamp":1607098401,"output":"ts, event: persisted block run request from ppl 9c1c3e92-eb7c-4707-ab40-6a5e1da2e4b0 for block 0, or"},{"event":"cmd_output","timestamp":1607098401,"output":"igin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098401,"output":":13:21.493 [info] block_id: c6884c49-08f9-4029-943e-47559e8a5613, type: Blocks, state: initializing"},{"event":"cmd_output","timestamp":1607098401,"output":", event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L"},{"event":"cmd_output","timestamp":1607098401,"output":"43), \n\u001b[0m\u001b[22m\n16:13:21.503 [info] Block 0 of pipeline with id: 9c1c3e92-eb7c-4707-ab40-6a5e1da2"},{"event":"cmd_output","timestamp":1607098401,"output":"e4b0 scheduled in block service with id: : \"c6884c49-08f9-4029-943e-47559e8a5613\"\n\u001b[0m\u001b[22m\n16:13:"},{"event":"cmd_output","timestamp":1607098401,"output":"21.512 [info] ppl_id: 9c1c3e92-eb7c-4707-ab40-6a5e1da2e4b0, type: PplBlocks, block_index: 0, state:"},{"event":"cmd_output","timestamp":1607098401,"output":" running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change"},{"event":"cmd_output","timestamp":1607098401,"output":"/1(L90), \n\u001b[0m\u001b[22m\n16:13:21.516 [info] block_id: 8dc2493b-031a-4b76-8d0d-4114cba98897, type: Tas"},{"event":"cmd_output","timestamp":1607098401,"output":"ks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_st"},{"event":"cmd_output","timestamp":1607098401,"output":"ate_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:21.522 [info] block_id: c6884c49-08f9-4029-943e-47559e8a5613,"},{"event":"cmd_output","timestamp":1607098401,"output":" type: BlockRequests, event: persisted build and sub_ppl details for block_request: c6884c49-08f9-40"},{"event":"cmd_output","timestamp":1607098401,"output":"29-943e-47559e8a5613, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L"},{"event":"cmd_output","timestamp":1607098401,"output":"41), \n\u001b[0m\u001b[22m\n16:13:21.525 [info] block_id: c6884c49-08f9-4029-943e-47559e8a5613, type: Tasks, "},{"event":"cmd_output","timestamp":1607098401,"output":"state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.Initializi"},{"event":"cmd_output","timestamp":1607098401,"output":"ngState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:13:21.528 [info] block_id: c6884c49-08f9-4029-943e-47559e8"},{"event":"cmd_output","timestamp":1607098401,"output":"a5613, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loope"},{"event":"cmd_output","timestamp":1607098401,"output":"r.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:21.547 [info] block_id: c6884c49-08f9-4029-9"},{"event":"cmd_output","timestamp":1607098401,"output":"43e-47559e8a5613, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098401,"output":"ixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:21.589 [info] block_id: 8dc2493b-0"},{"event":"cmd_output","timestamp":1607098401,"output":"31a-4b76-8d0d-4114cba98897, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098401,"output":"gin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:21.601 [info] block_id: 8dc"},{"event":"cmd_output","timestamp":1607098401,"output":"2493b-031a-4b76-8d0d-4114cba98897, type: Blocks, state: done, event: exit_scheduling, recovery_count"},{"event":"cmd_output","timestamp":1607098401,"output":": 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:21.611 [info] ppl_i"},{"event":"cmd_output","timestamp":1607098401,"output":"d: 9c1c3e92-eb7c-4707-ab40-6a5e1da2e4b0, block_id: 8dc2493b-031a-4b76-8d0d-4114cba98897, type: PplBl"},{"event":"cmd_output","timestamp":1607098401,"output":"ocks, block_index: 1, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098401,"output":": Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:21.703 [info] block_id: c6884c"},{"event":"cmd_output","timestamp":1607098401,"output":"49-08f9-4029-943e-47559e8a5613, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098401,"output":" origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:21.708 [info] block_id:"},{"event":"cmd_output","timestamp":1607098401,"output":" c6884c49-08f9-4029-943e-47559e8a5613, type: Blocks, state: done, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098401,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:21.716 [info] p"},{"event":"cmd_output","timestamp":1607098401,"output":"pl_id: 9c1c3e92-eb7c-4707-ab40-6a5e1da2e4b0, block_id: c6884c49-08f9-4029-943e-47559e8a5613, type: P"},{"event":"cmd_output","timestamp":1607098401,"output":"plBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098401,"output":"igin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:21.732 [info] ppl_id: 9c1c"},{"event":"cmd_output","timestamp":1607098401,"output":"3e92-eb7c-4707-ab40-6a5e1da2e4b0, type: Ppls, state: done, result: passed, event: exit_scheduling, r"},{"event":"cmd_output","timestamp":1607098401,"output":"ecovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test Pipel"},{"event":"cmd_output","timestamp":1607098401,"output":"ine with task_file property passes (754.1ms)\u001b[0m\n * test Pipeline with malformed task_file content"},{"event":"cmd_output","timestamp":1607098401,"output":" fails\u001b[22m\n16:13:21.843 [info] Request: 'run: %{:repo_name => \"16_task_file_malformed\", \"branch_i"},{"event":"cmd_output","timestamp":1607098401,"output":"d\" => \"b95cfd50-f503-4d31-a710-940b4b060ebf\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469"},{"event":"cmd_output","timestamp":1607098401,"output":"\", \"file_name\" => \"semaphore.yml\", \"hook_id\" => \"a11d0438-364b-11eb-bfd4-5254005464e2\", \"label\" => \""},{"event":"cmd_output","timestamp":1607098401,"output":"master\", \"organization_id\" => \"51060ede-6e5a-499f-9849-43c6783cd63d\", \"owner\" => \"rt\", \"project_id\" "},{"event":"cmd_output","timestamp":1607098401,"output":"=> \"ab51eda4-bbfb-4381-bd83-3880a6efe8a2\", \"repo_name\" => \"2_basic\", \"request_token\" => \"a11cf632-36"},{"event":"cmd_output","timestamp":1607098401,"output":"4b-11eb-8879-5254005464e2\", \"requester_id\" => \"c6dc8133-181b-4a21-be63-bce480ac9329\", \"service\" => \""},{"event":"cmd_output","timestamp":1607098401,"output":"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"9c55dd10-8d2f-4384"},{"event":"cmd_output","timestamp":1607098401,"output":"-b128-8abcdfff3e9d\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:13:21.849 [info] ppl_id: fb320ed"},{"event":"cmd_output","timestamp":1607098401,"output":"2-abe6-4d16-9a29-33e474743b66, type: PplRequests, event: persisted schedule request with request_tok"},{"event":"cmd_output","timestamp":1607098401,"output":"en: a11cf632-364b-11eb-8879-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.pr"},{"event":"cmd_output","timestamp":1607098401,"output":"ocess_response/2(L55), \n\u001b[0m\u001b[22m\n16:13:21.853 [info] ppl_id: fb320ed2-abe6-4d16-9a29-33e474743b6"},{"event":"cmd_output","timestamp":1607098401,"output":"6, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls."},{"event":"cmd_output","timestamp":1607098401,"output":"Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:13:21.858 [info] Project ab51eda4-bbfb-"},{"event":"cmd_output","timestamp":1607098401,"output":"4381-bd83-3880a6efe8a2 and branch masterlatest_wf details updated: \"wf_id: 9c55dd10-8d2f-4384-b128-8"},{"event":"cmd_output","timestamp":1607098401,"output":"abcdfff3e9d, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:13:21.860 [info] Persisted ppl_sub_init for pipeline with"},{"event":"cmd_output","timestamp":1607098401,"output":" ppl_id: fb320ed2-abe6-4d16-9a29-33e474743b66: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Sc"},{"event":"cmd_output","timestamp":1607098401,"output":"hema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 301,"},{"event":"cmd_output","timestamp":1607098401,"output":" in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:13:21.858915], pipeline_r"},{"event":"cmd_output","timestamp":1607098401,"output":"equests: #Ecto.Association.NotLoaded, ppl_id: \"fb320ed"},{"event":"cmd_output","timestamp":1607098401,"output":"2-abe6-4d16-9a29-33e474743b66\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\""},{"event":"cmd_output","timestamp":1607098401,"output":", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:13:21.858925]}\n"},{"event":"cmd_output","timestamp":1607098401,"output":"\u001b[0m\u001b[22m\n16:13:21.866 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingState wi"},{"event":"cmd_output","timestamp":1607098401,"output":"th name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-"},{"event":"cmd_output","timestamp":1607098401,"output":"wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializi"},{"event":"cmd_output","timestamp":1607098401,"output":"ng\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"i"},{"event":"cmd_output","timestamp":1607098401,"output":"nitializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>"},{"event":"cmd_output","timestamp":1607098401,"output":", repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_c"},{"event":"cmd_output","timestamp":1607098401,"output":"ount, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:21.867 [info]"},{"event":"cmd_output","timestamp":1607098401,"output":" Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler."},{"event":"cmd_output","timestamp":1607098401,"output":"PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingS"},{"event":"cmd_output","timestamp":1607098401,"output":"tate\"]}, recurring args: %{allowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_s"},{"event":"cmd_output","timestamp":1607098401,"output":"ec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publisher_cb: #Function<0.8493"},{"event":"cmd_output","timestamp":1607098401,"output":"005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_r"},{"event":"cmd_output","timestamp":1607098401,"output":"equest, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_s"},{"event":"cmd_output","timestamp":1607098401,"output":"upervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:13:21.867 [info] Periodic from module Elixir.Ppl.Ppls"},{"event":"cmd_output","timestamp":1607098401,"output":".STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, metric"},{"event":"cmd_output","timestamp":1607098401,"output":"_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{allowed_sta"},{"event":"cmd_output","timestamp":1607098401,"output":"tes: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, obser"},{"event":"cmd_output","timestamp":1607098401,"output":"ved_state: \"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.args"},{"event":"cmd_output","timestamp":1607098401,"output":"/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recover"},{"event":"cmd_output","timestamp":1607098401,"output":"y_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:21.868 [in"},{"event":"cmd_output","timestamp":1607098401,"output":"fo] Periodic from module Elixir.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHandl"},{"event":"cmd_output","timestamp":1607098401,"output":"er.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Runni"},{"event":"cmd_output","timestamp":1607098401,"output":"ngState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2,"},{"event":"cmd_output","timestamp":1607098401,"output":" initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"running\", publisher_cb: #Function<0.74670282/1"},{"event":"cmd_output","timestamp":1607098401,"output":" in Ppl.Ppls.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_reques"},{"event":"cmd_output","timestamp":1607098401,"output":"t, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_superv"},{"event":"cmd_output","timestamp":1607098401,"output":"isor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:13:21.868 [info] Periodic from module Elixir.Ppl.Ppls.STMH"},{"event":"cmd_output","timestamp":1607098401,"output":"andler.StoppingState with name Elixir.Ppl.Ppls.STMHandler.StoppingState :: period: 100 ms, metric_na"},{"event":"cmd_output","timestamp":1607098401,"output":"me: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring args: %{allowed_state"},{"event":"cmd_output","timestamp":1607098401,"output":"s: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \""},{"event":"cmd_output","timestamp":1607098401,"output":"stopping\", publisher_cb: #Function<0.71803493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, repo: "},{"event":"cmd_output","timestamp":1607098401,"output":"Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :p"},{"event":"cmd_output","timestamp":1607098401,"output":"pl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:21.868 [info] Period"},{"event":"cmd_output","timestamp":1607098401,"output":"ic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHa"},{"event":"cmd_output","timestamp":1607098401,"output":"ndler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHan"},{"event":"cmd_output","timestamp":1607098401,"output":"dler-CreatedState\"]}, recurring args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, i"},{"event":"cmd_output","timestamp":1607098401,"output":"nitial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip, rep"},{"event":"cmd_output","timestamp":1607098401,"output":"o: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count,"},{"event":"cmd_output","timestamp":1607098401,"output":" :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:21.8"},{"event":"cmd_output","timestamp":1607098401,"output":"68 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098401,"output":".PplSubInits.STMHandler.FetchingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl"},{"event":"cmd_output","timestamp":1607098401,"output":"-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compil"},{"event":"cmd_output","timestamp":1607098401,"output":"ation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_st"},{"event":"cmd_output","timestamp":1607098401,"output":"ate: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :upda"},{"event":"cmd_output","timestamp":1607098401,"output":"ted_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_"},{"event":"cmd_output","timestamp":1607098401,"output":"supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:21.869 [info] Periodic from module Elixir.Ppl.PplSubInits.STMH"},{"event":"cmd_output","timestamp":1607098401,"output":"andler.CompilationState with name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 100 "},{"event":"cmd_output","timestamp":1607098401,"output":"ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurrin"},{"event":"cmd_output","timestamp":1607098401,"output":"g args: %{allowed_states: [\"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2,"},{"event":"cmd_output","timestamp":1607098401,"output":" initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"compilation\", publisher_cb: :ski"},{"event":"cmd_output","timestamp":1607098401,"output":"p, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_"},{"event":"cmd_output","timestamp":1607098401,"output":"count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098401,"output":"3:21.869 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with name E"},{"event":"cmd_output","timestamp":1607098401,"output":"lixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wak"},{"event":"cmd_output","timestamp":1607098401,"output":"e_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurring args: %{allowed_states: [\"done\"],"},{"event":"cmd_output","timestamp":1607098401,"output":" cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_ini"},{"event":"cmd_output","timestamp":1607098401,"output":"t\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :stat"},{"event":"cmd_output","timestamp":1607098401,"output":"e, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :"},{"event":"cmd_output","timestamp":1607098401,"output":"skip}\n\u001b[0m\u001b[22m\n16:13:21.869 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.Initiali"},{"event":"cmd_output","timestamp":1607098401,"output":"zingState with name Elixir.Ppl.PplBlocks.STMHandler.InitializingState :: period: 100 ms, metric_name"},{"event":"cmd_output","timestamp":1607098401,"output":": {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-InitializingState\"]}, recurring args: %{allowe"},{"event":"cmd_output","timestamp":1607098401,"output":"d_states: [\"initializing\", \"waiting\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Mod"},{"event":"cmd_output","timestamp":1607098401,"output":"el.PplBlocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:"},{"event":"cmd_output","timestamp":1607098401,"output":"id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schem"},{"event":"cmd_output","timestamp":1607098401,"output":"a: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:21.869 [info] Periodic "},{"event":"cmd_output","timestamp":1607098401,"output":"from module Elixir.Ppl.PplBlocks.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler.W"},{"event":"cmd_output","timestamp":1607098401,"output":"aitingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-Wai"},{"event":"cmd_output","timestamp":1607098401,"output":"tingState\"]}, recurring args: %{allowed_states: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 0,"},{"event":"cmd_output","timestamp":1607098401,"output":" initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"waiting\", publisher_cb: #Function<0."},{"event":"cmd_output","timestamp":1607098401,"output":"8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :te"},{"event":"cmd_output","timestamp":1607098401,"output":"rminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl."},{"event":"cmd_output","timestamp":1607098401,"output":"PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:21.870 [info] Periodic from mo"},{"event":"cmd_output","timestamp":1607098401,"output":"dule Elixir.Ppl.PplBlocks.STMHandler.RunningState with name Elixir.Ppl.PplBlocks.STMHandler.RunningS"},{"event":"cmd_output","timestamp":1607098401,"output":"tate :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningSta"},{"event":"cmd_output","timestamp":1607098401,"output":"te\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, init"},{"event":"cmd_output","timestamp":1607098401,"output":"ial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"running\", publisher_cb: #Function<0.28166"},{"event":"cmd_output","timestamp":1607098401,"output":"834/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :termin"},{"event":"cmd_output","timestamp":1607098401,"output":"ate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schem"},{"event":"cmd_output","timestamp":1607098401,"output":"a: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:21.870 [info] Periodic "},{"event":"cmd_output","timestamp":1607098401,"output":"from module Elixir.Ppl.PplBlocks.STMHandler.StoppingState with name Elixir.Ppl.PplBlocks.STMHandler."},{"event":"cmd_output","timestamp":1607098401,"output":"StoppingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-S"},{"event":"cmd_output","timestamp":1607098401,"output":"toppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initi"},{"event":"cmd_output","timestamp":1607098401,"output":"al_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"stopping\", publisher_cb: #Function<0.10421"},{"event":"cmd_output","timestamp":1607098401,"output":"5991/1 in Ppl.PplBlocks.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :term"},{"event":"cmd_output","timestamp":1607098401,"output":"inate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], sch"},{"event":"cmd_output","timestamp":1607098401,"output":"ema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:21.870 [info] Periodi"},{"event":"cmd_output","timestamp":1607098401,"output":"c from module Elixir.Block.Blocks.STMHandler.InitializingState with name Elixir.Block.Blocks.STMHand"},{"event":"cmd_output","timestamp":1607098401,"output":"ler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHan"},{"event":"cmd_output","timestamp":1607098401,"output":"dler-InitializingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: "},{"event":"cmd_output","timestamp":1607098401,"output":"0, initial_query: Block.Blocks.Model.Blocks, observed_state: \"initializing\", publisher_cb: :skip, re"},{"event":"cmd_output","timestamp":1607098401,"output":"po: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :bloc"},{"event":"cmd_output","timestamp":1607098401,"output":"k_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:21.871 [info] P"},{"event":"cmd_output","timestamp":1607098401,"output":"eriodic from module Elixir.Block.Blocks.STMHandler.RunningState with name Elixir.Block.Blocks.STMHan"},{"event":"cmd_output","timestamp":1607098401,"output":"dler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler"},{"event":"cmd_output","timestamp":1607098401,"output":"-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_se"},{"event":"cmd_output","timestamp":1607098401,"output":"c: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"running\", publisher_cb: :skip, rep"},{"event":"cmd_output","timestamp":1607098401,"output":"o: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block"},{"event":"cmd_output","timestamp":1607098401,"output":"_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:21.872 [info] Pe"},{"event":"cmd_output","timestamp":1607098401,"output":"riodic from module Elixir.Block.Blocks.STMHandler.StoppingState with name Elixir.Block.Blocks.STMHan"},{"event":"cmd_output","timestamp":1607098401,"output":"dler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandle"},{"event":"cmd_output","timestamp":1607098401,"output":"r-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, in"},{"event":"cmd_output","timestamp":1607098401,"output":"itial_query: Block.Blocks.Model.Blocks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block"},{"event":"cmd_output","timestamp":1607098401,"output":".EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], sc"},{"event":"cmd_output","timestamp":1607098401,"output":"hema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:21.872 [info] Periodic f"},{"event":"cmd_output","timestamp":1607098401,"output":"rom module Elixir.Block.Tasks.STMHandler.PendingState with name Elixir.Block.Tasks.STMHandler.Pendin"},{"event":"cmd_output","timestamp":1607098401,"output":"gState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingStat"},{"event":"cmd_output","timestamp":1607098401,"output":"e\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Blo"},{"event":"cmd_output","timestamp":1607098401,"output":"ck.Tasks.Model.Tasks, observed_state: \"pending\", publisher_cb: :skip, repo: Block.EctoRepo, returnin"},{"event":"cmd_output","timestamp":1607098401,"output":"g: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id, :build_request_id], sc"},{"event":"cmd_output","timestamp":1607098401,"output":"hema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:21.872 [info] Periodic fro"},{"event":"cmd_output","timestamp":1607098401,"output":"m module Elixir.Block.Tasks.STMHandler.RunningState with name Elixir.Block.Tasks.STMHandler.RunningS"},{"event":"cmd_output","timestamp":1607098401,"output":"tate :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningState\""},{"event":"cmd_output","timestamp":1607098401,"output":"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial"},{"event":"cmd_output","timestamp":1607098401,"output":"_query: Block.Tasks.Model.Tasks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRep"},{"event":"cmd_output","timestamp":1607098401,"output":"o, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Bl"},{"event":"cmd_output","timestamp":1607098401,"output":"ock.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:21.872 [info] Periodic from module"},{"event":"cmd_output","timestamp":1607098401,"output":" Elixir.Block.Tasks.STMHandler.StoppingState with name Elixir.Block.Tasks.STMHandler.StoppingState :"},{"event":"cmd_output","timestamp":1607098401,"output":": period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]}, r"},{"event":"cmd_output","timestamp":1607098401,"output":"ecurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Ta"},{"event":"cmd_output","timestamp":1607098401,"output":"sks.Model.Tasks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: ["},{"event":"cmd_output","timestamp":1607098401,"output":":id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model"},{"event":"cmd_output","timestamp":1607098401,"output":".Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:21.998 [info] ppl_id: fb320ed2-abe6-4d16-9a29-33e"},{"event":"cmd_output","timestamp":1607098401,"output":"474743b66, type: PplRequests, event: persisted source_args for pipeline: fb320ed2-abe6-4d16-9a29-33e"},{"event":"cmd_output","timestamp":1607098402,"output":"474743b66, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098402,"output":"\n16:13:22.001 [info] ppl_id: fb320ed2-abe6-4d16-9a29-33e474743b66, type: PplSubInits, state: fetch"},{"event":"cmd_output","timestamp":1607098402,"output":"ing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L9"},{"event":"cmd_output","timestamp":1607098402,"output":"0), \n\u001b[0m\u001b[22m\n16:13:22.022 [info] ppl_id: fb320ed2-abe6-4d16-9a29-33e474743b66, type: PplSubInit"},{"event":"cmd_output","timestamp":1607098402,"output":"s, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.lo"},{"event":"cmd_output","timestamp":1607098402,"output":"g_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:22.056 [info] ppl_id: fb320ed2-abe6-4d16-9a29-33e474743b6"},{"event":"cmd_output","timestamp":1607098402,"output":"6, type: PplSubInits, state: done, result: failed, event: exit_scheduling, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098402,"output":": Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:22.067 [info] ppl_id: fb320ed2"},{"event":"cmd_output","timestamp":1607098402,"output":"-abe6-4d16-9a29-33e474743b66, type: Ppls, state: done, result: failed, event: exit_scheduling, recov"},{"event":"cmd_output","timestamp":1607098402,"output":"ery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test Pipeline "},{"event":"cmd_output","timestamp":1607098402,"output":"with malformed task_file content fails (313.7ms)\u001b[0m\n * test Pipeline with non-existent task_file "},{"event":"cmd_output","timestamp":1607098402,"output":"value\u001b[22m\n16:13:22.154 [info] Request: 'run: %{:repo_name => \"17_task_file_nonexistent\", \"branch_"},{"event":"cmd_output","timestamp":1607098402,"output":"id\" => \"026c6452-154d-4431-ae31-6cd789d29a99\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a446"},{"event":"cmd_output","timestamp":1607098402,"output":"9\", \"file_name\" => \"semaphore.yml\", \"hook_id\" => \"a14c78b2-364b-11eb-a0e4-5254005464e2\", \"label\" => "},{"event":"cmd_output","timestamp":1607098402,"output":"\"master\", \"organization_id\" => \"58b440b1-a76c-42c9-84dc-e7595d9db888\", \"owner\" => \"rt\", \"project_id\""},{"event":"cmd_output","timestamp":1607098402,"output":" => \"c2026921-8345-48cc-9e59-c2d20268e733\", \"repo_name\" => \"2_basic\", \"request_token\" => \"a14c6930-3"},{"event":"cmd_output","timestamp":1607098402,"output":"64b-11eb-898a-5254005464e2\", \"requester_id\" => \"695da52d-86bc-4514-ac1c-a6e2b9226a17\", \"service\" => "},{"event":"cmd_output","timestamp":1607098402,"output":"\"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"ed4e4fd2-d3be-4f1"},{"event":"cmd_output","timestamp":1607098402,"output":"9-8566-fd22793679f6\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:13:22.157 [info] ppl_id: bfcb70"},{"event":"cmd_output","timestamp":1607098402,"output":"11-5ea6-41e2-8d16-b766f5b3afbf, type: PplRequests, event: persisted schedule request with request_to"},{"event":"cmd_output","timestamp":1607098402,"output":"ken: a14c6930-364b-11eb-898a-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.p"},{"event":"cmd_output","timestamp":1607098402,"output":"rocess_response/2(L55), \n\u001b[0m\u001b[22m\n16:13:22.160 [info] ppl_id: bfcb7011-5ea6-41e2-8d16-b766f5b3af"},{"event":"cmd_output","timestamp":1607098402,"output":"bf, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls"},{"event":"cmd_output","timestamp":1607098402,"output":".Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:13:22.166 [info] Project c2026921-8345"},{"event":"cmd_output","timestamp":1607098402,"output":"-48cc-9e59-c2d20268e733 and branch masterlatest_wf details updated: \"wf_id: ed4e4fd2-d3be-4f19-8566-"},{"event":"cmd_output","timestamp":1607098402,"output":"fd22793679f6, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:13:22.169 [info] Persisted ppl_sub_init for pipeline wit"},{"event":"cmd_output","timestamp":1607098402,"output":"h ppl_id: bfcb7011-5ea6-41e2-8d16-b766f5b3afbf: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.S"},{"event":"cmd_output","timestamp":1607098402,"output":"chema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 302"},{"event":"cmd_output","timestamp":1607098402,"output":", in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:13:22.166961], pipeline_"},{"event":"cmd_output","timestamp":1607098402,"output":"requests: #Ecto.Association.NotLoaded, ppl_id: \"bfcb70"},{"event":"cmd_output","timestamp":1607098402,"output":"11-5ea6-41e2-8d16-b766f5b3afbf\", recovery_count: 0, result: nil, result_reason: nil, state: \"created"},{"event":"cmd_output","timestamp":1607098402,"output":"\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:13:22.166971]}\r"},{"event":"cmd_output","timestamp":1607098402,"output":"\n\u001b[0m\u001b[22m\n16:13:22.174 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingState w"},{"event":"cmd_output","timestamp":1607098402,"output":"ith name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder"},{"event":"cmd_output","timestamp":1607098402,"output":"-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializ"},{"event":"cmd_output","timestamp":1607098402,"output":"ing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \""},{"event":"cmd_output","timestamp":1607098402,"output":"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0"},{"event":"cmd_output","timestamp":1607098402,"output":">, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_"},{"event":"cmd_output","timestamp":1607098402,"output":"count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:22.174 [info"},{"event":"cmd_output","timestamp":1607098402,"output":"] Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler"},{"event":"cmd_output","timestamp":1607098402,"output":".PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Pending"},{"event":"cmd_output","timestamp":1607098402,"output":"State\"]}, recurring args: %{allowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_"},{"event":"cmd_output","timestamp":1607098402,"output":"sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publisher_cb: #Function<0.849"},{"event":"cmd_output","timestamp":1607098402,"output":"3005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_"},{"event":"cmd_output","timestamp":1607098402,"output":"request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_"},{"event":"cmd_output","timestamp":1607098402,"output":"supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:13:22.175 [info] Periodic from module Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098402,"output":"s.STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, metri"},{"event":"cmd_output","timestamp":1607098402,"output":"c_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{allowed_st"},{"event":"cmd_output","timestamp":1607098402,"output":"ates: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, obse"},{"event":"cmd_output","timestamp":1607098402,"output":"rved_state: \"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.arg"},{"event":"cmd_output","timestamp":1607098402,"output":"s/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recove"},{"event":"cmd_output","timestamp":1607098402,"output":"ry_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:22.175 [i"},{"event":"cmd_output","timestamp":1607098402,"output":"nfo] Periodic from module Elixir.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHand"},{"event":"cmd_output","timestamp":1607098402,"output":"ler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Runn"},{"event":"cmd_output","timestamp":1607098402,"output":"ingState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2"},{"event":"cmd_output","timestamp":1607098402,"output":", initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"running\", publisher_cb: #Function<0.74670282/"},{"event":"cmd_output","timestamp":1607098402,"output":"1 in Ppl.Ppls.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_reque"},{"event":"cmd_output","timestamp":1607098402,"output":"st, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_super"},{"event":"cmd_output","timestamp":1607098402,"output":"visor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:13:22.176 [info] Periodic from module Elixir.Ppl.Ppls.STM"},{"event":"cmd_output","timestamp":1607098402,"output":"Handler.StoppingState with name Elixir.Ppl.Ppls.STMHandler.StoppingState :: period: 100 ms, metric_n"},{"event":"cmd_output","timestamp":1607098402,"output":"ame: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring args: %{allowed_stat"},{"event":"cmd_output","timestamp":1607098402,"output":"es: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: "},{"event":"cmd_output","timestamp":1607098402,"output":"\"stopping\", publisher_cb: #Function<0.71803493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, repo:"},{"event":"cmd_output","timestamp":1607098402,"output":" Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :"},{"event":"cmd_output","timestamp":1607098402,"output":"ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:22.176 [info] Perio"},{"event":"cmd_output","timestamp":1607098402,"output":"dic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMH"},{"event":"cmd_output","timestamp":1607098402,"output":"andler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHa"},{"event":"cmd_output","timestamp":1607098402,"output":"ndler-CreatedState\"]}, recurring args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, "},{"event":"cmd_output","timestamp":1607098402,"output":"initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip, re"},{"event":"cmd_output","timestamp":1607098402,"output":"po: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count"},{"event":"cmd_output","timestamp":1607098402,"output":", :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:22."},{"event":"cmd_output","timestamp":1607098402,"output":"176 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Pp"},{"event":"cmd_output","timestamp":1607098402,"output":"l.PplSubInits.STMHandler.FetchingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Pp"},{"event":"cmd_output","timestamp":1607098402,"output":"l-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compi"},{"event":"cmd_output","timestamp":1607098402,"output":"lation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_s"},{"event":"cmd_output","timestamp":1607098402,"output":"tate: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :upd"},{"event":"cmd_output","timestamp":1607098402,"output":"ated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task"},{"event":"cmd_output","timestamp":1607098402,"output":"_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:22.176 [info] Periodic from module Elixir.Ppl.PplSubInits.STM"},{"event":"cmd_output","timestamp":1607098402,"output":"Handler.CompilationState with name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 100"},{"event":"cmd_output","timestamp":1607098402,"output":" ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurri"},{"event":"cmd_output","timestamp":1607098402,"output":"ng args: %{allowed_states: [\"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2"},{"event":"cmd_output","timestamp":1607098402,"output":", initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"compilation\", publisher_cb: :sk"},{"event":"cmd_output","timestamp":1607098402,"output":"ip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery"},{"event":"cmd_output","timestamp":1607098402,"output":"_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098402,"output":"13:22.177 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with name "},{"event":"cmd_output","timestamp":1607098402,"output":"Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wa"},{"event":"cmd_output","timestamp":1607098402,"output":"ke_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurring args: %{allowed_states: [\"done\"]"},{"event":"cmd_output","timestamp":1607098402,"output":", cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_in"},{"event":"cmd_output","timestamp":1607098402,"output":"it\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :sta"},{"event":"cmd_output","timestamp":1607098402,"output":"te, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: "},{"event":"cmd_output","timestamp":1607098402,"output":":skip}\n\u001b[0m\u001b[22m\n16:13:22.177 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.Initial"},{"event":"cmd_output","timestamp":1607098402,"output":"izingState with name Elixir.Ppl.PplBlocks.STMHandler.InitializingState :: period: 100 ms, metric_nam"},{"event":"cmd_output","timestamp":1607098402,"output":"e: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-InitializingState\"]}, recurring args: %{allow"},{"event":"cmd_output","timestamp":1607098402,"output":"ed_states: [\"initializing\", \"waiting\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Mo"},{"event":"cmd_output","timestamp":1607098402,"output":"del.PplBlocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: ["},{"event":"cmd_output","timestamp":1607098402,"output":":id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], sche"},{"event":"cmd_output","timestamp":1607098402,"output":"ma: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:22.177 [info] Periodic"},{"event":"cmd_output","timestamp":1607098402,"output":" from module Elixir.Ppl.PplBlocks.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler."},{"event":"cmd_output","timestamp":1607098402,"output":"WaitingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-Wa"},{"event":"cmd_output","timestamp":1607098402,"output":"itingState\"]}, recurring args: %{allowed_states: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 0"},{"event":"cmd_output","timestamp":1607098402,"output":", initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"waiting\", publisher_cb: #Function<0"},{"event":"cmd_output","timestamp":1607098402,"output":".8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :t"},{"event":"cmd_output","timestamp":1607098402,"output":"erminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl"},{"event":"cmd_output","timestamp":1607098402,"output":".PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:22.177 [info] Periodic from m"},{"event":"cmd_output","timestamp":1607098402,"output":"odule Elixir.Ppl.PplBlocks.STMHandler.RunningState with name Elixir.Ppl.PplBlocks.STMHandler.Running"},{"event":"cmd_output","timestamp":1607098402,"output":"State :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningSt"},{"event":"cmd_output","timestamp":1607098402,"output":"ate\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, ini"},{"event":"cmd_output","timestamp":1607098402,"output":"tial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"running\", publisher_cb: #Function<0.2816"},{"event":"cmd_output","timestamp":1607098402,"output":"6834/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :termi"},{"event":"cmd_output","timestamp":1607098402,"output":"nate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], sche"},{"event":"cmd_output","timestamp":1607098402,"output":"ma: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:22.177 [info] Periodic"},{"event":"cmd_output","timestamp":1607098402,"output":" from module Elixir.Ppl.PplBlocks.STMHandler.StoppingState with name Elixir.Ppl.PplBlocks.STMHandler"},{"event":"cmd_output","timestamp":1607098402,"output":".StoppingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-"},{"event":"cmd_output","timestamp":1607098402,"output":"StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, init"},{"event":"cmd_output","timestamp":1607098402,"output":"ial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"stopping\", publisher_cb: #Function<0.1042"},{"event":"cmd_output","timestamp":1607098402,"output":"15991/1 in Ppl.PplBlocks.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :ter"},{"event":"cmd_output","timestamp":1607098402,"output":"minate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], sc"},{"event":"cmd_output","timestamp":1607098402,"output":"hema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:22.177 [info] Period"},{"event":"cmd_output","timestamp":1607098402,"output":"ic from module Elixir.Block.Blocks.STMHandler.InitializingState with name Elixir.Block.Blocks.STMHan"},{"event":"cmd_output","timestamp":1607098402,"output":"dler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHa"},{"event":"cmd_output","timestamp":1607098402,"output":"ndler-InitializingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec:"},{"event":"cmd_output","timestamp":1607098402,"output":" 0, initial_query: Block.Blocks.Model.Blocks, observed_state: \"initializing\", publisher_cb: :skip, r"},{"event":"cmd_output","timestamp":1607098402,"output":"epo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :blo"},{"event":"cmd_output","timestamp":1607098402,"output":"ck_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:22.177 [info] "},{"event":"cmd_output","timestamp":1607098402,"output":"Periodic from module Elixir.Block.Blocks.STMHandler.RunningState with name Elixir.Block.Blocks.STMHa"},{"event":"cmd_output","timestamp":1607098402,"output":"ndler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandle"},{"event":"cmd_output","timestamp":1607098402,"output":"r-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_s"},{"event":"cmd_output","timestamp":1607098402,"output":"ec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"running\", publisher_cb: :skip, re"},{"event":"cmd_output","timestamp":1607098402,"output":"po: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :bloc"},{"event":"cmd_output","timestamp":1607098402,"output":"k_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:22.178 [info] P"},{"event":"cmd_output","timestamp":1607098402,"output":"eriodic from module Elixir.Block.Blocks.STMHandler.StoppingState with name Elixir.Block.Blocks.STMHa"},{"event":"cmd_output","timestamp":1607098402,"output":"ndler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandl"},{"event":"cmd_output","timestamp":1607098402,"output":"er-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, i"},{"event":"cmd_output","timestamp":1607098402,"output":"nitial_query: Block.Blocks.Model.Blocks, observed_state: \"stopping\", publisher_cb: :skip, repo: Bloc"},{"event":"cmd_output","timestamp":1607098402,"output":"k.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], s"},{"event":"cmd_output","timestamp":1607098402,"output":"chema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:22.181 [info] Periodic "},{"event":"cmd_output","timestamp":1607098402,"output":"from module Elixir.Block.Tasks.STMHandler.PendingState with name Elixir.Block.Tasks.STMHandler.Pendi"},{"event":"cmd_output","timestamp":1607098402,"output":"ngState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingSta"},{"event":"cmd_output","timestamp":1607098402,"output":"te\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Bl"},{"event":"cmd_output","timestamp":1607098402,"output":"ock.Tasks.Model.Tasks, observed_state: \"pending\", publisher_cb: :skip, repo: Block.EctoRepo, returni"},{"event":"cmd_output","timestamp":1607098402,"output":"ng: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id, :build_request_id], s"},{"event":"cmd_output","timestamp":1607098402,"output":"chema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:22.182 [info] Periodic fr"},{"event":"cmd_output","timestamp":1607098402,"output":"om module Elixir.Block.Tasks.STMHandler.RunningState with name Elixir.Block.Tasks.STMHandler.Running"},{"event":"cmd_output","timestamp":1607098402,"output":"State :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningState"},{"event":"cmd_output","timestamp":1607098402,"output":"\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initia"},{"event":"cmd_output","timestamp":1607098402,"output":"l_query: Block.Tasks.Model.Tasks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRe"},{"event":"cmd_output","timestamp":1607098402,"output":"po, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: B"},{"event":"cmd_output","timestamp":1607098402,"output":"lock.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:22.182 [info] Periodic from modul"},{"event":"cmd_output","timestamp":1607098402,"output":"e Elixir.Block.Tasks.STMHandler.StoppingState with name Elixir.Block.Tasks.STMHandler.StoppingState "},{"event":"cmd_output","timestamp":1607098402,"output":":: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]}, "},{"event":"cmd_output","timestamp":1607098402,"output":"recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.T"},{"event":"cmd_output","timestamp":1607098402,"output":"asks.Model.Tasks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: "},{"event":"cmd_output","timestamp":1607098402,"output":"[:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Mode"},{"event":"cmd_output","timestamp":1607098402,"output":"l.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:22.290 [info] ppl_id: bfcb7011-5ea6-41e2-8d16-b7"},{"event":"cmd_output","timestamp":1607098402,"output":"66f5b3afbf, type: PplRequests, event: persisted source_args for pipeline: bfcb7011-5ea6-41e2-8d16-b7"},{"event":"cmd_output","timestamp":1607098402,"output":"66f5b3afbf, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098402,"output":"m\n16:13:22.292 [info] ppl_id: bfcb7011-5ea6-41e2-8d16-b766f5b3afbf, type: PplSubInits, state: fetc"},{"event":"cmd_output","timestamp":1607098402,"output":"hing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098402,"output":"90), \n\u001b[0m\u001b[22m\n16:13:22.313 [info] ppl_id: bfcb7011-5ea6-41e2-8d16-b766f5b3afbf, type: PplSubIni"},{"event":"cmd_output","timestamp":1607098402,"output":"ts, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.l"},{"event":"cmd_output","timestamp":1607098402,"output":"og_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:22.330 [info] ppl_id: bfcb7011-5ea6-41e2-8d16-b766f5b3af"},{"event":"cmd_output","timestamp":1607098402,"output":"bf, type: PplSubInits, state: done, result: failed, event: exit_scheduling, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098402,"output":"n: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:22.340 [info] ppl_id: bfcb701"},{"event":"cmd_output","timestamp":1607098402,"output":"1-5ea6-41e2-8d16-b766f5b3afbf, type: Ppls, state: done, result: failed, event: exit_scheduling, reco"},{"event":"cmd_output","timestamp":1607098402,"output":"very_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test Pipeline"},{"event":"cmd_output","timestamp":1607098402,"output":" with non-existent task_file value (306.2ms)\u001b[0m\n\nPpl.E2E.RunBlock.Test\n * test when there is ru"},{"event":"cmd_output","timestamp":1607098402,"output":"n in block definition => blocks are run or skipped according to condition\u001b[22m\n16:13:22.437 [info] "},{"event":"cmd_output","timestamp":1607098402,"output":" Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.STMHand"},{"event":"cmd_output","timestamp":1607098402,"output":"ler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler"},{"event":"cmd_output","timestamp":1607098402,"output":"-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], coolin"},{"event":"cmd_output","timestamp":1607098402,"output":"g_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher_cb: #Fu"},{"event":"cmd_output","timestamp":1607098402,"output":"nction<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, returning"},{"event":"cmd_output","timestamp":1607098402,"output":": [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098402,"output":"s.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:22.437 [info] Periodic from module Elixir.P"},{"event":"cmd_output","timestamp":1607098402,"output":"pl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 100 ms,"},{"event":"cmd_output","timestamp":1607098402,"output":" metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args: %{allo"},{"event":"cmd_output","timestamp":1607098402,"output":"wed_states: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls."},{"event":"cmd_output","timestamp":1607098402,"output":"Model.Ppls, observed_state: \"pending\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler.Pe"},{"event":"cmd_output","timestamp":1607098402,"output":"ndingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :r"},{"event":"cmd_output","timestamp":1607098402,"output":"esult, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\r"},{"event":"cmd_output","timestamp":1607098402,"output":"\n\u001b[0m\u001b[22m\n16:13:22.437 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.QueuingState with n"},{"event":"cmd_output","timestamp":1607098402,"output":"ame Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\","},{"event":"cmd_output","timestamp":1607098402,"output":" [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{allowed_states: [\"queuing\", \"running\", \"do"},{"event":"cmd_output","timestamp":1607098402,"output":"ne\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", publisher"},{"event":"cmd_output","timestamp":1607098402,"output":"_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, return"},{"event":"cmd_output","timestamp":1607098402,"output":"ing: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl."},{"event":"cmd_output","timestamp":1607098402,"output":"Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:22.437 [info] Periodic from module Elixi"},{"event":"cmd_output","timestamp":1607098402,"output":"r.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHandler.RunningState :: period: 100 "},{"event":"cmd_output","timestamp":1607098402,"output":"ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring args: %{a"},{"event":"cmd_output","timestamp":1607098402,"output":"llowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model."},{"event":"cmd_output","timestamp":1607098402,"output":"Ppls, observed_state: \"running\", publisher_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler.Running"},{"event":"cmd_output","timestamp":1607098402,"output":"State.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result"},{"event":"cmd_output","timestamp":1607098402,"output":", :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m"},{"event":"cmd_output","timestamp":1607098402,"output":"\u001b[22m\n16:13:22.437 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.StoppingState with name "},{"event":"cmd_output","timestamp":1607098402,"output":"Elixir.Ppl.Ppls.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\""},{"event":"cmd_output","timestamp":1607098402,"output":"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], coolin"},{"event":"cmd_output","timestamp":1607098402,"output":"g_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"stopping\", publisher_cb: #Funct"},{"event":"cmd_output","timestamp":1607098402,"output":"ion<0.71803493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, "},{"event":"cmd_output","timestamp":1607098402,"output":":terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model."},{"event":"cmd_output","timestamp":1607098402,"output":"Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:22.438 [info] Periodic from module Elixir.Ppl.PplSu"},{"event":"cmd_output","timestamp":1607098402,"output":"bInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 1"},{"event":"cmd_output","timestamp":1607098402,"output":"00 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring"},{"event":"cmd_output","timestamp":1607098402,"output":" args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.M"},{"event":"cmd_output","timestamp":1607098402,"output":"odel.PplSubInits, observed_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:i"},{"event":"cmd_output","timestamp":1607098402,"output":"d, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubIn"},{"event":"cmd_output","timestamp":1607098402,"output":"its.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:22.438 [info] Periodic from module"},{"event":"cmd_output","timestamp":1607098402,"output":" Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler.Fetchin"},{"event":"cmd_output","timestamp":1607098402,"output":"gState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-Fetchin"},{"event":"cmd_output","timestamp":1607098402,"output":"gState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"done\"], cooling_time_s"},{"event":"cmd_output","timestamp":1607098402,"output":"ec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fetching\", publisher_cb: "},{"event":"cmd_output","timestamp":1607098402,"output":":skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recov"},{"event":"cmd_output","timestamp":1607098402,"output":"ery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098402,"output":"16:13:22.438 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CompilationState with na"},{"event":"cmd_output","timestamp":1607098402,"output":"me Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 100 ms, metric_name: {\"Ppl.beholder"},{"event":"cmd_output","timestamp":1607098402,"output":"-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurring args: %{allowed_states: [\"reg"},{"event":"cmd_output","timestamp":1607098402,"output":"ular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits"},{"event":"cmd_output","timestamp":1607098402,"output":".Model.PplSubInits, observed_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returnin"},{"event":"cmd_output","timestamp":1607098402,"output":"g: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Pp"},{"event":"cmd_output","timestamp":1607098402,"output":"lSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:22.438 [info] Periodic from "},{"event":"cmd_output","timestamp":1607098402,"output":"module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHandle"},{"event":"cmd_output","timestamp":1607098402,"output":"r.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHan"},{"event":"cmd_output","timestamp":1607098402,"output":"dler-RegularInitState\"]}, recurring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, initial_q"},{"event":"cmd_output","timestamp":1607098402,"output":"uery: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_init\", publisher_cb: :skip, repo: "},{"event":"cmd_output","timestamp":1607098402,"output":"Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :p"},{"event":"cmd_output","timestamp":1607098402,"output":"pl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:22.438 "},{"event":"cmd_output","timestamp":1607098402,"output":"[info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.InitializingState with name Elixir.Ppl."},{"event":"cmd_output","timestamp":1607098402,"output":"PplBlocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Pp"},{"event":"cmd_output","timestamp":1607098402,"output":"l-PplBlocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"wai"},{"event":"cmd_output","timestamp":1607098402,"output":"ting\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \""},{"event":"cmd_output","timestamp":1607098402,"output":"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :update"},{"event":"cmd_output","timestamp":1607098402,"output":"d_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlock"},{"event":"cmd_output","timestamp":1607098402,"output":"s, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:22.438 [info] Periodic from module Elixir.Ppl.PplBlock"},{"event":"cmd_output","timestamp":1607098402,"output":"s.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler.WaitingState :: period: 1000 ms,"},{"event":"cmd_output","timestamp":1607098402,"output":" metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurring args: %"},{"event":"cmd_output","timestamp":1607098402,"output":"{allowed_states: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.M"},{"event":"cmd_output","timestamp":1607098402,"output":"odel.PplBlocks, observed_state: \"waiting\", publisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.STMH"},{"event":"cmd_output","timestamp":1607098402,"output":"andler.WaitingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :"},{"event":"cmd_output","timestamp":1607098402,"output":"state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task"},{"event":"cmd_output","timestamp":1607098402,"output":"_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:22.438 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHa"},{"event":"cmd_output","timestamp":1607098402,"output":"ndler.RunningState with name Elixir.Ppl.PplBlocks.STMHandler.RunningState :: period: 1000 ms, metric"},{"event":"cmd_output","timestamp":1607098402,"output":"_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, recurring args: %{allowe"},{"event":"cmd_output","timestamp":1607098402,"output":"d_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model."},{"event":"cmd_output","timestamp":1607098402,"output":"PplBlocks, observed_state: \"running\", publisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHandl"},{"event":"cmd_output","timestamp":1607098402,"output":"er.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :stat"},{"event":"cmd_output","timestamp":1607098402,"output":"e, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlock"},{"event":"cmd_output","timestamp":1607098402,"output":"s, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:22.438 [info] Periodic from module Elixir.Ppl.PplBlock"},{"event":"cmd_output","timestamp":1607098402,"output":"s.STMHandler.StoppingState with name Elixir.Ppl.PplBlocks.STMHandler.StoppingState :: period: 1000 m"},{"event":"cmd_output","timestamp":1607098402,"output":"s, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurring args"},{"event":"cmd_output","timestamp":1607098402,"output":": %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.P"},{"event":"cmd_output","timestamp":1607098402,"output":"plBlocks, observed_state: \"stopping\", publisher_cb: #Function<0.104215991/1 in Ppl.PplBlocks.STMHand"},{"event":"cmd_output","timestamp":1607098402,"output":"ler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :st"},{"event":"cmd_output","timestamp":1607098402,"output":"ate, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlo"},{"event":"cmd_output","timestamp":1607098402,"output":"cks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:22.438 [info] Periodic from module Elixir.Block.Bloc"},{"event":"cmd_output","timestamp":1607098402,"output":"ks.STMHandler.InitializingState with name Elixir.Block.Blocks.STMHandler.InitializingState :: period"},{"event":"cmd_output","timestamp":1607098402,"output":": 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, recu"},{"event":"cmd_output","timestamp":1607098402,"output":"rring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Blocks."},{"event":"cmd_output","timestamp":1607098402,"output":"Model.Blocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Block.EctoRepo, returning: "},{"event":"cmd_output","timestamp":1607098402,"output":"[:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Mod"},{"event":"cmd_output","timestamp":1607098402,"output":"el.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:22.439 [info] Periodic from module Elixir.Bloc"},{"event":"cmd_output","timestamp":1607098402,"output":"k.Blocks.STMHandler.RunningState with name Elixir.Block.Blocks.STMHandler.RunningState :: period: 10"},{"event":"cmd_output","timestamp":1607098402,"output":"0 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-RunningState\"]}, recurring arg"},{"event":"cmd_output","timestamp":1607098402,"output":"s: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blo"},{"event":"cmd_output","timestamp":1607098402,"output":"cks.Model.Blocks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: ["},{"event":"cmd_output","timestamp":1607098402,"output":":id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Mode"},{"event":"cmd_output","timestamp":1607098402,"output":"l.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:22.439 [info] Periodic from module Elixir.Block"},{"event":"cmd_output","timestamp":1607098402,"output":".Blocks.STMHandler.StoppingState with name Elixir.Block.Blocks.STMHandler.StoppingState :: period: 1"},{"event":"cmd_output","timestamp":1607098402,"output":"00 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-StoppingState\"]}, recurring a"},{"event":"cmd_output","timestamp":1607098402,"output":"rgs: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model"},{"event":"cmd_output","timestamp":1607098402,"output":".Blocks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :te"},{"event":"cmd_output","timestamp":1607098402,"output":"rminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks"},{"event":"cmd_output","timestamp":1607098402,"output":", task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:22.439 [info] Periodic from module Elixir.Block.Tasks.S"},{"event":"cmd_output","timestamp":1607098402,"output":"TMHandler.PendingState with name Elixir.Block.Tasks.STMHandler.PendingState :: period: 100 ms, metri"},{"event":"cmd_output","timestamp":1607098402,"output":"c_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingState\"]}, recurring args: %{allowed"},{"event":"cmd_output","timestamp":1607098402,"output":"_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Tasks.Model.Tasks, observed_"},{"event":"cmd_output","timestamp":1607098402,"output":"state: \"pending\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :u"},{"event":"cmd_output","timestamp":1607098402,"output":"pdated_at, :state, :recovery_count, :block_id, :build_request_id], schema: Block.Tasks.Model.Tasks, "},{"event":"cmd_output","timestamp":1607098402,"output":"task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:22.439 [info] Periodic from module Elixir.Block.Tasks.STM"},{"event":"cmd_output","timestamp":1607098402,"output":"Handler.RunningState with name Elixir.Block.Tasks.STMHandler.RunningState :: period: 100 ms, metric_"},{"event":"cmd_output","timestamp":1607098402,"output":"name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningState\"]}, recurring args: %{allowed_s"},{"event":"cmd_output","timestamp":1607098402,"output":"tates: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks"},{"event":"cmd_output","timestamp":1607098402,"output":", observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_"},{"event":"cmd_output","timestamp":1607098402,"output":"request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_sup"},{"event":"cmd_output","timestamp":1607098402,"output":"ervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:22.439 [info] Periodic from module Elixir.Block.Tasks.STMHandler."},{"event":"cmd_output","timestamp":1607098402,"output":"StoppingState with name Elixir.Block.Tasks.STMHandler.StoppingState :: period: 100 ms, metric_name: "},{"event":"cmd_output","timestamp":1607098402,"output":"{\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states"},{"event":"cmd_output","timestamp":1607098402,"output":": [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state"},{"event":"cmd_output","timestamp":1607098402,"output":": \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updat"},{"event":"cmd_output","timestamp":1607098402,"output":"ed_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}"},{"event":"cmd_output","timestamp":1607098402,"output":"\n\u001b[0m\u001b[22m\n16:13:22.450 [info] Request: 'run: %{\"branch_id\" => \"5446ffbf-2e43-4b64-97b0-8de4fe51d"},{"event":"cmd_output","timestamp":1607098402,"output":"4ba\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"run_block.yml\", \"hook"},{"event":"cmd_output","timestamp":1607098402,"output":"_id\" => \"a1786544-364b-11eb-babc-5254005464e2\", \"label\" => \"master\", \"organization_id\" => \"2bdbef61-"},{"event":"cmd_output","timestamp":1607098402,"output":"1f7d-43d5-8f16-82083b0a06c8\", \"owner\" => \"rt\", \"project_id\" => \"c30aa043-9705-4123-8caa-dccab962f0ce"},{"event":"cmd_output","timestamp":1607098402,"output":"\", \"repo_name\" => \"22_skip_block\", \"request_token\" => \"a1785c2a-364b-11eb-a3ae-5254005464e2\", \"reque"},{"event":"cmd_output","timestamp":1607098402,"output":"ster_id\" => \"16014d1b-3af0-45b2-8bae-f3f064e1aa5a\", \"service\" => \"local\", \"suppressed_attributes\" =>"},{"event":"cmd_output","timestamp":1607098402,"output":" [\"access_token\", \"client_secret\"], \"wf_id\" => \"cb53b19a-0a3a-4cee-861b-7115e6347190\", \"working_dir\""},{"event":"cmd_output","timestamp":1607098402,"output":" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:13:22.454 [info] ppl_id: e678fcf0-a08b-4e85-abb0-f70237ca9fde, typ"},{"event":"cmd_output","timestamp":1607098402,"output":"e: PplRequests, event: persisted schedule request with request_token: a1785c2a-364b-11eb-a3ae-525400"},{"event":"cmd_output","timestamp":1607098402,"output":"5464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098402,"output":"\n16:13:22.457 [info] ppl_id: e678fcf0-a08b-4e85-abb0-f70237ca9fde, type: Ppls, state: initializing"},{"event":"cmd_output","timestamp":1607098402,"output":", event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response"},{"event":"cmd_output","timestamp":1607098402,"output":"/2(L124), \n\u001b[0m\u001b[22m\n16:13:22.469 [info] Project c30aa043-9705-4123-8caa-dccab962f0ce and branch "},{"event":"cmd_output","timestamp":1607098402,"output":"masterlatest_wf details updated: \"wf_id: cb53b19a-0a3a-4cee-861b-7115e6347190, wf_number: 1\"\n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098402,"output":"22m\n16:13:22.471 [info] Persisted ppl_sub_init for pipeline with ppl_id: e678fcf0-a08b-4e85-abb0-f"},{"event":"cmd_output","timestamp":1607098402,"output":"70237ca9fde: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_s"},{"event":"cmd_output","timestamp":1607098402,"output":"ub_inits\">, compile_task_id: nil, error_description: nil, id: 303, in_scheduling: false, init_type: "},{"event":"cmd_output","timestamp":1607098402,"output":"\"regular\", inserted_at: ~N[2020-12-04 16:13:22.469740], pipeline_requests: #Ecto.Association.NotLoad"},{"event":"cmd_output","timestamp":1607098402,"output":"ed, ppl_id: \"e678fcf0-a08b-4e85-abb0-f70237ca9fde\", re"},{"event":"cmd_output","timestamp":1607098402,"output":"covery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminat"},{"event":"cmd_output","timestamp":1607098402,"output":"e_request_desc: nil, updated_at: ~N[2020-12-04 16:13:22.469745]}\n\u001b[0m\u001b[22m\n16:13:22.482 [info] pp"},{"event":"cmd_output","timestamp":1607098402,"output":"l_id: e678fcf0-a08b-4e85-abb0-f70237ca9fde, type: PplRequests, event: persisted source_args for pipe"},{"event":"cmd_output","timestamp":1607098402,"output":"line: e678fcf0-a08b-4e85-abb0-f70237ca9fde, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries."},{"event":"cmd_output","timestamp":1607098402,"output":"insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:13:22.485 [info] ppl_id: e678fcf0-a08b-4e85-abb0-f70237ca9fde"},{"event":"cmd_output","timestamp":1607098402,"output":", type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loop"},{"event":"cmd_output","timestamp":1607098402,"output":"er.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:22.508 [info] ppl_id: e678fcf0-a08b-4e85-ab"},{"event":"cmd_output","timestamp":1607098402,"output":"b0-f70237ca9fde, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098402,"output":"origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:22.542 [info] ppl_id: e6"},{"event":"cmd_output","timestamp":1607098402,"output":"78fcf0-a08b-4e85-abb0-f70237ca9fde, type: PplRequests, event: persisted definition for request with "},{"event":"cmd_output","timestamp":1607098402,"output":"request_token: a1785c2a-364b-11eb-a3ae-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequest"},{"event":"cmd_output","timestamp":1607098402,"output":"sQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:13:22.552 [info] Queue persisted: {:ok, %Ppl.Que"},{"event":"cmd_output","timestamp":1607098402,"output":"ues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:1"},{"event":"cmd_output","timestamp":1607098402,"output":"3:22.550439], name: \"master-.semaphore/run_block.yml\", organization_id: \"2bdbef61-1f7d-43d5-8f16-820"},{"event":"cmd_output","timestamp":1607098402,"output":"83b0a06c8\", project_id: \"c30aa043-9705-4123-8caa-dccab962f0ce\", queue_id: \"654609a2-b9ee-4abb-a3f5-0"},{"event":"cmd_output","timestamp":1607098402,"output":"a7ee11f284a\", scope: \"project\", updated_at: ~N[2020-12-04 16:13:22.550523], user_generated: false}}\r"},{"event":"cmd_output","timestamp":1607098402,"output":"\n\u001b[0m\u001b[22m\n16:13:22.557 [info] ppl_id: not_available, event: created, origin: Elixir.Ppl.PplSubIni"},{"event":"cmd_output","timestamp":1607098402,"output":"ts.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:22.557 [info] event: created, or"},{"event":"cmd_output","timestamp":1607098402,"output":"igin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:22.557 "},{"event":"cmd_output","timestamp":1607098402,"output":"[info] ppl_id: e678fcf0-a08b-4e85-abb0-f70237ca9fde, type: PplBlocks, block_index: 0, state: initia"},{"event":"cmd_output","timestamp":1607098402,"output":"lizing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitStat"},{"event":"cmd_output","timestamp":1607098402,"output":"e.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:22.557 [info] ppl_id: e678fcf0-a08b-4e85-abb0-f70237ca9fde, t"},{"event":"cmd_output","timestamp":1607098402,"output":"ype: PplBlocks, block_index: 1, state: initializing, event: created, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098402,"output":"ir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:22.557 [info] pp"},{"event":"cmd_output","timestamp":1607098402,"output":"l_id: e678fcf0-a08b-4e85-abb0-f70237ca9fde, type: PplBlocks, block_index: 2, state: initializing, ev"},{"event":"cmd_output","timestamp":1607098402,"output":"ent: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/"},{"event":"cmd_output","timestamp":1607098402,"output":"1(L105), \n\u001b[0m\u001b[22m\n16:13:22.559 [info] ppl_id: e678fcf0-a08b-4e85-abb0-f70237ca9fde, type: PplSu"},{"event":"cmd_output","timestamp":1607098402,"output":"bInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loope"},{"event":"cmd_output","timestamp":1607098402,"output":"r.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:22.565 [info] ppl_id: e678fcf0-a08b-4e85-abb"},{"event":"cmd_output","timestamp":1607098402,"output":"0-f70237ca9fde, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_co"},{"event":"cmd_output","timestamp":1607098402,"output":"unt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:22.567 [info] pp"},{"event":"cmd_output","timestamp":1607098402,"output":"l_id: e678fcf0-a08b-4e85-abb0-f70237ca9fde, type: Ppls, state: pending, event: exit_scheduling, reco"},{"event":"cmd_output","timestamp":1607098402,"output":"very_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:22.572 [in"},{"event":"cmd_output","timestamp":1607098402,"output":"fo] ppl_id: e678fcf0-a08b-4e85-abb0-f70237ca9fde, type: PplBlocks, block_index: 1, state: waiting, "},{"event":"cmd_output","timestamp":1607098402,"output":"event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \r"},{"event":"cmd_output","timestamp":1607098402,"output":"\n\u001b[0m\u001b[22m\n16:13:22.579 [info] ppl_id: e678fcf0-a08b-4e85-abb0-f70237ca9fde, type: Ppls, state: qu"},{"event":"cmd_output","timestamp":1607098402,"output":"euing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1("},{"event":"cmd_output","timestamp":1607098402,"output":"L90), \n\u001b[0m\u001b[22m\n16:13:22.579 [info] ppl_id: e678fcf0-a08b-4e85-abb0-f70237ca9fde, type: PplBlock"},{"event":"cmd_output","timestamp":1607098402,"output":"s, block_index: 2, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper."},{"event":"cmd_output","timestamp":1607098402,"output":"STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:22.592 [info] ppl_id: e678fcf0-a08b-4e85-abb0-"},{"event":"cmd_output","timestamp":1607098402,"output":"f70237ca9fde, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098402,"output":"Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:22.602 [info] PplBlocks WaitingState ST"},{"event":"cmd_output","timestamp":1607098402,"output":"M is scheduling block 0 from pipeline: \"e678fcf0-a08b-4e85-abb0-f70237ca9fde\"\n\u001b[0m\u001b[22m\n16:13:22.6"},{"event":"cmd_output","timestamp":1607098402,"output":"08 [info] block_id: 74c0b0f7-96ce-45b7-b769-8f1fcb8409ea, type: BlockRequests, event: persisted blo"},{"event":"cmd_output","timestamp":1607098402,"output":"ck run request from ppl e678fcf0-a08b-4e85-abb0-f70237ca9fde for block 0, origin: Elixir.Block.Block"},{"event":"cmd_output","timestamp":1607098402,"output":"Requests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:13:22.610 [info] block"},{"event":"cmd_output","timestamp":1607098402,"output":"_id: 74c0b0f7-96ce-45b7-b769-8f1fcb8409ea, type: Blocks, state: initializing, event: initializing, r"},{"event":"cmd_output","timestamp":1607098402,"output":"ecovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:13:"},{"event":"cmd_output","timestamp":1607098402,"output":"22.613 [info] Block 0 of pipeline with id: e678fcf0-a08b-4e85-abb0-f70237ca9fde scheduled in block "},{"event":"cmd_output","timestamp":1607098402,"output":"service with id: : \"74c0b0f7-96ce-45b7-b769-8f1fcb8409ea\"\n\u001b[0m\u001b[22m\n16:13:22.616 [info] ppl_id: e"},{"event":"cmd_output","timestamp":1607098402,"output":"678fcf0-a08b-4e85-abb0-f70237ca9fde, type: PplBlocks, block_index: 0, state: running, event: exit_sc"},{"event":"cmd_output","timestamp":1607098402,"output":"heduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098402,"output":":13:22.617 [info] block_id: 74c0b0f7-96ce-45b7-b769-8f1fcb8409ea, type: BlockRequests, event: persi"},{"event":"cmd_output","timestamp":1607098402,"output":"sted build and sub_ppl details for block_request: 74c0b0f7-96ce-45b7-b769-8f1fcb8409ea, origin: Elix"},{"event":"cmd_output","timestamp":1607098402,"output":"ir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:13:22.620 [in"},{"event":"cmd_output","timestamp":1607098402,"output":"fo] block_id: 74c0b0f7-96ce-45b7-b769-8f1fcb8409ea, type: Tasks, state: pending, event: created, re"},{"event":"cmd_output","timestamp":1607098402,"output":"covery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098402,"output":"2m\n16:13:22.621 [info] block_id: 74c0b0f7-96ce-45b7-b769-8f1fcb8409ea, type: Blocks, state: runnin"},{"event":"cmd_output","timestamp":1607098402,"output":"g, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90)"},{"event":"cmd_output","timestamp":1607098402,"output":", \n\u001b[0m\u001b[22m\n16:13:22.633 [info] block_id: 74c0b0f7-96ce-45b7-b769-8f1fcb8409ea, type: Tasks, sta"},{"event":"cmd_output","timestamp":1607098402,"output":"te: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_cha"},{"event":"cmd_output","timestamp":1607098402,"output":"nge/1(L90), \n\u001b[0m\u001b[22m\n16:13:22.666 [info] block_id: 74c0b0f7-96ce-45b7-b769-8f1fcb8409ea, type: "},{"event":"cmd_output","timestamp":1607098402,"output":"Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_st"},{"event":"cmd_output","timestamp":1607098402,"output":"ate_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:22.671 [info] block_id: 74c0b0f7-96ce-45b7-b769-8f1fcb8409ea,"},{"event":"cmd_output","timestamp":1607098402,"output":" type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Imp"},{"event":"cmd_output","timestamp":1607098402,"output":"l.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:22.677 [info] ppl_id: e678fcf0-a08b-4e85-abb0-f70237c"},{"event":"cmd_output","timestamp":1607098402,"output":"a9fde, block_id: 74c0b0f7-96ce-45b7-b769-8f1fcb8409ea, type: PplBlocks, block_index: 0, state: done,"},{"event":"cmd_output","timestamp":1607098402,"output":" result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state"},{"event":"cmd_output","timestamp":1607098402,"output":"_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:22.682 [info] PplBlocks WaitingState STM is scheduling block 1 f"},{"event":"cmd_output","timestamp":1607098402,"output":"rom pipeline: \"e678fcf0-a08b-4e85-abb0-f70237ca9fde\"\n\u001b[0m\u001b[22m\n16:13:22.688 [info] ppl_id: e678fc"},{"event":"cmd_output","timestamp":1607098402,"output":"f0-a08b-4e85-abb0-f70237ca9fde, type: PplBlocks, block_index: 1, state: done, result: passed, event:"},{"event":"cmd_output","timestamp":1607098402,"output":" exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098402,"output":"[22m\n16:13:22.691 [info] PplBlocks WaitingState STM is scheduling block 2 from pipeline: \"e678fcf0"},{"event":"cmd_output","timestamp":1607098402,"output":"-a08b-4e85-abb0-f70237ca9fde\"\n\u001b[0m\u001b[22m\n16:13:22.697 [info] ppl_id: e678fcf0-a08b-4e85-abb0-f7023"},{"event":"cmd_output","timestamp":1607098402,"output":"7ca9fde, type: PplBlocks, block_index: 2, state: done, result: passed, event: exit_scheduling, recov"},{"event":"cmd_output","timestamp":1607098402,"output":"ery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:22.712 [inf"},{"event":"cmd_output","timestamp":1607098402,"output":"o] ppl_id: e678fcf0-a08b-4e85-abb0-f70237ca9fde, type: Ppls, state: done, result: passed, event: ex"},{"event":"cmd_output","timestamp":1607098402,"output":"it_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32"},{"event":"cmd_output","timestamp":1607098402,"output":"m\r * test when there is run in block definition => blocks are run or skipped according to condition"},{"event":"cmd_output","timestamp":1607098402,"output":" (394.6ms)\u001b[0m\n\nPpl.E2E.ParallelismSupport.Test\n * test Pipeline with parallelism in job definit"},{"event":"cmd_output","timestamp":1607098402,"output":"ion passes\u001b[22m\n16:13:22.840 [info] Request: 'run: %{\"branch_id\" => \"52746fb8-0d3f-4551-a38f-85074"},{"event":"cmd_output","timestamp":1607098402,"output":"4501dc5\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"semaphore.yml\", \""},{"event":"cmd_output","timestamp":1607098402,"output":"hook_id\" => \"a1b524fc-364b-11eb-8562-5254005464e2\", \"label\" => \"master\", \"organization_id\" => \"784dd"},{"event":"cmd_output","timestamp":1607098402,"output":"077-5b2d-442f-8810-34775a6dae9c\", \"owner\" => \"rt\", \"project_id\" => \"6a5fc803-ffe1-402a-806d-36540c39"},{"event":"cmd_output","timestamp":1607098402,"output":"3165\", \"repo_name\" => \"27_parallelism\", \"request_token\" => \"a1b519bc-364b-11eb-af9f-5254005464e2\", \""},{"event":"cmd_output","timestamp":1607098402,"output":"requester_id\" => \"f69f421e-cd1e-488e-ad83-e8c06ac966c7\", \"service\" => \"local\", \"suppressed_attribute"},{"event":"cmd_output","timestamp":1607098402,"output":"s\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"52f6eccb-ca7e-4b87-9148-6d848c014f97\", \"working"},{"event":"cmd_output","timestamp":1607098402,"output":"_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:13:22.843 [info] ppl_id: 8909e87a-6cd4-492e-aff4-0785b5130bec"},{"event":"cmd_output","timestamp":1607098402,"output":", type: PplRequests, event: persisted schedule request with request_token: a1b519bc-364b-11eb-af9f-5"},{"event":"cmd_output","timestamp":1607098402,"output":"254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098402,"output":"\u001b[22m\n16:13:22.846 [info] ppl_id: 8909e87a-6cd4-492e-aff4-0785b5130bec, type: Ppls, state: initial"},{"event":"cmd_output","timestamp":1607098402,"output":"izing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_res"},{"event":"cmd_output","timestamp":1607098402,"output":"ponse/2(L124), \n\u001b[0m\u001b[22m\n16:13:22.852 [info] Project 6a5fc803-ffe1-402a-806d-36540c393165 and br"},{"event":"cmd_output","timestamp":1607098402,"output":"anch masterlatest_wf details updated: \"wf_id: 52f6eccb-ca7e-4b87-9148-6d848c014f97, wf_number: 1\"\n\u001b"},{"event":"cmd_output","timestamp":1607098402,"output":"[0m\u001b[22m\n16:13:22.854 [info] Persisted ppl_sub_init for pipeline with ppl_id: 8909e87a-6cd4-492e-a"},{"event":"cmd_output","timestamp":1607098402,"output":"ff4-0785b5130bec: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipel"},{"event":"cmd_output","timestamp":1607098402,"output":"ine_sub_inits\">, compile_task_id: nil, error_description: nil, id: 304, in_scheduling: false, init_t"},{"event":"cmd_output","timestamp":1607098402,"output":"ype: \"regular\", inserted_at: ~N[2020-12-04 16:13:22.852361], pipeline_requests: #Ecto.Association.No"},{"event":"cmd_output","timestamp":1607098402,"output":"tLoaded, ppl_id: \"8909e87a-6cd4-492e-aff4-0785b5130bec"},{"event":"cmd_output","timestamp":1607098402,"output":"\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, ter"},{"event":"cmd_output","timestamp":1607098402,"output":"minate_request_desc: nil, updated_at: ~N[2020-12-04 16:13:22.852370]}\n\u001b[0m\u001b[22m\n16:13:22.861 [info"},{"event":"cmd_output","timestamp":1607098402,"output":"] Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.STMHa"},{"event":"cmd_output","timestamp":1607098402,"output":"ndler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandl"},{"event":"cmd_output","timestamp":1607098402,"output":"er-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], cool"},{"event":"cmd_output","timestamp":1607098402,"output":"ing_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher_cb: #"},{"event":"cmd_output","timestamp":1607098402,"output":"Function<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, returni"},{"event":"cmd_output","timestamp":1607098402,"output":"ng: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.P"},{"event":"cmd_output","timestamp":1607098402,"output":"pls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:22.861 [info] Periodic from module Elixir"},{"event":"cmd_output","timestamp":1607098402,"output":".Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 100 m"},{"event":"cmd_output","timestamp":1607098402,"output":"s, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args: %{al"},{"event":"cmd_output","timestamp":1607098402,"output":"lowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098402,"output":"s.Model.Ppls, observed_state: \"pending\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler."},{"event":"cmd_output","timestamp":1607098402,"output":"PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, "},{"event":"cmd_output","timestamp":1607098402,"output":":result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor"},{"event":"cmd_output","timestamp":1607098402,"output":"}\n\u001b[0m\u001b[22m\n16:13:22.861 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.QueuingState with"},{"event":"cmd_output","timestamp":1607098402,"output":" name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up"},{"event":"cmd_output","timestamp":1607098402,"output":"\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{allowed_states: [\"queuing\", \"running\", \""},{"event":"cmd_output","timestamp":1607098402,"output":"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", publish"},{"event":"cmd_output","timestamp":1607098402,"output":"er_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, retu"},{"event":"cmd_output","timestamp":1607098402,"output":"rning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Pp"},{"event":"cmd_output","timestamp":1607098402,"output":"l.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:22.862 [info] Periodic from module Eli"},{"event":"cmd_output","timestamp":1607098402,"output":"xir.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHandler.RunningState :: period: 10"},{"event":"cmd_output","timestamp":1607098402,"output":"0 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring args: %"},{"event":"cmd_output","timestamp":1607098402,"output":"{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Mode"},{"event":"cmd_output","timestamp":1607098402,"output":"l.Ppls, observed_state: \"running\", publisher_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler.Runni"},{"event":"cmd_output","timestamp":1607098402,"output":"ngState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :resu"},{"event":"cmd_output","timestamp":1607098402,"output":"lt, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b["},{"event":"cmd_output","timestamp":1607098402,"output":"0m\u001b[22m\n16:13:22.862 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.StoppingState with nam"},{"event":"cmd_output","timestamp":1607098402,"output":"e Elixir.Ppl.Ppls.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", "},{"event":"cmd_output","timestamp":1607098402,"output":"[\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cool"},{"event":"cmd_output","timestamp":1607098402,"output":"ing_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"stopping\", publisher_cb: #Fun"},{"event":"cmd_output","timestamp":1607098402,"output":"ction<0.71803493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id"},{"event":"cmd_output","timestamp":1607098402,"output":", :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Mode"},{"event":"cmd_output","timestamp":1607098402,"output":"l.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:22.865 [info] Periodic from module Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098402,"output":"SubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period:"},{"event":"cmd_output","timestamp":1607098402,"output":" 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurri"},{"event":"cmd_output","timestamp":1607098402,"output":"ng args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits"},{"event":"cmd_output","timestamp":1607098402,"output":".Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: ["},{"event":"cmd_output","timestamp":1607098402,"output":":id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSub"},{"event":"cmd_output","timestamp":1607098402,"output":"Inits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:22.865 [info] Periodic from modu"},{"event":"cmd_output","timestamp":1607098402,"output":"le Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler.Fetch"},{"event":"cmd_output","timestamp":1607098402,"output":"ingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-Fetch"},{"event":"cmd_output","timestamp":1607098402,"output":"ingState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"done\"], cooling_time"},{"event":"cmd_output","timestamp":1607098402,"output":"_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fetching\", publisher_cb"},{"event":"cmd_output","timestamp":1607098402,"output":": :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :rec"},{"event":"cmd_output","timestamp":1607098402,"output":"overy_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098402,"output":"\n16:13:22.866 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CompilationState with "},{"event":"cmd_output","timestamp":1607098402,"output":"name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 100 ms, metric_name: {\"Ppl.behold"},{"event":"cmd_output","timestamp":1607098402,"output":"er-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurring args: %{allowed_states: [\"r"},{"event":"cmd_output","timestamp":1607098402,"output":"egular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubIni"},{"event":"cmd_output","timestamp":1607098402,"output":"ts.Model.PplSubInits, observed_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, return"},{"event":"cmd_output","timestamp":1607098402,"output":"ing: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl."},{"event":"cmd_output","timestamp":1607098402,"output":"PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:22.867 [info] Periodic fro"},{"event":"cmd_output","timestamp":1607098402,"output":"m module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHand"},{"event":"cmd_output","timestamp":1607098402,"output":"ler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMH"},{"event":"cmd_output","timestamp":1607098402,"output":"andler-RegularInitState\"]}, recurring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, initial"},{"event":"cmd_output","timestamp":1607098402,"output":"_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_init\", publisher_cb: :skip, repo"},{"event":"cmd_output","timestamp":1607098402,"output":": Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, "},{"event":"cmd_output","timestamp":1607098402,"output":":ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:22.86"},{"event":"cmd_output","timestamp":1607098402,"output":"7 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.InitializingState with name Elixir.Pp"},{"event":"cmd_output","timestamp":1607098402,"output":"l.PplBlocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\""},{"event":"cmd_output","timestamp":1607098402,"output":"Ppl-PplBlocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"w"},{"event":"cmd_output","timestamp":1607098402,"output":"aiting\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state:"},{"event":"cmd_output","timestamp":1607098402,"output":" \"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :upda"},{"event":"cmd_output","timestamp":1607098402,"output":"ted_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlo"},{"event":"cmd_output","timestamp":1607098402,"output":"cks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:22.868 [info] Periodic from module Elixir.Ppl.PplBlo"},{"event":"cmd_output","timestamp":1607098402,"output":"cks.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler.WaitingState :: period: 1000 m"},{"event":"cmd_output","timestamp":1607098402,"output":"s, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurring args:"},{"event":"cmd_output","timestamp":1607098402,"output":" %{allowed_states: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks"},{"event":"cmd_output","timestamp":1607098402,"output":".Model.PplBlocks, observed_state: \"waiting\", publisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.ST"},{"event":"cmd_output","timestamp":1607098402,"output":"MHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at,"},{"event":"cmd_output","timestamp":1607098402,"output":" :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, ta"},{"event":"cmd_output","timestamp":1607098402,"output":"sk_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:22.868 [info] Periodic from module Elixir.Ppl.PplBlocks.STM"},{"event":"cmd_output","timestamp":1607098402,"output":"Handler.RunningState with name Elixir.Ppl.PplBlocks.STMHandler.RunningState :: period: 1000 ms, metr"},{"event":"cmd_output","timestamp":1607098402,"output":"ic_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, recurring args: %{allo"},{"event":"cmd_output","timestamp":1607098402,"output":"wed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Mode"},{"event":"cmd_output","timestamp":1607098402,"output":"l.PplBlocks, observed_state: \"running\", publisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHan"},{"event":"cmd_output","timestamp":1607098402,"output":"dler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :st"},{"event":"cmd_output","timestamp":1607098402,"output":"ate, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlo"},{"event":"cmd_output","timestamp":1607098402,"output":"cks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:22.869 [info] Periodic from module Elixir.Ppl.PplBlo"},{"event":"cmd_output","timestamp":1607098402,"output":"cks.STMHandler.StoppingState with name Elixir.Ppl.PplBlocks.STMHandler.StoppingState :: period: 1000"},{"event":"cmd_output","timestamp":1607098402,"output":" ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurring ar"},{"event":"cmd_output","timestamp":1607098402,"output":"gs: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model"},{"event":"cmd_output","timestamp":1607098402,"output":".PplBlocks, observed_state: \"stopping\", publisher_cb: #Function<0.104215991/1 in Ppl.PplBlocks.STMHa"},{"event":"cmd_output","timestamp":1607098402,"output":"ndler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :"},{"event":"cmd_output","timestamp":1607098402,"output":"state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplB"},{"event":"cmd_output","timestamp":1607098402,"output":"locks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:22.870 [info] Periodic from module Elixir.Block.Bl"},{"event":"cmd_output","timestamp":1607098402,"output":"ocks.STMHandler.InitializingState with name Elixir.Block.Blocks.STMHandler.InitializingState :: peri"},{"event":"cmd_output","timestamp":1607098402,"output":"od: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, re"},{"event":"cmd_output","timestamp":1607098402,"output":"curring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Block"},{"event":"cmd_output","timestamp":1607098402,"output":"s.Model.Blocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Block.EctoRepo, returning"},{"event":"cmd_output","timestamp":1607098402,"output":": [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.M"},{"event":"cmd_output","timestamp":1607098402,"output":"odel.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:22.872 [info] Periodic from module Elixir.Bl"},{"event":"cmd_output","timestamp":1607098402,"output":"ock.Blocks.STMHandler.RunningState with name Elixir.Block.Blocks.STMHandler.RunningState :: period: "},{"event":"cmd_output","timestamp":1607098402,"output":"100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-RunningState\"]}, recurring a"},{"event":"cmd_output","timestamp":1607098402,"output":"rgs: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.B"},{"event":"cmd_output","timestamp":1607098402,"output":"locks.Model.Blocks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning:"},{"event":"cmd_output","timestamp":1607098402,"output":" [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Mo"},{"event":"cmd_output","timestamp":1607098402,"output":"del.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:22.872 [info] Periodic from module Elixir.Blo"},{"event":"cmd_output","timestamp":1607098402,"output":"ck.Blocks.STMHandler.StoppingState with name Elixir.Block.Blocks.STMHandler.StoppingState :: period:"},{"event":"cmd_output","timestamp":1607098402,"output":" 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-StoppingState\"]}, recurring"},{"event":"cmd_output","timestamp":1607098402,"output":" args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Mod"},{"event":"cmd_output","timestamp":1607098402,"output":"el.Blocks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :"},{"event":"cmd_output","timestamp":1607098402,"output":"terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Bloc"},{"event":"cmd_output","timestamp":1607098402,"output":"ks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:22.872 [info] Periodic from module Elixir.Block.Tasks"},{"event":"cmd_output","timestamp":1607098402,"output":".STMHandler.PendingState with name Elixir.Block.Tasks.STMHandler.PendingState :: period: 100 ms, met"},{"event":"cmd_output","timestamp":1607098402,"output":"ric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingState\"]}, recurring args: %{allow"},{"event":"cmd_output","timestamp":1607098402,"output":"ed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Tasks.Model.Tasks, observe"},{"event":"cmd_output","timestamp":1607098402,"output":"d_state: \"pending\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, "},{"event":"cmd_output","timestamp":1607098402,"output":":updated_at, :state, :recovery_count, :block_id, :build_request_id], schema: Block.Tasks.Model.Tasks"},{"event":"cmd_output","timestamp":1607098402,"output":", task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:22.872 [info] Periodic from module Elixir.Block.Tasks.S"},{"event":"cmd_output","timestamp":1607098402,"output":"TMHandler.RunningState with name Elixir.Block.Tasks.STMHandler.RunningState :: period: 100 ms, metri"},{"event":"cmd_output","timestamp":1607098402,"output":"c_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningState\"]}, recurring args: %{allowed"},{"event":"cmd_output","timestamp":1607098402,"output":"_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tas"},{"event":"cmd_output","timestamp":1607098402,"output":"ks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminat"},{"event":"cmd_output","timestamp":1607098402,"output":"e_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_s"},{"event":"cmd_output","timestamp":1607098402,"output":"upervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:22.872 [info] Periodic from module Elixir.Block.Tasks.STMHandle"},{"event":"cmd_output","timestamp":1607098402,"output":"r.StoppingState with name Elixir.Block.Tasks.STMHandler.StoppingState :: period: 100 ms, metric_name"},{"event":"cmd_output","timestamp":1607098402,"output":": {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]}, recurring args: %{allowed_stat"},{"event":"cmd_output","timestamp":1607098402,"output":"es: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_sta"},{"event":"cmd_output","timestamp":1607098402,"output":"te: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :upd"},{"event":"cmd_output","timestamp":1607098402,"output":"ated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :ski"},{"event":"cmd_output","timestamp":1607098402,"output":"p}\n\u001b[0m\u001b[22m\n16:13:22.981 [info] ppl_id: 8909e87a-6cd4-492e-aff4-0785b5130bec, type: PplRequests,"},{"event":"cmd_output","timestamp":1607098402,"output":" event: persisted source_args for pipeline: 8909e87a-6cd4-492e-aff4-0785b5130bec, origin: Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098402,"output":".PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:13:22.983 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098402,"output":": 8909e87a-6cd4-492e-aff4-0785b5130bec, type: PplSubInits, state: fetching, event: exit_scheduling, "},{"event":"cmd_output","timestamp":1607098403,"output":"recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:23.006"},{"event":"cmd_output","timestamp":1607098403,"output":" [info] ppl_id: 8909e87a-6cd4-492e-aff4-0785b5130bec, type: PplSubInits, state: regular_init, event"},{"event":"cmd_output","timestamp":1607098403,"output":": exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098403,"output":"\u001b[22m\n16:13:23.034 [info] ppl_id: 8909e87a-6cd4-492e-aff4-0785b5130bec, type: PplRequests, event: "},{"event":"cmd_output","timestamp":1607098403,"output":"persisted definition for request with request_token: a1b519bc-364b-11eb-af9f-5254005464e2, origin: E"},{"event":"cmd_output","timestamp":1607098403,"output":"lixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:13:23.037 ["},{"event":"cmd_output","timestamp":1607098403,"output":"info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"que"},{"event":"cmd_output","timestamp":1607098403,"output":"ues\">, inserted_at: ~N[2020-12-04 16:13:23.036390], name: \"master-.semaphore/semaphore.yml\", organiz"},{"event":"cmd_output","timestamp":1607098403,"output":"ation_id: \"784dd077-5b2d-442f-8810-34775a6dae9c\", project_id: \"6a5fc803-ffe1-402a-806d-36540c393165\""},{"event":"cmd_output","timestamp":1607098403,"output":", queue_id: \"d6e077cb-defb-48f5-baf4-ea11e33b46aa\", scope: \"project\", updated_at: ~N[2020-12-04 16:1"},{"event":"cmd_output","timestamp":1607098403,"output":"3:23.036411], user_generated: false}}\n\u001b[0m\u001b[22m\n16:13:23.041 [info] event: created, origin: Elixi"},{"event":"cmd_output","timestamp":1607098403,"output":"r.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:23.041 [info] ppl"},{"event":"cmd_output","timestamp":1607098403,"output":"_id: 8909e87a-6cd4-492e-aff4-0785b5130bec, type: PplBlocks, block_index: 0, state: initializing, eve"},{"event":"cmd_output","timestamp":1607098403,"output":"nt: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1"},{"event":"cmd_output","timestamp":1607098403,"output":"(L105), \n\u001b[0m\u001b[22m\n16:13:23.042 [info] ppl_id: 8909e87a-6cd4-492e-aff4-0785b5130bec, type: PplSub"},{"event":"cmd_output","timestamp":1607098403,"output":"Inits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper"},{"event":"cmd_output","timestamp":1607098403,"output":".STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:23.048 [info] ppl_id: 8909e87a-6cd4-492e-aff4"},{"event":"cmd_output","timestamp":1607098403,"output":"-0785b5130bec, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098403,"output":".Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:23.049 [info] ppl_id: 8909e87a-6cd4-49"},{"event":"cmd_output","timestamp":1607098403,"output":"2e-aff4-0785b5130bec, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recov"},{"event":"cmd_output","timestamp":1607098403,"output":"ery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:23.064 [inf"},{"event":"cmd_output","timestamp":1607098403,"output":"o] ppl_id: 8909e87a-6cd4-492e-aff4-0785b5130bec, type: Ppls, state: queuing, event: exit_scheduling"},{"event":"cmd_output","timestamp":1607098403,"output":", recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:23.0"},{"event":"cmd_output","timestamp":1607098403,"output":"71 [info] ppl_id: 8909e87a-6cd4-492e-aff4-0785b5130bec, type: Ppls, state: running, event: exit_sch"},{"event":"cmd_output","timestamp":1607098403,"output":"eduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098403,"output":"13:23.075 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"8909e87a-6cd4-492"},{"event":"cmd_output","timestamp":1607098403,"output":"e-aff4-0785b5130bec\"\n\u001b[0m\u001b[22m\n16:13:23.085 [info] block_id: f0b5308d-35f3-4d2c-b2f3-c7106be65304"},{"event":"cmd_output","timestamp":1607098403,"output":", type: BlockRequests, event: persisted block run request from ppl 8909e87a-6cd4-492e-aff4-0785b5130"},{"event":"cmd_output","timestamp":1607098403,"output":"bec for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L3"},{"event":"cmd_output","timestamp":1607098403,"output":"5), \n\u001b[0m\u001b[22m\n16:13:23.087 [info] block_id: f0b5308d-35f3-4d2c-b2f3-c7106be65304, type: Blocks, "},{"event":"cmd_output","timestamp":1607098403,"output":"state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.Block"},{"event":"cmd_output","timestamp":1607098403,"output":"sQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:13:23.088 [info] Block 0 of pipeline with id: 8909e87a-6cd4"},{"event":"cmd_output","timestamp":1607098403,"output":"-492e-aff4-0785b5130bec scheduled in block service with id: : \"f0b5308d-35f3-4d2c-b2f3-c7106be65304\""},{"event":"cmd_output","timestamp":1607098403,"output":"\n\u001b[0m\u001b[22m\n16:13:23.090 [info] ppl_id: 8909e87a-6cd4-492e-aff4-0785b5130bec, type: PplBlocks, blo"},{"event":"cmd_output","timestamp":1607098403,"output":"ck_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Im"},{"event":"cmd_output","timestamp":1607098403,"output":"pl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:23.095 [info] block_id: f0b5308d-35f3-4d2c-b2f3-c710"},{"event":"cmd_output","timestamp":1607098403,"output":"6be65304, type: BlockRequests, event: persisted build and sub_ppl details for block_request: f0b5308"},{"event":"cmd_output","timestamp":1607098403,"output":"d-35f3-4d2c-b2f3-c7106be65304, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_"},{"event":"cmd_output","timestamp":1607098403,"output":"build/2(L41), \n\u001b[0m\u001b[22m\n16:13:23.097 [info] block_id: f0b5308d-35f3-4d2c-b2f3-c7106be65304, type"},{"event":"cmd_output","timestamp":1607098403,"output":": Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.I"},{"event":"cmd_output","timestamp":1607098403,"output":"nitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:13:23.099 [info] block_id: f0b5308d-35f3-4d2c-b2f"},{"event":"cmd_output","timestamp":1607098403,"output":"3-c7106be65304, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098403,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:23.128 [info] block_id: f0b5308d-35"},{"event":"cmd_output","timestamp":1607098403,"output":"f3-4d2c-b2f3-c7106be65304, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098403,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:23.197 [info] block_id: f"},{"event":"cmd_output","timestamp":1607098403,"output":"0b5308d-35f3-4d2c-b2f3-c7106be65304, type: Tasks, state: done, event: exit_scheduling, recovery_coun"},{"event":"cmd_output","timestamp":1607098403,"output":"t: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:23.206 [info] bloc"},{"event":"cmd_output","timestamp":1607098403,"output":"k_id: f0b5308d-35f3-4d2c-b2f3-c7106be65304, type: Blocks, state: done, event: exit_scheduling, recov"},{"event":"cmd_output","timestamp":1607098403,"output":"ery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:23.216 [inf"},{"event":"cmd_output","timestamp":1607098403,"output":"o] ppl_id: 8909e87a-6cd4-492e-aff4-0785b5130bec, block_id: f0b5308d-35f3-4d2c-b2f3-c7106be65304, ty"},{"event":"cmd_output","timestamp":1607098403,"output":"pe: PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: "},{"event":"cmd_output","timestamp":1607098403,"output":"0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:23.230 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098403,"output":" 8909e87a-6cd4-492e-aff4-0785b5130bec, type: Ppls, state: done, result: passed, event: exit_scheduli"},{"event":"cmd_output","timestamp":1607098403,"output":"ng, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test "},{"event":"cmd_output","timestamp":1607098403,"output":"Pipeline with parallelism in job definition passes (508.5ms)\u001b[0m\n * test Pipeline with both parall"},{"event":"cmd_output","timestamp":1607098403,"output":"elism and matrix in same job definition fails\u001b[22m\n16:13:23.363 [info] Request: 'run: %{\"branch_id"},{"event":"cmd_output","timestamp":1607098403,"output":"\" => \"17d30bb4-f6fd-4d86-bc4a-e6f8392ec57d\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469\""},{"event":"cmd_output","timestamp":1607098403,"output":", \"file_name\" => \"both-matrix-and-parallelism.fail.yml\", \"hook_id\" => \"a204d3c6-364b-11eb-a301-52540"},{"event":"cmd_output","timestamp":1607098403,"output":"05464e2\", \"label\" => \"master\", \"organization_id\" => \"16e6b5a0-b330-4388-896b-a72e263b3b1e\", \"owner\" "},{"event":"cmd_output","timestamp":1607098403,"output":"=> \"rt\", \"project_id\" => \"e02c3711-576a-4210-a14a-5abfc9a517a8\", \"repo_name\" => \"27_parallelism\", \"r"},{"event":"cmd_output","timestamp":1607098403,"output":"equest_token\" => \"a204c6c4-364b-11eb-ac1b-5254005464e2\", \"requester_id\" => \"4ad9084c-f4c3-4096-89d5-"},{"event":"cmd_output","timestamp":1607098403,"output":"e12b464de6a0\", \"service\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \""},{"event":"cmd_output","timestamp":1607098403,"output":"wf_id\" => \"48107224-852d-4999-9df2-a19b1cdc4a33\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:13:2"},{"event":"cmd_output","timestamp":1607098403,"output":"3.367 [info] ppl_id: 903d56f1-d8c7-4db5-8a21-550ae38f0a88, type: PplRequests, event: persisted sche"},{"event":"cmd_output","timestamp":1607098403,"output":"dule request with request_token: a204c6c4-364b-11eb-ac1b-5254005464e2, origin: Elixir.Ppl.PplRequest"},{"event":"cmd_output","timestamp":1607098403,"output":"s.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:13:23.370 [info] ppl_id: 903d56"},{"event":"cmd_output","timestamp":1607098403,"output":"f1-d8c7-4db5-8a21-550ae38f0a88, type: Ppls, state: initializing, event: initializing, recovery_count"},{"event":"cmd_output","timestamp":1607098403,"output":": 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:13:23.375 ["},{"event":"cmd_output","timestamp":1607098403,"output":"info] Project e02c3711-576a-4210-a14a-5abfc9a517a8 and branch masterlatest_wf details updated: \"wf_"},{"event":"cmd_output","timestamp":1607098403,"output":"id: 48107224-852d-4999-9df2-a19b1cdc4a33, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:13:23.377 [info] Persisted p"},{"event":"cmd_output","timestamp":1607098403,"output":"pl_sub_init for pipeline with ppl_id: 903d56f1-d8c7-4db5-8a21-550ae38f0a88: %Ppl.PplSubInits.Model.P"},{"event":"cmd_output","timestamp":1607098403,"output":"plSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, err"},{"event":"cmd_output","timestamp":1607098403,"output":"or_description: nil, id: 305, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04"},{"event":"cmd_output","timestamp":1607098403,"output":" 16:13:23.376102], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"903d56f1-d8c7-4db5-8a21-550ae38f0a88\", recovery_count: 0, result: nil, result_"},{"event":"cmd_output","timestamp":1607098403,"output":"reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2"},{"event":"cmd_output","timestamp":1607098403,"output":"020-12-04 16:13:23.376110]}\n\u001b[0m\u001b[22m\n16:13:23.382 [info] Periodic from module Elixir.Ppl.Ppls.ST"},{"event":"cmd_output","timestamp":1607098403,"output":"MHandler.InitializingState with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms,"},{"event":"cmd_output","timestamp":1607098403,"output":" metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %"},{"event":"cmd_output","timestamp":1607098403,"output":"{allowed_states: [\"initializing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.M"},{"event":"cmd_output","timestamp":1607098403,"output":"odel.Ppls, observed_state: \"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHand"},{"event":"cmd_output","timestamp":1607098403,"output":"ler.InitializingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at,"},{"event":"cmd_output","timestamp":1607098403,"output":" :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b"},{"event":"cmd_output","timestamp":1607098403,"output":"[0m\u001b[22m\n16:13:23.383 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingState with nam"},{"event":"cmd_output","timestamp":1607098403,"output":"e Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", ["},{"event":"cmd_output","timestamp":1607098403,"output":"\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"pending\", \"queuing\", \"runn"},{"event":"cmd_output","timestamp":1607098403,"output":"ing\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", p"},{"event":"cmd_output","timestamp":1607098403,"output":"ublisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, "},{"event":"cmd_output","timestamp":1607098403,"output":"returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema"},{"event":"cmd_output","timestamp":1607098403,"output":": Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:13:23.384 [info] Periodi"},{"event":"cmd_output","timestamp":1607098403,"output":"c from module Elixir.Ppl.Ppls.STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandler.QueuingSt"},{"event":"cmd_output","timestamp":1607098403,"output":"ate :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, "},{"event":"cmd_output","timestamp":1607098403,"output":"recurring args: %{allowed_states: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, initial_quer"},{"event":"cmd_output","timestamp":1607098403,"output":"y: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls"},{"event":"cmd_output","timestamp":1607098403,"output":".STMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_"},{"event":"cmd_output","timestamp":1607098403,"output":"at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}"},{"event":"cmd_output","timestamp":1607098403,"output":"\n\u001b[0m\u001b[22m\n16:13:23.385 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.RunningState with "},{"event":"cmd_output","timestamp":1607098403,"output":"name Elixir.Ppl.Ppls.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\""},{"event":"cmd_output","timestamp":1607098403,"output":", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \""},{"event":"cmd_output","timestamp":1607098403,"output":"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"running\", publish"},{"event":"cmd_output","timestamp":1607098403,"output":"er_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, retur"},{"event":"cmd_output","timestamp":1607098403,"output":"ning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl"},{"event":"cmd_output","timestamp":1607098403,"output":".Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:13:23.386 [info] Periodic fro"},{"event":"cmd_output","timestamp":1607098403,"output":"m module Elixir.Ppl.Ppls.STMHandler.StoppingState with name Elixir.Ppl.Ppls.STMHandler.StoppingState"},{"event":"cmd_output","timestamp":1607098403,"output":" :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, re"},{"event":"cmd_output","timestamp":1607098403,"output":"curring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls."},{"event":"cmd_output","timestamp":1607098403,"output":"Model.Ppls, observed_state: \"stopping\", publisher_cb: #Function<0.71803493/1 in Ppl.Ppls.STMHandler."},{"event":"cmd_output","timestamp":1607098403,"output":"StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state,"},{"event":"cmd_output","timestamp":1607098403,"output":" :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098403,"output":"\n16:13:23.387 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedState with name"},{"event":"cmd_output","timestamp":1607098403,"output":" Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_"},{"event":"cmd_output","timestamp":1607098403,"output":"up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args: %{allowed_states: [\"fetching\", \"d"},{"event":"cmd_output","timestamp":1607098403,"output":"one\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"creat"},{"event":"cmd_output","timestamp":1607098403,"output":"ed\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :sta"},{"event":"cmd_output","timestamp":1607098403,"output":"te, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: "},{"event":"cmd_output","timestamp":1607098403,"output":":skip}\n\u001b[0m\u001b[22m\n16:13:23.388 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.Fetch"},{"event":"cmd_output","timestamp":1607098403,"output":"ingState with name Elixir.Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 ms, metric_name: {"},{"event":"cmd_output","timestamp":1607098403,"output":"\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %{allowed_sta"},{"event":"cmd_output","timestamp":1607098403,"output":"tes: [\"regular_init\", \"compilation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.M"},{"event":"cmd_output","timestamp":1607098403,"output":"odel.PplSubInits, observed_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:"},{"event":"cmd_output","timestamp":1607098403,"output":"id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubI"},{"event":"cmd_output","timestamp":1607098403,"output":"nits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:23.388 [info] Periodic from modul"},{"event":"cmd_output","timestamp":1607098403,"output":"e Elixir.Ppl.PplSubInits.STMHandler.CompilationState with name Elixir.Ppl.PplSubInits.STMHandler.Com"},{"event":"cmd_output","timestamp":1607098403,"output":"pilationState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-"},{"event":"cmd_output","timestamp":1607098403,"output":"CompilationState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"stopping\", \""},{"event":"cmd_output","timestamp":1607098403,"output":"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"com"},{"event":"cmd_output","timestamp":1607098403,"output":"pilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at"},{"event":"cmd_output","timestamp":1607098403,"output":", :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_superv"},{"event":"cmd_output","timestamp":1607098403,"output":"isor: :skip}\n\u001b[0m\u001b[22m\n16:13:23.388 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler"},{"event":"cmd_output","timestamp":1607098403,"output":".RegularInitState with name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period: 100 ms, me"},{"event":"cmd_output","timestamp":1607098403,"output":"tric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurring args"},{"event":"cmd_output","timestamp":1607098403,"output":": %{allowed_states: [\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits,"},{"event":"cmd_output","timestamp":1607098403,"output":" observed_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminat"},{"event":"cmd_output","timestamp":1607098403,"output":"e_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.Pp"},{"event":"cmd_output","timestamp":1607098403,"output":"lSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:23.388 [info] Periodic from module Elixir.Ppl."},{"event":"cmd_output","timestamp":1607098403,"output":"PplBlocks.STMHandler.InitializingState with name Elixir.Ppl.PplBlocks.STMHandler.InitializingState :"},{"event":"cmd_output","timestamp":1607098403,"output":": period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-InitializingState"},{"event":"cmd_output","timestamp":1607098403,"output":"\"]}, recurring args: %{allowed_states: [\"initializing\", \"waiting\", \"done\"], cooling_time_sec: 0, ini"},{"event":"cmd_output","timestamp":1607098403,"output":"tial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"initializing\", publisher_cb: :skip, repo"},{"event":"cmd_output","timestamp":1607098403,"output":": Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, "},{"event":"cmd_output","timestamp":1607098403,"output":":ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098403,"output":"6:13:23.388 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.WaitingState with name Elix"},{"event":"cmd_output","timestamp":1607098403,"output":"ir.Ppl.PplBlocks.STMHandler.WaitingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", ["},{"event":"cmd_output","timestamp":1607098403,"output":"\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurring args: %{allowed_states: [\"waiting\", \"running\", "},{"event":"cmd_output","timestamp":1607098403,"output":"\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"waiting"},{"event":"cmd_output","timestamp":1607098403,"output":"\", publisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>, repo: Ppl.E"},{"event":"cmd_output","timestamp":1607098403,"output":"ctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id"},{"event":"cmd_output","timestamp":1607098403,"output":", :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:23"},{"event":"cmd_output","timestamp":1607098403,"output":".389 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.RunningState with name Elixir.Ppl."},{"event":"cmd_output","timestamp":1607098403,"output":"PplBlocks.STMHandler.RunningState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Pp"},{"event":"cmd_output","timestamp":1607098403,"output":"lBlocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\""},{"event":"cmd_output","timestamp":1607098403,"output":"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"running\", pu"},{"event":"cmd_output","timestamp":1607098403,"output":"blisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0>, repo: Ppl.EctoR"},{"event":"cmd_output","timestamp":1607098403,"output":"epo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :b"},{"event":"cmd_output","timestamp":1607098403,"output":"lock_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098403,"output":"6:13:23.389 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.StoppingState with name Eli"},{"event":"cmd_output","timestamp":1607098403,"output":"xir.Ppl.PplBlocks.STMHandler.StoppingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\","},{"event":"cmd_output","timestamp":1607098403,"output":" [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"]"},{"event":"cmd_output","timestamp":1607098403,"output":", cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"stopping\", pu"},{"event":"cmd_output","timestamp":1607098403,"output":"blisher_cb: #Function<0.104215991/1 in Ppl.PplBlocks.STMHandler.StoppingState.args/0>, repo: Ppl.Ect"},{"event":"cmd_output","timestamp":1607098403,"output":"oRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, "},{"event":"cmd_output","timestamp":1607098403,"output":":block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098403,"output":"\n16:13:23.389 [info] Periodic from module Elixir.Block.Blocks.STMHandler.InitializingState with nam"},{"event":"cmd_output","timestamp":1607098403,"output":"e Elixir.Block.Blocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wa"},{"event":"cmd_output","timestamp":1607098403,"output":"ke_up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"running\""},{"event":"cmd_output","timestamp":1607098403,"output":", \"done\"], cooling_time_sec: 0, initial_query: Block.Blocks.Model.Blocks, observed_state: \"initializ"},{"event":"cmd_output","timestamp":1607098403,"output":"ing\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :"},{"event":"cmd_output","timestamp":1607098403,"output":"state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m"},{"event":"cmd_output","timestamp":1607098403,"output":"\u001b[22m\n16:13:23.389 [info] Periodic from module Elixir.Block.Blocks.STMHandler.RunningState with na"},{"event":"cmd_output","timestamp":1607098403,"output":"me Elixir.Block.Blocks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_u"},{"event":"cmd_output","timestamp":1607098403,"output":"p\", [\"Block-Blocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stoppi"},{"event":"cmd_output","timestamp":1607098403,"output":"ng\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"runni"},{"event":"cmd_output","timestamp":1607098403,"output":"ng\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :s"},{"event":"cmd_output","timestamp":1607098403,"output":"tate, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098403,"output":"[22m\n16:13:23.389 [info] Periodic from module Elixir.Block.Blocks.STMHandler.StoppingState with na"},{"event":"cmd_output","timestamp":1607098403,"output":"me Elixir.Block.Blocks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_"},{"event":"cmd_output","timestamp":1607098403,"output":"up\", [\"Block-Blocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"don"},{"event":"cmd_output","timestamp":1607098403,"output":"e\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"stopping\", pub"},{"event":"cmd_output","timestamp":1607098403,"output":"lisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :r"},{"event":"cmd_output","timestamp":1607098403,"output":"ecovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098403,"output":":13:23.390 [info] Periodic from module Elixir.Block.Tasks.STMHandler.PendingState with name Elixir."},{"event":"cmd_output","timestamp":1607098403,"output":"Block.Tasks.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block"},{"event":"cmd_output","timestamp":1607098403,"output":"-Tasks-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_ti"},{"event":"cmd_output","timestamp":1607098403,"output":"me_sec: 0, initial_query: Block.Tasks.Model.Tasks, observed_state: \"pending\", publisher_cb: :skip, r"},{"event":"cmd_output","timestamp":1607098403,"output":"epo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :blo"},{"event":"cmd_output","timestamp":1607098403,"output":"ck_id, :build_request_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098403,"output":"3:23.390 [info] Periodic from module Elixir.Block.Tasks.STMHandler.RunningState with name Elixir.Bl"},{"event":"cmd_output","timestamp":1607098403,"output":"ock.Tasks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-T"},{"event":"cmd_output","timestamp":1607098403,"output":"asks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], "},{"event":"cmd_output","timestamp":1607098403,"output":"cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"running\", publisher_c"},{"event":"cmd_output","timestamp":1607098403,"output":"b: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_"},{"event":"cmd_output","timestamp":1607098403,"output":"count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:23.390"},{"event":"cmd_output","timestamp":1607098403,"output":" [info] Periodic from module Elixir.Block.Tasks.STMHandler.StoppingState with name Elixir.Block.Tas"},{"event":"cmd_output","timestamp":1607098403,"output":"ks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-S"},{"event":"cmd_output","timestamp":1607098403,"output":"TMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec"},{"event":"cmd_output","timestamp":1607098403,"output":": -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"stopping\", publisher_cb: :skip, repo:"},{"event":"cmd_output","timestamp":1607098403,"output":" Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_i"},{"event":"cmd_output","timestamp":1607098403,"output":"d], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:23.506 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098403,"output":": 903d56f1-d8c7-4db5-8a21-550ae38f0a88, type: PplRequests, event: persisted source_args for pipeline"},{"event":"cmd_output","timestamp":1607098403,"output":": 903d56f1-d8c7-4db5-8a21-550ae38f0a88, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.inse"},{"event":"cmd_output","timestamp":1607098403,"output":"rt_source/2(L89), \n\u001b[0m\u001b[22m\n16:13:23.509 [info] ppl_id: 903d56f1-d8c7-4db5-8a21-550ae38f0a88, ty"},{"event":"cmd_output","timestamp":1607098403,"output":"pe: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.S"},{"event":"cmd_output","timestamp":1607098403,"output":"TM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:23.532 [info] ppl_id: 903d56f1-d8c7-4db5-8a21-5"},{"event":"cmd_output","timestamp":1607098403,"output":"50ae38f0a88, type: PplSubInits, state: done, result: failed, event: exit_scheduling, recovery_count:"},{"event":"cmd_output","timestamp":1607098403,"output":" 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:23.540 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098403,"output":": 903d56f1-d8c7-4db5-8a21-550ae38f0a88, type: Ppls, state: done, result: failed, event: exit_schedul"},{"event":"cmd_output","timestamp":1607098403,"output":"ing, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test"},{"event":"cmd_output","timestamp":1607098403,"output":" Pipeline with both parallelism and matrix in same job definition fails (307.5ms)\u001b[0m\n\nPpl.E2E.Par"},{"event":"cmd_output","timestamp":1607098403,"output":"allelRuns.Test\n * test when parallel queue processing is set up pipelines from same queue are run "},{"event":"cmd_output","timestamp":1607098403,"output":"in parallel\u001b[22m\n16:13:23.667 [info] Request: 'run: %{\"branch_id\" => \"fef80cf7-65e0-45b5-8845-f356"},{"event":"cmd_output","timestamp":1607098403,"output":"c8c3edc5\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"semaphore.yml\", "},{"event":"cmd_output","timestamp":1607098403,"output":"\"hook_id\" => \"a232c470-364b-11eb-8759-5254005464e2\", \"label\" => \"master\", \"organization_id\" => \"456\""},{"event":"cmd_output","timestamp":1607098403,"output":", \"owner\" => \"rt\", \"project_id\" => \"123\", \"repo_name\" => \"29_parallel_runs\", \"request_token\" => \"a23"},{"event":"cmd_output","timestamp":1607098403,"output":"2ba7a-364b-11eb-8fd8-5254005464e2\", \"requester_id\" => \"5aa944af-9b53-44f0-a9ee-99dc5b4c7b28\", \"servi"},{"event":"cmd_output","timestamp":1607098403,"output":"ce\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"1e549662-7"},{"event":"cmd_output","timestamp":1607098403,"output":"b00-4c6f-b984-6cd27b92020b\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:13:23.670 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098403,"output":" 7046a4aa-cbc3-4dd8-bb6e-6888e7185f4e, type: PplRequests, event: persisted schedule request with req"},{"event":"cmd_output","timestamp":1607098403,"output":"uest_token: a232ba7a-364b-11eb-8fd8-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQu"},{"event":"cmd_output","timestamp":1607098403,"output":"eries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:13:23.673 [info] ppl_id: 7046a4aa-cbc3-4dd8-bb6e-688"},{"event":"cmd_output","timestamp":1607098403,"output":"8e7185f4e, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.P"},{"event":"cmd_output","timestamp":1607098403,"output":"pl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:13:23.679 [info] Project 123 an"},{"event":"cmd_output","timestamp":1607098403,"output":"d branch masterlatest_wf details updated: \"wf_id: 1e549662-7b00-4c6f-b984-6cd27b92020b, wf_number: 1"},{"event":"cmd_output","timestamp":1607098403,"output":"\"\n\u001b[0m\u001b[22m\n16:13:23.681 [info] Persisted ppl_sub_init for pipeline with ppl_id: 7046a4aa-cbc3-4d"},{"event":"cmd_output","timestamp":1607098403,"output":"d8-bb6e-6888e7185f4e: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"p"},{"event":"cmd_output","timestamp":1607098403,"output":"ipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 306, in_scheduling: false, in"},{"event":"cmd_output","timestamp":1607098403,"output":"it_type: \"regular\", inserted_at: ~N[2020-12-04 16:13:23.680319], pipeline_requests: #Ecto.Associatio"},{"event":"cmd_output","timestamp":1607098403,"output":"n.NotLoaded, ppl_id: \"7046a4aa-cbc3-4dd8-bb6e-6888e718"},{"event":"cmd_output","timestamp":1607098403,"output":"5f4e\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil,"},{"event":"cmd_output","timestamp":1607098403,"output":" terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:13:23.680330]}\n\u001b[0m\u001b[22m\n16:13:23.689 ["},{"event":"cmd_output","timestamp":1607098403,"output":"info] Request: 'run: %{\"branch_id\" => \"79d62a3d-fac2-483b-8c65-f0eaad1f1766\", \"branch_name\" => \"dev"},{"event":"cmd_output","timestamp":1607098403,"output":"\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"semaphore.yml\", \"hook_id\" => \"a236c250-364b-11eb-8c"},{"event":"cmd_output","timestamp":1607098403,"output":"df-5254005464e2\", \"label\" => \"dev\", \"organization_id\" => \"456\", \"owner\" => \"rt\", \"project_id\" => \"12"},{"event":"cmd_output","timestamp":1607098403,"output":"3\", \"repo_name\" => \"29_parallel_runs\", \"request_token\" => \"a236b2b0-364b-11eb-a50d-5254005464e2\", \"r"},{"event":"cmd_output","timestamp":1607098403,"output":"equester_id\" => \"ee067d71-4fad-4b11-acf3-1d7ee460a8fc\", \"service\" => \"local\", \"suppressed_attributes"},{"event":"cmd_output","timestamp":1607098403,"output":"\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"67575f67-b10e-4dda-812a-ec246449d4ef\", \"working_"},{"event":"cmd_output","timestamp":1607098403,"output":"dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:13:23.694 [info] ppl_id: bc524481-017f-412d-a0f4-c83ef191cbab,"},{"event":"cmd_output","timestamp":1607098403,"output":" type: PplRequests, event: persisted schedule request with request_token: a236b2b0-364b-11eb-a50d-52"},{"event":"cmd_output","timestamp":1607098403,"output":"54005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098403,"output":"[22m\n16:13:23.697 [info] ppl_id: bc524481-017f-412d-a0f4-c83ef191cbab, type: Ppls, state: initiali"},{"event":"cmd_output","timestamp":1607098403,"output":"zing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_resp"},{"event":"cmd_output","timestamp":1607098403,"output":"onse/2(L124), \n\u001b[0m\u001b[22m\n16:13:23.702 [info] Project 123 and branch devlatest_wf details updated:"},{"event":"cmd_output","timestamp":1607098403,"output":" \"wf_id: 67575f67-b10e-4dda-812a-ec246449d4ef, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:13:23.704 [info] Persis"},{"event":"cmd_output","timestamp":1607098403,"output":"ted ppl_sub_init for pipeline with ppl_id: bc524481-017f-412d-a0f4-c83ef191cbab: %Ppl.PplSubInits.Mo"},{"event":"cmd_output","timestamp":1607098403,"output":"del.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil"},{"event":"cmd_output","timestamp":1607098403,"output":", error_description: nil, id: 307, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-"},{"event":"cmd_output","timestamp":1607098403,"output":"12-04 16:13:23.702394], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"bc524481-017f-412d-a0f4-c83ef191cbab\", recovery_count: 0, result: nil, re"},{"event":"cmd_output","timestamp":1607098403,"output":"sult_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at:"},{"event":"cmd_output","timestamp":1607098403,"output":" ~N[2020-12-04 16:13:23.702402]}\n\u001b[0m\u001b[22m\n16:13:23.717 [info] Request: 'run: %{\"branch_id\" => \"6"},{"event":"cmd_output","timestamp":1607098403,"output":"371283d-e409-4d3c-9c39-336e70d46c5f\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469\", \"file"},{"event":"cmd_output","timestamp":1607098403,"output":"_name\" => \"semaphore.yml\", \"hook_id\" => \"a23b07ca-364b-11eb-b06c-5254005464e2\", \"label\" => \"master\","},{"event":"cmd_output","timestamp":1607098403,"output":" \"organization_id\" => \"456\", \"owner\" => \"rt\", \"project_id\" => \"123\", \"repo_name\" => \"29_parallel_run"},{"event":"cmd_output","timestamp":1607098403,"output":"s\", \"request_token\" => \"a23aff46-364b-11eb-87d1-5254005464e2\", \"requester_id\" => \"4a81dad1-d01a-4c66"},{"event":"cmd_output","timestamp":1607098403,"output":"-8728-c4f3541a812a\", \"service\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secre"},{"event":"cmd_output","timestamp":1607098403,"output":"t\"], \"wf_id\" => \"483b3f9e-65dc-406b-a992-08dbd2b7f730\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098403,"output":"6:13:23.720 [info] ppl_id: a871ec7a-29e9-4260-b31c-5205f6417a27, type: PplRequests, event: persiste"},{"event":"cmd_output","timestamp":1607098403,"output":"d schedule request with request_token: a23aff46-364b-11eb-87d1-5254005464e2, origin: Elixir.Ppl.PplR"},{"event":"cmd_output","timestamp":1607098403,"output":"equests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:13:23.723 [info] ppl_id: "},{"event":"cmd_output","timestamp":1607098403,"output":"a871ec7a-29e9-4260-b31c-5205f6417a27, type: Ppls, state: initializing, event: initializing, recovery"},{"event":"cmd_output","timestamp":1607098403,"output":"_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:13:23"},{"event":"cmd_output","timestamp":1607098403,"output":".726 [info] Project 123 and branch masterlatest_wf details updated: \"wf_id: 483b3f9e-65dc-406b-a992"},{"event":"cmd_output","timestamp":1607098403,"output":"-08dbd2b7f730, wf_number: 2\"\n\u001b[0m\u001b[22m\n16:13:23.728 [info] Persisted ppl_sub_init for pipeline wi"},{"event":"cmd_output","timestamp":1607098403,"output":"th ppl_id: a871ec7a-29e9-4260-b31c-5205f6417a27: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto."},{"event":"cmd_output","timestamp":1607098403,"output":"Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 30"},{"event":"cmd_output","timestamp":1607098403,"output":"8, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:13:23.726402], pipeline"},{"event":"cmd_output","timestamp":1607098403,"output":"_requests: #Ecto.Association.NotLoaded, ppl_id: \"a871e"},{"event":"cmd_output","timestamp":1607098403,"output":"c7a-29e9-4260-b31c-5205f6417a27\", recovery_count: 0, result: nil, result_reason: nil, state: \"create"},{"event":"cmd_output","timestamp":1607098403,"output":"d\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:13:23.726409]}"},{"event":"cmd_output","timestamp":1607098403,"output":"\n\u001b[0m\u001b[22m\n16:13:23.734 [info] Request: 'run: %{\"branch_id\" => \"bbf49901-06ae-4541-8d27-411576af0"},{"event":"cmd_output","timestamp":1607098403,"output":"7ec\", \"branch_name\" => \"dev\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"semaphore.yml\", \"hook_id"},{"event":"cmd_output","timestamp":1607098403,"output":"\" => \"a23da778-364b-11eb-bdf5-5254005464e2\", \"label\" => \"dev\", \"organization_id\" => \"456\", \"owner\" ="},{"event":"cmd_output","timestamp":1607098403,"output":"> \"rt\", \"project_id\" => \"123\", \"repo_name\" => \"29_parallel_runs\", \"request_token\" => \"a23d9ee0-364b-"},{"event":"cmd_output","timestamp":1607098403,"output":"11eb-9eae-5254005464e2\", \"requester_id\" => \"7378b7b6-4a12-419a-919a-2e265b36116c\", \"service\" => \"loc"},{"event":"cmd_output","timestamp":1607098403,"output":"al\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"90e0005d-6495-4f30-87"},{"event":"cmd_output","timestamp":1607098403,"output":"5d-c5489e9e1f6f\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:13:23.737 [info] ppl_id: 4cdf71b3-f"},{"event":"cmd_output","timestamp":1607098403,"output":"111-4cd6-8997-75cd14904c7a, type: PplRequests, event: persisted schedule request with request_token:"},{"event":"cmd_output","timestamp":1607098403,"output":" a23d9ee0-364b-11eb-9eae-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.proce"},{"event":"cmd_output","timestamp":1607098403,"output":"ss_response/2(L55), \n\u001b[0m\u001b[22m\n16:13:23.739 [info] ppl_id: 4cdf71b3-f111-4cd6-8997-75cd14904c7a, "},{"event":"cmd_output","timestamp":1607098403,"output":"type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Mod"},{"event":"cmd_output","timestamp":1607098403,"output":"el.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:13:23.742 [info] Project 123 and branch de"},{"event":"cmd_output","timestamp":1607098403,"output":"vlatest_wf details updated: \"wf_id: 90e0005d-6495-4f30-875d-c5489e9e1f6f, wf_number: 2\"\n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098403,"output":"16:13:23.744 [info] Persisted ppl_sub_init for pipeline with ppl_id: 4cdf71b3-f111-4cd6-8997-75cd14"},{"event":"cmd_output","timestamp":1607098403,"output":"904c7a: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_in"},{"event":"cmd_output","timestamp":1607098403,"output":"its\">, compile_task_id: nil, error_description: nil, id: 309, in_scheduling: false, init_type: \"regu"},{"event":"cmd_output","timestamp":1607098403,"output":"lar\", inserted_at: ~N[2020-12-04 16:13:23.742219], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"4cdf71b3-f111-4cd6-8997-75cd14904c7a\", recover"},{"event":"cmd_output","timestamp":1607098403,"output":"y_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_req"},{"event":"cmd_output","timestamp":1607098403,"output":"uest_desc: nil, updated_at: ~N[2020-12-04 16:13:23.742226]}\n\u001b[0m\u001b[22m\n16:13:23.748 [info] Periodi"},{"event":"cmd_output","timestamp":1607098403,"output":"c from module Elixir.Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.STMHandler.Init"},{"event":"cmd_output","timestamp":1607098403,"output":"ializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Initial"},{"event":"cmd_output","timestamp":1607098403,"output":"izingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], cooling_time_s"},{"event":"cmd_output","timestamp":1607098403,"output":"ec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher_cb: #Function<0"},{"event":"cmd_output","timestamp":1607098403,"output":".125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, "},{"event":"cmd_output","timestamp":1607098403,"output":":terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model."},{"event":"cmd_output","timestamp":1607098403,"output":"Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:23.748 [info] Periodic from module Elixir.Ppl.Ppls."},{"event":"cmd_output","timestamp":1607098403,"output":"STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 100 ms, metric_"},{"event":"cmd_output","timestamp":1607098403,"output":"name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args: %{allowed_stat"},{"event":"cmd_output","timestamp":1607098403,"output":"es: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Pp"},{"event":"cmd_output","timestamp":1607098403,"output":"ls, observed_state: \"pending\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler.PendingSta"},{"event":"cmd_output","timestamp":1607098403,"output":"te.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :"},{"event":"cmd_output","timestamp":1607098403,"output":"recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098403,"output":"2m\n16:13:23.749 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.QueuingState with name Elix"},{"event":"cmd_output","timestamp":1607098403,"output":"ir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-P"},{"event":"cmd_output","timestamp":1607098403,"output":"pls-STMHandler-QueuingState\"]}, recurring args: %{allowed_states: [\"queuing\", \"running\", \"done\"], co"},{"event":"cmd_output","timestamp":1607098403,"output":"oling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", publisher_cb: #Fu"},{"event":"cmd_output","timestamp":1607098403,"output":"nction<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, returning: [:i"},{"event":"cmd_output","timestamp":1607098403,"output":"d, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Mod"},{"event":"cmd_output","timestamp":1607098403,"output":"el.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:23.749 [info] Periodic from module Elixir.Ppl.Pp"},{"event":"cmd_output","timestamp":1607098403,"output":"lSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period"},{"event":"cmd_output","timestamp":1607098403,"output":": 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurr"},{"event":"cmd_output","timestamp":1607098403,"output":"ing args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInit"},{"event":"cmd_output","timestamp":1607098403,"output":"s.Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: "},{"event":"cmd_output","timestamp":1607098403,"output":"[:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSu"},{"event":"cmd_output","timestamp":1607098403,"output":"bInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:23.749 [info] Periodic from mod"},{"event":"cmd_output","timestamp":1607098403,"output":"ule Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler.Fetc"},{"event":"cmd_output","timestamp":1607098403,"output":"hingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-Fetc"},{"event":"cmd_output","timestamp":1607098403,"output":"hingState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"done\"], cooling_tim"},{"event":"cmd_output","timestamp":1607098403,"output":"e_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fetching\", publisher_c"},{"event":"cmd_output","timestamp":1607098403,"output":"b: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :re"},{"event":"cmd_output","timestamp":1607098403,"output":"covery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098403,"output":"m\n16:13:23.749 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CompilationState with"},{"event":"cmd_output","timestamp":1607098403,"output":" name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 100 ms, metric_name: {\"Ppl.behol"},{"event":"cmd_output","timestamp":1607098403,"output":"der-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurring args: %{allowed_states: [\""},{"event":"cmd_output","timestamp":1607098403,"output":"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubIn"},{"event":"cmd_output","timestamp":1607098403,"output":"its.Model.PplSubInits, observed_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, retur"},{"event":"cmd_output","timestamp":1607098403,"output":"ning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl"},{"event":"cmd_output","timestamp":1607098403,"output":".PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:23.749 [info] Periodic fr"},{"event":"cmd_output","timestamp":1607098403,"output":"om module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHan"},{"event":"cmd_output","timestamp":1607098403,"output":"dler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STM"},{"event":"cmd_output","timestamp":1607098403,"output":"Handler-RegularInitState\"]}, recurring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, initia"},{"event":"cmd_output","timestamp":1607098403,"output":"l_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_init\", publisher_cb: :skip, rep"},{"event":"cmd_output","timestamp":1607098403,"output":"o: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count,"},{"event":"cmd_output","timestamp":1607098403,"output":" :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:23.7"},{"event":"cmd_output","timestamp":1607098403,"output":"49 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.InitializingState with name Elixir.P"},{"event":"cmd_output","timestamp":1607098403,"output":"pl.PplBlocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", ["},{"event":"cmd_output","timestamp":1607098403,"output":"\"Ppl-PplBlocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \""},{"event":"cmd_output","timestamp":1607098403,"output":"waiting\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state"},{"event":"cmd_output","timestamp":1607098403,"output":": \"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :upd"},{"event":"cmd_output","timestamp":1607098403,"output":"ated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBl"},{"event":"cmd_output","timestamp":1607098403,"output":"ocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:23.750 [info] Periodic from module Elixir.Ppl.PplBl"},{"event":"cmd_output","timestamp":1607098403,"output":"ocks.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler.WaitingState :: period: 1000 "},{"event":"cmd_output","timestamp":1607098403,"output":"ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurring args"},{"event":"cmd_output","timestamp":1607098403,"output":": %{allowed_states: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlock"},{"event":"cmd_output","timestamp":1607098403,"output":"s.Model.PplBlocks, observed_state: \"waiting\", publisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.S"},{"event":"cmd_output","timestamp":1607098403,"output":"TMHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at"},{"event":"cmd_output","timestamp":1607098403,"output":", :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, t"},{"event":"cmd_output","timestamp":1607098403,"output":"ask_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:23.750 [info] Periodic from module Elixir.Ppl.PplBlocks.ST"},{"event":"cmd_output","timestamp":1607098403,"output":"MHandler.RunningState with name Elixir.Ppl.PplBlocks.STMHandler.RunningState :: period: 1000 ms, met"},{"event":"cmd_output","timestamp":1607098403,"output":"ric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, recurring args: %{all"},{"event":"cmd_output","timestamp":1607098403,"output":"owed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Mod"},{"event":"cmd_output","timestamp":1607098403,"output":"el.PplBlocks, observed_state: \"running\", publisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHa"},{"event":"cmd_output","timestamp":1607098403,"output":"ndler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :s"},{"event":"cmd_output","timestamp":1607098403,"output":"tate, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBl"},{"event":"cmd_output","timestamp":1607098403,"output":"ocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:23.750 [info] Periodic from module Elixir.Ppl.PplBl"},{"event":"cmd_output","timestamp":1607098403,"output":"ocks.STMHandler.StoppingState with name Elixir.Ppl.PplBlocks.STMHandler.StoppingState :: period: 100"},{"event":"cmd_output","timestamp":1607098403,"output":"0 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurring a"},{"event":"cmd_output","timestamp":1607098403,"output":"rgs: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Mode"},{"event":"cmd_output","timestamp":1607098403,"output":"l.PplBlocks, observed_state: \"stopping\", publisher_cb: #Function<0.104215991/1 in Ppl.PplBlocks.STMH"},{"event":"cmd_output","timestamp":1607098403,"output":"andler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, "},{"event":"cmd_output","timestamp":1607098403,"output":":state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.Ppl"},{"event":"cmd_output","timestamp":1607098403,"output":"Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:23.750 [info] Periodic from module Elixir.Block.B"},{"event":"cmd_output","timestamp":1607098403,"output":"locks.STMHandler.InitializingState with name Elixir.Block.Blocks.STMHandler.InitializingState :: per"},{"event":"cmd_output","timestamp":1607098403,"output":"iod: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, r"},{"event":"cmd_output","timestamp":1607098403,"output":"ecurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Bloc"},{"event":"cmd_output","timestamp":1607098403,"output":"ks.Model.Blocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Block.EctoRepo, returnin"},{"event":"cmd_output","timestamp":1607098403,"output":"g: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks."},{"event":"cmd_output","timestamp":1607098403,"output":"Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:23.754 [info] Periodic from module Elixir.B"},{"event":"cmd_output","timestamp":1607098403,"output":"lock.Blocks.STMHandler.RunningState with name Elixir.Block.Blocks.STMHandler.RunningState :: period:"},{"event":"cmd_output","timestamp":1607098403,"output":" 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-RunningState\"]}, recurring "},{"event":"cmd_output","timestamp":1607098403,"output":"args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block."},{"event":"cmd_output","timestamp":1607098403,"output":"Blocks.Model.Blocks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning"},{"event":"cmd_output","timestamp":1607098403,"output":": [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.M"},{"event":"cmd_output","timestamp":1607098403,"output":"odel.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:23.755 [info] Periodic from module Elixir.Bl"},{"event":"cmd_output","timestamp":1607098403,"output":"ock.Blocks.STMHandler.StoppingState with name Elixir.Block.Blocks.STMHandler.StoppingState :: period"},{"event":"cmd_output","timestamp":1607098403,"output":": 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-StoppingState\"]}, recurrin"},{"event":"cmd_output","timestamp":1607098403,"output":"g args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Mo"},{"event":"cmd_output","timestamp":1607098403,"output":"del.Blocks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, "},{"event":"cmd_output","timestamp":1607098403,"output":":terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blo"},{"event":"cmd_output","timestamp":1607098403,"output":"cks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:23.756 [info] Periodic from module Elixir.Block.Task"},{"event":"cmd_output","timestamp":1607098403,"output":"s.STMHandler.PendingState with name Elixir.Block.Tasks.STMHandler.PendingState :: period: 100 ms, me"},{"event":"cmd_output","timestamp":1607098403,"output":"tric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingState\"]}, recurring args: %{allo"},{"event":"cmd_output","timestamp":1607098403,"output":"wed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Tasks.Model.Tasks, observ"},{"event":"cmd_output","timestamp":1607098403,"output":"ed_state: \"pending\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request,"},{"event":"cmd_output","timestamp":1607098403,"output":" :updated_at, :state, :recovery_count, :block_id, :build_request_id], schema: Block.Tasks.Model.Task"},{"event":"cmd_output","timestamp":1607098403,"output":"s, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:23.756 [info] Periodic from module Elixir.Block.Tasks."},{"event":"cmd_output","timestamp":1607098403,"output":"STMHandler.RunningState with name Elixir.Block.Tasks.STMHandler.RunningState :: period: 100 ms, metr"},{"event":"cmd_output","timestamp":1607098403,"output":"ic_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningState\"]}, recurring args: %{allowe"},{"event":"cmd_output","timestamp":1607098403,"output":"d_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Ta"},{"event":"cmd_output","timestamp":1607098403,"output":"sks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :termina"},{"event":"cmd_output","timestamp":1607098403,"output":"te_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_"},{"event":"cmd_output","timestamp":1607098403,"output":"supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:23.757 [info] Periodic from module Elixir.Block.Tasks.STMHandl"},{"event":"cmd_output","timestamp":1607098403,"output":"er.StoppingState with name Elixir.Block.Tasks.STMHandler.StoppingState :: period: 100 ms, metric_nam"},{"event":"cmd_output","timestamp":1607098403,"output":"e: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]}, recurring args: %{allowed_sta"},{"event":"cmd_output","timestamp":1607098403,"output":"tes: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_st"},{"event":"cmd_output","timestamp":1607098403,"output":"ate: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :up"},{"event":"cmd_output","timestamp":1607098403,"output":"dated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :sk"},{"event":"cmd_output","timestamp":1607098403,"output":"ip}\n\u001b[0m\u001b[22m\n16:13:23.867 [info] ppl_id: 7046a4aa-cbc3-4dd8-bb6e-6888e7185f4e, type: PplRequests"},{"event":"cmd_output","timestamp":1607098403,"output":", event: persisted source_args for pipeline: 7046a4aa-cbc3-4dd8-bb6e-6888e7185f4e, origin: Elixir.Pp"},{"event":"cmd_output","timestamp":1607098403,"output":"l.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:13:23.870 [info] ppl_i"},{"event":"cmd_output","timestamp":1607098403,"output":"d: 7046a4aa-cbc3-4dd8-bb6e-6888e7185f4e, type: PplSubInits, state: fetching, event: exit_scheduling,"},{"event":"cmd_output","timestamp":1607098403,"output":" recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:23.88"},{"event":"cmd_output","timestamp":1607098403,"output":"6 [info] ppl_id: 7046a4aa-cbc3-4dd8-bb6e-6888e7185f4e, type: PplSubInits, state: regular_init, even"},{"event":"cmd_output","timestamp":1607098403,"output":"t: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098403,"output":"m\u001b[22m\n16:13:23.905 [info] ppl_id: 7046a4aa-cbc3-4dd8-bb6e-6888e7185f4e, type: PplRequests, event:"},{"event":"cmd_output","timestamp":1607098403,"output":" persisted definition for request with request_token: a232ba7a-364b-11eb-8fd8-5254005464e2, origin: "},{"event":"cmd_output","timestamp":1607098403,"output":"Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:13:23.916 "},{"event":"cmd_output","timestamp":1607098403,"output":"[info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"qu"},{"event":"cmd_output","timestamp":1607098403,"output":"eues\">, inserted_at: ~N[2020-12-04 16:13:23.907173], name: \"production\", organization_id: \"456\", pro"},{"event":"cmd_output","timestamp":1607098403,"output":"ject_id: \"123\", queue_id: \"9b013794-3c20-44e6-95d9-309822cbe6d7\", scope: \"project\", updated_at: ~N[2"},{"event":"cmd_output","timestamp":1607098403,"output":"020-12-04 16:13:23.907182], user_generated: true}}\n\u001b[0m\u001b[22m\n16:13:23.920 [info] event: created, "},{"event":"cmd_output","timestamp":1607098403,"output":"origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:23.92"},{"event":"cmd_output","timestamp":1607098403,"output":"0 [info] ppl_id: 7046a4aa-cbc3-4dd8-bb6e-6888e7185f4e, type: PplBlocks, block_index: 0, state: init"},{"event":"cmd_output","timestamp":1607098403,"output":"ializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitSt"},{"event":"cmd_output","timestamp":1607098403,"output":"ate.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:23.922 [info] ppl_id: 7046a4aa-cbc3-4dd8-bb6e-6888e7185f4e,"},{"event":"cmd_output","timestamp":1607098403,"output":" type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098403,"output":"Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:23.931 [info] ppl_id: 7046a4aa-c"},{"event":"cmd_output","timestamp":1607098403,"output":"bc3-4dd8-bb6e-6888e7185f4e, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098403,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:23.932 [info] ppl_id: 704"},{"event":"cmd_output","timestamp":1607098403,"output":"6a4aa-cbc3-4dd8-bb6e-6888e7185f4e, type: PplBlocks, block_index: 0, state: waiting, event: exit_sche"},{"event":"cmd_output","timestamp":1607098403,"output":"duling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098403,"output":"3:23.943 [info] ppl_id: 7046a4aa-cbc3-4dd8-bb6e-6888e7185f4e, type: Ppls, state: queuing, event: ex"},{"event":"cmd_output","timestamp":1607098403,"output":"it_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098403,"output":"m\n16:13:23.956 [info] ppl_id: 7046a4aa-cbc3-4dd8-bb6e-6888e7185f4e, type: Ppls, state: running, ev"},{"event":"cmd_output","timestamp":1607098403,"output":"ent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b"},{"event":"cmd_output","timestamp":1607098403,"output":"[0m\u001b[22m\n16:13:23.967 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"7046"},{"event":"cmd_output","timestamp":1607098403,"output":"a4aa-cbc3-4dd8-bb6e-6888e7185f4e\"\n\u001b[0m\u001b[22m\n16:13:23.978 [info] block_id: 0e6d8258-d86c-4fb0-8be9"},{"event":"cmd_output","timestamp":1607098403,"output":"-7471d3e60d9b, type: BlockRequests, event: persisted block run request from ppl 7046a4aa-cbc3-4dd8-b"},{"event":"cmd_output","timestamp":1607098403,"output":"b6e-6888e7185f4e for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_"},{"event":"cmd_output","timestamp":1607098403,"output":"response/4(L35), \n\u001b[0m\u001b[22m\n16:13:23.979 [info] ppl_id: bc524481-017f-412d-a0f4-c83ef191cbab, typ"},{"event":"cmd_output","timestamp":1607098403,"output":"e: PplRequests, event: persisted source_args for pipeline: bc524481-017f-412d-a0f4-c83ef191cbab, ori"},{"event":"cmd_output","timestamp":1607098403,"output":"gin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:13:23.980"},{"event":"cmd_output","timestamp":1607098403,"output":" [info] block_id: 0e6d8258-d86c-4fb0-8be9-7471d3e60d9b, type: Blocks, state: initializing, event: i"},{"event":"cmd_output","timestamp":1607098403,"output":"nitializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098403,"output":"m\u001b[22m\n16:13:23.983 [info] Block 0 of pipeline with id: 7046a4aa-cbc3-4dd8-bb6e-6888e7185f4e sched"},{"event":"cmd_output","timestamp":1607098403,"output":"uled in block service with id: : \"0e6d8258-d86c-4fb0-8be9-7471d3e60d9b\"\n\u001b[0m\u001b[22m\n16:13:23.985 [in"},{"event":"cmd_output","timestamp":1607098403,"output":"fo] ppl_id: 7046a4aa-cbc3-4dd8-bb6e-6888e7185f4e, type: PplBlocks, block_index: 0, state: running, "},{"event":"cmd_output","timestamp":1607098403,"output":"event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \r"},{"event":"cmd_output","timestamp":1607098403,"output":"\n\u001b[0m\u001b[22m\n16:13:23.985 [info] ppl_id: bc524481-017f-412d-a0f4-c83ef191cbab, type: PplSubInits, st"},{"event":"cmd_output","timestamp":1607098403,"output":"ate: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098403,"output":"hange/1(L90), \n\u001b[0m\u001b[22m\n16:13:23.994 [info] block_id: 0e6d8258-d86c-4fb0-8be9-7471d3e60d9b, type"},{"event":"cmd_output","timestamp":1607098403,"output":": BlockRequests, event: persisted build and sub_ppl details for block_request: 0e6d8258-d86c-4fb0-8b"},{"event":"cmd_output","timestamp":1607098403,"output":"e9-7471d3e60d9b, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), "},{"event":"cmd_output","timestamp":1607098403,"output":"\n\u001b[0m\u001b[22m\n16:13:23.999 [info] block_id: 0e6d8258-d86c-4fb0-8be9-7471d3e60d9b, type: Tasks, state"},{"event":"cmd_output","timestamp":1607098403,"output":": pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingSta"},{"event":"cmd_output","timestamp":1607098404,"output":"te.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:13:24.004 [info] block_id: 0e6d8258-d86c-4fb0-8be9-7471d3e60d9b"},{"event":"cmd_output","timestamp":1607098404,"output":", type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM"},{"event":"cmd_output","timestamp":1607098404,"output":".Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:24.018 [info] block_id: 0e6d8258-d86c-4fb0-8be9-7"},{"event":"cmd_output","timestamp":1607098404,"output":"471d3e60d9b, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098404,"output":"Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:24.028 [info] ppl_id: bc524481-017f-412"},{"event":"cmd_output","timestamp":1607098404,"output":"d-a0f4-c83ef191cbab, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count:"},{"event":"cmd_output","timestamp":1607098404,"output":" 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:24.053 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098404,"output":": bc524481-017f-412d-a0f4-c83ef191cbab, type: PplRequests, event: persisted definition for request w"},{"event":"cmd_output","timestamp":1607098404,"output":"ith request_token: a236b2b0-364b-11eb-a50d-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplReq"},{"event":"cmd_output","timestamp":1607098404,"output":"uestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:13:24.060 [info] event: created, origin: Eli"},{"event":"cmd_output","timestamp":1607098404,"output":"xir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:24.060 [info] p"},{"event":"cmd_output","timestamp":1607098404,"output":"pl_id: bc524481-017f-412d-a0f4-c83ef191cbab, type: PplBlocks, block_index: 0, state: initializing, e"},{"event":"cmd_output","timestamp":1607098404,"output":"vent: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?"},{"event":"cmd_output","timestamp":1607098404,"output":"/1(L105), \n\u001b[0m\u001b[22m\n16:13:24.064 [info] ppl_id: bc524481-017f-412d-a0f4-c83ef191cbab, type: PplS"},{"event":"cmd_output","timestamp":1607098404,"output":"ubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loop"},{"event":"cmd_output","timestamp":1607098404,"output":"er.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:24.083 [info] ppl_id: bc524481-017f-412d-a0"},{"event":"cmd_output","timestamp":1607098404,"output":"f4-c83ef191cbab, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098404,"output":"ir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:24.085 [info] ppl_id: bc524481-017f-"},{"event":"cmd_output","timestamp":1607098404,"output":"412d-a0f4-c83ef191cbab, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, rec"},{"event":"cmd_output","timestamp":1607098404,"output":"overy_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:24.098 [i"},{"event":"cmd_output","timestamp":1607098404,"output":"nfo] ppl_id: a871ec7a-29e9-4260-b31c-5205f6417a27, type: PplRequests, event: persisted source_args "},{"event":"cmd_output","timestamp":1607098404,"output":"for pipeline: a871ec7a-29e9-4260-b31c-5205f6417a27, origin: Elixir.Ppl.PplRequests.Model.PplRequests"},{"event":"cmd_output","timestamp":1607098404,"output":"Queries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:13:24.101 [info] ppl_id: bc524481-017f-412d-a0f4-c83e"},{"event":"cmd_output","timestamp":1607098404,"output":"f191cbab, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loop"},{"event":"cmd_output","timestamp":1607098404,"output":"er.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:24.103 [info] ppl_id: a871ec7a-29e9-4260-b3"},{"event":"cmd_output","timestamp":1607098404,"output":"1c-5205f6417a27, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098404,"output":"in: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:24.111 [info] ppl_id: bc5244"},{"event":"cmd_output","timestamp":1607098404,"output":"81-017f-412d-a0f4-c83ef191cbab, type: Ppls, state: running, event: exit_scheduling, recovery_count: "},{"event":"cmd_output","timestamp":1607098404,"output":"0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:24.119 [info] PplBloc"},{"event":"cmd_output","timestamp":1607098404,"output":"ks WaitingState STM is scheduling block 0 from pipeline: \"bc524481-017f-412d-a0f4-c83ef191cbab\"\n\u001b[0"},{"event":"cmd_output","timestamp":1607098404,"output":"m\u001b[22m\n16:13:24.124 [info] block_id: 0b400448-a189-4cef-a35d-bda1360bff7a, type: BlockRequests, ev"},{"event":"cmd_output","timestamp":1607098404,"output":"ent: persisted block run request from ppl bc524481-017f-412d-a0f4-c83ef191cbab for block 0, origin: "},{"event":"cmd_output","timestamp":1607098404,"output":"Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:13:24"},{"event":"cmd_output","timestamp":1607098404,"output":".127 [info] block_id: 0b400448-a189-4cef-a35d-bda1360bff7a, type: Blocks, state: initializing, even"},{"event":"cmd_output","timestamp":1607098404,"output":"t: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \r"},{"event":"cmd_output","timestamp":1607098404,"output":"\n\u001b[0m\u001b[22m\n16:13:24.130 [info] Block 0 of pipeline with id: bc524481-017f-412d-a0f4-c83ef191cbab s"},{"event":"cmd_output","timestamp":1607098404,"output":"cheduled in block service with id: : \"0b400448-a189-4cef-a35d-bda1360bff7a\"\n\u001b[0m\u001b[22m\n16:13:24.132"},{"event":"cmd_output","timestamp":1607098404,"output":" [info] ppl_id: bc524481-017f-412d-a0f4-c83ef191cbab, type: PplBlocks, block_index: 0, state: runni"},{"event":"cmd_output","timestamp":1607098404,"output":"ng, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90"},{"event":"cmd_output","timestamp":1607098404,"output":"), \n\u001b[0m\u001b[22m\n16:13:24.136 [info] block_id: 0b400448-a189-4cef-a35d-bda1360bff7a, type: BlockRequ"},{"event":"cmd_output","timestamp":1607098404,"output":"ests, event: persisted build and sub_ppl details for block_request: 0b400448-a189-4cef-a35d-bda1360b"},{"event":"cmd_output","timestamp":1607098404,"output":"ff7a, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098404,"output":"\n16:13:24.137 [info] ppl_id: a871ec7a-29e9-4260-b31c-5205f6417a27, type: PplSubInits, state: regul"},{"event":"cmd_output","timestamp":1607098404,"output":"ar_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/"},{"event":"cmd_output","timestamp":1607098404,"output":"1(L90), \n\u001b[0m\u001b[22m\n16:13:24.139 [info] block_id: 0b400448-a189-4cef-a35d-bda1360bff7a, type: Task"},{"event":"cmd_output","timestamp":1607098404,"output":"s, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.Initial"},{"event":"cmd_output","timestamp":1607098404,"output":"izingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:13:24.142 [info] block_id: 0b400448-a189-4cef-a35d-bda1"},{"event":"cmd_output","timestamp":1607098404,"output":"360bff7a, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Lo"},{"event":"cmd_output","timestamp":1607098404,"output":"oper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:24.159 [info] block_id: 0b400448-a189-4ce"},{"event":"cmd_output","timestamp":1607098404,"output":"f-a35d-bda1360bff7a, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098404,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:24.178 [info] ppl_id: a871ec7a-"},{"event":"cmd_output","timestamp":1607098404,"output":"29e9-4260-b31c-5205f6417a27, type: PplRequests, event: persisted definition for request with request"},{"event":"cmd_output","timestamp":1607098404,"output":"_token: a23aff46-364b-11eb-87d1-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQuerie"},{"event":"cmd_output","timestamp":1607098404,"output":"s.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:13:24.188 [info] event: created, origin: Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098404,"output":"SubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:24.188 [info] ppl_id: a871"},{"event":"cmd_output","timestamp":1607098404,"output":"ec7a-29e9-4260-b31c-5205f6417a27, type: PplBlocks, block_index: 0, state: initializing, event: creat"},{"event":"cmd_output","timestamp":1607098404,"output":"ed, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \r"},{"event":"cmd_output","timestamp":1607098404,"output":"\n\u001b[0m\u001b[22m\n16:13:24.190 [info] ppl_id: a871ec7a-29e9-4260-b31c-5205f6417a27, type: PplSubInits, st"},{"event":"cmd_output","timestamp":1607098404,"output":"ate: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl"},{"event":"cmd_output","timestamp":1607098404,"output":".log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:24.202 [info] ppl_id: a871ec7a-29e9-4260-b31c-5205f641"},{"event":"cmd_output","timestamp":1607098404,"output":"7a27, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098404,"output":"igin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:24.203 [info] ppl_id: a871"},{"event":"cmd_output","timestamp":1607098404,"output":"ec7a-29e9-4260-b31c-5205f6417a27, type: Ppls, state: pending, event: exit_scheduling, recovery_count"},{"event":"cmd_output","timestamp":1607098404,"output":": 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:24.224 [info] ppl_i"},{"event":"cmd_output","timestamp":1607098404,"output":"d: 4cdf71b3-f111-4cd6-8997-75cd14904c7a, type: PplRequests, event: persisted source_args for pipelin"},{"event":"cmd_output","timestamp":1607098404,"output":"e: 4cdf71b3-f111-4cd6-8997-75cd14904c7a, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.ins"},{"event":"cmd_output","timestamp":1607098404,"output":"ert_source/2(L89), \n\u001b[0m\u001b[22m\n16:13:24.227 [info] ppl_id: 4cdf71b3-f111-4cd6-8997-75cd14904c7a, t"},{"event":"cmd_output","timestamp":1607098404,"output":"ype: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper."},{"event":"cmd_output","timestamp":1607098404,"output":"STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:24.227 [info] ppl_id: a871ec7a-29e9-4260-b31c-"},{"event":"cmd_output","timestamp":1607098404,"output":"5205f6417a27, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098404,"output":"Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:24.249 [info] ppl_id: 4cdf71b3-f111-4cd"},{"event":"cmd_output","timestamp":1607098404,"output":"6-8997-75cd14904c7a, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count:"},{"event":"cmd_output","timestamp":1607098404,"output":" 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:24.282 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098404,"output":": 4cdf71b3-f111-4cd6-8997-75cd14904c7a, type: PplRequests, event: persisted definition for request w"},{"event":"cmd_output","timestamp":1607098404,"output":"ith request_token: a23d9ee0-364b-11eb-9eae-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplReq"},{"event":"cmd_output","timestamp":1607098404,"output":"uestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:13:24.288 [info] event: created, origin: Eli"},{"event":"cmd_output","timestamp":1607098404,"output":"xir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:24.288 [info] p"},{"event":"cmd_output","timestamp":1607098404,"output":"pl_id: 4cdf71b3-f111-4cd6-8997-75cd14904c7a, type: PplBlocks, block_index: 0, state: initializing, e"},{"event":"cmd_output","timestamp":1607098404,"output":"vent: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?"},{"event":"cmd_output","timestamp":1607098404,"output":"/1(L105), \n\u001b[0m\u001b[22m\n16:13:24.290 [info] ppl_id: 4cdf71b3-f111-4cd6-8997-75cd14904c7a, type: PplS"},{"event":"cmd_output","timestamp":1607098404,"output":"ubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loop"},{"event":"cmd_output","timestamp":1607098404,"output":"er.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:24.297 [info] ppl_id: 4cdf71b3-f111-4cd6-89"},{"event":"cmd_output","timestamp":1607098404,"output":"97-75cd14904c7a, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098404,"output":"ir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:24.303 [info] ppl_id: 4cdf71b3-f111-"},{"event":"cmd_output","timestamp":1607098404,"output":"4cd6-8997-75cd14904c7a, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, rec"},{"event":"cmd_output","timestamp":1607098404,"output":"overy_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:24.306 [i"},{"event":"cmd_output","timestamp":1607098404,"output":"nfo] ppl_id: 4cdf71b3-f111-4cd6-8997-75cd14904c7a, type: Ppls, state: queuing, event: exit_scheduli"},{"event":"cmd_output","timestamp":1607098404,"output":"ng, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:24"},{"event":"cmd_output","timestamp":1607098404,"output":".320 [info] ppl_id: 4cdf71b3-f111-4cd6-8997-75cd14904c7a, type: Ppls, state: running, event: exit_s"},{"event":"cmd_output","timestamp":1607098404,"output":"cheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098404,"output":"6:13:24.325 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"4cdf71b3-f111-4"},{"event":"cmd_output","timestamp":1607098404,"output":"cd6-8997-75cd14904c7a\"\n\u001b[0m\u001b[22m\n16:13:24.334 [info] block_id: bfe78176-fa62-4e95-92e1-d747601581"},{"event":"cmd_output","timestamp":1607098404,"output":"52, type: BlockRequests, event: persisted block run request from ppl 4cdf71b3-f111-4cd6-8997-75cd149"},{"event":"cmd_output","timestamp":1607098404,"output":"04c7a for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4("},{"event":"cmd_output","timestamp":1607098404,"output":"L35), \n\u001b[0m\u001b[22m\n16:13:24.336 [info] block_id: bfe78176-fa62-4e95-92e1-d74760158152, type: Blocks"},{"event":"cmd_output","timestamp":1607098404,"output":", state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.Blo"},{"event":"cmd_output","timestamp":1607098404,"output":"cksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:13:24.339 [info] Block 0 of pipeline with id: 4cdf71b3-f1"},{"event":"cmd_output","timestamp":1607098404,"output":"11-4cd6-8997-75cd14904c7a scheduled in block service with id: : \"bfe78176-fa62-4e95-92e1-d7476015815"},{"event":"cmd_output","timestamp":1607098404,"output":"2\"\n\u001b[0m\u001b[22m\n16:13:24.342 [info] ppl_id: 4cdf71b3-f111-4cd6-8997-75cd14904c7a, type: PplBlocks, b"},{"event":"cmd_output","timestamp":1607098404,"output":"lock_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM."},{"event":"cmd_output","timestamp":1607098404,"output":"Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:24.344 [info] block_id: bfe78176-fa62-4e95-92e1-d7"},{"event":"cmd_output","timestamp":1607098404,"output":"4760158152, type: BlockRequests, event: persisted build and sub_ppl details for block_request: bfe78"},{"event":"cmd_output","timestamp":1607098404,"output":"176-fa62-4e95-92e1-d74760158152, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.inser"},{"event":"cmd_output","timestamp":1607098404,"output":"t_build/2(L41), \n\u001b[0m\u001b[22m\n16:13:24.346 [info] block_id: bfe78176-fa62-4e95-92e1-d74760158152, ty"},{"event":"cmd_output","timestamp":1607098404,"output":"pe: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler"},{"event":"cmd_output","timestamp":1607098404,"output":".InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:13:24.348 [info] block_id: bfe78176-fa62-4e95-9"},{"event":"cmd_output","timestamp":1607098404,"output":"2e1-d74760158152, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: E"},{"event":"cmd_output","timestamp":1607098404,"output":"lixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:24.362 [info] block_id: bfe78176-"},{"event":"cmd_output","timestamp":1607098404,"output":"fa62-4e95-92e1-d74760158152, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098404,"output":" origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:24.388 [info] Periodic "},{"event":"cmd_output","timestamp":1607098404,"output":"from module Elixir.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHandler.RunningStat"},{"event":"cmd_output","timestamp":1607098404,"output":"e :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, re"},{"event":"cmd_output","timestamp":1607098404,"output":"curring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query"},{"event":"cmd_output","timestamp":1607098404,"output":": Ppl.Ppls.Model.Ppls, observed_state: \"running\", publisher_cb: #Function<0.74670282/1 in Ppl.Ppls.S"},{"event":"cmd_output","timestamp":1607098404,"output":"TMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at"},{"event":"cmd_output","timestamp":1607098404,"output":", :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTask"},{"event":"cmd_output","timestamp":1607098409,"output":"Supervisor}\n\u001b[0m\u001b[22m\n16:13:29.121 [info] block_id: 0e6d8258-d86c-4fb0-8be9-7471d3e60d9b, type: T"},{"event":"cmd_output","timestamp":1607098409,"output":"asks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_sta"},{"event":"cmd_output","timestamp":1607098409,"output":"te_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:29.131 [info] block_id: 0e6d8258-d86c-4fb0-8be9-7471d3e60d9b, "},{"event":"cmd_output","timestamp":1607098409,"output":"type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl"},{"event":"cmd_output","timestamp":1607098409,"output":".log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:29.149 [info] ppl_id: 7046a4aa-cbc3-4dd8-bb6e-6888e718"},{"event":"cmd_output","timestamp":1607098409,"output":"5f4e, block_id: 0e6d8258-d86c-4fb0-8be9-7471d3e60d9b, type: PplBlocks, block_index: 0, state: done, "},{"event":"cmd_output","timestamp":1607098409,"output":"result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_"},{"event":"cmd_output","timestamp":1607098409,"output":"change/1(L90), \n\u001b[0m\u001b[22m\n16:13:29.162 [info] ppl_id: 7046a4aa-cbc3-4dd8-bb6e-6888e7185f4e, type:"},{"event":"cmd_output","timestamp":1607098409,"output":" Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper"},{"event":"cmd_output","timestamp":1607098409,"output":".STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:29.242 [info] block_id: 0b400448-a189-4cef-a3"},{"event":"cmd_output","timestamp":1607098409,"output":"5d-bda1360bff7a, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098409,"output":".Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:29.247 [info] block_id: 0b400448-a189-"},{"event":"cmd_output","timestamp":1607098409,"output":"4cef-a35d-bda1360bff7a, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098409,"output":": Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:29.251 [info] ppl_id: bc524481"},{"event":"cmd_output","timestamp":1607098409,"output":"-017f-412d-a0f4-c83ef191cbab, block_id: 0b400448-a189-4cef-a35d-bda1360bff7a, type: PplBlocks, block"},{"event":"cmd_output","timestamp":1607098409,"output":"_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Lo"},{"event":"cmd_output","timestamp":1607098409,"output":"oper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:29.263 [info] ppl_id: bc524481-017f-412d-"},{"event":"cmd_output","timestamp":1607098409,"output":"a0f4-c83ef191cbab, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: "},{"event":"cmd_output","timestamp":1607098409,"output":"0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:29.456 [info] block_i"},{"event":"cmd_output","timestamp":1607098409,"output":"d: bfe78176-fa62-4e95-92e1-d74760158152, type: Tasks, state: done, event: exit_scheduling, recovery_"},{"event":"cmd_output","timestamp":1607098409,"output":"count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:29.468 [info] "},{"event":"cmd_output","timestamp":1607098409,"output":"block_id: bfe78176-fa62-4e95-92e1-d74760158152, type: Blocks, state: done, event: exit_scheduling, r"},{"event":"cmd_output","timestamp":1607098409,"output":"ecovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:29.475 "},{"event":"cmd_output","timestamp":1607098409,"output":"[info] ppl_id: 4cdf71b3-f111-4cd6-8997-75cd14904c7a, block_id: bfe78176-fa62-4e95-92e1-d74760158152"},{"event":"cmd_output","timestamp":1607098409,"output":", type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_cou"},{"event":"cmd_output","timestamp":1607098409,"output":"nt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:29.495 [info] ppl"},{"event":"cmd_output","timestamp":1607098409,"output":"_id: 4cdf71b3-f111-4cd6-8997-75cd14904c7a, type: Ppls, state: done, result: passed, event: exit_sche"},{"event":"cmd_output","timestamp":1607098409,"output":"duling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098409,"output":"3:29.505 [info] ppl_id: a871ec7a-29e9-4260-b31c-5205f6417a27, type: Ppls, state: running, event: ex"},{"event":"cmd_output","timestamp":1607098409,"output":"it_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098409,"output":"m\n16:13:29.511 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"a871ec7a-29"},{"event":"cmd_output","timestamp":1607098409,"output":"e9-4260-b31c-5205f6417a27\"\n\u001b[0m\u001b[22m\n16:13:29.515 [info] block_id: fba8c371-dbef-4ea9-9160-f0abe4"},{"event":"cmd_output","timestamp":1607098409,"output":"47988c, type: BlockRequests, event: persisted block run request from ppl a871ec7a-29e9-4260-b31c-520"},{"event":"cmd_output","timestamp":1607098409,"output":"5f6417a27 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_respons"},{"event":"cmd_output","timestamp":1607098409,"output":"e/4(L35), \n\u001b[0m\u001b[22m\n16:13:29.516 [info] block_id: fba8c371-dbef-4ea9-9160-f0abe447988c, type: Bl"},{"event":"cmd_output","timestamp":1607098409,"output":"ocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model"},{"event":"cmd_output","timestamp":1607098409,"output":".BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:13:29.517 [info] Block 0 of pipeline with id: a871ec7"},{"event":"cmd_output","timestamp":1607098409,"output":"a-29e9-4260-b31c-5205f6417a27 scheduled in block service with id: : \"fba8c371-dbef-4ea9-9160-f0abe44"},{"event":"cmd_output","timestamp":1607098409,"output":"7988c\"\n\u001b[0m\u001b[22m\n16:13:29.519 [info] ppl_id: a871ec7a-29e9-4260-b31c-5205f6417a27, type: PplBlock"},{"event":"cmd_output","timestamp":1607098409,"output":"s, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper."},{"event":"cmd_output","timestamp":1607098409,"output":"STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:29.534 [info] block_id: fba8c371-dbef-4ea9-916"},{"event":"cmd_output","timestamp":1607098409,"output":"0-f0abe447988c, type: BlockRequests, event: persisted build and sub_ppl details for block_request: f"},{"event":"cmd_output","timestamp":1607098409,"output":"ba8c371-dbef-4ea9-9160-f0abe447988c, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.i"},{"event":"cmd_output","timestamp":1607098409,"output":"nsert_build/2(L41), \n\u001b[0m\u001b[22m\n16:13:29.536 [info] block_id: fba8c371-dbef-4ea9-9160-f0abe447988c"},{"event":"cmd_output","timestamp":1607098409,"output":", type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHan"},{"event":"cmd_output","timestamp":1607098409,"output":"dler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:13:29.537 [info] block_id: fba8c371-dbef-4e"},{"event":"cmd_output","timestamp":1607098409,"output":"a9-9160-f0abe447988c, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098409,"output":"n: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:29.550 [info] block_id: fba8c"},{"event":"cmd_output","timestamp":1607098409,"output":"371-dbef-4ea9-9160-f0abe447988c, type: Tasks, state: running, event: exit_scheduling, recovery_count"},{"event":"cmd_output","timestamp":1607098414,"output":": 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:34.575 [info] block"},{"event":"cmd_output","timestamp":1607098414,"output":"_id: fba8c371-dbef-4ea9-9160-f0abe447988c, type: Tasks, state: done, event: exit_scheduling, recover"},{"event":"cmd_output","timestamp":1607098414,"output":"y_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:34.581 [info]"},{"event":"cmd_output","timestamp":1607098414,"output":" block_id: fba8c371-dbef-4ea9-9160-f0abe447988c, type: Blocks, state: done, event: exit_scheduling,"},{"event":"cmd_output","timestamp":1607098414,"output":" recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:34.58"},{"event":"cmd_output","timestamp":1607098414,"output":"8 [info] ppl_id: a871ec7a-29e9-4260-b31c-5205f6417a27, block_id: fba8c371-dbef-4ea9-9160-f0abe44798"},{"event":"cmd_output","timestamp":1607098414,"output":"8c, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098414,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:34.596 [info] p"},{"event":"cmd_output","timestamp":1607098414,"output":"pl_id: a871ec7a-29e9-4260-b31c-5205f6417a27, type: Ppls, state: done, result: passed, event: exit_sc"},{"event":"cmd_output","timestamp":1607098414,"output":"heduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r *"},{"event":"cmd_output","timestamp":1607098414,"output":" test when parallel queue processing is set up pipelines from same queue are run in parallel (11040."},{"event":"cmd_output","timestamp":1607098414,"output":"2ms)\u001b[0m\n\nPpl.E2E.LooperExecuteNow.Test\n * test termination is optimized with execute_now() loop"},{"event":"cmd_output","timestamp":1607098414,"output":"er calls\u001b[22m\n16:13:34.712 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingStat"},{"event":"cmd_output","timestamp":1607098414,"output":"e with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 1000000 ms, metric_name: {\"Ppl.b"},{"event":"cmd_output","timestamp":1607098414,"output":"eholder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"in"},{"event":"cmd_output","timestamp":1607098414,"output":"itializing\", \"pending\", \"done\"], cooling_time_sec: 1000, initial_query: Ppl.Ppls.Model.Ppls, observe"},{"event":"cmd_output","timestamp":1607098414,"output":"d_state: \"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingSt"},{"event":"cmd_output","timestamp":1607098414,"output":"ate.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, "},{"event":"cmd_output","timestamp":1607098414,"output":":recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:34"},{"event":"cmd_output","timestamp":1607098414,"output":".712 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls."},{"event":"cmd_output","timestamp":1607098414,"output":"STMHandler.PendingState :: period: 1000000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMH"},{"event":"cmd_output","timestamp":1607098414,"output":"andler-PendingState\"]}, recurring args: %{allowed_states: [\"pending\", \"queuing\", \"running\", \"done\"],"},{"event":"cmd_output","timestamp":1607098414,"output":" cooling_time_sec: 1000, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publisher_cb"},{"event":"cmd_output","timestamp":1607098414,"output":": #Function<0.8493005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, returning: "},{"event":"cmd_output","timestamp":1607098414,"output":"[:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls."},{"event":"cmd_output","timestamp":1607098414,"output":"Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:13:34.713 [info] Periodic from modu"},{"event":"cmd_output","timestamp":1607098414,"output":"le Elixir.Ppl.Ppls.STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandler.QueuingState :: peri"},{"event":"cmd_output","timestamp":1607098414,"output":"od: 1000000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurri"},{"event":"cmd_output","timestamp":1607098414,"output":"ng args: %{allowed_states: [\"queuing\", \"running\", \"done\"], cooling_time_sec: 1000, initial_query: Pp"},{"event":"cmd_output","timestamp":1607098414,"output":"l.Ppls.Model.Ppls, observed_state: \"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMH"},{"event":"cmd_output","timestamp":1607098414,"output":"andler.QueuingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :"},{"event":"cmd_output","timestamp":1607098414,"output":"state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0"},{"event":"cmd_output","timestamp":1607098414,"output":"m\u001b[22m\n16:13:34.714 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.RunningState with name "},{"event":"cmd_output","timestamp":1607098414,"output":"Elixir.Ppl.Ppls.STMHandler.RunningState :: period: 1000000 ms, metric_name: {\"Ppl.beholder-wake_up\","},{"event":"cmd_output","timestamp":1607098414,"output":" [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"d"},{"event":"cmd_output","timestamp":1607098414,"output":"one\"], cooling_time_sec: 1000, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"running\", publis"},{"event":"cmd_output","timestamp":1607098414,"output":"her_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, retu"},{"event":"cmd_output","timestamp":1607098414,"output":"rning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Pp"},{"event":"cmd_output","timestamp":1607098414,"output":"l.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:13:34.715 [info] Periodic fr"},{"event":"cmd_output","timestamp":1607098414,"output":"om module Elixir.Ppl.Ppls.STMHandler.StoppingState with name Elixir.Ppl.Ppls.STMHandler.StoppingStat"},{"event":"cmd_output","timestamp":1607098414,"output":"e :: period: 1000000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]"},{"event":"cmd_output","timestamp":1607098414,"output":"}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: 1000, initial_query: Pp"},{"event":"cmd_output","timestamp":1607098414,"output":"l.Ppls.Model.Ppls, observed_state: \"stopping\", publisher_cb: #Function<0.71803493/1 in Ppl.Ppls.STMH"},{"event":"cmd_output","timestamp":1607098414,"output":"andler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, "},{"event":"cmd_output","timestamp":1607098414,"output":":state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b["},{"event":"cmd_output","timestamp":1607098414,"output":"0m\u001b[22m\n16:13:34.716 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedState wi"},{"event":"cmd_output","timestamp":1607098414,"output":"th name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 1000000 ms, metric_name: {\"Ppl.beh"},{"event":"cmd_output","timestamp":1607098414,"output":"older-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args: %{allowed_states: [\"fe"},{"event":"cmd_output","timestamp":1607098414,"output":"tching\", \"done\"], cooling_time_sec: 1000, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed"},{"event":"cmd_output","timestamp":1607098414,"output":"_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :up"},{"event":"cmd_output","timestamp":1607098414,"output":"dated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, tas"},{"event":"cmd_output","timestamp":1607098414,"output":"k_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:34.716 [info] Periodic from module Elixir.Ppl.PplSubInits.ST"},{"event":"cmd_output","timestamp":1607098414,"output":"MHandler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler.FetchingState :: period: 1000000 "},{"event":"cmd_output","timestamp":1607098414,"output":"ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring a"},{"event":"cmd_output","timestamp":1607098414,"output":"rgs: %{allowed_states: [\"regular_init\", \"compilation\", \"done\"], cooling_time_sec: 1000, initial_quer"},{"event":"cmd_output","timestamp":1607098414,"output":"y: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fetching\", publisher_cb: :skip, repo: Ppl.Ect"},{"event":"cmd_output","timestamp":1607098414,"output":"oRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id],"},{"event":"cmd_output","timestamp":1607098414,"output":" schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:34.717 [info] "},{"event":"cmd_output","timestamp":1607098414,"output":" Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CompilationState with name Elixir.Ppl.PplSub"},{"event":"cmd_output","timestamp":1607098414,"output":"Inits.STMHandler.CompilationState :: period: 1000000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl"},{"event":"cmd_output","timestamp":1607098414,"output":"-PplSubInits-STMHandler-CompilationState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"com"},{"event":"cmd_output","timestamp":1607098414,"output":"pilation\", \"stopping\", \"done\"], cooling_time_sec: 1000, initial_query: Ppl.PplSubInits.Model.PplSubI"},{"event":"cmd_output","timestamp":1607098414,"output":"nits, observed_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :term"},{"event":"cmd_output","timestamp":1607098414,"output":"inate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Mode"},{"event":"cmd_output","timestamp":1607098414,"output":"l.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:34.717 [info] Periodic from module Elixir."},{"event":"cmd_output","timestamp":1607098414,"output":"Ppl.PplSubInits.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHandler.RegularInitS"},{"event":"cmd_output","timestamp":1607098414,"output":"tate :: period: 1000000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-Regul"},{"event":"cmd_output","timestamp":1607098414,"output":"arInitState\"]}, recurring args: %{allowed_states: [\"done\"], cooling_time_sec: 1000, initial_query: P"},{"event":"cmd_output","timestamp":1607098414,"output":"pl.PplSubInits.Model.PplSubInits, observed_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.Ect"},{"event":"cmd_output","timestamp":1607098414,"output":"oRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id],"},{"event":"cmd_output","timestamp":1607098414,"output":" schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:34.718 [info] "},{"event":"cmd_output","timestamp":1607098414,"output":" Periodic from module Elixir.Ppl.PplBlocks.STMHandler.InitializingState with name Elixir.Ppl.PplBloc"},{"event":"cmd_output","timestamp":1607098414,"output":"ks.STMHandler.InitializingState :: period: 1000000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-P"},{"event":"cmd_output","timestamp":1607098414,"output":"plBlocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"waitin"},{"event":"cmd_output","timestamp":1607098414,"output":"g\", \"done\"], cooling_time_sec: 1000, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \""},{"event":"cmd_output","timestamp":1607098414,"output":"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :update"},{"event":"cmd_output","timestamp":1607098414,"output":"d_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlock"},{"event":"cmd_output","timestamp":1607098414,"output":"s, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:34.719 [info] Periodic from module Elixir.Ppl.PplBlock"},{"event":"cmd_output","timestamp":1607098414,"output":"s.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler.WaitingState :: period: 1000 ms,"},{"event":"cmd_output","timestamp":1607098414,"output":" metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurring args: %"},{"event":"cmd_output","timestamp":1607098414,"output":"{allowed_states: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 1000, initial_query: Ppl.PplBlock"},{"event":"cmd_output","timestamp":1607098414,"output":"s.Model.PplBlocks, observed_state: \"waiting\", publisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.S"},{"event":"cmd_output","timestamp":1607098414,"output":"TMHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at"},{"event":"cmd_output","timestamp":1607098414,"output":", :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, t"},{"event":"cmd_output","timestamp":1607098414,"output":"ask_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:34.719 [info] Periodic from module Elixir.Ppl.PplBlocks.ST"},{"event":"cmd_output","timestamp":1607098414,"output":"MHandler.RunningState with name Elixir.Ppl.PplBlocks.STMHandler.RunningState :: period: 1000 ms, met"},{"event":"cmd_output","timestamp":1607098414,"output":"ric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, recurring args: %{all"},{"event":"cmd_output","timestamp":1607098414,"output":"owed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: 1000, initial_query: Ppl.PplBlocks.M"},{"event":"cmd_output","timestamp":1607098414,"output":"odel.PplBlocks, observed_state: \"running\", publisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STM"},{"event":"cmd_output","timestamp":1607098414,"output":"Handler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, "},{"event":"cmd_output","timestamp":1607098414,"output":":state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.Ppl"},{"event":"cmd_output","timestamp":1607098414,"output":"Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:34.720 [info] Periodic from module Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098414,"output":"Blocks.STMHandler.StoppingState with name Elixir.Ppl.PplBlocks.STMHandler.StoppingState :: period: 1"},{"event":"cmd_output","timestamp":1607098414,"output":"000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurring"},{"event":"cmd_output","timestamp":1607098414,"output":" args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: 1000, initial_query: Ppl.PplBlocks."},{"event":"cmd_output","timestamp":1607098414,"output":"Model.PplBlocks, observed_state: \"stopping\", publisher_cb: #Function<0.104215991/1 in Ppl.PplBlocks."},{"event":"cmd_output","timestamp":1607098414,"output":"STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_"},{"event":"cmd_output","timestamp":1607098414,"output":"at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model"},{"event":"cmd_output","timestamp":1607098414,"output":".PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:34.720 [info] Periodic from module Elixir.Blo"},{"event":"cmd_output","timestamp":1607098414,"output":"ck.Blocks.STMHandler.InitializingState with name Elixir.Block.Blocks.STMHandler.InitializingState ::"},{"event":"cmd_output","timestamp":1607098414,"output":" period: 1000000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-InitializingSta"},{"event":"cmd_output","timestamp":1607098414,"output":"te\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 1000, initial_query:"},{"event":"cmd_output","timestamp":1607098414,"output":" Block.Blocks.Model.Blocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Block.EctoRep"},{"event":"cmd_output","timestamp":1607098414,"output":"o, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Bl"},{"event":"cmd_output","timestamp":1607098414,"output":"ock.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:34.721 [info] Periodic from modu"},{"event":"cmd_output","timestamp":1607098414,"output":"le Elixir.Block.Blocks.STMHandler.RunningState with name Elixir.Block.Blocks.STMHandler.RunningState"},{"event":"cmd_output","timestamp":1607098414,"output":" :: period: 1000000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-RunningState"},{"event":"cmd_output","timestamp":1607098414,"output":"\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: 1000, init"},{"event":"cmd_output","timestamp":1607098414,"output":"ial_query: Block.Blocks.Model.Blocks, observed_state: \"running\", publisher_cb: :skip, repo: Block.Ec"},{"event":"cmd_output","timestamp":1607098414,"output":"toRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schem"},{"event":"cmd_output","timestamp":1607098414,"output":"a: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:34.722 [info] Periodic from"},{"event":"cmd_output","timestamp":1607098414,"output":" module Elixir.Block.Blocks.STMHandler.StoppingState with name Elixir.Block.Blocks.STMHandler.Stoppi"},{"event":"cmd_output","timestamp":1607098414,"output":"ngState :: period: 1000000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-Stopp"},{"event":"cmd_output","timestamp":1607098414,"output":"ingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: 1000, initial"},{"event":"cmd_output","timestamp":1607098414,"output":"_query: Block.Blocks.Model.Blocks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.Ecto"},{"event":"cmd_output","timestamp":1607098414,"output":"Repo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema:"},{"event":"cmd_output","timestamp":1607098414,"output":" Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:34.722 [info] Periodic from m"},{"event":"cmd_output","timestamp":1607098414,"output":"odule Elixir.Block.Tasks.STMHandler.PendingState with name Elixir.Block.Tasks.STMHandler.PendingStat"},{"event":"cmd_output","timestamp":1607098414,"output":"e :: period: 1000000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingState"},{"event":"cmd_output","timestamp":1607098414,"output":"\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 1000, initial_query: B"},{"event":"cmd_output","timestamp":1607098414,"output":"lock.Tasks.Model.Tasks, observed_state: \"pending\", publisher_cb: :skip, repo: Block.EctoRepo, return"},{"event":"cmd_output","timestamp":1607098414,"output":"ing: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id, :build_request_id], "},{"event":"cmd_output","timestamp":1607098414,"output":"schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:34.723 [info] Periodic f"},{"event":"cmd_output","timestamp":1607098414,"output":"rom module Elixir.Block.Tasks.STMHandler.RunningState with name Elixir.Block.Tasks.STMHandler.Runnin"},{"event":"cmd_output","timestamp":1607098414,"output":"gState :: period: 1000000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-Running"},{"event":"cmd_output","timestamp":1607098414,"output":"State\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: 1000,"},{"event":"cmd_output","timestamp":1607098414,"output":" initial_query: Block.Tasks.Model.Tasks, observed_state: \"running\", publisher_cb: :skip, repo: Block"},{"event":"cmd_output","timestamp":1607098414,"output":".EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], sc"},{"event":"cmd_output","timestamp":1607098414,"output":"hema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:34.723 [info] Periodic fro"},{"event":"cmd_output","timestamp":1607098414,"output":"m module Elixir.Block.Tasks.STMHandler.StoppingState with name Elixir.Block.Tasks.STMHandler.Stoppin"},{"event":"cmd_output","timestamp":1607098414,"output":"gState :: period: 1000000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-Stoppin"},{"event":"cmd_output","timestamp":1607098414,"output":"gState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: 1000, initial_q"},{"event":"cmd_output","timestamp":1607098414,"output":"uery: Block.Tasks.Model.Tasks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo"},{"event":"cmd_output","timestamp":1607098414,"output":", returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Blo"},{"event":"cmd_output","timestamp":1607098414,"output":"ck.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:34.730 [info] Opening new connectio"},{"event":"cmd_output","timestamp":1607098414,"output":"n {:ok, %AMQP.Connection{pid: #PID<0.24604.1>}} for id: default\n\u001b[0m\u001b[22m\n16:13:34.734 [info] Bin"},{"event":"cmd_output","timestamp":1607098414,"output":"ding 'block.finished' to 'task_state_exchange' with 'finished' routing keys\n\u001b[0m\u001b[22m\n16:13:34.736"},{"event":"cmd_output","timestamp":1607098414,"output":" [info] Creating queue 'block.finished'\n\u001b[0m\u001b[22m\n16:13:34.737 [info] Creating dead queue 'block"},{"event":"cmd_output","timestamp":1607098414,"output":".finished.dead'\n\u001b[0m\u001b[22m\n16:13:34.739 [info] Creating delay queue 'block.finished.delay.10'\n\u001b[0"},{"event":"cmd_output","timestamp":1607098414,"output":"m\u001b[22m\n16:13:34.741 [info] Binding 'block.finished' to 'block.finished' with 'finished' routing ke"},{"event":"cmd_output","timestamp":1607098414,"output":"ys\n\u001b[0m\u001b[22m\n16:13:34.746 [info] Request: 'run: %{\"branch_id\" => \"0b2ddfef-4e69-4c88-a404-4edf959"},{"event":"cmd_output","timestamp":1607098414,"output":"2cdf3\", \"branch_name\" => \"non-default-branch\", \"client_id\" => \"328c742132e5407abd7d\", \"commit_sha\" ="},{"event":"cmd_output","timestamp":1607098414,"output":"> \"70e0f5b\", \"file_name\" => \"semaphore.yml\", \"hook_id\" => \"0178251e-8ad6-4e85-a157-7b5fb63e94bb\", \"l"},{"event":"cmd_output","timestamp":1607098414,"output":"abel\" => \"master\", \"organization_id\" => \"faee0dee-96b4-4276-8e67-771ba55e24ad\", \"owner\" => \"rendered"},{"event":"cmd_output","timestamp":1607098414,"output":"text\", \"project_id\" => \"123\", \"repo_name\" => \"pipelines-test-repo-auto-call\", \"request_token\" => \"a8"},{"event":"cmd_output","timestamp":1607098414,"output":"cde120-364b-11eb-b4a8-5254005464e2\", \"requester_id\" => \"65e841f1-8031-4d5f-83c2-02c8a5cead7f\", \"serv"},{"event":"cmd_output","timestamp":1607098414,"output":"ice\" => \"git_hub\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"7ce07ef"},{"event":"cmd_output","timestamp":1607098414,"output":"4-a903-4751-9558-723709b28ccd\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:13:34.766 [info] ppl_"},{"event":"cmd_output","timestamp":1607098414,"output":"id: bee029bf-2a52-4c0b-84ed-4e4b4040da82, type: PplRequests, event: persisted schedule request with "},{"event":"cmd_output","timestamp":1607098414,"output":"request_token: a8cde120-364b-11eb-b4a8-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequest"},{"event":"cmd_output","timestamp":1607098414,"output":"sQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:13:34.769 [info] ppl_id: bee029bf-2a52-4c0b-84ed-"},{"event":"cmd_output","timestamp":1607098414,"output":"4e4b4040da82, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098414,"output":"r.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:13:34.772 [info] Project 123"},{"event":"cmd_output","timestamp":1607098414,"output":" and branch non-default-branchlatest_wf details updated: \"wf_id: 7ce07ef4-a903-4751-9558-723709b28cc"},{"event":"cmd_output","timestamp":1607098414,"output":"d, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:13:34.774 [info] Persisted ppl_sub_init for pipeline with ppl_id: b"},{"event":"cmd_output","timestamp":1607098414,"output":"ee029bf-2a52-4c0b-84ed-4e4b4040da82: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metad"},{"event":"cmd_output","timestamp":1607098414,"output":"ata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 310, in_schedu"},{"event":"cmd_output","timestamp":1607098414,"output":"ling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:13:34.773028], pipeline_requests: #"},{"event":"cmd_output","timestamp":1607098414,"output":"Ecto.Association.NotLoaded, ppl_id: \"bee029bf-2a52-4c0"},{"event":"cmd_output","timestamp":1607098414,"output":"b-84ed-4e4b4040da82\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminat"},{"event":"cmd_output","timestamp":1607098414,"output":"e_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:13:34.773035]}\n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098414,"output":"\n16:13:34.783 [info] ppl_id: bee029bf-2a52-4c0b-84ed-4e4b4040da82, type: PplRequests, event: persis"},{"event":"cmd_output","timestamp":1607098414,"output":"ted source_args for pipeline: bee029bf-2a52-4c0b-84ed-4e4b4040da82, origin: Elixir.Ppl.PplRequests.M"},{"event":"cmd_output","timestamp":1607098414,"output":"odel.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:13:34.785 [info] ppl_id: bee029bf-2a5"},{"event":"cmd_output","timestamp":1607098414,"output":"2-4c0b-84ed-4e4b4040da82, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count"},{"event":"cmd_output","timestamp":1607098415,"output":": 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:35.052 [info] ppl_i"},{"event":"cmd_output","timestamp":1607098415,"output":"d: bee029bf-2a52-4c0b-84ed-4e4b4040da82, type: PplSubInits, state: regular_init, event: exit_schedul"},{"event":"cmd_output","timestamp":1607098415,"output":"ing, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:3"},{"event":"cmd_output","timestamp":1607098415,"output":"5.078 [info] ppl_id: bee029bf-2a52-4c0b-84ed-4e4b4040da82, type: PplRequests, event: persisted defi"},{"event":"cmd_output","timestamp":1607098415,"output":"nition for request with request_token: a8cde120-364b-11eb-b4a8-5254005464e2, origin: Elixir.Ppl.PplR"},{"event":"cmd_output","timestamp":1607098415,"output":"equests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:13:35.081 [info] Queue p"},{"event":"cmd_output","timestamp":1607098415,"output":"ersisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserte"},{"event":"cmd_output","timestamp":1607098415,"output":"d_at: ~N[2020-12-04 16:13:35.080444], name: \"master-.semaphore/semaphore.yml\", organization_id: \"fae"},{"event":"cmd_output","timestamp":1607098415,"output":"e0dee-96b4-4276-8e67-771ba55e24ad\", project_id: \"123\", queue_id: \"c86273d4-8c60-4d7f-8ba1-dc5f221999"},{"event":"cmd_output","timestamp":1607098415,"output":"7b\", scope: \"project\", updated_at: ~N[2020-12-04 16:13:35.080454], user_generated: false}}\n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098415,"output":"m\n16:13:35.090 [info] ppl_id: not_available, event: created, origin: Elixir.Ppl.PplSubInits.STMHan"},{"event":"cmd_output","timestamp":1607098415,"output":"dler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:35.090 [info] event: created, origin: Eli"},{"event":"cmd_output","timestamp":1607098415,"output":"xir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:35.090 [info] p"},{"event":"cmd_output","timestamp":1607098415,"output":"pl_id: bee029bf-2a52-4c0b-84ed-4e4b4040da82, type: PplBlocks, block_index: 0, state: initializing, e"},{"event":"cmd_output","timestamp":1607098415,"output":"vent: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?"},{"event":"cmd_output","timestamp":1607098415,"output":"/1(L105), \n\u001b[0m\u001b[22m\n16:13:35.090 [info] ppl_id: bee029bf-2a52-4c0b-84ed-4e4b4040da82, type: PplB"},{"event":"cmd_output","timestamp":1607098415,"output":"locks, block_index: 1, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.Pp"},{"event":"cmd_output","timestamp":1607098415,"output":"lSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:35.092 [info] ppl_id: bee"},{"event":"cmd_output","timestamp":1607098415,"output":"029bf-2a52-4c0b-84ed-4e4b4040da82, type: PplSubInits, state: done, result: passed, event: exit_sched"},{"event":"cmd_output","timestamp":1607098415,"output":"uling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13"},{"event":"cmd_output","timestamp":1607098415,"output":":35.101 [info] ppl_id: bee029bf-2a52-4c0b-84ed-4e4b4040da82, type: PplBlocks, block_index: 0, state"},{"event":"cmd_output","timestamp":1607098415,"output":": waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chang"},{"event":"cmd_output","timestamp":1607098415,"output":"e/1(L90), \n\u001b[0m\u001b[22m\n16:13:35.101 [info] ppl_id: bee029bf-2a52-4c0b-84ed-4e4b4040da82, type: Ppls"},{"event":"cmd_output","timestamp":1607098415,"output":", state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_stat"},{"event":"cmd_output","timestamp":1607098415,"output":"e_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:35.107 [info] ppl_id: bee029bf-2a52-4c0b-84ed-4e4b4040da82, typ"},{"event":"cmd_output","timestamp":1607098415,"output":"e: PplBlocks, block_index: 1, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098415,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:35.119 [info] ppl_id: bee029bf-2a52"},{"event":"cmd_output","timestamp":1607098415,"output":"-4c0b-84ed-4e4b4040da82, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098415,"output":"in: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:35.127 [info] ppl_id: bee029"},{"event":"cmd_output","timestamp":1607098415,"output":"bf-2a52-4c0b-84ed-4e4b4040da82, type: Ppls, state: running, event: exit_scheduling, recovery_count: "},{"event":"cmd_output","timestamp":1607098415,"output":"0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:35.135 [info] PplBloc"},{"event":"cmd_output","timestamp":1607098415,"output":"ks WaitingState STM is scheduling block 0 from pipeline: \"bee029bf-2a52-4c0b-84ed-4e4b4040da82\"\n\u001b[0"},{"event":"cmd_output","timestamp":1607098415,"output":"m\u001b[22m\n16:13:35.144 [info] block_id: 7bcd28f0-a936-4c49-b17f-6deedd02eafe, type: BlockRequests, ev"},{"event":"cmd_output","timestamp":1607098415,"output":"ent: persisted block run request from ppl bee029bf-2a52-4c0b-84ed-4e4b4040da82 for block 0, origin: "},{"event":"cmd_output","timestamp":1607098415,"output":"Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:13:35"},{"event":"cmd_output","timestamp":1607098415,"output":".145 [info] block_id: 7bcd28f0-a936-4c49-b17f-6deedd02eafe, type: Blocks, state: initializing, even"},{"event":"cmd_output","timestamp":1607098415,"output":"t: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \r"},{"event":"cmd_output","timestamp":1607098415,"output":"\n\u001b[0m\u001b[22m\n16:13:35.149 [info] Block 0 of pipeline with id: bee029bf-2a52-4c0b-84ed-4e4b4040da82 s"},{"event":"cmd_output","timestamp":1607098415,"output":"cheduled in block service with id: : \"7bcd28f0-a936-4c49-b17f-6deedd02eafe\"\n\u001b[0m\u001b[22m\n16:13:35.152"},{"event":"cmd_output","timestamp":1607098415,"output":" [info] ppl_id: bee029bf-2a52-4c0b-84ed-4e4b4040da82, type: PplBlocks, block_index: 0, state: runni"},{"event":"cmd_output","timestamp":1607098415,"output":"ng, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90"},{"event":"cmd_output","timestamp":1607098415,"output":"), \n\u001b[0m\u001b[22m\n16:13:35.155 [info] block_id: 7bcd28f0-a936-4c49-b17f-6deedd02eafe, type: BlockRequ"},{"event":"cmd_output","timestamp":1607098415,"output":"ests, event: persisted build and sub_ppl details for block_request: 7bcd28f0-a936-4c49-b17f-6deedd02"},{"event":"cmd_output","timestamp":1607098415,"output":"eafe, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098415,"output":"\n16:13:35.157 [info] block_id: 7bcd28f0-a936-4c49-b17f-6deedd02eafe, type: Tasks, state: pending, "},{"event":"cmd_output","timestamp":1607098415,"output":"event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/"},{"event":"cmd_output","timestamp":1607098415,"output":"1(L167), \n\u001b[0m\u001b[22m\n16:13:35.159 [info] block_id: 7bcd28f0-a936-4c49-b17f-6deedd02eafe, type: Blo"},{"event":"cmd_output","timestamp":1607098415,"output":"cks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_s"},{"event":"cmd_output","timestamp":1607098415,"output":"tate_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:35.176 [info] block_id: 7bcd28f0-a936-4c49-b17f-6deedd02eafe"},{"event":"cmd_output","timestamp":1607098415,"output":", type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM."},{"event":"cmd_output","timestamp":1607098415,"output":"Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:35.391 [info] Request: 'terminate', request: %{\"pp"},{"event":"cmd_output","timestamp":1607098415,"output":"l_id\" => \"bee029bf-2a52-4c0b-84ed-4e4b4040da82\", \"requester_id\" => \"bee029bf-2a52-4c0b-84ed-4e4b4040"},{"event":"cmd_output","timestamp":1607098415,"output":"da82\"}\n\u001b[0m\u001b[22m\n16:13:35.401 [info] ppl_id: bee029bf-2a52-4c0b-84ed-4e4b4040da82, type: Ppls, st"},{"event":"cmd_output","timestamp":1607098415,"output":"ate: stopping, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098415,"output":"hange/1(L90), \n\u001b[0m\u001b[22m\n16:13:35.412 [info] ppl_id: bee029bf-2a52-4c0b-84ed-4e4b4040da82, block_"},{"event":"cmd_output","timestamp":1607098415,"output":"id: 7bcd28f0-a936-4c49-b17f-6deedd02eafe, type: PplBlocks, block_index: 0, state: stopping, event: e"},{"event":"cmd_output","timestamp":1607098415,"output":"xit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098415,"output":"2m\n16:13:35.417 [info] ppl_id: bee029bf-2a52-4c0b-84ed-4e4b4040da82, type: PplBlocks, block_index:"},{"event":"cmd_output","timestamp":1607098415,"output":" 1, state: done, result: canceled, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper."},{"event":"cmd_output","timestamp":1607098415,"output":"STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:35.424 [info] block_id: 7bcd28f0-a936-4c49-b17"},{"event":"cmd_output","timestamp":1607098415,"output":"f-6deedd02eafe, type: Blocks, state: stopping, event: exit_scheduling, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098415,"output":"ixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:35.430 [info] block_id: 7bcd28f0-a"},{"event":"cmd_output","timestamp":1607098415,"output":"936-4c49-b17f-6deedd02eafe, type: Tasks, state: stopping, event: exit_scheduling, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098415,"output":" origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:35.544 [info] block_id:"},{"event":"cmd_output","timestamp":1607098415,"output":" 7bcd28f0-a936-4c49-b17f-6deedd02eafe, type: Tasks, state: done, event: exit_scheduling, recovery_co"},{"event":"cmd_output","timestamp":1607098415,"output":"unt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:35.548 [info] bl"},{"event":"cmd_output","timestamp":1607098415,"output":"ock_id: 7bcd28f0-a936-4c49-b17f-6deedd02eafe, type: Blocks, state: done, event: exit_scheduling, rec"},{"event":"cmd_output","timestamp":1607098415,"output":"overy_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:35.554 [i"},{"event":"cmd_output","timestamp":1607098415,"output":"nfo] ppl_id: bee029bf-2a52-4c0b-84ed-4e4b4040da82, block_id: 7bcd28f0-a936-4c49-b17f-6deedd02eafe, "},{"event":"cmd_output","timestamp":1607098415,"output":"type: PplBlocks, block_index: 0, state: done, result: stopped, event: exit_scheduling, recovery_coun"},{"event":"cmd_output","timestamp":1607098415,"output":"t: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:35.566 [info] ppl_"},{"event":"cmd_output","timestamp":1607098415,"output":"id: bee029bf-2a52-4c0b-84ed-4e4b4040da82, type: Ppls, state: done, result: stopped, event: exit_sche"},{"event":"cmd_output","timestamp":1607098415,"output":"duling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * t"},{"event":"cmd_output","timestamp":1607098415,"output":"est termination is optimized with execute_now() looper calls (976.7ms)\u001b[0m\n * test All looper have"},{"event":"cmd_output","timestamp":1607098415,"output":" set execut_now() call for next step on state transition\u001b[22m\n16:13:35.675 [info] Periodic from mo"},{"event":"cmd_output","timestamp":1607098415,"output":"dule Elixir.Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.STMHandler.InitializingS"},{"event":"cmd_output","timestamp":1607098415,"output":"tate :: period: 1000000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Initializing"},{"event":"cmd_output","timestamp":1607098415,"output":"State\"]}, recurring args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], cooling_time_sec: 1"},{"event":"cmd_output","timestamp":1607098415,"output":"000, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher_cb: #Function<0.1"},{"event":"cmd_output","timestamp":1607098415,"output":"25326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :t"},{"event":"cmd_output","timestamp":1607098415,"output":"erminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Pp"},{"event":"cmd_output","timestamp":1607098415,"output":"ls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:35.676 [info] Periodic from module Elixir.Ppl.Ppls.ST"},{"event":"cmd_output","timestamp":1607098415,"output":"MHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 1000000 ms, metri"},{"event":"cmd_output","timestamp":1607098415,"output":"c_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args: %{allowed_st"},{"event":"cmd_output","timestamp":1607098415,"output":"ates: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_sec: 1000, initial_query: Ppl.Ppls.Mod"},{"event":"cmd_output","timestamp":1607098415,"output":"el.Ppls, observed_state: \"pending\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler.Pendi"},{"event":"cmd_output","timestamp":1607098415,"output":"ngState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :resu"},{"event":"cmd_output","timestamp":1607098415,"output":"lt, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b["},{"event":"cmd_output","timestamp":1607098415,"output":"0m\u001b[22m\n16:13:35.676 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.QueuingState with name"},{"event":"cmd_output","timestamp":1607098415,"output":" Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 1000000 ms, metric_name: {\"Ppl.beholder-wake_up\""},{"event":"cmd_output","timestamp":1607098415,"output":", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{allowed_states: [\"queuing\", \"running\", \"d"},{"event":"cmd_output","timestamp":1607098415,"output":"one\"], cooling_time_sec: 1000, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", publis"},{"event":"cmd_output","timestamp":1607098415,"output":"her_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, ret"},{"event":"cmd_output","timestamp":1607098415,"output":"urning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: P"},{"event":"cmd_output","timestamp":1607098415,"output":"pl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:35.677 [info] Periodic from module El"},{"event":"cmd_output","timestamp":1607098415,"output":"ixir.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHandler.RunningState :: period: 1"},{"event":"cmd_output","timestamp":1607098415,"output":"000000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring ar"},{"event":"cmd_output","timestamp":1607098415,"output":"gs: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: 1000, initial_query: Ppl.Pp"},{"event":"cmd_output","timestamp":1607098415,"output":"ls.Model.Ppls, observed_state: \"running\", publisher_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandle"},{"event":"cmd_output","timestamp":1607098415,"output":"r.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state"},{"event":"cmd_output","timestamp":1607098415,"output":", :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervis"},{"event":"cmd_output","timestamp":1607098415,"output":"or}\n\u001b[0m\u001b[22m\n16:13:35.677 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.StoppingState w"},{"event":"cmd_output","timestamp":1607098415,"output":"ith name Elixir.Ppl.Ppls.STMHandler.StoppingState :: period: 1000000 ms, metric_name: {\"Ppl.beholder"},{"event":"cmd_output","timestamp":1607098415,"output":"-wake_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"d"},{"event":"cmd_output","timestamp":1607098415,"output":"one\"], cooling_time_sec: 1000, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"stopping\", publi"},{"event":"cmd_output","timestamp":1607098415,"output":"sher_cb: #Function<0.71803493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, re"},{"event":"cmd_output","timestamp":1607098415,"output":"turning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: "},{"event":"cmd_output","timestamp":1607098415,"output":"Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:35.678 [info] Periodic from module E"},{"event":"cmd_output","timestamp":1607098415,"output":"lixir.Ppl.PplSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHandler.CreatedSta"},{"event":"cmd_output","timestamp":1607098415,"output":"te :: period: 1000000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-Created"},{"event":"cmd_output","timestamp":1607098415,"output":"State\"]}, recurring args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 1000, initial_qu"},{"event":"cmd_output","timestamp":1607098415,"output":"ery: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip, repo: Ppl.Ec"},{"event":"cmd_output","timestamp":1607098415,"output":"toRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id]"},{"event":"cmd_output","timestamp":1607098415,"output":", schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:35.678 [info]"},{"event":"cmd_output","timestamp":1607098415,"output":" Periodic from module Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl.PplSubIn"},{"event":"cmd_output","timestamp":1607098415,"output":"its.STMHandler.FetchingState :: period: 1000000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplS"},{"event":"cmd_output","timestamp":1607098415,"output":"ubInits-STMHandler-FetchingState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation"},{"event":"cmd_output","timestamp":1607098415,"output":"\", \"done\"], cooling_time_sec: 1000, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state"},{"event":"cmd_output","timestamp":1607098415,"output":": \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated"},{"event":"cmd_output","timestamp":1607098415,"output":"_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_sup"},{"event":"cmd_output","timestamp":1607098415,"output":"ervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:35.679 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHand"},{"event":"cmd_output","timestamp":1607098415,"output":"ler.CompilationState with name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 1000000"},{"event":"cmd_output","timestamp":1607098415,"output":" ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurri"},{"event":"cmd_output","timestamp":1607098415,"output":"ng args: %{allowed_states: [\"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: 10"},{"event":"cmd_output","timestamp":1607098415,"output":"00, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"compilation\", publisher_cb: :"},{"event":"cmd_output","timestamp":1607098415,"output":"skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recove"},{"event":"cmd_output","timestamp":1607098415,"output":"ry_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098415,"output":"6:13:35.679 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with nam"},{"event":"cmd_output","timestamp":1607098415,"output":"e Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period: 1000000 ms, metric_name: {\"Ppl.behol"},{"event":"cmd_output","timestamp":1607098415,"output":"der-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurring args: %{allowed_states: [\""},{"event":"cmd_output","timestamp":1607098415,"output":"done\"], cooling_time_sec: 1000, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"r"},{"event":"cmd_output","timestamp":1607098415,"output":"egular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated"},{"event":"cmd_output","timestamp":1607098415,"output":"_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_sup"},{"event":"cmd_output","timestamp":1607098415,"output":"ervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:35.680 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandle"},{"event":"cmd_output","timestamp":1607098415,"output":"r.InitializingState with name Elixir.Ppl.PplBlocks.STMHandler.InitializingState :: period: 1000000 m"},{"event":"cmd_output","timestamp":1607098415,"output":"s, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-InitializingState\"]}, recurring "},{"event":"cmd_output","timestamp":1607098415,"output":"args: %{allowed_states: [\"initializing\", \"waiting\", \"done\"], cooling_time_sec: 1000, initial_query: "},{"event":"cmd_output","timestamp":1607098415,"output":"Ppl.PplBlocks.Model.PplBlocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Ppl.EctoRe"},{"event":"cmd_output","timestamp":1607098415,"output":"po, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :bl"},{"event":"cmd_output","timestamp":1607098415,"output":"ock_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:35.680 "},{"event":"cmd_output","timestamp":1607098415,"output":"[info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.WaitingState with name Elixir.Ppl.PplBl"},{"event":"cmd_output","timestamp":1607098415,"output":"ocks.STMHandler.WaitingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBloc"},{"event":"cmd_output","timestamp":1607098415,"output":"ks-STMHandler-WaitingState\"]}, recurring args: %{allowed_states: [\"waiting\", \"running\", \"done\"], coo"},{"event":"cmd_output","timestamp":1607098415,"output":"ling_time_sec: 1000, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"waiting\", publis"},{"event":"cmd_output","timestamp":1607098415,"output":"her_cb: #Function<0.8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, "},{"event":"cmd_output","timestamp":1607098415,"output":"returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_"},{"event":"cmd_output","timestamp":1607098415,"output":"index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:35.681 [inf"},{"event":"cmd_output","timestamp":1607098415,"output":"o] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.RunningState with name Elixir.Ppl.PplBlocks"},{"event":"cmd_output","timestamp":1607098415,"output":".STMHandler.RunningState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-S"},{"event":"cmd_output","timestamp":1607098415,"output":"TMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], coolin"},{"event":"cmd_output","timestamp":1607098415,"output":"g_time_sec: 1000, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"running\", publisher"},{"event":"cmd_output","timestamp":1607098415,"output":"_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, re"},{"event":"cmd_output","timestamp":1607098415,"output":"turning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_in"},{"event":"cmd_output","timestamp":1607098415,"output":"dex, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:35"},{"event":"cmd_output","timestamp":1607098415,"output":".682 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.StoppingState with name Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098415,"output":".PplBlocks.STMHandler.StoppingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-"},{"event":"cmd_output","timestamp":1607098415,"output":"PplBlocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooli"},{"event":"cmd_output","timestamp":1607098415,"output":"ng_time_sec: 1000, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"stopping\", publish"},{"event":"cmd_output","timestamp":1607098415,"output":"er_cb: #Function<0.104215991/1 in Ppl.PplBlocks.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo"},{"event":"cmd_output","timestamp":1607098415,"output":", returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :bloc"},{"event":"cmd_output","timestamp":1607098415,"output":"k_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098415,"output":"3:35.682 [info] Periodic from module Elixir.Block.Blocks.STMHandler.InitializingState with name Eli"},{"event":"cmd_output","timestamp":1607098415,"output":"xir.Block.Blocks.STMHandler.InitializingState :: period: 1000000 ms, metric_name: {\"Ppl.beholder-wak"},{"event":"cmd_output","timestamp":1607098415,"output":"e_up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"running\","},{"event":"cmd_output","timestamp":1607098415,"output":" \"done\"], cooling_time_sec: 1000, initial_query: Block.Blocks.Model.Blocks, observed_state: \"initial"},{"event":"cmd_output","timestamp":1607098415,"output":"izing\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at,"},{"event":"cmd_output","timestamp":1607098415,"output":" :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b["},{"event":"cmd_output","timestamp":1607098415,"output":"0m\u001b[22m\n16:13:35.683 [info] Periodic from module Elixir.Block.Blocks.STMHandler.RunningState with "},{"event":"cmd_output","timestamp":1607098415,"output":"name Elixir.Block.Blocks.STMHandler.RunningState :: period: 1000000 ms, metric_name: {\"Ppl.beholder-"},{"event":"cmd_output","timestamp":1607098415,"output":"wake_up\", [\"Block-Blocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \""},{"event":"cmd_output","timestamp":1607098415,"output":"stopping\", \"done\"], cooling_time_sec: 1000, initial_query: Block.Blocks.Model.Blocks, observed_state"},{"event":"cmd_output","timestamp":1607098415,"output":": \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :update"},{"event":"cmd_output","timestamp":1607098415,"output":"d_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip"},{"event":"cmd_output","timestamp":1607098415,"output":"}\n\u001b[0m\u001b[22m\n16:13:35.683 [info] Periodic from module Elixir.Block.Blocks.STMHandler.StoppingState"},{"event":"cmd_output","timestamp":1607098415,"output":" with name Elixir.Block.Blocks.STMHandler.StoppingState :: period: 1000000 ms, metric_name: {\"Ppl.be"},{"event":"cmd_output","timestamp":1607098415,"output":"holder-wake_up\", [\"Block-Blocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"sto"},{"event":"cmd_output","timestamp":1607098415,"output":"pping\", \"done\"], cooling_time_sec: 1000, initial_query: Block.Blocks.Model.Blocks, observed_state: \""},{"event":"cmd_output","timestamp":1607098415,"output":"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_"},{"event":"cmd_output","timestamp":1607098415,"output":"at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\r"},{"event":"cmd_output","timestamp":1607098415,"output":"\n\u001b[0m\u001b[22m\n16:13:35.684 [info] Periodic from module Elixir.Block.Tasks.STMHandler.PendingState wit"},{"event":"cmd_output","timestamp":1607098415,"output":"h name Elixir.Block.Tasks.STMHandler.PendingState :: period: 1000000 ms, metric_name: {\"Ppl.beholder"},{"event":"cmd_output","timestamp":1607098415,"output":"-wake_up\", [\"Block-Tasks-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"running\", \""},{"event":"cmd_output","timestamp":1607098415,"output":"done\"], cooling_time_sec: 1000, initial_query: Block.Tasks.Model.Tasks, observed_state: \"pending\", p"},{"event":"cmd_output","timestamp":1607098415,"output":"ublisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, "},{"event":"cmd_output","timestamp":1607098415,"output":":recovery_count, :block_id, :build_request_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :s"},{"event":"cmd_output","timestamp":1607098415,"output":"kip}\n\u001b[0m\u001b[22m\n16:13:35.684 [info] Periodic from module Elixir.Block.Tasks.STMHandler.RunningStat"},{"event":"cmd_output","timestamp":1607098415,"output":"e with name Elixir.Block.Tasks.STMHandler.RunningState :: period: 1000000 ms, metric_name: {\"Ppl.beh"},{"event":"cmd_output","timestamp":1607098415,"output":"older-wake_up\", [\"Block-Tasks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"runnin"},{"event":"cmd_output","timestamp":1607098415,"output":"g\", \"stopping\", \"done\"], cooling_time_sec: 1000, initial_query: Block.Tasks.Model.Tasks, observed_st"},{"event":"cmd_output","timestamp":1607098415,"output":"ate: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :upd"},{"event":"cmd_output","timestamp":1607098415,"output":"ated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :ski"},{"event":"cmd_output","timestamp":1607098415,"output":"p}\n\u001b[0m\u001b[22m\n16:13:35.685 [info] Periodic from module Elixir.Block.Tasks.STMHandler.StoppingState"},{"event":"cmd_output","timestamp":1607098415,"output":" with name Elixir.Block.Tasks.STMHandler.StoppingState :: period: 1000000 ms, metric_name: {\"Ppl.beh"},{"event":"cmd_output","timestamp":1607098415,"output":"older-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopp"},{"event":"cmd_output","timestamp":1607098415,"output":"ing\", \"done\"], cooling_time_sec: 1000, initial_query: Block.Tasks.Model.Tasks, observed_state: \"stop"},{"event":"cmd_output","timestamp":1607098415,"output":"ping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, "},{"event":"cmd_output","timestamp":1607098415,"output":":state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098415,"output":"[22m\n16:13:35.688 [info] Opening new connection {:ok, %AMQP.Connection{pid: #PID<0.24746.1>}} for "},{"event":"cmd_output","timestamp":1607098415,"output":"id: default\n\u001b[0m\u001b[22m\n16:13:35.690 [info] Binding 'block.finished' to 'task_state_exchange' with "},{"event":"cmd_output","timestamp":1607098415,"output":"'finished' routing keys\n\u001b[0m\u001b[22m\n16:13:35.691 [info] Creating queue 'block.finished'\n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098415,"output":"\n16:13:35.691 [info] Creating dead queue 'block.finished.dead'\n\u001b[0m\u001b[22m\n16:13:35.692 [info] Cre"},{"event":"cmd_output","timestamp":1607098415,"output":"ating delay queue 'block.finished.delay.10'\n\u001b[0m\u001b[22m\n16:13:35.692 [info] Binding 'block.finished"},{"event":"cmd_output","timestamp":1607098415,"output":"' to 'block.finished' with 'finished' routing keys\n\u001b[0m\u001b[22m\n16:13:35.695 [info] Request: 'run: %"},{"event":"cmd_output","timestamp":1607098415,"output":"{\"branch_id\" => \"e2c01ea2-bbdb-4472-bca7-62d16d71414e\", \"branch_name\" => \"non-default-branch\", \"clie"},{"event":"cmd_output","timestamp":1607098415,"output":"nt_id\" => \"328c742132e5407abd7d\", \"commit_sha\" => \"70e0f5b\", \"file_name\" => \"semaphore.yml\", \"hook_i"},{"event":"cmd_output","timestamp":1607098415,"output":"d\" => \"6fbef154-4868-449a-bcd7-e5d4e4105b04\", \"label\" => \"master\", \"organization_id\" => \"f329b6b0-36"},{"event":"cmd_output","timestamp":1607098415,"output":"da-45cb-87b1-e638e9c6b260\", \"owner\" => \"renderedtext\", \"project_id\" => \"123\", \"repo_name\" => \"pipeli"},{"event":"cmd_output","timestamp":1607098415,"output":"nes-test-repo-auto-call\", \"request_token\" => \"a95ebf88-364b-11eb-9865-5254005464e2\", \"requester_id\" "},{"event":"cmd_output","timestamp":1607098415,"output":"=> \"b43fe4fb-b49f-45c2-94b7-fcd83719d22a\", \"service\" => \"git_hub\", \"suppressed_attributes\" => [\"acce"},{"event":"cmd_output","timestamp":1607098415,"output":"ss_token\", \"client_secret\"], \"wf_id\" => \"4fefa962-b935-416f-8cc6-0b90e253567f\", \"working_dir\" => \".s"},{"event":"cmd_output","timestamp":1607098415,"output":"emaphore\"}\n\u001b[0m\u001b[22m\n16:13:35.723 [info] ppl_id: 38a1b4b3-004d-496e-95b8-c57735227733, type: PplR"},{"event":"cmd_output","timestamp":1607098415,"output":"equests, event: persisted schedule request with request_token: a95ebf88-364b-11eb-9865-5254005464e2,"},{"event":"cmd_output","timestamp":1607098415,"output":" origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:13"},{"event":"cmd_output","timestamp":1607098415,"output":":35.726 [info] ppl_id: 38a1b4b3-004d-496e-95b8-c57735227733, type: Ppls, state: initializing, event"},{"event":"cmd_output","timestamp":1607098415,"output":": initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124"},{"event":"cmd_output","timestamp":1607098415,"output":"), \n\u001b[0m\u001b[22m\n16:13:35.729 [info] Project 123 and branch non-default-branchlatest_wf details upda"},{"event":"cmd_output","timestamp":1607098415,"output":"ted: \"wf_id: 4fefa962-b935-416f-8cc6-0b90e253567f, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:13:35.730 [info] Pe"},{"event":"cmd_output","timestamp":1607098415,"output":"rsisted ppl_sub_init for pipeline with ppl_id: 38a1b4b3-004d-496e-95b8-c57735227733: %Ppl.PplSubInit"},{"event":"cmd_output","timestamp":1607098415,"output":"s.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id:"},{"event":"cmd_output","timestamp":1607098415,"output":" nil, error_description: nil, id: 311, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2"},{"event":"cmd_output","timestamp":1607098415,"output":"020-12-04 16:13:35.729645], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"38a1b4b3-004d-496e-95b8-c57735227733\", recovery_count: 0, result: nil"},{"event":"cmd_output","timestamp":1607098415,"output":", result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated"},{"event":"cmd_output","timestamp":1607098415,"output":"_at: ~N[2020-12-04 16:13:35.729651]}\n\u001b[0m\u001b[22m\n16:13:35.738 [info] ppl_id: 38a1b4b3-004d-496e-95b"},{"event":"cmd_output","timestamp":1607098415,"output":"8-c57735227733, type: PplRequests, event: persisted source_args for pipeline: 38a1b4b3-004d-496e-95b"},{"event":"cmd_output","timestamp":1607098415,"output":"8-c57735227733, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098415,"output":"\u001b[22m\n16:13:35.740 [info] ppl_id: 38a1b4b3-004d-496e-95b8-c57735227733, type: PplSubInits, state: "},{"event":"cmd_output","timestamp":1607098415,"output":"fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change"},{"event":"cmd_output","timestamp":1607098415,"output":"/1(L90), \n\u001b[0m\u001b[22m\n16:13:35.931 [info] ppl_id: 38a1b4b3-004d-496e-95b8-c57735227733, type: PplSu"},{"event":"cmd_output","timestamp":1607098415,"output":"bInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Im"},{"event":"cmd_output","timestamp":1607098415,"output":"pl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:35.949 [info] ppl_id: 38a1b4b3-004d-496e-95b8-c57735"},{"event":"cmd_output","timestamp":1607098415,"output":"227733, type: PplRequests, event: persisted definition for request with request_token: a95ebf88-364b"},{"event":"cmd_output","timestamp":1607098415,"output":"-11eb-9865-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3"},{"event":"cmd_output","timestamp":1607098415,"output":"(L76), \n\u001b[0m\u001b[22m\n16:13:35.952 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #"},{"event":"cmd_output","timestamp":1607098415,"output":"Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:13:35.950892], name: \"master-"},{"event":"cmd_output","timestamp":1607098415,"output":".semaphore/semaphore.yml\", organization_id: \"f329b6b0-36da-45cb-87b1-e638e9c6b260\", project_id: \"123"},{"event":"cmd_output","timestamp":1607098415,"output":"\", queue_id: \"2f5b3bce-6861-4630-8793-1d1eda081000\", scope: \"project\", updated_at: ~N[2020-12-04 16:"},{"event":"cmd_output","timestamp":1607098415,"output":"13:35.950899], user_generated: false}}\n\u001b[0m\u001b[22m\n16:13:35.956 [info] ppl_id: not_available, event"},{"event":"cmd_output","timestamp":1607098415,"output":": created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098415,"output":"16:13:35.956 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_"},{"event":"cmd_output","timestamp":1607098415,"output":"ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:35.956 [info] ppl_id: 38a1b4b3-004d-496e-95b8-c57735227733, type: P"},{"event":"cmd_output","timestamp":1607098415,"output":"plBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098415,"output":".PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:35.956 [info] ppl_id: "},{"event":"cmd_output","timestamp":1607098415,"output":"38a1b4b3-004d-496e-95b8-c57735227733, type: PplBlocks, block_index: 1, state: initializing, event: c"},{"event":"cmd_output","timestamp":1607098415,"output":"reated, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105"},{"event":"cmd_output","timestamp":1607098415,"output":"), \n\u001b[0m\u001b[22m\n16:13:35.958 [info] ppl_id: 38a1b4b3-004d-496e-95b8-c57735227733, type: PplSubInits"},{"event":"cmd_output","timestamp":1607098415,"output":", state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM."},{"event":"cmd_output","timestamp":1607098415,"output":"Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:35.965 [info] ppl_id: 38a1b4b3-004d-496e-95b8-c577"},{"event":"cmd_output","timestamp":1607098415,"output":"35227733, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loop"},{"event":"cmd_output","timestamp":1607098415,"output":"er.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:35.966 [info] ppl_id: 38a1b4b3-004d-496e-95"},{"event":"cmd_output","timestamp":1607098415,"output":"b8-c57735227733, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098415,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:35.973 [info] p"},{"event":"cmd_output","timestamp":1607098415,"output":"pl_id: 38a1b4b3-004d-496e-95b8-c57735227733, type: PplBlocks, block_index: 1, state: waiting, event:"},{"event":"cmd_output","timestamp":1607098415,"output":" exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098415,"output":"[22m\n16:13:35.973 [info] ppl_id: 38a1b4b3-004d-496e-95b8-c57735227733, type: Ppls, state: queuing,"},{"event":"cmd_output","timestamp":1607098415,"output":" event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), "},{"event":"cmd_output","timestamp":1607098415,"output":"\n\u001b[0m\u001b[22m\n16:13:35.980 [info] ppl_id: 38a1b4b3-004d-496e-95b8-c57735227733, type: Ppls, state: r"},{"event":"cmd_output","timestamp":1607098415,"output":"unning, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1"},{"event":"cmd_output","timestamp":1607098415,"output":"(L90), \n\u001b[0m\u001b[22m\n16:13:35.987 [info] PplBlocks WaitingState STM is scheduling block 0 from pipel"},{"event":"cmd_output","timestamp":1607098415,"output":"ine: \"38a1b4b3-004d-496e-95b8-c57735227733\"\n\u001b[0m\u001b[22m\n16:13:35.992 [info] block_id: 51fd13b3-0e9a"},{"event":"cmd_output","timestamp":1607098415,"output":"-43dc-9524-b6f9c0df912d, type: BlockRequests, event: persisted block run request from ppl 38a1b4b3-0"},{"event":"cmd_output","timestamp":1607098415,"output":"04d-496e-95b8-c57735227733 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQuerie"},{"event":"cmd_output","timestamp":1607098415,"output":"s.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:13:35.994 [info] block_id: 51fd13b3-0e9a-43dc-9524-b6f9c"},{"event":"cmd_output","timestamp":1607098415,"output":"0df912d, type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.B"},{"event":"cmd_output","timestamp":1607098415,"output":"lock.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:13:35.997 [info] Block 0 of pipeline"},{"event":"cmd_output","timestamp":1607098415,"output":" with id: 38a1b4b3-004d-496e-95b8-c57735227733 scheduled in block service with id: : \"51fd13b3-0e9a-"},{"event":"cmd_output","timestamp":1607098415,"output":"43dc-9524-b6f9c0df912d\"\n\u001b[0m\u001b[22m\n16:13:35.998 [info] ppl_id: 38a1b4b3-004d-496e-95b8-c5773522773"},{"event":"cmd_output","timestamp":1607098415,"output":"3, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098416,"output":"n: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:36.002 [info] block_id: 51fd1"},{"event":"cmd_output","timestamp":1607098416,"output":"3b3-0e9a-43dc-9524-b6f9c0df912d, type: BlockRequests, event: persisted build and sub_ppl details for"},{"event":"cmd_output","timestamp":1607098416,"output":" block_request: 51fd13b3-0e9a-43dc-9524-b6f9c0df912d, origin: Elixir.Block.BlockRequests.Model.Block"},{"event":"cmd_output","timestamp":1607098416,"output":"RequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:13:36.003 [info] block_id: 51fd13b3-0e9a-43dc-"},{"event":"cmd_output","timestamp":1607098416,"output":"9524-b6f9c0df912d, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Bl"},{"event":"cmd_output","timestamp":1607098416,"output":"ock.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:13:36.005 [info] block_id:"},{"event":"cmd_output","timestamp":1607098416,"output":" 51fd13b3-0e9a-43dc-9524-b6f9c0df912d, type: Blocks, state: running, event: exit_scheduling, recover"},{"event":"cmd_output","timestamp":1607098416,"output":"y_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:36.015 [info]"},{"event":"cmd_output","timestamp":1607098416,"output":" block_id: 51fd13b3-0e9a-43dc-9524-b6f9c0df912d, type: Tasks, state: running, event: exit_schedulin"},{"event":"cmd_output","timestamp":1607098416,"output":"g, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:36."},{"event":"cmd_output","timestamp":1607098416,"output":"268 [info] block_id: 51fd13b3-0e9a-43dc-9524-b6f9c0df912d, type: Tasks, state: done, event: exit_sc"},{"event":"cmd_output","timestamp":1607098416,"output":"heduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098416,"output":":13:36.272 [info] block_id: 51fd13b3-0e9a-43dc-9524-b6f9c0df912d, type: Blocks, state: done, event:"},{"event":"cmd_output","timestamp":1607098416,"output":" exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098416,"output":"[22m\n16:13:36.277 [info] ppl_id: 38a1b4b3-004d-496e-95b8-c57735227733, block_id: 51fd13b3-0e9a-43d"},{"event":"cmd_output","timestamp":1607098416,"output":"c-9524-b6f9c0df912d, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_sched"},{"event":"cmd_output","timestamp":1607098416,"output":"uling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13"},{"event":"cmd_output","timestamp":1607098416,"output":":36.281 [info] PplBlocks WaitingState STM is scheduling block 1 from pipeline: \"38a1b4b3-004d-496e-"},{"event":"cmd_output","timestamp":1607098416,"output":"95b8-c57735227733\"\n\u001b[0m\u001b[22m\n16:13:36.287 [info] block_id: 4aad2599-360f-471e-948a-5fd65eaa09d9, "},{"event":"cmd_output","timestamp":1607098416,"output":"type: BlockRequests, event: persisted block run request from ppl 38a1b4b3-004d-496e-95b8-c5773522773"},{"event":"cmd_output","timestamp":1607098416,"output":"3 for block 1, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35)"},{"event":"cmd_output","timestamp":1607098416,"output":", \n\u001b[0m\u001b[22m\n16:13:36.289 [info] block_id: 4aad2599-360f-471e-948a-5fd65eaa09d9, type: Blocks, st"},{"event":"cmd_output","timestamp":1607098416,"output":"ate: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQ"},{"event":"cmd_output","timestamp":1607098416,"output":"ueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:13:36.289 [info] Block 1 of pipeline with id: 38a1b4b3-004d-4"},{"event":"cmd_output","timestamp":1607098416,"output":"96e-95b8-c57735227733 scheduled in block service with id: : \"4aad2599-360f-471e-948a-5fd65eaa09d9\"\n"},{"event":"cmd_output","timestamp":1607098416,"output":"\u001b[0m\u001b[22m\n16:13:36.290 [info] ppl_id: 38a1b4b3-004d-496e-95b8-c57735227733, type: PplBlocks, block"},{"event":"cmd_output","timestamp":1607098416,"output":"_index: 1, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl"},{"event":"cmd_output","timestamp":1607098416,"output":".log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:36.300 [info] block_id: 4aad2599-360f-471e-948a-5fd65e"},{"event":"cmd_output","timestamp":1607098416,"output":"aa09d9, type: BlockRequests, event: persisted build and sub_ppl details for block_request: 4aad2599-"},{"event":"cmd_output","timestamp":1607098416,"output":"360f-471e-948a-5fd65eaa09d9, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_bu"},{"event":"cmd_output","timestamp":1607098416,"output":"ild/2(L41), \n\u001b[0m\u001b[22m\n16:13:36.302 [info] block_id: 4aad2599-360f-471e-948a-5fd65eaa09d9, type: "},{"event":"cmd_output","timestamp":1607098416,"output":"Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.Ini"},{"event":"cmd_output","timestamp":1607098416,"output":"tializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:13:36.304 [info] block_id: 4aad2599-360f-471e-948a-"},{"event":"cmd_output","timestamp":1607098416,"output":"5fd65eaa09d9, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098416,"output":"r.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:36.313 [info] block_id: 4aad2599-360f"},{"event":"cmd_output","timestamp":1607098416,"output":"-471e-948a-5fd65eaa09d9, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098416,"output":"gin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:36.478 [info] block_id: 4aa"},{"event":"cmd_output","timestamp":1607098416,"output":"d2599-360f-471e-948a-5fd65eaa09d9, type: Tasks, state: done, event: exit_scheduling, recovery_count:"},{"event":"cmd_output","timestamp":1607098416,"output":" 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:36.485 [info] block_"},{"event":"cmd_output","timestamp":1607098416,"output":"id: 4aad2599-360f-471e-948a-5fd65eaa09d9, type: Blocks, state: done, event: exit_scheduling, recover"},{"event":"cmd_output","timestamp":1607098416,"output":"y_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:36.490 [info]"},{"event":"cmd_output","timestamp":1607098416,"output":" ppl_id: 38a1b4b3-004d-496e-95b8-c57735227733, block_id: 4aad2599-360f-471e-948a-5fd65eaa09d9, type"},{"event":"cmd_output","timestamp":1607098416,"output":": PplBlocks, block_index: 1, state: done, result: passed, event: exit_scheduling, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098416,"output":" origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:36.500 [info] ppl_id: 3"},{"event":"cmd_output","timestamp":1607098416,"output":"8a1b4b3-004d-496e-95b8-c57735227733, type: Ppls, state: done, result: passed, event: exit_scheduling"},{"event":"cmd_output","timestamp":1607098416,"output":", recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test Al"},{"event":"cmd_output","timestamp":1607098416,"output":"l looper have set execut_now() call for next step on state transition (942.7ms)\u001b[0m\n\nPpl.E2E.FreeT"},{"event":"cmd_output","timestamp":1607098416,"output":"opology.Test\n * test Free topology pipeline with failing block\u001b[22m\n16:13:36.614 [info] Request:"},{"event":"cmd_output","timestamp":1607098416,"output":" 'run: %{\"branch_id\" => \"e26cecdd-b4c7-4fb4-8497-37bf9bcde1b1\", \"branch_name\" => \"master\", \"commit_s"},{"event":"cmd_output","timestamp":1607098416,"output":"ha\" => \"75891a4469\", \"file_name\" => \"semaphore.yml\", \"hook_id\" => \"a9eb0650-364b-11eb-ad28-525400546"},{"event":"cmd_output","timestamp":1607098416,"output":"4e2\", \"label\" => \"master\", \"organization_id\" => \"d207feee-45be-4253-b400-e7730cd1006d\", \"owner\" => \""},{"event":"cmd_output","timestamp":1607098416,"output":"rt\", \"project_id\" => \"f076373c-9fe2-403c-a288-b46f55e12811\", \"repo_name\" => \"14_free_topology_failin"},{"event":"cmd_output","timestamp":1607098416,"output":"g_block\", \"request_token\" => \"a9eafe76-364b-11eb-bf64-5254005464e2\", \"requester_id\" => \"7cb569a6-d4a"},{"event":"cmd_output","timestamp":1607098416,"output":"e-448f-ba6a-dd2aba38df5d\", \"service\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"client"},{"event":"cmd_output","timestamp":1607098416,"output":"_secret\"], \"wf_id\" => \"4f261c15-74eb-42fc-9f1e-1b707d837001\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098416,"output":"22m\n16:13:36.616 [info] ppl_id: a5fe6600-a728-4411-a33b-4b9f63cf2862, type: PplRequests, event: pe"},{"event":"cmd_output","timestamp":1607098416,"output":"rsisted schedule request with request_token: a9eafe76-364b-11eb-bf64-5254005464e2, origin: Elixir.Pp"},{"event":"cmd_output","timestamp":1607098416,"output":"l.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:13:36.619 [info] pp"},{"event":"cmd_output","timestamp":1607098416,"output":"l_id: a5fe6600-a728-4411-a33b-4b9f63cf2862, type: Ppls, state: initializing, event: initializing, re"},{"event":"cmd_output","timestamp":1607098416,"output":"covery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098416,"output":":13:36.622 [info] Project f076373c-9fe2-403c-a288-b46f55e12811 and branch masterlatest_wf details u"},{"event":"cmd_output","timestamp":1607098416,"output":"pdated: \"wf_id: 4f261c15-74eb-42fc-9f1e-1b707d837001, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:13:36.623 [info] "},{"event":"cmd_output","timestamp":1607098416,"output":" Persisted ppl_sub_init for pipeline with ppl_id: a5fe6600-a728-4411-a33b-4b9f63cf2862: %Ppl.PplSubI"},{"event":"cmd_output","timestamp":1607098416,"output":"nits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_"},{"event":"cmd_output","timestamp":1607098416,"output":"id: nil, error_description: nil, id: 312, in_scheduling: false, init_type: \"regular\", inserted_at: ~"},{"event":"cmd_output","timestamp":1607098416,"output":"N[2020-12-04 16:13:36.622545], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"a5fe6600-a728-4411-a33b-4b9f63cf2862\", recovery_count: 0, result: "},{"event":"cmd_output","timestamp":1607098416,"output":"nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, upda"},{"event":"cmd_output","timestamp":1607098416,"output":"ted_at: ~N[2020-12-04 16:13:36.622552]}\n\u001b[0m\u001b[22m\n16:13:36.626 [info] Periodic from module Elixir"},{"event":"cmd_output","timestamp":1607098416,"output":".Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: per"},{"event":"cmd_output","timestamp":1607098416,"output":"iod: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recur"},{"event":"cmd_output","timestamp":1607098416,"output":"ring args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query"},{"event":"cmd_output","timestamp":1607098416,"output":": Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl."},{"event":"cmd_output","timestamp":1607098416,"output":"Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, "},{"event":"cmd_output","timestamp":1607098416,"output":":updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_superviso"},{"event":"cmd_output","timestamp":1607098416,"output":"r: :skip}\n\u001b[0m\u001b[22m\n16:13:36.626 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingSt"},{"event":"cmd_output","timestamp":1607098416,"output":"ate with name Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder"},{"event":"cmd_output","timestamp":1607098416,"output":"-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"pending\", \"que"},{"event":"cmd_output","timestamp":1607098416,"output":"uing\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: "},{"event":"cmd_output","timestamp":1607098416,"output":"\"pending\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Pp"},{"event":"cmd_output","timestamp":1607098416,"output":"l.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl"},{"event":"cmd_output","timestamp":1607098416,"output":"_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:13:36.626 [in"},{"event":"cmd_output","timestamp":1607098416,"output":"fo] Periodic from module Elixir.Ppl.Ppls.STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandl"},{"event":"cmd_output","timestamp":1607098416,"output":"er.QueuingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Queui"},{"event":"cmd_output","timestamp":1607098416,"output":"ngState\"]}, recurring args: %{allowed_states: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, "},{"event":"cmd_output","timestamp":1607098416,"output":"initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", publisher_cb: #Function<0.125102843/1"},{"event":"cmd_output","timestamp":1607098416,"output":" in Ppl.Ppls.STMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_reques"},{"event":"cmd_output","timestamp":1607098416,"output":"t, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_superv"},{"event":"cmd_output","timestamp":1607098416,"output":"isor: :skip}\n\u001b[0m\u001b[22m\n16:13:36.627 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.Runnin"},{"event":"cmd_output","timestamp":1607098416,"output":"gState with name Elixir.Ppl.Ppls.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.behol"},{"event":"cmd_output","timestamp":1607098416,"output":"der-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \""},{"event":"cmd_output","timestamp":1607098416,"output":"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"runni"},{"event":"cmd_output","timestamp":1607098416,"output":"ng\", publisher_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler.RunningState.args/0>, repo: Ppl.Ect"},{"event":"cmd_output","timestamp":1607098416,"output":"oRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id],"},{"event":"cmd_output","timestamp":1607098416,"output":" schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:13:36.628 [info] "},{"event":"cmd_output","timestamp":1607098416,"output":"Periodic from module Elixir.Ppl.Ppls.STMHandler.StoppingState with name Elixir.Ppl.Ppls.STMHandler.S"},{"event":"cmd_output","timestamp":1607098416,"output":"toppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Stopping"},{"event":"cmd_output","timestamp":1607098416,"output":"State\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_quer"},{"event":"cmd_output","timestamp":1607098416,"output":"y: Ppl.Ppls.Model.Ppls, observed_state: \"stopping\", publisher_cb: #Function<0.71803493/1 in Ppl.Ppls"},{"event":"cmd_output","timestamp":1607098416,"output":".STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated"},{"event":"cmd_output","timestamp":1607098416,"output":"_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip"},{"event":"cmd_output","timestamp":1607098416,"output":"}\n\u001b[0m\u001b[22m\n16:13:36.628 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedSta"},{"event":"cmd_output","timestamp":1607098416,"output":"te with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.be"},{"event":"cmd_output","timestamp":1607098416,"output":"holder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args: %{allowed_states: [\"f"},{"event":"cmd_output","timestamp":1607098416,"output":"etching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_s"},{"event":"cmd_output","timestamp":1607098416,"output":"tate: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :upda"},{"event":"cmd_output","timestamp":1607098416,"output":"ted_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_"},{"event":"cmd_output","timestamp":1607098416,"output":"supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:36.629 [info] Periodic from module Elixir.Ppl.PplSubInits.STMH"},{"event":"cmd_output","timestamp":1607098416,"output":"andler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 ms, me"},{"event":"cmd_output","timestamp":1607098416,"output":"tric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %"},{"event":"cmd_output","timestamp":1607098416,"output":"{allowed_states: [\"regular_init\", \"compilation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.P"},{"event":"cmd_output","timestamp":1607098416,"output":"plSubInits.Model.PplSubInits, observed_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, r"},{"event":"cmd_output","timestamp":1607098416,"output":"eturning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema:"},{"event":"cmd_output","timestamp":1607098416,"output":" Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:36.629 [info] Periodi"},{"event":"cmd_output","timestamp":1607098416,"output":"c from module Elixir.Ppl.PplSubInits.STMHandler.CompilationState with name Elixir.Ppl.PplSubInits.ST"},{"event":"cmd_output","timestamp":1607098416,"output":"MHandler.CompilationState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits"},{"event":"cmd_output","timestamp":1607098416,"output":"-STMHandler-CompilationState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \""},{"event":"cmd_output","timestamp":1607098416,"output":"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed"},{"event":"cmd_output","timestamp":1607098416,"output":"_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request,"},{"event":"cmd_output","timestamp":1607098416,"output":" :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits,"},{"event":"cmd_output","timestamp":1607098416,"output":" task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:36.630 [info] Periodic from module Elixir.Ppl.PplSubInit"},{"event":"cmd_output","timestamp":1607098416,"output":"s.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period"},{"event":"cmd_output","timestamp":1607098416,"output":": 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, re"},{"event":"cmd_output","timestamp":1607098416,"output":"curring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model."},{"event":"cmd_output","timestamp":1607098416,"output":"PplSubInits, observed_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:i"},{"event":"cmd_output","timestamp":1607098416,"output":"d, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubIn"},{"event":"cmd_output","timestamp":1607098416,"output":"its.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:36.630 [info] Periodic from module"},{"event":"cmd_output","timestamp":1607098416,"output":" Elixir.Ppl.PplBlocks.STMHandler.InitializingState with name Elixir.Ppl.PplBlocks.STMHandler.Initial"},{"event":"cmd_output","timestamp":1607098416,"output":"izingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-Initi"},{"event":"cmd_output","timestamp":1607098416,"output":"alizingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"waiting\", \"done\"], cooling_time"},{"event":"cmd_output","timestamp":1607098416,"output":"_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"initializing\", publisher_cb:"},{"event":"cmd_output","timestamp":1607098416,"output":" :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :reco"},{"event":"cmd_output","timestamp":1607098416,"output":"very_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n"},{"event":"cmd_output","timestamp":1607098416,"output":"\u001b[0m\u001b[22m\n16:13:36.631 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.WaitingState wi"},{"event":"cmd_output","timestamp":1607098416,"output":"th name Elixir.Ppl.PplBlocks.STMHandler.WaitingState :: period: 1000 ms, metric_name: {\"Ppl.beholder"},{"event":"cmd_output","timestamp":1607098416,"output":"-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurring args: %{allowed_states: [\"waiting\","},{"event":"cmd_output","timestamp":1607098416,"output":" \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_sta"},{"event":"cmd_output","timestamp":1607098416,"output":"te: \"waiting\", publisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>,"},{"event":"cmd_output","timestamp":1607098416,"output":" repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_co"},{"event":"cmd_output","timestamp":1607098416,"output":"unt, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098416,"output":"2m\n16:13:36.631 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.RunningState with name"},{"event":"cmd_output","timestamp":1607098416,"output":" Elixir.Ppl.PplBlocks.STMHandler.RunningState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_u"},{"event":"cmd_output","timestamp":1607098416,"output":"p\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopp"},{"event":"cmd_output","timestamp":1607098416,"output":"ing\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \""},{"event":"cmd_output","timestamp":1607098416,"output":"running\", publisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0>, rep"},{"event":"cmd_output","timestamp":1607098416,"output":"o: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count,"},{"event":"cmd_output","timestamp":1607098416,"output":" :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n"},{"event":"cmd_output","timestamp":1607098416,"output":"\u001b[0m\u001b[22m\n16:13:36.632 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.StoppingState w"},{"event":"cmd_output","timestamp":1607098416,"output":"ith name Elixir.Ppl.PplBlocks.STMHandler.StoppingState :: period: 1000 ms, metric_name: {\"Ppl.behold"},{"event":"cmd_output","timestamp":1607098416,"output":"er-wake_up\", [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stoppi"},{"event":"cmd_output","timestamp":1607098416,"output":"ng\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"s"},{"event":"cmd_output","timestamp":1607098416,"output":"topping\", publisher_cb: #Function<0.104215991/1 in Ppl.PplBlocks.STMHandler.StoppingState.args/0>, r"},{"event":"cmd_output","timestamp":1607098416,"output":"epo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_coun"},{"event":"cmd_output","timestamp":1607098416,"output":"t, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}"},{"event":"cmd_output","timestamp":1607098416,"output":"\n\u001b[0m\u001b[22m\n16:13:36.632 [info] Periodic from module Elixir.Block.Blocks.STMHandler.InitializingSt"},{"event":"cmd_output","timestamp":1607098416,"output":"ate with name Elixir.Block.Blocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl"},{"event":"cmd_output","timestamp":1607098416,"output":".beholder-wake_up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states"},{"event":"cmd_output","timestamp":1607098416,"output":": [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Blocks.Model.Blocks, observed_state"},{"event":"cmd_output","timestamp":1607098416,"output":": \"initializing\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :u"},{"event":"cmd_output","timestamp":1607098416,"output":"pdated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: "},{"event":"cmd_output","timestamp":1607098416,"output":":skip}\n\u001b[0m\u001b[22m\n16:13:36.633 [info] Periodic from module Elixir.Block.Blocks.STMHandler.RunningS"},{"event":"cmd_output","timestamp":1607098416,"output":"tate with name Elixir.Block.Blocks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beh"},{"event":"cmd_output","timestamp":1607098416,"output":"older-wake_up\", [\"Block-Blocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"runni"},{"event":"cmd_output","timestamp":1607098416,"output":"ng\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_s"},{"event":"cmd_output","timestamp":1607098416,"output":"tate: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :up"},{"event":"cmd_output","timestamp":1607098416,"output":"dated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :"},{"event":"cmd_output","timestamp":1607098416,"output":"skip}\n\u001b[0m\u001b[22m\n16:13:36.633 [info] Periodic from module Elixir.Block.Blocks.STMHandler.StoppingS"},{"event":"cmd_output","timestamp":1607098416,"output":"tate with name Elixir.Block.Blocks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.be"},{"event":"cmd_output","timestamp":1607098416,"output":"holder-wake_up\", [\"Block-Blocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"sto"},{"event":"cmd_output","timestamp":1607098416,"output":"pping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"st"},{"event":"cmd_output","timestamp":1607098416,"output":"opping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at"},{"event":"cmd_output","timestamp":1607098416,"output":", :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b"},{"event":"cmd_output","timestamp":1607098416,"output":"[0m\u001b[22m\n16:13:36.634 [info] Periodic from module Elixir.Block.Tasks.STMHandler.PendingState with "},{"event":"cmd_output","timestamp":1607098416,"output":"name Elixir.Block.Tasks.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_"},{"event":"cmd_output","timestamp":1607098416,"output":"up\", [\"Block-Tasks-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"]"},{"event":"cmd_output","timestamp":1607098416,"output":", cooling_time_sec: 0, initial_query: Block.Tasks.Model.Tasks, observed_state: \"pending\", publisher_"},{"event":"cmd_output","timestamp":1607098416,"output":"cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery"},{"event":"cmd_output","timestamp":1607098416,"output":"_count, :block_id, :build_request_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0"},{"event":"cmd_output","timestamp":1607098416,"output":"m\u001b[22m\n16:13:36.634 [info] Periodic from module Elixir.Block.Tasks.STMHandler.RunningState with na"},{"event":"cmd_output","timestamp":1607098416,"output":"me Elixir.Block.Tasks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up"},{"event":"cmd_output","timestamp":1607098416,"output":"\", [\"Block-Tasks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping"},{"event":"cmd_output","timestamp":1607098416,"output":"\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"running\","},{"event":"cmd_output","timestamp":1607098416,"output":" publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state"},{"event":"cmd_output","timestamp":1607098416,"output":", :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098416,"output":"16:13:36.635 [info] Periodic from module Elixir.Block.Tasks.STMHandler.StoppingState with name Elix"},{"event":"cmd_output","timestamp":1607098416,"output":"ir.Block.Tasks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"B"},{"event":"cmd_output","timestamp":1607098416,"output":"lock-Tasks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cool"},{"event":"cmd_output","timestamp":1607098416,"output":"ing_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"stopping\", publisher_cb: "},{"event":"cmd_output","timestamp":1607098416,"output":":skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_cou"},{"event":"cmd_output","timestamp":1607098416,"output":"nt, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:36.740 [i"},{"event":"cmd_output","timestamp":1607098416,"output":"nfo] ppl_id: a5fe6600-a728-4411-a33b-4b9f63cf2862, type: PplRequests, event: persisted source_args "},{"event":"cmd_output","timestamp":1607098416,"output":"for pipeline: a5fe6600-a728-4411-a33b-4b9f63cf2862, origin: Elixir.Ppl.PplRequests.Model.PplRequests"},{"event":"cmd_output","timestamp":1607098416,"output":"Queries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:13:36.742 [info] ppl_id: a5fe6600-a728-4411-a33b-4b9f"},{"event":"cmd_output","timestamp":1607098416,"output":"63cf2862, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098416,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:36.755 [info] ppl_id: a5fe6600-a728"},{"event":"cmd_output","timestamp":1607098416,"output":"-4411-a33b-4b9f63cf2862, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_co"},{"event":"cmd_output","timestamp":1607098416,"output":"unt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:36.782 [info] pp"},{"event":"cmd_output","timestamp":1607098416,"output":"l_id: a5fe6600-a728-4411-a33b-4b9f63cf2862, type: PplRequests, event: persisted definition for reque"},{"event":"cmd_output","timestamp":1607098416,"output":"st with request_token: a9eafe76-364b-11eb-bf64-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.Pp"},{"event":"cmd_output","timestamp":1607098416,"output":"lRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:13:36.785 [info] Queue persisted: {:ok, "},{"event":"cmd_output","timestamp":1607098416,"output":"%Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12"},{"event":"cmd_output","timestamp":1607098416,"output":"-04 16:13:36.783771], name: \"master-.semaphore/semaphore.yml\", organization_id: \"d207feee-45be-4253-"},{"event":"cmd_output","timestamp":1607098416,"output":"b400-e7730cd1006d\", project_id: \"f076373c-9fe2-403c-a288-b46f55e12811\", queue_id: \"837afc2d-cf9b-4c7"},{"event":"cmd_output","timestamp":1607098416,"output":"e-9921-1f1f5c147d52\", scope: \"project\", updated_at: ~N[2020-12-04 16:13:36.783779], user_generated: "},{"event":"cmd_output","timestamp":1607098416,"output":"false}}\n\u001b[0m\u001b[22m\n16:13:36.797 [info] ppl_id: not_available, event: created, origin: Elixir.Ppl.P"},{"event":"cmd_output","timestamp":1607098416,"output":"plSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:36.797 [info] event: cre"},{"event":"cmd_output","timestamp":1607098416,"output":"ated, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13"},{"event":"cmd_output","timestamp":1607098416,"output":":36.797 [info] ppl_id: a5fe6600-a728-4411-a33b-4b9f63cf2862, type: PplBlocks, block_index: 0, state"},{"event":"cmd_output","timestamp":1607098416,"output":": initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.Regular"},{"event":"cmd_output","timestamp":1607098416,"output":"InitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:36.797 [info] ppl_id: a5fe6600-a728-4411-a33b-4b9f63c"},{"event":"cmd_output","timestamp":1607098416,"output":"f2862, type: PplBlocks, block_index: 1, state: initializing, event: created, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098416,"output":"in: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:36.797 [i"},{"event":"cmd_output","timestamp":1607098416,"output":"nfo] ppl_id: a5fe6600-a728-4411-a33b-4b9f63cf2862, type: PplBlocks, block_index: 2, state: initiali"},{"event":"cmd_output","timestamp":1607098416,"output":"zing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState."},{"event":"cmd_output","timestamp":1607098416,"output":"all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:36.797 [info] ppl_id: a5fe6600-a728-4411-a33b-4b9f63cf2862, typ"},{"event":"cmd_output","timestamp":1607098416,"output":"e: PplBlocks, block_index: 3, state: initializing, event: created, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098416,"output":".Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:36.797 [info] ppl_"},{"event":"cmd_output","timestamp":1607098416,"output":"id: a5fe6600-a728-4411-a33b-4b9f63cf2862, type: PplBlocks, block_index: 4, state: initializing, even"},{"event":"cmd_output","timestamp":1607098416,"output":"t: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1("},{"event":"cmd_output","timestamp":1607098416,"output":"L105), \n\u001b[0m\u001b[22m\n16:13:36.798 [info] ppl_id: a5fe6600-a728-4411-a33b-4b9f63cf2862, type: PplSubI"},{"event":"cmd_output","timestamp":1607098416,"output":"nits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper."},{"event":"cmd_output","timestamp":1607098416,"output":"STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:36.804 [info] ppl_id: a5fe6600-a728-4411-a33b-"},{"event":"cmd_output","timestamp":1607098416,"output":"4b9f63cf2862, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_coun"},{"event":"cmd_output","timestamp":1607098416,"output":"t: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:36.807 [info] ppl_"},{"event":"cmd_output","timestamp":1607098416,"output":"id: a5fe6600-a728-4411-a33b-4b9f63cf2862, type: Ppls, state: pending, event: exit_scheduling, recove"},{"event":"cmd_output","timestamp":1607098416,"output":"ry_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:36.809 [info"},{"event":"cmd_output","timestamp":1607098416,"output":"] ppl_id: a5fe6600-a728-4411-a33b-4b9f63cf2862, type: PplBlocks, block_index: 1, state: waiting, ev"},{"event":"cmd_output","timestamp":1607098416,"output":"ent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b"},{"event":"cmd_output","timestamp":1607098416,"output":"[0m\u001b[22m\n16:13:36.813 [info] ppl_id: a5fe6600-a728-4411-a33b-4b9f63cf2862, type: Ppls, state: queu"},{"event":"cmd_output","timestamp":1607098416,"output":"ing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L9"},{"event":"cmd_output","timestamp":1607098416,"output":"0), \n\u001b[0m\u001b[22m\n16:13:36.815 [info] ppl_id: a5fe6600-a728-4411-a33b-4b9f63cf2862, type: PplBlocks,"},{"event":"cmd_output","timestamp":1607098416,"output":" block_index: 2, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.ST"},{"event":"cmd_output","timestamp":1607098416,"output":"M.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:36.823 [info] ppl_id: a5fe6600-a728-4411-a33b-4b"},{"event":"cmd_output","timestamp":1607098416,"output":"9f63cf2862, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Lo"},{"event":"cmd_output","timestamp":1607098416,"output":"oper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:36.824 [info] ppl_id: a5fe6600-a728-4411-"},{"event":"cmd_output","timestamp":1607098416,"output":"a33b-4b9f63cf2862, type: PplBlocks, block_index: 3, state: waiting, event: exit_scheduling, recovery"},{"event":"cmd_output","timestamp":1607098416,"output":"_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:36.834 [info] "},{"event":"cmd_output","timestamp":1607098416,"output":" PplBlocks WaitingState STM is scheduling block 3 from pipeline: \"a5fe6600-a728-4411-a33b-4b9f63cf28"},{"event":"cmd_output","timestamp":1607098416,"output":"62\"\n\u001b[0m\u001b[22m\n16:13:36.838 [info] ppl_id: a5fe6600-a728-4411-a33b-4b9f63cf2862, type: PplBlocks, "},{"event":"cmd_output","timestamp":1607098416,"output":"block_index: 4, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM"},{"event":"cmd_output","timestamp":1607098416,"output":".Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:36.848 [info] block_id: f54a039b-3eb4-48cc-a43b-3"},{"event":"cmd_output","timestamp":1607098416,"output":"692183afe42, type: BlockRequests, event: persisted block run request from ppl a5fe6600-a728-4411-a33"},{"event":"cmd_output","timestamp":1607098416,"output":"b-4b9f63cf2862 for block 3, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_re"},{"event":"cmd_output","timestamp":1607098416,"output":"sponse/4(L35), \n\u001b[0m\u001b[22m\n16:13:36.850 [info] block_id: f54a039b-3eb4-48cc-a43b-3692183afe42, typ"},{"event":"cmd_output","timestamp":1607098416,"output":"e: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks."},{"event":"cmd_output","timestamp":1607098416,"output":"Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:13:36.852 [info] Block 3 of pipeline with id: a5"},{"event":"cmd_output","timestamp":1607098416,"output":"fe6600-a728-4411-a33b-4b9f63cf2862 scheduled in block service with id: : \"f54a039b-3eb4-48cc-a43b-36"},{"event":"cmd_output","timestamp":1607098416,"output":"92183afe42\"\n\u001b[0m\u001b[22m\n16:13:36.854 [info] ppl_id: a5fe6600-a728-4411-a33b-4b9f63cf2862, type: Ppl"},{"event":"cmd_output","timestamp":1607098416,"output":"Blocks, block_index: 3, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Lo"},{"event":"cmd_output","timestamp":1607098416,"output":"oper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:36.857 [info] block_id: f54a039b-3eb4-48c"},{"event":"cmd_output","timestamp":1607098416,"output":"c-a43b-3692183afe42, type: BlockRequests, event: persisted build and sub_ppl details for block_reque"},{"event":"cmd_output","timestamp":1607098416,"output":"st: f54a039b-3eb4-48cc-a43b-3692183afe42, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQuer"},{"event":"cmd_output","timestamp":1607098416,"output":"ies.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:13:36.859 [info] PplBlocks WaitingState STM is scheduling "},{"event":"cmd_output","timestamp":1607098416,"output":"block 0 from pipeline: \"a5fe6600-a728-4411-a33b-4b9f63cf2862\"\n\u001b[0m\u001b[22m\n16:13:36.859 [info] block"},{"event":"cmd_output","timestamp":1607098416,"output":"_id: f54a039b-3eb4-48cc-a43b-3692183afe42, type: Tasks, state: pending, event: created, recovery_cou"},{"event":"cmd_output","timestamp":1607098416,"output":"nt: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:13:"},{"event":"cmd_output","timestamp":1607098416,"output":"36.861 [info] block_id: f54a039b-3eb4-48cc-a43b-3692183afe42, type: Blocks, state: running, event: "},{"event":"cmd_output","timestamp":1607098416,"output":"exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098416,"output":"22m\n16:13:36.864 [info] block_id: ff5edf06-90c5-4645-9760-3101acc03316, type: BlockRequests, event"},{"event":"cmd_output","timestamp":1607098416,"output":": persisted block run request from ppl a5fe6600-a728-4411-a33b-4b9f63cf2862 for block 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098416,"output":"xir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:13:36.86"},{"event":"cmd_output","timestamp":1607098416,"output":"5 [info] block_id: ff5edf06-90c5-4645-9760-3101acc03316, type: Blocks, state: initializing, event: "},{"event":"cmd_output","timestamp":1607098416,"output":"initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b["},{"event":"cmd_output","timestamp":1607098416,"output":"0m\u001b[22m\n16:13:36.867 [info] Block 0 of pipeline with id: a5fe6600-a728-4411-a33b-4b9f63cf2862 sche"},{"event":"cmd_output","timestamp":1607098416,"output":"duled in block service with id: : \"ff5edf06-90c5-4645-9760-3101acc03316\"\n\u001b[0m\u001b[22m\n16:13:36.874 [i"},{"event":"cmd_output","timestamp":1607098416,"output":"nfo] block_id: ff5edf06-90c5-4645-9760-3101acc03316, type: BlockRequests, event: persisted build an"},{"event":"cmd_output","timestamp":1607098416,"output":"d sub_ppl details for block_request: ff5edf06-90c5-4645-9760-3101acc03316, origin: Elixir.Block.Bloc"},{"event":"cmd_output","timestamp":1607098416,"output":"kRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:13:36.876 [info] ppl_id: "},{"event":"cmd_output","timestamp":1607098416,"output":"a5fe6600-a728-4411-a33b-4b9f63cf2862, type: PplBlocks, block_index: 0, state: running, event: exit_s"},{"event":"cmd_output","timestamp":1607098416,"output":"cheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098416,"output":"6:13:36.877 [info] block_id: f54a039b-3eb4-48cc-a43b-3692183afe42, type: Tasks, state: running, eve"},{"event":"cmd_output","timestamp":1607098416,"output":"nt: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b["},{"event":"cmd_output","timestamp":1607098416,"output":"0m\u001b[22m\n16:13:36.880 [info] block_id: ff5edf06-90c5-4645-9760-3101acc03316, type: Tasks, state: pe"},{"event":"cmd_output","timestamp":1607098416,"output":"nding, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.a"},{"event":"cmd_output","timestamp":1607098416,"output":"ll_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:13:36.882 [info] block_id: ff5edf06-90c5-4645-9760-3101acc03316, ty"},{"event":"cmd_output","timestamp":1607098416,"output":"pe: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Imp"},{"event":"cmd_output","timestamp":1607098416,"output":"l.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:36.895 [info] block_id: ff5edf06-90c5-4645-9760-3101a"},{"event":"cmd_output","timestamp":1607098416,"output":"cc03316, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loop"},{"event":"cmd_output","timestamp":1607098417,"output":"er.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:37.955 [info] block_id: ff5edf06-90c5-4645-"},{"event":"cmd_output","timestamp":1607098417,"output":"9760-3101acc03316, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098417,"output":"ir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:37.962 [info] block_id: ff5edf06-90c"},{"event":"cmd_output","timestamp":1607098417,"output":"5-4645-9760-3101acc03316, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098417,"output":"in: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:37.968 [info] ppl_id: a5fe66"},{"event":"cmd_output","timestamp":1607098417,"output":"00-a728-4411-a33b-4b9f63cf2862, block_id: ff5edf06-90c5-4645-9760-3101acc03316, type: PplBlocks, blo"},{"event":"cmd_output","timestamp":1607098417,"output":"ck_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098418,"output":"Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:38.068 [info] block_id: f54a039b-3eb4-4"},{"event":"cmd_output","timestamp":1607098418,"output":"8cc-a43b-3692183afe42, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098418,"output":"Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:38.073 [info] block_id: f54a039b"},{"event":"cmd_output","timestamp":1607098418,"output":"-3eb4-48cc-a43b-3692183afe42, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098418,"output":"origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:38.085 [info] ppl_id: a5"},{"event":"cmd_output","timestamp":1607098418,"output":"fe6600-a728-4411-a33b-4b9f63cf2862, block_id: f54a039b-3eb4-48cc-a43b-3692183afe42, type: PplBlocks,"},{"event":"cmd_output","timestamp":1607098418,"output":" block_index: 3, state: done, result: failed, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098418,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:38.090 [info] PplBlocks WaitingStat"},{"event":"cmd_output","timestamp":1607098418,"output":"e STM is scheduling block 1 from pipeline: \"a5fe6600-a728-4411-a33b-4b9f63cf2862\"\n\u001b[0m\u001b[22m\n16:13:"},{"event":"cmd_output","timestamp":1607098418,"output":"38.094 [info] ppl_id: a5fe6600-a728-4411-a33b-4b9f63cf2862, type: PplBlocks, block_index: 1, state:"},{"event":"cmd_output","timestamp":1607098418,"output":" done, result: canceled, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.l"},{"event":"cmd_output","timestamp":1607098418,"output":"og_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:38.097 [info] PplBlocks WaitingState STM is scheduling b"},{"event":"cmd_output","timestamp":1607098418,"output":"lock 4 from pipeline: \"a5fe6600-a728-4411-a33b-4b9f63cf2862\"\n\u001b[0m\u001b[22m\n16:13:38.100 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098418,"output":": a5fe6600-a728-4411-a33b-4b9f63cf2862, type: PplBlocks, block_index: 4, state: done, result: cancel"},{"event":"cmd_output","timestamp":1607098418,"output":"ed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90"},{"event":"cmd_output","timestamp":1607098418,"output":"), \n\u001b[0m\u001b[22m\n16:13:38.103 [info] PplBlocks WaitingState STM is scheduling block 2 from pipeline:"},{"event":"cmd_output","timestamp":1607098418,"output":" \"a5fe6600-a728-4411-a33b-4b9f63cf2862\"\n\u001b[0m\u001b[22m\n16:13:38.106 [info] ppl_id: a5fe6600-a728-4411-"},{"event":"cmd_output","timestamp":1607098418,"output":"a33b-4b9f63cf2862, type: PplBlocks, block_index: 2, state: done, result: canceled, event: exit_sched"},{"event":"cmd_output","timestamp":1607098418,"output":"uling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13"},{"event":"cmd_output","timestamp":1607098418,"output":":38.112 [info] ppl_id: a5fe6600-a728-4411-a33b-4b9f63cf2862, type: Ppls, state: done, result: faile"},{"event":"cmd_output","timestamp":1607098418,"output":"d, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90)"},{"event":"cmd_output","timestamp":1607098418,"output":", \n\u001b[0m\u001b[32m\r * test Free topology pipeline with failing block (1702.2ms)\u001b[0m\n * test Free topol"},{"event":"cmd_output","timestamp":1607098418,"output":"ogy pipeline passes\u001b[22m\n16:13:38.326 [info] Request: 'run: %{\"branch_id\" => \"6ee6375e-6e5f-4686-b"},{"event":"cmd_output","timestamp":1607098418,"output":"745-2c92d990ba68\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"semaphor"},{"event":"cmd_output","timestamp":1607098418,"output":"e.yml\", \"hook_id\" => \"aaf03d68-364b-11eb-8cd4-5254005464e2\", \"label\" => \"master\", \"organization_id\" "},{"event":"cmd_output","timestamp":1607098418,"output":"=> \"9eac4f44-e510-4992-b6cd-c8db47714845\", \"owner\" => \"rt\", \"project_id\" => \"e08a15eb-d37e-498b-bbab"},{"event":"cmd_output","timestamp":1607098418,"output":"-97aea956f2f2\", \"repo_name\" => \"13_free_topology\", \"request_token\" => \"aaf0352a-364b-11eb-979c-52540"},{"event":"cmd_output","timestamp":1607098418,"output":"05464e2\", \"requester_id\" => \"1f5d8b16-102c-46d1-bb5b-fb3b76fdaf19\", \"service\" => \"local\", \"suppresse"},{"event":"cmd_output","timestamp":1607098418,"output":"d_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"6dd98aea-747d-4412-a741-ddec06aa297e"},{"event":"cmd_output","timestamp":1607098418,"output":"\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:13:38.329 [info] ppl_id: b73b1a95-1240-49e5-84fc-8"},{"event":"cmd_output","timestamp":1607098418,"output":"0d5b6bdf12b, type: PplRequests, event: persisted schedule request with request_token: aaf0352a-364b-"},{"event":"cmd_output","timestamp":1607098418,"output":"11eb-979c-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L"},{"event":"cmd_output","timestamp":1607098418,"output":"55), \n\u001b[0m\u001b[22m\n16:13:38.331 [info] ppl_id: b73b1a95-1240-49e5-84fc-80d5b6bdf12b, type: Ppls, sta"},{"event":"cmd_output","timestamp":1607098418,"output":"te: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries."},{"event":"cmd_output","timestamp":1607098418,"output":"process_response/2(L124), \n\u001b[0m\u001b[22m\n16:13:38.340 [info] Project e08a15eb-d37e-498b-bbab-97aea956"},{"event":"cmd_output","timestamp":1607098418,"output":"f2f2 and branch masterlatest_wf details updated: \"wf_id: 6dd98aea-747d-4412-a741-ddec06aa297e, wf_nu"},{"event":"cmd_output","timestamp":1607098418,"output":"mber: 1\"\n\u001b[0m\u001b[22m\n16:13:38.341 [info] Persisted ppl_sub_init for pipeline with ppl_id: b73b1a95-"},{"event":"cmd_output","timestamp":1607098418,"output":"1240-49e5-84fc-80d5b6bdf12b: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loa"},{"event":"cmd_output","timestamp":1607098418,"output":"ded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 313, in_scheduling: fa"},{"event":"cmd_output","timestamp":1607098418,"output":"lse, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:13:38.340474], pipeline_requests: #Ecto.Ass"},{"event":"cmd_output","timestamp":1607098418,"output":"ociation.NotLoaded, ppl_id: \"b73b1a95-1240-49e5-84fc-8"},{"event":"cmd_output","timestamp":1607098418,"output":"0d5b6bdf12b\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_reques"},{"event":"cmd_output","timestamp":1607098418,"output":"t: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:13:38.340480]}\n\u001b[0m\u001b[22m\n16:13:3"},{"event":"cmd_output","timestamp":1607098418,"output":"8.344 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098418,"output":".Ppls.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Pp"},{"event":"cmd_output","timestamp":1607098418,"output":"ls-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"pending\", \"d"},{"event":"cmd_output","timestamp":1607098418,"output":"one\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publ"},{"event":"cmd_output","timestamp":1607098418,"output":"isher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRe"},{"event":"cmd_output","timestamp":1607098418,"output":"po, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], sc"},{"event":"cmd_output","timestamp":1607098418,"output":"hema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:38.344 [info] Periodic from mo"},{"event":"cmd_output","timestamp":1607098418,"output":"dule Elixir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler.PendingState :: pe"},{"event":"cmd_output","timestamp":1607098418,"output":"riod: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring"},{"event":"cmd_output","timestamp":1607098418,"output":" args: %{allowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_sec: 0, initial_que"},{"event":"cmd_output","timestamp":1607098418,"output":"ry: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls."},{"event":"cmd_output","timestamp":1607098418,"output":"STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_a"},{"event":"cmd_output","timestamp":1607098418,"output":"t, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTas"},{"event":"cmd_output","timestamp":1607098418,"output":"kSupervisor}\n\u001b[0m\u001b[22m\n16:13:38.345 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.Queuin"},{"event":"cmd_output","timestamp":1607098418,"output":"gState with name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, metric_name: {\"Ppl.behol"},{"event":"cmd_output","timestamp":1607098418,"output":"der-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{allowed_states: [\"queuing\", \""},{"event":"cmd_output","timestamp":1607098418,"output":"running\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"queuin"},{"event":"cmd_output","timestamp":1607098418,"output":"g\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.args/0>, repo: Ppl.Ect"},{"event":"cmd_output","timestamp":1607098418,"output":"oRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id],"},{"event":"cmd_output","timestamp":1607098418,"output":" schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:38.345 [info] Periodic from"},{"event":"cmd_output","timestamp":1607098418,"output":" module Elixir.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHandler.RunningState ::"},{"event":"cmd_output","timestamp":1607098418,"output":" period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurr"},{"event":"cmd_output","timestamp":1607098418,"output":"ing args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Pp"},{"event":"cmd_output","timestamp":1607098418,"output":"l.Ppls.Model.Ppls, observed_state: \"running\", publisher_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHa"},{"event":"cmd_output","timestamp":1607098418,"output":"ndler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :s"},{"event":"cmd_output","timestamp":1607098418,"output":"tate, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupe"},{"event":"cmd_output","timestamp":1607098418,"output":"rvisor}\n\u001b[0m\u001b[22m\n16:13:38.346 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.StoppingSta"},{"event":"cmd_output","timestamp":1607098418,"output":"te with name Elixir.Ppl.Ppls.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder"},{"event":"cmd_output","timestamp":1607098418,"output":"-wake_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"d"},{"event":"cmd_output","timestamp":1607098418,"output":"one\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"stopping\", publish"},{"event":"cmd_output","timestamp":1607098418,"output":"er_cb: #Function<0.71803493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, retu"},{"event":"cmd_output","timestamp":1607098418,"output":"rning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Pp"},{"event":"cmd_output","timestamp":1607098418,"output":"l.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:38.347 [info] Periodic from module Eli"},{"event":"cmd_output","timestamp":1607098418,"output":"xir.Ppl.PplSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState"},{"event":"cmd_output","timestamp":1607098418,"output":" :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\""},{"event":"cmd_output","timestamp":1607098418,"output":"]}, recurring args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl."},{"event":"cmd_output","timestamp":1607098418,"output":"PplSubInits.Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, r"},{"event":"cmd_output","timestamp":1607098418,"output":"eturning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema:"},{"event":"cmd_output","timestamp":1607098418,"output":" Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:38.347 [info] Periodi"},{"event":"cmd_output","timestamp":1607098418,"output":"c from module Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl.PplSubInits.STMHa"},{"event":"cmd_output","timestamp":1607098418,"output":"ndler.FetchingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHa"},{"event":"cmd_output","timestamp":1607098418,"output":"ndler-FetchingState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"done\"], c"},{"event":"cmd_output","timestamp":1607098418,"output":"ooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fetching\", p"},{"event":"cmd_output","timestamp":1607098418,"output":"ublisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :r"},{"event":"cmd_output","timestamp":1607098418,"output":"esult, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}"},{"event":"cmd_output","timestamp":1607098418,"output":"\n\u001b[0m\u001b[22m\n16:13:38.347 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.Compilation"},{"event":"cmd_output","timestamp":1607098418,"output":"State with name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 100 ms, metric_name: {"},{"event":"cmd_output","timestamp":1607098418,"output":"\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurring args: %{allowed_"},{"event":"cmd_output","timestamp":1607098418,"output":"states: [\"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Pp"},{"event":"cmd_output","timestamp":1607098418,"output":"l.PplSubInits.Model.PplSubInits, observed_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoR"},{"event":"cmd_output","timestamp":1607098418,"output":"epo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], s"},{"event":"cmd_output","timestamp":1607098418,"output":"chema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:38.347 [info] P"},{"event":"cmd_output","timestamp":1607098418,"output":"eriodic from module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with name Elixir.Ppl.PplSubIn"},{"event":"cmd_output","timestamp":1607098418,"output":"its.STMHandler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSu"},{"event":"cmd_output","timestamp":1607098418,"output":"bInits-STMHandler-RegularInitState\"]}, recurring args: %{allowed_states: [\"done\"], cooling_time_sec:"},{"event":"cmd_output","timestamp":1607098418,"output":" 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_init\", publisher_cb: "},{"event":"cmd_output","timestamp":1607098418,"output":":skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recov"},{"event":"cmd_output","timestamp":1607098418,"output":"ery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098418,"output":"16:13:38.348 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.InitializingState with nam"},{"event":"cmd_output","timestamp":1607098418,"output":"e Elixir.Ppl.PplBlocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-w"},{"event":"cmd_output","timestamp":1607098418,"output":"ake_up\", [\"Ppl-PplBlocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initia"},{"event":"cmd_output","timestamp":1607098418,"output":"lizing\", \"waiting\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, obse"},{"event":"cmd_output","timestamp":1607098418,"output":"rved_state: \"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_req"},{"event":"cmd_output","timestamp":1607098418,"output":"uest, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.M"},{"event":"cmd_output","timestamp":1607098418,"output":"odel.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:38.348 [info] Periodic from module Elixir"},{"event":"cmd_output","timestamp":1607098418,"output":".Ppl.PplBlocks.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler.WaitingState :: per"},{"event":"cmd_output","timestamp":1607098418,"output":"iod: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recu"},{"event":"cmd_output","timestamp":1607098418,"output":"rring args: %{allowed_states: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Pp"},{"event":"cmd_output","timestamp":1607098418,"output":"l.PplBlocks.Model.PplBlocks, observed_state: \"waiting\", publisher_cb: #Function<0.8975022/1 in Ppl.P"},{"event":"cmd_output","timestamp":1607098418,"output":"plBlocks.STMHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :"},{"event":"cmd_output","timestamp":1607098418,"output":"updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.Pp"},{"event":"cmd_output","timestamp":1607098418,"output":"lBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:38.348 [info] Periodic from module Elixir.Ppl.Pp"},{"event":"cmd_output","timestamp":1607098418,"output":"lBlocks.STMHandler.RunningState with name Elixir.Ppl.PplBlocks.STMHandler.RunningState :: period: 10"},{"event":"cmd_output","timestamp":1607098418,"output":"00 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, recurring a"},{"event":"cmd_output","timestamp":1607098418,"output":"rgs: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098418,"output":"Blocks.Model.PplBlocks, observed_state: \"running\", publisher_cb: #Function<0.28166834/1 in Ppl.PplBl"},{"event":"cmd_output","timestamp":1607098418,"output":"ocks.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :upda"},{"event":"cmd_output","timestamp":1607098418,"output":"ted_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.M"},{"event":"cmd_output","timestamp":1607098418,"output":"odel.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:38.349 [info] Periodic from module Elixir"},{"event":"cmd_output","timestamp":1607098418,"output":".Ppl.PplBlocks.STMHandler.StoppingState with name Elixir.Ppl.PplBlocks.STMHandler.StoppingState :: p"},{"event":"cmd_output","timestamp":1607098418,"output":"eriod: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, r"},{"event":"cmd_output","timestamp":1607098418,"output":"ecurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplB"},{"event":"cmd_output","timestamp":1607098418,"output":"locks.Model.PplBlocks, observed_state: \"stopping\", publisher_cb: #Function<0.104215991/1 in Ppl.PplB"},{"event":"cmd_output","timestamp":1607098418,"output":"locks.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :up"},{"event":"cmd_output","timestamp":1607098418,"output":"dated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks"},{"event":"cmd_output","timestamp":1607098418,"output":".Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:38.349 [info] Periodic from module Elix"},{"event":"cmd_output","timestamp":1607098418,"output":"ir.Block.Blocks.STMHandler.InitializingState with name Elixir.Block.Blocks.STMHandler.InitializingSt"},{"event":"cmd_output","timestamp":1607098418,"output":"ate :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-InitializingS"},{"event":"cmd_output","timestamp":1607098418,"output":"tate\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: "},{"event":"cmd_output","timestamp":1607098418,"output":"Block.Blocks.Model.Blocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Block.EctoRepo"},{"event":"cmd_output","timestamp":1607098418,"output":", returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Blo"},{"event":"cmd_output","timestamp":1607098418,"output":"ck.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:38.349 [info] Periodic from modul"},{"event":"cmd_output","timestamp":1607098418,"output":"e Elixir.Block.Blocks.STMHandler.RunningState with name Elixir.Block.Blocks.STMHandler.RunningState "},{"event":"cmd_output","timestamp":1607098418,"output":":: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-RunningState\"]}, "},{"event":"cmd_output","timestamp":1607098418,"output":"recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_que"},{"event":"cmd_output","timestamp":1607098418,"output":"ry: Block.Blocks.Model.Blocks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo,"},{"event":"cmd_output","timestamp":1607098418,"output":" returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Bloc"},{"event":"cmd_output","timestamp":1607098418,"output":"k.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:38.349 [info] Periodic from module"},{"event":"cmd_output","timestamp":1607098418,"output":" Elixir.Block.Blocks.STMHandler.StoppingState with name Elixir.Block.Blocks.STMHandler.StoppingState"},{"event":"cmd_output","timestamp":1607098418,"output":" :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-StoppingState\"]}"},{"event":"cmd_output","timestamp":1607098418,"output":", recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block"},{"event":"cmd_output","timestamp":1607098418,"output":".Blocks.Model.Blocks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returni"},{"event":"cmd_output","timestamp":1607098418,"output":"ng: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks"},{"event":"cmd_output","timestamp":1607098418,"output":".Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:38.349 [info] Periodic from module Elixir."},{"event":"cmd_output","timestamp":1607098418,"output":"Block.Tasks.STMHandler.PendingState with name Elixir.Block.Tasks.STMHandler.PendingState :: period: "},{"event":"cmd_output","timestamp":1607098418,"output":"100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingState\"]}, recurring ar"},{"event":"cmd_output","timestamp":1607098418,"output":"gs: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Tasks.Model.Tas"},{"event":"cmd_output","timestamp":1607098418,"output":"ks, observed_state: \"pending\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminat"},{"event":"cmd_output","timestamp":1607098418,"output":"e_request, :updated_at, :state, :recovery_count, :block_id, :build_request_id], schema: Block.Tasks."},{"event":"cmd_output","timestamp":1607098418,"output":"Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:38.350 [info] Periodic from module Elixir.Bl"},{"event":"cmd_output","timestamp":1607098418,"output":"ock.Tasks.STMHandler.RunningState with name Elixir.Block.Tasks.STMHandler.RunningState :: period: 10"},{"event":"cmd_output","timestamp":1607098418,"output":"0 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningState\"]}, recurring args"},{"event":"cmd_output","timestamp":1607098418,"output":": %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Task"},{"event":"cmd_output","timestamp":1607098418,"output":"s.Model.Tasks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id"},{"event":"cmd_output","timestamp":1607098418,"output":", :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Ta"},{"event":"cmd_output","timestamp":1607098418,"output":"sks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:38.350 [info] Periodic from module Elixir.Block.Task"},{"event":"cmd_output","timestamp":1607098418,"output":"s.STMHandler.StoppingState with name Elixir.Block.Tasks.STMHandler.StoppingState :: period: 100 ms, "},{"event":"cmd_output","timestamp":1607098418,"output":"metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]}, recurring args: %{a"},{"event":"cmd_output","timestamp":1607098418,"output":"llowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, o"},{"event":"cmd_output","timestamp":1607098418,"output":"bserved_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_re"},{"event":"cmd_output","timestamp":1607098418,"output":"quest, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_super"},{"event":"cmd_output","timestamp":1607098418,"output":"visor: :skip}\n\u001b[0m\u001b[22m\n16:13:38.459 [info] ppl_id: b73b1a95-1240-49e5-84fc-80d5b6bdf12b, type: P"},{"event":"cmd_output","timestamp":1607098418,"output":"plRequests, event: persisted source_args for pipeline: b73b1a95-1240-49e5-84fc-80d5b6bdf12b, origin:"},{"event":"cmd_output","timestamp":1607098418,"output":" Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:13:38.461 [in"},{"event":"cmd_output","timestamp":1607098418,"output":"fo] ppl_id: b73b1a95-1240-49e5-84fc-80d5b6bdf12b, type: PplSubInits, state: fetching, event: exit_s"},{"event":"cmd_output","timestamp":1607098418,"output":"cheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098418,"output":"6:13:38.474 [info] ppl_id: b73b1a95-1240-49e5-84fc-80d5b6bdf12b, type: PplSubInits, state: regular_"},{"event":"cmd_output","timestamp":1607098418,"output":"init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098418,"output":"90), \n\u001b[0m\u001b[22m\n16:13:38.509 [info] ppl_id: b73b1a95-1240-49e5-84fc-80d5b6bdf12b, type: PplReques"},{"event":"cmd_output","timestamp":1607098418,"output":"ts, event: persisted definition for request with request_token: aaf0352a-364b-11eb-979c-5254005464e2"},{"event":"cmd_output","timestamp":1607098418,"output":", origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098418,"output":"13:38.512 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:l"},{"event":"cmd_output","timestamp":1607098418,"output":"oaded, \"queues\">, inserted_at: ~N[2020-12-04 16:13:38.511712], name: \"master-.semaphore/semaphore.ym"},{"event":"cmd_output","timestamp":1607098418,"output":"l\", organization_id: \"9eac4f44-e510-4992-b6cd-c8db47714845\", project_id: \"e08a15eb-d37e-498b-bbab-97"},{"event":"cmd_output","timestamp":1607098418,"output":"aea956f2f2\", queue_id: \"cf76f940-6e33-48f9-ae0d-e27d29fe7cd2\", scope: \"project\", updated_at: ~N[2020"},{"event":"cmd_output","timestamp":1607098418,"output":"-12-04 16:13:38.511719], user_generated: false}}\n\u001b[0m\u001b[22m\n16:13:38.519 [info] ppl_id: not_availa"},{"event":"cmd_output","timestamp":1607098418,"output":"ble, event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b"},{"event":"cmd_output","timestamp":1607098418,"output":"[0m\u001b[22m\n16:13:38.519 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInit"},{"event":"cmd_output","timestamp":1607098418,"output":"State.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:38.519 [info] ppl_id: b73b1a95-1240-49e5-84fc-80d5b6bdf12"},{"event":"cmd_output","timestamp":1607098418,"output":"b, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098418,"output":"Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:38.519 [info]"},{"event":"cmd_output","timestamp":1607098418,"output":" ppl_id: b73b1a95-1240-49e5-84fc-80d5b6bdf12b, type: PplBlocks, block_index: 1, state: initializing"},{"event":"cmd_output","timestamp":1607098418,"output":", event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_"},{"event":"cmd_output","timestamp":1607098418,"output":"ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:38.519 [info] ppl_id: b73b1a95-1240-49e5-84fc-80d5b6bdf12b, type: P"},{"event":"cmd_output","timestamp":1607098418,"output":"plBlocks, block_index: 2, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098418,"output":".PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:38.519 [info] ppl_id: "},{"event":"cmd_output","timestamp":1607098418,"output":"b73b1a95-1240-49e5-84fc-80d5b6bdf12b, type: PplBlocks, block_index: 3, state: initializing, event: c"},{"event":"cmd_output","timestamp":1607098418,"output":"reated, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105"},{"event":"cmd_output","timestamp":1607098418,"output":"), \n\u001b[0m\u001b[22m\n16:13:38.519 [info] ppl_id: b73b1a95-1240-49e5-84fc-80d5b6bdf12b, type: PplBlocks, "},{"event":"cmd_output","timestamp":1607098418,"output":"block_index: 4, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubIni"},{"event":"cmd_output","timestamp":1607098418,"output":"ts.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:38.522 [info] ppl_id: b73b1a95-1"},{"event":"cmd_output","timestamp":1607098418,"output":"240-49e5-84fc-80d5b6bdf12b, type: PplSubInits, state: done, result: passed, event: exit_scheduling, "},{"event":"cmd_output","timestamp":1607098418,"output":"recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:38.530"},{"event":"cmd_output","timestamp":1607098418,"output":" [info] ppl_id: b73b1a95-1240-49e5-84fc-80d5b6bdf12b, type: PplBlocks, block_index: 0, state: waiti"},{"event":"cmd_output","timestamp":1607098418,"output":"ng, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90"},{"event":"cmd_output","timestamp":1607098418,"output":"), \n\u001b[0m\u001b[22m\n16:13:38.530 [info] ppl_id: b73b1a95-1240-49e5-84fc-80d5b6bdf12b, type: Ppls, state"},{"event":"cmd_output","timestamp":1607098418,"output":": pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chang"},{"event":"cmd_output","timestamp":1607098418,"output":"e/1(L90), \n\u001b[0m\u001b[22m\n16:13:38.538 [info] ppl_id: b73b1a95-1240-49e5-84fc-80d5b6bdf12b, type: PplB"},{"event":"cmd_output","timestamp":1607098418,"output":"locks, block_index: 1, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loo"},{"event":"cmd_output","timestamp":1607098418,"output":"per.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:38.538 [info] ppl_id: b73b1a95-1240-49e5-8"},{"event":"cmd_output","timestamp":1607098418,"output":"4fc-80d5b6bdf12b, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098418,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:38.544 [info] ppl_id: b73b1a95-1240"},{"event":"cmd_output","timestamp":1607098418,"output":"-49e5-84fc-80d5b6bdf12b, type: PplBlocks, block_index: 2, state: waiting, event: exit_scheduling, re"},{"event":"cmd_output","timestamp":1607098418,"output":"covery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:38.550 ["},{"event":"cmd_output","timestamp":1607098418,"output":"info] ppl_id: b73b1a95-1240-49e5-84fc-80d5b6bdf12b, type: PplBlocks, block_index: 3, state: waiting"},{"event":"cmd_output","timestamp":1607098418,"output":", event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90),"},{"event":"cmd_output","timestamp":1607098418,"output":" \n\u001b[0m\u001b[22m\n16:13:38.552 [info] ppl_id: b73b1a95-1240-49e5-84fc-80d5b6bdf12b, type: Ppls, state: "},{"event":"cmd_output","timestamp":1607098418,"output":"running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/"},{"event":"cmd_output","timestamp":1607098418,"output":"1(L90), \n\u001b[0m\u001b[22m\n16:13:38.560 [info] PplBlocks WaitingState STM is scheduling block 3 from pipe"},{"event":"cmd_output","timestamp":1607098418,"output":"line: \"b73b1a95-1240-49e5-84fc-80d5b6bdf12b\"\n\u001b[0m\u001b[22m\n16:13:38.565 [info] ppl_id: b73b1a95-1240-"},{"event":"cmd_output","timestamp":1607098418,"output":"49e5-84fc-80d5b6bdf12b, type: PplBlocks, block_index: 4, state: waiting, event: exit_scheduling, rec"},{"event":"cmd_output","timestamp":1607098418,"output":"overy_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:38.571 [i"},{"event":"cmd_output","timestamp":1607098418,"output":"nfo] block_id: ea592939-31e6-4bd5-9779-fd18908b4f61, type: BlockRequests, event: persisted block ru"},{"event":"cmd_output","timestamp":1607098418,"output":"n request from ppl b73b1a95-1240-49e5-84fc-80d5b6bdf12b for block 3, origin: Elixir.Block.BlockReque"},{"event":"cmd_output","timestamp":1607098418,"output":"sts.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:13:38.573 [info] block_id: "},{"event":"cmd_output","timestamp":1607098418,"output":"ea592939-31e6-4bd5-9779-fd18908b4f61, type: Blocks, state: initializing, event: initializing, recove"},{"event":"cmd_output","timestamp":1607098418,"output":"ry_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:13:38.57"},{"event":"cmd_output","timestamp":1607098418,"output":"6 [info] Block 3 of pipeline with id: b73b1a95-1240-49e5-84fc-80d5b6bdf12b scheduled in block servi"},{"event":"cmd_output","timestamp":1607098418,"output":"ce with id: : \"ea592939-31e6-4bd5-9779-fd18908b4f61\"\n\u001b[0m\u001b[22m\n16:13:38.578 [info] ppl_id: b73b1a"},{"event":"cmd_output","timestamp":1607098418,"output":"95-1240-49e5-84fc-80d5b6bdf12b, type: PplBlocks, block_index: 3, state: running, event: exit_schedul"},{"event":"cmd_output","timestamp":1607098418,"output":"ing, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:3"},{"event":"cmd_output","timestamp":1607098418,"output":"8.578 [info] block_id: ea592939-31e6-4bd5-9779-fd18908b4f61, type: BlockRequests, event: persisted "},{"event":"cmd_output","timestamp":1607098418,"output":"build and sub_ppl details for block_request: ea592939-31e6-4bd5-9779-fd18908b4f61, origin: Elixir.Bl"},{"event":"cmd_output","timestamp":1607098418,"output":"ock.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:13:38.580 [info] "},{"event":"cmd_output","timestamp":1607098418,"output":"block_id: ea592939-31e6-4bd5-9779-fd18908b4f61, type: Tasks, state: pending, event: created, recover"},{"event":"cmd_output","timestamp":1607098418,"output":"y_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098418,"output":"6:13:38.583 [info] block_id: ea592939-31e6-4bd5-9779-fd18908b4f61, type: Blocks, state: running, ev"},{"event":"cmd_output","timestamp":1607098418,"output":"ent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b"},{"event":"cmd_output","timestamp":1607098418,"output":"[0m\u001b[22m\n16:13:38.584 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"b73b"},{"event":"cmd_output","timestamp":1607098418,"output":"1a95-1240-49e5-84fc-80d5b6bdf12b\"\n\u001b[0m\u001b[22m\n16:13:38.589 [info] block_id: b80dd4c5-f1e6-4d12-b52e"},{"event":"cmd_output","timestamp":1607098418,"output":"-81e15fb93a80, type: BlockRequests, event: persisted block run request from ppl b73b1a95-1240-49e5-8"},{"event":"cmd_output","timestamp":1607098418,"output":"4fc-80d5b6bdf12b for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_"},{"event":"cmd_output","timestamp":1607098418,"output":"response/4(L35), \n\u001b[0m\u001b[22m\n16:13:38.591 [info] block_id: b80dd4c5-f1e6-4d12-b52e-81e15fb93a80, t"},{"event":"cmd_output","timestamp":1607098418,"output":"ype: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Block"},{"event":"cmd_output","timestamp":1607098418,"output":"s.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:13:38.593 [info] Block 0 of pipeline with id: "},{"event":"cmd_output","timestamp":1607098418,"output":"b73b1a95-1240-49e5-84fc-80d5b6bdf12b scheduled in block service with id: : \"b80dd4c5-f1e6-4d12-b52e-"},{"event":"cmd_output","timestamp":1607098418,"output":"81e15fb93a80\"\n\u001b[0m\u001b[22m\n16:13:38.601 [info] ppl_id: b73b1a95-1240-49e5-84fc-80d5b6bdf12b, type: P"},{"event":"cmd_output","timestamp":1607098418,"output":"plBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098418,"output":"Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:38.603 [info] block_id: ea592939-31e6-4"},{"event":"cmd_output","timestamp":1607098418,"output":"bd5-9779-fd18908b4f61, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098418,"output":"n: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:38.605 [info] block_id: b80dd"},{"event":"cmd_output","timestamp":1607098418,"output":"4c5-f1e6-4d12-b52e-81e15fb93a80, type: BlockRequests, event: persisted build and sub_ppl details for"},{"event":"cmd_output","timestamp":1607098418,"output":" block_request: b80dd4c5-f1e6-4d12-b52e-81e15fb93a80, origin: Elixir.Block.BlockRequests.Model.Block"},{"event":"cmd_output","timestamp":1607098418,"output":"RequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:13:38.612 [info] block_id: b80dd4c5-f1e6-4d12-"},{"event":"cmd_output","timestamp":1607098418,"output":"b52e-81e15fb93a80, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Bl"},{"event":"cmd_output","timestamp":1607098418,"output":"ock.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:13:38.615 [info] block_id:"},{"event":"cmd_output","timestamp":1607098418,"output":" b80dd4c5-f1e6-4d12-b52e-81e15fb93a80, type: Blocks, state: running, event: exit_scheduling, recover"},{"event":"cmd_output","timestamp":1607098418,"output":"y_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:38.628 [info]"},{"event":"cmd_output","timestamp":1607098418,"output":" block_id: b80dd4c5-f1e6-4d12-b52e-81e15fb93a80, type: Tasks, state: running, event: exit_schedulin"},{"event":"cmd_output","timestamp":1607098421,"output":"g, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:41."},{"event":"cmd_output","timestamp":1607098421,"output":"647 [info] block_id: b80dd4c5-f1e6-4d12-b52e-81e15fb93a80, type: Tasks, state: done, event: exit_sc"},{"event":"cmd_output","timestamp":1607098421,"output":"heduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098421,"output":":13:41.656 [info] block_id: b80dd4c5-f1e6-4d12-b52e-81e15fb93a80, type: Blocks, state: done, event:"},{"event":"cmd_output","timestamp":1607098421,"output":" exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098421,"output":"[22m\n16:13:41.671 [info] ppl_id: b73b1a95-1240-49e5-84fc-80d5b6bdf12b, block_id: b80dd4c5-f1e6-4d1"},{"event":"cmd_output","timestamp":1607098421,"output":"2-b52e-81e15fb93a80, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_sched"},{"event":"cmd_output","timestamp":1607098421,"output":"uling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13"},{"event":"cmd_output","timestamp":1607098421,"output":":41.755 [info] block_id: ea592939-31e6-4bd5-9779-fd18908b4f61, type: Tasks, state: done, event: exi"},{"event":"cmd_output","timestamp":1607098421,"output":"t_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098421,"output":"\n16:13:41.759 [info] block_id: ea592939-31e6-4bd5-9779-fd18908b4f61, type: Blocks, state: done, ev"},{"event":"cmd_output","timestamp":1607098421,"output":"ent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b"},{"event":"cmd_output","timestamp":1607098421,"output":"[0m\u001b[22m\n16:13:41.775 [info] ppl_id: b73b1a95-1240-49e5-84fc-80d5b6bdf12b, block_id: ea592939-31e6"},{"event":"cmd_output","timestamp":1607098421,"output":"-4bd5-9779-fd18908b4f61, type: PplBlocks, block_index: 3, state: done, result: passed, event: exit_s"},{"event":"cmd_output","timestamp":1607098421,"output":"cheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098421,"output":"6:13:41.782 [info] PplBlocks WaitingState STM is scheduling block 1 from pipeline: \"b73b1a95-1240-4"},{"event":"cmd_output","timestamp":1607098421,"output":"9e5-84fc-80d5b6bdf12b\"\n\u001b[0m\u001b[22m\n16:13:41.788 [info] block_id: 723d76bc-4b79-466c-8cda-9ee2391413"},{"event":"cmd_output","timestamp":1607098421,"output":"d6, type: BlockRequests, event: persisted block run request from ppl b73b1a95-1240-49e5-84fc-80d5b6b"},{"event":"cmd_output","timestamp":1607098421,"output":"df12b for block 1, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4("},{"event":"cmd_output","timestamp":1607098421,"output":"L35), \n\u001b[0m\u001b[22m\n16:13:41.790 [info] block_id: 723d76bc-4b79-466c-8cda-9ee2391413d6, type: Blocks"},{"event":"cmd_output","timestamp":1607098421,"output":", state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.Blo"},{"event":"cmd_output","timestamp":1607098421,"output":"cksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:13:41.790 [info] Block 1 of pipeline with id: b73b1a95-12"},{"event":"cmd_output","timestamp":1607098421,"output":"40-49e5-84fc-80d5b6bdf12b scheduled in block service with id: : \"723d76bc-4b79-466c-8cda-9ee2391413d"},{"event":"cmd_output","timestamp":1607098421,"output":"6\"\n\u001b[0m\u001b[22m\n16:13:41.791 [info] ppl_id: b73b1a95-1240-49e5-84fc-80d5b6bdf12b, type: PplBlocks, b"},{"event":"cmd_output","timestamp":1607098421,"output":"lock_index: 1, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM."},{"event":"cmd_output","timestamp":1607098421,"output":"Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:41.795 [info] block_id: 723d76bc-4b79-466c-8cda-9e"},{"event":"cmd_output","timestamp":1607098421,"output":"e2391413d6, type: BlockRequests, event: persisted build and sub_ppl details for block_request: 723d7"},{"event":"cmd_output","timestamp":1607098421,"output":"6bc-4b79-466c-8cda-9ee2391413d6, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.inser"},{"event":"cmd_output","timestamp":1607098421,"output":"t_build/2(L41), \n\u001b[0m\u001b[22m\n16:13:41.796 [info] block_id: 723d76bc-4b79-466c-8cda-9ee2391413d6, ty"},{"event":"cmd_output","timestamp":1607098421,"output":"pe: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler"},{"event":"cmd_output","timestamp":1607098421,"output":".InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:13:41.798 [info] block_id: 723d76bc-4b79-466c-8"},{"event":"cmd_output","timestamp":1607098421,"output":"cda-9ee2391413d6, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: E"},{"event":"cmd_output","timestamp":1607098421,"output":"lixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:41.813 [info] block_id: 723d76bc-"},{"event":"cmd_output","timestamp":1607098421,"output":"4b79-466c-8cda-9ee2391413d6, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098424,"output":" origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:44.907 [info] block_id:"},{"event":"cmd_output","timestamp":1607098424,"output":" 723d76bc-4b79-466c-8cda-9ee2391413d6, type: Tasks, state: done, event: exit_scheduling, recovery_co"},{"event":"cmd_output","timestamp":1607098424,"output":"unt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:44.912 [info] bl"},{"event":"cmd_output","timestamp":1607098424,"output":"ock_id: 723d76bc-4b79-466c-8cda-9ee2391413d6, type: Blocks, state: done, event: exit_scheduling, rec"},{"event":"cmd_output","timestamp":1607098424,"output":"overy_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:44.917 [i"},{"event":"cmd_output","timestamp":1607098424,"output":"nfo] ppl_id: b73b1a95-1240-49e5-84fc-80d5b6bdf12b, block_id: 723d76bc-4b79-466c-8cda-9ee2391413d6, "},{"event":"cmd_output","timestamp":1607098424,"output":"type: PplBlocks, block_index: 1, state: done, result: passed, event: exit_scheduling, recovery_count"},{"event":"cmd_output","timestamp":1607098424,"output":": 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:44.924 [info] PplBl"},{"event":"cmd_output","timestamp":1607098424,"output":"ocks WaitingState STM is scheduling block 4 from pipeline: \"b73b1a95-1240-49e5-84fc-80d5b6bdf12b\"\n\u001b"},{"event":"cmd_output","timestamp":1607098424,"output":"[0m\u001b[22m\n16:13:44.933 [info] block_id: 0c7cdd84-1500-49be-b0b0-1c1bd490afc5, type: BlockRequests, "},{"event":"cmd_output","timestamp":1607098424,"output":"event: persisted block run request from ppl b73b1a95-1240-49e5-84fc-80d5b6bdf12b for block 4, origin"},{"event":"cmd_output","timestamp":1607098424,"output":": Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:13:"},{"event":"cmd_output","timestamp":1607098424,"output":"44.935 [info] block_id: 0c7cdd84-1500-49be-b0b0-1c1bd490afc5, type: Blocks, state: initializing, ev"},{"event":"cmd_output","timestamp":1607098424,"output":"ent: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43),"},{"event":"cmd_output","timestamp":1607098424,"output":" \n\u001b[0m\u001b[22m\n16:13:44.935 [info] Block 4 of pipeline with id: b73b1a95-1240-49e5-84fc-80d5b6bdf12b"},{"event":"cmd_output","timestamp":1607098424,"output":" scheduled in block service with id: : \"0c7cdd84-1500-49be-b0b0-1c1bd490afc5\"\n\u001b[0m\u001b[22m\n16:13:44.9"},{"event":"cmd_output","timestamp":1607098424,"output":"36 [info] ppl_id: b73b1a95-1240-49e5-84fc-80d5b6bdf12b, type: PplBlocks, block_index: 4, state: run"},{"event":"cmd_output","timestamp":1607098424,"output":"ning, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098424,"output":"90), \n\u001b[0m\u001b[22m\n16:13:44.939 [info] block_id: 0c7cdd84-1500-49be-b0b0-1c1bd490afc5, type: BlockRe"},{"event":"cmd_output","timestamp":1607098424,"output":"quests, event: persisted build and sub_ppl details for block_request: 0c7cdd84-1500-49be-b0b0-1c1bd4"},{"event":"cmd_output","timestamp":1607098424,"output":"90afc5, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098424,"output":"2m\n16:13:44.940 [info] PplBlocks WaitingState STM is scheduling block 2 from pipeline: \"b73b1a95-1"},{"event":"cmd_output","timestamp":1607098424,"output":"240-49e5-84fc-80d5b6bdf12b\"\n\u001b[0m\u001b[22m\n16:13:44.941 [info] block_id: 0c7cdd84-1500-49be-b0b0-1c1bd"},{"event":"cmd_output","timestamp":1607098424,"output":"490afc5, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks"},{"event":"cmd_output","timestamp":1607098424,"output":".STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:13:44.942 [info] block_id: 0c7cdd84-"},{"event":"cmd_output","timestamp":1607098424,"output":"1500-49be-b0b0-1c1bd490afc5, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0"},{"event":"cmd_output","timestamp":1607098424,"output":", origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:44.946 [info] block_id"},{"event":"cmd_output","timestamp":1607098424,"output":": 413a5e81-28d2-4409-91e2-c99d79b8587d, type: BlockRequests, event: persisted block run request from"},{"event":"cmd_output","timestamp":1607098424,"output":" ppl b73b1a95-1240-49e5-84fc-80d5b6bdf12b for block 2, origin: Elixir.Block.BlockRequests.Model.Bloc"},{"event":"cmd_output","timestamp":1607098424,"output":"kRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:13:44.948 [info] block_id: 413a5e81-28d2-"},{"event":"cmd_output","timestamp":1607098424,"output":"4409-91e2-c99d79b8587d, type: Blocks, state: initializing, event: initializing, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098424,"output":"rigin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:13:44.948 [info] Bloc"},{"event":"cmd_output","timestamp":1607098424,"output":"k 2 of pipeline with id: b73b1a95-1240-49e5-84fc-80d5b6bdf12b scheduled in block service with id: : "},{"event":"cmd_output","timestamp":1607098424,"output":"\"413a5e81-28d2-4409-91e2-c99d79b8587d\"\n\u001b[0m\u001b[22m\n16:13:44.955 [info] ppl_id: b73b1a95-1240-49e5-8"},{"event":"cmd_output","timestamp":1607098424,"output":"4fc-80d5b6bdf12b, type: PplBlocks, block_index: 2, state: running, event: exit_scheduling, recovery_"},{"event":"cmd_output","timestamp":1607098424,"output":"count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:44.959 [info] "},{"event":"cmd_output","timestamp":1607098424,"output":"block_id: 413a5e81-28d2-4409-91e2-c99d79b8587d, type: BlockRequests, event: persisted build and sub_"},{"event":"cmd_output","timestamp":1607098424,"output":"ppl details for block_request: 413a5e81-28d2-4409-91e2-c99d79b8587d, origin: Elixir.Block.BlockReque"},{"event":"cmd_output","timestamp":1607098424,"output":"sts.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:13:44.963 [info] block_id: 413a"},{"event":"cmd_output","timestamp":1607098424,"output":"5e81-28d2-4409-91e2-c99d79b8587d, type: Tasks, state: pending, event: created, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098424,"output":"igin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:13:44.964 [i"},{"event":"cmd_output","timestamp":1607098424,"output":"nfo] block_id: 0c7cdd84-1500-49be-b0b0-1c1bd490afc5, type: Tasks, state: running, event: exit_sched"},{"event":"cmd_output","timestamp":1607098424,"output":"uling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13"},{"event":"cmd_output","timestamp":1607098424,"output":":44.968 [info] block_id: 413a5e81-28d2-4409-91e2-c99d79b8587d, type: Blocks, state: running, event:"},{"event":"cmd_output","timestamp":1607098424,"output":" exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098424,"output":"[22m\n16:13:44.984 [info] block_id: 413a5e81-28d2-4409-91e2-c99d79b8587d, type: Tasks, state: runni"},{"event":"cmd_output","timestamp":1607098424,"output":"ng, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90"},{"event":"cmd_output","timestamp":1607098428,"output":"), \n\u001b[0m\u001b[22m\n16:13:48.075 [info] block_id: 0c7cdd84-1500-49be-b0b0-1c1bd490afc5, type: Tasks, st"},{"event":"cmd_output","timestamp":1607098428,"output":"ate: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chang"},{"event":"cmd_output","timestamp":1607098428,"output":"e/1(L90), \n\u001b[0m\u001b[22m\n16:13:48.081 [info] block_id: 0c7cdd84-1500-49be-b0b0-1c1bd490afc5, type: Bl"},{"event":"cmd_output","timestamp":1607098428,"output":"ocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_sta"},{"event":"cmd_output","timestamp":1607098428,"output":"te_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:48.086 [info] ppl_id: b73b1a95-1240-49e5-84fc-80d5b6bdf12b, bl"},{"event":"cmd_output","timestamp":1607098428,"output":"ock_id: 0c7cdd84-1500-49be-b0b0-1c1bd490afc5, type: PplBlocks, block_index: 4, state: done, result: "},{"event":"cmd_output","timestamp":1607098428,"output":"passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1"},{"event":"cmd_output","timestamp":1607098428,"output":"(L90), \n\u001b[0m\u001b[22m\n16:13:48.183 [info] block_id: 413a5e81-28d2-4409-91e2-c99d79b8587d, type: Tasks"},{"event":"cmd_output","timestamp":1607098428,"output":", state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098428,"output":"hange/1(L90), \n\u001b[0m\u001b[22m\n16:13:48.187 [info] block_id: 413a5e81-28d2-4409-91e2-c99d79b8587d, type"},{"event":"cmd_output","timestamp":1607098428,"output":": Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098428,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:48.195 [info] ppl_id: b73b1a95-1240-49e5-84fc-80d5b6bdf12b"},{"event":"cmd_output","timestamp":1607098428,"output":", block_id: 413a5e81-28d2-4409-91e2-c99d79b8587d, type: PplBlocks, block_index: 2, state: done, resu"},{"event":"cmd_output","timestamp":1607098428,"output":"lt: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chan"},{"event":"cmd_output","timestamp":1607098428,"output":"ge/1(L90), \n\u001b[0m\u001b[22m\n16:13:48.208 [info] ppl_id: b73b1a95-1240-49e5-84fc-80d5b6bdf12b, type: Ppl"},{"event":"cmd_output","timestamp":1607098428,"output":"s, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM"},{"event":"cmd_output","timestamp":1607098428,"output":".Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test Free topology pipeline passes (9960.2ms)\u001b[0m\n "},{"event":"cmd_output","timestamp":1607098428,"output":"* test Free topology failing pipeline with fail_fast = cancel\u001b[22m\n16:13:48.290 [info] Request: 'r"},{"event":"cmd_output","timestamp":1607098428,"output":"un: %{\"branch_id\" => \"58d0c0d4-5a1b-4e91-a785-9f3d36d832a8\", \"branch_name\" => \"master\", \"commit_sha\""},{"event":"cmd_output","timestamp":1607098428,"output":" => \"75891a4469\", \"file_name\" => \"semaphore.yml\", \"hook_id\" => \"b0e0a51e-364b-11eb-bca2-5254005464e2"},{"event":"cmd_output","timestamp":1607098428,"output":"\", \"label\" => \"master\", \"organization_id\" => \"984bbbf7-0d49-46dc-bc58-c20ad86f8a5b\", \"owner\" => \"rt\""},{"event":"cmd_output","timestamp":1607098428,"output":", \"project_id\" => \"3bb31c2f-f352-45b4-8a0f-e2065bc2e540\", \"repo_name\" => \"18_fail_fast_cancel\", \"req"},{"event":"cmd_output","timestamp":1607098428,"output":"uest_token\" => \"b0e09dda-364b-11eb-a917-5254005464e2\", \"requester_id\" => \"7bd22191-0566-48a8-b76e-64"},{"event":"cmd_output","timestamp":1607098428,"output":"1a25061262\", \"service\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf"},{"event":"cmd_output","timestamp":1607098428,"output":"_id\" => \"13fa6d91-bacf-451e-ba7a-7a38cba93913\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:13:48."},{"event":"cmd_output","timestamp":1607098428,"output":"292 [info] ppl_id: bc992645-7f48-46f2-95ab-e7c2a0c880ed, type: PplRequests, event: persisted schedu"},{"event":"cmd_output","timestamp":1607098428,"output":"le request with request_token: b0e09dda-364b-11eb-a917-5254005464e2, origin: Elixir.Ppl.PplRequests."},{"event":"cmd_output","timestamp":1607098428,"output":"Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:13:48.295 [info] ppl_id: bc992645"},{"event":"cmd_output","timestamp":1607098428,"output":"-7f48-46f2-95ab-e7c2a0c880ed, type: Ppls, state: initializing, event: initializing, recovery_count: "},{"event":"cmd_output","timestamp":1607098428,"output":"0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:13:48.300 [in"},{"event":"cmd_output","timestamp":1607098428,"output":"fo] Project 3bb31c2f-f352-45b4-8a0f-e2065bc2e540 and branch masterlatest_wf details updated: \"wf_id"},{"event":"cmd_output","timestamp":1607098428,"output":": 13fa6d91-bacf-451e-ba7a-7a38cba93913, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:13:48.301 [info] Persisted ppl"},{"event":"cmd_output","timestamp":1607098428,"output":"_sub_init for pipeline with ppl_id: bc992645-7f48-46f2-95ab-e7c2a0c880ed: %Ppl.PplSubInits.Model.Ppl"},{"event":"cmd_output","timestamp":1607098428,"output":"SubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error"},{"event":"cmd_output","timestamp":1607098428,"output":"_description: nil, id: 314, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 1"},{"event":"cmd_output","timestamp":1607098428,"output":"6:13:48.300925], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"bc992645-7f48-46f2-95ab-e7c2a0c880ed\", recovery_count: 0, result: nil, result_re"},{"event":"cmd_output","timestamp":1607098428,"output":"ason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[202"},{"event":"cmd_output","timestamp":1607098428,"output":"0-12-04 16:13:48.300930]}\n\u001b[0m\u001b[22m\n16:13:48.304 [info] Periodic from module Elixir.Ppl.Ppls.STMH"},{"event":"cmd_output","timestamp":1607098428,"output":"andler.InitializingState with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms, m"},{"event":"cmd_output","timestamp":1607098428,"output":"etric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %{a"},{"event":"cmd_output","timestamp":1607098428,"output":"llowed_states: [\"initializing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Mod"},{"event":"cmd_output","timestamp":1607098428,"output":"el.Ppls, observed_state: \"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandle"},{"event":"cmd_output","timestamp":1607098428,"output":"r.InitializingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :"},{"event":"cmd_output","timestamp":1607098428,"output":"state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0"},{"event":"cmd_output","timestamp":1607098428,"output":"m\u001b[22m\n16:13:48.304 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingState with name "},{"event":"cmd_output","timestamp":1607098428,"output":"Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"P"},{"event":"cmd_output","timestamp":1607098428,"output":"pl-Ppls-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"pending\", \"queuing\", \"runnin"},{"event":"cmd_output","timestamp":1607098428,"output":"g\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", pub"},{"event":"cmd_output","timestamp":1607098428,"output":"lisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, re"},{"event":"cmd_output","timestamp":1607098428,"output":"turning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: "},{"event":"cmd_output","timestamp":1607098428,"output":"Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:13:48.304 [info] Periodic "},{"event":"cmd_output","timestamp":1607098428,"output":"from module Elixir.Ppl.Ppls.STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandler.QueuingStat"},{"event":"cmd_output","timestamp":1607098428,"output":"e :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, re"},{"event":"cmd_output","timestamp":1607098428,"output":"curring args: %{allowed_states: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, initial_query:"},{"event":"cmd_output","timestamp":1607098428,"output":" Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.S"},{"event":"cmd_output","timestamp":1607098428,"output":"TMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at"},{"event":"cmd_output","timestamp":1607098428,"output":", :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n"},{"event":"cmd_output","timestamp":1607098428,"output":"\u001b[0m\u001b[22m\n16:13:48.305 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.RunningState with na"},{"event":"cmd_output","timestamp":1607098428,"output":"me Elixir.Ppl.Ppls.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", "},{"event":"cmd_output","timestamp":1607098428,"output":"[\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"do"},{"event":"cmd_output","timestamp":1607098428,"output":"ne\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"running\", publisher"},{"event":"cmd_output","timestamp":1607098428,"output":"_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returni"},{"event":"cmd_output","timestamp":1607098428,"output":"ng: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.P"},{"event":"cmd_output","timestamp":1607098428,"output":"pls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:13:48.305 [info] Periodic from "},{"event":"cmd_output","timestamp":1607098428,"output":"module Elixir.Ppl.Ppls.STMHandler.StoppingState with name Elixir.Ppl.Ppls.STMHandler.StoppingState :"},{"event":"cmd_output","timestamp":1607098428,"output":": period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recu"},{"event":"cmd_output","timestamp":1607098428,"output":"rring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Mo"},{"event":"cmd_output","timestamp":1607098428,"output":"del.Ppls, observed_state: \"stopping\", publisher_cb: #Function<0.71803493/1 in Ppl.Ppls.STMHandler.St"},{"event":"cmd_output","timestamp":1607098428,"output":"oppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :"},{"event":"cmd_output","timestamp":1607098428,"output":"result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098428,"output":"16:13:48.305 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedState with name E"},{"event":"cmd_output","timestamp":1607098428,"output":"lixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up"},{"event":"cmd_output","timestamp":1607098428,"output":"\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args: %{allowed_states: [\"fetching\", \"don"},{"event":"cmd_output","timestamp":1607098428,"output":"e\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"created"},{"event":"cmd_output","timestamp":1607098428,"output":"\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state"},{"event":"cmd_output","timestamp":1607098428,"output":", :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :s"},{"event":"cmd_output","timestamp":1607098428,"output":"kip}\n\u001b[0m\u001b[22m\n16:13:48.305 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.Fetchin"},{"event":"cmd_output","timestamp":1607098428,"output":"gState with name Elixir.Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 ms, metric_name: {\"P"},{"event":"cmd_output","timestamp":1607098428,"output":"pl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %{allowed_state"},{"event":"cmd_output","timestamp":1607098428,"output":"s: [\"regular_init\", \"compilation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Mod"},{"event":"cmd_output","timestamp":1607098428,"output":"el.PplSubInits, observed_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id"},{"event":"cmd_output","timestamp":1607098428,"output":", :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubIni"},{"event":"cmd_output","timestamp":1607098428,"output":"ts.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:48.305 [info] Periodic from module "},{"event":"cmd_output","timestamp":1607098428,"output":"Elixir.Ppl.PplSubInits.STMHandler.CompilationState with name Elixir.Ppl.PplSubInits.STMHandler.Compi"},{"event":"cmd_output","timestamp":1607098428,"output":"lationState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-Co"},{"event":"cmd_output","timestamp":1607098428,"output":"mpilationState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"stopping\", \"do"},{"event":"cmd_output","timestamp":1607098428,"output":"ne\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"compi"},{"event":"cmd_output","timestamp":1607098428,"output":"lation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, "},{"event":"cmd_output","timestamp":1607098428,"output":":state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervis"},{"event":"cmd_output","timestamp":1607098428,"output":"or: :skip}\n\u001b[0m\u001b[22m\n16:13:48.305 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.R"},{"event":"cmd_output","timestamp":1607098428,"output":"egularInitState with name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period: 100 ms, metr"},{"event":"cmd_output","timestamp":1607098428,"output":"ic_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurring args: "},{"event":"cmd_output","timestamp":1607098428,"output":"%{allowed_states: [\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, o"},{"event":"cmd_output","timestamp":1607098428,"output":"bserved_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_"},{"event":"cmd_output","timestamp":1607098428,"output":"request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplS"},{"event":"cmd_output","timestamp":1607098428,"output":"ubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:48.306 [info] Periodic from module Elixir.Ppl.Pp"},{"event":"cmd_output","timestamp":1607098428,"output":"lBlocks.STMHandler.InitializingState with name Elixir.Ppl.PplBlocks.STMHandler.InitializingState :: "},{"event":"cmd_output","timestamp":1607098428,"output":"period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-InitializingState\"]"},{"event":"cmd_output","timestamp":1607098428,"output":"}, recurring args: %{allowed_states: [\"initializing\", \"waiting\", \"done\"], cooling_time_sec: 0, initi"},{"event":"cmd_output","timestamp":1607098428,"output":"al_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"initializing\", publisher_cb: :skip, repo: "},{"event":"cmd_output","timestamp":1607098428,"output":"Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :p"},{"event":"cmd_output","timestamp":1607098428,"output":"pl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098428,"output":"13:48.306 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.WaitingState with name Elixir"},{"event":"cmd_output","timestamp":1607098428,"output":".Ppl.PplBlocks.STMHandler.WaitingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"P"},{"event":"cmd_output","timestamp":1607098428,"output":"pl-PplBlocks-STMHandler-WaitingState\"]}, recurring args: %{allowed_states: [\"waiting\", \"running\", \"d"},{"event":"cmd_output","timestamp":1607098428,"output":"one\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"waiting\","},{"event":"cmd_output","timestamp":1607098428,"output":" publisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>, repo: Ppl.Ect"},{"event":"cmd_output","timestamp":1607098428,"output":"oRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, "},{"event":"cmd_output","timestamp":1607098428,"output":":block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:48.3"},{"event":"cmd_output","timestamp":1607098428,"output":"06 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.RunningState with name Elixir.Ppl.Pp"},{"event":"cmd_output","timestamp":1607098428,"output":"lBlocks.STMHandler.RunningState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplB"},{"event":"cmd_output","timestamp":1607098428,"output":"locks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"],"},{"event":"cmd_output","timestamp":1607098428,"output":" cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"running\", publ"},{"event":"cmd_output","timestamp":1607098428,"output":"isher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0>, repo: Ppl.EctoRep"},{"event":"cmd_output","timestamp":1607098428,"output":"o, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :blo"},{"event":"cmd_output","timestamp":1607098428,"output":"ck_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098428,"output":"13:48.306 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.StoppingState with name Elixi"},{"event":"cmd_output","timestamp":1607098428,"output":"r.Ppl.PplBlocks.STMHandler.StoppingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", ["},{"event":"cmd_output","timestamp":1607098428,"output":"\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], "},{"event":"cmd_output","timestamp":1607098428,"output":"cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"stopping\", publ"},{"event":"cmd_output","timestamp":1607098428,"output":"isher_cb: #Function<0.104215991/1 in Ppl.PplBlocks.STMHandler.StoppingState.args/0>, repo: Ppl.EctoR"},{"event":"cmd_output","timestamp":1607098428,"output":"epo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :b"},{"event":"cmd_output","timestamp":1607098428,"output":"lock_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098428,"output":"6:13:48.306 [info] Periodic from module Elixir.Block.Blocks.STMHandler.InitializingState with name "},{"event":"cmd_output","timestamp":1607098428,"output":"Elixir.Block.Blocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake"},{"event":"cmd_output","timestamp":1607098428,"output":"_up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"running\", "},{"event":"cmd_output","timestamp":1607098428,"output":"\"done\"], cooling_time_sec: 0, initial_query: Block.Blocks.Model.Blocks, observed_state: \"initializin"},{"event":"cmd_output","timestamp":1607098428,"output":"g\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :st"},{"event":"cmd_output","timestamp":1607098428,"output":"ate, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098428,"output":"22m\n16:13:48.306 [info] Periodic from module Elixir.Block.Blocks.STMHandler.RunningState with name"},{"event":"cmd_output","timestamp":1607098428,"output":" Elixir.Block.Blocks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\""},{"event":"cmd_output","timestamp":1607098428,"output":", [\"Block-Blocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping"},{"event":"cmd_output","timestamp":1607098428,"output":"\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"running"},{"event":"cmd_output","timestamp":1607098428,"output":"\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :sta"},{"event":"cmd_output","timestamp":1607098428,"output":"te, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098428,"output":"2m\n16:13:48.307 [info] Periodic from module Elixir.Block.Blocks.STMHandler.StoppingState with name"},{"event":"cmd_output","timestamp":1607098428,"output":" Elixir.Block.Blocks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up"},{"event":"cmd_output","timestamp":1607098428,"output":"\", [\"Block-Blocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\""},{"event":"cmd_output","timestamp":1607098428,"output":"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"stopping\", publi"},{"event":"cmd_output","timestamp":1607098428,"output":"sher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :rec"},{"event":"cmd_output","timestamp":1607098428,"output":"overy_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098428,"output":"3:48.307 [info] Periodic from module Elixir.Block.Tasks.STMHandler.PendingState with name Elixir.Bl"},{"event":"cmd_output","timestamp":1607098428,"output":"ock.Tasks.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-T"},{"event":"cmd_output","timestamp":1607098428,"output":"asks-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time"},{"event":"cmd_output","timestamp":1607098428,"output":"_sec: 0, initial_query: Block.Tasks.Model.Tasks, observed_state: \"pending\", publisher_cb: :skip, rep"},{"event":"cmd_output","timestamp":1607098428,"output":"o: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block"},{"event":"cmd_output","timestamp":1607098428,"output":"_id, :build_request_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:"},{"event":"cmd_output","timestamp":1607098428,"output":"48.307 [info] Periodic from module Elixir.Block.Tasks.STMHandler.RunningState with name Elixir.Bloc"},{"event":"cmd_output","timestamp":1607098428,"output":"k.Tasks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tas"},{"event":"cmd_output","timestamp":1607098428,"output":"ks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], co"},{"event":"cmd_output","timestamp":1607098428,"output":"oling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"running\", publisher_cb:"},{"event":"cmd_output","timestamp":1607098428,"output":" :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_co"},{"event":"cmd_output","timestamp":1607098428,"output":"unt, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:48.307 ["},{"event":"cmd_output","timestamp":1607098428,"output":"info] Periodic from module Elixir.Block.Tasks.STMHandler.StoppingState with name Elixir.Block.Tasks"},{"event":"cmd_output","timestamp":1607098428,"output":".STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STM"},{"event":"cmd_output","timestamp":1607098428,"output":"Handler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: "},{"event":"cmd_output","timestamp":1607098428,"output":"-2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"stopping\", publisher_cb: :skip, repo: B"},{"event":"cmd_output","timestamp":1607098428,"output":"lock.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id]"},{"event":"cmd_output","timestamp":1607098428,"output":", schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:48.418 [info] ppl_id: "},{"event":"cmd_output","timestamp":1607098428,"output":"bc992645-7f48-46f2-95ab-e7c2a0c880ed, type: PplRequests, event: persisted source_args for pipeline: "},{"event":"cmd_output","timestamp":1607098428,"output":"bc992645-7f48-46f2-95ab-e7c2a0c880ed, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert"},{"event":"cmd_output","timestamp":1607098428,"output":"_source/2(L89), \n\u001b[0m\u001b[22m\n16:13:48.420 [info] ppl_id: bc992645-7f48-46f2-95ab-e7c2a0c880ed, type"},{"event":"cmd_output","timestamp":1607098428,"output":": PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM"},{"event":"cmd_output","timestamp":1607098428,"output":".Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:48.447 [info] ppl_id: bc992645-7f48-46f2-95ab-e7c"},{"event":"cmd_output","timestamp":1607098428,"output":"2a0c880ed, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098428,"output":": Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:48.471 [info] ppl_id: bc992645"},{"event":"cmd_output","timestamp":1607098428,"output":"-7f48-46f2-95ab-e7c2a0c880ed, type: PplRequests, event: persisted definition for request with reques"},{"event":"cmd_output","timestamp":1607098428,"output":"t_token: b0e09dda-364b-11eb-a917-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueri"},{"event":"cmd_output","timestamp":1607098428,"output":"es.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:13:48.474 [info] Queue persisted: {:ok, %Ppl.Queues.Mo"},{"event":"cmd_output","timestamp":1607098428,"output":"del.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:13:48.4"},{"event":"cmd_output","timestamp":1607098428,"output":"73107], name: \"master-.semaphore/semaphore.yml\", organization_id: \"984bbbf7-0d49-46dc-bc58-c20ad86f8"},{"event":"cmd_output","timestamp":1607098428,"output":"a5b\", project_id: \"3bb31c2f-f352-45b4-8a0f-e2065bc2e540\", queue_id: \"1e4cfe46-3df5-44c4-a2f0-8283a40"},{"event":"cmd_output","timestamp":1607098428,"output":"ab352\", scope: \"project\", updated_at: ~N[2020-12-04 16:13:48.473117], user_generated: false}}\n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098428,"output":"[22m\n16:13:48.481 [info] ppl_id: not_available, event: created, origin: Elixir.Ppl.PplSubInits.STM"},{"event":"cmd_output","timestamp":1607098428,"output":"Handler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:48.481 [info] event: created, origin: "},{"event":"cmd_output","timestamp":1607098428,"output":"Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:48.481 [info]"},{"event":"cmd_output","timestamp":1607098428,"output":" ppl_id: bc992645-7f48-46f2-95ab-e7c2a0c880ed, type: PplBlocks, block_index: 0, state: initializing"},{"event":"cmd_output","timestamp":1607098428,"output":", event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_"},{"event":"cmd_output","timestamp":1607098428,"output":"ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:48.481 [info] ppl_id: bc992645-7f48-46f2-95ab-e7c2a0c880ed, type: P"},{"event":"cmd_output","timestamp":1607098428,"output":"plBlocks, block_index: 1, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098428,"output":".PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:48.481 [info] ppl_id: "},{"event":"cmd_output","timestamp":1607098428,"output":"bc992645-7f48-46f2-95ab-e7c2a0c880ed, type: PplBlocks, block_index: 2, state: initializing, event: c"},{"event":"cmd_output","timestamp":1607098428,"output":"reated, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105"},{"event":"cmd_output","timestamp":1607098428,"output":"), \n\u001b[0m\u001b[22m\n16:13:48.481 [info] ppl_id: bc992645-7f48-46f2-95ab-e7c2a0c880ed, type: PplBlocks, "},{"event":"cmd_output","timestamp":1607098428,"output":"block_index: 3, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubIni"},{"event":"cmd_output","timestamp":1607098428,"output":"ts.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:48.481 [info] ppl_id: bc992645-7"},{"event":"cmd_output","timestamp":1607098428,"output":"f48-46f2-95ab-e7c2a0c880ed, type: PplBlocks, block_index: 4, state: initializing, event: created, re"},{"event":"cmd_output","timestamp":1607098428,"output":"covery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098428,"output":"[22m\n16:13:48.483 [info] ppl_id: bc992645-7f48-46f2-95ab-e7c2a0c880ed, type: PplSubInits, state: d"},{"event":"cmd_output","timestamp":1607098428,"output":"one, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_s"},{"event":"cmd_output","timestamp":1607098428,"output":"tate_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:48.492 [info] ppl_id: bc992645-7f48-46f2-95ab-e7c2a0c880ed, "},{"event":"cmd_output","timestamp":1607098428,"output":"type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Imp"},{"event":"cmd_output","timestamp":1607098428,"output":"l.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:48.495 [info] ppl_id: bc992645-7f48-46f2-95ab-e7c2a0c"},{"event":"cmd_output","timestamp":1607098428,"output":"880ed, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098428,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:48.500 [info] ppl_id: bc9"},{"event":"cmd_output","timestamp":1607098428,"output":"92645-7f48-46f2-95ab-e7c2a0c880ed, type: Ppls, state: queuing, event: exit_scheduling, recovery_coun"},{"event":"cmd_output","timestamp":1607098428,"output":"t: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:48.502 [info] ppl_"},{"event":"cmd_output","timestamp":1607098428,"output":"id: bc992645-7f48-46f2-95ab-e7c2a0c880ed, type: PplBlocks, block_index: 1, state: waiting, event: ex"},{"event":"cmd_output","timestamp":1607098428,"output":"it_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098428,"output":"m\n16:13:48.509 [info] ppl_id: bc992645-7f48-46f2-95ab-e7c2a0c880ed, type: PplBlocks, block_index: "},{"event":"cmd_output","timestamp":1607098428,"output":"2, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_sta"},{"event":"cmd_output","timestamp":1607098428,"output":"te_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:48.509 [info] ppl_id: bc992645-7f48-46f2-95ab-e7c2a0c880ed, ty"},{"event":"cmd_output","timestamp":1607098428,"output":"pe: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl."},{"event":"cmd_output","timestamp":1607098428,"output":"log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:48.514 [info] PplBlocks WaitingState STM is scheduling "},{"event":"cmd_output","timestamp":1607098428,"output":"block 2 from pipeline: \"bc992645-7f48-46f2-95ab-e7c2a0c880ed\"\n\u001b[0m\u001b[22m\n16:13:48.521 [info] ppl_i"},{"event":"cmd_output","timestamp":1607098428,"output":"d: bc992645-7f48-46f2-95ab-e7c2a0c880ed, type: PplBlocks, block_index: 3, state: waiting, event: exi"},{"event":"cmd_output","timestamp":1607098428,"output":"t_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098428,"output":"\n16:13:48.526 [info] ppl_id: bc992645-7f48-46f2-95ab-e7c2a0c880ed, type: PplBlocks, block_index: 4"},{"event":"cmd_output","timestamp":1607098428,"output":", state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_stat"},{"event":"cmd_output","timestamp":1607098428,"output":"e_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:48.528 [info] block_id: 44bb7733-0a14-40fe-a67d-fe0f203cd405, t"},{"event":"cmd_output","timestamp":1607098428,"output":"ype: BlockRequests, event: persisted block run request from ppl bc992645-7f48-46f2-95ab-e7c2a0c880ed"},{"event":"cmd_output","timestamp":1607098428,"output":" for block 2, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35),"},{"event":"cmd_output","timestamp":1607098428,"output":" \n\u001b[0m\u001b[22m\n16:13:48.531 [info] block_id: 44bb7733-0a14-40fe-a67d-fe0f203cd405, type: Blocks, sta"},{"event":"cmd_output","timestamp":1607098428,"output":"te: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQu"},{"event":"cmd_output","timestamp":1607098428,"output":"eries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:13:48.533 [info] Block 2 of pipeline with id: bc992645-7f48-46"},{"event":"cmd_output","timestamp":1607098428,"output":"f2-95ab-e7c2a0c880ed scheduled in block service with id: : \"44bb7733-0a14-40fe-a67d-fe0f203cd405\"\n\u001b"},{"event":"cmd_output","timestamp":1607098428,"output":"[0m\u001b[22m\n16:13:48.535 [info] ppl_id: bc992645-7f48-46f2-95ab-e7c2a0c880ed, type: PplBlocks, block_"},{"event":"cmd_output","timestamp":1607098428,"output":"index: 2, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl."},{"event":"cmd_output","timestamp":1607098428,"output":"log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:48.538 [info] block_id: 44bb7733-0a14-40fe-a67d-fe0f203"},{"event":"cmd_output","timestamp":1607098428,"output":"cd405, type: BlockRequests, event: persisted build and sub_ppl details for block_request: 44bb7733-0"},{"event":"cmd_output","timestamp":1607098428,"output":"a14-40fe-a67d-fe0f203cd405, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_bui"},{"event":"cmd_output","timestamp":1607098428,"output":"ld/2(L41), \n\u001b[0m\u001b[22m\n16:13:48.538 [info] PplBlocks WaitingState STM is scheduling block 1 from p"},{"event":"cmd_output","timestamp":1607098428,"output":"ipeline: \"bc992645-7f48-46f2-95ab-e7c2a0c880ed\"\n\u001b[0m\u001b[22m\n16:13:48.540 [info] block_id: 44bb7733-"},{"event":"cmd_output","timestamp":1607098428,"output":"0a14-40fe-a67d-fe0f203cd405, type: Tasks, state: pending, event: created, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098428,"output":" Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:13:48.542 [info] "},{"event":"cmd_output","timestamp":1607098428,"output":" block_id: 44bb7733-0a14-40fe-a67d-fe0f203cd405, type: Blocks, state: running, event: exit_schedulin"},{"event":"cmd_output","timestamp":1607098428,"output":"g, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:48."},{"event":"cmd_output","timestamp":1607098428,"output":"544 [info] block_id: 57771504-60f6-41bb-b025-7ca1e1964b4a, type: BlockRequests, event: persisted bl"},{"event":"cmd_output","timestamp":1607098428,"output":"ock run request from ppl bc992645-7f48-46f2-95ab-e7c2a0c880ed for block 1, origin: Elixir.Block.Bloc"},{"event":"cmd_output","timestamp":1607098428,"output":"kRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:13:48.545 [info] bloc"},{"event":"cmd_output","timestamp":1607098428,"output":"k_id: 57771504-60f6-41bb-b025-7ca1e1964b4a, type: Blocks, state: initializing, event: initializing, "},{"event":"cmd_output","timestamp":1607098428,"output":"recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:13"},{"event":"cmd_output","timestamp":1607098428,"output":":48.547 [info] Block 1 of pipeline with id: bc992645-7f48-46f2-95ab-e7c2a0c880ed scheduled in block"},{"event":"cmd_output","timestamp":1607098428,"output":" service with id: : \"57771504-60f6-41bb-b025-7ca1e1964b4a\"\n\u001b[0m\u001b[22m\n16:13:48.549 [info] ppl_id: "},{"event":"cmd_output","timestamp":1607098428,"output":"bc992645-7f48-46f2-95ab-e7c2a0c880ed, type: PplBlocks, block_index: 1, state: running, event: exit_s"},{"event":"cmd_output","timestamp":1607098428,"output":"cheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098428,"output":"6:13:48.552 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"bc992645-7f48-4"},{"event":"cmd_output","timestamp":1607098428,"output":"6f2-95ab-e7c2a0c880ed\"\n\u001b[0m\u001b[22m\n16:13:48.558 [info] block_id: 44bb7733-0a14-40fe-a67d-fe0f203cd4"},{"event":"cmd_output","timestamp":1607098428,"output":"05, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.ST"},{"event":"cmd_output","timestamp":1607098428,"output":"M.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:48.560 [info] block_id: 57771504-60f6-41bb-b025-"},{"event":"cmd_output","timestamp":1607098428,"output":"7ca1e1964b4a, type: BlockRequests, event: persisted build and sub_ppl details for block_request: 577"},{"event":"cmd_output","timestamp":1607098428,"output":"71504-60f6-41bb-b025-7ca1e1964b4a, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.ins"},{"event":"cmd_output","timestamp":1607098428,"output":"ert_build/2(L41), \n\u001b[0m\u001b[22m\n16:13:48.563 [info] block_id: 57771504-60f6-41bb-b025-7ca1e1964b4a, "},{"event":"cmd_output","timestamp":1607098428,"output":"type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandl"},{"event":"cmd_output","timestamp":1607098428,"output":"er.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:13:48.563 [info] block_id: 2b567966-1b0a-43c3"},{"event":"cmd_output","timestamp":1607098428,"output":"-8adc-8a177ec18cf8, type: BlockRequests, event: persisted block run request from ppl bc992645-7f48-4"},{"event":"cmd_output","timestamp":1607098428,"output":"6f2-95ab-e7c2a0c880ed for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.pro"},{"event":"cmd_output","timestamp":1607098428,"output":"cess_response/4(L35), \n\u001b[0m\u001b[22m\n16:13:48.565 [info] block_id: 57771504-60f6-41bb-b025-7ca1e1964b"},{"event":"cmd_output","timestamp":1607098428,"output":"4a, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.S"},{"event":"cmd_output","timestamp":1607098428,"output":"TM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:48.568 [info] block_id: 2b567966-1b0a-43c3-8adc"},{"event":"cmd_output","timestamp":1607098428,"output":"-8a177ec18cf8, type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098428,"output":"ixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:13:48.571 [info] Block 0 of pi"},{"event":"cmd_output","timestamp":1607098428,"output":"peline with id: bc992645-7f48-46f2-95ab-e7c2a0c880ed scheduled in block service with id: : \"2b567966"},{"event":"cmd_output","timestamp":1607098428,"output":"-1b0a-43c3-8adc-8a177ec18cf8\"\n\u001b[0m\u001b[22m\n16:13:48.573 [info] ppl_id: bc992645-7f48-46f2-95ab-e7c2a"},{"event":"cmd_output","timestamp":1607098428,"output":"0c880ed, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098428,"output":" origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:48.580 [info] block_id:"},{"event":"cmd_output","timestamp":1607098428,"output":" 57771504-60f6-41bb-b025-7ca1e1964b4a, type: Tasks, state: running, event: exit_scheduling, recovery"},{"event":"cmd_output","timestamp":1607098428,"output":"_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:48.583 [info] "},{"event":"cmd_output","timestamp":1607098428,"output":" block_id: 2b567966-1b0a-43c3-8adc-8a177ec18cf8, type: BlockRequests, event: persisted build and sub"},{"event":"cmd_output","timestamp":1607098428,"output":"_ppl details for block_request: 2b567966-1b0a-43c3-8adc-8a177ec18cf8, origin: Elixir.Block.BlockRequ"},{"event":"cmd_output","timestamp":1607098428,"output":"ests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:13:48.585 [info] block_id: 2b5"},{"event":"cmd_output","timestamp":1607098428,"output":"67966-1b0a-43c3-8adc-8a177ec18cf8, type: Tasks, state: pending, event: created, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098428,"output":"rigin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:13:48.587 ["},{"event":"cmd_output","timestamp":1607098428,"output":"info] block_id: 2b567966-1b0a-43c3-8adc-8a177ec18cf8, type: Blocks, state: running, event: exit_sch"},{"event":"cmd_output","timestamp":1607098428,"output":"eduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098428,"output":"13:48.598 [info] block_id: 2b567966-1b0a-43c3-8adc-8a177ec18cf8, type: Tasks, state: running, event"},{"event":"cmd_output","timestamp":1607098428,"output":": exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098430,"output":"\u001b[22m\n16:13:50.591 [info] block_id: 44bb7733-0a14-40fe-a67d-fe0f203cd405, type: Tasks, state: done"},{"event":"cmd_output","timestamp":1607098430,"output":", event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90),"},{"event":"cmd_output","timestamp":1607098430,"output":" \n\u001b[0m\u001b[22m\n16:13:50.596 [info] block_id: 44bb7733-0a14-40fe-a67d-fe0f203cd405, type: Blocks, sta"},{"event":"cmd_output","timestamp":1607098430,"output":"te: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change"},{"event":"cmd_output","timestamp":1607098430,"output":"/1(L90), \n\u001b[0m\u001b[22m\n16:13:50.608 [info] ppl_id: bc992645-7f48-46f2-95ab-e7c2a0c880ed, block_id: 4"},{"event":"cmd_output","timestamp":1607098430,"output":"4bb7733-0a14-40fe-a67d-fe0f203cd405, type: PplBlocks, block_index: 2, state: done, result: failed, e"},{"event":"cmd_output","timestamp":1607098430,"output":"vent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n"},{"event":"cmd_output","timestamp":1607098433,"output":"\u001b[0m\u001b[22m\n16:13:53.646 [info] block_id: 2b567966-1b0a-43c3-8adc-8a177ec18cf8, type: Tasks, state: "},{"event":"cmd_output","timestamp":1607098433,"output":"done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098433,"output":"90), \n\u001b[0m\u001b[22m\n16:13:53.650 [info] block_id: 2b567966-1b0a-43c3-8adc-8a177ec18cf8, type: Blocks,"},{"event":"cmd_output","timestamp":1607098433,"output":" state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_ch"},{"event":"cmd_output","timestamp":1607098433,"output":"ange/1(L90), \n\u001b[0m\u001b[22m\n16:13:53.660 [info] ppl_id: bc992645-7f48-46f2-95ab-e7c2a0c880ed, block_i"},{"event":"cmd_output","timestamp":1607098433,"output":"d: 2b567966-1b0a-43c3-8adc-8a177ec18cf8, type: PplBlocks, block_index: 0, state: done, result: passe"},{"event":"cmd_output","timestamp":1607098433,"output":"d, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90)"},{"event":"cmd_output","timestamp":1607098433,"output":", \n\u001b[0m\u001b[22m\n16:13:53.666 [info] PplBlocks WaitingState STM is scheduling block 3 from pipeline: "},{"event":"cmd_output","timestamp":1607098433,"output":"\"bc992645-7f48-46f2-95ab-e7c2a0c880ed\"\n\u001b[0m\u001b[22m\n16:13:53.676 [info] ppl_id: bc992645-7f48-46f2-9"},{"event":"cmd_output","timestamp":1607098433,"output":"5ab-e7c2a0c880ed, type: PplBlocks, block_index: 3, state: done, result: canceled, event: exit_schedu"},{"event":"cmd_output","timestamp":1607098433,"output":"ling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:"},{"event":"cmd_output","timestamp":1607098433,"output":"53.754 [info] block_id: 57771504-60f6-41bb-b025-7ca1e1964b4a, type: Tasks, state: done, event: exit"},{"event":"cmd_output","timestamp":1607098433,"output":"_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098433,"output":"\n16:13:53.762 [info] block_id: 57771504-60f6-41bb-b025-7ca1e1964b4a, type: Blocks, state: done, eve"},{"event":"cmd_output","timestamp":1607098433,"output":"nt: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b["},{"event":"cmd_output","timestamp":1607098433,"output":"0m\u001b[22m\n16:13:53.769 [info] ppl_id: bc992645-7f48-46f2-95ab-e7c2a0c880ed, block_id: 57771504-60f6-"},{"event":"cmd_output","timestamp":1607098433,"output":"41bb-b025-7ca1e1964b4a, type: PplBlocks, block_index: 1, state: done, result: passed, event: exit_sc"},{"event":"cmd_output","timestamp":1607098433,"output":"heduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098433,"output":":13:53.774 [info] PplBlocks WaitingState STM is scheduling block 4 from pipeline: \"bc992645-7f48-46"},{"event":"cmd_output","timestamp":1607098433,"output":"f2-95ab-e7c2a0c880ed\"\n\u001b[0m\u001b[22m\n16:13:53.782 [info] ppl_id: bc992645-7f48-46f2-95ab-e7c2a0c880ed,"},{"event":"cmd_output","timestamp":1607098433,"output":" type: PplBlocks, block_index: 4, state: done, result: canceled, event: exit_scheduling, recovery_co"},{"event":"cmd_output","timestamp":1607098433,"output":"unt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:53.792 [info] pp"},{"event":"cmd_output","timestamp":1607098433,"output":"l_id: bc992645-7f48-46f2-95ab-e7c2a0c880ed, type: Ppls, state: done, result: failed, event: exit_sch"},{"event":"cmd_output","timestamp":1607098433,"output":"eduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * "},{"event":"cmd_output","timestamp":1607098433,"output":"test Free topology failing pipeline with fail_fast = cancel (5674.5ms)\u001b[0m\n * test Free topology f"},{"event":"cmd_output","timestamp":1607098433,"output":"ailing pipeline with fail_fast = stop\u001b[22m\n16:13:53.955 [info] Request: 'run: %{:repo_name => \"19_"},{"event":"cmd_output","timestamp":1607098433,"output":"fail_fast_stop\", \"branch_id\" => \"69720ee5-d1cd-4efd-bc69-127364c1bc53\", \"branch_name\" => \"master\", \""},{"event":"cmd_output","timestamp":1607098433,"output":"commit_sha\" => \"75891a4469\", \"file_name\" => \"semaphore.yml\", \"hook_id\" => \"b44065d2-364b-11eb-95e1-5"},{"event":"cmd_output","timestamp":1607098433,"output":"254005464e2\", \"label\" => \"master\", \"organization_id\" => \"d19506fe-3af8-4424-bb7a-0257b181e226\", \"own"},{"event":"cmd_output","timestamp":1607098433,"output":"er\" => \"rt\", \"project_id\" => \"8854c50e-ca6f-4ba5-bc81-1a05bdfbaa1f\", \"repo_name\" => \"2_basic\", \"requ"},{"event":"cmd_output","timestamp":1607098433,"output":"est_token\" => \"b4405cae-364b-11eb-ad35-5254005464e2\", \"requester_id\" => \"e6a61d62-db81-4d78-a2d8-230"},{"event":"cmd_output","timestamp":1607098433,"output":"11ff75334\", \"service\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_"},{"event":"cmd_output","timestamp":1607098433,"output":"id\" => \"b494c687-cc13-46b4-af71-070d915d232b\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:13:53.9"},{"event":"cmd_output","timestamp":1607098433,"output":"56 [info] ppl_id: 028d68af-02c5-458d-969c-7ba8d444d01d, type: PplRequests, event: persisted schedul"},{"event":"cmd_output","timestamp":1607098433,"output":"e request with request_token: b4405cae-364b-11eb-ad35-5254005464e2, origin: Elixir.Ppl.PplRequests.M"},{"event":"cmd_output","timestamp":1607098433,"output":"odel.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:13:53.959 [info] ppl_id: 028d68af-"},{"event":"cmd_output","timestamp":1607098433,"output":"02c5-458d-969c-7ba8d444d01d, type: Ppls, state: initializing, event: initializing, recovery_count: 0"},{"event":"cmd_output","timestamp":1607098433,"output":", origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:13:53.963 [inf"},{"event":"cmd_output","timestamp":1607098433,"output":"o] Project 8854c50e-ca6f-4ba5-bc81-1a05bdfbaa1f and branch masterlatest_wf details updated: \"wf_id:"},{"event":"cmd_output","timestamp":1607098433,"output":" b494c687-cc13-46b4-af71-070d915d232b, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:13:53.964 [info] Persisted ppl_"},{"event":"cmd_output","timestamp":1607098433,"output":"sub_init for pipeline with ppl_id: 028d68af-02c5-458d-969c-7ba8d444d01d: %Ppl.PplSubInits.Model.PplS"},{"event":"cmd_output","timestamp":1607098433,"output":"ubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_"},{"event":"cmd_output","timestamp":1607098433,"output":"description: nil, id: 315, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16"},{"event":"cmd_output","timestamp":1607098433,"output":":13:53.963663], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"028d68af-02c5-458d-969c-7ba8d444d01d\", recovery_count: 0, result: nil, result_rea"},{"event":"cmd_output","timestamp":1607098433,"output":"son: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020"},{"event":"cmd_output","timestamp":1607098433,"output":"-12-04 16:13:53.963670]}\n\u001b[0m\u001b[22m\n16:13:53.967 [info] Periodic from module Elixir.Ppl.Ppls.STMHa"},{"event":"cmd_output","timestamp":1607098433,"output":"ndler.InitializingState with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms, me"},{"event":"cmd_output","timestamp":1607098433,"output":"tric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %{al"},{"event":"cmd_output","timestamp":1607098433,"output":"lowed_states: [\"initializing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Mode"},{"event":"cmd_output","timestamp":1607098433,"output":"l.Ppls, observed_state: \"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler"},{"event":"cmd_output","timestamp":1607098433,"output":".InitializingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :s"},{"event":"cmd_output","timestamp":1607098433,"output":"tate, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m"},{"event":"cmd_output","timestamp":1607098433,"output":"\u001b[22m\n16:13:53.967 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingState with name E"},{"event":"cmd_output","timestamp":1607098433,"output":"lixir.Ppl.Ppls.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Pp"},{"event":"cmd_output","timestamp":1607098433,"output":"l-Ppls-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"pending\", \"queuing\", \"running"},{"event":"cmd_output","timestamp":1607098433,"output":"\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publ"},{"event":"cmd_output","timestamp":1607098433,"output":"isher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, ret"},{"event":"cmd_output","timestamp":1607098433,"output":"urning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: P"},{"event":"cmd_output","timestamp":1607098433,"output":"pl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:13:53.967 [info] Periodic f"},{"event":"cmd_output","timestamp":1607098433,"output":"rom module Elixir.Ppl.Ppls.STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandler.QueuingState"},{"event":"cmd_output","timestamp":1607098433,"output":" :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, rec"},{"event":"cmd_output","timestamp":1607098433,"output":"urring args: %{allowed_states: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, initial_query: "},{"event":"cmd_output","timestamp":1607098433,"output":"Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.ST"},{"event":"cmd_output","timestamp":1607098433,"output":"MHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at,"},{"event":"cmd_output","timestamp":1607098433,"output":" :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b"},{"event":"cmd_output","timestamp":1607098433,"output":"[0m\u001b[22m\n16:13:53.968 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.RunningState with nam"},{"event":"cmd_output","timestamp":1607098433,"output":"e Elixir.Ppl.Ppls.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", ["},{"event":"cmd_output","timestamp":1607098433,"output":"\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"don"},{"event":"cmd_output","timestamp":1607098433,"output":"e\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"running\", publisher_"},{"event":"cmd_output","timestamp":1607098433,"output":"cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returnin"},{"event":"cmd_output","timestamp":1607098433,"output":"g: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Pp"},{"event":"cmd_output","timestamp":1607098433,"output":"ls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:13:53.969 [info] Periodic from m"},{"event":"cmd_output","timestamp":1607098433,"output":"odule Elixir.Ppl.Ppls.STMHandler.StoppingState with name Elixir.Ppl.Ppls.STMHandler.StoppingState ::"},{"event":"cmd_output","timestamp":1607098433,"output":" period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recur"},{"event":"cmd_output","timestamp":1607098433,"output":"ring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Mod"},{"event":"cmd_output","timestamp":1607098433,"output":"el.Ppls, observed_state: \"stopping\", publisher_cb: #Function<0.71803493/1 in Ppl.Ppls.STMHandler.Sto"},{"event":"cmd_output","timestamp":1607098433,"output":"ppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :r"},{"event":"cmd_output","timestamp":1607098433,"output":"esult, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098433,"output":"6:13:53.969 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedState with name El"},{"event":"cmd_output","timestamp":1607098433,"output":"ixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\""},{"event":"cmd_output","timestamp":1607098433,"output":", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args: %{allowed_states: [\"fetching\", \"done"},{"event":"cmd_output","timestamp":1607098433,"output":"\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"created\""},{"event":"cmd_output","timestamp":1607098433,"output":", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state,"},{"event":"cmd_output","timestamp":1607098433,"output":" :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :sk"},{"event":"cmd_output","timestamp":1607098433,"output":"ip}\n\u001b[0m\u001b[22m\n16:13:53.970 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.Fetching"},{"event":"cmd_output","timestamp":1607098433,"output":"State with name Elixir.Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 ms, metric_name: {\"Pp"},{"event":"cmd_output","timestamp":1607098433,"output":"l.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %{allowed_states"},{"event":"cmd_output","timestamp":1607098433,"output":": [\"regular_init\", \"compilation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Mode"},{"event":"cmd_output","timestamp":1607098433,"output":"l.PplSubInits, observed_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id,"},{"event":"cmd_output","timestamp":1607098433,"output":" :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInit"},{"event":"cmd_output","timestamp":1607098433,"output":"s.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:53.971 [info] Periodic from module E"},{"event":"cmd_output","timestamp":1607098433,"output":"lixir.Ppl.PplSubInits.STMHandler.CompilationState with name Elixir.Ppl.PplSubInits.STMHandler.Compil"},{"event":"cmd_output","timestamp":1607098433,"output":"ationState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-Com"},{"event":"cmd_output","timestamp":1607098433,"output":"pilationState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"stopping\", \"don"},{"event":"cmd_output","timestamp":1607098433,"output":"e\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"compil"},{"event":"cmd_output","timestamp":1607098433,"output":"ation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :"},{"event":"cmd_output","timestamp":1607098433,"output":"state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_superviso"},{"event":"cmd_output","timestamp":1607098433,"output":"r: :skip}\n\u001b[0m\u001b[22m\n16:13:53.971 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.Re"},{"event":"cmd_output","timestamp":1607098433,"output":"gularInitState with name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period: 100 ms, metri"},{"event":"cmd_output","timestamp":1607098433,"output":"c_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurring args: %"},{"event":"cmd_output","timestamp":1607098433,"output":"{allowed_states: [\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, ob"},{"event":"cmd_output","timestamp":1607098433,"output":"served_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_r"},{"event":"cmd_output","timestamp":1607098433,"output":"equest, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSu"},{"event":"cmd_output","timestamp":1607098433,"output":"bInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:53.972 [info] Periodic from module Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098433,"output":"Blocks.STMHandler.InitializingState with name Elixir.Ppl.PplBlocks.STMHandler.InitializingState :: p"},{"event":"cmd_output","timestamp":1607098433,"output":"eriod: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-InitializingState\"]}"},{"event":"cmd_output","timestamp":1607098433,"output":", recurring args: %{allowed_states: [\"initializing\", \"waiting\", \"done\"], cooling_time_sec: 0, initia"},{"event":"cmd_output","timestamp":1607098433,"output":"l_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"initializing\", publisher_cb: :skip, repo: P"},{"event":"cmd_output","timestamp":1607098433,"output":"pl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :pp"},{"event":"cmd_output","timestamp":1607098433,"output":"l_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098433,"output":"3:53.972 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.WaitingState with name Elixir."},{"event":"cmd_output","timestamp":1607098433,"output":"Ppl.PplBlocks.STMHandler.WaitingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Pp"},{"event":"cmd_output","timestamp":1607098433,"output":"l-PplBlocks-STMHandler-WaitingState\"]}, recurring args: %{allowed_states: [\"waiting\", \"running\", \"do"},{"event":"cmd_output","timestamp":1607098433,"output":"ne\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"waiting\", "},{"event":"cmd_output","timestamp":1607098433,"output":"publisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>, repo: Ppl.Ecto"},{"event":"cmd_output","timestamp":1607098433,"output":"Repo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :"},{"event":"cmd_output","timestamp":1607098433,"output":"block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:53.97"},{"event":"cmd_output","timestamp":1607098433,"output":"3 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.RunningState with name Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098433,"output":"Blocks.STMHandler.RunningState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBl"},{"event":"cmd_output","timestamp":1607098433,"output":"ocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], "},{"event":"cmd_output","timestamp":1607098433,"output":"cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"running\", publi"},{"event":"cmd_output","timestamp":1607098433,"output":"sher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo"},{"event":"cmd_output","timestamp":1607098433,"output":", returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :bloc"},{"event":"cmd_output","timestamp":1607098433,"output":"k_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098433,"output":"3:53.973 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.StoppingState with name Elixir"},{"event":"cmd_output","timestamp":1607098433,"output":".Ppl.PplBlocks.STMHandler.StoppingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\""},{"event":"cmd_output","timestamp":1607098433,"output":"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], c"},{"event":"cmd_output","timestamp":1607098433,"output":"ooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"stopping\", publi"},{"event":"cmd_output","timestamp":1607098433,"output":"sher_cb: #Function<0.104215991/1 in Ppl.PplBlocks.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRe"},{"event":"cmd_output","timestamp":1607098433,"output":"po, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :bl"},{"event":"cmd_output","timestamp":1607098433,"output":"ock_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098433,"output":":13:53.974 [info] Periodic from module Elixir.Block.Blocks.STMHandler.InitializingState with name E"},{"event":"cmd_output","timestamp":1607098433,"output":"lixir.Block.Blocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_"},{"event":"cmd_output","timestamp":1607098433,"output":"up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"running\", \""},{"event":"cmd_output","timestamp":1607098433,"output":"done\"], cooling_time_sec: 0, initial_query: Block.Blocks.Model.Blocks, observed_state: \"initializing"},{"event":"cmd_output","timestamp":1607098433,"output":"\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :sta"},{"event":"cmd_output","timestamp":1607098433,"output":"te, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098433,"output":"2m\n16:13:53.974 [info] Periodic from module Elixir.Block.Blocks.STMHandler.RunningState with name "},{"event":"cmd_output","timestamp":1607098433,"output":"Elixir.Block.Blocks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\","},{"event":"cmd_output","timestamp":1607098433,"output":" [\"Block-Blocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\""},{"event":"cmd_output","timestamp":1607098433,"output":", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"running\""},{"event":"cmd_output","timestamp":1607098433,"output":", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :stat"},{"event":"cmd_output","timestamp":1607098433,"output":"e, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098433,"output":"m\n16:13:53.975 [info] Periodic from module Elixir.Block.Blocks.STMHandler.StoppingState with name "},{"event":"cmd_output","timestamp":1607098433,"output":"Elixir.Block.Blocks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\""},{"event":"cmd_output","timestamp":1607098433,"output":", [\"Block-Blocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"]"},{"event":"cmd_output","timestamp":1607098433,"output":", cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"stopping\", publis"},{"event":"cmd_output","timestamp":1607098433,"output":"her_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :reco"},{"event":"cmd_output","timestamp":1607098433,"output":"very_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13"},{"event":"cmd_output","timestamp":1607098433,"output":":53.976 [info] Periodic from module Elixir.Block.Tasks.STMHandler.PendingState with name Elixir.Blo"},{"event":"cmd_output","timestamp":1607098433,"output":"ck.Tasks.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Ta"},{"event":"cmd_output","timestamp":1607098433,"output":"sks-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_"},{"event":"cmd_output","timestamp":1607098433,"output":"sec: 0, initial_query: Block.Tasks.Model.Tasks, observed_state: \"pending\", publisher_cb: :skip, repo"},{"event":"cmd_output","timestamp":1607098433,"output":": Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_"},{"event":"cmd_output","timestamp":1607098433,"output":"id, :build_request_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:5"},{"event":"cmd_output","timestamp":1607098433,"output":"3.976 [info] Periodic from module Elixir.Block.Tasks.STMHandler.RunningState with name Elixir.Block"},{"event":"cmd_output","timestamp":1607098433,"output":".Tasks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Task"},{"event":"cmd_output","timestamp":1607098433,"output":"s-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], coo"},{"event":"cmd_output","timestamp":1607098433,"output":"ling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"running\", publisher_cb: "},{"event":"cmd_output","timestamp":1607098433,"output":":skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_cou"},{"event":"cmd_output","timestamp":1607098433,"output":"nt, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:53.977 [i"},{"event":"cmd_output","timestamp":1607098433,"output":"nfo] Periodic from module Elixir.Block.Tasks.STMHandler.StoppingState with name Elixir.Block.Tasks."},{"event":"cmd_output","timestamp":1607098433,"output":"STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMH"},{"event":"cmd_output","timestamp":1607098433,"output":"andler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -"},{"event":"cmd_output","timestamp":1607098433,"output":"2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"stopping\", publisher_cb: :skip, repo: Bl"},{"event":"cmd_output","timestamp":1607098433,"output":"ock.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id],"},{"event":"cmd_output","timestamp":1607098434,"output":" schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:13:54.079 [info] ppl_id: 0"},{"event":"cmd_output","timestamp":1607098434,"output":"28d68af-02c5-458d-969c-7ba8d444d01d, type: PplRequests, event: persisted source_args for pipeline: 0"},{"event":"cmd_output","timestamp":1607098434,"output":"28d68af-02c5-458d-969c-7ba8d444d01d, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_"},{"event":"cmd_output","timestamp":1607098434,"output":"source/2(L89), \n\u001b[0m\u001b[22m\n16:13:54.083 [info] ppl_id: 028d68af-02c5-458d-969c-7ba8d444d01d, type:"},{"event":"cmd_output","timestamp":1607098434,"output":" PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM."},{"event":"cmd_output","timestamp":1607098434,"output":"Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:54.100 [info] ppl_id: 028d68af-02c5-458d-969c-7ba8"},{"event":"cmd_output","timestamp":1607098434,"output":"d444d01d, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098434,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:54.120 [info] ppl_id: 028d68af-"},{"event":"cmd_output","timestamp":1607098434,"output":"02c5-458d-969c-7ba8d444d01d, type: PplRequests, event: persisted definition for request with request"},{"event":"cmd_output","timestamp":1607098434,"output":"_token: b4405cae-364b-11eb-ad35-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQuerie"},{"event":"cmd_output","timestamp":1607098434,"output":"s.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:13:54.123 [info] Queue persisted: {:ok, %Ppl.Queues.Mod"},{"event":"cmd_output","timestamp":1607098434,"output":"el.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:13:54.12"},{"event":"cmd_output","timestamp":1607098434,"output":"2600], name: \"master-.semaphore/semaphore.yml\", organization_id: \"d19506fe-3af8-4424-bb7a-0257b181e2"},{"event":"cmd_output","timestamp":1607098434,"output":"26\", project_id: \"8854c50e-ca6f-4ba5-bc81-1a05bdfbaa1f\", queue_id: \"bcc28f01-9566-41e2-a0a0-370dc17c"},{"event":"cmd_output","timestamp":1607098434,"output":"14d5\", scope: \"project\", updated_at: ~N[2020-12-04 16:13:54.122607], user_generated: false}}\n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098434,"output":"22m\n16:13:54.130 [info] ppl_id: not_available, event: created, origin: Elixir.Ppl.PplSubInits.STMH"},{"event":"cmd_output","timestamp":1607098434,"output":"andler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:54.130 [info] event: created, origin: E"},{"event":"cmd_output","timestamp":1607098434,"output":"lixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:54.130 [info] "},{"event":"cmd_output","timestamp":1607098434,"output":" ppl_id: 028d68af-02c5-458d-969c-7ba8d444d01d, type: PplBlocks, block_index: 0, state: initializing,"},{"event":"cmd_output","timestamp":1607098434,"output":" event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_o"},{"event":"cmd_output","timestamp":1607098434,"output":"k?/1(L105), \n\u001b[0m\u001b[22m\n16:13:54.130 [info] ppl_id: 028d68af-02c5-458d-969c-7ba8d444d01d, type: Pp"},{"event":"cmd_output","timestamp":1607098434,"output":"lBlocks, block_index: 1, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl."},{"event":"cmd_output","timestamp":1607098434,"output":"PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:54.130 [info] ppl_id: 0"},{"event":"cmd_output","timestamp":1607098434,"output":"28d68af-02c5-458d-969c-7ba8d444d01d, type: PplBlocks, block_index: 2, state: initializing, event: cr"},{"event":"cmd_output","timestamp":1607098434,"output":"eated, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105)"},{"event":"cmd_output","timestamp":1607098434,"output":", \n\u001b[0m\u001b[22m\n16:13:54.130 [info] ppl_id: 028d68af-02c5-458d-969c-7ba8d444d01d, type: PplBlocks, b"},{"event":"cmd_output","timestamp":1607098434,"output":"lock_index: 3, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInit"},{"event":"cmd_output","timestamp":1607098434,"output":"s.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:13:54.130 [info] ppl_id: 028d68af-02"},{"event":"cmd_output","timestamp":1607098434,"output":"c5-458d-969c-7ba8d444d01d, type: PplBlocks, block_index: 4, state: initializing, event: created, rec"},{"event":"cmd_output","timestamp":1607098434,"output":"overy_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098434,"output":"22m\n16:13:54.133 [info] ppl_id: 028d68af-02c5-458d-969c-7ba8d444d01d, type: PplSubInits, state: do"},{"event":"cmd_output","timestamp":1607098434,"output":"ne, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_st"},{"event":"cmd_output","timestamp":1607098434,"output":"ate_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:54.141 [info] ppl_id: 028d68af-02c5-458d-969c-7ba8d444d01d, t"},{"event":"cmd_output","timestamp":1607098434,"output":"ype: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl"},{"event":"cmd_output","timestamp":1607098434,"output":".log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:54.141 [info] ppl_id: 028d68af-02c5-458d-969c-7ba8d444"},{"event":"cmd_output","timestamp":1607098434,"output":"d01d, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098434,"output":"igin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:54.148 [info] ppl_id: 028d"},{"event":"cmd_output","timestamp":1607098434,"output":"68af-02c5-458d-969c-7ba8d444d01d, type: PplBlocks, block_index: 1, state: waiting, event: exit_sched"},{"event":"cmd_output","timestamp":1607098434,"output":"uling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13"},{"event":"cmd_output","timestamp":1607098434,"output":":54.148 [info] ppl_id: 028d68af-02c5-458d-969c-7ba8d444d01d, type: Ppls, state: queuing, event: exi"},{"event":"cmd_output","timestamp":1607098434,"output":"t_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098434,"output":"\n16:13:54.155 [info] ppl_id: 028d68af-02c5-458d-969c-7ba8d444d01d, type: PplBlocks, block_index: 2"},{"event":"cmd_output","timestamp":1607098434,"output":", state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_stat"},{"event":"cmd_output","timestamp":1607098434,"output":"e_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:54.155 [info] ppl_id: 028d68af-02c5-458d-969c-7ba8d444d01d, typ"},{"event":"cmd_output","timestamp":1607098434,"output":"e: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.l"},{"event":"cmd_output","timestamp":1607098434,"output":"og_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:54.159 [info] ppl_id: 028d68af-02c5-458d-969c-7ba8d444d0"},{"event":"cmd_output","timestamp":1607098434,"output":"1d, type: PplBlocks, block_index: 3, state: waiting, event: exit_scheduling, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098434,"output":"in: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:54.160 [info] PplBlocks Wait"},{"event":"cmd_output","timestamp":1607098434,"output":"ingState STM is scheduling block 2 from pipeline: \"028d68af-02c5-458d-969c-7ba8d444d01d\"\n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098434,"output":"\n16:13:54.164 [info] ppl_id: 028d68af-02c5-458d-969c-7ba8d444d01d, type: PplBlocks, block_index: 4,"},{"event":"cmd_output","timestamp":1607098434,"output":" state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state"},{"event":"cmd_output","timestamp":1607098434,"output":"_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:54.168 [info] block_id: 129354f2-01ca-4749-837d-f7363ac862de, ty"},{"event":"cmd_output","timestamp":1607098434,"output":"pe: BlockRequests, event: persisted block run request from ppl 028d68af-02c5-458d-969c-7ba8d444d01d "},{"event":"cmd_output","timestamp":1607098434,"output":"for block 2, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), "},{"event":"cmd_output","timestamp":1607098434,"output":"\n\u001b[0m\u001b[22m\n16:13:54.172 [info] block_id: 129354f2-01ca-4749-837d-f7363ac862de, type: Blocks, stat"},{"event":"cmd_output","timestamp":1607098434,"output":"e: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQue"},{"event":"cmd_output","timestamp":1607098434,"output":"ries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:13:54.175 [info] Block 2 of pipeline with id: 028d68af-02c5-458"},{"event":"cmd_output","timestamp":1607098434,"output":"d-969c-7ba8d444d01d scheduled in block service with id: : \"129354f2-01ca-4749-837d-f7363ac862de\"\n\u001b["},{"event":"cmd_output","timestamp":1607098434,"output":"0m\u001b[22m\n16:13:54.180 [info] ppl_id: 028d68af-02c5-458d-969c-7ba8d444d01d, type: PplBlocks, block_i"},{"event":"cmd_output","timestamp":1607098434,"output":"ndex: 2, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.l"},{"event":"cmd_output","timestamp":1607098434,"output":"og_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:54.187 [info] block_id: 129354f2-01ca-4749-837d-f7363ac8"},{"event":"cmd_output","timestamp":1607098434,"output":"62de, type: BlockRequests, event: persisted build and sub_ppl details for block_request: 129354f2-01"},{"event":"cmd_output","timestamp":1607098434,"output":"ca-4749-837d-f7363ac862de, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_buil"},{"event":"cmd_output","timestamp":1607098434,"output":"d/2(L41), \n\u001b[0m\u001b[22m\n16:13:54.187 [info] PplBlocks WaitingState STM is scheduling block 1 from pi"},{"event":"cmd_output","timestamp":1607098434,"output":"peline: \"028d68af-02c5-458d-969c-7ba8d444d01d\"\n\u001b[0m\u001b[22m\n16:13:54.192 [info] block_id: 129354f2-0"},{"event":"cmd_output","timestamp":1607098434,"output":"1ca-4749-837d-f7363ac862de, type: Tasks, state: pending, event: created, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098434,"output":"Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:13:54.194 [info] "},{"event":"cmd_output","timestamp":1607098434,"output":"block_id: e50c1f0e-e9dc-46e9-8377-1108130cd68a, type: BlockRequests, event: persisted block run requ"},{"event":"cmd_output","timestamp":1607098434,"output":"est from ppl 028d68af-02c5-458d-969c-7ba8d444d01d for block 1, origin: Elixir.Block.BlockRequests.Mo"},{"event":"cmd_output","timestamp":1607098434,"output":"del.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:13:54.196 [info] block_id: e50c1f"},{"event":"cmd_output","timestamp":1607098434,"output":"0e-e9dc-46e9-8377-1108130cd68a, type: Blocks, state: initializing, event: initializing, recovery_cou"},{"event":"cmd_output","timestamp":1607098434,"output":"nt: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:13:54.198 [inf"},{"event":"cmd_output","timestamp":1607098434,"output":"o] block_id: 129354f2-01ca-4749-837d-f7363ac862de, type: Blocks, state: running, event: exit_schedu"},{"event":"cmd_output","timestamp":1607098434,"output":"ling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:"},{"event":"cmd_output","timestamp":1607098434,"output":"54.199 [info] Block 1 of pipeline with id: 028d68af-02c5-458d-969c-7ba8d444d01d scheduled in block "},{"event":"cmd_output","timestamp":1607098434,"output":"service with id: : \"e50c1f0e-e9dc-46e9-8377-1108130cd68a\"\n\u001b[0m\u001b[22m\n16:13:54.203 [info] ppl_id: 0"},{"event":"cmd_output","timestamp":1607098434,"output":"28d68af-02c5-458d-969c-7ba8d444d01d, type: PplBlocks, block_index: 1, state: running, event: exit_sc"},{"event":"cmd_output","timestamp":1607098434,"output":"heduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098434,"output":":13:54.207 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"028d68af-02c5-45"},{"event":"cmd_output","timestamp":1607098434,"output":"8d-969c-7ba8d444d01d\"\n\u001b[0m\u001b[22m\n16:13:54.207 [info] block_id: e50c1f0e-e9dc-46e9-8377-1108130cd68"},{"event":"cmd_output","timestamp":1607098434,"output":"a, type: BlockRequests, event: persisted build and sub_ppl details for block_request: e50c1f0e-e9dc-"},{"event":"cmd_output","timestamp":1607098434,"output":"46e9-8377-1108130cd68a, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2"},{"event":"cmd_output","timestamp":1607098434,"output":"(L41), \n\u001b[0m\u001b[22m\n16:13:54.211 [info] block_id: e50c1f0e-e9dc-46e9-8377-1108130cd68a, type: Tasks"},{"event":"cmd_output","timestamp":1607098434,"output":", state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.Initiali"},{"event":"cmd_output","timestamp":1607098434,"output":"zingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:13:54.214 [info] block_id: e50c1f0e-e9dc-46e9-8377-11081"},{"event":"cmd_output","timestamp":1607098434,"output":"30cd68a, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loo"},{"event":"cmd_output","timestamp":1607098434,"output":"per.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:54.218 [info] block_id: 8adb7f77-9605-4a15"},{"event":"cmd_output","timestamp":1607098434,"output":"-a010-5f50393eddf0, type: BlockRequests, event: persisted block run request from ppl 028d68af-02c5-4"},{"event":"cmd_output","timestamp":1607098434,"output":"58d-969c-7ba8d444d01d for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.pro"},{"event":"cmd_output","timestamp":1607098434,"output":"cess_response/4(L35), \n\u001b[0m\u001b[22m\n16:13:54.221 [info] block_id: 8adb7f77-9605-4a15-a010-5f50393edd"},{"event":"cmd_output","timestamp":1607098434,"output":"f0, type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block."},{"event":"cmd_output","timestamp":1607098434,"output":"Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:13:54.223 [info] block_id: 129354f2-01ca-"},{"event":"cmd_output","timestamp":1607098434,"output":"4749-837d-f7363ac862de, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098434,"output":"in: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:54.224 [info] Block 0 of pip"},{"event":"cmd_output","timestamp":1607098434,"output":"eline with id: 028d68af-02c5-458d-969c-7ba8d444d01d scheduled in block service with id: : \"8adb7f77-"},{"event":"cmd_output","timestamp":1607098434,"output":"9605-4a15-a010-5f50393eddf0\"\n\u001b[0m\u001b[22m\n16:13:54.227 [info] ppl_id: 028d68af-02c5-458d-969c-7ba8d4"},{"event":"cmd_output","timestamp":1607098434,"output":"44d01d, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098434,"output":"origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:54.230 [info] block_id: "},{"event":"cmd_output","timestamp":1607098434,"output":"8adb7f77-9605-4a15-a010-5f50393eddf0, type: BlockRequests, event: persisted build and sub_ppl detail"},{"event":"cmd_output","timestamp":1607098434,"output":"s for block_request: 8adb7f77-9605-4a15-a010-5f50393eddf0, origin: Elixir.Block.BlockRequests.Model."},{"event":"cmd_output","timestamp":1607098434,"output":"BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:13:54.232 [info] block_id: 8adb7f77-9605-"},{"event":"cmd_output","timestamp":1607098434,"output":"4a15-a010-5f50393eddf0, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098434,"output":"ir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:13:54.237 [info] bloc"},{"event":"cmd_output","timestamp":1607098434,"output":"k_id: 8adb7f77-9605-4a15-a010-5f50393eddf0, type: Blocks, state: running, event: exit_scheduling, re"},{"event":"cmd_output","timestamp":1607098434,"output":"covery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:54.246 ["},{"event":"cmd_output","timestamp":1607098434,"output":"info] block_id: e50c1f0e-e9dc-46e9-8377-1108130cd68a, type: Tasks, state: running, event: exit_sche"},{"event":"cmd_output","timestamp":1607098434,"output":"duling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098434,"output":"3:54.256 [info] block_id: 8adb7f77-9605-4a15-a010-5f50393eddf0, type: Tasks, state: running, event:"},{"event":"cmd_output","timestamp":1607098436,"output":" exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098436,"output":"[22m\n16:13:56.284 [info] block_id: 129354f2-01ca-4749-837d-f7363ac862de, type: Tasks, state: done,"},{"event":"cmd_output","timestamp":1607098436,"output":" event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), "},{"event":"cmd_output","timestamp":1607098436,"output":"\n\u001b[0m\u001b[22m\n16:13:56.288 [info] block_id: 129354f2-01ca-4749-837d-f7363ac862de, type: Blocks, stat"},{"event":"cmd_output","timestamp":1607098436,"output":"e: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/"},{"event":"cmd_output","timestamp":1607098436,"output":"1(L90), \n\u001b[0m\u001b[22m\n16:13:56.300 [info] ppl_id: 028d68af-02c5-458d-969c-7ba8d444d01d, block_id: 12"},{"event":"cmd_output","timestamp":1607098436,"output":"9354f2-01ca-4749-837d-f7363ac862de, type: PplBlocks, block_index: 2, state: done, result: failed, ev"},{"event":"cmd_output","timestamp":1607098436,"output":"ent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b"},{"event":"cmd_output","timestamp":1607098436,"output":"[0m\u001b[22m\n16:13:56.990 [info] ppl_id: 028d68af-02c5-458d-969c-7ba8d444d01d, block_id: 8adb7f77-9605"},{"event":"cmd_output","timestamp":1607098436,"output":"-4a15-a010-5f50393eddf0, type: PplBlocks, block_index: 0, state: stopping, event: exit_scheduling, r"},{"event":"cmd_output","timestamp":1607098436,"output":"ecovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:56.994 "},{"event":"cmd_output","timestamp":1607098436,"output":"[info] block_id: 8adb7f77-9605-4a15-a010-5f50393eddf0, type: Blocks, state: stopping, event: exit_s"},{"event":"cmd_output","timestamp":1607098437,"output":"cheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098437,"output":"6:13:57.000 [info] block_id: 8adb7f77-9605-4a15-a010-5f50393eddf0, type: Tasks, state: stopping, ev"},{"event":"cmd_output","timestamp":1607098437,"output":"ent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b"},{"event":"cmd_output","timestamp":1607098437,"output":"[0m\u001b[22m\n16:13:57.998 [info] ppl_id: 028d68af-02c5-458d-969c-7ba8d444d01d, block_id: e50c1f0e-e9dc"},{"event":"cmd_output","timestamp":1607098437,"output":"-46e9-8377-1108130cd68a, type: PplBlocks, block_index: 1, state: stopping, event: exit_scheduling, r"},{"event":"cmd_output","timestamp":1607098438,"output":"ecovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:58.004 "},{"event":"cmd_output","timestamp":1607098438,"output":"[info] block_id: e50c1f0e-e9dc-46e9-8377-1108130cd68a, type: Blocks, state: stopping, event: exit_s"},{"event":"cmd_output","timestamp":1607098438,"output":"cheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098438,"output":"6:13:58.018 [info] block_id: e50c1f0e-e9dc-46e9-8377-1108130cd68a, type: Tasks, state: stopping, ev"},{"event":"cmd_output","timestamp":1607098438,"output":"ent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b"},{"event":"cmd_output","timestamp":1607098439,"output":"[0m\u001b[22m\n16:13:59.327 [info] block_id: 8adb7f77-9605-4a15-a010-5f50393eddf0, type: Tasks, state: d"},{"event":"cmd_output","timestamp":1607098439,"output":"one, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L9"},{"event":"cmd_output","timestamp":1607098439,"output":"0), \n\u001b[0m\u001b[22m\n16:13:59.331 [info] block_id: 8adb7f77-9605-4a15-a010-5f50393eddf0, type: Blocks, "},{"event":"cmd_output","timestamp":1607098439,"output":"state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_cha"},{"event":"cmd_output","timestamp":1607098439,"output":"nge/1(L90), \n\u001b[0m\u001b[22m\n16:13:59.337 [info] ppl_id: 028d68af-02c5-458d-969c-7ba8d444d01d, block_id"},{"event":"cmd_output","timestamp":1607098439,"output":": 8adb7f77-9605-4a15-a010-5f50393eddf0, type: PplBlocks, block_index: 0, state: done, result: stoppe"},{"event":"cmd_output","timestamp":1607098439,"output":"d, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90)"},{"event":"cmd_output","timestamp":1607098439,"output":", \n\u001b[0m\u001b[22m\n16:13:59.435 [info] block_id: e50c1f0e-e9dc-46e9-8377-1108130cd68a, type: Tasks, sta"},{"event":"cmd_output","timestamp":1607098439,"output":"te: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change"},{"event":"cmd_output","timestamp":1607098439,"output":"/1(L90), \n\u001b[0m\u001b[22m\n16:13:59.442 [info] block_id: e50c1f0e-e9dc-46e9-8377-1108130cd68a, type: Blo"},{"event":"cmd_output","timestamp":1607098439,"output":"cks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_stat"},{"event":"cmd_output","timestamp":1607098439,"output":"e_change/1(L90), \n\u001b[0m\u001b[22m\n16:13:59.447 [info] ppl_id: 028d68af-02c5-458d-969c-7ba8d444d01d, blo"},{"event":"cmd_output","timestamp":1607098439,"output":"ck_id: e50c1f0e-e9dc-46e9-8377-1108130cd68a, type: PplBlocks, block_index: 1, state: done, result: s"},{"event":"cmd_output","timestamp":1607098439,"output":"topped, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1"},{"event":"cmd_output","timestamp":1607098439,"output":"(L90), \n\u001b[0m\u001b[22m\n16:13:59.995 [info] PplBlocks WaitingState STM is scheduling block 3 from pipel"},{"event":"cmd_output","timestamp":1607098441,"output":"ine: \"028d68af-02c5-458d-969c-7ba8d444d01d\"\n\u001b[0m\u001b[22m\n16:14:01.004 [info] ppl_id: 028d68af-02c5-4"},{"event":"cmd_output","timestamp":1607098441,"output":"58d-969c-7ba8d444d01d, type: PplBlocks, block_index: 3, state: done, result: canceled, event: exit_s"},{"event":"cmd_output","timestamp":1607098442,"output":"cheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098442,"output":"6:14:02.008 [info] PplBlocks WaitingState STM is scheduling block 4 from pipeline: \"028d68af-02c5-4"},{"event":"cmd_output","timestamp":1607098443,"output":"58d-969c-7ba8d444d01d\"\n\u001b[0m\u001b[22m\n16:14:03.022 [info] ppl_id: 028d68af-02c5-458d-969c-7ba8d444d01d"},{"event":"cmd_output","timestamp":1607098443,"output":", type: PplBlocks, block_index: 4, state: done, result: canceled, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098443,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:03.037 [info] p"},{"event":"cmd_output","timestamp":1607098443,"output":"pl_id: 028d68af-02c5-458d-969c-7ba8d444d01d, type: Ppls, state: done, result: failed, event: exit_sc"},{"event":"cmd_output","timestamp":1607098443,"output":"heduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r *"},{"event":"cmd_output","timestamp":1607098443,"output":" test Free topology failing pipeline with fail_fast = stop (9312.3ms)\u001b[0m\n\nPpl.E2E.ChangeIn.Test\n"},{"event":"cmd_output","timestamp":1607098443,"output":" * test change_in uses proper branch as base on PRs to non-default branch\u001b[22m\n16:14:03.257 [info]"},{"event":"cmd_output","timestamp":1607098443,"output":" Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.STMHan"},{"event":"cmd_output","timestamp":1607098443,"output":"dler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandle"},{"event":"cmd_output","timestamp":1607098443,"output":"r-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], cooli"},{"event":"cmd_output","timestamp":1607098443,"output":"ng_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher_cb: #F"},{"event":"cmd_output","timestamp":1607098443,"output":"unction<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, returnin"},{"event":"cmd_output","timestamp":1607098443,"output":"g: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Pp"},{"event":"cmd_output","timestamp":1607098443,"output":"ls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:03.258 [info] Periodic from module Elixir."},{"event":"cmd_output","timestamp":1607098443,"output":"Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 100 ms"},{"event":"cmd_output","timestamp":1607098443,"output":", metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args: %{all"},{"event":"cmd_output","timestamp":1607098443,"output":"owed_states: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls"},{"event":"cmd_output","timestamp":1607098443,"output":".Model.Ppls, observed_state: \"pending\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler.P"},{"event":"cmd_output","timestamp":1607098443,"output":"endingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :"},{"event":"cmd_output","timestamp":1607098443,"output":"result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}"},{"event":"cmd_output","timestamp":1607098443,"output":"\n\u001b[0m\u001b[22m\n16:14:03.258 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.QueuingState with "},{"event":"cmd_output","timestamp":1607098443,"output":"name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\""},{"event":"cmd_output","timestamp":1607098443,"output":", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{allowed_states: [\"queuing\", \"running\", \"d"},{"event":"cmd_output","timestamp":1607098443,"output":"one\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", publishe"},{"event":"cmd_output","timestamp":1607098443,"output":"r_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, retur"},{"event":"cmd_output","timestamp":1607098443,"output":"ning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl"},{"event":"cmd_output","timestamp":1607098443,"output":".Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:03.258 [info] Periodic from module Elix"},{"event":"cmd_output","timestamp":1607098443,"output":"ir.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHandler.RunningState :: period: 100"},{"event":"cmd_output","timestamp":1607098443,"output":" ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring args: %{"},{"event":"cmd_output","timestamp":1607098443,"output":"allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model"},{"event":"cmd_output","timestamp":1607098443,"output":".Ppls, observed_state: \"running\", publisher_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler.Runnin"},{"event":"cmd_output","timestamp":1607098443,"output":"gState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :resul"},{"event":"cmd_output","timestamp":1607098443,"output":"t, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0"},{"event":"cmd_output","timestamp":1607098443,"output":"m\u001b[22m\n16:14:03.259 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.StoppingState with name"},{"event":"cmd_output","timestamp":1607098443,"output":" Elixir.Ppl.Ppls.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", ["},{"event":"cmd_output","timestamp":1607098443,"output":"\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooli"},{"event":"cmd_output","timestamp":1607098443,"output":"ng_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"stopping\", publisher_cb: #Func"},{"event":"cmd_output","timestamp":1607098443,"output":"tion<0.71803493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id,"},{"event":"cmd_output","timestamp":1607098443,"output":" :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model"},{"event":"cmd_output","timestamp":1607098443,"output":".Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:03.259 [info] Periodic from module Elixir.Ppl.PplS"},{"event":"cmd_output","timestamp":1607098443,"output":"ubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: "},{"event":"cmd_output","timestamp":1607098443,"output":"100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurrin"},{"event":"cmd_output","timestamp":1607098443,"output":"g args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits."},{"event":"cmd_output","timestamp":1607098443,"output":"Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:"},{"event":"cmd_output","timestamp":1607098443,"output":"id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubI"},{"event":"cmd_output","timestamp":1607098443,"output":"nits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:03.260 [info] Periodic from modul"},{"event":"cmd_output","timestamp":1607098443,"output":"e Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler.Fetchi"},{"event":"cmd_output","timestamp":1607098443,"output":"ngState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-Fetchi"},{"event":"cmd_output","timestamp":1607098443,"output":"ngState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"done\"], cooling_time_"},{"event":"cmd_output","timestamp":1607098443,"output":"sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fetching\", publisher_cb:"},{"event":"cmd_output","timestamp":1607098443,"output":" :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :reco"},{"event":"cmd_output","timestamp":1607098443,"output":"very_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098443,"output":"\n16:14:03.260 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CompilationState with n"},{"event":"cmd_output","timestamp":1607098443,"output":"ame Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 100 ms, metric_name: {\"Ppl.beholde"},{"event":"cmd_output","timestamp":1607098443,"output":"r-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurring args: %{allowed_states: [\"re"},{"event":"cmd_output","timestamp":1607098443,"output":"gular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInit"},{"event":"cmd_output","timestamp":1607098443,"output":"s.Model.PplSubInits, observed_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returni"},{"event":"cmd_output","timestamp":1607098443,"output":"ng: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.P"},{"event":"cmd_output","timestamp":1607098443,"output":"plSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:03.261 [info] Periodic from"},{"event":"cmd_output","timestamp":1607098443,"output":" module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHandl"},{"event":"cmd_output","timestamp":1607098443,"output":"er.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHa"},{"event":"cmd_output","timestamp":1607098443,"output":"ndler-RegularInitState\"]}, recurring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, initial_"},{"event":"cmd_output","timestamp":1607098443,"output":"query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_init\", publisher_cb: :skip, repo:"},{"event":"cmd_output","timestamp":1607098443,"output":" Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :"},{"event":"cmd_output","timestamp":1607098443,"output":"ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:03.262"},{"event":"cmd_output","timestamp":1607098443,"output":" [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.InitializingState with name Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098443,"output":".PplBlocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"P"},{"event":"cmd_output","timestamp":1607098443,"output":"pl-PplBlocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"wa"},{"event":"cmd_output","timestamp":1607098443,"output":"iting\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: "},{"event":"cmd_output","timestamp":1607098443,"output":"\"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updat"},{"event":"cmd_output","timestamp":1607098443,"output":"ed_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBloc"},{"event":"cmd_output","timestamp":1607098443,"output":"ks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:03.262 [info] Periodic from module Elixir.Ppl.PplBloc"},{"event":"cmd_output","timestamp":1607098443,"output":"ks.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler.WaitingState :: period: 1000 ms"},{"event":"cmd_output","timestamp":1607098443,"output":", metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurring args: "},{"event":"cmd_output","timestamp":1607098443,"output":"%{allowed_states: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks."},{"event":"cmd_output","timestamp":1607098443,"output":"Model.PplBlocks, observed_state: \"waiting\", publisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.STM"},{"event":"cmd_output","timestamp":1607098443,"output":"Handler.WaitingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, "},{"event":"cmd_output","timestamp":1607098443,"output":":state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, tas"},{"event":"cmd_output","timestamp":1607098443,"output":"k_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:03.263 [info] Periodic from module Elixir.Ppl.PplBlocks.STMH"},{"event":"cmd_output","timestamp":1607098443,"output":"andler.RunningState with name Elixir.Ppl.PplBlocks.STMHandler.RunningState :: period: 1000 ms, metri"},{"event":"cmd_output","timestamp":1607098443,"output":"c_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, recurring args: %{allow"},{"event":"cmd_output","timestamp":1607098443,"output":"ed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model"},{"event":"cmd_output","timestamp":1607098443,"output":".PplBlocks, observed_state: \"running\", publisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHand"},{"event":"cmd_output","timestamp":1607098443,"output":"ler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :sta"},{"event":"cmd_output","timestamp":1607098443,"output":"te, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBloc"},{"event":"cmd_output","timestamp":1607098443,"output":"ks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:03.263 [info] Periodic from module Elixir.Ppl.PplBloc"},{"event":"cmd_output","timestamp":1607098443,"output":"ks.STMHandler.StoppingState with name Elixir.Ppl.PplBlocks.STMHandler.StoppingState :: period: 1000 "},{"event":"cmd_output","timestamp":1607098443,"output":"ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurring arg"},{"event":"cmd_output","timestamp":1607098443,"output":"s: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model."},{"event":"cmd_output","timestamp":1607098443,"output":"PplBlocks, observed_state: \"stopping\", publisher_cb: #Function<0.104215991/1 in Ppl.PplBlocks.STMHan"},{"event":"cmd_output","timestamp":1607098443,"output":"dler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :s"},{"event":"cmd_output","timestamp":1607098443,"output":"tate, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBl"},{"event":"cmd_output","timestamp":1607098443,"output":"ocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:03.263 [info] Periodic from module Elixir.Block.Blo"},{"event":"cmd_output","timestamp":1607098443,"output":"cks.STMHandler.InitializingState with name Elixir.Block.Blocks.STMHandler.InitializingState :: perio"},{"event":"cmd_output","timestamp":1607098443,"output":"d: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, rec"},{"event":"cmd_output","timestamp":1607098443,"output":"urring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Blocks"},{"event":"cmd_output","timestamp":1607098443,"output":".Model.Blocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Block.EctoRepo, returning:"},{"event":"cmd_output","timestamp":1607098443,"output":" [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Mo"},{"event":"cmd_output","timestamp":1607098443,"output":"del.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:03.264 [info] Periodic from module Elixir.Blo"},{"event":"cmd_output","timestamp":1607098443,"output":"ck.Blocks.STMHandler.RunningState with name Elixir.Block.Blocks.STMHandler.RunningState :: period: 1"},{"event":"cmd_output","timestamp":1607098443,"output":"00 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-RunningState\"]}, recurring ar"},{"event":"cmd_output","timestamp":1607098443,"output":"gs: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Bl"},{"event":"cmd_output","timestamp":1607098443,"output":"ocks.Model.Blocks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: "},{"event":"cmd_output","timestamp":1607098443,"output":"[:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Mod"},{"event":"cmd_output","timestamp":1607098443,"output":"el.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:03.264 [info] Periodic from module Elixir.Bloc"},{"event":"cmd_output","timestamp":1607098443,"output":"k.Blocks.STMHandler.StoppingState with name Elixir.Block.Blocks.STMHandler.StoppingState :: period: "},{"event":"cmd_output","timestamp":1607098443,"output":"100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-StoppingState\"]}, recurring "},{"event":"cmd_output","timestamp":1607098443,"output":"args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Mode"},{"event":"cmd_output","timestamp":1607098443,"output":"l.Blocks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :t"},{"event":"cmd_output","timestamp":1607098443,"output":"erminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Block"},{"event":"cmd_output","timestamp":1607098443,"output":"s, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:03.264 [info] Periodic from module Elixir.Block.Tasks."},{"event":"cmd_output","timestamp":1607098443,"output":"STMHandler.PendingState with name Elixir.Block.Tasks.STMHandler.PendingState :: period: 100 ms, metr"},{"event":"cmd_output","timestamp":1607098443,"output":"ic_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingState\"]}, recurring args: %{allowe"},{"event":"cmd_output","timestamp":1607098443,"output":"d_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Tasks.Model.Tasks, observed"},{"event":"cmd_output","timestamp":1607098443,"output":"_state: \"pending\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :"},{"event":"cmd_output","timestamp":1607098443,"output":"updated_at, :state, :recovery_count, :block_id, :build_request_id], schema: Block.Tasks.Model.Tasks,"},{"event":"cmd_output","timestamp":1607098443,"output":" task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:03.265 [info] Periodic from module Elixir.Block.Tasks.ST"},{"event":"cmd_output","timestamp":1607098443,"output":"MHandler.RunningState with name Elixir.Block.Tasks.STMHandler.RunningState :: period: 100 ms, metric"},{"event":"cmd_output","timestamp":1607098443,"output":"_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningState\"]}, recurring args: %{allowed_"},{"event":"cmd_output","timestamp":1607098443,"output":"states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Task"},{"event":"cmd_output","timestamp":1607098443,"output":"s, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate"},{"event":"cmd_output","timestamp":1607098443,"output":"_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_su"},{"event":"cmd_output","timestamp":1607098443,"output":"pervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:03.265 [info] Periodic from module Elixir.Block.Tasks.STMHandler"},{"event":"cmd_output","timestamp":1607098443,"output":".StoppingState with name Elixir.Block.Tasks.STMHandler.StoppingState :: period: 100 ms, metric_name:"},{"event":"cmd_output","timestamp":1607098443,"output":" {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]}, recurring args: %{allowed_state"},{"event":"cmd_output","timestamp":1607098443,"output":"s: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_stat"},{"event":"cmd_output","timestamp":1607098443,"output":"e: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :upda"},{"event":"cmd_output","timestamp":1607098443,"output":"ted_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip"},{"event":"cmd_output","timestamp":1607098443,"output":"}\n\u001b[0m\u001b[22m\n16:14:03.270 [info] Request: 'run: %{\"branch_id\" => \"4f0de364-b386-4950-b8af-d785fba1"},{"event":"cmd_output","timestamp":1607098443,"output":"7eae\", \"branch_name\" => \"pr-one_path\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"one_path.yml\", "},{"event":"cmd_output","timestamp":1607098443,"output":"\"hook_id\" => \"pr\", \"label\" => \"pr-one_path\", \"organization_id\" => \"911b2da7-7da2-4a97-aaea-9cdcb794a"},{"event":"cmd_output","timestamp":1607098443,"output":"e9e\", \"owner\" => \"rt\", \"project_id\" => \"a6295555-1443-44cb-b910-68d846f08745\", \"repo_name\" => \"22_sk"},{"event":"cmd_output","timestamp":1607098443,"output":"ip_block\", \"request_token\" => \"b9cdf19a-364b-11eb-9975-5254005464e2\", \"requester_id\" => \"4ef271d0-fa"},{"event":"cmd_output","timestamp":1607098443,"output":"24-4c77-b213-24538544bf49\", \"service\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"clien"},{"event":"cmd_output","timestamp":1607098443,"output":"t_secret\"], \"wf_id\" => \"0c4a52b4-d8af-467c-8a37-a7e57b28c1bf\", \"working_dir\" => \".semaphore/change_i"},{"event":"cmd_output","timestamp":1607098443,"output":"n\"}\n\u001b[0m\u001b[22m\n16:14:03.272 [info] ppl_id: 8ad3ad52-aeca-4e85-8a6b-c8bee6c87a9d, type: PplRequests"},{"event":"cmd_output","timestamp":1607098443,"output":", event: persisted schedule request with request_token: b9cdf19a-364b-11eb-9975-5254005464e2, origin"},{"event":"cmd_output","timestamp":1607098443,"output":": Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:14:03.275"},{"event":"cmd_output","timestamp":1607098443,"output":" [info] ppl_id: 8ad3ad52-aeca-4e85-8a6b-c8bee6c87a9d, type: Ppls, state: initializing, event: initi"},{"event":"cmd_output","timestamp":1607098443,"output":"alizing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b["},{"event":"cmd_output","timestamp":1607098443,"output":"0m\u001b[22m\n16:14:03.283 [info] Project a6295555-1443-44cb-b910-68d846f08745 and branch pr-one_pathlat"},{"event":"cmd_output","timestamp":1607098443,"output":"est_wf details updated: \"wf_id: 0c4a52b4-d8af-467c-8a37-a7e57b28c1bf, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098443,"output":"4:03.284 [info] Persisted ppl_sub_init for pipeline with ppl_id: 8ad3ad52-aeca-4e85-8a6b-c8bee6c87a"},{"event":"cmd_output","timestamp":1607098443,"output":"9d: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\""},{"event":"cmd_output","timestamp":1607098443,"output":">, compile_task_id: nil, error_description: nil, id: 316, in_scheduling: false, init_type: \"regular\""},{"event":"cmd_output","timestamp":1607098443,"output":", inserted_at: ~N[2020-12-04 16:14:03.283559], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"8ad3ad52-aeca-4e85-8a6b-c8bee6c87a9d\", recovery_co"},{"event":"cmd_output","timestamp":1607098443,"output":"unt: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request"},{"event":"cmd_output","timestamp":1607098443,"output":"_desc: nil, updated_at: ~N[2020-12-04 16:14:03.283566]}\n\u001b[0m\u001b[22m\n16:14:03.297 [info] ppl_id: 8ad"},{"event":"cmd_output","timestamp":1607098443,"output":"3ad52-aeca-4e85-8a6b-c8bee6c87a9d, type: PplRequests, event: persisted source_args for pipeline: 8ad"},{"event":"cmd_output","timestamp":1607098443,"output":"3ad52-aeca-4e85-8a6b-c8bee6c87a9d, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_so"},{"event":"cmd_output","timestamp":1607098443,"output":"urce/2(L89), \n\u001b[0m\u001b[22m\n16:14:03.299 [info] ppl_id: 8ad3ad52-aeca-4e85-8a6b-c8bee6c87a9d, type: P"},{"event":"cmd_output","timestamp":1607098443,"output":"plSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Im"},{"event":"cmd_output","timestamp":1607098443,"output":"pl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:03.314 [info] ppl_id: 8ad3ad52-aeca-4e85-8a6b-c8bee6"},{"event":"cmd_output","timestamp":1607098443,"output":"c87a9d, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: E"},{"event":"cmd_output","timestamp":1607098443,"output":"lixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:03.336 [info] ppl_id: 8ad3ad52-ae"},{"event":"cmd_output","timestamp":1607098443,"output":"ca-4e85-8a6b-c8bee6c87a9d, type: PplRequests, event: persisted definition for request with request_t"},{"event":"cmd_output","timestamp":1607098443,"output":"oken: b9cdf19a-364b-11eb-9975-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries."},{"event":"cmd_output","timestamp":1607098443,"output":"insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:14:03.339 [info] Queue persisted: {:ok, %Ppl.Queues.Model"},{"event":"cmd_output","timestamp":1607098443,"output":".Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:14:03.3386"},{"event":"cmd_output","timestamp":1607098443,"output":"27], name: \"pr-one_path-.semaphore/change_in/one_path.yml\", organization_id: \"911b2da7-7da2-4a97-aae"},{"event":"cmd_output","timestamp":1607098443,"output":"a-9cdcb794ae9e\", project_id: \"a6295555-1443-44cb-b910-68d846f08745\", queue_id: \"7c4590f6-e112-4c2b-b"},{"event":"cmd_output","timestamp":1607098443,"output":"1d1-b9c2f9960df6\", scope: \"project\", updated_at: ~N[2020-12-04 16:14:03.338647], user_generated: fal"},{"event":"cmd_output","timestamp":1607098443,"output":"se}}\n\u001b[0m\u001b[22m\n16:14:03.343 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.Regu"},{"event":"cmd_output","timestamp":1607098443,"output":"larInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:03.343 [info] ppl_id: 8ad3ad52-aeca-4e85-8a6b-c8be"},{"event":"cmd_output","timestamp":1607098443,"output":"e6c87a9d, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098443,"output":"rigin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:03.345"},{"event":"cmd_output","timestamp":1607098443,"output":" [info] ppl_id: 8ad3ad52-aeca-4e85-8a6b-c8bee6c87a9d, type: PplSubInits, state: done, result: passe"},{"event":"cmd_output","timestamp":1607098443,"output":"d, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90)"},{"event":"cmd_output","timestamp":1607098443,"output":", \n\u001b[0m\u001b[22m\n16:14:03.353 [info] ppl_id: 8ad3ad52-aeca-4e85-8a6b-c8bee6c87a9d, type: Ppls, state:"},{"event":"cmd_output","timestamp":1607098443,"output":" pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change"},{"event":"cmd_output","timestamp":1607098443,"output":"/1(L90), \n\u001b[0m\u001b[22m\n16:14:03.356 [info] ppl_id: 8ad3ad52-aeca-4e85-8a6b-c8bee6c87a9d, type: PplBl"},{"event":"cmd_output","timestamp":1607098443,"output":"ocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loop"},{"event":"cmd_output","timestamp":1607098443,"output":"er.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:03.366 [info] ppl_id: 8ad3ad52-aeca-4e85-8a"},{"event":"cmd_output","timestamp":1607098443,"output":"6b-c8bee6c87a9d, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098443,"output":"ir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:03.386 [info] ppl_id: 8ad3ad52-aeca-"},{"event":"cmd_output","timestamp":1607098443,"output":"4e85-8a6b-c8bee6c87a9d, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098443,"output":"n: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:03.392 [info] PplBlocks Waiti"},{"event":"cmd_output","timestamp":1607098443,"output":"ngState STM is scheduling block 0 from pipeline: \"8ad3ad52-aeca-4e85-8a6b-c8bee6c87a9d\"\n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098443,"output":"16:14:03.432 [info] ppl_id: 8ad3ad52-aeca-4e85-8a6b-c8bee6c87a9d, type: PplBlocks, block_index: 0, "},{"event":"cmd_output","timestamp":1607098443,"output":"state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Im"},{"event":"cmd_output","timestamp":1607098443,"output":"pl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:03.440 [info] ppl_id: 8ad3ad52-aeca-4e85-8a6b-c8bee6"},{"event":"cmd_output","timestamp":1607098443,"output":"c87a9d, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098443,"output":"Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test change_in uses proper branch as"},{"event":"cmd_output","timestamp":1607098443,"output":" base on PRs to non-default branch (278.0ms)\u001b[0m\n * test change_in uses diferent default range whe"},{"event":"cmd_output","timestamp":1607098443,"output":"n defult_range config is given\u001b[22m\n16:14:03.542 [info] Periodic from module Elixir.Ppl.Ppls.STMHa"},{"event":"cmd_output","timestamp":1607098443,"output":"ndler.InitializingState with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms, me"},{"event":"cmd_output","timestamp":1607098443,"output":"tric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %{al"},{"event":"cmd_output","timestamp":1607098443,"output":"lowed_states: [\"initializing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Mode"},{"event":"cmd_output","timestamp":1607098443,"output":"l.Ppls, observed_state: \"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler"},{"event":"cmd_output","timestamp":1607098443,"output":".InitializingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :s"},{"event":"cmd_output","timestamp":1607098443,"output":"tate, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m"},{"event":"cmd_output","timestamp":1607098443,"output":"\u001b[22m\n16:14:03.542 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingState with name E"},{"event":"cmd_output","timestamp":1607098443,"output":"lixir.Ppl.Ppls.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Pp"},{"event":"cmd_output","timestamp":1607098443,"output":"l-Ppls-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"pending\", \"queuing\", \"running"},{"event":"cmd_output","timestamp":1607098443,"output":"\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publ"},{"event":"cmd_output","timestamp":1607098443,"output":"isher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, ret"},{"event":"cmd_output","timestamp":1607098443,"output":"urning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: P"},{"event":"cmd_output","timestamp":1607098443,"output":"pl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:14:03.543 [info] Periodic f"},{"event":"cmd_output","timestamp":1607098443,"output":"rom module Elixir.Ppl.Ppls.STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandler.QueuingState"},{"event":"cmd_output","timestamp":1607098443,"output":" :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, rec"},{"event":"cmd_output","timestamp":1607098443,"output":"urring args: %{allowed_states: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, initial_query: "},{"event":"cmd_output","timestamp":1607098443,"output":"Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.ST"},{"event":"cmd_output","timestamp":1607098443,"output":"MHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at,"},{"event":"cmd_output","timestamp":1607098443,"output":" :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b"},{"event":"cmd_output","timestamp":1607098443,"output":"[0m\u001b[22m\n16:14:03.544 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.RunningState with nam"},{"event":"cmd_output","timestamp":1607098443,"output":"e Elixir.Ppl.Ppls.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", ["},{"event":"cmd_output","timestamp":1607098443,"output":"\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"don"},{"event":"cmd_output","timestamp":1607098443,"output":"e\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"running\", publisher_"},{"event":"cmd_output","timestamp":1607098443,"output":"cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returnin"},{"event":"cmd_output","timestamp":1607098443,"output":"g: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Pp"},{"event":"cmd_output","timestamp":1607098443,"output":"ls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:14:03.544 [info] Periodic from m"},{"event":"cmd_output","timestamp":1607098443,"output":"odule Elixir.Ppl.Ppls.STMHandler.StoppingState with name Elixir.Ppl.Ppls.STMHandler.StoppingState ::"},{"event":"cmd_output","timestamp":1607098443,"output":" period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recur"},{"event":"cmd_output","timestamp":1607098443,"output":"ring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Mod"},{"event":"cmd_output","timestamp":1607098443,"output":"el.Ppls, observed_state: \"stopping\", publisher_cb: #Function<0.71803493/1 in Ppl.Ppls.STMHandler.Sto"},{"event":"cmd_output","timestamp":1607098443,"output":"ppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :r"},{"event":"cmd_output","timestamp":1607098443,"output":"esult, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098443,"output":"6:14:03.545 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedState with name El"},{"event":"cmd_output","timestamp":1607098443,"output":"ixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\""},{"event":"cmd_output","timestamp":1607098443,"output":", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args: %{allowed_states: [\"fetching\", \"done"},{"event":"cmd_output","timestamp":1607098443,"output":"\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"created\""},{"event":"cmd_output","timestamp":1607098443,"output":", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state,"},{"event":"cmd_output","timestamp":1607098443,"output":" :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :sk"},{"event":"cmd_output","timestamp":1607098443,"output":"ip}\n\u001b[0m\u001b[22m\n16:14:03.545 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.Fetching"},{"event":"cmd_output","timestamp":1607098443,"output":"State with name Elixir.Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 ms, metric_name: {\"Pp"},{"event":"cmd_output","timestamp":1607098443,"output":"l.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %{allowed_states"},{"event":"cmd_output","timestamp":1607098443,"output":": [\"regular_init\", \"compilation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Mode"},{"event":"cmd_output","timestamp":1607098443,"output":"l.PplSubInits, observed_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id,"},{"event":"cmd_output","timestamp":1607098443,"output":" :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInit"},{"event":"cmd_output","timestamp":1607098443,"output":"s.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:03.546 [info] Periodic from module E"},{"event":"cmd_output","timestamp":1607098443,"output":"lixir.Ppl.PplSubInits.STMHandler.CompilationState with name Elixir.Ppl.PplSubInits.STMHandler.Compil"},{"event":"cmd_output","timestamp":1607098443,"output":"ationState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-Com"},{"event":"cmd_output","timestamp":1607098443,"output":"pilationState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"stopping\", \"don"},{"event":"cmd_output","timestamp":1607098443,"output":"e\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"compil"},{"event":"cmd_output","timestamp":1607098443,"output":"ation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :"},{"event":"cmd_output","timestamp":1607098443,"output":"state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_superviso"},{"event":"cmd_output","timestamp":1607098443,"output":"r: :skip}\n\u001b[0m\u001b[22m\n16:14:03.546 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.Re"},{"event":"cmd_output","timestamp":1607098443,"output":"gularInitState with name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period: 100 ms, metri"},{"event":"cmd_output","timestamp":1607098443,"output":"c_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurring args: %"},{"event":"cmd_output","timestamp":1607098443,"output":"{allowed_states: [\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, ob"},{"event":"cmd_output","timestamp":1607098443,"output":"served_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_r"},{"event":"cmd_output","timestamp":1607098443,"output":"equest, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSu"},{"event":"cmd_output","timestamp":1607098443,"output":"bInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:03.547 [info] Periodic from module Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098443,"output":"Blocks.STMHandler.InitializingState with name Elixir.Ppl.PplBlocks.STMHandler.InitializingState :: p"},{"event":"cmd_output","timestamp":1607098443,"output":"eriod: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-InitializingState\"]}"},{"event":"cmd_output","timestamp":1607098443,"output":", recurring args: %{allowed_states: [\"initializing\", \"waiting\", \"done\"], cooling_time_sec: 0, initia"},{"event":"cmd_output","timestamp":1607098443,"output":"l_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"initializing\", publisher_cb: :skip, repo: P"},{"event":"cmd_output","timestamp":1607098443,"output":"pl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :pp"},{"event":"cmd_output","timestamp":1607098443,"output":"l_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098443,"output":"4:03.547 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.WaitingState with name Elixir."},{"event":"cmd_output","timestamp":1607098443,"output":"Ppl.PplBlocks.STMHandler.WaitingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Pp"},{"event":"cmd_output","timestamp":1607098443,"output":"l-PplBlocks-STMHandler-WaitingState\"]}, recurring args: %{allowed_states: [\"waiting\", \"running\", \"do"},{"event":"cmd_output","timestamp":1607098443,"output":"ne\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"waiting\", "},{"event":"cmd_output","timestamp":1607098443,"output":"publisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>, repo: Ppl.Ecto"},{"event":"cmd_output","timestamp":1607098443,"output":"Repo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :"},{"event":"cmd_output","timestamp":1607098443,"output":"block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:03.54"},{"event":"cmd_output","timestamp":1607098443,"output":"8 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.RunningState with name Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098443,"output":"Blocks.STMHandler.RunningState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBl"},{"event":"cmd_output","timestamp":1607098443,"output":"ocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], "},{"event":"cmd_output","timestamp":1607098443,"output":"cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"running\", publi"},{"event":"cmd_output","timestamp":1607098443,"output":"sher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo"},{"event":"cmd_output","timestamp":1607098443,"output":", returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :bloc"},{"event":"cmd_output","timestamp":1607098443,"output":"k_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098443,"output":"4:03.549 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.StoppingState with name Elixir"},{"event":"cmd_output","timestamp":1607098443,"output":".Ppl.PplBlocks.STMHandler.StoppingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\""},{"event":"cmd_output","timestamp":1607098443,"output":"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], c"},{"event":"cmd_output","timestamp":1607098443,"output":"ooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"stopping\", publi"},{"event":"cmd_output","timestamp":1607098443,"output":"sher_cb: #Function<0.104215991/1 in Ppl.PplBlocks.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRe"},{"event":"cmd_output","timestamp":1607098443,"output":"po, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :bl"},{"event":"cmd_output","timestamp":1607098443,"output":"ock_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098443,"output":":14:03.549 [info] Periodic from module Elixir.Block.Blocks.STMHandler.InitializingState with name E"},{"event":"cmd_output","timestamp":1607098443,"output":"lixir.Block.Blocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_"},{"event":"cmd_output","timestamp":1607098443,"output":"up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"running\", \""},{"event":"cmd_output","timestamp":1607098443,"output":"done\"], cooling_time_sec: 0, initial_query: Block.Blocks.Model.Blocks, observed_state: \"initializing"},{"event":"cmd_output","timestamp":1607098443,"output":"\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :sta"},{"event":"cmd_output","timestamp":1607098443,"output":"te, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098443,"output":"2m\n16:14:03.550 [info] Periodic from module Elixir.Block.Blocks.STMHandler.RunningState with name "},{"event":"cmd_output","timestamp":1607098443,"output":"Elixir.Block.Blocks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\","},{"event":"cmd_output","timestamp":1607098443,"output":" [\"Block-Blocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\""},{"event":"cmd_output","timestamp":1607098443,"output":", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"running\""},{"event":"cmd_output","timestamp":1607098443,"output":", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :stat"},{"event":"cmd_output","timestamp":1607098443,"output":"e, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098443,"output":"m\n16:14:03.550 [info] Periodic from module Elixir.Block.Blocks.STMHandler.StoppingState with name "},{"event":"cmd_output","timestamp":1607098443,"output":"Elixir.Block.Blocks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\""},{"event":"cmd_output","timestamp":1607098443,"output":", [\"Block-Blocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"]"},{"event":"cmd_output","timestamp":1607098443,"output":", cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"stopping\", publis"},{"event":"cmd_output","timestamp":1607098443,"output":"her_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :reco"},{"event":"cmd_output","timestamp":1607098443,"output":"very_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14"},{"event":"cmd_output","timestamp":1607098443,"output":":03.551 [info] Periodic from module Elixir.Block.Tasks.STMHandler.PendingState with name Elixir.Blo"},{"event":"cmd_output","timestamp":1607098443,"output":"ck.Tasks.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Ta"},{"event":"cmd_output","timestamp":1607098443,"output":"sks-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_"},{"event":"cmd_output","timestamp":1607098443,"output":"sec: 0, initial_query: Block.Tasks.Model.Tasks, observed_state: \"pending\", publisher_cb: :skip, repo"},{"event":"cmd_output","timestamp":1607098443,"output":": Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_"},{"event":"cmd_output","timestamp":1607098443,"output":"id, :build_request_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:0"},{"event":"cmd_output","timestamp":1607098443,"output":"3.551 [info] Periodic from module Elixir.Block.Tasks.STMHandler.RunningState with name Elixir.Block"},{"event":"cmd_output","timestamp":1607098443,"output":".Tasks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Task"},{"event":"cmd_output","timestamp":1607098443,"output":"s-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], coo"},{"event":"cmd_output","timestamp":1607098443,"output":"ling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"running\", publisher_cb: "},{"event":"cmd_output","timestamp":1607098443,"output":":skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_cou"},{"event":"cmd_output","timestamp":1607098443,"output":"nt, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:03.551 [i"},{"event":"cmd_output","timestamp":1607098443,"output":"nfo] Periodic from module Elixir.Block.Tasks.STMHandler.StoppingState with name Elixir.Block.Tasks."},{"event":"cmd_output","timestamp":1607098443,"output":"STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMH"},{"event":"cmd_output","timestamp":1607098443,"output":"andler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -"},{"event":"cmd_output","timestamp":1607098443,"output":"2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"stopping\", publisher_cb: :skip, repo: Bl"},{"event":"cmd_output","timestamp":1607098443,"output":"ock.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id],"},{"event":"cmd_output","timestamp":1607098443,"output":" schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:03.555 [info] Request: "},{"event":"cmd_output","timestamp":1607098443,"output":"'run: %{\"branch_id\" => \"7ce9c139-7728-49d6-ac3a-802a934a862b\", \"branch_name\" => \"master\", \"commit_sh"},{"event":"cmd_output","timestamp":1607098443,"output":"a\" => \"75891a4469\", \"file_name\" => \"config_default_range.yml\", \"hook_id\" => \"b9f9b01e-364b-11eb-92e1"},{"event":"cmd_output","timestamp":1607098443,"output":"-5254005464e2\", \"label\" => \"master\", \"organization_id\" => \"f692ef32-fcb1-4e7d-9d72-761902d9eed3\", \"o"},{"event":"cmd_output","timestamp":1607098443,"output":"wner\" => \"rt\", \"project_id\" => \"41dcbe4d-8f80-4877-8cd6-073b04bac9c6\", \"repo_name\" => \"22_skip_block"},{"event":"cmd_output","timestamp":1607098443,"output":"\", \"request_token\" => \"b9f9a8a8-364b-11eb-ae0f-5254005464e2\", \"requester_id\" => \"89e67edc-c2b0-49d8-"},{"event":"cmd_output","timestamp":1607098443,"output":"bf0a-711c9fba9829\", \"service\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret"},{"event":"cmd_output","timestamp":1607098443,"output":"\"], \"wf_id\" => \"a0dfa4f0-b35f-4fd7-8f68-b6f0928e76d5\", \"working_dir\" => \".semaphore/change_in\"}\n\u001b[0"},{"event":"cmd_output","timestamp":1607098443,"output":"m\u001b[22m\n16:14:03.557 [info] ppl_id: 8073df4f-e199-42d5-807e-5d005622a29b, type: PplRequests, event:"},{"event":"cmd_output","timestamp":1607098443,"output":" persisted schedule request with request_token: b9f9a8a8-364b-11eb-ae0f-5254005464e2, origin: Elixir"},{"event":"cmd_output","timestamp":1607098443,"output":".Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:14:03.559 [info] "},{"event":"cmd_output","timestamp":1607098443,"output":" ppl_id: 8073df4f-e199-42d5-807e-5d005622a29b, type: Ppls, state: initializing, event: initializing,"},{"event":"cmd_output","timestamp":1607098443,"output":" recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098443,"output":"\n16:14:03.568 [info] Project 41dcbe4d-8f80-4877-8cd6-073b04bac9c6 and branch masterlatest_wf detail"},{"event":"cmd_output","timestamp":1607098443,"output":"s updated: \"wf_id: a0dfa4f0-b35f-4fd7-8f68-b6f0928e76d5, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:14:03.570 [inf"},{"event":"cmd_output","timestamp":1607098443,"output":"o] Persisted ppl_sub_init for pipeline with ppl_id: 8073df4f-e199-42d5-807e-5d005622a29b: %Ppl.PplS"},{"event":"cmd_output","timestamp":1607098443,"output":"ubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_ta"},{"event":"cmd_output","timestamp":1607098443,"output":"sk_id: nil, error_description: nil, id: 317, in_scheduling: false, init_type: \"regular\", inserted_at"},{"event":"cmd_output","timestamp":1607098443,"output":": ~N[2020-12-04 16:14:03.568609], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"8073df4f-e199-42d5-807e-5d005622a29b\", recovery_count: 0, resul"},{"event":"cmd_output","timestamp":1607098443,"output":"t: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, u"},{"event":"cmd_output","timestamp":1607098443,"output":"pdated_at: ~N[2020-12-04 16:14:03.568615]}\n\u001b[0m\u001b[22m\n16:14:03.579 [info] ppl_id: 8073df4f-e199-42"},{"event":"cmd_output","timestamp":1607098443,"output":"d5-807e-5d005622a29b, type: PplRequests, event: persisted source_args for pipeline: 8073df4f-e199-42"},{"event":"cmd_output","timestamp":1607098443,"output":"d5-807e-5d005622a29b, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), "},{"event":"cmd_output","timestamp":1607098443,"output":"\n\u001b[0m\u001b[22m\n16:14:03.581 [info] ppl_id: 8073df4f-e199-42d5-807e-5d005622a29b, type: PplSubInits, s"},{"event":"cmd_output","timestamp":1607098443,"output":"tate: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_"},{"event":"cmd_output","timestamp":1607098443,"output":"change/1(L90), \n\u001b[0m\u001b[22m\n16:14:03.600 [info] ppl_id: 8073df4f-e199-42d5-807e-5d005622a29b, type:"},{"event":"cmd_output","timestamp":1607098443,"output":" PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper."},{"event":"cmd_output","timestamp":1607098443,"output":"STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:03.618 [info] ppl_id: 8073df4f-e199-42d5-807e-"},{"event":"cmd_output","timestamp":1607098443,"output":"5d005622a29b, type: PplRequests, event: persisted definition for request with request_token: b9f9a8a"},{"event":"cmd_output","timestamp":1607098443,"output":"8-364b-11eb-ae0f-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_defini"},{"event":"cmd_output","timestamp":1607098443,"output":"tion/3(L76), \n\u001b[0m\u001b[22m\n16:14:03.621 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__met"},{"event":"cmd_output","timestamp":1607098443,"output":"a__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:14:03.620175], name: \"m"},{"event":"cmd_output","timestamp":1607098443,"output":"aster-.semaphore/change_in/config_default_range.yml\", organization_id: \"f692ef32-fcb1-4e7d-9d72-7619"},{"event":"cmd_output","timestamp":1607098443,"output":"02d9eed3\", project_id: \"41dcbe4d-8f80-4877-8cd6-073b04bac9c6\", queue_id: \"cbbeeb18-fe95-4932-8d41-72"},{"event":"cmd_output","timestamp":1607098443,"output":"e7fbacd348\", scope: \"project\", updated_at: ~N[2020-12-04 16:14:03.620183], user_generated: false}}\n"},{"event":"cmd_output","timestamp":1607098443,"output":"\u001b[0m\u001b[22m\n16:14:03.624 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularIni"},{"event":"cmd_output","timestamp":1607098443,"output":"tState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:03.624 [info] ppl_id: 8073df4f-e199-42d5-807e-5d005622a2"},{"event":"cmd_output","timestamp":1607098443,"output":"9b, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098443,"output":" Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:03.626 [info"},{"event":"cmd_output","timestamp":1607098443,"output":"] ppl_id: 8073df4f-e199-42d5-807e-5d005622a29b, type: PplSubInits, state: done, result: passed, eve"},{"event":"cmd_output","timestamp":1607098443,"output":"nt: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b["},{"event":"cmd_output","timestamp":1607098443,"output":"0m\u001b[22m\n16:14:03.633 [info] ppl_id: 8073df4f-e199-42d5-807e-5d005622a29b, type: Ppls, state: pendi"},{"event":"cmd_output","timestamp":1607098443,"output":"ng, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90"},{"event":"cmd_output","timestamp":1607098443,"output":"), \n\u001b[0m\u001b[22m\n16:14:03.634 [info] ppl_id: 8073df4f-e199-42d5-807e-5d005622a29b, type: PplBlocks, "},{"event":"cmd_output","timestamp":1607098443,"output":"block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM"},{"event":"cmd_output","timestamp":1607098443,"output":".Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:03.645 [info] ppl_id: 8073df4f-e199-42d5-807e-5d0"},{"event":"cmd_output","timestamp":1607098443,"output":"05622a29b, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loo"},{"event":"cmd_output","timestamp":1607098443,"output":"per.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:03.660 [info] ppl_id: 8073df4f-e199-42d5-8"},{"event":"cmd_output","timestamp":1607098443,"output":"07e-5d005622a29b, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098443,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:03.666 [info] PplBlocks WaitingStat"},{"event":"cmd_output","timestamp":1607098443,"output":"e STM is scheduling block 0 from pipeline: \"8073df4f-e199-42d5-807e-5d005622a29b\"\n\u001b[0m\u001b[22m\n16:14:"},{"event":"cmd_output","timestamp":1607098443,"output":"03.673 [info] ppl_id: 8073df4f-e199-42d5-807e-5d005622a29b, type: PplBlocks, block_index: 0, state:"},{"event":"cmd_output","timestamp":1607098443,"output":" done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098443,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:03.681 [info] ppl_id: 8073df4f-e199-42d5-807e-5d005622a29b"},{"event":"cmd_output","timestamp":1607098443,"output":", type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098443,"output":".Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test change_in uses diferent default range"},{"event":"cmd_output","timestamp":1607098443,"output":" when defult_range config is given (284.9ms)\u001b[0m\n * test change_in includes yml config file by def"},{"event":"cmd_output","timestamp":1607098443,"output":"ault\u001b[22m\n16:14:03.824 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingState wi"},{"event":"cmd_output","timestamp":1607098443,"output":"th name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-"},{"event":"cmd_output","timestamp":1607098443,"output":"wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializi"},{"event":"cmd_output","timestamp":1607098443,"output":"ng\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"i"},{"event":"cmd_output","timestamp":1607098443,"output":"nitializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>"},{"event":"cmd_output","timestamp":1607098443,"output":", repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_c"},{"event":"cmd_output","timestamp":1607098443,"output":"ount, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:03.824 [info]"},{"event":"cmd_output","timestamp":1607098443,"output":" Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler."},{"event":"cmd_output","timestamp":1607098443,"output":"PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingS"},{"event":"cmd_output","timestamp":1607098443,"output":"tate\"]}, recurring args: %{allowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_s"},{"event":"cmd_output","timestamp":1607098443,"output":"ec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publisher_cb: #Function<0.8493"},{"event":"cmd_output","timestamp":1607098443,"output":"005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_r"},{"event":"cmd_output","timestamp":1607098443,"output":"equest, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_s"},{"event":"cmd_output","timestamp":1607098443,"output":"upervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:14:03.824 [info] Periodic from module Elixir.Ppl.Ppls"},{"event":"cmd_output","timestamp":1607098443,"output":".STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, metric"},{"event":"cmd_output","timestamp":1607098443,"output":"_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{allowed_sta"},{"event":"cmd_output","timestamp":1607098443,"output":"tes: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, obser"},{"event":"cmd_output","timestamp":1607098443,"output":"ved_state: \"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.args"},{"event":"cmd_output","timestamp":1607098443,"output":"/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recover"},{"event":"cmd_output","timestamp":1607098443,"output":"y_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:03.824 [in"},{"event":"cmd_output","timestamp":1607098443,"output":"fo] Periodic from module Elixir.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHandl"},{"event":"cmd_output","timestamp":1607098443,"output":"er.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Runni"},{"event":"cmd_output","timestamp":1607098443,"output":"ngState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2,"},{"event":"cmd_output","timestamp":1607098443,"output":" initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"running\", publisher_cb: #Function<0.74670282/1"},{"event":"cmd_output","timestamp":1607098443,"output":" in Ppl.Ppls.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_reques"},{"event":"cmd_output","timestamp":1607098443,"output":"t, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_superv"},{"event":"cmd_output","timestamp":1607098443,"output":"isor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:14:03.824 [info] Periodic from module Elixir.Ppl.Ppls.STMH"},{"event":"cmd_output","timestamp":1607098443,"output":"andler.StoppingState with name Elixir.Ppl.Ppls.STMHandler.StoppingState :: period: 100 ms, metric_na"},{"event":"cmd_output","timestamp":1607098443,"output":"me: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring args: %{allowed_state"},{"event":"cmd_output","timestamp":1607098443,"output":"s: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \""},{"event":"cmd_output","timestamp":1607098443,"output":"stopping\", publisher_cb: #Function<0.71803493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, repo: "},{"event":"cmd_output","timestamp":1607098443,"output":"Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :p"},{"event":"cmd_output","timestamp":1607098443,"output":"pl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:03.824 [info] Period"},{"event":"cmd_output","timestamp":1607098443,"output":"ic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHa"},{"event":"cmd_output","timestamp":1607098443,"output":"ndler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHan"},{"event":"cmd_output","timestamp":1607098443,"output":"dler-CreatedState\"]}, recurring args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, i"},{"event":"cmd_output","timestamp":1607098443,"output":"nitial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip, rep"},{"event":"cmd_output","timestamp":1607098443,"output":"o: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count,"},{"event":"cmd_output","timestamp":1607098443,"output":" :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:03.8"},{"event":"cmd_output","timestamp":1607098443,"output":"25 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098443,"output":".PplSubInits.STMHandler.FetchingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl"},{"event":"cmd_output","timestamp":1607098443,"output":"-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compil"},{"event":"cmd_output","timestamp":1607098443,"output":"ation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_st"},{"event":"cmd_output","timestamp":1607098443,"output":"ate: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :upda"},{"event":"cmd_output","timestamp":1607098443,"output":"ted_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_"},{"event":"cmd_output","timestamp":1607098443,"output":"supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:03.825 [info] Periodic from module Elixir.Ppl.PplSubInits.STMH"},{"event":"cmd_output","timestamp":1607098443,"output":"andler.CompilationState with name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 100 "},{"event":"cmd_output","timestamp":1607098443,"output":"ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurrin"},{"event":"cmd_output","timestamp":1607098443,"output":"g args: %{allowed_states: [\"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2,"},{"event":"cmd_output","timestamp":1607098443,"output":" initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"compilation\", publisher_cb: :ski"},{"event":"cmd_output","timestamp":1607098443,"output":"p, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_"},{"event":"cmd_output","timestamp":1607098443,"output":"count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098443,"output":"4:03.825 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with name E"},{"event":"cmd_output","timestamp":1607098443,"output":"lixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wak"},{"event":"cmd_output","timestamp":1607098443,"output":"e_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurring args: %{allowed_states: [\"done\"],"},{"event":"cmd_output","timestamp":1607098443,"output":" cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_ini"},{"event":"cmd_output","timestamp":1607098443,"output":"t\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :stat"},{"event":"cmd_output","timestamp":1607098443,"output":"e, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :"},{"event":"cmd_output","timestamp":1607098443,"output":"skip}\n\u001b[0m\u001b[22m\n16:14:03.825 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.Initiali"},{"event":"cmd_output","timestamp":1607098443,"output":"zingState with name Elixir.Ppl.PplBlocks.STMHandler.InitializingState :: period: 100 ms, metric_name"},{"event":"cmd_output","timestamp":1607098443,"output":": {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-InitializingState\"]}, recurring args: %{allowe"},{"event":"cmd_output","timestamp":1607098443,"output":"d_states: [\"initializing\", \"waiting\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Mod"},{"event":"cmd_output","timestamp":1607098443,"output":"el.PplBlocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:"},{"event":"cmd_output","timestamp":1607098443,"output":"id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schem"},{"event":"cmd_output","timestamp":1607098443,"output":"a: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:03.825 [info] Periodic "},{"event":"cmd_output","timestamp":1607098443,"output":"from module Elixir.Ppl.PplBlocks.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler.W"},{"event":"cmd_output","timestamp":1607098443,"output":"aitingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-Wai"},{"event":"cmd_output","timestamp":1607098443,"output":"tingState\"]}, recurring args: %{allowed_states: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 0,"},{"event":"cmd_output","timestamp":1607098443,"output":" initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"waiting\", publisher_cb: #Function<0."},{"event":"cmd_output","timestamp":1607098443,"output":"8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :te"},{"event":"cmd_output","timestamp":1607098443,"output":"rminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl."},{"event":"cmd_output","timestamp":1607098443,"output":"PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:03.825 [info] Periodic from mo"},{"event":"cmd_output","timestamp":1607098443,"output":"dule Elixir.Ppl.PplBlocks.STMHandler.RunningState with name Elixir.Ppl.PplBlocks.STMHandler.RunningS"},{"event":"cmd_output","timestamp":1607098443,"output":"tate :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningSta"},{"event":"cmd_output","timestamp":1607098443,"output":"te\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, init"},{"event":"cmd_output","timestamp":1607098443,"output":"ial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"running\", publisher_cb: #Function<0.28166"},{"event":"cmd_output","timestamp":1607098443,"output":"834/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :termin"},{"event":"cmd_output","timestamp":1607098443,"output":"ate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schem"},{"event":"cmd_output","timestamp":1607098443,"output":"a: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:03.825 [info] Periodic "},{"event":"cmd_output","timestamp":1607098443,"output":"from module Elixir.Ppl.PplBlocks.STMHandler.StoppingState with name Elixir.Ppl.PplBlocks.STMHandler."},{"event":"cmd_output","timestamp":1607098443,"output":"StoppingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-S"},{"event":"cmd_output","timestamp":1607098443,"output":"toppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initi"},{"event":"cmd_output","timestamp":1607098443,"output":"al_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"stopping\", publisher_cb: #Function<0.10421"},{"event":"cmd_output","timestamp":1607098443,"output":"5991/1 in Ppl.PplBlocks.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :term"},{"event":"cmd_output","timestamp":1607098443,"output":"inate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], sch"},{"event":"cmd_output","timestamp":1607098443,"output":"ema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:03.826 [info] Periodi"},{"event":"cmd_output","timestamp":1607098443,"output":"c from module Elixir.Block.Blocks.STMHandler.InitializingState with name Elixir.Block.Blocks.STMHand"},{"event":"cmd_output","timestamp":1607098443,"output":"ler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHan"},{"event":"cmd_output","timestamp":1607098443,"output":"dler-InitializingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: "},{"event":"cmd_output","timestamp":1607098443,"output":"0, initial_query: Block.Blocks.Model.Blocks, observed_state: \"initializing\", publisher_cb: :skip, re"},{"event":"cmd_output","timestamp":1607098443,"output":"po: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :bloc"},{"event":"cmd_output","timestamp":1607098443,"output":"k_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:03.827 [info] P"},{"event":"cmd_output","timestamp":1607098443,"output":"eriodic from module Elixir.Block.Blocks.STMHandler.RunningState with name Elixir.Block.Blocks.STMHan"},{"event":"cmd_output","timestamp":1607098443,"output":"dler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler"},{"event":"cmd_output","timestamp":1607098443,"output":"-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_se"},{"event":"cmd_output","timestamp":1607098443,"output":"c: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"running\", publisher_cb: :skip, rep"},{"event":"cmd_output","timestamp":1607098443,"output":"o: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block"},{"event":"cmd_output","timestamp":1607098443,"output":"_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:03.827 [info] Pe"},{"event":"cmd_output","timestamp":1607098443,"output":"riodic from module Elixir.Block.Blocks.STMHandler.StoppingState with name Elixir.Block.Blocks.STMHan"},{"event":"cmd_output","timestamp":1607098443,"output":"dler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandle"},{"event":"cmd_output","timestamp":1607098443,"output":"r-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, in"},{"event":"cmd_output","timestamp":1607098443,"output":"itial_query: Block.Blocks.Model.Blocks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block"},{"event":"cmd_output","timestamp":1607098443,"output":".EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], sc"},{"event":"cmd_output","timestamp":1607098443,"output":"hema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:03.827 [info] Periodic f"},{"event":"cmd_output","timestamp":1607098443,"output":"rom module Elixir.Block.Tasks.STMHandler.PendingState with name Elixir.Block.Tasks.STMHandler.Pendin"},{"event":"cmd_output","timestamp":1607098443,"output":"gState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingStat"},{"event":"cmd_output","timestamp":1607098443,"output":"e\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Blo"},{"event":"cmd_output","timestamp":1607098443,"output":"ck.Tasks.Model.Tasks, observed_state: \"pending\", publisher_cb: :skip, repo: Block.EctoRepo, returnin"},{"event":"cmd_output","timestamp":1607098443,"output":"g: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id, :build_request_id], sc"},{"event":"cmd_output","timestamp":1607098443,"output":"hema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:03.828 [info] Periodic fro"},{"event":"cmd_output","timestamp":1607098443,"output":"m module Elixir.Block.Tasks.STMHandler.RunningState with name Elixir.Block.Tasks.STMHandler.RunningS"},{"event":"cmd_output","timestamp":1607098443,"output":"tate :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningState\""},{"event":"cmd_output","timestamp":1607098443,"output":"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial"},{"event":"cmd_output","timestamp":1607098443,"output":"_query: Block.Tasks.Model.Tasks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRep"},{"event":"cmd_output","timestamp":1607098443,"output":"o, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Bl"},{"event":"cmd_output","timestamp":1607098443,"output":"ock.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:03.828 [info] Periodic from module"},{"event":"cmd_output","timestamp":1607098443,"output":" Elixir.Block.Tasks.STMHandler.StoppingState with name Elixir.Block.Tasks.STMHandler.StoppingState :"},{"event":"cmd_output","timestamp":1607098443,"output":": period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]}, r"},{"event":"cmd_output","timestamp":1607098443,"output":"ecurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Ta"},{"event":"cmd_output","timestamp":1607098443,"output":"sks.Model.Tasks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: ["},{"event":"cmd_output","timestamp":1607098443,"output":":id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model"},{"event":"cmd_output","timestamp":1607098443,"output":".Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:03.832 [info] Request: 'run: %{\"branch_id\" => \"aa"},{"event":"cmd_output","timestamp":1607098443,"output":"f66ac7-732a-461e-a583-ef86730d3f55\", \"branch_name\" => \"include_yml\", \"commit_sha\" => \"75891a4469\", \""},{"event":"cmd_output","timestamp":1607098443,"output":"file_name\" => \"one_path.yml\", \"hook_id\" => \"ba23e49c-364b-11eb-992f-5254005464e2\", \"label\" => \"inclu"},{"event":"cmd_output","timestamp":1607098443,"output":"de_yml\", \"organization_id\" => \"366bd6e3-adfe-4931-96af-ce7386aca67c\", \"owner\" => \"rt\", \"project_id\" "},{"event":"cmd_output","timestamp":1607098443,"output":"=> \"5c2d3941-15d5-48a6-8b12-b50369793102\", \"repo_name\" => \"22_skip_block\", \"request_token\" => \"ba23d"},{"event":"cmd_output","timestamp":1607098443,"output":"7f4-364b-11eb-80ea-5254005464e2\", \"requester_id\" => \"a5607421-8a09-4709-9f75-e511d59fb005\", \"service"},{"event":"cmd_output","timestamp":1607098443,"output":"\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"c52c27c0-308"},{"event":"cmd_output","timestamp":1607098443,"output":"b-4004-b62a-3fac8e7ae86a\", \"working_dir\" => \".semaphore/change_in\"}\n\u001b[0m\u001b[22m\n16:14:03.834 [info] "},{"event":"cmd_output","timestamp":1607098443,"output":" ppl_id: da739306-a25f-4d18-b568-035be4f4c617, type: PplRequests, event: persisted schedule request "},{"event":"cmd_output","timestamp":1607098443,"output":"with request_token: ba23d7f4-364b-11eb-80ea-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRe"},{"event":"cmd_output","timestamp":1607098443,"output":"questsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:14:03.836 [info] ppl_id: da739306-a25f-4d18-"},{"event":"cmd_output","timestamp":1607098443,"output":"b568-035be4f4c617, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098443,"output":"Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:14:03.839 [info] Projec"},{"event":"cmd_output","timestamp":1607098443,"output":"t 5c2d3941-15d5-48a6-8b12-b50369793102 and branch include_ymllatest_wf details updated: \"wf_id: c52c"},{"event":"cmd_output","timestamp":1607098443,"output":"27c0-308b-4004-b62a-3fac8e7ae86a, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:14:03.840 [info] Persisted ppl_sub_i"},{"event":"cmd_output","timestamp":1607098443,"output":"nit for pipeline with ppl_id: da739306-a25f-4d18-b568-035be4f4c617: %Ppl.PplSubInits.Model.PplSubIni"},{"event":"cmd_output","timestamp":1607098443,"output":"ts{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_descr"},{"event":"cmd_output","timestamp":1607098443,"output":"iption: nil, id: 318, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:14:0"},{"event":"cmd_output","timestamp":1607098443,"output":"3.839491], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"da739306-a25f-4d18-b568-035be4f4c617\", recovery_count: 0, result: nil, result_reason: "},{"event":"cmd_output","timestamp":1607098443,"output":"nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-0"},{"event":"cmd_output","timestamp":1607098443,"output":"4 16:14:03.839496]}\n\u001b[0m\u001b[22m\n16:14:03.850 [info] ppl_id: da739306-a25f-4d18-b568-035be4f4c617, t"},{"event":"cmd_output","timestamp":1607098443,"output":"ype: PplRequests, event: persisted source_args for pipeline: da739306-a25f-4d18-b568-035be4f4c617, o"},{"event":"cmd_output","timestamp":1607098443,"output":"rigin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:14:03.8"},{"event":"cmd_output","timestamp":1607098443,"output":"53 [info] ppl_id: da739306-a25f-4d18-b568-035be4f4c617, type: PplSubInits, state: fetching, event: "},{"event":"cmd_output","timestamp":1607098443,"output":"exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098443,"output":"22m\n16:14:03.867 [info] ppl_id: da739306-a25f-4d18-b568-035be4f4c617, type: PplSubInits, state: re"},{"event":"cmd_output","timestamp":1607098443,"output":"gular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chan"},{"event":"cmd_output","timestamp":1607098443,"output":"ge/1(L90), \n\u001b[0m\u001b[22m\n16:14:03.892 [info] ppl_id: da739306-a25f-4d18-b568-035be4f4c617, type: Ppl"},{"event":"cmd_output","timestamp":1607098443,"output":"Requests, event: persisted definition for request with request_token: ba23d7f4-364b-11eb-80ea-525400"},{"event":"cmd_output","timestamp":1607098443,"output":"5464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098443,"output":"m\n16:14:03.894 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metad"},{"event":"cmd_output","timestamp":1607098443,"output":"ata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:14:03.893837], name: \"include_yml-.semaphore/c"},{"event":"cmd_output","timestamp":1607098443,"output":"hange_in/one_path.yml\", organization_id: \"366bd6e3-adfe-4931-96af-ce7386aca67c\", project_id: \"5c2d39"},{"event":"cmd_output","timestamp":1607098443,"output":"41-15d5-48a6-8b12-b50369793102\", queue_id: \"8ce026bc-97f3-4c4d-90db-e9c514f9421f\", scope: \"project\","},{"event":"cmd_output","timestamp":1607098443,"output":" updated_at: ~N[2020-12-04 16:14:03.893845], user_generated: false}}\n\u001b[0m\u001b[22m\n16:14:03.898 [info]"},{"event":"cmd_output","timestamp":1607098443,"output":" event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098443,"output":"\u001b[22m\n16:14:03.898 [info] ppl_id: da739306-a25f-4d18-b568-035be4f4c617, type: PplBlocks, block_ind"},{"event":"cmd_output","timestamp":1607098443,"output":"ex: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHan"},{"event":"cmd_output","timestamp":1607098443,"output":"dler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:03.899 [info] ppl_id: da739306-a25f-4d18-"},{"event":"cmd_output","timestamp":1607098443,"output":"b568-035be4f4c617, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_"},{"event":"cmd_output","timestamp":1607098443,"output":"count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:03.906 [info] "},{"event":"cmd_output","timestamp":1607098443,"output":"ppl_id: da739306-a25f-4d18-b568-035be4f4c617, type: Ppls, state: pending, event: exit_scheduling, re"},{"event":"cmd_output","timestamp":1607098443,"output":"covery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:03.906 ["},{"event":"cmd_output","timestamp":1607098443,"output":"info] ppl_id: da739306-a25f-4d18-b568-035be4f4c617, type: PplBlocks, block_index: 0, state: waiting"},{"event":"cmd_output","timestamp":1607098443,"output":", event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90),"},{"event":"cmd_output","timestamp":1607098443,"output":" \n\u001b[0m\u001b[22m\n16:14:03.911 [info] ppl_id: da739306-a25f-4d18-b568-035be4f4c617, type: Ppls, state: "},{"event":"cmd_output","timestamp":1607098443,"output":"queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/"},{"event":"cmd_output","timestamp":1607098443,"output":"1(L90), \n\u001b[0m\u001b[22m\n16:14:03.926 [info] ppl_id: da739306-a25f-4d18-b568-035be4f4c617, type: Ppls, "},{"event":"cmd_output","timestamp":1607098443,"output":"state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_"},{"event":"cmd_output","timestamp":1607098443,"output":"change/1(L90), \n\u001b[0m\u001b[22m\n16:14:03.936 [info] PplBlocks WaitingState STM is scheduling block 0 fr"},{"event":"cmd_output","timestamp":1607098443,"output":"om pipeline: \"da739306-a25f-4d18-b568-035be4f4c617\"\n\u001b[0m\u001b[22m\n16:14:03.944 [info] ppl_id: da73930"},{"event":"cmd_output","timestamp":1607098443,"output":"6-a25f-4d18-b568-035be4f4c617, type: PplBlocks, block_index: 0, state: done, result: passed, event: "},{"event":"cmd_output","timestamp":1607098443,"output":"exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098443,"output":"22m\n16:14:03.952 [info] ppl_id: da739306-a25f-4d18-b568-035be4f4c617, type: Ppls, state: done, res"},{"event":"cmd_output","timestamp":1607098443,"output":"ult: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_cha"},{"event":"cmd_output","timestamp":1607098444,"output":"nge/1(L90), \n\u001b[0m\u001b[32m\r * test change_in includes yml config file by default (269.8ms)\u001b[0m\n * te"},{"event":"cmd_output","timestamp":1607098444,"output":"st change_in does not track yml file when pipeline_file config is set to ignore\u001b[22m\n16:14:04.104 ["},{"event":"cmd_output","timestamp":1607098444,"output":"info] Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.S"},{"event":"cmd_output","timestamp":1607098444,"output":"TMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMH"},{"event":"cmd_output","timestamp":1607098444,"output":"andler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], "},{"event":"cmd_output","timestamp":1607098444,"output":"cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher_c"},{"event":"cmd_output","timestamp":1607098444,"output":"b: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, ret"},{"event":"cmd_output","timestamp":1607098444,"output":"urning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: P"},{"event":"cmd_output","timestamp":1607098444,"output":"pl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:04.104 [info] Periodic from module El"},{"event":"cmd_output","timestamp":1607098444,"output":"ixir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 1"},{"event":"cmd_output","timestamp":1607098444,"output":"00 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args: "},{"event":"cmd_output","timestamp":1607098444,"output":"%{allowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl"},{"event":"cmd_output","timestamp":1607098444,"output":".Ppls.Model.Ppls, observed_state: \"pending\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHand"},{"event":"cmd_output","timestamp":1607098444,"output":"ler.PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :sta"},{"event":"cmd_output","timestamp":1607098444,"output":"te, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSuperv"},{"event":"cmd_output","timestamp":1607098444,"output":"isor}\n\u001b[0m\u001b[22m\n16:14:04.105 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.QueuingState "},{"event":"cmd_output","timestamp":1607098444,"output":"with name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wak"},{"event":"cmd_output","timestamp":1607098444,"output":"e_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{allowed_states: [\"queuing\", \"running"},{"event":"cmd_output","timestamp":1607098444,"output":"\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", pub"},{"event":"cmd_output","timestamp":1607098444,"output":"lisher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, "},{"event":"cmd_output","timestamp":1607098444,"output":"returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema"},{"event":"cmd_output","timestamp":1607098444,"output":": Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:04.105 [info] Periodic from module"},{"event":"cmd_output","timestamp":1607098444,"output":" Elixir.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHandler.RunningState :: period"},{"event":"cmd_output","timestamp":1607098444,"output":": 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring arg"},{"event":"cmd_output","timestamp":1607098444,"output":"s: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls."},{"event":"cmd_output","timestamp":1607098444,"output":"Model.Ppls, observed_state: \"running\", publisher_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler.R"},{"event":"cmd_output","timestamp":1607098444,"output":"unningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :"},{"event":"cmd_output","timestamp":1607098444,"output":"result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}"},{"event":"cmd_output","timestamp":1607098444,"output":"\n\u001b[0m\u001b[22m\n16:14:04.106 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.StoppingState with"},{"event":"cmd_output","timestamp":1607098444,"output":" name Elixir.Ppl.Ppls.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_u"},{"event":"cmd_output","timestamp":1607098444,"output":"p\", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], "},{"event":"cmd_output","timestamp":1607098444,"output":"cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"stopping\", publisher_cb: "},{"event":"cmd_output","timestamp":1607098444,"output":"#Function<0.71803493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: "},{"event":"cmd_output","timestamp":1607098444,"output":"[:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls."},{"event":"cmd_output","timestamp":1607098444,"output":"Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:04.106 [info] Periodic from module Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098444,"output":".PplSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: per"},{"event":"cmd_output","timestamp":1607098444,"output":"iod: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, rec"},{"event":"cmd_output","timestamp":1607098444,"output":"urring args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubI"},{"event":"cmd_output","timestamp":1607098444,"output":"nits.Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returnin"},{"event":"cmd_output","timestamp":1607098444,"output":"g: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Pp"},{"event":"cmd_output","timestamp":1607098444,"output":"lSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:04.106 [info] Periodic from "},{"event":"cmd_output","timestamp":1607098444,"output":"module Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler.F"},{"event":"cmd_output","timestamp":1607098444,"output":"etchingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-F"},{"event":"cmd_output","timestamp":1607098444,"output":"etchingState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"done\"], cooling_"},{"event":"cmd_output","timestamp":1607098444,"output":"time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fetching\", publishe"},{"event":"cmd_output","timestamp":1607098444,"output":"r_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, "},{"event":"cmd_output","timestamp":1607098444,"output":":recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098444,"output":"[22m\n16:14:04.107 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CompilationState w"},{"event":"cmd_output","timestamp":1607098444,"output":"ith name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 100 ms, metric_name: {\"Ppl.be"},{"event":"cmd_output","timestamp":1607098444,"output":"holder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurring args: %{allowed_states:"},{"event":"cmd_output","timestamp":1607098444,"output":" [\"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSu"},{"event":"cmd_output","timestamp":1607098444,"output":"bInits.Model.PplSubInits, observed_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, re"},{"event":"cmd_output","timestamp":1607098444,"output":"turning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: "},{"event":"cmd_output","timestamp":1607098444,"output":"Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:04.107 [info] Periodic"},{"event":"cmd_output","timestamp":1607098444,"output":" from module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.STM"},{"event":"cmd_output","timestamp":1607098444,"output":"Handler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-"},{"event":"cmd_output","timestamp":1607098444,"output":"STMHandler-RegularInitState\"]}, recurring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, ini"},{"event":"cmd_output","timestamp":1607098444,"output":"tial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_init\", publisher_cb: :skip, "},{"event":"cmd_output","timestamp":1607098444,"output":"repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_cou"},{"event":"cmd_output","timestamp":1607098444,"output":"nt, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:0"},{"event":"cmd_output","timestamp":1607098444,"output":"4.107 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.InitializingState with name Elixi"},{"event":"cmd_output","timestamp":1607098444,"output":"r.Ppl.PplBlocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\""},{"event":"cmd_output","timestamp":1607098444,"output":", [\"Ppl-PplBlocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\""},{"event":"cmd_output","timestamp":1607098444,"output":", \"waiting\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_st"},{"event":"cmd_output","timestamp":1607098444,"output":"ate: \"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :"},{"event":"cmd_output","timestamp":1607098444,"output":"updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.Pp"},{"event":"cmd_output","timestamp":1607098444,"output":"lBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:04.108 [info] Periodic from module Elixir.Ppl.Pp"},{"event":"cmd_output","timestamp":1607098444,"output":"lBlocks.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler.WaitingState :: period: 10"},{"event":"cmd_output","timestamp":1607098444,"output":"00 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurring a"},{"event":"cmd_output","timestamp":1607098444,"output":"rgs: %{allowed_states: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBl"},{"event":"cmd_output","timestamp":1607098444,"output":"ocks.Model.PplBlocks, observed_state: \"waiting\", publisher_cb: #Function<0.8975022/1 in Ppl.PplBlock"},{"event":"cmd_output","timestamp":1607098444,"output":"s.STMHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated"},{"event":"cmd_output","timestamp":1607098444,"output":"_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks"},{"event":"cmd_output","timestamp":1607098444,"output":", task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:04.108 [info] Periodic from module Elixir.Ppl.PplBlocks"},{"event":"cmd_output","timestamp":1607098444,"output":".STMHandler.RunningState with name Elixir.Ppl.PplBlocks.STMHandler.RunningState :: period: 1000 ms, "},{"event":"cmd_output","timestamp":1607098444,"output":"metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, recurring args: %{"},{"event":"cmd_output","timestamp":1607098444,"output":"allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks."},{"event":"cmd_output","timestamp":1607098444,"output":"Model.PplBlocks, observed_state: \"running\", publisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.ST"},{"event":"cmd_output","timestamp":1607098444,"output":"MHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at,"},{"event":"cmd_output","timestamp":1607098444,"output":" :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.Pp"},{"event":"cmd_output","timestamp":1607098444,"output":"lBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:04.109 [info] Periodic from module Elixir.Ppl.Pp"},{"event":"cmd_output","timestamp":1607098444,"output":"lBlocks.STMHandler.StoppingState with name Elixir.Ppl.PplBlocks.STMHandler.StoppingState :: period: "},{"event":"cmd_output","timestamp":1607098444,"output":"1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurrin"},{"event":"cmd_output","timestamp":1607098444,"output":"g args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.M"},{"event":"cmd_output","timestamp":1607098444,"output":"odel.PplBlocks, observed_state: \"stopping\", publisher_cb: #Function<0.104215991/1 in Ppl.PplBlocks.S"},{"event":"cmd_output","timestamp":1607098444,"output":"TMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_a"},{"event":"cmd_output","timestamp":1607098444,"output":"t, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model."},{"event":"cmd_output","timestamp":1607098444,"output":"PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:04.110 [info] Periodic from module Elixir.Bloc"},{"event":"cmd_output","timestamp":1607098444,"output":"k.Blocks.STMHandler.InitializingState with name Elixir.Block.Blocks.STMHandler.InitializingState :: "},{"event":"cmd_output","timestamp":1607098444,"output":"period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-InitializingState\"]}"},{"event":"cmd_output","timestamp":1607098444,"output":", recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.B"},{"event":"cmd_output","timestamp":1607098444,"output":"locks.Model.Blocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Block.EctoRepo, retur"},{"event":"cmd_output","timestamp":1607098444,"output":"ning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Bloc"},{"event":"cmd_output","timestamp":1607098444,"output":"ks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:04.111 [info] Periodic from module Elixi"},{"event":"cmd_output","timestamp":1607098444,"output":"r.Block.Blocks.STMHandler.RunningState with name Elixir.Block.Blocks.STMHandler.RunningState :: peri"},{"event":"cmd_output","timestamp":1607098444,"output":"od: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-RunningState\"]}, recurri"},{"event":"cmd_output","timestamp":1607098444,"output":"ng args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Blo"},{"event":"cmd_output","timestamp":1607098444,"output":"ck.Blocks.Model.Blocks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, return"},{"event":"cmd_output","timestamp":1607098444,"output":"ing: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Block"},{"event":"cmd_output","timestamp":1607098444,"output":"s.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:04.111 [info] Periodic from module Elixir"},{"event":"cmd_output","timestamp":1607098444,"output":".Block.Blocks.STMHandler.StoppingState with name Elixir.Block.Blocks.STMHandler.StoppingState :: per"},{"event":"cmd_output","timestamp":1607098444,"output":"iod: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-StoppingState\"]}, recur"},{"event":"cmd_output","timestamp":1607098444,"output":"ring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks"},{"event":"cmd_output","timestamp":1607098444,"output":".Model.Blocks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:i"},{"event":"cmd_output","timestamp":1607098444,"output":"d, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model."},{"event":"cmd_output","timestamp":1607098444,"output":"Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:04.112 [info] Periodic from module Elixir.Block.T"},{"event":"cmd_output","timestamp":1607098444,"output":"asks.STMHandler.PendingState with name Elixir.Block.Tasks.STMHandler.PendingState :: period: 100 ms,"},{"event":"cmd_output","timestamp":1607098444,"output":" metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingState\"]}, recurring args: %{a"},{"event":"cmd_output","timestamp":1607098444,"output":"llowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Tasks.Model.Tasks, obs"},{"event":"cmd_output","timestamp":1607098444,"output":"erved_state: \"pending\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_reque"},{"event":"cmd_output","timestamp":1607098444,"output":"st, :updated_at, :state, :recovery_count, :block_id, :build_request_id], schema: Block.Tasks.Model.T"},{"event":"cmd_output","timestamp":1607098444,"output":"asks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:04.112 [info] Periodic from module Elixir.Block.Tas"},{"event":"cmd_output","timestamp":1607098444,"output":"ks.STMHandler.RunningState with name Elixir.Block.Tasks.STMHandler.RunningState :: period: 100 ms, m"},{"event":"cmd_output","timestamp":1607098444,"output":"etric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningState\"]}, recurring args: %{all"},{"event":"cmd_output","timestamp":1607098444,"output":"owed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model"},{"event":"cmd_output","timestamp":1607098444,"output":".Tasks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :term"},{"event":"cmd_output","timestamp":1607098444,"output":"inate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, ta"},{"event":"cmd_output","timestamp":1607098444,"output":"sk_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:04.113 [info] Periodic from module Elixir.Block.Tasks.STMHa"},{"event":"cmd_output","timestamp":1607098444,"output":"ndler.StoppingState with name Elixir.Block.Tasks.STMHandler.StoppingState :: period: 100 ms, metric_"},{"event":"cmd_output","timestamp":1607098444,"output":"name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]}, recurring args: %{allowed_"},{"event":"cmd_output","timestamp":1607098444,"output":"states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed"},{"event":"cmd_output","timestamp":1607098444,"output":"_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, "},{"event":"cmd_output","timestamp":1607098444,"output":":updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: "},{"event":"cmd_output","timestamp":1607098444,"output":":skip}\n\u001b[0m\u001b[22m\n16:14:04.126 [info] Request: 'run: %{\"branch_id\" => \"a56cc10d-16c0-4876-958c-734"},{"event":"cmd_output","timestamp":1607098444,"output":"01ad134f8\", \"branch_name\" => \"config_ppl_file\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"config"},{"event":"cmd_output","timestamp":1607098444,"output":"_ppl_file.yml\", \"hook_id\" => \"ba4f52a8-364b-11eb-aa67-5254005464e2\", \"label\" => \"config_ppl_file\", \""},{"event":"cmd_output","timestamp":1607098444,"output":"organization_id\" => \"87cb25ba-7f56-4b8d-aed0-d230d7fcac45\", \"owner\" => \"rt\", \"project_id\" => \"f2a3d5"},{"event":"cmd_output","timestamp":1607098444,"output":"ae-53c0-498c-be6d-dbb16284016e\", \"repo_name\" => \"22_skip_block\", \"request_token\" => \"ba4f4b1e-364b-1"},{"event":"cmd_output","timestamp":1607098444,"output":"1eb-9296-5254005464e2\", \"requester_id\" => \"cb0361f2-f713-4ebc-8e9d-43c61f49893b\", \"service\" => \"loca"},{"event":"cmd_output","timestamp":1607098444,"output":"l\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"14d91637-c94d-4f3d-ab8"},{"event":"cmd_output","timestamp":1607098444,"output":"d-32718da055dc\", \"working_dir\" => \".semaphore/change_in\"}\n\u001b[0m\u001b[22m\n16:14:04.127 [info] ppl_id: 5"},{"event":"cmd_output","timestamp":1607098444,"output":"1ed53a2-13a0-4926-9c66-287f1e5e6633, type: PplRequests, event: persisted schedule request with reque"},{"event":"cmd_output","timestamp":1607098444,"output":"st_token: ba4f4b1e-364b-11eb-9296-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQuer"},{"event":"cmd_output","timestamp":1607098444,"output":"ies.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:14:04.130 [info] ppl_id: 51ed53a2-13a0-4926-9c66-287f1"},{"event":"cmd_output","timestamp":1607098444,"output":"e5e6633, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098444,"output":".Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:14:04.134 [info] Project f2a3d5ae"},{"event":"cmd_output","timestamp":1607098444,"output":"-53c0-498c-be6d-dbb16284016e and branch config_ppl_filelatest_wf details updated: \"wf_id: 14d91637-c"},{"event":"cmd_output","timestamp":1607098444,"output":"94d-4f3d-ab8d-32718da055dc, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:14:04.135 [info] Persisted ppl_sub_init fo"},{"event":"cmd_output","timestamp":1607098444,"output":"r pipeline with ppl_id: 51ed53a2-13a0-4926-9c66-287f1e5e6633: %Ppl.PplSubInits.Model.PplSubInits{__m"},{"event":"cmd_output","timestamp":1607098444,"output":"eta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description"},{"event":"cmd_output","timestamp":1607098444,"output":": nil, id: 319, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:14:04.1345"},{"event":"cmd_output","timestamp":1607098444,"output":"97], pipeline_requests: #Ecto.Association.NotLoaded, p"},{"event":"cmd_output","timestamp":1607098444,"output":"pl_id: \"51ed53a2-13a0-4926-9c66-287f1e5e6633\", recovery_count: 0, result: nil, result_reason: nil, s"},{"event":"cmd_output","timestamp":1607098444,"output":"tate: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:1"},{"event":"cmd_output","timestamp":1607098444,"output":"4:04.134616]}\n\u001b[0m\u001b[22m\n16:14:04.144 [info] ppl_id: 51ed53a2-13a0-4926-9c66-287f1e5e6633, type: P"},{"event":"cmd_output","timestamp":1607098444,"output":"plRequests, event: persisted source_args for pipeline: 51ed53a2-13a0-4926-9c66-287f1e5e6633, origin:"},{"event":"cmd_output","timestamp":1607098444,"output":" Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:14:04.146 [in"},{"event":"cmd_output","timestamp":1607098444,"output":"fo] ppl_id: 51ed53a2-13a0-4926-9c66-287f1e5e6633, type: PplSubInits, state: fetching, event: exit_s"},{"event":"cmd_output","timestamp":1607098444,"output":"cheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098444,"output":"6:14:04.161 [info] ppl_id: 51ed53a2-13a0-4926-9c66-287f1e5e6633, type: PplSubInits, state: regular_"},{"event":"cmd_output","timestamp":1607098444,"output":"init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098444,"output":"90), \n\u001b[0m\u001b[22m\n16:14:04.179 [info] ppl_id: 51ed53a2-13a0-4926-9c66-287f1e5e6633, type: PplReques"},{"event":"cmd_output","timestamp":1607098444,"output":"ts, event: persisted definition for request with request_token: ba4f4b1e-364b-11eb-9296-5254005464e2"},{"event":"cmd_output","timestamp":1607098444,"output":", origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098444,"output":"14:04.182 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:l"},{"event":"cmd_output","timestamp":1607098444,"output":"oaded, \"queues\">, inserted_at: ~N[2020-12-04 16:14:04.181332], name: \"config_ppl_file-.semaphore/cha"},{"event":"cmd_output","timestamp":1607098444,"output":"nge_in/config_ppl_file.yml\", organization_id: \"87cb25ba-7f56-4b8d-aed0-d230d7fcac45\", project_id: \"f"},{"event":"cmd_output","timestamp":1607098444,"output":"2a3d5ae-53c0-498c-be6d-dbb16284016e\", queue_id: \"6dfa7265-7493-4914-b825-639b79d56abe\", scope: \"proj"},{"event":"cmd_output","timestamp":1607098444,"output":"ect\", updated_at: ~N[2020-12-04 16:14:04.181340], user_generated: false}}\n\u001b[0m\u001b[22m\n16:14:04.186 ["},{"event":"cmd_output","timestamp":1607098444,"output":"info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \r"},{"event":"cmd_output","timestamp":1607098444,"output":"\n\u001b[0m\u001b[22m\n16:14:04.186 [info] ppl_id: 51ed53a2-13a0-4926-9c66-287f1e5e6633, type: PplBlocks, bloc"},{"event":"cmd_output","timestamp":1607098444,"output":"k_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.S"},{"event":"cmd_output","timestamp":1607098444,"output":"TMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:04.187 [info] ppl_id: 51ed53a2-13a0-"},{"event":"cmd_output","timestamp":1607098444,"output":"4926-9c66-287f1e5e6633, type: PplSubInits, state: done, result: passed, event: exit_scheduling, reco"},{"event":"cmd_output","timestamp":1607098444,"output":"very_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:04.194 [in"},{"event":"cmd_output","timestamp":1607098444,"output":"fo] ppl_id: 51ed53a2-13a0-4926-9c66-287f1e5e6633, type: PplBlocks, block_index: 0, state: waiting, "},{"event":"cmd_output","timestamp":1607098444,"output":"event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \r"},{"event":"cmd_output","timestamp":1607098444,"output":"\n\u001b[0m\u001b[22m\n16:14:04.194 [info] ppl_id: 51ed53a2-13a0-4926-9c66-287f1e5e6633, type: Ppls, state: pe"},{"event":"cmd_output","timestamp":1607098444,"output":"nding, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1("},{"event":"cmd_output","timestamp":1607098444,"output":"L90), \n\u001b[0m\u001b[22m\n16:14:04.211 [info] ppl_id: 51ed53a2-13a0-4926-9c66-287f1e5e6633, type: Ppls, st"},{"event":"cmd_output","timestamp":1607098444,"output":"ate: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_ch"},{"event":"cmd_output","timestamp":1607098444,"output":"ange/1(L90), \n\u001b[0m\u001b[22m\n16:14:04.223 [info] ppl_id: 51ed53a2-13a0-4926-9c66-287f1e5e6633, type: P"},{"event":"cmd_output","timestamp":1607098444,"output":"pls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_s"},{"event":"cmd_output","timestamp":1607098444,"output":"tate_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:04.231 [info] PplBlocks WaitingState STM is scheduling block"},{"event":"cmd_output","timestamp":1607098444,"output":" 0 from pipeline: \"51ed53a2-13a0-4926-9c66-287f1e5e6633\"\n\u001b[0m\u001b[22m\n16:14:04.237 [info] ppl_id: 51"},{"event":"cmd_output","timestamp":1607098444,"output":"ed53a2-13a0-4926-9c66-287f1e5e6633, type: PplBlocks, block_index: 0, state: done, result: passed, ev"},{"event":"cmd_output","timestamp":1607098444,"output":"ent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b"},{"event":"cmd_output","timestamp":1607098444,"output":"[0m\u001b[22m\n16:14:04.244 [info] ppl_id: 51ed53a2-13a0-4926-9c66-287f1e5e6633, type: Ppls, state: done"},{"event":"cmd_output","timestamp":1607098444,"output":", result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_stat"},{"event":"cmd_output","timestamp":1607098444,"output":"e_change/1(L90), \n\u001b[0m\u001b[32m\r * test change_in does not track yml file when pipeline_file config is"},{"event":"cmd_output","timestamp":1607098444,"output":" set to ignore (292.4ms)\u001b[0m\n * test malformed change_in() causes pipeline to fail with maformed r"},{"event":"cmd_output","timestamp":1607098444,"output":"eason\u001b[22m\n16:14:04.402 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingState w"},{"event":"cmd_output","timestamp":1607098444,"output":"ith name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder"},{"event":"cmd_output","timestamp":1607098444,"output":"-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializ"},{"event":"cmd_output","timestamp":1607098444,"output":"ing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \""},{"event":"cmd_output","timestamp":1607098444,"output":"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0"},{"event":"cmd_output","timestamp":1607098444,"output":">, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_"},{"event":"cmd_output","timestamp":1607098444,"output":"count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:04.403 [info"},{"event":"cmd_output","timestamp":1607098444,"output":"] Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler"},{"event":"cmd_output","timestamp":1607098444,"output":".PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Pending"},{"event":"cmd_output","timestamp":1607098444,"output":"State\"]}, recurring args: %{allowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_"},{"event":"cmd_output","timestamp":1607098444,"output":"sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publisher_cb: #Function<0.849"},{"event":"cmd_output","timestamp":1607098444,"output":"3005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_"},{"event":"cmd_output","timestamp":1607098444,"output":"request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_"},{"event":"cmd_output","timestamp":1607098444,"output":"supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:14:04.404 [info] Periodic from module Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098444,"output":"s.STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, metri"},{"event":"cmd_output","timestamp":1607098444,"output":"c_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{allowed_st"},{"event":"cmd_output","timestamp":1607098444,"output":"ates: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, obse"},{"event":"cmd_output","timestamp":1607098444,"output":"rved_state: \"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.arg"},{"event":"cmd_output","timestamp":1607098444,"output":"s/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recove"},{"event":"cmd_output","timestamp":1607098444,"output":"ry_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:04.404 [i"},{"event":"cmd_output","timestamp":1607098444,"output":"nfo] Periodic from module Elixir.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHand"},{"event":"cmd_output","timestamp":1607098444,"output":"ler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Runn"},{"event":"cmd_output","timestamp":1607098444,"output":"ingState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2"},{"event":"cmd_output","timestamp":1607098444,"output":", initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"running\", publisher_cb: #Function<0.74670282/"},{"event":"cmd_output","timestamp":1607098444,"output":"1 in Ppl.Ppls.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_reque"},{"event":"cmd_output","timestamp":1607098444,"output":"st, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_super"},{"event":"cmd_output","timestamp":1607098444,"output":"visor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:14:04.405 [info] Periodic from module Elixir.Ppl.Ppls.STM"},{"event":"cmd_output","timestamp":1607098444,"output":"Handler.StoppingState with name Elixir.Ppl.Ppls.STMHandler.StoppingState :: period: 100 ms, metric_n"},{"event":"cmd_output","timestamp":1607098444,"output":"ame: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring args: %{allowed_stat"},{"event":"cmd_output","timestamp":1607098444,"output":"es: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: "},{"event":"cmd_output","timestamp":1607098444,"output":"\"stopping\", publisher_cb: #Function<0.71803493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, repo:"},{"event":"cmd_output","timestamp":1607098444,"output":" Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :"},{"event":"cmd_output","timestamp":1607098444,"output":"ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:04.405 [info] Perio"},{"event":"cmd_output","timestamp":1607098444,"output":"dic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMH"},{"event":"cmd_output","timestamp":1607098444,"output":"andler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHa"},{"event":"cmd_output","timestamp":1607098444,"output":"ndler-CreatedState\"]}, recurring args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, "},{"event":"cmd_output","timestamp":1607098444,"output":"initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip, re"},{"event":"cmd_output","timestamp":1607098444,"output":"po: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count"},{"event":"cmd_output","timestamp":1607098444,"output":", :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:04."},{"event":"cmd_output","timestamp":1607098444,"output":"406 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Pp"},{"event":"cmd_output","timestamp":1607098444,"output":"l.PplSubInits.STMHandler.FetchingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Pp"},{"event":"cmd_output","timestamp":1607098444,"output":"l-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compi"},{"event":"cmd_output","timestamp":1607098444,"output":"lation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_s"},{"event":"cmd_output","timestamp":1607098444,"output":"tate: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :upd"},{"event":"cmd_output","timestamp":1607098444,"output":"ated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task"},{"event":"cmd_output","timestamp":1607098444,"output":"_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:04.407 [info] Periodic from module Elixir.Ppl.PplSubInits.STM"},{"event":"cmd_output","timestamp":1607098444,"output":"Handler.CompilationState with name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 100"},{"event":"cmd_output","timestamp":1607098444,"output":" ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurri"},{"event":"cmd_output","timestamp":1607098444,"output":"ng args: %{allowed_states: [\"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2"},{"event":"cmd_output","timestamp":1607098444,"output":", initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"compilation\", publisher_cb: :sk"},{"event":"cmd_output","timestamp":1607098444,"output":"ip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery"},{"event":"cmd_output","timestamp":1607098444,"output":"_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098444,"output":"14:04.407 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with name "},{"event":"cmd_output","timestamp":1607098444,"output":"Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wa"},{"event":"cmd_output","timestamp":1607098444,"output":"ke_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurring args: %{allowed_states: [\"done\"]"},{"event":"cmd_output","timestamp":1607098444,"output":", cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_in"},{"event":"cmd_output","timestamp":1607098444,"output":"it\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :sta"},{"event":"cmd_output","timestamp":1607098444,"output":"te, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: "},{"event":"cmd_output","timestamp":1607098444,"output":":skip}\n\u001b[0m\u001b[22m\n16:14:04.408 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.Initial"},{"event":"cmd_output","timestamp":1607098444,"output":"izingState with name Elixir.Ppl.PplBlocks.STMHandler.InitializingState :: period: 100 ms, metric_nam"},{"event":"cmd_output","timestamp":1607098444,"output":"e: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-InitializingState\"]}, recurring args: %{allow"},{"event":"cmd_output","timestamp":1607098444,"output":"ed_states: [\"initializing\", \"waiting\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Mo"},{"event":"cmd_output","timestamp":1607098444,"output":"del.PplBlocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: ["},{"event":"cmd_output","timestamp":1607098444,"output":":id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], sche"},{"event":"cmd_output","timestamp":1607098444,"output":"ma: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:04.409 [info] Periodic"},{"event":"cmd_output","timestamp":1607098444,"output":" from module Elixir.Ppl.PplBlocks.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler."},{"event":"cmd_output","timestamp":1607098444,"output":"WaitingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-Wa"},{"event":"cmd_output","timestamp":1607098444,"output":"itingState\"]}, recurring args: %{allowed_states: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 0"},{"event":"cmd_output","timestamp":1607098444,"output":", initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"waiting\", publisher_cb: #Function<0"},{"event":"cmd_output","timestamp":1607098444,"output":".8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :t"},{"event":"cmd_output","timestamp":1607098444,"output":"erminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl"},{"event":"cmd_output","timestamp":1607098444,"output":".PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:04.409 [info] Periodic from m"},{"event":"cmd_output","timestamp":1607098444,"output":"odule Elixir.Ppl.PplBlocks.STMHandler.RunningState with name Elixir.Ppl.PplBlocks.STMHandler.Running"},{"event":"cmd_output","timestamp":1607098444,"output":"State :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningSt"},{"event":"cmd_output","timestamp":1607098444,"output":"ate\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, ini"},{"event":"cmd_output","timestamp":1607098444,"output":"tial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"running\", publisher_cb: #Function<0.2816"},{"event":"cmd_output","timestamp":1607098444,"output":"6834/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :termi"},{"event":"cmd_output","timestamp":1607098444,"output":"nate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], sche"},{"event":"cmd_output","timestamp":1607098444,"output":"ma: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:04.410 [info] Periodic"},{"event":"cmd_output","timestamp":1607098444,"output":" from module Elixir.Ppl.PplBlocks.STMHandler.StoppingState with name Elixir.Ppl.PplBlocks.STMHandler"},{"event":"cmd_output","timestamp":1607098444,"output":".StoppingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-"},{"event":"cmd_output","timestamp":1607098444,"output":"StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, init"},{"event":"cmd_output","timestamp":1607098444,"output":"ial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"stopping\", publisher_cb: #Function<0.1042"},{"event":"cmd_output","timestamp":1607098444,"output":"15991/1 in Ppl.PplBlocks.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :ter"},{"event":"cmd_output","timestamp":1607098444,"output":"minate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], sc"},{"event":"cmd_output","timestamp":1607098444,"output":"hema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:04.410 [info] Period"},{"event":"cmd_output","timestamp":1607098444,"output":"ic from module Elixir.Block.Blocks.STMHandler.InitializingState with name Elixir.Block.Blocks.STMHan"},{"event":"cmd_output","timestamp":1607098444,"output":"dler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHa"},{"event":"cmd_output","timestamp":1607098444,"output":"ndler-InitializingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec:"},{"event":"cmd_output","timestamp":1607098444,"output":" 0, initial_query: Block.Blocks.Model.Blocks, observed_state: \"initializing\", publisher_cb: :skip, r"},{"event":"cmd_output","timestamp":1607098444,"output":"epo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :blo"},{"event":"cmd_output","timestamp":1607098444,"output":"ck_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:04.411 [info] "},{"event":"cmd_output","timestamp":1607098444,"output":"Periodic from module Elixir.Block.Blocks.STMHandler.RunningState with name Elixir.Block.Blocks.STMHa"},{"event":"cmd_output","timestamp":1607098444,"output":"ndler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandle"},{"event":"cmd_output","timestamp":1607098444,"output":"r-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_s"},{"event":"cmd_output","timestamp":1607098444,"output":"ec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"running\", publisher_cb: :skip, re"},{"event":"cmd_output","timestamp":1607098444,"output":"po: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :bloc"},{"event":"cmd_output","timestamp":1607098444,"output":"k_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:04.411 [info] P"},{"event":"cmd_output","timestamp":1607098444,"output":"eriodic from module Elixir.Block.Blocks.STMHandler.StoppingState with name Elixir.Block.Blocks.STMHa"},{"event":"cmd_output","timestamp":1607098444,"output":"ndler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandl"},{"event":"cmd_output","timestamp":1607098444,"output":"er-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, i"},{"event":"cmd_output","timestamp":1607098444,"output":"nitial_query: Block.Blocks.Model.Blocks, observed_state: \"stopping\", publisher_cb: :skip, repo: Bloc"},{"event":"cmd_output","timestamp":1607098444,"output":"k.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], s"},{"event":"cmd_output","timestamp":1607098444,"output":"chema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:04.412 [info] Periodic "},{"event":"cmd_output","timestamp":1607098444,"output":"from module Elixir.Block.Tasks.STMHandler.PendingState with name Elixir.Block.Tasks.STMHandler.Pendi"},{"event":"cmd_output","timestamp":1607098444,"output":"ngState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingSta"},{"event":"cmd_output","timestamp":1607098444,"output":"te\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Bl"},{"event":"cmd_output","timestamp":1607098444,"output":"ock.Tasks.Model.Tasks, observed_state: \"pending\", publisher_cb: :skip, repo: Block.EctoRepo, returni"},{"event":"cmd_output","timestamp":1607098444,"output":"ng: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id, :build_request_id], s"},{"event":"cmd_output","timestamp":1607098444,"output":"chema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:04.412 [info] Periodic fr"},{"event":"cmd_output","timestamp":1607098444,"output":"om module Elixir.Block.Tasks.STMHandler.RunningState with name Elixir.Block.Tasks.STMHandler.Running"},{"event":"cmd_output","timestamp":1607098444,"output":"State :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningState"},{"event":"cmd_output","timestamp":1607098444,"output":"\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initia"},{"event":"cmd_output","timestamp":1607098444,"output":"l_query: Block.Tasks.Model.Tasks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRe"},{"event":"cmd_output","timestamp":1607098444,"output":"po, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: B"},{"event":"cmd_output","timestamp":1607098444,"output":"lock.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:04.413 [info] Periodic from modul"},{"event":"cmd_output","timestamp":1607098444,"output":"e Elixir.Block.Tasks.STMHandler.StoppingState with name Elixir.Block.Tasks.STMHandler.StoppingState "},{"event":"cmd_output","timestamp":1607098444,"output":":: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]}, "},{"event":"cmd_output","timestamp":1607098444,"output":"recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.T"},{"event":"cmd_output","timestamp":1607098444,"output":"asks.Model.Tasks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: "},{"event":"cmd_output","timestamp":1607098444,"output":"[:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Mode"},{"event":"cmd_output","timestamp":1607098444,"output":"l.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:04.416 [info] Request: 'run: %{\"branch_id\" => \"3"},{"event":"cmd_output","timestamp":1607098444,"output":"6594455-2f45-4157-88b7-a19bf15dbd5a\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469\", \"file"},{"event":"cmd_output","timestamp":1607098444,"output":"_name\" => \"malformed.yml\", \"hook_id\" => \"ba7d35a6-364b-11eb-a606-5254005464e2\", \"label\" => \"master\","},{"event":"cmd_output","timestamp":1607098444,"output":" \"organization_id\" => \"6a4e215b-1640-468f-9fbc-4101f5bda4a6\", \"owner\" => \"rt\", \"project_id\" => \"099b"},{"event":"cmd_output","timestamp":1607098444,"output":"5132-8ea3-4729-a9d1-20ab4c55a173\", \"repo_name\" => \"22_skip_block\", \"request_token\" => \"ba7d2c14-364b"},{"event":"cmd_output","timestamp":1607098444,"output":"-11eb-a9d3-5254005464e2\", \"requester_id\" => \"4236e611-924f-4c87-ba72-45f078be764b\", \"service\" => \"lo"},{"event":"cmd_output","timestamp":1607098444,"output":"cal\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"b7d768ed-fbda-4e2f-a"},{"event":"cmd_output","timestamp":1607098444,"output":"b39-f3a2c3cc693f\", \"working_dir\" => \".semaphore/change_in\"}\n\u001b[0m\u001b[22m\n16:14:04.426 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098444,"output":" d0bb9232-10b3-4f06-8bd1-f2c1bbc3c263, type: PplRequests, event: persisted schedule request with req"},{"event":"cmd_output","timestamp":1607098444,"output":"uest_token: ba7d2c14-364b-11eb-a9d3-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQu"},{"event":"cmd_output","timestamp":1607098444,"output":"eries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:14:04.428 [info] ppl_id: d0bb9232-10b3-4f06-8bd1-f2c"},{"event":"cmd_output","timestamp":1607098444,"output":"1bbc3c263, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.P"},{"event":"cmd_output","timestamp":1607098444,"output":"pl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:14:04.432 [info] Project 099b51"},{"event":"cmd_output","timestamp":1607098444,"output":"32-8ea3-4729-a9d1-20ab4c55a173 and branch masterlatest_wf details updated: \"wf_id: b7d768ed-fbda-4e2"},{"event":"cmd_output","timestamp":1607098444,"output":"f-ab39-f3a2c3cc693f, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:14:04.434 [info] Persisted ppl_sub_init for pipel"},{"event":"cmd_output","timestamp":1607098444,"output":"ine with ppl_id: d0bb9232-10b3-4f06-8bd1-f2c1bbc3c263: %Ppl.PplSubInits.Model.PplSubInits{__meta__: "},{"event":"cmd_output","timestamp":1607098444,"output":"#Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, "},{"event":"cmd_output","timestamp":1607098444,"output":"id: 320, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:14:04.432959], pi"},{"event":"cmd_output","timestamp":1607098444,"output":"peline_requests: #Ecto.Association.NotLoaded, ppl_id: "},{"event":"cmd_output","timestamp":1607098444,"output":"\"d0bb9232-10b3-4f06-8bd1-f2c1bbc3c263\", recovery_count: 0, result: nil, result_reason: nil, state: \""},{"event":"cmd_output","timestamp":1607098444,"output":"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:14:04.43"},{"event":"cmd_output","timestamp":1607098444,"output":"2965]}\n\u001b[0m\u001b[22m\n16:14:04.445 [info] ppl_id: d0bb9232-10b3-4f06-8bd1-f2c1bbc3c263, type: PplReque"},{"event":"cmd_output","timestamp":1607098444,"output":"sts, event: persisted source_args for pipeline: d0bb9232-10b3-4f06-8bd1-f2c1bbc3c263, origin: Elixir"},{"event":"cmd_output","timestamp":1607098444,"output":".Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:14:04.447 [info] pp"},{"event":"cmd_output","timestamp":1607098444,"output":"l_id: d0bb9232-10b3-4f06-8bd1-f2c1bbc3c263, type: PplSubInits, state: fetching, event: exit_scheduli"},{"event":"cmd_output","timestamp":1607098444,"output":"ng, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:04"},{"event":"cmd_output","timestamp":1607098444,"output":".473 [info] ppl_id: d0bb9232-10b3-4f06-8bd1-f2c1bbc3c263, type: PplSubInits, state: regular_init, e"},{"event":"cmd_output","timestamp":1607098444,"output":"vent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n"},{"event":"cmd_output","timestamp":1607098444,"output":"\u001b[0m\u001b[22m\n16:14:04.492 [info] ppl_id: d0bb9232-10b3-4f06-8bd1-f2c1bbc3c263, type: PplRequests, eve"},{"event":"cmd_output","timestamp":1607098444,"output":"nt: persisted definition for request with request_token: ba7d2c14-364b-11eb-a9d3-5254005464e2, origi"},{"event":"cmd_output","timestamp":1607098444,"output":"n: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:14:04.4"},{"event":"cmd_output","timestamp":1607098444,"output":"95 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, "},{"event":"cmd_output","timestamp":1607098444,"output":"\"queues\">, inserted_at: ~N[2020-12-04 16:14:04.494117], name: \"master-.semaphore/change_in/malformed"},{"event":"cmd_output","timestamp":1607098444,"output":".yml\", organization_id: \"6a4e215b-1640-468f-9fbc-4101f5bda4a6\", project_id: \"099b5132-8ea3-4729-a9d1"},{"event":"cmd_output","timestamp":1607098444,"output":"-20ab4c55a173\", queue_id: \"0b0ef6f5-f7a6-4883-914f-2951a02eeb6d\", scope: \"project\", updated_at: ~N[2"},{"event":"cmd_output","timestamp":1607098444,"output":"020-12-04 16:14:04.494143], user_generated: false}}\n\u001b[0m\u001b[22m\n16:14:04.498 [info] event: created,"},{"event":"cmd_output","timestamp":1607098444,"output":" origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:04.4"},{"event":"cmd_output","timestamp":1607098444,"output":"98 [info] ppl_id: d0bb9232-10b3-4f06-8bd1-f2c1bbc3c263, type: PplBlocks, block_index: 0, state: ini"},{"event":"cmd_output","timestamp":1607098444,"output":"tializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitS"},{"event":"cmd_output","timestamp":1607098444,"output":"tate.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:04.500 [info] ppl_id: d0bb9232-10b3-4f06-8bd1-f2c1bbc3c263"},{"event":"cmd_output","timestamp":1607098444,"output":", type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098444,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:04.507 [info] ppl_id: d0bb9232-"},{"event":"cmd_output","timestamp":1607098444,"output":"10b3-4f06-8bd1-f2c1bbc3c263, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling"},{"event":"cmd_output","timestamp":1607098444,"output":", recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:04.5"},{"event":"cmd_output","timestamp":1607098444,"output":"08 [info] ppl_id: d0bb9232-10b3-4f06-8bd1-f2c1bbc3c263, type: Ppls, state: pending, event: exit_sch"},{"event":"cmd_output","timestamp":1607098444,"output":"eduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098444,"output":"14:04.521 [info] ppl_id: d0bb9232-10b3-4f06-8bd1-f2c1bbc3c263, type: Ppls, state: queuing, event: e"},{"event":"cmd_output","timestamp":1607098444,"output":"xit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098444,"output":"2m\n16:14:04.529 [info] ppl_id: d0bb9232-10b3-4f06-8bd1-f2c1bbc3c263, type: Ppls, state: running, e"},{"event":"cmd_output","timestamp":1607098444,"output":"vent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n"},{"event":"cmd_output","timestamp":1607098444,"output":"\u001b[0m\u001b[22m\n16:14:04.538 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"d0b"},{"event":"cmd_output","timestamp":1607098444,"output":"b9232-10b3-4f06-8bd1-f2c1bbc3c263\"\n\u001b[0m\u001b[22m\n16:14:04.542 [info] ppl_id: d0bb9232-10b3-4f06-8bd1-"},{"event":"cmd_output","timestamp":1607098444,"output":"f2c1bbc3c263, type: PplBlocks, block_index: 0, state: done, result: failed, event: exit_scheduling, "},{"event":"cmd_output","timestamp":1607098444,"output":"recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:04.555"},{"event":"cmd_output","timestamp":1607098444,"output":" [info] ppl_id: d0bb9232-10b3-4f06-8bd1-f2c1bbc3c263, type: Ppls, state: done, result: failed, even"},{"event":"cmd_output","timestamp":1607098444,"output":"t: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098444,"output":"m\u001b[32m\r * test malformed change_in() causes pipeline to fail with maformed reason (304.1ms)\u001b[0m\n "},{"event":"cmd_output","timestamp":1607098444,"output":"* test when change_in call times out the pipeline gets stuck\u001b[22m\n16:14:04.693 [info] Periodic fro"},{"event":"cmd_output","timestamp":1607098444,"output":"m module Elixir.Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.STMHandler.Initializ"},{"event":"cmd_output","timestamp":1607098444,"output":"ingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Initializing"},{"event":"cmd_output","timestamp":1607098444,"output":"State\"]}, recurring args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], cooling_time_sec: 0"},{"event":"cmd_output","timestamp":1607098444,"output":", initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher_cb: #Function<0.1253"},{"event":"cmd_output","timestamp":1607098444,"output":"26080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :term"},{"event":"cmd_output","timestamp":1607098444,"output":"inate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls,"},{"event":"cmd_output","timestamp":1607098444,"output":" task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:04.693 [info] Periodic from module Elixir.Ppl.Ppls.STMHa"},{"event":"cmd_output","timestamp":1607098444,"output":"ndler.PendingState with name Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 100 ms, metric_name:"},{"event":"cmd_output","timestamp":1607098444,"output":" {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args: %{allowed_states: ["},{"event":"cmd_output","timestamp":1607098444,"output":"\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, o"},{"event":"cmd_output","timestamp":1607098444,"output":"bserved_state: \"pending\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler.PendingState.ar"},{"event":"cmd_output","timestamp":1607098444,"output":"gs/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recov"},{"event":"cmd_output","timestamp":1607098444,"output":"ery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098444,"output":"6:14:04.694 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.QueuingState with name Elixir.Pp"},{"event":"cmd_output","timestamp":1607098444,"output":"l.Ppls.STMHandler.QueuingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-S"},{"event":"cmd_output","timestamp":1607098444,"output":"TMHandler-QueuingState\"]}, recurring args: %{allowed_states: [\"queuing\", \"running\", \"done\"], cooling"},{"event":"cmd_output","timestamp":1607098444,"output":"_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", publisher_cb: #Functio"},{"event":"cmd_output","timestamp":1607098444,"output":"n<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :t"},{"event":"cmd_output","timestamp":1607098444,"output":"erminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Pp"},{"event":"cmd_output","timestamp":1607098444,"output":"ls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:04.694 [info] Periodic from module Elixir.Ppl.Ppls.ST"},{"event":"cmd_output","timestamp":1607098444,"output":"MHandler.RunningState with name Elixir.Ppl.Ppls.STMHandler.RunningState :: period: 100 ms, metric_na"},{"event":"cmd_output","timestamp":1607098444,"output":"me: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring args: %{allowed_states"},{"event":"cmd_output","timestamp":1607098444,"output":": [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observe"},{"event":"cmd_output","timestamp":1607098444,"output":"d_state: \"running\", publisher_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler.RunningState.args/0>"},{"event":"cmd_output","timestamp":1607098444,"output":", repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_c"},{"event":"cmd_output","timestamp":1607098444,"output":"ount, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:14:"},{"event":"cmd_output","timestamp":1607098444,"output":"04.695 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.StoppingState with name Elixir.Ppl.Pp"},{"event":"cmd_output","timestamp":1607098444,"output":"ls.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMH"},{"event":"cmd_output","timestamp":1607098444,"output":"andler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -"},{"event":"cmd_output","timestamp":1607098444,"output":"2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"stopping\", publisher_cb: #Function<0.7180349"},{"event":"cmd_output","timestamp":1607098444,"output":"3/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_re"},{"event":"cmd_output","timestamp":1607098444,"output":"quest, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_su"},{"event":"cmd_output","timestamp":1607098444,"output":"pervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:04.695 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHan"},{"event":"cmd_output","timestamp":1607098444,"output":"dler.CreatedState with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 100 ms, metric"},{"event":"cmd_output","timestamp":1607098444,"output":"_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args: %{allo"},{"event":"cmd_output","timestamp":1607098444,"output":"wed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubIn"},{"event":"cmd_output","timestamp":1607098444,"output":"its, observed_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate"},{"event":"cmd_output","timestamp":1607098444,"output":"_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.Ppl"},{"event":"cmd_output","timestamp":1607098444,"output":"SubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:04.697 [info] Periodic from module Elixir.Ppl.P"},{"event":"cmd_output","timestamp":1607098444,"output":"plSubInits.STMHandler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler.FetchingState :: per"},{"event":"cmd_output","timestamp":1607098444,"output":"iod: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, re"},{"event":"cmd_output","timestamp":1607098444,"output":"curring args: %{allowed_states: [\"regular_init\", \"compilation\", \"done\"], cooling_time_sec: -2, initi"},{"event":"cmd_output","timestamp":1607098444,"output":"al_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fetching\", publisher_cb: :skip, repo: "},{"event":"cmd_output","timestamp":1607098444,"output":"Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :p"},{"event":"cmd_output","timestamp":1607098444,"output":"pl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:04.697 "},{"event":"cmd_output","timestamp":1607098444,"output":"[info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CompilationState with name Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098444,"output":".PplSubInits.STMHandler.CompilationState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\""},{"event":"cmd_output","timestamp":1607098444,"output":"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurring args: %{allowed_states: [\"regular_init\", \""},{"event":"cmd_output","timestamp":1607098444,"output":"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSub"},{"event":"cmd_output","timestamp":1607098444,"output":"Inits, observed_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :ter"},{"event":"cmd_output","timestamp":1607098444,"output":"minate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Mod"},{"event":"cmd_output","timestamp":1607098444,"output":"el.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:04.697 [info] Periodic from module Elixir"},{"event":"cmd_output","timestamp":1607098444,"output":".Ppl.PplSubInits.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHandler.RegularInit"},{"event":"cmd_output","timestamp":1607098444,"output":"State :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularI"},{"event":"cmd_output","timestamp":1607098444,"output":"nitState\"]}, recurring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098444,"output":"SubInits.Model.PplSubInits, observed_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo,"},{"event":"cmd_output","timestamp":1607098444,"output":" returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schem"},{"event":"cmd_output","timestamp":1607098444,"output":"a: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:04.698 [info] Perio"},{"event":"cmd_output","timestamp":1607098444,"output":"dic from module Elixir.Ppl.PplBlocks.STMHandler.InitializingState with name Elixir.Ppl.PplBlocks.STM"},{"event":"cmd_output","timestamp":1607098444,"output":"Handler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-S"},{"event":"cmd_output","timestamp":1607098444,"output":"TMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"waiting\", \"done\""},{"event":"cmd_output","timestamp":1607098444,"output":"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"initializing\""},{"event":"cmd_output","timestamp":1607098444,"output":", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state,"},{"event":"cmd_output","timestamp":1607098444,"output":" :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_super"},{"event":"cmd_output","timestamp":1607098444,"output":"visor: :skip}\n\u001b[0m\u001b[22m\n16:14:04.698 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler."},{"event":"cmd_output","timestamp":1607098444,"output":"WaitingState with name Elixir.Ppl.PplBlocks.STMHandler.WaitingState :: period: 1000 ms, metric_name:"},{"event":"cmd_output","timestamp":1607098444,"output":" {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurring args: %{allowed_stat"},{"event":"cmd_output","timestamp":1607098444,"output":"es: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlock"},{"event":"cmd_output","timestamp":1607098444,"output":"s, observed_state: \"waiting\", publisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.STMHandler.Waitin"},{"event":"cmd_output","timestamp":1607098444,"output":"gState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :resul"},{"event":"cmd_output","timestamp":1607098444,"output":"t, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: "},{"event":"cmd_output","timestamp":1607098444,"output":":skip}\n\u001b[0m\u001b[22m\n16:14:04.698 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.Running"},{"event":"cmd_output","timestamp":1607098444,"output":"State with name Elixir.Ppl.PplBlocks.STMHandler.RunningState :: period: 1000 ms, metric_name: {\"Ppl."},{"event":"cmd_output","timestamp":1607098444,"output":"beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"r"},{"event":"cmd_output","timestamp":1607098444,"output":"unning\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, ob"},{"event":"cmd_output","timestamp":1607098444,"output":"served_state: \"running\", publisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHandler.RunningSta"},{"event":"cmd_output","timestamp":1607098444,"output":"te.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :"},{"event":"cmd_output","timestamp":1607098444,"output":"recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_super"},{"event":"cmd_output","timestamp":1607098444,"output":"visor: :skip}\n\u001b[0m\u001b[22m\n16:14:04.698 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler."},{"event":"cmd_output","timestamp":1607098444,"output":"StoppingState with name Elixir.Ppl.PplBlocks.STMHandler.StoppingState :: period: 1000 ms, metric_nam"},{"event":"cmd_output","timestamp":1607098444,"output":"e: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_s"},{"event":"cmd_output","timestamp":1607098444,"output":"tates: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, obs"},{"event":"cmd_output","timestamp":1607098444,"output":"erved_state: \"stopping\", publisher_cb: #Function<0.104215991/1 in Ppl.PplBlocks.STMHandler.StoppingS"},{"event":"cmd_output","timestamp":1607098444,"output":"tate.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result,"},{"event":"cmd_output","timestamp":1607098444,"output":" :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_sup"},{"event":"cmd_output","timestamp":1607098444,"output":"ervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:04.699 [info] Periodic from module Elixir.Block.Blocks.STMHandler"},{"event":"cmd_output","timestamp":1607098444,"output":".InitializingState with name Elixir.Block.Blocks.STMHandler.InitializingState :: period: 100 ms, met"},{"event":"cmd_output","timestamp":1607098444,"output":"ric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, recurring args: %"},{"event":"cmd_output","timestamp":1607098444,"output":"{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Blocks.Model.Blocks,"},{"event":"cmd_output","timestamp":1607098444,"output":" observed_state: \"initializing\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :termin"},{"event":"cmd_output","timestamp":1607098444,"output":"ate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, ta"},{"event":"cmd_output","timestamp":1607098444,"output":"sk_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:04.699 [info] Periodic from module Elixir.Block.Blocks.STMH"},{"event":"cmd_output","timestamp":1607098444,"output":"andler.RunningState with name Elixir.Block.Blocks.STMHandler.RunningState :: period: 100 ms, metric_"},{"event":"cmd_output","timestamp":1607098444,"output":"name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-RunningState\"]}, recurring args: %{allowed_"},{"event":"cmd_output","timestamp":1607098444,"output":"states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blo"},{"event":"cmd_output","timestamp":1607098444,"output":"cks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :termina"},{"event":"cmd_output","timestamp":1607098444,"output":"te_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, tas"},{"event":"cmd_output","timestamp":1607098444,"output":"k_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:04.699 [info] Periodic from module Elixir.Block.Blocks.STMHa"},{"event":"cmd_output","timestamp":1607098444,"output":"ndler.StoppingState with name Elixir.Block.Blocks.STMHandler.StoppingState :: period: 100 ms, metric"},{"event":"cmd_output","timestamp":1607098444,"output":"_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-StoppingState\"]}, recurring args: %{allowe"},{"event":"cmd_output","timestamp":1607098444,"output":"d_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, obse"},{"event":"cmd_output","timestamp":1607098444,"output":"rved_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_reque"},{"event":"cmd_output","timestamp":1607098444,"output":"st, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_superv"},{"event":"cmd_output","timestamp":1607098444,"output":"isor: :skip}\n\u001b[0m\u001b[22m\n16:14:04.699 [info] Periodic from module Elixir.Block.Tasks.STMHandler.Pen"},{"event":"cmd_output","timestamp":1607098444,"output":"dingState with name Elixir.Block.Tasks.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl"},{"event":"cmd_output","timestamp":1607098444,"output":".beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"ru"},{"event":"cmd_output","timestamp":1607098444,"output":"nning\", \"done\"], cooling_time_sec: 0, initial_query: Block.Tasks.Model.Tasks, observed_state: \"pendi"},{"event":"cmd_output","timestamp":1607098444,"output":"ng\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :s"},{"event":"cmd_output","timestamp":1607098444,"output":"tate, :recovery_count, :block_id, :build_request_id], schema: Block.Tasks.Model.Tasks, task_supervis"},{"event":"cmd_output","timestamp":1607098444,"output":"or: :skip}\n\u001b[0m\u001b[22m\n16:14:04.699 [info] Periodic from module Elixir.Block.Tasks.STMHandler.Runni"},{"event":"cmd_output","timestamp":1607098444,"output":"ngState with name Elixir.Block.Tasks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.b"},{"event":"cmd_output","timestamp":1607098444,"output":"eholder-wake_up\", [\"Block-Tasks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"runn"},{"event":"cmd_output","timestamp":1607098444,"output":"ing\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_st"},{"event":"cmd_output","timestamp":1607098444,"output":"ate: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :upd"},{"event":"cmd_output","timestamp":1607098444,"output":"ated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :ski"},{"event":"cmd_output","timestamp":1607098444,"output":"p}\n\u001b[0m\u001b[22m\n16:14:04.699 [info] Periodic from module Elixir.Block.Tasks.STMHandler.StoppingState"},{"event":"cmd_output","timestamp":1607098444,"output":" with name Elixir.Block.Tasks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholde"},{"event":"cmd_output","timestamp":1607098444,"output":"r-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\""},{"event":"cmd_output","timestamp":1607098444,"output":", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"stopping\","},{"event":"cmd_output","timestamp":1607098444,"output":" publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state"},{"event":"cmd_output","timestamp":1607098444,"output":", :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098444,"output":"16:14:04.702 [info] Periodic from module Elixir.Ppl.PplBlocks.Beholder with name Elixir.Ppl.PplBloc"},{"event":"cmd_output","timestamp":1607098444,"output":"ks.Beholder :: period: 1000 ms, metric_name: {\"Beholder\", [\"Ppl-PplBlocks-Beholder\", \"wake_up\"]}, re"},{"event":"cmd_output","timestamp":1607098444,"output":"curring args: %{callback: #Function<0.22562660/1 in Ppl.PplBlocks.Beholder.args/0>, excluded_states:"},{"event":"cmd_output","timestamp":1607098444,"output":" [\"done\"], id: Ppl.PplBlocks.Beholder, query: Ppl.PplBlocks.Model.PplBlocks, repo: Ppl.EctoRepo, res"},{"event":"cmd_output","timestamp":1607098444,"output":"ult_on_abort: \"failed\", result_reason_on_abort: \"stuck\", terminal_state: \"done\", threshold_count: 2,"},{"event":"cmd_output","timestamp":1607098444,"output":" threshold_sec: -2}\n\u001b[0m\u001b[22m\n16:14:04.704 [info] Request: 'run: %{\"branch_id\" => \"4028fa6b-eea3-"},{"event":"cmd_output","timestamp":1607098444,"output":"4363-a4c2-2f8236bbb916\", \"branch_name\" => \"one_path\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \""},{"event":"cmd_output","timestamp":1607098444,"output":"one_path.yml\", \"hook_id\" => \"baa93142-364b-11eb-b8fa-5254005464e2\", \"label\" => \"one_path\", \"organiza"},{"event":"cmd_output","timestamp":1607098444,"output":"tion_id\" => \"48123111-2d11-46f8-988a-2dae8c1dd2ee\", \"owner\" => \"rt\", \"project_id\" => \"2f31ff24-2e08-"},{"event":"cmd_output","timestamp":1607098444,"output":"4313-bd24-31019eb85eb5\", \"repo_name\" => \"22_skip_block\", \"request_token\" => \"baa928b4-364b-11eb-93b9"},{"event":"cmd_output","timestamp":1607098444,"output":"-5254005464e2\", \"requester_id\" => \"e56934bf-b72f-48f1-bb5f-24952744573a\", \"service\" => \"local\", \"sup"},{"event":"cmd_output","timestamp":1607098444,"output":"pressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"a834aae4-d73f-43ca-830b-c31c43"},{"event":"cmd_output","timestamp":1607098444,"output":"e80cf2\", \"working_dir\" => \".semaphore/change_in\"}\n\u001b[0m\u001b[22m\n16:14:04.711 [info] ppl_id: 313f7712-"},{"event":"cmd_output","timestamp":1607098444,"output":"df83-404c-8a82-9ee948e8845a, type: PplRequests, event: persisted schedule request with request_token"},{"event":"cmd_output","timestamp":1607098444,"output":": baa928b4-364b-11eb-93b9-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.proc"},{"event":"cmd_output","timestamp":1607098444,"output":"ess_response/2(L55), \n\u001b[0m\u001b[22m\n16:14:04.713 [info] ppl_id: 313f7712-df83-404c-8a82-9ee948e8845a,"},{"event":"cmd_output","timestamp":1607098444,"output":" type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Mo"},{"event":"cmd_output","timestamp":1607098444,"output":"del.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:14:04.717 [info] Project 2f31ff24-2e08-43"},{"event":"cmd_output","timestamp":1607098444,"output":"13-bd24-31019eb85eb5 and branch one_pathlatest_wf details updated: \"wf_id: a834aae4-d73f-43ca-830b-c"},{"event":"cmd_output","timestamp":1607098444,"output":"31c43e80cf2, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:14:04.718 [info] Persisted ppl_sub_init for pipeline with"},{"event":"cmd_output","timestamp":1607098444,"output":" ppl_id: 313f7712-df83-404c-8a82-9ee948e8845a: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Sc"},{"event":"cmd_output","timestamp":1607098444,"output":"hema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 321,"},{"event":"cmd_output","timestamp":1607098444,"output":" in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:14:04.717211], pipeline_r"},{"event":"cmd_output","timestamp":1607098444,"output":"equests: #Ecto.Association.NotLoaded, ppl_id: \"313f771"},{"event":"cmd_output","timestamp":1607098444,"output":"2-df83-404c-8a82-9ee948e8845a\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\""},{"event":"cmd_output","timestamp":1607098444,"output":", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:14:04.717217]}\n"},{"event":"cmd_output","timestamp":1607098444,"output":"\u001b[0m\u001b[22m\n16:14:04.727 [info] ppl_id: 313f7712-df83-404c-8a82-9ee948e8845a, type: PplRequests, eve"},{"event":"cmd_output","timestamp":1607098444,"output":"nt: persisted source_args for pipeline: 313f7712-df83-404c-8a82-9ee948e8845a, origin: Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098444,"output":"Requests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:14:04.729 [info] ppl_id: 31"},{"event":"cmd_output","timestamp":1607098444,"output":"3f7712-df83-404c-8a82-9ee948e8845a, type: PplSubInits, state: fetching, event: exit_scheduling, reco"},{"event":"cmd_output","timestamp":1607098444,"output":"very_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:04.748 [in"},{"event":"cmd_output","timestamp":1607098444,"output":"fo] ppl_id: 313f7712-df83-404c-8a82-9ee948e8845a, type: PplSubInits, state: regular_init, event: ex"},{"event":"cmd_output","timestamp":1607098444,"output":"it_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098444,"output":"m\n16:14:04.764 [info] ppl_id: 313f7712-df83-404c-8a82-9ee948e8845a, type: PplRequests, event: pers"},{"event":"cmd_output","timestamp":1607098444,"output":"isted definition for request with request_token: baa928b4-364b-11eb-93b9-5254005464e2, origin: Elixi"},{"event":"cmd_output","timestamp":1607098444,"output":"r.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:14:04.766 [info"},{"event":"cmd_output","timestamp":1607098444,"output":"] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\""},{"event":"cmd_output","timestamp":1607098444,"output":">, inserted_at: ~N[2020-12-04 16:14:04.765734], name: \"one_path-.semaphore/change_in/one_path.yml\", "},{"event":"cmd_output","timestamp":1607098444,"output":"organization_id: \"48123111-2d11-46f8-988a-2dae8c1dd2ee\", project_id: \"2f31ff24-2e08-4313-bd24-31019e"},{"event":"cmd_output","timestamp":1607098444,"output":"b85eb5\", queue_id: \"66d19499-7e6e-4052-a20b-f8b8fb2cf28c\", scope: \"project\", updated_at: ~N[2020-12-"},{"event":"cmd_output","timestamp":1607098444,"output":"04 16:14:04.765743], user_generated: false}}\n\u001b[0m\u001b[22m\n16:14:04.778 [info] event: created, origin"},{"event":"cmd_output","timestamp":1607098444,"output":": Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:04.778 [inf"},{"event":"cmd_output","timestamp":1607098444,"output":"o] ppl_id: 313f7712-df83-404c-8a82-9ee948e8845a, type: PplBlocks, block_index: 0, state: initializi"},{"event":"cmd_output","timestamp":1607098444,"output":"ng, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.al"},{"event":"cmd_output","timestamp":1607098444,"output":"l_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:04.779 [info] ppl_id: 313f7712-df83-404c-8a82-9ee948e8845a, type:"},{"event":"cmd_output","timestamp":1607098444,"output":" PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098444,"output":".Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:04.787 [info] ppl_id: 313f7712-df83-40"},{"event":"cmd_output","timestamp":1607098444,"output":"4c-8a82-9ee948e8845a, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098444,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:04.791 [info] ppl_id: 313f7712-"},{"event":"cmd_output","timestamp":1607098444,"output":"df83-404c-8a82-9ee948e8845a, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling"},{"event":"cmd_output","timestamp":1607098444,"output":", recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:04.7"},{"event":"cmd_output","timestamp":1607098444,"output":"94 [info] ppl_id: 313f7712-df83-404c-8a82-9ee948e8845a, type: Ppls, state: queuing, event: exit_sch"},{"event":"cmd_output","timestamp":1607098444,"output":"eduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098444,"output":"14:04.809 [info] ppl_id: 313f7712-df83-404c-8a82-9ee948e8845a, type: Ppls, state: running, event: e"},{"event":"cmd_output","timestamp":1607098444,"output":"xit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098444,"output":"2m\n16:14:04.818 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"313f7712-d"},{"event":"cmd_output","timestamp":1607098445,"output":"f83-404c-8a82-9ee948e8845a\"\n\u001b[0m\u001b[33m\n16:14:05.705 [warn] ppl_id: 313f7712-df83-404c-8a82-9ee948e"},{"event":"cmd_output","timestamp":1607098445,"output":"8845a, type: PplBlocks, block_index: 0, state: waiting, event: stuck item recovered, recovery_count:"},{"event":"cmd_output","timestamp":1607098447,"output":" 1, origin: Elixir.Looper.Beholder.Impl.log/2(L88), \n\u001b[0m\u001b[33m\n16:14:07.821 [warn] Elixir.Wormhol"},{"event":"cmd_output","timestamp":1607098447,"output":"e{#PID<0.2284.2>}:: callback: {Block.RepoHubClient, :get_repo_id_, [\"2f31ff24-2e08-4313-bd24-31019eb"},{"event":"cmd_output","timestamp":1607098447,"output":"85eb5\"]}; reason: {:timeout, 3000}\n\u001b[0m\u001b[33m\n16:14:07.821 [warn] PplBlocks WaitingState STM error"},{"event":"cmd_output","timestamp":1607098447,"output":": \"{:timeout, \\\"Function 'change_in' returned error: 3000\\\"}\"\n\u001b[0m\u001b[31m\n16:14:07.823 [error] ppl_i"},{"event":"cmd_output","timestamp":1607098447,"output":"d: not_available, event: exit_scheduling, context: {:error, :user_exit_function, %{error_description"},{"event":"cmd_output","timestamp":1607098447,"output":": \"{:timeout, \\\"Function 'change_in' returned error: 3000\\\"}\"}, %{item: %Ppl.PplBlocks.Model.PplBloc"},{"event":"cmd_output","timestamp":1607098447,"output":"ks{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_blocks\">, block_id: nil, block_index: 0, conne"},{"event":"cmd_output","timestamp":1607098447,"output":"ctions: #Ecto.Association.NotLoaded, duplicate: false, error"},{"event":"cmd_output","timestamp":1607098447,"output":"_description: nil, exec_time_limit_min: nil, id: 410, in_scheduling: true, inserted_at: ~N[2020-12-0"},{"event":"cmd_output","timestamp":1607098447,"output":"4 16:14:04.776757], name: \"Block 1\", pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"313f7712-df83-404c-8a82-9ee948e8845a\", priority: nil, recove"},{"event":"cmd_output","timestamp":1607098447,"output":"ry_count: 0, result: nil, result_reason: nil, state: \"waiting\", terminate_request: nil, terminate_re"},{"event":"cmd_output","timestamp":1607098447,"output":"quest_desc: nil, updated_at: ~N[2020-12-04 16:14:04.812256]}}}, origin: Elixir.Looper.STM.Impl.log_s"},{"event":"cmd_output","timestamp":1607098447,"output":"tate_change/1(L96), \n\u001b[0m\u001b[31m\n16:14:07.823 [error] STM Elixir.Ppl.PplBlocks.STMHandler.WaitingSta"},{"event":"cmd_output","timestamp":1607098447,"output":"te FAILED: {:error, :user_exit_function, %{error_description: \"{:timeout, \\\"Function 'change_in' ret"},{"event":"cmd_output","timestamp":1607098447,"output":"urned error: 3000\\\"}\"}, %{item: %Ppl.PplBlocks.Model.PplBlocks{__meta__: #Ecto.Schema.Metadata<:load"},{"event":"cmd_output","timestamp":1607098447,"output":"ed, \"pipeline_blocks\">, block_id: nil, block_index: 0, connections: #Ecto.Association.NotLoaded, duplicate: false, error_description: nil, exec_time_limit_min: "},{"event":"cmd_output","timestamp":1607098447,"output":"nil, id: 410, in_scheduling: true, inserted_at: ~N[2020-12-04 16:14:04.776757], name: \"Block 1\", pip"},{"event":"cmd_output","timestamp":1607098447,"output":"eline_requests: #Ecto.Association.NotLoaded, ppl_id: \""},{"event":"cmd_output","timestamp":1607098447,"output":"313f7712-df83-404c-8a82-9ee948e8845a\", priority: nil, recovery_count: 0, result: nil, result_reason:"},{"event":"cmd_output","timestamp":1607098447,"output":" nil, state: \"waiting\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-"},{"event":"cmd_output","timestamp":1607098447,"output":"04 16:14:04.812256]}}}\n\u001b[0m\u001b[22m\n16:14:07.828 [info] PplBlocks WaitingState STM is scheduling blo"},{"event":"cmd_output","timestamp":1607098448,"output":"ck 0 from pipeline: \"313f7712-df83-404c-8a82-9ee948e8845a\"\n\u001b[0m\u001b[33m\n16:14:08.724 [warn] ppl_id: "},{"event":"cmd_output","timestamp":1607098448,"output":"313f7712-df83-404c-8a82-9ee948e8845a, type: PplBlocks, block_index: 0, state: waiting, event: stuck "},{"event":"cmd_output","timestamp":1607098450,"output":"item recovered, recovery_count: 2, origin: Elixir.Looper.Beholder.Impl.log/2(L88), \n\u001b[0m\u001b[33m\n16:1"},{"event":"cmd_output","timestamp":1607098450,"output":"4:10.834 [warn] Elixir.Wormhole{#PID<0.3235.2>}:: callback: {Block.RepoHubClient, :get_repo_id_, [\""},{"event":"cmd_output","timestamp":1607098450,"output":"2f31ff24-2e08-4313-bd24-31019eb85eb5\"]}; reason: {:timeout, 3000}\n\u001b[0m\u001b[33m\n16:14:10.834 [warn] P"},{"event":"cmd_output","timestamp":1607098450,"output":"plBlocks WaitingState STM error: \"{:timeout, \\\"Function 'change_in' returned error: 3000\\\"}\"\n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098450,"output":"31m\n16:14:10.836 [error] ppl_id: not_available, event: exit_scheduling, context: {:error, :user_exi"},{"event":"cmd_output","timestamp":1607098450,"output":"t_function, %{error_description: \"{:timeout, \\\"Function 'change_in' returned error: 3000\\\"}\"}, %{ite"},{"event":"cmd_output","timestamp":1607098450,"output":"m: %Ppl.PplBlocks.Model.PplBlocks{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_blocks\">, block"},{"event":"cmd_output","timestamp":1607098450,"output":"_id: nil, block_index: 0, connections: #Ecto.Association.NotLoaded, duplicate: false, error_description: nil, exec_time_limit_min: nil, id: 410, in_scheduling: "},{"event":"cmd_output","timestamp":1607098450,"output":"true, inserted_at: ~N[2020-12-04 16:14:04.776757], name: \"Block 1\", pipeline_requests: #Ecto.Associa"},{"event":"cmd_output","timestamp":1607098450,"output":"tion.NotLoaded, ppl_id: \"313f7712-df83-404c-8a82-9ee94"},{"event":"cmd_output","timestamp":1607098450,"output":"8e8845a\", priority: nil, recovery_count: 1, result: nil, result_reason: nil, state: \"waiting\", termi"},{"event":"cmd_output","timestamp":1607098450,"output":"nate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:14:07.824683]}}}, origi"},{"event":"cmd_output","timestamp":1607098450,"output":"n: Elixir.Looper.STM.Impl.log_state_change/1(L96), \n\u001b[0m\u001b[31m\n16:14:10.836 [error] STM Elixir.Ppl."},{"event":"cmd_output","timestamp":1607098450,"output":"PplBlocks.STMHandler.WaitingState FAILED: {:error, :user_exit_function, %{error_description: \"{:time"},{"event":"cmd_output","timestamp":1607098450,"output":"out, \\\"Function 'change_in' returned error: 3000\\\"}\"}, %{item: %Ppl.PplBlocks.Model.PplBlocks{__meta"},{"event":"cmd_output","timestamp":1607098450,"output":"__: #Ecto.Schema.Metadata<:loaded, \"pipeline_blocks\">, block_id: nil, block_index: 0, connections: #"},{"event":"cmd_output","timestamp":1607098450,"output":"Ecto.Association.NotLoaded, duplicate: false, error_descript"},{"event":"cmd_output","timestamp":1607098450,"output":"ion: nil, exec_time_limit_min: nil, id: 410, in_scheduling: true, inserted_at: ~N[2020-12-04 16:14:0"},{"event":"cmd_output","timestamp":1607098450,"output":"4.776757], name: \"Block 1\", pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"313f7712-df83-404c-8a82-9ee948e8845a\", priority: nil, recovery_count:"},{"event":"cmd_output","timestamp":1607098450,"output":" 1, result: nil, result_reason: nil, state: \"waiting\", terminate_request: nil, terminate_request_des"},{"event":"cmd_output","timestamp":1607098451,"output":"c: nil, updated_at: ~N[2020-12-04 16:14:07.824683]}}}\n\u001b[0m\u001b[22m\n16:14:11.846 [info] PplBlocks Wai"},{"event":"cmd_output","timestamp":1607098452,"output":"tingState STM is scheduling block 0 from pipeline: \"313f7712-df83-404c-8a82-9ee948e8845a\"\n\u001b[0m\u001b[33m"},{"event":"cmd_output","timestamp":1607098452,"output":"\n16:14:12.734 [warn] ppl_id: 313f7712-df83-404c-8a82-9ee948e8845a, type: PplBlocks, block_index: 0"},{"event":"cmd_output","timestamp":1607098452,"output":", state: done, result: failed, result_reason: stuck, event: stuck item aborted, recovery_count: 2, o"},{"event":"cmd_output","timestamp":1607098452,"output":"rigin: Elixir.Looper.Beholder.Impl.log/2(L88), \n\u001b[0m\u001b[22m\n16:14:12.748 [info] ppl_id: 313f7712-df"},{"event":"cmd_output","timestamp":1607098452,"output":"83-404c-8a82-9ee948e8845a, type: Ppls, state: done, result: failed, event: exit_scheduling, recovery"},{"event":"cmd_output","timestamp":1607098454,"output":"_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[33m\n16:14:14.850 [warn] "},{"event":"cmd_output","timestamp":1607098454,"output":" Elixir.Wormhole{#PID<0.4532.2>}:: callback: {Block.RepoHubClient, :get_repo_id_, [\"2f31ff24-2e08-43"},{"event":"cmd_output","timestamp":1607098454,"output":"13-bd24-31019eb85eb5\"]}; reason: {:timeout, 3000}\n\u001b[0m\u001b[33m\n16:14:14.850 [warn] PplBlocks Waiting"},{"event":"cmd_output","timestamp":1607098454,"output":"State STM error: \"{:timeout, \\\"Function 'change_in' returned error: 3000\\\"}\"\n\u001b[0m\u001b[31m\n16:14:14.85"},{"event":"cmd_output","timestamp":1607098454,"output":"2 [error] ppl_id: not_available, event: exit_scheduling, context: {:error, :user_exit_function, %{er"},{"event":"cmd_output","timestamp":1607098454,"output":"ror_description: \"{:timeout, \\\"Function 'change_in' returned error: 3000\\\"}\"}, %{item: %Ppl.PplBlock"},{"event":"cmd_output","timestamp":1607098454,"output":"s.Model.PplBlocks{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_blocks\">, block_id: nil, block_"},{"event":"cmd_output","timestamp":1607098454,"output":"index: 0, connections: #Ecto.Association.NotLoaded, duplicat"},{"event":"cmd_output","timestamp":1607098454,"output":"e: false, error_description: nil, exec_time_limit_min: nil, id: 410, in_scheduling: true, inserted_a"},{"event":"cmd_output","timestamp":1607098454,"output":"t: ~N[2020-12-04 16:14:04.776757], name: \"Block 1\", pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"313f7712-df83-404c-8a82-9ee948e8845a\", priori"},{"event":"cmd_output","timestamp":1607098454,"output":"ty: nil, recovery_count: 2, result: nil, result_reason: nil, state: \"waiting\", terminate_request: ni"},{"event":"cmd_output","timestamp":1607098454,"output":"l, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:14:11.836958]}}}, origin: Elixir.Looper"},{"event":"cmd_output","timestamp":1607098454,"output":".STM.Impl.log_state_change/1(L96), \n\u001b[0m\u001b[31m\n16:14:14.853 [error] STM Elixir.Ppl.PplBlocks.STMHan"},{"event":"cmd_output","timestamp":1607098454,"output":"dler.WaitingState FAILED: {:error, :user_exit_function, %{error_description: \"{:timeout, \\\"Function "},{"event":"cmd_output","timestamp":1607098454,"output":"'change_in' returned error: 3000\\\"}\"}, %{item: %Ppl.PplBlocks.Model.PplBlocks{__meta__: #Ecto.Schema"},{"event":"cmd_output","timestamp":1607098454,"output":".Metadata<:loaded, \"pipeline_blocks\">, block_id: nil, block_index: 0, connections: #Ecto.Association"},{"event":"cmd_output","timestamp":1607098454,"output":".NotLoaded, duplicate: false, error_description: nil, exec_t"},{"event":"cmd_output","timestamp":1607098454,"output":"ime_limit_min: nil, id: 410, in_scheduling: true, inserted_at: ~N[2020-12-04 16:14:04.776757], name:"},{"event":"cmd_output","timestamp":1607098454,"output":" \"Block 1\", pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"313f7712-df83-404c-8a82-9ee948e8845a\", priority: nil, recovery_count: 2, result: nil,"},{"event":"cmd_output","timestamp":1607098454,"output":" result_reason: nil, state: \"waiting\", terminate_request: nil, terminate_request_desc: nil, updated_"},{"event":"cmd_output","timestamp":1607098454,"output":"at: ~N[2020-12-04 16:14:11.836958]}}}\n\u001b[0m\u001b[32m\r * test when change_in call times out the pipeline"},{"event":"cmd_output","timestamp":1607098454,"output":" gets stuck (10208.0ms)\u001b[0m\n * test change_in with list of strings as first param is processed cor"},{"event":"cmd_output","timestamp":1607098454,"output":"rectly\u001b[22m\n16:14:14.905 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingState "},{"event":"cmd_output","timestamp":1607098454,"output":"with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholde"},{"event":"cmd_output","timestamp":1607098454,"output":"r-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initiali"},{"event":"cmd_output","timestamp":1607098454,"output":"zing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: "},{"event":"cmd_output","timestamp":1607098454,"output":"\"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/"},{"event":"cmd_output","timestamp":1607098454,"output":"0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery"},{"event":"cmd_output","timestamp":1607098454,"output":"_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:14.906 [inf"},{"event":"cmd_output","timestamp":1607098454,"output":"o] Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandle"},{"event":"cmd_output","timestamp":1607098454,"output":"r.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Pendin"},{"event":"cmd_output","timestamp":1607098454,"output":"gState\"]}, recurring args: %{allowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time"},{"event":"cmd_output","timestamp":1607098454,"output":"_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publisher_cb: #Function<0.84"},{"event":"cmd_output","timestamp":1607098454,"output":"93005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate"},{"event":"cmd_output","timestamp":1607098454,"output":"_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task"},{"event":"cmd_output","timestamp":1607098454,"output":"_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:14:14.907 [info] Periodic from module Elixir.Ppl.Pp"},{"event":"cmd_output","timestamp":1607098454,"output":"ls.STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, metr"},{"event":"cmd_output","timestamp":1607098454,"output":"ic_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{allowed_s"},{"event":"cmd_output","timestamp":1607098454,"output":"tates: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, obs"},{"event":"cmd_output","timestamp":1607098454,"output":"erved_state: \"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.ar"},{"event":"cmd_output","timestamp":1607098454,"output":"gs/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recov"},{"event":"cmd_output","timestamp":1607098454,"output":"ery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:14.908 ["},{"event":"cmd_output","timestamp":1607098454,"output":"info] Periodic from module Elixir.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHan"},{"event":"cmd_output","timestamp":1607098454,"output":"dler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Run"},{"event":"cmd_output","timestamp":1607098454,"output":"ningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -"},{"event":"cmd_output","timestamp":1607098454,"output":"2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"running\", publisher_cb: #Function<0.74670282"},{"event":"cmd_output","timestamp":1607098454,"output":"/1 in Ppl.Ppls.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_requ"},{"event":"cmd_output","timestamp":1607098454,"output":"est, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supe"},{"event":"cmd_output","timestamp":1607098454,"output":"rvisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:14:14.908 [info] Periodic from module Elixir.Ppl.Ppls.ST"},{"event":"cmd_output","timestamp":1607098454,"output":"MHandler.StoppingState with name Elixir.Ppl.Ppls.STMHandler.StoppingState :: period: 100 ms, metric_"},{"event":"cmd_output","timestamp":1607098454,"output":"name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring args: %{allowed_sta"},{"event":"cmd_output","timestamp":1607098454,"output":"tes: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state:"},{"event":"cmd_output","timestamp":1607098454,"output":" \"stopping\", publisher_cb: #Function<0.71803493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, repo"},{"event":"cmd_output","timestamp":1607098454,"output":": Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, "},{"event":"cmd_output","timestamp":1607098454,"output":":ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:14.909 [info] Peri"},{"event":"cmd_output","timestamp":1607098454,"output":"odic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STM"},{"event":"cmd_output","timestamp":1607098454,"output":"Handler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMH"},{"event":"cmd_output","timestamp":1607098454,"output":"andler-CreatedState\"]}, recurring args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0,"},{"event":"cmd_output","timestamp":1607098454,"output":" initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip, r"},{"event":"cmd_output","timestamp":1607098454,"output":"epo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_coun"},{"event":"cmd_output","timestamp":1607098454,"output":"t, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:14"},{"event":"cmd_output","timestamp":1607098454,"output":".910 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.P"},{"event":"cmd_output","timestamp":1607098454,"output":"pl.PplSubInits.STMHandler.FetchingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"P"},{"event":"cmd_output","timestamp":1607098454,"output":"pl-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"comp"},{"event":"cmd_output","timestamp":1607098454,"output":"ilation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_"},{"event":"cmd_output","timestamp":1607098454,"output":"state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :up"},{"event":"cmd_output","timestamp":1607098454,"output":"dated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, tas"},{"event":"cmd_output","timestamp":1607098454,"output":"k_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:14.911 [info] Periodic from module Elixir.Ppl.PplSubInits.ST"},{"event":"cmd_output","timestamp":1607098454,"output":"MHandler.CompilationState with name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 10"},{"event":"cmd_output","timestamp":1607098454,"output":"0 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurr"},{"event":"cmd_output","timestamp":1607098454,"output":"ing args: %{allowed_states: [\"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -"},{"event":"cmd_output","timestamp":1607098454,"output":"2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"compilation\", publisher_cb: :s"},{"event":"cmd_output","timestamp":1607098454,"output":"kip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recover"},{"event":"cmd_output","timestamp":1607098454,"output":"y_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098454,"output":":14:14.912 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with name"},{"event":"cmd_output","timestamp":1607098454,"output":" Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-w"},{"event":"cmd_output","timestamp":1607098454,"output":"ake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurring args: %{allowed_states: [\"done\""},{"event":"cmd_output","timestamp":1607098454,"output":"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_i"},{"event":"cmd_output","timestamp":1607098454,"output":"nit\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :st"},{"event":"cmd_output","timestamp":1607098454,"output":"ate, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor:"},{"event":"cmd_output","timestamp":1607098454,"output":" :skip}\n\u001b[0m\u001b[22m\n16:14:14.913 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.Initia"},{"event":"cmd_output","timestamp":1607098454,"output":"lizingState with name Elixir.Ppl.PplBlocks.STMHandler.InitializingState :: period: 100 ms, metric_na"},{"event":"cmd_output","timestamp":1607098454,"output":"me: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-InitializingState\"]}, recurring args: %{allo"},{"event":"cmd_output","timestamp":1607098454,"output":"wed_states: [\"initializing\", \"waiting\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.M"},{"event":"cmd_output","timestamp":1607098454,"output":"odel.PplBlocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: "},{"event":"cmd_output","timestamp":1607098454,"output":"[:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], sch"},{"event":"cmd_output","timestamp":1607098454,"output":"ema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:14.913 [info] Periodi"},{"event":"cmd_output","timestamp":1607098454,"output":"c from module Elixir.Ppl.PplBlocks.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler"},{"event":"cmd_output","timestamp":1607098454,"output":".WaitingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-W"},{"event":"cmd_output","timestamp":1607098454,"output":"aitingState\"]}, recurring args: %{allowed_states: [\"waiting\", \"running\", \"done\"], cooling_time_sec: "},{"event":"cmd_output","timestamp":1607098454,"output":"0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"waiting\", publisher_cb: #Function<"},{"event":"cmd_output","timestamp":1607098454,"output":"0.8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :"},{"event":"cmd_output","timestamp":1607098454,"output":"terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Pp"},{"event":"cmd_output","timestamp":1607098454,"output":"l.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:14.914 [info] Periodic from "},{"event":"cmd_output","timestamp":1607098454,"output":"module Elixir.Ppl.PplBlocks.STMHandler.RunningState with name Elixir.Ppl.PplBlocks.STMHandler.Runnin"},{"event":"cmd_output","timestamp":1607098454,"output":"gState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningS"},{"event":"cmd_output","timestamp":1607098454,"output":"tate\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, in"},{"event":"cmd_output","timestamp":1607098454,"output":"itial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"running\", publisher_cb: #Function<0.281"},{"event":"cmd_output","timestamp":1607098454,"output":"66834/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :term"},{"event":"cmd_output","timestamp":1607098454,"output":"inate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], sch"},{"event":"cmd_output","timestamp":1607098454,"output":"ema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:14.915 [info] Periodi"},{"event":"cmd_output","timestamp":1607098454,"output":"c from module Elixir.Ppl.PplBlocks.STMHandler.StoppingState with name Elixir.Ppl.PplBlocks.STMHandle"},{"event":"cmd_output","timestamp":1607098454,"output":"r.StoppingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler"},{"event":"cmd_output","timestamp":1607098454,"output":"-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, ini"},{"event":"cmd_output","timestamp":1607098454,"output":"tial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"stopping\", publisher_cb: #Function<0.104"},{"event":"cmd_output","timestamp":1607098454,"output":"215991/1 in Ppl.PplBlocks.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :te"},{"event":"cmd_output","timestamp":1607098454,"output":"rminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], s"},{"event":"cmd_output","timestamp":1607098454,"output":"chema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:14.916 [info] Perio"},{"event":"cmd_output","timestamp":1607098454,"output":"dic from module Elixir.Block.Blocks.STMHandler.InitializingState with name Elixir.Block.Blocks.STMHa"},{"event":"cmd_output","timestamp":1607098454,"output":"ndler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMH"},{"event":"cmd_output","timestamp":1607098454,"output":"andler-InitializingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec"},{"event":"cmd_output","timestamp":1607098454,"output":": 0, initial_query: Block.Blocks.Model.Blocks, observed_state: \"initializing\", publisher_cb: :skip, "},{"event":"cmd_output","timestamp":1607098454,"output":"repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :bl"},{"event":"cmd_output","timestamp":1607098454,"output":"ock_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:14.916 [info] "},{"event":"cmd_output","timestamp":1607098454,"output":" Periodic from module Elixir.Block.Blocks.STMHandler.RunningState with name Elixir.Block.Blocks.STMH"},{"event":"cmd_output","timestamp":1607098454,"output":"andler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandl"},{"event":"cmd_output","timestamp":1607098454,"output":"er-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_"},{"event":"cmd_output","timestamp":1607098454,"output":"sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"running\", publisher_cb: :skip, r"},{"event":"cmd_output","timestamp":1607098454,"output":"epo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :blo"},{"event":"cmd_output","timestamp":1607098454,"output":"ck_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:14.917 [info] "},{"event":"cmd_output","timestamp":1607098454,"output":"Periodic from module Elixir.Block.Blocks.STMHandler.StoppingState with name Elixir.Block.Blocks.STMH"},{"event":"cmd_output","timestamp":1607098454,"output":"andler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHand"},{"event":"cmd_output","timestamp":1607098454,"output":"ler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, "},{"event":"cmd_output","timestamp":1607098454,"output":"initial_query: Block.Blocks.Model.Blocks, observed_state: \"stopping\", publisher_cb: :skip, repo: Blo"},{"event":"cmd_output","timestamp":1607098454,"output":"ck.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], "},{"event":"cmd_output","timestamp":1607098454,"output":"schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:14.918 [info] Periodic"},{"event":"cmd_output","timestamp":1607098454,"output":" from module Elixir.Block.Tasks.STMHandler.PendingState with name Elixir.Block.Tasks.STMHandler.Pend"},{"event":"cmd_output","timestamp":1607098454,"output":"ingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingSt"},{"event":"cmd_output","timestamp":1607098454,"output":"ate\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: B"},{"event":"cmd_output","timestamp":1607098454,"output":"lock.Tasks.Model.Tasks, observed_state: \"pending\", publisher_cb: :skip, repo: Block.EctoRepo, return"},{"event":"cmd_output","timestamp":1607098454,"output":"ing: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id, :build_request_id], "},{"event":"cmd_output","timestamp":1607098454,"output":"schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:14.918 [info] Periodic f"},{"event":"cmd_output","timestamp":1607098454,"output":"rom module Elixir.Block.Tasks.STMHandler.RunningState with name Elixir.Block.Tasks.STMHandler.Runnin"},{"event":"cmd_output","timestamp":1607098454,"output":"gState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningStat"},{"event":"cmd_output","timestamp":1607098454,"output":"e\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initi"},{"event":"cmd_output","timestamp":1607098454,"output":"al_query: Block.Tasks.Model.Tasks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoR"},{"event":"cmd_output","timestamp":1607098454,"output":"epo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: "},{"event":"cmd_output","timestamp":1607098454,"output":"Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:14.919 [info] Periodic from modu"},{"event":"cmd_output","timestamp":1607098454,"output":"le Elixir.Block.Tasks.STMHandler.StoppingState with name Elixir.Block.Tasks.STMHandler.StoppingState"},{"event":"cmd_output","timestamp":1607098454,"output":" :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]},"},{"event":"cmd_output","timestamp":1607098454,"output":" recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block."},{"event":"cmd_output","timestamp":1607098454,"output":"Tasks.Model.Tasks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning:"},{"event":"cmd_output","timestamp":1607098454,"output":" [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Mod"},{"event":"cmd_output","timestamp":1607098454,"output":"el.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:14.922 [info] Request: 'run: %{\"branch_id\" => \""},{"event":"cmd_output","timestamp":1607098454,"output":"953bf8e4-6aa2-458c-b780-ecb9fe9c5ae5\", \"branch_name\" => \"list_of_paths\", \"commit_sha\" => \"75891a4469"},{"event":"cmd_output","timestamp":1607098454,"output":"\", \"file_name\" => \"list_of_paths.yml\", \"hook_id\" => \"c0c0397c-364b-11eb-b81d-5254005464e2\", \"label\" "},{"event":"cmd_output","timestamp":1607098454,"output":"=> \"list_of_paths\", \"organization_id\" => \"4ed669f4-e342-4482-a088-c72ab3be1997\", \"owner\" => \"rt\", \"p"},{"event":"cmd_output","timestamp":1607098454,"output":"roject_id\" => \"ead9dee1-b9bc-43fe-ae4a-c9fda7489052\", \"repo_name\" => \"22_skip_block\", \"request_token"},{"event":"cmd_output","timestamp":1607098454,"output":"\" => \"c0c0310c-364b-11eb-9ed9-5254005464e2\", \"requester_id\" => \"106142fe-dcb4-42dc-91a2-dc369a50e41c"},{"event":"cmd_output","timestamp":1607098454,"output":"\", \"service\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"5"},{"event":"cmd_output","timestamp":1607098454,"output":"564a3a3-5bb4-489e-b649-3ec9224cd38c\", \"working_dir\" => \".semaphore/change_in\"}\n\u001b[0m\u001b[22m\n16:14:14."},{"event":"cmd_output","timestamp":1607098454,"output":"930 [info] ppl_id: b3360249-9900-4cb6-840f-c9971e4d862f, type: PplRequests, event: persisted schedu"},{"event":"cmd_output","timestamp":1607098454,"output":"le request with request_token: c0c0310c-364b-11eb-9ed9-5254005464e2, origin: Elixir.Ppl.PplRequests."},{"event":"cmd_output","timestamp":1607098454,"output":"Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:14:14.933 [info] ppl_id: b3360249"},{"event":"cmd_output","timestamp":1607098454,"output":"-9900-4cb6-840f-c9971e4d862f, type: Ppls, state: initializing, event: initializing, recovery_count: "},{"event":"cmd_output","timestamp":1607098454,"output":"0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:14:14.937 [in"},{"event":"cmd_output","timestamp":1607098454,"output":"fo] Project ead9dee1-b9bc-43fe-ae4a-c9fda7489052 and branch list_of_pathslatest_wf details updated:"},{"event":"cmd_output","timestamp":1607098454,"output":" \"wf_id: 5564a3a3-5bb4-489e-b649-3ec9224cd38c, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:14:14.939 [info] Persis"},{"event":"cmd_output","timestamp":1607098454,"output":"ted ppl_sub_init for pipeline with ppl_id: b3360249-9900-4cb6-840f-c9971e4d862f: %Ppl.PplSubInits.Mo"},{"event":"cmd_output","timestamp":1607098454,"output":"del.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil"},{"event":"cmd_output","timestamp":1607098454,"output":", error_description: nil, id: 322, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-"},{"event":"cmd_output","timestamp":1607098454,"output":"12-04 16:14:14.937526], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"b3360249-9900-4cb6-840f-c9971e4d862f\", recovery_count: 0, result: nil, re"},{"event":"cmd_output","timestamp":1607098454,"output":"sult_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at:"},{"event":"cmd_output","timestamp":1607098454,"output":" ~N[2020-12-04 16:14:14.937534]}\n\u001b[0m\u001b[22m\n16:14:14.947 [info] ppl_id: b3360249-9900-4cb6-840f-c9"},{"event":"cmd_output","timestamp":1607098454,"output":"971e4d862f, type: PplRequests, event: persisted source_args for pipeline: b3360249-9900-4cb6-840f-c9"},{"event":"cmd_output","timestamp":1607098454,"output":"971e4d862f, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098454,"output":"m\n16:14:14.949 [info] ppl_id: b3360249-9900-4cb6-840f-c9971e4d862f, type: PplSubInits, state: fetc"},{"event":"cmd_output","timestamp":1607098454,"output":"hing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098454,"output":"90), \n\u001b[0m\u001b[22m\n16:14:14.969 [info] ppl_id: b3360249-9900-4cb6-840f-c9971e4d862f, type: PplSubIni"},{"event":"cmd_output","timestamp":1607098454,"output":"ts, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.l"},{"event":"cmd_output","timestamp":1607098455,"output":"og_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:15.003 [info] ppl_id: b3360249-9900-4cb6-840f-c9971e4d86"},{"event":"cmd_output","timestamp":1607098455,"output":"2f, type: PplRequests, event: persisted definition for request with request_token: c0c0310c-364b-11e"},{"event":"cmd_output","timestamp":1607098455,"output":"b-9ed9-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76"},{"event":"cmd_output","timestamp":1607098455,"output":"), \n\u001b[0m\u001b[22m\n16:14:15.016 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto"},{"event":"cmd_output","timestamp":1607098455,"output":".Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:14:15.015218], name: \"list_of_pat"},{"event":"cmd_output","timestamp":1607098455,"output":"hs-.semaphore/change_in/list_of_paths.yml\", organization_id: \"4ed669f4-e342-4482-a088-c72ab3be1997\","},{"event":"cmd_output","timestamp":1607098455,"output":" project_id: \"ead9dee1-b9bc-43fe-ae4a-c9fda7489052\", queue_id: \"aac230b8-c0a6-4b39-9585-70e43d625275"},{"event":"cmd_output","timestamp":1607098455,"output":"\", scope: \"project\", updated_at: ~N[2020-12-04 16:14:15.015223], user_generated: false}}\n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098455,"output":"\n16:14:15.025 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all"},{"event":"cmd_output","timestamp":1607098455,"output":"_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:15.025 [info] ppl_id: b3360249-9900-4cb6-840f-c9971e4d862f, type: "},{"event":"cmd_output","timestamp":1607098455,"output":"PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Pp"},{"event":"cmd_output","timestamp":1607098455,"output":"l.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:15.026 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098455,"output":" b3360249-9900-4cb6-840f-c9971e4d862f, type: PplSubInits, state: done, result: passed, event: exit_s"},{"event":"cmd_output","timestamp":1607098455,"output":"cheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098455,"output":"6:14:15.033 [info] ppl_id: b3360249-9900-4cb6-840f-c9971e4d862f, type: PplBlocks, block_index: 0, s"},{"event":"cmd_output","timestamp":1607098455,"output":"tate: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098455,"output":"hange/1(L90), \n\u001b[0m\u001b[22m\n16:14:15.036 [info] ppl_id: b3360249-9900-4cb6-840f-c9971e4d862f, type: "},{"event":"cmd_output","timestamp":1607098455,"output":"Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_"},{"event":"cmd_output","timestamp":1607098455,"output":"state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:15.042 [info] ppl_id: b3360249-9900-4cb6-840f-c9971e4d862f,"},{"event":"cmd_output","timestamp":1607098455,"output":" type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Im"},{"event":"cmd_output","timestamp":1607098455,"output":"pl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:15.049 [info] ppl_id: b3360249-9900-4cb6-840f-c9971e"},{"event":"cmd_output","timestamp":1607098455,"output":"4d862f, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper"},{"event":"cmd_output","timestamp":1607098455,"output":".STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:15.055 [info] PplBlocks WaitingState STM is s"},{"event":"cmd_output","timestamp":1607098455,"output":"cheduling block 0 from pipeline: \"b3360249-9900-4cb6-840f-c9971e4d862f\"\n\u001b[0m\u001b[22m\n16:14:15.065 [in"},{"event":"cmd_output","timestamp":1607098455,"output":"fo] ppl_id: b3360249-9900-4cb6-840f-c9971e4d862f, type: PplBlocks, block_index: 0, state: done, res"},{"event":"cmd_output","timestamp":1607098455,"output":"ult: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_cha"},{"event":"cmd_output","timestamp":1607098455,"output":"nge/1(L90), \n\u001b[0m\u001b[22m\n16:14:15.072 [info] ppl_id: b3360249-9900-4cb6-840f-c9971e4d862f, type: Pp"},{"event":"cmd_output","timestamp":1607098455,"output":"ls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.ST"},{"event":"cmd_output","timestamp":1607098455,"output":"M.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test change_in with list of strings as first param i"},{"event":"cmd_output","timestamp":1607098455,"output":"s processed correctly (291.3ms)\u001b[0m\n * test change_in uses diferent default branch when defult_bra"},{"event":"cmd_output","timestamp":1607098455,"output":"nch config is given\u001b[22m\n16:14:15.202 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.Initi"},{"event":"cmd_output","timestamp":1607098455,"output":"alizingState with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms, metric_name: "},{"event":"cmd_output","timestamp":1607098455,"output":"{\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %{allowed_state"},{"event":"cmd_output","timestamp":1607098455,"output":"s: [\"initializing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, obs"},{"event":"cmd_output","timestamp":1607098455,"output":"erved_state: \"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.Initializi"},{"event":"cmd_output","timestamp":1607098455,"output":"ngState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :resu"},{"event":"cmd_output","timestamp":1607098455,"output":"lt, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098455,"output":"4:15.203 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.P"},{"event":"cmd_output","timestamp":1607098455,"output":"pls.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMH"},{"event":"cmd_output","timestamp":1607098455,"output":"andler-PendingState\"]}, recurring args: %{allowed_states: [\"pending\", \"queuing\", \"running\", \"done\"],"},{"event":"cmd_output","timestamp":1607098455,"output":" cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publisher_cb: #"},{"event":"cmd_output","timestamp":1607098455,"output":"Function<0.8493005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:i"},{"event":"cmd_output","timestamp":1607098455,"output":"d, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Mod"},{"event":"cmd_output","timestamp":1607098455,"output":"el.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:14:15.204 [info] Periodic from module "},{"event":"cmd_output","timestamp":1607098455,"output":"Elixir.Ppl.Ppls.STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period:"},{"event":"cmd_output","timestamp":1607098455,"output":" 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args"},{"event":"cmd_output","timestamp":1607098455,"output":": %{allowed_states: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Mo"},{"event":"cmd_output","timestamp":1607098455,"output":"del.Ppls, observed_state: \"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.Qu"},{"event":"cmd_output","timestamp":1607098455,"output":"euingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :r"},{"event":"cmd_output","timestamp":1607098455,"output":"esult, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098455,"output":"6:14:15.204 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.RunningState with name Elixir.Pp"},{"event":"cmd_output","timestamp":1607098455,"output":"l.Ppls.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-S"},{"event":"cmd_output","timestamp":1607098455,"output":"TMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], coolin"},{"event":"cmd_output","timestamp":1607098455,"output":"g_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"running\", publisher_cb: #Functi"},{"event":"cmd_output","timestamp":1607098455,"output":"on<0.74670282/1 in Ppl.Ppls.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :t"},{"event":"cmd_output","timestamp":1607098455,"output":"erminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Pp"},{"event":"cmd_output","timestamp":1607098455,"output":"ls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:14:15.205 [info] Periodic from module Elixi"},{"event":"cmd_output","timestamp":1607098455,"output":"r.Ppl.Ppls.STMHandler.StoppingState with name Elixir.Ppl.Ppls.STMHandler.StoppingState :: period: 10"},{"event":"cmd_output","timestamp":1607098455,"output":"0 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring args: "},{"event":"cmd_output","timestamp":1607098455,"output":"%{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, ob"},{"event":"cmd_output","timestamp":1607098455,"output":"served_state: \"stopping\", publisher_cb: #Function<0.71803493/1 in Ppl.Ppls.STMHandler.StoppingState."},{"event":"cmd_output","timestamp":1607098455,"output":"args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :rec"},{"event":"cmd_output","timestamp":1607098455,"output":"overy_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:15.205"},{"event":"cmd_output","timestamp":1607098455,"output":" [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedState with name Elixir.Ppl.Pp"},{"event":"cmd_output","timestamp":1607098455,"output":"lSubInits.STMHandler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppl"},{"event":"cmd_output","timestamp":1607098455,"output":"SubInits-STMHandler-CreatedState\"]}, recurring args: %{allowed_states: [\"fetching\", \"done\"], cooling"},{"event":"cmd_output","timestamp":1607098455,"output":"_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"created\", publisher"},{"event":"cmd_output","timestamp":1607098455,"output":"_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :"},{"event":"cmd_output","timestamp":1607098455,"output":"recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098455,"output":"22m\n16:14:15.206 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.FetchingState with "},{"event":"cmd_output","timestamp":1607098455,"output":"name Elixir.Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 ms, metric_name: {\"Ppl.beholder-"},{"event":"cmd_output","timestamp":1607098455,"output":"wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %{allowed_states: [\"regular"},{"event":"cmd_output","timestamp":1607098455,"output":"_init\", \"compilation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubIni"},{"event":"cmd_output","timestamp":1607098455,"output":"ts, observed_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate"},{"event":"cmd_output","timestamp":1607098455,"output":"_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.Ppl"},{"event":"cmd_output","timestamp":1607098455,"output":"SubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:15.207 [info] Periodic from module Elixir.Ppl.P"},{"event":"cmd_output","timestamp":1607098455,"output":"plSubInits.STMHandler.CompilationState with name Elixir.Ppl.PplSubInits.STMHandler.CompilationState "},{"event":"cmd_output","timestamp":1607098455,"output":":: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationSta"},{"event":"cmd_output","timestamp":1607098455,"output":"te\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"stopping\", \"done\"], coolin"},{"event":"cmd_output","timestamp":1607098455,"output":"g_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"compilation\", pub"},{"event":"cmd_output","timestamp":1607098455,"output":"lisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :res"},{"event":"cmd_output","timestamp":1607098455,"output":"ult, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n"},{"event":"cmd_output","timestamp":1607098455,"output":"\u001b[0m\u001b[22m\n16:14:15.207 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.RegularInitSt"},{"event":"cmd_output","timestamp":1607098455,"output":"ate with name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period: 100 ms, metric_name: {\"P"},{"event":"cmd_output","timestamp":1607098455,"output":"pl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurring args: %{allowed_st"},{"event":"cmd_output","timestamp":1607098455,"output":"ates: [\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_stat"},{"event":"cmd_output","timestamp":1607098455,"output":"e: \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :up"},{"event":"cmd_output","timestamp":1607098455,"output":"dated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, tas"},{"event":"cmd_output","timestamp":1607098455,"output":"k_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:15.207 [info] Periodic from module Elixir.Ppl.PplBlocks.STMH"},{"event":"cmd_output","timestamp":1607098455,"output":"andler.InitializingState with name Elixir.Ppl.PplBlocks.STMHandler.InitializingState :: period: 100 "},{"event":"cmd_output","timestamp":1607098455,"output":"ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-InitializingState\"]}, recurring"},{"event":"cmd_output","timestamp":1607098455,"output":" args: %{allowed_states: [\"initializing\", \"waiting\", \"done\"], cooling_time_sec: 0, initial_query: Pp"},{"event":"cmd_output","timestamp":1607098455,"output":"l.PplBlocks.Model.PplBlocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo"},{"event":"cmd_output","timestamp":1607098455,"output":", returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :bloc"},{"event":"cmd_output","timestamp":1607098455,"output":"k_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:15.207 [i"},{"event":"cmd_output","timestamp":1607098455,"output":"nfo] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.WaitingState with name Elixir.Ppl.PplBloc"},{"event":"cmd_output","timestamp":1607098455,"output":"ks.STMHandler.WaitingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks"},{"event":"cmd_output","timestamp":1607098455,"output":"-STMHandler-WaitingState\"]}, recurring args: %{allowed_states: [\"waiting\", \"running\", \"done\"], cooli"},{"event":"cmd_output","timestamp":1607098455,"output":"ng_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"waiting\", publisher_c"},{"event":"cmd_output","timestamp":1607098455,"output":"b: #Function<0.8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, retur"},{"event":"cmd_output","timestamp":1607098455,"output":"ning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index"},{"event":"cmd_output","timestamp":1607098455,"output":"], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:15.208 [info] P"},{"event":"cmd_output","timestamp":1607098455,"output":"eriodic from module Elixir.Ppl.PplBlocks.STMHandler.RunningState with name Elixir.Ppl.PplBlocks.STMH"},{"event":"cmd_output","timestamp":1607098455,"output":"andler.RunningState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHan"},{"event":"cmd_output","timestamp":1607098455,"output":"dler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_tim"},{"event":"cmd_output","timestamp":1607098455,"output":"e_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"running\", publisher_cb: #F"},{"event":"cmd_output","timestamp":1607098455,"output":"unction<0.28166834/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning"},{"event":"cmd_output","timestamp":1607098455,"output":": [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :b"},{"event":"cmd_output","timestamp":1607098455,"output":"lock_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:15.208 [i"},{"event":"cmd_output","timestamp":1607098455,"output":"nfo] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.StoppingState with name Elixir.Ppl.PplBlo"},{"event":"cmd_output","timestamp":1607098455,"output":"cks.STMHandler.StoppingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBloc"},{"event":"cmd_output","timestamp":1607098455,"output":"ks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time"},{"event":"cmd_output","timestamp":1607098455,"output":"_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"stopping\", publisher_cb: #F"},{"event":"cmd_output","timestamp":1607098455,"output":"unction<0.104215991/1 in Ppl.PplBlocks.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returni"},{"event":"cmd_output","timestamp":1607098455,"output":"ng: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, "},{"event":"cmd_output","timestamp":1607098455,"output":":block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:15.208 "},{"event":"cmd_output","timestamp":1607098455,"output":"[info] Periodic from module Elixir.Block.Blocks.STMHandler.InitializingState with name Elixir.Block"},{"event":"cmd_output","timestamp":1607098455,"output":".Blocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Bloc"},{"event":"cmd_output","timestamp":1607098455,"output":"k-Blocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], coo"},{"event":"cmd_output","timestamp":1607098455,"output":"ling_time_sec: 0, initial_query: Block.Blocks.Model.Blocks, observed_state: \"initializing\", publishe"},{"event":"cmd_output","timestamp":1607098455,"output":"r_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recove"},{"event":"cmd_output","timestamp":1607098455,"output":"ry_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:1"},{"event":"cmd_output","timestamp":1607098455,"output":"5.208 [info] Periodic from module Elixir.Block.Blocks.STMHandler.RunningState with name Elixir.Bloc"},{"event":"cmd_output","timestamp":1607098455,"output":"k.Blocks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Bl"},{"event":"cmd_output","timestamp":1607098455,"output":"ocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], "},{"event":"cmd_output","timestamp":1607098455,"output":"cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"running\", publisher"},{"event":"cmd_output","timestamp":1607098455,"output":"_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recover"},{"event":"cmd_output","timestamp":1607098455,"output":"y_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:15"},{"event":"cmd_output","timestamp":1607098455,"output":".209 [info] Periodic from module Elixir.Block.Blocks.STMHandler.StoppingState with name Elixir.Bloc"},{"event":"cmd_output","timestamp":1607098455,"output":"k.Blocks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-B"},{"event":"cmd_output","timestamp":1607098455,"output":"locks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_t"},{"event":"cmd_output","timestamp":1607098455,"output":"ime_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"stopping\", publisher_cb: :sk"},{"event":"cmd_output","timestamp":1607098455,"output":"ip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count,"},{"event":"cmd_output","timestamp":1607098455,"output":" :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:15.209 [in"},{"event":"cmd_output","timestamp":1607098455,"output":"fo] Periodic from module Elixir.Block.Tasks.STMHandler.PendingState with name Elixir.Block.Tasks.ST"},{"event":"cmd_output","timestamp":1607098455,"output":"MHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHand"},{"event":"cmd_output","timestamp":1607098455,"output":"ler-PendingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, ini"},{"event":"cmd_output","timestamp":1607098455,"output":"tial_query: Block.Tasks.Model.Tasks, observed_state: \"pending\", publisher_cb: :skip, repo: Block.Ect"},{"event":"cmd_output","timestamp":1607098455,"output":"oRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id, :build_"},{"event":"cmd_output","timestamp":1607098455,"output":"request_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:15.209 [info"},{"event":"cmd_output","timestamp":1607098455,"output":"] Periodic from module Elixir.Block.Tasks.STMHandler.RunningState with name Elixir.Block.Tasks.STMH"},{"event":"cmd_output","timestamp":1607098455,"output":"andler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandle"},{"event":"cmd_output","timestamp":1607098455,"output":"r-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_s"},{"event":"cmd_output","timestamp":1607098455,"output":"ec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"running\", publisher_cb: :skip, repo"},{"event":"cmd_output","timestamp":1607098455,"output":": Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_"},{"event":"cmd_output","timestamp":1607098455,"output":"id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:15.209 [info] Perio"},{"event":"cmd_output","timestamp":1607098455,"output":"dic from module Elixir.Block.Tasks.STMHandler.StoppingState with name Elixir.Block.Tasks.STMHandler."},{"event":"cmd_output","timestamp":1607098455,"output":"StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-Stop"},{"event":"cmd_output","timestamp":1607098455,"output":"pingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_"},{"event":"cmd_output","timestamp":1607098455,"output":"query: Block.Tasks.Model.Tasks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRep"},{"event":"cmd_output","timestamp":1607098455,"output":"o, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Bl"},{"event":"cmd_output","timestamp":1607098455,"output":"ock.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:15.217 [info] Request: 'run: %{\"br"},{"event":"cmd_output","timestamp":1607098455,"output":"anch_id\" => \"96cbe3cc-4fe7-41a4-aef1-a52cde937849\", \"branch_name\" => \"master-v2\", \"commit_sha\" => \"7"},{"event":"cmd_output","timestamp":1607098455,"output":"5891a4469\", \"file_name\" => \"config_default_branch.yml\", \"hook_id\" => \"c0ec7db6-364b-11eb-89b8-525400"},{"event":"cmd_output","timestamp":1607098455,"output":"5464e2\", \"label\" => \"master-v2\", \"organization_id\" => \"5d95dc0d-defd-4973-972e-5853bcef8273\", \"owner"},{"event":"cmd_output","timestamp":1607098455,"output":"\" => \"rt\", \"project_id\" => \"ec651d05-8a74-43a4-964b-59747a00afc7\", \"repo_name\" => \"22_skip_block\", \""},{"event":"cmd_output","timestamp":1607098455,"output":"request_token\" => \"c0ec74e2-364b-11eb-8860-5254005464e2\", \"requester_id\" => \"714aad3d-5d0a-4760-98ff"},{"event":"cmd_output","timestamp":1607098455,"output":"-d85a1cbf844e\", \"service\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], "},{"event":"cmd_output","timestamp":1607098455,"output":"\"wf_id\" => \"c3d74541-ecad-4aed-814d-58c477f3de59\", \"working_dir\" => \".semaphore/change_in\"}\n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098455,"output":"2m\n16:14:15.219 [info] ppl_id: 88bb4073-84f9-409a-9a07-bdb5a20fc3e4, type: PplRequests, event: per"},{"event":"cmd_output","timestamp":1607098455,"output":"sisted schedule request with request_token: c0ec74e2-364b-11eb-8860-5254005464e2, origin: Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098455,"output":".PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:14:15.221 [info] ppl"},{"event":"cmd_output","timestamp":1607098455,"output":"_id: 88bb4073-84f9-409a-9a07-bdb5a20fc3e4, type: Ppls, state: initializing, event: initializing, rec"},{"event":"cmd_output","timestamp":1607098455,"output":"overy_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098455,"output":"14:15.224 [info] Project ec651d05-8a74-43a4-964b-59747a00afc7 and branch master-v2latest_wf details"},{"event":"cmd_output","timestamp":1607098455,"output":" updated: \"wf_id: c3d74541-ecad-4aed-814d-58c477f3de59, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:14:15.225 [info"},{"event":"cmd_output","timestamp":1607098455,"output":"] Persisted ppl_sub_init for pipeline with ppl_id: 88bb4073-84f9-409a-9a07-bdb5a20fc3e4: %Ppl.PplSu"},{"event":"cmd_output","timestamp":1607098455,"output":"bInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_tas"},{"event":"cmd_output","timestamp":1607098455,"output":"k_id: nil, error_description: nil, id: 323, in_scheduling: false, init_type: \"regular\", inserted_at:"},{"event":"cmd_output","timestamp":1607098455,"output":" ~N[2020-12-04 16:14:15.224265], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"88bb4073-84f9-409a-9a07-bdb5a20fc3e4\", recovery_count: 0, result"},{"event":"cmd_output","timestamp":1607098455,"output":": nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, up"},{"event":"cmd_output","timestamp":1607098455,"output":"dated_at: ~N[2020-12-04 16:14:15.224270]}\n\u001b[0m\u001b[22m\n16:14:15.233 [info] ppl_id: 88bb4073-84f9-409"},{"event":"cmd_output","timestamp":1607098455,"output":"a-9a07-bdb5a20fc3e4, type: PplRequests, event: persisted source_args for pipeline: 88bb4073-84f9-409"},{"event":"cmd_output","timestamp":1607098455,"output":"a-9a07-bdb5a20fc3e4, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \r"},{"event":"cmd_output","timestamp":1607098455,"output":"\n\u001b[0m\u001b[22m\n16:14:15.235 [info] ppl_id: 88bb4073-84f9-409a-9a07-bdb5a20fc3e4, type: PplSubInits, st"},{"event":"cmd_output","timestamp":1607098455,"output":"ate: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098455,"output":"hange/1(L90), \n\u001b[0m\u001b[22m\n16:14:15.254 [info] ppl_id: 88bb4073-84f9-409a-9a07-bdb5a20fc3e4, type: "},{"event":"cmd_output","timestamp":1607098455,"output":"PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.S"},{"event":"cmd_output","timestamp":1607098455,"output":"TM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:15.269 [info] ppl_id: 88bb4073-84f9-409a-9a07-b"},{"event":"cmd_output","timestamp":1607098455,"output":"db5a20fc3e4, type: PplRequests, event: persisted definition for request with request_token: c0ec74e2"},{"event":"cmd_output","timestamp":1607098455,"output":"-364b-11eb-8860-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definit"},{"event":"cmd_output","timestamp":1607098455,"output":"ion/3(L76), \n\u001b[0m\u001b[22m\n16:14:15.280 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta"},{"event":"cmd_output","timestamp":1607098455,"output":"__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:14:15.279075], name: \"ma"},{"event":"cmd_output","timestamp":1607098455,"output":"ster-v2-.semaphore/change_in/config_default_branch.yml\", organization_id: \"5d95dc0d-defd-4973-972e-5"},{"event":"cmd_output","timestamp":1607098455,"output":"853bcef8273\", project_id: \"ec651d05-8a74-43a4-964b-59747a00afc7\", queue_id: \"4dea395f-8c4e-4456-96e3"},{"event":"cmd_output","timestamp":1607098455,"output":"-637f98f14992\", scope: \"project\", updated_at: ~N[2020-12-04 16:14:15.279084], user_generated: false}"},{"event":"cmd_output","timestamp":1607098455,"output":"}\n\u001b[0m\u001b[22m\n16:14:15.283 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.Regular"},{"event":"cmd_output","timestamp":1607098455,"output":"InitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:15.283 [info] ppl_id: 88bb4073-84f9-409a-9a07-bdb5a20"},{"event":"cmd_output","timestamp":1607098455,"output":"fc3e4, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098455,"output":"in: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:15.285 [i"},{"event":"cmd_output","timestamp":1607098455,"output":"nfo] ppl_id: 88bb4073-84f9-409a-9a07-bdb5a20fc3e4, type: PplSubInits, state: done, result: passed, "},{"event":"cmd_output","timestamp":1607098455,"output":"event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \r"},{"event":"cmd_output","timestamp":1607098455,"output":"\n\u001b[0m\u001b[22m\n16:14:15.290 [info] ppl_id: 88bb4073-84f9-409a-9a07-bdb5a20fc3e4, type: PplBlocks, bloc"},{"event":"cmd_output","timestamp":1607098455,"output":"k_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Imp"},{"event":"cmd_output","timestamp":1607098455,"output":"l.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:15.300 [info] ppl_id: 88bb4073-84f9-409a-9a07-bdb5a20"},{"event":"cmd_output","timestamp":1607098455,"output":"fc3e4, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper."},{"event":"cmd_output","timestamp":1607098455,"output":"STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:15.309 [info] ppl_id: 88bb4073-84f9-409a-9a07-"},{"event":"cmd_output","timestamp":1607098455,"output":"bdb5a20fc3e4, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098455,"output":"Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:15.325 [info] ppl_id: 88bb4073-84f9-409"},{"event":"cmd_output","timestamp":1607098455,"output":"a-9a07-bdb5a20fc3e4, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098455,"output":"Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:15.332 [info] PplBlocks WaitingS"},{"event":"cmd_output","timestamp":1607098455,"output":"tate STM is scheduling block 0 from pipeline: \"88bb4073-84f9-409a-9a07-bdb5a20fc3e4\"\n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098455,"output":"14:15.342 [info] ppl_id: 88bb4073-84f9-409a-9a07-bdb5a20fc3e4, type: PplBlocks, block_index: 0, sta"},{"event":"cmd_output","timestamp":1607098455,"output":"te: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl."},{"event":"cmd_output","timestamp":1607098455,"output":"log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:15.349 [info] ppl_id: 88bb4073-84f9-409a-9a07-bdb5a20fc"},{"event":"cmd_output","timestamp":1607098455,"output":"3e4, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098455,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test change_in uses diferent default br"},{"event":"cmd_output","timestamp":1607098455,"output":"anch when defult_branch config is given (292.2ms)\u001b[0m\n * test change_in with string as first param"},{"event":"cmd_output","timestamp":1607098455,"output":" is processed correctly\u001b[22m\n16:14:15.481 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.I"},{"event":"cmd_output","timestamp":1607098455,"output":"nitializingState with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms, metric_na"},{"event":"cmd_output","timestamp":1607098455,"output":"me: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %{allowed_s"},{"event":"cmd_output","timestamp":1607098455,"output":"tates: [\"initializing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls,"},{"event":"cmd_output","timestamp":1607098455,"output":" observed_state: \"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.Initia"},{"event":"cmd_output","timestamp":1607098455,"output":"lizingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :"},{"event":"cmd_output","timestamp":1607098455,"output":"result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098455,"output":"16:14:15.481 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingState with name Elixir.P"},{"event":"cmd_output","timestamp":1607098455,"output":"pl.Ppls.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-"},{"event":"cmd_output","timestamp":1607098455,"output":"STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"pending\", \"queuing\", \"running\", \"don"},{"event":"cmd_output","timestamp":1607098455,"output":"e\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publisher_c"},{"event":"cmd_output","timestamp":1607098455,"output":"b: #Function<0.8493005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, returning:"},{"event":"cmd_output","timestamp":1607098455,"output":" [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls"},{"event":"cmd_output","timestamp":1607098455,"output":".Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:14:15.482 [info] Periodic from mod"},{"event":"cmd_output","timestamp":1607098455,"output":"ule Elixir.Ppl.Ppls.STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandler.QueuingState :: per"},{"event":"cmd_output","timestamp":1607098455,"output":"iod: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring "},{"event":"cmd_output","timestamp":1607098455,"output":"args: %{allowed_states: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098455,"output":"s.Model.Ppls, observed_state: \"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandle"},{"event":"cmd_output","timestamp":1607098455,"output":"r.QueuingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state"},{"event":"cmd_output","timestamp":1607098455,"output":", :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098455,"output":"m\n16:14:15.482 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.RunningState with name Elixi"},{"event":"cmd_output","timestamp":1607098455,"output":"r.Ppl.Ppls.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Pp"},{"event":"cmd_output","timestamp":1607098455,"output":"ls-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], co"},{"event":"cmd_output","timestamp":1607098455,"output":"oling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"running\", publisher_cb: #Fu"},{"event":"cmd_output","timestamp":1607098455,"output":"nction<0.74670282/1 in Ppl.Ppls.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id"},{"event":"cmd_output","timestamp":1607098455,"output":", :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Mode"},{"event":"cmd_output","timestamp":1607098455,"output":"l.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:14:15.482 [info] Periodic from module E"},{"event":"cmd_output","timestamp":1607098455,"output":"lixir.Ppl.Ppls.STMHandler.StoppingState with name Elixir.Ppl.Ppls.STMHandler.StoppingState :: period"},{"event":"cmd_output","timestamp":1607098455,"output":": 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring ar"},{"event":"cmd_output","timestamp":1607098455,"output":"gs: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls"},{"event":"cmd_output","timestamp":1607098455,"output":", observed_state: \"stopping\", publisher_cb: #Function<0.71803493/1 in Ppl.Ppls.STMHandler.StoppingSt"},{"event":"cmd_output","timestamp":1607098455,"output":"ate.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, "},{"event":"cmd_output","timestamp":1607098455,"output":":recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:15"},{"event":"cmd_output","timestamp":1607098455,"output":".482 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedState with name Elixir.Pp"},{"event":"cmd_output","timestamp":1607098455,"output":"l.PplSubInits.STMHandler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl"},{"event":"cmd_output","timestamp":1607098455,"output":"-PplSubInits-STMHandler-CreatedState\"]}, recurring args: %{allowed_states: [\"fetching\", \"done\"], coo"},{"event":"cmd_output","timestamp":1607098455,"output":"ling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"created\", publi"},{"event":"cmd_output","timestamp":1607098455,"output":"sher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :resul"},{"event":"cmd_output","timestamp":1607098455,"output":"t, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b["},{"event":"cmd_output","timestamp":1607098455,"output":"0m\u001b[22m\n16:14:15.483 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.FetchingState w"},{"event":"cmd_output","timestamp":1607098455,"output":"ith name Elixir.Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 ms, metric_name: {\"Ppl.behol"},{"event":"cmd_output","timestamp":1607098455,"output":"der-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %{allowed_states: [\"reg"},{"event":"cmd_output","timestamp":1607098455,"output":"ular_init\", \"compilation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSu"},{"event":"cmd_output","timestamp":1607098455,"output":"bInits, observed_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :termi"},{"event":"cmd_output","timestamp":1607098455,"output":"nate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model"},{"event":"cmd_output","timestamp":1607098455,"output":".PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:15.483 [info] Periodic from module Elixir.P"},{"event":"cmd_output","timestamp":1607098455,"output":"pl.PplSubInits.STMHandler.CompilationState with name Elixir.Ppl.PplSubInits.STMHandler.CompilationSt"},{"event":"cmd_output","timestamp":1607098455,"output":"ate :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-Compilatio"},{"event":"cmd_output","timestamp":1607098455,"output":"nState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"stopping\", \"done\"], co"},{"event":"cmd_output","timestamp":1607098455,"output":"oling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"compilation\","},{"event":"cmd_output","timestamp":1607098455,"output":" publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, "},{"event":"cmd_output","timestamp":1607098455,"output":":result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :ski"},{"event":"cmd_output","timestamp":1607098455,"output":"p}\n\u001b[0m\u001b[22m\n16:14:15.483 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.RegularIn"},{"event":"cmd_output","timestamp":1607098455,"output":"itState with name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period: 100 ms, metric_name:"},{"event":"cmd_output","timestamp":1607098455,"output":" {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurring args: %{allowe"},{"event":"cmd_output","timestamp":1607098455,"output":"d_states: [\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_"},{"event":"cmd_output","timestamp":1607098455,"output":"state: \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request,"},{"event":"cmd_output","timestamp":1607098455,"output":" :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits,"},{"event":"cmd_output","timestamp":1607098455,"output":" task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:15.484 [info] Periodic from module Elixir.Ppl.PplBlocks."},{"event":"cmd_output","timestamp":1607098455,"output":"STMHandler.InitializingState with name Elixir.Ppl.PplBlocks.STMHandler.InitializingState :: period: "},{"event":"cmd_output","timestamp":1607098455,"output":"100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-InitializingState\"]}, recur"},{"event":"cmd_output","timestamp":1607098455,"output":"ring args: %{allowed_states: [\"initializing\", \"waiting\", \"done\"], cooling_time_sec: 0, initial_query"},{"event":"cmd_output","timestamp":1607098455,"output":": Ppl.PplBlocks.Model.PplBlocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Ppl.Ecto"},{"event":"cmd_output","timestamp":1607098455,"output":"Repo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :"},{"event":"cmd_output","timestamp":1607098455,"output":"block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:15.48"},{"event":"cmd_output","timestamp":1607098455,"output":"4 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.WaitingState with name Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098455,"output":"Blocks.STMHandler.WaitingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBl"},{"event":"cmd_output","timestamp":1607098455,"output":"ocks-STMHandler-WaitingState\"]}, recurring args: %{allowed_states: [\"waiting\", \"running\", \"done\"], c"},{"event":"cmd_output","timestamp":1607098455,"output":"ooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"waiting\", publish"},{"event":"cmd_output","timestamp":1607098455,"output":"er_cb: #Function<0.8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, r"},{"event":"cmd_output","timestamp":1607098455,"output":"eturning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_i"},{"event":"cmd_output","timestamp":1607098455,"output":"ndex], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:15.484 [info"},{"event":"cmd_output","timestamp":1607098455,"output":"] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.RunningState with name Elixir.Ppl.PplBlocks."},{"event":"cmd_output","timestamp":1607098455,"output":"STMHandler.RunningState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-ST"},{"event":"cmd_output","timestamp":1607098455,"output":"MHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling"},{"event":"cmd_output","timestamp":1607098455,"output":"_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"running\", publisher_cb"},{"event":"cmd_output","timestamp":1607098455,"output":": #Function<0.28166834/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, retur"},{"event":"cmd_output","timestamp":1607098455,"output":"ning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index"},{"event":"cmd_output","timestamp":1607098455,"output":", :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:15.48"},{"event":"cmd_output","timestamp":1607098455,"output":"4 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.StoppingState with name Elixir.Ppl.Pp"},{"event":"cmd_output","timestamp":1607098455,"output":"lBlocks.STMHandler.StoppingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppl"},{"event":"cmd_output","timestamp":1607098455,"output":"Blocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_"},{"event":"cmd_output","timestamp":1607098455,"output":"time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"stopping\", publisher_cb"},{"event":"cmd_output","timestamp":1607098455,"output":": #Function<0.104215991/1 in Ppl.PplBlocks.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, ret"},{"event":"cmd_output","timestamp":1607098455,"output":"urning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_ind"},{"event":"cmd_output","timestamp":1607098455,"output":"ex, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:15."},{"event":"cmd_output","timestamp":1607098455,"output":"485 [info] Periodic from module Elixir.Block.Blocks.STMHandler.InitializingState with name Elixir.B"},{"event":"cmd_output","timestamp":1607098455,"output":"lock.Blocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\""},{"event":"cmd_output","timestamp":1607098455,"output":"Block-Blocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"],"},{"event":"cmd_output","timestamp":1607098455,"output":" cooling_time_sec: 0, initial_query: Block.Blocks.Model.Blocks, observed_state: \"initializing\", publ"},{"event":"cmd_output","timestamp":1607098455,"output":"isher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :re"},{"event":"cmd_output","timestamp":1607098455,"output":"covery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098455,"output":"14:15.485 [info] Periodic from module Elixir.Block.Blocks.STMHandler.RunningState with name Elixir."},{"event":"cmd_output","timestamp":1607098455,"output":"Block.Blocks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Bloc"},{"event":"cmd_output","timestamp":1607098455,"output":"k-Blocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done"},{"event":"cmd_output","timestamp":1607098455,"output":"\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"running\", publi"},{"event":"cmd_output","timestamp":1607098455,"output":"sher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :rec"},{"event":"cmd_output","timestamp":1607098455,"output":"overy_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098455,"output":"4:15.485 [info] Periodic from module Elixir.Block.Blocks.STMHandler.StoppingState with name Elixir."},{"event":"cmd_output","timestamp":1607098455,"output":"Block.Blocks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Blo"},{"event":"cmd_output","timestamp":1607098455,"output":"ck-Blocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooli"},{"event":"cmd_output","timestamp":1607098455,"output":"ng_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"stopping\", publisher_cb:"},{"event":"cmd_output","timestamp":1607098455,"output":" :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_co"},{"event":"cmd_output","timestamp":1607098455,"output":"unt, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:15.485"},{"event":"cmd_output","timestamp":1607098455,"output":" [info] Periodic from module Elixir.Block.Tasks.STMHandler.PendingState with name Elixir.Block.Task"},{"event":"cmd_output","timestamp":1607098455,"output":"s.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STM"},{"event":"cmd_output","timestamp":1607098455,"output":"Handler-PendingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0,"},{"event":"cmd_output","timestamp":1607098455,"output":" initial_query: Block.Tasks.Model.Tasks, observed_state: \"pending\", publisher_cb: :skip, repo: Block"},{"event":"cmd_output","timestamp":1607098455,"output":".EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id, :bu"},{"event":"cmd_output","timestamp":1607098455,"output":"ild_request_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:15.487 ["},{"event":"cmd_output","timestamp":1607098455,"output":"info] Periodic from module Elixir.Block.Tasks.STMHandler.RunningState with name Elixir.Block.Tasks."},{"event":"cmd_output","timestamp":1607098455,"output":"STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHa"},{"event":"cmd_output","timestamp":1607098455,"output":"ndler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_ti"},{"event":"cmd_output","timestamp":1607098455,"output":"me_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"running\", publisher_cb: :skip, "},{"event":"cmd_output","timestamp":1607098455,"output":"repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :bl"},{"event":"cmd_output","timestamp":1607098455,"output":"ock_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:15.487 [info] P"},{"event":"cmd_output","timestamp":1607098455,"output":"eriodic from module Elixir.Block.Tasks.STMHandler.StoppingState with name Elixir.Block.Tasks.STMHand"},{"event":"cmd_output","timestamp":1607098455,"output":"ler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-"},{"event":"cmd_output","timestamp":1607098455,"output":"StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, init"},{"event":"cmd_output","timestamp":1607098455,"output":"ial_query: Block.Tasks.Model.Tasks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.Ect"},{"event":"cmd_output","timestamp":1607098455,"output":"oRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema"},{"event":"cmd_output","timestamp":1607098455,"output":": Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:15.490 [info] Request: 'run: %"},{"event":"cmd_output","timestamp":1607098455,"output":"{\"branch_id\" => \"0641c51c-ed06-4d40-b3da-113b79caa1c7\", \"branch_name\" => \"one_path\", \"commit_sha\" =>"},{"event":"cmd_output","timestamp":1607098455,"output":" \"75891a4469\", \"file_name\" => \"one_path.yml\", \"hook_id\" => \"c116feec-364b-11eb-aa22-5254005464e2\", \""},{"event":"cmd_output","timestamp":1607098455,"output":"label\" => \"one_path\", \"organization_id\" => \"742c64ab-6b15-4599-9ee5-b97d52815e8d\", \"owner\" => \"rt\", "},{"event":"cmd_output","timestamp":1607098455,"output":"\"project_id\" => \"d654853b-ffda-4bf2-b4c9-0ec56df7c814\", \"repo_name\" => \"22_skip_block\", \"request_tok"},{"event":"cmd_output","timestamp":1607098455,"output":"en\" => \"c116f668-364b-11eb-ba25-5254005464e2\", \"requester_id\" => \"9c88aaa4-ec64-4f9d-a949-3aa4147810"},{"event":"cmd_output","timestamp":1607098455,"output":"84\", \"service\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => "},{"event":"cmd_output","timestamp":1607098455,"output":"\"f3f7b7a1-a821-46bd-9275-f22c71b9fe15\", \"working_dir\" => \".semaphore/change_in\"}\n\u001b[0m\u001b[22m\n16:14:1"},{"event":"cmd_output","timestamp":1607098455,"output":"5.492 [info] ppl_id: 5a2cdaa3-a73a-487d-b18e-df41f064fdf9, type: PplRequests, event: persisted sche"},{"event":"cmd_output","timestamp":1607098455,"output":"dule request with request_token: c116f668-364b-11eb-ba25-5254005464e2, origin: Elixir.Ppl.PplRequest"},{"event":"cmd_output","timestamp":1607098455,"output":"s.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:14:15.494 [info] ppl_id: 5a2cda"},{"event":"cmd_output","timestamp":1607098455,"output":"a3-a73a-487d-b18e-df41f064fdf9, type: Ppls, state: initializing, event: initializing, recovery_count"},{"event":"cmd_output","timestamp":1607098455,"output":": 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:14:15.505 ["},{"event":"cmd_output","timestamp":1607098455,"output":"info] Project d654853b-ffda-4bf2-b4c9-0ec56df7c814 and branch one_pathlatest_wf details updated: \"w"},{"event":"cmd_output","timestamp":1607098455,"output":"f_id: f3f7b7a1-a821-46bd-9275-f22c71b9fe15, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:14:15.506 [info] Persisted"},{"event":"cmd_output","timestamp":1607098455,"output":" ppl_sub_init for pipeline with ppl_id: 5a2cdaa3-a73a-487d-b18e-df41f064fdf9: %Ppl.PplSubInits.Model"},{"event":"cmd_output","timestamp":1607098455,"output":".PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, e"},{"event":"cmd_output","timestamp":1607098455,"output":"rror_description: nil, id: 324, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-"},{"event":"cmd_output","timestamp":1607098455,"output":"04 16:14:15.505187], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"5a2cdaa3-a73a-487d-b18e-df41f064fdf9\", recovery_count: 0, result: nil, resul"},{"event":"cmd_output","timestamp":1607098455,"output":"t_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N"},{"event":"cmd_output","timestamp":1607098455,"output":"[2020-12-04 16:14:15.505192]}\n\u001b[0m\u001b[22m\n16:14:15.515 [info] ppl_id: 5a2cdaa3-a73a-487d-b18e-df41f"},{"event":"cmd_output","timestamp":1607098455,"output":"064fdf9, type: PplRequests, event: persisted source_args for pipeline: 5a2cdaa3-a73a-487d-b18e-df41f"},{"event":"cmd_output","timestamp":1607098455,"output":"064fdf9, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098455,"output":"16:14:15.520 [info] ppl_id: 5a2cdaa3-a73a-487d-b18e-df41f064fdf9, type: PplSubInits, state: fetchin"},{"event":"cmd_output","timestamp":1607098455,"output":"g, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90)"},{"event":"cmd_output","timestamp":1607098455,"output":", \n\u001b[0m\u001b[22m\n16:14:15.537 [info] ppl_id: 5a2cdaa3-a73a-487d-b18e-df41f064fdf9, type: PplSubInits,"},{"event":"cmd_output","timestamp":1607098455,"output":" state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_"},{"event":"cmd_output","timestamp":1607098455,"output":"state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:15.552 [info] ppl_id: 5a2cdaa3-a73a-487d-b18e-df41f064fdf9,"},{"event":"cmd_output","timestamp":1607098455,"output":" type: PplRequests, event: persisted definition for request with request_token: c116f668-364b-11eb-b"},{"event":"cmd_output","timestamp":1607098455,"output":"a25-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), "},{"event":"cmd_output","timestamp":1607098455,"output":"\n\u001b[0m\u001b[22m\n16:14:15.555 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Sc"},{"event":"cmd_output","timestamp":1607098455,"output":"hema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:14:15.553882], name: \"one_path-.sema"},{"event":"cmd_output","timestamp":1607098455,"output":"phore/change_in/one_path.yml\", organization_id: \"742c64ab-6b15-4599-9ee5-b97d52815e8d\", project_id: "},{"event":"cmd_output","timestamp":1607098455,"output":"\"d654853b-ffda-4bf2-b4c9-0ec56df7c814\", queue_id: \"926564f4-d7c6-4a31-bf67-829e82bac7ac\", scope: \"pr"},{"event":"cmd_output","timestamp":1607098455,"output":"oject\", updated_at: ~N[2020-12-04 16:14:15.553905], user_generated: false}}\n\u001b[0m\u001b[22m\n16:14:15.559"},{"event":"cmd_output","timestamp":1607098455,"output":" [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105),"},{"event":"cmd_output","timestamp":1607098455,"output":" \n\u001b[0m\u001b[22m\n16:14:15.559 [info] ppl_id: 5a2cdaa3-a73a-487d-b18e-df41f064fdf9, type: PplBlocks, bl"},{"event":"cmd_output","timestamp":1607098455,"output":"ock_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits"},{"event":"cmd_output","timestamp":1607098455,"output":".STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:15.563 [info] ppl_id: 5a2cdaa3-a73"},{"event":"cmd_output","timestamp":1607098455,"output":"a-487d-b18e-df41f064fdf9, type: PplSubInits, state: done, result: passed, event: exit_scheduling, re"},{"event":"cmd_output","timestamp":1607098455,"output":"covery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:15.569 ["},{"event":"cmd_output","timestamp":1607098455,"output":"info] ppl_id: 5a2cdaa3-a73a-487d-b18e-df41f064fdf9, type: PplBlocks, block_index: 0, state: waiting"},{"event":"cmd_output","timestamp":1607098455,"output":", event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90),"},{"event":"cmd_output","timestamp":1607098455,"output":" \n\u001b[0m\u001b[22m\n16:14:15.570 [info] ppl_id: 5a2cdaa3-a73a-487d-b18e-df41f064fdf9, type: Ppls, state: "},{"event":"cmd_output","timestamp":1607098455,"output":"pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/"},{"event":"cmd_output","timestamp":1607098455,"output":"1(L90), \n\u001b[0m\u001b[22m\n16:14:15.580 [info] ppl_id: 5a2cdaa3-a73a-487d-b18e-df41f064fdf9, type: Ppls, "},{"event":"cmd_output","timestamp":1607098455,"output":"state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_"},{"event":"cmd_output","timestamp":1607098455,"output":"change/1(L90), \n\u001b[0m\u001b[22m\n16:14:15.593 [info] ppl_id: 5a2cdaa3-a73a-487d-b18e-df41f064fdf9, type:"},{"event":"cmd_output","timestamp":1607098455,"output":" Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098455,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:15.598 [info] PplBlocks WaitingState STM is scheduling blo"},{"event":"cmd_output","timestamp":1607098455,"output":"ck 0 from pipeline: \"5a2cdaa3-a73a-487d-b18e-df41f064fdf9\"\n\u001b[0m\u001b[22m\n16:14:15.604 [info] ppl_id: "},{"event":"cmd_output","timestamp":1607098455,"output":"5a2cdaa3-a73a-487d-b18e-df41f064fdf9, type: PplBlocks, block_index: 0, state: done, result: passed, "},{"event":"cmd_output","timestamp":1607098455,"output":"event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \r"},{"event":"cmd_output","timestamp":1607098455,"output":"\n\u001b[0m\u001b[22m\n16:14:15.613 [info] ppl_id: 5a2cdaa3-a73a-487d-b18e-df41f064fdf9, type: Ppls, state: do"},{"event":"cmd_output","timestamp":1607098455,"output":"ne, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_st"},{"event":"cmd_output","timestamp":1607098455,"output":"ate_change/1(L90), \n\u001b[0m\u001b[32m\r * test change_in with string as first param is processed correctly "},{"event":"cmd_output","timestamp":1607098455,"output":"(275.4ms)\u001b[0m\n * test change_in behaves differently for tags when on_tag config is changed\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098455,"output":"6:14:15.763 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingState with name Elix"},{"event":"cmd_output","timestamp":1607098455,"output":"ir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\""},{"event":"cmd_output","timestamp":1607098455,"output":"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"pendin"},{"event":"cmd_output","timestamp":1607098455,"output":"g\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\""},{"event":"cmd_output","timestamp":1607098455,"output":", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl."},{"event":"cmd_output","timestamp":1607098455,"output":"EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_i"},{"event":"cmd_output","timestamp":1607098455,"output":"d], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:15.763 [info] Periodic f"},{"event":"cmd_output","timestamp":1607098455,"output":"rom module Elixir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler.PendingState"},{"event":"cmd_output","timestamp":1607098455,"output":" :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, rec"},{"event":"cmd_output","timestamp":1607098455,"output":"urring args: %{allowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_sec: 0, initi"},{"event":"cmd_output","timestamp":1607098455,"output":"al_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publisher_cb: #Function<0.8493005/1 in Ppl"},{"event":"cmd_output","timestamp":1607098455,"output":".Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :upd"},{"event":"cmd_output","timestamp":1607098455,"output":"ated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: P"},{"event":"cmd_output","timestamp":1607098455,"output":"plsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:14:15.763 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler."},{"event":"cmd_output","timestamp":1607098455,"output":"QueuingState with name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, metric_name: {\"Ppl"},{"event":"cmd_output","timestamp":1607098455,"output":".beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{allowed_states: [\"queui"},{"event":"cmd_output","timestamp":1607098455,"output":"ng\", \"running\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \""},{"event":"cmd_output","timestamp":1607098455,"output":"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.args/0>, repo: P"},{"event":"cmd_output","timestamp":1607098455,"output":"pl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :pp"},{"event":"cmd_output","timestamp":1607098455,"output":"l_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:15.764 [info] Periodi"},{"event":"cmd_output","timestamp":1607098455,"output":"c from module Elixir.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHandler.RunningSt"},{"event":"cmd_output","timestamp":1607098455,"output":"ate :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, "},{"event":"cmd_output","timestamp":1607098455,"output":"recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_que"},{"event":"cmd_output","timestamp":1607098455,"output":"ry: Ppl.Ppls.Model.Ppls, observed_state: \"running\", publisher_cb: #Function<0.74670282/1 in Ppl.Ppls"},{"event":"cmd_output","timestamp":1607098455,"output":".STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_"},{"event":"cmd_output","timestamp":1607098455,"output":"at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTa"},{"event":"cmd_output","timestamp":1607098455,"output":"skSupervisor}\n\u001b[0m\u001b[22m\n16:14:15.764 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.Stopp"},{"event":"cmd_output","timestamp":1607098455,"output":"ingState with name Elixir.Ppl.Ppls.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.be"},{"event":"cmd_output","timestamp":1607098455,"output":"holder-wake_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stoppin"},{"event":"cmd_output","timestamp":1607098455,"output":"g\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"stopping\", p"},{"event":"cmd_output","timestamp":1607098455,"output":"ublisher_cb: #Function<0.71803493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo"},{"event":"cmd_output","timestamp":1607098455,"output":", returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], sche"},{"event":"cmd_output","timestamp":1607098455,"output":"ma: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:15.764 [info] Periodic from modu"},{"event":"cmd_output","timestamp":1607098455,"output":"le Elixir.Ppl.PplSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHandler.Create"},{"event":"cmd_output","timestamp":1607098455,"output":"dState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-Created"},{"event":"cmd_output","timestamp":1607098455,"output":"State\"]}, recurring args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query"},{"event":"cmd_output","timestamp":1607098455,"output":": Ppl.PplSubInits.Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoR"},{"event":"cmd_output","timestamp":1607098455,"output":"epo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], s"},{"event":"cmd_output","timestamp":1607098455,"output":"chema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:15.765 [info] P"},{"event":"cmd_output","timestamp":1607098455,"output":"eriodic from module Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl.PplSubInits"},{"event":"cmd_output","timestamp":1607098455,"output":".STMHandler.FetchingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits"},{"event":"cmd_output","timestamp":1607098455,"output":"-STMHandler-FetchingState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"don"},{"event":"cmd_output","timestamp":1607098455,"output":"e\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fetchi"},{"event":"cmd_output","timestamp":1607098455,"output":"ng\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :sta"},{"event":"cmd_output","timestamp":1607098455,"output":"te, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: "},{"event":"cmd_output","timestamp":1607098455,"output":":skip}\n\u001b[0m\u001b[22m\n16:14:15.765 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.Compi"},{"event":"cmd_output","timestamp":1607098455,"output":"lationState with name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 100 ms, metric_n"},{"event":"cmd_output","timestamp":1607098455,"output":"ame: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurring args: %{al"},{"event":"cmd_output","timestamp":1607098455,"output":"lowed_states: [\"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_que"},{"event":"cmd_output","timestamp":1607098455,"output":"ry: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"compilation\", publisher_cb: :skip, repo: Ppl"},{"event":"cmd_output","timestamp":1607098455,"output":".EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_"},{"event":"cmd_output","timestamp":1607098455,"output":"id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:15.765 [in"},{"event":"cmd_output","timestamp":1607098455,"output":"fo] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with name Elixir.Ppl.Pp"},{"event":"cmd_output","timestamp":1607098455,"output":"lSubInits.STMHandler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl"},{"event":"cmd_output","timestamp":1607098455,"output":"-PplSubInits-STMHandler-RegularInitState\"]}, recurring args: %{allowed_states: [\"done\"], cooling_tim"},{"event":"cmd_output","timestamp":1607098455,"output":"e_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_init\", publishe"},{"event":"cmd_output","timestamp":1607098455,"output":"r_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, "},{"event":"cmd_output","timestamp":1607098455,"output":":recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098455,"output":"[22m\n16:14:15.766 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.InitializingState wi"},{"event":"cmd_output","timestamp":1607098455,"output":"th name Elixir.Ppl.PplBlocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beho"},{"event":"cmd_output","timestamp":1607098455,"output":"lder-wake_up\", [\"Ppl-PplBlocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\""},{"event":"cmd_output","timestamp":1607098455,"output":"initializing\", \"waiting\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks"},{"event":"cmd_output","timestamp":1607098455,"output":", observed_state: \"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :termina"},{"event":"cmd_output","timestamp":1607098455,"output":"te_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBl"},{"event":"cmd_output","timestamp":1607098455,"output":"ocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:15.766 [info] Periodic from module "},{"event":"cmd_output","timestamp":1607098455,"output":"Elixir.Ppl.PplBlocks.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler.WaitingState "},{"event":"cmd_output","timestamp":1607098455,"output":":: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}"},{"event":"cmd_output","timestamp":1607098455,"output":", recurring args: %{allowed_states: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 0, initial_que"},{"event":"cmd_output","timestamp":1607098455,"output":"ry: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"waiting\", publisher_cb: #Function<0.8975022/1 in"},{"event":"cmd_output","timestamp":1607098455,"output":" Ppl.PplBlocks.STMHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_requ"},{"event":"cmd_output","timestamp":1607098455,"output":"est, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Mo"},{"event":"cmd_output","timestamp":1607098455,"output":"del.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:15.767 [info] Periodic from module Elixir."},{"event":"cmd_output","timestamp":1607098455,"output":"Ppl.PplBlocks.STMHandler.RunningState with name Elixir.Ppl.PplBlocks.STMHandler.RunningState :: peri"},{"event":"cmd_output","timestamp":1607098455,"output":"od: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, recur"},{"event":"cmd_output","timestamp":1607098455,"output":"ring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: P"},{"event":"cmd_output","timestamp":1607098455,"output":"pl.PplBlocks.Model.PplBlocks, observed_state: \"running\", publisher_cb: #Function<0.28166834/1 in Ppl"},{"event":"cmd_output","timestamp":1607098455,"output":".PplBlocks.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request,"},{"event":"cmd_output","timestamp":1607098455,"output":" :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBl"},{"event":"cmd_output","timestamp":1607098455,"output":"ocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:15.767 [info] Periodic from module "},{"event":"cmd_output","timestamp":1607098455,"output":"Elixir.Ppl.PplBlocks.STMHandler.StoppingState with name Elixir.Ppl.PplBlocks.STMHandler.StoppingStat"},{"event":"cmd_output","timestamp":1607098455,"output":"e :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-StoppingState"},{"event":"cmd_output","timestamp":1607098455,"output":"\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Pp"},{"event":"cmd_output","timestamp":1607098455,"output":"l.PplBlocks.Model.PplBlocks, observed_state: \"stopping\", publisher_cb: #Function<0.104215991/1 in Pp"},{"event":"cmd_output","timestamp":1607098455,"output":"l.PplBlocks.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_reques"},{"event":"cmd_output","timestamp":1607098455,"output":"t, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098455,"output":"Blocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:15.767 [info] Periodic from modul"},{"event":"cmd_output","timestamp":1607098455,"output":"e Elixir.Block.Blocks.STMHandler.InitializingState with name Elixir.Block.Blocks.STMHandler.Initiali"},{"event":"cmd_output","timestamp":1607098455,"output":"zingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-Initial"},{"event":"cmd_output","timestamp":1607098455,"output":"izingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_q"},{"event":"cmd_output","timestamp":1607098455,"output":"uery: Block.Blocks.Model.Blocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Block.Ec"},{"event":"cmd_output","timestamp":1607098455,"output":"toRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schem"},{"event":"cmd_output","timestamp":1607098455,"output":"a: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:15.768 [info] Periodic from"},{"event":"cmd_output","timestamp":1607098455,"output":" module Elixir.Block.Blocks.STMHandler.RunningState with name Elixir.Block.Blocks.STMHandler.Running"},{"event":"cmd_output","timestamp":1607098455,"output":"State :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-RunningStat"},{"event":"cmd_output","timestamp":1607098455,"output":"e\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initi"},{"event":"cmd_output","timestamp":1607098455,"output":"al_query: Block.Blocks.Model.Blocks, observed_state: \"running\", publisher_cb: :skip, repo: Block.Ect"},{"event":"cmd_output","timestamp":1607098455,"output":"oRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema"},{"event":"cmd_output","timestamp":1607098455,"output":": Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:15.768 [info] Periodic from "},{"event":"cmd_output","timestamp":1607098455,"output":"module Elixir.Block.Blocks.STMHandler.StoppingState with name Elixir.Block.Blocks.STMHandler.Stoppin"},{"event":"cmd_output","timestamp":1607098455,"output":"gState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-StoppingSt"},{"event":"cmd_output","timestamp":1607098455,"output":"ate\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query:"},{"event":"cmd_output","timestamp":1607098455,"output":" Block.Blocks.Model.Blocks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, r"},{"event":"cmd_output","timestamp":1607098455,"output":"eturning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block."},{"event":"cmd_output","timestamp":1607098455,"output":"Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:15.768 [info] Periodic from module E"},{"event":"cmd_output","timestamp":1607098455,"output":"lixir.Block.Tasks.STMHandler.PendingState with name Elixir.Block.Tasks.STMHandler.PendingState :: pe"},{"event":"cmd_output","timestamp":1607098455,"output":"riod: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingState\"]}, recurr"},{"event":"cmd_output","timestamp":1607098455,"output":"ing args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Tasks.Mod"},{"event":"cmd_output","timestamp":1607098455,"output":"el.Tasks, observed_state: \"pending\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :te"},{"event":"cmd_output","timestamp":1607098455,"output":"rminate_request, :updated_at, :state, :recovery_count, :block_id, :build_request_id], schema: Block."},{"event":"cmd_output","timestamp":1607098455,"output":"Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:15.769 [info] Periodic from module Eli"},{"event":"cmd_output","timestamp":1607098455,"output":"xir.Block.Tasks.STMHandler.RunningState with name Elixir.Block.Tasks.STMHandler.RunningState :: peri"},{"event":"cmd_output","timestamp":1607098455,"output":"od: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningState\"]}, recurrin"},{"event":"cmd_output","timestamp":1607098455,"output":"g args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Bloc"},{"event":"cmd_output","timestamp":1607098455,"output":"k.Tasks.Model.Tasks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning"},{"event":"cmd_output","timestamp":1607098455,"output":": [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Mo"},{"event":"cmd_output","timestamp":1607098455,"output":"del.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:15.769 [info] Periodic from module Elixir.Bloc"},{"event":"cmd_output","timestamp":1607098455,"output":"k.Tasks.STMHandler.StoppingState with name Elixir.Block.Tasks.STMHandler.StoppingState :: period: 10"},{"event":"cmd_output","timestamp":1607098455,"output":"0 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]}, recurring arg"},{"event":"cmd_output","timestamp":1607098455,"output":"s: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Ta"},{"event":"cmd_output","timestamp":1607098455,"output":"sks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :termin"},{"event":"cmd_output","timestamp":1607098455,"output":"ate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task"},{"event":"cmd_output","timestamp":1607098455,"output":"_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:15.774 [info] Request: 'run: %{\"branch_id\" => \"8db635a3-92ad-"},{"event":"cmd_output","timestamp":1607098455,"output":"490f-8f1a-f6acfbe51a8c\", \"branch_name\" => \"refs/tags/v1.0\", \"commit_sha\" => \"75891a4469\", \"file_name"},{"event":"cmd_output","timestamp":1607098455,"output":"\" => \"config_on_tags.yml\", \"hook_id\" => \"tag\", \"label\" => \"v1.0\", \"organization_id\" => \"092046f8-f87"},{"event":"cmd_output","timestamp":1607098455,"output":"f-4a18-9076-5f29fdb68635\", \"owner\" => \"rt\", \"project_id\" => \"82b787f2-b97f-450b-badc-06b6f81489c5\", "},{"event":"cmd_output","timestamp":1607098455,"output":"\"repo_name\" => \"22_skip_block\", \"request_token\" => \"c141e256-364b-11eb-ae39-5254005464e2\", \"requeste"},{"event":"cmd_output","timestamp":1607098455,"output":"r_id\" => \"753b3dff-1cff-4a36-960b-4239625b4b2c\", \"service\" => \"local\", \"suppressed_attributes\" => [\""},{"event":"cmd_output","timestamp":1607098455,"output":"access_token\", \"client_secret\"], \"wf_id\" => \"059fe904-a14f-47ed-ad57-cafbb3b8ee8a\", \"working_dir\" =>"},{"event":"cmd_output","timestamp":1607098455,"output":" \".semaphore/change_in\"}\n\u001b[0m\u001b[22m\n16:14:15.777 [info] ppl_id: 68a5496f-b384-464b-a743-44b6b09461"},{"event":"cmd_output","timestamp":1607098455,"output":"9d, type: PplRequests, event: persisted schedule request with request_token: c141e256-364b-11eb-ae39"},{"event":"cmd_output","timestamp":1607098455,"output":"-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b["},{"event":"cmd_output","timestamp":1607098455,"output":"0m\u001b[22m\n16:14:15.779 [info] ppl_id: 68a5496f-b384-464b-a743-44b6b094619d, type: Ppls, state: initi"},{"event":"cmd_output","timestamp":1607098455,"output":"alizing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_r"},{"event":"cmd_output","timestamp":1607098455,"output":"esponse/2(L124), \n\u001b[0m\u001b[22m\n16:14:15.783 [info] Project 82b787f2-b97f-450b-badc-06b6f81489c5 and "},{"event":"cmd_output","timestamp":1607098455,"output":"tag v1.0latest_wf details updated: \"wf_id: 059fe904-a14f-47ed-ad57-cafbb3b8ee8a, wf_number: 1\"\n\u001b[0m"},{"event":"cmd_output","timestamp":1607098455,"output":"\u001b[22m\n16:14:15.785 [info] Persisted ppl_sub_init for pipeline with ppl_id: 68a5496f-b384-464b-a743"},{"event":"cmd_output","timestamp":1607098455,"output":"-44b6b094619d: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline"},{"event":"cmd_output","timestamp":1607098455,"output":"_sub_inits\">, compile_task_id: nil, error_description: nil, id: 325, in_scheduling: false, init_type"},{"event":"cmd_output","timestamp":1607098455,"output":": \"regular\", inserted_at: ~N[2020-12-04 16:14:15.783813], pipeline_requests: #Ecto.Association.NotLo"},{"event":"cmd_output","timestamp":1607098455,"output":"aded, ppl_id: \"68a5496f-b384-464b-a743-44b6b094619d\", "},{"event":"cmd_output","timestamp":1607098455,"output":"recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, termin"},{"event":"cmd_output","timestamp":1607098455,"output":"ate_request_desc: nil, updated_at: ~N[2020-12-04 16:14:15.783819]}\n\u001b[0m\u001b[22m\n16:14:15.794 [info] "},{"event":"cmd_output","timestamp":1607098455,"output":"ppl_id: 68a5496f-b384-464b-a743-44b6b094619d, type: PplRequests, event: persisted source_args for pi"},{"event":"cmd_output","timestamp":1607098455,"output":"peline: 68a5496f-b384-464b-a743-44b6b094619d, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQuerie"},{"event":"cmd_output","timestamp":1607098455,"output":"s.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:14:15.797 [info] ppl_id: 68a5496f-b384-464b-a743-44b6b09461"},{"event":"cmd_output","timestamp":1607098455,"output":"9d, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Lo"},{"event":"cmd_output","timestamp":1607098455,"output":"oper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:15.815 [info] ppl_id: 68a5496f-b384-464b-"},{"event":"cmd_output","timestamp":1607098455,"output":"a743-44b6b094619d, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0"},{"event":"cmd_output","timestamp":1607098455,"output":", origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:15.838 [info] ppl_id: "},{"event":"cmd_output","timestamp":1607098455,"output":"68a5496f-b384-464b-a743-44b6b094619d, type: PplRequests, event: persisted definition for request wit"},{"event":"cmd_output","timestamp":1607098455,"output":"h request_token: c141e256-364b-11eb-ae39-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplReque"},{"event":"cmd_output","timestamp":1607098455,"output":"stsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:14:15.841 [info] Queue persisted: {:ok, %Ppl.Q"},{"event":"cmd_output","timestamp":1607098455,"output":"ueues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16"},{"event":"cmd_output","timestamp":1607098455,"output":":14:15.840450], name: \"v1.0-.semaphore/change_in/config_on_tags.yml\", organization_id: \"092046f8-f87"},{"event":"cmd_output","timestamp":1607098455,"output":"f-4a18-9076-5f29fdb68635\", project_id: \"82b787f2-b97f-450b-badc-06b6f81489c5\", queue_id: \"c7a1c13a-4"},{"event":"cmd_output","timestamp":1607098455,"output":"78e-4603-8e00-6b473346e693\", scope: \"project\", updated_at: ~N[2020-12-04 16:14:15.840458], user_gene"},{"event":"cmd_output","timestamp":1607098455,"output":"rated: false}}\n\u001b[0m\u001b[22m\n16:14:15.845 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHa"},{"event":"cmd_output","timestamp":1607098455,"output":"ndler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:15.845 [info] ppl_id: 68a5496f-b384-464b"},{"event":"cmd_output","timestamp":1607098455,"output":"-a743-44b6b094619d, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_c"},{"event":"cmd_output","timestamp":1607098455,"output":"ount: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098455,"output":":14:15.847 [info] ppl_id: 68a5496f-b384-464b-a743-44b6b094619d, type: PplSubInits, state: done, res"},{"event":"cmd_output","timestamp":1607098455,"output":"ult: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_cha"},{"event":"cmd_output","timestamp":1607098455,"output":"nge/1(L90), \n\u001b[0m\u001b[22m\n16:14:15.852 [info] ppl_id: 68a5496f-b384-464b-a743-44b6b094619d, type: Pp"},{"event":"cmd_output","timestamp":1607098455,"output":"lBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098455,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:15.853 [info] ppl_id: 68a5496f-b384-464b"},{"event":"cmd_output","timestamp":1607098455,"output":"-a743-44b6b094619d, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: E"},{"event":"cmd_output","timestamp":1607098455,"output":"lixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:15.858 [info] ppl_id: 68a5496f-b3"},{"event":"cmd_output","timestamp":1607098455,"output":"84-464b-a743-44b6b094619d, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098455,"output":"igin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:15.864 [info] ppl_id: 68a5"},{"event":"cmd_output","timestamp":1607098455,"output":"496f-b384-464b-a743-44b6b094619d, type: Ppls, state: running, event: exit_scheduling, recovery_count"},{"event":"cmd_output","timestamp":1607098455,"output":": 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:15.872 [info] PplBl"},{"event":"cmd_output","timestamp":1607098455,"output":"ocks WaitingState STM is scheduling block 0 from pipeline: \"68a5496f-b384-464b-a743-44b6b094619d\"\n\u001b"},{"event":"cmd_output","timestamp":1607098455,"output":"[0m\u001b[22m\n16:14:15.878 [info] ppl_id: 68a5496f-b384-464b-a743-44b6b094619d, type: PplBlocks, block_"},{"event":"cmd_output","timestamp":1607098455,"output":"index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loo"},{"event":"cmd_output","timestamp":1607098455,"output":"per.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:15.888 [info] ppl_id: 68a5496f-b384-464b-a"},{"event":"cmd_output","timestamp":1607098455,"output":"743-44b6b094619d, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0"},{"event":"cmd_output","timestamp":1607098455,"output":", origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test change_in behaves dif"},{"event":"cmd_output","timestamp":1607098455,"output":"ferently for tags when on_tag config is changed (177.4ms)\u001b[0m\n * test change_in does not fail on t"},{"event":"cmd_output","timestamp":1607098455,"output":"ags if on_tag is not present in config map\u001b[22m\n16:14:15.930 [info] Periodic from module Elixir.Pp"},{"event":"cmd_output","timestamp":1607098455,"output":"l.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period"},{"event":"cmd_output","timestamp":1607098455,"output":": 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurrin"},{"event":"cmd_output","timestamp":1607098455,"output":"g args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: P"},{"event":"cmd_output","timestamp":1607098455,"output":"pl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098455,"output":"s.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :up"},{"event":"cmd_output","timestamp":1607098455,"output":"dated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: "},{"event":"cmd_output","timestamp":1607098455,"output":":skip}\n\u001b[0m\u001b[22m\n16:14:15.931 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingState"},{"event":"cmd_output","timestamp":1607098455,"output":" with name Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wa"},{"event":"cmd_output","timestamp":1607098455,"output":"ke_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"pending\", \"queuin"},{"event":"cmd_output","timestamp":1607098455,"output":"g\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pe"},{"event":"cmd_output","timestamp":1607098455,"output":"nding\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.E"},{"event":"cmd_output","timestamp":1607098455,"output":"ctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id"},{"event":"cmd_output","timestamp":1607098455,"output":"], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:14:15.931 [info]"},{"event":"cmd_output","timestamp":1607098455,"output":" Periodic from module Elixir.Ppl.Ppls.STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandler."},{"event":"cmd_output","timestamp":1607098455,"output":"QueuingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingS"},{"event":"cmd_output","timestamp":1607098455,"output":"tate\"]}, recurring args: %{allowed_states: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, ini"},{"event":"cmd_output","timestamp":1607098455,"output":"tial_query: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", publisher_cb: #Function<0.125102843/1 in"},{"event":"cmd_output","timestamp":1607098455,"output":" Ppl.Ppls.STMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, "},{"event":"cmd_output","timestamp":1607098455,"output":":updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_superviso"},{"event":"cmd_output","timestamp":1607098455,"output":"r: :skip}\n\u001b[0m\u001b[22m\n16:14:15.932 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.RunningSt"},{"event":"cmd_output","timestamp":1607098455,"output":"ate with name Elixir.Ppl.Ppls.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder"},{"event":"cmd_output","timestamp":1607098455,"output":"-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"sto"},{"event":"cmd_output","timestamp":1607098455,"output":"pping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"running\""},{"event":"cmd_output","timestamp":1607098455,"output":", publisher_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler.RunningState.args/0>, repo: Ppl.EctoRe"},{"event":"cmd_output","timestamp":1607098455,"output":"po, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], sc"},{"event":"cmd_output","timestamp":1607098455,"output":"hema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:14:15.932 [info] Per"},{"event":"cmd_output","timestamp":1607098455,"output":"iodic from module Elixir.Ppl.Ppls.STMHandler.StoppingState with name Elixir.Ppl.Ppls.STMHandler.Stop"},{"event":"cmd_output","timestamp":1607098455,"output":"pingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-StoppingSta"},{"event":"cmd_output","timestamp":1607098455,"output":"te\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: "},{"event":"cmd_output","timestamp":1607098455,"output":"Ppl.Ppls.Model.Ppls, observed_state: \"stopping\", publisher_cb: #Function<0.71803493/1 in Ppl.Ppls.ST"},{"event":"cmd_output","timestamp":1607098455,"output":"MHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at"},{"event":"cmd_output","timestamp":1607098455,"output":", :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n"},{"event":"cmd_output","timestamp":1607098455,"output":"\u001b[0m\u001b[22m\n16:14:15.932 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedState "},{"event":"cmd_output","timestamp":1607098455,"output":"with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.behol"},{"event":"cmd_output","timestamp":1607098455,"output":"der-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args: %{allowed_states: [\"fetc"},{"event":"cmd_output","timestamp":1607098455,"output":"hing\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_stat"},{"event":"cmd_output","timestamp":1607098455,"output":"e: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated"},{"event":"cmd_output","timestamp":1607098455,"output":"_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_sup"},{"event":"cmd_output","timestamp":1607098455,"output":"ervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:15.932 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHand"},{"event":"cmd_output","timestamp":1607098455,"output":"ler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 ms, metri"},{"event":"cmd_output","timestamp":1607098455,"output":"c_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %{al"},{"event":"cmd_output","timestamp":1607098455,"output":"lowed_states: [\"regular_init\", \"compilation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplS"},{"event":"cmd_output","timestamp":1607098455,"output":"ubInits.Model.PplSubInits, observed_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, retu"},{"event":"cmd_output","timestamp":1607098455,"output":"rning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Pp"},{"event":"cmd_output","timestamp":1607098455,"output":"l.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:15.932 [info] Periodic f"},{"event":"cmd_output","timestamp":1607098455,"output":"rom module Elixir.Ppl.PplSubInits.STMHandler.CompilationState with name Elixir.Ppl.PplSubInits.STMHa"},{"event":"cmd_output","timestamp":1607098455,"output":"ndler.CompilationState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-ST"},{"event":"cmd_output","timestamp":1607098455,"output":"MHandler-CompilationState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"sto"},{"event":"cmd_output","timestamp":1607098455,"output":"pping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_st"},{"event":"cmd_output","timestamp":1607098455,"output":"ate: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :u"},{"event":"cmd_output","timestamp":1607098455,"output":"pdated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, ta"},{"event":"cmd_output","timestamp":1607098455,"output":"sk_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:15.932 [info] Periodic from module Elixir.Ppl.PplSubInits.S"},{"event":"cmd_output","timestamp":1607098455,"output":"TMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period: 1"},{"event":"cmd_output","timestamp":1607098455,"output":"00 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recur"},{"event":"cmd_output","timestamp":1607098455,"output":"ring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.Ppl"},{"event":"cmd_output","timestamp":1607098455,"output":"SubInits, observed_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, "},{"event":"cmd_output","timestamp":1607098455,"output":":terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits"},{"event":"cmd_output","timestamp":1607098455,"output":".Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:15.932 [info] Periodic from module El"},{"event":"cmd_output","timestamp":1607098455,"output":"ixir.Ppl.PplBlocks.STMHandler.InitializingState with name Elixir.Ppl.PplBlocks.STMHandler.Initializi"},{"event":"cmd_output","timestamp":1607098455,"output":"ngState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-Initiali"},{"event":"cmd_output","timestamp":1607098455,"output":"zingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"waiting\", \"done\"], cooling_time_se"},{"event":"cmd_output","timestamp":1607098455,"output":"c: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"initializing\", publisher_cb: :s"},{"event":"cmd_output","timestamp":1607098455,"output":"kip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recover"},{"event":"cmd_output","timestamp":1607098455,"output":"y_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0"},{"event":"cmd_output","timestamp":1607098455,"output":"m\u001b[22m\n16:14:15.932 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.WaitingState with "},{"event":"cmd_output","timestamp":1607098455,"output":"name Elixir.Ppl.PplBlocks.STMHandler.WaitingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wa"},{"event":"cmd_output","timestamp":1607098455,"output":"ke_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurring args: %{allowed_states: [\"waiting\", \"r"},{"event":"cmd_output","timestamp":1607098455,"output":"unning\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state:"},{"event":"cmd_output","timestamp":1607098455,"output":" \"waiting\", publisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>, re"},{"event":"cmd_output","timestamp":1607098455,"output":"po: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count"},{"event":"cmd_output","timestamp":1607098455,"output":", :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098455,"output":"\n16:14:15.932 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.RunningState with name El"},{"event":"cmd_output","timestamp":1607098455,"output":"ixir.Ppl.PplBlocks.STMHandler.RunningState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\","},{"event":"cmd_output","timestamp":1607098455,"output":" [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping"},{"event":"cmd_output","timestamp":1607098455,"output":"\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"run"},{"event":"cmd_output","timestamp":1607098455,"output":"ning\", publisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0>, repo: "},{"event":"cmd_output","timestamp":1607098455,"output":"Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :p"},{"event":"cmd_output","timestamp":1607098455,"output":"pl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0"},{"event":"cmd_output","timestamp":1607098455,"output":"m\u001b[22m\n16:14:15.932 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.StoppingState with"},{"event":"cmd_output","timestamp":1607098455,"output":" name Elixir.Ppl.PplBlocks.STMHandler.StoppingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-"},{"event":"cmd_output","timestamp":1607098455,"output":"wake_up\", [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\""},{"event":"cmd_output","timestamp":1607098455,"output":", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"stop"},{"event":"cmd_output","timestamp":1607098455,"output":"ping\", publisher_cb: #Function<0.104215991/1 in Ppl.PplBlocks.STMHandler.StoppingState.args/0>, repo"},{"event":"cmd_output","timestamp":1607098455,"output":": Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, "},{"event":"cmd_output","timestamp":1607098455,"output":":ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b"},{"event":"cmd_output","timestamp":1607098455,"output":"[0m\u001b[22m\n16:14:15.933 [info] Periodic from module Elixir.Block.Blocks.STMHandler.InitializingState"},{"event":"cmd_output","timestamp":1607098455,"output":" with name Elixir.Block.Blocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.be"},{"event":"cmd_output","timestamp":1607098455,"output":"holder-wake_up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: ["},{"event":"cmd_output","timestamp":1607098455,"output":"\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Blocks.Model.Blocks, observed_state: \""},{"event":"cmd_output","timestamp":1607098455,"output":"initializing\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :upda"},{"event":"cmd_output","timestamp":1607098455,"output":"ted_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :sk"},{"event":"cmd_output","timestamp":1607098455,"output":"ip}\n\u001b[0m\u001b[22m\n16:14:15.933 [info] Periodic from module Elixir.Block.Blocks.STMHandler.RunningStat"},{"event":"cmd_output","timestamp":1607098455,"output":"e with name Elixir.Block.Blocks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.behold"},{"event":"cmd_output","timestamp":1607098455,"output":"er-wake_up\", [\"Block-Blocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\""},{"event":"cmd_output","timestamp":1607098455,"output":", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_stat"},{"event":"cmd_output","timestamp":1607098455,"output":"e: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updat"},{"event":"cmd_output","timestamp":1607098455,"output":"ed_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :ski"},{"event":"cmd_output","timestamp":1607098455,"output":"p}\n\u001b[0m\u001b[22m\n16:14:15.933 [info] Periodic from module Elixir.Block.Blocks.STMHandler.StoppingStat"},{"event":"cmd_output","timestamp":1607098455,"output":"e with name Elixir.Block.Blocks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.behol"},{"event":"cmd_output","timestamp":1607098455,"output":"der-wake_up\", [\"Block-Blocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stoppi"},{"event":"cmd_output","timestamp":1607098455,"output":"ng\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"stopp"},{"event":"cmd_output","timestamp":1607098455,"output":"ing\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :"},{"event":"cmd_output","timestamp":1607098455,"output":"state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m"},{"event":"cmd_output","timestamp":1607098455,"output":"\u001b[22m\n16:14:15.933 [info] Periodic from module Elixir.Block.Tasks.STMHandler.PendingState with nam"},{"event":"cmd_output","timestamp":1607098455,"output":"e Elixir.Block.Tasks.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\""},{"event":"cmd_output","timestamp":1607098455,"output":", [\"Block-Tasks-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], c"},{"event":"cmd_output","timestamp":1607098455,"output":"ooling_time_sec: 0, initial_query: Block.Tasks.Model.Tasks, observed_state: \"pending\", publisher_cb:"},{"event":"cmd_output","timestamp":1607098455,"output":" :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_co"},{"event":"cmd_output","timestamp":1607098455,"output":"unt, :block_id, :build_request_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098455,"output":"22m\n16:14:15.933 [info] Periodic from module Elixir.Block.Tasks.STMHandler.RunningState with name "},{"event":"cmd_output","timestamp":1607098455,"output":"Elixir.Block.Tasks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", "},{"event":"cmd_output","timestamp":1607098455,"output":"[\"Block-Tasks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", "},{"event":"cmd_output","timestamp":1607098455,"output":"\"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"running\", pu"},{"event":"cmd_output","timestamp":1607098455,"output":"blisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :"},{"event":"cmd_output","timestamp":1607098455,"output":"recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098455,"output":"14:15.933 [info] Periodic from module Elixir.Block.Tasks.STMHandler.StoppingState with name Elixir."},{"event":"cmd_output","timestamp":1607098455,"output":"Block.Tasks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Bloc"},{"event":"cmd_output","timestamp":1607098455,"output":"k-Tasks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling"},{"event":"cmd_output","timestamp":1607098455,"output":"_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"stopping\", publisher_cb: :sk"},{"event":"cmd_output","timestamp":1607098455,"output":"ip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count,"},{"event":"cmd_output","timestamp":1607098455,"output":" :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:15.941 [info"},{"event":"cmd_output","timestamp":1607098455,"output":"] Request: 'run: %{\"branch_id\" => \"f0a68aaa-5f73-4c18-beb8-27603a3fde96\", \"branch_name\" => \"refs/ta"},{"event":"cmd_output","timestamp":1607098455,"output":"gs/v1.0\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"config_default_range.yml\", \"hook_id\" => \"tag"},{"event":"cmd_output","timestamp":1607098455,"output":"\", \"label\" => \"v1.0\", \"organization_id\" => \"9bdc1b48-e4db-46ab-8a18-d954970578db\", \"owner\" => \"rt\", "},{"event":"cmd_output","timestamp":1607098455,"output":"\"project_id\" => \"6d1aa790-4904-4a58-8c6d-5cd3c89b8dfd\", \"repo_name\" => \"22_skip_block\", \"request_tok"},{"event":"cmd_output","timestamp":1607098455,"output":"en\" => \"c15ae29c-364b-11eb-82d9-5254005464e2\", \"requester_id\" => \"d6b60158-28d8-49da-8a06-86b0729758"},{"event":"cmd_output","timestamp":1607098455,"output":"7d\", \"service\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => "},{"event":"cmd_output","timestamp":1607098455,"output":"\"78412393-460d-4c5a-8272-d2ff525eeb9e\", \"working_dir\" => \".semaphore/change_in\"}\n\u001b[0m\u001b[22m\n16:14:1"},{"event":"cmd_output","timestamp":1607098455,"output":"5.944 [info] ppl_id: 14461f78-ee40-4832-ac67-8162a2bee7cd, type: PplRequests, event: persisted sche"},{"event":"cmd_output","timestamp":1607098455,"output":"dule request with request_token: c15ae29c-364b-11eb-82d9-5254005464e2, origin: Elixir.Ppl.PplRequest"},{"event":"cmd_output","timestamp":1607098455,"output":"s.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:14:15.946 [info] ppl_id: 14461f"},{"event":"cmd_output","timestamp":1607098455,"output":"78-ee40-4832-ac67-8162a2bee7cd, type: Ppls, state: initializing, event: initializing, recovery_count"},{"event":"cmd_output","timestamp":1607098455,"output":": 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:14:15.949 ["},{"event":"cmd_output","timestamp":1607098455,"output":"info] Project 6d1aa790-4904-4a58-8c6d-5cd3c89b8dfd and tag v1.0latest_wf details updated: \"wf_id: 7"},{"event":"cmd_output","timestamp":1607098455,"output":"8412393-460d-4c5a-8272-d2ff525eeb9e, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:14:15.950 [info] Persisted ppl_su"},{"event":"cmd_output","timestamp":1607098455,"output":"b_init for pipeline with ppl_id: 14461f78-ee40-4832-ac67-8162a2bee7cd: %Ppl.PplSubInits.Model.PplSub"},{"event":"cmd_output","timestamp":1607098455,"output":"Inits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_de"},{"event":"cmd_output","timestamp":1607098455,"output":"scription: nil, id: 326, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:1"},{"event":"cmd_output","timestamp":1607098455,"output":"4:15.949425], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"14461f78-ee40-4832-ac67-8162a2bee7cd\", recovery_count: 0, result: nil, result_reaso"},{"event":"cmd_output","timestamp":1607098455,"output":"n: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-1"},{"event":"cmd_output","timestamp":1607098455,"output":"2-04 16:14:15.949431]}\n\u001b[0m\u001b[22m\n16:14:15.961 [info] ppl_id: 14461f78-ee40-4832-ac67-8162a2bee7cd"},{"event":"cmd_output","timestamp":1607098455,"output":", type: PplRequests, event: persisted source_args for pipeline: 14461f78-ee40-4832-ac67-8162a2bee7cd"},{"event":"cmd_output","timestamp":1607098455,"output":", origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:14:1"},{"event":"cmd_output","timestamp":1607098455,"output":"5.963 [info] ppl_id: 14461f78-ee40-4832-ac67-8162a2bee7cd, type: PplSubInits, state: fetching, even"},{"event":"cmd_output","timestamp":1607098455,"output":"t: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098455,"output":"m\u001b[22m\n16:14:15.987 [info] ppl_id: 14461f78-ee40-4832-ac67-8162a2bee7cd, type: PplSubInits, state:"},{"event":"cmd_output","timestamp":1607098455,"output":" regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098456,"output":"hange/1(L90), \n\u001b[0m\u001b[22m\n16:14:16.006 [info] ppl_id: 14461f78-ee40-4832-ac67-8162a2bee7cd, type: "},{"event":"cmd_output","timestamp":1607098456,"output":"PplRequests, event: persisted definition for request with request_token: c15ae29c-364b-11eb-82d9-525"},{"event":"cmd_output","timestamp":1607098456,"output":"4005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098456,"output":"[22m\n16:14:16.009 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Me"},{"event":"cmd_output","timestamp":1607098456,"output":"tadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:14:16.008424], name: \"v1.0-.semaphore/chang"},{"event":"cmd_output","timestamp":1607098456,"output":"e_in/config_default_range.yml\", organization_id: \"9bdc1b48-e4db-46ab-8a18-d954970578db\", project_id:"},{"event":"cmd_output","timestamp":1607098456,"output":" \"6d1aa790-4904-4a58-8c6d-5cd3c89b8dfd\", queue_id: \"fa289963-64b4-436e-9eba-88eb8bf74f25\", scope: \"p"},{"event":"cmd_output","timestamp":1607098456,"output":"roject\", updated_at: ~N[2020-12-04 16:14:16.008432], user_generated: false}}\n\u001b[0m\u001b[22m\n16:14:16.01"},{"event":"cmd_output","timestamp":1607098456,"output":"2 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105)"},{"event":"cmd_output","timestamp":1607098456,"output":", \n\u001b[0m\u001b[22m\n16:14:16.012 [info] ppl_id: 14461f78-ee40-4832-ac67-8162a2bee7cd, type: PplBlocks, b"},{"event":"cmd_output","timestamp":1607098456,"output":"lock_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInit"},{"event":"cmd_output","timestamp":1607098456,"output":"s.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:16.014 [info] ppl_id: 14461f78-ee"},{"event":"cmd_output","timestamp":1607098456,"output":"40-4832-ac67-8162a2bee7cd, type: PplSubInits, state: done, result: passed, event: exit_scheduling, r"},{"event":"cmd_output","timestamp":1607098456,"output":"ecovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:16.020 "},{"event":"cmd_output","timestamp":1607098456,"output":"[info] ppl_id: 14461f78-ee40-4832-ac67-8162a2bee7cd, type: PplBlocks, block_index: 0, state: waitin"},{"event":"cmd_output","timestamp":1607098456,"output":"g, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90)"},{"event":"cmd_output","timestamp":1607098456,"output":", \n\u001b[0m\u001b[22m\n16:14:16.021 [info] ppl_id: 14461f78-ee40-4832-ac67-8162a2bee7cd, type: Ppls, state:"},{"event":"cmd_output","timestamp":1607098456,"output":" pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change"},{"event":"cmd_output","timestamp":1607098456,"output":"/1(L90), \n\u001b[0m\u001b[22m\n16:14:16.026 [info] ppl_id: 14461f78-ee40-4832-ac67-8162a2bee7cd, type: Ppls,"},{"event":"cmd_output","timestamp":1607098456,"output":" state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state"},{"event":"cmd_output","timestamp":1607098456,"output":"_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:16.032 [info] ppl_id: 14461f78-ee40-4832-ac67-8162a2bee7cd, type"},{"event":"cmd_output","timestamp":1607098456,"output":": Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.lo"},{"event":"cmd_output","timestamp":1607098456,"output":"g_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:16.044 [info] PplBlocks WaitingState STM is scheduling bl"},{"event":"cmd_output","timestamp":1607098456,"output":"ock 0 from pipeline: \"14461f78-ee40-4832-ac67-8162a2bee7cd\"\n\u001b[0m\u001b[22m\n16:14:16.047 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098456,"output":" 14461f78-ee40-4832-ac67-8162a2bee7cd, type: PplBlocks, block_index: 0, state: done, result: passed,"},{"event":"cmd_output","timestamp":1607098456,"output":" event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), "},{"event":"cmd_output","timestamp":1607098456,"output":"\n\u001b[0m\u001b[22m\n16:14:16.055 [info] ppl_id: 14461f78-ee40-4832-ac67-8162a2bee7cd, type: Ppls, state: d"},{"event":"cmd_output","timestamp":1607098456,"output":"one, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_s"},{"event":"cmd_output","timestamp":1607098456,"output":"tate_change/1(L90), \n\u001b[0m\u001b[32m\r * test change_in does not fail on tags if on_tag is not present in"},{"event":"cmd_output","timestamp":1607098456,"output":" config map (165.4ms)\u001b[0m\n * test change_in uses different range when 'branch_range' config is giv"},{"event":"cmd_output","timestamp":1607098456,"output":"en\u001b[22m\n16:14:16.098 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingState with"},{"event":"cmd_output","timestamp":1607098456,"output":" name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wa"},{"event":"cmd_output","timestamp":1607098456,"output":"ke_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing"},{"event":"cmd_output","timestamp":1607098456,"output":"\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"ini"},{"event":"cmd_output","timestamp":1607098456,"output":"tializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, "},{"event":"cmd_output","timestamp":1607098456,"output":"repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_cou"},{"event":"cmd_output","timestamp":1607098456,"output":"nt, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:16.098 [info] "},{"event":"cmd_output","timestamp":1607098456,"output":"Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler.Pe"},{"event":"cmd_output","timestamp":1607098456,"output":"ndingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingSta"},{"event":"cmd_output","timestamp":1607098456,"output":"te\"]}, recurring args: %{allowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_sec"},{"event":"cmd_output","timestamp":1607098456,"output":": 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publisher_cb: #Function<0.849300"},{"event":"cmd_output","timestamp":1607098456,"output":"5/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_req"},{"event":"cmd_output","timestamp":1607098456,"output":"uest, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_sup"},{"event":"cmd_output","timestamp":1607098456,"output":"ervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:14:16.098 [info] Periodic from module Elixir.Ppl.Ppls.S"},{"event":"cmd_output","timestamp":1607098456,"output":"TMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, metric_n"},{"event":"cmd_output","timestamp":1607098456,"output":"ame: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{allowed_state"},{"event":"cmd_output","timestamp":1607098456,"output":"s: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observe"},{"event":"cmd_output","timestamp":1607098456,"output":"d_state: \"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.args/0"},{"event":"cmd_output","timestamp":1607098456,"output":">, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_"},{"event":"cmd_output","timestamp":1607098456,"output":"count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:16.098 [info"},{"event":"cmd_output","timestamp":1607098456,"output":"] Periodic from module Elixir.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHandler"},{"event":"cmd_output","timestamp":1607098456,"output":".RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Running"},{"event":"cmd_output","timestamp":1607098456,"output":"State\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, i"},{"event":"cmd_output","timestamp":1607098456,"output":"nitial_query: Ppl.Ppls.Model.Ppls, observed_state: \"running\", publisher_cb: #Function<0.74670282/1 i"},{"event":"cmd_output","timestamp":1607098456,"output":"n Ppl.Ppls.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request,"},{"event":"cmd_output","timestamp":1607098456,"output":" :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervis"},{"event":"cmd_output","timestamp":1607098456,"output":"or: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:14:16.098 [info] Periodic from module Elixir.Ppl.Ppls.STMHan"},{"event":"cmd_output","timestamp":1607098456,"output":"dler.StoppingState with name Elixir.Ppl.Ppls.STMHandler.StoppingState :: period: 100 ms, metric_name"},{"event":"cmd_output","timestamp":1607098456,"output":": {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring args: %{allowed_states:"},{"event":"cmd_output","timestamp":1607098456,"output":" [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"st"},{"event":"cmd_output","timestamp":1607098456,"output":"opping\", publisher_cb: #Function<0.71803493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, repo: Pp"},{"event":"cmd_output","timestamp":1607098456,"output":"l.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl"},{"event":"cmd_output","timestamp":1607098456,"output":"_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:16.098 [info] Periodic"},{"event":"cmd_output","timestamp":1607098456,"output":" from module Elixir.Ppl.PplSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHand"},{"event":"cmd_output","timestamp":1607098456,"output":"ler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandl"},{"event":"cmd_output","timestamp":1607098456,"output":"er-CreatedState\"]}, recurring args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, ini"},{"event":"cmd_output","timestamp":1607098456,"output":"tial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip, repo:"},{"event":"cmd_output","timestamp":1607098456,"output":" Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :"},{"event":"cmd_output","timestamp":1607098456,"output":"ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:16.098"},{"event":"cmd_output","timestamp":1607098456,"output":" [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl.P"},{"event":"cmd_output","timestamp":1607098456,"output":"plSubInits.STMHandler.FetchingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-P"},{"event":"cmd_output","timestamp":1607098456,"output":"plSubInits-STMHandler-FetchingState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilat"},{"event":"cmd_output","timestamp":1607098456,"output":"ion\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_stat"},{"event":"cmd_output","timestamp":1607098456,"output":"e: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :update"},{"event":"cmd_output","timestamp":1607098456,"output":"d_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_su"},{"event":"cmd_output","timestamp":1607098456,"output":"pervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:16.098 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHan"},{"event":"cmd_output","timestamp":1607098456,"output":"dler.CompilationState with name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 100 ms"},{"event":"cmd_output","timestamp":1607098456,"output":", metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurring "},{"event":"cmd_output","timestamp":1607098456,"output":"args: %{allowed_states: [\"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2, i"},{"event":"cmd_output","timestamp":1607098456,"output":"nitial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"compilation\", publisher_cb: :skip,"},{"event":"cmd_output","timestamp":1607098456,"output":" repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_co"},{"event":"cmd_output","timestamp":1607098456,"output":"unt, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:"},{"event":"cmd_output","timestamp":1607098456,"output":"16.099 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with name Eli"},{"event":"cmd_output","timestamp":1607098456,"output":"xir.Ppl.PplSubInits.STMHandler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_"},{"event":"cmd_output","timestamp":1607098456,"output":"up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurring args: %{allowed_states: [\"done\"], c"},{"event":"cmd_output","timestamp":1607098456,"output":"ooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_init\""},{"event":"cmd_output","timestamp":1607098456,"output":", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state,"},{"event":"cmd_output","timestamp":1607098456,"output":" :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :sk"},{"event":"cmd_output","timestamp":1607098456,"output":"ip}\n\u001b[0m\u001b[22m\n16:14:16.099 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.Initializi"},{"event":"cmd_output","timestamp":1607098456,"output":"ngState with name Elixir.Ppl.PplBlocks.STMHandler.InitializingState :: period: 100 ms, metric_name: "},{"event":"cmd_output","timestamp":1607098456,"output":"{\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_"},{"event":"cmd_output","timestamp":1607098456,"output":"states: [\"initializing\", \"waiting\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model"},{"event":"cmd_output","timestamp":1607098456,"output":".PplBlocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id"},{"event":"cmd_output","timestamp":1607098456,"output":", :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema:"},{"event":"cmd_output","timestamp":1607098456,"output":" Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:16.099 [info] Periodic fr"},{"event":"cmd_output","timestamp":1607098456,"output":"om module Elixir.Ppl.PplBlocks.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler.Wai"},{"event":"cmd_output","timestamp":1607098456,"output":"tingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-Waiti"},{"event":"cmd_output","timestamp":1607098456,"output":"ngState\"]}, recurring args: %{allowed_states: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 0, i"},{"event":"cmd_output","timestamp":1607098456,"output":"nitial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"waiting\", publisher_cb: #Function<0.89"},{"event":"cmd_output","timestamp":1607098456,"output":"75022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :term"},{"event":"cmd_output","timestamp":1607098456,"output":"inate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.Pp"},{"event":"cmd_output","timestamp":1607098456,"output":"lBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:16.099 [info] Periodic from modu"},{"event":"cmd_output","timestamp":1607098456,"output":"le Elixir.Ppl.PplBlocks.STMHandler.RunningState with name Elixir.Ppl.PplBlocks.STMHandler.RunningSta"},{"event":"cmd_output","timestamp":1607098456,"output":"te :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningState"},{"event":"cmd_output","timestamp":1607098456,"output":"\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initia"},{"event":"cmd_output","timestamp":1607098456,"output":"l_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"running\", publisher_cb: #Function<0.2816683"},{"event":"cmd_output","timestamp":1607098456,"output":"4/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminat"},{"event":"cmd_output","timestamp":1607098456,"output":"e_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema:"},{"event":"cmd_output","timestamp":1607098456,"output":" Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:16.099 [info] Periodic fr"},{"event":"cmd_output","timestamp":1607098456,"output":"om module Elixir.Ppl.PplBlocks.STMHandler.StoppingState with name Elixir.Ppl.PplBlocks.STMHandler.St"},{"event":"cmd_output","timestamp":1607098456,"output":"oppingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-Sto"},{"event":"cmd_output","timestamp":1607098456,"output":"ppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial"},{"event":"cmd_output","timestamp":1607098456,"output":"_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"stopping\", publisher_cb: #Function<0.1042159"},{"event":"cmd_output","timestamp":1607098456,"output":"91/1 in Ppl.PplBlocks.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :termin"},{"event":"cmd_output","timestamp":1607098456,"output":"ate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schem"},{"event":"cmd_output","timestamp":1607098456,"output":"a: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:16.099 [info] Periodic "},{"event":"cmd_output","timestamp":1607098456,"output":"from module Elixir.Block.Blocks.STMHandler.InitializingState with name Elixir.Block.Blocks.STMHandle"},{"event":"cmd_output","timestamp":1607098456,"output":"r.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandl"},{"event":"cmd_output","timestamp":1607098456,"output":"er-InitializingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0,"},{"event":"cmd_output","timestamp":1607098456,"output":" initial_query: Block.Blocks.Model.Blocks, observed_state: \"initializing\", publisher_cb: :skip, repo"},{"event":"cmd_output","timestamp":1607098456,"output":": Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_"},{"event":"cmd_output","timestamp":1607098456,"output":"id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:16.099 [info] Per"},{"event":"cmd_output","timestamp":1607098456,"output":"iodic from module Elixir.Block.Blocks.STMHandler.RunningState with name Elixir.Block.Blocks.STMHandl"},{"event":"cmd_output","timestamp":1607098456,"output":"er.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-R"},{"event":"cmd_output","timestamp":1607098456,"output":"unningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec:"},{"event":"cmd_output","timestamp":1607098456,"output":" -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"running\", publisher_cb: :skip, repo:"},{"event":"cmd_output","timestamp":1607098456,"output":" Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_i"},{"event":"cmd_output","timestamp":1607098456,"output":"d], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:16.099 [info] Peri"},{"event":"cmd_output","timestamp":1607098456,"output":"odic from module Elixir.Block.Blocks.STMHandler.StoppingState with name Elixir.Block.Blocks.STMHandl"},{"event":"cmd_output","timestamp":1607098456,"output":"er.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-"},{"event":"cmd_output","timestamp":1607098456,"output":"StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, init"},{"event":"cmd_output","timestamp":1607098456,"output":"ial_query: Block.Blocks.Model.Blocks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.E"},{"event":"cmd_output","timestamp":1607098456,"output":"ctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], sche"},{"event":"cmd_output","timestamp":1607098456,"output":"ma: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:16.099 [info] Periodic fro"},{"event":"cmd_output","timestamp":1607098456,"output":"m module Elixir.Block.Tasks.STMHandler.PendingState with name Elixir.Block.Tasks.STMHandler.PendingS"},{"event":"cmd_output","timestamp":1607098456,"output":"tate :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingState\""},{"event":"cmd_output","timestamp":1607098456,"output":"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block"},{"event":"cmd_output","timestamp":1607098456,"output":".Tasks.Model.Tasks, observed_state: \"pending\", publisher_cb: :skip, repo: Block.EctoRepo, returning:"},{"event":"cmd_output","timestamp":1607098456,"output":" [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id, :build_request_id], sche"},{"event":"cmd_output","timestamp":1607098456,"output":"ma: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:16.099 [info] Periodic from "},{"event":"cmd_output","timestamp":1607098456,"output":"module Elixir.Block.Tasks.STMHandler.RunningState with name Elixir.Block.Tasks.STMHandler.RunningSta"},{"event":"cmd_output","timestamp":1607098456,"output":"te :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningState\"]}"},{"event":"cmd_output","timestamp":1607098456,"output":", recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_q"},{"event":"cmd_output","timestamp":1607098456,"output":"uery: Block.Tasks.Model.Tasks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo,"},{"event":"cmd_output","timestamp":1607098456,"output":" returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Bloc"},{"event":"cmd_output","timestamp":1607098456,"output":"k.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:16.100 [info] Periodic from module E"},{"event":"cmd_output","timestamp":1607098456,"output":"lixir.Block.Tasks.STMHandler.StoppingState with name Elixir.Block.Tasks.STMHandler.StoppingState :: "},{"event":"cmd_output","timestamp":1607098456,"output":"period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]}, rec"},{"event":"cmd_output","timestamp":1607098456,"output":"urring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Task"},{"event":"cmd_output","timestamp":1607098456,"output":"s.Model.Tasks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:i"},{"event":"cmd_output","timestamp":1607098456,"output":"d, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.T"},{"event":"cmd_output","timestamp":1607098456,"output":"asks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:16.108 [info] Request: 'run: %{\"branch_id\" => \"4467"},{"event":"cmd_output","timestamp":1607098456,"output":"2f9a-779d-4053-8f0b-4117b9c28d38\", \"branch_name\" => \"config_branch_range\", \"commit_sha\" => \"75891a44"},{"event":"cmd_output","timestamp":1607098456,"output":"69\", \"file_name\" => \"config_branch_range.yml\", \"hook_id\" => \"c1745358-364b-11eb-9a72-5254005464e2\", "},{"event":"cmd_output","timestamp":1607098456,"output":"\"label\" => \"config_branch_range\", \"organization_id\" => \"c0848783-ec8f-451a-8285-0b33c2f09375\", \"owne"},{"event":"cmd_output","timestamp":1607098456,"output":"r\" => \"rt\", \"project_id\" => \"36a14408-9f3a-474b-a68e-8a5dbc49228a\", \"repo_name\" => \"22_skip_block\", "},{"event":"cmd_output","timestamp":1607098456,"output":"\"request_token\" => \"c1744caa-364b-11eb-a674-5254005464e2\", \"requester_id\" => \"b0ed8e94-6cbf-405c-8b3"},{"event":"cmd_output","timestamp":1607098456,"output":"d-c06296299098\", \"service\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"],"},{"event":"cmd_output","timestamp":1607098456,"output":" \"wf_id\" => \"d646188c-117d-4500-a2b4-a5ea5a6b0508\", \"working_dir\" => \".semaphore/change_in\"}\n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098456,"output":"22m\n16:14:16.112 [info] ppl_id: f4bd2ab8-9061-4d44-979c-e341bd942e21, type: PplRequests, event: pe"},{"event":"cmd_output","timestamp":1607098456,"output":"rsisted schedule request with request_token: c1744caa-364b-11eb-a674-5254005464e2, origin: Elixir.Pp"},{"event":"cmd_output","timestamp":1607098456,"output":"l.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:14:16.115 [info] pp"},{"event":"cmd_output","timestamp":1607098456,"output":"l_id: f4bd2ab8-9061-4d44-979c-e341bd942e21, type: Ppls, state: initializing, event: initializing, re"},{"event":"cmd_output","timestamp":1607098456,"output":"covery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098456,"output":":14:16.119 [info] Project 36a14408-9f3a-474b-a68e-8a5dbc49228a and branch config_branch_rangelatest"},{"event":"cmd_output","timestamp":1607098456,"output":"_wf details updated: \"wf_id: d646188c-117d-4500-a2b4-a5ea5a6b0508, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:14:1"},{"event":"cmd_output","timestamp":1607098456,"output":"6.120 [info] Persisted ppl_sub_init for pipeline with ppl_id: f4bd2ab8-9061-4d44-979c-e341bd942e21:"},{"event":"cmd_output","timestamp":1607098456,"output":" %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, "},{"event":"cmd_output","timestamp":1607098456,"output":"compile_task_id: nil, error_description: nil, id: 327, in_scheduling: false, init_type: \"regular\", i"},{"event":"cmd_output","timestamp":1607098456,"output":"nserted_at: ~N[2020-12-04 16:14:16.119956], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"f4bd2ab8-9061-4d44-979c-e341bd942e21\", recovery_count"},{"event":"cmd_output","timestamp":1607098456,"output":": 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_de"},{"event":"cmd_output","timestamp":1607098456,"output":"sc: nil, updated_at: ~N[2020-12-04 16:14:16.119963]}\n\u001b[0m\u001b[22m\n16:14:16.129 [info] ppl_id: f4bd2a"},{"event":"cmd_output","timestamp":1607098456,"output":"b8-9061-4d44-979c-e341bd942e21, type: PplRequests, event: persisted source_args for pipeline: f4bd2a"},{"event":"cmd_output","timestamp":1607098456,"output":"b8-9061-4d44-979c-e341bd942e21, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_sourc"},{"event":"cmd_output","timestamp":1607098456,"output":"e/2(L89), \n\u001b[0m\u001b[22m\n16:14:16.131 [info] ppl_id: f4bd2ab8-9061-4d44-979c-e341bd942e21, type: PplS"},{"event":"cmd_output","timestamp":1607098456,"output":"ubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl."},{"event":"cmd_output","timestamp":1607098456,"output":"log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:16.144 [info] ppl_id: f4bd2ab8-9061-4d44-979c-e341bd942"},{"event":"cmd_output","timestamp":1607098456,"output":"e21, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098456,"output":"ir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:16.167 [info] ppl_id: f4bd2ab8-9061-"},{"event":"cmd_output","timestamp":1607098456,"output":"4d44-979c-e341bd942e21, type: PplRequests, event: persisted definition for request with request_toke"},{"event":"cmd_output","timestamp":1607098456,"output":"n: c1744caa-364b-11eb-a674-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.ins"},{"event":"cmd_output","timestamp":1607098456,"output":"ert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:14:16.170 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Qu"},{"event":"cmd_output","timestamp":1607098456,"output":"eues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:14:16.169277]"},{"event":"cmd_output","timestamp":1607098456,"output":", name: \"config_branch_range-.semaphore/change_in/config_branch_range.yml\", organization_id: \"c08487"},{"event":"cmd_output","timestamp":1607098456,"output":"83-ec8f-451a-8285-0b33c2f09375\", project_id: \"36a14408-9f3a-474b-a68e-8a5dbc49228a\", queue_id: \"ec30"},{"event":"cmd_output","timestamp":1607098456,"output":"5782-e141-481c-a6f7-3a6194dba9bd\", scope: \"project\", updated_at: ~N[2020-12-04 16:14:16.169285], use"},{"event":"cmd_output","timestamp":1607098456,"output":"r_generated: false}}\n\u001b[0m\u001b[22m\n16:14:16.173 [info] event: created, origin: Elixir.Ppl.PplSubInits"},{"event":"cmd_output","timestamp":1607098456,"output":".STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:16.173 [info] ppl_id: f4bd2ab8-906"},{"event":"cmd_output","timestamp":1607098456,"output":"1-4d44-979c-e341bd942e21, type: PplBlocks, block_index: 0, state: initializing, event: created, reco"},{"event":"cmd_output","timestamp":1607098456,"output":"very_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098456,"output":"2m\n16:14:16.175 [info] ppl_id: f4bd2ab8-9061-4d44-979c-e341bd942e21, type: PplSubInits, state: don"},{"event":"cmd_output","timestamp":1607098456,"output":"e, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_sta"},{"event":"cmd_output","timestamp":1607098456,"output":"te_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:16.182 [info] ppl_id: f4bd2ab8-9061-4d44-979c-e341bd942e21, ty"},{"event":"cmd_output","timestamp":1607098456,"output":"pe: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098456,"output":"ixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:16.183 [info] ppl_id: f4bd2ab8-906"},{"event":"cmd_output","timestamp":1607098456,"output":"1-4d44-979c-e341bd942e21, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098456,"output":"gin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:16.192 [info] ppl_id: f4bd2"},{"event":"cmd_output","timestamp":1607098456,"output":"ab8-9061-4d44-979c-e341bd942e21, type: Ppls, state: queuing, event: exit_scheduling, recovery_count:"},{"event":"cmd_output","timestamp":1607098456,"output":" 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:16.198 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098456,"output":": f4bd2ab8-9061-4d44-979c-e341bd942e21, type: Ppls, state: running, event: exit_scheduling, recovery"},{"event":"cmd_output","timestamp":1607098456,"output":"_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:16.206 [info] "},{"event":"cmd_output","timestamp":1607098456,"output":" PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"f4bd2ab8-9061-4d44-979c-e341bd942e"},{"event":"cmd_output","timestamp":1607098456,"output":"21\"\n\u001b[0m\u001b[22m\n16:14:16.217 [info] ppl_id: f4bd2ab8-9061-4d44-979c-e341bd942e21, type: PplBlocks, "},{"event":"cmd_output","timestamp":1607098456,"output":"block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098456,"output":"ir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:16.226 [info] ppl_id: f4bd2ab8-9061-"},{"event":"cmd_output","timestamp":1607098456,"output":"4d44-979c-e341bd942e21, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_co"},{"event":"cmd_output","timestamp":1607098456,"output":"unt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test change_in uses "},{"event":"cmd_output","timestamp":1607098456,"output":"different range when 'branch_range' config is given (170.9ms)\u001b[0m\n\nPpl.E2E.ExecutionTimeLimit.Test"},{"event":"cmd_output","timestamp":1607098456,"output":"\n * test when pipeline limit is longer than deafult job limit => pipeline is malformed\u001b[22m\n16:14:"},{"event":"cmd_output","timestamp":1607098456,"output":"16.284 [info] Request: 'run: %{:file_name => \"/exec_time_limit/ppl_limit_over_default_job.yml\", :re"},{"event":"cmd_output","timestamp":1607098456,"output":"po_name => \"23_initializing_test\", \"branch_id\" => \"69f962dc-ece7-4424-96da-cee21107a5da\", \"branch_na"},{"event":"cmd_output","timestamp":1607098456,"output":"me\" => \"master\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"semaphore.yml\", \"hook_id\" => \"c190455"},{"event":"cmd_output","timestamp":1607098456,"output":"e-364b-11eb-91b3-5254005464e2\", \"label\" => \"master\", \"organization_id\" => \"db38526f-e5e4-486a-88b9-b"},{"event":"cmd_output","timestamp":1607098456,"output":"fcc3548d358\", \"owner\" => \"rt\", \"project_id\" => \"573601af-a5d9-49a3-9f41-ee533c600a61\", \"repo_name\" ="},{"event":"cmd_output","timestamp":1607098456,"output":"> \"2_basic\", \"request_token\" => \"c1903d84-364b-11eb-8030-5254005464e2\", \"requester_id\" => \"b78e2e24-"},{"event":"cmd_output","timestamp":1607098456,"output":"d97f-4e40-b4d6-ec6952ce7faa\", \"service\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"cli"},{"event":"cmd_output","timestamp":1607098456,"output":"ent_secret\"], \"wf_id\" => \"7d727862-7e7f-45e2-822c-1217af8d50ec\", \"working_dir\" => \".semaphore\"}\n\u001b[0"},{"event":"cmd_output","timestamp":1607098456,"output":"m\u001b[22m\n16:14:16.287 [info] ppl_id: b4c2a94a-eafe-4734-a3b2-69ddd1526900, type: PplRequests, event:"},{"event":"cmd_output","timestamp":1607098456,"output":" persisted schedule request with request_token: c1903d84-364b-11eb-8030-5254005464e2, origin: Elixir"},{"event":"cmd_output","timestamp":1607098456,"output":".Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:14:16.290 [info] "},{"event":"cmd_output","timestamp":1607098456,"output":" ppl_id: b4c2a94a-eafe-4734-a3b2-69ddd1526900, type: Ppls, state: initializing, event: initializing,"},{"event":"cmd_output","timestamp":1607098456,"output":" recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098456,"output":"\n16:14:16.293 [info] Project 573601af-a5d9-49a3-9f41-ee533c600a61 and branch masterlatest_wf detail"},{"event":"cmd_output","timestamp":1607098456,"output":"s updated: \"wf_id: 7d727862-7e7f-45e2-822c-1217af8d50ec, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:14:16.294 [inf"},{"event":"cmd_output","timestamp":1607098456,"output":"o] Persisted ppl_sub_init for pipeline with ppl_id: b4c2a94a-eafe-4734-a3b2-69ddd1526900: %Ppl.PplS"},{"event":"cmd_output","timestamp":1607098456,"output":"ubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_ta"},{"event":"cmd_output","timestamp":1607098456,"output":"sk_id: nil, error_description: nil, id: 328, in_scheduling: false, init_type: \"regular\", inserted_at"},{"event":"cmd_output","timestamp":1607098456,"output":": ~N[2020-12-04 16:14:16.293585], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"b4c2a94a-eafe-4734-a3b2-69ddd1526900\", recovery_count: 0, resul"},{"event":"cmd_output","timestamp":1607098456,"output":"t: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, u"},{"event":"cmd_output","timestamp":1607098456,"output":"pdated_at: ~N[2020-12-04 16:14:16.293590]}\n\u001b[0m\u001b[22m\n16:14:16.298 [info] Periodic from module Eli"},{"event":"cmd_output","timestamp":1607098456,"output":"xir.Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: "},{"event":"cmd_output","timestamp":1607098456,"output":"period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, re"},{"event":"cmd_output","timestamp":1607098456,"output":"curring args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_qu"},{"event":"cmd_output","timestamp":1607098456,"output":"ery: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher_cb: #Function<0.125326080/1 in P"},{"event":"cmd_output","timestamp":1607098456,"output":"pl.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_reques"},{"event":"cmd_output","timestamp":1607098456,"output":"t, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_superv"},{"event":"cmd_output","timestamp":1607098456,"output":"isor: :skip}\n\u001b[0m\u001b[22m\n16:14:16.298 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.Pendin"},{"event":"cmd_output","timestamp":1607098456,"output":"gState with name Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.behol"},{"event":"cmd_output","timestamp":1607098456,"output":"der-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"pending\", \""},{"event":"cmd_output","timestamp":1607098456,"output":"queuing\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_stat"},{"event":"cmd_output","timestamp":1607098456,"output":"e: \"pending\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo:"},{"event":"cmd_output","timestamp":1607098456,"output":" Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :"},{"event":"cmd_output","timestamp":1607098456,"output":"ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:14:16.299 "},{"event":"cmd_output","timestamp":1607098456,"output":"[info] Periodic from module Elixir.Ppl.Ppls.STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHa"},{"event":"cmd_output","timestamp":1607098456,"output":"ndler.QueuingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Qu"},{"event":"cmd_output","timestamp":1607098456,"output":"euingState\"]}, recurring args: %{allowed_states: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -"},{"event":"cmd_output","timestamp":1607098456,"output":"2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", publisher_cb: #Function<0.12510284"},{"event":"cmd_output","timestamp":1607098456,"output":"3/1 in Ppl.Ppls.STMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_req"},{"event":"cmd_output","timestamp":1607098456,"output":"uest, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_sup"},{"event":"cmd_output","timestamp":1607098456,"output":"ervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:16.299 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.Run"},{"event":"cmd_output","timestamp":1607098456,"output":"ningState with name Elixir.Ppl.Ppls.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.be"},{"event":"cmd_output","timestamp":1607098456,"output":"holder-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\""},{"event":"cmd_output","timestamp":1607098456,"output":", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"ru"},{"event":"cmd_output","timestamp":1607098456,"output":"nning\", publisher_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler.RunningState.args/0>, repo: Ppl."},{"event":"cmd_output","timestamp":1607098456,"output":"EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_i"},{"event":"cmd_output","timestamp":1607098456,"output":"d], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:14:16.300 [info"},{"event":"cmd_output","timestamp":1607098456,"output":"] Periodic from module Elixir.Ppl.Ppls.STMHandler.StoppingState with name Elixir.Ppl.Ppls.STMHandle"},{"event":"cmd_output","timestamp":1607098456,"output":"r.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Stopp"},{"event":"cmd_output","timestamp":1607098456,"output":"ingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_q"},{"event":"cmd_output","timestamp":1607098456,"output":"uery: Ppl.Ppls.Model.Ppls, observed_state: \"stopping\", publisher_cb: #Function<0.71803493/1 in Ppl.P"},{"event":"cmd_output","timestamp":1607098456,"output":"pls.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :upda"},{"event":"cmd_output","timestamp":1607098456,"output":"ted_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :s"},{"event":"cmd_output","timestamp":1607098456,"output":"kip}\n\u001b[0m\u001b[22m\n16:14:16.300 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.Created"},{"event":"cmd_output","timestamp":1607098456,"output":"State with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 100 ms, metric_name: {\"Ppl"},{"event":"cmd_output","timestamp":1607098456,"output":".beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args: %{allowed_states: "},{"event":"cmd_output","timestamp":1607098456,"output":"[\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observe"},{"event":"cmd_output","timestamp":1607098456,"output":"d_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :u"},{"event":"cmd_output","timestamp":1607098456,"output":"pdated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, ta"},{"event":"cmd_output","timestamp":1607098456,"output":"sk_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:16.301 [info] Periodic from module Elixir.Ppl.PplSubInits.S"},{"event":"cmd_output","timestamp":1607098456,"output":"TMHandler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 ms,"},{"event":"cmd_output","timestamp":1607098456,"output":" metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring args"},{"event":"cmd_output","timestamp":1607098456,"output":": %{allowed_states: [\"regular_init\", \"compilation\", \"done\"], cooling_time_sec: -2, initial_query: Pp"},{"event":"cmd_output","timestamp":1607098456,"output":"l.PplSubInits.Model.PplSubInits, observed_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo"},{"event":"cmd_output","timestamp":1607098456,"output":", returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], sche"},{"event":"cmd_output","timestamp":1607098456,"output":"ma: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:16.302 [info] Peri"},{"event":"cmd_output","timestamp":1607098456,"output":"odic from module Elixir.Ppl.PplSubInits.STMHandler.CompilationState with name Elixir.Ppl.PplSubInits"},{"event":"cmd_output","timestamp":1607098456,"output":".STMHandler.CompilationState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubIn"},{"event":"cmd_output","timestamp":1607098456,"output":"its-STMHandler-CompilationState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\""},{"event":"cmd_output","timestamp":1607098456,"output":", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, obser"},{"event":"cmd_output","timestamp":1607098456,"output":"ved_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_reque"},{"event":"cmd_output","timestamp":1607098456,"output":"st, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubIni"},{"event":"cmd_output","timestamp":1607098456,"output":"ts, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:16.302 [info] Periodic from module Elixir.Ppl.PplSubI"},{"event":"cmd_output","timestamp":1607098456,"output":"nits.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: per"},{"event":"cmd_output","timestamp":1607098456,"output":"iod: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]},"},{"event":"cmd_output","timestamp":1607098456,"output":" recurring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Mod"},{"event":"cmd_output","timestamp":1607098456,"output":"el.PplSubInits, observed_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: "},{"event":"cmd_output","timestamp":1607098456,"output":"[:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSu"},{"event":"cmd_output","timestamp":1607098456,"output":"bInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:16.302 [info] Periodic from mod"},{"event":"cmd_output","timestamp":1607098456,"output":"ule Elixir.Ppl.PplBlocks.STMHandler.InitializingState with name Elixir.Ppl.PplBlocks.STMHandler.Init"},{"event":"cmd_output","timestamp":1607098456,"output":"ializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-In"},{"event":"cmd_output","timestamp":1607098456,"output":"itializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"waiting\", \"done\"], cooling_t"},{"event":"cmd_output","timestamp":1607098456,"output":"ime_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"initializing\", publisher_"},{"event":"cmd_output","timestamp":1607098456,"output":"cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :r"},{"event":"cmd_output","timestamp":1607098456,"output":"ecovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip"},{"event":"cmd_output","timestamp":1607098456,"output":"}\n\u001b[0m\u001b[22m\n16:14:16.302 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.WaitingState"},{"event":"cmd_output","timestamp":1607098456,"output":" with name Elixir.Ppl.PplBlocks.STMHandler.WaitingState :: period: 1000 ms, metric_name: {\"Ppl.behol"},{"event":"cmd_output","timestamp":1607098456,"output":"der-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurring args: %{allowed_states: [\"waitin"},{"event":"cmd_output","timestamp":1607098456,"output":"g\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_"},{"event":"cmd_output","timestamp":1607098456,"output":"state: \"waiting\", publisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/"},{"event":"cmd_output","timestamp":1607098456,"output":"0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery"},{"event":"cmd_output","timestamp":1607098456,"output":"_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m"},{"event":"cmd_output","timestamp":1607098456,"output":"\u001b[22m\n16:14:16.303 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.RunningState with n"},{"event":"cmd_output","timestamp":1607098456,"output":"ame Elixir.Ppl.PplBlocks.STMHandler.RunningState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wak"},{"event":"cmd_output","timestamp":1607098456,"output":"e_up\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"st"},{"event":"cmd_output","timestamp":1607098456,"output":"opping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state"},{"event":"cmd_output","timestamp":1607098456,"output":": \"running\", publisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0>, "},{"event":"cmd_output","timestamp":1607098456,"output":"repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_cou"},{"event":"cmd_output","timestamp":1607098456,"output":"nt, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip"},{"event":"cmd_output","timestamp":1607098456,"output":"}\n\u001b[0m\u001b[22m\n16:14:16.303 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.StoppingStat"},{"event":"cmd_output","timestamp":1607098456,"output":"e with name Elixir.Ppl.PplBlocks.STMHandler.StoppingState :: period: 1000 ms, metric_name: {\"Ppl.beh"},{"event":"cmd_output","timestamp":1607098456,"output":"older-wake_up\", [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"sto"},{"event":"cmd_output","timestamp":1607098456,"output":"pping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state:"},{"event":"cmd_output","timestamp":1607098456,"output":" \"stopping\", publisher_cb: #Function<0.104215991/1 in Ppl.PplBlocks.STMHandler.StoppingState.args/0>"},{"event":"cmd_output","timestamp":1607098456,"output":", repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_c"},{"event":"cmd_output","timestamp":1607098456,"output":"ount, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :sk"},{"event":"cmd_output","timestamp":1607098456,"output":"ip}\n\u001b[0m\u001b[22m\n16:14:16.303 [info] Periodic from module Elixir.Block.Blocks.STMHandler.Initializin"},{"event":"cmd_output","timestamp":1607098456,"output":"gState with name Elixir.Block.Blocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\""},{"event":"cmd_output","timestamp":1607098456,"output":"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_sta"},{"event":"cmd_output","timestamp":1607098456,"output":"tes: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Blocks.Model.Blocks, observed_st"},{"event":"cmd_output","timestamp":1607098456,"output":"ate: \"initializing\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request,"},{"event":"cmd_output","timestamp":1607098456,"output":" :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_superviso"},{"event":"cmd_output","timestamp":1607098456,"output":"r: :skip}\n\u001b[0m\u001b[22m\n16:14:16.303 [info] Periodic from module Elixir.Block.Blocks.STMHandler.Runni"},{"event":"cmd_output","timestamp":1607098456,"output":"ngState with name Elixir.Block.Blocks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl."},{"event":"cmd_output","timestamp":1607098456,"output":"beholder-wake_up\", [\"Block-Blocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"ru"},{"event":"cmd_output","timestamp":1607098456,"output":"nning\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observe"},{"event":"cmd_output","timestamp":1607098456,"output":"d_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, "},{"event":"cmd_output","timestamp":1607098456,"output":":updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor"},{"event":"cmd_output","timestamp":1607098456,"output":": :skip}\n\u001b[0m\u001b[22m\n16:14:16.303 [info] Periodic from module Elixir.Block.Blocks.STMHandler.Stoppi"},{"event":"cmd_output","timestamp":1607098456,"output":"ngState with name Elixir.Block.Blocks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl"},{"event":"cmd_output","timestamp":1607098456,"output":".beholder-wake_up\", [\"Block-Blocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\""},{"event":"cmd_output","timestamp":1607098456,"output":"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: "},{"event":"cmd_output","timestamp":1607098456,"output":"\"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated"},{"event":"cmd_output","timestamp":1607098456,"output":"_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}"},{"event":"cmd_output","timestamp":1607098456,"output":"\n\u001b[0m\u001b[22m\n16:14:16.303 [info] Periodic from module Elixir.Block.Tasks.STMHandler.PendingState wi"},{"event":"cmd_output","timestamp":1607098456,"output":"th name Elixir.Block.Tasks.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wa"},{"event":"cmd_output","timestamp":1607098456,"output":"ke_up\", [\"Block-Tasks-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"running\", \"don"},{"event":"cmd_output","timestamp":1607098456,"output":"e\"], cooling_time_sec: 0, initial_query: Block.Tasks.Model.Tasks, observed_state: \"pending\", publish"},{"event":"cmd_output","timestamp":1607098456,"output":"er_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recov"},{"event":"cmd_output","timestamp":1607098456,"output":"ery_count, :block_id, :build_request_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n"},{"event":"cmd_output","timestamp":1607098456,"output":"\u001b[0m\u001b[22m\n16:14:16.304 [info] Periodic from module Elixir.Block.Tasks.STMHandler.RunningState with"},{"event":"cmd_output","timestamp":1607098456,"output":" name Elixir.Block.Tasks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake"},{"event":"cmd_output","timestamp":1607098456,"output":"_up\", [\"Block-Tasks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopp"},{"event":"cmd_output","timestamp":1607098456,"output":"ing\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"runnin"},{"event":"cmd_output","timestamp":1607098456,"output":"g\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :st"},{"event":"cmd_output","timestamp":1607098456,"output":"ate, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098456,"output":"m\n16:14:16.304 [info] Periodic from module Elixir.Block.Tasks.STMHandler.StoppingState with name E"},{"event":"cmd_output","timestamp":1607098456,"output":"lixir.Block.Tasks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", "},{"event":"cmd_output","timestamp":1607098456,"output":"[\"Block-Tasks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], c"},{"event":"cmd_output","timestamp":1607098456,"output":"ooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"stopping\", publisher_c"},{"event":"cmd_output","timestamp":1607098456,"output":"b: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_"},{"event":"cmd_output","timestamp":1607098456,"output":"count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:16.411"},{"event":"cmd_output","timestamp":1607098456,"output":" [info] ppl_id: b4c2a94a-eafe-4734-a3b2-69ddd1526900, type: PplRequests, event: persisted source_ar"},{"event":"cmd_output","timestamp":1607098456,"output":"gs for pipeline: b4c2a94a-eafe-4734-a3b2-69ddd1526900, origin: Elixir.Ppl.PplRequests.Model.PplReque"},{"event":"cmd_output","timestamp":1607098456,"output":"stsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:14:16.413 [info] ppl_id: b4c2a94a-eafe-4734-a3b2-6"},{"event":"cmd_output","timestamp":1607098456,"output":"9ddd1526900, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098456,"output":"Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:16.428 [info] ppl_id: b4c2a94a-e"},{"event":"cmd_output","timestamp":1607098456,"output":"afe-4734-a3b2-69ddd1526900, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery"},{"event":"cmd_output","timestamp":1607098456,"output":"_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:16.443 [info] "},{"event":"cmd_output","timestamp":1607098456,"output":" ppl_id: b4c2a94a-eafe-4734-a3b2-69ddd1526900, type: PplSubInits, state: done, result: failed, event"},{"event":"cmd_output","timestamp":1607098456,"output":": exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098456,"output":"\u001b[22m\n16:14:16.456 [info] ppl_id: b4c2a94a-eafe-4734-a3b2-69ddd1526900, type: Ppls, state: done, r"},{"event":"cmd_output","timestamp":1607098456,"output":"esult: failed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098456,"output":"hange/1(L90), \n\u001b[0m\u001b[32m\r * test when pipeline limit is longer than deafult job limit => pipeline i"},{"event":"cmd_output","timestamp":1607098456,"output":"s malformed (281.7ms)\u001b[0m\n * test when job limit is longer than limit of its block => pipeline is "},{"event":"cmd_output","timestamp":1607098456,"output":"malformed\u001b[22m\n16:14:16.557 [info] Request: 'run: %{:file_name => \"/exec_time_limit/job_longer_tha"},{"event":"cmd_output","timestamp":1607098456,"output":"n_block.yml\", :repo_name => \"23_initializing_test\", \"branch_id\" => \"72687466-8eea-4500-8934-6c2dd08c"},{"event":"cmd_output","timestamp":1607098456,"output":"4c61\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"semaphore.yml\", \"hoo"},{"event":"cmd_output","timestamp":1607098456,"output":"k_id\" => \"c1b9d536-364b-11eb-afc5-5254005464e2\", \"label\" => \"master\", \"organization_id\" => \"39f5f01d"},{"event":"cmd_output","timestamp":1607098456,"output":"-691e-47db-97cb-00db7c12fe20\", \"owner\" => \"rt\", \"project_id\" => \"fb51a0fd-6d61-41e2-af8c-42507645224"},{"event":"cmd_output","timestamp":1607098456,"output":"d\", \"repo_name\" => \"2_basic\", \"request_token\" => \"c1b9cd5c-364b-11eb-9977-5254005464e2\", \"requester_"},{"event":"cmd_output","timestamp":1607098456,"output":"id\" => \"a2ffe68c-7e31-402c-9bbd-bc7d9a89f70b\", \"service\" => \"local\", \"suppressed_attributes\" => [\"ac"},{"event":"cmd_output","timestamp":1607098456,"output":"cess_token\", \"client_secret\"], \"wf_id\" => \"23815d65-6ec6-4995-80ae-c46a10d28ff9\", \"working_dir\" => \""},{"event":"cmd_output","timestamp":1607098456,"output":".semaphore\"}\n\u001b[0m\u001b[22m\n16:14:16.559 [info] ppl_id: 6eae1588-6ec9-4d76-8d27-a131478fe250, type: Pp"},{"event":"cmd_output","timestamp":1607098456,"output":"lRequests, event: persisted schedule request with request_token: c1b9cd5c-364b-11eb-9977-5254005464e"},{"event":"cmd_output","timestamp":1607098456,"output":"2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098456,"output":"14:16.561 [info] ppl_id: 6eae1588-6ec9-4d76-8d27-a131478fe250, type: Ppls, state: initializing, eve"},{"event":"cmd_output","timestamp":1607098456,"output":"nt: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L1"},{"event":"cmd_output","timestamp":1607098456,"output":"24), \n\u001b[0m\u001b[22m\n16:14:16.565 [info] Project fb51a0fd-6d61-41e2-af8c-42507645224d and branch maste"},{"event":"cmd_output","timestamp":1607098456,"output":"rlatest_wf details updated: \"wf_id: 23815d65-6ec6-4995-80ae-c46a10d28ff9, wf_number: 1\"\n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098456,"output":"16:14:16.567 [info] Persisted ppl_sub_init for pipeline with ppl_id: 6eae1588-6ec9-4d76-8d27-a13147"},{"event":"cmd_output","timestamp":1607098456,"output":"8fe250: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_in"},{"event":"cmd_output","timestamp":1607098456,"output":"its\">, compile_task_id: nil, error_description: nil, id: 329, in_scheduling: false, init_type: \"regu"},{"event":"cmd_output","timestamp":1607098456,"output":"lar\", inserted_at: ~N[2020-12-04 16:14:16.565647], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"6eae1588-6ec9-4d76-8d27-a131478fe250\", recover"},{"event":"cmd_output","timestamp":1607098456,"output":"y_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_req"},{"event":"cmd_output","timestamp":1607098456,"output":"uest_desc: nil, updated_at: ~N[2020-12-04 16:14:16.565653]}\n\u001b[0m\u001b[22m\n16:14:16.570 [info] Periodi"},{"event":"cmd_output","timestamp":1607098456,"output":"c from module Elixir.Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.STMHandler.Init"},{"event":"cmd_output","timestamp":1607098456,"output":"ializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Initial"},{"event":"cmd_output","timestamp":1607098456,"output":"izingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], cooling_time_s"},{"event":"cmd_output","timestamp":1607098456,"output":"ec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher_cb: #Function<0"},{"event":"cmd_output","timestamp":1607098456,"output":".125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, "},{"event":"cmd_output","timestamp":1607098456,"output":":terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model."},{"event":"cmd_output","timestamp":1607098456,"output":"Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:16.570 [info] Periodic from module Elixir.Ppl.Ppls."},{"event":"cmd_output","timestamp":1607098456,"output":"STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 100 ms, metric_"},{"event":"cmd_output","timestamp":1607098456,"output":"name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args: %{allowed_stat"},{"event":"cmd_output","timestamp":1607098456,"output":"es: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Pp"},{"event":"cmd_output","timestamp":1607098456,"output":"ls, observed_state: \"pending\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler.PendingSta"},{"event":"cmd_output","timestamp":1607098456,"output":"te.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :"},{"event":"cmd_output","timestamp":1607098456,"output":"recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098456,"output":"2m\n16:14:16.570 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.QueuingState with name Elix"},{"event":"cmd_output","timestamp":1607098456,"output":"ir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-P"},{"event":"cmd_output","timestamp":1607098456,"output":"pls-STMHandler-QueuingState\"]}, recurring args: %{allowed_states: [\"queuing\", \"running\", \"done\"], co"},{"event":"cmd_output","timestamp":1607098456,"output":"oling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", publisher_cb: #Fu"},{"event":"cmd_output","timestamp":1607098456,"output":"nction<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, returning: [:i"},{"event":"cmd_output","timestamp":1607098456,"output":"d, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Mod"},{"event":"cmd_output","timestamp":1607098456,"output":"el.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:16.571 [info] Periodic from module Elixir.Ppl.Pp"},{"event":"cmd_output","timestamp":1607098456,"output":"ls.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHandler.RunningState :: period: 100 ms, metr"},{"event":"cmd_output","timestamp":1607098456,"output":"ic_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring args: %{allowed_s"},{"event":"cmd_output","timestamp":1607098456,"output":"tates: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, ob"},{"event":"cmd_output","timestamp":1607098456,"output":"served_state: \"running\", publisher_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler.RunningState.ar"},{"event":"cmd_output","timestamp":1607098456,"output":"gs/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recov"},{"event":"cmd_output","timestamp":1607098456,"output":"ery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098456,"output":"6:14:16.571 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.StoppingState with name Elixir.P"},{"event":"cmd_output","timestamp":1607098456,"output":"pl.Ppls.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls"},{"event":"cmd_output","timestamp":1607098456,"output":"-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_s"},{"event":"cmd_output","timestamp":1607098456,"output":"ec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"stopping\", publisher_cb: #Function<0.71"},{"event":"cmd_output","timestamp":1607098456,"output":"803493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :termina"},{"event":"cmd_output","timestamp":1607098456,"output":"te_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, ta"},{"event":"cmd_output","timestamp":1607098456,"output":"sk_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:16.571 [info] Periodic from module Elixir.Ppl.PplSubInits.S"},{"event":"cmd_output","timestamp":1607098456,"output":"TMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 100 ms, m"},{"event":"cmd_output","timestamp":1607098456,"output":"etric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args: %"},{"event":"cmd_output","timestamp":1607098456,"output":"{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.Ppl"},{"event":"cmd_output","timestamp":1607098456,"output":"SubInits, observed_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :term"},{"event":"cmd_output","timestamp":1607098456,"output":"inate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Mode"},{"event":"cmd_output","timestamp":1607098456,"output":"l.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:16.571 [info] Periodic from module Elixir."},{"event":"cmd_output","timestamp":1607098456,"output":"Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler.FetchingState :"},{"event":"cmd_output","timestamp":1607098456,"output":": period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]"},{"event":"cmd_output","timestamp":1607098456,"output":"}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"done\"], cooling_time_sec: -2, "},{"event":"cmd_output","timestamp":1607098456,"output":"initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fetching\", publisher_cb: :skip, r"},{"event":"cmd_output","timestamp":1607098456,"output":"epo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_coun"},{"event":"cmd_output","timestamp":1607098456,"output":"t, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:16"},{"event":"cmd_output","timestamp":1607098456,"output":".572 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CompilationState with name Elixi"},{"event":"cmd_output","timestamp":1607098456,"output":"r.Ppl.PplSubInits.STMHandler.CompilationState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up"},{"event":"cmd_output","timestamp":1607098456,"output":"\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurring args: %{allowed_states: [\"regular_ini"},{"event":"cmd_output","timestamp":1607098456,"output":"t\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.P"},{"event":"cmd_output","timestamp":1607098456,"output":"plSubInits, observed_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id,"},{"event":"cmd_output","timestamp":1607098456,"output":" :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInit"},{"event":"cmd_output","timestamp":1607098456,"output":"s.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:16.572 [info] Periodic from module E"},{"event":"cmd_output","timestamp":1607098456,"output":"lixir.Ppl.PplSubInits.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHandler.Regula"},{"event":"cmd_output","timestamp":1607098456,"output":"rInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-Reg"},{"event":"cmd_output","timestamp":1607098456,"output":"ularInitState\"]}, recurring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, initial_query: Pp"},{"event":"cmd_output","timestamp":1607098456,"output":"l.PplSubInits.Model.PplSubInits, observed_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.Ecto"},{"event":"cmd_output","timestamp":1607098456,"output":"Repo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], "},{"event":"cmd_output","timestamp":1607098456,"output":"schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:16.572 [info] "},{"event":"cmd_output","timestamp":1607098456,"output":"Periodic from module Elixir.Ppl.PplBlocks.STMHandler.InitializingState with name Elixir.Ppl.PplBlock"},{"event":"cmd_output","timestamp":1607098456,"output":"s.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlo"},{"event":"cmd_output","timestamp":1607098456,"output":"cks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"waiting\", \""},{"event":"cmd_output","timestamp":1607098456,"output":"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"initiali"},{"event":"cmd_output","timestamp":1607098456,"output":"zing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :s"},{"event":"cmd_output","timestamp":1607098456,"output":"tate, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_"},{"event":"cmd_output","timestamp":1607098456,"output":"supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:16.572 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHan"},{"event":"cmd_output","timestamp":1607098456,"output":"dler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler.WaitingState :: period: 1000 ms, metric_"},{"event":"cmd_output","timestamp":1607098456,"output":"name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurring args: %{allowed"},{"event":"cmd_output","timestamp":1607098456,"output":"_states: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.Ppl"},{"event":"cmd_output","timestamp":1607098456,"output":"Blocks, observed_state: \"waiting\", publisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.STMHandler.W"},{"event":"cmd_output","timestamp":1607098456,"output":"aitingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :"},{"event":"cmd_output","timestamp":1607098456,"output":"result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervi"},{"event":"cmd_output","timestamp":1607098456,"output":"sor: :skip}\n\u001b[0m\u001b[22m\n16:14:16.573 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.Ru"},{"event":"cmd_output","timestamp":1607098456,"output":"nningState with name Elixir.Ppl.PplBlocks.STMHandler.RunningState :: period: 1000 ms, metric_name: {"},{"event":"cmd_output","timestamp":1607098456,"output":"\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states"},{"event":"cmd_output","timestamp":1607098456,"output":": [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlock"},{"event":"cmd_output","timestamp":1607098456,"output":"s, observed_state: \"running\", publisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHandler.Runni"},{"event":"cmd_output","timestamp":1607098456,"output":"ngState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :resu"},{"event":"cmd_output","timestamp":1607098456,"output":"lt, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_"},{"event":"cmd_output","timestamp":1607098456,"output":"supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:16.573 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHan"},{"event":"cmd_output","timestamp":1607098456,"output":"dler.StoppingState with name Elixir.Ppl.PplBlocks.STMHandler.StoppingState :: period: 1000 ms, metri"},{"event":"cmd_output","timestamp":1607098456,"output":"c_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurring args: %{allo"},{"event":"cmd_output","timestamp":1607098456,"output":"wed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks"},{"event":"cmd_output","timestamp":1607098456,"output":", observed_state: \"stopping\", publisher_cb: #Function<0.104215991/1 in Ppl.PplBlocks.STMHandler.Stop"},{"event":"cmd_output","timestamp":1607098456,"output":"pingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :re"},{"event":"cmd_output","timestamp":1607098456,"output":"sult, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, tas"},{"event":"cmd_output","timestamp":1607098456,"output":"k_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:16.573 [info] Periodic from module Elixir.Block.Blocks.STMHa"},{"event":"cmd_output","timestamp":1607098456,"output":"ndler.InitializingState with name Elixir.Block.Blocks.STMHandler.InitializingState :: period: 100 ms"},{"event":"cmd_output","timestamp":1607098456,"output":", metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, recurring ar"},{"event":"cmd_output","timestamp":1607098456,"output":"gs: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Blocks.Model.Bl"},{"event":"cmd_output","timestamp":1607098456,"output":"ocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :t"},{"event":"cmd_output","timestamp":1607098456,"output":"erminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Block"},{"event":"cmd_output","timestamp":1607098456,"output":"s, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:16.573 [info] Periodic from module Elixir.Block.Blocks"},{"event":"cmd_output","timestamp":1607098456,"output":".STMHandler.RunningState with name Elixir.Block.Blocks.STMHandler.RunningState :: period: 100 ms, me"},{"event":"cmd_output","timestamp":1607098456,"output":"tric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-RunningState\"]}, recurring args: %{all"},{"event":"cmd_output","timestamp":1607098456,"output":"owed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Mode"},{"event":"cmd_output","timestamp":1607098456,"output":"l.Blocks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :te"},{"event":"cmd_output","timestamp":1607098456,"output":"rminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks"},{"event":"cmd_output","timestamp":1607098456,"output":", task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:16.574 [info] Periodic from module Elixir.Block.Blocks."},{"event":"cmd_output","timestamp":1607098456,"output":"STMHandler.StoppingState with name Elixir.Block.Blocks.STMHandler.StoppingState :: period: 100 ms, m"},{"event":"cmd_output","timestamp":1607098456,"output":"etric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-StoppingState\"]}, recurring args: %{a"},{"event":"cmd_output","timestamp":1607098456,"output":"llowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks,"},{"event":"cmd_output","timestamp":1607098456,"output":" observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_"},{"event":"cmd_output","timestamp":1607098456,"output":"request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_s"},{"event":"cmd_output","timestamp":1607098456,"output":"upervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:16.574 [info] Periodic from module Elixir.Block.Tasks.STMHandle"},{"event":"cmd_output","timestamp":1607098456,"output":"r.PendingState with name Elixir.Block.Tasks.STMHandler.PendingState :: period: 100 ms, metric_name: "},{"event":"cmd_output","timestamp":1607098456,"output":"{\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingState\"]}, recurring args: %{allowed_states:"},{"event":"cmd_output","timestamp":1607098456,"output":" [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Tasks.Model.Tasks, observed_state: \""},{"event":"cmd_output","timestamp":1607098456,"output":"pending\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_a"},{"event":"cmd_output","timestamp":1607098456,"output":"t, :state, :recovery_count, :block_id, :build_request_id], schema: Block.Tasks.Model.Tasks, task_sup"},{"event":"cmd_output","timestamp":1607098456,"output":"ervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:16.574 [info] Periodic from module Elixir.Block.Tasks.STMHandler."},{"event":"cmd_output","timestamp":1607098456,"output":"RunningState with name Elixir.Block.Tasks.STMHandler.RunningState :: period: 100 ms, metric_name: {\""},{"event":"cmd_output","timestamp":1607098456,"output":"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: ["},{"event":"cmd_output","timestamp":1607098456,"output":"\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observ"},{"event":"cmd_output","timestamp":1607098456,"output":"ed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request,"},{"event":"cmd_output","timestamp":1607098456,"output":" :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor:"},{"event":"cmd_output","timestamp":1607098456,"output":" :skip}\n\u001b[0m\u001b[22m\n16:14:16.574 [info] Periodic from module Elixir.Block.Tasks.STMHandler.Stopping"},{"event":"cmd_output","timestamp":1607098456,"output":"State with name Elixir.Block.Tasks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.be"},{"event":"cmd_output","timestamp":1607098456,"output":"holder-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stop"},{"event":"cmd_output","timestamp":1607098456,"output":"ping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"stopp"},{"event":"cmd_output","timestamp":1607098456,"output":"ing\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :"},{"event":"cmd_output","timestamp":1607098456,"output":"state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098456,"output":"22m\n16:14:16.689 [info] ppl_id: 6eae1588-6ec9-4d76-8d27-a131478fe250, type: PplRequests, event: pe"},{"event":"cmd_output","timestamp":1607098456,"output":"rsisted source_args for pipeline: 6eae1588-6ec9-4d76-8d27-a131478fe250, origin: Elixir.Ppl.PplReques"},{"event":"cmd_output","timestamp":1607098456,"output":"ts.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:14:16.692 [info] ppl_id: 6eae1588"},{"event":"cmd_output","timestamp":1607098456,"output":"-6ec9-4d76-8d27-a131478fe250, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098456,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:16.708 [info] p"},{"event":"cmd_output","timestamp":1607098456,"output":"pl_id: 6eae1588-6ec9-4d76-8d27-a131478fe250, type: PplSubInits, state: regular_init, event: exit_sch"},{"event":"cmd_output","timestamp":1607098456,"output":"eduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098456,"output":"14:16.727 [info] ppl_id: 6eae1588-6ec9-4d76-8d27-a131478fe250, type: PplSubInits, state: done, resu"},{"event":"cmd_output","timestamp":1607098456,"output":"lt: failed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chan"},{"event":"cmd_output","timestamp":1607098456,"output":"ge/1(L90), \n\u001b[0m\u001b[22m\n16:14:16.735 [info] ppl_id: 6eae1588-6ec9-4d76-8d27-a131478fe250, type: Ppl"},{"event":"cmd_output","timestamp":1607098456,"output":"s, state: done, result: failed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM"},{"event":"cmd_output","timestamp":1607098456,"output":".Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test when job limit is longer than limit of its block"},{"event":"cmd_output","timestamp":1607098456,"output":" => pipeline is malformed (278.7ms)\u001b[0m\n * test when block limit is longer than deafult job limit "},{"event":"cmd_output","timestamp":1607098456,"output":"=> pipeline is malformed\u001b[22m\n16:14:16.835 [info] Request: 'run: %{:file_name => \"/exec_time_limit"},{"event":"cmd_output","timestamp":1607098456,"output":"/block_limit_over_default_job.yml\", :repo_name => \"23_initializing_test\", \"branch_id\" => \"a26ef447-4"},{"event":"cmd_output","timestamp":1607098456,"output":"202-462f-929f-51984d38c474\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469\", \"file_name\" =>"},{"event":"cmd_output","timestamp":1607098456,"output":" \"semaphore.yml\", \"hook_id\" => \"c1e44032-364b-11eb-8894-5254005464e2\", \"label\" => \"master\", \"organiz"},{"event":"cmd_output","timestamp":1607098456,"output":"ation_id\" => \"d0fbae26-05e2-4a05-8c42-2cb1c578b391\", \"owner\" => \"rt\", \"project_id\" => \"3522611f-2c7a"},{"event":"cmd_output","timestamp":1607098456,"output":"-426f-8e91-01ec7455a250\", \"repo_name\" => \"2_basic\", \"request_token\" => \"c1e438d0-364b-11eb-8d15-5254"},{"event":"cmd_output","timestamp":1607098456,"output":"005464e2\", \"requester_id\" => \"c2d1ec80-fe85-4fab-b784-2c86e0c3e32a\", \"service\" => \"local\", \"suppress"},{"event":"cmd_output","timestamp":1607098456,"output":"ed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"2dff1777-0458-4d09-934f-5fae8e8c1fc"},{"event":"cmd_output","timestamp":1607098456,"output":"1\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:14:16.838 [info] ppl_id: c414fe24-fb3e-4d02-9a79-"},{"event":"cmd_output","timestamp":1607098456,"output":"7f2fe7350fd5, type: PplRequests, event: persisted schedule request with request_token: c1e438d0-364b"},{"event":"cmd_output","timestamp":1607098456,"output":"-11eb-8d15-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2("},{"event":"cmd_output","timestamp":1607098456,"output":"L55), \n\u001b[0m\u001b[22m\n16:14:16.840 [info] ppl_id: c414fe24-fb3e-4d02-9a79-7f2fe7350fd5, type: Ppls, st"},{"event":"cmd_output","timestamp":1607098456,"output":"ate: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries"},{"event":"cmd_output","timestamp":1607098456,"output":".process_response/2(L124), \n\u001b[0m\u001b[22m\n16:14:16.842 [info] Project 3522611f-2c7a-426f-8e91-01ec745"},{"event":"cmd_output","timestamp":1607098456,"output":"5a250 and branch masterlatest_wf details updated: \"wf_id: 2dff1777-0458-4d09-934f-5fae8e8c1fc1, wf_n"},{"event":"cmd_output","timestamp":1607098456,"output":"umber: 1\"\n\u001b[0m\u001b[22m\n16:14:16.844 [info] Persisted ppl_sub_init for pipeline with ppl_id: c414fe24"},{"event":"cmd_output","timestamp":1607098456,"output":"-fb3e-4d02-9a79-7f2fe7350fd5: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:lo"},{"event":"cmd_output","timestamp":1607098456,"output":"aded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 330, in_scheduling: f"},{"event":"cmd_output","timestamp":1607098456,"output":"alse, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:14:16.842968], pipeline_requests: #Ecto.As"},{"event":"cmd_output","timestamp":1607098456,"output":"sociation.NotLoaded, ppl_id: \"c414fe24-fb3e-4d02-9a79-"},{"event":"cmd_output","timestamp":1607098456,"output":"7f2fe7350fd5\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_reque"},{"event":"cmd_output","timestamp":1607098456,"output":"st: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:14:16.842973]}\n\u001b[0m\u001b[22m\n16:14:"},{"event":"cmd_output","timestamp":1607098456,"output":"16.846 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingState with name Elixir.Pp"},{"event":"cmd_output","timestamp":1607098456,"output":"l.Ppls.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-P"},{"event":"cmd_output","timestamp":1607098456,"output":"pls-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"pending\", \""},{"event":"cmd_output","timestamp":1607098456,"output":"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", pub"},{"event":"cmd_output","timestamp":1607098456,"output":"lisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoR"},{"event":"cmd_output","timestamp":1607098456,"output":"epo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], s"},{"event":"cmd_output","timestamp":1607098456,"output":"chema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:16.847 [info] Periodic from m"},{"event":"cmd_output","timestamp":1607098456,"output":"odule Elixir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler.PendingState :: p"},{"event":"cmd_output","timestamp":1607098456,"output":"eriod: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurrin"},{"event":"cmd_output","timestamp":1607098456,"output":"g args: %{allowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_sec: 0, initial_qu"},{"event":"cmd_output","timestamp":1607098456,"output":"ery: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls"},{"event":"cmd_output","timestamp":1607098456,"output":".STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_"},{"event":"cmd_output","timestamp":1607098456,"output":"at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTa"},{"event":"cmd_output","timestamp":1607098456,"output":"skSupervisor}\n\u001b[0m\u001b[22m\n16:14:16.848 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.Queui"},{"event":"cmd_output","timestamp":1607098456,"output":"ngState with name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, metric_name: {\"Ppl.beho"},{"event":"cmd_output","timestamp":1607098456,"output":"lder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{allowed_states: [\"queuing\", "},{"event":"cmd_output","timestamp":1607098456,"output":"\"running\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"queui"},{"event":"cmd_output","timestamp":1607098456,"output":"ng\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.args/0>, repo: Ppl.Ec"},{"event":"cmd_output","timestamp":1607098456,"output":"toRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id]"},{"event":"cmd_output","timestamp":1607098456,"output":", schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:16.848 [info] Periodic fro"},{"event":"cmd_output","timestamp":1607098456,"output":"m module Elixir.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHandler.RunningState :"},{"event":"cmd_output","timestamp":1607098456,"output":": period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recur"},{"event":"cmd_output","timestamp":1607098456,"output":"ring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: P"},{"event":"cmd_output","timestamp":1607098456,"output":"pl.Ppls.Model.Ppls, observed_state: \"running\", publisher_cb: #Function<0.74670282/1 in Ppl.Ppls.STMH"},{"event":"cmd_output","timestamp":1607098456,"output":"andler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :"},{"event":"cmd_output","timestamp":1607098456,"output":"state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSup"},{"event":"cmd_output","timestamp":1607098456,"output":"ervisor}\n\u001b[0m\u001b[22m\n16:14:16.850 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.StoppingSt"},{"event":"cmd_output","timestamp":1607098456,"output":"ate with name Elixir.Ppl.Ppls.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholde"},{"event":"cmd_output","timestamp":1607098456,"output":"r-wake_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \""},{"event":"cmd_output","timestamp":1607098456,"output":"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"stopping\", publis"},{"event":"cmd_output","timestamp":1607098456,"output":"her_cb: #Function<0.71803493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, ret"},{"event":"cmd_output","timestamp":1607098456,"output":"urning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: P"},{"event":"cmd_output","timestamp":1607098456,"output":"pl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:16.850 [info] Periodic from module El"},{"event":"cmd_output","timestamp":1607098456,"output":"ixir.Ppl.PplSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHandler.CreatedStat"},{"event":"cmd_output","timestamp":1607098456,"output":"e :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState"},{"event":"cmd_output","timestamp":1607098456,"output":"\"]}, recurring args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl"},{"event":"cmd_output","timestamp":1607098456,"output":".PplSubInits.Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, "},{"event":"cmd_output","timestamp":1607098456,"output":"returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema"},{"event":"cmd_output","timestamp":1607098456,"output":": Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:16.850 [info] Period"},{"event":"cmd_output","timestamp":1607098456,"output":"ic from module Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl.PplSubInits.STMH"},{"event":"cmd_output","timestamp":1607098456,"output":"andler.FetchingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMH"},{"event":"cmd_output","timestamp":1607098456,"output":"andler-FetchingState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"done\"], "},{"event":"cmd_output","timestamp":1607098456,"output":"cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fetching\", "},{"event":"cmd_output","timestamp":1607098456,"output":"publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :"},{"event":"cmd_output","timestamp":1607098456,"output":"result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip"},{"event":"cmd_output","timestamp":1607098456,"output":"}\n\u001b[0m\u001b[22m\n16:14:16.851 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.Compilatio"},{"event":"cmd_output","timestamp":1607098456,"output":"nState with name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 100 ms, metric_name: "},{"event":"cmd_output","timestamp":1607098456,"output":"{\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurring args: %{allowed"},{"event":"cmd_output","timestamp":1607098456,"output":"_states: [\"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: P"},{"event":"cmd_output","timestamp":1607098456,"output":"pl.PplSubInits.Model.PplSubInits, observed_state: \"compilation\", publisher_cb: :skip, repo: Ppl.Ecto"},{"event":"cmd_output","timestamp":1607098456,"output":"Repo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], "},{"event":"cmd_output","timestamp":1607098456,"output":"schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:16.851 [info] "},{"event":"cmd_output","timestamp":1607098456,"output":"Periodic from module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with name Elixir.Ppl.PplSubI"},{"event":"cmd_output","timestamp":1607098456,"output":"nits.STMHandler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplS"},{"event":"cmd_output","timestamp":1607098456,"output":"ubInits-STMHandler-RegularInitState\"]}, recurring args: %{allowed_states: [\"done\"], cooling_time_sec"},{"event":"cmd_output","timestamp":1607098456,"output":": 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_init\", publisher_cb:"},{"event":"cmd_output","timestamp":1607098456,"output":" :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :reco"},{"event":"cmd_output","timestamp":1607098456,"output":"very_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098456,"output":"\n16:14:16.851 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.InitializingState with na"},{"event":"cmd_output","timestamp":1607098456,"output":"me Elixir.Ppl.PplBlocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-"},{"event":"cmd_output","timestamp":1607098456,"output":"wake_up\", [\"Ppl-PplBlocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initi"},{"event":"cmd_output","timestamp":1607098456,"output":"alizing\", \"waiting\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, obs"},{"event":"cmd_output","timestamp":1607098456,"output":"erved_state: \"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_re"},{"event":"cmd_output","timestamp":1607098456,"output":"quest, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks."},{"event":"cmd_output","timestamp":1607098456,"output":"Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:16.851 [info] Periodic from module Elixi"},{"event":"cmd_output","timestamp":1607098456,"output":"r.Ppl.PplBlocks.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler.WaitingState :: pe"},{"event":"cmd_output","timestamp":1607098456,"output":"riod: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, rec"},{"event":"cmd_output","timestamp":1607098456,"output":"urring args: %{allowed_states: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: P"},{"event":"cmd_output","timestamp":1607098456,"output":"pl.PplBlocks.Model.PplBlocks, observed_state: \"waiting\", publisher_cb: #Function<0.8975022/1 in Ppl."},{"event":"cmd_output","timestamp":1607098456,"output":"PplBlocks.STMHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, "},{"event":"cmd_output","timestamp":1607098456,"output":":updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.P"},{"event":"cmd_output","timestamp":1607098456,"output":"plBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:16.851 [info] Periodic from module Elixir.Ppl.P"},{"event":"cmd_output","timestamp":1607098456,"output":"plBlocks.STMHandler.RunningState with name Elixir.Ppl.PplBlocks.STMHandler.RunningState :: period: 1"},{"event":"cmd_output","timestamp":1607098456,"output":"000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, recurring "},{"event":"cmd_output","timestamp":1607098456,"output":"args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Pp"},{"event":"cmd_output","timestamp":1607098456,"output":"lBlocks.Model.PplBlocks, observed_state: \"running\", publisher_cb: #Function<0.28166834/1 in Ppl.PplB"},{"event":"cmd_output","timestamp":1607098456,"output":"locks.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :upd"},{"event":"cmd_output","timestamp":1607098456,"output":"ated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks."},{"event":"cmd_output","timestamp":1607098456,"output":"Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:16.851 [info] Periodic from module Elixi"},{"event":"cmd_output","timestamp":1607098456,"output":"r.Ppl.PplBlocks.STMHandler.StoppingState with name Elixir.Ppl.PplBlocks.STMHandler.StoppingState :: "},{"event":"cmd_output","timestamp":1607098456,"output":"period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, "},{"event":"cmd_output","timestamp":1607098456,"output":"recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098456,"output":"Blocks.Model.PplBlocks, observed_state: \"stopping\", publisher_cb: #Function<0.104215991/1 in Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098456,"output":"Blocks.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :u"},{"event":"cmd_output","timestamp":1607098456,"output":"pdated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlock"},{"event":"cmd_output","timestamp":1607098456,"output":"s.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:16.851 [info] Periodic from module Eli"},{"event":"cmd_output","timestamp":1607098456,"output":"xir.Block.Blocks.STMHandler.InitializingState with name Elixir.Block.Blocks.STMHandler.InitializingS"},{"event":"cmd_output","timestamp":1607098456,"output":"tate :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-Initializing"},{"event":"cmd_output","timestamp":1607098456,"output":"State\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query:"},{"event":"cmd_output","timestamp":1607098456,"output":" Block.Blocks.Model.Blocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Block.EctoRep"},{"event":"cmd_output","timestamp":1607098456,"output":"o, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Bl"},{"event":"cmd_output","timestamp":1607098456,"output":"ock.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:16.851 [info] Periodic from modu"},{"event":"cmd_output","timestamp":1607098456,"output":"le Elixir.Block.Blocks.STMHandler.RunningState with name Elixir.Block.Blocks.STMHandler.RunningState"},{"event":"cmd_output","timestamp":1607098456,"output":" :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-RunningState\"]},"},{"event":"cmd_output","timestamp":1607098456,"output":" recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_qu"},{"event":"cmd_output","timestamp":1607098456,"output":"ery: Block.Blocks.Model.Blocks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo"},{"event":"cmd_output","timestamp":1607098456,"output":", returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Blo"},{"event":"cmd_output","timestamp":1607098456,"output":"ck.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:16.851 [info] Periodic from modul"},{"event":"cmd_output","timestamp":1607098456,"output":"e Elixir.Block.Blocks.STMHandler.StoppingState with name Elixir.Block.Blocks.STMHandler.StoppingStat"},{"event":"cmd_output","timestamp":1607098456,"output":"e :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-StoppingState\"]"},{"event":"cmd_output","timestamp":1607098456,"output":"}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Bloc"},{"event":"cmd_output","timestamp":1607098456,"output":"k.Blocks.Model.Blocks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, return"},{"event":"cmd_output","timestamp":1607098456,"output":"ing: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Block"},{"event":"cmd_output","timestamp":1607098456,"output":"s.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:16.851 [info] Periodic from module Elixir"},{"event":"cmd_output","timestamp":1607098456,"output":".Block.Tasks.STMHandler.PendingState with name Elixir.Block.Tasks.STMHandler.PendingState :: period:"},{"event":"cmd_output","timestamp":1607098456,"output":" 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingState\"]}, recurring a"},{"event":"cmd_output","timestamp":1607098456,"output":"rgs: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Tasks.Model.Ta"},{"event":"cmd_output","timestamp":1607098456,"output":"sks, observed_state: \"pending\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :termina"},{"event":"cmd_output","timestamp":1607098456,"output":"te_request, :updated_at, :state, :recovery_count, :block_id, :build_request_id], schema: Block.Tasks"},{"event":"cmd_output","timestamp":1607098456,"output":".Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:16.851 [info] Periodic from module Elixir.B"},{"event":"cmd_output","timestamp":1607098456,"output":"lock.Tasks.STMHandler.RunningState with name Elixir.Block.Tasks.STMHandler.RunningState :: period: 1"},{"event":"cmd_output","timestamp":1607098456,"output":"00 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningState\"]}, recurring arg"},{"event":"cmd_output","timestamp":1607098456,"output":"s: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tas"},{"event":"cmd_output","timestamp":1607098456,"output":"ks.Model.Tasks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:i"},{"event":"cmd_output","timestamp":1607098456,"output":"d, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.T"},{"event":"cmd_output","timestamp":1607098456,"output":"asks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:16.852 [info] Periodic from module Elixir.Block.Tas"},{"event":"cmd_output","timestamp":1607098456,"output":"ks.STMHandler.StoppingState with name Elixir.Block.Tasks.STMHandler.StoppingState :: period: 100 ms,"},{"event":"cmd_output","timestamp":1607098456,"output":" metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]}, recurring args: %{"},{"event":"cmd_output","timestamp":1607098456,"output":"allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, "},{"event":"cmd_output","timestamp":1607098456,"output":"observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_r"},{"event":"cmd_output","timestamp":1607098456,"output":"equest, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supe"},{"event":"cmd_output","timestamp":1607098456,"output":"rvisor: :skip}\n\u001b[0m\u001b[22m\n16:14:16.963 [info] ppl_id: c414fe24-fb3e-4d02-9a79-7f2fe7350fd5, type: "},{"event":"cmd_output","timestamp":1607098456,"output":"PplRequests, event: persisted source_args for pipeline: c414fe24-fb3e-4d02-9a79-7f2fe7350fd5, origin"},{"event":"cmd_output","timestamp":1607098456,"output":": Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:14:16.965 [i"},{"event":"cmd_output","timestamp":1607098456,"output":"nfo] ppl_id: c414fe24-fb3e-4d02-9a79-7f2fe7350fd5, type: PplSubInits, state: fetching, event: exit_"},{"event":"cmd_output","timestamp":1607098456,"output":"scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098456,"output":"16:14:16.988 [info] ppl_id: c414fe24-fb3e-4d02-9a79-7f2fe7350fd5, type: PplSubInits, state: regular"},{"event":"cmd_output","timestamp":1607098456,"output":"_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1("},{"event":"cmd_output","timestamp":1607098457,"output":"L90), \n\u001b[0m\u001b[22m\n16:14:17.003 [info] ppl_id: c414fe24-fb3e-4d02-9a79-7f2fe7350fd5, type: PplSubIn"},{"event":"cmd_output","timestamp":1607098457,"output":"its, state: done, result: failed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.S"},{"event":"cmd_output","timestamp":1607098457,"output":"TM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:17.009 [info] ppl_id: c414fe24-fb3e-4d02-9a79-7"},{"event":"cmd_output","timestamp":1607098457,"output":"f2fe7350fd5, type: Ppls, state: done, result: failed, event: exit_scheduling, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098457,"output":"gin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test when block limit is longer"},{"event":"cmd_output","timestamp":1607098457,"output":" than deafult job limit => pipeline is malformed (270.9ms)\u001b[0m\n * test when block limit is longer "},{"event":"cmd_output","timestamp":1607098457,"output":"than pipeline limit => pipeline is malformed\u001b[22m\n16:14:17.102 [info] Request: 'run: %{:file_name "},{"event":"cmd_output","timestamp":1607098457,"output":"=> \"/exec_time_limit/block_longer_than_ppl.yml\", :repo_name => \"23_initializing_test\", \"branch_id\" ="},{"event":"cmd_output","timestamp":1607098457,"output":"> \"cc45d0b7-c30b-4b5a-b7c6-7cacca6e784d\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469\", \""},{"event":"cmd_output","timestamp":1607098457,"output":"file_name\" => \"semaphore.yml\", \"hook_id\" => \"c20d072e-364b-11eb-a463-5254005464e2\", \"label\" => \"mast"},{"event":"cmd_output","timestamp":1607098457,"output":"er\", \"organization_id\" => \"f0e658ad-8d18-4bcf-b43c-f58e0297b607\", \"owner\" => \"rt\", \"project_id\" => \""},{"event":"cmd_output","timestamp":1607098457,"output":"ee3735c3-0cd4-4bc7-b5a0-d94cecd51b25\", \"repo_name\" => \"2_basic\", \"request_token\" => \"c20cff5e-364b-1"},{"event":"cmd_output","timestamp":1607098457,"output":"1eb-bf02-5254005464e2\", \"requester_id\" => \"cd5077c1-3d9d-4a06-a639-04a2e32f2d16\", \"service\" => \"loca"},{"event":"cmd_output","timestamp":1607098457,"output":"l\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"bbf70288-c0d7-40c5-a17"},{"event":"cmd_output","timestamp":1607098457,"output":"0-1cd0dad2368f\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:14:17.107 [info] ppl_id: 6300422c-76"},{"event":"cmd_output","timestamp":1607098457,"output":"45-4fde-9416-171942c46d50, type: PplRequests, event: persisted schedule request with request_token: "},{"event":"cmd_output","timestamp":1607098457,"output":"c20cff5e-364b-11eb-bf02-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.proces"},{"event":"cmd_output","timestamp":1607098457,"output":"s_response/2(L55), \n\u001b[0m\u001b[22m\n16:14:17.109 [info] ppl_id: 6300422c-7645-4fde-9416-171942c46d50, t"},{"event":"cmd_output","timestamp":1607098457,"output":"ype: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Mode"},{"event":"cmd_output","timestamp":1607098457,"output":"l.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:14:17.113 [info] Project ee3735c3-0cd4-4bc7"},{"event":"cmd_output","timestamp":1607098457,"output":"-b5a0-d94cecd51b25 and branch masterlatest_wf details updated: \"wf_id: bbf70288-c0d7-40c5-a170-1cd0d"},{"event":"cmd_output","timestamp":1607098457,"output":"ad2368f, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:14:17.114 [info] Persisted ppl_sub_init for pipeline with ppl"},{"event":"cmd_output","timestamp":1607098457,"output":"_id: 6300422c-7645-4fde-9416-171942c46d50: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema"},{"event":"cmd_output","timestamp":1607098457,"output":".Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 331, in_"},{"event":"cmd_output","timestamp":1607098457,"output":"scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:14:17.113251], pipeline_reque"},{"event":"cmd_output","timestamp":1607098457,"output":"sts: #Ecto.Association.NotLoaded, ppl_id: \"6300422c-76"},{"event":"cmd_output","timestamp":1607098457,"output":"45-4fde-9416-171942c46d50\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", te"},{"event":"cmd_output","timestamp":1607098457,"output":"rminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:14:17.113257]}\n\u001b[0m"},{"event":"cmd_output","timestamp":1607098457,"output":"\u001b[22m\n16:14:17.126 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingState with n"},{"event":"cmd_output","timestamp":1607098457,"output":"ame Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake"},{"event":"cmd_output","timestamp":1607098457,"output":"_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\","},{"event":"cmd_output","timestamp":1607098457,"output":" \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"initi"},{"event":"cmd_output","timestamp":1607098457,"output":"alizing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, re"},{"event":"cmd_output","timestamp":1607098457,"output":"po: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count"},{"event":"cmd_output","timestamp":1607098457,"output":", :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:17.126 [info] Pe"},{"event":"cmd_output","timestamp":1607098457,"output":"riodic from module Elixir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler.Pend"},{"event":"cmd_output","timestamp":1607098457,"output":"ingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState"},{"event":"cmd_output","timestamp":1607098457,"output":"\"]}, recurring args: %{allowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_sec: "},{"event":"cmd_output","timestamp":1607098457,"output":"0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publisher_cb: #Function<0.8493005/"},{"event":"cmd_output","timestamp":1607098457,"output":"1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_reque"},{"event":"cmd_output","timestamp":1607098457,"output":"st, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_super"},{"event":"cmd_output","timestamp":1607098457,"output":"visor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:14:17.126 [info] Periodic from module Elixir.Ppl.Ppls.STM"},{"event":"cmd_output","timestamp":1607098457,"output":"Handler.QueuingState with name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, metric_nam"},{"event":"cmd_output","timestamp":1607098457,"output":"e: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{allowed_states:"},{"event":"cmd_output","timestamp":1607098457,"output":" [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_"},{"event":"cmd_output","timestamp":1607098457,"output":"state: \"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.args/0>,"},{"event":"cmd_output","timestamp":1607098457,"output":" repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_co"},{"event":"cmd_output","timestamp":1607098457,"output":"unt, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:17.126 [info] "},{"event":"cmd_output","timestamp":1607098457,"output":" Periodic from module Elixir.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHandler.R"},{"event":"cmd_output","timestamp":1607098457,"output":"unningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-RunningSt"},{"event":"cmd_output","timestamp":1607098457,"output":"ate\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, ini"},{"event":"cmd_output","timestamp":1607098457,"output":"tial_query: Ppl.Ppls.Model.Ppls, observed_state: \"running\", publisher_cb: #Function<0.74670282/1 in "},{"event":"cmd_output","timestamp":1607098457,"output":"Ppl.Ppls.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :"},{"event":"cmd_output","timestamp":1607098457,"output":"updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor"},{"event":"cmd_output","timestamp":1607098457,"output":": PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:14:17.126 [info] Periodic from module Elixir.Ppl.Ppls.STMHandl"},{"event":"cmd_output","timestamp":1607098457,"output":"er.StoppingState with name Elixir.Ppl.Ppls.STMHandler.StoppingState :: period: 100 ms, metric_name: "},{"event":"cmd_output","timestamp":1607098457,"output":"{\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: ["},{"event":"cmd_output","timestamp":1607098457,"output":"\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"stop"},{"event":"cmd_output","timestamp":1607098457,"output":"ping\", publisher_cb: #Function<0.71803493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, repo: Ppl."},{"event":"cmd_output","timestamp":1607098457,"output":"EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_i"},{"event":"cmd_output","timestamp":1607098457,"output":"d], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:17.126 [info] Periodic f"},{"event":"cmd_output","timestamp":1607098457,"output":"rom module Elixir.Ppl.PplSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHandle"},{"event":"cmd_output","timestamp":1607098457,"output":"r.CreatedState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler"},{"event":"cmd_output","timestamp":1607098457,"output":"-CreatedState\"]}, recurring args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, initi"},{"event":"cmd_output","timestamp":1607098457,"output":"al_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip, repo: P"},{"event":"cmd_output","timestamp":1607098457,"output":"pl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :pp"},{"event":"cmd_output","timestamp":1607098457,"output":"l_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:17.126 ["},{"event":"cmd_output","timestamp":1607098457,"output":"info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098457,"output":"SubInits.STMHandler.FetchingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppl"},{"event":"cmd_output","timestamp":1607098457,"output":"SubInits-STMHandler-FetchingState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilatio"},{"event":"cmd_output","timestamp":1607098457,"output":"n\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state:"},{"event":"cmd_output","timestamp":1607098457,"output":" \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_"},{"event":"cmd_output","timestamp":1607098457,"output":"at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supe"},{"event":"cmd_output","timestamp":1607098457,"output":"rvisor: :skip}\n\u001b[0m\u001b[22m\n16:14:17.126 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandl"},{"event":"cmd_output","timestamp":1607098457,"output":"er.CompilationState with name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 100 ms, "},{"event":"cmd_output","timestamp":1607098457,"output":"metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurring ar"},{"event":"cmd_output","timestamp":1607098457,"output":"gs: %{allowed_states: [\"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2, ini"},{"event":"cmd_output","timestamp":1607098457,"output":"tial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"compilation\", publisher_cb: :skip, r"},{"event":"cmd_output","timestamp":1607098457,"output":"epo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_coun"},{"event":"cmd_output","timestamp":1607098457,"output":"t, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:17"},{"event":"cmd_output","timestamp":1607098457,"output":".127 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with name Elixi"},{"event":"cmd_output","timestamp":1607098457,"output":"r.Ppl.PplSubInits.STMHandler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up"},{"event":"cmd_output","timestamp":1607098457,"output":"\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurring args: %{allowed_states: [\"done\"], coo"},{"event":"cmd_output","timestamp":1607098457,"output":"ling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_init\", "},{"event":"cmd_output","timestamp":1607098457,"output":"publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :"},{"event":"cmd_output","timestamp":1607098457,"output":"result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip"},{"event":"cmd_output","timestamp":1607098457,"output":"}\n\u001b[0m\u001b[22m\n16:14:17.127 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.Initializing"},{"event":"cmd_output","timestamp":1607098457,"output":"State with name Elixir.Ppl.PplBlocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\""},{"event":"cmd_output","timestamp":1607098457,"output":"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_st"},{"event":"cmd_output","timestamp":1607098457,"output":"ates: [\"initializing\", \"waiting\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.P"},{"event":"cmd_output","timestamp":1607098457,"output":"plBlocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, "},{"event":"cmd_output","timestamp":1607098457,"output":":terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: P"},{"event":"cmd_output","timestamp":1607098457,"output":"pl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:17.127 [info] Periodic from"},{"event":"cmd_output","timestamp":1607098457,"output":" module Elixir.Ppl.PplBlocks.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler.Waiti"},{"event":"cmd_output","timestamp":1607098457,"output":"ngState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-Waiting"},{"event":"cmd_output","timestamp":1607098457,"output":"State\"]}, recurring args: %{allowed_states: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 0, ini"},{"event":"cmd_output","timestamp":1607098457,"output":"tial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"waiting\", publisher_cb: #Function<0.8975"},{"event":"cmd_output","timestamp":1607098457,"output":"022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :termin"},{"event":"cmd_output","timestamp":1607098457,"output":"ate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplB"},{"event":"cmd_output","timestamp":1607098457,"output":"locks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:17.127 [info] Periodic from module"},{"event":"cmd_output","timestamp":1607098457,"output":" Elixir.Ppl.PplBlocks.STMHandler.RunningState with name Elixir.Ppl.PplBlocks.STMHandler.RunningState"},{"event":"cmd_output","timestamp":1607098457,"output":" :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]"},{"event":"cmd_output","timestamp":1607098457,"output":"}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_"},{"event":"cmd_output","timestamp":1607098457,"output":"query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"running\", publisher_cb: #Function<0.28166834/"},{"event":"cmd_output","timestamp":1607098457,"output":"1 in Ppl.PplBlocks.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_"},{"event":"cmd_output","timestamp":1607098457,"output":"request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: P"},{"event":"cmd_output","timestamp":1607098457,"output":"pl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:17.128 [info] Periodic from"},{"event":"cmd_output","timestamp":1607098457,"output":" module Elixir.Ppl.PplBlocks.STMHandler.StoppingState with name Elixir.Ppl.PplBlocks.STMHandler.Stop"},{"event":"cmd_output","timestamp":1607098457,"output":"pingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-Stopp"},{"event":"cmd_output","timestamp":1607098457,"output":"ingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_q"},{"event":"cmd_output","timestamp":1607098457,"output":"uery: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"stopping\", publisher_cb: #Function<0.104215991"},{"event":"cmd_output","timestamp":1607098457,"output":"/1 in Ppl.PplBlocks.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminat"},{"event":"cmd_output","timestamp":1607098457,"output":"e_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema:"},{"event":"cmd_output","timestamp":1607098457,"output":" Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:17.128 [info] Periodic fr"},{"event":"cmd_output","timestamp":1607098457,"output":"om module Elixir.Block.Blocks.STMHandler.InitializingState with name Elixir.Block.Blocks.STMHandler."},{"event":"cmd_output","timestamp":1607098457,"output":"InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler"},{"event":"cmd_output","timestamp":1607098457,"output":"-InitializingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, i"},{"event":"cmd_output","timestamp":1607098457,"output":"nitial_query: Block.Blocks.Model.Blocks, observed_state: \"initializing\", publisher_cb: :skip, repo: "},{"event":"cmd_output","timestamp":1607098457,"output":"Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id"},{"event":"cmd_output","timestamp":1607098457,"output":"], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:17.129 [info] Perio"},{"event":"cmd_output","timestamp":1607098457,"output":"dic from module Elixir.Block.Blocks.STMHandler.RunningState with name Elixir.Block.Blocks.STMHandler"},{"event":"cmd_output","timestamp":1607098457,"output":".RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-Run"},{"event":"cmd_output","timestamp":1607098457,"output":"ningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -"},{"event":"cmd_output","timestamp":1607098457,"output":"2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"running\", publisher_cb: :skip, repo: B"},{"event":"cmd_output","timestamp":1607098457,"output":"lock.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id]"},{"event":"cmd_output","timestamp":1607098457,"output":", schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:17.129 [info] Period"},{"event":"cmd_output","timestamp":1607098457,"output":"ic from module Elixir.Block.Blocks.STMHandler.StoppingState with name Elixir.Block.Blocks.STMHandler"},{"event":"cmd_output","timestamp":1607098457,"output":".StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-St"},{"event":"cmd_output","timestamp":1607098457,"output":"oppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initia"},{"event":"cmd_output","timestamp":1607098457,"output":"l_query: Block.Blocks.Model.Blocks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.Ect"},{"event":"cmd_output","timestamp":1607098457,"output":"oRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema"},{"event":"cmd_output","timestamp":1607098457,"output":": Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:17.130 [info] Periodic from "},{"event":"cmd_output","timestamp":1607098457,"output":"module Elixir.Block.Tasks.STMHandler.PendingState with name Elixir.Block.Tasks.STMHandler.PendingSta"},{"event":"cmd_output","timestamp":1607098457,"output":"te :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingState\"]}"},{"event":"cmd_output","timestamp":1607098457,"output":", recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.T"},{"event":"cmd_output","timestamp":1607098457,"output":"asks.Model.Tasks, observed_state: \"pending\", publisher_cb: :skip, repo: Block.EctoRepo, returning: ["},{"event":"cmd_output","timestamp":1607098457,"output":":id, :terminate_request, :updated_at, :state, :recovery_count, :block_id, :build_request_id], schema"},{"event":"cmd_output","timestamp":1607098457,"output":": Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:17.130 [info] Periodic from mo"},{"event":"cmd_output","timestamp":1607098457,"output":"dule Elixir.Block.Tasks.STMHandler.RunningState with name Elixir.Block.Tasks.STMHandler.RunningState"},{"event":"cmd_output","timestamp":1607098457,"output":" :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningState\"]}, "},{"event":"cmd_output","timestamp":1607098457,"output":"recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_que"},{"event":"cmd_output","timestamp":1607098457,"output":"ry: Block.Tasks.Model.Tasks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, r"},{"event":"cmd_output","timestamp":1607098457,"output":"eturning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block."},{"event":"cmd_output","timestamp":1607098457,"output":"Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:17.131 [info] Periodic from module Eli"},{"event":"cmd_output","timestamp":1607098457,"output":"xir.Block.Tasks.STMHandler.StoppingState with name Elixir.Block.Tasks.STMHandler.StoppingState :: pe"},{"event":"cmd_output","timestamp":1607098457,"output":"riod: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]}, recur"},{"event":"cmd_output","timestamp":1607098457,"output":"ring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks."},{"event":"cmd_output","timestamp":1607098457,"output":"Model.Tasks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id,"},{"event":"cmd_output","timestamp":1607098457,"output":" :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tas"},{"event":"cmd_output","timestamp":1607098457,"output":"ks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:17.240 [info] ppl_id: 6300422c-7645-4fde-9416-171942c"},{"event":"cmd_output","timestamp":1607098457,"output":"46d50, type: PplRequests, event: persisted source_args for pipeline: 6300422c-7645-4fde-9416-171942c"},{"event":"cmd_output","timestamp":1607098457,"output":"46d50, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098457,"output":":14:17.242 [info] ppl_id: 6300422c-7645-4fde-9416-171942c46d50, type: PplSubInits, state: fetching,"},{"event":"cmd_output","timestamp":1607098457,"output":" event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), "},{"event":"cmd_output","timestamp":1607098457,"output":"\n\u001b[0m\u001b[22m\n16:14:17.259 [info] ppl_id: 6300422c-7645-4fde-9416-171942c46d50, type: PplSubInits, s"},{"event":"cmd_output","timestamp":1607098457,"output":"tate: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_st"},{"event":"cmd_output","timestamp":1607098457,"output":"ate_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:17.275 [info] ppl_id: 6300422c-7645-4fde-9416-171942c46d50, t"},{"event":"cmd_output","timestamp":1607098457,"output":"ype: PplSubInits, state: done, result: failed, event: exit_scheduling, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098457,"output":"ixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:17.287 [info] ppl_id: 6300422c-764"},{"event":"cmd_output","timestamp":1607098457,"output":"5-4fde-9416-171942c46d50, type: Ppls, state: done, result: failed, event: exit_scheduling, recovery_"},{"event":"cmd_output","timestamp":1607098457,"output":"count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test when block li"},{"event":"cmd_output","timestamp":1607098457,"output":"mit is longer than pipeline limit => pipeline is malformed (278.9ms)\u001b[0m\n * test when job limit is"},{"event":"cmd_output","timestamp":1607098457,"output":" longer than pipeline limit => pipeline is malformed\u001b[22m\n16:14:17.379 [info] Request: 'run: %{:fi"},{"event":"cmd_output","timestamp":1607098457,"output":"le_name => \"/exec_time_limit/job_longer_than_ppl.yml\", :repo_name => \"23_initializing_test\", \"branch"},{"event":"cmd_output","timestamp":1607098457,"output":"_id\" => \"b2bd8425-54dd-4cfa-80a1-78a04fcce86a\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a44"},{"event":"cmd_output","timestamp":1607098457,"output":"69\", \"file_name\" => \"semaphore.yml\", \"hook_id\" => \"c2375740-364b-11eb-9fa8-5254005464e2\", \"label\" =>"},{"event":"cmd_output","timestamp":1607098457,"output":" \"master\", \"organization_id\" => \"70e14edd-2261-4e6d-a6c3-9b5ed6b2657f\", \"owner\" => \"rt\", \"project_id"},{"event":"cmd_output","timestamp":1607098457,"output":"\" => \"c03a5862-c33c-4532-b13f-730675392816\", \"repo_name\" => \"2_basic\", \"request_token\" => \"c237499e-"},{"event":"cmd_output","timestamp":1607098457,"output":"364b-11eb-8ce7-5254005464e2\", \"requester_id\" => \"0bd20ed6-c43b-407a-aa33-4c54f1054496\", \"service\" =>"},{"event":"cmd_output","timestamp":1607098457,"output":" \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"a7328518-0dbd-48"},{"event":"cmd_output","timestamp":1607098457,"output":"9b-9bff-b0b9fc68ed85\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:14:17.382 [info] ppl_id: 9067c"},{"event":"cmd_output","timestamp":1607098457,"output":"bb6-636f-4714-9280-2abfb60ef9af, type: PplRequests, event: persisted schedule request with request_t"},{"event":"cmd_output","timestamp":1607098457,"output":"oken: c237499e-364b-11eb-8ce7-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries."},{"event":"cmd_output","timestamp":1607098457,"output":"process_response/2(L55), \n\u001b[0m\u001b[22m\n16:14:17.384 [info] ppl_id: 9067cbb6-636f-4714-9280-2abfb60ef"},{"event":"cmd_output","timestamp":1607098457,"output":"9af, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098457,"output":"s.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:14:17.388 [info] Project c03a5862-c33"},{"event":"cmd_output","timestamp":1607098457,"output":"c-4532-b13f-730675392816 and branch masterlatest_wf details updated: \"wf_id: a7328518-0dbd-489b-9bff"},{"event":"cmd_output","timestamp":1607098457,"output":"-b0b9fc68ed85, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:14:17.389 [info] Persisted ppl_sub_init for pipeline wi"},{"event":"cmd_output","timestamp":1607098457,"output":"th ppl_id: 9067cbb6-636f-4714-9280-2abfb60ef9af: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto."},{"event":"cmd_output","timestamp":1607098457,"output":"Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 33"},{"event":"cmd_output","timestamp":1607098457,"output":"2, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:14:17.388139], pipeline"},{"event":"cmd_output","timestamp":1607098457,"output":"_requests: #Ecto.Association.NotLoaded, ppl_id: \"9067c"},{"event":"cmd_output","timestamp":1607098457,"output":"bb6-636f-4714-9280-2abfb60ef9af\", recovery_count: 0, result: nil, result_reason: nil, state: \"create"},{"event":"cmd_output","timestamp":1607098457,"output":"d\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:14:17.388145]}"},{"event":"cmd_output","timestamp":1607098457,"output":"\n\u001b[0m\u001b[22m\n16:14:17.392 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingState "},{"event":"cmd_output","timestamp":1607098457,"output":"with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholde"},{"event":"cmd_output","timestamp":1607098457,"output":"r-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initiali"},{"event":"cmd_output","timestamp":1607098457,"output":"zing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: "},{"event":"cmd_output","timestamp":1607098457,"output":"\"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/"},{"event":"cmd_output","timestamp":1607098457,"output":"0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery"},{"event":"cmd_output","timestamp":1607098457,"output":"_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:17.393 [inf"},{"event":"cmd_output","timestamp":1607098457,"output":"o] Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandle"},{"event":"cmd_output","timestamp":1607098457,"output":"r.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Pendin"},{"event":"cmd_output","timestamp":1607098457,"output":"gState\"]}, recurring args: %{allowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time"},{"event":"cmd_output","timestamp":1607098457,"output":"_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publisher_cb: #Function<0.84"},{"event":"cmd_output","timestamp":1607098457,"output":"93005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate"},{"event":"cmd_output","timestamp":1607098457,"output":"_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task"},{"event":"cmd_output","timestamp":1607098457,"output":"_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:14:17.394 [info] Periodic from module Elixir.Ppl.Pp"},{"event":"cmd_output","timestamp":1607098457,"output":"ls.STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, metr"},{"event":"cmd_output","timestamp":1607098457,"output":"ic_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{allowed_s"},{"event":"cmd_output","timestamp":1607098457,"output":"tates: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, obs"},{"event":"cmd_output","timestamp":1607098457,"output":"erved_state: \"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.ar"},{"event":"cmd_output","timestamp":1607098457,"output":"gs/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recov"},{"event":"cmd_output","timestamp":1607098457,"output":"ery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:17.394 ["},{"event":"cmd_output","timestamp":1607098457,"output":"info] Periodic from module Elixir.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHan"},{"event":"cmd_output","timestamp":1607098457,"output":"dler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Run"},{"event":"cmd_output","timestamp":1607098457,"output":"ningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -"},{"event":"cmd_output","timestamp":1607098457,"output":"2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"running\", publisher_cb: #Function<0.74670282"},{"event":"cmd_output","timestamp":1607098457,"output":"/1 in Ppl.Ppls.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_requ"},{"event":"cmd_output","timestamp":1607098457,"output":"est, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supe"},{"event":"cmd_output","timestamp":1607098457,"output":"rvisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:14:17.394 [info] Periodic from module Elixir.Ppl.Ppls.ST"},{"event":"cmd_output","timestamp":1607098457,"output":"MHandler.StoppingState with name Elixir.Ppl.Ppls.STMHandler.StoppingState :: period: 100 ms, metric_"},{"event":"cmd_output","timestamp":1607098457,"output":"name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring args: %{allowed_sta"},{"event":"cmd_output","timestamp":1607098457,"output":"tes: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state:"},{"event":"cmd_output","timestamp":1607098457,"output":" \"stopping\", publisher_cb: #Function<0.71803493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, repo"},{"event":"cmd_output","timestamp":1607098457,"output":": Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, "},{"event":"cmd_output","timestamp":1607098457,"output":":ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:17.394 [info] Peri"},{"event":"cmd_output","timestamp":1607098457,"output":"odic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STM"},{"event":"cmd_output","timestamp":1607098457,"output":"Handler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMH"},{"event":"cmd_output","timestamp":1607098457,"output":"andler-CreatedState\"]}, recurring args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0,"},{"event":"cmd_output","timestamp":1607098457,"output":" initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip, r"},{"event":"cmd_output","timestamp":1607098457,"output":"epo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_coun"},{"event":"cmd_output","timestamp":1607098457,"output":"t, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:17"},{"event":"cmd_output","timestamp":1607098457,"output":".394 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.P"},{"event":"cmd_output","timestamp":1607098457,"output":"pl.PplSubInits.STMHandler.FetchingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"P"},{"event":"cmd_output","timestamp":1607098457,"output":"pl-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"comp"},{"event":"cmd_output","timestamp":1607098457,"output":"ilation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_"},{"event":"cmd_output","timestamp":1607098457,"output":"state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :up"},{"event":"cmd_output","timestamp":1607098457,"output":"dated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, tas"},{"event":"cmd_output","timestamp":1607098457,"output":"k_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:17.394 [info] Periodic from module Elixir.Ppl.PplSubInits.ST"},{"event":"cmd_output","timestamp":1607098457,"output":"MHandler.CompilationState with name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 10"},{"event":"cmd_output","timestamp":1607098457,"output":"0 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurr"},{"event":"cmd_output","timestamp":1607098457,"output":"ing args: %{allowed_states: [\"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -"},{"event":"cmd_output","timestamp":1607098457,"output":"2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"compilation\", publisher_cb: :s"},{"event":"cmd_output","timestamp":1607098457,"output":"kip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recover"},{"event":"cmd_output","timestamp":1607098457,"output":"y_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098457,"output":":14:17.394 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with name"},{"event":"cmd_output","timestamp":1607098457,"output":" Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-w"},{"event":"cmd_output","timestamp":1607098457,"output":"ake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurring args: %{allowed_states: [\"done\""},{"event":"cmd_output","timestamp":1607098457,"output":"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_i"},{"event":"cmd_output","timestamp":1607098457,"output":"nit\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :st"},{"event":"cmd_output","timestamp":1607098457,"output":"ate, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor:"},{"event":"cmd_output","timestamp":1607098457,"output":" :skip}\n\u001b[0m\u001b[22m\n16:14:17.394 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.Initia"},{"event":"cmd_output","timestamp":1607098457,"output":"lizingState with name Elixir.Ppl.PplBlocks.STMHandler.InitializingState :: period: 100 ms, metric_na"},{"event":"cmd_output","timestamp":1607098457,"output":"me: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-InitializingState\"]}, recurring args: %{allo"},{"event":"cmd_output","timestamp":1607098457,"output":"wed_states: [\"initializing\", \"waiting\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.M"},{"event":"cmd_output","timestamp":1607098457,"output":"odel.PplBlocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: "},{"event":"cmd_output","timestamp":1607098457,"output":"[:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], sch"},{"event":"cmd_output","timestamp":1607098457,"output":"ema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:17.395 [info] Periodi"},{"event":"cmd_output","timestamp":1607098457,"output":"c from module Elixir.Ppl.PplBlocks.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler"},{"event":"cmd_output","timestamp":1607098457,"output":".WaitingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-W"},{"event":"cmd_output","timestamp":1607098457,"output":"aitingState\"]}, recurring args: %{allowed_states: [\"waiting\", \"running\", \"done\"], cooling_time_sec: "},{"event":"cmd_output","timestamp":1607098457,"output":"0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"waiting\", publisher_cb: #Function<"},{"event":"cmd_output","timestamp":1607098457,"output":"0.8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :"},{"event":"cmd_output","timestamp":1607098457,"output":"terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Pp"},{"event":"cmd_output","timestamp":1607098457,"output":"l.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:17.395 [info] Periodic from "},{"event":"cmd_output","timestamp":1607098457,"output":"module Elixir.Ppl.PplBlocks.STMHandler.RunningState with name Elixir.Ppl.PplBlocks.STMHandler.Runnin"},{"event":"cmd_output","timestamp":1607098457,"output":"gState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningS"},{"event":"cmd_output","timestamp":1607098457,"output":"tate\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, in"},{"event":"cmd_output","timestamp":1607098457,"output":"itial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"running\", publisher_cb: #Function<0.281"},{"event":"cmd_output","timestamp":1607098457,"output":"66834/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :term"},{"event":"cmd_output","timestamp":1607098457,"output":"inate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], sch"},{"event":"cmd_output","timestamp":1607098457,"output":"ema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:17.395 [info] Periodi"},{"event":"cmd_output","timestamp":1607098457,"output":"c from module Elixir.Ppl.PplBlocks.STMHandler.StoppingState with name Elixir.Ppl.PplBlocks.STMHandle"},{"event":"cmd_output","timestamp":1607098457,"output":"r.StoppingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler"},{"event":"cmd_output","timestamp":1607098457,"output":"-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, ini"},{"event":"cmd_output","timestamp":1607098457,"output":"tial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"stopping\", publisher_cb: #Function<0.104"},{"event":"cmd_output","timestamp":1607098457,"output":"215991/1 in Ppl.PplBlocks.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :te"},{"event":"cmd_output","timestamp":1607098457,"output":"rminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], s"},{"event":"cmd_output","timestamp":1607098457,"output":"chema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:17.395 [info] Perio"},{"event":"cmd_output","timestamp":1607098457,"output":"dic from module Elixir.Block.Blocks.STMHandler.InitializingState with name Elixir.Block.Blocks.STMHa"},{"event":"cmd_output","timestamp":1607098457,"output":"ndler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMH"},{"event":"cmd_output","timestamp":1607098457,"output":"andler-InitializingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec"},{"event":"cmd_output","timestamp":1607098457,"output":": 0, initial_query: Block.Blocks.Model.Blocks, observed_state: \"initializing\", publisher_cb: :skip, "},{"event":"cmd_output","timestamp":1607098457,"output":"repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :bl"},{"event":"cmd_output","timestamp":1607098457,"output":"ock_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:17.395 [info] "},{"event":"cmd_output","timestamp":1607098457,"output":" Periodic from module Elixir.Block.Blocks.STMHandler.RunningState with name Elixir.Block.Blocks.STMH"},{"event":"cmd_output","timestamp":1607098457,"output":"andler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandl"},{"event":"cmd_output","timestamp":1607098457,"output":"er-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_"},{"event":"cmd_output","timestamp":1607098457,"output":"sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"running\", publisher_cb: :skip, r"},{"event":"cmd_output","timestamp":1607098457,"output":"epo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :blo"},{"event":"cmd_output","timestamp":1607098457,"output":"ck_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:17.395 [info] "},{"event":"cmd_output","timestamp":1607098457,"output":"Periodic from module Elixir.Block.Blocks.STMHandler.StoppingState with name Elixir.Block.Blocks.STMH"},{"event":"cmd_output","timestamp":1607098457,"output":"andler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHand"},{"event":"cmd_output","timestamp":1607098457,"output":"ler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, "},{"event":"cmd_output","timestamp":1607098457,"output":"initial_query: Block.Blocks.Model.Blocks, observed_state: \"stopping\", publisher_cb: :skip, repo: Blo"},{"event":"cmd_output","timestamp":1607098457,"output":"ck.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], "},{"event":"cmd_output","timestamp":1607098457,"output":"schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:17.395 [info] Periodic"},{"event":"cmd_output","timestamp":1607098457,"output":" from module Elixir.Block.Tasks.STMHandler.PendingState with name Elixir.Block.Tasks.STMHandler.Pend"},{"event":"cmd_output","timestamp":1607098457,"output":"ingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingSt"},{"event":"cmd_output","timestamp":1607098457,"output":"ate\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: B"},{"event":"cmd_output","timestamp":1607098457,"output":"lock.Tasks.Model.Tasks, observed_state: \"pending\", publisher_cb: :skip, repo: Block.EctoRepo, return"},{"event":"cmd_output","timestamp":1607098457,"output":"ing: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id, :build_request_id], "},{"event":"cmd_output","timestamp":1607098457,"output":"schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:17.395 [info] Periodic f"},{"event":"cmd_output","timestamp":1607098457,"output":"rom module Elixir.Block.Tasks.STMHandler.RunningState with name Elixir.Block.Tasks.STMHandler.Runnin"},{"event":"cmd_output","timestamp":1607098457,"output":"gState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningStat"},{"event":"cmd_output","timestamp":1607098457,"output":"e\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initi"},{"event":"cmd_output","timestamp":1607098457,"output":"al_query: Block.Tasks.Model.Tasks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoR"},{"event":"cmd_output","timestamp":1607098457,"output":"epo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: "},{"event":"cmd_output","timestamp":1607098457,"output":"Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:17.395 [info] Periodic from modu"},{"event":"cmd_output","timestamp":1607098457,"output":"le Elixir.Block.Tasks.STMHandler.StoppingState with name Elixir.Block.Tasks.STMHandler.StoppingState"},{"event":"cmd_output","timestamp":1607098457,"output":" :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]},"},{"event":"cmd_output","timestamp":1607098457,"output":" recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block."},{"event":"cmd_output","timestamp":1607098457,"output":"Tasks.Model.Tasks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning:"},{"event":"cmd_output","timestamp":1607098457,"output":" [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Mod"},{"event":"cmd_output","timestamp":1607098457,"output":"el.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:17.516 [info] ppl_id: 9067cbb6-636f-4714-9280-2"},{"event":"cmd_output","timestamp":1607098457,"output":"abfb60ef9af, type: PplRequests, event: persisted source_args for pipeline: 9067cbb6-636f-4714-9280-2"},{"event":"cmd_output","timestamp":1607098457,"output":"abfb60ef9af, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098457,"output":"2m\n16:14:17.517 [info] ppl_id: 9067cbb6-636f-4714-9280-2abfb60ef9af, type: PplSubInits, state: fet"},{"event":"cmd_output","timestamp":1607098457,"output":"ching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1("},{"event":"cmd_output","timestamp":1607098457,"output":"L90), \n\u001b[0m\u001b[22m\n16:14:17.537 [info] ppl_id: 9067cbb6-636f-4714-9280-2abfb60ef9af, type: PplSubIn"},{"event":"cmd_output","timestamp":1607098457,"output":"its, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl."},{"event":"cmd_output","timestamp":1607098457,"output":"log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:17.552 [info] ppl_id: 9067cbb6-636f-4714-9280-2abfb60ef"},{"event":"cmd_output","timestamp":1607098457,"output":"9af, type: PplSubInits, state: done, result: failed, event: exit_scheduling, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098457,"output":"in: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:17.562 [info] ppl_id: 9067cb"},{"event":"cmd_output","timestamp":1607098457,"output":"b6-636f-4714-9280-2abfb60ef9af, type: Ppls, state: done, result: failed, event: exit_scheduling, rec"},{"event":"cmd_output","timestamp":1607098457,"output":"overy_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test when jo"},{"event":"cmd_output","timestamp":1607098457,"output":"b limit is longer than pipeline limit => pipeline is malformed (267.1ms)\u001b[0m\n * test pipelone wit "},{"event":"cmd_output","timestamp":1607098457,"output":"valid limits on all levels passes\u001b[22m\n16:14:17.644 [info] Request: 'run: %{:file_name => \"/exec_t"},{"event":"cmd_output","timestamp":1607098457,"output":"ime_limit/valid_example.yml\", :repo_name => \"23_initializing_test\", \"branch_id\" => \"a438f5e6-9e6c-46"},{"event":"cmd_output","timestamp":1607098457,"output":"6d-9fe3-084eba9411ad\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"sema"},{"event":"cmd_output","timestamp":1607098457,"output":"phore.yml\", \"hook_id\" => \"c25fbec4-364b-11eb-ad3f-5254005464e2\", \"label\" => \"master\", \"organization_"},{"event":"cmd_output","timestamp":1607098457,"output":"id\" => \"c0b79052-24e3-41a8-afca-0412cd330023\", \"owner\" => \"rt\", \"project_id\" => \"4e19fc15-2110-42ca-"},{"event":"cmd_output","timestamp":1607098457,"output":"bd24-2133c1e9edba\", \"repo_name\" => \"2_basic\", \"request_token\" => \"c25fb6ae-364b-11eb-bd4e-5254005464"},{"event":"cmd_output","timestamp":1607098457,"output":"e2\", \"requester_id\" => \"5e9f5735-1619-4e86-a0f6-314671b2943f\", \"service\" => \"local\", \"suppressed_att"},{"event":"cmd_output","timestamp":1607098457,"output":"ributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"b46c232d-ad95-442a-bdb5-1c8168151fb3\", \"w"},{"event":"cmd_output","timestamp":1607098457,"output":"orking_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:14:17.651 [info] ppl_id: 59fe0c89-58d3-4935-b76c-9b0165"},{"event":"cmd_output","timestamp":1607098457,"output":"32e7e4, type: PplRequests, event: persisted schedule request with request_token: c25fb6ae-364b-11eb-"},{"event":"cmd_output","timestamp":1607098457,"output":"bd4e-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), "},{"event":"cmd_output","timestamp":1607098457,"output":"\n\u001b[0m\u001b[22m\n16:14:17.653 [info] ppl_id: 59fe0c89-58d3-4935-b76c-9b016532e7e4, type: Ppls, state: i"},{"event":"cmd_output","timestamp":1607098457,"output":"nitializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.proce"},{"event":"cmd_output","timestamp":1607098457,"output":"ss_response/2(L124), \n\u001b[0m\u001b[22m\n16:14:17.656 [info] Project 4e19fc15-2110-42ca-bd24-2133c1e9edba "},{"event":"cmd_output","timestamp":1607098457,"output":"and branch masterlatest_wf details updated: \"wf_id: b46c232d-ad95-442a-bdb5-1c8168151fb3, wf_number:"},{"event":"cmd_output","timestamp":1607098457,"output":" 1\"\n\u001b[0m\u001b[22m\n16:14:17.657 [info] Persisted ppl_sub_init for pipeline with ppl_id: 59fe0c89-58d3-"},{"event":"cmd_output","timestamp":1607098457,"output":"4935-b76c-9b016532e7e4: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, "},{"event":"cmd_output","timestamp":1607098457,"output":"\"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 333, in_scheduling: false, "},{"event":"cmd_output","timestamp":1607098457,"output":"init_type: \"regular\", inserted_at: ~N[2020-12-04 16:14:17.656730], pipeline_requests: #Ecto.Associat"},{"event":"cmd_output","timestamp":1607098457,"output":"ion.NotLoaded, ppl_id: \"59fe0c89-58d3-4935-b76c-9b0165"},{"event":"cmd_output","timestamp":1607098457,"output":"32e7e4\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: ni"},{"event":"cmd_output","timestamp":1607098457,"output":"l, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:14:17.656734]}\n\u001b[0m\u001b[22m\n16:14:17.660"},{"event":"cmd_output","timestamp":1607098457,"output":" [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls"},{"event":"cmd_output","timestamp":1607098457,"output":".STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-ST"},{"event":"cmd_output","timestamp":1607098457,"output":"MHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"pending\", \"done\"]"},{"event":"cmd_output","timestamp":1607098457,"output":", cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher"},{"event":"cmd_output","timestamp":1607098457,"output":"_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, r"},{"event":"cmd_output","timestamp":1607098457,"output":"eturning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema:"},{"event":"cmd_output","timestamp":1607098457,"output":" Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:17.661 [info] Periodic from module "},{"event":"cmd_output","timestamp":1607098457,"output":"Elixir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler.PendingState :: period:"},{"event":"cmd_output","timestamp":1607098457,"output":" 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args"},{"event":"cmd_output","timestamp":1607098457,"output":": %{allowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: P"},{"event":"cmd_output","timestamp":1607098457,"output":"pl.Ppls.Model.Ppls, observed_state: \"pending\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHa"},{"event":"cmd_output","timestamp":1607098457,"output":"ndler.PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :s"},{"event":"cmd_output","timestamp":1607098457,"output":"tate, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupe"},{"event":"cmd_output","timestamp":1607098457,"output":"rvisor}\n\u001b[0m\u001b[22m\n16:14:17.661 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.QueuingStat"},{"event":"cmd_output","timestamp":1607098457,"output":"e with name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, metric_name: {\"Ppl.beholder-w"},{"event":"cmd_output","timestamp":1607098457,"output":"ake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{allowed_states: [\"queuing\", \"runni"},{"event":"cmd_output","timestamp":1607098457,"output":"ng\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", p"},{"event":"cmd_output","timestamp":1607098457,"output":"ublisher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo"},{"event":"cmd_output","timestamp":1607098457,"output":", returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], sche"},{"event":"cmd_output","timestamp":1607098457,"output":"ma: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:17.661 [info] Periodic from modu"},{"event":"cmd_output","timestamp":1607098457,"output":"le Elixir.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHandler.RunningState :: peri"},{"event":"cmd_output","timestamp":1607098457,"output":"od: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring a"},{"event":"cmd_output","timestamp":1607098457,"output":"rgs: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098457,"output":"s.Model.Ppls, observed_state: \"running\", publisher_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler"},{"event":"cmd_output","timestamp":1607098457,"output":".RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state,"},{"event":"cmd_output","timestamp":1607098457,"output":" :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSuperviso"},{"event":"cmd_output","timestamp":1607098457,"output":"r}\n\u001b[0m\u001b[22m\n16:14:17.662 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.StoppingState wi"},{"event":"cmd_output","timestamp":1607098457,"output":"th name Elixir.Ppl.Ppls.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake"},{"event":"cmd_output","timestamp":1607098457,"output":"_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"]"},{"event":"cmd_output","timestamp":1607098457,"output":", cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"stopping\", publisher_cb"},{"event":"cmd_output","timestamp":1607098457,"output":": #Function<0.71803493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning"},{"event":"cmd_output","timestamp":1607098457,"output":": [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098457,"output":"s.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:17.662 [info] Periodic from module Elixir.P"},{"event":"cmd_output","timestamp":1607098457,"output":"pl.PplSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: p"},{"event":"cmd_output","timestamp":1607098457,"output":"eriod: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, r"},{"event":"cmd_output","timestamp":1607098457,"output":"ecurring args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSu"},{"event":"cmd_output","timestamp":1607098457,"output":"bInits.Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, return"},{"event":"cmd_output","timestamp":1607098457,"output":"ing: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl."},{"event":"cmd_output","timestamp":1607098457,"output":"PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:17.662 [info] Periodic fro"},{"event":"cmd_output","timestamp":1607098457,"output":"m module Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler"},{"event":"cmd_output","timestamp":1607098457,"output":".FetchingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler"},{"event":"cmd_output","timestamp":1607098457,"output":"-FetchingState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"done\"], coolin"},{"event":"cmd_output","timestamp":1607098457,"output":"g_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fetching\", publis"},{"event":"cmd_output","timestamp":1607098457,"output":"her_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result"},{"event":"cmd_output","timestamp":1607098457,"output":", :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0"},{"event":"cmd_output","timestamp":1607098457,"output":"m\u001b[22m\n16:14:17.662 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CompilationState"},{"event":"cmd_output","timestamp":1607098457,"output":" with name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 100 ms, metric_name: {\"Ppl."},{"event":"cmd_output","timestamp":1607098457,"output":"beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurring args: %{allowed_state"},{"event":"cmd_output","timestamp":1607098457,"output":"s: [\"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098457,"output":"SubInits.Model.PplSubInits, observed_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, "},{"event":"cmd_output","timestamp":1607098457,"output":"returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema"},{"event":"cmd_output","timestamp":1607098457,"output":": Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:17.663 [info] Period"},{"event":"cmd_output","timestamp":1607098457,"output":"ic from module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.S"},{"event":"cmd_output","timestamp":1607098457,"output":"TMHandler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInit"},{"event":"cmd_output","timestamp":1607098457,"output":"s-STMHandler-RegularInitState\"]}, recurring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, i"},{"event":"cmd_output","timestamp":1607098457,"output":"nitial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_init\", publisher_cb: :skip"},{"event":"cmd_output","timestamp":1607098457,"output":", repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_c"},{"event":"cmd_output","timestamp":1607098457,"output":"ount, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14"},{"event":"cmd_output","timestamp":1607098457,"output":":17.663 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.InitializingState with name Eli"},{"event":"cmd_output","timestamp":1607098457,"output":"xir.Ppl.PplBlocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_u"},{"event":"cmd_output","timestamp":1607098457,"output":"p\", [\"Ppl-PplBlocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializin"},{"event":"cmd_output","timestamp":1607098457,"output":"g\", \"waiting\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_"},{"event":"cmd_output","timestamp":1607098457,"output":"state: \"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request,"},{"event":"cmd_output","timestamp":1607098457,"output":" :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model."},{"event":"cmd_output","timestamp":1607098457,"output":"PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:17.663 [info] Periodic from module Elixir.Ppl."},{"event":"cmd_output","timestamp":1607098457,"output":"PplBlocks.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler.WaitingState :: period: "},{"event":"cmd_output","timestamp":1607098457,"output":"1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurring"},{"event":"cmd_output","timestamp":1607098457,"output":" args: %{allowed_states: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098457,"output":"Blocks.Model.PplBlocks, observed_state: \"waiting\", publisher_cb: #Function<0.8975022/1 in Ppl.PplBlo"},{"event":"cmd_output","timestamp":1607098457,"output":"cks.STMHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updat"},{"event":"cmd_output","timestamp":1607098457,"output":"ed_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBloc"},{"event":"cmd_output","timestamp":1607098457,"output":"ks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:17.663 [info] Periodic from module Elixir.Ppl.PplBloc"},{"event":"cmd_output","timestamp":1607098457,"output":"ks.STMHandler.RunningState with name Elixir.Ppl.PplBlocks.STMHandler.RunningState :: period: 1000 ms"},{"event":"cmd_output","timestamp":1607098457,"output":", metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, recurring args: "},{"event":"cmd_output","timestamp":1607098457,"output":"%{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlock"},{"event":"cmd_output","timestamp":1607098457,"output":"s.Model.PplBlocks, observed_state: \"running\", publisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks."},{"event":"cmd_output","timestamp":1607098457,"output":"STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_a"},{"event":"cmd_output","timestamp":1607098457,"output":"t, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model."},{"event":"cmd_output","timestamp":1607098457,"output":"PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:17.663 [info] Periodic from module Elixir.Ppl."},{"event":"cmd_output","timestamp":1607098457,"output":"PplBlocks.STMHandler.StoppingState with name Elixir.Ppl.PplBlocks.STMHandler.StoppingState :: period"},{"event":"cmd_output","timestamp":1607098457,"output":": 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurr"},{"event":"cmd_output","timestamp":1607098457,"output":"ing args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks"},{"event":"cmd_output","timestamp":1607098457,"output":".Model.PplBlocks, observed_state: \"stopping\", publisher_cb: #Function<0.104215991/1 in Ppl.PplBlocks"},{"event":"cmd_output","timestamp":1607098457,"output":".STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated"},{"event":"cmd_output","timestamp":1607098457,"output":"_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Mode"},{"event":"cmd_output","timestamp":1607098457,"output":"l.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:17.664 [info] Periodic from module Elixir.Bl"},{"event":"cmd_output","timestamp":1607098457,"output":"ock.Blocks.STMHandler.InitializingState with name Elixir.Block.Blocks.STMHandler.InitializingState :"},{"event":"cmd_output","timestamp":1607098457,"output":": period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-InitializingState\""},{"event":"cmd_output","timestamp":1607098457,"output":"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block"},{"event":"cmd_output","timestamp":1607098457,"output":".Blocks.Model.Blocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Block.EctoRepo, ret"},{"event":"cmd_output","timestamp":1607098457,"output":"urning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Bl"},{"event":"cmd_output","timestamp":1607098457,"output":"ocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:17.664 [info] Periodic from module Eli"},{"event":"cmd_output","timestamp":1607098457,"output":"xir.Block.Blocks.STMHandler.RunningState with name Elixir.Block.Blocks.STMHandler.RunningState :: pe"},{"event":"cmd_output","timestamp":1607098457,"output":"riod: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-RunningState\"]}, recur"},{"event":"cmd_output","timestamp":1607098457,"output":"ring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: B"},{"event":"cmd_output","timestamp":1607098457,"output":"lock.Blocks.Model.Blocks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, retu"},{"event":"cmd_output","timestamp":1607098457,"output":"rning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blo"},{"event":"cmd_output","timestamp":1607098457,"output":"cks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:17.664 [info] Periodic from module Elix"},{"event":"cmd_output","timestamp":1607098457,"output":"ir.Block.Blocks.STMHandler.StoppingState with name Elixir.Block.Blocks.STMHandler.StoppingState :: p"},{"event":"cmd_output","timestamp":1607098457,"output":"eriod: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-StoppingState\"]}, rec"},{"event":"cmd_output","timestamp":1607098457,"output":"urring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Bloc"},{"event":"cmd_output","timestamp":1607098457,"output":"ks.Model.Blocks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: ["},{"event":"cmd_output","timestamp":1607098457,"output":":id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Mode"},{"event":"cmd_output","timestamp":1607098457,"output":"l.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:17.664 [info] Periodic from module Elixir.Block"},{"event":"cmd_output","timestamp":1607098457,"output":".Tasks.STMHandler.PendingState with name Elixir.Block.Tasks.STMHandler.PendingState :: period: 100 m"},{"event":"cmd_output","timestamp":1607098457,"output":"s, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingState\"]}, recurring args: %"},{"event":"cmd_output","timestamp":1607098457,"output":"{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Tasks.Model.Tasks, o"},{"event":"cmd_output","timestamp":1607098457,"output":"bserved_state: \"pending\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_req"},{"event":"cmd_output","timestamp":1607098457,"output":"uest, :updated_at, :state, :recovery_count, :block_id, :build_request_id], schema: Block.Tasks.Model"},{"event":"cmd_output","timestamp":1607098457,"output":".Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:17.664 [info] Periodic from module Elixir.Block.T"},{"event":"cmd_output","timestamp":1607098457,"output":"asks.STMHandler.RunningState with name Elixir.Block.Tasks.STMHandler.RunningState :: period: 100 ms,"},{"event":"cmd_output","timestamp":1607098457,"output":" metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningState\"]}, recurring args: %{a"},{"event":"cmd_output","timestamp":1607098457,"output":"llowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Mod"},{"event":"cmd_output","timestamp":1607098457,"output":"el.Tasks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :te"},{"event":"cmd_output","timestamp":1607098457,"output":"rminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, "},{"event":"cmd_output","timestamp":1607098457,"output":"task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:17.664 [info] Periodic from module Elixir.Block.Tasks.STM"},{"event":"cmd_output","timestamp":1607098457,"output":"Handler.StoppingState with name Elixir.Block.Tasks.STMHandler.StoppingState :: period: 100 ms, metri"},{"event":"cmd_output","timestamp":1607098457,"output":"c_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]}, recurring args: %{allowe"},{"event":"cmd_output","timestamp":1607098457,"output":"d_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observ"},{"event":"cmd_output","timestamp":1607098457,"output":"ed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request"},{"event":"cmd_output","timestamp":1607098457,"output":", :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor"},{"event":"cmd_output","timestamp":1607098457,"output":": :skip}\n\u001b[0m\u001b[22m\n16:14:17.777 [info] ppl_id: 59fe0c89-58d3-4935-b76c-9b016532e7e4, type: PplReq"},{"event":"cmd_output","timestamp":1607098457,"output":"uests, event: persisted source_args for pipeline: 59fe0c89-58d3-4935-b76c-9b016532e7e4, origin: Elix"},{"event":"cmd_output","timestamp":1607098457,"output":"ir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:14:17.783 [info] "},{"event":"cmd_output","timestamp":1607098457,"output":"ppl_id: 59fe0c89-58d3-4935-b76c-9b016532e7e4, type: PplSubInits, state: fetching, event: exit_schedu"},{"event":"cmd_output","timestamp":1607098457,"output":"ling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:"},{"event":"cmd_output","timestamp":1607098457,"output":"17.802 [info] ppl_id: 59fe0c89-58d3-4935-b76c-9b016532e7e4, type: PplSubInits, state: regular_init,"},{"event":"cmd_output","timestamp":1607098457,"output":" event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), "},{"event":"cmd_output","timestamp":1607098457,"output":"\n\u001b[0m\u001b[22m\n16:14:17.819 [info] ppl_id: 59fe0c89-58d3-4935-b76c-9b016532e7e4, type: PplRequests, e"},{"event":"cmd_output","timestamp":1607098457,"output":"vent: persisted definition for request with request_token: c25fb6ae-364b-11eb-bd4e-5254005464e2, ori"},{"event":"cmd_output","timestamp":1607098457,"output":"gin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:14:17"},{"event":"cmd_output","timestamp":1607098457,"output":".823 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded"},{"event":"cmd_output","timestamp":1607098457,"output":", \"queues\">, inserted_at: ~N[2020-12-04 16:14:17.821873], name: \"master-.semaphore/semaphore.yml\", o"},{"event":"cmd_output","timestamp":1607098457,"output":"rganization_id: \"c0b79052-24e3-41a8-afca-0412cd330023\", project_id: \"4e19fc15-2110-42ca-bd24-2133c1e"},{"event":"cmd_output","timestamp":1607098457,"output":"9edba\", queue_id: \"48581a03-7d3e-46fd-a757-bf93cc2c52fe\", scope: \"project\", updated_at: ~N[2020-12-0"},{"event":"cmd_output","timestamp":1607098457,"output":"4 16:14:17.821882], user_generated: false}}\n\u001b[0m\u001b[22m\n16:14:17.835 [info] ppl_id: not_available, "},{"event":"cmd_output","timestamp":1607098457,"output":"event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098457,"output":"22m\n16:14:17.835 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState"},{"event":"cmd_output","timestamp":1607098457,"output":".all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:17.835 [info] ppl_id: 59fe0c89-58d3-4935-b76c-9b016532e7e4, ty"},{"event":"cmd_output","timestamp":1607098457,"output":"pe: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098457,"output":"r.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:17.835 [info] ppl"},{"event":"cmd_output","timestamp":1607098457,"output":"_id: 59fe0c89-58d3-4935-b76c-9b016532e7e4, type: PplBlocks, block_index: 1, state: initializing, eve"},{"event":"cmd_output","timestamp":1607098457,"output":"nt: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1"},{"event":"cmd_output","timestamp":1607098457,"output":"(L105), \n\u001b[0m\u001b[22m\n16:14:17.836 [info] ppl_id: 59fe0c89-58d3-4935-b76c-9b016532e7e4, type: PplSub"},{"event":"cmd_output","timestamp":1607098457,"output":"Inits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper"},{"event":"cmd_output","timestamp":1607098457,"output":".STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:17.841 [info] ppl_id: 59fe0c89-58d3-4935-b76c"},{"event":"cmd_output","timestamp":1607098457,"output":"-9b016532e7e4, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_cou"},{"event":"cmd_output","timestamp":1607098457,"output":"nt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:17.843 [info] ppl"},{"event":"cmd_output","timestamp":1607098457,"output":"_id: 59fe0c89-58d3-4935-b76c-9b016532e7e4, type: Ppls, state: pending, event: exit_scheduling, recov"},{"event":"cmd_output","timestamp":1607098457,"output":"ery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:17.847 [inf"},{"event":"cmd_output","timestamp":1607098457,"output":"o] ppl_id: 59fe0c89-58d3-4935-b76c-9b016532e7e4, type: PplBlocks, block_index: 1, state: waiting, e"},{"event":"cmd_output","timestamp":1607098457,"output":"vent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n"},{"event":"cmd_output","timestamp":1607098457,"output":"\u001b[0m\u001b[22m\n16:14:17.849 [info] ppl_id: 59fe0c89-58d3-4935-b76c-9b016532e7e4, type: Ppls, state: que"},{"event":"cmd_output","timestamp":1607098457,"output":"uing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098457,"output":"90), \n\u001b[0m\u001b[22m\n16:14:17.859 [info] ppl_id: 59fe0c89-58d3-4935-b76c-9b016532e7e4, type: Ppls, sta"},{"event":"cmd_output","timestamp":1607098457,"output":"te: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_cha"},{"event":"cmd_output","timestamp":1607098457,"output":"nge/1(L90), \n\u001b[0m\u001b[22m\n16:14:17.864 [info] PplBlocks WaitingState STM is scheduling block 0 from "},{"event":"cmd_output","timestamp":1607098457,"output":"pipeline: \"59fe0c89-58d3-4935-b76c-9b016532e7e4\"\n\u001b[0m\u001b[22m\n16:14:17.869 [info] block_id: bed96999"},{"event":"cmd_output","timestamp":1607098457,"output":"-7ba3-49c2-98ac-0e6a0ffd3584, type: BlockRequests, event: persisted block run request from ppl 59fe0"},{"event":"cmd_output","timestamp":1607098457,"output":"c89-58d3-4935-b76c-9b016532e7e4 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQ"},{"event":"cmd_output","timestamp":1607098457,"output":"ueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:14:17.873 [info] block_id: bed96999-7ba3-49c2-98ac-"},{"event":"cmd_output","timestamp":1607098457,"output":"0e6a0ffd3584, type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098457,"output":"xir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:14:17.879 [info] Block 0 of pip"},{"event":"cmd_output","timestamp":1607098457,"output":"eline with id: 59fe0c89-58d3-4935-b76c-9b016532e7e4 scheduled in block service with id: : \"bed96999-"},{"event":"cmd_output","timestamp":1607098457,"output":"7ba3-49c2-98ac-0e6a0ffd3584\"\n\u001b[0m\u001b[22m\n16:14:17.879 [info] block_id: bed96999-7ba3-49c2-98ac-0e6a"},{"event":"cmd_output","timestamp":1607098457,"output":"0ffd3584, type: BlockRequests, event: persisted build and sub_ppl details for block_request: bed9699"},{"event":"cmd_output","timestamp":1607098457,"output":"9-7ba3-49c2-98ac-0e6a0ffd3584, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_"},{"event":"cmd_output","timestamp":1607098457,"output":"build/2(L41), \n\u001b[0m\u001b[22m\n16:14:17.883 [info] ppl_id: 59fe0c89-58d3-4935-b76c-9b016532e7e4, type: "},{"event":"cmd_output","timestamp":1607098457,"output":"PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098457,"output":".Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:17.883 [info] block_id: bed96999-7ba3-"},{"event":"cmd_output","timestamp":1607098457,"output":"49c2-98ac-0e6a0ffd3584, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098457,"output":"ir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:14:17.885 [info] bloc"},{"event":"cmd_output","timestamp":1607098457,"output":"k_id: bed96999-7ba3-49c2-98ac-0e6a0ffd3584, type: Blocks, state: running, event: exit_scheduling, re"},{"event":"cmd_output","timestamp":1607098457,"output":"covery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:17.905 ["},{"event":"cmd_output","timestamp":1607098457,"output":"info] block_id: bed96999-7ba3-49c2-98ac-0e6a0ffd3584, type: Tasks, state: running, event: exit_sche"},{"event":"cmd_output","timestamp":1607098457,"output":"duling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098457,"output":"4:17.991 [info] block_id: bed96999-7ba3-49c2-98ac-0e6a0ffd3584, type: Tasks, state: done, event: ex"},{"event":"cmd_output","timestamp":1607098457,"output":"it_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098457,"output":"m\n16:14:17.995 [info] block_id: bed96999-7ba3-49c2-98ac-0e6a0ffd3584, type: Blocks, state: done, e"},{"event":"cmd_output","timestamp":1607098457,"output":"vent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n"},{"event":"cmd_output","timestamp":1607098458,"output":"\u001b[0m\u001b[22m\n16:14:18.002 [info] ppl_id: 59fe0c89-58d3-4935-b76c-9b016532e7e4, block_id: bed96999-7ba"},{"event":"cmd_output","timestamp":1607098458,"output":"3-49c2-98ac-0e6a0ffd3584, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_"},{"event":"cmd_output","timestamp":1607098458,"output":"scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098458,"output":"16:14:18.007 [info] PplBlocks WaitingState STM is scheduling block 1 from pipeline: \"59fe0c89-58d3-"},{"event":"cmd_output","timestamp":1607098458,"output":"4935-b76c-9b016532e7e4\"\n\u001b[0m\u001b[22m\n16:14:18.013 [info] block_id: 94e6ff28-5851-45a0-8710-9da014b4f"},{"event":"cmd_output","timestamp":1607098458,"output":"f07, type: BlockRequests, event: persisted block run request from ppl 59fe0c89-58d3-4935-b76c-9b0165"},{"event":"cmd_output","timestamp":1607098458,"output":"32e7e4 for block 1, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4"},{"event":"cmd_output","timestamp":1607098458,"output":"(L35), \n\u001b[0m\u001b[22m\n16:14:18.015 [info] block_id: 94e6ff28-5851-45a0-8710-9da014b4ff07, type: Block"},{"event":"cmd_output","timestamp":1607098458,"output":"s, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.Bl"},{"event":"cmd_output","timestamp":1607098458,"output":"ocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:14:18.015 [info] Block 1 of pipeline with id: 59fe0c89-5"},{"event":"cmd_output","timestamp":1607098458,"output":"8d3-4935-b76c-9b016532e7e4 scheduled in block service with id: : \"94e6ff28-5851-45a0-8710-9da014b4ff"},{"event":"cmd_output","timestamp":1607098458,"output":"07\"\n\u001b[0m\u001b[22m\n16:14:18.017 [info] ppl_id: 59fe0c89-58d3-4935-b76c-9b016532e7e4, type: PplBlocks, "},{"event":"cmd_output","timestamp":1607098458,"output":"block_index: 1, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM"},{"event":"cmd_output","timestamp":1607098458,"output":".Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:18.021 [info] block_id: 94e6ff28-5851-45a0-8710-9"},{"event":"cmd_output","timestamp":1607098458,"output":"da014b4ff07, type: BlockRequests, event: persisted build and sub_ppl details for block_request: 94e6"},{"event":"cmd_output","timestamp":1607098458,"output":"ff28-5851-45a0-8710-9da014b4ff07, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.inse"},{"event":"cmd_output","timestamp":1607098458,"output":"rt_build/2(L41), \n\u001b[0m\u001b[22m\n16:14:18.022 [info] block_id: 94e6ff28-5851-45a0-8710-9da014b4ff07, t"},{"event":"cmd_output","timestamp":1607098458,"output":"ype: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandle"},{"event":"cmd_output","timestamp":1607098458,"output":"r.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:14:18.030 [info] block_id: 94e6ff28-5851-45a0-"},{"event":"cmd_output","timestamp":1607098458,"output":"8710-9da014b4ff07, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098458,"output":"Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:18.044 [info] block_id: 94e6ff28"},{"event":"cmd_output","timestamp":1607098458,"output":"-5851-45a0-8710-9da014b4ff07, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0"},{"event":"cmd_output","timestamp":1607098458,"output":", origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:18.099 [info] block_id"},{"event":"cmd_output","timestamp":1607098458,"output":": 94e6ff28-5851-45a0-8710-9da014b4ff07, type: Tasks, state: done, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098458,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:18.103 [info] b"},{"event":"cmd_output","timestamp":1607098458,"output":"lock_id: 94e6ff28-5851-45a0-8710-9da014b4ff07, type: Blocks, state: done, event: exit_scheduling, re"},{"event":"cmd_output","timestamp":1607098458,"output":"covery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:18.110 ["},{"event":"cmd_output","timestamp":1607098458,"output":"info] ppl_id: 59fe0c89-58d3-4935-b76c-9b016532e7e4, block_id: 94e6ff28-5851-45a0-8710-9da014b4ff07,"},{"event":"cmd_output","timestamp":1607098458,"output":" type: PplBlocks, block_index: 1, state: done, result: passed, event: exit_scheduling, recovery_coun"},{"event":"cmd_output","timestamp":1607098458,"output":"t: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:18.124 [info] ppl_"},{"event":"cmd_output","timestamp":1607098458,"output":"id: 59fe0c89-58d3-4935-b76c-9b016532e7e4, type: Ppls, state: done, result: passed, event: exit_sched"},{"event":"cmd_output","timestamp":1607098458,"output":"uling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * te"},{"event":"cmd_output","timestamp":1607098458,"output":"st pipelone wit valid limits on all levels passes (571.1ms)\u001b[0m\n\nPpl.E2E.ComposeStyleCi.Test\n * "},{"event":"cmd_output","timestamp":1607098458,"output":"test Pipeline with multiple docker images in agent definition passes\u001b[22m\n16:14:18.230 [info] Requ"},{"event":"cmd_output","timestamp":1607098458,"output":"est: 'run: %{:repo_name => \"26_compose_style_ci\", \"branch_id\" => \"fe0d1198-62e3-4ff1-80ab-6aed7bd4f5"},{"event":"cmd_output","timestamp":1607098458,"output":"2b\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"semaphore.yml\", \"hook_"},{"event":"cmd_output","timestamp":1607098458,"output":"id\" => \"c2b929d2-364b-11eb-afb4-5254005464e2\", \"label\" => \"master\", \"organization_id\" => \"c68191d4-c"},{"event":"cmd_output","timestamp":1607098458,"output":"68c-4536-a0d3-cc86a83d757f\", \"owner\" => \"rt\", \"project_id\" => \"2533b3d1-5435-4c9e-838e-b51a7251cf60\""},{"event":"cmd_output","timestamp":1607098458,"output":", \"repo_name\" => \"2_basic\", \"request_token\" => \"c2b921ee-364b-11eb-8f79-5254005464e2\", \"requester_id"},{"event":"cmd_output","timestamp":1607098458,"output":"\" => \"39b74c7f-f769-4c21-b5af-a2617000e15b\", \"service\" => \"local\", \"suppressed_attributes\" => [\"acce"},{"event":"cmd_output","timestamp":1607098458,"output":"ss_token\", \"client_secret\"], \"wf_id\" => \"57579f18-6345-41c4-bf13-468884828946\", \"working_dir\" => \".s"},{"event":"cmd_output","timestamp":1607098458,"output":"emaphore\"}\n\u001b[0m\u001b[22m\n16:14:18.233 [info] ppl_id: 785f7242-7528-40fb-9958-6a993ce4b94d, type: PplR"},{"event":"cmd_output","timestamp":1607098458,"output":"equests, event: persisted schedule request with request_token: c2b921ee-364b-11eb-8f79-5254005464e2,"},{"event":"cmd_output","timestamp":1607098458,"output":" origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:14"},{"event":"cmd_output","timestamp":1607098458,"output":":18.235 [info] ppl_id: 785f7242-7528-40fb-9958-6a993ce4b94d, type: Ppls, state: initializing, event"},{"event":"cmd_output","timestamp":1607098458,"output":": initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124"},{"event":"cmd_output","timestamp":1607098458,"output":"), \n\u001b[0m\u001b[22m\n16:14:18.237 [info] Project 2533b3d1-5435-4c9e-838e-b51a7251cf60 and branch masterl"},{"event":"cmd_output","timestamp":1607098458,"output":"atest_wf details updated: \"wf_id: 57579f18-6345-41c4-bf13-468884828946, wf_number: 1\"\n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098458,"output":":14:18.238 [info] Persisted ppl_sub_init for pipeline with ppl_id: 785f7242-7528-40fb-9958-6a993ce4"},{"event":"cmd_output","timestamp":1607098458,"output":"b94d: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_init"},{"event":"cmd_output","timestamp":1607098458,"output":"s\">, compile_task_id: nil, error_description: nil, id: 334, in_scheduling: false, init_type: \"regula"},{"event":"cmd_output","timestamp":1607098458,"output":"r\", inserted_at: ~N[2020-12-04 16:14:18.237641], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"785f7242-7528-40fb-9958-6a993ce4b94d\", recovery_"},{"event":"cmd_output","timestamp":1607098458,"output":"count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_reque"},{"event":"cmd_output","timestamp":1607098458,"output":"st_desc: nil, updated_at: ~N[2020-12-04 16:14:18.237646]}\n\u001b[0m\u001b[22m\n16:14:18.241 [info] Periodic "},{"event":"cmd_output","timestamp":1607098458,"output":"from module Elixir.Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.STMHandler.Initia"},{"event":"cmd_output","timestamp":1607098458,"output":"lizingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Initializ"},{"event":"cmd_output","timestamp":1607098458,"output":"ingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], cooling_time_sec"},{"event":"cmd_output","timestamp":1607098458,"output":": 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher_cb: #Function<0.1"},{"event":"cmd_output","timestamp":1607098458,"output":"25326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :t"},{"event":"cmd_output","timestamp":1607098458,"output":"erminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Pp"},{"event":"cmd_output","timestamp":1607098458,"output":"ls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:18.242 [info] Periodic from module Elixir.Ppl.Ppls.ST"},{"event":"cmd_output","timestamp":1607098458,"output":"MHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 100 ms, metric_na"},{"event":"cmd_output","timestamp":1607098458,"output":"me: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args: %{allowed_states"},{"event":"cmd_output","timestamp":1607098458,"output":": [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls"},{"event":"cmd_output","timestamp":1607098458,"output":", observed_state: \"pending\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler.PendingState"},{"event":"cmd_output","timestamp":1607098458,"output":".args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :re"},{"event":"cmd_output","timestamp":1607098458,"output":"covery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098458,"output":"\n16:14:18.242 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.QueuingState with name Elixir"},{"event":"cmd_output","timestamp":1607098458,"output":".Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppl"},{"event":"cmd_output","timestamp":1607098458,"output":"s-STMHandler-QueuingState\"]}, recurring args: %{allowed_states: [\"queuing\", \"running\", \"done\"], cool"},{"event":"cmd_output","timestamp":1607098458,"output":"ing_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", publisher_cb: #Func"},{"event":"cmd_output","timestamp":1607098458,"output":"tion<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, returning: [:id,"},{"event":"cmd_output","timestamp":1607098458,"output":" :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model"},{"event":"cmd_output","timestamp":1607098458,"output":".Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:18.243 [info] Periodic from module Elixir.Ppl.Ppls"},{"event":"cmd_output","timestamp":1607098458,"output":".STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHandler.RunningState :: period: 100 ms, metric"},{"event":"cmd_output","timestamp":1607098458,"output":"_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring args: %{allowed_sta"},{"event":"cmd_output","timestamp":1607098458,"output":"tes: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, obse"},{"event":"cmd_output","timestamp":1607098458,"output":"rved_state: \"running\", publisher_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler.RunningState.args"},{"event":"cmd_output","timestamp":1607098458,"output":"/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recover"},{"event":"cmd_output","timestamp":1607098458,"output":"y_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098458,"output":"14:18.243 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.StoppingState with name Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098458,"output":".Ppls.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-S"},{"event":"cmd_output","timestamp":1607098458,"output":"TMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec"},{"event":"cmd_output","timestamp":1607098458,"output":": -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"stopping\", publisher_cb: #Function<0.7180"},{"event":"cmd_output","timestamp":1607098458,"output":"3493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate"},{"event":"cmd_output","timestamp":1607098458,"output":"_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task"},{"event":"cmd_output","timestamp":1607098458,"output":"_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:18.243 [info] Periodic from module Elixir.Ppl.PplSubInits.STM"},{"event":"cmd_output","timestamp":1607098458,"output":"Handler.CreatedState with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 100 ms, met"},{"event":"cmd_output","timestamp":1607098458,"output":"ric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args: %{a"},{"event":"cmd_output","timestamp":1607098458,"output":"llowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSu"},{"event":"cmd_output","timestamp":1607098458,"output":"bInits, observed_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :termin"},{"event":"cmd_output","timestamp":1607098458,"output":"ate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model."},{"event":"cmd_output","timestamp":1607098458,"output":"PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:18.244 [info] Periodic from module Elixir.Pp"},{"event":"cmd_output","timestamp":1607098458,"output":"l.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler.FetchingState :: "},{"event":"cmd_output","timestamp":1607098458,"output":"period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]},"},{"event":"cmd_output","timestamp":1607098458,"output":" recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"done\"], cooling_time_sec: -2, in"},{"event":"cmd_output","timestamp":1607098458,"output":"itial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fetching\", publisher_cb: :skip, rep"},{"event":"cmd_output","timestamp":1607098458,"output":"o: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count,"},{"event":"cmd_output","timestamp":1607098458,"output":" :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:18.2"},{"event":"cmd_output","timestamp":1607098458,"output":"44 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CompilationState with name Elixir."},{"event":"cmd_output","timestamp":1607098458,"output":"Ppl.PplSubInits.STMHandler.CompilationState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\","},{"event":"cmd_output","timestamp":1607098458,"output":" [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurring args: %{allowed_states: [\"regular_init\""},{"event":"cmd_output","timestamp":1607098458,"output":", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.Ppl"},{"event":"cmd_output","timestamp":1607098458,"output":"SubInits, observed_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :"},{"event":"cmd_output","timestamp":1607098458,"output":"terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits."},{"event":"cmd_output","timestamp":1607098458,"output":"Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:18.245 [info] Periodic from module Eli"},{"event":"cmd_output","timestamp":1607098458,"output":"xir.Ppl.PplSubInits.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHandler.RegularI"},{"event":"cmd_output","timestamp":1607098458,"output":"nitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-Regul"},{"event":"cmd_output","timestamp":1607098458,"output":"arInitState\"]}, recurring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, initial_query: Ppl."},{"event":"cmd_output","timestamp":1607098458,"output":"PplSubInits.Model.PplSubInits, observed_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRe"},{"event":"cmd_output","timestamp":1607098458,"output":"po, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], sc"},{"event":"cmd_output","timestamp":1607098458,"output":"hema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:18.245 [info] Pe"},{"event":"cmd_output","timestamp":1607098458,"output":"riodic from module Elixir.Ppl.PplBlocks.STMHandler.InitializingState with name Elixir.Ppl.PplBlocks."},{"event":"cmd_output","timestamp":1607098458,"output":"STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlock"},{"event":"cmd_output","timestamp":1607098458,"output":"s-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"waiting\", \"do"},{"event":"cmd_output","timestamp":1607098458,"output":"ne\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"initializi"},{"event":"cmd_output","timestamp":1607098458,"output":"ng\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :sta"},{"event":"cmd_output","timestamp":1607098458,"output":"te, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_su"},{"event":"cmd_output","timestamp":1607098458,"output":"pervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:18.246 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandl"},{"event":"cmd_output","timestamp":1607098458,"output":"er.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler.WaitingState :: period: 1000 ms, metric_na"},{"event":"cmd_output","timestamp":1607098458,"output":"me: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurring args: %{allowed_s"},{"event":"cmd_output","timestamp":1607098458,"output":"tates: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBl"},{"event":"cmd_output","timestamp":1607098458,"output":"ocks, observed_state: \"waiting\", publisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.STMHandler.Wai"},{"event":"cmd_output","timestamp":1607098458,"output":"tingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :re"},{"event":"cmd_output","timestamp":1607098458,"output":"sult, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_superviso"},{"event":"cmd_output","timestamp":1607098458,"output":"r: :skip}\n\u001b[0m\u001b[22m\n16:14:18.246 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.Runn"},{"event":"cmd_output","timestamp":1607098458,"output":"ingState with name Elixir.Ppl.PplBlocks.STMHandler.RunningState :: period: 1000 ms, metric_name: {\"P"},{"event":"cmd_output","timestamp":1607098458,"output":"pl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: "},{"event":"cmd_output","timestamp":1607098458,"output":"[\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks,"},{"event":"cmd_output","timestamp":1607098458,"output":" observed_state: \"running\", publisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHandler.Running"},{"event":"cmd_output","timestamp":1607098458,"output":"State.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result"},{"event":"cmd_output","timestamp":1607098458,"output":", :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_su"},{"event":"cmd_output","timestamp":1607098458,"output":"pervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:18.247 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandl"},{"event":"cmd_output","timestamp":1607098458,"output":"er.StoppingState with name Elixir.Ppl.PplBlocks.STMHandler.StoppingState :: period: 1000 ms, metric_"},{"event":"cmd_output","timestamp":1607098458,"output":"name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurring args: %{allowe"},{"event":"cmd_output","timestamp":1607098458,"output":"d_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, "},{"event":"cmd_output","timestamp":1607098458,"output":"observed_state: \"stopping\", publisher_cb: #Function<0.104215991/1 in Ppl.PplBlocks.STMHandler.Stoppi"},{"event":"cmd_output","timestamp":1607098458,"output":"ngState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :resu"},{"event":"cmd_output","timestamp":1607098458,"output":"lt, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_"},{"event":"cmd_output","timestamp":1607098458,"output":"supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:18.247 [info] Periodic from module Elixir.Block.Blocks.STMHand"},{"event":"cmd_output","timestamp":1607098458,"output":"ler.InitializingState with name Elixir.Block.Blocks.STMHandler.InitializingState :: period: 100 ms, "},{"event":"cmd_output","timestamp":1607098458,"output":"metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, recurring args"},{"event":"cmd_output","timestamp":1607098458,"output":": %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Blocks.Model.Bloc"},{"event":"cmd_output","timestamp":1607098458,"output":"ks, observed_state: \"initializing\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :ter"},{"event":"cmd_output","timestamp":1607098458,"output":"minate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks,"},{"event":"cmd_output","timestamp":1607098458,"output":" task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:18.248 [info] Periodic from module Elixir.Block.Blocks.S"},{"event":"cmd_output","timestamp":1607098458,"output":"TMHandler.RunningState with name Elixir.Block.Blocks.STMHandler.RunningState :: period: 100 ms, metr"},{"event":"cmd_output","timestamp":1607098458,"output":"ic_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-RunningState\"]}, recurring args: %{allow"},{"event":"cmd_output","timestamp":1607098458,"output":"ed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model."},{"event":"cmd_output","timestamp":1607098458,"output":"Blocks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :term"},{"event":"cmd_output","timestamp":1607098458,"output":"inate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, "},{"event":"cmd_output","timestamp":1607098458,"output":"task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:18.248 [info] Periodic from module Elixir.Block.Blocks.ST"},{"event":"cmd_output","timestamp":1607098458,"output":"MHandler.StoppingState with name Elixir.Block.Blocks.STMHandler.StoppingState :: period: 100 ms, met"},{"event":"cmd_output","timestamp":1607098458,"output":"ric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-StoppingState\"]}, recurring args: %{all"},{"event":"cmd_output","timestamp":1607098458,"output":"owed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, o"},{"event":"cmd_output","timestamp":1607098458,"output":"bserved_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_re"},{"event":"cmd_output","timestamp":1607098458,"output":"quest, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_sup"},{"event":"cmd_output","timestamp":1607098458,"output":"ervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:18.249 [info] Periodic from module Elixir.Block.Tasks.STMHandler."},{"event":"cmd_output","timestamp":1607098458,"output":"PendingState with name Elixir.Block.Tasks.STMHandler.PendingState :: period: 100 ms, metric_name: {\""},{"event":"cmd_output","timestamp":1607098458,"output":"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingState\"]}, recurring args: %{allowed_states: ["},{"event":"cmd_output","timestamp":1607098458,"output":"\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Tasks.Model.Tasks, observed_state: \"pe"},{"event":"cmd_output","timestamp":1607098458,"output":"nding\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at,"},{"event":"cmd_output","timestamp":1607098458,"output":" :state, :recovery_count, :block_id, :build_request_id], schema: Block.Tasks.Model.Tasks, task_super"},{"event":"cmd_output","timestamp":1607098458,"output":"visor: :skip}\n\u001b[0m\u001b[22m\n16:14:18.249 [info] Periodic from module Elixir.Block.Tasks.STMHandler.Ru"},{"event":"cmd_output","timestamp":1607098458,"output":"nningState with name Elixir.Block.Tasks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Pp"},{"event":"cmd_output","timestamp":1607098458,"output":"l.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"r"},{"event":"cmd_output","timestamp":1607098458,"output":"unning\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed"},{"event":"cmd_output","timestamp":1607098458,"output":"_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :"},{"event":"cmd_output","timestamp":1607098458,"output":"updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :"},{"event":"cmd_output","timestamp":1607098458,"output":"skip}\n\u001b[0m\u001b[22m\n16:14:18.250 [info] Periodic from module Elixir.Block.Tasks.STMHandler.StoppingSt"},{"event":"cmd_output","timestamp":1607098458,"output":"ate with name Elixir.Block.Tasks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beho"},{"event":"cmd_output","timestamp":1607098458,"output":"lder-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stoppi"},{"event":"cmd_output","timestamp":1607098458,"output":"ng\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"stoppin"},{"event":"cmd_output","timestamp":1607098458,"output":"g\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :st"},{"event":"cmd_output","timestamp":1607098458,"output":"ate, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098458,"output":"m\n16:14:18.355 [info] ppl_id: 785f7242-7528-40fb-9958-6a993ce4b94d, type: PplRequests, event: pers"},{"event":"cmd_output","timestamp":1607098458,"output":"isted source_args for pipeline: 785f7242-7528-40fb-9958-6a993ce4b94d, origin: Elixir.Ppl.PplRequests"},{"event":"cmd_output","timestamp":1607098458,"output":".Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:14:18.356 [info] ppl_id: 785f7242-7"},{"event":"cmd_output","timestamp":1607098458,"output":"528-40fb-9958-6a993ce4b94d, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_cou"},{"event":"cmd_output","timestamp":1607098458,"output":"nt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:18.380 [info] ppl"},{"event":"cmd_output","timestamp":1607098458,"output":"_id: 785f7242-7528-40fb-9958-6a993ce4b94d, type: PplSubInits, state: regular_init, event: exit_sched"},{"event":"cmd_output","timestamp":1607098458,"output":"uling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14"},{"event":"cmd_output","timestamp":1607098458,"output":":18.404 [info] ppl_id: 785f7242-7528-40fb-9958-6a993ce4b94d, type: PplRequests, event: persisted de"},{"event":"cmd_output","timestamp":1607098458,"output":"finition for request with request_token: c2b921ee-364b-11eb-8f79-5254005464e2, origin: Elixir.Ppl.Pp"},{"event":"cmd_output","timestamp":1607098458,"output":"lRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:14:18.406 [info] Queue"},{"event":"cmd_output","timestamp":1607098458,"output":" persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inser"},{"event":"cmd_output","timestamp":1607098458,"output":"ted_at: ~N[2020-12-04 16:14:18.405831], name: \"master-.semaphore/semaphore.yml\", organization_id: \"c"},{"event":"cmd_output","timestamp":1607098458,"output":"68191d4-c68c-4536-a0d3-cc86a83d757f\", project_id: \"2533b3d1-5435-4c9e-838e-b51a7251cf60\", queue_id: "},{"event":"cmd_output","timestamp":1607098458,"output":"\"e9ed9552-342e-4851-81f4-aa8ad060fa92\", scope: \"project\", updated_at: ~N[2020-12-04 16:14:18.405840]"},{"event":"cmd_output","timestamp":1607098458,"output":", user_generated: false}}\n\u001b[0m\u001b[22m\n16:14:18.411 [info] ppl_id: not_available, event: created, or"},{"event":"cmd_output","timestamp":1607098458,"output":"igin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:18.411 "},{"event":"cmd_output","timestamp":1607098458,"output":"[info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), "},{"event":"cmd_output","timestamp":1607098458,"output":"\n\u001b[0m\u001b[22m\n16:14:18.411 [info] ppl_id: 785f7242-7528-40fb-9958-6a993ce4b94d, type: PplBlocks, blo"},{"event":"cmd_output","timestamp":1607098458,"output":"ck_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits."},{"event":"cmd_output","timestamp":1607098458,"output":"STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:18.411 [info] ppl_id: 785f7242-7528"},{"event":"cmd_output","timestamp":1607098458,"output":"-40fb-9958-6a993ce4b94d, type: PplBlocks, block_index: 1, state: initializing, event: created, recov"},{"event":"cmd_output","timestamp":1607098458,"output":"ery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098458,"output":"m\n16:14:18.412 [info] ppl_id: 785f7242-7528-40fb-9958-6a993ce4b94d, type: PplSubInits, state: done"},{"event":"cmd_output","timestamp":1607098458,"output":", result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_stat"},{"event":"cmd_output","timestamp":1607098458,"output":"e_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:18.417 [info] ppl_id: 785f7242-7528-40fb-9958-6a993ce4b94d, typ"},{"event":"cmd_output","timestamp":1607098458,"output":"e: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098458,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:18.418 [info] ppl_id: 785f7242-7528"},{"event":"cmd_output","timestamp":1607098458,"output":"-40fb-9958-6a993ce4b94d, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, orig"},{"event":"cmd_output","timestamp":1607098458,"output":"in: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:18.424 [info] ppl_id: 785f72"},{"event":"cmd_output","timestamp":1607098458,"output":"42-7528-40fb-9958-6a993ce4b94d, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: "},{"event":"cmd_output","timestamp":1607098458,"output":"0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:18.424 [info] ppl_id:"},{"event":"cmd_output","timestamp":1607098458,"output":" 785f7242-7528-40fb-9958-6a993ce4b94d, type: PplBlocks, block_index: 1, state: waiting, event: exit_"},{"event":"cmd_output","timestamp":1607098458,"output":"scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098458,"output":"16:14:18.437 [info] ppl_id: 785f7242-7528-40fb-9958-6a993ce4b94d, type: Ppls, state: running, event"},{"event":"cmd_output","timestamp":1607098458,"output":": exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098458,"output":"\u001b[22m\n16:14:18.443 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"785f724"},{"event":"cmd_output","timestamp":1607098458,"output":"2-7528-40fb-9958-6a993ce4b94d\"\n\u001b[0m\u001b[22m\n16:14:18.448 [info] block_id: 257aa35b-8c32-4ca6-b186-12"},{"event":"cmd_output","timestamp":1607098458,"output":"a8a4b477e7, type: BlockRequests, event: persisted block run request from ppl 785f7242-7528-40fb-9958"},{"event":"cmd_output","timestamp":1607098458,"output":"-6a993ce4b94d for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_res"},{"event":"cmd_output","timestamp":1607098458,"output":"ponse/4(L35), \n\u001b[0m\u001b[22m\n16:14:18.452 [info] block_id: 257aa35b-8c32-4ca6-b186-12a8a4b477e7, type"},{"event":"cmd_output","timestamp":1607098458,"output":": Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.M"},{"event":"cmd_output","timestamp":1607098458,"output":"odel.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:14:18.457 [info] Block 0 of pipeline with id: 785"},{"event":"cmd_output","timestamp":1607098458,"output":"f7242-7528-40fb-9958-6a993ce4b94d scheduled in block service with id: : \"257aa35b-8c32-4ca6-b186-12a"},{"event":"cmd_output","timestamp":1607098458,"output":"8a4b477e7\"\n\u001b[0m\u001b[22m\n16:14:18.457 [info] block_id: 257aa35b-8c32-4ca6-b186-12a8a4b477e7, type: Bl"},{"event":"cmd_output","timestamp":1607098458,"output":"ockRequests, event: persisted build and sub_ppl details for block_request: 257aa35b-8c32-4ca6-b186-1"},{"event":"cmd_output","timestamp":1607098458,"output":"2a8a4b477e7, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b["},{"event":"cmd_output","timestamp":1607098458,"output":"0m\u001b[22m\n16:14:18.459 [info] ppl_id: 785f7242-7528-40fb-9958-6a993ce4b94d, type: PplBlocks, block_i"},{"event":"cmd_output","timestamp":1607098458,"output":"ndex: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.l"},{"event":"cmd_output","timestamp":1607098458,"output":"og_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:18.460 [info] block_id: 257aa35b-8c32-4ca6-b186-12a8a4b4"},{"event":"cmd_output","timestamp":1607098458,"output":"77e7, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.ST"},{"event":"cmd_output","timestamp":1607098458,"output":"MHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:14:18.464 [info] block_id: 257aa35b-8c3"},{"event":"cmd_output","timestamp":1607098458,"output":"2-4ca6-b186-12a8a4b477e7, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098458,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:18.485 [info] block_id: 2"},{"event":"cmd_output","timestamp":1607098458,"output":"57aa35b-8c32-4ca6-b186-12a8a4b477e7, type: Tasks, state: running, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098458,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:18.568 [info] b"},{"event":"cmd_output","timestamp":1607098458,"output":"lock_id: 257aa35b-8c32-4ca6-b186-12a8a4b477e7, type: Tasks, state: done, event: exit_scheduling, rec"},{"event":"cmd_output","timestamp":1607098458,"output":"overy_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:18.573 [i"},{"event":"cmd_output","timestamp":1607098458,"output":"nfo] block_id: 257aa35b-8c32-4ca6-b186-12a8a4b477e7, type: Blocks, state: done, event: exit_schedul"},{"event":"cmd_output","timestamp":1607098458,"output":"ing, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:1"},{"event":"cmd_output","timestamp":1607098458,"output":"8.579 [info] ppl_id: 785f7242-7528-40fb-9958-6a993ce4b94d, block_id: 257aa35b-8c32-4ca6-b186-12a8a4"},{"event":"cmd_output","timestamp":1607098458,"output":"b477e7, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, recove"},{"event":"cmd_output","timestamp":1607098458,"output":"ry_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:18.584 [info"},{"event":"cmd_output","timestamp":1607098458,"output":"] PplBlocks WaitingState STM is scheduling block 1 from pipeline: \"785f7242-7528-40fb-9958-6a993ce4"},{"event":"cmd_output","timestamp":1607098458,"output":"b94d\"\n\u001b[0m\u001b[22m\n16:14:18.593 [info] block_id: be75d24e-9d36-4f97-b991-e3a5cfebab29, type: BlockRe"},{"event":"cmd_output","timestamp":1607098458,"output":"quests, event: persisted block run request from ppl 785f7242-7528-40fb-9958-6a993ce4b94d for block 1"},{"event":"cmd_output","timestamp":1607098458,"output":", origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098458,"output":"\n16:14:18.595 [info] block_id: be75d24e-9d36-4f97-b991-e3a5cfebab29, type: Blocks, state: initiali"},{"event":"cmd_output","timestamp":1607098458,"output":"zing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert"},{"event":"cmd_output","timestamp":1607098458,"output":"/1(L43), \n\u001b[0m\u001b[22m\n16:14:18.595 [info] Block 1 of pipeline with id: 785f7242-7528-40fb-9958-6a99"},{"event":"cmd_output","timestamp":1607098458,"output":"3ce4b94d scheduled in block service with id: : \"be75d24e-9d36-4f97-b991-e3a5cfebab29\"\n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098458,"output":":14:18.597 [info] ppl_id: 785f7242-7528-40fb-9958-6a993ce4b94d, type: PplBlocks, block_index: 1, st"},{"event":"cmd_output","timestamp":1607098458,"output":"ate: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_ch"},{"event":"cmd_output","timestamp":1607098458,"output":"ange/1(L90), \n\u001b[0m\u001b[22m\n16:14:18.602 [info] block_id: be75d24e-9d36-4f97-b991-e3a5cfebab29, type:"},{"event":"cmd_output","timestamp":1607098458,"output":" BlockRequests, event: persisted build and sub_ppl details for block_request: be75d24e-9d36-4f97-b99"},{"event":"cmd_output","timestamp":1607098458,"output":"1-e3a5cfebab29, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \r"},{"event":"cmd_output","timestamp":1607098458,"output":"\n\u001b[0m\u001b[22m\n16:14:18.603 [info] block_id: be75d24e-9d36-4f97-b991-e3a5cfebab29, type: Tasks, state:"},{"event":"cmd_output","timestamp":1607098458,"output":" pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingStat"},{"event":"cmd_output","timestamp":1607098458,"output":"e.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:14:18.609 [info] block_id: be75d24e-9d36-4f97-b991-e3a5cfebab29,"},{"event":"cmd_output","timestamp":1607098458,"output":" type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM."},{"event":"cmd_output","timestamp":1607098458,"output":"Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:18.621 [info] block_id: be75d24e-9d36-4f97-b991-e3"},{"event":"cmd_output","timestamp":1607098458,"output":"a5cfebab29, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098458,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:18.674 [info] block_id: be75d24e-9d36-4f"},{"event":"cmd_output","timestamp":1607098458,"output":"97-b991-e3a5cfebab29, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: E"},{"event":"cmd_output","timestamp":1607098458,"output":"lixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:18.687 [info] block_id: be75d24e-"},{"event":"cmd_output","timestamp":1607098458,"output":"9d36-4f97-b991-e3a5cfebab29, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098458,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:18.696 [info] ppl_id: 785"},{"event":"cmd_output","timestamp":1607098458,"output":"f7242-7528-40fb-9958-6a993ce4b94d, block_id: be75d24e-9d36-4f97-b991-e3a5cfebab29, type: PplBlocks, "},{"event":"cmd_output","timestamp":1607098458,"output":"block_index: 1, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098458,"output":"ir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:18.708 [info] ppl_id: 785f7242-7528-"},{"event":"cmd_output","timestamp":1607098458,"output":"40fb-9958-6a993ce4b94d, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_co"},{"event":"cmd_output","timestamp":1607098458,"output":"unt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test Pipeline with m"},{"event":"cmd_output","timestamp":1607098458,"output":"ultiple docker images in agent definition passes (586.8ms)\u001b[0m\n\nPpl.E2E.AutoCancel.Test\n * test "},{"event":"cmd_output","timestamp":1607098458,"output":"auto_cancel/queued terminates older pipelines that are not running\u001b[22m\n16:14:18.826 [info] Period"},{"event":"cmd_output","timestamp":1607098458,"output":"ic from module Elixir.Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.STMHandler.Ini"},{"event":"cmd_output","timestamp":1607098458,"output":"tializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Initia"},{"event":"cmd_output","timestamp":1607098458,"output":"lizingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], cooling_time_"},{"event":"cmd_output","timestamp":1607098458,"output":"sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher_cb: #Function<"},{"event":"cmd_output","timestamp":1607098458,"output":"0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, returning: [:id,"},{"event":"cmd_output","timestamp":1607098458,"output":" :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model"},{"event":"cmd_output","timestamp":1607098458,"output":".Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:18.826 [info] Periodic from module Elixir.Ppl.Ppls"},{"event":"cmd_output","timestamp":1607098458,"output":".STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 100 ms, metric"},{"event":"cmd_output","timestamp":1607098458,"output":"_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args: %{allowed_sta"},{"event":"cmd_output","timestamp":1607098458,"output":"tes: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.P"},{"event":"cmd_output","timestamp":1607098458,"output":"pls, observed_state: \"pending\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler.PendingSt"},{"event":"cmd_output","timestamp":1607098458,"output":"ate.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, "},{"event":"cmd_output","timestamp":1607098458,"output":":recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098458,"output":"22m\n16:14:18.827 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.QueuingState with name Eli"},{"event":"cmd_output","timestamp":1607098458,"output":"xir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-"},{"event":"cmd_output","timestamp":1607098458,"output":"Ppls-STMHandler-QueuingState\"]}, recurring args: %{allowed_states: [\"queuing\", \"running\", \"done\"], c"},{"event":"cmd_output","timestamp":1607098458,"output":"ooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", publisher_cb: #F"},{"event":"cmd_output","timestamp":1607098458,"output":"unction<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, returning: [:"},{"event":"cmd_output","timestamp":1607098458,"output":"id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Mo"},{"event":"cmd_output","timestamp":1607098458,"output":"del.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:18.827 [info] Periodic from module Elixir.Ppl.P"},{"event":"cmd_output","timestamp":1607098458,"output":"pls.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHandler.RunningState :: period: 100 ms, met"},{"event":"cmd_output","timestamp":1607098458,"output":"ric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring args: %{allowed_"},{"event":"cmd_output","timestamp":1607098458,"output":"states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, o"},{"event":"cmd_output","timestamp":1607098458,"output":"bserved_state: \"running\", publisher_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler.RunningState.a"},{"event":"cmd_output","timestamp":1607098458,"output":"rgs/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :reco"},{"event":"cmd_output","timestamp":1607098458,"output":"very_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098458,"output":"16:14:18.827 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.StoppingState with name Elixir."},{"event":"cmd_output","timestamp":1607098458,"output":"Ppl.Ppls.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppl"},{"event":"cmd_output","timestamp":1607098458,"output":"s-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_"},{"event":"cmd_output","timestamp":1607098458,"output":"sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"stopping\", publisher_cb: #Function<0.7"},{"event":"cmd_output","timestamp":1607098458,"output":"1803493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :termin"},{"event":"cmd_output","timestamp":1607098458,"output":"ate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, t"},{"event":"cmd_output","timestamp":1607098458,"output":"ask_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:18.827 [info] Periodic from module Elixir.Ppl.PplSubInits."},{"event":"cmd_output","timestamp":1607098458,"output":"STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 100 ms, "},{"event":"cmd_output","timestamp":1607098458,"output":"metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args: "},{"event":"cmd_output","timestamp":1607098458,"output":"%{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.Pp"},{"event":"cmd_output","timestamp":1607098458,"output":"lSubInits, observed_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :ter"},{"event":"cmd_output","timestamp":1607098458,"output":"minate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Mod"},{"event":"cmd_output","timestamp":1607098458,"output":"el.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:18.827 [info] Periodic from module Elixir"},{"event":"cmd_output","timestamp":1607098458,"output":".Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler.FetchingState "},{"event":"cmd_output","timestamp":1607098458,"output":":: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\""},{"event":"cmd_output","timestamp":1607098458,"output":"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"done\"], cooling_time_sec: -2,"},{"event":"cmd_output","timestamp":1607098458,"output":" initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fetching\", publisher_cb: :skip, "},{"event":"cmd_output","timestamp":1607098458,"output":"repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_cou"},{"event":"cmd_output","timestamp":1607098458,"output":"nt, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:1"},{"event":"cmd_output","timestamp":1607098458,"output":"8.827 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CompilationState with name Elix"},{"event":"cmd_output","timestamp":1607098458,"output":"ir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_u"},{"event":"cmd_output","timestamp":1607098458,"output":"p\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurring args: %{allowed_states: [\"regular_in"},{"event":"cmd_output","timestamp":1607098458,"output":"it\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model."},{"event":"cmd_output","timestamp":1607098458,"output":"PplSubInits, observed_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id"},{"event":"cmd_output","timestamp":1607098458,"output":", :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubIni"},{"event":"cmd_output","timestamp":1607098458,"output":"ts.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:18.827 [info] Periodic from module "},{"event":"cmd_output","timestamp":1607098458,"output":"Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHandler.Regul"},{"event":"cmd_output","timestamp":1607098458,"output":"arInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-Re"},{"event":"cmd_output","timestamp":1607098458,"output":"gularInitState\"]}, recurring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, initial_query: P"},{"event":"cmd_output","timestamp":1607098458,"output":"pl.PplSubInits.Model.PplSubInits, observed_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.Ect"},{"event":"cmd_output","timestamp":1607098458,"output":"oRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id],"},{"event":"cmd_output","timestamp":1607098458,"output":" schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:18.828 [info] "},{"event":"cmd_output","timestamp":1607098458,"output":" Periodic from module Elixir.Ppl.PplBlocks.STMHandler.InitializingState with name Elixir.Ppl.PplBloc"},{"event":"cmd_output","timestamp":1607098458,"output":"ks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBl"},{"event":"cmd_output","timestamp":1607098458,"output":"ocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"waiting\", "},{"event":"cmd_output","timestamp":1607098458,"output":"\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"initial"},{"event":"cmd_output","timestamp":1607098458,"output":"izing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :"},{"event":"cmd_output","timestamp":1607098458,"output":"state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task"},{"event":"cmd_output","timestamp":1607098458,"output":"_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:18.828 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHa"},{"event":"cmd_output","timestamp":1607098458,"output":"ndler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler.WaitingState :: period: 1000 ms, metric"},{"event":"cmd_output","timestamp":1607098458,"output":"_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurring args: %{allowe"},{"event":"cmd_output","timestamp":1607098458,"output":"d_states: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.Pp"},{"event":"cmd_output","timestamp":1607098458,"output":"lBlocks, observed_state: \"waiting\", publisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.STMHandler."},{"event":"cmd_output","timestamp":1607098458,"output":"WaitingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, "},{"event":"cmd_output","timestamp":1607098458,"output":":result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_superv"},{"event":"cmd_output","timestamp":1607098458,"output":"isor: :skip}\n\u001b[0m\u001b[22m\n16:14:18.828 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.R"},{"event":"cmd_output","timestamp":1607098458,"output":"unningState with name Elixir.Ppl.PplBlocks.STMHandler.RunningState :: period: 1000 ms, metric_name: "},{"event":"cmd_output","timestamp":1607098458,"output":"{\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, recurring args: %{allowed_state"},{"event":"cmd_output","timestamp":1607098458,"output":"s: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBloc"},{"event":"cmd_output","timestamp":1607098458,"output":"ks, observed_state: \"running\", publisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHandler.Runn"},{"event":"cmd_output","timestamp":1607098458,"output":"ingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :res"},{"event":"cmd_output","timestamp":1607098458,"output":"ult, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task"},{"event":"cmd_output","timestamp":1607098458,"output":"_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:18.828 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHa"},{"event":"cmd_output","timestamp":1607098458,"output":"ndler.StoppingState with name Elixir.Ppl.PplBlocks.STMHandler.StoppingState :: period: 1000 ms, metr"},{"event":"cmd_output","timestamp":1607098458,"output":"ic_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurring args: %{all"},{"event":"cmd_output","timestamp":1607098458,"output":"owed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlock"},{"event":"cmd_output","timestamp":1607098458,"output":"s, observed_state: \"stopping\", publisher_cb: #Function<0.104215991/1 in Ppl.PplBlocks.STMHandler.Sto"},{"event":"cmd_output","timestamp":1607098458,"output":"ppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :r"},{"event":"cmd_output","timestamp":1607098458,"output":"esult, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, ta"},{"event":"cmd_output","timestamp":1607098458,"output":"sk_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:18.828 [info] Periodic from module Elixir.Block.Blocks.STMH"},{"event":"cmd_output","timestamp":1607098458,"output":"andler.InitializingState with name Elixir.Block.Blocks.STMHandler.InitializingState :: period: 100 m"},{"event":"cmd_output","timestamp":1607098458,"output":"s, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, recurring a"},{"event":"cmd_output","timestamp":1607098458,"output":"rgs: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Blocks.Model.B"},{"event":"cmd_output","timestamp":1607098458,"output":"locks, observed_state: \"initializing\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :"},{"event":"cmd_output","timestamp":1607098458,"output":"terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Bloc"},{"event":"cmd_output","timestamp":1607098458,"output":"ks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:18.828 [info] Periodic from module Elixir.Block.Block"},{"event":"cmd_output","timestamp":1607098458,"output":"s.STMHandler.RunningState with name Elixir.Block.Blocks.STMHandler.RunningState :: period: 100 ms, m"},{"event":"cmd_output","timestamp":1607098458,"output":"etric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-RunningState\"]}, recurring args: %{al"},{"event":"cmd_output","timestamp":1607098458,"output":"lowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Mod"},{"event":"cmd_output","timestamp":1607098458,"output":"el.Blocks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :t"},{"event":"cmd_output","timestamp":1607098458,"output":"erminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Block"},{"event":"cmd_output","timestamp":1607098458,"output":"s, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:18.828 [info] Periodic from module Elixir.Block.Blocks"},{"event":"cmd_output","timestamp":1607098458,"output":".STMHandler.StoppingState with name Elixir.Block.Blocks.STMHandler.StoppingState :: period: 100 ms, "},{"event":"cmd_output","timestamp":1607098458,"output":"metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-StoppingState\"]}, recurring args: %{"},{"event":"cmd_output","timestamp":1607098458,"output":"allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks"},{"event":"cmd_output","timestamp":1607098458,"output":", observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate"},{"event":"cmd_output","timestamp":1607098458,"output":"_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_"},{"event":"cmd_output","timestamp":1607098458,"output":"supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:18.828 [info] Periodic from module Elixir.Block.Tasks.STMHandl"},{"event":"cmd_output","timestamp":1607098458,"output":"er.PendingState with name Elixir.Block.Tasks.STMHandler.PendingState :: period: 100 ms, metric_name:"},{"event":"cmd_output","timestamp":1607098458,"output":" {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingState\"]}, recurring args: %{allowed_states"},{"event":"cmd_output","timestamp":1607098458,"output":": [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Tasks.Model.Tasks, observed_state: "},{"event":"cmd_output","timestamp":1607098458,"output":"\"pending\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_"},{"event":"cmd_output","timestamp":1607098458,"output":"at, :state, :recovery_count, :block_id, :build_request_id], schema: Block.Tasks.Model.Tasks, task_su"},{"event":"cmd_output","timestamp":1607098458,"output":"pervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:18.829 [info] Periodic from module Elixir.Block.Tasks.STMHandler"},{"event":"cmd_output","timestamp":1607098458,"output":".RunningState with name Elixir.Block.Tasks.STMHandler.RunningState :: period: 100 ms, metric_name: {"},{"event":"cmd_output","timestamp":1607098458,"output":"\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: "},{"event":"cmd_output","timestamp":1607098458,"output":"[\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, obser"},{"event":"cmd_output","timestamp":1607098458,"output":"ved_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request"},{"event":"cmd_output","timestamp":1607098458,"output":", :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor"},{"event":"cmd_output","timestamp":1607098458,"output":": :skip}\n\u001b[0m\u001b[22m\n16:14:18.829 [info] Periodic from module Elixir.Block.Tasks.STMHandler.Stoppin"},{"event":"cmd_output","timestamp":1607098458,"output":"gState with name Elixir.Block.Tasks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.b"},{"event":"cmd_output","timestamp":1607098458,"output":"eholder-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"sto"},{"event":"cmd_output","timestamp":1607098458,"output":"pping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"stop"},{"event":"cmd_output","timestamp":1607098458,"output":"ping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, "},{"event":"cmd_output","timestamp":1607098458,"output":":state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098458,"output":"[22m\n16:14:18.833 [info] Request: 'run: %{\"branch_id\" => \"fe183765-5036-4215-a150-15a3acfada6b\", \""},{"event":"cmd_output","timestamp":1607098458,"output":"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"ac_queued.yml\", \"hook_id\" =>"},{"event":"cmd_output","timestamp":1607098458,"output":" \"c314c774-364b-11eb-b8b8-5254005464e2\", \"label\" => \"master\", \"organization_id\" => \"79494b88-b75e-42"},{"event":"cmd_output","timestamp":1607098458,"output":"8c-bb19-dfcf5ff5e9ae\", \"owner\" => \"rt\", \"project_id\" => \"123\", \"repo_name\" => \"28_auto_cancel\", \"req"},{"event":"cmd_output","timestamp":1607098458,"output":"uest_token\" => \"c314bebe-364b-11eb-b105-5254005464e2\", \"requester_id\" => \"b6aee12b-7552-47b4-ae6a-a2"},{"event":"cmd_output","timestamp":1607098458,"output":"12c710dc2d\", \"service\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf"},{"event":"cmd_output","timestamp":1607098458,"output":"_id\" => \"c2f5ac7a-0675-4c32-af83-de040684979b\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:14:18."},{"event":"cmd_output","timestamp":1607098458,"output":"837 [info] ppl_id: 9839c632-23d6-47aa-b383-288e603c0dfe, type: PplRequests, event: persisted schedu"},{"event":"cmd_output","timestamp":1607098458,"output":"le request with request_token: c314bebe-364b-11eb-b105-5254005464e2, origin: Elixir.Ppl.PplRequests."},{"event":"cmd_output","timestamp":1607098458,"output":"Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:14:18.840 [info] ppl_id: 9839c632"},{"event":"cmd_output","timestamp":1607098458,"output":"-23d6-47aa-b383-288e603c0dfe, type: Ppls, state: initializing, event: initializing, recovery_count: "},{"event":"cmd_output","timestamp":1607098458,"output":"0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:14:18.845 [in"},{"event":"cmd_output","timestamp":1607098458,"output":"fo] Project 123 and branch masterlatest_wf details updated: \"wf_id: c2f5ac7a-0675-4c32-af83-de04068"},{"event":"cmd_output","timestamp":1607098458,"output":"4979b, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:14:18.847 [info] Persisted ppl_sub_init for pipeline with ppl_i"},{"event":"cmd_output","timestamp":1607098458,"output":"d: 9839c632-23d6-47aa-b383-288e603c0dfe: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.M"},{"event":"cmd_output","timestamp":1607098458,"output":"etadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 335, in_sc"},{"event":"cmd_output","timestamp":1607098458,"output":"heduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:14:18.845535], pipeline_request"},{"event":"cmd_output","timestamp":1607098458,"output":"s: #Ecto.Association.NotLoaded, ppl_id: \"9839c632-23d6"},{"event":"cmd_output","timestamp":1607098458,"output":"-47aa-b383-288e603c0dfe\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", term"},{"event":"cmd_output","timestamp":1607098458,"output":"inate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:14:18.845543]}\n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098458,"output":"22m\n16:14:18.859 [info] ppl_id: 9839c632-23d6-47aa-b383-288e603c0dfe, type: PplRequests, event: pe"},{"event":"cmd_output","timestamp":1607098458,"output":"rsisted source_args for pipeline: 9839c632-23d6-47aa-b383-288e603c0dfe, origin: Elixir.Ppl.PplReques"},{"event":"cmd_output","timestamp":1607098458,"output":"ts.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:14:18.861 [info] ppl_id: 9839c632"},{"event":"cmd_output","timestamp":1607098458,"output":"-23d6-47aa-b383-288e603c0dfe, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098458,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:18.879 [info] p"},{"event":"cmd_output","timestamp":1607098458,"output":"pl_id: 9839c632-23d6-47aa-b383-288e603c0dfe, type: PplSubInits, state: regular_init, event: exit_sch"},{"event":"cmd_output","timestamp":1607098458,"output":"eduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098458,"output":"14:18.897 [info] ppl_id: 9839c632-23d6-47aa-b383-288e603c0dfe, type: PplRequests, event: persisted "},{"event":"cmd_output","timestamp":1607098458,"output":"definition for request with request_token: c314bebe-364b-11eb-b105-5254005464e2, origin: Elixir.Ppl."},{"event":"cmd_output","timestamp":1607098458,"output":"PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:14:18.900 [info] Que"},{"event":"cmd_output","timestamp":1607098458,"output":"ue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, ins"},{"event":"cmd_output","timestamp":1607098458,"output":"erted_at: ~N[2020-12-04 16:14:18.899010], name: \"master-.semaphore/ac_queued.yml\", organization_id: "},{"event":"cmd_output","timestamp":1607098458,"output":"\"79494b88-b75e-428c-bb19-dfcf5ff5e9ae\", project_id: \"123\", queue_id: \"1a898416-dc5c-494a-b01e-eb4e5a"},{"event":"cmd_output","timestamp":1607098458,"output":"b5b5f5\", scope: \"project\", updated_at: ~N[2020-12-04 16:14:18.899018], user_generated: false}}\n\u001b[0m"},{"event":"cmd_output","timestamp":1607098458,"output":"\u001b[22m\n16:14:18.912 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitSta"},{"event":"cmd_output","timestamp":1607098458,"output":"te.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:18.912 [info] ppl_id: 9839c632-23d6-47aa-b383-288e603c0dfe, "},{"event":"cmd_output","timestamp":1607098458,"output":"type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098458,"output":"xir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:18.914 [info] p"},{"event":"cmd_output","timestamp":1607098458,"output":"pl_id: 9839c632-23d6-47aa-b383-288e603c0dfe, type: PplSubInits, state: done, result: passed, event: "},{"event":"cmd_output","timestamp":1607098458,"output":"exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098458,"output":"22m\n16:14:18.920 [info] ppl_id: 9839c632-23d6-47aa-b383-288e603c0dfe, type: Ppls, state: pending, "},{"event":"cmd_output","timestamp":1607098458,"output":"event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \r"},{"event":"cmd_output","timestamp":1607098458,"output":"\n\u001b[0m\u001b[22m\n16:14:18.925 [info] ppl_id: 9839c632-23d6-47aa-b383-288e603c0dfe, type: PplBlocks, bloc"},{"event":"cmd_output","timestamp":1607098458,"output":"k_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Imp"},{"event":"cmd_output","timestamp":1607098458,"output":"l.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:18.929 [info] ppl_id: 9839c632-23d6-47aa-b383-288e603"},{"event":"cmd_output","timestamp":1607098458,"output":"c0dfe, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper."},{"event":"cmd_output","timestamp":1607098458,"output":"STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:18.941 [info] ppl_id: 9839c632-23d6-47aa-b383-"},{"event":"cmd_output","timestamp":1607098458,"output":"288e603c0dfe, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098458,"output":"Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:18.947 [info] PplBlocks WaitingState ST"},{"event":"cmd_output","timestamp":1607098458,"output":"M is scheduling block 0 from pipeline: \"9839c632-23d6-47aa-b383-288e603c0dfe\"\n\u001b[0m\u001b[22m\n16:14:18.9"},{"event":"cmd_output","timestamp":1607098458,"output":"55 [info] block_id: 52184df5-c951-4a6f-8f31-29ca36bea353, type: BlockRequests, event: persisted blo"},{"event":"cmd_output","timestamp":1607098458,"output":"ck run request from ppl 9839c632-23d6-47aa-b383-288e603c0dfe for block 0, origin: Elixir.Block.Block"},{"event":"cmd_output","timestamp":1607098458,"output":"Requests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:14:18.957 [info] block"},{"event":"cmd_output","timestamp":1607098458,"output":"_id: 52184df5-c951-4a6f-8f31-29ca36bea353, type: Blocks, state: initializing, event: initializing, r"},{"event":"cmd_output","timestamp":1607098458,"output":"ecovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:14:"},{"event":"cmd_output","timestamp":1607098458,"output":"18.960 [info] Request: 'run: %{\"branch_id\" => \"bea70bb5-e001-4b7c-aaf5-a62f6e1410cb\", \"branch_name\""},{"event":"cmd_output","timestamp":1607098458,"output":" => \"master\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"ac_queued.yml\", \"hook_id\" => \"c3281f36-3"},{"event":"cmd_output","timestamp":1607098458,"output":"64b-11eb-9f83-5254005464e2\", \"label\" => \"master\", \"organization_id\" => \"f9cdeaac-d2b5-4b1c-a1e2-3c1a"},{"event":"cmd_output","timestamp":1607098458,"output":"6f7207c9\", \"owner\" => \"rt\", \"project_id\" => \"123\", \"repo_name\" => \"28_auto_cancel\", \"request_token\" "},{"event":"cmd_output","timestamp":1607098458,"output":"=> \"c327e2aa-364b-11eb-988c-5254005464e2\", \"requester_id\" => \"31e996f0-ebcf-44c2-9a2b-ec0ce0ef8c93\","},{"event":"cmd_output","timestamp":1607098458,"output":" \"service\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"0f0"},{"event":"cmd_output","timestamp":1607098458,"output":"c8554-d698-4306-ae97-ccb8818fc867\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:14:18.962 [info] "},{"event":"cmd_output","timestamp":1607098458,"output":"Block 0 of pipeline with id: 9839c632-23d6-47aa-b383-288e603c0dfe scheduled in block service with id"},{"event":"cmd_output","timestamp":1607098458,"output":": : \"52184df5-c951-4a6f-8f31-29ca36bea353\"\n\u001b[0m\u001b[22m\n16:14:18.962 [info] ppl_id: 1c039b20-1415-48"},{"event":"cmd_output","timestamp":1607098458,"output":"fd-84f1-72bf08d7597e, type: PplRequests, event: persisted schedule request with request_token: c327e"},{"event":"cmd_output","timestamp":1607098458,"output":"2aa-364b-11eb-988c-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_res"},{"event":"cmd_output","timestamp":1607098458,"output":"ponse/2(L55), \n\u001b[0m\u001b[22m\n16:14:18.964 [info] ppl_id: 1c039b20-1415-48fd-84f1-72bf08d7597e, type: "},{"event":"cmd_output","timestamp":1607098458,"output":"Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.Ppl"},{"event":"cmd_output","timestamp":1607098458,"output":"sQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:14:18.966 [info] Project 123 and branch masterla"},{"event":"cmd_output","timestamp":1607098458,"output":"test_wf details updated: \"wf_id: 0f0c8554-d698-4306-ae97-ccb8818fc867, wf_number: 2\"\n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098458,"output":"14:18.967 [info] Persisted ppl_sub_init for pipeline with ppl_id: 1c039b20-1415-48fd-84f1-72bf08d75"},{"event":"cmd_output","timestamp":1607098458,"output":"97e: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits"},{"event":"cmd_output","timestamp":1607098458,"output":"\">, compile_task_id: nil, error_description: nil, id: 336, in_scheduling: false, init_type: \"regular"},{"event":"cmd_output","timestamp":1607098458,"output":"\", inserted_at: ~N[2020-12-04 16:14:18.966738], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"1c039b20-1415-48fd-84f1-72bf08d7597e\", recovery_c"},{"event":"cmd_output","timestamp":1607098458,"output":"ount: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_reques"},{"event":"cmd_output","timestamp":1607098458,"output":"t_desc: nil, updated_at: ~N[2020-12-04 16:14:18.966746]}\n\u001b[0m\u001b[22m\n16:14:18.967 [info] ppl_id: 98"},{"event":"cmd_output","timestamp":1607098458,"output":"39c632-23d6-47aa-b383-288e603c0dfe, type: PplBlocks, block_index: 0, state: running, event: exit_sch"},{"event":"cmd_output","timestamp":1607098458,"output":"eduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098458,"output":"14:18.969 [info] block_id: 52184df5-c951-4a6f-8f31-29ca36bea353, type: BlockRequests, event: persis"},{"event":"cmd_output","timestamp":1607098458,"output":"ted build and sub_ppl details for block_request: 52184df5-c951-4a6f-8f31-29ca36bea353, origin: Elixi"},{"event":"cmd_output","timestamp":1607098458,"output":"r.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:14:18.972 [inf"},{"event":"cmd_output","timestamp":1607098458,"output":"o] block_id: 52184df5-c951-4a6f-8f31-29ca36bea353, type: Tasks, state: pending, event: created, rec"},{"event":"cmd_output","timestamp":1607098458,"output":"overy_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098458,"output":"m\n16:14:18.974 [info] Request: 'run: %{\"branch_id\" => \"cbde9305-0112-4ea2-9487-6b3acfc22874\", \"bra"},{"event":"cmd_output","timestamp":1607098458,"output":"nch_name\" => \"master\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"ac_queued.yml\", \"hook_id\" => \"c"},{"event":"cmd_output","timestamp":1607098458,"output":"32a7100-364b-11eb-8a23-5254005464e2\", \"label\" => \"master\", \"organization_id\" => \"77dc0f14-b966-48cb-"},{"event":"cmd_output","timestamp":1607098458,"output":"8c61-ec506657920f\", \"owner\" => \"rt\", \"project_id\" => \"123\", \"repo_name\" => \"28_auto_cancel\", \"reques"},{"event":"cmd_output","timestamp":1607098458,"output":"t_token\" => \"c32a6836-364b-11eb-94d0-5254005464e2\", \"requester_id\" => \"5bd7deb1-8896-4513-80ff-0a595"},{"event":"cmd_output","timestamp":1607098458,"output":"1e9110e\", \"service\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id"},{"event":"cmd_output","timestamp":1607098458,"output":"\" => \"e6dceda1-ab32-4165-bde2-3f418b49a98e\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:14:18.975"},{"event":"cmd_output","timestamp":1607098458,"output":" [info] block_id: 52184df5-c951-4a6f-8f31-29ca36bea353, type: Blocks, state: running, event: exit_s"},{"event":"cmd_output","timestamp":1607098458,"output":"cheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098458,"output":"6:14:18.976 [info] ppl_id: 127f28e0-74f8-409f-bff9-06103e6ec44e, type: PplRequests, event: persiste"},{"event":"cmd_output","timestamp":1607098458,"output":"d schedule request with request_token: c32a6836-364b-11eb-94d0-5254005464e2, origin: Elixir.Ppl.PplR"},{"event":"cmd_output","timestamp":1607098458,"output":"equests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:14:18.979 [info] ppl_id: "},{"event":"cmd_output","timestamp":1607098458,"output":"127f28e0-74f8-409f-bff9-06103e6ec44e, type: Ppls, state: initializing, event: initializing, recovery"},{"event":"cmd_output","timestamp":1607098458,"output":"_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:14:18"},{"event":"cmd_output","timestamp":1607098458,"output":".981 [info] Project 123 and branch masterlatest_wf details updated: \"wf_id: e6dceda1-ab32-4165-bde2"},{"event":"cmd_output","timestamp":1607098458,"output":"-3f418b49a98e, wf_number: 3\"\n\u001b[0m\u001b[22m\n16:14:18.981 [info] Persisted ppl_sub_init for pipeline wi"},{"event":"cmd_output","timestamp":1607098458,"output":"th ppl_id: 127f28e0-74f8-409f-bff9-06103e6ec44e: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto."},{"event":"cmd_output","timestamp":1607098458,"output":"Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 33"},{"event":"cmd_output","timestamp":1607098458,"output":"7, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:14:18.981101], pipeline"},{"event":"cmd_output","timestamp":1607098458,"output":"_requests: #Ecto.Association.NotLoaded, ppl_id: \"127f2"},{"event":"cmd_output","timestamp":1607098458,"output":"8e0-74f8-409f-bff9-06103e6ec44e\", recovery_count: 0, result: nil, result_reason: nil, state: \"create"},{"event":"cmd_output","timestamp":1607098458,"output":"d\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:14:18.981107]}"},{"event":"cmd_output","timestamp":1607098458,"output":"\n\u001b[0m\u001b[22m\n16:14:18.983 [info] ppl_id: 1c039b20-1415-48fd-84f1-72bf08d7597e, type: PplRequests, e"},{"event":"cmd_output","timestamp":1607098458,"output":"vent: persisted source_args for pipeline: 1c039b20-1415-48fd-84f1-72bf08d7597e, origin: Elixir.Ppl.P"},{"event":"cmd_output","timestamp":1607098458,"output":"plRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:14:18.991 [info] Request:"},{"event":"cmd_output","timestamp":1607098458,"output":" 'run: %{\"branch_id\" => \"0d7ca110-0ee3-4552-8b35-10cf1b7ecb99\", \"branch_name\" => \"master\", \"commit_s"},{"event":"cmd_output","timestamp":1607098458,"output":"ha\" => \"75891a4469\", \"file_name\" => \"ac_queued.yml\", \"hook_id\" => \"c32c7216-364b-11eb-a158-525400546"},{"event":"cmd_output","timestamp":1607098458,"output":"4e2\", \"label\" => \"master\", \"organization_id\" => \"22d7ccb0-f859-4464-bdc8-e6e3745f59d0\", \"owner\" => \""},{"event":"cmd_output","timestamp":1607098458,"output":"rt\", \"project_id\" => \"123\", \"repo_name\" => \"28_auto_cancel\", \"request_token\" => \"c32c69ba-364b-11eb-"},{"event":"cmd_output","timestamp":1607098458,"output":"bfa8-5254005464e2\", \"requester_id\" => \"b4cc61c5-6f40-4108-8153-7893619f9caf\", \"service\" => \"local\", "},{"event":"cmd_output","timestamp":1607098458,"output":"\"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"310afd65-7f47-42e0-a652-dc"},{"event":"cmd_output","timestamp":1607098458,"output":"3382238552\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:14:18.991 [info] ppl_id: 1c039b20-1415-4"},{"event":"cmd_output","timestamp":1607098458,"output":"8fd-84f1-72bf08d7597e, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0"},{"event":"cmd_output","timestamp":1607098458,"output":", origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:18.994 [info] ppl_id: "},{"event":"cmd_output","timestamp":1607098458,"output":"d1a359f3-906b-4ac2-9932-1a37c5187f67, type: PplRequests, event: persisted schedule request with requ"},{"event":"cmd_output","timestamp":1607098458,"output":"est_token: c32c69ba-364b-11eb-bfa8-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQue"},{"event":"cmd_output","timestamp":1607098458,"output":"ries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:14:18.996 [info] ppl_id: d1a359f3-906b-4ac2-9932-1a37"},{"event":"cmd_output","timestamp":1607098458,"output":"c5187f67, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Pp"},{"event":"cmd_output","timestamp":1607098458,"output":"l.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:14:18.999 [info] Project 123 and"},{"event":"cmd_output","timestamp":1607098458,"output":" branch masterlatest_wf details updated: \"wf_id: 310afd65-7f47-42e0-a652-dc3382238552, wf_number: 4\""},{"event":"cmd_output","timestamp":1607098458,"output":"\n\u001b[0m\u001b[22m\n16:14:18.999 [info] block_id: 52184df5-c951-4a6f-8f31-29ca36bea353, type: Tasks, state"},{"event":"cmd_output","timestamp":1607098458,"output":": running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chang"},{"event":"cmd_output","timestamp":1607098459,"output":"e/1(L90), \n\u001b[0m\u001b[22m\n16:14:19.002 [info] Persisted ppl_sub_init for pipeline with ppl_id: d1a359f"},{"event":"cmd_output","timestamp":1607098459,"output":"3-906b-4ac2-9932-1a37c5187f67: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:l"},{"event":"cmd_output","timestamp":1607098459,"output":"oaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 338, in_scheduling: "},{"event":"cmd_output","timestamp":1607098459,"output":"false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:14:18.999116], pipeline_requests: #Ecto.A"},{"event":"cmd_output","timestamp":1607098459,"output":"ssociation.NotLoaded, ppl_id: \"d1a359f3-906b-4ac2-9932"},{"event":"cmd_output","timestamp":1607098459,"output":"-1a37c5187f67\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_requ"},{"event":"cmd_output","timestamp":1607098459,"output":"est: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:14:18.999122]}\n\u001b[0m\u001b[22m\n16:14"},{"event":"cmd_output","timestamp":1607098459,"output":":19.005 [info] ppl_id: 127f28e0-74f8-409f-bff9-06103e6ec44e, type: PplRequests, event: persisted so"},{"event":"cmd_output","timestamp":1607098459,"output":"urce_args for pipeline: 127f28e0-74f8-409f-bff9-06103e6ec44e, origin: Elixir.Ppl.PplRequests.Model.P"},{"event":"cmd_output","timestamp":1607098459,"output":"plRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:14:19.007 [info] ppl_id: 127f28e0-74f8-409f"},{"event":"cmd_output","timestamp":1607098459,"output":"-bff9-06103e6ec44e, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098459,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:19.011 [info] Request: 'r"},{"event":"cmd_output","timestamp":1607098459,"output":"un: %{\"branch_id\" => \"28d1e912-84fa-453f-b656-8c58758d886a\", \"branch_name\" => \"master\", \"commit_sha\""},{"event":"cmd_output","timestamp":1607098459,"output":" => \"75891a4469\", \"file_name\" => \"ac_queued.yml\", \"hook_id\" => \"c3300a34-364b-11eb-95c5-5254005464e2"},{"event":"cmd_output","timestamp":1607098459,"output":"\", \"label\" => \"master\", \"organization_id\" => \"522949ef-5f63-4a37-a5a9-6f8ea960f23a\", \"owner\" => \"rt\""},{"event":"cmd_output","timestamp":1607098459,"output":", \"project_id\" => \"123\", \"repo_name\" => \"28_auto_cancel\", \"request_token\" => \"c32fff44-364b-11eb-a00"},{"event":"cmd_output","timestamp":1607098459,"output":"9-5254005464e2\", \"requester_id\" => \"0747a72a-f1d2-4c37-9d0f-91e8bab06201\", \"service\" => \"local\", \"su"},{"event":"cmd_output","timestamp":1607098459,"output":"ppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"7be57a83-5ae7-4f9b-9592-94bc4"},{"event":"cmd_output","timestamp":1607098459,"output":"6dfbf92\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:14:19.012 [info] ppl_id: 927b6580-76bf-4539"},{"event":"cmd_output","timestamp":1607098459,"output":"-83ad-4fd42ad64206, type: PplRequests, event: persisted schedule request with request_token: c32fff4"},{"event":"cmd_output","timestamp":1607098459,"output":"4-364b-11eb-a009-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_respo"},{"event":"cmd_output","timestamp":1607098459,"output":"nse/2(L55), \n\u001b[0m\u001b[22m\n16:14:19.015 [info] ppl_id: 927b6580-76bf-4539-83ad-4fd42ad64206, type: Pp"},{"event":"cmd_output","timestamp":1607098459,"output":"ls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQ"},{"event":"cmd_output","timestamp":1607098459,"output":"ueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:14:19.017 [info] Project 123 and branch masterlate"},{"event":"cmd_output","timestamp":1607098459,"output":"st_wf details updated: \"wf_id: 7be57a83-5ae7-4f9b-9592-94bc46dfbf92, wf_number: 5\"\n\u001b[0m\u001b[22m\n16:14"},{"event":"cmd_output","timestamp":1607098459,"output":":19.018 [info] Persisted ppl_sub_init for pipeline with ppl_id: 927b6580-76bf-4539-83ad-4fd42ad6420"},{"event":"cmd_output","timestamp":1607098459,"output":"6: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">"},{"event":"cmd_output","timestamp":1607098459,"output":", compile_task_id: nil, error_description: nil, id: 339, in_scheduling: false, init_type: \"regular\","},{"event":"cmd_output","timestamp":1607098459,"output":" inserted_at: ~N[2020-12-04 16:14:19.017309], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"927b6580-76bf-4539-83ad-4fd42ad64206\", recovery_cou"},{"event":"cmd_output","timestamp":1607098459,"output":"nt: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_"},{"event":"cmd_output","timestamp":1607098459,"output":"desc: nil, updated_at: ~N[2020-12-04 16:14:19.017316]}\n\u001b[0m\u001b[22m\n16:14:19.018 [info] ppl_id: d1a3"},{"event":"cmd_output","timestamp":1607098459,"output":"59f3-906b-4ac2-9932-1a37c5187f67, type: PplRequests, event: persisted source_args for pipeline: d1a3"},{"event":"cmd_output","timestamp":1607098459,"output":"59f3-906b-4ac2-9932-1a37c5187f67, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_sou"},{"event":"cmd_output","timestamp":1607098459,"output":"rce/2(L89), \n\u001b[0m\u001b[22m\n16:14:19.021 [info] ppl_id: d1a359f3-906b-4ac2-9932-1a37c5187f67, type: Pp"},{"event":"cmd_output","timestamp":1607098459,"output":"lSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Imp"},{"event":"cmd_output","timestamp":1607098459,"output":"l.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:19.022 [info] ppl_id: 1c039b20-1415-48fd-84f1-72bf08d"},{"event":"cmd_output","timestamp":1607098459,"output":"7597e, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098459,"output":"ixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:19.025 [info] Request: 'run: %{\"br"},{"event":"cmd_output","timestamp":1607098459,"output":"anch_id\" => \"ec3ba975-7a7e-4120-b9dc-fda101ee41fa\", \"branch_name\" => \"master\", \"commit_sha\" => \"7589"},{"event":"cmd_output","timestamp":1607098459,"output":"1a4469\", \"file_name\" => \"ac_queued.yml\", \"hook_id\" => \"c331e3fe-364b-11eb-81db-5254005464e2\", \"label"},{"event":"cmd_output","timestamp":1607098459,"output":"\" => \"master\", \"organization_id\" => \"5394ff2b-bd5f-48ee-9aca-c2658566d58f\", \"owner\" => \"rt\", \"projec"},{"event":"cmd_output","timestamp":1607098459,"output":"t_id\" => \"123\", \"repo_name\" => \"28_auto_cancel\", \"request_token\" => \"c331db3e-364b-11eb-ba24-5254005"},{"event":"cmd_output","timestamp":1607098459,"output":"464e2\", \"requester_id\" => \"9cdc4528-f61e-4fdc-b909-3b7cbc5ecd20\", \"service\" => \"local\", \"suppressed_"},{"event":"cmd_output","timestamp":1607098459,"output":"attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"3159c7a0-44c2-43dc-8818-cd2202e09f48\","},{"event":"cmd_output","timestamp":1607098459,"output":" \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:14:19.027 [info] ppl_id: e9be1a10-86ae-419d-b49f-eba"},{"event":"cmd_output","timestamp":1607098459,"output":"7ed8bb44a, type: PplRequests, event: persisted schedule request with request_token: c331db3e-364b-11"},{"event":"cmd_output","timestamp":1607098459,"output":"eb-ba24-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55"},{"event":"cmd_output","timestamp":1607098459,"output":"), \n\u001b[0m\u001b[22m\n16:14:19.029 [info] ppl_id: e9be1a10-86ae-419d-b49f-eba7ed8bb44a, type: Ppls, state"},{"event":"cmd_output","timestamp":1607098459,"output":": initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.pr"},{"event":"cmd_output","timestamp":1607098459,"output":"ocess_response/2(L124), \n\u001b[0m\u001b[22m\n16:14:19.031 [info] Project 123 and branch masterlatest_wf det"},{"event":"cmd_output","timestamp":1607098459,"output":"ails updated: \"wf_id: 3159c7a0-44c2-43dc-8818-cd2202e09f48, wf_number: 6\"\n\u001b[0m\u001b[22m\n16:14:19.031 ["},{"event":"cmd_output","timestamp":1607098459,"output":"info] Persisted ppl_sub_init for pipeline with ppl_id: e9be1a10-86ae-419d-b49f-eba7ed8bb44a: %Ppl.P"},{"event":"cmd_output","timestamp":1607098459,"output":"plSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile"},{"event":"cmd_output","timestamp":1607098459,"output":"_task_id: nil, error_description: nil, id: 340, in_scheduling: false, init_type: \"regular\", inserted"},{"event":"cmd_output","timestamp":1607098459,"output":"_at: ~N[2020-12-04 16:14:19.031208], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"e9be1a10-86ae-419d-b49f-eba7ed8bb44a\", recovery_count: 0, re"},{"event":"cmd_output","timestamp":1607098459,"output":"sult: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil"},{"event":"cmd_output","timestamp":1607098459,"output":", updated_at: ~N[2020-12-04 16:14:19.031221]}\n\u001b[0m\u001b[22m\n16:14:19.043 [info] ppl_id: 927b6580-76bf"},{"event":"cmd_output","timestamp":1607098459,"output":"-4539-83ad-4fd42ad64206, type: PplRequests, event: persisted source_args for pipeline: 927b6580-76bf"},{"event":"cmd_output","timestamp":1607098459,"output":"-4539-83ad-4fd42ad64206, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89"},{"event":"cmd_output","timestamp":1607098459,"output":"), \n\u001b[0m\u001b[22m\n16:14:19.047 [info] ppl_id: 927b6580-76bf-4539-83ad-4fd42ad64206, type: PplSubInits"},{"event":"cmd_output","timestamp":1607098459,"output":", state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_sta"},{"event":"cmd_output","timestamp":1607098459,"output":"te_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:19.061 [info] ppl_id: 127f28e0-74f8-409f-bff9-06103e6ec44e, ty"},{"event":"cmd_output","timestamp":1607098459,"output":"pe: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loop"},{"event":"cmd_output","timestamp":1607098459,"output":"er.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:19.062 [info] ppl_id: e9be1a10-86ae-419d-b4"},{"event":"cmd_output","timestamp":1607098459,"output":"9f-eba7ed8bb44a, type: PplRequests, event: persisted source_args for pipeline: e9be1a10-86ae-419d-b4"},{"event":"cmd_output","timestamp":1607098459,"output":"9f-eba7ed8bb44a, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098459,"output":"m\u001b[22m\n16:14:19.065 [info] ppl_id: e9be1a10-86ae-419d-b49f-eba7ed8bb44a, type: PplSubInits, state:"},{"event":"cmd_output","timestamp":1607098459,"output":" fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chang"},{"event":"cmd_output","timestamp":1607098459,"output":"e/1(L90), \n\u001b[0m\u001b[22m\n16:14:19.071 [info] ppl_id: 1c039b20-1415-48fd-84f1-72bf08d7597e, type: PplR"},{"event":"cmd_output","timestamp":1607098459,"output":"equests, event: persisted definition for request with request_token: c327e2aa-364b-11eb-988c-5254005"},{"event":"cmd_output","timestamp":1607098459,"output":"464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098459,"output":"\n16:14:19.075 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.al"},{"event":"cmd_output","timestamp":1607098459,"output":"l_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:19.075 [info] ppl_id: 1c039b20-1415-48fd-84f1-72bf08d7597e, type:"},{"event":"cmd_output","timestamp":1607098459,"output":" PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.P"},{"event":"cmd_output","timestamp":1607098459,"output":"pl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:19.077 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098459,"output":": 1c039b20-1415-48fd-84f1-72bf08d7597e, type: PplSubInits, state: done, result: passed, event: exit_"},{"event":"cmd_output","timestamp":1607098459,"output":"scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098459,"output":"16:14:19.083 [info] ppl_id: d1a359f3-906b-4ac2-9932-1a37c5187f67, type: PplSubInits, state: regular"},{"event":"cmd_output","timestamp":1607098459,"output":"_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1("},{"event":"cmd_output","timestamp":1607098459,"output":"L90), \n\u001b[0m\u001b[22m\n16:14:19.085 [info] ppl_id: 1c039b20-1415-48fd-84f1-72bf08d7597e, type: Ppls, st"},{"event":"cmd_output","timestamp":1607098459,"output":"ate: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_ch"},{"event":"cmd_output","timestamp":1607098459,"output":"ange/1(L90), \n\u001b[0m\u001b[22m\n16:14:19.086 [info] ppl_id: 1c039b20-1415-48fd-84f1-72bf08d7597e, type: P"},{"event":"cmd_output","timestamp":1607098459,"output":"plBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098459,"output":"Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:19.098 [info] ppl_id: 1c039b20-1415-48f"},{"event":"cmd_output","timestamp":1607098459,"output":"d-84f1-72bf08d7597e, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098459,"output":"Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:19.110 [info] ppl_id: 927b6580-7"},{"event":"cmd_output","timestamp":1607098459,"output":"6bf-4539-83ad-4fd42ad64206, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery"},{"event":"cmd_output","timestamp":1607098459,"output":"_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:19.118 [info] "},{"event":"cmd_output","timestamp":1607098459,"output":" ppl_id: 127f28e0-74f8-409f-bff9-06103e6ec44e, type: PplRequests, event: persisted definition for re"},{"event":"cmd_output","timestamp":1607098459,"output":"quest with request_token: c32a6836-364b-11eb-94d0-5254005464e2, origin: Elixir.Ppl.PplRequests.Model"},{"event":"cmd_output","timestamp":1607098459,"output":".PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:14:19.123 [info] event: created, orig"},{"event":"cmd_output","timestamp":1607098459,"output":"in: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:19.123 [i"},{"event":"cmd_output","timestamp":1607098459,"output":"nfo] ppl_id: 127f28e0-74f8-409f-bff9-06103e6ec44e, type: PplBlocks, block_index: 0, state: initiali"},{"event":"cmd_output","timestamp":1607098459,"output":"zing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState."},{"event":"cmd_output","timestamp":1607098459,"output":"all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:19.125 [info] ppl_id: 127f28e0-74f8-409f-bff9-06103e6ec44e, typ"},{"event":"cmd_output","timestamp":1607098459,"output":"e: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098459,"output":"ir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:19.125 [info] ppl_id: e9be1a10-86ae-"},{"event":"cmd_output","timestamp":1607098459,"output":"419d-b49f-eba7ed8bb44a, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_cou"},{"event":"cmd_output","timestamp":1607098459,"output":"nt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:19.130 [info] ppl"},{"event":"cmd_output","timestamp":1607098459,"output":"_id: 127f28e0-74f8-409f-bff9-06103e6ec44e, type: Ppls, state: pending, event: exit_scheduling, recov"},{"event":"cmd_output","timestamp":1607098459,"output":"ery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:19.136 [inf"},{"event":"cmd_output","timestamp":1607098459,"output":"o] ppl_id: 127f28e0-74f8-409f-bff9-06103e6ec44e, type: PplBlocks, block_index: 0, state: waiting, e"},{"event":"cmd_output","timestamp":1607098459,"output":"vent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n"},{"event":"cmd_output","timestamp":1607098459,"output":"\u001b[0m\u001b[22m\n16:14:19.142 [info] ppl_id: 127f28e0-74f8-409f-bff9-06103e6ec44e, type: Ppls, state: que"},{"event":"cmd_output","timestamp":1607098459,"output":"uing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098459,"output":"90), \n\u001b[0m\u001b[22m\n16:14:19.157 [info] ppl_id: d1a359f3-906b-4ac2-9932-1a37c5187f67, type: PplReques"},{"event":"cmd_output","timestamp":1607098459,"output":"ts, event: persisted definition for request with request_token: c32c69ba-364b-11eb-bfa8-5254005464e2"},{"event":"cmd_output","timestamp":1607098459,"output":", origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098459,"output":"14:19.160 [info] ppl_id: 1c039b20-1415-48fd-84f1-72bf08d7597e, type: Ppls, state: done, result: can"},{"event":"cmd_output","timestamp":1607098459,"output":"celed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1("},{"event":"cmd_output","timestamp":1607098459,"output":"L90), \n\u001b[0m\u001b[22m\n16:14:19.172 [info] ppl_id: 1c039b20-1415-48fd-84f1-72bf08d7597e, type: PplBlock"},{"event":"cmd_output","timestamp":1607098459,"output":"s, block_index: 0, state: done, result: canceled, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098459,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:19.174 [info] event: created, o"},{"event":"cmd_output","timestamp":1607098459,"output":"rigin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:19.174"},{"event":"cmd_output","timestamp":1607098459,"output":" [info] ppl_id: d1a359f3-906b-4ac2-9932-1a37c5187f67, type: PplBlocks, block_index: 0, state: initi"},{"event":"cmd_output","timestamp":1607098459,"output":"alizing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitSta"},{"event":"cmd_output","timestamp":1607098459,"output":"te.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:19.176 [info] ppl_id: d1a359f3-906b-4ac2-9932-1a37c5187f67, "},{"event":"cmd_output","timestamp":1607098459,"output":"type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: E"},{"event":"cmd_output","timestamp":1607098459,"output":"lixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:19.185 [info] ppl_id: d1a359f3-90"},{"event":"cmd_output","timestamp":1607098459,"output":"6b-4ac2-9932-1a37c5187f67, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098459,"output":"igin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:19.189 [info] ppl_id: d1a3"},{"event":"cmd_output","timestamp":1607098459,"output":"59f3-906b-4ac2-9932-1a37c5187f67, type: PplBlocks, block_index: 0, state: waiting, event: exit_sched"},{"event":"cmd_output","timestamp":1607098459,"output":"uling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14"},{"event":"cmd_output","timestamp":1607098459,"output":":19.199 [info] ppl_id: d1a359f3-906b-4ac2-9932-1a37c5187f67, type: Ppls, state: queuing, event: exi"},{"event":"cmd_output","timestamp":1607098459,"output":"t_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098459,"output":"\n16:14:19.206 [info] ppl_id: 127f28e0-74f8-409f-bff9-06103e6ec44e, type: Ppls, state: done, result"},{"event":"cmd_output","timestamp":1607098459,"output":": canceled, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chan"},{"event":"cmd_output","timestamp":1607098459,"output":"ge/1(L90), \n\u001b[0m\u001b[22m\n16:14:19.208 [info] ppl_id: 927b6580-76bf-4539-83ad-4fd42ad64206, type: Ppl"},{"event":"cmd_output","timestamp":1607098459,"output":"Requests, event: persisted definition for request with request_token: c32fff44-364b-11eb-a009-525400"},{"event":"cmd_output","timestamp":1607098459,"output":"5464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098459,"output":"m\n16:14:19.213 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.a"},{"event":"cmd_output","timestamp":1607098459,"output":"ll_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:19.213 [info] ppl_id: 927b6580-76bf-4539-83ad-4fd42ad64206, type"},{"event":"cmd_output","timestamp":1607098459,"output":": PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098459,"output":"Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:19.216 [info] ppl_i"},{"event":"cmd_output","timestamp":1607098459,"output":"d: 927b6580-76bf-4539-83ad-4fd42ad64206, type: PplSubInits, state: done, result: passed, event: exit"},{"event":"cmd_output","timestamp":1607098459,"output":"_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098459,"output":"\n16:14:19.217 [info] ppl_id: 127f28e0-74f8-409f-bff9-06103e6ec44e, type: PplBlocks, block_index: 0,"},{"event":"cmd_output","timestamp":1607098459,"output":" state: done, result: canceled, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM"},{"event":"cmd_output","timestamp":1607098459,"output":".Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:19.222 [info] ppl_id: 927b6580-76bf-4539-83ad-4fd"},{"event":"cmd_output","timestamp":1607098459,"output":"42ad64206, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loo"},{"event":"cmd_output","timestamp":1607098459,"output":"per.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:19.226 [info] ppl_id: 927b6580-76bf-4539-8"},{"event":"cmd_output","timestamp":1607098459,"output":"3ad-4fd42ad64206, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_"},{"event":"cmd_output","timestamp":1607098459,"output":"count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:19.235 [info] "},{"event":"cmd_output","timestamp":1607098459,"output":"ppl_id: 927b6580-76bf-4539-83ad-4fd42ad64206, type: Ppls, state: queuing, event: exit_scheduling, re"},{"event":"cmd_output","timestamp":1607098459,"output":"covery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:19.243 ["},{"event":"cmd_output","timestamp":1607098459,"output":"info] ppl_id: d1a359f3-906b-4ac2-9932-1a37c5187f67, type: Ppls, state: done, result: canceled, even"},{"event":"cmd_output","timestamp":1607098459,"output":"t: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098459,"output":"m\u001b[22m\n16:14:19.249 [info] ppl_id: d1a359f3-906b-4ac2-9932-1a37c5187f67, type: PplBlocks, block_in"},{"event":"cmd_output","timestamp":1607098459,"output":"dex: 0, state: done, result: canceled, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loo"},{"event":"cmd_output","timestamp":1607098459,"output":"per.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:19.258 [info] ppl_id: e9be1a10-86ae-419d-b"},{"event":"cmd_output","timestamp":1607098459,"output":"49f-eba7ed8bb44a, type: PplRequests, event: persisted definition for request with request_token: c33"},{"event":"cmd_output","timestamp":1607098459,"output":"1db3e-364b-11eb-ba24-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_de"},{"event":"cmd_output","timestamp":1607098459,"output":"finition/3(L76), \n\u001b[0m\u001b[22m\n16:14:19.266 [info] event: created, origin: Elixir.Ppl.PplSubInits.ST"},{"event":"cmd_output","timestamp":1607098459,"output":"MHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:19.266 [info] ppl_id: e9be1a10-86ae-4"},{"event":"cmd_output","timestamp":1607098459,"output":"19d-b49f-eba7ed8bb44a, type: PplBlocks, block_index: 0, state: initializing, event: created, recover"},{"event":"cmd_output","timestamp":1607098459,"output":"y_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098459,"output":"\n16:14:19.268 [info] ppl_id: e9be1a10-86ae-419d-b49f-eba7ed8bb44a, type: PplSubInits, state: done, "},{"event":"cmd_output","timestamp":1607098459,"output":"result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_"},{"event":"cmd_output","timestamp":1607098459,"output":"change/1(L90), \n\u001b[0m\u001b[22m\n16:14:19.273 [info] ppl_id: e9be1a10-86ae-419d-b49f-eba7ed8bb44a, type:"},{"event":"cmd_output","timestamp":1607098459,"output":" PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098459,"output":"r.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:19.276 [info] ppl_id: e9be1a10-86ae-4"},{"event":"cmd_output","timestamp":1607098459,"output":"19d-b49f-eba7ed8bb44a, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098459,"output":": Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:19.289 [info] ppl_id: e9be1a10"},{"event":"cmd_output","timestamp":1607098459,"output":"-86ae-419d-b49f-eba7ed8bb44a, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098459,"output":" origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:19.291 [info] ppl_id: 9"},{"event":"cmd_output","timestamp":1607098459,"output":"27b6580-76bf-4539-83ad-4fd42ad64206, type: Ppls, state: done, result: canceled, event: exit_scheduli"},{"event":"cmd_output","timestamp":1607098459,"output":"ng, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:19"},{"event":"cmd_output","timestamp":1607098459,"output":".298 [info] ppl_id: 927b6580-76bf-4539-83ad-4fd42ad64206, type: PplBlocks, block_index: 0, state: d"},{"event":"cmd_output","timestamp":1607098459,"output":"one, result: canceled, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098466,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:26.066 [info] block_id: 52184df5-c951-4a6f-8f31-29ca36bea3"},{"event":"cmd_output","timestamp":1607098466,"output":"53, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.I"},{"event":"cmd_output","timestamp":1607098466,"output":"mpl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:26.071 [info] block_id: 52184df5-c951-4a6f-8f31-29c"},{"event":"cmd_output","timestamp":1607098466,"output":"a36bea353, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loop"},{"event":"cmd_output","timestamp":1607098466,"output":"er.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:26.081 [info] ppl_id: 9839c632-23d6-47aa-b3"},{"event":"cmd_output","timestamp":1607098466,"output":"83-288e603c0dfe, block_id: 52184df5-c951-4a6f-8f31-29ca36bea353, type: PplBlocks, block_index: 0, st"},{"event":"cmd_output","timestamp":1607098466,"output":"ate: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl"},{"event":"cmd_output","timestamp":1607098466,"output":".log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:26.091 [info] ppl_id: 9839c632-23d6-47aa-b383-288e603c"},{"event":"cmd_output","timestamp":1607098466,"output":"0dfe, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098466,"output":"ixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:26.169 [info] ppl_id: e9be1a10-86a"},{"event":"cmd_output","timestamp":1607098466,"output":"e-419d-b49f-eba7ed8bb44a, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098466,"output":"gin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:26.178 [info] PplBlocks Wai"},{"event":"cmd_output","timestamp":1607098466,"output":"tingState STM is scheduling block 0 from pipeline: \"e9be1a10-86ae-419d-b49f-eba7ed8bb44a\"\n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098466,"output":"\n16:14:26.182 [info] block_id: 7bf002d1-0d99-494e-9cca-67e3bffc6d56, type: BlockRequests, event: p"},{"event":"cmd_output","timestamp":1607098466,"output":"ersisted block run request from ppl e9be1a10-86ae-419d-b49f-eba7ed8bb44a for block 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098466,"output":".Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:14:26.184 ["},{"event":"cmd_output","timestamp":1607098466,"output":"info] block_id: 7bf002d1-0d99-494e-9cca-67e3bffc6d56, type: Blocks, state: initializing, event: ini"},{"event":"cmd_output","timestamp":1607098466,"output":"tializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098466,"output":"[22m\n16:14:26.186 [info] Block 0 of pipeline with id: e9be1a10-86ae-419d-b49f-eba7ed8bb44a schedul"},{"event":"cmd_output","timestamp":1607098466,"output":"ed in block service with id: : \"7bf002d1-0d99-494e-9cca-67e3bffc6d56\"\n\u001b[0m\u001b[22m\n16:14:26.188 [info"},{"event":"cmd_output","timestamp":1607098466,"output":"] ppl_id: e9be1a10-86ae-419d-b49f-eba7ed8bb44a, type: PplBlocks, block_index: 0, state: running, ev"},{"event":"cmd_output","timestamp":1607098466,"output":"ent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b"},{"event":"cmd_output","timestamp":1607098466,"output":"[0m\u001b[22m\n16:14:26.191 [info] block_id: 7bf002d1-0d99-494e-9cca-67e3bffc6d56, type: BlockRequests, "},{"event":"cmd_output","timestamp":1607098466,"output":"event: persisted build and sub_ppl details for block_request: 7bf002d1-0d99-494e-9cca-67e3bffc6d56, "},{"event":"cmd_output","timestamp":1607098466,"output":"origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098466,"output":"4:26.192 [info] block_id: 7bf002d1-0d99-494e-9cca-67e3bffc6d56, type: Tasks, state: pending, event:"},{"event":"cmd_output","timestamp":1607098466,"output":" created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167"},{"event":"cmd_output","timestamp":1607098466,"output":"), \n\u001b[0m\u001b[22m\n16:14:26.194 [info] block_id: 7bf002d1-0d99-494e-9cca-67e3bffc6d56, type: Blocks, s"},{"event":"cmd_output","timestamp":1607098466,"output":"tate: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098466,"output":"hange/1(L90), \n\u001b[0m\u001b[22m\n16:14:26.203 [info] block_id: 7bf002d1-0d99-494e-9cca-67e3bffc6d56, type"},{"event":"cmd_output","timestamp":1607098466,"output":": Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.l"},{"event":"cmd_output","timestamp":1607098473,"output":"og_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:33.291 [info] block_id: 7bf002d1-0d99-494e-9cca-67e3bffc"},{"event":"cmd_output","timestamp":1607098473,"output":"6d56, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM"},{"event":"cmd_output","timestamp":1607098473,"output":".Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:33.301 [info] block_id: 7bf002d1-0d99-494e-9cca-6"},{"event":"cmd_output","timestamp":1607098473,"output":"7e3bffc6d56, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Lo"},{"event":"cmd_output","timestamp":1607098473,"output":"oper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:33.310 [info] ppl_id: e9be1a10-86ae-419d-"},{"event":"cmd_output","timestamp":1607098473,"output":"b49f-eba7ed8bb44a, block_id: 7bf002d1-0d99-494e-9cca-67e3bffc6d56, type: PplBlocks, block_index: 0, "},{"event":"cmd_output","timestamp":1607098473,"output":"state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Im"},{"event":"cmd_output","timestamp":1607098473,"output":"pl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:33.325 [info] ppl_id: e9be1a10-86ae-419d-b49f-eba7ed"},{"event":"cmd_output","timestamp":1607098473,"output":"8bb44a, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098473,"output":"Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test auto_cancel/queued terminates o"},{"event":"cmd_output","timestamp":1607098473,"output":"lder pipelines that are not running (14983.6ms)\u001b[0m\n * test auto_cancel/running terminates older p"},{"event":"cmd_output","timestamp":1607098473,"output":"ipelines that are either running or queing/pending\u001b[22m\n16:14:33.804 [info] Periodic from module E"},{"event":"cmd_output","timestamp":1607098473,"output":"lixir.Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.STMHandler.InitializingState :"},{"event":"cmd_output","timestamp":1607098473,"output":": period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, "},{"event":"cmd_output","timestamp":1607098473,"output":"recurring args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_"},{"event":"cmd_output","timestamp":1607098473,"output":"query: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher_cb: #Function<0.125326080/1 in"},{"event":"cmd_output","timestamp":1607098473,"output":" Ppl.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_requ"},{"event":"cmd_output","timestamp":1607098473,"output":"est, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supe"},{"event":"cmd_output","timestamp":1607098473,"output":"rvisor: :skip}\n\u001b[0m\u001b[22m\n16:14:33.805 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.Pend"},{"event":"cmd_output","timestamp":1607098473,"output":"ingState with name Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beh"},{"event":"cmd_output","timestamp":1607098473,"output":"older-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"pending\","},{"event":"cmd_output","timestamp":1607098473,"output":" \"queuing\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_st"},{"event":"cmd_output","timestamp":1607098473,"output":"ate: \"pending\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, rep"},{"event":"cmd_output","timestamp":1607098473,"output":"o: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count,"},{"event":"cmd_output","timestamp":1607098473,"output":" :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:14:33.80"},{"event":"cmd_output","timestamp":1607098473,"output":"5 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.QueuingState with name Elixir.Ppl.Ppls.STM"},{"event":"cmd_output","timestamp":1607098473,"output":"Handler.QueuingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-"},{"event":"cmd_output","timestamp":1607098473,"output":"QueuingState\"]}, recurring args: %{allowed_states: [\"queuing\", \"running\", \"done\"], cooling_time_sec:"},{"event":"cmd_output","timestamp":1607098473,"output":" -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", publisher_cb: #Function<0.125102"},{"event":"cmd_output","timestamp":1607098473,"output":"843/1 in Ppl.Ppls.STMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_r"},{"event":"cmd_output","timestamp":1607098473,"output":"equest, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_s"},{"event":"cmd_output","timestamp":1607098473,"output":"upervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:33.805 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.R"},{"event":"cmd_output","timestamp":1607098473,"output":"unningState with name Elixir.Ppl.Ppls.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl."},{"event":"cmd_output","timestamp":1607098473,"output":"beholder-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"runnin"},{"event":"cmd_output","timestamp":1607098473,"output":"g\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \""},{"event":"cmd_output","timestamp":1607098473,"output":"running\", publisher_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler.RunningState.args/0>, repo: Pp"},{"event":"cmd_output","timestamp":1607098473,"output":"l.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl"},{"event":"cmd_output","timestamp":1607098473,"output":"_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:14:33.806 [in"},{"event":"cmd_output","timestamp":1607098473,"output":"fo] Periodic from module Elixir.Ppl.Ppls.STMHandler.StoppingState with name Elixir.Ppl.Ppls.STMHand"},{"event":"cmd_output","timestamp":1607098473,"output":"ler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Sto"},{"event":"cmd_output","timestamp":1607098473,"output":"ppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial"},{"event":"cmd_output","timestamp":1607098473,"output":"_query: Ppl.Ppls.Model.Ppls, observed_state: \"stopping\", publisher_cb: #Function<0.71803493/1 in Ppl"},{"event":"cmd_output","timestamp":1607098473,"output":".Ppls.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :up"},{"event":"cmd_output","timestamp":1607098473,"output":"dated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: "},{"event":"cmd_output","timestamp":1607098473,"output":":skip}\n\u001b[0m\u001b[22m\n16:14:33.806 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.Creat"},{"event":"cmd_output","timestamp":1607098473,"output":"edState with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 100 ms, metric_name: {\"P"},{"event":"cmd_output","timestamp":1607098473,"output":"pl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args: %{allowed_states"},{"event":"cmd_output","timestamp":1607098473,"output":": [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, obser"},{"event":"cmd_output","timestamp":1607098473,"output":"ved_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, "},{"event":"cmd_output","timestamp":1607098473,"output":":updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, "},{"event":"cmd_output","timestamp":1607098473,"output":"task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:33.806 [info] Periodic from module Elixir.Ppl.PplSubInits"},{"event":"cmd_output","timestamp":1607098473,"output":".STMHandler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 m"},{"event":"cmd_output","timestamp":1607098473,"output":"s, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring ar"},{"event":"cmd_output","timestamp":1607098473,"output":"gs: %{allowed_states: [\"regular_init\", \"compilation\", \"done\"], cooling_time_sec: -2, initial_query: "},{"event":"cmd_output","timestamp":1607098473,"output":"Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRe"},{"event":"cmd_output","timestamp":1607098473,"output":"po, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], sc"},{"event":"cmd_output","timestamp":1607098473,"output":"hema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:33.806 [info] Pe"},{"event":"cmd_output","timestamp":1607098473,"output":"riodic from module Elixir.Ppl.PplSubInits.STMHandler.CompilationState with name Elixir.Ppl.PplSubIni"},{"event":"cmd_output","timestamp":1607098473,"output":"ts.STMHandler.CompilationState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSub"},{"event":"cmd_output","timestamp":1607098473,"output":"Inits-STMHandler-CompilationState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilatio"},{"event":"cmd_output","timestamp":1607098473,"output":"n\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, obs"},{"event":"cmd_output","timestamp":1607098473,"output":"erved_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_req"},{"event":"cmd_output","timestamp":1607098473,"output":"uest, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubI"},{"event":"cmd_output","timestamp":1607098473,"output":"nits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:33.807 [info] Periodic from module Elixir.Ppl.PplSu"},{"event":"cmd_output","timestamp":1607098473,"output":"bInits.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: p"},{"event":"cmd_output","timestamp":1607098473,"output":"eriod: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]"},{"event":"cmd_output","timestamp":1607098473,"output":"}, recurring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.M"},{"event":"cmd_output","timestamp":1607098473,"output":"odel.PplSubInits, observed_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning"},{"event":"cmd_output","timestamp":1607098473,"output":": [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098473,"output":"SubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:33.807 [info] Periodic from m"},{"event":"cmd_output","timestamp":1607098473,"output":"odule Elixir.Ppl.PplBlocks.STMHandler.InitializingState with name Elixir.Ppl.PplBlocks.STMHandler.In"},{"event":"cmd_output","timestamp":1607098473,"output":"itializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-"},{"event":"cmd_output","timestamp":1607098473,"output":"InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"waiting\", \"done\"], cooling"},{"event":"cmd_output","timestamp":1607098473,"output":"_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"initializing\", publishe"},{"event":"cmd_output","timestamp":1607098473,"output":"r_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, "},{"event":"cmd_output","timestamp":1607098473,"output":":recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :sk"},{"event":"cmd_output","timestamp":1607098473,"output":"ip}\n\u001b[0m\u001b[22m\n16:14:33.807 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.WaitingSta"},{"event":"cmd_output","timestamp":1607098473,"output":"te with name Elixir.Ppl.PplBlocks.STMHandler.WaitingState :: period: 1000 ms, metric_name: {\"Ppl.beh"},{"event":"cmd_output","timestamp":1607098473,"output":"older-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurring args: %{allowed_states: [\"wait"},{"event":"cmd_output","timestamp":1607098473,"output":"ing\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observe"},{"event":"cmd_output","timestamp":1607098473,"output":"d_state: \"waiting\", publisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.arg"},{"event":"cmd_output","timestamp":1607098473,"output":"s/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recove"},{"event":"cmd_output","timestamp":1607098473,"output":"ry_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b["},{"event":"cmd_output","timestamp":1607098473,"output":"0m\u001b[22m\n16:14:33.807 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.RunningState with"},{"event":"cmd_output","timestamp":1607098473,"output":" name Elixir.Ppl.PplBlocks.STMHandler.RunningState :: period: 1000 ms, metric_name: {\"Ppl.beholder-w"},{"event":"cmd_output","timestamp":1607098473,"output":"ake_up\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \""},{"event":"cmd_output","timestamp":1607098473,"output":"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_sta"},{"event":"cmd_output","timestamp":1607098473,"output":"te: \"running\", publisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0>"},{"event":"cmd_output","timestamp":1607098473,"output":", repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_c"},{"event":"cmd_output","timestamp":1607098473,"output":"ount, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :sk"},{"event":"cmd_output","timestamp":1607098473,"output":"ip}\n\u001b[0m\u001b[22m\n16:14:33.808 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.StoppingSt"},{"event":"cmd_output","timestamp":1607098473,"output":"ate with name Elixir.Ppl.PplBlocks.STMHandler.StoppingState :: period: 1000 ms, metric_name: {\"Ppl.b"},{"event":"cmd_output","timestamp":1607098473,"output":"eholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"s"},{"event":"cmd_output","timestamp":1607098473,"output":"topping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_stat"},{"event":"cmd_output","timestamp":1607098473,"output":"e: \"stopping\", publisher_cb: #Function<0.104215991/1 in Ppl.PplBlocks.STMHandler.StoppingState.args/"},{"event":"cmd_output","timestamp":1607098473,"output":"0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery"},{"event":"cmd_output","timestamp":1607098473,"output":"_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :"},{"event":"cmd_output","timestamp":1607098473,"output":"skip}\n\u001b[0m\u001b[22m\n16:14:33.808 [info] Periodic from module Elixir.Block.Blocks.STMHandler.Initializ"},{"event":"cmd_output","timestamp":1607098473,"output":"ingState with name Elixir.Block.Blocks.STMHandler.InitializingState :: period: 100 ms, metric_name: "},{"event":"cmd_output","timestamp":1607098473,"output":"{\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_s"},{"event":"cmd_output","timestamp":1607098473,"output":"tates: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Blocks.Model.Blocks, observed_"},{"event":"cmd_output","timestamp":1607098473,"output":"state: \"initializing\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_reques"},{"event":"cmd_output","timestamp":1607098473,"output":"t, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervi"},{"event":"cmd_output","timestamp":1607098473,"output":"sor: :skip}\n\u001b[0m\u001b[22m\n16:14:33.808 [info] Periodic from module Elixir.Block.Blocks.STMHandler.Run"},{"event":"cmd_output","timestamp":1607098473,"output":"ningState with name Elixir.Block.Blocks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Pp"},{"event":"cmd_output","timestamp":1607098473,"output":"l.beholder-wake_up\", [\"Block-Blocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\""},{"event":"cmd_output","timestamp":1607098473,"output":"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, obser"},{"event":"cmd_output","timestamp":1607098473,"output":"ved_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request"},{"event":"cmd_output","timestamp":1607098473,"output":", :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervis"},{"event":"cmd_output","timestamp":1607098473,"output":"or: :skip}\n\u001b[0m\u001b[22m\n16:14:33.808 [info] Periodic from module Elixir.Block.Blocks.STMHandler.Stop"},{"event":"cmd_output","timestamp":1607098473,"output":"pingState with name Elixir.Block.Blocks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"P"},{"event":"cmd_output","timestamp":1607098473,"output":"pl.beholder-wake_up\", [\"Block-Blocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: "},{"event":"cmd_output","timestamp":1607098473,"output":"[\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state"},{"event":"cmd_output","timestamp":1607098473,"output":": \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updat"},{"event":"cmd_output","timestamp":1607098473,"output":"ed_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :ski"},{"event":"cmd_output","timestamp":1607098473,"output":"p}\n\u001b[0m\u001b[22m\n16:14:33.808 [info] Periodic from module Elixir.Block.Tasks.STMHandler.PendingState "},{"event":"cmd_output","timestamp":1607098473,"output":"with name Elixir.Block.Tasks.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-"},{"event":"cmd_output","timestamp":1607098473,"output":"wake_up\", [\"Block-Tasks-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"running\", \"d"},{"event":"cmd_output","timestamp":1607098473,"output":"one\"], cooling_time_sec: 0, initial_query: Block.Tasks.Model.Tasks, observed_state: \"pending\", publi"},{"event":"cmd_output","timestamp":1607098473,"output":"sher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :rec"},{"event":"cmd_output","timestamp":1607098473,"output":"overy_count, :block_id, :build_request_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}"},{"event":"cmd_output","timestamp":1607098473,"output":"\n\u001b[0m\u001b[22m\n16:14:33.809 [info] Periodic from module Elixir.Block.Tasks.STMHandler.RunningState wi"},{"event":"cmd_output","timestamp":1607098473,"output":"th name Elixir.Block.Tasks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wa"},{"event":"cmd_output","timestamp":1607098473,"output":"ke_up\", [\"Block-Tasks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"sto"},{"event":"cmd_output","timestamp":1607098473,"output":"pping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"runn"},{"event":"cmd_output","timestamp":1607098473,"output":"ing\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :"},{"event":"cmd_output","timestamp":1607098473,"output":"state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098473,"output":"22m\n16:14:33.809 [info] Periodic from module Elixir.Block.Tasks.STMHandler.StoppingState with name"},{"event":"cmd_output","timestamp":1607098473,"output":" Elixir.Block.Tasks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\""},{"event":"cmd_output","timestamp":1607098473,"output":", [\"Block-Tasks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"],"},{"event":"cmd_output","timestamp":1607098473,"output":" cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"stopping\", publisher"},{"event":"cmd_output","timestamp":1607098473,"output":"_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recover"},{"event":"cmd_output","timestamp":1607098473,"output":"y_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:33.8"},{"event":"cmd_output","timestamp":1607098473,"output":"12 [info] Request: 'run: %{\"branch_id\" => \"96d68510-c96c-4c72-b722-cd7280381701\", \"branch_name\" => "},{"event":"cmd_output","timestamp":1607098473,"output":"\"master\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"ac_running.yml\", \"hook_id\" => \"cc029884-364b"},{"event":"cmd_output","timestamp":1607098473,"output":"-11eb-a1e9-5254005464e2\", \"label\" => \"master\", \"organization_id\" => \"640de9a9-8089-4ffe-86bb-1490aba"},{"event":"cmd_output","timestamp":1607098473,"output":"1eb6d\", \"owner\" => \"rt\", \"project_id\" => \"123\", \"repo_name\" => \"28_auto_cancel\", \"request_token\" => "},{"event":"cmd_output","timestamp":1607098473,"output":"\"cc028ec0-364b-11eb-80d7-5254005464e2\", \"requester_id\" => \"363d60d6-6757-46c9-95cb-e1aa34173ed5\", \"s"},{"event":"cmd_output","timestamp":1607098473,"output":"ervice\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"afd488"},{"event":"cmd_output","timestamp":1607098473,"output":"a9-1b79-47bb-885f-079be9b94102\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:14:33.814 [info] ppl"},{"event":"cmd_output","timestamp":1607098473,"output":"_id: 98332610-3b0e-4fb7-8e70-3c1f9a30ec44, type: PplRequests, event: persisted schedule request with"},{"event":"cmd_output","timestamp":1607098473,"output":" request_token: cc028ec0-364b-11eb-80d7-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplReques"},{"event":"cmd_output","timestamp":1607098473,"output":"tsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:14:33.816 [info] ppl_id: 98332610-3b0e-4fb7-8e70"},{"event":"cmd_output","timestamp":1607098473,"output":"-3c1f9a30ec44, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098473,"output":"ir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:14:33.819 [info] Project 12"},{"event":"cmd_output","timestamp":1607098473,"output":"3 and branch masterlatest_wf details updated: \"wf_id: afd488a9-1b79-47bb-885f-079be9b94102, wf_numbe"},{"event":"cmd_output","timestamp":1607098473,"output":"r: 1\"\n\u001b[0m\u001b[22m\n16:14:33.820 [info] Persisted ppl_sub_init for pipeline with ppl_id: 98332610-3b0"},{"event":"cmd_output","timestamp":1607098473,"output":"e-4fb7-8e70-3c1f9a30ec44: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded"},{"event":"cmd_output","timestamp":1607098473,"output":", \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 341, in_scheduling: false"},{"event":"cmd_output","timestamp":1607098473,"output":", init_type: \"regular\", inserted_at: ~N[2020-12-04 16:14:33.819683], pipeline_requests: #Ecto.Associ"},{"event":"cmd_output","timestamp":1607098473,"output":"ation.NotLoaded, ppl_id: \"98332610-3b0e-4fb7-8e70-3c1f"},{"event":"cmd_output","timestamp":1607098473,"output":"9a30ec44\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: "},{"event":"cmd_output","timestamp":1607098473,"output":"nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:14:33.819689]}\n\u001b[0m\u001b[22m\n16:14:33.8"},{"event":"cmd_output","timestamp":1607098473,"output":"29 [info] ppl_id: 98332610-3b0e-4fb7-8e70-3c1f9a30ec44, type: PplRequests, event: persisted source_"},{"event":"cmd_output","timestamp":1607098473,"output":"args for pipeline: 98332610-3b0e-4fb7-8e70-3c1f9a30ec44, origin: Elixir.Ppl.PplRequests.Model.PplReq"},{"event":"cmd_output","timestamp":1607098473,"output":"uestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:14:33.831 [info] ppl_id: 98332610-3b0e-4fb7-8e70"},{"event":"cmd_output","timestamp":1607098473,"output":"-3c1f9a30ec44, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098473,"output":": Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:33.851 [info] ppl_id: 98332610"},{"event":"cmd_output","timestamp":1607098473,"output":"-3b0e-4fb7-8e70-3c1f9a30ec44, type: PplSubInits, state: regular_init, event: exit_scheduling, recove"},{"event":"cmd_output","timestamp":1607098473,"output":"ry_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:33.872 [info"},{"event":"cmd_output","timestamp":1607098473,"output":"] ppl_id: 98332610-3b0e-4fb7-8e70-3c1f9a30ec44, type: PplRequests, event: persisted definition for "},{"event":"cmd_output","timestamp":1607098473,"output":"request with request_token: cc028ec0-364b-11eb-80d7-5254005464e2, origin: Elixir.Ppl.PplRequests.Mod"},{"event":"cmd_output","timestamp":1607098473,"output":"el.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:14:33.875 [info] Queue persisted: {"},{"event":"cmd_output","timestamp":1607098473,"output":":ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[20"},{"event":"cmd_output","timestamp":1607098473,"output":"20-12-04 16:14:33.874527], name: \"master-.semaphore/ac_running.yml\", organization_id: \"640de9a9-8089"},{"event":"cmd_output","timestamp":1607098473,"output":"-4ffe-86bb-1490aba1eb6d\", project_id: \"123\", queue_id: \"fca387dc-0388-4f2c-89f1-8da19266933f\", scope"},{"event":"cmd_output","timestamp":1607098473,"output":": \"project\", updated_at: ~N[2020-12-04 16:14:33.874536], user_generated: false}}\n\u001b[0m\u001b[22m\n16:14:3"},{"event":"cmd_output","timestamp":1607098473,"output":"3.879 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L"},{"event":"cmd_output","timestamp":1607098473,"output":"105), \n\u001b[0m\u001b[22m\n16:14:33.879 [info] ppl_id: 98332610-3b0e-4fb7-8e70-3c1f9a30ec44, type: PplBlock"},{"event":"cmd_output","timestamp":1607098473,"output":"s, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSub"},{"event":"cmd_output","timestamp":1607098473,"output":"Inits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:33.880 [info] ppl_id: 9833261"},{"event":"cmd_output","timestamp":1607098473,"output":"0-3b0e-4fb7-8e70-3c1f9a30ec44, type: PplSubInits, state: done, result: passed, event: exit_schedulin"},{"event":"cmd_output","timestamp":1607098473,"output":"g, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:33."},{"event":"cmd_output","timestamp":1607098473,"output":"887 [info] ppl_id: 98332610-3b0e-4fb7-8e70-3c1f9a30ec44, type: Ppls, state: pending, event: exit_sc"},{"event":"cmd_output","timestamp":1607098473,"output":"heduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098473,"output":":14:33.890 [info] ppl_id: 98332610-3b0e-4fb7-8e70-3c1f9a30ec44, type: PplBlocks, block_index: 0, st"},{"event":"cmd_output","timestamp":1607098473,"output":"ate: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_ch"},{"event":"cmd_output","timestamp":1607098473,"output":"ange/1(L90), \n\u001b[0m\u001b[22m\n16:14:33.895 [info] ppl_id: 98332610-3b0e-4fb7-8e70-3c1f9a30ec44, type: P"},{"event":"cmd_output","timestamp":1607098473,"output":"pls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_s"},{"event":"cmd_output","timestamp":1607098473,"output":"tate_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:33.903 [info] ppl_id: 98332610-3b0e-4fb7-8e70-3c1f9a30ec44, "},{"event":"cmd_output","timestamp":1607098473,"output":"type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Imp"},{"event":"cmd_output","timestamp":1607098473,"output":"l.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:33.912 [info] PplBlocks WaitingState STM is schedulin"},{"event":"cmd_output","timestamp":1607098473,"output":"g block 0 from pipeline: \"98332610-3b0e-4fb7-8e70-3c1f9a30ec44\"\n\u001b[0m\u001b[22m\n16:14:33.928 [info] blo"},{"event":"cmd_output","timestamp":1607098473,"output":"ck_id: 461d2936-e06c-42e3-ade2-158afffa259e, type: BlockRequests, event: persisted block run request"},{"event":"cmd_output","timestamp":1607098473,"output":" from ppl 98332610-3b0e-4fb7-8e70-3c1f9a30ec44 for block 0, origin: Elixir.Block.BlockRequests.Model"},{"event":"cmd_output","timestamp":1607098473,"output":".BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:14:33.931 [info] Request: 'run: %{\"b"},{"event":"cmd_output","timestamp":1607098473,"output":"ranch_id\" => \"62dc2384-52c1-4c4b-8919-478260705103\", \"branch_name\" => \"master\", \"commit_sha\" => \"758"},{"event":"cmd_output","timestamp":1607098473,"output":"91a4469\", \"file_name\" => \"ac_running.yml\", \"hook_id\" => \"cc149322-364b-11eb-aab1-5254005464e2\", \"lab"},{"event":"cmd_output","timestamp":1607098473,"output":"el\" => \"master\", \"organization_id\" => \"6a1857b7-c872-4439-ae7d-767609dd118f\", \"owner\" => \"rt\", \"proj"},{"event":"cmd_output","timestamp":1607098473,"output":"ect_id\" => \"123\", \"repo_name\" => \"28_auto_cancel\", \"request_token\" => \"cc148b3e-364b-11eb-9487-52540"},{"event":"cmd_output","timestamp":1607098473,"output":"05464e2\", \"requester_id\" => \"9432eff9-6855-4465-bd96-a4d72a048a9c\", \"service\" => \"local\", \"suppresse"},{"event":"cmd_output","timestamp":1607098473,"output":"d_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"d6f06350-8c98-4416-8609-c2e1c4165987"},{"event":"cmd_output","timestamp":1607098473,"output":"\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:14:33.932 [info] block_id: 461d2936-e06c-42e3-ade2"},{"event":"cmd_output","timestamp":1607098473,"output":"-158afffa259e, type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098473,"output":"ixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:14:33.933 [info] ppl_id: 59bf5"},{"event":"cmd_output","timestamp":1607098473,"output":"de5-dc5e-4b9e-a3ac-919e37756817, type: PplRequests, event: persisted schedule request with request_t"},{"event":"cmd_output","timestamp":1607098473,"output":"oken: cc148b3e-364b-11eb-9487-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries."},{"event":"cmd_output","timestamp":1607098473,"output":"process_response/2(L55), \n\u001b[0m\u001b[22m\n16:14:33.935 [info] ppl_id: 59bf5de5-dc5e-4b9e-a3ac-919e37756"},{"event":"cmd_output","timestamp":1607098473,"output":"817, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098473,"output":"s.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:14:33.936 [info] Project 123 and bran"},{"event":"cmd_output","timestamp":1607098473,"output":"ch masterlatest_wf details updated: \"wf_id: d6f06350-8c98-4416-8609-c2e1c4165987, wf_number: 2\"\n\u001b[0"},{"event":"cmd_output","timestamp":1607098473,"output":"m\u001b[22m\n16:14:33.936 [info] Block 0 of pipeline with id: 98332610-3b0e-4fb7-8e70-3c1f9a30ec44 sched"},{"event":"cmd_output","timestamp":1607098473,"output":"uled in block service with id: : \"461d2936-e06c-42e3-ade2-158afffa259e\"\n\u001b[0m\u001b[22m\n16:14:33.937 [in"},{"event":"cmd_output","timestamp":1607098473,"output":"fo] Persisted ppl_sub_init for pipeline with ppl_id: 59bf5de5-dc5e-4b9e-a3ac-919e37756817: %Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098473,"output":"SubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_t"},{"event":"cmd_output","timestamp":1607098473,"output":"ask_id: nil, error_description: nil, id: 342, in_scheduling: false, init_type: \"regular\", inserted_a"},{"event":"cmd_output","timestamp":1607098473,"output":"t: ~N[2020-12-04 16:14:33.936881], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"59bf5de5-dc5e-4b9e-a3ac-919e37756817\", recovery_count: 0, resu"},{"event":"cmd_output","timestamp":1607098473,"output":"lt: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, "},{"event":"cmd_output","timestamp":1607098473,"output":"updated_at: ~N[2020-12-04 16:14:33.936886]}\n\u001b[0m\u001b[22m\n16:14:33.940 [info] ppl_id: 98332610-3b0e-4"},{"event":"cmd_output","timestamp":1607098473,"output":"fb7-8e70-3c1f9a30ec44, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, reco"},{"event":"cmd_output","timestamp":1607098473,"output":"very_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:33.940 [in"},{"event":"cmd_output","timestamp":1607098473,"output":"fo] block_id: 461d2936-e06c-42e3-ade2-158afffa259e, type: BlockRequests, event: persisted build and"},{"event":"cmd_output","timestamp":1607098473,"output":" sub_ppl details for block_request: 461d2936-e06c-42e3-ade2-158afffa259e, origin: Elixir.Block.Block"},{"event":"cmd_output","timestamp":1607098473,"output":"Requests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:14:33.943 [info] block_id:"},{"event":"cmd_output","timestamp":1607098473,"output":" 461d2936-e06c-42e3-ade2-158afffa259e, type: Tasks, state: pending, event: created, recovery_count: "},{"event":"cmd_output","timestamp":1607098473,"output":"0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:14:33.9"},{"event":"cmd_output","timestamp":1607098473,"output":"44 [info] block_id: 461d2936-e06c-42e3-ade2-158afffa259e, type: Blocks, state: running, event: exit"},{"event":"cmd_output","timestamp":1607098473,"output":"_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098473,"output":"\n16:14:33.945 [info] Request: 'run: %{\"branch_id\" => \"08fb3942-61f6-4f30-8bed-8ff15d778b40\", \"branc"},{"event":"cmd_output","timestamp":1607098473,"output":"h_name\" => \"master\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"ac_running.yml\", \"hook_id\" => \"cc"},{"event":"cmd_output","timestamp":1607098473,"output":"16acf2-364b-11eb-a717-5254005464e2\", \"label\" => \"master\", \"organization_id\" => \"f48dd7df-0225-445f-8"},{"event":"cmd_output","timestamp":1607098473,"output":"24d-aa2167230b15\", \"owner\" => \"rt\", \"project_id\" => \"123\", \"repo_name\" => \"28_auto_cancel\", \"request"},{"event":"cmd_output","timestamp":1607098473,"output":"_token\" => \"cc1695a0-364b-11eb-a97b-5254005464e2\", \"requester_id\" => \"76b8927e-34e8-40e2-84ec-79513f"},{"event":"cmd_output","timestamp":1607098473,"output":"749779\", \"service\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\""},{"event":"cmd_output","timestamp":1607098473,"output":" => \"47ae59b2-25d0-40fa-9574-82426f62d429\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:14:33.948 "},{"event":"cmd_output","timestamp":1607098473,"output":"[info] ppl_id: 9d976b94-2b2b-4fb9-8f23-d1a31bfc7d1d, type: PplRequests, event: persisted schedule r"},{"event":"cmd_output","timestamp":1607098473,"output":"equest with request_token: cc1695a0-364b-11eb-a97b-5254005464e2, origin: Elixir.Ppl.PplRequests.Mode"},{"event":"cmd_output","timestamp":1607098473,"output":"l.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:14:33.949 [info] ppl_id: 59bf5de5-dc5"},{"event":"cmd_output","timestamp":1607098473,"output":"e-4b9e-a3ac-919e37756817, type: PplRequests, event: persisted source_args for pipeline: 59bf5de5-dc5"},{"event":"cmd_output","timestamp":1607098473,"output":"e-4b9e-a3ac-919e37756817, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L8"},{"event":"cmd_output","timestamp":1607098473,"output":"9), \n\u001b[0m\u001b[22m\n16:14:33.951 [info] ppl_id: 9d976b94-2b2b-4fb9-8f23-d1a31bfc7d1d, type: Ppls, stat"},{"event":"cmd_output","timestamp":1607098473,"output":"e: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.p"},{"event":"cmd_output","timestamp":1607098473,"output":"rocess_response/2(L124), \n\u001b[0m\u001b[22m\n16:14:33.953 [info] Project 123 and branch masterlatest_wf de"},{"event":"cmd_output","timestamp":1607098473,"output":"tails updated: \"wf_id: 47ae59b2-25d0-40fa-9574-82426f62d429, wf_number: 3\"\n\u001b[0m\u001b[22m\n16:14:33.954 "},{"event":"cmd_output","timestamp":1607098473,"output":"[info] Persisted ppl_sub_init for pipeline with ppl_id: 9d976b94-2b2b-4fb9-8f23-d1a31bfc7d1d: %Ppl."},{"event":"cmd_output","timestamp":1607098473,"output":"PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compil"},{"event":"cmd_output","timestamp":1607098473,"output":"e_task_id: nil, error_description: nil, id: 343, in_scheduling: false, init_type: \"regular\", inserte"},{"event":"cmd_output","timestamp":1607098473,"output":"d_at: ~N[2020-12-04 16:14:33.953682], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"9d976b94-2b2b-4fb9-8f23-d1a31bfc7d1d\", recovery_count: 0, r"},{"event":"cmd_output","timestamp":1607098473,"output":"esult: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: ni"},{"event":"cmd_output","timestamp":1607098473,"output":"l, updated_at: ~N[2020-12-04 16:14:33.953689]}\n\u001b[0m\u001b[22m\n16:14:33.960 [info] ppl_id: 59bf5de5-dc5"},{"event":"cmd_output","timestamp":1607098473,"output":"e-4b9e-a3ac-919e37756817, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count"},{"event":"cmd_output","timestamp":1607098473,"output":": 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:33.962 [info] block"},{"event":"cmd_output","timestamp":1607098473,"output":"_id: 461d2936-e06c-42e3-ade2-158afffa259e, type: Tasks, state: running, event: exit_scheduling, reco"},{"event":"cmd_output","timestamp":1607098473,"output":"very_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:33.964 [in"},{"event":"cmd_output","timestamp":1607098473,"output":"fo] Request: 'run: %{\"branch_id\" => \"102d154a-a315-402a-b1e9-0f9390ebba9f\", \"branch_name\" => \"maste"},{"event":"cmd_output","timestamp":1607098473,"output":"r\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"ac_running.yml\", \"hook_id\" => \"cc196096-364b-11eb-"},{"event":"cmd_output","timestamp":1607098473,"output":"b229-5254005464e2\", \"label\" => \"master\", \"organization_id\" => \"edb63237-f6f8-43a2-aebd-854a582ca192\""},{"event":"cmd_output","timestamp":1607098473,"output":", \"owner\" => \"rt\", \"project_id\" => \"123\", \"repo_name\" => \"28_auto_cancel\", \"request_token\" => \"cc195"},{"event":"cmd_output","timestamp":1607098473,"output":"074-364b-11eb-8457-5254005464e2\", \"requester_id\" => \"dd048f31-7d9b-4620-bbb4-6251ad5be382\", \"service"},{"event":"cmd_output","timestamp":1607098473,"output":"\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"a0dd9745-232"},{"event":"cmd_output","timestamp":1607098473,"output":"9-4593-a10c-4f1f811f4879\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:14:33.967 [info] ppl_id: 9"},{"event":"cmd_output","timestamp":1607098473,"output":"d976b94-2b2b-4fb9-8f23-d1a31bfc7d1d, type: PplRequests, event: persisted source_args for pipeline: 9"},{"event":"cmd_output","timestamp":1607098473,"output":"d976b94-2b2b-4fb9-8f23-d1a31bfc7d1d, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_"},{"event":"cmd_output","timestamp":1607098473,"output":"source/2(L89), \n\u001b[0m\u001b[22m\n16:14:33.968 [info] ppl_id: 826b9527-cc6d-439e-83fd-48fef8a8aacf, type:"},{"event":"cmd_output","timestamp":1607098473,"output":" PplRequests, event: persisted schedule request with request_token: cc195074-364b-11eb-8457-52540054"},{"event":"cmd_output","timestamp":1607098473,"output":"64e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098473,"output":"16:14:33.969 [info] ppl_id: 826b9527-cc6d-439e-83fd-48fef8a8aacf, type: Ppls, state: initializing, "},{"event":"cmd_output","timestamp":1607098473,"output":"event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2"},{"event":"cmd_output","timestamp":1607098473,"output":"(L124), \n\u001b[0m\u001b[22m\n16:14:33.971 [info] ppl_id: 9d976b94-2b2b-4fb9-8f23-d1a31bfc7d1d, type: PplSub"},{"event":"cmd_output","timestamp":1607098473,"output":"Inits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.lo"},{"event":"cmd_output","timestamp":1607098473,"output":"g_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:33.972 [info] Project 123 and branch masterlatest_wf deta"},{"event":"cmd_output","timestamp":1607098473,"output":"ils updated: \"wf_id: a0dd9745-2329-4593-a10c-4f1f811f4879, wf_number: 4\"\n\u001b[0m\u001b[22m\n16:14:33.973 [i"},{"event":"cmd_output","timestamp":1607098473,"output":"nfo] Persisted ppl_sub_init for pipeline with ppl_id: 826b9527-cc6d-439e-83fd-48fef8a8aacf: %Ppl.Pp"},{"event":"cmd_output","timestamp":1607098473,"output":"lSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_"},{"event":"cmd_output","timestamp":1607098473,"output":"task_id: nil, error_description: nil, id: 344, in_scheduling: false, init_type: \"regular\", inserted_"},{"event":"cmd_output","timestamp":1607098473,"output":"at: ~N[2020-12-04 16:14:33.972403], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"826b9527-cc6d-439e-83fd-48fef8a8aacf\", recovery_count: 0, res"},{"event":"cmd_output","timestamp":1607098473,"output":"ult: nil, result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil,"},{"event":"cmd_output","timestamp":1607098473,"output":" updated_at: ~N[2020-12-04 16:14:33.972409]}\n\u001b[0m\u001b[22m\n16:14:33.979 [info] Request: 'run: %{\"bran"},{"event":"cmd_output","timestamp":1607098473,"output":"ch_id\" => \"2f8a9f43-ab2d-49ac-b9a2-dece11f0cdef\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a"},{"event":"cmd_output","timestamp":1607098473,"output":"4469\", \"file_name\" => \"ac_running.yml\", \"hook_id\" => \"cc1bfaf4-364b-11eb-b234-5254005464e2\", \"label\""},{"event":"cmd_output","timestamp":1607098473,"output":" => \"master\", \"organization_id\" => \"3198930b-e914-4851-8153-2fa745ef36ba\", \"owner\" => \"rt\", \"project"},{"event":"cmd_output","timestamp":1607098473,"output":"_id\" => \"123\", \"repo_name\" => \"28_auto_cancel\", \"request_token\" => \"cc1bf1e4-364b-11eb-88b7-52540054"},{"event":"cmd_output","timestamp":1607098473,"output":"64e2\", \"requester_id\" => \"a5461abd-ff15-4ebb-bc29-c736acee6360\", \"service\" => \"local\", \"suppressed_a"},{"event":"cmd_output","timestamp":1607098473,"output":"ttributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"46b74ec3-fac7-4786-81bf-cf1c13648142\", "},{"event":"cmd_output","timestamp":1607098473,"output":"\"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:14:33.982 [info] ppl_id: 3883b700-dfdc-496d-9857-a45a"},{"event":"cmd_output","timestamp":1607098473,"output":"29894866, type: PplRequests, event: persisted schedule request with request_token: cc1bf1e4-364b-11e"},{"event":"cmd_output","timestamp":1607098473,"output":"b-88b7-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55)"},{"event":"cmd_output","timestamp":1607098473,"output":", \n\u001b[0m\u001b[22m\n16:14:33.984 [info] ppl_id: 59bf5de5-dc5e-4b9e-a3ac-919e37756817, type: PplSubInits,"},{"event":"cmd_output","timestamp":1607098473,"output":" state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_"},{"event":"cmd_output","timestamp":1607098473,"output":"state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:33.984 [info] ppl_id: 826b9527-cc6d-439e-83fd-48fef8a8aacf,"},{"event":"cmd_output","timestamp":1607098473,"output":" type: PplRequests, event: persisted source_args for pipeline: 826b9527-cc6d-439e-83fd-48fef8a8aacf,"},{"event":"cmd_output","timestamp":1607098473,"output":" origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:14:33"},{"event":"cmd_output","timestamp":1607098473,"output":".986 [info] ppl_id: 3883b700-dfdc-496d-9857-a45a29894866, type: Ppls, state: initializing, event: i"},{"event":"cmd_output","timestamp":1607098473,"output":"nitializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), "},{"event":"cmd_output","timestamp":1607098473,"output":"\n\u001b[0m\u001b[22m\n16:14:33.988 [info] ppl_id: 826b9527-cc6d-439e-83fd-48fef8a8aacf, type: PplSubInits, s"},{"event":"cmd_output","timestamp":1607098473,"output":"tate: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_"},{"event":"cmd_output","timestamp":1607098473,"output":"change/1(L90), \n\u001b[0m\u001b[22m\n16:14:33.989 [info] Project 123 and branch masterlatest_wf details upda"},{"event":"cmd_output","timestamp":1607098473,"output":"ted: \"wf_id: 46b74ec3-fac7-4786-81bf-cf1c13648142, wf_number: 5\"\n\u001b[0m\u001b[22m\n16:14:33.990 [info] Pe"},{"event":"cmd_output","timestamp":1607098473,"output":"rsisted ppl_sub_init for pipeline with ppl_id: 3883b700-dfdc-496d-9857-a45a29894866: %Ppl.PplSubInit"},{"event":"cmd_output","timestamp":1607098473,"output":"s.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id:"},{"event":"cmd_output","timestamp":1607098473,"output":" nil, error_description: nil, id: 345, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2"},{"event":"cmd_output","timestamp":1607098473,"output":"020-12-04 16:14:33.989709], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"3883b700-dfdc-496d-9857-a45a29894866\", recovery_count: 0, result: nil"},{"event":"cmd_output","timestamp":1607098473,"output":", result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated"},{"event":"cmd_output","timestamp":1607098473,"output":"_at: ~N[2020-12-04 16:14:33.989738]}\n\u001b[0m\u001b[22m\n16:14:33.999 [info] Request: 'run: %{\"branch_id\" ="},{"event":"cmd_output","timestamp":1607098473,"output":"> \"bf2ad8be-9a1a-4829-8334-be0940e1e29c\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469\", \""},{"event":"cmd_output","timestamp":1607098473,"output":"file_name\" => \"ac_running.yml\", \"hook_id\" => \"cc1e9d4a-364b-11eb-bf0b-5254005464e2\", \"label\" => \"mas"},{"event":"cmd_output","timestamp":1607098473,"output":"ter\", \"organization_id\" => \"45c5856c-41a5-4674-b64f-bfc221025205\", \"owner\" => \"rt\", \"project_id\" => "},{"event":"cmd_output","timestamp":1607098473,"output":"\"123\", \"repo_name\" => \"28_auto_cancel\", \"request_token\" => \"cc1e95a2-364b-11eb-8244-5254005464e2\", \""},{"event":"cmd_output","timestamp":1607098474,"output":"requester_id\" => \"c0fe87c0-cf8b-46d0-8bd2-af052d733c18\", \"service\" => \"local\", \"suppressed_attribute"},{"event":"cmd_output","timestamp":1607098474,"output":"s\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"3759df25-8c4f-43c5-8360-f949ab77d28e\", \"working"},{"event":"cmd_output","timestamp":1607098474,"output":"_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:14:34.000 [info] ppl_id: c57ca3f5-e582-4168-8f92-3300164ce961"},{"event":"cmd_output","timestamp":1607098474,"output":", type: PplRequests, event: persisted schedule request with request_token: cc1e95a2-364b-11eb-8244-5"},{"event":"cmd_output","timestamp":1607098474,"output":"254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098474,"output":"\u001b[22m\n16:14:34.002 [info] ppl_id: c57ca3f5-e582-4168-8f92-3300164ce961, type: Ppls, state: initial"},{"event":"cmd_output","timestamp":1607098474,"output":"izing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_res"},{"event":"cmd_output","timestamp":1607098474,"output":"ponse/2(L124), \n\u001b[0m\u001b[22m\n16:14:34.005 [info] Project 123 and branch masterlatest_wf details upda"},{"event":"cmd_output","timestamp":1607098474,"output":"ted: \"wf_id: 3759df25-8c4f-43c5-8360-f949ab77d28e, wf_number: 6\"\n\u001b[0m\u001b[22m\n16:14:34.005 [info] Pe"},{"event":"cmd_output","timestamp":1607098474,"output":"rsisted ppl_sub_init for pipeline with ppl_id: c57ca3f5-e582-4168-8f92-3300164ce961: %Ppl.PplSubInit"},{"event":"cmd_output","timestamp":1607098474,"output":"s.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id:"},{"event":"cmd_output","timestamp":1607098474,"output":" nil, error_description: nil, id: 346, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2"},{"event":"cmd_output","timestamp":1607098474,"output":"020-12-04 16:14:34.005307], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"c57ca3f5-e582-4168-8f92-3300164ce961\", recovery_count: 0, result: nil"},{"event":"cmd_output","timestamp":1607098474,"output":", result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated"},{"event":"cmd_output","timestamp":1607098474,"output":"_at: ~N[2020-12-04 16:14:34.005320]}\n\u001b[0m\u001b[22m\n16:14:34.011 [info] ppl_id: 3883b700-dfdc-496d-985"},{"event":"cmd_output","timestamp":1607098474,"output":"7-a45a29894866, type: PplRequests, event: persisted source_args for pipeline: 3883b700-dfdc-496d-985"},{"event":"cmd_output","timestamp":1607098474,"output":"7-a45a29894866, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098474,"output":"\u001b[22m\n16:14:34.011 [info] ppl_id: 9d976b94-2b2b-4fb9-8f23-d1a31bfc7d1d, type: PplSubInits, state: "},{"event":"cmd_output","timestamp":1607098474,"output":"regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_ch"},{"event":"cmd_output","timestamp":1607098474,"output":"ange/1(L90), \n\u001b[0m\u001b[22m\n16:14:34.014 [info] ppl_id: 3883b700-dfdc-496d-9857-a45a29894866, type: P"},{"event":"cmd_output","timestamp":1607098474,"output":"plSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Im"},{"event":"cmd_output","timestamp":1607098474,"output":"pl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:34.031 [info] ppl_id: 59bf5de5-dc5e-4b9e-a3ac-919e37"},{"event":"cmd_output","timestamp":1607098474,"output":"756817, type: PplRequests, event: persisted definition for request with request_token: cc148b3e-364b"},{"event":"cmd_output","timestamp":1607098474,"output":"-11eb-9487-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3"},{"event":"cmd_output","timestamp":1607098474,"output":"(L76), \n\u001b[0m\u001b[22m\n16:14:34.034 [info] ppl_id: c57ca3f5-e582-4168-8f92-3300164ce961, type: PplRequ"},{"event":"cmd_output","timestamp":1607098474,"output":"ests, event: persisted source_args for pipeline: c57ca3f5-e582-4168-8f92-3300164ce961, origin: Elixi"},{"event":"cmd_output","timestamp":1607098474,"output":"r.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:14:34.040 [info] p"},{"event":"cmd_output","timestamp":1607098474,"output":"pl_id: c57ca3f5-e582-4168-8f92-3300164ce961, type: PplSubInits, state: fetching, event: exit_schedul"},{"event":"cmd_output","timestamp":1607098474,"output":"ing, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:3"},{"event":"cmd_output","timestamp":1607098474,"output":"4.045 [info] ppl_id: 826b9527-cc6d-439e-83fd-48fef8a8aacf, type: PplSubInits, state: regular_init, "},{"event":"cmd_output","timestamp":1607098474,"output":"event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \r"},{"event":"cmd_output","timestamp":1607098474,"output":"\n\u001b[0m\u001b[22m\n16:14:34.045 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularIn"},{"event":"cmd_output","timestamp":1607098474,"output":"itState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:34.045 [info] ppl_id: 59bf5de5-dc5e-4b9e-a3ac-919e37756"},{"event":"cmd_output","timestamp":1607098474,"output":"817, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098474,"output":": Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:34.047 [inf"},{"event":"cmd_output","timestamp":1607098474,"output":"o] ppl_id: 59bf5de5-dc5e-4b9e-a3ac-919e37756817, type: PplSubInits, state: done, result: passed, ev"},{"event":"cmd_output","timestamp":1607098474,"output":"ent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b"},{"event":"cmd_output","timestamp":1607098474,"output":"[0m\u001b[22m\n16:14:34.059 [info] ppl_id: 59bf5de5-dc5e-4b9e-a3ac-919e37756817, type: PplBlocks, block_"},{"event":"cmd_output","timestamp":1607098474,"output":"index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl."},{"event":"cmd_output","timestamp":1607098474,"output":"log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:34.060 [info] ppl_id: 59bf5de5-dc5e-4b9e-a3ac-919e37756"},{"event":"cmd_output","timestamp":1607098474,"output":"817, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.ST"},{"event":"cmd_output","timestamp":1607098474,"output":"M.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:34.070 [info] ppl_id: 3883b700-dfdc-496d-9857-a4"},{"event":"cmd_output","timestamp":1607098474,"output":"5a29894866, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098474,"output":"n: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:34.074 [info] ppl_id: 59bf5de"},{"event":"cmd_output","timestamp":1607098474,"output":"5-dc5e-4b9e-a3ac-919e37756817, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0"},{"event":"cmd_output","timestamp":1607098474,"output":", origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:34.079 [info] ppl_id: "},{"event":"cmd_output","timestamp":1607098474,"output":"9d976b94-2b2b-4fb9-8f23-d1a31bfc7d1d, type: PplRequests, event: persisted definition for request wit"},{"event":"cmd_output","timestamp":1607098474,"output":"h request_token: cc1695a0-364b-11eb-a97b-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplReque"},{"event":"cmd_output","timestamp":1607098474,"output":"stsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:14:34.083 [info] ppl_id: 98332610-3b0e-4fb7-8e"},{"event":"cmd_output","timestamp":1607098474,"output":"70-3c1f9a30ec44, type: Ppls, state: stopping, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098474,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:34.087 [info] event: created, origi"},{"event":"cmd_output","timestamp":1607098474,"output":"n: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:34.087 [in"},{"event":"cmd_output","timestamp":1607098474,"output":"fo] ppl_id: 9d976b94-2b2b-4fb9-8f23-d1a31bfc7d1d, type: PplBlocks, block_index: 0, state: initializ"},{"event":"cmd_output","timestamp":1607098474,"output":"ing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.a"},{"event":"cmd_output","timestamp":1607098474,"output":"ll_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:34.088 [info] ppl_id: 9d976b94-2b2b-4fb9-8f23-d1a31bfc7d1d, type"},{"event":"cmd_output","timestamp":1607098474,"output":": PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098474,"output":"r.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:34.098 [info] ppl_id: 9d976b94-2b2b-4"},{"event":"cmd_output","timestamp":1607098474,"output":"fb9-8f23-d1a31bfc7d1d, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098474,"output":": Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:34.103 [info] ppl_id: c57ca3f5"},{"event":"cmd_output","timestamp":1607098474,"output":"-e582-4168-8f92-3300164ce961, type: PplSubInits, state: regular_init, event: exit_scheduling, recove"},{"event":"cmd_output","timestamp":1607098474,"output":"ry_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:34.108 [info"},{"event":"cmd_output","timestamp":1607098474,"output":"] ppl_id: 98332610-3b0e-4fb7-8e70-3c1f9a30ec44, block_id: 461d2936-e06c-42e3-ade2-158afffa259e, typ"},{"event":"cmd_output","timestamp":1607098474,"output":"e: PplBlocks, block_index: 0, state: stopping, event: exit_scheduling, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098474,"output":"ixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:34.108 [info] ppl_id: 9d976b94-2b2"},{"event":"cmd_output","timestamp":1607098474,"output":"b-4fb9-8f23-d1a31bfc7d1d, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, r"},{"event":"cmd_output","timestamp":1607098474,"output":"ecovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:34.118 "},{"event":"cmd_output","timestamp":1607098474,"output":"[info] block_id: 461d2936-e06c-42e3-ade2-158afffa259e, type: Blocks, state: stopping, event: exit_s"},{"event":"cmd_output","timestamp":1607098474,"output":"cheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098474,"output":"6:14:34.119 [info] ppl_id: 9d976b94-2b2b-4fb9-8f23-d1a31bfc7d1d, type: Ppls, state: queuing, event:"},{"event":"cmd_output","timestamp":1607098474,"output":" exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098474,"output":"[22m\n16:14:34.125 [info] ppl_id: 826b9527-cc6d-439e-83fd-48fef8a8aacf, type: PplRequests, event: p"},{"event":"cmd_output","timestamp":1607098474,"output":"ersisted definition for request with request_token: cc195074-364b-11eb-8457-5254005464e2, origin: El"},{"event":"cmd_output","timestamp":1607098474,"output":"ixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:14:34.133 [i"},{"event":"cmd_output","timestamp":1607098474,"output":"nfo] ppl_id: 59bf5de5-dc5e-4b9e-a3ac-919e37756817, type: Ppls, state: done, result: canceled, event"},{"event":"cmd_output","timestamp":1607098474,"output":": exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098474,"output":"\u001b[22m\n16:14:34.138 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitSta"},{"event":"cmd_output","timestamp":1607098474,"output":"te.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:34.138 [info] ppl_id: 826b9527-cc6d-439e-83fd-48fef8a8aacf, "},{"event":"cmd_output","timestamp":1607098474,"output":"type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098474,"output":"xir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:34.139 [info] b"},{"event":"cmd_output","timestamp":1607098474,"output":"lock_id: 461d2936-e06c-42e3-ade2-158afffa259e, type: Tasks, state: stopping, event: exit_scheduling,"},{"event":"cmd_output","timestamp":1607098474,"output":" recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:34.14"},{"event":"cmd_output","timestamp":1607098474,"output":"1 [info] ppl_id: 826b9527-cc6d-439e-83fd-48fef8a8aacf, type: PplSubInits, state: done, result: pass"},{"event":"cmd_output","timestamp":1607098474,"output":"ed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90"},{"event":"cmd_output","timestamp":1607098474,"output":"), \n\u001b[0m\u001b[22m\n16:14:34.146 [info] ppl_id: 59bf5de5-dc5e-4b9e-a3ac-919e37756817, type: PplBlocks, "},{"event":"cmd_output","timestamp":1607098474,"output":"block_index: 0, state: done, result: canceled, event: exit_scheduling, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098474,"output":"ixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:34.152 [info] ppl_id: 826b9527-cc6"},{"event":"cmd_output","timestamp":1607098474,"output":"d-439e-83fd-48fef8a8aacf, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098474,"output":"gin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:34.152 [info] ppl_id: 826b9"},{"event":"cmd_output","timestamp":1607098474,"output":"527-cc6d-439e-83fd-48fef8a8aacf, type: PplBlocks, block_index: 0, state: waiting, event: exit_schedu"},{"event":"cmd_output","timestamp":1607098474,"output":"ling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:"},{"event":"cmd_output","timestamp":1607098474,"output":"34.161 [info] ppl_id: 826b9527-cc6d-439e-83fd-48fef8a8aacf, type: Ppls, state: queuing, event: exit"},{"event":"cmd_output","timestamp":1607098474,"output":"_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098474,"output":"\n16:14:34.168 [info] ppl_id: 9d976b94-2b2b-4fb9-8f23-d1a31bfc7d1d, type: Ppls, state: done, result:"},{"event":"cmd_output","timestamp":1607098474,"output":" canceled, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chang"},{"event":"cmd_output","timestamp":1607098474,"output":"e/1(L90), \n\u001b[0m\u001b[22m\n16:14:34.174 [info] ppl_id: 3883b700-dfdc-496d-9857-a45a29894866, type: PplR"},{"event":"cmd_output","timestamp":1607098474,"output":"equests, event: persisted definition for request with request_token: cc1bf1e4-364b-11eb-88b7-5254005"},{"event":"cmd_output","timestamp":1607098474,"output":"464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098474,"output":"\n16:14:34.177 [info] ppl_id: 9d976b94-2b2b-4fb9-8f23-d1a31bfc7d1d, type: PplBlocks, block_index: 0"},{"event":"cmd_output","timestamp":1607098474,"output":", state: done, result: canceled, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.ST"},{"event":"cmd_output","timestamp":1607098474,"output":"M.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:34.181 [info] event: created, origin: Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098474,"output":".PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:34.181 [info] ppl_id: "},{"event":"cmd_output","timestamp":1607098474,"output":"3883b700-dfdc-496d-9857-a45a29894866, type: PplBlocks, block_index: 0, state: initializing, event: c"},{"event":"cmd_output","timestamp":1607098474,"output":"reated, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105"},{"event":"cmd_output","timestamp":1607098474,"output":"), \n\u001b[0m\u001b[22m\n16:14:34.186 [info] ppl_id: 3883b700-dfdc-496d-9857-a45a29894866, type: PplSubInits"},{"event":"cmd_output","timestamp":1607098474,"output":", state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM."},{"event":"cmd_output","timestamp":1607098474,"output":"Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:34.200 [info] ppl_id: 3883b700-dfdc-496d-9857-a45a"},{"event":"cmd_output","timestamp":1607098474,"output":"29894866, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loop"},{"event":"cmd_output","timestamp":1607098474,"output":"er.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:34.201 [info] ppl_id: 3883b700-dfdc-496d-98"},{"event":"cmd_output","timestamp":1607098474,"output":"57-a45a29894866, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098474,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:34.209 [info] p"},{"event":"cmd_output","timestamp":1607098474,"output":"pl_id: 3883b700-dfdc-496d-9857-a45a29894866, type: Ppls, state: queuing, event: exit_scheduling, rec"},{"event":"cmd_output","timestamp":1607098474,"output":"overy_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:34.211 [i"},{"event":"cmd_output","timestamp":1607098474,"output":"nfo] ppl_id: c57ca3f5-e582-4168-8f92-3300164ce961, type: PplRequests, event: persisted definition f"},{"event":"cmd_output","timestamp":1607098474,"output":"or request with request_token: cc1e95a2-364b-11eb-8244-5254005464e2, origin: Elixir.Ppl.PplRequests."},{"event":"cmd_output","timestamp":1607098474,"output":"Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:14:34.216 [info] event: created,"},{"event":"cmd_output","timestamp":1607098474,"output":" origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:34.2"},{"event":"cmd_output","timestamp":1607098474,"output":"16 [info] ppl_id: c57ca3f5-e582-4168-8f92-3300164ce961, type: PplBlocks, block_index: 0, state: ini"},{"event":"cmd_output","timestamp":1607098474,"output":"tializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitS"},{"event":"cmd_output","timestamp":1607098474,"output":"tate.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:34.217 [info] ppl_id: c57ca3f5-e582-4168-8f92-3300164ce961"},{"event":"cmd_output","timestamp":1607098474,"output":", type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098474,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:34.218 [info] ppl_id: 826b9527-"},{"event":"cmd_output","timestamp":1607098474,"output":"cc6d-439e-83fd-48fef8a8aacf, type: Ppls, state: done, result: canceled, event: exit_scheduling, reco"},{"event":"cmd_output","timestamp":1607098474,"output":"very_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:34.226 [in"},{"event":"cmd_output","timestamp":1607098474,"output":"fo] ppl_id: c57ca3f5-e582-4168-8f92-3300164ce961, type: PplBlocks, block_index: 0, state: waiting, "},{"event":"cmd_output","timestamp":1607098474,"output":"event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \r"},{"event":"cmd_output","timestamp":1607098474,"output":"\n\u001b[0m\u001b[22m\n16:14:34.231 [info] ppl_id: 826b9527-cc6d-439e-83fd-48fef8a8aacf, type: PplBlocks, bloc"},{"event":"cmd_output","timestamp":1607098474,"output":"k_index: 0, state: done, result: canceled, event: exit_scheduling, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098474,"output":".Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:34.233 [info] ppl_id: c57ca3f5-e582-41"},{"event":"cmd_output","timestamp":1607098474,"output":"68-8f92-3300164ce961, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098474,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:34.244 [info] ppl_id: c57ca3f5-"},{"event":"cmd_output","timestamp":1607098474,"output":"e582-4168-8f92-3300164ce961, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098474,"output":"origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:34.253 [info] ppl_id: 38"},{"event":"cmd_output","timestamp":1607098474,"output":"83b700-dfdc-496d-9857-a45a29894866, type: Ppls, state: done, result: canceled, event: exit_schedulin"},{"event":"cmd_output","timestamp":1607098474,"output":"g, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:34."},{"event":"cmd_output","timestamp":1607098474,"output":"261 [info] ppl_id: 3883b700-dfdc-496d-9857-a45a29894866, type: PplBlocks, block_index: 0, state: do"},{"event":"cmd_output","timestamp":1607098474,"output":"ne, result: canceled, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_"},{"event":"cmd_output","timestamp":1607098481,"output":"state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:41.009 [info] block_id: 461d2936-e06c-42e3-ade2-158afffa259"},{"event":"cmd_output","timestamp":1607098481,"output":"e, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Im"},{"event":"cmd_output","timestamp":1607098481,"output":"pl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:41.014 [info] block_id: 461d2936-e06c-42e3-ade2-158a"},{"event":"cmd_output","timestamp":1607098481,"output":"fffa259e, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loope"},{"event":"cmd_output","timestamp":1607098481,"output":"r.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:41.019 [info] ppl_id: 98332610-3b0e-4fb7-8e7"},{"event":"cmd_output","timestamp":1607098481,"output":"0-3c1f9a30ec44, block_id: 461d2936-e06c-42e3-ade2-158afffa259e, type: PplBlocks, block_index: 0, sta"},{"event":"cmd_output","timestamp":1607098481,"output":"te: done, result: stopped, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl"},{"event":"cmd_output","timestamp":1607098481,"output":".log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:41.031 [info] ppl_id: 98332610-3b0e-4fb7-8e70-3c1f9a30"},{"event":"cmd_output","timestamp":1607098481,"output":"ec44, type: Ppls, state: done, result: stopped, event: exit_scheduling, recovery_count: 0, origin: E"},{"event":"cmd_output","timestamp":1607098481,"output":"lixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:41.066 [info] ppl_id: c57ca3f5-e5"},{"event":"cmd_output","timestamp":1607098481,"output":"82-4168-8f92-3300164ce961, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098481,"output":"igin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:41.071 [info] PplBlocks Wa"},{"event":"cmd_output","timestamp":1607098481,"output":"itingState STM is scheduling block 0 from pipeline: \"c57ca3f5-e582-4168-8f92-3300164ce961\"\n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098481,"output":"m\n16:14:41.074 [info] block_id: 8317bff3-2580-4dd8-8c6e-4a167f81dbf8, type: BlockRequests, event: "},{"event":"cmd_output","timestamp":1607098481,"output":"persisted block run request from ppl c57ca3f5-e582-4168-8f92-3300164ce961 for block 0, origin: Elixi"},{"event":"cmd_output","timestamp":1607098481,"output":"r.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:14:41.076 "},{"event":"cmd_output","timestamp":1607098481,"output":"[info] block_id: 8317bff3-2580-4dd8-8c6e-4a167f81dbf8, type: Blocks, state: initializing, event: in"},{"event":"cmd_output","timestamp":1607098481,"output":"itializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098481,"output":"\u001b[22m\n16:14:41.077 [info] Block 0 of pipeline with id: c57ca3f5-e582-4168-8f92-3300164ce961 schedu"},{"event":"cmd_output","timestamp":1607098481,"output":"led in block service with id: : \"8317bff3-2580-4dd8-8c6e-4a167f81dbf8\"\n\u001b[0m\u001b[22m\n16:14:41.080 [inf"},{"event":"cmd_output","timestamp":1607098481,"output":"o] ppl_id: c57ca3f5-e582-4168-8f92-3300164ce961, type: PplBlocks, block_index: 0, state: running, e"},{"event":"cmd_output","timestamp":1607098481,"output":"vent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n"},{"event":"cmd_output","timestamp":1607098481,"output":"\u001b[0m\u001b[22m\n16:14:41.081 [info] block_id: 8317bff3-2580-4dd8-8c6e-4a167f81dbf8, type: BlockRequests,"},{"event":"cmd_output","timestamp":1607098481,"output":" event: persisted build and sub_ppl details for block_request: 8317bff3-2580-4dd8-8c6e-4a167f81dbf8,"},{"event":"cmd_output","timestamp":1607098481,"output":" origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098481,"output":"14:41.082 [info] block_id: 8317bff3-2580-4dd8-8c6e-4a167f81dbf8, type: Tasks, state: pending, event"},{"event":"cmd_output","timestamp":1607098481,"output":": created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L16"},{"event":"cmd_output","timestamp":1607098481,"output":"7), \n\u001b[0m\u001b[22m\n16:14:41.084 [info] block_id: 8317bff3-2580-4dd8-8c6e-4a167f81dbf8, type: Blocks, "},{"event":"cmd_output","timestamp":1607098481,"output":"state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_"},{"event":"cmd_output","timestamp":1607098481,"output":"change/1(L90), \n\u001b[0m\u001b[22m\n16:14:41.105 [info] block_id: 8317bff3-2580-4dd8-8c6e-4a167f81dbf8, typ"},{"event":"cmd_output","timestamp":1607098481,"output":"e: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl."},{"event":"cmd_output","timestamp":1607098488,"output":"log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:48.194 [info] block_id: 8317bff3-2580-4dd8-8c6e-4a167f8"},{"event":"cmd_output","timestamp":1607098488,"output":"1dbf8, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.ST"},{"event":"cmd_output","timestamp":1607098488,"output":"M.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:48.201 [info] block_id: 8317bff3-2580-4dd8-8c6e-"},{"event":"cmd_output","timestamp":1607098488,"output":"4a167f81dbf8, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098488,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:48.207 [info] ppl_id: c57ca3f5-e582-4168"},{"event":"cmd_output","timestamp":1607098488,"output":"-8f92-3300164ce961, block_id: 8317bff3-2580-4dd8-8c6e-4a167f81dbf8, type: PplBlocks, block_index: 0,"},{"event":"cmd_output","timestamp":1607098488,"output":" state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.I"},{"event":"cmd_output","timestamp":1607098488,"output":"mpl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:48.219 [info] ppl_id: c57ca3f5-e582-4168-8f92-33001"},{"event":"cmd_output","timestamp":1607098488,"output":"64ce961, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098488,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test auto_cancel/running terminates"},{"event":"cmd_output","timestamp":1607098488,"output":" older pipelines that are either running or queing/pending (14955.2ms)\u001b[0m\n\nPpl.DeleteRequests.STM"},{"event":"cmd_output","timestamp":1607098488,"output":"Handler.Deletion.Test\n * test all related entities in db are deleted when delete request is proces"},{"event":"cmd_output","timestamp":1607098488,"output":"sed\u001b[22m\n16:14:48.760 [info] Request: 'run: %{\"branch_id\" => \"fbb1d602-81db-42d4-90fe-e333ac7fc52b"},{"event":"cmd_output","timestamp":1607098488,"output":"\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"semaphore.yml\", \"hook_id"},{"event":"cmd_output","timestamp":1607098488,"output":"\" => \"d4ebaa80-364b-11eb-b802-5254005464e2\", \"label\" => \"master\", \"organization_id\" => \"dbb648e5-ff0"},{"event":"cmd_output","timestamp":1607098488,"output":"e-4d22-9346-47a631856570\", \"owner\" => \"rt\", \"project_id\" => \"to-delete\", \"repo_name\" => \"5_v1_full\","},{"event":"cmd_output","timestamp":1607098488,"output":" \"request_token\" => \"d4eba260-364b-11eb-a6e5-5254005464e2\", \"requester_id\" => \"680b88f8-12e0-4199-bd"},{"event":"cmd_output","timestamp":1607098488,"output":"07-4920fb5e37f0\", \"service\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"]"},{"event":"cmd_output","timestamp":1607098488,"output":", \"wf_id\" => \"69a5050d-b8f8-4a3a-96a1-e2458f87bbc4\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098488,"output":"4:48.763 [info] ppl_id: ac84f635-57e9-4df0-8139-fe8abec4a2a8, type: PplRequests, event: persisted s"},{"event":"cmd_output","timestamp":1607098488,"output":"chedule request with request_token: d4eba260-364b-11eb-a6e5-5254005464e2, origin: Elixir.Ppl.PplRequ"},{"event":"cmd_output","timestamp":1607098488,"output":"ests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:14:48.765 [info] ppl_id: ac8"},{"event":"cmd_output","timestamp":1607098488,"output":"4f635-57e9-4df0-8139-fe8abec4a2a8, type: Ppls, state: initializing, event: initializing, recovery_co"},{"event":"cmd_output","timestamp":1607098488,"output":"unt: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:14:48.77"},{"event":"cmd_output","timestamp":1607098488,"output":"2 [info] Project to-delete and branch masterlatest_wf details updated: \"wf_id: 69a5050d-b8f8-4a3a-9"},{"event":"cmd_output","timestamp":1607098488,"output":"6a1-e2458f87bbc4, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:14:48.774 [info] Persisted ppl_sub_init for pipeline"},{"event":"cmd_output","timestamp":1607098488,"output":" with ppl_id: ac84f635-57e9-4df0-8139-fe8abec4a2a8: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ec"},{"event":"cmd_output","timestamp":1607098488,"output":"to.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id:"},{"event":"cmd_output","timestamp":1607098488,"output":" 347, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:14:48.772888], pipel"},{"event":"cmd_output","timestamp":1607098488,"output":"ine_requests: #Ecto.Association.NotLoaded, ppl_id: \"ac"},{"event":"cmd_output","timestamp":1607098488,"output":"84f635-57e9-4df0-8139-fe8abec4a2a8\", recovery_count: 0, result: nil, result_reason: nil, state: \"cre"},{"event":"cmd_output","timestamp":1607098488,"output":"ated\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:14:48.77289"},{"event":"cmd_output","timestamp":1607098488,"output":"4]}\n\u001b[0m\u001b[22m\n16:14:48.777 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingSta"},{"event":"cmd_output","timestamp":1607098488,"output":"te with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beho"},{"event":"cmd_output","timestamp":1607098488,"output":"lder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initi"},{"event":"cmd_output","timestamp":1607098488,"output":"alizing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_stat"},{"event":"cmd_output","timestamp":1607098488,"output":"e: \"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.ar"},{"event":"cmd_output","timestamp":1607098488,"output":"gs/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recov"},{"event":"cmd_output","timestamp":1607098488,"output":"ery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:48.777 ["},{"event":"cmd_output","timestamp":1607098488,"output":"info] Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHan"},{"event":"cmd_output","timestamp":1607098488,"output":"dler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Pen"},{"event":"cmd_output","timestamp":1607098488,"output":"dingState\"]}, recurring args: %{allowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_t"},{"event":"cmd_output","timestamp":1607098488,"output":"ime_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publisher_cb: #Function<0"},{"event":"cmd_output","timestamp":1607098488,"output":".8493005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :termin"},{"event":"cmd_output","timestamp":1607098488,"output":"ate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, t"},{"event":"cmd_output","timestamp":1607098488,"output":"ask_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:14:48.777 [info] Periodic from module Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098488,"output":".Ppls.STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, m"},{"event":"cmd_output","timestamp":1607098488,"output":"etric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{allowe"},{"event":"cmd_output","timestamp":1607098488,"output":"d_states: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, "},{"event":"cmd_output","timestamp":1607098488,"output":"observed_state: \"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState"},{"event":"cmd_output","timestamp":1607098488,"output":".args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :re"},{"event":"cmd_output","timestamp":1607098488,"output":"covery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:48.77"},{"event":"cmd_output","timestamp":1607098488,"output":"8 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl.Ppls.STM"},{"event":"cmd_output","timestamp":1607098488,"output":"Handler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-"},{"event":"cmd_output","timestamp":1607098488,"output":"RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec"},{"event":"cmd_output","timestamp":1607098488,"output":": -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"running\", publisher_cb: #Function<0.74670"},{"event":"cmd_output","timestamp":1607098488,"output":"282/1 in Ppl.Ppls.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_r"},{"event":"cmd_output","timestamp":1607098488,"output":"equest, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_s"},{"event":"cmd_output","timestamp":1607098488,"output":"upervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:14:48.778 [info] Periodic from module Elixir.Ppl.Ppls"},{"event":"cmd_output","timestamp":1607098488,"output":".STMHandler.StoppingState with name Elixir.Ppl.Ppls.STMHandler.StoppingState :: period: 100 ms, metr"},{"event":"cmd_output","timestamp":1607098488,"output":"ic_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring args: %{allowed_"},{"event":"cmd_output","timestamp":1607098488,"output":"states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_sta"},{"event":"cmd_output","timestamp":1607098488,"output":"te: \"stopping\", publisher_cb: #Function<0.71803493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, r"},{"event":"cmd_output","timestamp":1607098488,"output":"epo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_coun"},{"event":"cmd_output","timestamp":1607098488,"output":"t, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:48.778 [info] P"},{"event":"cmd_output","timestamp":1607098488,"output":"eriodic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits."},{"event":"cmd_output","timestamp":1607098488,"output":"STMHandler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-S"},{"event":"cmd_output","timestamp":1607098488,"output":"TMHandler-CreatedState\"]}, recurring args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec:"},{"event":"cmd_output","timestamp":1607098488,"output":" 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip"},{"event":"cmd_output","timestamp":1607098488,"output":", repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_c"},{"event":"cmd_output","timestamp":1607098488,"output":"ount, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14"},{"event":"cmd_output","timestamp":1607098488,"output":":48.779 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixi"},{"event":"cmd_output","timestamp":1607098488,"output":"r.Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", "},{"event":"cmd_output","timestamp":1607098488,"output":"[\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"c"},{"event":"cmd_output","timestamp":1607098488,"output":"ompilation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observ"},{"event":"cmd_output","timestamp":1607098488,"output":"ed_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, "},{"event":"cmd_output","timestamp":1607098488,"output":":updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, "},{"event":"cmd_output","timestamp":1607098488,"output":"task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:48.779 [info] Periodic from module Elixir.Ppl.PplSubInits"},{"event":"cmd_output","timestamp":1607098488,"output":".STMHandler.CompilationState with name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period:"},{"event":"cmd_output","timestamp":1607098488,"output":" 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, rec"},{"event":"cmd_output","timestamp":1607098488,"output":"urring args: %{allowed_states: [\"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec"},{"event":"cmd_output","timestamp":1607098488,"output":": -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"compilation\", publisher_cb:"},{"event":"cmd_output","timestamp":1607098488,"output":" :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :reco"},{"event":"cmd_output","timestamp":1607098488,"output":"very_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098488,"output":"\n16:14:48.779 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with n"},{"event":"cmd_output","timestamp":1607098488,"output":"ame Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholde"},{"event":"cmd_output","timestamp":1607098488,"output":"r-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurring args: %{allowed_states: [\"do"},{"event":"cmd_output","timestamp":1607098488,"output":"ne\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regula"},{"event":"cmd_output","timestamp":1607098488,"output":"r_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, "},{"event":"cmd_output","timestamp":1607098488,"output":":state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervis"},{"event":"cmd_output","timestamp":1607098488,"output":"or: :skip}\n\u001b[0m\u001b[22m\n16:14:48.779 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.Ini"},{"event":"cmd_output","timestamp":1607098488,"output":"tializingState with name Elixir.Ppl.PplBlocks.STMHandler.InitializingState :: period: 100 ms, metric"},{"event":"cmd_output","timestamp":1607098488,"output":"_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-InitializingState\"]}, recurring args: %{a"},{"event":"cmd_output","timestamp":1607098488,"output":"llowed_states: [\"initializing\", \"waiting\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlock"},{"event":"cmd_output","timestamp":1607098488,"output":"s.Model.PplBlocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returnin"},{"event":"cmd_output","timestamp":1607098488,"output":"g: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], "},{"event":"cmd_output","timestamp":1607098488,"output":"schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:48.779 [info] Peri"},{"event":"cmd_output","timestamp":1607098488,"output":"odic from module Elixir.Ppl.PplBlocks.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks.STMHand"},{"event":"cmd_output","timestamp":1607098488,"output":"ler.WaitingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandle"},{"event":"cmd_output","timestamp":1607098488,"output":"r-WaitingState\"]}, recurring args: %{allowed_states: [\"waiting\", \"running\", \"done\"], cooling_time_se"},{"event":"cmd_output","timestamp":1607098488,"output":"c: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"waiting\", publisher_cb: #Functi"},{"event":"cmd_output","timestamp":1607098488,"output":"on<0.8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, returning: [:id"},{"event":"cmd_output","timestamp":1607098488,"output":", :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema:"},{"event":"cmd_output","timestamp":1607098488,"output":" Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:48.780 [info] Periodic fr"},{"event":"cmd_output","timestamp":1607098488,"output":"om module Elixir.Ppl.PplBlocks.STMHandler.RunningState with name Elixir.Ppl.PplBlocks.STMHandler.Run"},{"event":"cmd_output","timestamp":1607098488,"output":"ningState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-Runni"},{"event":"cmd_output","timestamp":1607098488,"output":"ngState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2,"},{"event":"cmd_output","timestamp":1607098488,"output":" initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"running\", publisher_cb: #Function<0."},{"event":"cmd_output","timestamp":1607098488,"output":"28166834/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :t"},{"event":"cmd_output","timestamp":1607098488,"output":"erminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], "},{"event":"cmd_output","timestamp":1607098488,"output":"schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:48.780 [info] Peri"},{"event":"cmd_output","timestamp":1607098488,"output":"odic from module Elixir.Ppl.PplBlocks.STMHandler.StoppingState with name Elixir.Ppl.PplBlocks.STMHan"},{"event":"cmd_output","timestamp":1607098488,"output":"dler.StoppingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHand"},{"event":"cmd_output","timestamp":1607098488,"output":"ler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, "},{"event":"cmd_output","timestamp":1607098488,"output":"initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"stopping\", publisher_cb: #Function<0."},{"event":"cmd_output","timestamp":1607098488,"output":"104215991/1 in Ppl.PplBlocks.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, "},{"event":"cmd_output","timestamp":1607098488,"output":":terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id]"},{"event":"cmd_output","timestamp":1607098488,"output":", schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:48.780 [info] Pe"},{"event":"cmd_output","timestamp":1607098488,"output":"riodic from module Elixir.Block.Blocks.STMHandler.InitializingState with name Elixir.Block.Blocks.ST"},{"event":"cmd_output","timestamp":1607098488,"output":"MHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-S"},{"event":"cmd_output","timestamp":1607098488,"output":"TMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_"},{"event":"cmd_output","timestamp":1607098488,"output":"sec: 0, initial_query: Block.Blocks.Model.Blocks, observed_state: \"initializing\", publisher_cb: :ski"},{"event":"cmd_output","timestamp":1607098488,"output":"p, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, "},{"event":"cmd_output","timestamp":1607098488,"output":":block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:48.781 [inf"},{"event":"cmd_output","timestamp":1607098488,"output":"o] Periodic from module Elixir.Block.Blocks.STMHandler.RunningState with name Elixir.Block.Blocks.S"},{"event":"cmd_output","timestamp":1607098488,"output":"TMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHa"},{"event":"cmd_output","timestamp":1607098488,"output":"ndler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_ti"},{"event":"cmd_output","timestamp":1607098488,"output":"me_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"running\", publisher_cb: :skip"},{"event":"cmd_output","timestamp":1607098488,"output":", repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :"},{"event":"cmd_output","timestamp":1607098488,"output":"block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:48.781 [info"},{"event":"cmd_output","timestamp":1607098488,"output":"] Periodic from module Elixir.Block.Blocks.STMHandler.StoppingState with name Elixir.Block.Blocks.S"},{"event":"cmd_output","timestamp":1607098488,"output":"TMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMH"},{"event":"cmd_output","timestamp":1607098488,"output":"andler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -"},{"event":"cmd_output","timestamp":1607098488,"output":"2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"stopping\", publisher_cb: :skip, repo: "},{"event":"cmd_output","timestamp":1607098488,"output":"Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id"},{"event":"cmd_output","timestamp":1607098488,"output":"], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:48.781 [info] Perio"},{"event":"cmd_output","timestamp":1607098488,"output":"dic from module Elixir.Block.Tasks.STMHandler.PendingState with name Elixir.Block.Tasks.STMHandler.P"},{"event":"cmd_output","timestamp":1607098488,"output":"endingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-Pendin"},{"event":"cmd_output","timestamp":1607098488,"output":"gState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query"},{"event":"cmd_output","timestamp":1607098488,"output":": Block.Tasks.Model.Tasks, observed_state: \"pending\", publisher_cb: :skip, repo: Block.EctoRepo, ret"},{"event":"cmd_output","timestamp":1607098488,"output":"urning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id, :build_request_id"},{"event":"cmd_output","timestamp":1607098488,"output":"], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:48.781 [info] Periodi"},{"event":"cmd_output","timestamp":1607098488,"output":"c from module Elixir.Block.Tasks.STMHandler.RunningState with name Elixir.Block.Tasks.STMHandler.Run"},{"event":"cmd_output","timestamp":1607098488,"output":"ningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningS"},{"event":"cmd_output","timestamp":1607098488,"output":"tate\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, in"},{"event":"cmd_output","timestamp":1607098488,"output":"itial_query: Block.Tasks.Model.Tasks, observed_state: \"running\", publisher_cb: :skip, repo: Block.Ec"},{"event":"cmd_output","timestamp":1607098488,"output":"toRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schem"},{"event":"cmd_output","timestamp":1607098488,"output":"a: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:48.782 [info] Periodic from m"},{"event":"cmd_output","timestamp":1607098488,"output":"odule Elixir.Block.Tasks.STMHandler.StoppingState with name Elixir.Block.Tasks.STMHandler.StoppingSt"},{"event":"cmd_output","timestamp":1607098488,"output":"ate :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\""},{"event":"cmd_output","timestamp":1607098488,"output":"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Blo"},{"event":"cmd_output","timestamp":1607098488,"output":"ck.Tasks.Model.Tasks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returni"},{"event":"cmd_output","timestamp":1607098488,"output":"ng: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks."},{"event":"cmd_output","timestamp":1607098488,"output":"Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:48.888 [info] ppl_id: ac84f635-57e9-4df0-813"},{"event":"cmd_output","timestamp":1607098488,"output":"9-fe8abec4a2a8, type: PplRequests, event: persisted source_args for pipeline: ac84f635-57e9-4df0-813"},{"event":"cmd_output","timestamp":1607098488,"output":"9-fe8abec4a2a8, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098488,"output":"\u001b[22m\n16:14:48.892 [info] ppl_id: ac84f635-57e9-4df0-8139-fe8abec4a2a8, type: PplSubInits, state: "},{"event":"cmd_output","timestamp":1607098488,"output":"fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change"},{"event":"cmd_output","timestamp":1607098488,"output":"/1(L90), \n\u001b[0m\u001b[22m\n16:14:48.907 [info] ppl_id: ac84f635-57e9-4df0-8139-fe8abec4a2a8, type: PplSu"},{"event":"cmd_output","timestamp":1607098488,"output":"bInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Im"},{"event":"cmd_output","timestamp":1607098488,"output":"pl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:48.932 [info] ppl_id: ac84f635-57e9-4df0-8139-fe8abe"},{"event":"cmd_output","timestamp":1607098488,"output":"c4a2a8, type: PplRequests, event: persisted definition for request with request_token: d4eba260-364b"},{"event":"cmd_output","timestamp":1607098488,"output":"-11eb-a6e5-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3"},{"event":"cmd_output","timestamp":1607098488,"output":"(L76), \n\u001b[0m\u001b[22m\n16:14:48.934 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #"},{"event":"cmd_output","timestamp":1607098488,"output":"Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:14:48.933778], name: \"master-"},{"event":"cmd_output","timestamp":1607098488,"output":".semaphore/semaphore.yml\", organization_id: \"dbb648e5-ff0e-4d22-9346-47a631856570\", project_id: \"to-"},{"event":"cmd_output","timestamp":1607098488,"output":"delete\", queue_id: \"9f49d7a8-e0a8-4f28-9f83-a34ba429e9ed\", scope: \"project\", updated_at: ~N[2020-12-"},{"event":"cmd_output","timestamp":1607098488,"output":"04 16:14:48.933786], user_generated: false}}\n\u001b[0m\u001b[22m\n16:14:48.939 [info] ppl_id: not_available,"},{"event":"cmd_output","timestamp":1607098488,"output":" event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098488,"output":"[22m\n16:14:48.939 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitStat"},{"event":"cmd_output","timestamp":1607098488,"output":"e.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:48.939 [info] ppl_id: ac84f635-57e9-4df0-8139-fe8abec4a2a8, t"},{"event":"cmd_output","timestamp":1607098488,"output":"ype: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098488,"output":"ir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:48.939 [info] pp"},{"event":"cmd_output","timestamp":1607098488,"output":"l_id: ac84f635-57e9-4df0-8139-fe8abec4a2a8, type: PplBlocks, block_index: 1, state: initializing, ev"},{"event":"cmd_output","timestamp":1607098488,"output":"ent: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/"},{"event":"cmd_output","timestamp":1607098488,"output":"1(L105), \n\u001b[0m\u001b[22m\n16:14:48.941 [info] ppl_id: ac84f635-57e9-4df0-8139-fe8abec4a2a8, type: PplSu"},{"event":"cmd_output","timestamp":1607098488,"output":"bInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loope"},{"event":"cmd_output","timestamp":1607098488,"output":"r.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:48.947 [info] ppl_id: ac84f635-57e9-4df0-813"},{"event":"cmd_output","timestamp":1607098488,"output":"9-fe8abec4a2a8, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_co"},{"event":"cmd_output","timestamp":1607098488,"output":"unt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:48.947 [info] pp"},{"event":"cmd_output","timestamp":1607098488,"output":"l_id: ac84f635-57e9-4df0-8139-fe8abec4a2a8, type: Ppls, state: pending, event: exit_scheduling, reco"},{"event":"cmd_output","timestamp":1607098488,"output":"very_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:48.951 [in"},{"event":"cmd_output","timestamp":1607098488,"output":"fo] ppl_id: ac84f635-57e9-4df0-8139-fe8abec4a2a8, type: PplBlocks, block_index: 1, state: waiting, "},{"event":"cmd_output","timestamp":1607098488,"output":"event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \r"},{"event":"cmd_output","timestamp":1607098488,"output":"\n\u001b[0m\u001b[22m\n16:14:48.954 [info] ppl_id: ac84f635-57e9-4df0-8139-fe8abec4a2a8, type: Ppls, state: qu"},{"event":"cmd_output","timestamp":1607098488,"output":"euing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1("},{"event":"cmd_output","timestamp":1607098488,"output":"L90), \n\u001b[0m\u001b[22m\n16:14:48.961 [info] ppl_id: ac84f635-57e9-4df0-8139-fe8abec4a2a8, type: Ppls, st"},{"event":"cmd_output","timestamp":1607098488,"output":"ate: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_ch"},{"event":"cmd_output","timestamp":1607098488,"output":"ange/1(L90), \n\u001b[0m\u001b[22m\n16:14:48.975 [info] PplBlocks WaitingState STM is scheduling block 0 from"},{"event":"cmd_output","timestamp":1607098488,"output":" pipeline: \"ac84f635-57e9-4df0-8139-fe8abec4a2a8\"\n\u001b[0m\u001b[22m\n16:14:48.980 [info] block_id: e8f679b"},{"event":"cmd_output","timestamp":1607098488,"output":"d-afbd-4cb0-a92d-c5209852826d, type: BlockRequests, event: persisted block run request from ppl ac84"},{"event":"cmd_output","timestamp":1607098488,"output":"f635-57e9-4df0-8139-fe8abec4a2a8 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequests"},{"event":"cmd_output","timestamp":1607098488,"output":"Queries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:14:48.983 [info] block_id: e8f679bd-afbd-4cb0-a92d"},{"event":"cmd_output","timestamp":1607098488,"output":"-c5209852826d, type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098488,"output":"ixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:14:48.984 [info] Block 0 of pi"},{"event":"cmd_output","timestamp":1607098488,"output":"peline with id: ac84f635-57e9-4df0-8139-fe8abec4a2a8 scheduled in block service with id: : \"e8f679bd"},{"event":"cmd_output","timestamp":1607098488,"output":"-afbd-4cb0-a92d-c5209852826d\"\n\u001b[0m\u001b[22m\n16:14:48.990 [info] ppl_id: ac84f635-57e9-4df0-8139-fe8ab"},{"event":"cmd_output","timestamp":1607098488,"output":"ec4a2a8, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098488,"output":" origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:48.993 [info] block_id:"},{"event":"cmd_output","timestamp":1607098488,"output":" e8f679bd-afbd-4cb0-a92d-c5209852826d, type: BlockRequests, event: persisted build and sub_ppl detai"},{"event":"cmd_output","timestamp":1607098488,"output":"ls for block_request: e8f679bd-afbd-4cb0-a92d-c5209852826d, origin: Elixir.Block.BlockRequests.Model"},{"event":"cmd_output","timestamp":1607098488,"output":".BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:14:48.997 [info] block_id: e8f679bd-afbd"},{"event":"cmd_output","timestamp":1607098488,"output":"-4cb0-a92d-c5209852826d, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098489,"output":"xir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:14:49.000 [info] blo"},{"event":"cmd_output","timestamp":1607098489,"output":"ck_id: e8f679bd-afbd-4cb0-a92d-c5209852826d, type: Blocks, state: running, event: exit_scheduling, r"},{"event":"cmd_output","timestamp":1607098489,"output":"ecovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:49.040 "},{"event":"cmd_output","timestamp":1607098489,"output":"[info] block_id: e8f679bd-afbd-4cb0-a92d-c5209852826d, type: Tasks, state: running, event: exit_sch"},{"event":"cmd_output","timestamp":1607098489,"output":"eduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098489,"output":"14:49.220 [info] block_id: e8f679bd-afbd-4cb0-a92d-c5209852826d, type: Tasks, state: done, event: e"},{"event":"cmd_output","timestamp":1607098489,"output":"xit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098489,"output":"2m\n16:14:49.235 [info] block_id: e8f679bd-afbd-4cb0-a92d-c5209852826d, type: Blocks, state: done, "},{"event":"cmd_output","timestamp":1607098489,"output":"event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \r"},{"event":"cmd_output","timestamp":1607098489,"output":"\n\u001b[0m\u001b[22m\n16:14:49.240 [info] ppl_id: ac84f635-57e9-4df0-8139-fe8abec4a2a8, block_id: e8f679bd-af"},{"event":"cmd_output","timestamp":1607098489,"output":"bd-4cb0-a92d-c5209852826d, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit"},{"event":"cmd_output","timestamp":1607098489,"output":"_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098489,"output":"\n16:14:49.245 [info] PplBlocks WaitingState STM is scheduling block 1 from pipeline: \"ac84f635-57e9"},{"event":"cmd_output","timestamp":1607098489,"output":"-4df0-8139-fe8abec4a2a8\"\n\u001b[0m\u001b[22m\n16:14:49.251 [info] block_id: 8fd4ab44-9b92-44aa-bd36-ef21ed92"},{"event":"cmd_output","timestamp":1607098489,"output":"c412, type: BlockRequests, event: persisted block run request from ppl ac84f635-57e9-4df0-8139-fe8ab"},{"event":"cmd_output","timestamp":1607098489,"output":"ec4a2a8 for block 1, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/"},{"event":"cmd_output","timestamp":1607098489,"output":"4(L35), \n\u001b[0m\u001b[22m\n16:14:49.252 [info] block_id: 8fd4ab44-9b92-44aa-bd36-ef21ed92c412, type: Bloc"},{"event":"cmd_output","timestamp":1607098489,"output":"ks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.B"},{"event":"cmd_output","timestamp":1607098489,"output":"locksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:14:49.252 [info] Block 1 of pipeline with id: ac84f635-"},{"event":"cmd_output","timestamp":1607098489,"output":"57e9-4df0-8139-fe8abec4a2a8 scheduled in block service with id: : \"8fd4ab44-9b92-44aa-bd36-ef21ed92c"},{"event":"cmd_output","timestamp":1607098489,"output":"412\"\n\u001b[0m\u001b[22m\n16:14:49.254 [info] ppl_id: ac84f635-57e9-4df0-8139-fe8abec4a2a8, type: PplBlocks,"},{"event":"cmd_output","timestamp":1607098489,"output":" block_index: 1, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.ST"},{"event":"cmd_output","timestamp":1607098489,"output":"M.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:49.256 [info] block_id: 8fd4ab44-9b92-44aa-bd36-"},{"event":"cmd_output","timestamp":1607098489,"output":"ef21ed92c412, type: BlockRequests, event: persisted build and sub_ppl details for block_request: 8fd"},{"event":"cmd_output","timestamp":1607098489,"output":"4ab44-9b92-44aa-bd36-ef21ed92c412, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.ins"},{"event":"cmd_output","timestamp":1607098489,"output":"ert_build/2(L41), \n\u001b[0m\u001b[22m\n16:14:49.258 [info] block_id: 8fd4ab44-9b92-44aa-bd36-ef21ed92c412, "},{"event":"cmd_output","timestamp":1607098489,"output":"type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandl"},{"event":"cmd_output","timestamp":1607098489,"output":"er.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:14:49.267 [info] block_id: 8fd4ab44-9b92-44aa"},{"event":"cmd_output","timestamp":1607098489,"output":"-bd36-ef21ed92c412, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098489,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:49.279 [info] block_id: 8fd4ab4"},{"event":"cmd_output","timestamp":1607098489,"output":"4-9b92-44aa-bd36-ef21ed92c412, type: Tasks, state: running, event: exit_scheduling, recovery_count: "},{"event":"cmd_output","timestamp":1607098489,"output":"0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:49.328 [info] block_i"},{"event":"cmd_output","timestamp":1607098489,"output":"d: 8fd4ab44-9b92-44aa-bd36-ef21ed92c412, type: Tasks, state: done, event: exit_scheduling, recovery_"},{"event":"cmd_output","timestamp":1607098489,"output":"count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:49.333 [info] "},{"event":"cmd_output","timestamp":1607098489,"output":"block_id: 8fd4ab44-9b92-44aa-bd36-ef21ed92c412, type: Blocks, state: done, event: exit_scheduling, r"},{"event":"cmd_output","timestamp":1607098489,"output":"ecovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:49.337 "},{"event":"cmd_output","timestamp":1607098489,"output":"[info] ppl_id: ac84f635-57e9-4df0-8139-fe8abec4a2a8, block_id: 8fd4ab44-9b92-44aa-bd36-ef21ed92c412"},{"event":"cmd_output","timestamp":1607098489,"output":", type: PplBlocks, block_index: 1, state: done, result: passed, event: exit_scheduling, recovery_cou"},{"event":"cmd_output","timestamp":1607098489,"output":"nt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:49.347 [info] ppl"},{"event":"cmd_output","timestamp":1607098489,"output":"_id: ac84f635-57e9-4df0-8139-fe8abec4a2a8, type: Ppls, state: done, result: passed, event: exit_sche"},{"event":"cmd_output","timestamp":1607098489,"output":"duling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098489,"output":"4:49.410 [info] Persisted delete_request for pipelines from project with project_id: to-delete: %Pp"},{"event":"cmd_output","timestamp":1607098489,"output":"l.DeleteRequests.Model.DeleteRequests{__meta__: #Ecto.Schema.Metadata<:loaded, \"delete_requests\">, e"},{"event":"cmd_output","timestamp":1607098489,"output":"rror_description: nil, id: 2, in_scheduling: false, inserted_at: ~N[2020-12-04 16:14:49.409333], pro"},{"event":"cmd_output","timestamp":1607098489,"output":"ject_id: \"to-delete\", recovery_count: 0, requester: \"sudo\", result: nil, result_reason: nil, state: "},{"event":"cmd_output","timestamp":1607098489,"output":"\"pending\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:14:49.4"},{"event":"cmd_output","timestamp":1607098489,"output":"09340]}\n\u001b[0m\u001b[22m\n16:14:49.410 [info] Periodic from module Elixir.Ppl.DeleteRequests.STMHandler.P"},{"event":"cmd_output","timestamp":1607098489,"output":"endingState with name Elixir.Ppl.DeleteRequests.STMHandler.PendingState :: period: 100 ms, metric_na"},{"event":"cmd_output","timestamp":1607098489,"output":"me: {\"Ppl.beholder-wake_up\", [\"Ppl-DeleteRequests-STMHandler-PendingState\"]}, recurring args: %{allo"},{"event":"cmd_output","timestamp":1607098489,"output":"wed_states: [\"deleting\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.DeleteRequests.Model.Dele"},{"event":"cmd_output","timestamp":1607098489,"output":"teRequests, observed_state: \"pending\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :te"},{"event":"cmd_output","timestamp":1607098489,"output":"rminate_request, :updated_at, :state, :recovery_count, :project_id], schema: Ppl.DeleteRequests.Mode"},{"event":"cmd_output","timestamp":1607098489,"output":"l.DeleteRequests, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:49.410 [info] Periodic from module Elix"},{"event":"cmd_output","timestamp":1607098489,"output":"ir.Ppl.DeleteRequests.STMHandler.DeletingState with name Elixir.Ppl.DeleteRequests.STMHandler.Deleti"},{"event":"cmd_output","timestamp":1607098489,"output":"ngState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-DeleteRequests-STMHandler-Del"},{"event":"cmd_output","timestamp":1607098489,"output":"etingState\"]}, recurring args: %{allowed_states: [\"deleting\", \"queue_deleting\", \"done\"], cooling_tim"},{"event":"cmd_output","timestamp":1607098489,"output":"e_sec: -2, initial_query: #Ecto.Query, observed_state: \"deleting\", "},{"event":"cmd_output","timestamp":1607098489,"output":"publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :"},{"event":"cmd_output","timestamp":1607098489,"output":"recovery_count, :project_id], schema: Ppl.DeleteRequests.Model.DeleteRequests, task_supervisor: :ski"},{"event":"cmd_output","timestamp":1607098489,"output":"p}\n\u001b[0m\u001b[22m\n16:14:49.411 [info] Periodic from module Elixir.Ppl.DeleteRequests.STMHandler.QueueD"},{"event":"cmd_output","timestamp":1607098489,"output":"eletingState with name Elixir.Ppl.DeleteRequests.STMHandler.QueueDeletingState :: period: 100 ms, me"},{"event":"cmd_output","timestamp":1607098489,"output":"tric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-DeleteRequests-STMHandler-QueueDeletingState\"]}, recurring"},{"event":"cmd_output","timestamp":1607098489,"output":" args: %{allowed_states: [\"queue_deleting\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Delete"},{"event":"cmd_output","timestamp":1607098489,"output":"Requests.Model.DeleteRequests, observed_state: \"queue_deleting\", publisher_cb: :skip, repo: Ppl.Ecto"},{"event":"cmd_output","timestamp":1607098489,"output":"Repo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :project_id], schem"},{"event":"cmd_output","timestamp":1607098489,"output":"a: Ppl.DeleteRequests.Model.DeleteRequests, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:49.516 [info] "},{"event":"cmd_output","timestamp":1607098489,"output":" type: DeleteRequests, state: deleting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Lo"},{"event":"cmd_output","timestamp":1607098489,"output":"oper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:49.621 [info] Deleted pipeline ac84f635-5"},{"event":"cmd_output","timestamp":1607098489,"output":"7e9-4df0-8139-fe8abec4a2a8 from project:: \"to-delete\"\n\u001b[0m\u001b[22m\n16:14:49.726 [info] type: DeleteR"},{"event":"cmd_output","timestamp":1607098489,"output":"equests, state: queue_deleting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM"},{"event":"cmd_output","timestamp":1607098489,"output":".Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:49.821 [info] Deleted queue master-.semaphore/sem"},{"event":"cmd_output","timestamp":1607098489,"output":"aphore.yml from project:: \"to-delete\"\n\u001b[0m\u001b[22m\n16:14:49.929 [info] type: DeleteRequests, state: "},{"event":"cmd_output","timestamp":1607098489,"output":"done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098492,"output":"90), \n\u001b[0m\u001b[32m\r * test all related entities in db are deleted when delete request is processed (3"},{"event":"cmd_output","timestamp":1607098492,"output":"709.9ms)\u001b[0m\n\nPpl.DeleteRequests.Model.DeleteRequests.Test\n * doctest Ppl.DeleteRequests.Model.D"},{"event":"cmd_output","timestamp":1607098492,"output":"eleteRequests.changeset/2 (1)\r * doctest Ppl.DeleteRequests.Model.DeleteRequests.changeset/2 (1) (s"},{"event":"cmd_output","timestamp":1607098492,"output":"kipped)\n * doctest Ppl.DeleteRequests.Model.DeleteRequests.changeset/2 (2)\r * doctest Ppl.DeleteR"},{"event":"cmd_output","timestamp":1607098492,"output":"equests.Model.DeleteRequests.changeset/2 (2) (skipped)\n\nPpl.DeleteRequests.Model.DeleteRequestsQue"},{"event":"cmd_output","timestamp":1607098492,"output":"ries.Test\n * test insert delete_request\r * test insert delete_request (skipped)\n * test project"},{"event":"cmd_output","timestamp":1607098492,"output":"_deletion_requested? returns true if project's pipelines deletion is requested\r * test project_dele"},{"event":"cmd_output","timestamp":1607098492,"output":"tion_requested? returns true if project's pipelines deletion is requested (skipped)\n * test projec"},{"event":"cmd_output","timestamp":1607098492,"output":"t_deletion_requested? returns false if project's pipelines deletion is not requested\r * test projec"},{"event":"cmd_output","timestamp":1607098492,"output":"t_deletion_requested? returns false if project's pipelines deletion is not requested (skipped)\n\nPp"},{"event":"cmd_output","timestamp":1607098492,"output":"l.DefinitionReviser.WhenValidator.Test\n * test pipeline with valid expressions in all when conditi"},{"event":"cmd_output","timestamp":1607098492,"output":"ons passes\u001b[22m\n16:14:52.467 [info] Request: 'run: %{:file_name => \"multiple_valid_whens.yml\", :re"},{"event":"cmd_output","timestamp":1607098492,"output":"po_name => \"22_skip_block\", \"branch_id\" => \"8558cd3a-2e1d-409a-a1e4-f2110b07c76d\", \"branch_name\" => "},{"event":"cmd_output","timestamp":1607098492,"output":"\"master\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"semaphore.yml\", \"hook_id\" => \"d72153d6-364b-"},{"event":"cmd_output","timestamp":1607098492,"output":"11eb-b110-5254005464e2\", \"label\" => \"master\", \"organization_id\" => \"96c0d88b-fa03-449e-a998-72eadb5b"},{"event":"cmd_output","timestamp":1607098492,"output":"a0af\", \"owner\" => \"rt\", \"project_id\" => \"ce45fc4b-dc71-4ff1-947d-b156d049f734\", \"repo_name\" => \"2_ba"},{"event":"cmd_output","timestamp":1607098492,"output":"sic\", \"request_token\" => \"d7214a26-364b-11eb-b75a-5254005464e2\", \"requester_id\" => \"fe710dbd-31b9-4e"},{"event":"cmd_output","timestamp":1607098492,"output":"36-b62f-96c0e751d11c\", \"service\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_sec"},{"event":"cmd_output","timestamp":1607098492,"output":"ret\"], \"wf_id\" => \"eedbbb67-be15-4f9f-a19d-62713273fa4e\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098492,"output":"\n16:14:52.472 [info] ppl_id: 190155ea-b6fc-4ba6-8f46-11f260b3f42b, type: PplRequests, event: persis"},{"event":"cmd_output","timestamp":1607098492,"output":"ted schedule request with request_token: d7214a26-364b-11eb-b75a-5254005464e2, origin: Elixir.Ppl.Pp"},{"event":"cmd_output","timestamp":1607098492,"output":"lRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:14:52.474 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098492,"output":": 190155ea-b6fc-4ba6-8f46-11f260b3f42b, type: Ppls, state: initializing, event: initializing, recove"},{"event":"cmd_output","timestamp":1607098492,"output":"ry_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:14:"},{"event":"cmd_output","timestamp":1607098492,"output":"52.477 [info] Project ce45fc4b-dc71-4ff1-947d-b156d049f734 and branch masterlatest_wf details updat"},{"event":"cmd_output","timestamp":1607098492,"output":"ed: \"wf_id: eedbbb67-be15-4f9f-a19d-62713273fa4e, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:14:52.478 [info] Per"},{"event":"cmd_output","timestamp":1607098492,"output":"sisted ppl_sub_init for pipeline with ppl_id: 190155ea-b6fc-4ba6-8f46-11f260b3f42b: %Ppl.PplSubInits"},{"event":"cmd_output","timestamp":1607098492,"output":".Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: "},{"event":"cmd_output","timestamp":1607098492,"output":"nil, error_description: nil, id: 348, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[20"},{"event":"cmd_output","timestamp":1607098492,"output":"20-12-04 16:14:52.477369], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"190155ea-b6fc-4ba6-8f46-11f260b3f42b\", recovery_count: 0, result: nil,"},{"event":"cmd_output","timestamp":1607098492,"output":" result_reason: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_"},{"event":"cmd_output","timestamp":1607098492,"output":"at: ~N[2020-12-04 16:14:52.477375]}\n\u001b[0m\u001b[22m\n16:14:52.481 [info] Periodic from module Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098492,"output":".Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period:"},{"event":"cmd_output","timestamp":1607098492,"output":" 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring"},{"event":"cmd_output","timestamp":1607098492,"output":" args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Pp"},{"event":"cmd_output","timestamp":1607098492,"output":"l.Ppls.Model.Ppls, observed_state: \"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls"},{"event":"cmd_output","timestamp":1607098492,"output":".STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :upd"},{"event":"cmd_output","timestamp":1607098492,"output":"ated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :"},{"event":"cmd_output","timestamp":1607098492,"output":"skip}\n\u001b[0m\u001b[22m\n16:14:52.481 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingState "},{"event":"cmd_output","timestamp":1607098492,"output":"with name Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wak"},{"event":"cmd_output","timestamp":1607098492,"output":"e_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"pending\", \"queuing"},{"event":"cmd_output","timestamp":1607098492,"output":"\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pen"},{"event":"cmd_output","timestamp":1607098492,"output":"ding\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.Ec"},{"event":"cmd_output","timestamp":1607098492,"output":"toRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id]"},{"event":"cmd_output","timestamp":1607098492,"output":", schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:14:52.481 [info] "},{"event":"cmd_output","timestamp":1607098492,"output":" Periodic from module Elixir.Ppl.Ppls.STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandler.Q"},{"event":"cmd_output","timestamp":1607098492,"output":"ueuingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingSt"},{"event":"cmd_output","timestamp":1607098492,"output":"ate\"]}, recurring args: %{allowed_states: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, init"},{"event":"cmd_output","timestamp":1607098492,"output":"ial_query: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", publisher_cb: #Function<0.125102843/1 in "},{"event":"cmd_output","timestamp":1607098492,"output":"Ppl.Ppls.STMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :"},{"event":"cmd_output","timestamp":1607098492,"output":"updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor"},{"event":"cmd_output","timestamp":1607098492,"output":": :skip}\n\u001b[0m\u001b[22m\n16:14:52.481 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.RunningSta"},{"event":"cmd_output","timestamp":1607098492,"output":"te with name Elixir.Ppl.Ppls.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-"},{"event":"cmd_output","timestamp":1607098492,"output":"wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stop"},{"event":"cmd_output","timestamp":1607098492,"output":"ping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"running\","},{"event":"cmd_output","timestamp":1607098492,"output":" publisher_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler.RunningState.args/0>, repo: Ppl.EctoRep"},{"event":"cmd_output","timestamp":1607098492,"output":"o, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], sch"},{"event":"cmd_output","timestamp":1607098492,"output":"ema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:14:52.481 [info] Peri"},{"event":"cmd_output","timestamp":1607098492,"output":"odic from module Elixir.Ppl.Ppls.STMHandler.StoppingState with name Elixir.Ppl.Ppls.STMHandler.Stopp"},{"event":"cmd_output","timestamp":1607098492,"output":"ingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-StoppingStat"},{"event":"cmd_output","timestamp":1607098492,"output":"e\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: P"},{"event":"cmd_output","timestamp":1607098492,"output":"pl.Ppls.Model.Ppls, observed_state: \"stopping\", publisher_cb: #Function<0.71803493/1 in Ppl.Ppls.STM"},{"event":"cmd_output","timestamp":1607098492,"output":"Handler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at,"},{"event":"cmd_output","timestamp":1607098492,"output":" :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b"},{"event":"cmd_output","timestamp":1607098492,"output":"[0m\u001b[22m\n16:14:52.482 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedState w"},{"event":"cmd_output","timestamp":1607098492,"output":"ith name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.behold"},{"event":"cmd_output","timestamp":1607098492,"output":"er-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args: %{allowed_states: [\"fetch"},{"event":"cmd_output","timestamp":1607098492,"output":"ing\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state"},{"event":"cmd_output","timestamp":1607098492,"output":": \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_"},{"event":"cmd_output","timestamp":1607098492,"output":"at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supe"},{"event":"cmd_output","timestamp":1607098492,"output":"rvisor: :skip}\n\u001b[0m\u001b[22m\n16:14:52.482 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandl"},{"event":"cmd_output","timestamp":1607098492,"output":"er.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 ms, metric"},{"event":"cmd_output","timestamp":1607098492,"output":"_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %{all"},{"event":"cmd_output","timestamp":1607098492,"output":"owed_states: [\"regular_init\", \"compilation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSu"},{"event":"cmd_output","timestamp":1607098492,"output":"bInits.Model.PplSubInits, observed_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, retur"},{"event":"cmd_output","timestamp":1607098492,"output":"ning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl"},{"event":"cmd_output","timestamp":1607098492,"output":".PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:52.482 [info] Periodic fr"},{"event":"cmd_output","timestamp":1607098492,"output":"om module Elixir.Ppl.PplSubInits.STMHandler.CompilationState with name Elixir.Ppl.PplSubInits.STMHan"},{"event":"cmd_output","timestamp":1607098492,"output":"dler.CompilationState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STM"},{"event":"cmd_output","timestamp":1607098492,"output":"Handler-CompilationState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"stop"},{"event":"cmd_output","timestamp":1607098492,"output":"ping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_sta"},{"event":"cmd_output","timestamp":1607098492,"output":"te: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :up"},{"event":"cmd_output","timestamp":1607098492,"output":"dated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, tas"},{"event":"cmd_output","timestamp":1607098492,"output":"k_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:52.482 [info] Periodic from module Elixir.Ppl.PplSubInits.ST"},{"event":"cmd_output","timestamp":1607098492,"output":"MHandler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period: 10"},{"event":"cmd_output","timestamp":1607098492,"output":"0 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurr"},{"event":"cmd_output","timestamp":1607098492,"output":"ing args: %{allowed_states: [\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplS"},{"event":"cmd_output","timestamp":1607098492,"output":"ubInits, observed_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :"},{"event":"cmd_output","timestamp":1607098492,"output":"terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits."},{"event":"cmd_output","timestamp":1607098492,"output":"Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:52.482 [info] Periodic from module Eli"},{"event":"cmd_output","timestamp":1607098492,"output":"xir.Ppl.PplBlocks.STMHandler.InitializingState with name Elixir.Ppl.PplBlocks.STMHandler.Initializin"},{"event":"cmd_output","timestamp":1607098492,"output":"gState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-Initializ"},{"event":"cmd_output","timestamp":1607098492,"output":"ingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"waiting\", \"done\"], cooling_time_sec"},{"event":"cmd_output","timestamp":1607098492,"output":": 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"initializing\", publisher_cb: :sk"},{"event":"cmd_output","timestamp":1607098492,"output":"ip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery"},{"event":"cmd_output","timestamp":1607098492,"output":"_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m"},{"event":"cmd_output","timestamp":1607098492,"output":"\u001b[22m\n16:14:52.483 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.WaitingState with n"},{"event":"cmd_output","timestamp":1607098492,"output":"ame Elixir.Ppl.PplBlocks.STMHandler.WaitingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wak"},{"event":"cmd_output","timestamp":1607098492,"output":"e_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurring args: %{allowed_states: [\"waiting\", \"ru"},{"event":"cmd_output","timestamp":1607098492,"output":"nning\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: "},{"event":"cmd_output","timestamp":1607098492,"output":"\"waiting\", publisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>, rep"},{"event":"cmd_output","timestamp":1607098492,"output":"o: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count,"},{"event":"cmd_output","timestamp":1607098492,"output":" :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098492,"output":"16:14:52.483 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.RunningState with name Eli"},{"event":"cmd_output","timestamp":1607098492,"output":"xir.Ppl.PplBlocks.STMHandler.RunningState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", "},{"event":"cmd_output","timestamp":1607098492,"output":"[\"Ppl-PplBlocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\""},{"event":"cmd_output","timestamp":1607098492,"output":", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"runn"},{"event":"cmd_output","timestamp":1607098492,"output":"ing\", publisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0>, repo: P"},{"event":"cmd_output","timestamp":1607098492,"output":"pl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :pp"},{"event":"cmd_output","timestamp":1607098492,"output":"l_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m"},{"event":"cmd_output","timestamp":1607098492,"output":"\u001b[22m\n16:14:52.483 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.StoppingState with "},{"event":"cmd_output","timestamp":1607098492,"output":"name Elixir.Ppl.PplBlocks.STMHandler.StoppingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-w"},{"event":"cmd_output","timestamp":1607098492,"output":"ake_up\", [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\","},{"event":"cmd_output","timestamp":1607098492,"output":" \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"stopp"},{"event":"cmd_output","timestamp":1607098492,"output":"ing\", publisher_cb: #Function<0.104215991/1 in Ppl.PplBlocks.STMHandler.StoppingState.args/0>, repo:"},{"event":"cmd_output","timestamp":1607098492,"output":" Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :"},{"event":"cmd_output","timestamp":1607098492,"output":"ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b["},{"event":"cmd_output","timestamp":1607098492,"output":"0m\u001b[22m\n16:14:52.483 [info] Periodic from module Elixir.Block.Blocks.STMHandler.InitializingState "},{"event":"cmd_output","timestamp":1607098492,"output":"with name Elixir.Block.Blocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beh"},{"event":"cmd_output","timestamp":1607098492,"output":"older-wake_up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\""},{"event":"cmd_output","timestamp":1607098492,"output":"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Blocks.Model.Blocks, observed_state: \"i"},{"event":"cmd_output","timestamp":1607098492,"output":"nitializing\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updat"},{"event":"cmd_output","timestamp":1607098492,"output":"ed_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :ski"},{"event":"cmd_output","timestamp":1607098492,"output":"p}\n\u001b[0m\u001b[22m\n16:14:52.483 [info] Periodic from module Elixir.Block.Blocks.STMHandler.RunningState"},{"event":"cmd_output","timestamp":1607098492,"output":" with name Elixir.Block.Blocks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholde"},{"event":"cmd_output","timestamp":1607098492,"output":"r-wake_up\", [\"Block-Blocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\","},{"event":"cmd_output","timestamp":1607098492,"output":" \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state"},{"event":"cmd_output","timestamp":1607098492,"output":": \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :update"},{"event":"cmd_output","timestamp":1607098492,"output":"d_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip"},{"event":"cmd_output","timestamp":1607098492,"output":"}\n\u001b[0m\u001b[22m\n16:14:52.483 [info] Periodic from module Elixir.Block.Blocks.STMHandler.StoppingState"},{"event":"cmd_output","timestamp":1607098492,"output":" with name Elixir.Block.Blocks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.behold"},{"event":"cmd_output","timestamp":1607098492,"output":"er-wake_up\", [\"Block-Blocks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stoppin"},{"event":"cmd_output","timestamp":1607098492,"output":"g\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"stoppi"},{"event":"cmd_output","timestamp":1607098492,"output":"ng\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :s"},{"event":"cmd_output","timestamp":1607098492,"output":"tate, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098492,"output":"[22m\n16:14:52.484 [info] Periodic from module Elixir.Block.Tasks.STMHandler.PendingState with name"},{"event":"cmd_output","timestamp":1607098492,"output":" Elixir.Block.Tasks.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\","},{"event":"cmd_output","timestamp":1607098492,"output":" [\"Block-Tasks-STMHandler-PendingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], co"},{"event":"cmd_output","timestamp":1607098492,"output":"oling_time_sec: 0, initial_query: Block.Tasks.Model.Tasks, observed_state: \"pending\", publisher_cb: "},{"event":"cmd_output","timestamp":1607098492,"output":":skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_cou"},{"event":"cmd_output","timestamp":1607098492,"output":"nt, :block_id, :build_request_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098492,"output":"2m\n16:14:52.484 [info] Periodic from module Elixir.Block.Tasks.STMHandler.RunningState with name E"},{"event":"cmd_output","timestamp":1607098492,"output":"lixir.Block.Tasks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", ["},{"event":"cmd_output","timestamp":1607098492,"output":"\"Block-Tasks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \""},{"event":"cmd_output","timestamp":1607098492,"output":"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"running\", pub"},{"event":"cmd_output","timestamp":1607098492,"output":"lisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :r"},{"event":"cmd_output","timestamp":1607098492,"output":"ecovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098492,"output":"4:52.484 [info] Periodic from module Elixir.Block.Tasks.STMHandler.StoppingState with name Elixir.B"},{"event":"cmd_output","timestamp":1607098492,"output":"lock.Tasks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block"},{"event":"cmd_output","timestamp":1607098492,"output":"-Tasks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_"},{"event":"cmd_output","timestamp":1607098492,"output":"time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"stopping\", publisher_cb: :ski"},{"event":"cmd_output","timestamp":1607098492,"output":"p, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, "},{"event":"cmd_output","timestamp":1607098492,"output":":block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:52.596 [info]"},{"event":"cmd_output","timestamp":1607098492,"output":" ppl_id: 190155ea-b6fc-4ba6-8f46-11f260b3f42b, type: PplRequests, event: persisted source_args for "},{"event":"cmd_output","timestamp":1607098492,"output":"pipeline: 190155ea-b6fc-4ba6-8f46-11f260b3f42b, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQuer"},{"event":"cmd_output","timestamp":1607098492,"output":"ies.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:14:52.599 [info] ppl_id: 190155ea-b6fc-4ba6-8f46-11f260b3"},{"event":"cmd_output","timestamp":1607098492,"output":"f42b, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098492,"output":"Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:52.622 [info] ppl_id: 190155ea-b6fc-4ba"},{"event":"cmd_output","timestamp":1607098492,"output":"6-8f46-11f260b3f42b, type: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count:"},{"event":"cmd_output","timestamp":1607098492,"output":" 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:52.641 [info] ppl_id"},{"event":"cmd_output","timestamp":1607098492,"output":": 190155ea-b6fc-4ba6-8f46-11f260b3f42b, type: PplRequests, event: persisted definition for request w"},{"event":"cmd_output","timestamp":1607098492,"output":"ith request_token: d7214a26-364b-11eb-b75a-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplReq"},{"event":"cmd_output","timestamp":1607098492,"output":"uestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:14:52.643 [info] Queue persisted: {:ok, %Ppl"},{"event":"cmd_output","timestamp":1607098492,"output":".Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 "},{"event":"cmd_output","timestamp":1607098492,"output":"16:14:52.642386], name: \"master-.semaphore/semaphore.yml\", organization_id: \"96c0d88b-fa03-449e-a998"},{"event":"cmd_output","timestamp":1607098492,"output":"-72eadb5ba0af\", project_id: \"ce45fc4b-dc71-4ff1-947d-b156d049f734\", queue_id: \"6ef4a1da-8e35-42d8-b8"},{"event":"cmd_output","timestamp":1607098492,"output":"01-1c5c518320ec\", scope: \"project\", updated_at: ~N[2020-12-04 16:14:52.642394], user_generated: fals"},{"event":"cmd_output","timestamp":1607098492,"output":"e}}\n\u001b[0m\u001b[22m\n16:14:52.650 [info] ppl_id: not_available, event: created, origin: Elixir.Ppl.PplSu"},{"event":"cmd_output","timestamp":1607098492,"output":"bInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:52.650 [info] event: created"},{"event":"cmd_output","timestamp":1607098492,"output":", origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:52."},{"event":"cmd_output","timestamp":1607098492,"output":"650 [info] ppl_id: 190155ea-b6fc-4ba6-8f46-11f260b3f42b, type: PplBlocks, block_index: 0, state: in"},{"event":"cmd_output","timestamp":1607098492,"output":"itializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInit"},{"event":"cmd_output","timestamp":1607098492,"output":"State.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:52.650 [info] ppl_id: 190155ea-b6fc-4ba6-8f46-11f260b3f42"},{"event":"cmd_output","timestamp":1607098492,"output":"b, type: PplBlocks, block_index: 1, state: initializing, event: created, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098492,"output":"Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:52.650 [info]"},{"event":"cmd_output","timestamp":1607098492,"output":" ppl_id: 190155ea-b6fc-4ba6-8f46-11f260b3f42b, type: PplBlocks, block_index: 2, state: initializing"},{"event":"cmd_output","timestamp":1607098492,"output":", event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_"},{"event":"cmd_output","timestamp":1607098492,"output":"ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:52.652 [info] ppl_id: 190155ea-b6fc-4ba6-8f46-11f260b3f42b, type: P"},{"event":"cmd_output","timestamp":1607098492,"output":"plSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098492,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:52.657 [info] ppl_id: 190155ea-b6fc-4ba6"},{"event":"cmd_output","timestamp":1607098492,"output":"-8f46-11f260b3f42b, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: E"},{"event":"cmd_output","timestamp":1607098492,"output":"lixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:52.660 [info] ppl_id: 190155ea-b6"},{"event":"cmd_output","timestamp":1607098492,"output":"fc-4ba6-8f46-11f260b3f42b, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, "},{"event":"cmd_output","timestamp":1607098492,"output":"recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:52.665"},{"event":"cmd_output","timestamp":1607098492,"output":" [info] ppl_id: 190155ea-b6fc-4ba6-8f46-11f260b3f42b, type: Ppls, state: queuing, event: exit_sched"},{"event":"cmd_output","timestamp":1607098492,"output":"uling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14"},{"event":"cmd_output","timestamp":1607098492,"output":":52.667 [info] ppl_id: 190155ea-b6fc-4ba6-8f46-11f260b3f42b, type: PplBlocks, block_index: 1, state"},{"event":"cmd_output","timestamp":1607098492,"output":": waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_chang"},{"event":"cmd_output","timestamp":1607098492,"output":"e/1(L90), \n\u001b[0m\u001b[22m\n16:14:52.673 [info] ppl_id: 190155ea-b6fc-4ba6-8f46-11f260b3f42b, type: PplB"},{"event":"cmd_output","timestamp":1607098492,"output":"locks, block_index: 2, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loo"},{"event":"cmd_output","timestamp":1607098492,"output":"per.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:52.673 [info] ppl_id: 190155ea-b6fc-4ba6-8"},{"event":"cmd_output","timestamp":1607098492,"output":"f46-11f260b3f42b, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098492,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:52.680 [info] PplBlocks WaitingStat"},{"event":"cmd_output","timestamp":1607098492,"output":"e STM is scheduling block 0 from pipeline: \"190155ea-b6fc-4ba6-8f46-11f260b3f42b\"\n\u001b[0m\u001b[22m\n16:14:"},{"event":"cmd_output","timestamp":1607098492,"output":"52.684 [info] block_id: fd6bd319-f584-43bf-9072-a94270990fbe, type: BlockRequests, event: persisted"},{"event":"cmd_output","timestamp":1607098492,"output":" block run request from ppl 190155ea-b6fc-4ba6-8f46-11f260b3f42b for block 0, origin: Elixir.Block.B"},{"event":"cmd_output","timestamp":1607098492,"output":"lockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:14:52.686 [info] b"},{"event":"cmd_output","timestamp":1607098492,"output":"lock_id: fd6bd319-f584-43bf-9072-a94270990fbe, type: Blocks, state: initializing, event: initializin"},{"event":"cmd_output","timestamp":1607098492,"output":"g, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098492,"output":":14:52.689 [info] Block 0 of pipeline with id: 190155ea-b6fc-4ba6-8f46-11f260b3f42b scheduled in bl"},{"event":"cmd_output","timestamp":1607098492,"output":"ock service with id: : \"fd6bd319-f584-43bf-9072-a94270990fbe\"\n\u001b[0m\u001b[22m\n16:14:52.694 [info] block"},{"event":"cmd_output","timestamp":1607098492,"output":"_id: fd6bd319-f584-43bf-9072-a94270990fbe, type: BlockRequests, event: persisted build and sub_ppl d"},{"event":"cmd_output","timestamp":1607098492,"output":"etails for block_request: fd6bd319-f584-43bf-9072-a94270990fbe, origin: Elixir.Block.BlockRequests.M"},{"event":"cmd_output","timestamp":1607098492,"output":"odel.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:14:52.695 [info] ppl_id: 190155ea-b6"},{"event":"cmd_output","timestamp":1607098492,"output":"fc-4ba6-8f46-11f260b3f42b, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, "},{"event":"cmd_output","timestamp":1607098492,"output":"recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:52.697"},{"event":"cmd_output","timestamp":1607098492,"output":" [info] block_id: fd6bd319-f584-43bf-9072-a94270990fbe, type: Tasks, state: pending, event: created"},{"event":"cmd_output","timestamp":1607098492,"output":", recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0"},{"event":"cmd_output","timestamp":1607098492,"output":"m\u001b[22m\n16:14:52.707 [info] block_id: fd6bd319-f584-43bf-9072-a94270990fbe, type: Blocks, state: ru"},{"event":"cmd_output","timestamp":1607098492,"output":"nning, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1("},{"event":"cmd_output","timestamp":1607098492,"output":"L90), \n\u001b[0m\u001b[22m\n16:14:52.715 [info] block_id: fd6bd319-f584-43bf-9072-a94270990fbe, type: Tasks,"},{"event":"cmd_output","timestamp":1607098492,"output":" state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state"},{"event":"cmd_output","timestamp":1607098492,"output":"_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:52.811 [info] block_id: fd6bd319-f584-43bf-9072-a94270990fbe, ty"},{"event":"cmd_output","timestamp":1607098492,"output":"pe: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.lo"},{"event":"cmd_output","timestamp":1607098492,"output":"g_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:52.818 [info] block_id: fd6bd319-f584-43bf-9072-a94270990"},{"event":"cmd_output","timestamp":1607098492,"output":"fbe, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM"},{"event":"cmd_output","timestamp":1607098492,"output":".Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:52.825 [info] ppl_id: 190155ea-b6fc-4ba6-8f46-11f"},{"event":"cmd_output","timestamp":1607098492,"output":"260b3f42b, block_id: fd6bd319-f584-43bf-9072-a94270990fbe, type: PplBlocks, block_index: 0, state: d"},{"event":"cmd_output","timestamp":1607098492,"output":"one, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_s"},{"event":"cmd_output","timestamp":1607098492,"output":"tate_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:52.829 [info] PplBlocks WaitingState STM is scheduling block"},{"event":"cmd_output","timestamp":1607098492,"output":" 1 from pipeline: \"190155ea-b6fc-4ba6-8f46-11f260b3f42b\"\n\u001b[0m\u001b[22m\n16:14:52.836 [info] ppl_id: 19"},{"event":"cmd_output","timestamp":1607098492,"output":"0155ea-b6fc-4ba6-8f46-11f260b3f42b, type: PplBlocks, block_index: 1, state: done, result: passed, ev"},{"event":"cmd_output","timestamp":1607098492,"output":"ent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b"},{"event":"cmd_output","timestamp":1607098492,"output":"[0m\u001b[22m\n16:14:52.840 [info] PplBlocks WaitingState STM is scheduling block 2 from pipeline: \"1901"},{"event":"cmd_output","timestamp":1607098492,"output":"55ea-b6fc-4ba6-8f46-11f260b3f42b\"\n\u001b[0m\u001b[22m\n16:14:52.845 [info] block_id: e1b42bb3-2fbf-4449-a9f7"},{"event":"cmd_output","timestamp":1607098492,"output":"-32ef2277ae28, type: BlockRequests, event: persisted block run request from ppl 190155ea-b6fc-4ba6-8"},{"event":"cmd_output","timestamp":1607098492,"output":"f46-11f260b3f42b for block 2, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_"},{"event":"cmd_output","timestamp":1607098492,"output":"response/4(L35), \n\u001b[0m\u001b[22m\n16:14:52.846 [info] block_id: e1b42bb3-2fbf-4449-a9f7-32ef2277ae28, t"},{"event":"cmd_output","timestamp":1607098492,"output":"ype: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Block"},{"event":"cmd_output","timestamp":1607098492,"output":"s.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:14:52.846 [info] Block 2 of pipeline with id: "},{"event":"cmd_output","timestamp":1607098492,"output":"190155ea-b6fc-4ba6-8f46-11f260b3f42b scheduled in block service with id: : \"e1b42bb3-2fbf-4449-a9f7-"},{"event":"cmd_output","timestamp":1607098492,"output":"32ef2277ae28\"\n\u001b[0m\u001b[22m\n16:14:52.849 [info] ppl_id: 190155ea-b6fc-4ba6-8f46-11f260b3f42b, type: P"},{"event":"cmd_output","timestamp":1607098492,"output":"plBlocks, block_index: 2, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098492,"output":"Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:52.853 [info] block_id: e1b42bb3-2fbf-4"},{"event":"cmd_output","timestamp":1607098492,"output":"449-a9f7-32ef2277ae28, type: BlockRequests, event: persisted build and sub_ppl details for block_req"},{"event":"cmd_output","timestamp":1607098492,"output":"uest: e1b42bb3-2fbf-4449-a9f7-32ef2277ae28, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQu"},{"event":"cmd_output","timestamp":1607098492,"output":"eries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:14:52.855 [info] block_id: e1b42bb3-2fbf-4449-a9f7-32ef2"},{"event":"cmd_output","timestamp":1607098492,"output":"277ae28, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks"},{"event":"cmd_output","timestamp":1607098492,"output":".STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:14:52.856 [info] block_id: e1b42bb3-"},{"event":"cmd_output","timestamp":1607098492,"output":"2fbf-4449-a9f7-32ef2277ae28, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0"},{"event":"cmd_output","timestamp":1607098492,"output":", origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:52.866 [info] block_id"},{"event":"cmd_output","timestamp":1607098492,"output":": e1b42bb3-2fbf-4449-a9f7-32ef2277ae28, type: Tasks, state: running, event: exit_scheduling, recover"},{"event":"cmd_output","timestamp":1607098492,"output":"y_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:52.921 [info]"},{"event":"cmd_output","timestamp":1607098492,"output":" block_id: e1b42bb3-2fbf-4449-a9f7-32ef2277ae28, type: Tasks, state: done, event: exit_scheduling, "},{"event":"cmd_output","timestamp":1607098492,"output":"recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:52.925"},{"event":"cmd_output","timestamp":1607098492,"output":" [info] block_id: e1b42bb3-2fbf-4449-a9f7-32ef2277ae28, type: Blocks, state: done, event: exit_sche"},{"event":"cmd_output","timestamp":1607098492,"output":"duling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098492,"output":"4:52.930 [info] ppl_id: 190155ea-b6fc-4ba6-8f46-11f260b3f42b, block_id: e1b42bb3-2fbf-4449-a9f7-32e"},{"event":"cmd_output","timestamp":1607098492,"output":"f2277ae28, type: PplBlocks, block_index: 2, state: done, result: passed, event: exit_scheduling, rec"},{"event":"cmd_output","timestamp":1607098492,"output":"overy_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:52.947 [i"},{"event":"cmd_output","timestamp":1607098492,"output":"nfo] ppl_id: 190155ea-b6fc-4ba6-8f46-11f260b3f42b, type: Ppls, state: done, result: passed, event: "},{"event":"cmd_output","timestamp":1607098493,"output":"exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098493,"output":"32m\r * test pipeline with valid expressions in all when conditions passes (580.7ms)\u001b[0m\n * test p"},{"event":"cmd_output","timestamp":1607098493,"output":"ipeline with invalid expression in one of when conditions finishes as malformed\u001b[22m\n16:14:53.047 ["},{"event":"cmd_output","timestamp":1607098493,"output":"info] Request: 'run: %{:file_name => \"invalid_when_cond.yml\", :repo_name => \"22_skip_block\", \"branc"},{"event":"cmd_output","timestamp":1607098493,"output":"h_id\" => \"3168ac49-1605-4be8-9169-ec6b5ac9a357\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4"},{"event":"cmd_output","timestamp":1607098493,"output":"469\", \"file_name\" => \"semaphore.yml\", \"hook_id\" => \"d779bb8e-364b-11eb-a297-5254005464e2\", \"label\" ="},{"event":"cmd_output","timestamp":1607098493,"output":"> \"master\", \"organization_id\" => \"77ac0fe3-1d6e-4631-8693-0ec5f145db27\", \"owner\" => \"rt\", \"project_i"},{"event":"cmd_output","timestamp":1607098493,"output":"d\" => \"92c5eee6-d2b1-4e28-9ba0-ad76cdacc8fb\", \"repo_name\" => \"2_basic\", \"request_token\" => \"d779b350"},{"event":"cmd_output","timestamp":1607098493,"output":"-364b-11eb-aeff-5254005464e2\", \"requester_id\" => \"8f0caf97-8b70-4aa3-a800-9c154d180653\", \"service\" ="},{"event":"cmd_output","timestamp":1607098493,"output":"> \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"444883c6-fb63-4"},{"event":"cmd_output","timestamp":1607098493,"output":"b3c-b9f5-13661b9947e0\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:14:53.049 [info] ppl_id: 3b78"},{"event":"cmd_output","timestamp":1607098493,"output":"7676-6218-4883-9559-c71b1ef83e50, type: PplRequests, event: persisted schedule request with request_"},{"event":"cmd_output","timestamp":1607098493,"output":"token: d779b350-364b-11eb-aeff-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries"},{"event":"cmd_output","timestamp":1607098493,"output":".process_response/2(L55), \n\u001b[0m\u001b[22m\n16:14:53.057 [info] ppl_id: 3b787676-6218-4883-9559-c71b1ef8"},{"event":"cmd_output","timestamp":1607098493,"output":"3e50, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Pp"},{"event":"cmd_output","timestamp":1607098493,"output":"ls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:14:53.061 [info] Project 92c5eee6-d2"},{"event":"cmd_output","timestamp":1607098493,"output":"b1-4e28-9ba0-ad76cdacc8fb and branch masterlatest_wf details updated: \"wf_id: 444883c6-fb63-4b3c-b9f"},{"event":"cmd_output","timestamp":1607098493,"output":"5-13661b9947e0, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:14:53.063 [info] Persisted ppl_sub_init for pipeline w"},{"event":"cmd_output","timestamp":1607098493,"output":"ith ppl_id: 3b787676-6218-4883-9559-c71b1ef83e50: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto"},{"event":"cmd_output","timestamp":1607098493,"output":".Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 3"},{"event":"cmd_output","timestamp":1607098493,"output":"49, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:14:53.061355], pipelin"},{"event":"cmd_output","timestamp":1607098493,"output":"e_requests: #Ecto.Association.NotLoaded, ppl_id: \"3b78"},{"event":"cmd_output","timestamp":1607098493,"output":"7676-6218-4883-9559-c71b1ef83e50\", recovery_count: 0, result: nil, result_reason: nil, state: \"creat"},{"event":"cmd_output","timestamp":1607098493,"output":"ed\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:14:53.061361]"},{"event":"cmd_output","timestamp":1607098493,"output":"}\n\u001b[0m\u001b[22m\n16:14:53.067 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingState"},{"event":"cmd_output","timestamp":1607098493,"output":" with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.behold"},{"event":"cmd_output","timestamp":1607098493,"output":"er-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initial"},{"event":"cmd_output","timestamp":1607098493,"output":"izing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state:"},{"event":"cmd_output","timestamp":1607098493,"output":" \"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args"},{"event":"cmd_output","timestamp":1607098493,"output":"/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recover"},{"event":"cmd_output","timestamp":1607098493,"output":"y_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:53.067 [in"},{"event":"cmd_output","timestamp":1607098493,"output":"fo] Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandl"},{"event":"cmd_output","timestamp":1607098493,"output":"er.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Pendi"},{"event":"cmd_output","timestamp":1607098493,"output":"ngState\"]}, recurring args: %{allowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_tim"},{"event":"cmd_output","timestamp":1607098493,"output":"e_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publisher_cb: #Function<0.8"},{"event":"cmd_output","timestamp":1607098493,"output":"493005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminat"},{"event":"cmd_output","timestamp":1607098493,"output":"e_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, tas"},{"event":"cmd_output","timestamp":1607098493,"output":"k_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:14:53.068 [info] Periodic from module Elixir.Ppl.P"},{"event":"cmd_output","timestamp":1607098493,"output":"pls.STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, met"},{"event":"cmd_output","timestamp":1607098493,"output":"ric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{allowed_"},{"event":"cmd_output","timestamp":1607098493,"output":"states: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, ob"},{"event":"cmd_output","timestamp":1607098493,"output":"served_state: \"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.a"},{"event":"cmd_output","timestamp":1607098493,"output":"rgs/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :reco"},{"event":"cmd_output","timestamp":1607098493,"output":"very_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:53.068 "},{"event":"cmd_output","timestamp":1607098493,"output":"[info] Periodic from module Elixir.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHa"},{"event":"cmd_output","timestamp":1607098493,"output":"ndler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-Ru"},{"event":"cmd_output","timestamp":1607098493,"output":"nningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: "},{"event":"cmd_output","timestamp":1607098493,"output":"-2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"running\", publisher_cb: #Function<0.7467028"},{"event":"cmd_output","timestamp":1607098493,"output":"2/1 in Ppl.Ppls.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_req"},{"event":"cmd_output","timestamp":1607098493,"output":"uest, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_sup"},{"event":"cmd_output","timestamp":1607098493,"output":"ervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:14:53.068 [info] Periodic from module Elixir.Ppl.Ppls.S"},{"event":"cmd_output","timestamp":1607098493,"output":"TMHandler.StoppingState with name Elixir.Ppl.Ppls.STMHandler.StoppingState :: period: 100 ms, metric"},{"event":"cmd_output","timestamp":1607098493,"output":"_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring args: %{allowed_st"},{"event":"cmd_output","timestamp":1607098493,"output":"ates: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state"},{"event":"cmd_output","timestamp":1607098493,"output":": \"stopping\", publisher_cb: #Function<0.71803493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, rep"},{"event":"cmd_output","timestamp":1607098493,"output":"o: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count,"},{"event":"cmd_output","timestamp":1607098493,"output":" :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:53.069 [info] Per"},{"event":"cmd_output","timestamp":1607098493,"output":"iodic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.ST"},{"event":"cmd_output","timestamp":1607098493,"output":"MHandler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STM"},{"event":"cmd_output","timestamp":1607098493,"output":"Handler-CreatedState\"]}, recurring args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0"},{"event":"cmd_output","timestamp":1607098493,"output":", initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip, "},{"event":"cmd_output","timestamp":1607098493,"output":"repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_cou"},{"event":"cmd_output","timestamp":1607098493,"output":"nt, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:5"},{"event":"cmd_output","timestamp":1607098493,"output":"3.069 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir."},{"event":"cmd_output","timestamp":1607098493,"output":"Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\""},{"event":"cmd_output","timestamp":1607098493,"output":"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"com"},{"event":"cmd_output","timestamp":1607098493,"output":"pilation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed"},{"event":"cmd_output","timestamp":1607098493,"output":"_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :u"},{"event":"cmd_output","timestamp":1607098493,"output":"pdated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, ta"},{"event":"cmd_output","timestamp":1607098493,"output":"sk_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:53.069 [info] Periodic from module Elixir.Ppl.PplSubInits.S"},{"event":"cmd_output","timestamp":1607098493,"output":"TMHandler.CompilationState with name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 1"},{"event":"cmd_output","timestamp":1607098493,"output":"00 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recur"},{"event":"cmd_output","timestamp":1607098493,"output":"ring args: %{allowed_states: [\"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: "},{"event":"cmd_output","timestamp":1607098493,"output":"-2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"compilation\", publisher_cb: :"},{"event":"cmd_output","timestamp":1607098493,"output":"skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recove"},{"event":"cmd_output","timestamp":1607098493,"output":"ry_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098493,"output":"6:14:53.069 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with nam"},{"event":"cmd_output","timestamp":1607098493,"output":"e Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-"},{"event":"cmd_output","timestamp":1607098493,"output":"wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurring args: %{allowed_states: [\"done"},{"event":"cmd_output","timestamp":1607098493,"output":"\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_"},{"event":"cmd_output","timestamp":1607098493,"output":"init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :s"},{"event":"cmd_output","timestamp":1607098493,"output":"tate, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor"},{"event":"cmd_output","timestamp":1607098493,"output":": :skip}\n\u001b[0m\u001b[22m\n16:14:53.070 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.Initi"},{"event":"cmd_output","timestamp":1607098493,"output":"alizingState with name Elixir.Ppl.PplBlocks.STMHandler.InitializingState :: period: 100 ms, metric_n"},{"event":"cmd_output","timestamp":1607098493,"output":"ame: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-InitializingState\"]}, recurring args: %{all"},{"event":"cmd_output","timestamp":1607098493,"output":"owed_states: [\"initializing\", \"waiting\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks."},{"event":"cmd_output","timestamp":1607098493,"output":"Model.PplBlocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning:"},{"event":"cmd_output","timestamp":1607098493,"output":" [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], sc"},{"event":"cmd_output","timestamp":1607098493,"output":"hema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:53.070 [info] Period"},{"event":"cmd_output","timestamp":1607098493,"output":"ic from module Elixir.Ppl.PplBlocks.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandle"},{"event":"cmd_output","timestamp":1607098493,"output":"r.WaitingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-"},{"event":"cmd_output","timestamp":1607098493,"output":"WaitingState\"]}, recurring args: %{allowed_states: [\"waiting\", \"running\", \"done\"], cooling_time_sec:"},{"event":"cmd_output","timestamp":1607098493,"output":" 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"waiting\", publisher_cb: #Function"},{"event":"cmd_output","timestamp":1607098493,"output":"<0.8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, "},{"event":"cmd_output","timestamp":1607098493,"output":":terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: P"},{"event":"cmd_output","timestamp":1607098493,"output":"pl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:53.070 [info] Periodic from"},{"event":"cmd_output","timestamp":1607098493,"output":" module Elixir.Ppl.PplBlocks.STMHandler.RunningState with name Elixir.Ppl.PplBlocks.STMHandler.Runni"},{"event":"cmd_output","timestamp":1607098493,"output":"ngState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-Running"},{"event":"cmd_output","timestamp":1607098493,"output":"State\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, i"},{"event":"cmd_output","timestamp":1607098493,"output":"nitial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"running\", publisher_cb: #Function<0.28"},{"event":"cmd_output","timestamp":1607098493,"output":"166834/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :ter"},{"event":"cmd_output","timestamp":1607098493,"output":"minate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], sc"},{"event":"cmd_output","timestamp":1607098493,"output":"hema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:53.070 [info] Period"},{"event":"cmd_output","timestamp":1607098493,"output":"ic from module Elixir.Ppl.PplBlocks.STMHandler.StoppingState with name Elixir.Ppl.PplBlocks.STMHandl"},{"event":"cmd_output","timestamp":1607098493,"output":"er.StoppingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandle"},{"event":"cmd_output","timestamp":1607098493,"output":"r-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, in"},{"event":"cmd_output","timestamp":1607098493,"output":"itial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"stopping\", publisher_cb: #Function<0.10"},{"event":"cmd_output","timestamp":1607098493,"output":"4215991/1 in Ppl.PplBlocks.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :t"},{"event":"cmd_output","timestamp":1607098493,"output":"erminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], "},{"event":"cmd_output","timestamp":1607098493,"output":"schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:53.070 [info] Peri"},{"event":"cmd_output","timestamp":1607098493,"output":"odic from module Elixir.Block.Blocks.STMHandler.InitializingState with name Elixir.Block.Blocks.STMH"},{"event":"cmd_output","timestamp":1607098493,"output":"andler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STM"},{"event":"cmd_output","timestamp":1607098493,"output":"Handler-InitializingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_se"},{"event":"cmd_output","timestamp":1607098493,"output":"c: 0, initial_query: Block.Blocks.Model.Blocks, observed_state: \"initializing\", publisher_cb: :skip,"},{"event":"cmd_output","timestamp":1607098493,"output":" repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :b"},{"event":"cmd_output","timestamp":1607098493,"output":"lock_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:53.070 [info]"},{"event":"cmd_output","timestamp":1607098493,"output":" Periodic from module Elixir.Block.Blocks.STMHandler.RunningState with name Elixir.Block.Blocks.STM"},{"event":"cmd_output","timestamp":1607098493,"output":"Handler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHand"},{"event":"cmd_output","timestamp":1607098493,"output":"ler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time"},{"event":"cmd_output","timestamp":1607098493,"output":"_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"running\", publisher_cb: :skip, "},{"event":"cmd_output","timestamp":1607098493,"output":"repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :bl"},{"event":"cmd_output","timestamp":1607098493,"output":"ock_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:53.070 [info] "},{"event":"cmd_output","timestamp":1607098493,"output":" Periodic from module Elixir.Block.Blocks.STMHandler.StoppingState with name Elixir.Block.Blocks.STM"},{"event":"cmd_output","timestamp":1607098493,"output":"Handler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHan"},{"event":"cmd_output","timestamp":1607098493,"output":"dler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2,"},{"event":"cmd_output","timestamp":1607098493,"output":" initial_query: Block.Blocks.Model.Blocks, observed_state: \"stopping\", publisher_cb: :skip, repo: Bl"},{"event":"cmd_output","timestamp":1607098493,"output":"ock.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id],"},{"event":"cmd_output","timestamp":1607098493,"output":" schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:53.070 [info] Periodi"},{"event":"cmd_output","timestamp":1607098493,"output":"c from module Elixir.Block.Tasks.STMHandler.PendingState with name Elixir.Block.Tasks.STMHandler.Pen"},{"event":"cmd_output","timestamp":1607098493,"output":"dingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingS"},{"event":"cmd_output","timestamp":1607098493,"output":"tate\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: "},{"event":"cmd_output","timestamp":1607098493,"output":"Block.Tasks.Model.Tasks, observed_state: \"pending\", publisher_cb: :skip, repo: Block.EctoRepo, retur"},{"event":"cmd_output","timestamp":1607098493,"output":"ning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id, :build_request_id],"},{"event":"cmd_output","timestamp":1607098493,"output":" schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:53.071 [info] Periodic "},{"event":"cmd_output","timestamp":1607098493,"output":"from module Elixir.Block.Tasks.STMHandler.RunningState with name Elixir.Block.Tasks.STMHandler.Runni"},{"event":"cmd_output","timestamp":1607098493,"output":"ngState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningSta"},{"event":"cmd_output","timestamp":1607098493,"output":"te\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, init"},{"event":"cmd_output","timestamp":1607098493,"output":"ial_query: Block.Tasks.Model.Tasks, observed_state: \"running\", publisher_cb: :skip, repo: Block.Ecto"},{"event":"cmd_output","timestamp":1607098493,"output":"Repo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema:"},{"event":"cmd_output","timestamp":1607098493,"output":" Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:53.071 [info] Periodic from mod"},{"event":"cmd_output","timestamp":1607098493,"output":"ule Elixir.Block.Tasks.STMHandler.StoppingState with name Elixir.Block.Tasks.STMHandler.StoppingStat"},{"event":"cmd_output","timestamp":1607098493,"output":"e :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]}"},{"event":"cmd_output","timestamp":1607098493,"output":", recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block"},{"event":"cmd_output","timestamp":1607098493,"output":".Tasks.Model.Tasks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning"},{"event":"cmd_output","timestamp":1607098493,"output":": [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Mo"},{"event":"cmd_output","timestamp":1607098493,"output":"del.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:53.183 [info] ppl_id: 3b787676-6218-4883-9559-"},{"event":"cmd_output","timestamp":1607098493,"output":"c71b1ef83e50, type: PplRequests, event: persisted source_args for pipeline: 3b787676-6218-4883-9559-"},{"event":"cmd_output","timestamp":1607098493,"output":"c71b1ef83e50, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098493,"output":"22m\n16:14:53.184 [info] ppl_id: 3b787676-6218-4883-9559-c71b1ef83e50, type: PplSubInits, state: fe"},{"event":"cmd_output","timestamp":1607098493,"output":"tching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1"},{"event":"cmd_output","timestamp":1607098493,"output":"(L90), \n\u001b[0m\u001b[22m\n16:14:53.203 [info] ppl_id: 3b787676-6218-4883-9559-c71b1ef83e50, type: PplSubI"},{"event":"cmd_output","timestamp":1607098493,"output":"nits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl"},{"event":"cmd_output","timestamp":1607098493,"output":".log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:53.214 [info] ppl_id: 3b787676-6218-4883-9559-c71b1ef8"},{"event":"cmd_output","timestamp":1607098493,"output":"3e50, type: PplSubInits, state: done, result: failed, event: exit_scheduling, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098493,"output":"gin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:53.223 [info] ppl_id: 3b787"},{"event":"cmd_output","timestamp":1607098493,"output":"676-6218-4883-9559-c71b1ef83e50, type: Ppls, state: done, result: failed, event: exit_scheduling, re"},{"event":"cmd_output","timestamp":1607098493,"output":"covery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test pipeli"},{"event":"cmd_output","timestamp":1607098493,"output":"ne with invalid expression in one of when conditions finishes as malformed (285.1ms)\u001b[0m\n\nPpl.Defi"},{"event":"cmd_output","timestamp":1607098493,"output":"nitionReviser.JobsGodfather.Test\n * test jobs with duplicate names fail validation\u001b[22m\n16:14:53."},{"event":"cmd_output","timestamp":1607098493,"output":"338 [info] Request: 'run: %{:repo_name => \"21_jobs_with_duplicate_names\", \"branch_id\" => \"b56ae277-"},{"event":"cmd_output","timestamp":1607098493,"output":"a0a1-42a1-8366-e52a689b0d1b\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469\", \"file_name\" ="},{"event":"cmd_output","timestamp":1607098493,"output":"> \"semaphore.yml\", \"hook_id\" => \"d7a61ecc-364b-11eb-b34d-5254005464e2\", \"label\" => \"master\", \"organi"},{"event":"cmd_output","timestamp":1607098493,"output":"zation_id\" => \"e80f1e9a-c1e9-471a-b868-9381bc7dd3ad\", \"owner\" => \"rt\", \"project_id\" => \"804fd4ad-a4e"},{"event":"cmd_output","timestamp":1607098493,"output":"0-4160-9182-e254e62da4ac\", \"repo_name\" => \"2_basic\", \"request_token\" => \"d7a6160c-364b-11eb-8935-525"},{"event":"cmd_output","timestamp":1607098493,"output":"4005464e2\", \"requester_id\" => \"62fcca87-c015-49fa-aee5-4a2d67df5661\", \"service\" => \"local\", \"suppres"},{"event":"cmd_output","timestamp":1607098493,"output":"sed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"a4846773-964a-4f2d-a1c1-fdcfd9b113"},{"event":"cmd_output","timestamp":1607098493,"output":"75\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:14:53.340 [info] ppl_id: 22b6c18f-8917-44ac-b75c"},{"event":"cmd_output","timestamp":1607098493,"output":"-149e5848240a, type: PplRequests, event: persisted schedule request with request_token: d7a6160c-364"},{"event":"cmd_output","timestamp":1607098493,"output":"b-11eb-8935-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2"},{"event":"cmd_output","timestamp":1607098493,"output":"(L55), \n\u001b[0m\u001b[22m\n16:14:53.341 [info] ppl_id: 22b6c18f-8917-44ac-b75c-149e5848240a, type: Ppls, s"},{"event":"cmd_output","timestamp":1607098493,"output":"tate: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQuerie"},{"event":"cmd_output","timestamp":1607098493,"output":"s.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:14:53.349 [info] Project 804fd4ad-a4e0-4160-9182-e254e6"},{"event":"cmd_output","timestamp":1607098493,"output":"2da4ac and branch masterlatest_wf details updated: \"wf_id: a4846773-964a-4f2d-a1c1-fdcfd9b11375, wf_"},{"event":"cmd_output","timestamp":1607098493,"output":"number: 1\"\n\u001b[0m\u001b[22m\n16:14:53.350 [info] Persisted ppl_sub_init for pipeline with ppl_id: 22b6c18"},{"event":"cmd_output","timestamp":1607098493,"output":"f-8917-44ac-b75c-149e5848240a: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:l"},{"event":"cmd_output","timestamp":1607098493,"output":"oaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 350, in_scheduling: "},{"event":"cmd_output","timestamp":1607098493,"output":"false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:14:53.349156], pipeline_requests: #Ecto.A"},{"event":"cmd_output","timestamp":1607098493,"output":"ssociation.NotLoaded, ppl_id: \"22b6c18f-8917-44ac-b75c"},{"event":"cmd_output","timestamp":1607098493,"output":"-149e5848240a\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_requ"},{"event":"cmd_output","timestamp":1607098493,"output":"est: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:14:53.349160]}\n\u001b[0m\u001b[22m\n16:14"},{"event":"cmd_output","timestamp":1607098493,"output":":53.353 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingState with name Elixir.P"},{"event":"cmd_output","timestamp":1607098493,"output":"pl.Ppls.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-"},{"event":"cmd_output","timestamp":1607098493,"output":"Ppls-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"pending\", "},{"event":"cmd_output","timestamp":1607098493,"output":"\"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", pu"},{"event":"cmd_output","timestamp":1607098493,"output":"blisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.Ecto"},{"event":"cmd_output","timestamp":1607098493,"output":"Repo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], "},{"event":"cmd_output","timestamp":1607098493,"output":"schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:53.353 [info] Periodic from "},{"event":"cmd_output","timestamp":1607098493,"output":"module Elixir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler.PendingState :: "},{"event":"cmd_output","timestamp":1607098493,"output":"period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurri"},{"event":"cmd_output","timestamp":1607098493,"output":"ng args: %{allowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_sec: 0, initial_q"},{"event":"cmd_output","timestamp":1607098493,"output":"uery: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098493,"output":"s.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated"},{"event":"cmd_output","timestamp":1607098493,"output":"_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsT"},{"event":"cmd_output","timestamp":1607098493,"output":"askSupervisor}\n\u001b[0m\u001b[22m\n16:14:53.354 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.Queu"},{"event":"cmd_output","timestamp":1607098493,"output":"ingState with name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, metric_name: {\"Ppl.beh"},{"event":"cmd_output","timestamp":1607098493,"output":"older-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{allowed_states: [\"queuing\","},{"event":"cmd_output","timestamp":1607098493,"output":" \"running\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"queu"},{"event":"cmd_output","timestamp":1607098493,"output":"ing\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.args/0>, repo: Ppl.E"},{"event":"cmd_output","timestamp":1607098493,"output":"ctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id"},{"event":"cmd_output","timestamp":1607098493,"output":"], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:53.355 [info] Periodic fr"},{"event":"cmd_output","timestamp":1607098493,"output":"om module Elixir.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHandler.RunningState "},{"event":"cmd_output","timestamp":1607098493,"output":":: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recu"},{"event":"cmd_output","timestamp":1607098493,"output":"rring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: "},{"event":"cmd_output","timestamp":1607098493,"output":"Ppl.Ppls.Model.Ppls, observed_state: \"running\", publisher_cb: #Function<0.74670282/1 in Ppl.Ppls.STM"},{"event":"cmd_output","timestamp":1607098493,"output":"Handler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, "},{"event":"cmd_output","timestamp":1607098493,"output":":state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSu"},{"event":"cmd_output","timestamp":1607098493,"output":"pervisor}\n\u001b[0m\u001b[22m\n16:14:53.355 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.StoppingS"},{"event":"cmd_output","timestamp":1607098493,"output":"tate with name Elixir.Ppl.Ppls.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.behold"},{"event":"cmd_output","timestamp":1607098493,"output":"er-wake_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", "},{"event":"cmd_output","timestamp":1607098493,"output":"\"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"stopping\", publi"},{"event":"cmd_output","timestamp":1607098493,"output":"sher_cb: #Function<0.71803493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, re"},{"event":"cmd_output","timestamp":1607098493,"output":"turning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: "},{"event":"cmd_output","timestamp":1607098493,"output":"Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:53.355 [info] Periodic from module E"},{"event":"cmd_output","timestamp":1607098493,"output":"lixir.Ppl.PplSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHandler.CreatedSta"},{"event":"cmd_output","timestamp":1607098493,"output":"te :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedStat"},{"event":"cmd_output","timestamp":1607098493,"output":"e\"]}, recurring args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Pp"},{"event":"cmd_output","timestamp":1607098493,"output":"l.PplSubInits.Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo,"},{"event":"cmd_output","timestamp":1607098493,"output":" returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schem"},{"event":"cmd_output","timestamp":1607098493,"output":"a: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:53.356 [info] Perio"},{"event":"cmd_output","timestamp":1607098493,"output":"dic from module Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl.PplSubInits.STM"},{"event":"cmd_output","timestamp":1607098493,"output":"Handler.FetchingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STM"},{"event":"cmd_output","timestamp":1607098493,"output":"Handler-FetchingState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"done\"],"},{"event":"cmd_output","timestamp":1607098493,"output":" cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fetching\","},{"event":"cmd_output","timestamp":1607098493,"output":" publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, "},{"event":"cmd_output","timestamp":1607098493,"output":":result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :ski"},{"event":"cmd_output","timestamp":1607098493,"output":"p}\n\u001b[0m\u001b[22m\n16:14:53.356 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.Compilati"},{"event":"cmd_output","timestamp":1607098493,"output":"onState with name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 100 ms, metric_name:"},{"event":"cmd_output","timestamp":1607098493,"output":" {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurring args: %{allowe"},{"event":"cmd_output","timestamp":1607098493,"output":"d_states: [\"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: "},{"event":"cmd_output","timestamp":1607098493,"output":"Ppl.PplSubInits.Model.PplSubInits, observed_state: \"compilation\", publisher_cb: :skip, repo: Ppl.Ect"},{"event":"cmd_output","timestamp":1607098493,"output":"oRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id],"},{"event":"cmd_output","timestamp":1607098493,"output":" schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:53.356 [info] "},{"event":"cmd_output","timestamp":1607098493,"output":" Periodic from module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with name Elixir.Ppl.PplSub"},{"event":"cmd_output","timestamp":1607098493,"output":"Inits.STMHandler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppl"},{"event":"cmd_output","timestamp":1607098493,"output":"SubInits-STMHandler-RegularInitState\"]}, recurring args: %{allowed_states: [\"done\"], cooling_time_se"},{"event":"cmd_output","timestamp":1607098493,"output":"c: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_init\", publisher_cb"},{"event":"cmd_output","timestamp":1607098493,"output":": :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :rec"},{"event":"cmd_output","timestamp":1607098493,"output":"overy_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098493,"output":"\n16:14:53.357 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.InitializingState with n"},{"event":"cmd_output","timestamp":1607098493,"output":"ame Elixir.Ppl.PplBlocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder"},{"event":"cmd_output","timestamp":1607098493,"output":"-wake_up\", [\"Ppl-PplBlocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"init"},{"event":"cmd_output","timestamp":1607098493,"output":"ializing\", \"waiting\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, ob"},{"event":"cmd_output","timestamp":1607098493,"output":"served_state: \"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_r"},{"event":"cmd_output","timestamp":1607098493,"output":"equest, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks"},{"event":"cmd_output","timestamp":1607098493,"output":".Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:53.357 [info] Periodic from module Elix"},{"event":"cmd_output","timestamp":1607098493,"output":"ir.Ppl.PplBlocks.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler.WaitingState :: p"},{"event":"cmd_output","timestamp":1607098493,"output":"eriod: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, re"},{"event":"cmd_output","timestamp":1607098493,"output":"curring args: %{allowed_states: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: "},{"event":"cmd_output","timestamp":1607098493,"output":"Ppl.PplBlocks.Model.PplBlocks, observed_state: \"waiting\", publisher_cb: #Function<0.8975022/1 in Ppl"},{"event":"cmd_output","timestamp":1607098493,"output":".PplBlocks.STMHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request,"},{"event":"cmd_output","timestamp":1607098493,"output":" :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model."},{"event":"cmd_output","timestamp":1607098493,"output":"PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:53.358 [info] Periodic from module Elixir.Ppl."},{"event":"cmd_output","timestamp":1607098493,"output":"PplBlocks.STMHandler.RunningState with name Elixir.Ppl.PplBlocks.STMHandler.RunningState :: period: "},{"event":"cmd_output","timestamp":1607098493,"output":"1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, recurring"},{"event":"cmd_output","timestamp":1607098493,"output":" args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.P"},{"event":"cmd_output","timestamp":1607098493,"output":"plBlocks.Model.PplBlocks, observed_state: \"running\", publisher_cb: #Function<0.28166834/1 in Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098493,"output":"Blocks.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :up"},{"event":"cmd_output","timestamp":1607098493,"output":"dated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks"},{"event":"cmd_output","timestamp":1607098493,"output":".Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:53.359 [info] Periodic from module Elix"},{"event":"cmd_output","timestamp":1607098493,"output":"ir.Ppl.PplBlocks.STMHandler.StoppingState with name Elixir.Ppl.PplBlocks.STMHandler.StoppingState ::"},{"event":"cmd_output","timestamp":1607098493,"output":" period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-StoppingState\"]},"},{"event":"cmd_output","timestamp":1607098493,"output":" recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Pp"},{"event":"cmd_output","timestamp":1607098493,"output":"lBlocks.Model.PplBlocks, observed_state: \"stopping\", publisher_cb: #Function<0.104215991/1 in Ppl.Pp"},{"event":"cmd_output","timestamp":1607098493,"output":"lBlocks.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :"},{"event":"cmd_output","timestamp":1607098493,"output":"updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBloc"},{"event":"cmd_output","timestamp":1607098493,"output":"ks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:53.359 [info] Periodic from module El"},{"event":"cmd_output","timestamp":1607098493,"output":"ixir.Block.Blocks.STMHandler.InitializingState with name Elixir.Block.Blocks.STMHandler.Initializing"},{"event":"cmd_output","timestamp":1607098493,"output":"State :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-Initializin"},{"event":"cmd_output","timestamp":1607098493,"output":"gState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query"},{"event":"cmd_output","timestamp":1607098493,"output":": Block.Blocks.Model.Blocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Block.EctoRe"},{"event":"cmd_output","timestamp":1607098493,"output":"po, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: B"},{"event":"cmd_output","timestamp":1607098493,"output":"lock.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:53.359 [info] Periodic from mod"},{"event":"cmd_output","timestamp":1607098493,"output":"ule Elixir.Block.Blocks.STMHandler.RunningState with name Elixir.Block.Blocks.STMHandler.RunningStat"},{"event":"cmd_output","timestamp":1607098493,"output":"e :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-RunningState\"]}"},{"event":"cmd_output","timestamp":1607098493,"output":", recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_q"},{"event":"cmd_output","timestamp":1607098493,"output":"uery: Block.Blocks.Model.Blocks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRep"},{"event":"cmd_output","timestamp":1607098493,"output":"o, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Bl"},{"event":"cmd_output","timestamp":1607098493,"output":"ock.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:53.359 [info] Periodic from modu"},{"event":"cmd_output","timestamp":1607098493,"output":"le Elixir.Block.Blocks.STMHandler.StoppingState with name Elixir.Block.Blocks.STMHandler.StoppingSta"},{"event":"cmd_output","timestamp":1607098493,"output":"te :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-StoppingState\""},{"event":"cmd_output","timestamp":1607098493,"output":"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Blo"},{"event":"cmd_output","timestamp":1607098493,"output":"ck.Blocks.Model.Blocks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, retur"},{"event":"cmd_output","timestamp":1607098493,"output":"ning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Bloc"},{"event":"cmd_output","timestamp":1607098493,"output":"ks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:53.360 [info] Periodic from module Elixi"},{"event":"cmd_output","timestamp":1607098493,"output":"r.Block.Tasks.STMHandler.PendingState with name Elixir.Block.Tasks.STMHandler.PendingState :: period"},{"event":"cmd_output","timestamp":1607098493,"output":": 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingState\"]}, recurring "},{"event":"cmd_output","timestamp":1607098493,"output":"args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Tasks.Model.T"},{"event":"cmd_output","timestamp":1607098493,"output":"asks, observed_state: \"pending\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :termin"},{"event":"cmd_output","timestamp":1607098493,"output":"ate_request, :updated_at, :state, :recovery_count, :block_id, :build_request_id], schema: Block.Task"},{"event":"cmd_output","timestamp":1607098493,"output":"s.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:53.360 [info] Periodic from module Elixir."},{"event":"cmd_output","timestamp":1607098493,"output":"Block.Tasks.STMHandler.RunningState with name Elixir.Block.Tasks.STMHandler.RunningState :: period: "},{"event":"cmd_output","timestamp":1607098493,"output":"100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningState\"]}, recurring ar"},{"event":"cmd_output","timestamp":1607098493,"output":"gs: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Ta"},{"event":"cmd_output","timestamp":1607098493,"output":"sks.Model.Tasks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:"},{"event":"cmd_output","timestamp":1607098493,"output":"id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model."},{"event":"cmd_output","timestamp":1607098493,"output":"Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:53.361 [info] Periodic from module Elixir.Block.Ta"},{"event":"cmd_output","timestamp":1607098493,"output":"sks.STMHandler.StoppingState with name Elixir.Block.Tasks.STMHandler.StoppingState :: period: 100 ms"},{"event":"cmd_output","timestamp":1607098493,"output":", metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]}, recurring args: %"},{"event":"cmd_output","timestamp":1607098493,"output":"{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks,"},{"event":"cmd_output","timestamp":1607098493,"output":" observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_"},{"event":"cmd_output","timestamp":1607098493,"output":"request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_sup"},{"event":"cmd_output","timestamp":1607098493,"output":"ervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:53.472 [info] ppl_id: 22b6c18f-8917-44ac-b75c-149e5848240a, type:"},{"event":"cmd_output","timestamp":1607098493,"output":" PplRequests, event: persisted source_args for pipeline: 22b6c18f-8917-44ac-b75c-149e5848240a, origi"},{"event":"cmd_output","timestamp":1607098493,"output":"n: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:14:53.474 ["},{"event":"cmd_output","timestamp":1607098493,"output":"info] ppl_id: 22b6c18f-8917-44ac-b75c-149e5848240a, type: PplSubInits, state: fetching, event: exit"},{"event":"cmd_output","timestamp":1607098493,"output":"_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098493,"output":"\n16:14:53.497 [info] ppl_id: 22b6c18f-8917-44ac-b75c-149e5848240a, type: PplSubInits, state: regula"},{"event":"cmd_output","timestamp":1607098493,"output":"r_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1"},{"event":"cmd_output","timestamp":1607098493,"output":"(L90), \n\u001b[0m\u001b[22m\n16:14:53.525 [info] ppl_id: 22b6c18f-8917-44ac-b75c-149e5848240a, type: PplSubI"},{"event":"cmd_output","timestamp":1607098493,"output":"nits, state: done, result: failed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper."},{"event":"cmd_output","timestamp":1607098493,"output":"STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:53.534 [info] ppl_id: 22b6c18f-8917-44ac-b75c-"},{"event":"cmd_output","timestamp":1607098493,"output":"149e5848240a, type: Ppls, state: done, result: failed, event: exit_scheduling, recovery_count: 0, or"},{"event":"cmd_output","timestamp":1607098493,"output":"igin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test jobs with duplicate names"},{"event":"cmd_output","timestamp":1607098493,"output":" fail validation (283.6ms)\u001b[0m\n * test jobs and boosters already named 'Nameless x'\r * test jobs "},{"event":"cmd_output","timestamp":1607098493,"output":"and boosters already named 'Nameless x' (skipped)\n * test jobs and boosters with all unique names "},{"event":"cmd_output","timestamp":1607098493,"output":"pass validation\r * test jobs and boosters with all unique names pass validation (skipped)\n * test"},{"event":"cmd_output","timestamp":1607098493,"output":" blank job names are filled\r * test blank job names are filled (skipped)\n * test boosters with du"},{"event":"cmd_output","timestamp":1607098493,"output":"plicate names fail validation\r * test boosters with duplicate names fail validation (skipped)\n * "},{"event":"cmd_output","timestamp":1607098493,"output":"test blank booster names are filled\r * test blank booster names are filled (skipped)\n * test boos"},{"event":"cmd_output","timestamp":1607098493,"output":"ter already named 'Nameless x'\r * test booster already named 'Nameless x' (skipped)\n * test jobs "},{"event":"cmd_output","timestamp":1607098493,"output":"and boosters together\r * test jobs and boosters together (skipped)\n * test jobs and boosters with"},{"event":"cmd_output","timestamp":1607098493,"output":" duplicate names fail validation\r * test jobs and boosters with duplicate names fail validation (sk"},{"event":"cmd_output","timestamp":1607098493,"output":"ipped)\n\nPpl.DefinitionReviser.Task2BuildTest\n * doctest Ppl.DefinitionReviser.Task2Build.rename/"},{"event":"cmd_output","timestamp":1607098493,"output":"1 (1)\r * doctest Ppl.DefinitionReviser.Task2Build.rename/1 (1) (skipped)\n * test rename\r * test "},{"event":"cmd_output","timestamp":1607098493,"output":"rename (skipped)\n\nPpl.DefinitionReviser.ImplicitDependency.Test\n * test convert implicit into ex"},{"event":"cmd_output","timestamp":1607098493,"output":"plicit dependencies\u001b[22m\n16:14:53.634 [info] Request: 'run: %{:repo_name => \"5_v1_full\", \"branch_i"},{"event":"cmd_output","timestamp":1607098493,"output":"d\" => \"aa4f0ea8-e060-48a9-8141-dcea2dd63447\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469"},{"event":"cmd_output","timestamp":1607098493,"output":"\", \"file_name\" => \"semaphore.yml\", \"hook_id\" => \"d7d34528-364b-11eb-99f1-5254005464e2\", \"label\" => \""},{"event":"cmd_output","timestamp":1607098493,"output":"master\", \"organization_id\" => \"b5972f20-8226-4677-a4a4-20017b708068\", \"owner\" => \"rt\", \"project_id\" "},{"event":"cmd_output","timestamp":1607098493,"output":"=> \"b8222f34-810f-4dd0-9302-b6a9ae13d2ca\", \"repo_name\" => \"2_basic\", \"request_token\" => \"d7d33d1c-36"},{"event":"cmd_output","timestamp":1607098493,"output":"4b-11eb-82d4-5254005464e2\", \"requester_id\" => \"de48e88e-a8eb-420c-b3ce-9731b4074347\", \"service\" => \""},{"event":"cmd_output","timestamp":1607098493,"output":"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"2b6f1f02-8e14-40e6"},{"event":"cmd_output","timestamp":1607098493,"output":"-8d0a-85f550a7a1b6\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:14:53.636 [info] ppl_id: 567a01a"},{"event":"cmd_output","timestamp":1607098493,"output":"3-db80-45b3-a71a-c25c7fc5f7da, type: PplRequests, event: persisted schedule request with request_tok"},{"event":"cmd_output","timestamp":1607098493,"output":"en: d7d33d1c-364b-11eb-82d4-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.pr"},{"event":"cmd_output","timestamp":1607098493,"output":"ocess_response/2(L55), \n\u001b[0m\u001b[22m\n16:14:53.638 [info] ppl_id: 567a01a3-db80-45b3-a71a-c25c7fc5f7d"},{"event":"cmd_output","timestamp":1607098493,"output":"a, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls."},{"event":"cmd_output","timestamp":1607098493,"output":"Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:14:53.641 [info] Project b8222f34-810f-"},{"event":"cmd_output","timestamp":1607098493,"output":"4dd0-9302-b6a9ae13d2ca and branch masterlatest_wf details updated: \"wf_id: 2b6f1f02-8e14-40e6-8d0a-8"},{"event":"cmd_output","timestamp":1607098493,"output":"5f550a7a1b6, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:14:53.641 [info] Persisted ppl_sub_init for pipeline with"},{"event":"cmd_output","timestamp":1607098493,"output":" ppl_id: 567a01a3-db80-45b3-a71a-c25c7fc5f7da: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Sc"},{"event":"cmd_output","timestamp":1607098493,"output":"hema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 351,"},{"event":"cmd_output","timestamp":1607098493,"output":" in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:14:53.641163], pipeline_r"},{"event":"cmd_output","timestamp":1607098493,"output":"equests: #Ecto.Association.NotLoaded, ppl_id: \"567a01a"},{"event":"cmd_output","timestamp":1607098493,"output":"3-db80-45b3-a71a-c25c7fc5f7da\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\""},{"event":"cmd_output","timestamp":1607098493,"output":", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:14:53.641169]}\n"},{"event":"cmd_output","timestamp":1607098493,"output":"\u001b[0m\u001b[22m\n16:14:53.645 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingState wi"},{"event":"cmd_output","timestamp":1607098493,"output":"th name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-"},{"event":"cmd_output","timestamp":1607098493,"output":"wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializi"},{"event":"cmd_output","timestamp":1607098493,"output":"ng\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"i"},{"event":"cmd_output","timestamp":1607098493,"output":"nitializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>"},{"event":"cmd_output","timestamp":1607098493,"output":", repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_c"},{"event":"cmd_output","timestamp":1607098493,"output":"ount, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:53.645 [info]"},{"event":"cmd_output","timestamp":1607098493,"output":" Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubIni"},{"event":"cmd_output","timestamp":1607098493,"output":"ts.STMHandler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInit"},{"event":"cmd_output","timestamp":1607098493,"output":"s-STMHandler-CreatedState\"]}, recurring args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_s"},{"event":"cmd_output","timestamp":1607098493,"output":"ec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"created\", publisher_cb: :s"},{"event":"cmd_output","timestamp":1607098493,"output":"kip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recover"},{"event":"cmd_output","timestamp":1607098493,"output":"y_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098493,"output":":14:53.645 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name El"},{"event":"cmd_output","timestamp":1607098493,"output":"ixir.Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up"},{"event":"cmd_output","timestamp":1607098493,"output":"\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %{allowed_states: [\"regular_init\","},{"event":"cmd_output","timestamp":1607098493,"output":" \"compilation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, obs"},{"event":"cmd_output","timestamp":1607098493,"output":"erved_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_reques"},{"event":"cmd_output","timestamp":1607098493,"output":"t, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInit"},{"event":"cmd_output","timestamp":1607098493,"output":"s, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:53.645 [info] Periodic from module Elixir.Ppl.PplSubIn"},{"event":"cmd_output","timestamp":1607098493,"output":"its.STMHandler.CompilationState with name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: peri"},{"event":"cmd_output","timestamp":1607098493,"output":"od: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, "},{"event":"cmd_output","timestamp":1607098493,"output":"recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_"},{"event":"cmd_output","timestamp":1607098493,"output":"sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"compilation\", publisher_"},{"event":"cmd_output","timestamp":1607098493,"output":"cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :r"},{"event":"cmd_output","timestamp":1607098493,"output":"ecovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098493,"output":"2m\n16:14:53.645 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState wit"},{"event":"cmd_output","timestamp":1607098493,"output":"h name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beho"},{"event":"cmd_output","timestamp":1607098493,"output":"lder-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurring args: %{allowed_states: ["},{"event":"cmd_output","timestamp":1607098493,"output":"\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"reg"},{"event":"cmd_output","timestamp":1607098493,"output":"ular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_a"},{"event":"cmd_output","timestamp":1607098493,"output":"t, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_super"},{"event":"cmd_output","timestamp":1607098493,"output":"visor: :skip}\n\u001b[0m\u001b[22m\n16:14:53.763 [info] ppl_id: 567a01a3-db80-45b3-a71a-c25c7fc5f7da, type: P"},{"event":"cmd_output","timestamp":1607098493,"output":"plRequests, event: persisted source_args for pipeline: 567a01a3-db80-45b3-a71a-c25c7fc5f7da, origin:"},{"event":"cmd_output","timestamp":1607098493,"output":" Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:14:53.765 [in"},{"event":"cmd_output","timestamp":1607098493,"output":"fo] ppl_id: 567a01a3-db80-45b3-a71a-c25c7fc5f7da, type: PplSubInits, state: fetching, event: exit_s"},{"event":"cmd_output","timestamp":1607098493,"output":"cheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098493,"output":"6:14:53.779 [info] ppl_id: 567a01a3-db80-45b3-a71a-c25c7fc5f7da, type: PplSubInits, state: regular_"},{"event":"cmd_output","timestamp":1607098493,"output":"init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098493,"output":"90), \n\u001b[0m\u001b[22m\n16:14:53.796 [info] ppl_id: 567a01a3-db80-45b3-a71a-c25c7fc5f7da, type: PplReques"},{"event":"cmd_output","timestamp":1607098493,"output":"ts, event: persisted definition for request with request_token: d7d33d1c-364b-11eb-82d4-5254005464e2"},{"event":"cmd_output","timestamp":1607098493,"output":", origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098493,"output":"14:53.800 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:l"},{"event":"cmd_output","timestamp":1607098493,"output":"oaded, \"queues\">, inserted_at: ~N[2020-12-04 16:14:53.799060], name: \"master-.semaphore/semaphore.ym"},{"event":"cmd_output","timestamp":1607098493,"output":"l\", organization_id: \"b5972f20-8226-4677-a4a4-20017b708068\", project_id: \"b8222f34-810f-4dd0-9302-b6"},{"event":"cmd_output","timestamp":1607098493,"output":"a9ae13d2ca\", queue_id: \"cedba0a6-dcc0-4e92-bac5-0a5c205755ba\", scope: \"project\", updated_at: ~N[2020"},{"event":"cmd_output","timestamp":1607098493,"output":"-12-04 16:14:53.799067], user_generated: false}}\n\u001b[0m\u001b[22m\n16:14:53.803 [info] ppl_id: not_availa"},{"event":"cmd_output","timestamp":1607098493,"output":"ble, event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b"},{"event":"cmd_output","timestamp":1607098493,"output":"[0m\u001b[22m\n16:14:53.803 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInit"},{"event":"cmd_output","timestamp":1607098493,"output":"State.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:53.804 [info] ppl_id: 567a01a3-db80-45b3-a71a-c25c7fc5f7d"},{"event":"cmd_output","timestamp":1607098493,"output":"a, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098493,"output":"Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:53.804 [info]"},{"event":"cmd_output","timestamp":1607098493,"output":" ppl_id: 567a01a3-db80-45b3-a71a-c25c7fc5f7da, type: PplBlocks, block_index: 1, state: initializing"},{"event":"cmd_output","timestamp":1607098493,"output":", event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_"},{"event":"cmd_output","timestamp":1607098493,"output":"ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:53.806 [info] ppl_id: 567a01a3-db80-45b3-a71a-c25c7fc5f7da, type: P"},{"event":"cmd_output","timestamp":1607098493,"output":"plSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.L"},{"event":"cmd_output","timestamp":1607098493,"output":"ooper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:53.812 [info] ppl_id: 567a01a3-db80-45b3"},{"event":"cmd_output","timestamp":1607098493,"output":"-a71a-c25c7fc5f7da, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: E"},{"event":"cmd_output","timestamp":1607098493,"output":"lixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test convert implicit into explicit d"},{"event":"cmd_output","timestamp":1607098493,"output":"ependencies (286.5ms)\u001b[0m\n\nPpl.DefinitionReviser.BlocksReviser.Test\n * test BlocksReviser correc"},{"event":"cmd_output","timestamp":1607098493,"output":"tly sets ppl_env_vars when there are env vars in request\r * test BlocksReviser correctly sets ppl_e"},{"event":"cmd_output","timestamp":1607098493,"output":"nv_vars when there are env vars in request (skipped)\n * test priorities in global_job_config are p"},{"event":"cmd_output","timestamp":1607098493,"output":"roperly merged with the ones on job level\r * test priorities in global_job_config are properly merg"},{"event":"cmd_output","timestamp":1607098493,"output":"ed with the ones on job level (skipped)\n * test BlocksReviser correctly sets ppl_env_vars\r * test"},{"event":"cmd_output","timestamp":1607098493,"output":" BlocksReviser correctly sets ppl_env_vars (skipped)\n * test old style epilogue commands both in b"},{"event":"cmd_output","timestamp":1607098493,"output":"locks and global are transformed into always commands\r * test old style epilogue commands both in b"},{"event":"cmd_output","timestamp":1607098493,"output":"locks and global are transformed into always commands (skipped)\n * test BlocksReviser correctly se"},{"event":"cmd_output","timestamp":1607098493,"output":"ts ppl_env_vars when prev_ppl_artefact_ids is not empty\r * test BlocksReviser correctly sets ppl_en"},{"event":"cmd_output","timestamp":1607098493,"output":"v_vars when prev_ppl_artefact_ids is not empty (skipped)\n * test global always, on_pass and on_fai"},{"event":"cmd_output","timestamp":1607098493,"output":"l commands are read from cmd_files and merged with ones in block\r * test global always, on_pass and"},{"event":"cmd_output","timestamp":1607098493,"output":" on_fail commands are read from cmd_files and merged with ones in block (skipped)\n * test BlocksRe"},{"event":"cmd_output","timestamp":1607098493,"output":"viser correctly sets agent\r * test BlocksReviser correctly sets agent (skipped)\n * test prioritie"},{"event":"cmd_output","timestamp":1607098493,"output":"s only on job level => nothing is changed\r * test priorities only on job level => nothing is change"},{"event":"cmd_output","timestamp":1607098493,"output":"d (skipped)\n * test priorities only in global_job_config are exported into each job\r * test prior"},{"event":"cmd_output","timestamp":1607098493,"output":"ities only in global_job_config are exported into each job (skipped)\n * test BlocksReviser calls u"},{"event":"cmd_output","timestamp":1607098493,"output":"ser API and correctly sets promoted_by env var in promotions\r * test BlocksReviser calls user API a"},{"event":"cmd_output","timestamp":1607098493,"output":"nd correctly sets promoted_by env var in promotions (skipped)\n\nPpl.DefinitionReviser.BlocksReviser"},{"event":"cmd_output","timestamp":1607098493,"output":".GlobalJobConfig.Test\n * test Pipelines with various combinations of global and block level job co"},{"event":"cmd_output","timestamp":1607098493,"output":"nfigs are passing\u001b[22m\n16:14:53.891 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.Initial"},{"event":"cmd_output","timestamp":1607098493,"output":"izingState with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms, metric_name: {\""},{"event":"cmd_output","timestamp":1607098493,"output":"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %{allowed_states:"},{"event":"cmd_output","timestamp":1607098493,"output":" [\"initializing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, obser"},{"event":"cmd_output","timestamp":1607098493,"output":"ved_state: \"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.Initializing"},{"event":"cmd_output","timestamp":1607098493,"output":"State.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result"},{"event":"cmd_output","timestamp":1607098493,"output":", :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:"},{"event":"cmd_output","timestamp":1607098493,"output":"53.891 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098493,"output":"s.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHan"},{"event":"cmd_output","timestamp":1607098493,"output":"dler-PendingState\"]}, recurring args: %{allowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], c"},{"event":"cmd_output","timestamp":1607098493,"output":"ooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publisher_cb: #Fu"},{"event":"cmd_output","timestamp":1607098493,"output":"nction<0.8493005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id,"},{"event":"cmd_output","timestamp":1607098493,"output":" :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model"},{"event":"cmd_output","timestamp":1607098493,"output":".Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:14:53.891 [info] Periodic from module El"},{"event":"cmd_output","timestamp":1607098493,"output":"ixir.Ppl.Ppls.STMHandler.QueuingState with name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 1"},{"event":"cmd_output","timestamp":1607098493,"output":"00 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: "},{"event":"cmd_output","timestamp":1607098493,"output":"%{allowed_states: [\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Mode"},{"event":"cmd_output","timestamp":1607098493,"output":"l.Ppls, observed_state: \"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.Queu"},{"event":"cmd_output","timestamp":1607098493,"output":"ingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :res"},{"event":"cmd_output","timestamp":1607098493,"output":"ult, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098493,"output":"14:53.891 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl."},{"event":"cmd_output","timestamp":1607098493,"output":"Ppls.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STM"},{"event":"cmd_output","timestamp":1607098493,"output":"Handler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_"},{"event":"cmd_output","timestamp":1607098493,"output":"time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"running\", publisher_cb: #Function"},{"event":"cmd_output","timestamp":1607098493,"output":"<0.74670282/1 in Ppl.Ppls.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :ter"},{"event":"cmd_output","timestamp":1607098493,"output":"minate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls"},{"event":"cmd_output","timestamp":1607098493,"output":", task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:14:53.892 [info] Periodic from module Elixir."},{"event":"cmd_output","timestamp":1607098493,"output":"Ppl.Ppls.STMHandler.StoppingState with name Elixir.Ppl.Ppls.STMHandler.StoppingState :: period: 100 "},{"event":"cmd_output","timestamp":1607098493,"output":"ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring args: %{"},{"event":"cmd_output","timestamp":1607098493,"output":"allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, obse"},{"event":"cmd_output","timestamp":1607098493,"output":"rved_state: \"stopping\", publisher_cb: #Function<0.71803493/1 in Ppl.Ppls.STMHandler.StoppingState.ar"},{"event":"cmd_output","timestamp":1607098493,"output":"gs/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recov"},{"event":"cmd_output","timestamp":1607098493,"output":"ery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:53.892 ["},{"event":"cmd_output","timestamp":1607098493,"output":"info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplS"},{"event":"cmd_output","timestamp":1607098493,"output":"ubInits.STMHandler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSu"},{"event":"cmd_output","timestamp":1607098493,"output":"bInits-STMHandler-CreatedState\"]}, recurring args: %{allowed_states: [\"fetching\", \"done\"], cooling_t"},{"event":"cmd_output","timestamp":1607098493,"output":"ime_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"created\", publisher_c"},{"event":"cmd_output","timestamp":1607098493,"output":"b: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :re"},{"event":"cmd_output","timestamp":1607098493,"output":"covery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098493,"output":"m\n16:14:53.892 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.FetchingState with na"},{"event":"cmd_output","timestamp":1607098493,"output":"me Elixir.Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wa"},{"event":"cmd_output","timestamp":1607098493,"output":"ke_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %{allowed_states: [\"regular_i"},{"event":"cmd_output","timestamp":1607098493,"output":"nit\", \"compilation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits"},{"event":"cmd_output","timestamp":1607098493,"output":", observed_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_r"},{"event":"cmd_output","timestamp":1607098493,"output":"equest, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSu"},{"event":"cmd_output","timestamp":1607098493,"output":"bInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:53.892 [info] Periodic from module Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098493,"output":"SubInits.STMHandler.CompilationState with name Elixir.Ppl.PplSubInits.STMHandler.CompilationState ::"},{"event":"cmd_output","timestamp":1607098493,"output":" period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState"},{"event":"cmd_output","timestamp":1607098493,"output":"\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_"},{"event":"cmd_output","timestamp":1607098493,"output":"time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"compilation\", publi"},{"event":"cmd_output","timestamp":1607098493,"output":"sher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :resul"},{"event":"cmd_output","timestamp":1607098493,"output":"t, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b["},{"event":"cmd_output","timestamp":1607098493,"output":"0m\u001b[22m\n16:14:53.892 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.RegularInitStat"},{"event":"cmd_output","timestamp":1607098493,"output":"e with name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl"},{"event":"cmd_output","timestamp":1607098493,"output":".beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, recurring args: %{allowed_stat"},{"event":"cmd_output","timestamp":1607098493,"output":"es: [\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state:"},{"event":"cmd_output","timestamp":1607098493,"output":" \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :upda"},{"event":"cmd_output","timestamp":1607098493,"output":"ted_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_"},{"event":"cmd_output","timestamp":1607098493,"output":"supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:53.892 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHan"},{"event":"cmd_output","timestamp":1607098493,"output":"dler.InitializingState with name Elixir.Ppl.PplBlocks.STMHandler.InitializingState :: period: 100 ms"},{"event":"cmd_output","timestamp":1607098493,"output":", metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-InitializingState\"]}, recurring a"},{"event":"cmd_output","timestamp":1607098493,"output":"rgs: %{allowed_states: [\"initializing\", \"waiting\", \"done\"], cooling_time_sec: 0, initial_query: Ppl."},{"event":"cmd_output","timestamp":1607098493,"output":"PplBlocks.Model.PplBlocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, "},{"event":"cmd_output","timestamp":1607098493,"output":"returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_"},{"event":"cmd_output","timestamp":1607098493,"output":"index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:53.892 [inf"},{"event":"cmd_output","timestamp":1607098493,"output":"o] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks"},{"event":"cmd_output","timestamp":1607098493,"output":".STMHandler.WaitingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-S"},{"event":"cmd_output","timestamp":1607098493,"output":"TMHandler-WaitingState\"]}, recurring args: %{allowed_states: [\"waiting\", \"running\", \"done\"], cooling"},{"event":"cmd_output","timestamp":1607098493,"output":"_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"waiting\", publisher_cb:"},{"event":"cmd_output","timestamp":1607098493,"output":" #Function<0.8975022/1 in Ppl.PplBlocks.STMHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, returni"},{"event":"cmd_output","timestamp":1607098493,"output":"ng: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index],"},{"event":"cmd_output","timestamp":1607098493,"output":" schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:53.892 [info] Per"},{"event":"cmd_output","timestamp":1607098493,"output":"iodic from module Elixir.Ppl.PplBlocks.STMHandler.RunningState with name Elixir.Ppl.PplBlocks.STMHan"},{"event":"cmd_output","timestamp":1607098493,"output":"dler.RunningState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandl"},{"event":"cmd_output","timestamp":1607098493,"output":"er-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_"},{"event":"cmd_output","timestamp":1607098493,"output":"sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"running\", publisher_cb: #Fun"},{"event":"cmd_output","timestamp":1607098493,"output":"ction<0.28166834/1 in Ppl.PplBlocks.STMHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: "},{"event":"cmd_output","timestamp":1607098493,"output":"[:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :blo"},{"event":"cmd_output","timestamp":1607098493,"output":"ck_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:53.892 [inf"},{"event":"cmd_output","timestamp":1607098493,"output":"o] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.StoppingState with name Elixir.Ppl.PplBlock"},{"event":"cmd_output","timestamp":1607098493,"output":"s.STMHandler.StoppingState :: period: 1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks"},{"event":"cmd_output","timestamp":1607098493,"output":"-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_s"},{"event":"cmd_output","timestamp":1607098493,"output":"ec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"stopping\", publisher_cb: #Fun"},{"event":"cmd_output","timestamp":1607098493,"output":"ction<0.104215991/1 in Ppl.PplBlocks.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning"},{"event":"cmd_output","timestamp":1607098493,"output":": [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id, :block_index, :b"},{"event":"cmd_output","timestamp":1607098493,"output":"lock_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:53.893 [i"},{"event":"cmd_output","timestamp":1607098493,"output":"nfo] Periodic from module Elixir.Block.Blocks.STMHandler.InitializingState with name Elixir.Block.B"},{"event":"cmd_output","timestamp":1607098493,"output":"locks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-"},{"event":"cmd_output","timestamp":1607098493,"output":"Blocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooli"},{"event":"cmd_output","timestamp":1607098493,"output":"ng_time_sec: 0, initial_query: Block.Blocks.Model.Blocks, observed_state: \"initializing\", publisher_"},{"event":"cmd_output","timestamp":1607098493,"output":"cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery"},{"event":"cmd_output","timestamp":1607098493,"output":"_count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:53."},{"event":"cmd_output","timestamp":1607098493,"output":"893 [info] Periodic from module Elixir.Block.Blocks.STMHandler.RunningState with name Elixir.Block."},{"event":"cmd_output","timestamp":1607098493,"output":"Blocks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Bloc"},{"event":"cmd_output","timestamp":1607098493,"output":"ks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], co"},{"event":"cmd_output","timestamp":1607098493,"output":"oling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"running\", publisher_c"},{"event":"cmd_output","timestamp":1607098493,"output":"b: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_"},{"event":"cmd_output","timestamp":1607098493,"output":"count, :block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:53.8"},{"event":"cmd_output","timestamp":1607098493,"output":"93 [info] Periodic from module Elixir.Block.Blocks.STMHandler.StoppingState with name Elixir.Block."},{"event":"cmd_output","timestamp":1607098493,"output":"Blocks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blo"},{"event":"cmd_output","timestamp":1607098493,"output":"cks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_tim"},{"event":"cmd_output","timestamp":1607098493,"output":"e_sec: -2, initial_query: Block.Blocks.Model.Blocks, observed_state: \"stopping\", publisher_cb: :skip"},{"event":"cmd_output","timestamp":1607098493,"output":", repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :"},{"event":"cmd_output","timestamp":1607098493,"output":"block_id], schema: Block.Blocks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:53.893 [info"},{"event":"cmd_output","timestamp":1607098493,"output":"] Periodic from module Elixir.Block.Tasks.STMHandler.PendingState with name Elixir.Block.Tasks.STMH"},{"event":"cmd_output","timestamp":1607098493,"output":"andler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandle"},{"event":"cmd_output","timestamp":1607098493,"output":"r-PendingState\"]}, recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initi"},{"event":"cmd_output","timestamp":1607098493,"output":"al_query: Block.Tasks.Model.Tasks, observed_state: \"pending\", publisher_cb: :skip, repo: Block.EctoR"},{"event":"cmd_output","timestamp":1607098493,"output":"epo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id, :build_re"},{"event":"cmd_output","timestamp":1607098493,"output":"quest_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:53.893 [info] "},{"event":"cmd_output","timestamp":1607098493,"output":" Periodic from module Elixir.Block.Tasks.STMHandler.RunningState with name Elixir.Block.Tasks.STMHan"},{"event":"cmd_output","timestamp":1607098493,"output":"dler.RunningState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-"},{"event":"cmd_output","timestamp":1607098493,"output":"RunningState\"]}, recurring args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec"},{"event":"cmd_output","timestamp":1607098493,"output":": -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"running\", publisher_cb: :skip, repo: "},{"event":"cmd_output","timestamp":1607098493,"output":"Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id"},{"event":"cmd_output","timestamp":1607098493,"output":"], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:53.893 [info] Periodi"},{"event":"cmd_output","timestamp":1607098493,"output":"c from module Elixir.Block.Tasks.STMHandler.StoppingState with name Elixir.Block.Tasks.STMHandler.St"},{"event":"cmd_output","timestamp":1607098493,"output":"oppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-Stoppi"},{"event":"cmd_output","timestamp":1607098493,"output":"ngState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_qu"},{"event":"cmd_output","timestamp":1607098493,"output":"ery: Block.Tasks.Model.Tasks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo,"},{"event":"cmd_output","timestamp":1607098493,"output":" returning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Bloc"},{"event":"cmd_output","timestamp":1607098493,"output":"k.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:53.904 [info] Request: 'run: %{:file"},{"event":"cmd_output","timestamp":1607098493,"output":"_name => \"cmd-files-both.yml\", :repo_name => \"25_global_job_config\", \"branch_id\" => \"561cc020-1795-4"},{"event":"cmd_output","timestamp":1607098493,"output":"010-a75a-8d1b5ac9693a\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"sem"},{"event":"cmd_output","timestamp":1607098493,"output":"aphore.yml\", \"hook_id\" => \"d7fb25b6-364b-11eb-b92d-5254005464e2\", \"label\" => \"master\", \"organization"},{"event":"cmd_output","timestamp":1607098493,"output":"_id\" => \"05940336-034e-4a15-935a-8893646a950f\", \"owner\" => \"rt\", \"project_id\" => \"bf8f9890-66a9-4eac"},{"event":"cmd_output","timestamp":1607098493,"output":"-85e4-448d9aa5cf98\", \"repo_name\" => \"2_basic\", \"request_token\" => \"d7fb1e86-364b-11eb-bb23-525400546"},{"event":"cmd_output","timestamp":1607098493,"output":"4e2\", \"requester_id\" => \"65a41354-dcd9-4967-968e-282c91bd64dd\", \"service\" => \"local\", \"suppressed_at"},{"event":"cmd_output","timestamp":1607098493,"output":"tributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"50c9cc30-7f82-4417-9cd8-5038208efc0d\", \""},{"event":"cmd_output","timestamp":1607098493,"output":"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:14:53.907 [info] ppl_id: c0ba3ed3-3755-4be7-8899-e6b47"},{"event":"cmd_output","timestamp":1607098493,"output":"de267fb, type: PplRequests, event: persisted schedule request with request_token: d7fb1e86-364b-11eb"},{"event":"cmd_output","timestamp":1607098493,"output":"-bb23-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55),"},{"event":"cmd_output","timestamp":1607098493,"output":" \n\u001b[0m\u001b[22m\n16:14:53.910 [info] ppl_id: c0ba3ed3-3755-4be7-8899-e6b47de267fb, type: Ppls, state: "},{"event":"cmd_output","timestamp":1607098493,"output":"initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.proc"},{"event":"cmd_output","timestamp":1607098493,"output":"ess_response/2(L124), \n\u001b[0m\u001b[22m\n16:14:53.913 [info] Project bf8f9890-66a9-4eac-85e4-448d9aa5cf98"},{"event":"cmd_output","timestamp":1607098493,"output":" and branch masterlatest_wf details updated: \"wf_id: 50c9cc30-7f82-4417-9cd8-5038208efc0d, wf_number"},{"event":"cmd_output","timestamp":1607098493,"output":": 1\"\n\u001b[0m\u001b[22m\n16:14:53.914 [info] Persisted ppl_sub_init for pipeline with ppl_id: c0ba3ed3-3755"},{"event":"cmd_output","timestamp":1607098493,"output":"-4be7-8899-e6b47de267fb: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded,"},{"event":"cmd_output","timestamp":1607098493,"output":" \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 352, in_scheduling: false,"},{"event":"cmd_output","timestamp":1607098493,"output":" init_type: \"regular\", inserted_at: ~N[2020-12-04 16:14:53.913259], pipeline_requests: #Ecto.Associa"},{"event":"cmd_output","timestamp":1607098493,"output":"tion.NotLoaded, ppl_id: \"c0ba3ed3-3755-4be7-8899-e6b47"},{"event":"cmd_output","timestamp":1607098493,"output":"de267fb\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: n"},{"event":"cmd_output","timestamp":1607098493,"output":"il, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:14:53.913264]}\n\u001b[0m\u001b[22m\n16:14:53.92"},{"event":"cmd_output","timestamp":1607098493,"output":"2 [info] ppl_id: c0ba3ed3-3755-4be7-8899-e6b47de267fb, type: PplRequests, event: persisted source_a"},{"event":"cmd_output","timestamp":1607098493,"output":"rgs for pipeline: c0ba3ed3-3755-4be7-8899-e6b47de267fb, origin: Elixir.Ppl.PplRequests.Model.PplRequ"},{"event":"cmd_output","timestamp":1607098493,"output":"estsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:14:53.924 [info] ppl_id: c0ba3ed3-3755-4be7-8899-"},{"event":"cmd_output","timestamp":1607098493,"output":"e6b47de267fb, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098493,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:53.936 [info] ppl_id: c0ba3ed3-"},{"event":"cmd_output","timestamp":1607098493,"output":"3755-4be7-8899-e6b47de267fb, type: PplSubInits, state: regular_init, event: exit_scheduling, recover"},{"event":"cmd_output","timestamp":1607098493,"output":"y_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:53.954 [info]"},{"event":"cmd_output","timestamp":1607098493,"output":" ppl_id: c0ba3ed3-3755-4be7-8899-e6b47de267fb, type: PplRequests, event: persisted definition for r"},{"event":"cmd_output","timestamp":1607098493,"output":"equest with request_token: d7fb1e86-364b-11eb-bb23-5254005464e2, origin: Elixir.Ppl.PplRequests.Mode"},{"event":"cmd_output","timestamp":1607098493,"output":"l.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:14:53.964 [info] Queue persisted: {:"},{"event":"cmd_output","timestamp":1607098493,"output":"ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[202"},{"event":"cmd_output","timestamp":1607098493,"output":"0-12-04 16:14:53.963724], name: \"master-.semaphore/semaphore.yml\", organization_id: \"05940336-034e-4"},{"event":"cmd_output","timestamp":1607098493,"output":"a15-935a-8893646a950f\", project_id: \"bf8f9890-66a9-4eac-85e4-448d9aa5cf98\", queue_id: \"726f8d3c-0da5"},{"event":"cmd_output","timestamp":1607098493,"output":"-4aff-88c6-615799bd70f6\", scope: \"project\", updated_at: ~N[2020-12-04 16:14:53.963732], user_generat"},{"event":"cmd_output","timestamp":1607098493,"output":"ed: false}}\n\u001b[0m\u001b[22m\n16:14:53.967 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandl"},{"event":"cmd_output","timestamp":1607098493,"output":"er.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:53.967 [info] ppl_id: c0ba3ed3-3755-4be7-88"},{"event":"cmd_output","timestamp":1607098493,"output":"99-e6b47de267fb, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_coun"},{"event":"cmd_output","timestamp":1607098493,"output":"t: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14"},{"event":"cmd_output","timestamp":1607098493,"output":":53.969 [info] ppl_id: c0ba3ed3-3755-4be7-8899-e6b47de267fb, type: PplSubInits, state: done, result"},{"event":"cmd_output","timestamp":1607098493,"output":": passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change"},{"event":"cmd_output","timestamp":1607098493,"output":"/1(L90), \n\u001b[0m\u001b[22m\n16:14:53.976 [info] ppl_id: c0ba3ed3-3755-4be7-8899-e6b47de267fb, type: Ppls,"},{"event":"cmd_output","timestamp":1607098493,"output":" state: pending, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state"},{"event":"cmd_output","timestamp":1607098493,"output":"_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:53.977 [info] ppl_id: c0ba3ed3-3755-4be7-8899-e6b47de267fb, type"},{"event":"cmd_output","timestamp":1607098493,"output":": PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098493,"output":"ir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:53.986 [info] ppl_id: c0ba3ed3-3755-"},{"event":"cmd_output","timestamp":1607098493,"output":"4be7-8899-e6b47de267fb, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098493,"output":"n: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:53.996 [info] ppl_id: c0ba3ed"},{"event":"cmd_output","timestamp":1607098493,"output":"3-3755-4be7-8899-e6b47de267fb, type: Ppls, state: running, event: exit_scheduling, recovery_count: 0"},{"event":"cmd_output","timestamp":1607098494,"output":", origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:54.005 [info] PplBlock"},{"event":"cmd_output","timestamp":1607098494,"output":"s WaitingState STM is scheduling block 0 from pipeline: \"c0ba3ed3-3755-4be7-8899-e6b47de267fb\"\n\u001b[0m"},{"event":"cmd_output","timestamp":1607098494,"output":"\u001b[22m\n16:14:54.009 [info] block_id: 7347f3ab-cd29-4279-b03c-6d77684cf252, type: BlockRequests, eve"},{"event":"cmd_output","timestamp":1607098494,"output":"nt: persisted block run request from ppl c0ba3ed3-3755-4be7-8899-e6b47de267fb for block 0, origin: E"},{"event":"cmd_output","timestamp":1607098494,"output":"lixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:14:54."},{"event":"cmd_output","timestamp":1607098494,"output":"010 [info] block_id: 7347f3ab-cd29-4279-b03c-6d77684cf252, type: Blocks, state: initializing, event"},{"event":"cmd_output","timestamp":1607098494,"output":": initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n"},{"event":"cmd_output","timestamp":1607098494,"output":"\u001b[0m\u001b[22m\n16:14:54.013 [info] Block 0 of pipeline with id: c0ba3ed3-3755-4be7-8899-e6b47de267fb sc"},{"event":"cmd_output","timestamp":1607098494,"output":"heduled in block service with id: : \"7347f3ab-cd29-4279-b03c-6d77684cf252\"\n\u001b[0m\u001b[22m\n16:14:54.016 "},{"event":"cmd_output","timestamp":1607098494,"output":"[info] block_id: 7347f3ab-cd29-4279-b03c-6d77684cf252, type: BlockRequests, event: persisted build "},{"event":"cmd_output","timestamp":1607098494,"output":"and sub_ppl details for block_request: 7347f3ab-cd29-4279-b03c-6d77684cf252, origin: Elixir.Block.Bl"},{"event":"cmd_output","timestamp":1607098494,"output":"ockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:14:54.022 [info] block_"},{"event":"cmd_output","timestamp":1607098494,"output":"id: 7347f3ab-cd29-4279-b03c-6d77684cf252, type: Tasks, state: pending, event: created, recovery_coun"},{"event":"cmd_output","timestamp":1607098494,"output":"t: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:14:5"},{"event":"cmd_output","timestamp":1607098494,"output":"4.023 [info] ppl_id: c0ba3ed3-3755-4be7-8899-e6b47de267fb, type: PplBlocks, block_index: 0, state: "},{"event":"cmd_output","timestamp":1607098494,"output":"running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/"},{"event":"cmd_output","timestamp":1607098494,"output":"1(L90), \n\u001b[0m\u001b[22m\n16:14:54.024 [info] block_id: 7347f3ab-cd29-4279-b03c-6d77684cf252, type: Bloc"},{"event":"cmd_output","timestamp":1607098494,"output":"ks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_st"},{"event":"cmd_output","timestamp":1607098494,"output":"ate_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:54.042 [info] block_id: 7347f3ab-cd29-4279-b03c-6d77684cf252,"},{"event":"cmd_output","timestamp":1607098494,"output":" type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.I"},{"event":"cmd_output","timestamp":1607098494,"output":"mpl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:54.116 [info] block_id: 7347f3ab-cd29-4279-b03c-6d7"},{"event":"cmd_output","timestamp":1607098494,"output":"7684cf252, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loope"},{"event":"cmd_output","timestamp":1607098494,"output":"r.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:54.128 [info] block_id: 7347f3ab-cd29-4279-b"},{"event":"cmd_output","timestamp":1607098494,"output":"03c-6d77684cf252, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, origin: Elix"},{"event":"cmd_output","timestamp":1607098494,"output":"ir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:54.134 [info] ppl_id: c0ba3ed3-3755-"},{"event":"cmd_output","timestamp":1607098494,"output":"4be7-8899-e6b47de267fb, block_id: 7347f3ab-cd29-4279-b03c-6d77684cf252, type: PplBlocks, block_index"},{"event":"cmd_output","timestamp":1607098494,"output":": 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.S"},{"event":"cmd_output","timestamp":1607098494,"output":"TM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:54.153 [info] ppl_id: c0ba3ed3-3755-4be7-8899-e"},{"event":"cmd_output","timestamp":1607098494,"output":"6b47de267fb, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098494,"output":"gin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:54.230 [info] Request: 'run"},{"event":"cmd_output","timestamp":1607098494,"output":": %{:file_name => \"cmd-file-commands.yml\", :repo_name => \"25_global_job_config\", \"branch_id\" => \"6d7"},{"event":"cmd_output","timestamp":1607098494,"output":"8a9d4-c52a-4efa-aa9b-e57ec92a1e26\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469\", \"file_n"},{"event":"cmd_output","timestamp":1607098494,"output":"ame\" => \"semaphore.yml\", \"hook_id\" => \"d82e46da-364b-11eb-9f96-5254005464e2\", \"label\" => \"master\", \""},{"event":"cmd_output","timestamp":1607098494,"output":"organization_id\" => \"55e8edd0-0724-482e-bbaa-f32ad5fddf03\", \"owner\" => \"rt\", \"project_id\" => \"e21522"},{"event":"cmd_output","timestamp":1607098494,"output":"3f-beb2-4037-b105-a9beafbca656\", \"repo_name\" => \"2_basic\", \"request_token\" => \"d82e3e56-364b-11eb-a3"},{"event":"cmd_output","timestamp":1607098494,"output":"a5-5254005464e2\", \"requester_id\" => \"67f74ea2-6f82-4e41-b788-e9843aec6843\", \"service\" => \"local\", \"s"},{"event":"cmd_output","timestamp":1607098494,"output":"uppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"da7f438c-0f4f-448e-b42d-a50a"},{"event":"cmd_output","timestamp":1607098494,"output":"52a9c65e\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:14:54.232 [info] ppl_id: d5ff1040-c011-4c5"},{"event":"cmd_output","timestamp":1607098494,"output":"4-a2d2-860711a37e25, type: PplRequests, event: persisted schedule request with request_token: d82e3e"},{"event":"cmd_output","timestamp":1607098494,"output":"56-364b-11eb-a3a5-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_resp"},{"event":"cmd_output","timestamp":1607098494,"output":"onse/2(L55), \n\u001b[0m\u001b[22m\n16:14:54.234 [info] ppl_id: d5ff1040-c011-4c54-a2d2-860711a37e25, type: P"},{"event":"cmd_output","timestamp":1607098494,"output":"pls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.Ppls"},{"event":"cmd_output","timestamp":1607098494,"output":"Queries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:14:54.237 [info] Project e215223f-beb2-4037-b105-"},{"event":"cmd_output","timestamp":1607098494,"output":"a9beafbca656 and branch masterlatest_wf details updated: \"wf_id: da7f438c-0f4f-448e-b42d-a50a52a9c65"},{"event":"cmd_output","timestamp":1607098494,"output":"e, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:14:54.238 [info] Persisted ppl_sub_init for pipeline with ppl_id: d"},{"event":"cmd_output","timestamp":1607098494,"output":"5ff1040-c011-4c54-a2d2-860711a37e25: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metad"},{"event":"cmd_output","timestamp":1607098494,"output":"ata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 353, in_schedu"},{"event":"cmd_output","timestamp":1607098494,"output":"ling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:14:54.237701], pipeline_requests: #"},{"event":"cmd_output","timestamp":1607098494,"output":"Ecto.Association.NotLoaded, ppl_id: \"d5ff1040-c011-4c5"},{"event":"cmd_output","timestamp":1607098494,"output":"4-a2d2-860711a37e25\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminat"},{"event":"cmd_output","timestamp":1607098494,"output":"e_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:14:54.237708]}\n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098494,"output":"\n16:14:54.249 [info] ppl_id: d5ff1040-c011-4c54-a2d2-860711a37e25, type: PplRequests, event: persis"},{"event":"cmd_output","timestamp":1607098494,"output":"ted source_args for pipeline: d5ff1040-c011-4c54-a2d2-860711a37e25, origin: Elixir.Ppl.PplRequests.M"},{"event":"cmd_output","timestamp":1607098494,"output":"odel.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:14:54.254 [info] ppl_id: d5ff1040-c01"},{"event":"cmd_output","timestamp":1607098494,"output":"1-4c54-a2d2-860711a37e25, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_count"},{"event":"cmd_output","timestamp":1607098494,"output":": 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:54.268 [info] ppl_i"},{"event":"cmd_output","timestamp":1607098494,"output":"d: d5ff1040-c011-4c54-a2d2-860711a37e25, type: PplSubInits, state: regular_init, event: exit_schedul"},{"event":"cmd_output","timestamp":1607098494,"output":"ing, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:5"},{"event":"cmd_output","timestamp":1607098494,"output":"4.293 [info] ppl_id: d5ff1040-c011-4c54-a2d2-860711a37e25, type: PplRequests, event: persisted defi"},{"event":"cmd_output","timestamp":1607098494,"output":"nition for request with request_token: d82e3e56-364b-11eb-a3a5-5254005464e2, origin: Elixir.Ppl.PplR"},{"event":"cmd_output","timestamp":1607098494,"output":"equests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:14:54.296 [info] Queue p"},{"event":"cmd_output","timestamp":1607098494,"output":"ersisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserte"},{"event":"cmd_output","timestamp":1607098494,"output":"d_at: ~N[2020-12-04 16:14:54.295600], name: \"master-.semaphore/semaphore.yml\", organization_id: \"55e"},{"event":"cmd_output","timestamp":1607098494,"output":"8edd0-0724-482e-bbaa-f32ad5fddf03\", project_id: \"e215223f-beb2-4037-b105-a9beafbca656\", queue_id: \"2"},{"event":"cmd_output","timestamp":1607098494,"output":"948d0b3-5c86-4914-aed5-5e5ee246e36b\", scope: \"project\", updated_at: ~N[2020-12-04 16:14:54.295621], "},{"event":"cmd_output","timestamp":1607098494,"output":"user_generated: false}}\n\u001b[0m\u001b[22m\n16:14:54.300 [info] event: created, origin: Elixir.Ppl.PplSubIn"},{"event":"cmd_output","timestamp":1607098494,"output":"its.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:54.300 [info] ppl_id: d5ff1040-"},{"event":"cmd_output","timestamp":1607098494,"output":"c011-4c54-a2d2-860711a37e25, type: PplBlocks, block_index: 0, state: initializing, event: created, r"},{"event":"cmd_output","timestamp":1607098494,"output":"ecovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098494,"output":"\u001b[22m\n16:14:54.303 [info] ppl_id: d5ff1040-c011-4c54-a2d2-860711a37e25, type: PplSubInits, state: "},{"event":"cmd_output","timestamp":1607098494,"output":"done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_"},{"event":"cmd_output","timestamp":1607098494,"output":"state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:54.309 [info] ppl_id: d5ff1040-c011-4c54-a2d2-860711a37e25,"},{"event":"cmd_output","timestamp":1607098494,"output":" type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098494,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:54.311 [info] ppl_id: d5ff1040-"},{"event":"cmd_output","timestamp":1607098494,"output":"c011-4c54-a2d2-860711a37e25, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098494,"output":"origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:54.317 [info] ppl_id: d5"},{"event":"cmd_output","timestamp":1607098494,"output":"ff1040-c011-4c54-a2d2-860711a37e25, type: Ppls, state: queuing, event: exit_scheduling, recovery_cou"},{"event":"cmd_output","timestamp":1607098494,"output":"nt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:54.336 [info] ppl"},{"event":"cmd_output","timestamp":1607098494,"output":"_id: d5ff1040-c011-4c54-a2d2-860711a37e25, type: Ppls, state: running, event: exit_scheduling, recov"},{"event":"cmd_output","timestamp":1607098494,"output":"ery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:54.341 [inf"},{"event":"cmd_output","timestamp":1607098494,"output":"o] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"d5ff1040-c011-4c54-a2d2-860711a"},{"event":"cmd_output","timestamp":1607098494,"output":"37e25\"\n\u001b[0m\u001b[22m\n16:14:54.344 [info] block_id: a6b6984f-ef9f-43e3-a95d-e9b47f9cb292, type: BlockR"},{"event":"cmd_output","timestamp":1607098494,"output":"equests, event: persisted block run request from ppl d5ff1040-c011-4c54-a2d2-860711a37e25 for block "},{"event":"cmd_output","timestamp":1607098494,"output":"0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098494,"output":"m\n16:14:54.347 [info] block_id: a6b6984f-ef9f-43e3-a95d-e9b47f9cb292, type: Blocks, state: initial"},{"event":"cmd_output","timestamp":1607098494,"output":"izing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueries.inser"},{"event":"cmd_output","timestamp":1607098494,"output":"t/1(L43), \n\u001b[0m\u001b[22m\n16:14:54.349 [info] Block 0 of pipeline with id: d5ff1040-c011-4c54-a2d2-860"},{"event":"cmd_output","timestamp":1607098494,"output":"711a37e25 scheduled in block service with id: : \"a6b6984f-ef9f-43e3-a95d-e9b47f9cb292\"\n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098494,"output":"6:14:54.352 [info] ppl_id: d5ff1040-c011-4c54-a2d2-860711a37e25, type: PplBlocks, block_index: 0, s"},{"event":"cmd_output","timestamp":1607098494,"output":"tate: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_c"},{"event":"cmd_output","timestamp":1607098494,"output":"hange/1(L90), \n\u001b[0m\u001b[22m\n16:14:54.352 [info] block_id: a6b6984f-ef9f-43e3-a95d-e9b47f9cb292, type"},{"event":"cmd_output","timestamp":1607098494,"output":": BlockRequests, event: persisted build and sub_ppl details for block_request: a6b6984f-ef9f-43e3-a9"},{"event":"cmd_output","timestamp":1607098494,"output":"5d-e9b47f9cb292, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), "},{"event":"cmd_output","timestamp":1607098494,"output":"\n\u001b[0m\u001b[22m\n16:14:54.354 [info] block_id: a6b6984f-ef9f-43e3-a95d-e9b47f9cb292, type: Tasks, state"},{"event":"cmd_output","timestamp":1607098494,"output":": pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.InitializingSta"},{"event":"cmd_output","timestamp":1607098494,"output":"te.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:14:54.356 [info] block_id: a6b6984f-ef9f-43e3-a95d-e9b47f9cb292"},{"event":"cmd_output","timestamp":1607098494,"output":", type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM"},{"event":"cmd_output","timestamp":1607098494,"output":".Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:54.367 [info] block_id: a6b6984f-ef9f-43e3-a95d-e"},{"event":"cmd_output","timestamp":1607098494,"output":"9b47f9cb292, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098494,"output":"Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:54.429 [info] block_id: a6b6984f-ef9f-4"},{"event":"cmd_output","timestamp":1607098494,"output":"3e3-a95d-e9b47f9cb292, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098494,"output":"Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:54.439 [info] block_id: a6b6984f"},{"event":"cmd_output","timestamp":1607098494,"output":"-ef9f-43e3-a95d-e9b47f9cb292, type: Blocks, state: done, event: exit_scheduling, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098494,"output":"origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:54.445 [info] ppl_id: d5"},{"event":"cmd_output","timestamp":1607098494,"output":"ff1040-c011-4c54-a2d2-860711a37e25, block_id: a6b6984f-ef9f-43e3-a95d-e9b47f9cb292, type: PplBlocks,"},{"event":"cmd_output","timestamp":1607098494,"output":" block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Eli"},{"event":"cmd_output","timestamp":1607098494,"output":"xir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:54.457 [info] ppl_id: d5ff1040-c011"},{"event":"cmd_output","timestamp":1607098494,"output":"-4c54-a2d2-860711a37e25, type: Ppls, state: done, result: passed, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098494,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:54.551 [info] R"},{"event":"cmd_output","timestamp":1607098494,"output":"equest: 'run: %{:file_name => \"commands-both.yml\", :repo_name => \"25_global_job_config\", \"branch_id\""},{"event":"cmd_output","timestamp":1607098494,"output":" => \"9f77b02e-3438-49d7-bc77-6bda35b9c352\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469\","},{"event":"cmd_output","timestamp":1607098494,"output":" \"file_name\" => \"semaphore.yml\", \"hook_id\" => \"d85f1f08-364b-11eb-b0d7-5254005464e2\", \"label\" => \"ma"},{"event":"cmd_output","timestamp":1607098494,"output":"ster\", \"organization_id\" => \"5f7594f2-685a-40dd-88c3-115712562609\", \"owner\" => \"rt\", \"project_id\" =>"},{"event":"cmd_output","timestamp":1607098494,"output":" \"4488f671-d877-4911-ac28-c2b82c5051a7\", \"repo_name\" => \"2_basic\", \"request_token\" => \"d85f158a-364b"},{"event":"cmd_output","timestamp":1607098494,"output":"-11eb-bbcb-5254005464e2\", \"requester_id\" => \"baf3ae04-49cf-447e-bb4f-e8ea78a2ed01\", \"service\" => \"lo"},{"event":"cmd_output","timestamp":1607098494,"output":"cal\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"8f1f9ec1-c27d-42dc-a"},{"event":"cmd_output","timestamp":1607098494,"output":"b10-5529fc35f4f9\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:14:54.553 [info] ppl_id: 41ec6468-"},{"event":"cmd_output","timestamp":1607098494,"output":"fe76-4b27-b906-116b1a0e3322, type: PplRequests, event: persisted schedule request with request_token"},{"event":"cmd_output","timestamp":1607098494,"output":": d85f158a-364b-11eb-bbcb-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.proc"},{"event":"cmd_output","timestamp":1607098494,"output":"ess_response/2(L55), \n\u001b[0m\u001b[22m\n16:14:54.555 [info] ppl_id: 41ec6468-fe76-4b27-b906-116b1a0e3322,"},{"event":"cmd_output","timestamp":1607098494,"output":" type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Mo"},{"event":"cmd_output","timestamp":1607098494,"output":"del.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:14:54.558 [info] Project 4488f671-d877-49"},{"event":"cmd_output","timestamp":1607098494,"output":"11-ac28-c2b82c5051a7 and branch masterlatest_wf details updated: \"wf_id: 8f1f9ec1-c27d-42dc-ab10-552"},{"event":"cmd_output","timestamp":1607098494,"output":"9fc35f4f9, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:14:54.559 [info] Persisted ppl_sub_init for pipeline with p"},{"event":"cmd_output","timestamp":1607098494,"output":"pl_id: 41ec6468-fe76-4b27-b906-116b1a0e3322: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Sche"},{"event":"cmd_output","timestamp":1607098494,"output":"ma.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 354, i"},{"event":"cmd_output","timestamp":1607098494,"output":"n_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:14:54.558448], pipeline_req"},{"event":"cmd_output","timestamp":1607098494,"output":"uests: #Ecto.Association.NotLoaded, ppl_id: \"41ec6468-"},{"event":"cmd_output","timestamp":1607098494,"output":"fe76-4b27-b906-116b1a0e3322\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", "},{"event":"cmd_output","timestamp":1607098494,"output":"terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:14:54.558455]}\n\u001b["},{"event":"cmd_output","timestamp":1607098494,"output":"0m\u001b[22m\n16:14:54.574 [info] ppl_id: 41ec6468-fe76-4b27-b906-116b1a0e3322, type: PplRequests, event"},{"event":"cmd_output","timestamp":1607098494,"output":": persisted source_args for pipeline: 41ec6468-fe76-4b27-b906-116b1a0e3322, origin: Elixir.Ppl.PplRe"},{"event":"cmd_output","timestamp":1607098494,"output":"quests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:14:54.576 [info] ppl_id: 41ec"},{"event":"cmd_output","timestamp":1607098494,"output":"6468-fe76-4b27-b906-116b1a0e3322, type: PplSubInits, state: fetching, event: exit_scheduling, recove"},{"event":"cmd_output","timestamp":1607098494,"output":"ry_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:54.596 [info"},{"event":"cmd_output","timestamp":1607098494,"output":"] ppl_id: 41ec6468-fe76-4b27-b906-116b1a0e3322, type: PplSubInits, state: regular_init, event: exit"},{"event":"cmd_output","timestamp":1607098494,"output":"_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098494,"output":"\n16:14:54.618 [info] ppl_id: 41ec6468-fe76-4b27-b906-116b1a0e3322, type: PplRequests, event: persis"},{"event":"cmd_output","timestamp":1607098494,"output":"ted definition for request with request_token: d85f158a-364b-11eb-bbcb-5254005464e2, origin: Elixir."},{"event":"cmd_output","timestamp":1607098494,"output":"Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:14:54.623 [info] "},{"event":"cmd_output","timestamp":1607098494,"output":" Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">,"},{"event":"cmd_output","timestamp":1607098494,"output":" inserted_at: ~N[2020-12-04 16:14:54.622301], name: \"master-.semaphore/semaphore.yml\", organization_"},{"event":"cmd_output","timestamp":1607098494,"output":"id: \"5f7594f2-685a-40dd-88c3-115712562609\", project_id: \"4488f671-d877-4911-ac28-c2b82c5051a7\", queu"},{"event":"cmd_output","timestamp":1607098494,"output":"e_id: \"84dd9611-9b21-4281-a4cd-64a9fe9c62c8\", scope: \"project\", updated_at: ~N[2020-12-04 16:14:54.6"},{"event":"cmd_output","timestamp":1607098494,"output":"22308], user_generated: false}}\n\u001b[0m\u001b[22m\n16:14:54.628 [info] event: created, origin: Elixir.Ppl."},{"event":"cmd_output","timestamp":1607098494,"output":"PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:54.628 [info] ppl_id: 4"},{"event":"cmd_output","timestamp":1607098494,"output":"1ec6468-fe76-4b27-b906-116b1a0e3322, type: PplBlocks, block_index: 0, state: initializing, event: cr"},{"event":"cmd_output","timestamp":1607098494,"output":"eated, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105)"},{"event":"cmd_output","timestamp":1607098494,"output":", \n\u001b[0m\u001b[22m\n16:14:54.631 [info] ppl_id: 41ec6468-fe76-4b27-b906-116b1a0e3322, type: PplSubInits,"},{"event":"cmd_output","timestamp":1607098494,"output":" state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.I"},{"event":"cmd_output","timestamp":1607098494,"output":"mpl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:54.637 [info] ppl_id: 41ec6468-fe76-4b27-b906-116b1"},{"event":"cmd_output","timestamp":1607098494,"output":"a0e3322, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098494,"output":" origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:54.639 [info] ppl_id: 4"},{"event":"cmd_output","timestamp":1607098494,"output":"1ec6468-fe76-4b27-b906-116b1a0e3322, type: Ppls, state: pending, event: exit_scheduling, recovery_co"},{"event":"cmd_output","timestamp":1607098494,"output":"unt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:54.650 [info] pp"},{"event":"cmd_output","timestamp":1607098494,"output":"l_id: 41ec6468-fe76-4b27-b906-116b1a0e3322, type: Ppls, state: queuing, event: exit_scheduling, reco"},{"event":"cmd_output","timestamp":1607098494,"output":"very_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:54.659 [in"},{"event":"cmd_output","timestamp":1607098494,"output":"fo] ppl_id: 41ec6468-fe76-4b27-b906-116b1a0e3322, type: Ppls, state: running, event: exit_schedulin"},{"event":"cmd_output","timestamp":1607098494,"output":"g, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:54."},{"event":"cmd_output","timestamp":1607098494,"output":"666 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"41ec6468-fe76-4b27-b906"},{"event":"cmd_output","timestamp":1607098494,"output":"-116b1a0e3322\"\n\u001b[0m\u001b[22m\n16:14:54.670 [info] block_id: c62a0fb0-9900-412a-b855-000de3cc6a42, type"},{"event":"cmd_output","timestamp":1607098494,"output":": BlockRequests, event: persisted block run request from ppl 41ec6468-fe76-4b27-b906-116b1a0e3322 fo"},{"event":"cmd_output","timestamp":1607098494,"output":"r block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/4(L35), \n"},{"event":"cmd_output","timestamp":1607098494,"output":"\u001b[0m\u001b[22m\n16:14:54.678 [info] block_id: c62a0fb0-9900-412a-b855-000de3cc6a42, type: Blocks, state:"},{"event":"cmd_output","timestamp":1607098494,"output":" initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.BlocksQueri"},{"event":"cmd_output","timestamp":1607098494,"output":"es.insert/1(L43), \n\u001b[0m\u001b[22m\n16:14:54.679 [info] Block 0 of pipeline with id: 41ec6468-fe76-4b27-"},{"event":"cmd_output","timestamp":1607098494,"output":"b906-116b1a0e3322 scheduled in block service with id: : \"c62a0fb0-9900-412a-b855-000de3cc6a42\"\n\u001b[0m"},{"event":"cmd_output","timestamp":1607098494,"output":"\u001b[22m\n16:14:54.681 [info] ppl_id: 41ec6468-fe76-4b27-b906-116b1a0e3322, type: PplBlocks, block_ind"},{"event":"cmd_output","timestamp":1607098494,"output":"ex: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log"},{"event":"cmd_output","timestamp":1607098494,"output":"_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:54.683 [info] block_id: c62a0fb0-9900-412a-b855-000de3cc6a"},{"event":"cmd_output","timestamp":1607098494,"output":"42, type: BlockRequests, event: persisted build and sub_ppl details for block_request: c62a0fb0-9900"},{"event":"cmd_output","timestamp":1607098494,"output":"-412a-b855-000de3cc6a42, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/"},{"event":"cmd_output","timestamp":1607098494,"output":"2(L41), \n\u001b[0m\u001b[22m\n16:14:54.685 [info] block_id: c62a0fb0-9900-412a-b855-000de3cc6a42, type: Task"},{"event":"cmd_output","timestamp":1607098494,"output":"s, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandler.Initial"},{"event":"cmd_output","timestamp":1607098494,"output":"izingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:14:54.686 [info] block_id: c62a0fb0-9900-412a-b855-000d"},{"event":"cmd_output","timestamp":1607098494,"output":"e3cc6a42, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Lo"},{"event":"cmd_output","timestamp":1607098494,"output":"oper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:54.701 [info] block_id: c62a0fb0-9900-412"},{"event":"cmd_output","timestamp":1607098494,"output":"a-b855-000de3cc6a42, type: Tasks, state: running, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098494,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:54.743 [info] block_id: c62a0fb"},{"event":"cmd_output","timestamp":1607098494,"output":"0-9900-412a-b855-000de3cc6a42, type: Tasks, state: done, event: exit_scheduling, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098494,"output":"origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:54.750 [info] block_id: "},{"event":"cmd_output","timestamp":1607098494,"output":"c62a0fb0-9900-412a-b855-000de3cc6a42, type: Blocks, state: done, event: exit_scheduling, recovery_co"},{"event":"cmd_output","timestamp":1607098494,"output":"unt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:54.757 [info] pp"},{"event":"cmd_output","timestamp":1607098494,"output":"l_id: 41ec6468-fe76-4b27-b906-116b1a0e3322, block_id: c62a0fb0-9900-412a-b855-000de3cc6a42, type: Pp"},{"event":"cmd_output","timestamp":1607098494,"output":"lBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098494,"output":"gin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:54.769 [info] ppl_id: 41ec6"},{"event":"cmd_output","timestamp":1607098494,"output":"468-fe76-4b27-b906-116b1a0e3322, type: Ppls, state: done, result: passed, event: exit_scheduling, re"},{"event":"cmd_output","timestamp":1607098494,"output":"covery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:54.874 ["},{"event":"cmd_output","timestamp":1607098494,"output":"info] Request: 'run: %{:file_name => \"commands-cmd-file.yml\", :repo_name => \"25_global_job_config\","},{"event":"cmd_output","timestamp":1607098494,"output":" \"branch_id\" => \"704aad47-ab3c-4d14-9489-7b65fcb8a269\", \"branch_name\" => \"master\", \"commit_sha\" => \""},{"event":"cmd_output","timestamp":1607098494,"output":"75891a4469\", \"file_name\" => \"semaphore.yml\", \"hook_id\" => \"d89078d2-364b-11eb-be83-5254005464e2\", \"l"},{"event":"cmd_output","timestamp":1607098494,"output":"abel\" => \"master\", \"organization_id\" => \"42441d17-b82d-4c0b-a42e-9c6f41ec11f2\", \"owner\" => \"rt\", \"pr"},{"event":"cmd_output","timestamp":1607098494,"output":"oject_id\" => \"99cdf040-c5b7-4903-9000-57d6572bc51b\", \"repo_name\" => \"2_basic\", \"request_token\" => \"d"},{"event":"cmd_output","timestamp":1607098494,"output":"8906da6-364b-11eb-9e96-5254005464e2\", \"requester_id\" => \"13b7e564-fdb0-489d-98f8-523fce113e38\", \"ser"},{"event":"cmd_output","timestamp":1607098494,"output":"vice\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"3ee4dbb4"},{"event":"cmd_output","timestamp":1607098494,"output":"-f0a3-4bf4-a63e-0617e0e2fd55\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:14:54.876 [info] ppl_i"},{"event":"cmd_output","timestamp":1607098494,"output":"d: 17bbc32d-b54d-4cc9-8854-5f18c3146924, type: PplRequests, event: persisted schedule request with r"},{"event":"cmd_output","timestamp":1607098494,"output":"equest_token: d8906da6-364b-11eb-9e96-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequests"},{"event":"cmd_output","timestamp":1607098494,"output":"Queries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:14:54.878 [info] ppl_id: 17bbc32d-b54d-4cc9-8854-5"},{"event":"cmd_output","timestamp":1607098494,"output":"f18c3146924, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098494,"output":".Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:14:54.881 [info] Project 99cd"},{"event":"cmd_output","timestamp":1607098494,"output":"f040-c5b7-4903-9000-57d6572bc51b and branch masterlatest_wf details updated: \"wf_id: 3ee4dbb4-f0a3-4"},{"event":"cmd_output","timestamp":1607098494,"output":"bf4-a63e-0617e0e2fd55, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:14:54.884 [info] Persisted ppl_sub_init for pip"},{"event":"cmd_output","timestamp":1607098494,"output":"eline with ppl_id: 17bbc32d-b54d-4cc9-8854-5f18c3146924: %Ppl.PplSubInits.Model.PplSubInits{__meta__"},{"event":"cmd_output","timestamp":1607098494,"output":": #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil"},{"event":"cmd_output","timestamp":1607098494,"output":", id: 355, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:14:54.883015], "},{"event":"cmd_output","timestamp":1607098494,"output":"pipeline_requests: #Ecto.Association.NotLoaded, ppl_id"},{"event":"cmd_output","timestamp":1607098494,"output":": \"17bbc32d-b54d-4cc9-8854-5f18c3146924\", recovery_count: 0, result: nil, result_reason: nil, state:"},{"event":"cmd_output","timestamp":1607098494,"output":" \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:14:54."},{"event":"cmd_output","timestamp":1607098494,"output":"883023]}\n\u001b[0m\u001b[22m\n16:14:54.893 [info] ppl_id: 17bbc32d-b54d-4cc9-8854-5f18c3146924, type: PplReq"},{"event":"cmd_output","timestamp":1607098494,"output":"uests, event: persisted source_args for pipeline: 17bbc32d-b54d-4cc9-8854-5f18c3146924, origin: Elix"},{"event":"cmd_output","timestamp":1607098494,"output":"ir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:14:54.898 [info] "},{"event":"cmd_output","timestamp":1607098494,"output":"ppl_id: 17bbc32d-b54d-4cc9-8854-5f18c3146924, type: PplSubInits, state: fetching, event: exit_schedu"},{"event":"cmd_output","timestamp":1607098494,"output":"ling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:"},{"event":"cmd_output","timestamp":1607098494,"output":"54.921 [info] ppl_id: 17bbc32d-b54d-4cc9-8854-5f18c3146924, type: PplSubInits, state: regular_init,"},{"event":"cmd_output","timestamp":1607098494,"output":" event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), "},{"event":"cmd_output","timestamp":1607098494,"output":"\n\u001b[0m\u001b[22m\n16:14:54.946 [info] ppl_id: 17bbc32d-b54d-4cc9-8854-5f18c3146924, type: PplRequests, e"},{"event":"cmd_output","timestamp":1607098494,"output":"vent: persisted definition for request with request_token: d8906da6-364b-11eb-9e96-5254005464e2, ori"},{"event":"cmd_output","timestamp":1607098494,"output":"gin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:14:54"},{"event":"cmd_output","timestamp":1607098494,"output":".949 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded"},{"event":"cmd_output","timestamp":1607098494,"output":", \"queues\">, inserted_at: ~N[2020-12-04 16:14:54.947846], name: \"master-.semaphore/semaphore.yml\", o"},{"event":"cmd_output","timestamp":1607098494,"output":"rganization_id: \"42441d17-b82d-4c0b-a42e-9c6f41ec11f2\", project_id: \"99cdf040-c5b7-4903-9000-57d6572"},{"event":"cmd_output","timestamp":1607098494,"output":"bc51b\", queue_id: \"2f53053a-f7f4-4031-b92b-9146d3af7956\", scope: \"project\", updated_at: ~N[2020-12-0"},{"event":"cmd_output","timestamp":1607098494,"output":"4 16:14:54.947854], user_generated: false}}\n\u001b[0m\u001b[22m\n16:14:54.952 [info] event: created, origin:"},{"event":"cmd_output","timestamp":1607098494,"output":" Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:54.952 [info"},{"event":"cmd_output","timestamp":1607098494,"output":"] ppl_id: 17bbc32d-b54d-4cc9-8854-5f18c3146924, type: PplBlocks, block_index: 0, state: initializin"},{"event":"cmd_output","timestamp":1607098494,"output":"g, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all"},{"event":"cmd_output","timestamp":1607098494,"output":"_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:54.954 [info] ppl_id: 17bbc32d-b54d-4cc9-8854-5f18c3146924, type: "},{"event":"cmd_output","timestamp":1607098494,"output":"PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir."},{"event":"cmd_output","timestamp":1607098494,"output":"Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:54.960 [info] ppl_id: 17bbc32d-b54d-4cc"},{"event":"cmd_output","timestamp":1607098494,"output":"9-8854-5f18c3146924, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098494,"output":"Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:54.961 [info] ppl_id: 17bbc32d-b"},{"event":"cmd_output","timestamp":1607098494,"output":"54d-4cc9-8854-5f18c3146924, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling,"},{"event":"cmd_output","timestamp":1607098494,"output":" recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:54.96"},{"event":"cmd_output","timestamp":1607098494,"output":"6 [info] ppl_id: 17bbc32d-b54d-4cc9-8854-5f18c3146924, type: Ppls, state: queuing, event: exit_sche"},{"event":"cmd_output","timestamp":1607098494,"output":"duling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098494,"output":"4:54.975 [info] ppl_id: 17bbc32d-b54d-4cc9-8854-5f18c3146924, type: Ppls, state: running, event: ex"},{"event":"cmd_output","timestamp":1607098494,"output":"it_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22"},{"event":"cmd_output","timestamp":1607098494,"output":"m\n16:14:54.980 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"17bbc32d-b5"},{"event":"cmd_output","timestamp":1607098494,"output":"4d-4cc9-8854-5f18c3146924\"\n\u001b[0m\u001b[22m\n16:14:54.985 [info] block_id: 206a5a53-0ffe-4b9f-832d-7d2387"},{"event":"cmd_output","timestamp":1607098494,"output":"2812b4, type: BlockRequests, event: persisted block run request from ppl 17bbc32d-b54d-4cc9-8854-5f1"},{"event":"cmd_output","timestamp":1607098494,"output":"8c3146924 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_respons"},{"event":"cmd_output","timestamp":1607098494,"output":"e/4(L35), \n\u001b[0m\u001b[22m\n16:14:54.994 [info] block_id: 206a5a53-0ffe-4b9f-832d-7d23872812b4, type: Bl"},{"event":"cmd_output","timestamp":1607098494,"output":"ocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model"},{"event":"cmd_output","timestamp":1607098494,"output":".BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:14:54.996 [info] Block 0 of pipeline with id: 17bbc32"},{"event":"cmd_output","timestamp":1607098494,"output":"d-b54d-4cc9-8854-5f18c3146924 scheduled in block service with id: : \"206a5a53-0ffe-4b9f-832d-7d23872"},{"event":"cmd_output","timestamp":1607098495,"output":"812b4\"\n\u001b[0m\u001b[22m\n16:14:54.999 [info] block_id: 206a5a53-0ffe-4b9f-832d-7d23872812b4, type: BlockR"},{"event":"cmd_output","timestamp":1607098495,"output":"equests, event: persisted build and sub_ppl details for block_request: 206a5a53-0ffe-4b9f-832d-7d238"},{"event":"cmd_output","timestamp":1607098495,"output":"72812b4, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098495,"output":"22m\n16:14:55.001 [info] ppl_id: 17bbc32d-b54d-4cc9-8854-5f18c3146924, type: PplBlocks, block_index"},{"event":"cmd_output","timestamp":1607098495,"output":": 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_s"},{"event":"cmd_output","timestamp":1607098495,"output":"tate_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:55.003 [info] block_id: 206a5a53-0ffe-4b9f-832d-7d23872812b4"},{"event":"cmd_output","timestamp":1607098495,"output":", type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHan"},{"event":"cmd_output","timestamp":1607098495,"output":"dler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:14:55.007 [info] block_id: 206a5a53-0ffe-4b"},{"event":"cmd_output","timestamp":1607098495,"output":"9f-832d-7d23872812b4, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origi"},{"event":"cmd_output","timestamp":1607098495,"output":"n: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:55.021 [info] block_id: 206a5"},{"event":"cmd_output","timestamp":1607098495,"output":"a53-0ffe-4b9f-832d-7d23872812b4, type: Tasks, state: running, event: exit_scheduling, recovery_count"},{"event":"cmd_output","timestamp":1607098495,"output":": 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:55.055 [info] block"},{"event":"cmd_output","timestamp":1607098495,"output":"_id: 206a5a53-0ffe-4b9f-832d-7d23872812b4, type: Tasks, state: done, event: exit_scheduling, recover"},{"event":"cmd_output","timestamp":1607098495,"output":"y_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:55.066 [info]"},{"event":"cmd_output","timestamp":1607098495,"output":" block_id: 206a5a53-0ffe-4b9f-832d-7d23872812b4, type: Blocks, state: done, event: exit_scheduling,"},{"event":"cmd_output","timestamp":1607098495,"output":" recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:55.07"},{"event":"cmd_output","timestamp":1607098495,"output":"2 [info] ppl_id: 17bbc32d-b54d-4cc9-8854-5f18c3146924, block_id: 206a5a53-0ffe-4b9f-832d-7d23872812"},{"event":"cmd_output","timestamp":1607098495,"output":"b4, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098495,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:55.085 [info] p"},{"event":"cmd_output","timestamp":1607098495,"output":"pl_id: 17bbc32d-b54d-4cc9-8854-5f18c3146924, type: Ppls, state: done, result: passed, event: exit_sc"},{"event":"cmd_output","timestamp":1607098495,"output":"heduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098495,"output":":14:55.102 [info] Request: 'run: %{:file_name => \"env-vars-both.yml\", :repo_name => \"25_global_job_"},{"event":"cmd_output","timestamp":1607098495,"output":"config\", \"branch_id\" => \"68f56e2b-1a5c-4100-b886-d0c62b75fb73\", \"branch_name\" => \"master\", \"commit_s"},{"event":"cmd_output","timestamp":1607098495,"output":"ha\" => \"75891a4469\", \"file_name\" => \"semaphore.yml\", \"hook_id\" => \"d8b34772-364b-11eb-8355-525400546"},{"event":"cmd_output","timestamp":1607098495,"output":"4e2\", \"label\" => \"master\", \"organization_id\" => \"1e5c3a0e-2a0a-490e-8ada-37ea4cf2bc65\", \"owner\" => \""},{"event":"cmd_output","timestamp":1607098495,"output":"rt\", \"project_id\" => \"4217a4c4-4ee2-453d-b584-a2f36e8c364c\", \"repo_name\" => \"2_basic\", \"request_toke"},{"event":"cmd_output","timestamp":1607098495,"output":"n\" => \"d8b33d9a-364b-11eb-8a2a-5254005464e2\", \"requester_id\" => \"7e2a2b20-34de-4ee5-8cf6-6dd0e619f17"},{"event":"cmd_output","timestamp":1607098495,"output":"d\", \"service\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \""},{"event":"cmd_output","timestamp":1607098495,"output":"e5a2424a-83d3-4451-a813-dd050d686b7a\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:14:55.104 [info"},{"event":"cmd_output","timestamp":1607098495,"output":"] ppl_id: 9b1a23ab-ef80-4257-a6e0-c562654afeec, type: PplRequests, event: persisted schedule reques"},{"event":"cmd_output","timestamp":1607098495,"output":"t with request_token: d8b33d9a-364b-11eb-8a2a-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.Ppl"},{"event":"cmd_output","timestamp":1607098495,"output":"RequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:14:55.106 [info] ppl_id: 9b1a23ab-ef80-425"},{"event":"cmd_output","timestamp":1607098495,"output":"7-a6e0-c562654afeec, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin"},{"event":"cmd_output","timestamp":1607098495,"output":": Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:14:55.109 [info] Proj"},{"event":"cmd_output","timestamp":1607098495,"output":"ect 4217a4c4-4ee2-453d-b584-a2f36e8c364c and branch masterlatest_wf details updated: \"wf_id: e5a2424"},{"event":"cmd_output","timestamp":1607098495,"output":"a-83d3-4451-a813-dd050d686b7a, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:14:55.110 [info] Persisted ppl_sub_init"},{"event":"cmd_output","timestamp":1607098495,"output":" for pipeline with ppl_id: 9b1a23ab-ef80-4257-a6e0-c562654afeec: %Ppl.PplSubInits.Model.PplSubInits{"},{"event":"cmd_output","timestamp":1607098495,"output":"__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_descript"},{"event":"cmd_output","timestamp":1607098495,"output":"ion: nil, id: 356, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:14:55.1"},{"event":"cmd_output","timestamp":1607098495,"output":"09656], pipeline_requests: #Ecto.Association.NotLoaded"},{"event":"cmd_output","timestamp":1607098495,"output":", ppl_id: \"9b1a23ab-ef80-4257-a6e0-c562654afeec\", recovery_count: 0, result: nil, result_reason: nil"},{"event":"cmd_output","timestamp":1607098495,"output":", state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 1"},{"event":"cmd_output","timestamp":1607098495,"output":"6:14:55.109663]}\n\u001b[0m\u001b[22m\n16:14:55.122 [info] ppl_id: 9b1a23ab-ef80-4257-a6e0-c562654afeec, type"},{"event":"cmd_output","timestamp":1607098495,"output":": PplRequests, event: persisted source_args for pipeline: 9b1a23ab-ef80-4257-a6e0-c562654afeec, orig"},{"event":"cmd_output","timestamp":1607098495,"output":"in: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:14:55.124 "},{"event":"cmd_output","timestamp":1607098495,"output":"[info] ppl_id: 9b1a23ab-ef80-4257-a6e0-c562654afeec, type: PplSubInits, state: fetching, event: exi"},{"event":"cmd_output","timestamp":1607098495,"output":"t_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m"},{"event":"cmd_output","timestamp":1607098495,"output":"\n16:14:55.140 [info] ppl_id: 9b1a23ab-ef80-4257-a6e0-c562654afeec, type: PplSubInits, state: regul"},{"event":"cmd_output","timestamp":1607098495,"output":"ar_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/"},{"event":"cmd_output","timestamp":1607098495,"output":"1(L90), \n\u001b[0m\u001b[22m\n16:14:55.162 [info] ppl_id: 9b1a23ab-ef80-4257-a6e0-c562654afeec, type: PplReq"},{"event":"cmd_output","timestamp":1607098495,"output":"uests, event: persisted definition for request with request_token: d8b33d9a-364b-11eb-8a2a-525400546"},{"event":"cmd_output","timestamp":1607098495,"output":"4e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098495,"output":"16:14:55.164 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata"},{"event":"cmd_output","timestamp":1607098495,"output":"<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:14:55.163524], name: \"master-.semaphore/semaphore"},{"event":"cmd_output","timestamp":1607098495,"output":".yml\", organization_id: \"1e5c3a0e-2a0a-490e-8ada-37ea4cf2bc65\", project_id: \"4217a4c4-4ee2-453d-b584"},{"event":"cmd_output","timestamp":1607098495,"output":"-a2f36e8c364c\", queue_id: \"812f5e9c-dc99-45b9-b2f0-9a6b427d31a5\", scope: \"project\", updated_at: ~N[2"},{"event":"cmd_output","timestamp":1607098495,"output":"020-12-04 16:14:55.163534], user_generated: false}}\n\u001b[0m\u001b[22m\n16:14:55.167 [info] event: created,"},{"event":"cmd_output","timestamp":1607098495,"output":" origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:55.1"},{"event":"cmd_output","timestamp":1607098495,"output":"68 [info] ppl_id: 9b1a23ab-ef80-4257-a6e0-c562654afeec, type: PplBlocks, block_index: 0, state: ini"},{"event":"cmd_output","timestamp":1607098495,"output":"tializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitS"},{"event":"cmd_output","timestamp":1607098495,"output":"tate.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:55.169 [info] ppl_id: 9b1a23ab-ef80-4257-a6e0-c562654afeec"},{"event":"cmd_output","timestamp":1607098495,"output":", type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098495,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:55.175 [info] ppl_id: 9b1a23ab-"},{"event":"cmd_output","timestamp":1607098495,"output":"ef80-4257-a6e0-c562654afeec, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098495,"output":"origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:55.178 [info] ppl_id: 9b"},{"event":"cmd_output","timestamp":1607098495,"output":"1a23ab-ef80-4257-a6e0-c562654afeec, type: PplBlocks, block_index: 0, state: waiting, event: exit_sch"},{"event":"cmd_output","timestamp":1607098495,"output":"eduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098495,"output":"14:55.182 [info] ppl_id: 9b1a23ab-ef80-4257-a6e0-c562654afeec, type: Ppls, state: queuing, event: e"},{"event":"cmd_output","timestamp":1607098495,"output":"xit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098495,"output":"2m\n16:14:55.188 [info] ppl_id: 9b1a23ab-ef80-4257-a6e0-c562654afeec, type: Ppls, state: running, e"},{"event":"cmd_output","timestamp":1607098495,"output":"vent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n"},{"event":"cmd_output","timestamp":1607098495,"output":"\u001b[0m\u001b[22m\n16:14:55.193 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"9b1"},{"event":"cmd_output","timestamp":1607098495,"output":"a23ab-ef80-4257-a6e0-c562654afeec\"\n\u001b[0m\u001b[22m\n16:14:55.196 [info] block_id: ef03173c-0048-431b-9ce"},{"event":"cmd_output","timestamp":1607098495,"output":"c-973a1833afd6, type: BlockRequests, event: persisted block run request from ppl 9b1a23ab-ef80-4257-"},{"event":"cmd_output","timestamp":1607098495,"output":"a6e0-c562654afeec for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process"},{"event":"cmd_output","timestamp":1607098495,"output":"_response/4(L35), \n\u001b[0m\u001b[22m\n16:14:55.197 [info] block_id: ef03173c-0048-431b-9cec-973a1833afd6, "},{"event":"cmd_output","timestamp":1607098495,"output":"type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Bloc"},{"event":"cmd_output","timestamp":1607098495,"output":"ks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:14:55.199 [info] Block 0 of pipeline with id:"},{"event":"cmd_output","timestamp":1607098495,"output":" 9b1a23ab-ef80-4257-a6e0-c562654afeec scheduled in block service with id: : \"ef03173c-0048-431b-9cec"},{"event":"cmd_output","timestamp":1607098495,"output":"-973a1833afd6\"\n\u001b[0m\u001b[22m\n16:14:55.201 [info] ppl_id: 9b1a23ab-ef80-4257-a6e0-c562654afeec, type: "},{"event":"cmd_output","timestamp":1607098495,"output":"PplBlocks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir"},{"event":"cmd_output","timestamp":1607098495,"output":".Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:55.202 [info] block_id: ef03173c-0048-"},{"event":"cmd_output","timestamp":1607098495,"output":"431b-9cec-973a1833afd6, type: BlockRequests, event: persisted build and sub_ppl details for block_re"},{"event":"cmd_output","timestamp":1607098495,"output":"quest: ef03173c-0048-431b-9cec-973a1833afd6, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQ"},{"event":"cmd_output","timestamp":1607098495,"output":"ueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:14:55.203 [info] block_id: ef03173c-0048-431b-9cec-973a"},{"event":"cmd_output","timestamp":1607098495,"output":"1833afd6, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Block"},{"event":"cmd_output","timestamp":1607098495,"output":"s.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:14:55.204 [info] block_id: ef03173c"},{"event":"cmd_output","timestamp":1607098495,"output":"-0048-431b-9cec-973a1833afd6, type: Blocks, state: running, event: exit_scheduling, recovery_count: "},{"event":"cmd_output","timestamp":1607098495,"output":"0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:55.219 [info] block_i"},{"event":"cmd_output","timestamp":1607098495,"output":"d: ef03173c-0048-431b-9cec-973a1833afd6, type: Tasks, state: running, event: exit_scheduling, recove"},{"event":"cmd_output","timestamp":1607098495,"output":"ry_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:55.263 [info"},{"event":"cmd_output","timestamp":1607098495,"output":"] block_id: ef03173c-0048-431b-9cec-973a1833afd6, type: Tasks, state: done, event: exit_scheduling,"},{"event":"cmd_output","timestamp":1607098495,"output":" recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:55.27"},{"event":"cmd_output","timestamp":1607098495,"output":"3 [info] block_id: ef03173c-0048-431b-9cec-973a1833afd6, type: Blocks, state: done, event: exit_sch"},{"event":"cmd_output","timestamp":1607098495,"output":"eduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098495,"output":"14:55.278 [info] ppl_id: 9b1a23ab-ef80-4257-a6e0-c562654afeec, block_id: ef03173c-0048-431b-9cec-97"},{"event":"cmd_output","timestamp":1607098495,"output":"3a1833afd6, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, re"},{"event":"cmd_output","timestamp":1607098495,"output":"covery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:55.285 ["},{"event":"cmd_output","timestamp":1607098495,"output":"info] ppl_id: 9b1a23ab-ef80-4257-a6e0-c562654afeec, type: Ppls, state: done, result: passed, event:"},{"event":"cmd_output","timestamp":1607098495,"output":" exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098495,"output":"[22m\n16:14:55.317 [info] Request: 'run: %{:file_name => \"secrets-both.yml\", :repo_name => \"25_glob"},{"event":"cmd_output","timestamp":1607098495,"output":"al_job_config\", \"branch_id\" => \"4623e7a3-84ef-4c43-a142-eb27680a344d\", \"branch_name\" => \"master\", \"c"},{"event":"cmd_output","timestamp":1607098495,"output":"ommit_sha\" => \"75891a4469\", \"file_name\" => \"semaphore.yml\", \"hook_id\" => \"d8d4490e-364b-11eb-9960-52"},{"event":"cmd_output","timestamp":1607098495,"output":"54005464e2\", \"label\" => \"master\", \"organization_id\" => \"503dcc3a-95c8-4a41-8a4a-478903adc809\", \"owne"},{"event":"cmd_output","timestamp":1607098495,"output":"r\" => \"rt\", \"project_id\" => \"8f1b5c2a-67f6-4fde-b79e-860613372636\", \"repo_name\" => \"2_basic\", \"reque"},{"event":"cmd_output","timestamp":1607098495,"output":"st_token\" => \"d8d44242-364b-11eb-aeba-5254005464e2\", \"requester_id\" => \"a6997aa9-0628-4075-9573-1abe"},{"event":"cmd_output","timestamp":1607098495,"output":"84f01b13\", \"service\" => \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_i"},{"event":"cmd_output","timestamp":1607098495,"output":"d\" => \"2664658e-6f70-4f19-8b1f-55f01f4ef1ea\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:14:55.31"},{"event":"cmd_output","timestamp":1607098495,"output":"9 [info] ppl_id: 0b9ef7b8-b9e0-4e3c-9ef6-8f11a79d3702, type: PplRequests, event: persisted schedule"},{"event":"cmd_output","timestamp":1607098495,"output":" request with request_token: d8d44242-364b-11eb-aeba-5254005464e2, origin: Elixir.Ppl.PplRequests.Mo"},{"event":"cmd_output","timestamp":1607098495,"output":"del.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:14:55.320 [info] ppl_id: 0b9ef7b8-b"},{"event":"cmd_output","timestamp":1607098495,"output":"9e0-4e3c-9ef6-8f11a79d3702, type: Ppls, state: initializing, event: initializing, recovery_count: 0,"},{"event":"cmd_output","timestamp":1607098495,"output":" origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:14:55.322 [info"},{"event":"cmd_output","timestamp":1607098495,"output":"] Project 8f1b5c2a-67f6-4fde-b79e-860613372636 and branch masterlatest_wf details updated: \"wf_id: "},{"event":"cmd_output","timestamp":1607098495,"output":"2664658e-6f70-4f19-8b1f-55f01f4ef1ea, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:14:55.323 [info] Persisted ppl_s"},{"event":"cmd_output","timestamp":1607098495,"output":"ub_init for pipeline with ppl_id: 0b9ef7b8-b9e0-4e3c-9ef6-8f11a79d3702: %Ppl.PplSubInits.Model.PplSu"},{"event":"cmd_output","timestamp":1607098495,"output":"bInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_d"},{"event":"cmd_output","timestamp":1607098495,"output":"escription: nil, id: 357, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:"},{"event":"cmd_output","timestamp":1607098495,"output":"14:55.322500], pipeline_requests: #Ecto.Association.NotLoaded, ppl_id: \"0b9ef7b8-b9e0-4e3c-9ef6-8f11a79d3702\", recovery_count: 0, result: nil, result_reas"},{"event":"cmd_output","timestamp":1607098495,"output":"on: nil, state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-"},{"event":"cmd_output","timestamp":1607098495,"output":"12-04 16:14:55.322506]}\n\u001b[0m\u001b[22m\n16:14:55.329 [info] ppl_id: 0b9ef7b8-b9e0-4e3c-9ef6-8f11a79d370"},{"event":"cmd_output","timestamp":1607098495,"output":"2, type: PplRequests, event: persisted source_args for pipeline: 0b9ef7b8-b9e0-4e3c-9ef6-8f11a79d370"},{"event":"cmd_output","timestamp":1607098495,"output":"2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:14:"},{"event":"cmd_output","timestamp":1607098495,"output":"55.331 [info] ppl_id: 0b9ef7b8-b9e0-4e3c-9ef6-8f11a79d3702, type: PplSubInits, state: fetching, eve"},{"event":"cmd_output","timestamp":1607098495,"output":"nt: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b["},{"event":"cmd_output","timestamp":1607098495,"output":"0m\u001b[22m\n16:14:55.345 [info] ppl_id: 0b9ef7b8-b9e0-4e3c-9ef6-8f11a79d3702, type: PplSubInits, state"},{"event":"cmd_output","timestamp":1607098495,"output":": regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_"},{"event":"cmd_output","timestamp":1607098495,"output":"change/1(L90), \n\u001b[0m\u001b[22m\n16:14:55.365 [info] ppl_id: 0b9ef7b8-b9e0-4e3c-9ef6-8f11a79d3702, type:"},{"event":"cmd_output","timestamp":1607098495,"output":" PplRequests, event: persisted definition for request with request_token: d8d44242-364b-11eb-aeba-52"},{"event":"cmd_output","timestamp":1607098495,"output":"54005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098495,"output":"\u001b[22m\n16:14:55.371 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.M"},{"event":"cmd_output","timestamp":1607098495,"output":"etadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:14:55.370214], name: \"master-.semaphore/se"},{"event":"cmd_output","timestamp":1607098495,"output":"maphore.yml\", organization_id: \"503dcc3a-95c8-4a41-8a4a-478903adc809\", project_id: \"8f1b5c2a-67f6-4f"},{"event":"cmd_output","timestamp":1607098495,"output":"de-b79e-860613372636\", queue_id: \"7c9801aa-ec5a-4130-a601-616b4a2e940a\", scope: \"project\", updated_a"},{"event":"cmd_output","timestamp":1607098495,"output":"t: ~N[2020-12-04 16:14:55.370221], user_generated: false}}\n\u001b[0m\u001b[22m\n16:14:55.373 [info] event: c"},{"event":"cmd_output","timestamp":1607098495,"output":"reated, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098495,"output":"14:55.373 [info] ppl_id: 0b9ef7b8-b9e0-4e3c-9ef6-8f11a79d3702, type: PplBlocks, block_index: 0, sta"},{"event":"cmd_output","timestamp":1607098495,"output":"te: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.Regul"},{"event":"cmd_output","timestamp":1607098495,"output":"arInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:55.374 [info] ppl_id: 0b9ef7b8-b9e0-4e3c-9ef6-8f11a"},{"event":"cmd_output","timestamp":1607098495,"output":"79d3702, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, "},{"event":"cmd_output","timestamp":1607098495,"output":"origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:55.379 [info] ppl_id: 0b"},{"event":"cmd_output","timestamp":1607098495,"output":"9ef7b8-b9e0-4e3c-9ef6-8f11a79d3702, type: PplBlocks, block_index: 0, state: waiting, event: exit_sch"},{"event":"cmd_output","timestamp":1607098495,"output":"eduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098495,"output":"14:55.385 [info] ppl_id: 0b9ef7b8-b9e0-4e3c-9ef6-8f11a79d3702, type: Ppls, state: pending, event: e"},{"event":"cmd_output","timestamp":1607098495,"output":"xit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098495,"output":"2m\n16:14:55.389 [info] ppl_id: 0b9ef7b8-b9e0-4e3c-9ef6-8f11a79d3702, type: Ppls, state: queuing, e"},{"event":"cmd_output","timestamp":1607098495,"output":"vent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n"},{"event":"cmd_output","timestamp":1607098495,"output":"\u001b[0m\u001b[22m\n16:14:55.402 [info] ppl_id: 0b9ef7b8-b9e0-4e3c-9ef6-8f11a79d3702, type: Ppls, state: run"},{"event":"cmd_output","timestamp":1607098495,"output":"ning, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L"},{"event":"cmd_output","timestamp":1607098495,"output":"90), \n\u001b[0m\u001b[22m\n16:14:55.407 [info] PplBlocks WaitingState STM is scheduling block 0 from pipelin"},{"event":"cmd_output","timestamp":1607098495,"output":"e: \"0b9ef7b8-b9e0-4e3c-9ef6-8f11a79d3702\"\n\u001b[0m\u001b[22m\n16:14:55.410 [info] block_id: 1527eab0-5118-4"},{"event":"cmd_output","timestamp":1607098495,"output":"9ba-ae0b-3f649ede06b4, type: BlockRequests, event: persisted block run request from ppl 0b9ef7b8-b9e"},{"event":"cmd_output","timestamp":1607098495,"output":"0-4e3c-9ef6-8f11a79d3702 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries."},{"event":"cmd_output","timestamp":1607098495,"output":"process_response/4(L35), \n\u001b[0m\u001b[22m\n16:14:55.411 [info] block_id: 1527eab0-5118-49ba-ae0b-3f649ed"},{"event":"cmd_output","timestamp":1607098495,"output":"e06b4, type: Blocks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Blo"},{"event":"cmd_output","timestamp":1607098495,"output":"ck.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:14:55.414 [info] Block 0 of pipeline w"},{"event":"cmd_output","timestamp":1607098495,"output":"ith id: 0b9ef7b8-b9e0-4e3c-9ef6-8f11a79d3702 scheduled in block service with id: : \"1527eab0-5118-49"},{"event":"cmd_output","timestamp":1607098495,"output":"ba-ae0b-3f649ede06b4\"\n\u001b[0m\u001b[22m\n16:14:55.415 [info] block_id: 1527eab0-5118-49ba-ae0b-3f649ede06b"},{"event":"cmd_output","timestamp":1607098495,"output":"4, type: BlockRequests, event: persisted build and sub_ppl details for block_request: 1527eab0-5118-"},{"event":"cmd_output","timestamp":1607098495,"output":"49ba-ae0b-3f649ede06b4, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.insert_build/2"},{"event":"cmd_output","timestamp":1607098495,"output":"(L41), \n\u001b[0m\u001b[22m\n16:14:55.416 [info] ppl_id: 0b9ef7b8-b9e0-4e3c-9ef6-8f11a79d3702, type: PplBloc"},{"event":"cmd_output","timestamp":1607098495,"output":"ks, block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper"},{"event":"cmd_output","timestamp":1607098495,"output":".STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:55.417 [info] block_id: 1527eab0-5118-49ba-ae"},{"event":"cmd_output","timestamp":1607098495,"output":"0b-3f649ede06b4, type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Bloc"},{"event":"cmd_output","timestamp":1607098495,"output":"k.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:14:55.418 [info] block_id: 1"},{"event":"cmd_output","timestamp":1607098495,"output":"527eab0-5118-49ba-ae0b-3f649ede06b4, type: Blocks, state: running, event: exit_scheduling, recovery_"},{"event":"cmd_output","timestamp":1607098495,"output":"count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:55.428 [info] "},{"event":"cmd_output","timestamp":1607098495,"output":"block_id: 1527eab0-5118-49ba-ae0b-3f649ede06b4, type: Tasks, state: running, event: exit_scheduling,"},{"event":"cmd_output","timestamp":1607098495,"output":" recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:55.47"},{"event":"cmd_output","timestamp":1607098495,"output":"3 [info] block_id: 1527eab0-5118-49ba-ae0b-3f649ede06b4, type: Tasks, state: done, event: exit_sche"},{"event":"cmd_output","timestamp":1607098495,"output":"duling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098495,"output":"4:55.480 [info] block_id: 1527eab0-5118-49ba-ae0b-3f649ede06b4, type: Blocks, state: done, event: e"},{"event":"cmd_output","timestamp":1607098495,"output":"xit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098495,"output":"2m\n16:14:55.490 [info] ppl_id: 0b9ef7b8-b9e0-4e3c-9ef6-8f11a79d3702, block_id: 1527eab0-5118-49ba-"},{"event":"cmd_output","timestamp":1607098495,"output":"ae0b-3f649ede06b4, type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_schedul"},{"event":"cmd_output","timestamp":1607098495,"output":"ing, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:5"},{"event":"cmd_output","timestamp":1607098495,"output":"5.500 [info] ppl_id: 0b9ef7b8-b9e0-4e3c-9ef6-8f11a79d3702, type: Ppls, state: done, result: passed,"},{"event":"cmd_output","timestamp":1607098495,"output":" event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), "},{"event":"cmd_output","timestamp":1607098495,"output":"\n\u001b[0m\u001b[32m\r * test Pipelines with various combinations of global and block level job configs are p"},{"event":"cmd_output","timestamp":1607098495,"output":"assing (1672.1ms)\u001b[0m\n\nPpl.Actions.Test\n * test schedule() returns error when request has invali"},{"event":"cmd_output","timestamp":1607098495,"output":"d args\r * test schedule() returns error when request has invalid args (skipped)\n * test terminate"},{"event":"cmd_output","timestamp":1607098495,"output":" test - running pipeline\r * test terminate test - running pipeline (skipped)\n * test list_ppls re"},{"event":"cmd_output","timestamp":1607098495,"output":"turns error when called without project_id or wf_id\r * test list_ppls returns error when called wit"},{"event":"cmd_output","timestamp":1607098495,"output":"hout project_id or wf_id (skipped)\n * test terminate test - pending pipeline\r * test terminate te"},{"event":"cmd_output","timestamp":1607098495,"output":"st - pending pipeline (skipped)\n * test list_ppls call with valid params returns {:ok, list_resp_p"},{"event":"cmd_output","timestamp":1607098495,"output":"arams}\r * test list_ppls call with valid params returns {:ok, list_resp_params} (skipped)\n * test"},{"event":"cmd_output","timestamp":1607098495,"output":" describe_topology() returns array of blocks\r * test describe_topology() returns array of blocks (s"},{"event":"cmd_output","timestamp":1607098495,"output":"kipped)\n * test describe_topology() returns empty array\r * test describe_topology() returns empty"},{"event":"cmd_output","timestamp":1607098495,"output":" array (skipped)\n * test schedule(request, true, true) is idempotent in regard to request_token \r "},{"event":"cmd_output","timestamp":1607098495,"output":" * test schedule(request, true, true) is idempotent in regard to request_token (skipped)\n * test "},{"event":"cmd_output","timestamp":1607098495,"output":"describe_topology() returns matrix jobs\r * test describe_topology() returns matrix jobs (skipped)\n"},{"event":"cmd_output","timestamp":1607098495,"output":" * test delete_request is stored\r * test delete_request is stored (skipped)\n * test terminate te"},{"event":"cmd_output","timestamp":1607098495,"output":"st - stopping pipeline\r * test terminate test - stopping pipeline (skipped)\n * test list_ppls ret"},{"event":"cmd_output","timestamp":1607098495,"output":"urns total 0 when called with project_id or branch_name without ppls\r * test list_ppls returns tota"},{"event":"cmd_output","timestamp":1607098495,"output":"l 0 when called with project_id or branch_name without ppls (skipped)\n * test terminate test - ini"},{"event":"cmd_output","timestamp":1607098495,"output":"tializing pipeline\r * test terminate test - initializing pipeline (skipped)\n * test schedule() li"},{"event":"cmd_output","timestamp":1607098495,"output":"mit exceeded\u001b[22m\n16:14:55.591 [info] Request: 'run: %{\"branch_id\" => \"456\", \"branch_name\" => \"mas"},{"event":"cmd_output","timestamp":1607098495,"output":"ter\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"semaphore.yml\", \"hook_id\" => \"d8fd4e26-364b-11eb"},{"event":"cmd_output","timestamp":1607098495,"output":"-a36a-5254005464e2\", \"label\" => \"master\", \"organization_id\" => \"52f8498a-1e7d-41d2-9769-53252864659b"},{"event":"cmd_output","timestamp":1607098495,"output":"\", \"owner\" => \"psr\", \"project_id\" => \"123\", \"repo_name\" => \"5_v1_full\", \"request_token\" => \"d8fd46e2"},{"event":"cmd_output","timestamp":1607098495,"output":"-364b-11eb-ad4a-5254005464e2\", \"requester_id\" => \"861ae2d5-03b7-4edc-b0d8-a13430eadc07\", \"service\" ="},{"event":"cmd_output","timestamp":1607098495,"output":"> \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"86f065fa-1160-4"},{"event":"cmd_output","timestamp":1607098495,"output":"c1c-8402-75a9afc025df\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:14:55.593 [info] ppl_id: 352d"},{"event":"cmd_output","timestamp":1607098495,"output":"db19-ac8d-4189-8038-5a2653cf10ba, type: PplRequests, event: persisted schedule request with request_"},{"event":"cmd_output","timestamp":1607098495,"output":"token: d8fd46e2-364b-11eb-ad4a-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries"},{"event":"cmd_output","timestamp":1607098495,"output":".process_response/2(L55), \n\u001b[0m\u001b[22m\n16:14:55.596 [info] ppl_id: 352ddb19-ac8d-4189-8038-5a2653cf"},{"event":"cmd_output","timestamp":1607098495,"output":"10ba, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Pp"},{"event":"cmd_output","timestamp":1607098495,"output":"ls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:14:55.599 [info] Project 123 and bra"},{"event":"cmd_output","timestamp":1607098495,"output":"nch masterlatest_wf details updated: \"wf_id: 86f065fa-1160-4c1c-8402-75a9afc025df, wf_number: 1\"\n\u001b["},{"event":"cmd_output","timestamp":1607098495,"output":"0m\u001b[22m\n16:14:55.600 [info] Persisted ppl_sub_init for pipeline with ppl_id: 352ddb19-ac8d-4189-80"},{"event":"cmd_output","timestamp":1607098495,"output":"38-5a2653cf10ba: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"pipeli"},{"event":"cmd_output","timestamp":1607098495,"output":"ne_sub_inits\">, compile_task_id: nil, error_description: nil, id: 358, in_scheduling: false, init_ty"},{"event":"cmd_output","timestamp":1607098495,"output":"pe: \"regular\", inserted_at: ~N[2020-12-04 16:14:55.599643], pipeline_requests: #Ecto.Association.Not"},{"event":"cmd_output","timestamp":1607098495,"output":"Loaded, ppl_id: \"352ddb19-ac8d-4189-8038-5a2653cf10ba\""},{"event":"cmd_output","timestamp":1607098495,"output":", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil, term"},{"event":"cmd_output","timestamp":1607098495,"output":"inate_request_desc: nil, updated_at: ~N[2020-12-04 16:14:55.599649]}\n\u001b[0m\u001b[22m\n16:14:55.605 [info]"},{"event":"cmd_output","timestamp":1607098495,"output":" Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.STMHan"},{"event":"cmd_output","timestamp":1607098495,"output":"dler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandle"},{"event":"cmd_output","timestamp":1607098495,"output":"r-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], cooli"},{"event":"cmd_output","timestamp":1607098495,"output":"ng_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher_cb: #F"},{"event":"cmd_output","timestamp":1607098495,"output":"unction<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, returnin"},{"event":"cmd_output","timestamp":1607098495,"output":"g: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Pp"},{"event":"cmd_output","timestamp":1607098495,"output":"ls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:55.605 [info] Periodic from module Elixir."},{"event":"cmd_output","timestamp":1607098495,"output":"Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 100 ms"},{"event":"cmd_output","timestamp":1607098495,"output":", metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args: %{all"},{"event":"cmd_output","timestamp":1607098495,"output":"owed_states: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls"},{"event":"cmd_output","timestamp":1607098495,"output":".Model.Ppls, observed_state: \"pending\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHandler.P"},{"event":"cmd_output","timestamp":1607098495,"output":"endingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :"},{"event":"cmd_output","timestamp":1607098495,"output":"result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}"},{"event":"cmd_output","timestamp":1607098495,"output":"\n\u001b[0m\u001b[22m\n16:14:55.606 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedStat"},{"event":"cmd_output","timestamp":1607098495,"output":"e with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.beh"},{"event":"cmd_output","timestamp":1607098495,"output":"older-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args: %{allowed_states: [\"fe"},{"event":"cmd_output","timestamp":1607098495,"output":"tching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_st"},{"event":"cmd_output","timestamp":1607098495,"output":"ate: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updat"},{"event":"cmd_output","timestamp":1607098495,"output":"ed_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_s"},{"event":"cmd_output","timestamp":1607098495,"output":"upervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:55.606 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHa"},{"event":"cmd_output","timestamp":1607098495,"output":"ndler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 ms, met"},{"event":"cmd_output","timestamp":1607098495,"output":"ric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %{"},{"event":"cmd_output","timestamp":1607098495,"output":"allowed_states: [\"regular_init\", \"compilation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Pp"},{"event":"cmd_output","timestamp":1607098495,"output":"lSubInits.Model.PplSubInits, observed_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, re"},{"event":"cmd_output","timestamp":1607098495,"output":"turning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: "},{"event":"cmd_output","timestamp":1607098495,"output":"Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:55.607 [info] Periodic"},{"event":"cmd_output","timestamp":1607098495,"output":" from module Elixir.Ppl.PplSubInits.STMHandler.CompilationState with name Elixir.Ppl.PplSubInits.STM"},{"event":"cmd_output","timestamp":1607098495,"output":"Handler.CompilationState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-"},{"event":"cmd_output","timestamp":1607098495,"output":"STMHandler-CompilationState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"s"},{"event":"cmd_output","timestamp":1607098495,"output":"topping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_"},{"event":"cmd_output","timestamp":1607098495,"output":"state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, "},{"event":"cmd_output","timestamp":1607098495,"output":":updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, "},{"event":"cmd_output","timestamp":1607098495,"output":"task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:55.607 [info] Periodic from module Elixir.Ppl.PplSubInits"},{"event":"cmd_output","timestamp":1607098495,"output":".STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period:"},{"event":"cmd_output","timestamp":1607098495,"output":" 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, rec"},{"event":"cmd_output","timestamp":1607098495,"output":"urring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.P"},{"event":"cmd_output","timestamp":1607098495,"output":"plSubInits, observed_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id"},{"event":"cmd_output","timestamp":1607098495,"output":", :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubIni"},{"event":"cmd_output","timestamp":1607098495,"output":"ts.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:55.716 [info] ppl_id: 352ddb19-ac8d"},{"event":"cmd_output","timestamp":1607098495,"output":"-4189-8038-5a2653cf10ba, type: PplRequests, event: persisted source_args for pipeline: 352ddb19-ac8d"},{"event":"cmd_output","timestamp":1607098495,"output":"-4189-8038-5a2653cf10ba, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89"},{"event":"cmd_output","timestamp":1607098495,"output":"), \n\u001b[0m\u001b[22m\n16:14:55.726 [info] ppl_id: 352ddb19-ac8d-4189-8038-5a2653cf10ba, type: PplSubInits"},{"event":"cmd_output","timestamp":1607098495,"output":", state: fetching, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_sta"},{"event":"cmd_output","timestamp":1607098495,"output":"te_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:55.740 [info] ppl_id: 352ddb19-ac8d-4189-8038-5a2653cf10ba, ty"},{"event":"cmd_output","timestamp":1607098495,"output":"pe: PplSubInits, state: regular_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Loop"},{"event":"cmd_output","timestamp":1607098495,"output":"er.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:55.760 [info] ppl_id: 352ddb19-ac8d-4189-80"},{"event":"cmd_output","timestamp":1607098495,"output":"38-5a2653cf10ba, type: PplRequests, event: persisted definition for request with request_token: d8fd"},{"event":"cmd_output","timestamp":1607098495,"output":"46e2-364b-11eb-ad4a-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_def"},{"event":"cmd_output","timestamp":1607098495,"output":"inition/3(L76), \n\u001b[0m\u001b[22m\n16:14:55.763 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__"},{"event":"cmd_output","timestamp":1607098495,"output":"meta__: #Ecto.Schema.Metadata<:loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:14:55.762483], name:"},{"event":"cmd_output","timestamp":1607098495,"output":" \"master-.semaphore/semaphore.yml\", organization_id: \"52f8498a-1e7d-41d2-9769-53252864659b\", project"},{"event":"cmd_output","timestamp":1607098495,"output":"_id: \"123\", queue_id: \"fae64b2b-4925-48dc-ae40-aa64770680b5\", scope: \"project\", updated_at: ~N[2020-"},{"event":"cmd_output","timestamp":1607098495,"output":"12-04 16:14:55.762491], user_generated: false}}\n\u001b[0m\u001b[22m\n16:14:55.770 [info] ppl_id: not_availab"},{"event":"cmd_output","timestamp":1607098495,"output":"le, event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b["},{"event":"cmd_output","timestamp":1607098495,"output":"0m\u001b[22m\n16:14:55.770 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitS"},{"event":"cmd_output","timestamp":1607098495,"output":"tate.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:55.770 [info] ppl_id: 352ddb19-ac8d-4189-8038-5a2653cf10ba"},{"event":"cmd_output","timestamp":1607098495,"output":", type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_count: 0, origin: E"},{"event":"cmd_output","timestamp":1607098495,"output":"lixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:55.770 [info] "},{"event":"cmd_output","timestamp":1607098495,"output":" ppl_id: 352ddb19-ac8d-4189-8038-5a2653cf10ba, type: PplBlocks, block_index: 1, state: initializing,"},{"event":"cmd_output","timestamp":1607098495,"output":" event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_o"},{"event":"cmd_output","timestamp":1607098495,"output":"k?/1(L105), \n\u001b[0m\u001b[22m\n16:14:55.771 [info] ppl_id: 352ddb19-ac8d-4189-8038-5a2653cf10ba, type: Pp"},{"event":"cmd_output","timestamp":1607098495,"output":"lSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Lo"},{"event":"cmd_output","timestamp":1607098495,"output":"oper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:55.776 [info] ppl_id: 352ddb19-ac8d-4189-"},{"event":"cmd_output","timestamp":1607098495,"output":"8038-5a2653cf10ba, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098495,"output":"ixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:55.789 [info] ppl_id: 352ddb19-ac8"},{"event":"cmd_output","timestamp":1607098495,"output":"d-4189-8038-5a2653cf10ba, type: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, ori"},{"event":"cmd_output","timestamp":1607098495,"output":"gin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:55.817 [info] Request: 'run"},{"event":"cmd_output","timestamp":1607098495,"output":": %{\"branch_id\" => \"456\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"s"},{"event":"cmd_output","timestamp":1607098495,"output":"emaphore.yml\", \"hook_id\" => \"d9206fa0-364b-11eb-85f6-5254005464e2\", \"label\" => \"master\", \"organizati"},{"event":"cmd_output","timestamp":1607098495,"output":"on_id\" => \"54647bac-c93e-4901-b91a-8414e18910fc\", \"owner\" => \"psr\", \"project_id\" => \"123\", \"repo_nam"},{"event":"cmd_output","timestamp":1607098495,"output":"e\" => \"5_v1_full\", \"request_token\" => \"d92068d4-364b-11eb-9726-5254005464e2\", \"requester_id\" => \"cf3"},{"event":"cmd_output","timestamp":1607098495,"output":"08cb4-7a89-4794-9c3c-64ecd4544b6c\", \"service\" => \"local\", \"suppressed_attributes\" => [\"access_token\""},{"event":"cmd_output","timestamp":1607098495,"output":", \"client_secret\"], \"wf_id\" => \"12db711c-7d16-4082-8b56-2232be4b4da1\", \"working_dir\" => \".semaphore\""},{"event":"cmd_output","timestamp":1607098495,"output":"}\n\u001b[0m\u001b[22m\n16:14:55.819 [info] ppl_id: 98247a83-2008-4caf-9f38-ce7b3480d2ac, type: PplRequests, "},{"event":"cmd_output","timestamp":1607098495,"output":"event: persisted schedule request with request_token: d92068d4-364b-11eb-9726-5254005464e2, origin: "},{"event":"cmd_output","timestamp":1607098495,"output":"Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:14:55.820 ["},{"event":"cmd_output","timestamp":1607098495,"output":"info] ppl_id: 98247a83-2008-4caf-9f38-ce7b3480d2ac, type: Ppls, state: initializing, event: initial"},{"event":"cmd_output","timestamp":1607098495,"output":"izing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m"},{"event":"cmd_output","timestamp":1607098495,"output":"\u001b[22m\n16:14:55.822 [info] Project 123 and branch masterlatest_wf details updated: \"wf_id: 12db711c"},{"event":"cmd_output","timestamp":1607098495,"output":"-7d16-4082-8b56-2232be4b4da1, wf_number: 2\"\n\u001b[0m\u001b[22m\n16:14:55.823 [info] Persisted ppl_sub_init "},{"event":"cmd_output","timestamp":1607098495,"output":"for pipeline with ppl_id: 98247a83-2008-4caf-9f38-ce7b3480d2ac: %Ppl.PplSubInits.Model.PplSubInits{_"},{"event":"cmd_output","timestamp":1607098495,"output":"_meta__: #Ecto.Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_descripti"},{"event":"cmd_output","timestamp":1607098495,"output":"on: nil, id: 359, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:14:55.82"},{"event":"cmd_output","timestamp":1607098495,"output":"2757], pipeline_requests: #Ecto.Association.NotLoaded,"},{"event":"cmd_output","timestamp":1607098495,"output":" ppl_id: \"98247a83-2008-4caf-9f38-ce7b3480d2ac\", recovery_count: 0, result: nil, result_reason: nil,"},{"event":"cmd_output","timestamp":1607098495,"output":" state: \"created\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16"},{"event":"cmd_output","timestamp":1607098495,"output":":14:55.822769]}\n\u001b[0m\u001b[22m\n16:14:55.826 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.Ini"},{"event":"cmd_output","timestamp":1607098495,"output":"tializingState with name Elixir.Ppl.Ppls.STMHandler.InitializingState :: period: 100 ms, metric_name"},{"event":"cmd_output","timestamp":1607098495,"output":": {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]}, recurring args: %{allowed_sta"},{"event":"cmd_output","timestamp":1607098495,"output":"tes: [\"initializing\", \"pending\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, o"},{"event":"cmd_output","timestamp":1607098495,"output":"bserved_state: \"initializing\", publisher_cb: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.Initiali"},{"event":"cmd_output","timestamp":1607098495,"output":"zingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :re"},{"event":"cmd_output","timestamp":1607098495,"output":"sult, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16"},{"event":"cmd_output","timestamp":1607098495,"output":":14:55.826 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098495,"output":".Ppls.STMHandler.PendingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-ST"},{"event":"cmd_output","timestamp":1607098495,"output":"MHandler-PendingState\"]}, recurring args: %{allowed_states: [\"pending\", \"queuing\", \"running\", \"done\""},{"event":"cmd_output","timestamp":1607098495,"output":"], cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publisher_cb:"},{"event":"cmd_output","timestamp":1607098495,"output":" #Function<0.8493005/1 in Ppl.Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, returning: ["},{"event":"cmd_output","timestamp":1607098495,"output":":id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.M"},{"event":"cmd_output","timestamp":1607098495,"output":"odel.Ppls, task_supervisor: PplsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:14:55.826 [info] Periodic from modul"},{"event":"cmd_output","timestamp":1607098495,"output":"e Elixir.Ppl.PplSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHandler.Created"},{"event":"cmd_output","timestamp":1607098495,"output":"State :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedS"},{"event":"cmd_output","timestamp":1607098495,"output":"tate\"]}, recurring args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query:"},{"event":"cmd_output","timestamp":1607098495,"output":" Ppl.PplSubInits.Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRe"},{"event":"cmd_output","timestamp":1607098495,"output":"po, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], sc"},{"event":"cmd_output","timestamp":1607098495,"output":"hema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:55.827 [info] Pe"},{"event":"cmd_output","timestamp":1607098495,"output":"riodic from module Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl.PplSubInits."},{"event":"cmd_output","timestamp":1607098495,"output":"STMHandler.FetchingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-"},{"event":"cmd_output","timestamp":1607098495,"output":"STMHandler-FetchingState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"done"},{"event":"cmd_output","timestamp":1607098495,"output":"\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fetchin"},{"event":"cmd_output","timestamp":1607098495,"output":"g\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :stat"},{"event":"cmd_output","timestamp":1607098495,"output":"e, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :"},{"event":"cmd_output","timestamp":1607098495,"output":"skip}\n\u001b[0m\u001b[22m\n16:14:55.828 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.Compil"},{"event":"cmd_output","timestamp":1607098495,"output":"ationState with name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 100 ms, metric_na"},{"event":"cmd_output","timestamp":1607098495,"output":"me: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurring args: %{all"},{"event":"cmd_output","timestamp":1607098495,"output":"owed_states: [\"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_quer"},{"event":"cmd_output","timestamp":1607098495,"output":"y: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"compilation\", publisher_cb: :skip, repo: Ppl."},{"event":"cmd_output","timestamp":1607098495,"output":"EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_i"},{"event":"cmd_output","timestamp":1607098495,"output":"d], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:55.828 [inf"},{"event":"cmd_output","timestamp":1607098495,"output":"o] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with name Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098495,"output":"SubInits.STMHandler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-"},{"event":"cmd_output","timestamp":1607098495,"output":"PplSubInits-STMHandler-RegularInitState\"]}, recurring args: %{allowed_states: [\"done\"], cooling_time"},{"event":"cmd_output","timestamp":1607098495,"output":"_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_init\", publisher"},{"event":"cmd_output","timestamp":1607098495,"output":"_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :"},{"event":"cmd_output","timestamp":1607098495,"output":"recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b["},{"event":"cmd_output","timestamp":1607098495,"output":"22m\n16:14:55.935 [info] ppl_id: 98247a83-2008-4caf-9f38-ce7b3480d2ac, type: PplRequests, event: pe"},{"event":"cmd_output","timestamp":1607098495,"output":"rsisted source_args for pipeline: 98247a83-2008-4caf-9f38-ce7b3480d2ac, origin: Elixir.Ppl.PplReques"},{"event":"cmd_output","timestamp":1607098495,"output":"ts.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:14:55.936 [info] ppl_id: 98247a83"},{"event":"cmd_output","timestamp":1607098495,"output":"-2008-4caf-9f38-ce7b3480d2ac, type: PplSubInits, state: fetching, event: exit_scheduling, recovery_c"},{"event":"cmd_output","timestamp":1607098495,"output":"ount: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:55.958 [info] p"},{"event":"cmd_output","timestamp":1607098495,"output":"pl_id: 98247a83-2008-4caf-9f38-ce7b3480d2ac, type: PplSubInits, state: regular_init, event: exit_sch"},{"event":"cmd_output","timestamp":1607098495,"output":"eduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:"},{"event":"cmd_output","timestamp":1607098495,"output":"14:55.978 [info] ppl_id: 98247a83-2008-4caf-9f38-ce7b3480d2ac, type: PplRequests, event: persisted "},{"event":"cmd_output","timestamp":1607098495,"output":"definition for request with request_token: d92068d4-364b-11eb-9726-5254005464e2, origin: Elixir.Ppl."},{"event":"cmd_output","timestamp":1607098495,"output":"PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:14:55.990 [info] ppl"},{"event":"cmd_output","timestamp":1607098495,"output":"_id: not_available, event: created, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_o"},{"event":"cmd_output","timestamp":1607098495,"output":"k?/1(L105), \n\u001b[0m\u001b[22m\n16:14:55.990 [info] event: created, origin: Elixir.Ppl.PplSubInits.STMHand"},{"event":"cmd_output","timestamp":1607098495,"output":"ler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:55.990 [info] ppl_id: 98247a83-2008-4caf-9"},{"event":"cmd_output","timestamp":1607098495,"output":"f38-ce7b3480d2ac, type: PplBlocks, block_index: 0, state: initializing, event: created, recovery_cou"},{"event":"cmd_output","timestamp":1607098495,"output":"nt: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:1"},{"event":"cmd_output","timestamp":1607098495,"output":"4:55.990 [info] ppl_id: 98247a83-2008-4caf-9f38-ce7b3480d2ac, type: PplBlocks, block_index: 1, stat"},{"event":"cmd_output","timestamp":1607098495,"output":"e: initializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.Regula"},{"event":"cmd_output","timestamp":1607098495,"output":"rInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:55.991 [info] ppl_id: 98247a83-2008-4caf-9f38-ce7b34"},{"event":"cmd_output","timestamp":1607098495,"output":"80d2ac, type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098495,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:55.996 [info] ppl_id: 982"},{"event":"cmd_output","timestamp":1607098495,"output":"47a83-2008-4caf-9f38-ce7b3480d2ac, type: Ppls, state: pending, event: exit_scheduling, recovery_coun"},{"event":"cmd_output","timestamp":1607098496,"output":"t: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:56.002 [info] ppl_"},{"event":"cmd_output","timestamp":1607098496,"output":"id: 98247a83-2008-4caf-9f38-ce7b3480d2ac, type: Ppls, state: queuing, event: exit_scheduling, recove"},{"event":"cmd_output","timestamp":1607098496,"output":"ry_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test schedule()"},{"event":"cmd_output","timestamp":1607098496,"output":" limit exceeded (503.3ms)\u001b[0m\n * test schedule() persists requests with valid args\r * test schedu"},{"event":"cmd_output","timestamp":1607098496,"output":"le() persists requests with valid args (skipped)\n * test list_ppls sets default values for page an"},{"event":"cmd_output","timestamp":1607098496,"output":"d page_size if they are omitted\r * test list_ppls sets default values for page and page_size if the"},{"event":"cmd_output","timestamp":1607098496,"output":"y are omitted (skipped)\n * test describe_topology() all types of jobs\r * test describe_topology()"},{"event":"cmd_output","timestamp":1607098496,"output":" all types of jobs (skipped)\n * test describe call for existing ppl in all states\u001b[22m\n16:14:56.0"},{"event":"cmd_output","timestamp":1607098496,"output":"88 [info] ppl_id: ab680ac8-0c7f-4133-a1b6-bd0ef13a9b1f, type: PplRequests, event: persisted schedul"},{"event":"cmd_output","timestamp":1607098496,"output":"e request with request_token: d949afa0-364b-11eb-be15-5254005464e2, origin: Elixir.Ppl.PplRequests.M"},{"event":"cmd_output","timestamp":1607098496,"output":"odel.PplRequestsQueries.process_response/2(L55), \n\u001b[0m\u001b[22m\n16:14:56.091 [info] ppl_id: ab680ac8-"},{"event":"cmd_output","timestamp":1607098496,"output":"0c7f-4133-a1b6-bd0ef13a9b1f, type: Ppls, state: initializing, event: initializing, recovery_count: 0"},{"event":"cmd_output","timestamp":1607098496,"output":", origin: Elixir.Ppl.Ppls.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:14:56.104 [inf"},{"event":"cmd_output","timestamp":1607098496,"output":"o] ppl_id: ab680ac8-0c7f-4133-a1b6-bd0ef13a9b1f, type: Ppls, event: exit_scheduling, origin: Elixir"},{"event":"cmd_output","timestamp":1607098496,"output":".Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:56.109 [info] Request: 'run: %{\"branch"},{"event":"cmd_output","timestamp":1607098496,"output":"_id\" => \"85dca8d7-5541-4763-be2b-1bc5ce7e4957\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a44"},{"event":"cmd_output","timestamp":1607098496,"output":"69\", \"file_name\" => \"semaphore.yml\", \"hook_id\" => \"d94d0df8-364b-11eb-ba55-5254005464e2\", \"label\" =>"},{"event":"cmd_output","timestamp":1607098496,"output":" \"master\", \"organization_id\" => \"dbce436d-a479-4c33-b92f-92c845049f06\", \"owner\" => \"rt\", \"project_id"},{"event":"cmd_output","timestamp":1607098496,"output":"\" => \"2dabbc21-7cc2-4814-9143-eb85efaa815a\", \"repo_name\" => \"2_basic\", \"request_token\" => \"d94d02c2-"},{"event":"cmd_output","timestamp":1607098496,"output":"364b-11eb-8901-5254005464e2\", \"requester_id\" => \"887d65f6-1a82-4b12-ad52-96f52af1f379\", \"service\" =>"},{"event":"cmd_output","timestamp":1607098496,"output":" \"local\", \"suppressed_attributes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"f3bf97d5-d643-40"},{"event":"cmd_output","timestamp":1607098496,"output":"09-b8f3-fdf7cbf31daa\", \"working_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:14:56.111 [info] ppl_id: f03df"},{"event":"cmd_output","timestamp":1607098496,"output":"029-3814-4b56-8f77-2c87de8ad11f, type: PplRequests, event: persisted schedule request with request_t"},{"event":"cmd_output","timestamp":1607098496,"output":"oken: d94d02c2-364b-11eb-8901-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries."},{"event":"cmd_output","timestamp":1607098496,"output":"process_response/2(L55), \n\u001b[0m\u001b[22m\n16:14:56.112 [info] ppl_id: f03df029-3814-4b56-8f77-2c87de8ad"},{"event":"cmd_output","timestamp":1607098496,"output":"11f, type: Ppls, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppl"},{"event":"cmd_output","timestamp":1607098496,"output":"s.Model.PplsQueries.process_response/2(L124), \n\u001b[0m\u001b[22m\n16:14:56.116 [info] Project 2dabbc21-7cc"},{"event":"cmd_output","timestamp":1607098496,"output":"2-4814-9143-eb85efaa815a and branch masterlatest_wf details updated: \"wf_id: f3bf97d5-d643-4009-b8f3"},{"event":"cmd_output","timestamp":1607098496,"output":"-fdf7cbf31daa, wf_number: 1\"\n\u001b[0m\u001b[22m\n16:14:56.117 [info] Persisted ppl_sub_init for pipeline wi"},{"event":"cmd_output","timestamp":1607098496,"output":"th ppl_id: f03df029-3814-4b56-8f77-2c87de8ad11f: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto."},{"event":"cmd_output","timestamp":1607098496,"output":"Schema.Metadata<:loaded, \"pipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 36"},{"event":"cmd_output","timestamp":1607098496,"output":"0, in_scheduling: false, init_type: \"regular\", inserted_at: ~N[2020-12-04 16:14:56.116078], pipeline"},{"event":"cmd_output","timestamp":1607098496,"output":"_requests: #Ecto.Association.NotLoaded, ppl_id: \"f03df"},{"event":"cmd_output","timestamp":1607098496,"output":"029-3814-4b56-8f77-2c87de8ad11f\", recovery_count: 0, result: nil, result_reason: nil, state: \"create"},{"event":"cmd_output","timestamp":1607098496,"output":"d\", terminate_request: nil, terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:14:56.116084]}"},{"event":"cmd_output","timestamp":1607098496,"output":"\n\u001b[0m\u001b[22m\n16:14:56.120 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CreatedStat"},{"event":"cmd_output","timestamp":1607098496,"output":"e with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: period: 100 ms, metric_name: {\"Ppl.beh"},{"event":"cmd_output","timestamp":1607098496,"output":"older-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, recurring args: %{allowed_states: [\"fe"},{"event":"cmd_output","timestamp":1607098496,"output":"tching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_st"},{"event":"cmd_output","timestamp":1607098496,"output":"ate: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updat"},{"event":"cmd_output","timestamp":1607098496,"output":"ed_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_s"},{"event":"cmd_output","timestamp":1607098496,"output":"upervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:56.121 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHa"},{"event":"cmd_output","timestamp":1607098496,"output":"ndler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler.FetchingState :: period: 100 ms, met"},{"event":"cmd_output","timestamp":1607098496,"output":"ric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-FetchingState\"]}, recurring args: %{"},{"event":"cmd_output","timestamp":1607098496,"output":"allowed_states: [\"regular_init\", \"compilation\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Pp"},{"event":"cmd_output","timestamp":1607098496,"output":"lSubInits.Model.PplSubInits, observed_state: \"fetching\", publisher_cb: :skip, repo: Ppl.EctoRepo, re"},{"event":"cmd_output","timestamp":1607098496,"output":"turning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: "},{"event":"cmd_output","timestamp":1607098496,"output":"Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:56.121 [info] Periodic"},{"event":"cmd_output","timestamp":1607098496,"output":" from module Elixir.Ppl.PplSubInits.STMHandler.CompilationState with name Elixir.Ppl.PplSubInits.STM"},{"event":"cmd_output","timestamp":1607098496,"output":"Handler.CompilationState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-"},{"event":"cmd_output","timestamp":1607098496,"output":"STMHandler-CompilationState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"s"},{"event":"cmd_output","timestamp":1607098496,"output":"topping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_"},{"event":"cmd_output","timestamp":1607098496,"output":"state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, "},{"event":"cmd_output","timestamp":1607098496,"output":":updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, "},{"event":"cmd_output","timestamp":1607098496,"output":"task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:56.122 [info] Periodic from module Elixir.Ppl.PplSubInits"},{"event":"cmd_output","timestamp":1607098496,"output":".STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.STMHandler.RegularInitState :: period:"},{"event":"cmd_output","timestamp":1607098496,"output":" 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-RegularInitState\"]}, rec"},{"event":"cmd_output","timestamp":1607098496,"output":"urring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubInits.Model.P"},{"event":"cmd_output","timestamp":1607098496,"output":"plSubInits, observed_state: \"regular_init\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id"},{"event":"cmd_output","timestamp":1607098496,"output":", :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.PplSubIni"},{"event":"cmd_output","timestamp":1607098496,"output":"ts.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:56.122 [info] Periodic from module "},{"event":"cmd_output","timestamp":1607098496,"output":"Elixir.Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.STMHandler.InitializingState "},{"event":"cmd_output","timestamp":1607098496,"output":":: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-InitializingState\"]},"},{"event":"cmd_output","timestamp":1607098496,"output":" recurring args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], cooling_time_sec: 0, initial"},{"event":"cmd_output","timestamp":1607098496,"output":"_query: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher_cb: #Function<0.125326080/1 i"},{"event":"cmd_output","timestamp":1607098496,"output":"n Ppl.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_req"},{"event":"cmd_output","timestamp":1607098496,"output":"uest, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_sup"},{"event":"cmd_output","timestamp":1607098496,"output":"ervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:56.235 [info] ppl_id: f03df029-3814-4b56-8f77-2c87de8ad11f, type:"},{"event":"cmd_output","timestamp":1607098496,"output":" PplRequests, event: persisted source_args for pipeline: f03df029-3814-4b56-8f77-2c87de8ad11f, origi"},{"event":"cmd_output","timestamp":1607098496,"output":"n: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:14:56.237 ["},{"event":"cmd_output","timestamp":1607098496,"output":"info] ppl_id: f03df029-3814-4b56-8f77-2c87de8ad11f, type: PplSubInits, state: fetching, event: exit"},{"event":"cmd_output","timestamp":1607098496,"output":"_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098496,"output":"\n16:14:56.253 [info] ppl_id: f03df029-3814-4b56-8f77-2c87de8ad11f, type: PplSubInits, state: regula"},{"event":"cmd_output","timestamp":1607098496,"output":"r_init, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1"},{"event":"cmd_output","timestamp":1607098496,"output":"(L90), \n\u001b[0m\u001b[22m\n16:14:56.276 [info] ppl_id: f03df029-3814-4b56-8f77-2c87de8ad11f, type: PplRequ"},{"event":"cmd_output","timestamp":1607098496,"output":"ests, event: persisted definition for request with request_token: d94d02c2-364b-11eb-8901-5254005464"},{"event":"cmd_output","timestamp":1607098496,"output":"e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n1"},{"event":"cmd_output","timestamp":1607098496,"output":"6:14:56.286 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<"},{"event":"cmd_output","timestamp":1607098496,"output":":loaded, \"queues\">, inserted_at: ~N[2020-12-04 16:14:56.278289], name: \"master-.semaphore/semaphore."},{"event":"cmd_output","timestamp":1607098496,"output":"yml\", organization_id: \"dbce436d-a479-4c33-b92f-92c845049f06\", project_id: \"2dabbc21-7cc2-4814-9143-"},{"event":"cmd_output","timestamp":1607098496,"output":"eb85efaa815a\", queue_id: \"4ffd03b7-34f1-486b-91a7-d8b82af32a69\", scope: \"project\", updated_at: ~N[20"},{"event":"cmd_output","timestamp":1607098496,"output":"20-12-04 16:14:56.278297], user_generated: false}}\n\u001b[0m\u001b[22m\n16:14:56.289 [info] event: created, "},{"event":"cmd_output","timestamp":1607098496,"output":"origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:56.28"},{"event":"cmd_output","timestamp":1607098496,"output":"9 [info] ppl_id: f03df029-3814-4b56-8f77-2c87de8ad11f, type: PplBlocks, block_index: 0, state: init"},{"event":"cmd_output","timestamp":1607098496,"output":"ializing, event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitSt"},{"event":"cmd_output","timestamp":1607098496,"output":"ate.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:14:56.290 [info] ppl_id: f03df029-3814-4b56-8f77-2c87de8ad11f,"},{"event":"cmd_output","timestamp":1607098496,"output":" type: PplSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: "},{"event":"cmd_output","timestamp":1607098496,"output":"Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:56.295 [info] ppl_id: f03df029-3"},{"event":"cmd_output","timestamp":1607098496,"output":"814-4b56-8f77-2c87de8ad11f, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, o"},{"event":"cmd_output","timestamp":1607098496,"output":"rigin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:56.329 [info] Periodic fr"},{"event":"cmd_output","timestamp":1607098496,"output":"om module Elixir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler.PendingState "},{"event":"cmd_output","timestamp":1607098496,"output":":: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recu"},{"event":"cmd_output","timestamp":1607098496,"output":"rring args: %{allowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_sec: 0, initia"},{"event":"cmd_output","timestamp":1607098496,"output":"l_query: Ppl.Ppls.Model.Ppls, observed_state: \"pending\", publisher_cb: #Function<0.8493005/1 in Ppl."},{"event":"cmd_output","timestamp":1607098496,"output":"Ppls.STMHandler.PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :upda"},{"event":"cmd_output","timestamp":1607098496,"output":"ted_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: Pp"},{"event":"cmd_output","timestamp":1607098496,"output":"lsTaskSupervisor}\n\u001b[0m\u001b[22m\n16:14:56.437 [info] ppl_id: f03df029-3814-4b56-8f77-2c87de8ad11f, typ"},{"event":"cmd_output","timestamp":1607098496,"output":"e: Ppls, state: queuing, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.l"},{"event":"cmd_output","timestamp":1607098496,"output":"og_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:56.540 [info] Periodic from module Elixir.Ppl.Ppls.STMHa"},{"event":"cmd_output","timestamp":1607098496,"output":"ndler.QueuingState with name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, metric_name:"},{"event":"cmd_output","timestamp":1607098496,"output":" {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{allowed_states: ["},{"event":"cmd_output","timestamp":1607098496,"output":"\"queuing\", \"running\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_st"},{"event":"cmd_output","timestamp":1607098496,"output":"ate: \"queuing\", publisher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.args/0>, r"},{"event":"cmd_output","timestamp":1607098496,"output":"epo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_coun"},{"event":"cmd_output","timestamp":1607098496,"output":"t, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:56.540 [info] P"},{"event":"cmd_output","timestamp":1607098496,"output":"eriodic from module Elixir.Ppl.PplBlocks.STMHandler.InitializingState with name Elixir.Ppl.PplBlocks"},{"event":"cmd_output","timestamp":1607098496,"output":".STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBloc"},{"event":"cmd_output","timestamp":1607098496,"output":"ks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"waiting\", \"d"},{"event":"cmd_output","timestamp":1607098496,"output":"one\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_state: \"initializ"},{"event":"cmd_output","timestamp":1607098496,"output":"ing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :st"},{"event":"cmd_output","timestamp":1607098496,"output":"ate, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_s"},{"event":"cmd_output","timestamp":1607098496,"output":"upervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:56.540 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHand"},{"event":"cmd_output","timestamp":1607098496,"output":"ler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler.WaitingState :: period: 1000 ms, metric_n"},{"event":"cmd_output","timestamp":1607098496,"output":"ame: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurring args: %{allowed_"},{"event":"cmd_output","timestamp":1607098496,"output":"states: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplB"},{"event":"cmd_output","timestamp":1607098496,"output":"locks, observed_state: \"waiting\", publisher_cb: #Function<0.8975022/1 in Ppl.PplBlocks.STMHandler.Wa"},{"event":"cmd_output","timestamp":1607098496,"output":"itingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :r"},{"event":"cmd_output","timestamp":1607098496,"output":"esult, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks, task_supervis"},{"event":"cmd_output","timestamp":1607098496,"output":"or: :skip}\n\u001b[0m\u001b[22m\n16:14:56.540 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.Run"},{"event":"cmd_output","timestamp":1607098496,"output":"ningState with name Elixir.Ppl.PplBlocks.STMHandler.RunningState :: period: 1000 ms, metric_name: {\""},{"event":"cmd_output","timestamp":1607098496,"output":"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, recurring args: %{allowed_states:"},{"event":"cmd_output","timestamp":1607098496,"output":" [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks"},{"event":"cmd_output","timestamp":1607098496,"output":", observed_state: \"running\", publisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.STMHandler.Runnin"},{"event":"cmd_output","timestamp":1607098496,"output":"gState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :resul"},{"event":"cmd_output","timestamp":1607098496,"output":"t, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task_s"},{"event":"cmd_output","timestamp":1607098496,"output":"upervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:56.541 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHand"},{"event":"cmd_output","timestamp":1607098496,"output":"ler.StoppingState with name Elixir.Ppl.PplBlocks.STMHandler.StoppingState :: period: 1000 ms, metric"},{"event":"cmd_output","timestamp":1607098496,"output":"_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurring args: %{allow"},{"event":"cmd_output","timestamp":1607098496,"output":"ed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.Model.PplBlocks,"},{"event":"cmd_output","timestamp":1607098496,"output":" observed_state: \"stopping\", publisher_cb: #Function<0.104215991/1 in Ppl.PplBlocks.STMHandler.Stopp"},{"event":"cmd_output","timestamp":1607098496,"output":"ingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :res"},{"event":"cmd_output","timestamp":1607098496,"output":"ult, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.PplBlocks, task"},{"event":"cmd_output","timestamp":1607098496,"output":"_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:56.541 [info] Periodic from module Elixir.Block.Blocks.STMHan"},{"event":"cmd_output","timestamp":1607098496,"output":"dler.InitializingState with name Elixir.Block.Blocks.STMHandler.InitializingState :: period: 100 ms,"},{"event":"cmd_output","timestamp":1607098496,"output":" metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-InitializingState\"]}, recurring arg"},{"event":"cmd_output","timestamp":1607098496,"output":"s: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Blocks.Model.Blo"},{"event":"cmd_output","timestamp":1607098496,"output":"cks, observed_state: \"initializing\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :te"},{"event":"cmd_output","timestamp":1607098496,"output":"rminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks"},{"event":"cmd_output","timestamp":1607098496,"output":", task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:56.542 [info] Periodic from module Elixir.Block.Blocks."},{"event":"cmd_output","timestamp":1607098496,"output":"STMHandler.RunningState with name Elixir.Block.Blocks.STMHandler.RunningState :: period: 100 ms, met"},{"event":"cmd_output","timestamp":1607098496,"output":"ric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-RunningState\"]}, recurring args: %{allo"},{"event":"cmd_output","timestamp":1607098496,"output":"wed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model"},{"event":"cmd_output","timestamp":1607098496,"output":".Blocks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :ter"},{"event":"cmd_output","timestamp":1607098496,"output":"minate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks,"},{"event":"cmd_output","timestamp":1607098496,"output":" task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:56.542 [info] Periodic from module Elixir.Block.Blocks.S"},{"event":"cmd_output","timestamp":1607098496,"output":"TMHandler.StoppingState with name Elixir.Block.Blocks.STMHandler.StoppingState :: period: 100 ms, me"},{"event":"cmd_output","timestamp":1607098496,"output":"tric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-StoppingState\"]}, recurring args: %{al"},{"event":"cmd_output","timestamp":1607098496,"output":"lowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks.Model.Blocks, "},{"event":"cmd_output","timestamp":1607098496,"output":"observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_r"},{"event":"cmd_output","timestamp":1607098496,"output":"equest, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model.Blocks, task_su"},{"event":"cmd_output","timestamp":1607098496,"output":"pervisor: :skip}\n\u001b[0m\u001b[22m\n16:14:56.542 [info] Periodic from module Elixir.Block.Tasks.STMHandler"},{"event":"cmd_output","timestamp":1607098496,"output":".PendingState with name Elixir.Block.Tasks.STMHandler.PendingState :: period: 100 ms, metric_name: {"},{"event":"cmd_output","timestamp":1607098496,"output":"\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingState\"]}, recurring args: %{allowed_states: "},{"event":"cmd_output","timestamp":1607098496,"output":"[\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Tasks.Model.Tasks, observed_state: \"p"},{"event":"cmd_output","timestamp":1607098496,"output":"ending\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at"},{"event":"cmd_output","timestamp":1607098496,"output":", :state, :recovery_count, :block_id, :build_request_id], schema: Block.Tasks.Model.Tasks, task_supe"},{"event":"cmd_output","timestamp":1607098496,"output":"rvisor: :skip}\n\u001b[0m\u001b[22m\n16:14:56.542 [info] Periodic from module Elixir.Block.Tasks.STMHandler.R"},{"event":"cmd_output","timestamp":1607098496,"output":"unningState with name Elixir.Block.Tasks.STMHandler.RunningState :: period: 100 ms, metric_name: {\"P"},{"event":"cmd_output","timestamp":1607098496,"output":"pl.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningState\"]}, recurring args: %{allowed_states: [\""},{"event":"cmd_output","timestamp":1607098496,"output":"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observe"},{"event":"cmd_output","timestamp":1607098496,"output":"d_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, "},{"event":"cmd_output","timestamp":1607098496,"output":":updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: "},{"event":"cmd_output","timestamp":1607098496,"output":":skip}\n\u001b[0m\u001b[22m\n16:14:56.543 [info] Periodic from module Elixir.Block.Tasks.STMHandler.StoppingS"},{"event":"cmd_output","timestamp":1607098496,"output":"tate with name Elixir.Block.Tasks.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beh"},{"event":"cmd_output","timestamp":1607098496,"output":"older-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopp"},{"event":"cmd_output","timestamp":1607098496,"output":"ing\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed_state: \"stoppi"},{"event":"cmd_output","timestamp":1607098496,"output":"ng\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, :updated_at, :s"},{"event":"cmd_output","timestamp":1607098496,"output":"tate, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: :skip}\n\u001b[0m\u001b[2"},{"event":"cmd_output","timestamp":1607098496,"output":"2m\n16:14:56.657 [info] ppl_id: f03df029-3814-4b56-8f77-2c87de8ad11f, type: PplBlocks, block_index:"},{"event":"cmd_output","timestamp":1607098496,"output":" 0, state: waiting, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_st"},{"event":"cmd_output","timestamp":1607098496,"output":"ate_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:56.659 [info] ppl_id: f03df029-3814-4b56-8f77-2c87de8ad11f, t"},{"event":"cmd_output","timestamp":1607098496,"output":"ype: Ppls, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl"},{"event":"cmd_output","timestamp":1607098496,"output":".log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:56.667 [info] PplBlocks WaitingState STM is scheduling"},{"event":"cmd_output","timestamp":1607098496,"output":" block 0 from pipeline: \"f03df029-3814-4b56-8f77-2c87de8ad11f\"\n\u001b[0m\u001b[22m\n16:14:56.674 [info] bloc"},{"event":"cmd_output","timestamp":1607098496,"output":"k_id: 8f5a7072-8a1e-4055-8e49-052622ed294c, type: BlockRequests, event: persisted block run request "},{"event":"cmd_output","timestamp":1607098496,"output":"from ppl f03df029-3814-4b56-8f77-2c87de8ad11f for block 0, origin: Elixir.Block.BlockRequests.Model."},{"event":"cmd_output","timestamp":1607098496,"output":"BlockRequestsQueries.process_response/4(L35), \n\u001b[0m\u001b[22m\n16:14:56.676 [info] block_id: 8f5a7072-8"},{"event":"cmd_output","timestamp":1607098496,"output":"a1e-4055-8e49-052622ed294c, type: Blocks, state: initializing, event: initializing, recovery_count: "},{"event":"cmd_output","timestamp":1607098496,"output":"0, origin: Elixir.Block.Blocks.Model.BlocksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:14:56.678 [info] "},{"event":"cmd_output","timestamp":1607098496,"output":"Block 0 of pipeline with id: f03df029-3814-4b56-8f77-2c87de8ad11f scheduled in block service with id"},{"event":"cmd_output","timestamp":1607098496,"output":": : \"8f5a7072-8a1e-4055-8e49-052622ed294c\"\n\u001b[0m\u001b[22m\n16:14:56.682 [info] ppl_id: f03df029-3814-4b"},{"event":"cmd_output","timestamp":1607098496,"output":"56-8f77-2c87de8ad11f, type: PplBlocks, block_index: 0, state: running, event: exit_scheduling, recov"},{"event":"cmd_output","timestamp":1607098496,"output":"ery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:14:56.690 [inf"},{"event":"cmd_output","timestamp":1607098496,"output":"o] block_id: 8f5a7072-8a1e-4055-8e49-052622ed294c, type: BlockRequests, event: persisted build and "},{"event":"cmd_output","timestamp":1607098496,"output":"sub_ppl details for block_request: 8f5a7072-8a1e-4055-8e49-052622ed294c, origin: Elixir.Block.BlockR"},{"event":"cmd_output","timestamp":1607098496,"output":"equests.Model.BlockRequestsQueries.insert_build/2(L41), \n\u001b[0m\u001b[22m\n16:14:56.692 [info] block_id: "},{"event":"cmd_output","timestamp":1607098496,"output":"8f5a7072-8a1e-4055-8e49-052622ed294c, type: Tasks, state: pending, event: created, recovery_count: 0"},{"event":"cmd_output","timestamp":1607098496,"output":", origin: Elixir.Block.Blocks.STMHandler.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:14:56.69"},{"event":"cmd_output","timestamp":1607098496,"output":"4 [info] block_id: 8f5a7072-8a1e-4055-8e49-052622ed294c, type: Blocks, state: running, event: exit_"},{"event":"cmd_output","timestamp":1607098496,"output":"scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n"},{"event":"cmd_output","timestamp":1607098496,"output":"16:14:56.712 [info] block_id: 8f5a7072-8a1e-4055-8e49-052622ed294c, type: Tasks, state: running, ev"},{"event":"cmd_output","timestamp":1607098496,"output":"ent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b"},{"event":"cmd_output","timestamp":1607098496,"output":"[0m\u001b[22m\n16:14:56.766 [info] block_id: 8f5a7072-8a1e-4055-8e49-052622ed294c, type: Tasks, state: d"},{"event":"cmd_output","timestamp":1607098496,"output":"one, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L9"},{"event":"cmd_output","timestamp":1607098496,"output":"0), \n\u001b[0m\u001b[22m\n16:14:56.770 [info] block_id: 8f5a7072-8a1e-4055-8e49-052622ed294c, type: Blocks, "},{"event":"cmd_output","timestamp":1607098496,"output":"state: done, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_cha"},{"event":"cmd_output","timestamp":1607098496,"output":"nge/1(L90), \n\u001b[0m\u001b[22m\n16:14:56.775 [info] ppl_id: f03df029-3814-4b56-8f77-2c87de8ad11f, block_id"},{"event":"cmd_output","timestamp":1607098496,"output":": 8f5a7072-8a1e-4055-8e49-052622ed294c, type: PplBlocks, block_index: 0, state: done, result: passed"},{"event":"cmd_output","timestamp":1607098496,"output":", event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90),"},{"event":"cmd_output","timestamp":1607098499,"output":" \n\u001b[0m\u001b[22m\n16:14:59.758 [info] Request: 'terminate', request: %{\"ppl_id\" => \"f03df029-3814-4b56-"},{"event":"cmd_output","timestamp":1607098499,"output":"8f77-2c87de8ad11f\", \"requester_id\" => \"user1\"}\n\u001b[0m\u001b[22m\n16:14:59.766 [info] Periodic from module"},{"event":"cmd_output","timestamp":1607098499,"output":" Elixir.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHandler.RunningState :: period"},{"event":"cmd_output","timestamp":1607098499,"output":": 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring arg"},{"event":"cmd_output","timestamp":1607098499,"output":"s: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls."},{"event":"cmd_output","timestamp":1607098499,"output":"Model.Ppls, observed_state: \"running\", publisher_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler.R"},{"event":"cmd_output","timestamp":1607098499,"output":"unningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :"},{"event":"cmd_output","timestamp":1607098499,"output":"result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}"},{"event":"cmd_output","timestamp":1607098499,"output":"\n\u001b[0m\u001b[22m\n16:14:59.887 [info] ppl_id: f03df029-3814-4b56-8f77-2c87de8ad11f, type: Ppls, state: s"},{"event":"cmd_output","timestamp":1607098499,"output":"topping, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/"},{"event":"cmd_output","timestamp":1607098499,"output":"1(L90), \n\u001b[0m\u001b[22m\n16:14:59.979 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.StoppingSt"},{"event":"cmd_output","timestamp":1607098499,"output":"ate with name Elixir.Ppl.Ppls.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholde"},{"event":"cmd_output","timestamp":1607098499,"output":"r-wake_up\", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \""},{"event":"cmd_output","timestamp":1607098499,"output":"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"stopping\", publis"},{"event":"cmd_output","timestamp":1607098499,"output":"her_cb: #Function<0.71803493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, ret"},{"event":"cmd_output","timestamp":1607098499,"output":"urning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: P"},{"event":"cmd_output","timestamp":1607098500,"output":"pl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:15:00.109 [info] ppl_id: f03df029-3814-4"},{"event":"cmd_output","timestamp":1607098500,"output":"b56-8f77-2c87de8ad11f, type: Ppls, state: done, result: stopped, event: exit_scheduling, recovery_co"},{"event":"cmd_output","timestamp":1607098500,"output":"unt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * test describe call f"},{"event":"cmd_output","timestamp":1607098500,"output":"or existing ppl in all states (4159.6ms)\u001b[0m\n * test terminate test - done pipeline\r * test termi"},{"event":"cmd_output","timestamp":1607098500,"output":"nate test - done pipeline (skipped)\n * test describe_topology() returns boosters jobs\r * test des"},{"event":"cmd_output","timestamp":1607098500,"output":"cribe_topology() returns boosters jobs (skipped)\n\nPpl.DefinitionReviser.BlocksGodfather.Test\n * "},{"event":"cmd_output","timestamp":1607098500,"output":"test set unique names for blocks whitouth names\r * test set unique names for blocks whitouth names "},{"event":"cmd_output","timestamp":1607098500,"output":"(skipped)\n * test blocks with all unique names should pass validation\r * test blocks with all uni"},{"event":"cmd_output","timestamp":1607098500,"output":"que names should pass validation (skipped)\n * test blocks with same names should not pass validati"},{"event":"cmd_output","timestamp":1607098500,"output":"on\r * test blocks with same names should not pass validation (skipped)\n * test set unique names o"},{"event":"cmd_output","timestamp":1607098500,"output":"nly for blocks whitouth names\r * test set unique names only for blocks whitouth names (skipped)\n "},{"event":"cmd_output","timestamp":1607098500,"output":"* test when default name is taken, use one with increased index for nameless blocks\r * test when de"},{"event":"cmd_output","timestamp":1607098500,"output":"fault name is taken, use one with increased index for nameless blocks (skipped)\n\nPpl.Admin.Server."},{"event":"cmd_output","timestamp":1607098500,"output":"Test\n * test get_yaml returns error for non-existing pipeline\r * test get_yaml returns error for "},{"event":"cmd_output","timestamp":1607098500,"output":"non-existing pipeline (skipped)\n * test get_yaml returns yaml definition for existing pipeline\u001b[22"},{"event":"cmd_output","timestamp":1607098500,"output":"m\n16:15:00.243 [info] Request: 'run: %{:repo_name => \"2_basic\", \"branch_id\" => \"c2c9b852-50cc-4ca6"},{"event":"cmd_output","timestamp":1607098500,"output":"-a7ac-78d0a5c28551\", \"branch_name\" => \"master\", \"commit_sha\" => \"75891a4469\", \"file_name\" => \"semaph"},{"event":"cmd_output","timestamp":1607098500,"output":"ore.yml\", \"hook_id\" => \"dbc3cf72-364b-11eb-bf0f-5254005464e2\", \"label\" => \"master\", \"organization_id"},{"event":"cmd_output","timestamp":1607098500,"output":"\" => \"1e382724-b7dd-4134-9174-baaf91053c4d\", \"owner\" => \"rt\", \"project_id\" => \"562004a9-6d84-4e02-a0"},{"event":"cmd_output","timestamp":1607098500,"output":"59-052b1e9f6970\", \"repo_name\" => \"2_basic\", \"request_token\" => \"dbc3c7de-364b-11eb-b3ff-5254005464e2"},{"event":"cmd_output","timestamp":1607098500,"output":"\", \"requester_id\" => \"fc06a721-9f98-407f-8e33-02010476b9e4\", \"service\" => \"local\", \"suppressed_attri"},{"event":"cmd_output","timestamp":1607098500,"output":"butes\" => [\"access_token\", \"client_secret\"], \"wf_id\" => \"03cbdee7-c1c5-4c5d-8c75-c2749b361ee6\", \"wor"},{"event":"cmd_output","timestamp":1607098500,"output":"king_dir\" => \".semaphore\"}\n\u001b[0m\u001b[22m\n16:15:00.247 [info] ppl_id: 7d55a30e-cb9a-4d64-a986-2f2c63d0"},{"event":"cmd_output","timestamp":1607098500,"output":"8861, type: PplRequests, event: persisted schedule request with request_token: dbc3c7de-364b-11eb-b3"},{"event":"cmd_output","timestamp":1607098500,"output":"ff-5254005464e2, origin: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.process_response/2(L55), \n"},{"event":"cmd_output","timestamp":1607098500,"output":"\u001b[0m\u001b[22m\n16:15:00.249 [info] ppl_id: 7d55a30e-cb9a-4d64-a986-2f2c63d08861, type: Ppls, state: ini"},{"event":"cmd_output","timestamp":1607098500,"output":"tializing, event: initializing, recovery_count: 0, origin: Elixir.Ppl.Ppls.Model.PplsQueries.process"},{"event":"cmd_output","timestamp":1607098500,"output":"_response/2(L124), \n\u001b[0m\u001b[22m\n16:15:00.252 [info] Project 562004a9-6d84-4e02-a059-052b1e9f6970 an"},{"event":"cmd_output","timestamp":1607098500,"output":"d branch masterlatest_wf details updated: \"wf_id: 03cbdee7-c1c5-4c5d-8c75-c2749b361ee6, wf_number: 1"},{"event":"cmd_output","timestamp":1607098500,"output":"\"\n\u001b[0m\u001b[22m\n16:15:00.253 [info] Persisted ppl_sub_init for pipeline with ppl_id: 7d55a30e-cb9a-4d"},{"event":"cmd_output","timestamp":1607098500,"output":"64-a986-2f2c63d08861: %Ppl.PplSubInits.Model.PplSubInits{__meta__: #Ecto.Schema.Metadata<:loaded, \"p"},{"event":"cmd_output","timestamp":1607098500,"output":"ipeline_sub_inits\">, compile_task_id: nil, error_description: nil, id: 361, in_scheduling: false, in"},{"event":"cmd_output","timestamp":1607098500,"output":"it_type: \"regular\", inserted_at: ~N[2020-12-04 16:15:00.252455], pipeline_requests: #Ecto.Associatio"},{"event":"cmd_output","timestamp":1607098500,"output":"n.NotLoaded, ppl_id: \"7d55a30e-cb9a-4d64-a986-2f2c63d0"},{"event":"cmd_output","timestamp":1607098500,"output":"8861\", recovery_count: 0, result: nil, result_reason: nil, state: \"created\", terminate_request: nil,"},{"event":"cmd_output","timestamp":1607098500,"output":" terminate_request_desc: nil, updated_at: ~N[2020-12-04 16:15:00.252460]}\n\u001b[0m\u001b[22m\n16:15:00.256 ["},{"event":"cmd_output","timestamp":1607098500,"output":"info] Periodic from module Elixir.Ppl.Ppls.STMHandler.InitializingState with name Elixir.Ppl.Ppls.S"},{"event":"cmd_output","timestamp":1607098500,"output":"TMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMH"},{"event":"cmd_output","timestamp":1607098500,"output":"andler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\", \"pending\", \"done\"], "},{"event":"cmd_output","timestamp":1607098500,"output":"cooling_time_sec: 0, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"initializing\", publisher_c"},{"event":"cmd_output","timestamp":1607098500,"output":"b: #Function<0.125326080/1 in Ppl.Ppls.STMHandler.InitializingState.args/0>, repo: Ppl.EctoRepo, ret"},{"event":"cmd_output","timestamp":1607098500,"output":"urning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: P"},{"event":"cmd_output","timestamp":1607098500,"output":"pl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:15:00.256 [info] Periodic from module El"},{"event":"cmd_output","timestamp":1607098500,"output":"ixir.Ppl.Ppls.STMHandler.PendingState with name Elixir.Ppl.Ppls.STMHandler.PendingState :: period: 1"},{"event":"cmd_output","timestamp":1607098500,"output":"00 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-PendingState\"]}, recurring args: "},{"event":"cmd_output","timestamp":1607098500,"output":"%{allowed_states: [\"pending\", \"queuing\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl"},{"event":"cmd_output","timestamp":1607098500,"output":".Ppls.Model.Ppls, observed_state: \"pending\", publisher_cb: #Function<0.8493005/1 in Ppl.Ppls.STMHand"},{"event":"cmd_output","timestamp":1607098500,"output":"ler.PendingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :sta"},{"event":"cmd_output","timestamp":1607098500,"output":"te, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSuperv"},{"event":"cmd_output","timestamp":1607098500,"output":"isor}\n\u001b[0m\u001b[22m\n16:15:00.257 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.QueuingState "},{"event":"cmd_output","timestamp":1607098500,"output":"with name Elixir.Ppl.Ppls.STMHandler.QueuingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wak"},{"event":"cmd_output","timestamp":1607098500,"output":"e_up\", [\"Ppl-Ppls-STMHandler-QueuingState\"]}, recurring args: %{allowed_states: [\"queuing\", \"running"},{"event":"cmd_output","timestamp":1607098500,"output":"\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"queuing\", pub"},{"event":"cmd_output","timestamp":1607098500,"output":"lisher_cb: #Function<0.125102843/1 in Ppl.Ppls.STMHandler.QueuingState.args/0>, repo: Ppl.EctoRepo, "},{"event":"cmd_output","timestamp":1607098500,"output":"returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema"},{"event":"cmd_output","timestamp":1607098500,"output":": Ppl.Ppls.Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:15:00.257 [info] Periodic from module"},{"event":"cmd_output","timestamp":1607098500,"output":" Elixir.Ppl.Ppls.STMHandler.RunningState with name Elixir.Ppl.Ppls.STMHandler.RunningState :: period"},{"event":"cmd_output","timestamp":1607098500,"output":": 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-Ppls-STMHandler-RunningState\"]}, recurring arg"},{"event":"cmd_output","timestamp":1607098500,"output":"s: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.Ppls."},{"event":"cmd_output","timestamp":1607098500,"output":"Model.Ppls, observed_state: \"running\", publisher_cb: #Function<0.74670282/1 in Ppl.Ppls.STMHandler.R"},{"event":"cmd_output","timestamp":1607098500,"output":"unningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :"},{"event":"cmd_output","timestamp":1607098500,"output":"result, :recovery_count, :ppl_id], schema: Ppl.Ppls.Model.Ppls, task_supervisor: PplsTaskSupervisor}"},{"event":"cmd_output","timestamp":1607098500,"output":"\n\u001b[0m\u001b[22m\n16:15:00.257 [info] Periodic from module Elixir.Ppl.Ppls.STMHandler.StoppingState with"},{"event":"cmd_output","timestamp":1607098500,"output":" name Elixir.Ppl.Ppls.STMHandler.StoppingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_u"},{"event":"cmd_output","timestamp":1607098500,"output":"p\", [\"Ppl-Ppls-STMHandler-StoppingState\"]}, recurring args: %{allowed_states: [\"stopping\", \"done\"], "},{"event":"cmd_output","timestamp":1607098500,"output":"cooling_time_sec: -2, initial_query: Ppl.Ppls.Model.Ppls, observed_state: \"stopping\", publisher_cb: "},{"event":"cmd_output","timestamp":1607098500,"output":"#Function<0.71803493/1 in Ppl.Ppls.STMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: "},{"event":"cmd_output","timestamp":1607098500,"output":"[:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Ppls."},{"event":"cmd_output","timestamp":1607098500,"output":"Model.Ppls, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:15:00.257 [info] Periodic from module Elixir.Ppl"},{"event":"cmd_output","timestamp":1607098500,"output":".PplSubInits.STMHandler.CreatedState with name Elixir.Ppl.PplSubInits.STMHandler.CreatedState :: per"},{"event":"cmd_output","timestamp":1607098500,"output":"iod: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CreatedState\"]}, rec"},{"event":"cmd_output","timestamp":1607098500,"output":"urring args: %{allowed_states: [\"fetching\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplSubI"},{"event":"cmd_output","timestamp":1607098500,"output":"nits.Model.PplSubInits, observed_state: \"created\", publisher_cb: :skip, repo: Ppl.EctoRepo, returnin"},{"event":"cmd_output","timestamp":1607098500,"output":"g: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: Ppl.Pp"},{"event":"cmd_output","timestamp":1607098500,"output":"lSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:15:00.257 [info] Periodic from "},{"event":"cmd_output","timestamp":1607098500,"output":"module Elixir.Ppl.PplSubInits.STMHandler.FetchingState with name Elixir.Ppl.PplSubInits.STMHandler.F"},{"event":"cmd_output","timestamp":1607098500,"output":"etchingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-STMHandler-F"},{"event":"cmd_output","timestamp":1607098500,"output":"etchingState\"]}, recurring args: %{allowed_states: [\"regular_init\", \"compilation\", \"done\"], cooling_"},{"event":"cmd_output","timestamp":1607098500,"output":"time_sec: -2, initial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"fetching\", publishe"},{"event":"cmd_output","timestamp":1607098500,"output":"r_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, "},{"event":"cmd_output","timestamp":1607098500,"output":":recovery_count, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b"},{"event":"cmd_output","timestamp":1607098500,"output":"[22m\n16:15:00.257 [info] Periodic from module Elixir.Ppl.PplSubInits.STMHandler.CompilationState w"},{"event":"cmd_output","timestamp":1607098500,"output":"ith name Elixir.Ppl.PplSubInits.STMHandler.CompilationState :: period: 100 ms, metric_name: {\"Ppl.be"},{"event":"cmd_output","timestamp":1607098500,"output":"holder-wake_up\", [\"Ppl-PplSubInits-STMHandler-CompilationState\"]}, recurring args: %{allowed_states:"},{"event":"cmd_output","timestamp":1607098500,"output":" [\"regular_init\", \"compilation\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplSu"},{"event":"cmd_output","timestamp":1607098500,"output":"bInits.Model.PplSubInits, observed_state: \"compilation\", publisher_cb: :skip, repo: Ppl.EctoRepo, re"},{"event":"cmd_output","timestamp":1607098500,"output":"turning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_count, :ppl_id], schema: "},{"event":"cmd_output","timestamp":1607098500,"output":"Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:15:00.257 [info] Periodic"},{"event":"cmd_output","timestamp":1607098500,"output":" from module Elixir.Ppl.PplSubInits.STMHandler.RegularInitState with name Elixir.Ppl.PplSubInits.STM"},{"event":"cmd_output","timestamp":1607098500,"output":"Handler.RegularInitState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplSubInits-"},{"event":"cmd_output","timestamp":1607098500,"output":"STMHandler-RegularInitState\"]}, recurring args: %{allowed_states: [\"done\"], cooling_time_sec: 0, ini"},{"event":"cmd_output","timestamp":1607098500,"output":"tial_query: Ppl.PplSubInits.Model.PplSubInits, observed_state: \"regular_init\", publisher_cb: :skip, "},{"event":"cmd_output","timestamp":1607098500,"output":"repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at, :state, :result, :recovery_cou"},{"event":"cmd_output","timestamp":1607098500,"output":"nt, :ppl_id], schema: Ppl.PplSubInits.Model.PplSubInits, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:15:0"},{"event":"cmd_output","timestamp":1607098500,"output":"0.257 [info] Periodic from module Elixir.Ppl.PplBlocks.STMHandler.InitializingState with name Elixi"},{"event":"cmd_output","timestamp":1607098500,"output":"r.Ppl.PplBlocks.STMHandler.InitializingState :: period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\""},{"event":"cmd_output","timestamp":1607098500,"output":", [\"Ppl-PplBlocks-STMHandler-InitializingState\"]}, recurring args: %{allowed_states: [\"initializing\""},{"event":"cmd_output","timestamp":1607098500,"output":", \"waiting\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBlocks.Model.PplBlocks, observed_st"},{"event":"cmd_output","timestamp":1607098500,"output":"ate: \"initializing\", publisher_cb: :skip, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :"},{"event":"cmd_output","timestamp":1607098500,"output":"updated_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.Pp"},{"event":"cmd_output","timestamp":1607098500,"output":"lBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:15:00.257 [info] Periodic from module Elixir.Ppl.Pp"},{"event":"cmd_output","timestamp":1607098500,"output":"lBlocks.STMHandler.WaitingState with name Elixir.Ppl.PplBlocks.STMHandler.WaitingState :: period: 10"},{"event":"cmd_output","timestamp":1607098500,"output":"00 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-WaitingState\"]}, recurring a"},{"event":"cmd_output","timestamp":1607098500,"output":"rgs: %{allowed_states: [\"waiting\", \"running\", \"done\"], cooling_time_sec: 0, initial_query: Ppl.PplBl"},{"event":"cmd_output","timestamp":1607098500,"output":"ocks.Model.PplBlocks, observed_state: \"waiting\", publisher_cb: #Function<0.8975022/1 in Ppl.PplBlock"},{"event":"cmd_output","timestamp":1607098500,"output":"s.STMHandler.WaitingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated"},{"event":"cmd_output","timestamp":1607098500,"output":"_at, :state, :result, :recovery_count, :ppl_id, :block_index], schema: Ppl.PplBlocks.Model.PplBlocks"},{"event":"cmd_output","timestamp":1607098500,"output":", task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:15:00.258 [info] Periodic from module Elixir.Ppl.PplBlocks"},{"event":"cmd_output","timestamp":1607098500,"output":".STMHandler.RunningState with name Elixir.Ppl.PplBlocks.STMHandler.RunningState :: period: 1000 ms, "},{"event":"cmd_output","timestamp":1607098500,"output":"metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-RunningState\"]}, recurring args: %{"},{"event":"cmd_output","timestamp":1607098500,"output":"allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks."},{"event":"cmd_output","timestamp":1607098500,"output":"Model.PplBlocks, observed_state: \"running\", publisher_cb: #Function<0.28166834/1 in Ppl.PplBlocks.ST"},{"event":"cmd_output","timestamp":1607098500,"output":"MHandler.RunningState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_at,"},{"event":"cmd_output","timestamp":1607098500,"output":" :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model.Pp"},{"event":"cmd_output","timestamp":1607098500,"output":"lBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:15:00.258 [info] Periodic from module Elixir.Ppl.Pp"},{"event":"cmd_output","timestamp":1607098500,"output":"lBlocks.STMHandler.StoppingState with name Elixir.Ppl.PplBlocks.STMHandler.StoppingState :: period: "},{"event":"cmd_output","timestamp":1607098500,"output":"1000 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Ppl-PplBlocks-STMHandler-StoppingState\"]}, recurrin"},{"event":"cmd_output","timestamp":1607098500,"output":"g args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Ppl.PplBlocks.M"},{"event":"cmd_output","timestamp":1607098500,"output":"odel.PplBlocks, observed_state: \"stopping\", publisher_cb: #Function<0.104215991/1 in Ppl.PplBlocks.S"},{"event":"cmd_output","timestamp":1607098500,"output":"TMHandler.StoppingState.args/0>, repo: Ppl.EctoRepo, returning: [:id, :terminate_request, :updated_a"},{"event":"cmd_output","timestamp":1607098500,"output":"t, :state, :result, :recovery_count, :ppl_id, :block_index, :block_id], schema: Ppl.PplBlocks.Model."},{"event":"cmd_output","timestamp":1607098500,"output":"PplBlocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:15:00.258 [info] Periodic from module Elixir.Bloc"},{"event":"cmd_output","timestamp":1607098500,"output":"k.Blocks.STMHandler.InitializingState with name Elixir.Block.Blocks.STMHandler.InitializingState :: "},{"event":"cmd_output","timestamp":1607098500,"output":"period: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-InitializingState\"]}"},{"event":"cmd_output","timestamp":1607098500,"output":", recurring args: %{allowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.B"},{"event":"cmd_output","timestamp":1607098500,"output":"locks.Model.Blocks, observed_state: \"initializing\", publisher_cb: :skip, repo: Block.EctoRepo, retur"},{"event":"cmd_output","timestamp":1607098500,"output":"ning: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Bloc"},{"event":"cmd_output","timestamp":1607098500,"output":"ks.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:15:00.258 [info] Periodic from module Elixi"},{"event":"cmd_output","timestamp":1607098500,"output":"r.Block.Blocks.STMHandler.RunningState with name Elixir.Block.Blocks.STMHandler.RunningState :: peri"},{"event":"cmd_output","timestamp":1607098500,"output":"od: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-RunningState\"]}, recurri"},{"event":"cmd_output","timestamp":1607098500,"output":"ng args: %{allowed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Blo"},{"event":"cmd_output","timestamp":1607098500,"output":"ck.Blocks.Model.Blocks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, return"},{"event":"cmd_output","timestamp":1607098500,"output":"ing: [:id, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Block"},{"event":"cmd_output","timestamp":1607098500,"output":"s.Model.Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:15:00.258 [info] Periodic from module Elixir"},{"event":"cmd_output","timestamp":1607098500,"output":".Block.Blocks.STMHandler.StoppingState with name Elixir.Block.Blocks.STMHandler.StoppingState :: per"},{"event":"cmd_output","timestamp":1607098500,"output":"iod: 100 ms, metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Blocks-STMHandler-StoppingState\"]}, recur"},{"event":"cmd_output","timestamp":1607098500,"output":"ring args: %{allowed_states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Blocks"},{"event":"cmd_output","timestamp":1607098500,"output":".Model.Blocks, observed_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:i"},{"event":"cmd_output","timestamp":1607098500,"output":"d, :terminate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Blocks.Model."},{"event":"cmd_output","timestamp":1607098500,"output":"Blocks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:15:00.258 [info] Periodic from module Elixir.Block.T"},{"event":"cmd_output","timestamp":1607098500,"output":"asks.STMHandler.PendingState with name Elixir.Block.Tasks.STMHandler.PendingState :: period: 100 ms,"},{"event":"cmd_output","timestamp":1607098500,"output":" metric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-PendingState\"]}, recurring args: %{a"},{"event":"cmd_output","timestamp":1607098500,"output":"llowed_states: [\"running\", \"done\"], cooling_time_sec: 0, initial_query: Block.Tasks.Model.Tasks, obs"},{"event":"cmd_output","timestamp":1607098500,"output":"erved_state: \"pending\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_reque"},{"event":"cmd_output","timestamp":1607098500,"output":"st, :updated_at, :state, :recovery_count, :block_id, :build_request_id], schema: Block.Tasks.Model.T"},{"event":"cmd_output","timestamp":1607098500,"output":"asks, task_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:15:00.258 [info] Periodic from module Elixir.Block.Tas"},{"event":"cmd_output","timestamp":1607098500,"output":"ks.STMHandler.RunningState with name Elixir.Block.Tasks.STMHandler.RunningState :: period: 100 ms, m"},{"event":"cmd_output","timestamp":1607098500,"output":"etric_name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-RunningState\"]}, recurring args: %{all"},{"event":"cmd_output","timestamp":1607098500,"output":"owed_states: [\"running\", \"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model"},{"event":"cmd_output","timestamp":1607098500,"output":".Tasks, observed_state: \"running\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :term"},{"event":"cmd_output","timestamp":1607098500,"output":"inate_request, :updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, ta"},{"event":"cmd_output","timestamp":1607098500,"output":"sk_supervisor: :skip}\n\u001b[0m\u001b[22m\n16:15:00.258 [info] Periodic from module Elixir.Block.Tasks.STMHa"},{"event":"cmd_output","timestamp":1607098500,"output":"ndler.StoppingState with name Elixir.Block.Tasks.STMHandler.StoppingState :: period: 100 ms, metric_"},{"event":"cmd_output","timestamp":1607098500,"output":"name: {\"Ppl.beholder-wake_up\", [\"Block-Tasks-STMHandler-StoppingState\"]}, recurring args: %{allowed_"},{"event":"cmd_output","timestamp":1607098500,"output":"states: [\"stopping\", \"done\"], cooling_time_sec: -2, initial_query: Block.Tasks.Model.Tasks, observed"},{"event":"cmd_output","timestamp":1607098500,"output":"_state: \"stopping\", publisher_cb: :skip, repo: Block.EctoRepo, returning: [:id, :terminate_request, "},{"event":"cmd_output","timestamp":1607098500,"output":":updated_at, :state, :recovery_count, :block_id], schema: Block.Tasks.Model.Tasks, task_supervisor: "},{"event":"cmd_output","timestamp":1607098500,"output":":skip}\n\u001b[0m\u001b[22m\n16:15:00.404 [info] ppl_id: 7d55a30e-cb9a-4d64-a986-2f2c63d08861, type: PplReque"},{"event":"cmd_output","timestamp":1607098500,"output":"sts, event: persisted source_args for pipeline: 7d55a30e-cb9a-4d64-a986-2f2c63d08861, origin: Elixir"},{"event":"cmd_output","timestamp":1607098500,"output":".Ppl.PplRequests.Model.PplRequestsQueries.insert_source/2(L89), \n\u001b[0m\u001b[22m\n16:15:00.407 [info] pp"},{"event":"cmd_output","timestamp":1607098500,"output":"l_id: 7d55a30e-cb9a-4d64-a986-2f2c63d08861, type: PplSubInits, state: fetching, event: exit_scheduli"},{"event":"cmd_output","timestamp":1607098500,"output":"ng, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:15:00"},{"event":"cmd_output","timestamp":1607098500,"output":".425 [info] ppl_id: 7d55a30e-cb9a-4d64-a986-2f2c63d08861, type: PplSubInits, state: regular_init, e"},{"event":"cmd_output","timestamp":1607098500,"output":"vent: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n"},{"event":"cmd_output","timestamp":1607098500,"output":"\u001b[0m\u001b[22m\n16:15:00.442 [info] ppl_id: 7d55a30e-cb9a-4d64-a986-2f2c63d08861, type: PplRequests, eve"},{"event":"cmd_output","timestamp":1607098500,"output":"nt: persisted definition for request with request_token: dbc3c7de-364b-11eb-b3ff-5254005464e2, origi"},{"event":"cmd_output","timestamp":1607098500,"output":"n: Elixir.Ppl.PplRequests.Model.PplRequestsQueries.insert_definition/3(L76), \n\u001b[0m\u001b[22m\n16:15:00.4"},{"event":"cmd_output","timestamp":1607098500,"output":"44 [info] Queue persisted: {:ok, %Ppl.Queues.Model.Queues{__meta__: #Ecto.Schema.Metadata<:loaded, "},{"event":"cmd_output","timestamp":1607098500,"output":"\"queues\">, inserted_at: ~N[2020-12-04 16:15:00.443558], name: \"master-.semaphore/semaphore.yml\", org"},{"event":"cmd_output","timestamp":1607098500,"output":"anization_id: \"1e382724-b7dd-4134-9174-baaf91053c4d\", project_id: \"562004a9-6d84-4e02-a059-052b1e9f6"},{"event":"cmd_output","timestamp":1607098500,"output":"970\", queue_id: \"948cb4f0-e6cc-45c3-9903-6508e53e315e\", scope: \"project\", updated_at: ~N[2020-12-04 "},{"event":"cmd_output","timestamp":1607098500,"output":"16:15:00.443566], user_generated: false}}\n\u001b[0m\u001b[22m\n16:15:00.447 [info] event: created, origin: E"},{"event":"cmd_output","timestamp":1607098500,"output":"lixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_ok?/1(L105), \n\u001b[0m\u001b[22m\n16:15:00.447 [info] "},{"event":"cmd_output","timestamp":1607098500,"output":" ppl_id: 7d55a30e-cb9a-4d64-a986-2f2c63d08861, type: PplBlocks, block_index: 0, state: initializing,"},{"event":"cmd_output","timestamp":1607098500,"output":" event: created, recovery_count: 0, origin: Elixir.Ppl.PplSubInits.STMHandler.RegularInitState.all_o"},{"event":"cmd_output","timestamp":1607098500,"output":"k?/1(L105), \n\u001b[0m\u001b[22m\n16:15:00.448 [info] ppl_id: 7d55a30e-cb9a-4d64-a986-2f2c63d08861, type: Pp"},{"event":"cmd_output","timestamp":1607098500,"output":"lSubInits, state: done, result: passed, event: exit_scheduling, recovery_count: 0, origin: Elixir.Lo"},{"event":"cmd_output","timestamp":1607098500,"output":"oper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:15:00.456 [info] ppl_id: 7d55a30e-cb9a-4d64-"},{"event":"cmd_output","timestamp":1607098500,"output":"a986-2f2c63d08861, type: Ppls, state: pending, event: exit_scheduling, recovery_count: 0, origin: El"},{"event":"cmd_output","timestamp":1607098500,"output":"ixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:15:00.459 [info] ppl_id: 7d55a30e-cb9"},{"event":"cmd_output","timestamp":1607098500,"output":"a-4d64-a986-2f2c63d08861, type: PplBlocks, block_index: 0, state: waiting, event: exit_scheduling, r"},{"event":"cmd_output","timestamp":1607098500,"output":"ecovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:15:00.463 "},{"event":"cmd_output","timestamp":1607098500,"output":"[info] ppl_id: 7d55a30e-cb9a-4d64-a986-2f2c63d08861, type: Ppls, state: queuing, event: exit_schedu"},{"event":"cmd_output","timestamp":1607098500,"output":"ling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:15:"},{"event":"cmd_output","timestamp":1607098500,"output":"00.477 [info] ppl_id: 7d55a30e-cb9a-4d64-a986-2f2c63d08861, type: Ppls, state: running, event: exit"},{"event":"cmd_output","timestamp":1607098500,"output":"_scheduling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\r"},{"event":"cmd_output","timestamp":1607098500,"output":"\n16:15:00.482 [info] PplBlocks WaitingState STM is scheduling block 0 from pipeline: \"7d55a30e-cb9a"},{"event":"cmd_output","timestamp":1607098500,"output":"-4d64-a986-2f2c63d08861\"\n\u001b[0m\u001b[22m\n16:15:00.487 [info] block_id: c35ed1cf-f0ad-4016-8741-0741678e"},{"event":"cmd_output","timestamp":1607098500,"output":"43bc, type: BlockRequests, event: persisted block run request from ppl 7d55a30e-cb9a-4d64-a986-2f2c6"},{"event":"cmd_output","timestamp":1607098500,"output":"3d08861 for block 0, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.process_response/"},{"event":"cmd_output","timestamp":1607098500,"output":"4(L35), \n\u001b[0m\u001b[22m\n16:15:00.489 [info] block_id: c35ed1cf-f0ad-4016-8741-0741678e43bc, type: Bloc"},{"event":"cmd_output","timestamp":1607098500,"output":"ks, state: initializing, event: initializing, recovery_count: 0, origin: Elixir.Block.Blocks.Model.B"},{"event":"cmd_output","timestamp":1607098500,"output":"locksQueries.insert/1(L43), \n\u001b[0m\u001b[22m\n16:15:00.492 [info] Block 0 of pipeline with id: 7d55a30e-"},{"event":"cmd_output","timestamp":1607098500,"output":"cb9a-4d64-a986-2f2c63d08861 scheduled in block service with id: : \"c35ed1cf-f0ad-4016-8741-0741678e4"},{"event":"cmd_output","timestamp":1607098500,"output":"3bc\"\n\u001b[0m\u001b[22m\n16:15:00.494 [info] ppl_id: 7d55a30e-cb9a-4d64-a986-2f2c63d08861, type: PplBlocks,"},{"event":"cmd_output","timestamp":1607098500,"output":" block_index: 0, state: running, event: exit_scheduling, recovery_count: 0, origin: Elixir.Looper.ST"},{"event":"cmd_output","timestamp":1607098500,"output":"M.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:15:00.495 [info] block_id: c35ed1cf-f0ad-4016-8741-"},{"event":"cmd_output","timestamp":1607098500,"output":"0741678e43bc, type: BlockRequests, event: persisted build and sub_ppl details for block_request: c35"},{"event":"cmd_output","timestamp":1607098500,"output":"ed1cf-f0ad-4016-8741-0741678e43bc, origin: Elixir.Block.BlockRequests.Model.BlockRequestsQueries.ins"},{"event":"cmd_output","timestamp":1607098500,"output":"ert_build/2(L41), \n\u001b[0m\u001b[22m\n16:15:00.497 [info] block_id: c35ed1cf-f0ad-4016-8741-0741678e43bc, "},{"event":"cmd_output","timestamp":1607098500,"output":"type: Tasks, state: pending, event: created, recovery_count: 0, origin: Elixir.Block.Blocks.STMHandl"},{"event":"cmd_output","timestamp":1607098500,"output":"er.InitializingState.all_ok?/1(L167), \n\u001b[0m\u001b[22m\n16:15:00.498 [info] block_id: c35ed1cf-f0ad-4016"},{"event":"cmd_output","timestamp":1607098500,"output":"-8741-0741678e43bc, type: Blocks, state: running, event: exit_scheduling, recovery_count: 0, origin:"},{"event":"cmd_output","timestamp":1607098500,"output":" Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:15:00.508 [info] block_id: c35ed1c"},{"event":"cmd_output","timestamp":1607098500,"output":"f-f0ad-4016-8741-0741678e43bc, type: Tasks, state: running, event: exit_scheduling, recovery_count: "},{"event":"cmd_output","timestamp":1607098500,"output":"0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:15:00.614 [info] block_i"},{"event":"cmd_output","timestamp":1607098500,"output":"d: c35ed1cf-f0ad-4016-8741-0741678e43bc, type: Tasks, state: done, event: exit_scheduling, recovery_"},{"event":"cmd_output","timestamp":1607098500,"output":"count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:15:00.620 [info] "},{"event":"cmd_output","timestamp":1607098500,"output":"block_id: c35ed1cf-f0ad-4016-8741-0741678e43bc, type: Blocks, state: done, event: exit_scheduling, r"},{"event":"cmd_output","timestamp":1607098500,"output":"ecovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:15:00.625 "},{"event":"cmd_output","timestamp":1607098500,"output":"[info] ppl_id: 7d55a30e-cb9a-4d64-a986-2f2c63d08861, block_id: c35ed1cf-f0ad-4016-8741-0741678e43bc"},{"event":"cmd_output","timestamp":1607098500,"output":", type: PplBlocks, block_index: 0, state: done, result: passed, event: exit_scheduling, recovery_cou"},{"event":"cmd_output","timestamp":1607098500,"output":"nt: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[22m\n16:15:00.633 [info] ppl"},{"event":"cmd_output","timestamp":1607098500,"output":"_id: 7d55a30e-cb9a-4d64-a986-2f2c63d08861, type: Ppls, state: done, result: passed, event: exit_sche"},{"event":"cmd_output","timestamp":1607098500,"output":"duling, recovery_count: 0, origin: Elixir.Looper.STM.Impl.log_state_change/1(L90), \n\u001b[0m\u001b[32m\r * t"},{"event":"cmd_output","timestamp":1607098500,"output":"est get_yaml returns yaml definition for existing pipeline (522.1ms)\u001b[0m\n * test set admin termina"},{"event":"cmd_output","timestamp":1607098500,"output":"tion flags for all pipelines from given branch of given project\r * test set admin termination flags"},{"event":"cmd_output","timestamp":1607098500,"output":" for all pipelines from given branch of given project (skipped)\n * test set branch deletion termin"},{"event":"cmd_output","timestamp":1607098500,"output":"ation flags for all pipelines from given branch of given project\r * test set branch deletion termin"},{"event":"cmd_output","timestamp":1607098500,"output":"ation flags for all pipelines from given branch of given project (skipped)\n\nTest.Helpers\n\n\nFini"},{"event":"cmd_output","timestamp":1607098500,"output":"shed in 301.4 seconds\n\n\u001b[32m23 doctests, 392 tests, 0 failures, 281 skipped\u001b[0m\n\nRandomized with"},{"event":"cmd_output","timestamp":1607098500,"output":" seed 145509\nmake[1]: Leaving directory '/home/semaphore/alles/plumber/ppl'\n\nreal\t5m7.337s\nuser\t"},{"event":"cmd_output","timestamp":1607098500,"output":"0m0.409s\nsys\t0m0.614s\n"},{"event":"cmd_finished","timestamp":1607098500,"directive":"time make integration-test USER=root","exit_code":0,"started_at":1607098193,"finished_at":1607098500},{"event":"cmd_started","timestamp":1607098500,"directive":"export SEMAPHORE_JOB_RESULT=passed"},{"event":"cmd_finished","timestamp":1607098500,"directive":"export SEMAPHORE_JOB_RESULT=passed","exit_code":0,"started_at":1607098500,"finished_at":1607098500},{"event":"job_finished","timestamp":1607098501,"result":"passed"}] } \ No newline at end of file diff --git a/front/assets/js/manage_secret.js b/front/assets/js/manage_secret.js index d4688ecc6..446a94e19 100644 --- a/front/assets/js/manage_secret.js +++ b/front/assets/js/manage_secret.js @@ -1,6 +1,5 @@ import $ from "jquery" -import 'tom-select/dist/css/tom-select.min.css' import TomSelect from 'tom-select' diff --git a/front/assets/js/people/add_people/index.tsx b/front/assets/js/people/add_people/index.tsx index 7b28c5a1c..4ce823de7 100644 --- a/front/assets/js/people/add_people/index.tsx +++ b/front/assets/js/people/add_people/index.tsx @@ -44,7 +44,7 @@ export const App = () => { person_add {`Add people`} - close(false)} title="Add people"> + close(false)} title="Add new people" width="w-70-m"> @@ -85,7 +85,7 @@ const AddNewUsers = (props: { close: (reload: boolean) => void, }) => { const Link = (props: { icon: VNode, title: string, }) => { return ( void, }) => { }; return ( -
-
-

Add new people

-
- +
{userProviders.length > 1 && ( -
+
{userProviders.map(userProviderBox)}
)} @@ -158,7 +151,7 @@ const AddNewUsers = (props: { close: (reload: boolean) => void, }) => { return ( {loading && ( -
+
)} @@ -280,7 +273,7 @@ const ProvideVia = (props: ProvideViaProps) => { return (
{message}
-
+
)} {!arePeopleInvited && ( -
+
` + ${result.subject_type === "service_account" + ? `
smart_toy
` + : result.has_avatar + ? `` + : `
` } ${escapeHtml(result.name)} ` @@ -180,9 +190,11 @@ export var AddToProject = { `
- ${user.has_avatar - ? `` - : `` + ${user.subject_type === "service_account" + ? `
smart_toy
` + : user.has_avatar + ? `` + : `` }
${escapeHtml(user.name)}
diff --git a/front/assets/js/people/change_role_dropdown.js b/front/assets/js/people/change_role_dropdown.js index 35cc2d4e8..6c53fa9d7 100644 --- a/front/assets/js/people/change_role_dropdown.js +++ b/front/assets/js/people/change_role_dropdown.js @@ -67,7 +67,8 @@ export var ChangeRoleDropdown = { const body = { user_id: roleBtn.attributes.user_id.value, project_id: InjectedDataByBackend.ProjectId, - role_id: roleBtn.attributes.role_id.value + role_id: roleBtn.attributes.role_id.value, + member_type: roleBtn.attributes.member_type.value } toggleSpinner() @@ -90,7 +91,7 @@ export var ChangeRoleDropdown = { .catch((error) => { console.log(error) toggleSpinner() - Notice.error("An error occured while changing the role. Please contact our support team.") + Notice.error("An error occurred while changing the role. Please contact our support team.") }) } } diff --git a/front/assets/js/people/edit_person/index.tsx b/front/assets/js/people/edit_person/index.tsx index 0768868a6..6ebcf5d78 100644 --- a/front/assets/js/people/edit_person/index.tsx +++ b/front/assets/js/people/edit_person/index.tsx @@ -87,7 +87,7 @@ export const Button = () => { return user.assignRoleUrl .call({ - body: { user_id: user.id, role_id: selectedRole.id }, + body: { user_id: user.id, role_id: selectedRole.id, member_type: user.memberType }, }) .then((resp) => { if (resp.error) { @@ -163,53 +163,48 @@ export const Button = () => { manage_accounts Edit - -
-
-
-

Edit user

-
-
- -
- -
- + +
+
+ +
+
+ +
-
- - -
+
+ + +
-
- - - -
-
- + - -
+
@@ -418,6 +413,8 @@ class User { id: string; name: string; email: string; + memberType: string; + roles: UserRole[] = []; changeEmailUrl: toolbox.APIRequest.Url<{ email: string, message: string, }>; assignRoleUrl: toolbox.APIRequest.Url<{ password: string, message: string, }>; @@ -431,6 +428,7 @@ class User { user.id = json.id as string; user.name = json.name as string; user.email = json.email as string; + user.memberType = json.member_type as string; user.roles = json.roles.map((role: any) => { return new UserRole({ id: role.id, diff --git a/front/assets/js/people/list_people.js b/front/assets/js/people/list_people.js index a9a214512..fbd3cc544 100644 --- a/front/assets/js/people/list_people.js +++ b/front/assets/js/people/list_people.js @@ -127,7 +127,7 @@ export var ListPeople = { .catch((e) => { console.error("Error while filtering members: " + e) toggleSpinner() - Notice.error("An error occured while filtering members. Please contact our support team.") + Notice.error("An error occurred while filtering members. Please contact our support team.") }) }, diff --git a/front/assets/js/people/retract_role.js b/front/assets/js/people/retract_role.js index 95bacb4fc..91fbb419d 100644 --- a/front/assets/js/people/retract_role.js +++ b/front/assets/js/people/retract_role.js @@ -47,7 +47,7 @@ export var RetractRole = { .catch((error) => { console.log(error) toggleSpinner() - Notice.error("An error occured while removing a member, please contact our customer support.") + Notice.error("An error occurred while removing a member, please contact our customer support.") }) }, diff --git a/front/assets/js/pollman.js b/front/assets/js/pollman.js index fdd809bc2..4f905a448 100644 --- a/front/assets/js/pollman.js +++ b/front/assets/js/pollman.js @@ -165,14 +165,24 @@ export var Pollman = { }, fetchAndReplace: function (node, callback) { - let url = Pollman.requestUrl(node); + let url; + + try { + url = Pollman.requestUrl(node); + } catch (error) { + console.error('Invalid poll URL, removing element:', error); + // Remove the invalid polling element to prevent further attempts + $(node).remove(); + return; + } + if (this.urlInProgress(url)) { return; } let newFetch = this.rememberFetch(Date.now()); - this.startForUrl(url); + fetch(url, { credentials: "same-origin" }) .then(function (response) { if (response.status >= 200 && response.status < 300) { @@ -230,15 +240,31 @@ export var Pollman = { }, requestUrl: function (node) { - var queryParams = new URLSearchParams(); + const pollHref = node.getAttribute("data-poll-href"); + + try { + const pollUrl = new URL(pollHref, window.location.origin); - Array.from(node.attributes).forEach(function (attribute) { - if (attribute.name.startsWith("data-poll-param-")) { - var name = attribute.name.substring("data-poll-param-".length); - queryParams.append(name, attribute.value); + // Only allow same origin (same protocol, host, and port) + if (pollUrl.origin !== window.location.origin) { + console.error(`Blocked data-poll-href to unauthorized host: ${pollUrl.origin}`); + throw new Error(`data-poll-href must be same-origin. Got: ${pollUrl.origin}, Expected: ${window.location.origin}`); } - }); - return `${node.getAttribute("data-poll-href")}?${queryParams}`; + // Build query parameters from data-poll-param-* attributes (existing logic) + var queryParams = new URLSearchParams(); + Array.from(node.attributes).forEach(function (attribute) { + if (attribute.name.startsWith("data-poll-param-")) { + var name = attribute.name.substring("data-poll-param-".length); + queryParams.append(name, attribute.value); + } + }); + + return `${pollUrl.href}?${queryParams}`; + + } catch (error) { + console.error('Invalid data-poll-href URL:', pollHref, error); + throw new Error('Invalid or unauthorized data-poll-href URL'); + } }, }; diff --git a/front/assets/js/pollman.spec.js b/front/assets/js/pollman.spec.js index d8ed8ad45..d9539691d 100644 --- a/front/assets/js/pollman.spec.js +++ b/front/assets/js/pollman.spec.js @@ -1,13 +1,34 @@ /** * @prettier */ - import { expect } from "chai"; import { Pollman } from "./pollman"; import sinon from "sinon"; describe("Pollman", () => { describe("#requestUrl", () => { + beforeEach(() => { + // Mock window.location.origin for the host validation + global.window = { + location: { + origin: "https://example.com" + } + }; + global.URL = class URL { + constructor(url, base) { + if (url.startsWith('/')) { + this.href = base + url; + this.origin = base; + } else { + this.href = url; + // Extract origin from full URL + const match = url.match(/^(https?:\/\/[^\/]+)/); + this.origin = match ? match[1] : base; + } + } + }; + }); + it("returns the URL from where to fetch the updated HTML node", () => { let node_mock = { attributes: [ @@ -23,9 +44,43 @@ describe("Pollman", () => { return attribute.value; }, }; + expect(Pollman.requestUrl(node_mock)).to.equal( + "https://example.com/resources/get?page=1&color=green&state=passed" + ); + }); + + it("throws error for external domain", () => { + let node_mock = { + attributes: [ + { name: "data-poll-href", value: "https://malicious.com/script.js" }, + ], + getAttribute: function (name) { + let attribute = this.attributes.find( + (attribute) => attribute.name === name + ); + return attribute.value; + }, + }; + expect(() => Pollman.requestUrl(node_mock)).to.throw( + "Invalid or unauthorized data-poll-href URL" + ); + }); + it("allows same origin with full URL", () => { + let node_mock = { + attributes: [ + { name: "data-poll-href", value: "https://example.com/api/poll" }, + { name: "data-poll-param-id", value: "123" }, + ], + getAttribute: function (name) { + let attribute = this.attributes.find( + (attribute) => attribute.name === name + ); + return attribute.value; + }, + }; expect(Pollman.requestUrl(node_mock)).to.equal( - "/resources/get?page=1&color=green&state=passed" + "https://example.com/api/poll?id=123" ); }); }); @@ -33,23 +88,18 @@ describe("Pollman", () => { describe("#elementsToRefresh", () => { before(function () { Pollman.init({startLooper: false}); - document.body.innerHTML = `
`; }); - afterEach(function () { if (Pollman.pageIsVisible && Pollman.pageIsVisible.restore) Pollman.pageIsVisible.restore(); }); - it("returns correct elements for visible page", () => { sinon.stub(Pollman, "pageIsVisible").returns(true); - let elements = Pollman.elementsToRefresh(); - expect(elements.length).to.equal(2); expect(elements[0].outerHTML).to.equal( `
` @@ -58,10 +108,8 @@ describe("Pollman", () => { `
` ); }); - it("returns correct elements for visible page when forced to", () => { sinon.stub(Pollman, "pageIsVisible").returns(true); - let elements = Pollman.elementsToRefresh({ forceRefresh: true }); expect(elements.length).to.equal(2); expect(elements[0].outerHTML).to.equal( @@ -71,20 +119,16 @@ describe("Pollman", () => { `
` ); }); - it("returns correct elements for not active tab", () => { sinon.stub(Pollman, "pageIsVisible").returns(false); - let elements = Pollman.elementsToRefresh(); expect(elements.length).to.equal(1); expect(elements[0].outerHTML).to.equal( `
` ); }); - it("returns correct elements for not active tab when forced to ", () => { sinon.stub(Pollman, "pageIsVisible").returns(false); - let elements = Pollman.elementsToRefresh({ forceRefresh: true }); expect(elements.length).to.equal(2); expect(elements[0].outerHTML).to.equal( diff --git a/front/assets/js/pre_flight_checks/secrets.js b/front/assets/js/pre_flight_checks/secrets.js index 4bb7f8f1b..edc625934 100644 --- a/front/assets/js/pre_flight_checks/secrets.js +++ b/front/assets/js/pre_flight_checks/secrets.js @@ -1,4 +1,3 @@ -import 'tom-select/dist/css/tom-select.min.css' import TomSelect from 'tom-select' export default { diff --git a/front/assets/js/project_settings/general.js b/front/assets/js/project_settings/general.js index 38cdd7e6d..4c4bfc20a 100644 --- a/front/assets/js/project_settings/general.js +++ b/front/assets/js/project_settings/general.js @@ -6,17 +6,18 @@ export var GeneralSettings = { init: function() { this.settings = $("#build-settings"); - this.registerIntegrationTypeSwitchHandler() - this.registerBuildPauseHandler() - this.registerBranchSwitchHandler() - this.registerBranchWhitelistSwitchHandler() - this.registerTagSwitchHandler() - this.registerTagWhitelistSwitchHandler() - this.registerForkedPRSwitchHandler() - this.registerSecretsSwitchHandler() - this.registerContributorsSwitchHandler() - this.registerVisibilitySwitchHandler() - this.registerOwnerFilter() + this.registerIntegrationTypeSwitchHandler(); + this.registerBuildPauseHandler(); + this.registerBranchSwitchHandler(); + this.registerBranchWhitelistSwitchHandler(); + this.registerTagSwitchHandler(); + this.registerTagWhitelistSwitchHandler(); + this.registerForkedPRSwitchHandler(); + this.registerDraftPRSwitchHandler(); + this.registerSecretsSwitchHandler(); + this.registerContributorsSwitchHandler(); + this.registerVisibilitySwitchHandler(); + this.registerOwnerFilter(); }, registerOwnerFilter() { @@ -142,6 +143,22 @@ export var GeneralSettings = { }) }, + registerDraftPRSwitchHandler() { + if($('input[name="project[build_prs]"][checked]').length == 0) { + $("#draft-pull-request-options").hide(); + } else { + $("#draft-pull-request-options").show(); + } + + this.settings.on("click", "[data-action=draftPRSwitch]", (e) => { + if($(e.currentTarget).prop("checked")) { + $("#draft-pull-request-options").show(); + } else { + $("#draft-pull-request-options").hide(); + } + }) + }, + registerSecretsSwitchHandler() { if($('input[name="project[expose_secrets]"][checked]').val() == "true") { $("#exposed-secrets").show(); diff --git a/front/assets/js/report/index.tsx b/front/assets/js/report/index.tsx index b2898ccb6..ed07c5702 100644 --- a/front/assets/js/report/index.tsx +++ b/front/assets/js/report/index.tsx @@ -4,12 +4,17 @@ import MarkdownIt, { PluginSimple } from "markdown-it"; import markdownItTextualUml from "markdown-it-textual-uml"; import Mermaid from "mermaid"; import "github-markdown-css/github-markdown-light.css"; +import DOMPurify from 'dompurify'; import * as toolbox from "js/toolbox"; import { useEffect, useState } from "preact/hooks"; Mermaid.initialize({ startOnLoad: false, theme: `default`, securityLevel: `strict` }); -const md = MarkdownIt().use(markdownItTextualUml as PluginSimple); +const md = MarkdownIt({ + html: true, + linkify: false, + typographer: true +}).use(markdownItTextualUml as PluginSimple); export default function ({ config, dom }: { dom: HTMLElement, config: any, }) { render(, dom); @@ -77,10 +82,37 @@ const MarkdownBody = (props: { markdown: string, }) => { } }, [props.markdown]); + const renderedHtml = md.render(props.markdown); + const sanitizedHtml = DOMPurify.sanitize(renderedHtml, { + ALLOWED_TAGS: [ + // Basic + `details`, `summary`, `p`, `br`, `h1`, `h2`, `h3`, `h4`, `h5`, `h6`, + `ul`, `ol`, `li`, `blockquote`, `pre`, `hr`, `div`, + // Tables + `table`, `thead`, `tbody`, `tr`, `td`, `th`, + //Formating + `strong`, `b`, `em`, `i`, `u`, `code`, `span`, + `del`, `s`, + `sup`, `sub`, + `kbd`, + `mark`, + `ins`, + `small`, + `abbr` + ], + ALLOWED_ATTR: [ + `title`, + `open` + ], + FORBID_TAGS: [`a`, `img`, `script`, `object`, `embed`, `iframe`, `link`], + FORBID_ATTR: [`href`, `src`, `class`, `id`, `style`, `target`], + ALLOW_DATA_ATTR: false + }); + return (
); }; diff --git a/front/assets/js/service_accounts/components/CreateServiceAccount.tsx b/front/assets/js/service_accounts/components/CreateServiceAccount.tsx new file mode 100644 index 000000000..976ecd72d --- /dev/null +++ b/front/assets/js/service_accounts/components/CreateServiceAccount.tsx @@ -0,0 +1,139 @@ +import { useState, useContext } from "preact/hooks"; +import { Modal } from "js/toolbox"; +import { ConfigContext } from "../config"; +import { ServiceAccountsAPI } from "../utils/api"; +import { TokenDisplay } from "./TokenDisplay"; +import * as toolbox from "js/toolbox"; + +interface CreateServiceAccountProps { + isOpen: boolean; + onClose: () => void; + onCreated: () => void; +} + +export const CreateServiceAccount = ({ isOpen, onClose, onCreated }: CreateServiceAccountProps) => { + const config = useContext(ConfigContext); + const api = new ServiceAccountsAPI(config); + + const [name, setName] = useState(``); + const [description, setDescription] = useState(``); + const [selectedRoleId, setSelectedRoleId] = useState(``); + const [loading, setLoading] = useState(false); + const [error, setError] = useState(``); + const [token, setToken] = useState(``); + + const handleSubmit = async (e: Event) => { + e.preventDefault(); + setError(null); + setLoading(true); + + const response = await api.create(name, description, selectedRoleId); + + if (response.error) { + setError(response.error); + setLoading(false); + } else if (response.data) { + setToken(response.data.api_token); + setLoading(false); + } + }; + + const handleClose = () => { + if (token) { + onCreated(); + } + setName(``); + setDescription(``); + setSelectedRoleId(``); + setError(``); + setToken(``); + onClose(); + }; + + const canSubmit = name.trim().length > 0 && selectedRoleId.length > 0 && !loading; + + return ( + + {!token ? ( +
void handleSubmit(e)}> +
+
+ + setName(e.currentTarget.value)} + placeholder="e.g., CI/CD Pipeline" + disabled={loading} + autoFocus + /> +
+ +
+ +